diff --git a/.eslintignore b/.eslintignore
index fb66b3b68..8baed5a66 100644
--- a/.eslintignore
+++ b/.eslintignore
@@ -1,5 +1,6 @@
fixtures/
packages/components/core
+ui/theme/src/tokens.ts
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
@@ -47,4 +48,7 @@ core
lerna-debug.log
-**/*.spec.js
\ No newline at end of file
+**/*.spec.js
+
+#temp
+ui
\ No newline at end of file
diff --git a/.eslintrc.js b/.eslintrc.js
index 8ec9f269d..16c1e775c 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -25,6 +25,7 @@ module.exports = {
"plugin:testing-library/dom",
"plugin:jest-dom/recommended",
"plugin:storybook/recommended",
+ "plugin:react/jsx-runtime",
],
overrides: [
{
@@ -36,12 +37,16 @@ module.exports = {
rules: {
"react/prop-types": "off",
"@washingtonpost/wpds/theme-colors": "warn",
- "no-restricted-syntax": [
- "error",
+ },
+ },
+ // warning 'React' is defined but never used @typescript-eslint/no-unused-vars -- allow unused React
+ {
+ files: ["**/*.tsx"],
+ rules: {
+ "@typescript-eslint/no-unused-vars": [
+ "warn",
{
- selector:
- "ImportDeclaration[source.value='react'][specifiers.0.type='ImportDefaultSpecifier']",
- message: "Default React import not allowed",
+ varsIgnorePattern: "React",
},
],
},
diff --git a/.github/workflows/interaction-tests.yml b/.github/workflows/interaction-tests.yml
deleted file mode 100644
index 7da16ff1c..000000000
--- a/.github/workflows/interaction-tests.yml
+++ /dev/null
@@ -1,50 +0,0 @@
-name: Interaction Tests
-
-on: deployment_status
-
-concurrency:
- group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
- cancel-in-progress: true
-
-jobs:
- tests:
- if: github.event.deployment_status.state == 'success' && contains(github.event.deployment_status.target_url, 'storybook') && !contains(github.event.deployment_status.target_url, 'vitejs')
- runs-on: ubuntu-latest
- timeout-minutes: 10
- env:
- TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
- TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
- steps:
- - uses: actions/checkout@v4.1.1
- with:
- fetch-depth: 0
-
- - uses: actions/setup-node@v4.0.0
- with:
- node-version-file: ".nvmrc"
- registry-url: "https://registry.npmjs.org"
- always-auth: true
- cache: npm
-
- - name: Cache node_modules
- id: cache-node_modules
- uses: actions/cache@v3
- with:
- path: |
- **/node_modules
- node_modules
- key: node_modules-${{ hashFiles('package-lock.json') }}
- restore-keys: node_modules
-
- - name: Install npm dependencies
- if: steps.cache-node_modules.outputs.cache-hit != 'true'
- run: npm ci
- env:
- NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
- TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
- TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
-
- - name: Run interaction tests
- run: npm run test-storybook
- env:
- TARGET_URL: "${{ github.event.deployment_status.target_url }}"
diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml
index f4ff5c547..0f1d09ce3 100644
--- a/.github/workflows/playwright.yml
+++ b/.github/workflows/playwright.yml
@@ -9,7 +9,9 @@ jobs:
test:
if: github.event.deployment_status.state == 'success' && !contains(github.event.deployment_status.target_url, 'storybook') && !contains(github.event.deployment_status.target_url, 'vitejs')
runs-on: ubuntu-latest
- timeout-minutes: 20
+ container:
+ image: mcr.microsoft.com/playwright:v1.40.1-jammy
+ timeout-minutes: 25
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
@@ -25,6 +27,14 @@ jobs:
always-auth: true
cache: npm
+ - name: Cache playwright binaries
+ uses: actions/cache@v3
+ id: playwright-cache
+ with:
+ path: |
+ ~/.cache/ms-playwright
+ key: cache-playwright-linux-1.40.1
+
- name: Cache node_modules
id: cache-node_modules
uses: actions/cache@v3
@@ -44,18 +54,12 @@ jobs:
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
- name: Install Playwright Browsers
+ if: steps.playwright-cache.outputs.cache-hit != 'true'
run: npx playwright install --with-deps
- name: Run Playwright tests
- run: npx playwright test
+ run: npm run playwright
env:
BASEURL: "${{ github.event.deployment_status.target_url }}"
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
- TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
-
- # - uses: actions/upload-artifact@v3
- # if: always()
- # with:
- # name: playwright-report
- # path: playwright-report/
- # retention-days: 30
+ TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
index b49d78140..2ecaec749 100644
--- a/.gitignore
+++ b/.gitignore
@@ -126,7 +126,7 @@ yalc.lock
# ignore build site vscode
build.washingtonpost.com/.vscode/
-# ignore the storybook build
+# ignore the storybook build
build.washingtonpost.com/public/storybook/**/*
.env
@@ -135,3 +135,6 @@ build.washingtonpost.com/public/storybook/**/*
/test-results/
/playwright-report/
/playwright/.cache/
+.turbo
+
+.idea/*
diff --git a/.prettierignore b/.prettierignore
index 8fd0db576..b240afd2d 100644
--- a/.prettierignore
+++ b/.prettierignore
@@ -9,3 +9,4 @@ out
jest-coverage
plop-templates
/ui/theme/src/tokens.ts
+/packages/kit/src/theme/tokens.ts
diff --git a/.storybook/main.js b/.storybook/main.js
index 5bc98b830..2c26c2055 100644
--- a/.storybook/main.js
+++ b/.storybook/main.js
@@ -1,36 +1,49 @@
+import { dirname, join } from "path";
// add process.env
require("dotenv").config();
module.exports = {
- stories: ["../ui/(**|!(node_modules))/src/*.stories.@(ts|tsx|js|jsx)"],
+ stories: ["../packages/kit/src/**/*.stories.tsx"],
exclude: ["node_modules", "dist"],
+
addons: [
- "@storybook/addon-essentials",
- "@storybook/addon-interactions",
- "@storybook/addon-a11y",
+ getAbsolutePath("@storybook/addon-essentials"),
+ getAbsolutePath("@storybook/addon-interactions"),
+ getAbsolutePath("@storybook/addon-a11y"),
],
+
previewBody: (body) => `${body}`,
+
features: {
storyStoreV7: true,
interactionsDebugger: true,
},
- framework: "@storybook/react",
- core: {
- builder: "webpack5",
+
+ framework: {
+ name: getAbsolutePath("@storybook/nextjs"),
+ options: {},
},
- typescript: {
- check: true,
- reactDocgen: "react-docgen-typescript",
- reactDocgenTypescriptOptions: {
- shouldExtractLiteralValuesFromEnum: true,
- propFilter: (prop) =>
- prop.parent
- ? /@radix-ui/.test(prop.parent.fileName) ||
- !/node_modules/.test(prop.parent.fileName)
- : true,
- compilerOptions: {
- allowSyntheticDefaultImports: false,
- },
- },
+
+ // typescript: {
+ // reactDocgen: "react-docgen-typescript",
+ // reactDocgenTypescriptOptions: {
+ // shouldExtractLiteralValuesFromEnum: true,
+ // propFilter: (prop) =>
+ // prop.parent
+ // ? /@radix-ui/.test(prop.parent.fileName) ||
+ // !/node_modules/.test(prop.parent.fileName)
+ // : true,
+ // compilerOptions: {
+ // allowSyntheticDefaultImports: false,
+ // },
+ // },
+ // },
+
+ docs: {
+ autodocs: true,
},
};
+
+function getAbsolutePath(value) {
+ return dirname(require.resolve(join(value, "package.json")));
+}
diff --git a/.storybook/preview.js b/.storybook/preview.js
index 222041ef9..5f5b55a41 100644
--- a/.storybook/preview.js
+++ b/.storybook/preview.js
@@ -56,7 +56,7 @@ const Panel = styled("div", {
function GlobalStyles(props) {
globalStyles();
- return {props.children} ;
+ return {props.children} ;
}
function DarkPanel(props) {
@@ -72,7 +72,11 @@ function DarkPanel(props) {
export const decorators = [
(Story, Context) => {
if (Context.story.includes("Interactions")) {
- return ;
+ return (
+
+
+
+ );
}
return (
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 03686df5d..282959874 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,276 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [2.0.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.24.0...v2.0.0) (2024-04-24)
+
+### Features
+
+- v2.0.0 ([#542](https://github.com/washingtonpost/wpds-ui-kit/issues/542)) ([d429cfa](https://github.com/washingtonpost/wpds-ui-kit/commit/d429cfabb7489a2548ffad5c3d945145824d4a22)), closes [#544](https://github.com/washingtonpost/wpds-ui-kit/issues/544) [#552](https://github.com/washingtonpost/wpds-ui-kit/issues/552) [#555](https://github.com/washingtonpost/wpds-ui-kit/issues/555) [#560](https://github.com/washingtonpost/wpds-ui-kit/issues/560) [#562](https://github.com/washingtonpost/wpds-ui-kit/issues/562) [#564](https://github.com/washingtonpost/wpds-ui-kit/issues/564) [#565](https://github.com/washingtonpost/wpds-ui-kit/issues/565) [#574](https://github.com/washingtonpost/wpds-ui-kit/issues/574) [#570](https://github.com/washingtonpost/wpds-ui-kit/issues/570) [#579](https://github.com/washingtonpost/wpds-ui-kit/issues/579) [#578](https://github.com/washingtonpost/wpds-ui-kit/issues/578) [#580](https://github.com/washingtonpost/wpds-ui-kit/issues/580) [#579](https://github.com/washingtonpost/wpds-ui-kit/issues/579)
+
+# [2.0.0-alpha.12](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.11...v2.0.0-alpha.12) (2024-04-10)
+
+# [1.24.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.10...v1.24.0) (2024-04-09)
+
+### Bug Fixes
+
+- remove global styles from wpds-tokens ([2886b69](https://github.com/washingtonpost/wpds-ui-kit/commit/2886b6921257daa54fca191c1c554f8830bf5bf0))
+
+### Features
+
+- add v2 docs switcher ([#609](https://github.com/washingtonpost/wpds-ui-kit/issues/609)) ([49e35a1](https://github.com/washingtonpost/wpds-ui-kit/commit/49e35a13a67efaa5d64e457ac565f8b6970d0fd4))
+
+## [1.23.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.23.0...v1.23.1) (2024-03-26)
+
+### Bug Fixes
+
+- ensure that dark theme colors get written into the dom ([#605](https://github.com/washingtonpost/wpds-ui-kit/issues/605)) ([9fb968e](https://github.com/washingtonpost/wpds-ui-kit/commit/9fb968e6ea78d2d657ef9f538decc0e2b25dcf35))
+
+# [1.23.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.6...v1.23.0) (2024-03-25)
+
+### Bug Fixes
+
+- make input helper and error text block level elements for consistent formatting ([2640be2](https://github.com/washingtonpost/wpds-ui-kit/commit/2640be29f24f83199baa3c735bdd47c404dd700b))
+- updated React types package to prevent type errors ([b647c60](https://github.com/washingtonpost/wpds-ui-kit/commit/b647c60662d9f75f8857f8f8205f5d4c04ba0cef))
+
+### Features
+
+- increase the specificity of the wpds-dark selector to ensure it overrides light variables ([fd7748f](https://github.com/washingtonpost/wpds-ui-kit/commit/fd7748fa7386396fa13bb52d8d67a1c513ccc6a9))
+
+# [2.0.0-alpha.11](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.10...v2.0.0-alpha.11) (2024-04-09)
+
+**Note:** Version bump only for package root
+
+# [2.0.0-alpha.10](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.7...v2.0.0-alpha.10) (2024-04-09)
+
+### Bug Fixes
+
+- add tokens specifier to exports ([#616](https://github.com/washingtonpost/wpds-ui-kit/issues/616)) ([261c231](https://github.com/washingtonpost/wpds-ui-kit/commit/261c2317d9f34c20da55afaa8d9012d45677ca52))
+- new colors are not showing up ([#614](https://github.com/washingtonpost/wpds-ui-kit/issues/614)) ([9e9b975](https://github.com/washingtonpost/wpds-ui-kit/commit/9e9b9755f70bcd70ebde30501515f31269efaf7d))
+
+# [2.0.0-alpha.9](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.7...v2.0.0-alpha.9) (2024-04-09)
+
+### Bug Fixes
+
+- add tokens specifier to exports ([#616](https://github.com/washingtonpost/wpds-ui-kit/issues/616)) ([261c231](https://github.com/washingtonpost/wpds-ui-kit/commit/261c2317d9f34c20da55afaa8d9012d45677ca52))
+- new colors are not showing up ([#614](https://github.com/washingtonpost/wpds-ui-kit/issues/614)) ([9e9b975](https://github.com/washingtonpost/wpds-ui-kit/commit/9e9b9755f70bcd70ebde30501515f31269efaf7d))
+
+# [2.0.0-alpha.8](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.7...v2.0.0-alpha.8) (2024-04-04)
+
+### Bug Fixes
+
+- new colors are not showing up ([#614](https://github.com/washingtonpost/wpds-ui-kit/issues/614)) ([9e9b975](https://github.com/washingtonpost/wpds-ui-kit/commit/9e9b9755f70bcd70ebde30501515f31269efaf7d))
+
+# [2.0.0-alpha.7](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.6...v2.0.0-alpha.7) (2024-04-02)
+
+### Bug Fixes
+
+- add nanoid back ([#607](https://github.com/washingtonpost/wpds-ui-kit/issues/607)) ([d862816](https://github.com/washingtonpost/wpds-ui-kit/commit/d862816e85c3f667b1bd5be1f253b7920261f01b))
+- make input helper and error block level elements to preserve formatting ([20a9455](https://github.com/washingtonpost/wpds-ui-kit/commit/20a9455cd8a72f1c9c7521e5ced97f09e8b59604))
+- transform Select arrow on open ([#597](https://github.com/washingtonpost/wpds-ui-kit/issues/597)) ([b0e77be](https://github.com/washingtonpost/wpds-ui-kit/commit/b0e77be13ee0e5989d81c976e2b5eb9f5a41a060))
+- transform select icon on open ([#596](https://github.com/washingtonpost/wpds-ui-kit/issues/596)) ([1f68ace](https://github.com/washingtonpost/wpds-ui-kit/commit/1f68acef8dd386267b9b30c650df6abe11b10954))
+
+# [2.0.0-alpha.2](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.1...v2.0.0-alpha.2) (2024-03-14)
+
+# [2.0.0-alpha.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.0...v2.0.0-alpha.1) (2024-03-14)
+
+# [2.0.0-alpha.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.1.0-experimental.0...v2.0.0-alpha.0) (2024-03-14)
+
+# [2.1.0-experimental.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.0...v2.1.0-experimental.0) (2024-03-13)
+
+### Bug Fixes
+
+- i don't know how dialog went mising ([#579](https://github.com/washingtonpost/wpds-ui-kit/issues/579)) ([e783d0a](https://github.com/washingtonpost/wpds-ui-kit/commit/e783d0a9a132e67f9b35e1434998a9b163969e25))
+- merging main and resolving conflicts ([#585](https://github.com/washingtonpost/wpds-ui-kit/issues/585)) ([253effe](https://github.com/washingtonpost/wpds-ui-kit/commit/253effebcc310c6ceee9efbed2e346d7b3132691))
+- Playroom fix ([#583](https://github.com/washingtonpost/wpds-ui-kit/issues/583)) ([6b8c42b](https://github.com/washingtonpost/wpds-ui-kit/commit/6b8c42beb93fb2a0e391df6aad5da78cf40d92e3))
+- remove border for clear button on input search ([#560](https://github.com/washingtonpost/wpds-ui-kit/issues/560)) ([504b82f](https://github.com/washingtonpost/wpds-ui-kit/commit/504b82fa0a61249ccab701316ed04fda3077503c))
+- remove defaultOpen from kitchen sink Tooltip example to prevent client server mismatch ([df842ac](https://github.com/washingtonpost/wpds-ui-kit/commit/df842ac97cbd9f1c6a8a680f4cd9f926f7563fb7))
+- take latest minor of Radix accordion ([84f39d4](https://github.com/washingtonpost/wpds-ui-kit/commit/84f39d417b66125ba0efa54dadb08564b9538762))
+
+### Features
+
+- card ([#564](https://github.com/washingtonpost/wpds-ui-kit/issues/564)) ([ce0b9db](https://github.com/washingtonpost/wpds-ui-kit/commit/ce0b9db6985f44d848b0bf38c259f04107f03344))
+- fresh install with updated node/npm ([#574](https://github.com/washingtonpost/wpds-ui-kit/issues/574)) ([848b697](https://github.com/washingtonpost/wpds-ui-kit/commit/848b697d97c6e98241b118ae24472a2fb7cede5a))
+- move Button, Icon, theme, and VisuallyHidden to v2 package ([#562](https://github.com/washingtonpost/wpds-ui-kit/issues/562)) ([be3524d](https://github.com/washingtonpost/wpds-ui-kit/commit/be3524d388e177023b9c476a68020a478a893f50))
+- remove nanoid dependency ([#555](https://github.com/washingtonpost/wpds-ui-kit/issues/555)) ([20f22d6](https://github.com/washingtonpost/wpds-ui-kit/commit/20f22d6a0869de6edb25312bb93638832320b82f))
+- update Accordion to React 18 ([#565](https://github.com/washingtonpost/wpds-ui-kit/issues/565)) ([672e239](https://github.com/washingtonpost/wpds-ui-kit/commit/672e23918d9989de9d1a8702d3880b3f4f0ac38f))
+- update package-lock ([ed5c500](https://github.com/washingtonpost/wpds-ui-kit/commit/ed5c500bd2e03de9c5a87e26b4edd159374c0273))
+- updated InputLabel with latest Radix label component ([#552](https://github.com/washingtonpost/wpds-ui-kit/issues/552)) ([2ca485f](https://github.com/washingtonpost/wpds-ui-kit/commit/2ca485f6be2da0627fad98f3961ab71afdb84b23))
+- v2 mass components upgrade/migration ([#578](https://github.com/washingtonpost/wpds-ui-kit/issues/578)) ([5e0394b](https://github.com/washingtonpost/wpds-ui-kit/commit/5e0394b4e6747bfd9fee1dc0bcd82d1dcb6cd9b6)), closes [#580](https://github.com/washingtonpost/wpds-ui-kit/issues/580) [#579](https://github.com/washingtonpost/wpds-ui-kit/issues/579)
+
+# [2.0.0-alpha.6](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.5...v2.0.0-alpha.6) (2024-03-15)
+
+**Note:** Version bump only for package root
+
+# [2.0.0-alpha.5](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.4...v2.0.0-alpha.5) (2024-03-15)
+
+**Note:** Version bump only for package root
+
+# [2.0.0-alpha.4](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.3...v2.0.0-alpha.4) (2024-03-15)
+
+**Note:** Version bump only for package root
+
+# [2.0.0-alpha.3](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.6...v2.0.0-alpha.3) (2024-03-14)
+
+# [2.0.0-alpha.2](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.1...v2.0.0-alpha.2) (2024-03-14)
+
+# [2.0.0-alpha.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.0...v2.0.0-alpha.1) (2024-03-14)
+
+# [2.0.0-alpha.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.1.0-experimental.1...v2.0.0-alpha.0) (2024-03-14)
+
+# [2.1.0-experimental.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.1.0-experimental.0...v2.1.0-experimental.1) (2024-03-13)
+
+# [2.1.0-experimental.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.0...v2.1.0-experimental.0) (2024-03-13)
+
+### Bug Fixes
+
+- i don't know how dialog went mising ([#579](https://github.com/washingtonpost/wpds-ui-kit/issues/579)) ([e783d0a](https://github.com/washingtonpost/wpds-ui-kit/commit/e783d0a9a132e67f9b35e1434998a9b163969e25))
+- merging main and resolving conflicts ([#585](https://github.com/washingtonpost/wpds-ui-kit/issues/585)) ([253effe](https://github.com/washingtonpost/wpds-ui-kit/commit/253effebcc310c6ceee9efbed2e346d7b3132691))
+- Playroom fix ([#583](https://github.com/washingtonpost/wpds-ui-kit/issues/583)) ([6b8c42b](https://github.com/washingtonpost/wpds-ui-kit/commit/6b8c42beb93fb2a0e391df6aad5da78cf40d92e3))
+- remove border for clear button on input search ([#560](https://github.com/washingtonpost/wpds-ui-kit/issues/560)) ([504b82f](https://github.com/washingtonpost/wpds-ui-kit/commit/504b82fa0a61249ccab701316ed04fda3077503c))
+- remove defaultOpen from kitchen sink Tooltip example to prevent client server mismatch ([df842ac](https://github.com/washingtonpost/wpds-ui-kit/commit/df842ac97cbd9f1c6a8a680f4cd9f926f7563fb7))
+- take latest minor of Radix accordion ([84f39d4](https://github.com/washingtonpost/wpds-ui-kit/commit/84f39d417b66125ba0efa54dadb08564b9538762))
+
+### Features
+
+- card ([#564](https://github.com/washingtonpost/wpds-ui-kit/issues/564)) ([ce0b9db](https://github.com/washingtonpost/wpds-ui-kit/commit/ce0b9db6985f44d848b0bf38c259f04107f03344))
+- fresh install with updated node/npm ([#574](https://github.com/washingtonpost/wpds-ui-kit/issues/574)) ([848b697](https://github.com/washingtonpost/wpds-ui-kit/commit/848b697d97c6e98241b118ae24472a2fb7cede5a))
+- move Button, Icon, theme, and VisuallyHidden to v2 package ([#562](https://github.com/washingtonpost/wpds-ui-kit/issues/562)) ([be3524d](https://github.com/washingtonpost/wpds-ui-kit/commit/be3524d388e177023b9c476a68020a478a893f50))
+- remove nanoid dependency ([#555](https://github.com/washingtonpost/wpds-ui-kit/issues/555)) ([20f22d6](https://github.com/washingtonpost/wpds-ui-kit/commit/20f22d6a0869de6edb25312bb93638832320b82f))
+- update Accordion to React 18 ([#565](https://github.com/washingtonpost/wpds-ui-kit/issues/565)) ([672e239](https://github.com/washingtonpost/wpds-ui-kit/commit/672e23918d9989de9d1a8702d3880b3f4f0ac38f))
+- update package-lock ([ed5c500](https://github.com/washingtonpost/wpds-ui-kit/commit/ed5c500bd2e03de9c5a87e26b4edd159374c0273))
+- updated InputLabel with latest Radix label component ([#552](https://github.com/washingtonpost/wpds-ui-kit/issues/552)) ([2ca485f](https://github.com/washingtonpost/wpds-ui-kit/commit/2ca485f6be2da0627fad98f3961ab71afdb84b23))
+- v2 mass components upgrade/migration ([#578](https://github.com/washingtonpost/wpds-ui-kit/issues/578)) ([5e0394b](https://github.com/washingtonpost/wpds-ui-kit/commit/5e0394b4e6747bfd9fee1dc0bcd82d1dcb6cd9b6)), closes [#580](https://github.com/washingtonpost/wpds-ui-kit/issues/580) [#579](https://github.com/washingtonpost/wpds-ui-kit/issues/579)
+
+# [2.0.0-alpha.2](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.1...v2.0.0-alpha.2) (2024-03-14)
+
+**Note:** Version bump only for package root
+
+# [2.0.0-alpha.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.0...v2.0.0-alpha.1) (2024-03-14)
+
+**Note:** Version bump only for package root
+
+# [2.0.0-alpha.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.1.0-experimental.0...v2.0.0-alpha.0) (2024-03-14)
+
+**Note:** Version bump only for package root
+
+# [1.24.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.23.1...v1.24.0) (2024-04-09)
+
+### Bug Fixes
+
+- remove global styles from wpds-tokens ([2886b69](https://github.com/washingtonpost/wpds-ui-kit/commit/2886b6921257daa54fca191c1c554f8830bf5bf0))
+
+### Features
+
+- add v2 docs switcher ([#609](https://github.com/washingtonpost/wpds-ui-kit/issues/609)) ([49e35a1](https://github.com/washingtonpost/wpds-ui-kit/commit/49e35a13a67efaa5d64e457ac565f8b6970d0fd4))
+
+## [1.23.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.23.0...v1.23.1) (2024-03-26)
+
+### Bug Fixes
+
+- ensure that dark theme colors get written into the dom ([#605](https://github.com/washingtonpost/wpds-ui-kit/issues/605)) ([9fb968e](https://github.com/washingtonpost/wpds-ui-kit/commit/9fb968e6ea78d2d657ef9f538decc0e2b25dcf35))
+
+# [1.23.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.6...v1.23.0) (2024-03-25)
+
+### Bug Fixes
+
+- make input helper and error text block level elements for consistent formatting ([2640be2](https://github.com/washingtonpost/wpds-ui-kit/commit/2640be29f24f83199baa3c735bdd47c404dd700b))
+- transform select icon on open ([#596](https://github.com/washingtonpost/wpds-ui-kit/issues/596)) ([1f68ace](https://github.com/washingtonpost/wpds-ui-kit/commit/1f68acef8dd386267b9b30c650df6abe11b10954))
+- updated React types package to prevent type errors ([b647c60](https://github.com/washingtonpost/wpds-ui-kit/commit/b647c60662d9f75f8857f8f8205f5d4c04ba0cef))
+
+### Features
+
+- increase the specificity of the wpds-dark selector to ensure it overrides light variables ([fd7748f](https://github.com/washingtonpost/wpds-ui-kit/commit/fd7748fa7386396fa13bb52d8d67a1c513ccc6a9))
+
+## [1.22.6](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.5...v1.22.6) (2024-03-14)
+
+### Bug Fixes
+
+- readme changes ([035b5c8](https://github.com/washingtonpost/wpds-ui-kit/commit/035b5c8ce14f1994a0be0966e961e40ead24d339))
+
+## [1.22.5](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.4...v1.22.5) (2024-03-14)
+
+**Note:** Version bump only for package root
+
+## [1.22.4](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.3...v1.22.4) (2024-03-14)
+
+### Bug Fixes
+
+- fixing formatting ([#589](https://github.com/washingtonpost/wpds-ui-kit/issues/589)) ([a717dbc](https://github.com/washingtonpost/wpds-ui-kit/commit/a717dbcd9dbc2c2e8619719692636f2287e556cd))
+
+## [1.22.3](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.2...v1.22.3) (2024-03-14)
+
+### Bug Fixes
+
+- formatting ([#588](https://github.com/washingtonpost/wpds-ui-kit/issues/588)) ([d1e9ad4](https://github.com/washingtonpost/wpds-ui-kit/commit/d1e9ad4166881dea6a9df1ecd8a9d5f0e598efef))
+
+## [1.22.2](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.1...v1.22.2) (2024-03-14)
+
+**Note:** Version bump only for package root
+
+## [1.22.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.0...v1.22.1) (2024-03-14)
+
+### Bug Fixes
+
+- Change forCards modifier to forSurfaces ([#576](https://github.com/washingtonpost/wpds-ui-kit/issues/576)) ([c5e0422](https://github.com/washingtonpost/wpds-ui-kit/commit/c5e04223fb2e7c40506751fda61a0a2844101e01))
+- cleaned up [STRY-70] ([007ae6a](https://github.com/washingtonpost/wpds-ui-kit/commit/007ae6a83ba26c53ce1d03bbf4dc035359563be0))
+- cleaned up again [STRY-70] ([95556bf](https://github.com/washingtonpost/wpds-ui-kit/commit/95556bf5f384d62e0523161a81af2cf62b4506ef))
+- Fixed onSurface to have the correct camel casing ([#571](https://github.com/washingtonpost/wpds-ui-kit/issues/571)) ([9daca60](https://github.com/washingtonpost/wpds-ui-kit/commit/9daca60f9c562aa2d697c8389d44d2ef491f1494))
+- ignoring .idea files [STRY-70] ([c686693](https://github.com/washingtonpost/wpds-ui-kit/commit/c686693d49c51b261bb36f134bdb834478c5be0b))
+- linting [STRY-70] ([63e8949](https://github.com/washingtonpost/wpds-ui-kit/commit/63e894934cda486b1d59477b5d60650d0e861893))
+- only add needed files [STRY-70] ([ca38fb2](https://github.com/washingtonpost/wpds-ui-kit/commit/ca38fb2a8f813a543908e9e96acb39115f419e4c))
+- update readme ([#587](https://github.com/washingtonpost/wpds-ui-kit/issues/587)) ([73b4b9e](https://github.com/washingtonpost/wpds-ui-kit/commit/73b4b9e3ac698cdca779cd0c49c490167e18180f))
+
+# [1.22.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.21.0...v1.22.0) (2024-02-15)
+
+### Bug Fixes
+
+- reverted subtle and faint tokens ([#566](https://github.com/washingtonpost/wpds-ui-kit/issues/566)) ([b45b54a](https://github.com/washingtonpost/wpds-ui-kit/commit/b45b54ab27c3ea341893c79520fe44f3fd463baf))
+
+### Features
+
+- remove search feature from docs site ([#569](https://github.com/washingtonpost/wpds-ui-kit/issues/569)) ([fa22045](https://github.com/washingtonpost/wpds-ui-kit/commit/fa22045fdb00ba1a823056da0ca24a9d938b3665))
+
+# [1.21.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.20.0...v1.21.0) (2024-02-07)
+
+### Features
+
+- new dark mode colors and tokens ([#554](https://github.com/washingtonpost/wpds-ui-kit/issues/554)) ([39b0d45](https://github.com/washingtonpost/wpds-ui-kit/commit/39b0d45ebd0269843ff5c657e3ab4865f149bbec))
+
+# [1.20.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.19.0...v1.20.0) (2024-01-24)
+
+### Bug Fixes
+
+- fixes a scrollbar issue with select and our header component ([#563](https://github.com/washingtonpost/wpds-ui-kit/issues/563)) ([1cfe566](https://github.com/washingtonpost/wpds-ui-kit/commit/1cfe5660e763c76beeedf7b19e2a1846110fce70))
+
+### Features
+
+- add site footer back ([#558](https://github.com/washingtonpost/wpds-ui-kit/issues/558)) ([12cf193](https://github.com/washingtonpost/wpds-ui-kit/commit/12cf1936ac67c2791ff06efe6e45dbefca047909))
+
+# [1.19.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.18.0...v1.19.0) (2024-01-10)
+
+### Bug Fixes
+
+- remove snow ([cdfae9e](https://github.com/washingtonpost/wpds-ui-kit/commit/cdfae9e75f680ba43edb250f441e40ab1b81e65b))
+- remove snow ([f0f45f7](https://github.com/washingtonpost/wpds-ui-kit/commit/f0f45f7c156df78c5c9dba6718403e926cacacbb))
+- remove tokens stylesheet ([16b4b71](https://github.com/washingtonpost/wpds-ui-kit/commit/16b4b7123db787ec9f9f74f9cfff962882cc7b2d))
+
+### Features
+
+- add snowfall to website for fun ([#550](https://github.com/washingtonpost/wpds-ui-kit/issues/550)) ([3f907e4](https://github.com/washingtonpost/wpds-ui-kit/commit/3f907e42f5334c7e43d2ea415f4099be9d45a2df))
+- responsive screen size hook and css var ([#548](https://github.com/washingtonpost/wpds-ui-kit/issues/548)) ([5768e9c](https://github.com/washingtonpost/wpds-ui-kit/commit/5768e9c6357f1df43b9d92002e36bf2cadd171fa))
+- turn snow on ([5c88780](https://github.com/washingtonpost/wpds-ui-kit/commit/5c88780d5df3258d604c108cf680ce9108fdc452))
+
+# [1.18.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.17.0...v1.18.0) (2023-12-13)
+
+### Bug Fixes
+
+- our lockfile area for build dot site was borked ([#547](https://github.com/washingtonpost/wpds-ui-kit/issues/547)) ([2a66631](https://github.com/washingtonpost/wpds-ui-kit/commit/2a66631d066b7128c4be209a60af0ad86fc528e9))
+
+### Features
+
+- add Dialog component ([15d6206](https://github.com/washingtonpost/wpds-ui-kit/commit/15d6206d6287bb3eee3c9f0af8ff57a0bf917998))
+- bump wam to 1.24.0 ([#546](https://github.com/washingtonpost/wpds-ui-kit/issues/546)) ([d825acc](https://github.com/washingtonpost/wpds-ui-kit/commit/d825acca32c62e3c7295b7ed44ab641ba720cb7a))
+
# [1.17.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.16.2...v1.17.0) (2023-11-30)
### Bug Fixes
diff --git a/Makefile b/Makefile
index c1bd0793a..3807c59e5 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,9 @@
experimental-version:
- npx lerna version --conventional-commits --conventional-prerelease --preid=experimental --sign-git-tag=experimental --no-changelog --yes --force-publish
+ npx lerna version prerelease --force-publish --preid=alpha --sign-git-tag=alpha
experimental-publish:
- npx lerna publish from-package --dist-tag experimental --yes --no-verify-access
-
+ npx lerna publish from-package --dist-tag alpha
+
main-publish:
npx lerna publish from-package --yes --no-git-reset --no-verify-access
@@ -16,10 +16,15 @@ experimental-release:
npm run turbo:build:force
make experimental-publish
+# checkout any uncommitted changes
+boop-checkout:
+ git checkout .
+
# create main release
main-release:
make main-version
npm run turbo:build:ui:force
+ make boop-checkout
make main-publish
npm install
npm run format
@@ -35,3 +40,9 @@ validate:
npm run lint:check
npm run format:check
npm run test
+
+v2-migrate-component:
+ node scripts/move-component-to-new-dir.js $(componentName)
+ npx storybook@latest migrate csf-2-to-3 --glob="./packages/kit/src/$(componentName)/*.stories.tsx"
+ npx jscodeshift ./packages/kit/src/$(componentName) -t ./scripts/transform-wpds-imports.js --extensions=tsx
+ npx react-codemod update-react-imports ./packages/kit/src
diff --git a/apps/nextjs13-approuter/.gitignore b/apps/nextjs13-approuter/.gitignore
new file mode 100644
index 000000000..8f322f0d8
--- /dev/null
+++ b/apps/nextjs13-approuter/.gitignore
@@ -0,0 +1,35 @@
+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+
+# dependencies
+/node_modules
+/.pnp
+.pnp.js
+
+# testing
+/coverage
+
+# next.js
+/.next/
+/out/
+
+# production
+/build
+
+# misc
+.DS_Store
+*.pem
+
+# debug
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+
+# local env files
+.env*.local
+
+# vercel
+.vercel
+
+# typescript
+*.tsbuildinfo
+next-env.d.ts
diff --git a/apps/nextjs13-approuter/CHANGELOG.md b/apps/nextjs13-approuter/CHANGELOG.md
new file mode 100644
index 000000000..73a2fb014
--- /dev/null
+++ b/apps/nextjs13-approuter/CHANGELOG.md
@@ -0,0 +1,84 @@
+# Change Log
+
+All notable changes to this project will be documented in this file.
+See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+# [2.0.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.24.0...v2.0.0) (2024-04-24)
+
+### Features
+
+- v2.0.0 ([#542](https://github.com/washingtonpost/wpds-ui-kit/issues/542)) ([d429cfa](https://github.com/washingtonpost/wpds-ui-kit/commit/d429cfabb7489a2548ffad5c3d945145824d4a22)), closes [#544](https://github.com/washingtonpost/wpds-ui-kit/issues/544) [#552](https://github.com/washingtonpost/wpds-ui-kit/issues/552) [#555](https://github.com/washingtonpost/wpds-ui-kit/issues/555) [#560](https://github.com/washingtonpost/wpds-ui-kit/issues/560) [#562](https://github.com/washingtonpost/wpds-ui-kit/issues/562) [#564](https://github.com/washingtonpost/wpds-ui-kit/issues/564) [#565](https://github.com/washingtonpost/wpds-ui-kit/issues/565) [#574](https://github.com/washingtonpost/wpds-ui-kit/issues/574) [#570](https://github.com/washingtonpost/wpds-ui-kit/issues/570) [#579](https://github.com/washingtonpost/wpds-ui-kit/issues/579) [#578](https://github.com/washingtonpost/wpds-ui-kit/issues/578) [#580](https://github.com/washingtonpost/wpds-ui-kit/issues/580) [#579](https://github.com/washingtonpost/wpds-ui-kit/issues/579)
+
+# [2.0.0-alpha.12](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.11...v2.0.0-alpha.12) (2024-04-10)
+
+**Note:** Version bump only for package nextjs13-approuter
+
+# [2.0.0-alpha.11](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.10...v2.0.0-alpha.11) (2024-04-09)
+
+**Note:** Version bump only for package nextjs13-approuter
+
+# [2.0.0-alpha.10](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.7...v2.0.0-alpha.10) (2024-04-09)
+
+**Note:** Version bump only for package nextjs13-approuter
+
+# [2.0.0-alpha.9](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.7...v2.0.0-alpha.9) (2024-04-09)
+
+**Note:** Version bump only for package nextjs13-approuter
+
+# [2.0.0-alpha.8](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.7...v2.0.0-alpha.8) (2024-04-04)
+
+**Note:** Version bump only for package nextjs13-approuter
+
+# [2.0.0-alpha.7](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.6...v2.0.0-alpha.7) (2024-04-02)
+
+# [2.0.0-alpha.2](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.1...v2.0.0-alpha.2) (2024-03-14)
+
+# [2.0.0-alpha.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.0...v2.0.0-alpha.1) (2024-03-14)
+
+# [2.0.0-alpha.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.1.0-experimental.0...v2.0.0-alpha.0) (2024-03-14)
+
+# [2.1.0-experimental.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.0...v2.1.0-experimental.0) (2024-03-13)
+
+### Features
+
+- v2 mass components upgrade/migration ([#578](https://github.com/washingtonpost/wpds-ui-kit/issues/578)) ([5e0394b](https://github.com/washingtonpost/wpds-ui-kit/commit/5e0394b4e6747bfd9fee1dc0bcd82d1dcb6cd9b6)), closes [#580](https://github.com/washingtonpost/wpds-ui-kit/issues/580) [#579](https://github.com/washingtonpost/wpds-ui-kit/issues/579)
+
+# [2.0.0-alpha.6](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.5...v2.0.0-alpha.6) (2024-03-15)
+
+**Note:** Version bump only for package nextjs13-approuter
+
+# [2.0.0-alpha.5](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.4...v2.0.0-alpha.5) (2024-03-15)
+
+**Note:** Version bump only for package nextjs13-approuter
+
+# [2.0.0-alpha.4](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.3...v2.0.0-alpha.4) (2024-03-15)
+
+**Note:** Version bump only for package nextjs13-approuter
+
+# [2.0.0-alpha.3](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.6...v2.0.0-alpha.3) (2024-03-14)
+
+# [2.0.0-alpha.2](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.1...v2.0.0-alpha.2) (2024-03-14)
+
+# [2.0.0-alpha.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.0...v2.0.0-alpha.1) (2024-03-14)
+
+# [2.0.0-alpha.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.1.0-experimental.1...v2.0.0-alpha.0) (2024-03-14)
+
+# [2.1.0-experimental.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.1.0-experimental.0...v2.1.0-experimental.1) (2024-03-13)
+
+# [2.1.0-experimental.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.0...v2.1.0-experimental.0) (2024-03-13)
+
+### Features
+
+- v2 mass components upgrade/migration ([#578](https://github.com/washingtonpost/wpds-ui-kit/issues/578)) ([5e0394b](https://github.com/washingtonpost/wpds-ui-kit/commit/5e0394b4e6747bfd9fee1dc0bcd82d1dcb6cd9b6)), closes [#580](https://github.com/washingtonpost/wpds-ui-kit/issues/580) [#579](https://github.com/washingtonpost/wpds-ui-kit/issues/579)
+
+# [2.0.0-alpha.2](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.1...v2.0.0-alpha.2) (2024-03-14)
+
+**Note:** Version bump only for package nextjs13-approuter
+
+# [2.0.0-alpha.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.0...v2.0.0-alpha.1) (2024-03-14)
+
+**Note:** Version bump only for package nextjs13-approuter
+
+# [2.0.0-alpha.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.1.0-experimental.0...v2.0.0-alpha.0) (2024-03-14)
+
+**Note:** Version bump only for package nextjs13-approuter
diff --git a/apps/nextjs13-approuter/README.md b/apps/nextjs13-approuter/README.md
new file mode 100644
index 000000000..376cab465
--- /dev/null
+++ b/apps/nextjs13-approuter/README.md
@@ -0,0 +1 @@
+# Next.js 13 App Router Test App
diff --git a/apps/nextjs13-approuter/next.config.js b/apps/nextjs13-approuter/next.config.js
new file mode 100644
index 000000000..658404ac6
--- /dev/null
+++ b/apps/nextjs13-approuter/next.config.js
@@ -0,0 +1,4 @@
+/** @type {import('next').NextConfig} */
+const nextConfig = {};
+
+module.exports = nextConfig;
diff --git a/apps/nextjs13-approuter/package.json b/apps/nextjs13-approuter/package.json
new file mode 100644
index 000000000..7f3aa2929
--- /dev/null
+++ b/apps/nextjs13-approuter/package.json
@@ -0,0 +1,18 @@
+{
+ "name": "nextjs13-approuter",
+ "version": "2.0.0",
+ "private": true,
+ "scripts": {
+ "dev": "next dev",
+ "build-no": "next build",
+ "start": "next start",
+ "lint": "next lint"
+ },
+ "dependencies": {
+ "@washingtonpost/wpds-kitchen-sink": "2.0.0",
+ "@washingtonpost/wpds-ui-kit": "2.0.0",
+ "next": "13.5.6",
+ "react": "^18.2.0",
+ "react-dom": "^18.2.0"
+ }
+}
diff --git a/apps/nextjs13-approuter/src/app/layout.js b/apps/nextjs13-approuter/src/app/layout.js
new file mode 100644
index 000000000..0f72f5a0f
--- /dev/null
+++ b/apps/nextjs13-approuter/src/app/layout.js
@@ -0,0 +1,12 @@
+import React from "react";
+import StitchesRegistry from "./registry";
+
+export default function RootLayout({ children }) {
+ return (
+
+
+ {children}
+
+
+ );
+}
diff --git a/apps/nextjs13-approuter/src/app/page.js b/apps/nextjs13-approuter/src/app/page.js
new file mode 100644
index 000000000..1f2a3943a
--- /dev/null
+++ b/apps/nextjs13-approuter/src/app/page.js
@@ -0,0 +1,8 @@
+"use client";
+
+import React from "react";
+import { KitchenSink } from "@washingtonpost/wpds-kitchen-sink";
+
+export default function Home() {
+ return ;
+}
diff --git a/apps/nextjs13-approuter/src/app/registry.js b/apps/nextjs13-approuter/src/app/registry.js
new file mode 100644
index 000000000..7fa90b078
--- /dev/null
+++ b/apps/nextjs13-approuter/src/app/registry.js
@@ -0,0 +1,16 @@
+"use client";
+
+import React from "react";
+import { useServerInsertedHTML } from "next/navigation";
+import { getCssText, globalCss } from "@washingtonpost/wpds-ui-kit";
+
+export default function StitchesRegistry({ children }) {
+ useServerInsertedHTML(() => {
+ globalCss();
+ return (
+
+ );
+ });
+
+ return children;
+}
diff --git a/apps/nextjs13-pagerouter/.gitignore b/apps/nextjs13-pagerouter/.gitignore
new file mode 100644
index 000000000..8f322f0d8
--- /dev/null
+++ b/apps/nextjs13-pagerouter/.gitignore
@@ -0,0 +1,35 @@
+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+
+# dependencies
+/node_modules
+/.pnp
+.pnp.js
+
+# testing
+/coverage
+
+# next.js
+/.next/
+/out/
+
+# production
+/build
+
+# misc
+.DS_Store
+*.pem
+
+# debug
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+
+# local env files
+.env*.local
+
+# vercel
+.vercel
+
+# typescript
+*.tsbuildinfo
+next-env.d.ts
diff --git a/apps/nextjs13-pagerouter/CHANGELOG.md b/apps/nextjs13-pagerouter/CHANGELOG.md
new file mode 100644
index 000000000..0a0aeb2b0
--- /dev/null
+++ b/apps/nextjs13-pagerouter/CHANGELOG.md
@@ -0,0 +1,84 @@
+# Change Log
+
+All notable changes to this project will be documented in this file.
+See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+# [2.0.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.24.0...v2.0.0) (2024-04-24)
+
+### Features
+
+- v2.0.0 ([#542](https://github.com/washingtonpost/wpds-ui-kit/issues/542)) ([d429cfa](https://github.com/washingtonpost/wpds-ui-kit/commit/d429cfabb7489a2548ffad5c3d945145824d4a22)), closes [#544](https://github.com/washingtonpost/wpds-ui-kit/issues/544) [#552](https://github.com/washingtonpost/wpds-ui-kit/issues/552) [#555](https://github.com/washingtonpost/wpds-ui-kit/issues/555) [#560](https://github.com/washingtonpost/wpds-ui-kit/issues/560) [#562](https://github.com/washingtonpost/wpds-ui-kit/issues/562) [#564](https://github.com/washingtonpost/wpds-ui-kit/issues/564) [#565](https://github.com/washingtonpost/wpds-ui-kit/issues/565) [#574](https://github.com/washingtonpost/wpds-ui-kit/issues/574) [#570](https://github.com/washingtonpost/wpds-ui-kit/issues/570) [#579](https://github.com/washingtonpost/wpds-ui-kit/issues/579) [#578](https://github.com/washingtonpost/wpds-ui-kit/issues/578) [#580](https://github.com/washingtonpost/wpds-ui-kit/issues/580) [#579](https://github.com/washingtonpost/wpds-ui-kit/issues/579)
+
+# [2.0.0-alpha.12](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.11...v2.0.0-alpha.12) (2024-04-10)
+
+**Note:** Version bump only for package nextjs13-pagerouter
+
+# [2.0.0-alpha.11](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.10...v2.0.0-alpha.11) (2024-04-09)
+
+**Note:** Version bump only for package nextjs13-pagerouter
+
+# [2.0.0-alpha.10](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.7...v2.0.0-alpha.10) (2024-04-09)
+
+**Note:** Version bump only for package nextjs13-pagerouter
+
+# [2.0.0-alpha.9](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.7...v2.0.0-alpha.9) (2024-04-09)
+
+**Note:** Version bump only for package nextjs13-pagerouter
+
+# [2.0.0-alpha.8](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.7...v2.0.0-alpha.8) (2024-04-04)
+
+**Note:** Version bump only for package nextjs13-pagerouter
+
+# [2.0.0-alpha.7](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.6...v2.0.0-alpha.7) (2024-04-02)
+
+# [2.0.0-alpha.2](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.1...v2.0.0-alpha.2) (2024-03-14)
+
+# [2.0.0-alpha.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.0...v2.0.0-alpha.1) (2024-03-14)
+
+# [2.0.0-alpha.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.1.0-experimental.0...v2.0.0-alpha.0) (2024-03-14)
+
+# [2.1.0-experimental.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.0...v2.1.0-experimental.0) (2024-03-13)
+
+### Features
+
+- v2 mass components upgrade/migration ([#578](https://github.com/washingtonpost/wpds-ui-kit/issues/578)) ([5e0394b](https://github.com/washingtonpost/wpds-ui-kit/commit/5e0394b4e6747bfd9fee1dc0bcd82d1dcb6cd9b6)), closes [#580](https://github.com/washingtonpost/wpds-ui-kit/issues/580) [#579](https://github.com/washingtonpost/wpds-ui-kit/issues/579)
+
+# [2.0.0-alpha.6](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.5...v2.0.0-alpha.6) (2024-03-15)
+
+**Note:** Version bump only for package nextjs13-pagerouter
+
+# [2.0.0-alpha.5](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.4...v2.0.0-alpha.5) (2024-03-15)
+
+**Note:** Version bump only for package nextjs13-pagerouter
+
+# [2.0.0-alpha.4](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.3...v2.0.0-alpha.4) (2024-03-15)
+
+**Note:** Version bump only for package nextjs13-pagerouter
+
+# [2.0.0-alpha.3](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.6...v2.0.0-alpha.3) (2024-03-14)
+
+# [2.0.0-alpha.2](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.1...v2.0.0-alpha.2) (2024-03-14)
+
+# [2.0.0-alpha.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.0...v2.0.0-alpha.1) (2024-03-14)
+
+# [2.0.0-alpha.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.1.0-experimental.1...v2.0.0-alpha.0) (2024-03-14)
+
+# [2.1.0-experimental.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.1.0-experimental.0...v2.1.0-experimental.1) (2024-03-13)
+
+# [2.1.0-experimental.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.0...v2.1.0-experimental.0) (2024-03-13)
+
+### Features
+
+- v2 mass components upgrade/migration ([#578](https://github.com/washingtonpost/wpds-ui-kit/issues/578)) ([5e0394b](https://github.com/washingtonpost/wpds-ui-kit/commit/5e0394b4e6747bfd9fee1dc0bcd82d1dcb6cd9b6)), closes [#580](https://github.com/washingtonpost/wpds-ui-kit/issues/580) [#579](https://github.com/washingtonpost/wpds-ui-kit/issues/579)
+
+# [2.0.0-alpha.2](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.1...v2.0.0-alpha.2) (2024-03-14)
+
+**Note:** Version bump only for package nextjs13-pagerouter
+
+# [2.0.0-alpha.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.0...v2.0.0-alpha.1) (2024-03-14)
+
+**Note:** Version bump only for package nextjs13-pagerouter
+
+# [2.0.0-alpha.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.1.0-experimental.0...v2.0.0-alpha.0) (2024-03-14)
+
+**Note:** Version bump only for package nextjs13-pagerouter
diff --git a/apps/nextjs13-pagerouter/README.md b/apps/nextjs13-pagerouter/README.md
new file mode 100644
index 000000000..5d98b1e5a
--- /dev/null
+++ b/apps/nextjs13-pagerouter/README.md
@@ -0,0 +1,40 @@
+This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
+
+## Getting Started
+
+First, run the development server:
+
+```bash
+npm run dev
+# or
+yarn dev
+# or
+pnpm dev
+# or
+bun dev
+```
+
+Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
+
+You can start editing the page by modifying `pages/index.js`. The page auto-updates as you edit the file.
+
+[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.js`.
+
+The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages.
+
+This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.
+
+## Learn More
+
+To learn more about Next.js, take a look at the following resources:
+
+- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
+- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
+
+You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
+
+## Deploy on Vercel
+
+The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
+
+Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
diff --git a/apps/nextjs13-pagerouter/next.config.js b/apps/nextjs13-pagerouter/next.config.js
new file mode 100644
index 000000000..91ef62f0d
--- /dev/null
+++ b/apps/nextjs13-pagerouter/next.config.js
@@ -0,0 +1,6 @@
+/** @type {import('next').NextConfig} */
+const nextConfig = {
+ reactStrictMode: true,
+};
+
+module.exports = nextConfig;
diff --git a/apps/nextjs13-pagerouter/package.json b/apps/nextjs13-pagerouter/package.json
new file mode 100644
index 000000000..7d1126d2e
--- /dev/null
+++ b/apps/nextjs13-pagerouter/package.json
@@ -0,0 +1,18 @@
+{
+ "name": "nextjs13-pagerouter",
+ "version": "2.0.0",
+ "private": true,
+ "scripts": {
+ "dev": "next dev",
+ "build-no": "next build",
+ "start": "next start",
+ "lint": "next lint"
+ },
+ "dependencies": {
+ "@washingtonpost/wpds-kitchen-sink": "2.0.0",
+ "@washingtonpost/wpds-ui-kit": "2.0.0",
+ "next": "13.5.6",
+ "react": "^18.2.0",
+ "react-dom": "^18.2.0"
+ }
+}
diff --git a/apps/nextjs13-pagerouter/src/pages/_app.jsx b/apps/nextjs13-pagerouter/src/pages/_app.jsx
new file mode 100644
index 000000000..3f2879570
--- /dev/null
+++ b/apps/nextjs13-pagerouter/src/pages/_app.jsx
@@ -0,0 +1,8 @@
+import React from "react";
+import { globalStyles } from "@washingtonpost/wpds-ui-kit";
+
+export default function App({ Component, pageProps }) {
+ globalStyles();
+
+ return ;
+}
diff --git a/apps/nextjs13-pagerouter/src/pages/_document.jsx b/apps/nextjs13-pagerouter/src/pages/_document.jsx
new file mode 100644
index 000000000..58cb836bf
--- /dev/null
+++ b/apps/nextjs13-pagerouter/src/pages/_document.jsx
@@ -0,0 +1,16 @@
+import React from "react";
+import { Html, Head, Main, NextScript } from "next/document";
+import { getCssText } from "@washingtonpost/wpds-ui-kit";
+
+export default function Document() {
+ return (
+
+
+
+
+
+
+ );
+}
diff --git a/apps/nextjs13-pagerouter/src/pages/index.jsx b/apps/nextjs13-pagerouter/src/pages/index.jsx
new file mode 100644
index 000000000..723ded72d
--- /dev/null
+++ b/apps/nextjs13-pagerouter/src/pages/index.jsx
@@ -0,0 +1,6 @@
+import React from "react";
+import { KitchenSink } from "@washingtonpost/wpds-kitchen-sink";
+
+export default function Home() {
+ return ;
+}
diff --git a/apps/nextjs14-approuter/.gitignore b/apps/nextjs14-approuter/.gitignore
new file mode 100644
index 000000000..fd3dbb571
--- /dev/null
+++ b/apps/nextjs14-approuter/.gitignore
@@ -0,0 +1,36 @@
+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+
+# dependencies
+/node_modules
+/.pnp
+.pnp.js
+.yarn/install-state.gz
+
+# testing
+/coverage
+
+# next.js
+/.next/
+/out/
+
+# production
+/build
+
+# misc
+.DS_Store
+*.pem
+
+# debug
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+
+# local env files
+.env*.local
+
+# vercel
+.vercel
+
+# typescript
+*.tsbuildinfo
+next-env.d.ts
diff --git a/apps/nextjs14-approuter/CHANGELOG.md b/apps/nextjs14-approuter/CHANGELOG.md
new file mode 100644
index 000000000..b6da62fc7
--- /dev/null
+++ b/apps/nextjs14-approuter/CHANGELOG.md
@@ -0,0 +1,84 @@
+# Change Log
+
+All notable changes to this project will be documented in this file.
+See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+# [2.0.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.24.0...v2.0.0) (2024-04-24)
+
+### Features
+
+- v2.0.0 ([#542](https://github.com/washingtonpost/wpds-ui-kit/issues/542)) ([d429cfa](https://github.com/washingtonpost/wpds-ui-kit/commit/d429cfabb7489a2548ffad5c3d945145824d4a22)), closes [#544](https://github.com/washingtonpost/wpds-ui-kit/issues/544) [#552](https://github.com/washingtonpost/wpds-ui-kit/issues/552) [#555](https://github.com/washingtonpost/wpds-ui-kit/issues/555) [#560](https://github.com/washingtonpost/wpds-ui-kit/issues/560) [#562](https://github.com/washingtonpost/wpds-ui-kit/issues/562) [#564](https://github.com/washingtonpost/wpds-ui-kit/issues/564) [#565](https://github.com/washingtonpost/wpds-ui-kit/issues/565) [#574](https://github.com/washingtonpost/wpds-ui-kit/issues/574) [#570](https://github.com/washingtonpost/wpds-ui-kit/issues/570) [#579](https://github.com/washingtonpost/wpds-ui-kit/issues/579) [#578](https://github.com/washingtonpost/wpds-ui-kit/issues/578) [#580](https://github.com/washingtonpost/wpds-ui-kit/issues/580) [#579](https://github.com/washingtonpost/wpds-ui-kit/issues/579)
+
+# [2.0.0-alpha.12](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.11...v2.0.0-alpha.12) (2024-04-10)
+
+**Note:** Version bump only for package nextjs14-approuter
+
+# [2.0.0-alpha.11](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.10...v2.0.0-alpha.11) (2024-04-09)
+
+**Note:** Version bump only for package nextjs14-approuter
+
+# [2.0.0-alpha.10](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.7...v2.0.0-alpha.10) (2024-04-09)
+
+**Note:** Version bump only for package nextjs14-approuter
+
+# [2.0.0-alpha.9](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.7...v2.0.0-alpha.9) (2024-04-09)
+
+**Note:** Version bump only for package nextjs14-approuter
+
+# [2.0.0-alpha.8](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.7...v2.0.0-alpha.8) (2024-04-04)
+
+**Note:** Version bump only for package nextjs14-approuter
+
+# [2.0.0-alpha.7](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.6...v2.0.0-alpha.7) (2024-04-02)
+
+# [2.0.0-alpha.2](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.1...v2.0.0-alpha.2) (2024-03-14)
+
+# [2.0.0-alpha.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.0...v2.0.0-alpha.1) (2024-03-14)
+
+# [2.0.0-alpha.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.1.0-experimental.0...v2.0.0-alpha.0) (2024-03-14)
+
+# [2.1.0-experimental.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.0...v2.1.0-experimental.0) (2024-03-13)
+
+### Features
+
+- v2 mass components upgrade/migration ([#578](https://github.com/washingtonpost/wpds-ui-kit/issues/578)) ([5e0394b](https://github.com/washingtonpost/wpds-ui-kit/commit/5e0394b4e6747bfd9fee1dc0bcd82d1dcb6cd9b6)), closes [#580](https://github.com/washingtonpost/wpds-ui-kit/issues/580) [#579](https://github.com/washingtonpost/wpds-ui-kit/issues/579)
+
+# [2.0.0-alpha.6](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.5...v2.0.0-alpha.6) (2024-03-15)
+
+**Note:** Version bump only for package nextjs14-approuter
+
+# [2.0.0-alpha.5](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.4...v2.0.0-alpha.5) (2024-03-15)
+
+**Note:** Version bump only for package nextjs14-approuter
+
+# [2.0.0-alpha.4](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.3...v2.0.0-alpha.4) (2024-03-15)
+
+**Note:** Version bump only for package nextjs14-approuter
+
+# [2.0.0-alpha.3](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.6...v2.0.0-alpha.3) (2024-03-14)
+
+# [2.0.0-alpha.2](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.1...v2.0.0-alpha.2) (2024-03-14)
+
+# [2.0.0-alpha.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.0...v2.0.0-alpha.1) (2024-03-14)
+
+# [2.0.0-alpha.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.1.0-experimental.1...v2.0.0-alpha.0) (2024-03-14)
+
+# [2.1.0-experimental.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.1.0-experimental.0...v2.1.0-experimental.1) (2024-03-13)
+
+# [2.1.0-experimental.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.0...v2.1.0-experimental.0) (2024-03-13)
+
+### Features
+
+- v2 mass components upgrade/migration ([#578](https://github.com/washingtonpost/wpds-ui-kit/issues/578)) ([5e0394b](https://github.com/washingtonpost/wpds-ui-kit/commit/5e0394b4e6747bfd9fee1dc0bcd82d1dcb6cd9b6)), closes [#580](https://github.com/washingtonpost/wpds-ui-kit/issues/580) [#579](https://github.com/washingtonpost/wpds-ui-kit/issues/579)
+
+# [2.0.0-alpha.2](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.1...v2.0.0-alpha.2) (2024-03-14)
+
+**Note:** Version bump only for package nextjs14-approuter
+
+# [2.0.0-alpha.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.0...v2.0.0-alpha.1) (2024-03-14)
+
+**Note:** Version bump only for package nextjs14-approuter
+
+# [2.0.0-alpha.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.1.0-experimental.0...v2.0.0-alpha.0) (2024-03-14)
+
+**Note:** Version bump only for package nextjs14-approuter
diff --git a/apps/nextjs14-approuter/README.md b/apps/nextjs14-approuter/README.md
new file mode 100644
index 000000000..0dc9ea2bc
--- /dev/null
+++ b/apps/nextjs14-approuter/README.md
@@ -0,0 +1,36 @@
+This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
+
+## Getting Started
+
+First, run the development server:
+
+```bash
+npm run dev
+# or
+yarn dev
+# or
+pnpm dev
+# or
+bun dev
+```
+
+Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
+
+You can start editing the page by modifying `app/page.js`. The page auto-updates as you edit the file.
+
+This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.
+
+## Learn More
+
+To learn more about Next.js, take a look at the following resources:
+
+- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
+- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
+
+You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
+
+## Deploy on Vercel
+
+The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
+
+Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
diff --git a/apps/nextjs14-approuter/next.config.js b/apps/nextjs14-approuter/next.config.js
new file mode 100644
index 000000000..658404ac6
--- /dev/null
+++ b/apps/nextjs14-approuter/next.config.js
@@ -0,0 +1,4 @@
+/** @type {import('next').NextConfig} */
+const nextConfig = {};
+
+module.exports = nextConfig;
diff --git a/apps/nextjs14-approuter/package.json b/apps/nextjs14-approuter/package.json
new file mode 100644
index 000000000..3e154e03b
--- /dev/null
+++ b/apps/nextjs14-approuter/package.json
@@ -0,0 +1,18 @@
+{
+ "name": "nextjs14-approuter",
+ "version": "2.0.0",
+ "private": true,
+ "scripts": {
+ "dev": "next dev",
+ "build-no": "next build",
+ "start": "next start",
+ "lint": "next lint"
+ },
+ "dependencies": {
+ "@washingtonpost/wpds-kitchen-sink": "2.0.0",
+ "@washingtonpost/wpds-ui-kit": "2.0.0",
+ "next": "14.0.3",
+ "react": "^18.2.0",
+ "react-dom": "^18.2.0"
+ }
+}
diff --git a/apps/nextjs14-approuter/src/app/layout.js b/apps/nextjs14-approuter/src/app/layout.js
new file mode 100644
index 000000000..0f72f5a0f
--- /dev/null
+++ b/apps/nextjs14-approuter/src/app/layout.js
@@ -0,0 +1,12 @@
+import React from "react";
+import StitchesRegistry from "./registry";
+
+export default function RootLayout({ children }) {
+ return (
+
+
+ {children}
+
+
+ );
+}
diff --git a/apps/nextjs14-approuter/src/app/page.js b/apps/nextjs14-approuter/src/app/page.js
new file mode 100644
index 000000000..1f2a3943a
--- /dev/null
+++ b/apps/nextjs14-approuter/src/app/page.js
@@ -0,0 +1,8 @@
+"use client";
+
+import React from "react";
+import { KitchenSink } from "@washingtonpost/wpds-kitchen-sink";
+
+export default function Home() {
+ return ;
+}
diff --git a/apps/nextjs14-approuter/src/app/registry.js b/apps/nextjs14-approuter/src/app/registry.js
new file mode 100644
index 000000000..7fa90b078
--- /dev/null
+++ b/apps/nextjs14-approuter/src/app/registry.js
@@ -0,0 +1,16 @@
+"use client";
+
+import React from "react";
+import { useServerInsertedHTML } from "next/navigation";
+import { getCssText, globalCss } from "@washingtonpost/wpds-ui-kit";
+
+export default function StitchesRegistry({ children }) {
+ useServerInsertedHTML(() => {
+ globalCss();
+ return (
+
+ );
+ });
+
+ return children;
+}
diff --git a/apps/nextjs14-pagerouter/.gitignore b/apps/nextjs14-pagerouter/.gitignore
new file mode 100644
index 000000000..fd3dbb571
--- /dev/null
+++ b/apps/nextjs14-pagerouter/.gitignore
@@ -0,0 +1,36 @@
+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+
+# dependencies
+/node_modules
+/.pnp
+.pnp.js
+.yarn/install-state.gz
+
+# testing
+/coverage
+
+# next.js
+/.next/
+/out/
+
+# production
+/build
+
+# misc
+.DS_Store
+*.pem
+
+# debug
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+
+# local env files
+.env*.local
+
+# vercel
+.vercel
+
+# typescript
+*.tsbuildinfo
+next-env.d.ts
diff --git a/apps/nextjs14-pagerouter/CHANGELOG.md b/apps/nextjs14-pagerouter/CHANGELOG.md
new file mode 100644
index 000000000..bd195c2c8
--- /dev/null
+++ b/apps/nextjs14-pagerouter/CHANGELOG.md
@@ -0,0 +1,84 @@
+# Change Log
+
+All notable changes to this project will be documented in this file.
+See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+# [2.0.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.24.0...v2.0.0) (2024-04-24)
+
+### Features
+
+- v2.0.0 ([#542](https://github.com/washingtonpost/wpds-ui-kit/issues/542)) ([d429cfa](https://github.com/washingtonpost/wpds-ui-kit/commit/d429cfabb7489a2548ffad5c3d945145824d4a22)), closes [#544](https://github.com/washingtonpost/wpds-ui-kit/issues/544) [#552](https://github.com/washingtonpost/wpds-ui-kit/issues/552) [#555](https://github.com/washingtonpost/wpds-ui-kit/issues/555) [#560](https://github.com/washingtonpost/wpds-ui-kit/issues/560) [#562](https://github.com/washingtonpost/wpds-ui-kit/issues/562) [#564](https://github.com/washingtonpost/wpds-ui-kit/issues/564) [#565](https://github.com/washingtonpost/wpds-ui-kit/issues/565) [#574](https://github.com/washingtonpost/wpds-ui-kit/issues/574) [#570](https://github.com/washingtonpost/wpds-ui-kit/issues/570) [#579](https://github.com/washingtonpost/wpds-ui-kit/issues/579) [#578](https://github.com/washingtonpost/wpds-ui-kit/issues/578) [#580](https://github.com/washingtonpost/wpds-ui-kit/issues/580) [#579](https://github.com/washingtonpost/wpds-ui-kit/issues/579)
+
+# [2.0.0-alpha.12](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.11...v2.0.0-alpha.12) (2024-04-10)
+
+**Note:** Version bump only for package nextjs14-pagerouter
+
+# [2.0.0-alpha.11](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.10...v2.0.0-alpha.11) (2024-04-09)
+
+**Note:** Version bump only for package nextjs14-pagerouter
+
+# [2.0.0-alpha.10](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.7...v2.0.0-alpha.10) (2024-04-09)
+
+**Note:** Version bump only for package nextjs14-pagerouter
+
+# [2.0.0-alpha.9](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.7...v2.0.0-alpha.9) (2024-04-09)
+
+**Note:** Version bump only for package nextjs14-pagerouter
+
+# [2.0.0-alpha.8](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.7...v2.0.0-alpha.8) (2024-04-04)
+
+**Note:** Version bump only for package nextjs14-pagerouter
+
+# [2.0.0-alpha.7](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.6...v2.0.0-alpha.7) (2024-04-02)
+
+# [2.0.0-alpha.2](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.1...v2.0.0-alpha.2) (2024-03-14)
+
+# [2.0.0-alpha.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.0...v2.0.0-alpha.1) (2024-03-14)
+
+# [2.0.0-alpha.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.1.0-experimental.0...v2.0.0-alpha.0) (2024-03-14)
+
+# [2.1.0-experimental.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.0...v2.1.0-experimental.0) (2024-03-13)
+
+### Features
+
+- v2 mass components upgrade/migration ([#578](https://github.com/washingtonpost/wpds-ui-kit/issues/578)) ([5e0394b](https://github.com/washingtonpost/wpds-ui-kit/commit/5e0394b4e6747bfd9fee1dc0bcd82d1dcb6cd9b6)), closes [#580](https://github.com/washingtonpost/wpds-ui-kit/issues/580) [#579](https://github.com/washingtonpost/wpds-ui-kit/issues/579)
+
+# [2.0.0-alpha.6](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.5...v2.0.0-alpha.6) (2024-03-15)
+
+**Note:** Version bump only for package nextjs14-pagerouter
+
+# [2.0.0-alpha.5](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.4...v2.0.0-alpha.5) (2024-03-15)
+
+**Note:** Version bump only for package nextjs14-pagerouter
+
+# [2.0.0-alpha.4](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.3...v2.0.0-alpha.4) (2024-03-15)
+
+**Note:** Version bump only for package nextjs14-pagerouter
+
+# [2.0.0-alpha.3](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.6...v2.0.0-alpha.3) (2024-03-14)
+
+# [2.0.0-alpha.2](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.1...v2.0.0-alpha.2) (2024-03-14)
+
+# [2.0.0-alpha.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.0...v2.0.0-alpha.1) (2024-03-14)
+
+# [2.0.0-alpha.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.1.0-experimental.1...v2.0.0-alpha.0) (2024-03-14)
+
+# [2.1.0-experimental.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.1.0-experimental.0...v2.1.0-experimental.1) (2024-03-13)
+
+# [2.1.0-experimental.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.0...v2.1.0-experimental.0) (2024-03-13)
+
+### Features
+
+- v2 mass components upgrade/migration ([#578](https://github.com/washingtonpost/wpds-ui-kit/issues/578)) ([5e0394b](https://github.com/washingtonpost/wpds-ui-kit/commit/5e0394b4e6747bfd9fee1dc0bcd82d1dcb6cd9b6)), closes [#580](https://github.com/washingtonpost/wpds-ui-kit/issues/580) [#579](https://github.com/washingtonpost/wpds-ui-kit/issues/579)
+
+# [2.0.0-alpha.2](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.1...v2.0.0-alpha.2) (2024-03-14)
+
+**Note:** Version bump only for package nextjs14-pagerouter
+
+# [2.0.0-alpha.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.0...v2.0.0-alpha.1) (2024-03-14)
+
+**Note:** Version bump only for package nextjs14-pagerouter
+
+# [2.0.0-alpha.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.1.0-experimental.0...v2.0.0-alpha.0) (2024-03-14)
+
+**Note:** Version bump only for package nextjs14-pagerouter
diff --git a/apps/nextjs14-pagerouter/README.md b/apps/nextjs14-pagerouter/README.md
new file mode 100644
index 000000000..5d98b1e5a
--- /dev/null
+++ b/apps/nextjs14-pagerouter/README.md
@@ -0,0 +1,40 @@
+This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
+
+## Getting Started
+
+First, run the development server:
+
+```bash
+npm run dev
+# or
+yarn dev
+# or
+pnpm dev
+# or
+bun dev
+```
+
+Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
+
+You can start editing the page by modifying `pages/index.js`. The page auto-updates as you edit the file.
+
+[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.js`.
+
+The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages.
+
+This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.
+
+## Learn More
+
+To learn more about Next.js, take a look at the following resources:
+
+- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
+- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
+
+You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
+
+## Deploy on Vercel
+
+The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
+
+Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
diff --git a/apps/nextjs14-pagerouter/next.config.js b/apps/nextjs14-pagerouter/next.config.js
new file mode 100644
index 000000000..91ef62f0d
--- /dev/null
+++ b/apps/nextjs14-pagerouter/next.config.js
@@ -0,0 +1,6 @@
+/** @type {import('next').NextConfig} */
+const nextConfig = {
+ reactStrictMode: true,
+};
+
+module.exports = nextConfig;
diff --git a/apps/nextjs14-pagerouter/package.json b/apps/nextjs14-pagerouter/package.json
new file mode 100644
index 000000000..6d2a2eacc
--- /dev/null
+++ b/apps/nextjs14-pagerouter/package.json
@@ -0,0 +1,18 @@
+{
+ "name": "nextjs14-pagerouter",
+ "version": "2.0.0",
+ "private": true,
+ "scripts": {
+ "dev": "next dev",
+ "build-no": "next build",
+ "start": "next start",
+ "lint": "next lint"
+ },
+ "dependencies": {
+ "@washingtonpost/wpds-kitchen-sink": "2.0.0",
+ "@washingtonpost/wpds-ui-kit": "2.0.0",
+ "next": "14.0.3",
+ "react": "^18.2.0",
+ "react-dom": "^18.2.0"
+ }
+}
diff --git a/apps/nextjs14-pagerouter/src/pages/_app.jsx b/apps/nextjs14-pagerouter/src/pages/_app.jsx
new file mode 100644
index 000000000..3f2879570
--- /dev/null
+++ b/apps/nextjs14-pagerouter/src/pages/_app.jsx
@@ -0,0 +1,8 @@
+import React from "react";
+import { globalStyles } from "@washingtonpost/wpds-ui-kit";
+
+export default function App({ Component, pageProps }) {
+ globalStyles();
+
+ return ;
+}
diff --git a/apps/nextjs14-pagerouter/src/pages/_document.jsx b/apps/nextjs14-pagerouter/src/pages/_document.jsx
new file mode 100644
index 000000000..58cb836bf
--- /dev/null
+++ b/apps/nextjs14-pagerouter/src/pages/_document.jsx
@@ -0,0 +1,16 @@
+import React from "react";
+import { Html, Head, Main, NextScript } from "next/document";
+import { getCssText } from "@washingtonpost/wpds-ui-kit";
+
+export default function Document() {
+ return (
+
+
+
+
+
+
+ );
+}
diff --git a/apps/nextjs14-pagerouter/src/pages/index.jsx b/apps/nextjs14-pagerouter/src/pages/index.jsx
new file mode 100644
index 000000000..723ded72d
--- /dev/null
+++ b/apps/nextjs14-pagerouter/src/pages/index.jsx
@@ -0,0 +1,6 @@
+import React from "react";
+import { KitchenSink } from "@washingtonpost/wpds-kitchen-sink";
+
+export default function Home() {
+ return ;
+}
diff --git a/apps/vite-project/.gitignore b/apps/vite-project/.gitignore
deleted file mode 100644
index a547bf36d..000000000
--- a/apps/vite-project/.gitignore
+++ /dev/null
@@ -1,24 +0,0 @@
-# Logs
-logs
-*.log
-npm-debug.log*
-yarn-debug.log*
-yarn-error.log*
-pnpm-debug.log*
-lerna-debug.log*
-
-node_modules
-dist
-dist-ssr
-*.local
-
-# Editor directories and files
-.vscode/*
-!.vscode/extensions.json
-.idea
-.DS_Store
-*.suo
-*.ntvs*
-*.njsproj
-*.sln
-*.sw?
diff --git a/apps/vite-project/CHANGELOG.md b/apps/vite-project/CHANGELOG.md
deleted file mode 100644
index 96737215a..000000000
--- a/apps/vite-project/CHANGELOG.md
+++ /dev/null
@@ -1,137 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-# [1.17.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.16.2...v1.17.0) (2023-11-30)
-
-**Note:** Version bump only for package vite-project
-
-## [1.16.2](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.16.1...v1.16.2) (2023-11-08)
-
-**Note:** Version bump only for package vite-project
-
-## [1.16.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.16.0...v1.16.1) (2023-10-31)
-
-**Note:** Version bump only for package vite-project
-
-# [1.16.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.15.0...v1.16.0) (2023-10-24)
-
-**Note:** Version bump only for package vite-project
-
-# [1.15.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.14.0...v1.15.0) (2023-10-23)
-
-**Note:** Version bump only for package vite-project
-
-# [1.14.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.13.0...v1.14.0) (2023-09-20)
-
-**Note:** Version bump only for package vite-project
-
-# [1.13.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.12.0...v1.13.0) (2023-09-18)
-
-**Note:** Version bump only for package vite-project
-
-# [1.12.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.11.1...v1.12.0) (2023-09-13)
-
-**Note:** Version bump only for package vite-project
-
-## [1.11.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.11.0...v1.11.1) (2023-08-23)
-
-### Bug Fixes
-
-- rerun linting and formatting ([#483](https://github.com/washingtonpost/wpds-ui-kit/issues/483)) ([8de5f8a](https://github.com/washingtonpost/wpds-ui-kit/commit/8de5f8a7ddaf3b1b9cb3a8fb646d301cb003a081))
-
-# [1.11.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.10.0...v1.11.0) (2023-08-16)
-
-### Reverts
-
-- Revert "chore(release): publish" (#481) ([c25d111](https://github.com/washingtonpost/wpds-ui-kit/commit/c25d11199534ab28a653d371edee4a6638d2fc7e)), closes [#481](https://github.com/washingtonpost/wpds-ui-kit/issues/481)
-
-# [1.10.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.9.1...v1.10.0) (2023-08-10)
-
-**Note:** Version bump only for package vite-project
-
-## [1.9.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.9.0...v1.9.1) (2023-07-17)
-
-**Note:** Version bump only for package vite-project
-
-# [1.9.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.8.5...v1.9.0) (2023-07-14)
-
-**Note:** Version bump only for package vite-project
-
-## [1.8.5](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.8.4...v1.8.5) (2023-07-06)
-
-**Note:** Version bump only for package vite-project
-
-## [1.8.4](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.8.3...v1.8.4) (2023-07-06)
-
-**Note:** Version bump only for package vite-project
-
-## [1.8.3](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.8.2...v1.8.3) (2023-07-06)
-
-**Note:** Version bump only for package vite-project
-
-## [1.8.2](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.8.1...v1.8.2) (2023-06-30)
-
-**Note:** Version bump only for package vite-project
-
-## [1.8.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.8.0...v1.8.1) (2023-06-28)
-
-**Note:** Version bump only for package vite-project
-
-# [1.8.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.7.1...v1.8.0) (2023-06-28)
-
-### Features
-
-- new InputSearch component ([#428](https://github.com/washingtonpost/wpds-ui-kit/issues/428)) ([a84c713](https://github.com/washingtonpost/wpds-ui-kit/commit/a84c71392d87ac6d21bc1d1945be814e178ca890))
-
-## [1.7.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.7.0...v1.7.1) (2023-06-20)
-
-**Note:** Version bump only for package vite-project
-
-# [1.7.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.6.2...v1.7.0) (2023-06-06)
-
-### Features
-
-- add NavigationMenu component ([#408](https://github.com/washingtonpost/wpds-ui-kit/issues/408)) ([1a2873f](https://github.com/washingtonpost/wpds-ui-kit/commit/1a2873f674d3695dca0d9de96a4ca12caf8bb1c0))
-
-## [1.6.2](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.6.1...v1.6.2) (2023-05-24)
-
-**Note:** Version bump only for package vite-project
-
-## [1.6.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.6.0...v1.6.1) (2023-05-24)
-
-**Note:** Version bump only for package vite-project
-
-# [1.6.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.5.2...v1.6.0) (2023-05-24)
-
-### Features
-
-- use external footer on docs site ([#387](https://github.com/washingtonpost/wpds-ui-kit/issues/387)) ([b1dad16](https://github.com/washingtonpost/wpds-ui-kit/commit/b1dad167a07cb75938a9fc3d22f4e69b4f0e4697))
-
-## [1.5.2](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.5.1...v1.5.2) (2023-05-02)
-
-**Note:** Version bump only for package vite-project
-
-## [1.5.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.5.0...v1.5.1) (2023-05-02)
-
-**Note:** Version bump only for package vite-project
-
-# [1.5.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.4.0...v1.5.0) (2023-04-18)
-
-**Note:** Version bump only for package vite-project
-
-# [1.4.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.3.0...v1.4.0) (2023-03-28)
-
-**Note:** Version bump only for package vite-project
-
-# [1.3.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.2.1...v1.3.0) (2023-03-17)
-
-**Note:** Version bump only for package vite-project
-
-## [1.2.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.2.0...v1.2.1) (2023-03-16)
-
-### Bug Fixes
-
-- clicking label should toggle box ([#355](https://github.com/washingtonpost/wpds-ui-kit/issues/355)) ([a03ed1b](https://github.com/washingtonpost/wpds-ui-kit/commit/a03ed1b0a5f50f6aa2e4952ab5854e2abca2a508))
-- nanoid hoisting issue ([#354](https://github.com/washingtonpost/wpds-ui-kit/issues/354)) ([d490b07](https://github.com/washingtonpost/wpds-ui-kit/commit/d490b07149c0c0f101a1a289787cfd810d2a3e54))
diff --git a/apps/vite-project/index.html b/apps/vite-project/index.html
deleted file mode 100644
index 79c470191..000000000
--- a/apps/vite-project/index.html
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
- Vite + React
-
-
-
-
-
-
diff --git a/apps/vite-project/package.json b/apps/vite-project/package.json
deleted file mode 100644
index 048eeab99..000000000
--- a/apps/vite-project/package.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "name": "vite-project",
- "private": true,
- "version": "1.17.0",
- "type": "module",
- "scripts": {
- "dev": "vite",
- "build": "vite build",
- "preview": "vite preview"
- },
- "dependencies": {
- "@washingtonpost/wpds-kitchen-sink": "1.17.0",
- "@washingtonpost/wpds-ui-kit": "1.17.0",
- "react": "^18.2.0",
- "react-dom": "^18.2.0"
- },
- "devDependencies": {
- "@types/react": "^18.0.27",
- "@types/react-dom": "^18.0.10",
- "@vitejs/plugin-react": "^3.1.0",
- "vite": "^4.1.0"
- }
-}
diff --git a/apps/vite-project/src/App.jsx b/apps/vite-project/src/App.jsx
deleted file mode 100644
index 90a7bbaf9..000000000
--- a/apps/vite-project/src/App.jsx
+++ /dev/null
@@ -1,16 +0,0 @@
-import React from "react";
-import { getCssText, globalStyles } from "@washingtonpost/wpds-ui-kit";
-import { KitchenSink } from "@washingtonpost/wpds-kitchen-sink";
-
-function App() {
- React.useEffect(() => {
- const style = document.createElement("style");
- style.innerHTML = getCssText();
- document.head.appendChild(style);
-
- globalStyles();
- }, []);
- return ;
-}
-
-export default App;
diff --git a/apps/vite-project/src/main.jsx b/apps/vite-project/src/main.jsx
deleted file mode 100644
index 0d1758ab8..000000000
--- a/apps/vite-project/src/main.jsx
+++ /dev/null
@@ -1,9 +0,0 @@
-import React from "react";
-import ReactDOM from "react-dom/client";
-import App from "./App";
-
-ReactDOM.createRoot(document.getElementById("root")).render(
-
-
-
-);
diff --git a/apps/vite-project/vite.config.js b/apps/vite-project/vite.config.js
deleted file mode 100644
index 9cc50ead1..000000000
--- a/apps/vite-project/vite.config.js
+++ /dev/null
@@ -1,7 +0,0 @@
-import { defineConfig } from "vite";
-import react from "@vitejs/plugin-react";
-
-// https://vitejs.dev/config/
-export default defineConfig({
- plugins: [react()],
-});
diff --git a/apps/vite-v2-project/.gitignore b/apps/vite-v2-project/.gitignore
deleted file mode 100644
index a547bf36d..000000000
--- a/apps/vite-v2-project/.gitignore
+++ /dev/null
@@ -1,24 +0,0 @@
-# Logs
-logs
-*.log
-npm-debug.log*
-yarn-debug.log*
-yarn-error.log*
-pnpm-debug.log*
-lerna-debug.log*
-
-node_modules
-dist
-dist-ssr
-*.local
-
-# Editor directories and files
-.vscode/*
-!.vscode/extensions.json
-.idea
-.DS_Store
-*.suo
-*.ntvs*
-*.njsproj
-*.sln
-*.sw?
diff --git a/apps/vite-v2-project/CHANGELOG.md b/apps/vite-v2-project/CHANGELOG.md
deleted file mode 100644
index 4aebc0dff..000000000
--- a/apps/vite-v2-project/CHANGELOG.md
+++ /dev/null
@@ -1,136 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-# [1.17.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.16.2...v1.17.0) (2023-11-30)
-
-**Note:** Version bump only for package vite-v2-project
-
-## [1.16.2](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.16.1...v1.16.2) (2023-11-08)
-
-**Note:** Version bump only for package vite-v2-project
-
-## [1.16.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.16.0...v1.16.1) (2023-10-31)
-
-**Note:** Version bump only for package vite-v2-project
-
-# [1.16.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.15.0...v1.16.0) (2023-10-24)
-
-**Note:** Version bump only for package vite-v2-project
-
-# [1.15.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.14.0...v1.15.0) (2023-10-23)
-
-**Note:** Version bump only for package vite-v2-project
-
-# [1.14.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.13.0...v1.14.0) (2023-09-20)
-
-**Note:** Version bump only for package vite-v2-project
-
-# [1.13.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.12.0...v1.13.0) (2023-09-18)
-
-**Note:** Version bump only for package vite-v2-project
-
-# [1.12.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.11.1...v1.12.0) (2023-09-13)
-
-**Note:** Version bump only for package vite-v2-project
-
-## [1.11.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.11.0...v1.11.1) (2023-08-23)
-
-### Bug Fixes
-
-- rerun linting and formatting ([#483](https://github.com/washingtonpost/wpds-ui-kit/issues/483)) ([8de5f8a](https://github.com/washingtonpost/wpds-ui-kit/commit/8de5f8a7ddaf3b1b9cb3a8fb646d301cb003a081))
-
-# [1.11.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.10.0...v1.11.0) (2023-08-16)
-
-### Reverts
-
-- Revert "chore(release): publish" (#481) ([c25d111](https://github.com/washingtonpost/wpds-ui-kit/commit/c25d11199534ab28a653d371edee4a6638d2fc7e)), closes [#481](https://github.com/washingtonpost/wpds-ui-kit/issues/481)
-
-# [1.10.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.9.1...v1.10.0) (2023-08-10)
-
-**Note:** Version bump only for package vite-v2-project
-
-## [1.9.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.9.0...v1.9.1) (2023-07-17)
-
-**Note:** Version bump only for package vite-v2-project
-
-# [1.9.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.8.5...v1.9.0) (2023-07-14)
-
-**Note:** Version bump only for package vite-v2-project
-
-## [1.8.5](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.8.4...v1.8.5) (2023-07-06)
-
-**Note:** Version bump only for package vite-v2-project
-
-## [1.8.4](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.8.3...v1.8.4) (2023-07-06)
-
-**Note:** Version bump only for package vite-v2-project
-
-## [1.8.3](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.8.2...v1.8.3) (2023-07-06)
-
-**Note:** Version bump only for package vite-v2-project
-
-## [1.8.2](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.8.1...v1.8.2) (2023-06-30)
-
-**Note:** Version bump only for package vite-v2-project
-
-## [1.8.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.8.0...v1.8.1) (2023-06-28)
-
-**Note:** Version bump only for package vite-v2-project
-
-# [1.8.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.7.1...v1.8.0) (2023-06-28)
-
-### Features
-
-- new InputSearch component ([#428](https://github.com/washingtonpost/wpds-ui-kit/issues/428)) ([a84c713](https://github.com/washingtonpost/wpds-ui-kit/commit/a84c71392d87ac6d21bc1d1945be814e178ca890))
-
-## [1.7.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.7.0...v1.7.1) (2023-06-20)
-
-**Note:** Version bump only for package vite-v2-project
-
-# [1.7.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.6.2...v1.7.0) (2023-06-06)
-
-### Features
-
-- add NavigationMenu component ([#408](https://github.com/washingtonpost/wpds-ui-kit/issues/408)) ([1a2873f](https://github.com/washingtonpost/wpds-ui-kit/commit/1a2873f674d3695dca0d9de96a4ca12caf8bb1c0))
-
-## [1.6.2](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.6.1...v1.6.2) (2023-05-24)
-
-**Note:** Version bump only for package vite-v2-project
-
-## [1.6.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.6.0...v1.6.1) (2023-05-24)
-
-**Note:** Version bump only for package vite-v2-project
-
-# [1.6.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.5.2...v1.6.0) (2023-05-24)
-
-### Features
-
-- use external footer on docs site ([#387](https://github.com/washingtonpost/wpds-ui-kit/issues/387)) ([b1dad16](https://github.com/washingtonpost/wpds-ui-kit/commit/b1dad167a07cb75938a9fc3d22f4e69b4f0e4697))
-
-## [1.5.2](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.5.1...v1.5.2) (2023-05-02)
-
-**Note:** Version bump only for package vite-v2-project
-
-## [1.5.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.5.0...v1.5.1) (2023-05-02)
-
-**Note:** Version bump only for package vite-v2-project
-
-# [1.5.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.4.0...v1.5.0) (2023-04-18)
-
-**Note:** Version bump only for package vite-v2-project
-
-# [1.4.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.3.0...v1.4.0) (2023-03-28)
-
-**Note:** Version bump only for package vite-v2-project
-
-# [1.3.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.2.1...v1.3.0) (2023-03-17)
-
-**Note:** Version bump only for package vite-v2-project
-
-## [1.2.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.2.0...v1.2.1) (2023-03-16)
-
-### Bug Fixes
-
-- clicking label should toggle box ([#355](https://github.com/washingtonpost/wpds-ui-kit/issues/355)) ([a03ed1b](https://github.com/washingtonpost/wpds-ui-kit/commit/a03ed1b0a5f50f6aa2e4952ab5854e2abca2a508))
diff --git a/apps/vite-v2-project/index.html b/apps/vite-v2-project/index.html
deleted file mode 100644
index b46ab8336..000000000
--- a/apps/vite-v2-project/index.html
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
- Vite App
-
-
-
-
-
-
diff --git a/apps/vite-v2-project/package.json b/apps/vite-v2-project/package.json
deleted file mode 100644
index 0acfe9ad9..000000000
--- a/apps/vite-v2-project/package.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "name": "vite-v2-project",
- "private": true,
- "version": "1.17.0",
- "scripts": {
- "dev": "vite",
- "build": "vite build",
- "preview": "vite preview"
- },
- "dependencies": {
- "@washingtonpost/wpds-kitchen-sink": "1.17.0",
- "@washingtonpost/wpds-ui-kit": "1.17.0",
- "react": "^18.0.0",
- "react-dom": "^18.0.0"
- },
- "devDependencies": {
- "@types/react": "^18.0.0",
- "@types/react-dom": "^18.0.0",
- "@vitejs/plugin-react": "^1.3.0",
- "vite": "^2.9.15"
- }
-}
diff --git a/apps/vite-v2-project/src/App.jsx b/apps/vite-v2-project/src/App.jsx
deleted file mode 100644
index 90a7bbaf9..000000000
--- a/apps/vite-v2-project/src/App.jsx
+++ /dev/null
@@ -1,16 +0,0 @@
-import React from "react";
-import { getCssText, globalStyles } from "@washingtonpost/wpds-ui-kit";
-import { KitchenSink } from "@washingtonpost/wpds-kitchen-sink";
-
-function App() {
- React.useEffect(() => {
- const style = document.createElement("style");
- style.innerHTML = getCssText();
- document.head.appendChild(style);
-
- globalStyles();
- }, []);
- return ;
-}
-
-export default App;
diff --git a/apps/vite-v2-project/src/main.jsx b/apps/vite-v2-project/src/main.jsx
deleted file mode 100644
index 0d1758ab8..000000000
--- a/apps/vite-v2-project/src/main.jsx
+++ /dev/null
@@ -1,9 +0,0 @@
-import React from "react";
-import ReactDOM from "react-dom/client";
-import App from "./App";
-
-ReactDOM.createRoot(document.getElementById("root")).render(
-
-
-
-);
diff --git a/apps/vite-v2-project/vite.config.js b/apps/vite-v2-project/vite.config.js
deleted file mode 100644
index 9cc50ead1..000000000
--- a/apps/vite-v2-project/vite.config.js
+++ /dev/null
@@ -1,7 +0,0 @@
-import { defineConfig } from "vite";
-import react from "@vitejs/plugin-react";
-
-// https://vitejs.dev/config/
-export default defineConfig({
- plugins: [react()],
-});
diff --git a/babel.config.json b/babel.config.json
index 9c20a9cce..c86921a92 100644
--- a/babel.config.json
+++ b/babel.config.json
@@ -1,9 +1,4 @@
{
"presets": ["next/babel"],
- "plugins": [
- ["@babel/plugin-transform-typescript", { "isTSX": true }],
- ["@babel/plugin-proposal-private-property-in-object", { "loose": true }],
- ["@babel/plugin-proposal-private-methods", { "loose": true }],
- ["@babel/plugin-proposal-class-properties", { "loose": true }]
- ]
+ "plugins": [["@babel/plugin-transform-typescript", { "isTSX": true }]]
}
diff --git a/build.washingtonpost.com/.eslintrc.js b/build.washingtonpost.com/.eslintrc.js
deleted file mode 100644
index c376ce25a..000000000
--- a/build.washingtonpost.com/.eslintrc.js
+++ /dev/null
@@ -1,61 +0,0 @@
-module.exports = {
- root: true,
- parser: "@typescript-eslint/parser",
- parserOptions: {
- ecmaVersion: 2021,
- sourceType: "module",
- },
- plugins: [
- "@typescript-eslint",
- "jest",
- "react",
- "testing-library",
- "jest-dom",
- "use-encapsulation",
- "@washingtonpost/wpds",
- ],
- extends: [
- "next/core-web-vitals",
- "eslint:recommended",
- "plugin:@typescript-eslint/recommended",
- "prettier",
- "plugin:import/recommended",
- "plugin:import/typescript",
- "plugin:react/recommended",
- "plugin:testing-library/react",
- "plugin:testing-library/dom",
- "plugin:jest-dom/recommended",
- "plugin:storybook/recommended",
- ],
- overrides: [
- {
- files: ["**/__tests__/**/*.[jt]s?(x)", "**/?(*.)+(spec|test).[jt]s?(x)"],
- extends: ["plugin:testing-library/react"],
- },
- {
- files: ["**/*.tsx"],
- rules: {
- "react/prop-types": "off",
- "@washingtonpost/wpds/theme-colors": "warn",
- },
- },
- ],
- env: {
- browser: true,
- es6: true,
- node: true,
- },
- settings: {
- react: {
- version: "detect",
- },
- "import/resolver": {
- node: {
- extensions: [".js", ".jsx", ".ts", ".tsx", ".css"],
- },
- },
- },
- rules: {
- "react/prop-types": 0,
- },
-};
diff --git a/build.washingtonpost.com/CHANGELOG.md b/build.washingtonpost.com/CHANGELOG.md
index 825e8589c..dcc46506c 100644
--- a/build.washingtonpost.com/CHANGELOG.md
+++ b/build.washingtonpost.com/CHANGELOG.md
@@ -3,6 +3,204 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [2.0.0](https://github.com/washingtonpost/wpds-docs/compare/v1.24.0...v2.0.0) (2024-04-24)
+
+### Features
+
+- v2.0.0 ([#542](https://github.com/washingtonpost/wpds-docs/issues/542)) ([d429cfa](https://github.com/washingtonpost/wpds-docs/commit/d429cfabb7489a2548ffad5c3d945145824d4a22)), closes [#544](https://github.com/washingtonpost/wpds-docs/issues/544) [#552](https://github.com/washingtonpost/wpds-docs/issues/552) [#555](https://github.com/washingtonpost/wpds-docs/issues/555) [#560](https://github.com/washingtonpost/wpds-docs/issues/560) [#562](https://github.com/washingtonpost/wpds-docs/issues/562) [#564](https://github.com/washingtonpost/wpds-docs/issues/564) [#565](https://github.com/washingtonpost/wpds-docs/issues/565) [#574](https://github.com/washingtonpost/wpds-docs/issues/574) [#570](https://github.com/washingtonpost/wpds-docs/issues/570) [#579](https://github.com/washingtonpost/wpds-docs/issues/579) [#578](https://github.com/washingtonpost/wpds-docs/issues/578) [#580](https://github.com/washingtonpost/wpds-docs/issues/580) [#579](https://github.com/washingtonpost/wpds-docs/issues/579)
+
+# [2.0.0-alpha.12](https://github.com/washingtonpost/wpds-docs/compare/v2.0.0-alpha.11...v2.0.0-alpha.12) (2024-04-10)
+
+# [1.24.0](https://github.com/washingtonpost/wpds-docs/compare/v2.0.0-alpha.10...v1.24.0) (2024-04-09)
+
+### Features
+
+- add v2 docs switcher ([#609](https://github.com/washingtonpost/wpds-docs/issues/609)) ([49e35a1](https://github.com/washingtonpost/wpds-docs/commit/49e35a13a67efaa5d64e457ac565f8b6970d0fd4))
+
+## [1.23.1](https://github.com/washingtonpost/wpds-docs/compare/v1.23.0...v1.23.1) (2024-03-26)
+
+# [1.23.0](https://github.com/washingtonpost/wpds-docs/compare/v1.22.6...v1.23.0) (2024-03-25)
+
+# [2.0.0-alpha.11](https://github.com/washingtonpost/wpds-docs/compare/v2.0.0-alpha.10...v2.0.0-alpha.11) (2024-04-09)
+
+**Note:** Version bump only for package @washingtonpost/wpds-docs
+
+# [2.0.0-alpha.10](https://github.com/washingtonpost/wpds-docs/compare/v2.0.0-alpha.7...v2.0.0-alpha.10) (2024-04-09)
+
+### Bug Fixes
+
+- new colors are not showing up ([#614](https://github.com/washingtonpost/wpds-docs/issues/614)) ([9e9b975](https://github.com/washingtonpost/wpds-docs/commit/9e9b9755f70bcd70ebde30501515f31269efaf7d))
+
+# [2.0.0-alpha.9](https://github.com/washingtonpost/wpds-docs/compare/v2.0.0-alpha.7...v2.0.0-alpha.9) (2024-04-09)
+
+### Bug Fixes
+
+- new colors are not showing up ([#614](https://github.com/washingtonpost/wpds-docs/issues/614)) ([9e9b975](https://github.com/washingtonpost/wpds-docs/commit/9e9b9755f70bcd70ebde30501515f31269efaf7d))
+
+# [2.0.0-alpha.8](https://github.com/washingtonpost/wpds-docs/compare/v2.0.0-alpha.7...v2.0.0-alpha.8) (2024-04-04)
+
+### Bug Fixes
+
+- new colors are not showing up ([#614](https://github.com/washingtonpost/wpds-docs/issues/614)) ([9e9b975](https://github.com/washingtonpost/wpds-docs/commit/9e9b9755f70bcd70ebde30501515f31269efaf7d))
+
+# [2.0.0-alpha.7](https://github.com/washingtonpost/wpds-docs/compare/v1.22.6...v2.0.0-alpha.7) (2024-04-02)
+
+### Bug Fixes
+
+- add nanoid back ([#607](https://github.com/washingtonpost/wpds-docs/issues/607)) ([d862816](https://github.com/washingtonpost/wpds-docs/commit/d862816e85c3f667b1bd5be1f253b7920261f01b))
+
+# [2.0.0-alpha.2](https://github.com/washingtonpost/wpds-docs/compare/v2.0.0-alpha.1...v2.0.0-alpha.2) (2024-03-14)
+
+# [2.0.0-alpha.1](https://github.com/washingtonpost/wpds-docs/compare/v2.0.0-alpha.0...v2.0.0-alpha.1) (2024-03-14)
+
+# [2.0.0-alpha.0](https://github.com/washingtonpost/wpds-docs/compare/v2.1.0-experimental.0...v2.0.0-alpha.0) (2024-03-14)
+
+# [2.1.0-experimental.0](https://github.com/washingtonpost/wpds-docs/compare/v1.22.0...v2.1.0-experimental.0) (2024-03-13)
+
+### Bug Fixes
+
+- merging main and resolving conflicts ([#585](https://github.com/washingtonpost/wpds-docs/issues/585)) ([253effe](https://github.com/washingtonpost/wpds-docs/commit/253effebcc310c6ceee9efbed2e346d7b3132691))
+- Playroom fix ([#583](https://github.com/washingtonpost/wpds-docs/issues/583)) ([6b8c42b](https://github.com/washingtonpost/wpds-docs/commit/6b8c42beb93fb2a0e391df6aad5da78cf40d92e3))
+
+### Features
+
+- move Button, Icon, theme, and VisuallyHidden to v2 package ([#562](https://github.com/washingtonpost/wpds-docs/issues/562)) ([be3524d](https://github.com/washingtonpost/wpds-docs/commit/be3524d388e177023b9c476a68020a478a893f50))
+- remove nanoid dependency ([#555](https://github.com/washingtonpost/wpds-docs/issues/555)) ([20f22d6](https://github.com/washingtonpost/wpds-docs/commit/20f22d6a0869de6edb25312bb93638832320b82f))
+- v2 mass components upgrade/migration ([#578](https://github.com/washingtonpost/wpds-docs/issues/578)) ([5e0394b](https://github.com/washingtonpost/wpds-docs/commit/5e0394b4e6747bfd9fee1dc0bcd82d1dcb6cd9b6)), closes [#580](https://github.com/washingtonpost/wpds-docs/issues/580) [#579](https://github.com/washingtonpost/wpds-docs/issues/579)
+
+# [2.0.0-alpha.6](https://github.com/washingtonpost/wpds-docs/compare/v2.0.0-alpha.5...v2.0.0-alpha.6) (2024-03-15)
+
+**Note:** Version bump only for package @washingtonpost/wpds-docs
+
+# [2.0.0-alpha.5](https://github.com/washingtonpost/wpds-docs/compare/v2.0.0-alpha.4...v2.0.0-alpha.5) (2024-03-15)
+
+**Note:** Version bump only for package @washingtonpost/wpds-docs
+
+# [2.0.0-alpha.4](https://github.com/washingtonpost/wpds-docs/compare/v2.0.0-alpha.3...v2.0.0-alpha.4) (2024-03-15)
+
+**Note:** Version bump only for package @washingtonpost/wpds-docs
+
+# [2.0.0-alpha.3](https://github.com/washingtonpost/wpds-docs/compare/v1.22.6...v2.0.0-alpha.3) (2024-03-14)
+
+# [2.0.0-alpha.2](https://github.com/washingtonpost/wpds-docs/compare/v2.0.0-alpha.1...v2.0.0-alpha.2) (2024-03-14)
+
+# [2.0.0-alpha.1](https://github.com/washingtonpost/wpds-docs/compare/v2.0.0-alpha.0...v2.0.0-alpha.1) (2024-03-14)
+
+# [2.0.0-alpha.0](https://github.com/washingtonpost/wpds-docs/compare/v2.1.0-experimental.1...v2.0.0-alpha.0) (2024-03-14)
+
+# [2.1.0-experimental.0](https://github.com/washingtonpost/wpds-docs/compare/v1.22.0...v2.1.0-experimental.0) (2024-03-13)
+
+### Bug Fixes
+
+- merging main and resolving conflicts ([#585](https://github.com/washingtonpost/wpds-docs/issues/585)) ([253effe](https://github.com/washingtonpost/wpds-docs/commit/253effebcc310c6ceee9efbed2e346d7b3132691))
+- Playroom fix ([#583](https://github.com/washingtonpost/wpds-docs/issues/583)) ([6b8c42b](https://github.com/washingtonpost/wpds-docs/commit/6b8c42beb93fb2a0e391df6aad5da78cf40d92e3))
+
+### Features
+
+- move Button, Icon, theme, and VisuallyHidden to v2 package ([#562](https://github.com/washingtonpost/wpds-docs/issues/562)) ([be3524d](https://github.com/washingtonpost/wpds-docs/commit/be3524d388e177023b9c476a68020a478a893f50))
+- remove nanoid dependency ([#555](https://github.com/washingtonpost/wpds-docs/issues/555)) ([20f22d6](https://github.com/washingtonpost/wpds-docs/commit/20f22d6a0869de6edb25312bb93638832320b82f))
+- v2 mass components upgrade/migration ([#578](https://github.com/washingtonpost/wpds-docs/issues/578)) ([5e0394b](https://github.com/washingtonpost/wpds-docs/commit/5e0394b4e6747bfd9fee1dc0bcd82d1dcb6cd9b6)), closes [#580](https://github.com/washingtonpost/wpds-docs/issues/580) [#579](https://github.com/washingtonpost/wpds-docs/issues/579)
+
+# [2.0.0-alpha.2](https://github.com/washingtonpost/wpds-docs/compare/v2.0.0-alpha.1...v2.0.0-alpha.2) (2024-03-14)
+
+**Note:** Version bump only for package @washingtonpost/wpds-docs
+
+# [2.0.0-alpha.1](https://github.com/washingtonpost/wpds-docs/compare/v2.0.0-alpha.0...v2.0.0-alpha.1) (2024-03-14)
+
+**Note:** Version bump only for package @washingtonpost/wpds-docs
+
+# [2.0.0-alpha.0](https://github.com/washingtonpost/wpds-docs/compare/v2.1.0-experimental.0...v2.0.0-alpha.0) (2024-03-14)
+
+# [1.24.0](https://github.com/washingtonpost/wpds-docs/compare/v1.23.1...v1.24.0) (2024-04-09)
+
+### Features
+
+- add v2 docs switcher ([#609](https://github.com/washingtonpost/wpds-docs/issues/609)) ([49e35a1](https://github.com/washingtonpost/wpds-docs/commit/49e35a13a67efaa5d64e457ac565f8b6970d0fd4))
+
+## [1.23.1](https://github.com/washingtonpost/wpds-docs/compare/v1.23.0...v1.23.1) (2024-03-26)
+
+**Note:** Version bump only for package @washingtonpost/wpds-docs
+
+# [1.23.0](https://github.com/washingtonpost/wpds-docs/compare/v1.22.6...v1.23.0) (2024-03-25)
+
+**Note:** Version bump only for package @washingtonpost/wpds-docs
+
+## [1.22.6](https://github.com/washingtonpost/wpds-docs/compare/v1.22.5...v1.22.6) (2024-03-14)
+
+**Note:** Version bump only for package @washingtonpost/wpds-docs
+
+## [1.22.5](https://github.com/washingtonpost/wpds-docs/compare/v1.22.4...v1.22.5) (2024-03-14)
+
+**Note:** Version bump only for package @washingtonpost/wpds-docs
+
+## [1.22.4](https://github.com/washingtonpost/wpds-docs/compare/v1.22.3...v1.22.4) (2024-03-14)
+
+### Bug Fixes
+
+- fixing formatting ([#589](https://github.com/washingtonpost/wpds-docs/issues/589)) ([a717dbc](https://github.com/washingtonpost/wpds-docs/commit/a717dbcd9dbc2c2e8619719692636f2287e556cd))
+
+## [1.22.3](https://github.com/washingtonpost/wpds-docs/compare/v1.22.2...v1.22.3) (2024-03-14)
+
+### Bug Fixes
+
+- formatting ([#588](https://github.com/washingtonpost/wpds-docs/issues/588)) ([d1e9ad4](https://github.com/washingtonpost/wpds-docs/commit/d1e9ad4166881dea6a9df1ecd8a9d5f0e598efef))
+
+## [1.22.2](https://github.com/washingtonpost/wpds-docs/compare/v1.22.1...v1.22.2) (2024-03-14)
+
+**Note:** Version bump only for package @washingtonpost/wpds-docs
+
+## [1.22.1](https://github.com/washingtonpost/wpds-docs/compare/v1.22.0...v1.22.1) (2024-03-14)
+
+### Bug Fixes
+
+- Change forCards modifier to forSurfaces ([#576](https://github.com/washingtonpost/wpds-docs/issues/576)) ([c5e0422](https://github.com/washingtonpost/wpds-docs/commit/c5e04223fb2e7c40506751fda61a0a2844101e01))
+- cleaned up [STRY-70] ([007ae6a](https://github.com/washingtonpost/wpds-docs/commit/007ae6a83ba26c53ce1d03bbf4dc035359563be0))
+- cleaned up again [STRY-70] ([95556bf](https://github.com/washingtonpost/wpds-docs/commit/95556bf5f384d62e0523161a81af2cf62b4506ef))
+- Fixed onSurface to have the correct camel casing ([#571](https://github.com/washingtonpost/wpds-docs/issues/571)) ([9daca60](https://github.com/washingtonpost/wpds-docs/commit/9daca60f9c562aa2d697c8389d44d2ef491f1494))
+- linting [STRY-70] ([63e8949](https://github.com/washingtonpost/wpds-docs/commit/63e894934cda486b1d59477b5d60650d0e861893))
+- only add needed files [STRY-70] ([ca38fb2](https://github.com/washingtonpost/wpds-docs/commit/ca38fb2a8f813a543908e9e96acb39115f419e4c))
+
+# [1.22.0](https://github.com/washingtonpost/wpds-docs/compare/v1.21.0...v1.22.0) (2024-02-15)
+
+### Features
+
+- remove search feature from docs site ([#569](https://github.com/washingtonpost/wpds-docs/issues/569)) ([fa22045](https://github.com/washingtonpost/wpds-docs/commit/fa22045fdb00ba1a823056da0ca24a9d938b3665))
+
+# [1.21.0](https://github.com/washingtonpost/wpds-docs/compare/v1.20.0...v1.21.0) (2024-02-07)
+
+**Note:** Version bump only for package @washingtonpost/wpds-docs
+
+# [1.20.0](https://github.com/washingtonpost/wpds-docs/compare/v1.19.0...v1.20.0) (2024-01-24)
+
+### Features
+
+- add site footer back ([#558](https://github.com/washingtonpost/wpds-docs/issues/558)) ([12cf193](https://github.com/washingtonpost/wpds-docs/commit/12cf1936ac67c2791ff06efe6e45dbefca047909))
+
+# [1.19.0](https://github.com/washingtonpost/wpds-docs/compare/v1.18.0...v1.19.0) (2024-01-10)
+
+### Bug Fixes
+
+- remove snow ([cdfae9e](https://github.com/washingtonpost/wpds-docs/commit/cdfae9e75f680ba43edb250f441e40ab1b81e65b))
+- remove snow ([f0f45f7](https://github.com/washingtonpost/wpds-docs/commit/f0f45f7c156df78c5c9dba6718403e926cacacbb))
+- remove tokens stylesheet ([16b4b71](https://github.com/washingtonpost/wpds-docs/commit/16b4b7123db787ec9f9f74f9cfff962882cc7b2d))
+
+### Features
+
+- add snowfall to website for fun ([#550](https://github.com/washingtonpost/wpds-docs/issues/550)) ([3f907e4](https://github.com/washingtonpost/wpds-docs/commit/3f907e42f5334c7e43d2ea415f4099be9d45a2df))
+- responsive screen size hook and css var ([#548](https://github.com/washingtonpost/wpds-docs/issues/548)) ([5768e9c](https://github.com/washingtonpost/wpds-docs/commit/5768e9c6357f1df43b9d92002e36bf2cadd171fa))
+- turn snow on ([5c88780](https://github.com/washingtonpost/wpds-docs/commit/5c88780d5df3258d604c108cf680ce9108fdc452))
+
+# [1.18.0](https://github.com/washingtonpost/wpds-docs/compare/v1.17.0...v1.18.0) (2023-12-13)
+
+### Bug Fixes
+
+- our lockfile area for build dot site was borked ([#547](https://github.com/washingtonpost/wpds-docs/issues/547)) ([2a66631](https://github.com/washingtonpost/wpds-docs/commit/2a66631d066b7128c4be209a60af0ad86fc528e9))
+
+### Features
+
+- add Dialog component ([15d6206](https://github.com/washingtonpost/wpds-docs/commit/15d6206d6287bb3eee3c9f0af8ff57a0bf917998))
+- bump wam to 1.24.0 ([#546](https://github.com/washingtonpost/wpds-docs/issues/546)) ([d825acc](https://github.com/washingtonpost/wpds-docs/commit/d825acca32c62e3c7295b7ed44ab641ba720cb7a))
+
# [1.17.0](https://github.com/washingtonpost/wpds-docs/compare/v1.16.2...v1.17.0) (2023-11-30)
### Bug Fixes
diff --git a/build.washingtonpost.com/components/Contributors.jsx b/build.washingtonpost.com/components/Contributors.jsx
index 4d5e13640..579f33897 100644
--- a/build.washingtonpost.com/components/Contributors.jsx
+++ b/build.washingtonpost.com/components/Contributors.jsx
@@ -2,7 +2,7 @@ import React from "react";
import { theme, Avatar, styled } from "@washingtonpost/wpds-ui-kit";
import { Header } from "~/components/Markdown/Components/headers";
-import Image from "next/image";
+import Image from "next/legacy/image";
import CustomLink from "./Typography/link";
const StyledGrid = styled({
diff --git a/build.washingtonpost.com/components/Footer.js b/build.washingtonpost.com/components/Footer.js
index 088779c38..9548f4e01 100644
--- a/build.washingtonpost.com/components/Footer.js
+++ b/build.washingtonpost.com/components/Footer.js
@@ -1,8 +1,12 @@
import React from "react";
import { Box, styled, Icon, theme } from "@washingtonpost/wpds-ui-kit";
import { useRouter } from "next/router";
-import Script from "next/script";
+import { Footer as SiteFooter } from "@washingtonpost/site-footer";
import Link from "next/link";
+import {
+ customNotSmBreakpoint,
+ customSmBreakpoint,
+} from "~/components/styleHelpers";
import { Github, Twitter, Youtube } from "@washingtonpost/wpds-assets";
@@ -11,7 +15,7 @@ const CommunityHeading = styled("span", {
fontWeight: "$bold",
fontSize: "$087",
color: "$gray40",
- "@notSm": {
+ [customNotSmBreakpoint]: {
display: "none",
},
});
@@ -40,7 +44,7 @@ const EditInGithub = styled("a", {
"&:hover": {
textDecoration: "underline",
},
- "@sm": {
+ [customSmBreakpoint]: {
marginLeft: "$100",
},
});
@@ -58,8 +62,7 @@ export const Footer = () => {
marginRight: "auto",
maxWidth: "1028px",
width: "100%",
-
- "@sm": {
+ [customSmBreakpoint]: {
marginTop: "$200",
"footer.site-footer": {
display: "none",
@@ -80,8 +83,9 @@ export const Footer = () => {
Edit this page on GitHub.
)}
-
-
+
+
+
{
"& a": {
marginRight: "$100",
},
- "@notSm": {
+ [customNotSmBreakpoint]: {
justifyContent: "center",
},
}}
@@ -103,13 +107,17 @@ export const Footer = () => {
css={{
display: "flex",
flexDirection: "column",
- "@notSm": {
+ [customNotSmBreakpoint]: {
flexDirection: "row",
},
}}
>
Community
-
+
{
Twitter
-
+
{
Github
-
+
Coming soon
) : item.frontMatter.data.status == "Alpha" ? (
-
+
) : (
-
+
{item.frontMatter.data.title}
)}
@@ -264,7 +267,11 @@ export default function Sidebar({ navigation, setMobileMenu }) {
disabled={item.data.status === "Coming soon"}
>
{item.data.status !== "" ? (
-
+
) : (
-
+
{item.data.title}
)}
@@ -303,11 +314,11 @@ export default function Sidebar({ navigation, setMobileMenu }) {
})}
setMobileMenu(false)}
isCurrent={router.asPath.includes("release-notes") ? "active" : ""}
>
-
+
Release Notes
@@ -318,7 +329,7 @@ export default function Sidebar({ navigation, setMobileMenu }) {
-
+
diff --git a/build.washingtonpost.com/components/Layout/Layout.js b/build.washingtonpost.com/components/Layout/Layout.js
index 541e5de76..52122c4e2 100644
--- a/build.washingtonpost.com/components/Layout/Layout.js
+++ b/build.washingtonpost.com/components/Layout/Layout.js
@@ -4,11 +4,15 @@ import { NavigationBar } from "~/components/NavigationBar";
import Sidebar from "~/components/Layout/Components/Sidebar";
import { Footer } from "~/components/Footer";
import { ToastContainer } from "react-toastify";
+import {
+ customNotSmBreakpoint,
+ customSmBreakpoint,
+} from "~/components/styleHelpers";
const Grid = styled("div", {
display: "grid",
margin: "0 auto",
- "@notSm": {
+ [customNotSmBreakpoint]: {
gridTemplateColumns: "300px 1fr",
gridTemplateRows: "60px 1fr",
gridTemplateAreas: `
@@ -20,7 +24,7 @@ const Grid = styled("div", {
rowGap: "0",
paddingRight: "$100",
},
- "@sm": {
+ [customSmBreakpoint]: {
minHeight: "100vh",
gridTemplateColumns: "1fr",
gridTemplateRows: "auto auto 1fr",
@@ -41,7 +45,7 @@ const DesktopMenu = styled("div", {
variants: {
state: {
open: { display: "block" },
- closed: { "@sm": { display: "none" } },
+ closed: { [customSmBreakpoint]: { display: "none" } },
},
},
});
@@ -51,12 +55,12 @@ const Container = styled("main", {
width: "100%",
margin: "0 auto",
marginTop: "$125",
- "@sm": {
- padding: "0 $100",
- },
- "@notSm": {
+ [customNotSmBreakpoint]: {
maxWidth: "1028px",
},
+ [customSmBreakpoint]: {
+ padding: "0 $100",
+ },
});
export const PageLayout = ({ children, ...pageProps }) => {
diff --git a/build.washingtonpost.com/components/Markdown/Components/InlineImage.js b/build.washingtonpost.com/components/Markdown/Components/InlineImage.js
index bad1ff94e..a97a6837b 100644
--- a/build.washingtonpost.com/components/Markdown/Components/InlineImage.js
+++ b/build.washingtonpost.com/components/Markdown/Components/InlineImage.js
@@ -1,6 +1,6 @@
import React from "react";
import { styled, css } from "@washingtonpost/wpds-ui-kit";
-import Image from "next/image";
+import Image from "next/legacy/image";
export default function InlineImage({
maxWidth,
diff --git a/build.washingtonpost.com/components/Markdown/Components/YouTubeEmbed.js b/build.washingtonpost.com/components/Markdown/Components/YouTubeEmbed.js
index 246529879..eeaf20f24 100644
--- a/build.washingtonpost.com/components/Markdown/Components/YouTubeEmbed.js
+++ b/build.washingtonpost.com/components/Markdown/Components/YouTubeEmbed.js
@@ -1,5 +1,5 @@
import React from "react";
-import Image from "next/image";
+import Image from "next/legacy/image";
import {
css,
Icon,
diff --git a/build.washingtonpost.com/components/Markdown/Components/inlineSVG.js b/build.washingtonpost.com/components/Markdown/Components/inlineSVG.js
index ef76d4cdc..929f567a0 100644
--- a/build.washingtonpost.com/components/Markdown/Components/inlineSVG.js
+++ b/build.washingtonpost.com/components/Markdown/Components/inlineSVG.js
@@ -1,7 +1,7 @@
import React from "react";
import { ReactSVG } from "react-svg";
-import Tokens from "@washingtonpost/wpds-theme/src/wpds.tokens.json";
-import Image from "next/image";
+import Tokens from "@washingtonpost/wpds-ui-kit/src/theme/wpds.tokens.json";
+import Image from "next/legacy/image";
import { css, styled } from "@washingtonpost/wpds-ui-kit";
const SVGContainer = styled("div", {
diff --git a/build.washingtonpost.com/components/Markdown/Components/link.js b/build.washingtonpost.com/components/Markdown/Components/link.js
index 2891fee8f..093036a76 100644
--- a/build.washingtonpost.com/components/Markdown/Components/link.js
+++ b/build.washingtonpost.com/components/Markdown/Components/link.js
@@ -39,7 +39,7 @@ export default function CustomLink({
});
return (
-
+
(
-
+
{children}
diff --git a/build.washingtonpost.com/components/Markdown/Examples/ColorSamples.jsx b/build.washingtonpost.com/components/Markdown/Examples/ColorSamples.jsx
index 852b09dd3..aad8af3f1 100644
--- a/build.washingtonpost.com/components/Markdown/Examples/ColorSamples.jsx
+++ b/build.washingtonpost.com/components/Markdown/Examples/ColorSamples.jsx
@@ -1,106 +1,156 @@
import React, { useEffect, useState } from "react";
-import { Box, styled, AlertBanner, theme } from "@washingtonpost/wpds-ui-kit";
-import { toast } from "react-toastify";
-import Tokens from "@washingtonpost/wpds-theme/src/wpds.tokens.json";
+import { styled, theme } from "@washingtonpost/wpds-ui-kit";
+const uiKit = theme;
+import Tokens from "@washingtonpost/wpds-ui-kit/src/theme/wpds.tokens.json";
+import { hex, score } from "wcag-contrast";
+import { useTheme } from "next-themes";
-import { Grid } from "../Components/Grid";
+const xMapping = [0, 20, 40, 60, 80, 100, 200, 300, 400, 500, 600, 700];
+const yMapping = [
+ "red",
+ "blue",
+ "green",
+ "orange",
+ "teal",
+ "gold",
+ "mustard",
+ "purple",
+ "pink",
+ "yellow",
+ "gray",
+];
-const ColorSamples = ({ group }) => {
- const [colorGroupArray, setColorGroupArray] = useState([]);
- const [copyText, setCopyText] = useState("");
+const PaletteGrid = styled("div", {
+ display: "grid",
+ gridTemplateColumns: "30px repeat(12, 1fr)",
+ gridTemplateRows: "repeat(11, 1fr)", // Adjusted to match yMapping length
+ gap: "$025",
+});
- useEffect(() => {
- const colorArray = handleColor(group);
- setColorGroupArray(colorArray);
- }, [group]);
+const Swatch = styled("div", {
+ minWidth: 20,
+ minHeight: 40,
+ width: "100%",
+ height: "100%",
+ borderRadius: uiKit.radii["012"],
+ borderColor: uiKit.colors.outline,
+ borderWidth: "1px",
+ borderStyle: "solid",
+ display: "flex",
+ flexDirection: "column",
+ alignItems: "center",
+ justifyContent: "center",
+ color: uiKit.colors["gray0"], // Default text color
+ "@sm": {
+ minWidth: "unset",
+ minHeight: "unset",
+ },
+ "& div": {
+ "@sm": {
+ display: "none",
+ },
+ },
+});
+const AxisLabel = styled("div", {
+ fontWeight: "bold",
+ display: "flex",
+ alignItems: "end",
+ justifyContent: "center",
+});
+
+export default function ColorGrid() {
+ const { theme } = useTheme();
+ const [context, setContext] = useState(Tokens.color.light);
useEffect(() => {
- const SuccessToast = () => (
-
-
- Copied:
-
- {copyText}
-
-
-
- );
+ setContext(theme === "dark" ? Tokens.color.dark : Tokens.color.light);
+ }, [theme]);
- if (copyText) {
- window.navigator.clipboard.writeText(copyText);
- toast( , {
- position: "top-center",
- closeButton: false,
- autoClose: 2000,
- hideProgressBar: true,
- draggable: false,
- onClose: () => {
- setCopyText(null);
- },
- });
- }
- }, [copyText]);
+ function lookUpValue(item) {
+ let value = item.value;
- const handleColor = (group) => {
- const colorNamesArray = Object.keys(Tokens.color[group]);
+ let lookUpKey = value?.substring(1, value.length - 1);
- return colorNamesArray.filter((colorName) =>
- Object.prototype.hasOwnProperty.call(
- Tokens.color[group][colorName],
- "value"
- )
- );
- };
+ if (theme === "dark") {
+ value = item.valueDark;
+ lookUpKey = value?.substring(1, value.length - 1);
+ return Tokens.color.dark[lookUpKey]?.hex;
+ } else {
+ return Tokens.color.light[lookUpKey]?.hex;
+ }
+ }
- const Swatch = styled("button", {
- backgroundColor: "transparent",
- border: "1px solid $subtle",
- padding: 0,
- "&:hover": {
- opacity: 0.5,
- },
- });
+ const GetSwatchesWithLabels = () => {
+ let elements = [];
+ const background = lookUpValue(Tokens.color.theme.background);
+
+ // Y-axis labels
+ yMapping.forEach((label, index) => {
+ elements.push(
+
+ {label}
+
+ );
+ });
- const ColorExample = styled("div", {
- minHeight: "$500",
- width: "100%",
- display: "flex",
- alignItems: "center",
- justifyContent: "center",
- });
- const ColorID = styled("p", {
- fontSize: "$100",
- marginBlock: 0,
- padding: "$025",
- fontFamily: "$meta",
- color: "$primary",
- });
+ // X-axis labels
+ xMapping.forEach((label, index) => {
+ elements.push(
+
+ {label}
+
+ );
+ });
- return (
- <>
-
- {colorGroupArray.map((key, i) => (
+ // Swatches
+ yMapping.forEach((color, yIndex) => {
+ xMapping.forEach((_, xIndex) => {
+ const key = `${color.toLowerCase()}${xMapping[xIndex]}`;
+ const hexColor = context[key]?.hex || "transparent"; // Use transparent for empty swatches
+ const contrast =
+ hexColor != undefined &&
+ hexColor !== "transparent" &&
+ hex(hexColor, background).toFixed(2);
+ const TokenScore = contrast && score(contrast);
+ elements.push(
- setCopyText(
- `$${key.toLowerCase()}${group == "static" ? "-static" : ""}`
- )
- }
+ css={{
+ backgroundColor: `$${key}`,
+ gridRow: xIndex + 2, // Offset by 1 due to labels
+ gridColumn: yIndex + 2, // Offset by 1 due to labels
+ color:
+ TokenScore && TokenScore !== "AA Large" && TokenScore !== "Fail"
+ ? uiKit.colors.gray700
+ : uiKit.colors.gray0,
+ }}
+ key={key}
>
-
- {key}
+ {contrast}
- ))}
-
- >
- );
-};
-
-ColorSamples.displayName = "Color Samples";
+ );
+ });
+ });
-export default ColorSamples;
+ return elements;
+ };
+ return {GetSwatchesWithLabels()} ;
+}
diff --git a/build.washingtonpost.com/components/Markdown/Examples/HexRGBAColorSamples.jsx b/build.washingtonpost.com/components/Markdown/Examples/HexRGBAColorSamples.jsx
index daae84efc..0acad80b1 100644
--- a/build.washingtonpost.com/components/Markdown/Examples/HexRGBAColorSamples.jsx
+++ b/build.washingtonpost.com/components/Markdown/Examples/HexRGBAColorSamples.jsx
@@ -1,7 +1,7 @@
import React, { useEffect, useState } from "react";
import { Box, styled, AlertBanner, theme } from "@washingtonpost/wpds-ui-kit";
import { toast } from "react-toastify";
-import Tokens from "@washingtonpost/wpds-theme/src/hexcodes.tokens.json";
+import Tokens from "@washingtonpost/wpds-ui-kit/src/theme/hexcodes.tokens.json";
import { StyledItem, StyledToggleGroup } from "../Components/ToggleGroupRadix";
import { Grid } from "../Components/Grid";
diff --git a/build.washingtonpost.com/components/Markdown/Examples/IconSamples.jsx b/build.washingtonpost.com/components/Markdown/Examples/IconSamples.jsx
index 96ef2079f..473d0af15 100644
--- a/build.washingtonpost.com/components/Markdown/Examples/IconSamples.jsx
+++ b/build.washingtonpost.com/components/Markdown/Examples/IconSamples.jsx
@@ -6,7 +6,7 @@ import * as AllAssets from "@washingtonpost/wpds-assets";
import { toast } from "react-toastify";
import MDXStyling from "~/components/Markdown/Styling";
import { Grid } from "../Components/Grid";
-import { InputText } from "@washingtonpost/wpds-input-text";
+import { InputText } from "@washingtonpost/wpds-ui-kit";
import Search from "@washingtonpost/wpds-assets/asset/search";
import { Icon, theme, AlertBanner, Box } from "@washingtonpost/wpds-ui-kit";
import { paramCase } from "param-case";
diff --git a/build.washingtonpost.com/components/Markdown/Examples/ThemeTokens.jsx b/build.washingtonpost.com/components/Markdown/Examples/ThemeTokens.jsx
new file mode 100644
index 000000000..fe9436967
--- /dev/null
+++ b/build.washingtonpost.com/components/Markdown/Examples/ThemeTokens.jsx
@@ -0,0 +1,358 @@
+import React from "react";
+import { styled, theme, Box } from "@washingtonpost/wpds-ui-kit";
+
+const Layout = styled("div", {
+ display: "grid",
+ gap: theme.space["050"],
+ gridTemplateColumns: "repeat(auto-fit, 250px)",
+});
+const Container = styled("div", {
+ width: "100%",
+ minHeight: 100,
+ padding: theme.space["050"],
+ display: "flex",
+ flexDirection: "column",
+ gap: theme.space["025"],
+});
+const Label = styled("div", {
+ fontSize: theme.fontSizes["100"],
+ margin: 0,
+});
+
+export default function ThemeAndSemantic() {
+ return (
+
+
+
+ Primary (-hover)
+
+
+ onPrimary
+
+ onPrimary-hover
+
+
+ onPrimary-subtle
+
+
+ onPrimary-subtle-hover
+
+
+
+
+ Secondary
+
+ onSecondary
+
+ onSecondary-hover
+
+
+ onSecondary-subtle
+
+
+ onSecondary-subtle-hover
+
+
+
+
+ Cta
+
+ onCta
+
+ onCta-hover
+
+
+
+
+ ctaContainer
+
+
+ onCtaContainer
+
+
+ onCtaContainer-hover
+
+
+ onCtaContainer-subtle
+
+
+ onPortal-subtle-hover
+
+
+
+
+ Background
+
+ onBackground
+
+ onBackground-hover
+
+
+ onBackground-subtle
+
+
+ onBackground-subtle-hover
+
+
+
+
+
+ Background-forSurfaces
+
+
+ onBackground
+
+ onBackground-hover
+
+
+ onBackground-subtle
+
+
+ onBackground-subtle-hover
+
+
+
+
+ Surface
+
+ onSurface
+ onSurface-hover
+ onSurface-subtle
+
+ onSurface-subtle-hover
+
+
+
+
+
+ Surface-highest
+
+
+ onSurface
+ onSurface-hover
+ onSurface-subtle
+
+ onSurface-subtle-hover
+
+
+
+
+ Portal
+
+ onPortal
+
+ onPortal-hover
+
+
+ onPortal-subtle
+
+
+ onPortal-subtle-hover
+
+
+
+
+ errorContainer
+
+ onMessage
+
+ onMessage-hover
+
+
+ onMessage-subtle
+
+
+ onMessage-subtle-hover
+
+
+
+ Use error token only for non text elements when used on
+ semantic container
+
+
+
+
+
+
+ successContainer
+
+
+ onMessage
+
+ onMessage-hover
+
+
+ onMessage-subtle
+
+
+ onMessage-subtle-hover
+
+
+
+ Use success token only for non text elements when used on
+ semantic container
+
+
+
+
+
+
+ warningContainer
+
+
+ onMessage
+
+ onMessage-hover
+
+
+ onMessage-subtle
+
+
+ onMessage-subtle-hover
+
+
+
+ Use warning token only for non text elements when used on
+ semantic container.
+
+
+
+
+
+
+ signalContainer
+
+
+ onMessage
+
+ onMessage-hover
+
+
+ onMessage-subtle
+
+
+ onMessage-subtle-hover
+
+
+
+ Use signal token only for non text elements when used on
+ semantic container.
+
+
+
+
+
+
+ outline
+
+
+
+ Use outine token for borders on cards
+
+
+
+
+
+ outline-subtle
+
+
+
+ Use outine-subtle token for borders on cards{" "}
+
+
+
+
+
+ );
+}
diff --git a/build.washingtonpost.com/components/Markdown/Examples/TokenColorTable.jsx b/build.washingtonpost.com/components/Markdown/Examples/TokenColorTable.jsx
new file mode 100644
index 000000000..2e7bac25e
--- /dev/null
+++ b/build.washingtonpost.com/components/Markdown/Examples/TokenColorTable.jsx
@@ -0,0 +1,256 @@
+import React, { useEffect, useState } from "react";
+import { styled } from "@washingtonpost/wpds-ui-kit";
+import Tokens from "@washingtonpost/wpds-ui-kit/src/theme/wpds.tokens.json";
+import { useTheme } from "next-themes";
+import Fuse from "fuse.js";
+import { InputSearch } from "@washingtonpost/wpds-ui-kit";
+
+export default function ColorTokenTable() {
+ const light = convertObjectToArray(Tokens.color.light, "");
+ const dark = convertObjectToArray(Tokens.color.dark, "");
+ const themePalette = convertObjectToArray(Tokens.color.theme, "");
+ const staticColors = convertObjectToArray(Tokens.color.static, "-static");
+ const [defaultPalette, setDefaultPalette] = useState([
+ ...light,
+ ...staticColors,
+ ...themePalette,
+ ]);
+ const [results, setResults] = useState([]);
+ const [currentValue, setCurrentValue] = useState("");
+ const { theme } = useTheme();
+
+ const fuse = new Fuse([...light, ...staticColors, ...themePalette], {
+ keys: ["name", "value"],
+ threshold: 0.2,
+ });
+
+ useEffect(() => {
+ if (theme === "dark") {
+ fuse.setCollection([...dark, ...staticColors, ...themePalette]);
+ setDefaultPalette([...dark, ...staticColors, ...themePalette]);
+ } else {
+ fuse.setCollection([...light, ...staticColors, ...themePalette]);
+ setDefaultPalette([...light, ...staticColors, ...themePalette]);
+ }
+ const results = fuse.search(currentValue);
+ setResults(results);
+ }, [theme]);
+
+ function handleChange(e) {
+ setCurrentValue(e.target.value);
+ const results = fuse.search(e.target.value);
+ setCurrentValue(e.target.value);
+ setResults(results);
+ }
+
+ const Container = styled("div", {
+ overflowX: "auto",
+ width: "100%",
+ });
+
+ const StyledTable = styled("table", {
+ borderCollapse: "collapse",
+ borderSpacing: "0",
+ width: "100%",
+ marginBottom: "calc($050 / 2)",
+ "& th": {
+ textAlign: "left",
+ fontWeight: "$light",
+ borderBottom: "1px solid $subtle",
+ fontSize: "$100",
+ color: "$accessible",
+ paddingInlineStart: 0,
+ py: "$100",
+ paddingRight: "$200",
+ "@sm": {
+ paddingRight: "0px",
+ },
+ "&.hide": {
+ "@sm": {
+ display: "none",
+ },
+ },
+ },
+ "& tr": {
+ height: 80,
+ },
+ "& td": {
+ borderBottom: "1px solid $subtle",
+ fontSize: "$100",
+ paddingInlineStart: 0,
+ paddingInlineEnd: "$100",
+ color: "$accessible",
+ py: "$100",
+ paddingRight: "$200",
+ "@sm": {
+ paddingRight: "0px",
+ },
+ "&.rgba": {
+ minWidth: 200,
+ "@sm": {
+ minWidth: "unset",
+ },
+ },
+ "&.upper": {
+ textTransform: "uppercase",
+ },
+ "&.hide": {
+ "@sm": {
+ display: "none",
+ },
+ },
+ "&.nowrap": {
+ whiteSpace: "nowrap",
+ },
+ },
+ });
+
+ const Swatch = styled("div", {
+ width: 40,
+ height: 40,
+ borderRadius: 4,
+ border: "1px solid $faint",
+ });
+
+ function convertObjectToArray(obj, suffix) {
+ return Object.entries(obj).map(([key, value]) => ({
+ name: key + suffix,
+ ...value,
+ }));
+ }
+
+ function lookUpValue(item = {}) {
+ let value = item?.value ?? "";
+ let lookUpKey = value?.substring(1, value.length - 1);
+
+ if (value.includes("-static")) {
+ return Tokens.color.static[lookUpKey];
+ } else if (theme === "dark") {
+ value = item.valueDark;
+ lookUpKey = value?.substring(1, value.length - 1);
+ return Tokens.color.dark[lookUpKey];
+ } else {
+ return Tokens.color.light[lookUpKey];
+ }
+ }
+
+ function formatToken(item = {}) {
+ let value = item?.value ?? "";
+ if (theme === "dark" && item?.valueDark) {
+ value = item?.valueDark;
+ }
+ return value && value.substring(1, value.length - 1);
+ }
+
+ const headers = ["Name", "Preview", "RGBA", "HEX", "Description"];
+
+ return (
+ <>
+
+
+
+
+ {results.length > 0 ? (
+ results.map((result, i) => (
+
+ ))
+ ) : (
+
+ )}
+
+
+
+
+
+
+
+ {headers.map((header, i) => (
+
+ {header}
+
+ ))}
+
+
+
+ {results.length > 0
+ ? results.map((result, i) => (
+
+ {result.item.name}
+
+
+
+
+ {result.item.value?.includes("{")
+ ? lookUpValue(result.item)?.value
+ : result.item.value}
+
+
+ {" "}
+ {result.item.value?.includes("{")
+ ? lookUpValue(result.item)?.hex
+ : result.item.hex}
+
+
+ {result.item.description === undefined
+ ? "-"
+ : result.item.description}
+
+
+ ))
+ : defaultPalette.map((item, i) => (
+
+ {item.name}
+
+
+
+
+ {item.value?.includes("{")
+ ? lookUpValue(item)?.value
+ : item.value}
+
+
+ {item.value?.includes("{")
+ ? lookUpValue(item)?.hex
+ : item.hex}
+
+
+ {item.description === undefined ? "-" : item.description}
+
+
+ ))}
+
+
+
+ >
+ );
+}
diff --git a/build.washingtonpost.com/components/Markdown/Styling.js b/build.washingtonpost.com/components/Markdown/Styling.js
index 594c36131..e58a22646 100644
--- a/build.washingtonpost.com/components/Markdown/Styling.js
+++ b/build.washingtonpost.com/components/Markdown/Styling.js
@@ -13,7 +13,7 @@ import {
} from "~/components/Markdown/Components/list";
import dynamic from "next/dynamic";
import { Grid, Cell } from "./Components/Grid";
-import { AlertBanner } from "@washingtonpost/wpds-alert-banner";
+import { AlertBanner } from "@washingtonpost/wpds-ui-kit";
import { ComponentStatus } from "../ComponentPage/ComponentStatus";
import CollapsibleContainer from "./Components/collapsible";
const InputCheckbox = dynamic(() =>
@@ -204,7 +204,9 @@ const components = {
CopyClipboard: dynamic(() => import("./Components/CopyToClipBoard")),
IconSamples: dynamic(() => import("./Examples/IconSamples")),
LogoSamples: dynamic(() => import("./Examples/LogoSamples")),
+ ColorTokenTable: dynamic(() => import("./Examples/TokenColorTable")),
ColorSamples: dynamic(() => import("./Examples/ColorSamples")),
+ ThemeTokens: dynamic(() => import("./Examples/ThemeTokens")),
HexRGBAColorSamples: dynamic(() => import("./Examples/HexRGBAColorSamples")),
Table: dynamic(() => import("./Components/table")),
Img: dynamic(() => import("./Components/InlineImage")),
diff --git a/build.washingtonpost.com/components/NavigationBar.js b/build.washingtonpost.com/components/NavigationBar.js
index 2d98485d1..080179f04 100644
--- a/build.washingtonpost.com/components/NavigationBar.js
+++ b/build.washingtonpost.com/components/NavigationBar.js
@@ -1,8 +1,11 @@
import React from "react";
-import dynamic from "next/dynamic";
import Link from "next/link";
import { useRouter } from "next/router";
+import {
+ customNotSmBreakpoint,
+ customSmBreakpoint,
+} from "~/components/styleHelpers";
import {
Box,
@@ -11,6 +14,8 @@ import {
Button,
VisuallyHidden,
theme,
+ Switch,
+ InputLabel,
} from "@washingtonpost/wpds-ui-kit";
import Menu from "@washingtonpost/wpds-assets/asset/menu";
import Close from "@washingtonpost/wpds-assets/asset/close";
@@ -18,8 +23,6 @@ import Close from "@washingtonpost/wpds-assets/asset/close";
import Logo from "./logo";
import { ThemeToggle } from "./ThemeToggle";
-const SearchForm = dynamic(() => import("./SearchForm"), { ssr: false });
-
const List = styled("ul", {
gridArea: "nav",
display: "flex",
@@ -27,8 +30,7 @@ const List = styled("ul", {
listStyle: "none",
justifyContent: "flex-end",
alignItems: "center",
-
- "@sm": {
+ [customSmBreakpoint]: {
display: "none",
},
});
@@ -38,7 +40,7 @@ const Container = styled("div", {
display: "flex",
gridArea: "logo",
height: 60,
- "@notSm": {
+ [customNotSmBreakpoint]: {
backgroundColor: "$gray500",
overflow: "hidden",
position: "fixed",
@@ -48,9 +50,9 @@ const Container = styled("div", {
left: 0,
width: "300px",
},
-
- "@sm": {
+ [customSmBreakpoint]: {
width: "100%",
+ justifyContent: "space-between",
},
});
@@ -58,8 +60,7 @@ const ListItem = styled("li", {
display: "flex",
flexDirection: "column",
margin: "0 $200 0 0",
-
- "@sm": {
+ [customSmBreakpoint]: {
margin: "0",
display: "none",
},
@@ -71,7 +72,6 @@ const Anchor = styled("a", {
"&:hover": {
opacity: "0.75",
},
-
variants: {
isCurrent: {
true: {
@@ -138,7 +138,7 @@ export const NavigationBar = ({ setMobileMenu, mobileMenuState, isClosed }) => {
// load on screen sizes greater than sm
React.useEffect(() => {
- const media = window.matchMedia("(max-width: 768px)");
+ const media = window.matchMedia("(max-width: 850px)");
if (media.matches) {
setHideFromSmallScreen(false);
@@ -154,29 +154,29 @@ export const NavigationBar = ({ setMobileMenu, mobileMenuState, isClosed }) => {
Skip to main content
+
{
-
+
setMobileMenu(!mobileMenuState)}
@@ -207,20 +207,45 @@ export const NavigationBar = ({ setMobileMenu, mobileMenuState, isClosed }) => {
-
+
Resources
-
+
Support
- {hideFromSmallScreen && }
+
+
+ Switch to v2 docs site
+
+ {
+ if (checked) {
+ window.location.hostname =
+ "wpds-ui-kit-git-v2.preview.now.washingtonpost.com";
+ return;
+ }
+ window.location.hostname = "build.washingtonpost.com";
+ return;
+ }}
+ >
+
+
+
{
- searchGlobalCss();
-
- return (
-
- );
-};
-
-export default SearchForm;
diff --git a/build.washingtonpost.com/components/Thumbnail.js b/build.washingtonpost.com/components/Thumbnail.js
index cfaf70cf3..468aba727 100644
--- a/build.washingtonpost.com/components/Thumbnail.js
+++ b/build.washingtonpost.com/components/Thumbnail.js
@@ -6,7 +6,7 @@ import { P } from "~/components/Markdown/Styling";
import { ThumbnailGrid } from "./Markdown/Components/ResourcesGrids";
-import Image from "next/image";
+import Image from "next/legacy/image";
export const THUMBNAIL_WIDE = "wide";
export const THUMBNAIL_SQUARE = "square";
diff --git a/build.washingtonpost.com/components/Typography/link.js b/build.washingtonpost.com/components/Typography/link.js
index 0f00cd6cc..783cc6961 100644
--- a/build.washingtonpost.com/components/Typography/link.js
+++ b/build.washingtonpost.com/components/Typography/link.js
@@ -26,7 +26,7 @@ export const A = styled("a", {
export default function CustomLink({ useSignal, as, href, ...otherProps }) {
return (
-
+
);
diff --git a/build.washingtonpost.com/components/logo.js b/build.washingtonpost.com/components/logo.js
index df3a6d162..363a489d3 100644
--- a/build.washingtonpost.com/components/logo.js
+++ b/build.washingtonpost.com/components/logo.js
@@ -29,6 +29,7 @@ export default function Logo() {
passHref
href="/"
aria-label="The Washington Post Design System's Homepage"
+ legacyBehavior
>
diff --git a/build.washingtonpost.com/components/next-seo/defaultSeo.tsx b/build.washingtonpost.com/components/next-seo/defaultSeo.tsx
new file mode 100644
index 000000000..79def335d
--- /dev/null
+++ b/build.washingtonpost.com/components/next-seo/defaultSeo.tsx
@@ -0,0 +1,60 @@
+import React from "react";
+import Head from "next/head";
+
+interface SeoConfig {
+ defaultTitle: string;
+ description: string;
+ openGraph: {
+ type: string;
+ locale: string;
+ url: string;
+ site_name: string;
+ title: string;
+ images: // array of images
+ {
+ url: string;
+ width: number;
+ height: number;
+ alt: string;
+ }[];
+ };
+ twitter: {
+ handle: string;
+ site: string;
+ cardType: string;
+ url: string;
+ title: string;
+ description: string;
+ };
+}
+
+interface DefaultSeoProps {
+ seoConfig: SeoConfig;
+}
+
+export const DefaultSeo: React.FC = ({ seoConfig }) => {
+ return (
+
+ {seoConfig.defaultTitle}
+
+
+
+
+
+
+ {seoConfig.openGraph.images.map((image, index) => (
+
+ ))}
+
+
+
+
+
+
+
+
+ );
+};
diff --git a/build.washingtonpost.com/components/next-seo/index.tsx b/build.washingtonpost.com/components/next-seo/index.tsx
new file mode 100644
index 000000000..adbae5866
--- /dev/null
+++ b/build.washingtonpost.com/components/next-seo/index.tsx
@@ -0,0 +1,2 @@
+export { DefaultSeo } from "./defaultSeo";
+export { NextSeo } from "./nextSeo";
diff --git a/build.washingtonpost.com/components/next-seo/nextSeo.tsx b/build.washingtonpost.com/components/next-seo/nextSeo.tsx
new file mode 100644
index 000000000..5ff8d90f6
--- /dev/null
+++ b/build.washingtonpost.com/components/next-seo/nextSeo.tsx
@@ -0,0 +1,16 @@
+import React from "react";
+import Head from "next/head";
+
+interface pageSeoConfig {
+ title: string;
+ description: string;
+}
+
+export const NextSeo: React.FC = ({ title, description }) => {
+ return (
+
+ {title}
+
+
+ );
+};
diff --git a/build.washingtonpost.com/components/styleHelpers.js b/build.washingtonpost.com/components/styleHelpers.js
new file mode 100644
index 000000000..d02aa5346
--- /dev/null
+++ b/build.washingtonpost.com/components/styleHelpers.js
@@ -0,0 +1,2 @@
+export const customNotSmBreakpoint = "@media (min-width:851px)";
+export const customSmBreakpoint = "@media (max-width:850px)";
diff --git a/build.washingtonpost.com/docs/components/dialog.mdx b/build.washingtonpost.com/docs/components/dialog.mdx
new file mode 100644
index 000000000..d8272fb55
--- /dev/null
+++ b/build.washingtonpost.com/docs/components/dialog.mdx
@@ -0,0 +1,965 @@
+---
+title: Dialog
+description: A dialog is an overlay used to display important content or request input from the user. It is layered on top of the primary screen and typically requires the user to take action before continuing.
+component: Dialog
+openSourceLink: https://www.radix-ui.com/docs/primitives/components/dialog
+status: Alpha
+---
+
+Note: Dialogs are designed to be attention-grabbing and prominent to ensure that the user sees and interacts with them, therefore, they should only be used to display critical information. For less critical information and tasks, consider using our [drawer component](/components/drawer) or [popover component](/components/popover) for actionable UI and our [tooltip component](/components/tooltip) for non-actionable UI.
+
+---
+
+## Anatomy
+
+ div > div": { paddingBlock: 0 } }}>
+
+
+
+1. Container
+2. Close button icon (optional)
+3. Scrim
+4. Footer (optional)
+
+---
+
+## Options
+
+### Width
+
+Dialog width can be defined. The default width of the dialog is 500px.
+
+```jsx withPreview demoHeight="500"
+
+
+ Open Dialog
+
+
+
+
+
+
+ Dialog width
+
+
+ This dialog is 500px wide.
+
+
+
+
+```
+
+### Height
+
+Dialog height can be defined. The default height of the dialog is 300px.
+
+```jsx withPreview demoHeight="500"
+
+
+ Open Dialog
+
+
+
+
+
+
+ Dialog height
+
+
+ This dialog is 300px tall.
+
+
+
+
+```
+
+### Optional footer
+
+The footer is optional when using the dialog. It provides recommended positioning and padding for buttons and links on a dialog for both inline (side-by-side) elements and stacked (vertical) elements.
+
+```jsx withPreview demoHeight="500"
+
+
+ Open Dialog
+
+
+
+
+
+
+ Dialog with footer
+
+
+
+ {`This dialog has a footer with inline elements, or buttons that are
+ placed side-by-side.`}
+
+
+
+
+ Cancel
+
+ Confirm
+
+
+
+
+```
+
+```jsx withPreview demoHeight="500"
+
+
+ Open Dialog
+
+
+
+
+
+
+ Dialog with footer
+
+
+
+ {`This dialog has a footer with stacked elements, or buttons placed
+ vertically above and below each other.`}
+
+
+
+
+ Cancel
+
+ Confirm
+
+
+
+
+```
+
+### Optional close
+
+The dialog close button can be optional. By default, the close button renders in the top right of the dialog content. The button's `asChild` property can be used to give any child button the ability to close the dialog.
+
+```jsx withPreview demoHeight="500"
+
+
+ Open Dialog
+
+
+
+
+
+
+ Dialog with close
+
+
+
+ {`This dialog has a close button.`}
+
+
+
+
+
+```
+
+### Custom scrim color
+
+The scrim color can be changed by defining the color using one of our tokens.
+
+```jsx withPreview demoHeight="500"
+
+
+ Open Dialog
+
+
+
+
+
+
+ Scrim color
+
+
+
+ {`This example uses $green500 as the scrim color.`}
+
+
+
+
+
+```
+
+### Custom container color
+
+The container color can be changed by defining the color using one our tokens.
+
+```jsx withPreview demoHeight="500"
+
+
+ Open Dialog
+
+
+
+
+
+
+ Container color
+
+
+
+ {`This example uses $blue500 as the container color.`}
+
+
+
+
+
+```
+
+---
+
+## Behavior
+
+### Closing
+
+When the close button is rendered, the dialog can be closed by clicking the scrim, the close button, or the cancel button if one is present.
+
+Note: If the user is required to take action in order to dismiss the dialog, the dialog can be set to open and will remain open even if the scrim is clicked on. The user must then interact with the content in the dialog to close it.
+
+On hover, a circular background color appears behind the close icon.
+
+```jsx withPreview demoHeight="500"
+
+
+ Open Dialog
+
+
+
+
+
+
+ Closing
+
+
+
+ {`This dialog can be closed by clicking the scrim, the close button, or the Cancel button.`}
+
+
+
+
+ Cancel
+
+ Confirm
+
+
+
+
+```
+
+### Content overflow
+
+Content will overflow, both vertically and horizontally, in the dialog by default. Users can scroll within a dialog. See our guidance on complex and interactive content in dialogs.
+
+Note: If a dialog has vertical overflow, the content in the scrollable area should flow behind the footer. In other words, the footer should be sticky so that the user can always see the action buttons available to them.
+
+```jsx withPreview demoHeight="500"
+
+
+ Open Dialog
+
+
+
+
+
+
+ Content overflow
+
+
+ {`This dialog is scrollable.`}
+
+
+
+
+
+ Cancel
+
+ Confirm
+
+
+
+
+```
+
+---
+
+## Guidance
+
+### Content should be accessible
+
+Make sure color contrasts comply with [WCAG accessible contrast requirements](https://webaim.org/articles/contrast/).
+
+```jsx withPreview isGuide="error" demoHeight="473"
+
+
+ Open Dialog
+
+
+
+
+
+
+ Inaccessible text color
+
+
+
+ {`The color of the text and buttons on this dialog is not accessible.`}
+
+
+
+ Cancel
+
+ Confirm
+
+
+
+
+```
+
+### Buttons and links should be placed at the bottom of the container
+
+Buttons should typically be placed at the bottom right of the container or in the center of the container at full-width. If using text links, they should typically be placed at the bottom-center of the dialog along with any buttons. Dialogs should include a maximum of two buttons.
+
+Confirming buttons should be aligned to the end of the screen. See the example below for reference, where the confirming button is on the right and the dismissing button is to its left.
+
+```jsx withPreview isGuide="success" demoHeight="473"
+
+
+ Open Dialog
+
+
+
+
+
+ Button placement
+
+
+
+ {`Buttons are placed at the bottom right of this dialog.`}
+
+
+
+
+ Cancel
+
+ Confirm
+
+
+
+
+```
+
+### Avoid overly complex or interactive content in dialogs
+
+Be careful with the level of interactivity and complexity of content inside of a dialog. Avoid using scrollbars in dialogs.
+
+Make sure that the dialog contains only the essential information and actions. Consider other options, such as a separate page, for content that takes up a lot of space or requires several actions.
+
+```jsx withPreview isGuide="warning" demoHeight="631"
+
+
+ Open dialog
+
+
+
+
+
+ Complex dialog
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Label/Placeholder
+
+
+
+ Option
+ Option
+ Option
+ Option
+ Option
+
+
+
+
+
+
+ Label/Placeholder
+
+
+
+ Option
+ Option
+ Option
+ Option
+ Option
+
+
+
+
+
+
+
+
+ Carousel
+
+
+
+
+
+
+
+
+ {[...new Array(5)].map((item, i) => (
+
+
+
+ ))}
+
+
+
+
+
+
+
+
+ Cancel
+
+ Confirm
+
+
+
+
+```
+
+### Dialog should be used with a scrim
+
+Using a scrim with the dialog helps distinguish it from the primary screen in the background. It will help users understand that the dialog is layered above the parent page, shifting the user’s focus appropriately and aligning with best practices for accessibility.
+
+When designing in Figma, pull in the scrim component from the WPDS UI kit to use it in your design.
+
+```jsx withPreview isGuide="success" demoHeight="631"
+export default function Example() {
+ const [container, setContainer] = useState();
+ return (
+
+
+
+
+
+
+ {`Subscribe to continue reading. Already a subscriber? `}
+ Sign in
+
+
+
+
+ Limited time offer
+
+ 2 Days only
+
+
+ Get one year for $30
+
+
+ You can cancel anytime .
+
+
+
+
+ Subscribe
+
+
+
+
+
+
+ );
+}
+```
+
+### Consider screen size when determining the appropriate size for the dialog
+
+Avoid fullscreen dialogs on desktop. On desktop, a dialog should only take up a portion of the screen, with visibility of the primary screen behind it. Ideally, it shouldn’t take up more than 25% of the screen on large screens and desktop.
+
+On tablets and mobile, dialogs may take up a larger portion of the screen, typically 50% to 100%, as the screen size will be smaller.
+
+Note that these percentages are not exact rules but provide general guidelines to follow.
+
+```jsx withPreview isGuide="error" demoHeight="473"
+export default function Example() {
+ const [container, setContainer] = useState();
+ return (
+
+
+
+
+
+
+
+ Fullscreen dialog
+
+
+
+ {`Avoid using fullscreen dialogs on desktop.`}
+
+
+
+
+
+
+ );
+}
+```
+
+```jsx withPreview isGuide="success" demoHeight="1062"
+export default function Example() {
+ const [partialContainer, setPartialContainer] = useState();
+ const [fullContainer, setFullContainer] = useState();
+ return (
+ <>
+
+
+
+
+
+
+
+ Partial screen dialog
+
+
+
+ {`This is a partial screen mobile dialog.`}
+
+
+
+
+ Cancel
+
+ Confirm
+
+
+
+
+
+
+
+
+
+
+
+
+ Fullscreen dialog
+
+
+
+ {`This is a fullscreen mobile dialog.`}
+
+
+
+
+ Cancel
+
+ Confirm
+
+
+
+
+
+ >
+ );
+}
+```
+
+### Ensure that the most critical information goes on the topmost layer
+
+The most critical information should be on the topmost layer, regarding Z-index/layering of the dialog on the page.
+
+```jsx withPreview isGuide="success" demoHeight="477"
+export default function Example() {
+ const [container, setContainer] = useState();
+ return (
+
+
+ Open Drawer
+
+
+ Non-critical information in a drawer.
+
+
+
+
+ Open Dialog
+
+
+
+
+
+
+ Critical information
+
+
+
+ {`This dialog contains critical information.`}
+
+
+
+
+ Cancel
+
+ Confirm
+
+
+
+
+
+ );
+}
+```
+
+### Do not use nested dialogs
+
+Using a nested dialog creates visual complexity. Multiple layers of information and actions can be confusing to users.
+
+```jsx withPreview isGuide="error" demoHeight="477"
+export default function Example() {
+ const [container, setContainer] = useState();
+ const [open, setOpen] = useState(true);
+ return (
+
+
+
+ Open Dialog
+
+
+
+
+
+ Dialog header
+
+
+
+ {`This is sample text that would go inside the dialog component.
+A dialog sits on top of the screen and is used to display content or request input from user`}
+
+
+
+
+ Cancel
+
+ setOpen(true)}>
+ Confirm
+
+
+
+
+
+ setOpen(isOpen)}>
+
+
+
+
+
+ Nested dialog
+
+
+
+ {`Do not use nested dialogs.`}
+
+
+
+
+ Cancel
+
+ Confirm
+
+
+
+
+
+ );
+}
+```
+
+### Use clear, consistent language in dialogs
+
+Dialog content should be as concise as possible while still effectively communicating its message to users.
+
+When writing headers and buttons, use explicit button text that indicates exactly what will happen and match headers to corresponding buttons. For example, for a dialog labeled “Save your changes,” instead of using buttons labeled “Yes” and “No,” use wording that is more direct and actionable such as “Save” and “Discard.”
+
+```jsx withPreview isGuide="success" demoHeight="477"
+export default function Example() {
+ const [container, setContainer] = useState();
+ return (
+
+
+
+ Open Dialog
+
+
+
+
+
+
+ Save your changes
+
+
+
+ {`Would you like to save your changes before exiting?`}
+
+
+
+
+ Discard
+
+ Save
+
+
+
+
+
+ );
+}
+```
+
+---
+
+## Accessibility
+
+### Keyboard interaction
+
+The dialog component is accessible via keyboard interaction. When the dialog trigger or close buttons are focused, the “space” key will open and close a dialog. The "tab" key can be used to navigate focus on the next interactive element contained in the dialog. Pressing “shift + tab” can be used to navigate focus on the previous interactive element contained in the dialog. The element currently in focus is denoted by an outline, using the CSS outline property. Pressing the "enter" ("return") key will trigger or commit the action of the focused element. Pressing the “escape” key closes the dialog.
+
+```jsx withPreview demoHeight="500"
+
+
+ Open Dialog
+
+
+
+
+
+
+ Keyboard interaction
+
+
+
+ {`Try out keyboard interactions with this dialog by following the instructions above.`}
+
+
+
+
+ Cancel
+
+ Confirm
+
+
+
+
+```
+
+### Include a title and description
+
+An accessible title and optional accessible description should be included to be announced by screen readers when the dialog is opened. Take a look at the code to see the title and description for this example dialog.
+
+```jsx withPreview demoHeight="500"
+
+
+ Open Dialog
+
+
+
+
+
+
+ Title and description
+
+
+
+ {`This is sample text that would go inside the dialog component.
+A dialog sits on top of the screen and is used to display content or request input from user.`}
+
+
+
+
+ Cancel
+
+ Confirm
+
+
+
+
+```
+
+---
+
+## API Reference
+
+
+````
diff --git a/build.washingtonpost.com/docs/foundations/breakpoints.mdx b/build.washingtonpost.com/docs/foundations/breakpoints.mdx
index 4703af1b9..e5ee77f4f 100644
--- a/build.washingtonpost.com/docs/foundations/breakpoints.mdx
+++ b/build.washingtonpost.com/docs/foundations/breakpoints.mdx
@@ -282,3 +282,41 @@ export default function Example() {
);
}
```
+
+### Using the Responsive Screen Size React Hook
+
+The `useResponsiveScreenSize` hook can be used to get the current screen size and use it in your components.
+
+
+
+ The hook is only available in the browser and will return{" "}
+ unknown
on the server.
+
+
+
+#### An example using the hook
+
+Our Spectrum render engine uses the hook to render a drawer on small screens and a dialog on larger screens. This is a simplified version of the code used in the Spectrum render engine.
+
+```jsx
+import {
+ useResponsiveScreenSize,
+ screenSizesEnums,
+ Dialog,
+ Drawer,
+} from "@washingtonpost/wpds-ui-kit";
+
+export default function Example() {
+ const screenSize = useResponsiveScreenSize();
+
+ return (
+
+ {screenSize === screenSizesEnums.small ? (
+ {/* Drawer content */}
+ ) : (
+ {/* Dialog content */}
+ )}
+
+ );
+}
+```
diff --git a/build.washingtonpost.com/docs/foundations/color.mdx b/build.washingtonpost.com/docs/foundations/color.mdx
index ae9e7f1cd..cb59f99a7 100644
--- a/build.washingtonpost.com/docs/foundations/color.mdx
+++ b/build.washingtonpost.com/docs/foundations/color.mdx
@@ -1,46 +1,88 @@
---
order: 4
title: Color
-description: Color token values are defined by their context. There are two contexts "light" and "dark" context. Toggle the sun/moon in the top right of the site to see each context.
+description: Color token values are defined by their context. There are two contexts we currently support a "light" and "dark" context. Toggle the sun/moon in the top right of the site to see each context.
---
## Table of contents
-- [Theme and semantic tokens](/foundations/color#Theme_and_Semantic_tokens)
+- [Introduction to Our Color Palette](/foundations/color#Introduction%20to%20Our%20Color%20Palette)
+- [Theme and Semantic Tokens](/foundations/color#Theme%20and%20Semantic%20Tokens)
- [Color tokens](/foundations/color#Color%20tokens)
-- [Static color tokens](/foundations/color#Static%20color%20tokens)
---
-## Theme and semantic tokens
+
-Theme tokens are alias tokens that map a color token to intention.
-When possible, always use a theme token. Read more about using theme and
-semantic tokens on our [color documentation](/foundations/principles#Themes).
-When using color tokens in code, you can access them using
-`theme.colors[tokenName]`
+
+
+Note: In the graphic, the number in each color swatch is the contrast against our `background` color. For accessibility, large text should have at least a 3:1 ratio for AA compliance, and small text should have at least 4.5:1 for AA and 7:1 for AAA compliance. See WCAG for details.
-
+
---
-## Color tokens
+## Introduction to Our Color Palette
+
+Our color palette is designed to cater to the diverse needs of our product's design requirements, providing a comprehensive range of colors.
+
+#### Recommended Usage
+
+While our palette offers a variety of colors suitable for a
+wide array of applications within our product, we strongly recommend using our theme
+tokens. These tokens are specifically designed to ensure that colors are applied
+with the correct intention and assignment, particularly in contexts where light and
+dark themes are utilized.
+
+#### How to Reference Color Tokens
+
+Color tokens can be referenced by combining their color group and scale. This system allows for easy identification and application of color values within your projects. For example:
+
+- `gray100`
+- `red300`
+- `teal600`
-
+**Note:** The -static modifier preserves the color token's consistency across light and dark contexts. Its usage should be limited within the scope of our product to maintain design coherence.
+
+#### Using our tokens in code
+
+When you need to apply colors from the WPDS theme to your components, start by importing the `theme` object from the WPDS UI kit package. This enables you to use the theme's predefined color values in a type-safe manner, ensuring consistency across your application and adherence to the design system.
+For example:
+
+`import { theme } from "@washingtonpost/wpds-ui-kit";`
+`theme.colors.background //Reference to the token`
---
-## Static color tokens
+## Theme and Semantic Tokens
-Static color tokens hold their value regardless of the current context. To use a static token apply a -static suffix to the color token.
+Our theme tokens follow a semantic and predictable structure comprising three parts:
+
+- **Role:** This defines the purpose of the token within the UI.
+- **Modifier (Optional):** This denotes a variant, change, or subset of the role, such as -subtle\*.
+- **State (Optional):** This indicates the token's state within the UI.
+
+#### Definition
+
+**subtle\*:** The subtle modifier ensures that the color token remains the same color across light and dark contexts.
+
+
+
+
+
+
+
+---
+
+## Color tokens
-
+
diff --git a/build.washingtonpost.com/docs/foundations/principles.mdx b/build.washingtonpost.com/docs/foundations/principles.mdx
index 9ba2eff09..ed8277f9f 100644
--- a/build.washingtonpost.com/docs/foundations/principles.mdx
+++ b/build.washingtonpost.com/docs/foundations/principles.mdx
@@ -14,7 +14,7 @@ When we refer to color we exclude the entire grayscale. The use of color in our
system is limited and it is deliberate. Our products focus on the content
and the reader experience. Color should always be a minimal distraction and used with intention.
-import Tokens from "@washingtonpost/wpds-theme/src/wpds.tokens.json";
+import Tokens from "@washingtonpost/wpds-ui-kit/src/theme/wpds.tokens.json";
- [Guidance](/foundations/principles#Guidance)
- [Themes](/foundations/principles#Themes)
diff --git a/build.washingtonpost.com/docs/resources/tools/tailwind-theme.mdx b/build.washingtonpost.com/docs/resources/tools/tailwind-theme.mdx
index c3a823dd9..ad2fad617 100644
--- a/build.washingtonpost.com/docs/resources/tools/tailwind-theme.mdx
+++ b/build.washingtonpost.com/docs/resources/tools/tailwind-theme.mdx
@@ -44,8 +44,7 @@ Ensure that the WPDS fonts and css variables are available on the page if they a
```jsx
// _app.js or other main script file
-
-// also available from @washingtonpost/wpds-ui-kit
+// also available from @washingtonpost/wpds-ui-kit
import { getCssText, globalStyles } from "@washingtonpost/wpds-theme";
const style = document.createElement("style");
diff --git a/build.washingtonpost.com/package.json b/build.washingtonpost.com/package.json
index c51ad0819..50ec50af7 100644
--- a/build.washingtonpost.com/package.json
+++ b/build.washingtonpost.com/package.json
@@ -1,6 +1,6 @@
{
"name": "@washingtonpost/wpds-docs",
- "version": "1.17.0",
+ "version": "2.0.0",
"private": true,
"scripts": {
"dev": "next-remote-watch ./docs",
@@ -13,34 +13,35 @@
},
"dependencies": {
"@babel/standalone": "^7.17.11",
- "@codesandbox/sandpack-react": "^2.0.27",
+ "@codesandbox/sandpack-react": "2.13.2",
"@docsearch/react": "^3.0.0",
+ "@mdx-js/react": "^3.0.1",
"@octokit/core": "^4.0.5",
"@radix-ui/react-accordion": "^1.0.0",
"@radix-ui/react-checkbox": "^1.0.0",
"@radix-ui/react-collapsible": "^1.0.0",
"@radix-ui/react-toggle-group": "^1.0.1",
"@stitches/react": "1.2.8",
- "@washingtonpost/site-favicons": "^0.1.3",
+ "@washingtonpost/front-end-utils": "0.5.17-alpha.1",
+ "@washingtonpost/site-favicons": "0.3.4-alpha.1",
+ "@washingtonpost/site-footer": "0.25.3-alpha.1",
"@washingtonpost/tachyons-css": "^1.8.0",
- "@washingtonpost/wpds-accordion": "1.17.0",
- "@washingtonpost/wpds-assets": "1.23.0",
- "@washingtonpost/wpds-kitchen-sink": "1.17.0",
- "@washingtonpost/wpds-tailwind-theme": "1.17.0",
- "@washingtonpost/wpds-tokens": "1.17.0",
- "@washingtonpost/wpds-ui-kit": "1.17.0",
+ "@washingtonpost/wpds-assets": "2.0.0",
+ "@washingtonpost/wpds-kitchen-sink": "2.0.0",
+ "@washingtonpost/wpds-tailwind-theme": "2.0.0",
+ "@washingtonpost/wpds-tokens": "2.0.0",
+ "@washingtonpost/wpds-ui-kit": "2.0.0",
"fuse.js": "^6.6.2",
"gray-matter": "^4.0.2",
"lz-string": "^1.4.4",
- "next": "^12.3.4",
- "next-mdx-remote": "4.1.0",
- "next-seo": "5.15.0",
+ "next": "14.0.3",
+ "next-mdx-remote": "^4.4.1",
"next-themes": "0.2.1",
"param-case": "^3.0.4",
"pascal-case": "^3.1.2",
- "react": "^17.0.2",
+ "react": "^18.2.0",
"react-docgen": "^5.4.0",
- "react-dom": "^17.0.2",
+ "react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"react-hook-form": "^7.41.0",
"react-phone-number-input": "^3.2.13",
@@ -49,17 +50,19 @@
"remark-gfm": "^3.0.1",
"remark-mdx-code-meta": "^1.0.0",
"stringify-object": "^4.0.1",
- "typescript": "4.5.5"
+ "typescript": "4.5.5",
+ "wcag-contrast": "3.0.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.1.0",
"@types/lz-string": "^1.3.34",
"@types/node": "^17.0.21",
- "@types/react": "^17.0.38",
+ "@types/react": "18.2.39",
+ "@types/react-dom": "18.2.17",
"autoprefixer": "^10.4.13",
"babel-plugin-extract-react-types": "^0.1.14",
- "eslint": "8.6.0",
- "eslint-config-next": "^12.2.4",
+ "eslint": "8.9.0",
+ "eslint-config-next": "^14.0.3",
"extract-react-types": "^0.30.2",
"glob": "^7.2.0",
"husky": "^7.0.0",
@@ -74,8 +77,7 @@
"url": "https://github.com/washingtonpost/wpds-docs.git"
},
"overrides": {
- "react": "^17.0.2",
- "react-dom": "^17.0.2",
- "@washingtonpost/wpds-assets": "1.23.0"
+ "react": "^18.2.0",
+ "react-dom": "^18.2.0"
}
}
diff --git a/build.washingtonpost.com/pages/404.js b/build.washingtonpost.com/pages/404.js
index 4a0327d7d..e430ad0b3 100644
--- a/build.washingtonpost.com/pages/404.js
+++ b/build.washingtonpost.com/pages/404.js
@@ -35,6 +35,8 @@ const onClick = () => {
metaKey: true,
})
);
+
+ return false;
};
export const StyledLink = ({ children }) => {
return (
diff --git a/build.washingtonpost.com/pages/_app.js b/build.washingtonpost.com/pages/_app.js
index 034564bbd..38511b59d 100644
--- a/build.washingtonpost.com/pages/_app.js
+++ b/build.washingtonpost.com/pages/_app.js
@@ -3,7 +3,7 @@
import React from "react";
import { ThemeProvider } from "next-themes";
import Script from "next/script";
-import { DefaultSeo } from "next-seo";
+import { DefaultSeo } from "../components/next-seo";
import "react-toastify/dist/ReactToastify.css";
import {
globalStyles,
@@ -14,7 +14,6 @@ import { useRouter } from "next/router";
import { darkModeStyles } from "~/components/DarkModeStyles";
import { PageLayout } from "~/components/Layout";
import SEO from "../next-seo.config";
-import "@washingtonpost/wpds-tokens/dist/styles.css";
import "../public/global.css";
const globalTextStyles = globalCss({
@@ -87,7 +86,7 @@ function App({ Component, pageProps }) {
return (
<>
-
+
{
- const css = getCssText();
- reset();
- return css;
-};
+export default function Document() {
+ return (
+
+
+
+
+
+
-export default class Document extends NextDocument {
- static async getInitialProps(ctx) {
- let initialProps = { html: "<>>" };
- try {
- initialProps = await NextDocument.getInitialProps(ctx);
- return { ...initialProps };
- } catch (e) {
- return initialProps;
- }
- }
+
- render() {
- return (
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
-
-
-
-
-
-
-
-
-
- );
- }
+ >
+
+
+
+
+
+ );
}
diff --git a/build.washingtonpost.com/pages/components/[slug].js b/build.washingtonpost.com/pages/components/[slug].js
index bb732f702..f57842ef0 100644
--- a/build.washingtonpost.com/pages/components/[slug].js
+++ b/build.washingtonpost.com/pages/components/[slug].js
@@ -1,6 +1,6 @@
import React from "react";
import { MDXRemote } from "next-mdx-remote";
-import { NextSeo } from "next-seo";
+import { NextSeo } from "~/components/next-seo";
import { styled } from "@washingtonpost/wpds-ui-kit";
@@ -81,13 +81,15 @@ export default function Page({
-
+ {source && (
+
+ )}
>
);
diff --git a/build.washingtonpost.com/pages/foundations/[slug].js b/build.washingtonpost.com/pages/foundations/[slug].js
index c81968000..3d8bbe17b 100644
--- a/build.washingtonpost.com/pages/foundations/[slug].js
+++ b/build.washingtonpost.com/pages/foundations/[slug].js
@@ -1,8 +1,7 @@
import React from "react";
import { MDXRemote } from "next-mdx-remote";
import dynamic from "next/dynamic";
-import { NextSeo } from "next-seo";
-import { styled, theme } from "@washingtonpost/wpds-ui-kit";
+import { NextSeo } from "~/components/next-seo";
import MDXStyling from "~/components/Markdown/Styling";
import Header from "~/components/Typography/Headers";
@@ -15,12 +14,8 @@ const components = {
...MDXStyling,
CustomComponent: dynamic(() => import("~/components/Typography/Headers")),
};
-const P = styled("p", {
- color: theme.colors.accessible,
- marginBlock: 0,
-});
-export default function Page({ source, iconData }) {
+export default function Page({ source = {}, iconData = { components: [] } }) {
return (
<>
-
+ {source && (
+
+ )}
>
);
@@ -49,7 +46,7 @@ export const getStaticProps = async ({ params }) => {
const navigation = await getNavigation();
- let iconData = null;
+ let iconData = { components: [] };
if (params.slug === "icons") {
const response = await fetch(
"https://api.figma.com/v1/files/LA6qKUukk8v3YkkuKq6IC6/components",
diff --git a/build.washingtonpost.com/pages/index.js b/build.washingtonpost.com/pages/index.js
index 411ba3ffc..c1c4572c8 100644
--- a/build.washingtonpost.com/pages/index.js
+++ b/build.washingtonpost.com/pages/index.js
@@ -10,7 +10,7 @@ import {
} from "~/components/Markdown/Components/ResourcesGrids";
import { SeeAllLink, sortByRank, NewCustomLink } from "~/components/utils";
-import Image from "next/image";
+import Image from "next/legacy/image";
import { Contributors } from "~/components/Contributors";
const HeroBlock = styled("div", {
diff --git a/build.washingtonpost.com/pages/kitchen-sink.tsx b/build.washingtonpost.com/pages/kitchen-sink.tsx
index 7e64ea72f..2ed45de9b 100644
--- a/build.washingtonpost.com/pages/kitchen-sink.tsx
+++ b/build.washingtonpost.com/pages/kitchen-sink.tsx
@@ -1,7 +1,8 @@
/* eslint-disable @next/next/no-img-element */
import * as React from "react";
-import { KitchenSink } from "@washingtonpost/wpds-kitchen-sink";
+// import { KitchenSink } from "@washingtonpost/wpds-kitchen-sink";
export default function KitchenSinkPage() {
- return ;
+ // return ;
+ return TODO: KitchenSink
;
}
diff --git a/build.washingtonpost.com/pages/playroom.js b/build.washingtonpost.com/pages/playroom.js
index 639be5091..aaff5ec1d 100644
--- a/build.washingtonpost.com/pages/playroom.js
+++ b/build.washingtonpost.com/pages/playroom.js
@@ -18,6 +18,7 @@ import { Header } from "~/components/Markdown/Components/headers";
import MDXStyling from "~/components/Markdown/Styling";
import { CopyCodeButton } from "~/components/Markdown/Components/Sandbox";
import { Box } from "@washingtonpost/wpds-ui-kit";
+import { NextSeo } from "~/components/next-seo";
const Canvas = Kit.styled("div", {
color: "$accessible",
@@ -257,15 +258,17 @@ export default function Playroom({
-
+ {receivedSource.compiledSource && (
+
+ )}
);
@@ -310,8 +313,9 @@ export default function Playroom({
}}
>
- WPDS - Playroom
+
+
>
-
+ {source && }
>
);
diff --git a/build.washingtonpost.com/pages/resources/[category]/index.js b/build.washingtonpost.com/pages/resources/[category]/index.js
index 9f04425fc..e9e22376b 100644
--- a/build.washingtonpost.com/pages/resources/[category]/index.js
+++ b/build.washingtonpost.com/pages/resources/[category]/index.js
@@ -1,6 +1,6 @@
import React from "react";
import { styled } from "@washingtonpost/wpds-ui-kit";
-import { NextSeo } from "next-seo";
+import { NextSeo } from "~/components/next-seo";
import Header from "~/components/Typography/Headers";
import CustomLink from "~/components/Typography/link";
import { getAllPathsByCategory, getNavigation, getResources } from "~/services";
diff --git a/build.washingtonpost.com/pages/resources/index.js b/build.washingtonpost.com/pages/resources/index.js
index 917ee3c65..afadaea4d 100644
--- a/build.washingtonpost.com/pages/resources/index.js
+++ b/build.washingtonpost.com/pages/resources/index.js
@@ -1,6 +1,6 @@
import React from "react";
-import { NextSeo } from "next-seo";
-import { styled, theme, Box } from "@washingtonpost/wpds-ui-kit";
+import { NextSeo } from "~/components/next-seo";
+import { theme, Box } from "@washingtonpost/wpds-ui-kit";
import { getDocsListBySection, getNavigation } from "~/services";
import { Header } from "~/components/Markdown/Components/headers";
diff --git a/build.washingtonpost.com/pages/resources/working-examples.tsx b/build.washingtonpost.com/pages/resources/working-examples.tsx
index 8ffca953b..32ee96782 100644
--- a/build.washingtonpost.com/pages/resources/working-examples.tsx
+++ b/build.washingtonpost.com/pages/resources/working-examples.tsx
@@ -18,7 +18,7 @@ import {
styled,
} from "@washingtonpost/wpds-ui-kit";
-import { cities } from "@washingtonpost/wpds-input-search/src/cities";
+import { cities } from "@washingtonpost/wpds-ui-kit/src/input-search/cities";
const STATES = [
"Alabama",
diff --git a/build.washingtonpost.com/pages/support/[slug].js b/build.washingtonpost.com/pages/support/[slug].js
index 4cdf0ab9f..0ad2ce27a 100644
--- a/build.washingtonpost.com/pages/support/[slug].js
+++ b/build.washingtonpost.com/pages/support/[slug].js
@@ -1,8 +1,7 @@
import React from "react";
import { MDXRemote } from "next-mdx-remote";
import dynamic from "next/dynamic";
-import { NextSeo } from "next-seo";
-import { styled, theme } from "@washingtonpost/wpds-ui-kit";
+import { NextSeo } from "~/components/next-seo";
import MDXStyling from "~/components/Markdown/Styling";
import Header from "~/components/Typography/Headers";
@@ -15,9 +14,6 @@ const components = {
...MDXStyling,
CustomComponent: dynamic(() => import("~/components/Typography/Headers")),
};
-const P = styled("p", {
- color: theme.colors.accessible,
-});
export default function Page({ source }) {
return (
@@ -33,7 +29,7 @@ export default function Page({ source }) {
)}
-
+ {source && }
>
);
diff --git a/build.washingtonpost.com/pages/support/index.js b/build.washingtonpost.com/pages/support/index.js
index 071ae048c..9e745ac9b 100644
--- a/build.washingtonpost.com/pages/support/index.js
+++ b/build.washingtonpost.com/pages/support/index.js
@@ -1,5 +1,5 @@
import React from "react";
-import { NextSeo } from "next-seo";
+import { NextSeo } from "~/components/next-seo";
import { getDocsListBySection, getNavigation } from "~/services";
import { Box, styled } from "@washingtonpost/wpds-ui-kit";
import { Header } from "~/components/Markdown/Components/headers";
diff --git a/build.washingtonpost.com/pages/zzz/[slug].js b/build.washingtonpost.com/pages/zzz/[slug].js
index cdd27b585..d8b9457e4 100644
--- a/build.washingtonpost.com/pages/zzz/[slug].js
+++ b/build.washingtonpost.com/pages/zzz/[slug].js
@@ -1,8 +1,7 @@
import React from "react";
import { MDXRemote } from "next-mdx-remote";
import dynamic from "next/dynamic";
-import { NextSeo } from "next-seo";
-import { styled, theme } from "@washingtonpost/wpds-ui-kit";
+import { NextSeo } from "~/components/next-seo";
import MDXStyling from "~/components/Markdown/Styling";
import Header from "~/components/Typography/Headers";
@@ -15,9 +14,6 @@ const components = {
...MDXStyling,
CustomComponent: dynamic(() => import("~/components/Typography/Headers")),
};
-const P = styled("p", {
- color: theme.colors.accessible,
-});
export default function Page({ source }) {
return (
@@ -33,7 +29,7 @@ export default function Page({ source }) {
)}
-
+ {source && }{" "}
>
);
diff --git a/build.washingtonpost.com/public/img/components/dialog/anatomy.svg b/build.washingtonpost.com/public/img/components/dialog/anatomy.svg
new file mode 100644
index 000000000..b30a893e5
--- /dev/null
+++ b/build.washingtonpost.com/public/img/components/dialog/anatomy.svg
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/build.washingtonpost.com/public/img/components/dialog/article-image.png b/build.washingtonpost.com/public/img/components/dialog/article-image.png
new file mode 100644
index 000000000..465e23199
Binary files /dev/null and b/build.washingtonpost.com/public/img/components/dialog/article-image.png differ
diff --git a/build.washingtonpost.com/public/sitemap.xml b/build.washingtonpost.com/public/sitemap.xml
index f4eddd37f..f91c14650 100644
--- a/build.washingtonpost.com/public/sitemap.xml
+++ b/build.washingtonpost.com/public/sitemap.xml
@@ -56,6 +56,10 @@
https://build.washingtonpost.com/components/container
+
+ https://build.washingtonpost.com/components/dialog
+
+
https://build.washingtonpost.com/components/divider
diff --git a/build.washingtonpost.com/services/getContributors.js b/build.washingtonpost.com/services/getContributors.js
index 631476ae4..beea8edef 100644
--- a/build.washingtonpost.com/services/getContributors.js
+++ b/build.washingtonpost.com/services/getContributors.js
@@ -47,6 +47,21 @@ export const getContributors = async () => {
avatar: "https://avatars.githubusercontent.com/u/4473245?v=4",
url: "https://github.com/unconstruct",
})
+ .concat({
+ name: "JasonBernert",
+ avatar: "https://avatars.githubusercontent.com/u/2956240?v=4",
+ url: "https://github.com/JasonBernert",
+ })
+ .concat({
+ name: "baconjulie",
+ avatar: "https://avatars.githubusercontent.com/u/5865863?v=4",
+ url: "https://github.com/baconjulie",
+ })
+ .concat({
+ name: "erikreyna",
+ avatar: "https://avatars.githubusercontent.com/u/2431045?v=4",
+ url: "https://github.com/erikreyna",
+ })
// sort alphabetically
.sort((a, b) => (a.name > b.name ? 1 : -1))
.filter((contributor) => {
diff --git a/build.washingtonpost.com/services/getPropsTable.js b/build.washingtonpost.com/services/getPropsTable.js
index e3e36fb60..1ce282c8b 100644
--- a/build.washingtonpost.com/services/getPropsTable.js
+++ b/build.washingtonpost.com/services/getPropsTable.js
@@ -24,7 +24,7 @@ export const getPropsTable = async (component = "icon") => {
try {
const componentsData = docgen.parse(
- `../ui/${component}/src/index.ts`,
+ `../packages/kit/src/${component}/index.ts`,
options
);
diff --git a/build.washingtonpost.com/snippets/inputs/input-base.jsx b/build.washingtonpost.com/snippets/inputs/input-base.jsx
index 4cfc9c0b8..da105ef1b 100644
--- a/build.washingtonpost.com/snippets/inputs/input-base.jsx
+++ b/build.washingtonpost.com/snippets/inputs/input-base.jsx
@@ -4,7 +4,7 @@ import React from "react";
* See documentation for full component api
```jsx
//Example
-import { InputText } from "@washingtonpost/wpds-input-text";
+import { InputText } from "@washingtonpost/wpds-ui-kit";
export default function Example() {
const HelperText = () => {
diff --git a/build.washingtonpost.com/snippets/inputs/text-area.jsx b/build.washingtonpost.com/snippets/inputs/text-area.jsx
index 9ddf0b29f..6de6a5266 100644
--- a/build.washingtonpost.com/snippets/inputs/text-area.jsx
+++ b/build.washingtonpost.com/snippets/inputs/text-area.jsx
@@ -4,7 +4,7 @@ import React from "react";
* See documentation for full component api
```jsx
//Example
-import { InputTextarea } from "@washingtonpost/wpds-input-textarea";
+import { InputTextarea } from "@washingtonpost/wpds-ui-kit";
export default function Example() {
return (
diff --git a/build.washingtonpost.com/tsconfig.json b/build.washingtonpost.com/tsconfig.json
index 359d9993f..4affcee40 100644
--- a/build.washingtonpost.com/tsconfig.json
+++ b/build.washingtonpost.com/tsconfig.json
@@ -17,8 +17,8 @@
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
- "isolatedModules": true,
- "jsx": "preserve"
+ "jsx": "preserve",
+ "isolatedModules": true
},
"exclude": [
"node_modules",
diff --git a/docs/architecture/003-css-framework.md b/docs/architecture/003-css-framework.md
new file mode 100644
index 000000000..830ffabc7
--- /dev/null
+++ b/docs/architecture/003-css-framework.md
@@ -0,0 +1,51 @@
+# CSS Framework Selection
+
+## Context
+
+The current CSS framework, [Stitches](https://stitches.dev/), is no longer maintained, and we are facing limitations due to the inability to use a runtime CSS-in-JS framework with React 18's server components and the Next.js app router.
+
+## Decision Drivers
+
+- Similarity of new framework API to Stitches, both for consumer onboarding and automated conversion
+
+- Ability to work with our current tooling. Storybook for development, tsup for compilation, and Next.js for production applications
+
+- Ability to work with other styling options in current use including Tailwind.
+
+## Decision
+
+We propose adopting Panda CSS, a compile-time CSS-in-JS framework, as the new CSS framework for WPDS.
+
+We will continue to maintain a Tailwind theme that can be used in conjunction with our components for teams that prefer a utility class based approach to styling.
+
+## Considered Options
+
+- [Vanilla Extract](https://vanilla-extract.style/): Considered for its approach to type-safe styles and compile-time generation of stylesheets.
+
+ - Uses external \*.css.ts breaking our current colocated styles
+ - Does not have a compatible plug-in for Next 13.x or 14.x
+ - Documented integration with Storybook is broken
+ - Approach to variants is significantly different from Stitches adding to level of effort
+
+- [StyleX](https://stylexjs.com/): Examined for its runtime performance, support for dynamic theming, and expected long-term support from Meta.
+ - No plugin is available for esbuild or tsup forcing a significant change to our compilation process
+ - Override styles must use `stylex.create` , both className and style are actively discouraged or prevented. Generated classes are high strength and difficult to override
+ - Approach to themes and variants is significantly different from Stitches adding to the level of effort
+
+## Resources
+
+[Panda CSS Spike](https://arcpublishing.atlassian.net/browse/SRED-318)
+[Vanilla Extract CSS Spike](https://arcpublishing.atlassian.net/browse/SRED-317)
+[StyleX CSS Spike](https://arcpublishing.atlassian.net/browse/SRED-643)
+
+## Scope
+
+Creating a new WPDS Theme formatted for Panda derived from existing tokens. Migrating components using Stitches to Panda CSS. Both these constitute breaking changes that would mean a 3.0 release of WPDS
+
+Once complete product teams can then begin to opt in to 3.0
+
+Tachyons is deprecated and will no longer receive updates, teams wanting to use utility classes should use Tailwind
+
+## Status
+
+Proposed
diff --git a/docs/architecture/003-use-client-banner.md b/docs/architecture/003-use-client-banner.md
new file mode 100644
index 000000000..ebde7dc8c
--- /dev/null
+++ b/docs/architecture/003-use-client-banner.md
@@ -0,0 +1,35 @@
+# Add `"use client"` directive as a banner in our shipped code
+
+## Context
+
+To improve support for Next.js App Router, all components and hooks are exported with `"use client"` directive. This allows Next.js to hydrate the components on the client.
+
+## Decision
+
+Add a banner to our bundled code that tells React to hydrate the components on the client. See related style registry in `./apps/nextjs14-approuter/src/app/registry.js` which uses `useServerInsertedHTML` API to inject rules before any content that might use them. Make sure the registry wraps your app during initial server-side rendering `{children} `.
+
+```javascript
+import { defineConfig } from "tsup";
+
+export default defineConfig({
+ format: ["cjs", "esm"],
+ target: "es2019",
+ sourcemap: true,
+ banner: {
+ js: "'use client'",
+ },
+});
+```
+
+## Scope
+
+This will be added to the `tsup.config.ts` file in the root of the project so that it is applied to all bundled code in v2.0.0.
+
+## Resources
+
+- Example from Chakra UI https://github.com/chakra-ui/chakra-ui/blob/main/packages/hooks/tsup.config.ts#L7-L9
+- tsup will look for closest `tsup.config.ts` file https://tsup.egoist.dev/#using-custom-configuration
+
+## Status
+
+Approved
diff --git a/docs/architecture/004-versioned-docs.md b/docs/architecture/004-versioned-docs.md
new file mode 100644
index 000000000..0ea6f3dc5
--- /dev/null
+++ b/docs/architecture/004-versioned-docs.md
@@ -0,0 +1,9 @@
+# Version Next.js Docs of our Library (v1, v2, etc)
+
+## Problem
+
+We want to version our docs, so that we can have multiple versions of our docs to support the major versions of our library.
+
+## Solution
+
+We will create a `v1` git branch and a `v2` git branch after we launch `v2` it will be `main`. v1 will be hosted on a branch deploy in Vercel and traffic sent to `https://build.washingtonpost.com/v1/...` will be redirected to the v1 docs. Traffic sent to `https://build.washingtonpost.com/...` will be redirected to the v2 docs. We will update the basePath in the `next.config.js` file to `/v1`.
diff --git a/jest.config.js b/jest.config.js
index 14e05a099..72ee48e7b 100644
--- a/jest.config.js
+++ b/jest.config.js
@@ -1,13 +1,8 @@
/** @type {import("jest").Config} */
module.exports = {
- roots: ["./ui"],
+ roots: ["./packages"],
preset: "ts-jest",
testEnvironment: "./custom-env.ts",
- globals: {
- "ts-jest": {
- tsconfig: "tsconfig.test.json",
- },
- },
cacheDirectory: ".jest-cache",
collectCoverage: true,
coverageDirectory: "jest-coverage",
@@ -28,4 +23,12 @@ module.exports = {
[`^nanoid(/(.*)|$)`]: `nanoid$1`,
"^~/(.*)$": "/$1",
},
+ transform: {
+ "^.+\\.tsx?$": [
+ "ts-jest",
+ {
+ tsconfig: "tsconfig.test.json",
+ },
+ ],
+ },
};
diff --git a/lerna.json b/lerna.json
index d1681c6a4..e0809ac52 100644
--- a/lerna.json
+++ b/lerna.json
@@ -28,5 +28,5 @@
"registry": "https://registry.npmjs.org/"
}
},
- "version": "1.17.0"
+ "version": "2.0.0"
}
diff --git a/package-lock.json b/package-lock.json
index 5349bd670..ae72b02b8 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -6,13 +6,13 @@
"": {
"name": "root",
"workspaces": [
- "./ui/*",
"./build.washingtonpost.com",
- "./apps/*"
+ "./apps/*",
+ "./packages/*"
],
"dependencies": {
"@babel/standalone": "^7.17.11",
- "@washingtonpost/wpds-assets": "^1.22.0",
+ "@washingtonpost/wpds-assets": "2.0.0",
"typescript": "4.5.5"
},
"devDependencies": {
@@ -21,27 +21,26 @@
"@babel/plugin-transform-typescript": "^7.16.1",
"@babel/preset-react": "^7.14.5",
"@babel/template": "^7.15.4",
- "@playwright/test": "^1.28.0",
- "@storybook/addon-a11y": "^6.5.16",
- "@storybook/addon-actions": "^6.5.16",
- "@storybook/addon-essentials": "^6.5.16",
- "@storybook/addon-interactions": "^6.5.16",
- "@storybook/addon-links": "^6.5.16",
- "@storybook/builder-webpack5": "^6.5.16",
- "@storybook/jest": "^0.0.10",
- "@storybook/manager-webpack5": "^6.5.16",
- "@storybook/react": "^6.5.16",
- "@storybook/test-runner": "^0.9.4",
- "@storybook/testing-library": "^0.0.13",
- "@testing-library/dom": "^8.9.1",
- "@testing-library/jest-dom": "^5.14.1",
- "@testing-library/react": "^12.1.5",
- "@testing-library/react-hooks": "^8.0.1",
- "@testing-library/user-event": "^13.5.0",
- "@types/jest": "^28.1.8",
- "@types/node": "^17.0.21",
- "@types/react": "^17.0.39",
- "@types/react-dom": "^17.0.11",
+ "@playwright/test": "^1.40.1",
+ "@storybook/addon-a11y": "^7.6.3",
+ "@storybook/addon-actions": "^7.6.3",
+ "@storybook/addon-essentials": "^7.6.3",
+ "@storybook/addon-interactions": "^7.6.3",
+ "@storybook/addon-links": "^7.6.3",
+ "@storybook/jest": "^0.2.3",
+ "@storybook/nextjs": "^7.6.3",
+ "@storybook/react": "^7.6.3",
+ "@storybook/test-runner": "^0.16.0",
+ "@storybook/testing-library": "^0.2.2",
+ "@testing-library/dom": "latest",
+ "@testing-library/jest-dom": "latest",
+ "@testing-library/react": "latest",
+ "@testing-library/react-hooks": "latest",
+ "@testing-library/user-event": "latest",
+ "@types/jest": "^29.5.11",
+ "@types/node": "^18.19.24",
+ "@types/react": "18.2.39",
+ "@types/react-dom": "18.2.17",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"@washingtonpost/eslint-plugin-wpds": "*",
@@ -59,25 +58,26 @@
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-jest-dom": "^3.9.2",
"eslint-plugin-react": "^7.28.0",
- "eslint-plugin-storybook": "^0.6.11",
+ "eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-testing-library": "^5.0.3",
"eslint-plugin-use-encapsulation": "^1.0.0",
"husky": "^7.0.0",
- "jest": "^28.1.3",
- "jest-environment-jsdom": "^28.1.3",
+ "jest": "latest",
+ "jest-environment-jsdom": "^29.7.0",
"lerna": "^5.1.2",
- "next": "^12.3.4",
+ "next": "14.0.3",
"nx": "^14.3.2",
+ "playwright": "^1.40.1",
"plop": "^3.0.5",
"prettier": "^2.5.1",
- "react": "^17.0.2",
+ "react": "^18.2.0",
"react-docgen-typescript": "^2.2.2",
- "react-dom": "^17.0.2",
- "storybook-addon-themes": "^6.1.0",
- "storybook-dark-mode": "^2.1.1",
- "ts-jest": "^28.0.8",
+ "react-dom": "^18.2.0",
+ "storybook": "^7.6.3",
+ "storybook-dark-mode": "^3.0.3",
+ "ts-jest": "^29.1.1",
"tsup": "5.11.13",
- "turbo": "^1.10.14",
+ "turbo": "^1.11.1",
"typescript": "4.5.5",
"webpack": "^5.88.2"
},
@@ -102,488 +102,186 @@
"esbuild-windows-32": "0.14.25",
"esbuild-windows-64": "0.14.25",
"esbuild-windows-arm64": "0.14.25",
- "turbo-darwin-64": "1.10.14",
- "turbo-darwin-arm64": "1.10.14",
- "turbo-linux-64": "1.10.14",
- "turbo-linux-arm64": "1.10.14",
- "turbo-windows-64": "1.10.14",
- "turbo-windows-arm64": "1.10.14"
+ "turbo-darwin-64": "1.11.1",
+ "turbo-darwin-arm64": "1.11.1",
+ "turbo-linux-64": "1.11.1",
+ "turbo-linux-arm64": "1.11.1",
+ "turbo-windows-64": "1.11.1",
+ "turbo-windows-arm64": "1.11.1"
}
},
- "apps/vite-project": {
- "version": "1.17.0",
+ "apps/nextjs13-approuter": {
+ "version": "2.0.0",
"dependencies": {
- "@washingtonpost/wpds-kitchen-sink": "1.17.0",
- "@washingtonpost/wpds-ui-kit": "1.17.0",
+ "@washingtonpost/wpds-kitchen-sink": "2.0.0",
+ "@washingtonpost/wpds-ui-kit": "2.0.0",
+ "next": "13.5.6",
"react": "^18.2.0",
"react-dom": "^18.2.0"
- },
- "devDependencies": {
- "@types/react": "^18.0.27",
- "@types/react-dom": "^18.0.10",
- "@vitejs/plugin-react": "^3.1.0",
- "vite": "^4.1.0"
- }
- },
- "apps/vite-project/node_modules/@types/react": {
- "version": "18.0.28",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/prop-types": "*",
- "@types/scheduler": "*",
- "csstype": "^3.0.2"
}
},
- "apps/vite-project/node_modules/@types/react-dom": {
- "version": "18.0.11",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/react": "*"
- }
+ "apps/nextjs13-approuter/node_modules/@next/env": {
+ "version": "13.5.6",
+ "license": "MIT"
},
- "apps/vite-project/node_modules/react": {
- "version": "18.2.0",
+ "apps/nextjs13-approuter/node_modules/@next/swc-darwin-x64": {
+ "version": "13.5.6",
+ "cpu": [
+ "x64"
+ ],
"license": "MIT",
- "dependencies": {
- "loose-envify": "^1.1.0"
- },
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
"engines": {
- "node": ">=0.10.0"
- }
- },
- "apps/vite-project/node_modules/react-dom": {
- "version": "18.2.0",
- "license": "MIT",
- "dependencies": {
- "loose-envify": "^1.1.0",
- "scheduler": "^0.23.0"
- },
- "peerDependencies": {
- "react": "^18.2.0"
- }
- },
- "apps/vite-project/node_modules/scheduler": {
- "version": "0.23.0",
- "license": "MIT",
- "dependencies": {
- "loose-envify": "^1.1.0"
- }
- },
- "apps/vite-v2-project": {
- "version": "1.17.0",
- "dependencies": {
- "@washingtonpost/wpds-kitchen-sink": "1.17.0",
- "@washingtonpost/wpds-ui-kit": "1.17.0",
- "react": "^18.0.0",
- "react-dom": "^18.0.0"
- },
- "devDependencies": {
- "@types/react": "^18.0.0",
- "@types/react-dom": "^18.0.0",
- "@vitejs/plugin-react": "^1.3.0",
- "vite": "^2.9.15"
- }
- },
- "apps/vite-v2-project/node_modules/@types/react": {
- "version": "18.0.28",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/prop-types": "*",
- "@types/scheduler": "*",
- "csstype": "^3.0.2"
- }
- },
- "apps/vite-v2-project/node_modules/@types/react-dom": {
- "version": "18.0.11",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/react": "*"
+ "node": ">= 10"
}
},
- "apps/vite-v2-project/node_modules/@vitejs/plugin-react": {
- "version": "1.3.2",
- "dev": true,
+ "apps/nextjs13-approuter/node_modules/next": {
+ "version": "13.5.6",
"license": "MIT",
"dependencies": {
- "@babel/core": "^7.17.10",
- "@babel/plugin-transform-react-jsx": "^7.17.3",
- "@babel/plugin-transform-react-jsx-development": "^7.16.7",
- "@babel/plugin-transform-react-jsx-self": "^7.16.7",
- "@babel/plugin-transform-react-jsx-source": "^7.16.7",
- "@rollup/pluginutils": "^4.2.1",
- "react-refresh": "^0.13.0",
- "resolve": "^1.22.0"
+ "@next/env": "13.5.6",
+ "@swc/helpers": "0.5.2",
+ "busboy": "1.6.0",
+ "caniuse-lite": "^1.0.30001406",
+ "postcss": "8.4.31",
+ "styled-jsx": "5.1.1",
+ "watchpack": "2.4.0"
},
- "engines": {
- "node": ">=12.0.0"
- }
- },
- "apps/vite-v2-project/node_modules/esbuild": {
- "version": "0.14.54",
- "dev": true,
- "hasInstallScript": true,
- "license": "MIT",
"bin": {
- "esbuild": "bin/esbuild"
+ "next": "dist/bin/next"
},
"engines": {
- "node": ">=12"
+ "node": ">=16.14.0"
},
"optionalDependencies": {
- "@esbuild/linux-loong64": "0.14.54",
- "esbuild-android-64": "0.14.54",
- "esbuild-android-arm64": "0.14.54",
- "esbuild-darwin-64": "0.14.54",
- "esbuild-darwin-arm64": "0.14.54",
- "esbuild-freebsd-64": "0.14.54",
- "esbuild-freebsd-arm64": "0.14.54",
- "esbuild-linux-32": "0.14.54",
- "esbuild-linux-64": "0.14.54",
- "esbuild-linux-arm": "0.14.54",
- "esbuild-linux-arm64": "0.14.54",
- "esbuild-linux-mips64le": "0.14.54",
- "esbuild-linux-ppc64le": "0.14.54",
- "esbuild-linux-riscv64": "0.14.54",
- "esbuild-linux-s390x": "0.14.54",
- "esbuild-netbsd-64": "0.14.54",
- "esbuild-openbsd-64": "0.14.54",
- "esbuild-sunos-64": "0.14.54",
- "esbuild-windows-32": "0.14.54",
- "esbuild-windows-64": "0.14.54",
- "esbuild-windows-arm64": "0.14.54"
- }
- },
- "apps/vite-v2-project/node_modules/esbuild-android-64": {
- "version": "0.14.54",
- "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.14.54.tgz",
- "integrity": "sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "android"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "apps/vite-v2-project/node_modules/esbuild-android-arm64": {
- "version": "0.14.54",
- "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.54.tgz",
- "integrity": "sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "android"
- ],
- "engines": {
- "node": ">=12"
+ "@next/swc-darwin-arm64": "13.5.6",
+ "@next/swc-darwin-x64": "13.5.6",
+ "@next/swc-linux-arm64-gnu": "13.5.6",
+ "@next/swc-linux-arm64-musl": "13.5.6",
+ "@next/swc-linux-x64-gnu": "13.5.6",
+ "@next/swc-linux-x64-musl": "13.5.6",
+ "@next/swc-win32-arm64-msvc": "13.5.6",
+ "@next/swc-win32-ia32-msvc": "13.5.6",
+ "@next/swc-win32-x64-msvc": "13.5.6"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.1.0",
+ "react": "^18.2.0",
+ "react-dom": "^18.2.0",
+ "sass": "^1.3.0"
+ },
+ "peerDependenciesMeta": {
+ "@opentelemetry/api": {
+ "optional": true
+ },
+ "sass": {
+ "optional": true
+ }
}
},
- "apps/vite-v2-project/node_modules/esbuild-darwin-64": {
- "version": "0.14.54",
- "cpu": [
- "x64"
+ "apps/nextjs13-approuter/node_modules/postcss": {
+ "version": "8.4.31",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/postcss"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
],
- "dev": true,
"license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "apps/vite-v2-project/node_modules/esbuild-darwin-arm64": {
- "version": "0.14.54",
- "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.54.tgz",
- "integrity": "sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "apps/vite-v2-project/node_modules/esbuild-freebsd-64": {
- "version": "0.14.54",
- "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.54.tgz",
- "integrity": "sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "freebsd"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "apps/vite-v2-project/node_modules/esbuild-freebsd-arm64": {
- "version": "0.14.54",
- "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.54.tgz",
- "integrity": "sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "freebsd"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "apps/vite-v2-project/node_modules/esbuild-linux-32": {
- "version": "0.14.54",
- "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.54.tgz",
- "integrity": "sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw==",
- "cpu": [
- "ia32"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "apps/vite-v2-project/node_modules/esbuild-linux-64": {
- "version": "0.14.54",
- "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.54.tgz",
- "integrity": "sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "apps/vite-v2-project/node_modules/esbuild-linux-arm": {
- "version": "0.14.54",
- "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.54.tgz",
- "integrity": "sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw==",
- "cpu": [
- "arm"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "apps/vite-v2-project/node_modules/esbuild-linux-arm64": {
- "version": "0.14.54",
- "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.54.tgz",
- "integrity": "sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "apps/vite-v2-project/node_modules/esbuild-linux-mips64le": {
- "version": "0.14.54",
- "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.54.tgz",
- "integrity": "sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw==",
- "cpu": [
- "mips64el"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "apps/vite-v2-project/node_modules/esbuild-linux-ppc64le": {
- "version": "0.14.54",
- "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.54.tgz",
- "integrity": "sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ==",
- "cpu": [
- "ppc64"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "apps/vite-v2-project/node_modules/esbuild-linux-riscv64": {
- "version": "0.14.54",
- "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.54.tgz",
- "integrity": "sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg==",
- "cpu": [
- "riscv64"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "apps/vite-v2-project/node_modules/esbuild-linux-s390x": {
- "version": "0.14.54",
- "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.54.tgz",
- "integrity": "sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA==",
- "cpu": [
- "s390x"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "apps/vite-v2-project/node_modules/esbuild-netbsd-64": {
- "version": "0.14.54",
- "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.54.tgz",
- "integrity": "sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "netbsd"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "apps/vite-v2-project/node_modules/esbuild-openbsd-64": {
- "version": "0.14.54",
- "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.54.tgz",
- "integrity": "sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "openbsd"
- ],
+ "dependencies": {
+ "nanoid": "^3.3.6",
+ "picocolors": "^1.0.0",
+ "source-map-js": "^1.0.2"
+ },
"engines": {
- "node": ">=12"
+ "node": "^10 || ^12 || >=14"
}
},
- "apps/vite-v2-project/node_modules/esbuild-sunos-64": {
- "version": "0.14.54",
- "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.54.tgz",
- "integrity": "sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "sunos"
- ],
- "engines": {
- "node": ">=12"
+ "apps/nextjs13-pagerouter": {
+ "version": "2.0.0",
+ "dependencies": {
+ "@washingtonpost/wpds-kitchen-sink": "2.0.0",
+ "@washingtonpost/wpds-ui-kit": "2.0.0",
+ "next": "13.5.6",
+ "react": "^18.2.0",
+ "react-dom": "^18.2.0"
}
},
- "apps/vite-v2-project/node_modules/esbuild-windows-32": {
- "version": "0.14.54",
- "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.54.tgz",
- "integrity": "sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==",
- "cpu": [
- "ia32"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">=12"
- }
+ "apps/nextjs13-pagerouter/node_modules/@next/env": {
+ "version": "13.5.6",
+ "license": "MIT"
},
- "apps/vite-v2-project/node_modules/esbuild-windows-64": {
- "version": "0.14.54",
- "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.54.tgz",
- "integrity": "sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==",
+ "apps/nextjs13-pagerouter/node_modules/@next/swc-darwin-x64": {
+ "version": "13.5.6",
"cpu": [
"x64"
],
- "dev": true,
+ "license": "MIT",
"optional": true,
"os": [
- "win32"
+ "darwin"
],
"engines": {
- "node": ">=12"
+ "node": ">= 10"
}
},
- "apps/vite-v2-project/node_modules/esbuild-windows-arm64": {
- "version": "0.14.54",
- "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.54.tgz",
- "integrity": "sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "win32"
- ],
+ "apps/nextjs13-pagerouter/node_modules/next": {
+ "version": "13.5.6",
+ "license": "MIT",
+ "dependencies": {
+ "@next/env": "13.5.6",
+ "@swc/helpers": "0.5.2",
+ "busboy": "1.6.0",
+ "caniuse-lite": "^1.0.30001406",
+ "postcss": "8.4.31",
+ "styled-jsx": "5.1.1",
+ "watchpack": "2.4.0"
+ },
+ "bin": {
+ "next": "dist/bin/next"
+ },
"engines": {
- "node": ">=12"
+ "node": ">=16.14.0"
+ },
+ "optionalDependencies": {
+ "@next/swc-darwin-arm64": "13.5.6",
+ "@next/swc-darwin-x64": "13.5.6",
+ "@next/swc-linux-arm64-gnu": "13.5.6",
+ "@next/swc-linux-arm64-musl": "13.5.6",
+ "@next/swc-linux-x64-gnu": "13.5.6",
+ "@next/swc-linux-x64-musl": "13.5.6",
+ "@next/swc-win32-arm64-msvc": "13.5.6",
+ "@next/swc-win32-ia32-msvc": "13.5.6",
+ "@next/swc-win32-x64-msvc": "13.5.6"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.1.0",
+ "react": "^18.2.0",
+ "react-dom": "^18.2.0",
+ "sass": "^1.3.0"
+ },
+ "peerDependenciesMeta": {
+ "@opentelemetry/api": {
+ "optional": true
+ },
+ "sass": {
+ "optional": true
+ }
}
},
- "apps/vite-v2-project/node_modules/picocolors": {
- "version": "1.0.0",
- "dev": true,
- "license": "ISC"
- },
- "apps/vite-v2-project/node_modules/postcss": {
- "version": "8.4.21",
- "dev": true,
+ "apps/nextjs13-pagerouter/node_modules/postcss": {
+ "version": "8.4.31",
"funding": [
{
"type": "opencollective",
@@ -592,11 +290,15 @@
{
"type": "tidelift",
"url": "https://tidelift.com/funding/github/npm/postcss"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
}
],
"license": "MIT",
"dependencies": {
- "nanoid": "^3.3.4",
+ "nanoid": "^3.3.6",
"picocolors": "^1.0.0",
"source-map-js": "^1.0.2"
},
@@ -604,112 +306,93 @@
"node": "^10 || ^12 || >=14"
}
},
- "apps/vite-v2-project/node_modules/react": {
- "version": "18.2.0",
- "license": "MIT",
+ "apps/nextjs14-approuter": {
+ "version": "2.0.0",
"dependencies": {
- "loose-envify": "^1.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
+ "@washingtonpost/wpds-kitchen-sink": "2.0.0",
+ "@washingtonpost/wpds-ui-kit": "2.0.0",
+ "next": "14.0.3",
+ "react": "^18.2.0",
+ "react-dom": "^18.2.0"
}
},
- "apps/vite-v2-project/node_modules/react-dom": {
- "version": "18.2.0",
- "license": "MIT",
+ "apps/nextjs14-pagerouter": {
+ "version": "2.0.0",
"dependencies": {
- "loose-envify": "^1.1.0",
- "scheduler": "^0.23.0"
- },
- "peerDependencies": {
- "react": "^18.2.0"
- }
- },
- "apps/vite-v2-project/node_modules/react-refresh": {
- "version": "0.13.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "@washingtonpost/wpds-kitchen-sink": "2.0.0",
+ "@washingtonpost/wpds-ui-kit": "2.0.0",
+ "next": "14.0.3",
+ "react": "^18.2.0",
+ "react-dom": "^18.2.0"
}
},
- "apps/vite-v2-project/node_modules/scheduler": {
- "version": "0.23.0",
- "license": "MIT",
+ "apps/vite-project": {
+ "version": "1.24.0",
+ "extraneous": true,
"dependencies": {
- "loose-envify": "^1.1.0"
+ "@washingtonpost/wpds-kitchen-sink": "1.24.0",
+ "@washingtonpost/wpds-ui-kit": "1.24.0",
+ "react": "^18.2.0",
+ "react-dom": "^18.2.0"
+ },
+ "devDependencies": {
+ "@types/react": "^18.0.27",
+ "@types/react-dom": "^18.0.10",
+ "@vitejs/plugin-react": "^3.1.0",
+ "vite": "^4.1.0"
}
},
- "apps/vite-v2-project/node_modules/vite": {
- "version": "2.9.15",
- "dev": true,
- "license": "MIT",
+ "apps/vite-v2-project": {
+ "version": "1.24.0",
+ "extraneous": true,
"dependencies": {
- "esbuild": "^0.14.27",
- "postcss": "^8.4.13",
- "resolve": "^1.22.0",
- "rollup": ">=2.59.0 <2.78.0"
- },
- "bin": {
- "vite": "bin/vite.js"
- },
- "engines": {
- "node": ">=12.2.0"
- },
- "optionalDependencies": {
- "fsevents": "~2.3.2"
- },
- "peerDependencies": {
- "less": "*",
- "sass": "*",
- "stylus": "*"
+ "@washingtonpost/wpds-kitchen-sink": "1.24.0",
+ "@washingtonpost/wpds-ui-kit": "1.24.0",
+ "react": "^18.0.0",
+ "react-dom": "^18.0.0"
},
- "peerDependenciesMeta": {
- "less": {
- "optional": true
- },
- "sass": {
- "optional": true
- },
- "stylus": {
- "optional": true
- }
+ "devDependencies": {
+ "@types/react": "^18.0.0",
+ "@types/react-dom": "^18.0.0",
+ "@vitejs/plugin-react": "^1.3.0",
+ "vite": "^2.9.15"
}
},
"build.washingtonpost.com": {
"name": "@washingtonpost/wpds-docs",
- "version": "1.17.0",
+ "version": "2.0.0",
"hasInstallScript": true,
"dependencies": {
"@babel/standalone": "^7.17.11",
- "@codesandbox/sandpack-react": "^2.0.27",
+ "@codesandbox/sandpack-react": "2.13.2",
"@docsearch/react": "^3.0.0",
+ "@mdx-js/react": "^3.0.1",
"@octokit/core": "^4.0.5",
"@radix-ui/react-accordion": "^1.0.0",
"@radix-ui/react-checkbox": "^1.0.0",
"@radix-ui/react-collapsible": "^1.0.0",
"@radix-ui/react-toggle-group": "^1.0.1",
"@stitches/react": "1.2.8",
- "@washingtonpost/site-favicons": "^0.1.3",
+ "@washingtonpost/front-end-utils": "0.5.17-alpha.1",
+ "@washingtonpost/site-favicons": "0.3.4-alpha.1",
+ "@washingtonpost/site-footer": "0.25.3-alpha.1",
"@washingtonpost/tachyons-css": "^1.8.0",
- "@washingtonpost/wpds-accordion": "1.17.0",
- "@washingtonpost/wpds-assets": "1.23.0",
- "@washingtonpost/wpds-kitchen-sink": "1.17.0",
- "@washingtonpost/wpds-tailwind-theme": "1.17.0",
- "@washingtonpost/wpds-tokens": "1.17.0",
- "@washingtonpost/wpds-ui-kit": "1.17.0",
+ "@washingtonpost/wpds-assets": "2.0.0",
+ "@washingtonpost/wpds-kitchen-sink": "2.0.0",
+ "@washingtonpost/wpds-tailwind-theme": "2.0.0",
+ "@washingtonpost/wpds-tokens": "2.0.0",
+ "@washingtonpost/wpds-ui-kit": "2.0.0",
"fuse.js": "^6.6.2",
"gray-matter": "^4.0.2",
"lz-string": "^1.4.4",
- "next": "^12.3.4",
- "next-mdx-remote": "4.1.0",
- "next-seo": "5.15.0",
+ "next": "14.0.3",
+ "next-mdx-remote": "^4.4.1",
"next-themes": "0.2.1",
"param-case": "^3.0.4",
"pascal-case": "^3.1.2",
- "react": "^17.0.2",
+ "react": "^18.2.0",
"react-docgen": "^5.4.0",
- "react-dom": "^17.0.2",
+ "react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"react-hook-form": "^7.41.0",
"react-phone-number-input": "^3.2.13",
@@ -718,17 +401,19 @@
"remark-gfm": "^3.0.1",
"remark-mdx-code-meta": "^1.0.0",
"stringify-object": "^4.0.1",
- "typescript": "4.5.5"
+ "typescript": "4.5.5",
+ "wcag-contrast": "3.0.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.1.0",
"@types/lz-string": "^1.3.34",
"@types/node": "^17.0.21",
- "@types/react": "^17.0.38",
+ "@types/react": "18.2.39",
+ "@types/react-dom": "18.2.17",
"autoprefixer": "^10.4.13",
"babel-plugin-extract-react-types": "^0.1.14",
- "eslint": "8.6.0",
- "eslint-config-next": "^12.2.4",
+ "eslint": "8.9.0",
+ "eslint-config-next": "^14.0.3",
"extract-react-types": "^0.30.2",
"glob": "^7.2.0",
"husky": "^7.0.0",
@@ -739,413 +424,28 @@
"tailwindcss": "^3.3.2"
}
},
- "build.washingtonpost.com/node_modules/@codesandbox/sandpack-client": {
- "version": "1.3.2",
- "license": "Apache-2.0",
- "dependencies": {
- "codesandbox-import-utils": "^1.2.3",
- "lodash.isequal": "^4.5.0"
- }
- },
- "build.washingtonpost.com/node_modules/@codesandbox/sandpack-react": {
- "version": "1.3.2",
- "license": "Apache-2.0",
- "dependencies": {
- "@code-hike/classer": "^0.0.0-aa6efee",
- "@codemirror/closebrackets": "^0.19.0",
- "@codemirror/commands": "^0.19.6",
- "@codemirror/comment": "^0.19.0",
- "@codemirror/gutter": "^0.19.9",
- "@codemirror/highlight": "^0.19.6",
- "@codemirror/history": "^0.19.0",
- "@codemirror/lang-css": "^0.19.3",
- "@codemirror/lang-html": "^0.19.4",
- "@codemirror/lang-javascript": "^0.19.3",
- "@codemirror/lang-markdown": "^0.19.3",
- "@codemirror/language": "^0.19.7",
- "@codemirror/matchbrackets": "^0.19.3",
- "@codemirror/state": "^0.19.6",
- "@codemirror/view": "^0.19.32",
- "@codesandbox/sandpack-client": "^1.3.2",
- "@react-hook/intersection-observer": "^3.1.1",
- "@stitches/core": "^1.2.6",
- "codesandbox-import-util-types": "^2.2.3",
- "lodash.isequal": "^4.5.0",
- "lz-string": "^1.4.4",
- "react-devtools-inline": "4.4.0",
- "react-is": "^17.0.2"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17 || ^18",
- "react-dom": "^16.8.0 || ^17 || ^18"
- }
- },
- "build.washingtonpost.com/node_modules/@next/eslint-plugin-next": {
- "version": "12.2.4",
+ "build.washingtonpost.com/node_modules/@types/node": {
+ "version": "17.0.45",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "glob": "7.1.7"
- }
+ "license": "MIT"
},
- "build.washingtonpost.com/node_modules/@next/eslint-plugin-next/node_modules/glob": {
- "version": "7.1.7",
+ "build.washingtonpost.com/node_modules/eslint": {
+ "version": "8.9.0",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.0.4",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
- },
- "engines": {
- "node": "*"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "build.washingtonpost.com/node_modules/@radix-ui/react-accordion": {
- "version": "1.0.1",
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/primitive": "1.0.0",
- "@radix-ui/react-collapsible": "1.0.1",
- "@radix-ui/react-collection": "1.0.1",
- "@radix-ui/react-compose-refs": "1.0.0",
- "@radix-ui/react-context": "1.0.0",
- "@radix-ui/react-id": "1.0.0",
- "@radix-ui/react-primitive": "1.0.1",
- "@radix-ui/react-use-controllable-state": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "build.washingtonpost.com/node_modules/@radix-ui/react-checkbox": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/primitive": "1.0.0",
- "@radix-ui/react-compose-refs": "1.0.0",
- "@radix-ui/react-context": "1.0.0",
- "@radix-ui/react-presence": "1.0.0",
- "@radix-ui/react-primitive": "1.0.1",
- "@radix-ui/react-use-controllable-state": "1.0.0",
- "@radix-ui/react-use-previous": "1.0.0",
- "@radix-ui/react-use-size": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "build.washingtonpost.com/node_modules/@radix-ui/react-collapsible": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/primitive": "1.0.0",
- "@radix-ui/react-compose-refs": "1.0.0",
- "@radix-ui/react-context": "1.0.0",
- "@radix-ui/react-id": "1.0.0",
- "@radix-ui/react-presence": "1.0.0",
- "@radix-ui/react-primitive": "1.0.1",
- "@radix-ui/react-use-controllable-state": "1.0.0",
- "@radix-ui/react-use-layout-effect": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "build.washingtonpost.com/node_modules/@radix-ui/react-collection": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-compose-refs": "1.0.0",
- "@radix-ui/react-context": "1.0.0",
- "@radix-ui/react-primitive": "1.0.1",
- "@radix-ui/react-slot": "1.0.1"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "build.washingtonpost.com/node_modules/@radix-ui/react-primitive": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-slot": "1.0.1"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "build.washingtonpost.com/node_modules/@radix-ui/react-use-size": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-use-layout-effect": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "build.washingtonpost.com/node_modules/@typescript-eslint/parser": {
- "version": "5.33.0",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "@typescript-eslint/scope-manager": "5.33.0",
- "@typescript-eslint/types": "5.33.0",
- "@typescript-eslint/typescript-estree": "5.33.0",
- "debug": "^4.3.4"
- },
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
- }
- },
- "build.washingtonpost.com/node_modules/@typescript-eslint/scope-manager": {
- "version": "5.33.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@typescript-eslint/types": "5.33.0",
- "@typescript-eslint/visitor-keys": "5.33.0"
- },
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- }
- },
- "build.washingtonpost.com/node_modules/@typescript-eslint/types": {
- "version": "5.33.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- }
- },
- "build.washingtonpost.com/node_modules/@typescript-eslint/typescript-estree": {
- "version": "5.33.0",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "@typescript-eslint/types": "5.33.0",
- "@typescript-eslint/visitor-keys": "5.33.0",
- "debug": "^4.3.4",
- "globby": "^11.1.0",
- "is-glob": "^4.0.3",
- "semver": "^7.3.7",
- "tsutils": "^3.21.0"
- },
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
- }
- },
- "build.washingtonpost.com/node_modules/@typescript-eslint/visitor-keys": {
- "version": "5.33.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@typescript-eslint/types": "5.33.0",
- "eslint-visitor-keys": "^3.3.0"
- },
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- }
- },
- "build.washingtonpost.com/node_modules/@washingtonpost/tachyons-css": {
- "version": "1.6.0",
- "dependencies": {
- "@washingtonpost/color-tokens": "latest",
- "@washingtonpost/icon-tokens": "latest",
- "@washingtonpost/logo-tokens": "latest",
- "@washingtonpost/motion-tokens": "latest",
- "@washingtonpost/shadow-tokens": "latest",
- "@washingtonpost/spacing-tokens": "latest",
- "@washingtonpost/typography-tokens": "latest"
- },
- "peerDependencies": {
- "@washingtonpost/color-tokens": "latest",
- "@washingtonpost/icon-tokens": "latest",
- "@washingtonpost/logo-tokens": "latest",
- "@washingtonpost/motion-tokens": "latest",
- "@washingtonpost/shadow-tokens": "latest",
- "@washingtonpost/spacing-tokens": "latest",
- "@washingtonpost/typography-tokens": "latest"
- }
- },
- "build.washingtonpost.com/node_modules/@washingtonpost/wpds-assets": {
- "version": "1.23.0",
- "resolved": "https://registry.npmjs.org/@washingtonpost/wpds-assets/-/wpds-assets-1.23.0.tgz",
- "integrity": "sha512-aNbhK7T8SQ12co2W7lmKh57qcaCTLCWGGozvMagu0a7szUXuTFncHb88DpzLYO/cliT/T3Ku6aJsojxxjqvM9g==",
- "dependencies": {
- "react": "^16.0.1 || ^17.0.2",
- "react-dom": "^16.0.1 || ^17.0.2"
- },
- "peerDependencies": {
- "react": "^16.0.1 || ^17.0.2",
- "react-dom": "^16.0.1 || ^17.0.2"
- }
- },
- "build.washingtonpost.com/node_modules/ansi-styles": {
- "version": "4.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "build.washingtonpost.com/node_modules/autoprefixer": {
- "version": "10.4.14",
- "dev": true,
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/autoprefixer"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "browserslist": "^4.21.5",
- "caniuse-lite": "^1.0.30001464",
- "fraction.js": "^4.2.0",
- "normalize-range": "^0.1.2",
- "picocolors": "^1.0.0",
- "postcss-value-parser": "^4.2.0"
- },
- "bin": {
- "autoprefixer": "bin/autoprefixer"
- },
- "engines": {
- "node": "^10 || ^12 || >=14"
- },
- "peerDependencies": {
- "postcss": "^8.1.0"
- }
- },
- "build.washingtonpost.com/node_modules/caniuse-lite": {
- "version": "1.0.30001495",
- "dev": true,
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "license": "CC-BY-4.0"
- },
- "build.washingtonpost.com/node_modules/chalk": {
- "version": "4.1.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "build.washingtonpost.com/node_modules/debug": {
- "version": "4.3.4",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ms": "2.1.2"
- },
- "engines": {
- "node": ">=6.0"
- },
- "peerDependenciesMeta": {
- "supports-color": {
- "optional": true
- }
- }
- },
- "build.washingtonpost.com/node_modules/eslint": {
- "version": "8.6.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@eslint/eslintrc": "^1.0.5",
+ "@eslint/eslintrc": "^1.1.0",
"@humanwhocodes/config-array": "^0.9.2",
"ajv": "^6.10.0",
"chalk": "^4.0.0",
"cross-spawn": "^7.0.2",
"debug": "^4.3.2",
"doctrine": "^3.0.0",
- "enquirer": "^2.3.5",
"escape-string-regexp": "^4.0.0",
- "eslint-scope": "^7.1.0",
+ "eslint-scope": "^7.1.1",
"eslint-utils": "^3.0.0",
- "eslint-visitor-keys": "^3.1.0",
- "espree": "^9.3.0",
+ "eslint-visitor-keys": "^3.3.0",
+ "espree": "^9.3.1",
"esquery": "^1.4.0",
"esutils": "^2.0.2",
"fast-deep-equal": "^3.1.3",
@@ -1153,7 +453,7 @@
"functional-red-black-tree": "^1.0.1",
"glob-parent": "^6.0.1",
"globals": "^13.6.0",
- "ignore": "^4.0.6",
+ "ignore": "^5.2.0",
"import-fresh": "^3.0.0",
"imurmurhash": "^0.1.4",
"is-glob": "^4.0.0",
@@ -1164,9 +464,7 @@
"minimatch": "^3.0.4",
"natural-compare": "^1.4.0",
"optionator": "^0.9.1",
- "progress": "^2.0.0",
"regexpp": "^3.2.0",
- "semver": "^7.2.1",
"strip-ansi": "^6.0.1",
"strip-json-comments": "^3.1.0",
"text-table": "^0.2.0",
@@ -1182,287 +480,172 @@
"url": "https://opencollective.com/eslint"
}
},
- "build.washingtonpost.com/node_modules/eslint-config-next": {
- "version": "12.2.4",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@next/eslint-plugin-next": "12.2.4",
- "@rushstack/eslint-patch": "^1.1.3",
- "@typescript-eslint/parser": "^5.21.0",
- "eslint-import-resolver-node": "^0.3.6",
- "eslint-import-resolver-typescript": "^2.7.1",
- "eslint-plugin-import": "^2.26.0",
- "eslint-plugin-jsx-a11y": "^6.5.1",
- "eslint-plugin-react": "^7.29.4",
- "eslint-plugin-react-hooks": "^4.5.0"
- },
- "peerDependencies": {
- "eslint": "^7.23.0 || ^8.0.0",
- "typescript": ">=3.3.1"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
- }
- },
- "build.washingtonpost.com/node_modules/eslint-scope": {
- "version": "7.1.1",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "esrecurse": "^4.3.0",
- "estraverse": "^5.2.0"
- },
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- }
- },
- "build.washingtonpost.com/node_modules/eslint-visitor-keys": {
- "version": "3.3.0",
- "dev": true,
- "license": "Apache-2.0",
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- }
- },
- "build.washingtonpost.com/node_modules/globals": {
- "version": "13.17.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "type-fest": "^0.20.2"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "build.washingtonpost.com/node_modules/has-flag": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "build.washingtonpost.com/node_modules/ignore": {
- "version": "4.0.6",
+ "node_modules/@aashutoshrathi/word-wrap": {
+ "version": "1.2.6",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">= 4"
+ "node": ">=0.10.0"
}
},
- "build.washingtonpost.com/node_modules/ms": {
- "version": "2.1.2",
+ "node_modules/@adobe/css-tools": {
+ "version": "4.3.3",
"dev": true,
"license": "MIT"
},
- "build.washingtonpost.com/node_modules/next-seo": {
- "version": "5.15.0",
- "license": "MIT",
- "peerDependencies": {
- "next": "^8.1.1-canary.54 || >=9.0.0",
- "react": ">=16.0.0",
- "react-dom": ">=16.0.0"
- }
- },
- "build.washingtonpost.com/node_modules/next-themes": {
- "version": "0.2.1",
- "license": "MIT",
- "peerDependencies": {
- "next": "*",
- "react": "*",
- "react-dom": "*"
- }
- },
- "build.washingtonpost.com/node_modules/picocolors": {
- "version": "1.0.0",
- "dev": true,
- "license": "ISC"
- },
- "build.washingtonpost.com/node_modules/postcss": {
- "version": "8.4.24",
- "dev": true,
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/postcss"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
+ "node_modules/@algolia/autocomplete-core": {
+ "version": "1.9.3",
"license": "MIT",
"dependencies": {
- "nanoid": "^3.3.6",
- "picocolors": "^1.0.0",
- "source-map-js": "^1.0.2"
- },
- "engines": {
- "node": "^10 || ^12 || >=14"
- }
- },
- "build.washingtonpost.com/node_modules/semver": {
- "version": "7.3.7",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
+ "@algolia/autocomplete-plugin-algolia-insights": "1.9.3",
+ "@algolia/autocomplete-shared": "1.9.3"
}
},
- "build.washingtonpost.com/node_modules/supports-color": {
- "version": "7.2.0",
- "dev": true,
+ "node_modules/@algolia/autocomplete-plugin-algolia-insights": {
+ "version": "1.9.3",
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
+ "@algolia/autocomplete-shared": "1.9.3"
},
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@adobe/css-tools": {
- "version": "4.2.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@algolia/autocomplete-core": {
- "version": "1.7.1",
- "license": "MIT",
- "dependencies": {
- "@algolia/autocomplete-shared": "1.7.1"
+ "peerDependencies": {
+ "search-insights": ">= 1 < 3"
}
},
"node_modules/@algolia/autocomplete-preset-algolia": {
- "version": "1.7.1",
+ "version": "1.9.3",
"license": "MIT",
"dependencies": {
- "@algolia/autocomplete-shared": "1.7.1"
+ "@algolia/autocomplete-shared": "1.9.3"
},
"peerDependencies": {
- "@algolia/client-search": "^4.9.1",
- "algoliasearch": "^4.9.1"
+ "@algolia/client-search": ">= 4.9.1 < 6",
+ "algoliasearch": ">= 4.9.1 < 6"
}
},
"node_modules/@algolia/autocomplete-shared": {
- "version": "1.7.1",
- "license": "MIT"
+ "version": "1.9.3",
+ "license": "MIT",
+ "peerDependencies": {
+ "@algolia/client-search": ">= 4.9.1 < 6",
+ "algoliasearch": ">= 4.9.1 < 6"
+ }
},
"node_modules/@algolia/cache-browser-local-storage": {
- "version": "4.14.1",
+ "version": "4.23.2",
"license": "MIT",
"dependencies": {
- "@algolia/cache-common": "4.14.1"
+ "@algolia/cache-common": "4.23.2"
}
},
"node_modules/@algolia/cache-common": {
- "version": "4.14.1",
+ "version": "4.23.2",
"license": "MIT"
},
"node_modules/@algolia/cache-in-memory": {
- "version": "4.14.1",
+ "version": "4.23.2",
"license": "MIT",
"dependencies": {
- "@algolia/cache-common": "4.14.1"
+ "@algolia/cache-common": "4.23.2"
}
},
"node_modules/@algolia/client-account": {
- "version": "4.14.1",
+ "version": "4.23.2",
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "4.14.1",
- "@algolia/client-search": "4.14.1",
- "@algolia/transporter": "4.14.1"
+ "@algolia/client-common": "4.23.2",
+ "@algolia/client-search": "4.23.2",
+ "@algolia/transporter": "4.23.2"
}
},
"node_modules/@algolia/client-analytics": {
- "version": "4.14.1",
+ "version": "4.23.2",
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "4.14.1",
- "@algolia/client-search": "4.14.1",
- "@algolia/requester-common": "4.14.1",
- "@algolia/transporter": "4.14.1"
+ "@algolia/client-common": "4.23.2",
+ "@algolia/client-search": "4.23.2",
+ "@algolia/requester-common": "4.23.2",
+ "@algolia/transporter": "4.23.2"
}
},
"node_modules/@algolia/client-common": {
- "version": "4.14.1",
+ "version": "4.23.2",
"license": "MIT",
"dependencies": {
- "@algolia/requester-common": "4.14.1",
- "@algolia/transporter": "4.14.1"
+ "@algolia/requester-common": "4.23.2",
+ "@algolia/transporter": "4.23.2"
}
},
"node_modules/@algolia/client-personalization": {
- "version": "4.14.1",
+ "version": "4.23.2",
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "4.14.1",
- "@algolia/requester-common": "4.14.1",
- "@algolia/transporter": "4.14.1"
+ "@algolia/client-common": "4.23.2",
+ "@algolia/requester-common": "4.23.2",
+ "@algolia/transporter": "4.23.2"
}
},
"node_modules/@algolia/client-search": {
- "version": "4.14.1",
+ "version": "4.23.2",
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "4.14.1",
- "@algolia/requester-common": "4.14.1",
- "@algolia/transporter": "4.14.1"
+ "@algolia/client-common": "4.23.2",
+ "@algolia/requester-common": "4.23.2",
+ "@algolia/transporter": "4.23.2"
}
},
"node_modules/@algolia/logger-common": {
- "version": "4.14.1",
+ "version": "4.23.2",
"license": "MIT"
},
"node_modules/@algolia/logger-console": {
- "version": "4.14.1",
+ "version": "4.23.2",
+ "license": "MIT",
+ "dependencies": {
+ "@algolia/logger-common": "4.23.2"
+ }
+ },
+ "node_modules/@algolia/recommend": {
+ "version": "4.23.2",
"license": "MIT",
"dependencies": {
- "@algolia/logger-common": "4.14.1"
+ "@algolia/cache-browser-local-storage": "4.23.2",
+ "@algolia/cache-common": "4.23.2",
+ "@algolia/cache-in-memory": "4.23.2",
+ "@algolia/client-common": "4.23.2",
+ "@algolia/client-search": "4.23.2",
+ "@algolia/logger-common": "4.23.2",
+ "@algolia/logger-console": "4.23.2",
+ "@algolia/requester-browser-xhr": "4.23.2",
+ "@algolia/requester-common": "4.23.2",
+ "@algolia/requester-node-http": "4.23.2",
+ "@algolia/transporter": "4.23.2"
}
},
"node_modules/@algolia/requester-browser-xhr": {
- "version": "4.14.1",
+ "version": "4.23.2",
"license": "MIT",
"dependencies": {
- "@algolia/requester-common": "4.14.1"
+ "@algolia/requester-common": "4.23.2"
}
},
"node_modules/@algolia/requester-common": {
- "version": "4.14.1",
+ "version": "4.23.2",
"license": "MIT"
},
"node_modules/@algolia/requester-node-http": {
- "version": "4.14.1",
+ "version": "4.23.2",
"license": "MIT",
"dependencies": {
- "@algolia/requester-common": "4.14.1"
+ "@algolia/requester-common": "4.23.2"
}
},
"node_modules/@algolia/transporter": {
- "version": "4.14.1",
+ "version": "4.23.2",
"license": "MIT",
"dependencies": {
- "@algolia/cache-common": "4.14.1",
- "@algolia/logger-common": "4.14.1",
- "@algolia/requester-common": "4.14.1"
+ "@algolia/cache-common": "4.23.2",
+ "@algolia/logger-common": "4.23.2",
+ "@algolia/requester-common": "4.23.2"
}
},
"node_modules/@alloc/quick-lru": {
@@ -1477,71 +660,72 @@
}
},
"node_modules/@ampproject/remapping": {
- "version": "2.2.0",
+ "version": "2.3.0",
"license": "Apache-2.0",
"dependencies": {
- "@jridgewell/gen-mapping": "^0.1.0",
- "@jridgewell/trace-mapping": "^0.3.9"
+ "@jridgewell/gen-mapping": "^0.3.5",
+ "@jridgewell/trace-mapping": "^0.3.24"
},
"engines": {
"node": ">=6.0.0"
}
},
- "node_modules/@ampproject/remapping/node_modules/@jridgewell/gen-mapping": {
- "version": "0.1.1",
+ "node_modules/@aparna036/babel-explode-module": {
+ "version": "2.0.1",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@jridgewell/set-array": "^1.0.0",
- "@jridgewell/sourcemap-codec": "^1.4.10"
- },
- "engines": {
- "node": ">=6.0.0"
+ "@babel/types": "^7.0.0-beta.56"
}
},
- "node_modules/@aparna036/babel-explode-module": {
- "version": "2.0.1",
+ "node_modules/@aw-web-design/x-default-browser": {
+ "version": "1.4.126",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/types": "^7.0.0-beta.56"
+ "default-browser-id": "3.0.0"
+ },
+ "bin": {
+ "x-default-browser": "bin/x-default-browser.js"
}
},
"node_modules/@babel/code-frame": {
- "version": "7.18.6",
+ "version": "7.24.2",
"license": "MIT",
"dependencies": {
- "@babel/highlight": "^7.18.6"
+ "@babel/highlight": "^7.24.2",
+ "picocolors": "^1.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/compat-data": {
- "version": "7.21.0",
+ "version": "7.24.4",
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/core": {
- "version": "7.21.3",
+ "version": "7.24.4",
"license": "MIT",
"dependencies": {
"@ampproject/remapping": "^2.2.0",
- "@babel/code-frame": "^7.18.6",
- "@babel/generator": "^7.21.3",
- "@babel/helper-compilation-targets": "^7.20.7",
- "@babel/helper-module-transforms": "^7.21.2",
- "@babel/helpers": "^7.21.0",
- "@babel/parser": "^7.21.3",
- "@babel/template": "^7.20.7",
- "@babel/traverse": "^7.21.3",
- "@babel/types": "^7.21.3",
- "convert-source-map": "^1.7.0",
+ "@babel/code-frame": "^7.24.2",
+ "@babel/generator": "^7.24.4",
+ "@babel/helper-compilation-targets": "^7.23.6",
+ "@babel/helper-module-transforms": "^7.23.3",
+ "@babel/helpers": "^7.24.4",
+ "@babel/parser": "^7.24.4",
+ "@babel/template": "^7.24.0",
+ "@babel/traverse": "^7.24.1",
+ "@babel/types": "^7.24.0",
+ "convert-source-map": "^2.0.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.2",
- "json5": "^2.2.2",
- "semver": "^6.3.0"
+ "json5": "^2.2.3",
+ "semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
@@ -1552,29 +736,37 @@
}
},
"node_modules/@babel/eslint-parser": {
- "version": "7.17.0",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "eslint-scope": "^5.1.1",
+ "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1",
"eslint-visitor-keys": "^2.1.0",
- "semver": "^6.3.0"
+ "semver": "^6.3.1"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || >=14.0.0"
},
"peerDependencies": {
- "@babel/core": ">=7.11.0",
+ "@babel/core": "^7.11.0",
"eslint": "^7.5.0 || ^8.0.0"
}
},
+ "node_modules/@babel/eslint-parser/node_modules/eslint-visitor-keys": {
+ "version": "2.1.0",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=10"
+ }
+ },
"node_modules/@babel/generator": {
- "version": "7.21.3",
+ "version": "7.24.4",
"license": "MIT",
"dependencies": {
- "@babel/types": "^7.21.3",
- "@jridgewell/gen-mapping": "^0.3.2",
- "@jridgewell/trace-mapping": "^0.3.17",
+ "@babel/types": "^7.24.0",
+ "@jridgewell/gen-mapping": "^0.3.5",
+ "@jridgewell/trace-mapping": "^0.3.25",
"jsesc": "^2.5.1"
},
"engines": {
@@ -1582,69 +774,55 @@
}
},
"node_modules/@babel/helper-annotate-as-pure": {
- "version": "7.18.6",
+ "version": "7.22.5",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/types": "^7.18.6"
+ "@babel/types": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-builder-binary-assignment-operator-visitor": {
- "version": "7.18.9",
+ "version": "7.22.15",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-explode-assignable-expression": "^7.18.6",
- "@babel/types": "^7.18.9"
+ "@babel/types": "^7.22.15"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-compilation-targets": {
- "version": "7.20.7",
+ "version": "7.23.6",
"license": "MIT",
"dependencies": {
- "@babel/compat-data": "^7.20.5",
- "@babel/helper-validator-option": "^7.18.6",
- "browserslist": "^4.21.3",
+ "@babel/compat-data": "^7.23.5",
+ "@babel/helper-validator-option": "^7.23.5",
+ "browserslist": "^4.22.2",
"lru-cache": "^5.1.1",
- "semver": "^6.3.0"
+ "semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": {
- "version": "5.1.1",
- "license": "ISC",
- "dependencies": {
- "yallist": "^3.0.2"
}
},
- "node_modules/@babel/helper-compilation-targets/node_modules/yallist": {
- "version": "3.1.1",
- "license": "ISC"
- },
"node_modules/@babel/helper-create-class-features-plugin": {
- "version": "7.21.0",
+ "version": "7.24.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "@babel/helper-environment-visitor": "^7.18.9",
- "@babel/helper-function-name": "^7.21.0",
- "@babel/helper-member-expression-to-functions": "^7.21.0",
- "@babel/helper-optimise-call-expression": "^7.18.6",
- "@babel/helper-replace-supers": "^7.20.7",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0",
- "@babel/helper-split-export-declaration": "^7.18.6"
+ "@babel/helper-annotate-as-pure": "^7.22.5",
+ "@babel/helper-environment-visitor": "^7.22.20",
+ "@babel/helper-function-name": "^7.23.0",
+ "@babel/helper-member-expression-to-functions": "^7.23.0",
+ "@babel/helper-optimise-call-expression": "^7.22.5",
+ "@babel/helper-replace-supers": "^7.24.1",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5",
+ "@babel/helper-split-export-declaration": "^7.22.6",
+ "semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
@@ -1654,12 +832,13 @@
}
},
"node_modules/@babel/helper-create-regexp-features-plugin": {
- "version": "7.21.0",
+ "version": "7.22.15",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "regexpu-core": "^5.3.1"
+ "@babel/helper-annotate-as-pure": "^7.22.5",
+ "regexpu-core": "^5.3.1",
+ "semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
@@ -1669,111 +848,99 @@
}
},
"node_modules/@babel/helper-define-polyfill-provider": {
- "version": "0.3.3",
+ "version": "0.6.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-compilation-targets": "^7.17.7",
- "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/helper-compilation-targets": "^7.22.6",
+ "@babel/helper-plugin-utils": "^7.22.5",
"debug": "^4.1.1",
"lodash.debounce": "^4.0.8",
- "resolve": "^1.14.2",
- "semver": "^6.1.2"
+ "resolve": "^1.14.2"
},
"peerDependencies": {
- "@babel/core": "^7.4.0-0"
+ "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
}
},
"node_modules/@babel/helper-environment-visitor": {
- "version": "7.18.9",
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-explode-assignable-expression": {
- "version": "7.18.6",
- "dev": true,
+ "version": "7.22.20",
"license": "MIT",
- "dependencies": {
- "@babel/types": "^7.18.6"
- },
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-function-name": {
- "version": "7.21.0",
+ "version": "7.23.0",
"license": "MIT",
"dependencies": {
- "@babel/template": "^7.20.7",
- "@babel/types": "^7.21.0"
+ "@babel/template": "^7.22.15",
+ "@babel/types": "^7.23.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-hoist-variables": {
- "version": "7.18.6",
+ "version": "7.22.5",
"license": "MIT",
"dependencies": {
- "@babel/types": "^7.18.6"
+ "@babel/types": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-member-expression-to-functions": {
- "version": "7.21.0",
+ "version": "7.23.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/types": "^7.21.0"
+ "@babel/types": "^7.23.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-imports": {
- "version": "7.18.6",
+ "version": "7.24.3",
"license": "MIT",
"dependencies": {
- "@babel/types": "^7.18.6"
+ "@babel/types": "^7.24.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-transforms": {
- "version": "7.21.2",
+ "version": "7.23.3",
"license": "MIT",
"dependencies": {
- "@babel/helper-environment-visitor": "^7.18.9",
- "@babel/helper-module-imports": "^7.18.6",
- "@babel/helper-simple-access": "^7.20.2",
- "@babel/helper-split-export-declaration": "^7.18.6",
- "@babel/helper-validator-identifier": "^7.19.1",
- "@babel/template": "^7.20.7",
- "@babel/traverse": "^7.21.2",
- "@babel/types": "^7.21.2"
+ "@babel/helper-environment-visitor": "^7.22.20",
+ "@babel/helper-module-imports": "^7.22.15",
+ "@babel/helper-simple-access": "^7.22.5",
+ "@babel/helper-split-export-declaration": "^7.22.6",
+ "@babel/helper-validator-identifier": "^7.22.20"
},
"engines": {
"node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
}
},
"node_modules/@babel/helper-optimise-call-expression": {
- "version": "7.18.6",
+ "version": "7.22.5",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/types": "^7.18.6"
+ "@babel/types": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-plugin-utils": {
- "version": "7.20.2",
+ "version": "7.24.0",
"dev": true,
"license": "MIT",
"engines": {
@@ -1781,14 +948,13 @@
}
},
"node_modules/@babel/helper-remap-async-to-generator": {
- "version": "7.18.9",
+ "version": "7.22.20",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "@babel/helper-environment-visitor": "^7.18.9",
- "@babel/helper-wrap-function": "^7.18.9",
- "@babel/types": "^7.18.9"
+ "@babel/helper-annotate-as-pure": "^7.22.5",
+ "@babel/helper-environment-visitor": "^7.22.20",
+ "@babel/helper-wrap-function": "^7.22.20"
},
"engines": {
"node": ">=6.9.0"
@@ -1798,396 +964,242 @@
}
},
"node_modules/@babel/helper-replace-supers": {
- "version": "7.20.7",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-environment-visitor": "^7.18.9",
- "@babel/helper-member-expression-to-functions": "^7.20.7",
- "@babel/helper-optimise-call-expression": "^7.18.6",
- "@babel/template": "^7.20.7",
- "@babel/traverse": "^7.20.7",
- "@babel/types": "^7.20.7"
+ "@babel/helper-environment-visitor": "^7.22.20",
+ "@babel/helper-member-expression-to-functions": "^7.23.0",
+ "@babel/helper-optimise-call-expression": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
}
},
"node_modules/@babel/helper-simple-access": {
- "version": "7.20.2",
+ "version": "7.22.5",
"license": "MIT",
"dependencies": {
- "@babel/types": "^7.20.2"
+ "@babel/types": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-skip-transparent-expression-wrappers": {
- "version": "7.20.0",
+ "version": "7.22.5",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/types": "^7.20.0"
+ "@babel/types": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-split-export-declaration": {
- "version": "7.18.6",
+ "version": "7.22.6",
"license": "MIT",
"dependencies": {
- "@babel/types": "^7.18.6"
+ "@babel/types": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-string-parser": {
- "version": "7.19.4",
+ "version": "7.24.1",
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
- "version": "7.19.1",
+ "version": "7.22.20",
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-option": {
- "version": "7.21.0",
+ "version": "7.23.5",
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-wrap-function": {
- "version": "7.20.5",
+ "version": "7.22.20",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-function-name": "^7.19.0",
- "@babel/template": "^7.18.10",
- "@babel/traverse": "^7.20.5",
- "@babel/types": "^7.20.5"
+ "@babel/helper-function-name": "^7.22.5",
+ "@babel/template": "^7.22.15",
+ "@babel/types": "^7.22.19"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helpers": {
- "version": "7.21.0",
+ "version": "7.24.4",
"license": "MIT",
"dependencies": {
- "@babel/template": "^7.20.7",
- "@babel/traverse": "^7.21.0",
- "@babel/types": "^7.21.0"
+ "@babel/template": "^7.24.0",
+ "@babel/traverse": "^7.24.1",
+ "@babel/types": "^7.24.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/highlight": {
- "version": "7.18.6",
+ "version": "7.24.2",
"license": "MIT",
"dependencies": {
- "@babel/helper-validator-identifier": "^7.18.6",
- "chalk": "^2.0.0",
- "js-tokens": "^4.0.0"
+ "@babel/helper-validator-identifier": "^7.22.20",
+ "chalk": "^2.4.2",
+ "js-tokens": "^4.0.0",
+ "picocolors": "^1.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
- "node_modules/@babel/parser": {
- "version": "7.21.3",
+ "node_modules/@babel/highlight/node_modules/ansi-styles": {
+ "version": "3.2.1",
"license": "MIT",
- "bin": {
- "parser": "bin/babel-parser.js"
+ "dependencies": {
+ "color-convert": "^1.9.0"
},
"engines": {
- "node": ">=6.0.0"
+ "node": ">=4"
}
},
- "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
- "version": "7.18.6",
- "dev": true,
+ "node_modules/@babel/highlight/node_modules/chalk": {
+ "version": "2.4.2",
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
},
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
+ "node": ">=4"
}
},
- "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": {
- "version": "7.20.7",
- "dev": true,
+ "node_modules/@babel/highlight/node_modules/color-convert": {
+ "version": "1.9.3",
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0",
- "@babel/plugin-proposal-optional-chaining": "^7.20.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.13.0"
+ "color-name": "1.1.3"
}
},
- "node_modules/@babel/plugin-proposal-async-generator-functions": {
- "version": "7.20.7",
- "dev": true,
+ "node_modules/@babel/highlight/node_modules/color-name": {
+ "version": "1.1.3",
+ "license": "MIT"
+ },
+ "node_modules/@babel/highlight/node_modules/escape-string-regexp": {
+ "version": "1.0.5",
"license": "MIT",
- "dependencies": {
- "@babel/helper-environment-visitor": "^7.18.9",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-remap-async-to-generator": "^7.18.9",
- "@babel/plugin-syntax-async-generators": "^7.8.4"
- },
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-proposal-class-properties": {
- "version": "7.18.6",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-create-class-features-plugin": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-proposal-class-static-block": {
- "version": "7.21.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-create-class-features-plugin": "^7.21.0",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/plugin-syntax-class-static-block": "^7.14.5"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.12.0"
- }
- },
- "node_modules/@babel/plugin-proposal-decorators": {
- "version": "7.21.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-create-class-features-plugin": "^7.21.0",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-replace-supers": "^7.20.7",
- "@babel/helper-split-export-declaration": "^7.18.6",
- "@babel/plugin-syntax-decorators": "^7.21.0"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-proposal-dynamic-import": {
- "version": "7.18.6",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/plugin-syntax-dynamic-import": "^7.8.3"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-proposal-export-default-from": {
- "version": "7.18.10",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.18.9",
- "@babel/plugin-syntax-export-default-from": "^7.18.6"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-proposal-export-namespace-from": {
- "version": "7.18.9",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.18.9",
- "@babel/plugin-syntax-export-namespace-from": "^7.8.3"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-proposal-json-strings": {
- "version": "7.18.6",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/plugin-syntax-json-strings": "^7.8.3"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node": ">=0.8.0"
}
},
- "node_modules/@babel/plugin-proposal-logical-assignment-operators": {
- "version": "7.20.7",
- "dev": true,
+ "node_modules/@babel/highlight/node_modules/has-flag": {
+ "version": "3.0.0",
"license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
- },
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node": ">=4"
}
},
- "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": {
- "version": "7.18.6",
- "dev": true,
+ "node_modules/@babel/highlight/node_modules/supports-color": {
+ "version": "5.5.0",
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3"
+ "has-flag": "^3.0.0"
},
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node": ">=4"
}
},
- "node_modules/@babel/plugin-proposal-numeric-separator": {
- "version": "7.18.6",
- "dev": true,
+ "node_modules/@babel/parser": {
+ "version": "7.24.4",
"license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/plugin-syntax-numeric-separator": "^7.10.4"
+ "bin": {
+ "parser": "bin/babel-parser.js"
},
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node": ">=6.0.0"
}
},
- "node_modules/@babel/plugin-proposal-object-rest-spread": {
- "version": "7.20.7",
+ "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": {
+ "version": "7.24.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/compat-data": "^7.20.5",
- "@babel/helper-compilation-targets": "^7.20.7",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
- "@babel/plugin-transform-parameters": "^7.20.7"
+ "@babel/helper-environment-visitor": "^7.22.20",
+ "@babel/helper-plugin-utils": "^7.24.0"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "@babel/core": "^7.0.0"
}
},
- "node_modules/@babel/plugin-proposal-optional-catch-binding": {
- "version": "7.18.6",
+ "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/plugin-syntax-optional-catch-binding": "^7.8.3"
+ "@babel/helper-plugin-utils": "^7.24.0"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "@babel/core": "^7.0.0"
}
},
- "node_modules/@babel/plugin-proposal-optional-chaining": {
- "version": "7.21.0",
+ "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": {
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0",
- "@babel/plugin-syntax-optional-chaining": "^7.8.3"
+ "@babel/helper-plugin-utils": "^7.24.0",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5",
+ "@babel/plugin-transform-optional-chaining": "^7.24.1"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "@babel/core": "^7.13.0"
}
},
- "node_modules/@babel/plugin-proposal-private-methods": {
- "version": "7.18.6",
+ "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": {
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-create-class-features-plugin": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-environment-visitor": "^7.22.20",
+ "@babel/helper-plugin-utils": "^7.24.0"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "@babel/core": "^7.0.0"
}
},
"node_modules/@babel/plugin-proposal-private-property-in-object": {
- "version": "7.21.0",
+ "version": "7.21.0-placeholder-for-preset-env.2",
"dev": true,
"license": "MIT",
- "dependencies": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "@babel/helper-create-class-features-plugin": "^7.21.0",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/plugin-syntax-private-property-in-object": "^7.14.5"
- },
"engines": {
"node": ">=6.9.0"
},
@@ -2195,21 +1207,6 @@
"@babel/core": "^7.0.0-0"
}
},
- "node_modules/@babel/plugin-proposal-unicode-property-regex": {
- "version": "7.18.6",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-create-regexp-features-plugin": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
- },
- "engines": {
- "node": ">=4"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
"node_modules/@babel/plugin-syntax-async-generators": {
"version": "7.8.4",
"dev": true,
@@ -2257,37 +1254,34 @@
"@babel/core": "^7.0.0-0"
}
},
- "node_modules/@babel/plugin-syntax-decorators": {
- "version": "7.21.0",
+ "node_modules/@babel/plugin-syntax-dynamic-import": {
+ "version": "7.8.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2"
- },
- "engines": {
- "node": ">=6.9.0"
+ "@babel/helper-plugin-utils": "^7.8.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
- "node_modules/@babel/plugin-syntax-dynamic-import": {
+ "node_modules/@babel/plugin-syntax-export-namespace-from": {
"version": "7.8.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
+ "@babel/helper-plugin-utils": "^7.8.3"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
- "node_modules/@babel/plugin-syntax-export-default-from": {
- "version": "7.18.6",
+ "node_modules/@babel/plugin-syntax-flow": {
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.24.0"
},
"engines": {
"node": ">=6.9.0"
@@ -2296,23 +1290,12 @@
"@babel/core": "^7.0.0-0"
}
},
- "node_modules/@babel/plugin-syntax-export-namespace-from": {
- "version": "7.8.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.3"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-flow": {
- "version": "7.16.7",
+ "node_modules/@babel/plugin-syntax-import-assertions": {
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
+ "@babel/helper-plugin-utils": "^7.24.0"
},
"engines": {
"node": ">=6.9.0"
@@ -2321,12 +1304,12 @@
"@babel/core": "^7.0.0-0"
}
},
- "node_modules/@babel/plugin-syntax-import-assertions": {
- "version": "7.20.0",
+ "node_modules/@babel/plugin-syntax-import-attributes": {
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.19.0"
+ "@babel/helper-plugin-utils": "^7.24.0"
},
"engines": {
"node": ">=6.9.0"
@@ -2358,11 +1341,11 @@
}
},
"node_modules/@babel/plugin-syntax-jsx": {
- "version": "7.18.6",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.24.0"
},
"engines": {
"node": ">=6.9.0"
@@ -2466,11 +1449,11 @@
}
},
"node_modules/@babel/plugin-syntax-typescript": {
- "version": "7.20.0",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.19.0"
+ "@babel/helper-plugin-utils": "^7.24.0"
},
"engines": {
"node": ">=6.9.0"
@@ -2479,12 +1462,44 @@
"@babel/core": "^7.0.0-0"
}
},
+ "node_modules/@babel/plugin-syntax-unicode-sets-regex": {
+ "version": "7.18.6",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-create-regexp-features-plugin": "^7.18.6",
+ "@babel/helper-plugin-utils": "^7.18.6"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
+ }
+ },
"node_modules/@babel/plugin-transform-arrow-functions": {
- "version": "7.20.7",
+ "version": "7.24.1",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.24.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-async-generator-functions": {
+ "version": "7.24.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2"
+ "@babel/helper-environment-visitor": "^7.22.20",
+ "@babel/helper-plugin-utils": "^7.24.0",
+ "@babel/helper-remap-async-to-generator": "^7.22.20",
+ "@babel/plugin-syntax-async-generators": "^7.8.4"
},
"engines": {
"node": ">=6.9.0"
@@ -2494,13 +1509,13 @@
}
},
"node_modules/@babel/plugin-transform-async-to-generator": {
- "version": "7.20.7",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-module-imports": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-remap-async-to-generator": "^7.18.9"
+ "@babel/helper-module-imports": "^7.24.1",
+ "@babel/helper-plugin-utils": "^7.24.0",
+ "@babel/helper-remap-async-to-generator": "^7.22.20"
},
"engines": {
"node": ">=6.9.0"
@@ -2510,11 +1525,11 @@
}
},
"node_modules/@babel/plugin-transform-block-scoped-functions": {
- "version": "7.18.6",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.24.0"
},
"engines": {
"node": ">=6.9.0"
@@ -2524,11 +1539,26 @@
}
},
"node_modules/@babel/plugin-transform-block-scoping": {
- "version": "7.21.0",
+ "version": "7.24.4",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.24.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-class-properties": {
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2"
+ "@babel/helper-create-class-features-plugin": "^7.24.1",
+ "@babel/helper-plugin-utils": "^7.24.0"
},
"engines": {
"node": ">=6.9.0"
@@ -2537,19 +1567,34 @@
"@babel/core": "^7.0.0-0"
}
},
+ "node_modules/@babel/plugin-transform-class-static-block": {
+ "version": "7.24.4",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-create-class-features-plugin": "^7.24.4",
+ "@babel/helper-plugin-utils": "^7.24.0",
+ "@babel/plugin-syntax-class-static-block": "^7.14.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.12.0"
+ }
+ },
"node_modules/@babel/plugin-transform-classes": {
- "version": "7.21.0",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "@babel/helper-compilation-targets": "^7.20.7",
- "@babel/helper-environment-visitor": "^7.18.9",
- "@babel/helper-function-name": "^7.21.0",
- "@babel/helper-optimise-call-expression": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-replace-supers": "^7.20.7",
- "@babel/helper-split-export-declaration": "^7.18.6",
+ "@babel/helper-annotate-as-pure": "^7.22.5",
+ "@babel/helper-compilation-targets": "^7.23.6",
+ "@babel/helper-environment-visitor": "^7.22.20",
+ "@babel/helper-function-name": "^7.23.0",
+ "@babel/helper-plugin-utils": "^7.24.0",
+ "@babel/helper-replace-supers": "^7.24.1",
+ "@babel/helper-split-export-declaration": "^7.22.6",
"globals": "^11.1.0"
},
"engines": {
@@ -2559,13 +1604,21 @@
"@babel/core": "^7.0.0-0"
}
},
+ "node_modules/@babel/plugin-transform-classes/node_modules/globals": {
+ "version": "11.12.0",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
"node_modules/@babel/plugin-transform-computed-properties": {
- "version": "7.20.7",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/template": "^7.20.7"
+ "@babel/helper-plugin-utils": "^7.24.0",
+ "@babel/template": "^7.24.0"
},
"engines": {
"node": ">=6.9.0"
@@ -2575,11 +1628,11 @@
}
},
"node_modules/@babel/plugin-transform-destructuring": {
- "version": "7.20.7",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2"
+ "@babel/helper-plugin-utils": "^7.24.0"
},
"engines": {
"node": ">=6.9.0"
@@ -2589,12 +1642,12 @@
}
},
"node_modules/@babel/plugin-transform-dotall-regex": {
- "version": "7.18.6",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-create-regexp-features-plugin": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-create-regexp-features-plugin": "^7.22.15",
+ "@babel/helper-plugin-utils": "^7.24.0"
},
"engines": {
"node": ">=6.9.0"
@@ -2604,11 +1657,26 @@
}
},
"node_modules/@babel/plugin-transform-duplicate-keys": {
- "version": "7.18.9",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.9"
+ "@babel/helper-plugin-utils": "^7.24.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-dynamic-import": {
+ "version": "7.24.1",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.24.0",
+ "@babel/plugin-syntax-dynamic-import": "^7.8.3"
},
"engines": {
"node": ">=6.9.0"
@@ -2618,12 +1686,27 @@
}
},
"node_modules/@babel/plugin-transform-exponentiation-operator": {
- "version": "7.18.6",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.15",
+ "@babel/helper-plugin-utils": "^7.24.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-export-namespace-from": {
+ "version": "7.24.1",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.24.0",
+ "@babel/plugin-syntax-export-namespace-from": "^7.8.3"
},
"engines": {
"node": ">=6.9.0"
@@ -2633,12 +1716,12 @@
}
},
"node_modules/@babel/plugin-transform-flow-strip-types": {
- "version": "7.16.7",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-flow": "^7.16.7"
+ "@babel/helper-plugin-utils": "^7.24.0",
+ "@babel/plugin-syntax-flow": "^7.24.1"
},
"engines": {
"node": ">=6.9.0"
@@ -2648,11 +1731,12 @@
}
},
"node_modules/@babel/plugin-transform-for-of": {
- "version": "7.21.0",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2"
+ "@babel/helper-plugin-utils": "^7.24.0",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -2662,13 +1746,28 @@
}
},
"node_modules/@babel/plugin-transform-function-name": {
- "version": "7.18.9",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-compilation-targets": "^7.18.9",
- "@babel/helper-function-name": "^7.18.9",
- "@babel/helper-plugin-utils": "^7.18.9"
+ "@babel/helper-compilation-targets": "^7.23.6",
+ "@babel/helper-function-name": "^7.23.0",
+ "@babel/helper-plugin-utils": "^7.24.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-json-strings": {
+ "version": "7.24.1",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.24.0",
+ "@babel/plugin-syntax-json-strings": "^7.8.3"
},
"engines": {
"node": ">=6.9.0"
@@ -2678,11 +1777,26 @@
}
},
"node_modules/@babel/plugin-transform-literals": {
- "version": "7.18.9",
+ "version": "7.24.1",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.24.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-logical-assignment-operators": {
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.9"
+ "@babel/helper-plugin-utils": "^7.24.0",
+ "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
},
"engines": {
"node": ">=6.9.0"
@@ -2692,11 +1806,11 @@
}
},
"node_modules/@babel/plugin-transform-member-expression-literals": {
- "version": "7.18.6",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.24.0"
},
"engines": {
"node": ">=6.9.0"
@@ -2706,12 +1820,12 @@
}
},
"node_modules/@babel/plugin-transform-modules-amd": {
- "version": "7.20.11",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-module-transforms": "^7.20.11",
- "@babel/helper-plugin-utils": "^7.20.2"
+ "@babel/helper-module-transforms": "^7.23.3",
+ "@babel/helper-plugin-utils": "^7.24.0"
},
"engines": {
"node": ">=6.9.0"
@@ -2721,13 +1835,13 @@
}
},
"node_modules/@babel/plugin-transform-modules-commonjs": {
- "version": "7.21.2",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-module-transforms": "^7.21.2",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-simple-access": "^7.20.2"
+ "@babel/helper-module-transforms": "^7.23.3",
+ "@babel/helper-plugin-utils": "^7.24.0",
+ "@babel/helper-simple-access": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -2737,14 +1851,14 @@
}
},
"node_modules/@babel/plugin-transform-modules-systemjs": {
- "version": "7.20.11",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-hoist-variables": "^7.18.6",
- "@babel/helper-module-transforms": "^7.20.11",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-validator-identifier": "^7.19.1"
+ "@babel/helper-hoist-variables": "^7.22.5",
+ "@babel/helper-module-transforms": "^7.23.3",
+ "@babel/helper-plugin-utils": "^7.24.0",
+ "@babel/helper-validator-identifier": "^7.22.20"
},
"engines": {
"node": ">=6.9.0"
@@ -2754,12 +1868,12 @@
}
},
"node_modules/@babel/plugin-transform-modules-umd": {
- "version": "7.18.6",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-module-transforms": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-module-transforms": "^7.23.3",
+ "@babel/helper-plugin-utils": "^7.24.0"
},
"engines": {
"node": ">=6.9.0"
@@ -2769,12 +1883,12 @@
}
},
"node_modules/@babel/plugin-transform-named-capturing-groups-regex": {
- "version": "7.20.5",
+ "version": "7.22.5",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-create-regexp-features-plugin": "^7.20.5",
- "@babel/helper-plugin-utils": "^7.20.2"
+ "@babel/helper-create-regexp-features-plugin": "^7.22.5",
+ "@babel/helper-plugin-utils": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -2784,11 +1898,58 @@
}
},
"node_modules/@babel/plugin-transform-new-target": {
- "version": "7.18.6",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.24.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-nullish-coalescing-operator": {
+ "version": "7.24.1",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.24.0",
+ "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-numeric-separator": {
+ "version": "7.24.1",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.24.0",
+ "@babel/plugin-syntax-numeric-separator": "^7.10.4"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-object-rest-spread": {
+ "version": "7.24.1",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-compilation-targets": "^7.23.6",
+ "@babel/helper-plugin-utils": "^7.24.0",
+ "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
+ "@babel/plugin-transform-parameters": "^7.24.1"
},
"engines": {
"node": ">=6.9.0"
@@ -2798,12 +1959,43 @@
}
},
"node_modules/@babel/plugin-transform-object-super": {
- "version": "7.18.6",
+ "version": "7.24.1",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.24.0",
+ "@babel/helper-replace-supers": "^7.24.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-optional-catch-binding": {
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/helper-replace-supers": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.24.0",
+ "@babel/plugin-syntax-optional-catch-binding": "^7.8.3"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-optional-chaining": {
+ "version": "7.24.1",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.24.0",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5",
+ "@babel/plugin-syntax-optional-chaining": "^7.8.3"
},
"engines": {
"node": ">=6.9.0"
@@ -2813,11 +2005,11 @@
}
},
"node_modules/@babel/plugin-transform-parameters": {
- "version": "7.20.7",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2"
+ "@babel/helper-plugin-utils": "^7.24.0"
},
"engines": {
"node": ">=6.9.0"
@@ -2826,12 +2018,13 @@
"@babel/core": "^7.0.0-0"
}
},
- "node_modules/@babel/plugin-transform-property-literals": {
- "version": "7.18.6",
+ "node_modules/@babel/plugin-transform-private-methods": {
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-create-class-features-plugin": "^7.24.1",
+ "@babel/helper-plugin-utils": "^7.24.0"
},
"engines": {
"node": ">=6.9.0"
@@ -2840,12 +2033,15 @@
"@babel/core": "^7.0.0-0"
}
},
- "node_modules/@babel/plugin-transform-react-display-name": {
- "version": "7.18.6",
+ "node_modules/@babel/plugin-transform-private-property-in-object": {
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-annotate-as-pure": "^7.22.5",
+ "@babel/helper-create-class-features-plugin": "^7.24.1",
+ "@babel/helper-plugin-utils": "^7.24.0",
+ "@babel/plugin-syntax-private-property-in-object": "^7.14.5"
},
"engines": {
"node": ">=6.9.0"
@@ -2854,16 +2050,12 @@
"@babel/core": "^7.0.0-0"
}
},
- "node_modules/@babel/plugin-transform-react-jsx": {
- "version": "7.21.0",
+ "node_modules/@babel/plugin-transform-property-literals": {
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "@babel/helper-module-imports": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/plugin-syntax-jsx": "^7.18.6",
- "@babel/types": "^7.21.0"
+ "@babel/helper-plugin-utils": "^7.24.0"
},
"engines": {
"node": ">=6.9.0"
@@ -2872,12 +2064,12 @@
"@babel/core": "^7.0.0-0"
}
},
- "node_modules/@babel/plugin-transform-react-jsx-development": {
- "version": "7.18.6",
+ "node_modules/@babel/plugin-transform-react-display-name": {
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/plugin-transform-react-jsx": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.24.0"
},
"engines": {
"node": ">=6.9.0"
@@ -2886,12 +2078,16 @@
"@babel/core": "^7.0.0-0"
}
},
- "node_modules/@babel/plugin-transform-react-jsx-self": {
- "version": "7.21.0",
+ "node_modules/@babel/plugin-transform-react-jsx": {
+ "version": "7.23.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2"
+ "@babel/helper-annotate-as-pure": "^7.22.5",
+ "@babel/helper-module-imports": "^7.22.15",
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/plugin-syntax-jsx": "^7.23.3",
+ "@babel/types": "^7.23.4"
},
"engines": {
"node": ">=6.9.0"
@@ -2900,12 +2096,12 @@
"@babel/core": "^7.0.0-0"
}
},
- "node_modules/@babel/plugin-transform-react-jsx-source": {
- "version": "7.19.6",
+ "node_modules/@babel/plugin-transform-react-jsx-development": {
+ "version": "7.22.5",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.19.0"
+ "@babel/plugin-transform-react-jsx": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -2915,12 +2111,12 @@
}
},
"node_modules/@babel/plugin-transform-react-pure-annotations": {
- "version": "7.18.6",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-annotate-as-pure": "^7.22.5",
+ "@babel/helper-plugin-utils": "^7.24.0"
},
"engines": {
"node": ">=6.9.0"
@@ -2930,12 +2126,12 @@
}
},
"node_modules/@babel/plugin-transform-regenerator": {
- "version": "7.20.5",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2",
- "regenerator-transform": "^0.15.1"
+ "@babel/helper-plugin-utils": "^7.24.0",
+ "regenerator-transform": "^0.15.2"
},
"engines": {
"node": ">=6.9.0"
@@ -2945,11 +2141,30 @@
}
},
"node_modules/@babel/plugin-transform-reserved-words": {
- "version": "7.18.6",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.24.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-runtime": {
+ "version": "7.24.3",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-module-imports": "^7.24.3",
+ "@babel/helper-plugin-utils": "^7.24.0",
+ "babel-plugin-polyfill-corejs2": "^0.4.10",
+ "babel-plugin-polyfill-corejs3": "^0.10.1",
+ "babel-plugin-polyfill-regenerator": "^0.6.1",
+ "semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
@@ -2959,11 +2174,11 @@
}
},
"node_modules/@babel/plugin-transform-shorthand-properties": {
- "version": "7.18.6",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.24.0"
},
"engines": {
"node": ">=6.9.0"
@@ -2973,12 +2188,12 @@
}
},
"node_modules/@babel/plugin-transform-spread": {
- "version": "7.20.7",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0"
+ "@babel/helper-plugin-utils": "^7.24.0",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -2988,11 +2203,11 @@
}
},
"node_modules/@babel/plugin-transform-sticky-regex": {
- "version": "7.18.6",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.24.0"
},
"engines": {
"node": ">=6.9.0"
@@ -3002,11 +2217,11 @@
}
},
"node_modules/@babel/plugin-transform-template-literals": {
- "version": "7.18.9",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.9"
+ "@babel/helper-plugin-utils": "^7.24.0"
},
"engines": {
"node": ">=6.9.0"
@@ -3016,11 +2231,11 @@
}
},
"node_modules/@babel/plugin-transform-typeof-symbol": {
- "version": "7.18.9",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.9"
+ "@babel/helper-plugin-utils": "^7.24.0"
},
"engines": {
"node": ">=6.9.0"
@@ -3030,13 +2245,14 @@
}
},
"node_modules/@babel/plugin-transform-typescript": {
- "version": "7.21.0",
+ "version": "7.24.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-create-class-features-plugin": "^7.21.0",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/plugin-syntax-typescript": "^7.20.0"
+ "@babel/helper-annotate-as-pure": "^7.22.5",
+ "@babel/helper-create-class-features-plugin": "^7.24.4",
+ "@babel/helper-plugin-utils": "^7.24.0",
+ "@babel/plugin-syntax-typescript": "^7.24.1"
},
"engines": {
"node": ">=6.9.0"
@@ -3046,11 +2262,26 @@
}
},
"node_modules/@babel/plugin-transform-unicode-escapes": {
- "version": "7.18.10",
+ "version": "7.24.1",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.24.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-unicode-property-regex": {
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.9"
+ "@babel/helper-create-regexp-features-plugin": "^7.22.15",
+ "@babel/helper-plugin-utils": "^7.24.0"
},
"engines": {
"node": ">=6.9.0"
@@ -3060,12 +2291,12 @@
}
},
"node_modules/@babel/plugin-transform-unicode-regex": {
- "version": "7.18.6",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-create-regexp-features-plugin": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-create-regexp-features-plugin": "^7.22.15",
+ "@babel/helper-plugin-utils": "^7.24.0"
},
"engines": {
"node": ">=6.9.0"
@@ -3074,38 +2305,43 @@
"@babel/core": "^7.0.0-0"
}
},
+ "node_modules/@babel/plugin-transform-unicode-sets-regex": {
+ "version": "7.24.1",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-create-regexp-features-plugin": "^7.22.15",
+ "@babel/helper-plugin-utils": "^7.24.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
+ }
+ },
"node_modules/@babel/preset-env": {
- "version": "7.20.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/compat-data": "^7.20.1",
- "@babel/helper-compilation-targets": "^7.20.0",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-validator-option": "^7.18.6",
- "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6",
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.9",
- "@babel/plugin-proposal-async-generator-functions": "^7.20.1",
- "@babel/plugin-proposal-class-properties": "^7.18.6",
- "@babel/plugin-proposal-class-static-block": "^7.18.6",
- "@babel/plugin-proposal-dynamic-import": "^7.18.6",
- "@babel/plugin-proposal-export-namespace-from": "^7.18.9",
- "@babel/plugin-proposal-json-strings": "^7.18.6",
- "@babel/plugin-proposal-logical-assignment-operators": "^7.18.9",
- "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
- "@babel/plugin-proposal-numeric-separator": "^7.18.6",
- "@babel/plugin-proposal-object-rest-spread": "^7.20.2",
- "@babel/plugin-proposal-optional-catch-binding": "^7.18.6",
- "@babel/plugin-proposal-optional-chaining": "^7.18.9",
- "@babel/plugin-proposal-private-methods": "^7.18.6",
- "@babel/plugin-proposal-private-property-in-object": "^7.18.6",
- "@babel/plugin-proposal-unicode-property-regex": "^7.18.6",
+ "version": "7.24.4",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/compat-data": "^7.24.4",
+ "@babel/helper-compilation-targets": "^7.23.6",
+ "@babel/helper-plugin-utils": "^7.24.0",
+ "@babel/helper-validator-option": "^7.23.5",
+ "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.24.4",
+ "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.24.1",
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.1",
+ "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.24.1",
+ "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2",
"@babel/plugin-syntax-async-generators": "^7.8.4",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/plugin-syntax-class-static-block": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-export-namespace-from": "^7.8.3",
- "@babel/plugin-syntax-import-assertions": "^7.20.0",
+ "@babel/plugin-syntax-import-assertions": "^7.24.1",
+ "@babel/plugin-syntax-import-attributes": "^7.24.1",
+ "@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",
@@ -3115,45 +2351,61 @@
"@babel/plugin-syntax-optional-chaining": "^7.8.3",
"@babel/plugin-syntax-private-property-in-object": "^7.14.5",
"@babel/plugin-syntax-top-level-await": "^7.14.5",
- "@babel/plugin-transform-arrow-functions": "^7.18.6",
- "@babel/plugin-transform-async-to-generator": "^7.18.6",
- "@babel/plugin-transform-block-scoped-functions": "^7.18.6",
- "@babel/plugin-transform-block-scoping": "^7.20.2",
- "@babel/plugin-transform-classes": "^7.20.2",
- "@babel/plugin-transform-computed-properties": "^7.18.9",
- "@babel/plugin-transform-destructuring": "^7.20.2",
- "@babel/plugin-transform-dotall-regex": "^7.18.6",
- "@babel/plugin-transform-duplicate-keys": "^7.18.9",
- "@babel/plugin-transform-exponentiation-operator": "^7.18.6",
- "@babel/plugin-transform-for-of": "^7.18.8",
- "@babel/plugin-transform-function-name": "^7.18.9",
- "@babel/plugin-transform-literals": "^7.18.9",
- "@babel/plugin-transform-member-expression-literals": "^7.18.6",
- "@babel/plugin-transform-modules-amd": "^7.19.6",
- "@babel/plugin-transform-modules-commonjs": "^7.19.6",
- "@babel/plugin-transform-modules-systemjs": "^7.19.6",
- "@babel/plugin-transform-modules-umd": "^7.18.6",
- "@babel/plugin-transform-named-capturing-groups-regex": "^7.19.1",
- "@babel/plugin-transform-new-target": "^7.18.6",
- "@babel/plugin-transform-object-super": "^7.18.6",
- "@babel/plugin-transform-parameters": "^7.20.1",
- "@babel/plugin-transform-property-literals": "^7.18.6",
- "@babel/plugin-transform-regenerator": "^7.18.6",
- "@babel/plugin-transform-reserved-words": "^7.18.6",
- "@babel/plugin-transform-shorthand-properties": "^7.18.6",
- "@babel/plugin-transform-spread": "^7.19.0",
- "@babel/plugin-transform-sticky-regex": "^7.18.6",
- "@babel/plugin-transform-template-literals": "^7.18.9",
- "@babel/plugin-transform-typeof-symbol": "^7.18.9",
- "@babel/plugin-transform-unicode-escapes": "^7.18.10",
- "@babel/plugin-transform-unicode-regex": "^7.18.6",
- "@babel/preset-modules": "^0.1.5",
- "@babel/types": "^7.20.2",
- "babel-plugin-polyfill-corejs2": "^0.3.3",
- "babel-plugin-polyfill-corejs3": "^0.6.0",
- "babel-plugin-polyfill-regenerator": "^0.4.1",
- "core-js-compat": "^3.25.1",
- "semver": "^6.3.0"
+ "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6",
+ "@babel/plugin-transform-arrow-functions": "^7.24.1",
+ "@babel/plugin-transform-async-generator-functions": "^7.24.3",
+ "@babel/plugin-transform-async-to-generator": "^7.24.1",
+ "@babel/plugin-transform-block-scoped-functions": "^7.24.1",
+ "@babel/plugin-transform-block-scoping": "^7.24.4",
+ "@babel/plugin-transform-class-properties": "^7.24.1",
+ "@babel/plugin-transform-class-static-block": "^7.24.4",
+ "@babel/plugin-transform-classes": "^7.24.1",
+ "@babel/plugin-transform-computed-properties": "^7.24.1",
+ "@babel/plugin-transform-destructuring": "^7.24.1",
+ "@babel/plugin-transform-dotall-regex": "^7.24.1",
+ "@babel/plugin-transform-duplicate-keys": "^7.24.1",
+ "@babel/plugin-transform-dynamic-import": "^7.24.1",
+ "@babel/plugin-transform-exponentiation-operator": "^7.24.1",
+ "@babel/plugin-transform-export-namespace-from": "^7.24.1",
+ "@babel/plugin-transform-for-of": "^7.24.1",
+ "@babel/plugin-transform-function-name": "^7.24.1",
+ "@babel/plugin-transform-json-strings": "^7.24.1",
+ "@babel/plugin-transform-literals": "^7.24.1",
+ "@babel/plugin-transform-logical-assignment-operators": "^7.24.1",
+ "@babel/plugin-transform-member-expression-literals": "^7.24.1",
+ "@babel/plugin-transform-modules-amd": "^7.24.1",
+ "@babel/plugin-transform-modules-commonjs": "^7.24.1",
+ "@babel/plugin-transform-modules-systemjs": "^7.24.1",
+ "@babel/plugin-transform-modules-umd": "^7.24.1",
+ "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5",
+ "@babel/plugin-transform-new-target": "^7.24.1",
+ "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.1",
+ "@babel/plugin-transform-numeric-separator": "^7.24.1",
+ "@babel/plugin-transform-object-rest-spread": "^7.24.1",
+ "@babel/plugin-transform-object-super": "^7.24.1",
+ "@babel/plugin-transform-optional-catch-binding": "^7.24.1",
+ "@babel/plugin-transform-optional-chaining": "^7.24.1",
+ "@babel/plugin-transform-parameters": "^7.24.1",
+ "@babel/plugin-transform-private-methods": "^7.24.1",
+ "@babel/plugin-transform-private-property-in-object": "^7.24.1",
+ "@babel/plugin-transform-property-literals": "^7.24.1",
+ "@babel/plugin-transform-regenerator": "^7.24.1",
+ "@babel/plugin-transform-reserved-words": "^7.24.1",
+ "@babel/plugin-transform-shorthand-properties": "^7.24.1",
+ "@babel/plugin-transform-spread": "^7.24.1",
+ "@babel/plugin-transform-sticky-regex": "^7.24.1",
+ "@babel/plugin-transform-template-literals": "^7.24.1",
+ "@babel/plugin-transform-typeof-symbol": "^7.24.1",
+ "@babel/plugin-transform-unicode-escapes": "^7.24.1",
+ "@babel/plugin-transform-unicode-property-regex": "^7.24.1",
+ "@babel/plugin-transform-unicode-regex": "^7.24.1",
+ "@babel/plugin-transform-unicode-sets-regex": "^7.24.1",
+ "@babel/preset-modules": "0.1.6-no-external-plugins",
+ "babel-plugin-polyfill-corejs2": "^0.4.10",
+ "babel-plugin-polyfill-corejs3": "^0.10.4",
+ "babel-plugin-polyfill-regenerator": "^0.6.1",
+ "core-js-compat": "^3.31.0",
+ "semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
@@ -3163,13 +2415,13 @@
}
},
"node_modules/@babel/preset-flow": {
- "version": "7.16.7",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-validator-option": "^7.16.7",
- "@babel/plugin-transform-flow-strip-types": "^7.16.7"
+ "@babel/helper-plugin-utils": "^7.24.0",
+ "@babel/helper-validator-option": "^7.23.5",
+ "@babel/plugin-transform-flow-strip-types": "^7.24.1"
},
"engines": {
"node": ">=6.9.0"
@@ -3179,31 +2431,29 @@
}
},
"node_modules/@babel/preset-modules": {
- "version": "0.1.5",
+ "version": "0.1.6-no-external-plugins",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.0.0",
- "@babel/plugin-proposal-unicode-property-regex": "^7.4.4",
- "@babel/plugin-transform-dotall-regex": "^7.4.4",
"@babel/types": "^7.4.4",
"esutils": "^2.0.2"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0"
}
},
"node_modules/@babel/preset-react": {
- "version": "7.18.6",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/helper-validator-option": "^7.18.6",
- "@babel/plugin-transform-react-display-name": "^7.18.6",
- "@babel/plugin-transform-react-jsx": "^7.18.6",
- "@babel/plugin-transform-react-jsx-development": "^7.18.6",
- "@babel/plugin-transform-react-pure-annotations": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.24.0",
+ "@babel/helper-validator-option": "^7.23.5",
+ "@babel/plugin-transform-react-display-name": "^7.24.1",
+ "@babel/plugin-transform-react-jsx": "^7.23.4",
+ "@babel/plugin-transform-react-jsx-development": "^7.22.5",
+ "@babel/plugin-transform-react-pure-annotations": "^7.24.1"
},
"engines": {
"node": ">=6.9.0"
@@ -3213,13 +2463,15 @@
}
},
"node_modules/@babel/preset-typescript": {
- "version": "7.21.0",
+ "version": "7.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-validator-option": "^7.21.0",
- "@babel/plugin-transform-typescript": "^7.21.0"
+ "@babel/helper-plugin-utils": "^7.24.0",
+ "@babel/helper-validator-option": "^7.23.5",
+ "@babel/plugin-syntax-jsx": "^7.24.1",
+ "@babel/plugin-transform-modules-commonjs": "^7.24.1",
+ "@babel/plugin-transform-typescript": "^7.24.1"
},
"engines": {
"node": ">=6.9.0"
@@ -3229,14 +2481,14 @@
}
},
"node_modules/@babel/register": {
- "version": "7.21.0",
+ "version": "7.23.7",
"dev": true,
"license": "MIT",
"dependencies": {
"clone-deep": "^4.0.1",
"find-cache-dir": "^2.0.0",
"make-dir": "^2.1.0",
- "pirates": "^4.0.5",
+ "pirates": "^4.0.6",
"source-map-support": "^0.5.16"
},
"engines": {
@@ -3246,6 +2498,114 @@
"@babel/core": "^7.0.0-0"
}
},
+ "node_modules/@babel/register/node_modules/find-cache-dir": {
+ "version": "2.1.0",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "commondir": "^1.0.1",
+ "make-dir": "^2.0.0",
+ "pkg-dir": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/@babel/register/node_modules/find-up": {
+ "version": "3.0.0",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "locate-path": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/@babel/register/node_modules/locate-path": {
+ "version": "3.0.0",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "p-locate": "^3.0.0",
+ "path-exists": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/@babel/register/node_modules/make-dir": {
+ "version": "2.1.0",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "pify": "^4.0.1",
+ "semver": "^5.6.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/@babel/register/node_modules/p-limit": {
+ "version": "2.3.0",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "p-try": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@babel/register/node_modules/p-locate": {
+ "version": "3.0.0",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "p-limit": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/@babel/register/node_modules/path-exists": {
+ "version": "3.0.0",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/@babel/register/node_modules/pify": {
+ "version": "4.0.1",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/@babel/register/node_modules/pkg-dir": {
+ "version": "3.0.0",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "find-up": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/@babel/register/node_modules/semver": {
+ "version": "5.7.2",
+ "dev": true,
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver"
+ }
+ },
"node_modules/@babel/register/node_modules/source-map": {
"version": "0.6.1",
"dev": true,
@@ -3269,71 +2629,78 @@
"license": "MIT"
},
"node_modules/@babel/runtime": {
- "version": "7.18.9",
+ "version": "7.24.4",
"license": "MIT",
"dependencies": {
- "regenerator-runtime": "^0.13.4"
+ "regenerator-runtime": "^0.14.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/runtime-corejs3": {
- "version": "7.17.2",
+ "version": "7.24.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "core-js-pure": "^3.20.2",
- "regenerator-runtime": "^0.13.4"
+ "core-js-pure": "^3.30.2",
+ "regenerator-runtime": "^0.14.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/standalone": {
- "version": "7.18.9",
+ "version": "7.24.4",
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/template": {
- "version": "7.20.7",
+ "version": "7.24.0",
"license": "MIT",
"dependencies": {
- "@babel/code-frame": "^7.18.6",
- "@babel/parser": "^7.20.7",
- "@babel/types": "^7.20.7"
+ "@babel/code-frame": "^7.23.5",
+ "@babel/parser": "^7.24.0",
+ "@babel/types": "^7.24.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/traverse": {
- "version": "7.21.3",
+ "version": "7.24.1",
"license": "MIT",
"dependencies": {
- "@babel/code-frame": "^7.18.6",
- "@babel/generator": "^7.21.3",
- "@babel/helper-environment-visitor": "^7.18.9",
- "@babel/helper-function-name": "^7.21.0",
- "@babel/helper-hoist-variables": "^7.18.6",
- "@babel/helper-split-export-declaration": "^7.18.6",
- "@babel/parser": "^7.21.3",
- "@babel/types": "^7.21.3",
- "debug": "^4.1.0",
+ "@babel/code-frame": "^7.24.1",
+ "@babel/generator": "^7.24.1",
+ "@babel/helper-environment-visitor": "^7.22.20",
+ "@babel/helper-function-name": "^7.23.0",
+ "@babel/helper-hoist-variables": "^7.22.5",
+ "@babel/helper-split-export-declaration": "^7.22.6",
+ "@babel/parser": "^7.24.1",
+ "@babel/types": "^7.24.0",
+ "debug": "^4.3.1",
"globals": "^11.1.0"
},
"engines": {
"node": ">=6.9.0"
}
},
+ "node_modules/@babel/traverse/node_modules/globals": {
+ "version": "11.12.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
"node_modules/@babel/types": {
- "version": "7.21.3",
+ "version": "7.24.0",
"license": "MIT",
"dependencies": {
- "@babel/helper-string-parser": "^7.19.4",
- "@babel/helper-validator-identifier": "^7.19.1",
+ "@babel/helper-string-parser": "^7.23.4",
+ "@babel/helper-validator-identifier": "^7.22.20",
"to-fast-properties": "^2.0.0"
},
"engines": {
@@ -3349,263 +2716,158 @@
"version": "0.2.3",
"license": "MIT"
},
- "node_modules/@cnakazawa/watch": {
- "version": "1.0.4",
- "dev": true,
- "license": "Apache-2.0",
- "dependencies": {
- "exec-sh": "^0.3.2",
- "minimist": "^1.2.0"
- },
- "bin": {
- "watch": "cli.js"
- },
- "engines": {
- "node": ">=0.1.95"
- }
- },
- "node_modules/@code-hike/classer": {
- "version": "0.0.0-e48fa74",
+ "node_modules/@codemirror/autocomplete": {
+ "version": "6.15.0",
"license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/codehike"
+ "dependencies": {
+ "@codemirror/language": "^6.0.0",
+ "@codemirror/state": "^6.0.0",
+ "@codemirror/view": "^6.17.0",
+ "@lezer/common": "^1.0.0"
},
"peerDependencies": {
- "react": ">=16.8"
- }
- },
- "node_modules/@codemirror/closebrackets": {
- "version": "0.19.2",
- "license": "MIT",
- "dependencies": {
- "@codemirror/language": "^0.19.0",
- "@codemirror/rangeset": "^0.19.0",
- "@codemirror/state": "^0.19.2",
- "@codemirror/text": "^0.19.0",
- "@codemirror/view": "^0.19.44"
+ "@codemirror/language": "^6.0.0",
+ "@codemirror/state": "^6.0.0",
+ "@codemirror/view": "^6.0.0",
+ "@lezer/common": "^1.0.0"
}
},
"node_modules/@codemirror/commands": {
- "version": "0.19.8",
- "license": "MIT",
- "dependencies": {
- "@codemirror/language": "^0.19.0",
- "@codemirror/matchbrackets": "^0.19.0",
- "@codemirror/state": "^0.19.2",
- "@codemirror/text": "^0.19.6",
- "@codemirror/view": "^0.19.22",
- "@lezer/common": "^0.15.0"
- }
- },
- "node_modules/@codemirror/comment": {
- "version": "0.19.1",
+ "version": "6.3.3",
"license": "MIT",
"dependencies": {
- "@codemirror/state": "^0.19.9",
- "@codemirror/text": "^0.19.0",
- "@codemirror/view": "^0.19.0"
- }
- },
- "node_modules/@codemirror/gutter": {
- "version": "0.19.9",
- "license": "MIT",
- "dependencies": {
- "@codemirror/rangeset": "^0.19.0",
- "@codemirror/state": "^0.19.0",
- "@codemirror/view": "^0.19.23"
- }
- },
- "node_modules/@codemirror/highlight": {
- "version": "0.19.8",
- "license": "MIT",
- "dependencies": {
- "@codemirror/language": "^0.19.0",
- "@codemirror/rangeset": "^0.19.0",
- "@codemirror/state": "^0.19.3",
- "@codemirror/view": "^0.19.39",
- "@lezer/common": "^0.15.0",
- "style-mod": "^4.0.0"
- }
- },
- "node_modules/@codemirror/history": {
- "version": "0.19.2",
- "license": "MIT",
- "dependencies": {
- "@codemirror/state": "^0.19.2",
- "@codemirror/view": "^0.19.0"
+ "@codemirror/language": "^6.0.0",
+ "@codemirror/state": "^6.4.0",
+ "@codemirror/view": "^6.0.0",
+ "@lezer/common": "^1.1.0"
}
},
"node_modules/@codemirror/lang-css": {
- "version": "0.19.3",
- "license": "MIT",
- "dependencies": {
- "@codemirror/autocomplete": "^0.19.0",
- "@codemirror/highlight": "^0.19.6",
- "@codemirror/language": "^0.19.0",
- "@codemirror/state": "^0.19.0",
- "@lezer/css": "^0.15.2"
- }
- },
- "node_modules/@codemirror/lang-css/node_modules/@codemirror/autocomplete": {
- "version": "0.19.15",
+ "version": "6.2.1",
"license": "MIT",
"dependencies": {
- "@codemirror/language": "^0.19.0",
- "@codemirror/state": "^0.19.4",
- "@codemirror/text": "^0.19.2",
- "@codemirror/tooltip": "^0.19.12",
- "@codemirror/view": "^0.19.0",
- "@lezer/common": "^0.15.0"
+ "@codemirror/autocomplete": "^6.0.0",
+ "@codemirror/language": "^6.0.0",
+ "@codemirror/state": "^6.0.0",
+ "@lezer/common": "^1.0.2",
+ "@lezer/css": "^1.0.0"
}
},
"node_modules/@codemirror/lang-html": {
- "version": "0.19.4",
+ "version": "6.4.8",
"license": "MIT",
"dependencies": {
- "@codemirror/autocomplete": "^0.19.0",
- "@codemirror/highlight": "^0.19.6",
- "@codemirror/lang-css": "^0.19.0",
- "@codemirror/lang-javascript": "^0.19.0",
- "@codemirror/language": "^0.19.0",
- "@codemirror/state": "^0.19.0",
- "@lezer/common": "^0.15.0",
- "@lezer/html": "^0.15.0"
- }
- },
- "node_modules/@codemirror/lang-html/node_modules/@codemirror/autocomplete": {
- "version": "0.19.15",
- "license": "MIT",
- "dependencies": {
- "@codemirror/language": "^0.19.0",
- "@codemirror/state": "^0.19.4",
- "@codemirror/text": "^0.19.2",
- "@codemirror/tooltip": "^0.19.12",
- "@codemirror/view": "^0.19.0",
- "@lezer/common": "^0.15.0"
+ "@codemirror/autocomplete": "^6.0.0",
+ "@codemirror/lang-css": "^6.0.0",
+ "@codemirror/lang-javascript": "^6.0.0",
+ "@codemirror/language": "^6.4.0",
+ "@codemirror/state": "^6.0.0",
+ "@codemirror/view": "^6.17.0",
+ "@lezer/common": "^1.0.0",
+ "@lezer/css": "^1.1.0",
+ "@lezer/html": "^1.3.0"
}
},
"node_modules/@codemirror/lang-javascript": {
- "version": "0.19.7",
- "license": "MIT",
- "dependencies": {
- "@codemirror/autocomplete": "^0.19.0",
- "@codemirror/highlight": "^0.19.7",
- "@codemirror/language": "^0.19.0",
- "@codemirror/lint": "^0.19.0",
- "@codemirror/state": "^0.19.0",
- "@codemirror/view": "^0.19.0",
- "@lezer/javascript": "^0.15.1"
- }
- },
- "node_modules/@codemirror/lang-javascript/node_modules/@codemirror/autocomplete": {
- "version": "0.19.15",
- "license": "MIT",
- "dependencies": {
- "@codemirror/language": "^0.19.0",
- "@codemirror/state": "^0.19.4",
- "@codemirror/text": "^0.19.2",
- "@codemirror/tooltip": "^0.19.12",
- "@codemirror/view": "^0.19.0",
- "@lezer/common": "^0.15.0"
- }
- },
- "node_modules/@codemirror/lang-markdown": {
- "version": "0.19.6",
+ "version": "6.2.2",
"license": "MIT",
"dependencies": {
- "@codemirror/highlight": "^0.19.0",
- "@codemirror/lang-html": "^0.19.0",
- "@codemirror/language": "^0.19.0",
- "@codemirror/state": "^0.19.3",
- "@codemirror/view": "^0.19.0",
- "@lezer/common": "^0.15.0",
- "@lezer/markdown": "^0.15.0"
+ "@codemirror/autocomplete": "^6.0.0",
+ "@codemirror/language": "^6.6.0",
+ "@codemirror/lint": "^6.0.0",
+ "@codemirror/state": "^6.0.0",
+ "@codemirror/view": "^6.17.0",
+ "@lezer/common": "^1.0.0",
+ "@lezer/javascript": "^1.0.0"
}
},
"node_modules/@codemirror/language": {
- "version": "0.19.10",
+ "version": "6.10.1",
"license": "MIT",
"dependencies": {
- "@codemirror/state": "^0.19.0",
- "@codemirror/text": "^0.19.0",
- "@codemirror/view": "^0.19.0",
- "@lezer/common": "^0.15.5",
- "@lezer/lr": "^0.15.0"
+ "@codemirror/state": "^6.0.0",
+ "@codemirror/view": "^6.23.0",
+ "@lezer/common": "^1.1.0",
+ "@lezer/highlight": "^1.0.0",
+ "@lezer/lr": "^1.0.0",
+ "style-mod": "^4.0.0"
}
},
"node_modules/@codemirror/lint": {
- "version": "0.19.6",
+ "version": "6.5.0",
"license": "MIT",
"dependencies": {
- "@codemirror/gutter": "^0.19.4",
- "@codemirror/panel": "^0.19.0",
- "@codemirror/rangeset": "^0.19.1",
- "@codemirror/state": "^0.19.4",
- "@codemirror/tooltip": "^0.19.16",
- "@codemirror/view": "^0.19.22",
+ "@codemirror/state": "^6.0.0",
+ "@codemirror/view": "^6.0.0",
"crelt": "^1.0.5"
}
},
- "node_modules/@codemirror/matchbrackets": {
- "version": "0.19.4",
- "license": "MIT",
- "dependencies": {
- "@codemirror/language": "^0.19.0",
- "@codemirror/state": "^0.19.0",
- "@codemirror/view": "^0.19.0",
- "@lezer/common": "^0.15.0"
- }
- },
- "node_modules/@codemirror/panel": {
- "version": "0.19.1",
- "license": "MIT",
- "dependencies": {
- "@codemirror/state": "^0.19.0",
- "@codemirror/view": "^0.19.0"
- }
+ "node_modules/@codemirror/state": {
+ "version": "6.4.1",
+ "license": "MIT"
},
- "node_modules/@codemirror/rangeset": {
- "version": "0.19.9",
+ "node_modules/@codemirror/view": {
+ "version": "6.26.2",
"license": "MIT",
"dependencies": {
- "@codemirror/state": "^0.19.0"
+ "@codemirror/state": "^6.4.0",
+ "style-mod": "^4.1.0",
+ "w3c-keyname": "^2.2.4"
}
},
- "node_modules/@codemirror/state": {
- "version": "0.19.9",
- "license": "MIT",
+ "node_modules/@codesandbox/nodebox": {
+ "version": "0.1.8",
+ "license": "SEE LICENSE IN ./LICENSE",
"dependencies": {
- "@codemirror/text": "^0.19.0"
+ "outvariant": "^1.4.0",
+ "strict-event-emitter": "^0.4.3"
}
},
- "node_modules/@codemirror/text": {
- "version": "0.19.6",
- "license": "MIT"
- },
- "node_modules/@codemirror/tooltip": {
- "version": "0.19.16",
- "license": "MIT",
+ "node_modules/@codesandbox/sandpack-client": {
+ "version": "2.13.7",
+ "license": "Apache-2.0",
"dependencies": {
- "@codemirror/state": "^0.19.0",
- "@codemirror/view": "^0.19.0"
+ "@codesandbox/nodebox": "0.1.8",
+ "buffer": "^6.0.3",
+ "dequal": "^2.0.2",
+ "outvariant": "1.4.0",
+ "static-browser-server": "1.0.3"
}
},
- "node_modules/@codemirror/view": {
- "version": "0.19.48",
- "license": "MIT",
+ "node_modules/@codesandbox/sandpack-react": {
+ "version": "2.13.2",
+ "license": "Apache-2.0",
"dependencies": {
- "@codemirror/rangeset": "^0.19.5",
- "@codemirror/state": "^0.19.3",
- "@codemirror/text": "^0.19.0",
- "style-mod": "^4.0.0",
- "w3c-keyname": "^2.2.4"
+ "@codemirror/autocomplete": "^6.4.0",
+ "@codemirror/commands": "^6.1.3",
+ "@codemirror/lang-css": "^6.0.1",
+ "@codemirror/lang-html": "^6.4.0",
+ "@codemirror/lang-javascript": "^6.1.2",
+ "@codemirror/language": "^6.3.2",
+ "@codemirror/state": "^6.2.0",
+ "@codemirror/view": "^6.7.1",
+ "@codesandbox/sandpack-client": "^2.13.2",
+ "@lezer/highlight": "^1.1.3",
+ "@react-hook/intersection-observer": "^3.1.1",
+ "@stitches/core": "^1.2.6",
+ "anser": "^2.1.1",
+ "clean-set": "^1.1.2",
+ "dequal": "^2.0.2",
+ "escape-carriage": "^1.3.1",
+ "lz-string": "^1.4.4",
+ "react-devtools-inline": "4.4.0",
+ "react-is": "^17.0.2"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17 || ^18",
+ "react-dom": "^16.8.0 || ^17 || ^18"
}
},
"node_modules/@colors/colors": {
"version": "1.5.0",
"dev": true,
"license": "MIT",
+ "optional": true,
"engines": {
"node": ">=0.1.90"
}
@@ -3620,127 +2882,6 @@
"kuler": "^2.0.0"
}
},
- "node_modules/@design-systems/utils": {
- "version": "2.12.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.11.2",
- "clsx": "^1.0.4",
- "focus-lock": "^0.8.0",
- "react-merge-refs": "^1.0.0"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": ">= 16.8.6",
- "react-dom": ">= 16.8.6"
- }
- },
- "node_modules/@devtools-ds/object-inspector": {
- "version": "1.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "7.7.2",
- "@devtools-ds/object-parser": "^1.2.0",
- "@devtools-ds/themes": "^1.2.0",
- "@devtools-ds/tree": "^1.2.0",
- "clsx": "1.1.0"
- },
- "peerDependencies": {
- "react": ">= 16.8.6"
- }
- },
- "node_modules/@devtools-ds/object-inspector/node_modules/@babel/runtime": {
- "version": "7.7.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "regenerator-runtime": "^0.13.2"
- }
- },
- "node_modules/@devtools-ds/object-inspector/node_modules/clsx": {
- "version": "1.1.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/@devtools-ds/object-parser": {
- "version": "1.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "~7.5.4"
- }
- },
- "node_modules/@devtools-ds/object-parser/node_modules/@babel/runtime": {
- "version": "7.5.5",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "regenerator-runtime": "^0.13.2"
- }
- },
- "node_modules/@devtools-ds/themes": {
- "version": "1.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "~7.5.4",
- "@design-systems/utils": "2.12.0",
- "clsx": "1.1.0"
- },
- "peerDependencies": {
- "react": ">= 16.8.6"
- }
- },
- "node_modules/@devtools-ds/themes/node_modules/@babel/runtime": {
- "version": "7.5.5",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "regenerator-runtime": "^0.13.2"
- }
- },
- "node_modules/@devtools-ds/themes/node_modules/clsx": {
- "version": "1.1.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/@devtools-ds/tree": {
- "version": "1.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "7.7.2",
- "@devtools-ds/themes": "^1.2.0",
- "clsx": "1.1.0"
- },
- "peerDependencies": {
- "react": ">= 16.8.6"
- }
- },
- "node_modules/@devtools-ds/tree/node_modules/@babel/runtime": {
- "version": "7.7.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "regenerator-runtime": "^0.13.2"
- }
- },
- "node_modules/@devtools-ds/tree/node_modules/clsx": {
- "version": "1.1.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
"node_modules/@discoveryjs/json-ext": {
"version": "0.5.7",
"dev": true,
@@ -3750,28 +2891,51 @@
}
},
"node_modules/@docsearch/css": {
- "version": "3.1.1",
+ "version": "3.6.0",
"license": "MIT"
},
"node_modules/@docsearch/react": {
- "version": "3.1.1",
+ "version": "3.6.0",
"license": "MIT",
"dependencies": {
- "@algolia/autocomplete-core": "1.7.1",
- "@algolia/autocomplete-preset-algolia": "1.7.1",
- "@docsearch/css": "3.1.1",
- "algoliasearch": "^4.0.0"
+ "@algolia/autocomplete-core": "1.9.3",
+ "@algolia/autocomplete-preset-algolia": "1.9.3",
+ "@docsearch/css": "3.6.0",
+ "algoliasearch": "^4.19.1"
},
"peerDependencies": {
"@types/react": ">= 16.8.0 < 19.0.0",
"react": ">= 16.8.0 < 19.0.0",
- "react-dom": ">= 16.8.0 < 19.0.0"
+ "react-dom": ">= 16.8.0 < 19.0.0",
+ "search-insights": ">= 1 < 3"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "react": {
+ "optional": true
+ },
+ "react-dom": {
+ "optional": true
+ },
+ "search-insights": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@emotion/use-insertion-effect-with-fallbacks": {
+ "version": "1.0.1",
+ "dev": true,
+ "license": "MIT",
+ "peerDependencies": {
+ "react": ">=16.8.0"
}
},
"node_modules/@esbuild/android-arm": {
- "version": "0.17.19",
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.19.tgz",
- "integrity": "sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz",
+ "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==",
"cpu": [
"arm"
],
@@ -3785,9 +2949,9 @@
}
},
"node_modules/@esbuild/android-arm64": {
- "version": "0.17.19",
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.19.tgz",
- "integrity": "sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz",
+ "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==",
"cpu": [
"arm64"
],
@@ -3801,9 +2965,9 @@
}
},
"node_modules/@esbuild/android-x64": {
- "version": "0.17.19",
- "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.19.tgz",
- "integrity": "sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz",
+ "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==",
"cpu": [
"x64"
],
@@ -3817,9 +2981,9 @@
}
},
"node_modules/@esbuild/darwin-arm64": {
- "version": "0.17.19",
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.19.tgz",
- "integrity": "sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz",
+ "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==",
"cpu": [
"arm64"
],
@@ -3833,7 +2997,7 @@
}
},
"node_modules/@esbuild/darwin-x64": {
- "version": "0.16.17",
+ "version": "0.18.20",
"cpu": [
"x64"
],
@@ -3848,9 +3012,9 @@
}
},
"node_modules/@esbuild/freebsd-arm64": {
- "version": "0.17.19",
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.19.tgz",
- "integrity": "sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz",
+ "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==",
"cpu": [
"arm64"
],
@@ -3864,9 +3028,9 @@
}
},
"node_modules/@esbuild/freebsd-x64": {
- "version": "0.17.19",
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.19.tgz",
- "integrity": "sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz",
+ "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==",
"cpu": [
"x64"
],
@@ -3880,9 +3044,9 @@
}
},
"node_modules/@esbuild/linux-arm": {
- "version": "0.17.19",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.19.tgz",
- "integrity": "sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz",
+ "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==",
"cpu": [
"arm"
],
@@ -3896,9 +3060,9 @@
}
},
"node_modules/@esbuild/linux-arm64": {
- "version": "0.17.19",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.19.tgz",
- "integrity": "sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz",
+ "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==",
"cpu": [
"arm64"
],
@@ -3912,9 +3076,9 @@
}
},
"node_modules/@esbuild/linux-ia32": {
- "version": "0.17.19",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.19.tgz",
- "integrity": "sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz",
+ "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==",
"cpu": [
"ia32"
],
@@ -3927,26 +3091,10 @@
"node": ">=12"
}
},
- "node_modules/@esbuild/linux-loong64": {
- "version": "0.14.54",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.14.54.tgz",
- "integrity": "sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==",
- "cpu": [
- "loong64"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=12"
- }
- },
"node_modules/@esbuild/linux-mips64el": {
- "version": "0.17.19",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.19.tgz",
- "integrity": "sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz",
+ "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==",
"cpu": [
"mips64el"
],
@@ -3960,9 +3108,9 @@
}
},
"node_modules/@esbuild/linux-ppc64": {
- "version": "0.17.19",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.19.tgz",
- "integrity": "sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz",
+ "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==",
"cpu": [
"ppc64"
],
@@ -3976,9 +3124,9 @@
}
},
"node_modules/@esbuild/linux-riscv64": {
- "version": "0.17.19",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.19.tgz",
- "integrity": "sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz",
+ "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==",
"cpu": [
"riscv64"
],
@@ -3992,9 +3140,9 @@
}
},
"node_modules/@esbuild/linux-s390x": {
- "version": "0.17.19",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.19.tgz",
- "integrity": "sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz",
+ "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==",
"cpu": [
"s390x"
],
@@ -4008,9 +3156,9 @@
}
},
"node_modules/@esbuild/linux-x64": {
- "version": "0.17.19",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.19.tgz",
- "integrity": "sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz",
+ "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==",
"cpu": [
"x64"
],
@@ -4024,9 +3172,9 @@
}
},
"node_modules/@esbuild/netbsd-x64": {
- "version": "0.17.19",
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.19.tgz",
- "integrity": "sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz",
+ "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==",
"cpu": [
"x64"
],
@@ -4040,9 +3188,9 @@
}
},
"node_modules/@esbuild/openbsd-x64": {
- "version": "0.17.19",
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.19.tgz",
- "integrity": "sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz",
+ "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==",
"cpu": [
"x64"
],
@@ -4056,9 +3204,9 @@
}
},
"node_modules/@esbuild/sunos-x64": {
- "version": "0.17.19",
- "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.19.tgz",
- "integrity": "sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz",
+ "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==",
"cpu": [
"x64"
],
@@ -4072,9 +3220,9 @@
}
},
"node_modules/@esbuild/win32-arm64": {
- "version": "0.17.19",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.19.tgz",
- "integrity": "sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz",
+ "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==",
"cpu": [
"arm64"
],
@@ -4088,9 +3236,9 @@
}
},
"node_modules/@esbuild/win32-ia32": {
- "version": "0.17.19",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.19.tgz",
- "integrity": "sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz",
+ "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==",
"cpu": [
"ia32"
],
@@ -4104,9 +3252,9 @@
}
},
"node_modules/@esbuild/win32-x64": {
- "version": "0.17.19",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.19.tgz",
- "integrity": "sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz",
+ "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==",
"cpu": [
"x64"
],
@@ -4119,39 +3267,63 @@
"node": ">=12"
}
},
+ "node_modules/@eslint-community/eslint-utils": {
+ "version": "4.4.0",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "eslint-visitor-keys": "^3.3.0"
+ },
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "peerDependencies": {
+ "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
+ }
+ },
+ "node_modules/@eslint-community/regexpp": {
+ "version": "4.10.0",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
+ }
+ },
"node_modules/@eslint/eslintrc": {
- "version": "1.2.1",
+ "version": "1.4.1",
"dev": true,
"license": "MIT",
"dependencies": {
"ajv": "^6.12.4",
"debug": "^4.3.2",
- "espree": "^9.3.1",
- "globals": "^13.9.0",
+ "espree": "^9.4.0",
+ "globals": "^13.19.0",
"ignore": "^5.2.0",
"import-fresh": "^3.2.1",
"js-yaml": "^4.1.0",
- "minimatch": "^3.0.4",
+ "minimatch": "^3.1.2",
"strip-json-comments": "^3.1.1"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
}
},
- "node_modules/@eslint/eslintrc/node_modules/globals": {
- "version": "13.13.0",
+ "node_modules/@eslint/js": {
+ "version": "8.57.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "type-fest": "^0.20.2"
- },
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
+ "node_modules/@fal-works/esbuild-plugin-global-externals": {
+ "version": "2.1.2",
+ "dev": true,
+ "license": "MIT"
+ },
"node_modules/@floating-ui/core": {
"version": "0.7.3",
"license": "MIT"
@@ -4175,6 +3347,10 @@
"react-dom": ">=16.8.0"
}
},
+ "node_modules/@floating-ui/utils": {
+ "version": "0.2.1",
+ "license": "MIT"
+ },
"node_modules/@gar/promisify": {
"version": "1.1.3",
"dev": true,
@@ -4236,6 +3412,18 @@
"node": ">=10.10.0"
}
},
+ "node_modules/@humanwhocodes/module-importer": {
+ "version": "1.0.1",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=12.22"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/nzakas"
+ }
+ },
"node_modules/@humanwhocodes/object-schema": {
"version": "1.2.1",
"dev": true,
@@ -4249,6 +3437,90 @@
"node": ">=6.9.0"
}
},
+ "node_modules/@isaacs/cliui": {
+ "version": "8.0.2",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "string-width": "^5.1.2",
+ "string-width-cjs": "npm:string-width@^4.2.0",
+ "strip-ansi": "^7.0.1",
+ "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
+ "wrap-ansi": "^8.1.0",
+ "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@isaacs/cliui/node_modules/ansi-regex": {
+ "version": "6.0.1",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
+ }
+ },
+ "node_modules/@isaacs/cliui/node_modules/ansi-styles": {
+ "version": "6.2.1",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/@isaacs/cliui/node_modules/string-width": {
+ "version": "5.1.2",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "eastasianwidth": "^0.2.0",
+ "emoji-regex": "^9.2.2",
+ "strip-ansi": "^7.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@isaacs/cliui/node_modules/strip-ansi": {
+ "version": "7.1.0",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
+ }
+ },
+ "node_modules/@isaacs/cliui/node_modules/wrap-ansi": {
+ "version": "8.1.0",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^6.1.0",
+ "string-width": "^5.0.1",
+ "strip-ansi": "^7.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+ }
+ },
"node_modules/@isaacs/string-locale-compare": {
"version": "1.1.0",
"dev": true,
@@ -4277,14 +3549,6 @@
"sprintf-js": "~1.0.2"
}
},
- "node_modules/@istanbuljs/load-nyc-config/node_modules/camelcase": {
- "version": "5.3.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
"node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": {
"version": "4.1.0",
"dev": true,
@@ -4345,13 +3609,10 @@
"node": ">=8"
}
},
- "node_modules/@istanbuljs/load-nyc-config/node_modules/path-exists": {
- "version": "4.0.0",
+ "node_modules/@istanbuljs/load-nyc-config/node_modules/sprintf-js": {
+ "version": "1.0.3",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
+ "license": "BSD-3-Clause"
},
"node_modules/@istanbuljs/schema": {
"version": "0.1.3",
@@ -4361,106 +3622,57 @@
}
},
"node_modules/@jest/console": {
- "version": "28.1.3",
+ "version": "29.7.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@jest/types": "^28.1.3",
+ "@jest/types": "^29.6.3",
"@types/node": "*",
"chalk": "^4.0.0",
- "jest-message-util": "^28.1.3",
- "jest-util": "^28.1.3",
+ "jest-message-util": "^29.7.0",
+ "jest-util": "^29.7.0",
"slash": "^3.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
- }
- },
- "node_modules/@jest/console/node_modules/ansi-styles": {
- "version": "4.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/@jest/console/node_modules/chalk": {
- "version": "4.1.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/@jest/console/node_modules/has-flag": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@jest/console/node_modules/supports-color": {
- "version": "7.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
"node_modules/@jest/core": {
- "version": "28.1.3",
+ "version": "29.7.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@jest/console": "^28.1.3",
- "@jest/reporters": "^28.1.3",
- "@jest/test-result": "^28.1.3",
- "@jest/transform": "^28.1.3",
- "@jest/types": "^28.1.3",
+ "@jest/console": "^29.7.0",
+ "@jest/reporters": "^29.7.0",
+ "@jest/test-result": "^29.7.0",
+ "@jest/transform": "^29.7.0",
+ "@jest/types": "^29.6.3",
"@types/node": "*",
"ansi-escapes": "^4.2.1",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"exit": "^0.1.2",
"graceful-fs": "^4.2.9",
- "jest-changed-files": "^28.1.3",
- "jest-config": "^28.1.3",
- "jest-haste-map": "^28.1.3",
- "jest-message-util": "^28.1.3",
- "jest-regex-util": "^28.0.2",
- "jest-resolve": "^28.1.3",
- "jest-resolve-dependencies": "^28.1.3",
- "jest-runner": "^28.1.3",
- "jest-runtime": "^28.1.3",
- "jest-snapshot": "^28.1.3",
- "jest-util": "^28.1.3",
- "jest-validate": "^28.1.3",
- "jest-watcher": "^28.1.3",
+ "jest-changed-files": "^29.7.0",
+ "jest-config": "^29.7.0",
+ "jest-haste-map": "^29.7.0",
+ "jest-message-util": "^29.7.0",
+ "jest-regex-util": "^29.6.3",
+ "jest-resolve": "^29.7.0",
+ "jest-resolve-dependencies": "^29.7.0",
+ "jest-runner": "^29.7.0",
+ "jest-runtime": "^29.7.0",
+ "jest-snapshot": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "jest-validate": "^29.7.0",
+ "jest-watcher": "^29.7.0",
"micromatch": "^4.0.4",
- "pretty-format": "^28.1.3",
- "rimraf": "^3.0.0",
+ "pretty-format": "^29.7.0",
"slash": "^3.0.0",
"strip-ansi": "^6.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
},
"peerDependencies": {
"node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
@@ -4472,65 +3684,41 @@
}
},
"node_modules/@jest/core/node_modules/ansi-styles": {
- "version": "4.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/@jest/core/node_modules/chalk": {
- "version": "4.1.2",
+ "version": "5.2.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
"engines": {
"node": ">=10"
},
"funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/@jest/core/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/@jest/core/node_modules/ci-info": {
+ "version": "3.9.0",
"dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/sibiraj-s"
+ }
+ ],
"license": "MIT",
"engines": {
"node": ">=8"
}
},
"node_modules/@jest/core/node_modules/pretty-format": {
- "version": "28.1.3",
+ "version": "29.7.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@jest/schemas": "^28.1.3",
- "ansi-regex": "^5.0.1",
+ "@jest/schemas": "^29.6.3",
"ansi-styles": "^5.0.0",
"react-is": "^18.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
- }
- },
- "node_modules/@jest/core/node_modules/pretty-format/node_modules/ansi-styles": {
- "version": "5.2.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
"node_modules/@jest/core/node_modules/react-is": {
@@ -4538,118 +3726,134 @@
"dev": true,
"license": "MIT"
},
- "node_modules/@jest/core/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/@jest/create-cache-key-function": {
+ "version": "29.7.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
+ "@jest/types": "^29.6.3"
},
"engines": {
- "node": ">=8"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
"node_modules/@jest/environment": {
- "version": "28.1.3",
+ "version": "29.7.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@jest/fake-timers": "^28.1.3",
- "@jest/types": "^28.1.3",
+ "@jest/fake-timers": "^29.7.0",
+ "@jest/types": "^29.6.3",
"@types/node": "*",
- "jest-mock": "^28.1.3"
+ "jest-mock": "^29.7.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
"node_modules/@jest/environment/node_modules/jest-mock": {
- "version": "28.1.3",
+ "version": "29.7.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@jest/types": "^28.1.3",
- "@types/node": "*"
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "jest-util": "^29.7.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
"node_modules/@jest/expect": {
- "version": "28.1.3",
+ "version": "29.7.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "expect": "^28.1.3",
- "jest-snapshot": "^28.1.3"
+ "expect": "^29.7.0",
+ "jest-snapshot": "^29.7.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
"node_modules/@jest/expect-utils": {
- "version": "28.1.3",
+ "version": "29.7.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "jest-get-type": "^28.0.2"
+ "jest-get-type": "^29.6.3"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
"node_modules/@jest/fake-timers": {
- "version": "28.1.3",
+ "version": "29.7.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@jest/types": "^28.1.3",
- "@sinonjs/fake-timers": "^9.1.2",
+ "@jest/types": "^29.6.3",
+ "@sinonjs/fake-timers": "^10.0.2",
"@types/node": "*",
- "jest-message-util": "^28.1.3",
- "jest-mock": "^28.1.3",
- "jest-util": "^28.1.3"
+ "jest-message-util": "^29.7.0",
+ "jest-mock": "^29.7.0",
+ "jest-util": "^29.7.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
"node_modules/@jest/fake-timers/node_modules/jest-mock": {
- "version": "28.1.3",
+ "version": "29.7.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@jest/types": "^28.1.3",
- "@types/node": "*"
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "jest-util": "^29.7.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
"node_modules/@jest/globals": {
- "version": "28.1.3",
+ "version": "29.7.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@jest/environment": "^28.1.3",
- "@jest/expect": "^28.1.3",
- "@jest/types": "^28.1.3"
+ "@jest/environment": "^29.7.0",
+ "@jest/expect": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "jest-mock": "^29.7.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "node_modules/@jest/globals/node_modules/jest-mock": {
+ "version": "29.7.0",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "jest-util": "^29.7.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
"node_modules/@jest/reporters": {
- "version": "28.1.3",
+ "version": "29.7.0",
"dev": true,
"license": "MIT",
"dependencies": {
"@bcoe/v8-coverage": "^0.2.3",
- "@jest/console": "^28.1.3",
- "@jest/test-result": "^28.1.3",
- "@jest/transform": "^28.1.3",
- "@jest/types": "^28.1.3",
- "@jridgewell/trace-mapping": "^0.3.13",
+ "@jest/console": "^29.7.0",
+ "@jest/test-result": "^29.7.0",
+ "@jest/transform": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@jridgewell/trace-mapping": "^0.3.18",
"@types/node": "*",
"chalk": "^4.0.0",
"collect-v8-coverage": "^1.0.0",
@@ -4657,21 +3861,20 @@
"glob": "^7.1.3",
"graceful-fs": "^4.2.9",
"istanbul-lib-coverage": "^3.0.0",
- "istanbul-lib-instrument": "^5.1.0",
+ "istanbul-lib-instrument": "^6.0.0",
"istanbul-lib-report": "^3.0.0",
"istanbul-lib-source-maps": "^4.0.0",
"istanbul-reports": "^3.1.3",
- "jest-message-util": "^28.1.3",
- "jest-util": "^28.1.3",
- "jest-worker": "^28.1.3",
+ "jest-message-util": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "jest-worker": "^29.7.0",
"slash": "^3.0.0",
"string-length": "^4.0.1",
"strip-ansi": "^6.0.0",
- "terminal-link": "^2.0.0",
"v8-to-istanbul": "^9.0.1"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
},
"peerDependencies": {
"node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
@@ -4682,378 +3885,229 @@
}
}
},
- "node_modules/@jest/reporters/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/@jest/reporters/node_modules/istanbul-lib-instrument": {
+ "version": "6.0.2",
"dev": true,
- "license": "MIT",
+ "license": "BSD-3-Clause",
"dependencies": {
- "color-convert": "^2.0.1"
+ "@babel/core": "^7.23.9",
+ "@babel/parser": "^7.23.9",
+ "@istanbuljs/schema": "^0.1.3",
+ "istanbul-lib-coverage": "^3.2.0",
+ "semver": "^7.5.4"
},
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "node": ">=10"
}
},
- "node_modules/@jest/reporters/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/@jest/reporters/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
+ "yallist": "^4.0.0"
},
"engines": {
"node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/@jest/reporters/node_modules/has-flag": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
}
},
- "node_modules/@jest/reporters/node_modules/jest-worker": {
- "version": "28.1.3",
+ "node_modules/@jest/reporters/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "@types/node": "*",
- "merge-stream": "^2.0.0",
- "supports-color": "^8.0.0"
+ "lru-cache": "^6.0.0"
},
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
- }
- },
- "node_modules/@jest/reporters/node_modules/jest-worker/node_modules/supports-color": {
- "version": "8.1.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
+ "bin": {
+ "semver": "bin/semver.js"
},
"engines": {
"node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/supports-color?sponsor=1"
- }
- },
- "node_modules/@jest/reporters/node_modules/supports-color": {
- "version": "7.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
}
},
- "node_modules/@jest/reporters/node_modules/v8-to-istanbul": {
- "version": "9.1.0",
+ "node_modules/@jest/reporters/node_modules/yallist": {
+ "version": "4.0.0",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "@jridgewell/trace-mapping": "^0.3.12",
- "@types/istanbul-lib-coverage": "^2.0.1",
- "convert-source-map": "^1.6.0"
- },
- "engines": {
- "node": ">=10.12.0"
- }
+ "license": "ISC"
},
"node_modules/@jest/schemas": {
- "version": "28.1.3",
+ "version": "29.6.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "@sinclair/typebox": "^0.24.1"
+ "@sinclair/typebox": "^0.27.8"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
"node_modules/@jest/source-map": {
- "version": "28.1.2",
+ "version": "29.6.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "@jridgewell/trace-mapping": "^0.3.13",
+ "@jridgewell/trace-mapping": "^0.3.18",
"callsites": "^3.0.0",
"graceful-fs": "^4.2.9"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
"node_modules/@jest/test-result": {
- "version": "28.1.3",
+ "version": "29.7.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@jest/console": "^28.1.3",
- "@jest/types": "^28.1.3",
+ "@jest/console": "^29.7.0",
+ "@jest/types": "^29.6.3",
"@types/istanbul-lib-coverage": "^2.0.0",
"collect-v8-coverage": "^1.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
"node_modules/@jest/test-sequencer": {
- "version": "28.1.3",
+ "version": "29.7.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@jest/test-result": "^28.1.3",
+ "@jest/test-result": "^29.7.0",
"graceful-fs": "^4.2.9",
- "jest-haste-map": "^28.1.3",
+ "jest-haste-map": "^29.7.0",
"slash": "^3.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
"node_modules/@jest/transform": {
- "version": "28.1.3",
+ "version": "29.7.0",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/core": "^7.11.6",
- "@jest/types": "^28.1.3",
- "@jridgewell/trace-mapping": "^0.3.13",
+ "@jest/types": "^29.6.3",
+ "@jridgewell/trace-mapping": "^0.3.18",
"babel-plugin-istanbul": "^6.1.1",
"chalk": "^4.0.0",
- "convert-source-map": "^1.4.0",
- "fast-json-stable-stringify": "^2.0.0",
+ "convert-source-map": "^2.0.0",
+ "fast-json-stable-stringify": "^2.1.0",
"graceful-fs": "^4.2.9",
- "jest-haste-map": "^28.1.3",
- "jest-regex-util": "^28.0.2",
- "jest-util": "^28.1.3",
+ "jest-haste-map": "^29.7.0",
+ "jest-regex-util": "^29.6.3",
+ "jest-util": "^29.7.0",
"micromatch": "^4.0.4",
"pirates": "^4.0.4",
"slash": "^3.0.0",
- "write-file-atomic": "^4.0.1"
+ "write-file-atomic": "^4.0.2"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@jest/transform/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/@jest/types": {
+ "version": "29.6.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
+ "@jest/schemas": "^29.6.3",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^17.0.8",
+ "chalk": "^4.0.0"
},
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@jest/transform/node_modules/chalk": {
- "version": "4.1.2",
- "dev": true,
+ "node_modules/@jridgewell/gen-mapping": {
+ "version": "0.3.5",
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
+ "@jridgewell/set-array": "^1.2.1",
+ "@jridgewell/sourcemap-codec": "^1.4.10",
+ "@jridgewell/trace-mapping": "^0.3.24"
},
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "node": ">=6.0.0"
}
},
- "node_modules/@jest/transform/node_modules/has-flag": {
- "version": "4.0.0",
- "dev": true,
+ "node_modules/@jridgewell/resolve-uri": {
+ "version": "3.1.2",
"license": "MIT",
"engines": {
- "node": ">=8"
+ "node": ">=6.0.0"
}
},
- "node_modules/@jest/transform/node_modules/supports-color": {
- "version": "7.2.0",
- "dev": true,
+ "node_modules/@jridgewell/set-array": {
+ "version": "1.2.1",
"license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
"engines": {
- "node": ">=8"
+ "node": ">=6.0.0"
}
},
- "node_modules/@jest/transform/node_modules/write-file-atomic": {
- "version": "4.0.2",
+ "node_modules/@jridgewell/source-map": {
+ "version": "0.3.6",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "imurmurhash": "^0.1.4",
- "signal-exit": "^3.0.7"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "@jridgewell/gen-mapping": "^0.3.5",
+ "@jridgewell/trace-mapping": "^0.3.25"
}
},
- "node_modules/@jest/types": {
- "version": "28.1.3",
- "dev": true,
+ "node_modules/@jridgewell/sourcemap-codec": {
+ "version": "1.4.15",
+ "license": "MIT"
+ },
+ "node_modules/@jridgewell/trace-mapping": {
+ "version": "0.3.25",
"license": "MIT",
"dependencies": {
- "@jest/schemas": "^28.1.3",
- "@types/istanbul-lib-coverage": "^2.0.0",
- "@types/istanbul-reports": "^3.0.0",
- "@types/node": "*",
- "@types/yargs": "^17.0.8",
- "chalk": "^4.0.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "@jridgewell/resolve-uri": "^3.1.0",
+ "@jridgewell/sourcemap-codec": "^1.4.14"
}
},
- "node_modules/@jest/types/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/@juggle/resize-observer": {
+ "version": "3.4.0",
+ "dev": true,
+ "license": "Apache-2.0"
+ },
+ "node_modules/@lerna/add": {
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
+ "@lerna/bootstrap": "5.6.2",
+ "@lerna/command": "5.6.2",
+ "@lerna/filter-options": "5.6.2",
+ "@lerna/npm-conf": "5.6.2",
+ "@lerna/validation-error": "5.6.2",
+ "dedent": "^0.7.0",
+ "npm-package-arg": "8.1.1",
+ "p-map": "^4.0.0",
+ "pacote": "^13.6.1",
+ "semver": "^7.3.4"
},
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@jest/types/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/@lerna/add/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
+ "yallist": "^4.0.0"
},
"engines": {
"node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
}
},
- "node_modules/@jest/types/node_modules/has-flag": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@jest/types/node_modules/supports-color": {
- "version": "7.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@jridgewell/gen-mapping": {
- "version": "0.3.2",
- "license": "MIT",
- "dependencies": {
- "@jridgewell/set-array": "^1.0.1",
- "@jridgewell/sourcemap-codec": "^1.4.10",
- "@jridgewell/trace-mapping": "^0.3.9"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@jridgewell/resolve-uri": {
- "version": "3.1.0",
- "license": "MIT",
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@jridgewell/set-array": {
- "version": "1.1.2",
- "license": "MIT",
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@jridgewell/source-map": {
- "version": "0.3.5",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@jridgewell/gen-mapping": "^0.3.0",
- "@jridgewell/trace-mapping": "^0.3.9"
- }
- },
- "node_modules/@jridgewell/sourcemap-codec": {
- "version": "1.4.14",
- "license": "MIT"
- },
- "node_modules/@jridgewell/trace-mapping": {
- "version": "0.3.17",
- "license": "MIT",
- "dependencies": {
- "@jridgewell/resolve-uri": "3.1.0",
- "@jridgewell/sourcemap-codec": "1.4.14"
- }
- },
- "node_modules/@lerna/add": {
- "version": "5.1.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@lerna/bootstrap": "5.1.2",
- "@lerna/command": "5.1.2",
- "@lerna/filter-options": "5.1.2",
- "@lerna/npm-conf": "5.1.1",
- "@lerna/validation-error": "5.1.2",
- "dedent": "^0.7.0",
- "npm-package-arg": "^8.1.0",
- "p-map": "^4.0.0",
- "pacote": "^13.4.1",
- "semver": "^7.3.4"
- },
- "engines": {
- "node": "^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/@lerna/add/node_modules/p-map": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "aggregate-error": "^3.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@lerna/add/node_modules/semver": {
- "version": "7.3.7",
+ "node_modules/@lerna/add/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -5066,28 +4120,33 @@
"node": ">=10"
}
},
- "node_modules/@lerna/bootstrap": {
- "version": "5.1.2",
+ "node_modules/@lerna/add/node_modules/yallist": {
+ "version": "4.0.0",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "@lerna/command": "5.1.2",
- "@lerna/filter-options": "5.1.2",
- "@lerna/has-npm-version": "5.1.1",
- "@lerna/npm-install": "5.1.2",
- "@lerna/package-graph": "5.1.2",
- "@lerna/pulse-till-done": "5.1.2",
- "@lerna/rimraf-dir": "5.1.2",
- "@lerna/run-lifecycle": "5.1.2",
- "@lerna/run-topologically": "5.1.2",
- "@lerna/symlink-binary": "5.1.2",
- "@lerna/symlink-dependencies": "5.1.2",
- "@lerna/validation-error": "5.1.2",
- "@npmcli/arborist": "5.2.0",
+ "license": "ISC"
+ },
+ "node_modules/@lerna/bootstrap": {
+ "version": "5.6.2",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@lerna/command": "5.6.2",
+ "@lerna/filter-options": "5.6.2",
+ "@lerna/has-npm-version": "5.6.2",
+ "@lerna/npm-install": "5.6.2",
+ "@lerna/package-graph": "5.6.2",
+ "@lerna/pulse-till-done": "5.6.2",
+ "@lerna/rimraf-dir": "5.6.2",
+ "@lerna/run-lifecycle": "5.6.2",
+ "@lerna/run-topologically": "5.6.2",
+ "@lerna/symlink-binary": "5.6.2",
+ "@lerna/symlink-dependencies": "5.6.2",
+ "@lerna/validation-error": "5.6.2",
+ "@npmcli/arborist": "5.3.0",
"dedent": "^0.7.0",
"get-port": "^5.1.1",
"multimatch": "^5.0.0",
- "npm-package-arg": "^8.1.0",
+ "npm-package-arg": "8.1.1",
"npmlog": "^6.0.2",
"p-map": "^4.0.0",
"p-map-series": "^2.1.0",
@@ -5098,66 +4157,19 @@
"node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/bootstrap/node_modules/are-we-there-yet": {
- "version": "3.0.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
- }
- },
- "node_modules/@lerna/bootstrap/node_modules/gauge": {
- "version": "4.0.4",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/@lerna/bootstrap/node_modules/npmlog": {
- "version": "6.0.2",
+ "node_modules/@lerna/bootstrap/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
"license": "ISC",
"dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/@lerna/bootstrap/node_modules/p-map": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "aggregate-error": "^3.0.0"
+ "yallist": "^4.0.0"
},
"engines": {
"node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/@lerna/bootstrap/node_modules/semver": {
- "version": "7.3.7",
+ "version": "7.6.0",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -5170,35 +4182,40 @@
"node": ">=10"
}
},
+ "node_modules/@lerna/bootstrap/node_modules/yallist": {
+ "version": "4.0.0",
+ "dev": true,
+ "license": "ISC"
+ },
"node_modules/@lerna/changed": {
- "version": "5.1.2",
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "@lerna/collect-updates": "5.1.2",
- "@lerna/command": "5.1.2",
- "@lerna/listable": "5.1.2",
- "@lerna/output": "5.1.2"
+ "@lerna/collect-updates": "5.6.2",
+ "@lerna/command": "5.6.2",
+ "@lerna/listable": "5.6.2",
+ "@lerna/output": "5.6.2"
},
"engines": {
"node": "^14.15.0 || >=16.0.0"
}
},
"node_modules/@lerna/check-working-tree": {
- "version": "5.1.2",
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "@lerna/collect-uncommitted": "5.1.2",
- "@lerna/describe-ref": "5.1.2",
- "@lerna/validation-error": "5.1.2"
+ "@lerna/collect-uncommitted": "5.6.2",
+ "@lerna/describe-ref": "5.6.2",
+ "@lerna/validation-error": "5.6.2"
},
"engines": {
"node": "^14.15.0 || >=16.0.0"
}
},
"node_modules/@lerna/child-process": {
- "version": "5.1.1",
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5210,438 +4227,432 @@
"node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/child-process/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/@lerna/clean": {
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
+ "@lerna/command": "5.6.2",
+ "@lerna/filter-options": "5.6.2",
+ "@lerna/prompt": "5.6.2",
+ "@lerna/pulse-till-done": "5.6.2",
+ "@lerna/rimraf-dir": "5.6.2",
+ "p-map": "^4.0.0",
+ "p-map-series": "^2.1.0",
+ "p-waterfall": "^2.1.1"
},
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/child-process/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/@lerna/cli": {
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
+ "@lerna/global-options": "5.6.2",
+ "dedent": "^0.7.0",
+ "npmlog": "^6.0.2",
+ "yargs": "^16.2.0"
},
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/child-process/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/@lerna/cli/node_modules/yargs": {
+ "version": "16.2.0",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "cliui": "^7.0.2",
+ "escalade": "^3.1.1",
+ "get-caller-file": "^2.0.5",
+ "require-directory": "^2.1.1",
+ "string-width": "^4.2.0",
+ "y18n": "^5.0.5",
+ "yargs-parser": "^20.2.2"
+ },
"engines": {
- "node": ">=8"
+ "node": ">=10"
}
},
- "node_modules/@lerna/child-process/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/@lerna/collect-uncommitted": {
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
+ "@lerna/child-process": "5.6.2",
+ "chalk": "^4.1.0",
+ "npmlog": "^6.0.2"
},
"engines": {
- "node": ">=8"
+ "node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/clean": {
- "version": "5.1.2",
+ "node_modules/@lerna/collect-updates": {
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "@lerna/command": "5.1.2",
- "@lerna/filter-options": "5.1.2",
- "@lerna/prompt": "5.1.2",
- "@lerna/pulse-till-done": "5.1.2",
- "@lerna/rimraf-dir": "5.1.2",
- "p-map": "^4.0.0",
- "p-map-series": "^2.1.0",
- "p-waterfall": "^2.1.1"
+ "@lerna/child-process": "5.6.2",
+ "@lerna/describe-ref": "5.6.2",
+ "minimatch": "^3.0.4",
+ "npmlog": "^6.0.2",
+ "slash": "^3.0.0"
},
"engines": {
"node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/clean/node_modules/p-map": {
- "version": "4.0.0",
+ "node_modules/@lerna/command": {
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "aggregate-error": "^3.0.0"
+ "@lerna/child-process": "5.6.2",
+ "@lerna/package-graph": "5.6.2",
+ "@lerna/project": "5.6.2",
+ "@lerna/validation-error": "5.6.2",
+ "@lerna/write-log-file": "5.6.2",
+ "clone-deep": "^4.0.1",
+ "dedent": "^0.7.0",
+ "execa": "^5.0.0",
+ "is-ci": "^2.0.0",
+ "npmlog": "^6.0.2"
},
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/cli": {
- "version": "5.1.2",
+ "node_modules/@lerna/conventional-commits": {
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "@lerna/global-options": "5.1.1",
- "dedent": "^0.7.0",
+ "@lerna/validation-error": "5.6.2",
+ "conventional-changelog-angular": "^5.0.12",
+ "conventional-changelog-core": "^4.2.4",
+ "conventional-recommended-bump": "^6.1.0",
+ "fs-extra": "^9.1.0",
+ "get-stream": "^6.0.0",
+ "npm-package-arg": "8.1.1",
"npmlog": "^6.0.2",
- "yargs": "^16.2.0"
+ "pify": "^5.0.0",
+ "semver": "^7.3.4"
},
"engines": {
"node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/cli/node_modules/are-we-there-yet": {
- "version": "3.0.0",
+ "node_modules/@lerna/conventional-commits/node_modules/fs-extra": {
+ "version": "9.1.0",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
+ "at-least-node": "^1.0.0",
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "node": ">=10"
}
},
- "node_modules/@lerna/cli/node_modules/gauge": {
- "version": "4.0.4",
+ "node_modules/@lerna/conventional-commits/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
"license": "ISC",
"dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
+ "yallist": "^4.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=10"
}
},
- "node_modules/@lerna/cli/node_modules/npmlog": {
- "version": "6.0.2",
+ "node_modules/@lerna/conventional-commits/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
"license": "ISC",
"dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=10"
}
},
- "node_modules/@lerna/collect-uncommitted": {
- "version": "5.1.2",
+ "node_modules/@lerna/conventional-commits/node_modules/yallist": {
+ "version": "4.0.0",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/@lerna/create": {
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "@lerna/child-process": "5.1.1",
- "chalk": "^4.1.0",
- "npmlog": "^6.0.2"
+ "@lerna/child-process": "5.6.2",
+ "@lerna/command": "5.6.2",
+ "@lerna/npm-conf": "5.6.2",
+ "@lerna/validation-error": "5.6.2",
+ "dedent": "^0.7.0",
+ "fs-extra": "^9.1.0",
+ "init-package-json": "^3.0.2",
+ "npm-package-arg": "8.1.1",
+ "p-reduce": "^2.1.0",
+ "pacote": "^13.6.1",
+ "pify": "^5.0.0",
+ "semver": "^7.3.4",
+ "slash": "^3.0.0",
+ "validate-npm-package-license": "^3.0.4",
+ "validate-npm-package-name": "^4.0.0",
+ "yargs-parser": "20.2.4"
},
"engines": {
"node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/collect-uncommitted/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/@lerna/create-symlink": {
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
+ "cmd-shim": "^5.0.0",
+ "fs-extra": "^9.1.0",
+ "npmlog": "^6.0.2"
},
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/collect-uncommitted/node_modules/are-we-there-yet": {
- "version": "3.0.0",
+ "node_modules/@lerna/create-symlink/node_modules/fs-extra": {
+ "version": "9.1.0",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
+ "at-least-node": "^1.0.0",
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "node": ">=10"
}
},
- "node_modules/@lerna/collect-uncommitted/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/@lerna/create/node_modules/fs-extra": {
+ "version": "9.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
+ "at-least-node": "^1.0.0",
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
},
"engines": {
"node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
}
},
- "node_modules/@lerna/collect-uncommitted/node_modules/gauge": {
- "version": "4.0.4",
+ "node_modules/@lerna/create/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
"license": "ISC",
"dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
+ "yallist": "^4.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/@lerna/collect-uncommitted/node_modules/has-flag": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
+ "node": ">=10"
}
},
- "node_modules/@lerna/collect-uncommitted/node_modules/npmlog": {
- "version": "6.0.2",
+ "node_modules/@lerna/create/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
"license": "ISC",
"dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=10"
}
},
- "node_modules/@lerna/collect-uncommitted/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/@lerna/create/node_modules/yallist": {
+ "version": "4.0.0",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/@lerna/describe-ref": {
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
+ "@lerna/child-process": "5.6.2",
+ "npmlog": "^6.0.2"
},
"engines": {
- "node": ">=8"
+ "node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/collect-updates": {
- "version": "5.1.2",
+ "node_modules/@lerna/diff": {
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "@lerna/child-process": "5.1.1",
- "@lerna/describe-ref": "5.1.2",
- "minimatch": "^3.0.4",
- "npmlog": "^6.0.2",
- "slash": "^3.0.0"
+ "@lerna/child-process": "5.6.2",
+ "@lerna/command": "5.6.2",
+ "@lerna/validation-error": "5.6.2",
+ "npmlog": "^6.0.2"
},
"engines": {
"node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/collect-updates/node_modules/are-we-there-yet": {
- "version": "3.0.0",
+ "node_modules/@lerna/exec": {
+ "version": "5.6.2",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
+ "@lerna/child-process": "5.6.2",
+ "@lerna/command": "5.6.2",
+ "@lerna/filter-options": "5.6.2",
+ "@lerna/profiler": "5.6.2",
+ "@lerna/run-topologically": "5.6.2",
+ "@lerna/validation-error": "5.6.2",
+ "p-map": "^4.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/collect-updates/node_modules/gauge": {
- "version": "4.0.4",
+ "node_modules/@lerna/filter-options": {
+ "version": "5.6.2",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
+ "@lerna/collect-updates": "5.6.2",
+ "@lerna/filter-packages": "5.6.2",
+ "dedent": "^0.7.0",
+ "npmlog": "^6.0.2"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/collect-updates/node_modules/npmlog": {
- "version": "6.0.2",
+ "node_modules/@lerna/filter-packages": {
+ "version": "5.6.2",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
+ "@lerna/validation-error": "5.6.2",
+ "multimatch": "^5.0.0",
+ "npmlog": "^6.0.2"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/command": {
- "version": "5.1.2",
+ "node_modules/@lerna/get-npm-exec-opts": {
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "@lerna/child-process": "5.1.1",
- "@lerna/package-graph": "5.1.2",
- "@lerna/project": "5.1.2",
- "@lerna/validation-error": "5.1.2",
- "@lerna/write-log-file": "5.1.2",
- "clone-deep": "^4.0.1",
- "dedent": "^0.7.0",
- "execa": "^5.0.0",
- "is-ci": "^2.0.0",
"npmlog": "^6.0.2"
},
"engines": {
"node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/command/node_modules/are-we-there-yet": {
- "version": "3.0.0",
+ "node_modules/@lerna/get-packed": {
+ "version": "5.6.2",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
+ "fs-extra": "^9.1.0",
+ "ssri": "^9.0.1",
+ "tar": "^6.1.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/command/node_modules/gauge": {
- "version": "4.0.4",
+ "node_modules/@lerna/get-packed/node_modules/fs-extra": {
+ "version": "9.1.0",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
+ "at-least-node": "^1.0.0",
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=10"
}
},
- "node_modules/@lerna/command/node_modules/npmlog": {
- "version": "6.0.2",
+ "node_modules/@lerna/github-client": {
+ "version": "5.6.2",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
+ "@lerna/child-process": "5.6.2",
+ "@octokit/plugin-enterprise-rest": "^6.0.1",
+ "@octokit/rest": "^19.0.3",
+ "git-url-parse": "^13.1.0",
+ "npmlog": "^6.0.2"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/conventional-commits": {
- "version": "5.1.2",
+ "node_modules/@lerna/gitlab-client": {
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "@lerna/validation-error": "5.1.2",
- "conventional-changelog-angular": "^5.0.12",
- "conventional-changelog-core": "^4.2.2",
- "conventional-recommended-bump": "^6.1.0",
- "fs-extra": "^9.1.0",
- "get-stream": "^6.0.0",
- "npm-package-arg": "^8.1.0",
- "npmlog": "^6.0.2",
- "pify": "^5.0.0",
- "semver": "^7.3.4"
+ "node-fetch": "^2.6.1",
+ "npmlog": "^6.0.2"
},
"engines": {
"node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/conventional-commits/node_modules/are-we-there-yet": {
- "version": "3.0.0",
+ "node_modules/@lerna/global-options": {
+ "version": "5.6.2",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
- },
+ "license": "MIT",
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/conventional-commits/node_modules/gauge": {
- "version": "4.0.4",
+ "node_modules/@lerna/has-npm-version": {
+ "version": "5.6.2",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
+ "@lerna/child-process": "5.6.2",
+ "semver": "^7.3.4"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/conventional-commits/node_modules/npmlog": {
- "version": "6.0.2",
+ "node_modules/@lerna/has-npm-version/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
"license": "ISC",
"dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
+ "yallist": "^4.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=10"
}
},
- "node_modules/@lerna/conventional-commits/node_modules/semver": {
- "version": "7.3.7",
+ "node_modules/@lerna/has-npm-version/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -5654,571 +4665,567 @@
"node": ">=10"
}
},
- "node_modules/@lerna/create": {
- "version": "5.1.2",
+ "node_modules/@lerna/has-npm-version/node_modules/yallist": {
+ "version": "4.0.0",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/@lerna/import": {
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "@lerna/child-process": "5.1.1",
- "@lerna/command": "5.1.2",
- "@lerna/npm-conf": "5.1.1",
- "@lerna/validation-error": "5.1.2",
+ "@lerna/child-process": "5.6.2",
+ "@lerna/command": "5.6.2",
+ "@lerna/prompt": "5.6.2",
+ "@lerna/pulse-till-done": "5.6.2",
+ "@lerna/validation-error": "5.6.2",
"dedent": "^0.7.0",
"fs-extra": "^9.1.0",
- "globby": "^11.0.2",
- "init-package-json": "^2.0.2",
- "npm-package-arg": "^8.1.0",
- "p-reduce": "^2.1.0",
- "pacote": "^13.4.1",
- "pify": "^5.0.0",
- "semver": "^7.3.4",
- "slash": "^3.0.0",
- "validate-npm-package-license": "^3.0.4",
- "validate-npm-package-name": "^3.0.0",
- "whatwg-url": "^8.4.0",
- "yargs-parser": "20.2.4"
+ "p-map-series": "^2.1.0"
},
"engines": {
"node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/create-symlink": {
- "version": "5.1.2",
+ "node_modules/@lerna/import/node_modules/fs-extra": {
+ "version": "9.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "cmd-shim": "^4.1.0",
- "fs-extra": "^9.1.0",
- "npmlog": "^6.0.2"
+ "at-least-node": "^1.0.0",
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
},
"engines": {
- "node": "^14.15.0 || >=16.0.0"
+ "node": ">=10"
}
},
- "node_modules/@lerna/create-symlink/node_modules/are-we-there-yet": {
- "version": "3.0.0",
+ "node_modules/@lerna/info": {
+ "version": "5.6.2",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
+ "@lerna/command": "5.6.2",
+ "@lerna/output": "5.6.2",
+ "envinfo": "^7.7.4"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/create-symlink/node_modules/gauge": {
- "version": "4.0.4",
+ "node_modules/@lerna/init": {
+ "version": "5.6.2",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
+ "@lerna/child-process": "5.6.2",
+ "@lerna/command": "5.6.2",
+ "@lerna/project": "5.6.2",
+ "fs-extra": "^9.1.0",
+ "p-map": "^4.0.0",
+ "write-json-file": "^4.3.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/create-symlink/node_modules/npmlog": {
- "version": "6.0.2",
+ "node_modules/@lerna/init/node_modules/fs-extra": {
+ "version": "9.1.0",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
+ "at-least-node": "^1.0.0",
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=10"
}
},
- "node_modules/@lerna/create/node_modules/semver": {
- "version": "7.3.7",
+ "node_modules/@lerna/link": {
+ "version": "5.6.2",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
+ "@lerna/command": "5.6.2",
+ "@lerna/package-graph": "5.6.2",
+ "@lerna/symlink-dependencies": "5.6.2",
+ "@lerna/validation-error": "5.6.2",
+ "p-map": "^4.0.0",
+ "slash": "^3.0.0"
},
"engines": {
- "node": ">=10"
+ "node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/describe-ref": {
- "version": "5.1.2",
+ "node_modules/@lerna/list": {
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "@lerna/child-process": "5.1.1",
- "npmlog": "^6.0.2"
+ "@lerna/command": "5.6.2",
+ "@lerna/filter-options": "5.6.2",
+ "@lerna/listable": "5.6.2",
+ "@lerna/output": "5.6.2"
},
"engines": {
"node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/describe-ref/node_modules/are-we-there-yet": {
- "version": "3.0.0",
+ "node_modules/@lerna/listable": {
+ "version": "5.6.2",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
+ "@lerna/query-graph": "5.6.2",
+ "chalk": "^4.1.0",
+ "columnify": "^1.6.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/describe-ref/node_modules/gauge": {
- "version": "4.0.4",
+ "node_modules/@lerna/log-packed": {
+ "version": "5.6.2",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
+ "byte-size": "^7.0.0",
+ "columnify": "^1.6.0",
"has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
+ "npmlog": "^6.0.2"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/describe-ref/node_modules/npmlog": {
- "version": "6.0.2",
+ "node_modules/@lerna/npm-conf": {
+ "version": "5.6.2",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
+ "config-chain": "^1.1.12",
+ "pify": "^5.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/diff": {
- "version": "5.1.2",
+ "node_modules/@lerna/npm-dist-tag": {
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "@lerna/child-process": "5.1.1",
- "@lerna/command": "5.1.2",
- "@lerna/validation-error": "5.1.2",
+ "@lerna/otplease": "5.6.2",
+ "npm-package-arg": "8.1.1",
+ "npm-registry-fetch": "^13.3.0",
"npmlog": "^6.0.2"
},
"engines": {
"node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/diff/node_modules/are-we-there-yet": {
- "version": "3.0.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
- }
- },
- "node_modules/@lerna/diff/node_modules/gauge": {
- "version": "4.0.4",
+ "node_modules/@lerna/npm-install": {
+ "version": "5.6.2",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
+ "@lerna/child-process": "5.6.2",
+ "@lerna/get-npm-exec-opts": "5.6.2",
+ "fs-extra": "^9.1.0",
+ "npm-package-arg": "8.1.1",
+ "npmlog": "^6.0.2",
+ "signal-exit": "^3.0.3",
+ "write-pkg": "^4.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/diff/node_modules/npmlog": {
- "version": "6.0.2",
+ "node_modules/@lerna/npm-install/node_modules/fs-extra": {
+ "version": "9.1.0",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
+ "at-least-node": "^1.0.0",
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=10"
}
},
- "node_modules/@lerna/exec": {
- "version": "5.1.2",
+ "node_modules/@lerna/npm-publish": {
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "@lerna/child-process": "5.1.1",
- "@lerna/command": "5.1.2",
- "@lerna/filter-options": "5.1.2",
- "@lerna/profiler": "5.1.2",
- "@lerna/run-topologically": "5.1.2",
- "@lerna/validation-error": "5.1.2",
- "p-map": "^4.0.0"
+ "@lerna/otplease": "5.6.2",
+ "@lerna/run-lifecycle": "5.6.2",
+ "fs-extra": "^9.1.0",
+ "libnpmpublish": "^6.0.4",
+ "npm-package-arg": "8.1.1",
+ "npmlog": "^6.0.2",
+ "pify": "^5.0.0",
+ "read-package-json": "^5.0.1"
},
"engines": {
"node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/exec/node_modules/p-map": {
- "version": "4.0.0",
+ "node_modules/@lerna/npm-publish/node_modules/fs-extra": {
+ "version": "9.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "aggregate-error": "^3.0.0"
+ "at-least-node": "^1.0.0",
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
},
"engines": {
"node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/@lerna/filter-options": {
- "version": "5.1.2",
+ "node_modules/@lerna/npm-run-script": {
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "@lerna/collect-updates": "5.1.2",
- "@lerna/filter-packages": "5.1.2",
- "dedent": "^0.7.0",
+ "@lerna/child-process": "5.6.2",
+ "@lerna/get-npm-exec-opts": "5.6.2",
"npmlog": "^6.0.2"
},
"engines": {
"node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/filter-options/node_modules/are-we-there-yet": {
- "version": "3.0.0",
+ "node_modules/@lerna/otplease": {
+ "version": "5.6.2",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
+ "@lerna/prompt": "5.6.2"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/filter-options/node_modules/gauge": {
- "version": "4.0.4",
+ "node_modules/@lerna/output": {
+ "version": "5.6.2",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
+ "npmlog": "^6.0.2"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/filter-options/node_modules/npmlog": {
- "version": "6.0.2",
+ "node_modules/@lerna/pack-directory": {
+ "version": "5.6.2",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
+ "@lerna/get-packed": "5.6.2",
+ "@lerna/package": "5.6.2",
+ "@lerna/run-lifecycle": "5.6.2",
+ "@lerna/temp-write": "5.6.2",
+ "npm-packlist": "^5.1.1",
+ "npmlog": "^6.0.2",
+ "tar": "^6.1.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/filter-packages": {
- "version": "5.1.2",
+ "node_modules/@lerna/package": {
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "@lerna/validation-error": "5.1.2",
- "multimatch": "^5.0.0",
- "npmlog": "^6.0.2"
+ "load-json-file": "^6.2.0",
+ "npm-package-arg": "8.1.1",
+ "write-pkg": "^4.0.0"
},
"engines": {
"node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/filter-packages/node_modules/are-we-there-yet": {
- "version": "3.0.0",
+ "node_modules/@lerna/package-graph": {
+ "version": "5.6.2",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
+ "@lerna/prerelease-id-from-version": "5.6.2",
+ "@lerna/validation-error": "5.6.2",
+ "npm-package-arg": "8.1.1",
+ "npmlog": "^6.0.2",
+ "semver": "^7.3.4"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/filter-packages/node_modules/gauge": {
- "version": "4.0.4",
+ "node_modules/@lerna/package-graph/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
"license": "ISC",
"dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
+ "yallist": "^4.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=10"
}
},
- "node_modules/@lerna/filter-packages/node_modules/npmlog": {
- "version": "6.0.2",
+ "node_modules/@lerna/package-graph/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
"license": "ISC",
"dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=10"
}
},
- "node_modules/@lerna/get-npm-exec-opts": {
- "version": "5.1.2",
+ "node_modules/@lerna/package-graph/node_modules/yallist": {
+ "version": "4.0.0",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/@lerna/prerelease-id-from-version": {
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "npmlog": "^6.0.2"
+ "semver": "^7.3.4"
},
"engines": {
"node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/get-npm-exec-opts/node_modules/are-we-there-yet": {
- "version": "3.0.0",
+ "node_modules/@lerna/prerelease-id-from-version/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
"license": "ISC",
"dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
+ "yallist": "^4.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "node": ">=10"
}
},
- "node_modules/@lerna/get-npm-exec-opts/node_modules/gauge": {
- "version": "4.0.4",
+ "node_modules/@lerna/prerelease-id-from-version/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
"license": "ISC",
"dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=10"
}
},
- "node_modules/@lerna/get-npm-exec-opts/node_modules/npmlog": {
- "version": "6.0.2",
+ "node_modules/@lerna/prerelease-id-from-version/node_modules/yallist": {
+ "version": "4.0.0",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
+ "license": "ISC"
},
- "node_modules/@lerna/get-packed": {
- "version": "5.1.1",
+ "node_modules/@lerna/profiler": {
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
"fs-extra": "^9.1.0",
- "ssri": "^8.0.1",
- "tar": "^6.1.0"
+ "npmlog": "^6.0.2",
+ "upath": "^2.0.1"
},
"engines": {
"node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/github-client": {
- "version": "5.1.2",
+ "node_modules/@lerna/profiler/node_modules/fs-extra": {
+ "version": "9.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@lerna/child-process": "5.1.1",
- "@octokit/plugin-enterprise-rest": "^6.0.1",
- "@octokit/rest": "^18.1.0",
- "git-url-parse": "^11.4.4",
- "npmlog": "^6.0.2"
+ "at-least-node": "^1.0.0",
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
},
"engines": {
- "node": "^14.15.0 || >=16.0.0"
+ "node": ">=10"
}
},
- "node_modules/@lerna/github-client/node_modules/are-we-there-yet": {
- "version": "3.0.0",
+ "node_modules/@lerna/project": {
+ "version": "5.6.2",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
+ "@lerna/package": "5.6.2",
+ "@lerna/validation-error": "5.6.2",
+ "cosmiconfig": "^7.0.0",
+ "dedent": "^0.7.0",
+ "dot-prop": "^6.0.1",
+ "glob-parent": "^5.1.1",
+ "globby": "^11.0.2",
+ "js-yaml": "^4.1.0",
+ "load-json-file": "^6.2.0",
+ "npmlog": "^6.0.2",
+ "p-map": "^4.0.0",
+ "resolve-from": "^5.0.0",
+ "write-json-file": "^4.3.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/github-client/node_modules/gauge": {
- "version": "4.0.4",
+ "node_modules/@lerna/project/node_modules/glob-parent": {
+ "version": "5.1.2",
"dev": true,
"license": "ISC",
"dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
+ "is-glob": "^4.0.1"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">= 6"
}
},
- "node_modules/@lerna/github-client/node_modules/npmlog": {
- "version": "6.0.2",
+ "node_modules/@lerna/prompt": {
+ "version": "5.6.2",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
+ "inquirer": "^8.2.4",
+ "npmlog": "^6.0.2"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/gitlab-client": {
- "version": "5.1.2",
+ "node_modules/@lerna/prompt/node_modules/inquirer": {
+ "version": "8.2.6",
"dev": true,
"license": "MIT",
"dependencies": {
- "node-fetch": "^2.6.1",
- "npmlog": "^6.0.2",
- "whatwg-url": "^8.4.0"
+ "ansi-escapes": "^4.2.1",
+ "chalk": "^4.1.1",
+ "cli-cursor": "^3.1.0",
+ "cli-width": "^3.0.0",
+ "external-editor": "^3.0.3",
+ "figures": "^3.0.0",
+ "lodash": "^4.17.21",
+ "mute-stream": "0.0.8",
+ "ora": "^5.4.1",
+ "run-async": "^2.4.0",
+ "rxjs": "^7.5.5",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0",
+ "through": "^2.3.6",
+ "wrap-ansi": "^6.0.1"
},
"engines": {
- "node": "^14.15.0 || >=16.0.0"
+ "node": ">=12.0.0"
}
},
- "node_modules/@lerna/gitlab-client/node_modules/are-we-there-yet": {
- "version": "3.0.0",
+ "node_modules/@lerna/prompt/node_modules/rxjs": {
+ "version": "7.8.1",
"dev": true,
- "license": "ISC",
+ "license": "Apache-2.0",
"dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "tslib": "^2.1.0"
}
},
- "node_modules/@lerna/gitlab-client/node_modules/gauge": {
- "version": "4.0.4",
+ "node_modules/@lerna/prompt/node_modules/wrap-ansi": {
+ "version": "6.2.0",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=8"
}
},
- "node_modules/@lerna/gitlab-client/node_modules/npmlog": {
- "version": "6.0.2",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
+ "node_modules/@lerna/publish": {
+ "version": "5.6.2",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@lerna/check-working-tree": "5.6.2",
+ "@lerna/child-process": "5.6.2",
+ "@lerna/collect-updates": "5.6.2",
+ "@lerna/command": "5.6.2",
+ "@lerna/describe-ref": "5.6.2",
+ "@lerna/log-packed": "5.6.2",
+ "@lerna/npm-conf": "5.6.2",
+ "@lerna/npm-dist-tag": "5.6.2",
+ "@lerna/npm-publish": "5.6.2",
+ "@lerna/otplease": "5.6.2",
+ "@lerna/output": "5.6.2",
+ "@lerna/pack-directory": "5.6.2",
+ "@lerna/prerelease-id-from-version": "5.6.2",
+ "@lerna/prompt": "5.6.2",
+ "@lerna/pulse-till-done": "5.6.2",
+ "@lerna/run-lifecycle": "5.6.2",
+ "@lerna/run-topologically": "5.6.2",
+ "@lerna/validation-error": "5.6.2",
+ "@lerna/version": "5.6.2",
+ "fs-extra": "^9.1.0",
+ "libnpmaccess": "^6.0.3",
+ "npm-package-arg": "8.1.1",
+ "npm-registry-fetch": "^13.3.0",
+ "npmlog": "^6.0.2",
+ "p-map": "^4.0.0",
+ "p-pipe": "^3.1.0",
+ "pacote": "^13.6.1",
+ "semver": "^7.3.4"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/global-options": {
- "version": "5.1.1",
+ "node_modules/@lerna/publish/node_modules/fs-extra": {
+ "version": "9.1.0",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "at-least-node": "^1.0.0",
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
"engines": {
- "node": "^14.15.0 || >=16.0.0"
+ "node": ">=10"
}
},
- "node_modules/@lerna/has-npm-version": {
- "version": "5.1.1",
+ "node_modules/@lerna/publish/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "@lerna/child-process": "5.1.1",
- "semver": "^7.3.4"
+ "yallist": "^4.0.0"
},
"engines": {
- "node": "^14.15.0 || >=16.0.0"
+ "node": ">=10"
}
},
- "node_modules/@lerna/has-npm-version/node_modules/semver": {
- "version": "7.3.7",
+ "node_modules/@lerna/publish/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -6231,1018 +5238,895 @@
"node": ">=10"
}
},
- "node_modules/@lerna/import": {
- "version": "5.1.2",
+ "node_modules/@lerna/publish/node_modules/yallist": {
+ "version": "4.0.0",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/@lerna/pulse-till-done": {
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "@lerna/child-process": "5.1.1",
- "@lerna/command": "5.1.2",
- "@lerna/prompt": "5.1.2",
- "@lerna/pulse-till-done": "5.1.2",
- "@lerna/validation-error": "5.1.2",
- "dedent": "^0.7.0",
- "fs-extra": "^9.1.0",
- "p-map-series": "^2.1.0"
+ "npmlog": "^6.0.2"
},
"engines": {
"node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/info": {
- "version": "5.1.2",
+ "node_modules/@lerna/query-graph": {
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "@lerna/command": "5.1.2",
- "@lerna/output": "5.1.2",
- "envinfo": "^7.7.4"
+ "@lerna/package-graph": "5.6.2"
},
"engines": {
"node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/init": {
- "version": "5.1.2",
+ "node_modules/@lerna/resolve-symlink": {
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "@lerna/child-process": "5.1.1",
- "@lerna/command": "5.1.2",
"fs-extra": "^9.1.0",
- "p-map": "^4.0.0",
- "write-json-file": "^4.3.0"
+ "npmlog": "^6.0.2",
+ "read-cmd-shim": "^3.0.0"
},
"engines": {
"node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/init/node_modules/p-map": {
- "version": "4.0.0",
+ "node_modules/@lerna/resolve-symlink/node_modules/fs-extra": {
+ "version": "9.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "aggregate-error": "^3.0.0"
+ "at-least-node": "^1.0.0",
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
},
"engines": {
"node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/@lerna/link": {
- "version": "5.1.2",
+ "node_modules/@lerna/rimraf-dir": {
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "@lerna/command": "5.1.2",
- "@lerna/package-graph": "5.1.2",
- "@lerna/symlink-dependencies": "5.1.2",
- "p-map": "^4.0.0",
- "slash": "^3.0.0"
+ "@lerna/child-process": "5.6.2",
+ "npmlog": "^6.0.2",
+ "path-exists": "^4.0.0",
+ "rimraf": "^3.0.2"
},
"engines": {
"node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/link/node_modules/p-map": {
- "version": "4.0.0",
+ "node_modules/@lerna/run": {
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "aggregate-error": "^3.0.0"
+ "@lerna/command": "5.6.2",
+ "@lerna/filter-options": "5.6.2",
+ "@lerna/npm-run-script": "5.6.2",
+ "@lerna/output": "5.6.2",
+ "@lerna/profiler": "5.6.2",
+ "@lerna/run-topologically": "5.6.2",
+ "@lerna/timer": "5.6.2",
+ "@lerna/validation-error": "5.6.2",
+ "fs-extra": "^9.1.0",
+ "p-map": "^4.0.0"
},
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/list": {
- "version": "5.1.2",
+ "node_modules/@lerna/run-lifecycle": {
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "@lerna/command": "5.1.2",
- "@lerna/filter-options": "5.1.2",
- "@lerna/listable": "5.1.2",
- "@lerna/output": "5.1.2"
+ "@lerna/npm-conf": "5.6.2",
+ "@npmcli/run-script": "^4.1.7",
+ "npmlog": "^6.0.2",
+ "p-queue": "^6.6.2"
},
"engines": {
"node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/listable": {
- "version": "5.1.2",
+ "node_modules/@lerna/run-topologically": {
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "@lerna/query-graph": "5.1.2",
- "chalk": "^4.1.0",
- "columnify": "^1.6.0"
+ "@lerna/query-graph": "5.6.2",
+ "p-queue": "^6.6.2"
},
"engines": {
"node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/listable/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/@lerna/run/node_modules/fs-extra": {
+ "version": "9.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
+ "at-least-node": "^1.0.0",
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
},
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "node": ">=10"
}
},
- "node_modules/@lerna/listable/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/@lerna/symlink-binary": {
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
+ "@lerna/create-symlink": "5.6.2",
+ "@lerna/package": "5.6.2",
+ "fs-extra": "^9.1.0",
+ "p-map": "^4.0.0"
},
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/listable/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/@lerna/symlink-binary/node_modules/fs-extra": {
+ "version": "9.1.0",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "at-least-node": "^1.0.0",
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
"engines": {
- "node": ">=8"
+ "node": ">=10"
}
},
- "node_modules/@lerna/listable/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/@lerna/symlink-dependencies": {
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@lerna/log-packed": {
- "version": "5.1.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "byte-size": "^7.0.0",
- "columnify": "^1.6.0",
- "has-unicode": "^2.0.1",
- "npmlog": "^6.0.2"
+ "@lerna/create-symlink": "5.6.2",
+ "@lerna/resolve-symlink": "5.6.2",
+ "@lerna/symlink-binary": "5.6.2",
+ "fs-extra": "^9.1.0",
+ "p-map": "^4.0.0",
+ "p-map-series": "^2.1.0"
},
"engines": {
"node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/log-packed/node_modules/are-we-there-yet": {
- "version": "3.0.0",
+ "node_modules/@lerna/symlink-dependencies/node_modules/fs-extra": {
+ "version": "9.1.0",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
+ "at-least-node": "^1.0.0",
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "node": ">=10"
}
},
- "node_modules/@lerna/log-packed/node_modules/gauge": {
- "version": "4.0.4",
+ "node_modules/@lerna/temp-write": {
+ "version": "5.6.2",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "graceful-fs": "^4.1.15",
+ "is-stream": "^2.0.0",
+ "make-dir": "^3.0.0",
+ "temp-dir": "^1.0.0",
+ "uuid": "^8.3.2"
}
},
- "node_modules/@lerna/log-packed/node_modules/npmlog": {
- "version": "6.0.2",
+ "node_modules/@lerna/temp-write/node_modules/uuid": {
+ "version": "8.3.2",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "license": "MIT",
+ "bin": {
+ "uuid": "dist/bin/uuid"
}
},
- "node_modules/@lerna/npm-conf": {
- "version": "5.1.1",
+ "node_modules/@lerna/timer": {
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
- "dependencies": {
- "config-chain": "^1.1.12",
- "pify": "^5.0.0"
- },
"engines": {
"node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/npm-dist-tag": {
- "version": "5.1.2",
+ "node_modules/@lerna/validation-error": {
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "@lerna/otplease": "5.1.2",
- "npm-package-arg": "^8.1.0",
- "npm-registry-fetch": "^9.0.0",
"npmlog": "^6.0.2"
},
"engines": {
"node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/npm-dist-tag/node_modules/are-we-there-yet": {
- "version": "3.0.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
+ "node_modules/@lerna/version": {
+ "version": "5.6.2",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@lerna/check-working-tree": "5.6.2",
+ "@lerna/child-process": "5.6.2",
+ "@lerna/collect-updates": "5.6.2",
+ "@lerna/command": "5.6.2",
+ "@lerna/conventional-commits": "5.6.2",
+ "@lerna/github-client": "5.6.2",
+ "@lerna/gitlab-client": "5.6.2",
+ "@lerna/output": "5.6.2",
+ "@lerna/prerelease-id-from-version": "5.6.2",
+ "@lerna/prompt": "5.6.2",
+ "@lerna/run-lifecycle": "5.6.2",
+ "@lerna/run-topologically": "5.6.2",
+ "@lerna/temp-write": "5.6.2",
+ "@lerna/validation-error": "5.6.2",
+ "@nrwl/devkit": ">=14.8.1 < 16",
+ "chalk": "^4.1.0",
+ "dedent": "^0.7.0",
+ "load-json-file": "^6.2.0",
+ "minimatch": "^3.0.4",
+ "npmlog": "^6.0.2",
+ "p-map": "^4.0.0",
+ "p-pipe": "^3.1.0",
+ "p-reduce": "^2.1.0",
+ "p-waterfall": "^2.1.1",
+ "semver": "^7.3.4",
+ "slash": "^3.0.0",
+ "write-json-file": "^4.3.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/npm-dist-tag/node_modules/gauge": {
- "version": "4.0.4",
+ "node_modules/@lerna/version/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
"license": "ISC",
"dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
+ "yallist": "^4.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=10"
}
},
- "node_modules/@lerna/npm-dist-tag/node_modules/npmlog": {
- "version": "6.0.2",
+ "node_modules/@lerna/version/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
"license": "ISC",
"dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=10"
}
},
- "node_modules/@lerna/npm-install": {
- "version": "5.1.2",
+ "node_modules/@lerna/version/node_modules/yallist": {
+ "version": "4.0.0",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/@lerna/write-log-file": {
+ "version": "5.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "@lerna/child-process": "5.1.1",
- "@lerna/get-npm-exec-opts": "5.1.2",
- "fs-extra": "^9.1.0",
- "npm-package-arg": "^8.1.0",
"npmlog": "^6.0.2",
- "signal-exit": "^3.0.3",
- "write-pkg": "^4.0.0"
+ "write-file-atomic": "^4.0.1"
},
"engines": {
"node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/npm-install/node_modules/are-we-there-yet": {
- "version": "3.0.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
- }
+ "node_modules/@lezer/common": {
+ "version": "1.2.1",
+ "license": "MIT"
},
- "node_modules/@lerna/npm-install/node_modules/gauge": {
- "version": "4.0.4",
- "dev": true,
- "license": "ISC",
+ "node_modules/@lezer/css": {
+ "version": "1.1.8",
+ "license": "MIT",
"dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "@lezer/common": "^1.2.0",
+ "@lezer/highlight": "^1.0.0",
+ "@lezer/lr": "^1.0.0"
}
},
- "node_modules/@lerna/npm-install/node_modules/npmlog": {
- "version": "6.0.2",
- "dev": true,
- "license": "ISC",
+ "node_modules/@lezer/highlight": {
+ "version": "1.2.0",
+ "license": "MIT",
"dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "@lezer/common": "^1.0.0"
}
},
- "node_modules/@lerna/npm-publish": {
- "version": "5.1.2",
- "dev": true,
+ "node_modules/@lezer/html": {
+ "version": "1.3.9",
"license": "MIT",
"dependencies": {
- "@lerna/otplease": "5.1.2",
- "@lerna/run-lifecycle": "5.1.2",
- "fs-extra": "^9.1.0",
- "libnpmpublish": "^4.0.0",
- "npm-package-arg": "^8.1.0",
- "npmlog": "^6.0.2",
- "pify": "^5.0.0",
- "read-package-json": "^3.0.0"
- },
- "engines": {
- "node": "^14.15.0 || >=16.0.0"
+ "@lezer/common": "^1.2.0",
+ "@lezer/highlight": "^1.0.0",
+ "@lezer/lr": "^1.0.0"
}
},
- "node_modules/@lerna/npm-publish/node_modules/are-we-there-yet": {
- "version": "3.0.0",
- "dev": true,
- "license": "ISC",
+ "node_modules/@lezer/javascript": {
+ "version": "1.4.14",
+ "license": "MIT",
"dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "@lezer/common": "^1.2.0",
+ "@lezer/highlight": "^1.1.3",
+ "@lezer/lr": "^1.3.0"
}
},
- "node_modules/@lerna/npm-publish/node_modules/gauge": {
- "version": "4.0.4",
- "dev": true,
- "license": "ISC",
+ "node_modules/@lezer/lr": {
+ "version": "1.4.0",
+ "license": "MIT",
"dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "@lezer/common": "^1.0.0"
}
},
- "node_modules/@lerna/npm-publish/node_modules/npmlog": {
- "version": "6.0.2",
- "dev": true,
- "license": "ISC",
+ "node_modules/@mdx-js/mdx": {
+ "version": "2.3.0",
+ "license": "MIT",
"dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
+ "@types/estree-jsx": "^1.0.0",
+ "@types/mdx": "^2.0.0",
+ "estree-util-build-jsx": "^2.0.0",
+ "estree-util-is-identifier-name": "^2.0.0",
+ "estree-util-to-js": "^1.1.0",
+ "estree-walker": "^3.0.0",
+ "hast-util-to-estree": "^2.0.0",
+ "markdown-extensions": "^1.0.0",
+ "periscopic": "^3.0.0",
+ "remark-mdx": "^2.0.0",
+ "remark-parse": "^10.0.0",
+ "remark-rehype": "^10.0.0",
+ "unified": "^10.0.0",
+ "unist-util-position-from-estree": "^1.0.0",
+ "unist-util-stringify-position": "^3.0.0",
+ "unist-util-visit": "^4.0.0",
+ "vfile": "^5.0.0"
},
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/@lerna/npm-run-script": {
- "version": "5.1.2",
- "dev": true,
+ "node_modules/@mdx-js/react": {
+ "version": "3.0.1",
"license": "MIT",
"dependencies": {
- "@lerna/child-process": "5.1.1",
- "@lerna/get-npm-exec-opts": "5.1.2",
- "npmlog": "^6.0.2"
+ "@types/mdx": "^2.0.0"
},
- "engines": {
- "node": "^14.15.0 || >=16.0.0"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ },
+ "peerDependencies": {
+ "@types/react": ">=16",
+ "react": ">=16"
}
},
- "node_modules/@lerna/npm-run-script/node_modules/are-we-there-yet": {
- "version": "3.0.0",
+ "node_modules/@ndelangen/get-tarball": {
+ "version": "3.0.9",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "gunzip-maybe": "^1.4.2",
+ "pump": "^3.0.0",
+ "tar-fs": "^2.1.1"
}
},
- "node_modules/@lerna/npm-run-script/node_modules/gauge": {
- "version": "4.0.4",
+ "node_modules/@ndelangen/get-tarball/node_modules/chownr": {
+ "version": "1.1.4",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
+ "license": "ISC"
},
- "node_modules/@lerna/npm-run-script/node_modules/npmlog": {
- "version": "6.0.2",
+ "node_modules/@ndelangen/get-tarball/node_modules/tar-fs": {
+ "version": "2.1.1",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "chownr": "^1.1.1",
+ "mkdirp-classic": "^0.5.2",
+ "pump": "^3.0.0",
+ "tar-stream": "^2.1.4"
}
},
- "node_modules/@lerna/otplease": {
- "version": "5.1.2",
+ "node_modules/@next/bundle-analyzer": {
+ "version": "12.3.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "@lerna/prompt": "5.1.2"
- },
- "engines": {
- "node": "^14.15.0 || >=16.0.0"
+ "webpack-bundle-analyzer": "4.3.0"
}
},
- "node_modules/@lerna/output": {
- "version": "5.1.2",
+ "node_modules/@next/env": {
+ "version": "14.0.3",
+ "license": "MIT"
+ },
+ "node_modules/@next/eslint-plugin-next": {
+ "version": "14.1.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "npmlog": "^6.0.2"
- },
- "engines": {
- "node": "^14.15.0 || >=16.0.0"
+ "glob": "10.3.10"
}
},
- "node_modules/@lerna/output/node_modules/are-we-there-yet": {
- "version": "3.0.0",
+ "node_modules/@next/eslint-plugin-next/node_modules/brace-expansion": {
+ "version": "2.0.1",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "balanced-match": "^1.0.0"
}
},
- "node_modules/@lerna/output/node_modules/gauge": {
- "version": "4.0.4",
+ "node_modules/@next/eslint-plugin-next/node_modules/foreground-child": {
+ "version": "3.1.1",
"dev": true,
"license": "ISC",
"dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
+ "cross-spawn": "^7.0.0",
+ "signal-exit": "^4.0.1"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/@lerna/output/node_modules/npmlog": {
- "version": "6.0.2",
+ "node_modules/@next/eslint-plugin-next/node_modules/glob": {
+ "version": "10.3.10",
"dev": true,
"license": "ISC",
"dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
+ "foreground-child": "^3.1.0",
+ "jackspeak": "^2.3.5",
+ "minimatch": "^9.0.1",
+ "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0",
+ "path-scurry": "^1.10.1"
},
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/@lerna/pack-directory": {
- "version": "5.1.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@lerna/get-packed": "5.1.1",
- "@lerna/package": "5.1.1",
- "@lerna/run-lifecycle": "5.1.2",
- "@lerna/temp-write": "5.1.0",
- "npm-packlist": "^2.1.4",
- "npmlog": "^6.0.2",
- "tar": "^6.1.0"
+ "bin": {
+ "glob": "dist/esm/bin.mjs"
},
"engines": {
- "node": "^14.15.0 || >=16.0.0"
+ "node": ">=16 || 14 >=14.17"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/@lerna/pack-directory/node_modules/are-we-there-yet": {
- "version": "3.0.0",
+ "node_modules/@next/eslint-plugin-next/node_modules/minimatch": {
+ "version": "9.0.4",
"dev": true,
"license": "ISC",
"dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
+ "brace-expansion": "^2.0.1"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "node": ">=16 || 14 >=14.17"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/@lerna/pack-directory/node_modules/gauge": {
- "version": "4.0.4",
+ "node_modules/@next/eslint-plugin-next/node_modules/minipass": {
+ "version": "7.0.4",
"dev": true,
"license": "ISC",
- "dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
- },
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=16 || 14 >=14.17"
}
},
- "node_modules/@lerna/pack-directory/node_modules/npmlog": {
- "version": "6.0.2",
+ "node_modules/@next/eslint-plugin-next/node_modules/signal-exit": {
+ "version": "4.1.0",
"dev": true,
"license": "ISC",
- "dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
- },
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/@lerna/package": {
- "version": "5.1.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "load-json-file": "^6.2.0",
- "npm-package-arg": "^8.1.0",
- "write-pkg": "^4.0.0"
- },
+ "node_modules/@next/swc-darwin-arm64": {
+ "version": "14.0.3",
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.0.3.tgz",
+ "integrity": "sha512-64JbSvi3nbbcEtyitNn2LEDS/hcleAFpHdykpcnrstITFlzFgB/bW0ER5/SJJwUPj+ZPY+z3e+1jAfcczRLVGw==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
"engines": {
- "node": "^14.15.0 || >=16.0.0"
+ "node": ">= 10"
}
},
- "node_modules/@lerna/package-graph": {
- "version": "5.1.2",
- "dev": true,
+ "node_modules/@next/swc-darwin-x64": {
+ "version": "14.0.3",
+ "cpu": [
+ "x64"
+ ],
"license": "MIT",
- "dependencies": {
- "@lerna/prerelease-id-from-version": "5.1.1",
- "@lerna/validation-error": "5.1.2",
- "npm-package-arg": "^8.1.0",
- "npmlog": "^6.0.2",
- "semver": "^7.3.4"
- },
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
"engines": {
- "node": "^14.15.0 || >=16.0.0"
+ "node": ">= 10"
}
},
- "node_modules/@lerna/package-graph/node_modules/are-we-there-yet": {
- "version": "3.0.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
- },
+ "node_modules/@next/swc-linux-arm64-gnu": {
+ "version": "14.0.3",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.0.3.tgz",
+ "integrity": "sha512-3tBWGgz7M9RKLO6sPWC6c4pAw4geujSwQ7q7Si4d6bo0l6cLs4tmO+lnSwFp1Tm3lxwfMk0SgkJT7EdwYSJvcg==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "node": ">= 10"
}
},
- "node_modules/@lerna/package-graph/node_modules/gauge": {
- "version": "4.0.4",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
- },
+ "node_modules/@next/swc-linux-arm64-musl": {
+ "version": "14.0.3",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.0.3.tgz",
+ "integrity": "sha512-v0v8Kb8j8T23jvVUWZeA2D8+izWspeyeDGNaT2/mTHWp7+37fiNfL8bmBWiOmeumXkacM/AB0XOUQvEbncSnHA==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">= 10"
}
},
- "node_modules/@lerna/package-graph/node_modules/npmlog": {
- "version": "6.0.2",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
- },
+ "node_modules/@next/swc-linux-x64-gnu": {
+ "version": "14.0.3",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.0.3.tgz",
+ "integrity": "sha512-VM1aE1tJKLBwMGtyBR21yy+STfl0MapMQnNrXkxeyLs0GFv/kZqXS5Jw/TQ3TSUnbv0QPDf/X8sDXuMtSgG6eg==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">= 10"
}
},
- "node_modules/@lerna/package-graph/node_modules/semver": {
- "version": "7.3.7",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
+ "node_modules/@next/swc-linux-x64-musl": {
+ "version": "14.0.3",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.0.3.tgz",
+ "integrity": "sha512-64EnmKy18MYFL5CzLaSuUn561hbO1Gk16jM/KHznYP3iCIfF9e3yULtHaMy0D8zbHfxset9LTOv6cuYKJgcOxg==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
"engines": {
- "node": ">=10"
+ "node": ">= 10"
}
},
- "node_modules/@lerna/prerelease-id-from-version": {
- "version": "5.1.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "semver": "^7.3.4"
- },
+ "node_modules/@next/swc-win32-arm64-msvc": {
+ "version": "14.0.3",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.0.3.tgz",
+ "integrity": "sha512-WRDp8QrmsL1bbGtsh5GqQ/KWulmrnMBgbnb+59qNTW1kVi1nG/2ndZLkcbs2GX7NpFLlToLRMWSQXmPzQm4tog==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "win32"
+ ],
"engines": {
- "node": "^14.15.0 || >=16.0.0"
+ "node": ">= 10"
}
},
- "node_modules/@lerna/prerelease-id-from-version/node_modules/semver": {
- "version": "7.3.7",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
+ "node_modules/@next/swc-win32-ia32-msvc": {
+ "version": "14.0.3",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.0.3.tgz",
+ "integrity": "sha512-EKffQeqCrj+t6qFFhIFTRoqb2QwX1mU7iTOvMyLbYw3QtqTw9sMwjykyiMlZlrfm2a4fA84+/aeW+PMg1MjuTg==",
+ "cpu": [
+ "ia32"
+ ],
+ "optional": true,
+ "os": [
+ "win32"
+ ],
"engines": {
- "node": ">=10"
+ "node": ">= 10"
}
},
- "node_modules/@lerna/profiler": {
- "version": "5.1.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "fs-extra": "^9.1.0",
- "npmlog": "^6.0.2",
- "upath": "^2.0.1"
- },
+ "node_modules/@next/swc-win32-x64-msvc": {
+ "version": "14.0.3",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.0.3.tgz",
+ "integrity": "sha512-ERhKPSJ1vQrPiwrs15Pjz/rvDHZmkmvbf/BjPN/UCOI++ODftT0GtasDPi0j+y6PPJi5HsXw+dpRaXUaw4vjuQ==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "win32"
+ ],
"engines": {
- "node": "^14.15.0 || >=16.0.0"
+ "node": ">= 10"
}
},
- "node_modules/@lerna/profiler/node_modules/are-we-there-yet": {
- "version": "3.0.0",
+ "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": {
+ "version": "5.1.1-v1",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "eslint-scope": "5.1.1"
}
},
- "node_modules/@lerna/profiler/node_modules/gauge": {
- "version": "4.0.4",
+ "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/eslint-scope": {
+ "version": "5.1.1",
"dev": true,
- "license": "ISC",
+ "license": "BSD-2-Clause",
"dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
+ "esrecurse": "^4.3.0",
+ "estraverse": "^4.1.1"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=8.0.0"
}
},
- "node_modules/@lerna/profiler/node_modules/npmlog": {
- "version": "6.0.2",
+ "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/estraverse": {
+ "version": "4.3.0",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
- },
+ "license": "BSD-2-Clause",
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=4.0"
}
},
- "node_modules/@lerna/project": {
- "version": "5.1.2",
+ "node_modules/@nodelib/fs.scandir": {
+ "version": "2.1.5",
"dev": true,
"license": "MIT",
"dependencies": {
- "@lerna/package": "5.1.1",
- "@lerna/validation-error": "5.1.2",
- "cosmiconfig": "^7.0.0",
- "dedent": "^0.7.0",
- "dot-prop": "^6.0.1",
- "glob-parent": "^5.1.1",
- "globby": "^11.0.2",
- "load-json-file": "^6.2.0",
- "npmlog": "^6.0.2",
- "p-map": "^4.0.0",
- "resolve-from": "^5.0.0",
- "write-json-file": "^4.3.0"
+ "@nodelib/fs.stat": "2.0.5",
+ "run-parallel": "^1.1.9"
},
"engines": {
- "node": "^14.15.0 || >=16.0.0"
+ "node": ">= 8"
}
},
- "node_modules/@lerna/project/node_modules/are-we-there-yet": {
- "version": "3.0.0",
+ "node_modules/@nodelib/fs.stat": {
+ "version": "2.0.5",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
- },
+ "license": "MIT",
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "node": ">= 8"
}
},
- "node_modules/@lerna/project/node_modules/gauge": {
- "version": "4.0.4",
+ "node_modules/@nodelib/fs.walk": {
+ "version": "1.2.8",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
+ "@nodelib/fs.scandir": "2.1.5",
+ "fastq": "^1.6.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">= 8"
}
},
- "node_modules/@lerna/project/node_modules/glob-parent": {
- "version": "5.1.2",
+ "node_modules/@npmcli/arborist": {
+ "version": "5.3.0",
"dev": true,
"license": "ISC",
"dependencies": {
- "is-glob": "^4.0.1"
+ "@isaacs/string-locale-compare": "^1.1.0",
+ "@npmcli/installed-package-contents": "^1.0.7",
+ "@npmcli/map-workspaces": "^2.0.3",
+ "@npmcli/metavuln-calculator": "^3.0.1",
+ "@npmcli/move-file": "^2.0.0",
+ "@npmcli/name-from-folder": "^1.0.1",
+ "@npmcli/node-gyp": "^2.0.0",
+ "@npmcli/package-json": "^2.0.0",
+ "@npmcli/run-script": "^4.1.3",
+ "bin-links": "^3.0.0",
+ "cacache": "^16.0.6",
+ "common-ancestor-path": "^1.0.1",
+ "json-parse-even-better-errors": "^2.3.1",
+ "json-stringify-nice": "^1.1.4",
+ "mkdirp": "^1.0.4",
+ "mkdirp-infer-owner": "^2.0.0",
+ "nopt": "^5.0.0",
+ "npm-install-checks": "^5.0.0",
+ "npm-package-arg": "^9.0.0",
+ "npm-pick-manifest": "^7.0.0",
+ "npm-registry-fetch": "^13.0.0",
+ "npmlog": "^6.0.2",
+ "pacote": "^13.6.1",
+ "parse-conflict-json": "^2.0.1",
+ "proc-log": "^2.0.0",
+ "promise-all-reject-late": "^1.0.0",
+ "promise-call-limit": "^1.0.1",
+ "read-package-json-fast": "^2.0.2",
+ "readdir-scoped-modules": "^1.1.0",
+ "rimraf": "^3.0.2",
+ "semver": "^7.3.7",
+ "ssri": "^9.0.0",
+ "treeverse": "^2.0.0",
+ "walk-up-path": "^1.0.0"
+ },
+ "bin": {
+ "arborist": "bin/index.js"
},
"engines": {
- "node": ">= 6"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/project/node_modules/npmlog": {
- "version": "6.0.2",
+ "node_modules/@npmcli/arborist/node_modules/hosted-git-info": {
+ "version": "5.2.1",
"dev": true,
"license": "ISC",
"dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
+ "lru-cache": "^7.5.1"
},
"engines": {
"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/project/node_modules/p-map": {
- "version": "4.0.0",
+ "node_modules/@npmcli/arborist/node_modules/lru-cache": {
+ "version": "7.18.3",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "aggregate-error": "^3.0.0"
- },
+ "license": "ISC",
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=12"
}
},
- "node_modules/@lerna/prompt": {
- "version": "5.1.2",
+ "node_modules/@npmcli/arborist/node_modules/npm-package-arg": {
+ "version": "9.1.2",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "inquirer": "^7.3.3",
- "npmlog": "^6.0.2"
+ "hosted-git-info": "^5.0.0",
+ "proc-log": "^2.0.1",
+ "semver": "^7.3.5",
+ "validate-npm-package-name": "^4.0.0"
},
"engines": {
- "node": "^14.15.0 || >=16.0.0"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/prompt/node_modules/are-we-there-yet": {
- "version": "3.0.0",
+ "node_modules/@npmcli/arborist/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
"license": "ISC",
"dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "node": ">=10"
}
},
- "node_modules/@lerna/prompt/node_modules/gauge": {
- "version": "4.0.4",
+ "node_modules/@npmcli/arborist/node_modules/semver/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
"license": "ISC",
"dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
+ "yallist": "^4.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=10"
}
},
- "node_modules/@lerna/prompt/node_modules/npmlog": {
- "version": "6.0.2",
+ "node_modules/@npmcli/arborist/node_modules/yallist": {
+ "version": "4.0.0",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/@npmcli/fs": {
+ "version": "2.1.2",
"dev": true,
"license": "ISC",
"dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
+ "@gar/promisify": "^1.1.3",
+ "semver": "^7.3.5"
},
"engines": {
"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/publish": {
- "version": "5.1.2",
+ "node_modules/@npmcli/fs/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "@lerna/check-working-tree": "5.1.2",
- "@lerna/child-process": "5.1.1",
- "@lerna/collect-updates": "5.1.2",
- "@lerna/command": "5.1.2",
- "@lerna/describe-ref": "5.1.2",
- "@lerna/log-packed": "5.1.2",
- "@lerna/npm-conf": "5.1.1",
- "@lerna/npm-dist-tag": "5.1.2",
- "@lerna/npm-publish": "5.1.2",
- "@lerna/otplease": "5.1.2",
- "@lerna/output": "5.1.2",
- "@lerna/pack-directory": "5.1.2",
- "@lerna/prerelease-id-from-version": "5.1.1",
- "@lerna/prompt": "5.1.2",
- "@lerna/pulse-till-done": "5.1.2",
- "@lerna/run-lifecycle": "5.1.2",
- "@lerna/run-topologically": "5.1.2",
- "@lerna/validation-error": "5.1.2",
- "@lerna/version": "5.1.2",
- "fs-extra": "^9.1.0",
- "libnpmaccess": "^4.0.1",
- "npm-package-arg": "^8.1.0",
- "npm-registry-fetch": "^9.0.0",
- "npmlog": "^6.0.2",
- "p-map": "^4.0.0",
- "p-pipe": "^3.1.0",
- "pacote": "^13.4.1",
- "semver": "^7.3.4"
+ "yallist": "^4.0.0"
},
"engines": {
- "node": "^14.15.0 || >=16.0.0"
+ "node": ">=10"
}
},
- "node_modules/@lerna/publish/node_modules/are-we-there-yet": {
- "version": "3.0.0",
+ "node_modules/@npmcli/fs/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
"license": "ISC",
"dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "node": ">=10"
}
},
- "node_modules/@lerna/publish/node_modules/gauge": {
- "version": "4.0.4",
+ "node_modules/@npmcli/fs/node_modules/yallist": {
+ "version": "4.0.0",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
+ "license": "ISC"
},
- "node_modules/@lerna/publish/node_modules/npmlog": {
- "version": "6.0.2",
+ "node_modules/@npmcli/git": {
+ "version": "3.0.2",
"dev": true,
"license": "ISC",
"dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
+ "@npmcli/promise-spawn": "^3.0.0",
+ "lru-cache": "^7.4.4",
+ "mkdirp": "^1.0.4",
+ "npm-pick-manifest": "^7.0.0",
+ "proc-log": "^2.0.0",
+ "promise-inflight": "^1.0.1",
+ "promise-retry": "^2.0.1",
+ "semver": "^7.3.5",
+ "which": "^2.0.2"
},
"engines": {
"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/publish/node_modules/p-map": {
- "version": "4.0.0",
+ "node_modules/@npmcli/git/node_modules/lru-cache": {
+ "version": "7.18.3",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "aggregate-error": "^3.0.0"
- },
+ "license": "ISC",
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=12"
}
},
- "node_modules/@lerna/publish/node_modules/semver": {
- "version": "7.3.7",
+ "node_modules/@npmcli/git/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -7255,19754 +6139,8613 @@
"node": ">=10"
}
},
- "node_modules/@lerna/pulse-till-done": {
- "version": "5.1.2",
+ "node_modules/@npmcli/git/node_modules/semver/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "npmlog": "^6.0.2"
+ "yallist": "^4.0.0"
},
"engines": {
- "node": "^14.15.0 || >=16.0.0"
+ "node": ">=10"
}
},
- "node_modules/@lerna/pulse-till-done/node_modules/are-we-there-yet": {
- "version": "3.0.0",
+ "node_modules/@npmcli/git/node_modules/yallist": {
+ "version": "4.0.0",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/@npmcli/installed-package-contents": {
+ "version": "1.0.7",
"dev": true,
"license": "ISC",
"dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
+ "npm-bundled": "^1.1.1",
+ "npm-normalize-package-bin": "^1.0.1"
+ },
+ "bin": {
+ "installed-package-contents": "index.js"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "node": ">= 10"
}
},
- "node_modules/@lerna/pulse-till-done/node_modules/gauge": {
- "version": "4.0.4",
+ "node_modules/@npmcli/map-workspaces": {
+ "version": "2.0.4",
"dev": true,
"license": "ISC",
"dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
+ "@npmcli/name-from-folder": "^1.0.1",
+ "glob": "^8.0.1",
+ "minimatch": "^5.0.1",
+ "read-package-json-fast": "^2.0.3"
},
"engines": {
"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/pulse-till-done/node_modules/npmlog": {
- "version": "6.0.2",
+ "node_modules/@npmcli/map-workspaces/node_modules/brace-expansion": {
+ "version": "2.0.1",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "balanced-match": "^1.0.0"
}
},
- "node_modules/@lerna/query-graph": {
- "version": "5.1.2",
+ "node_modules/@npmcli/map-workspaces/node_modules/glob": {
+ "version": "8.1.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "@lerna/package-graph": "5.1.2"
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^5.0.1",
+ "once": "^1.3.0"
},
"engines": {
- "node": "^14.15.0 || >=16.0.0"
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/@lerna/resolve-symlink": {
- "version": "5.1.2",
+ "node_modules/@npmcli/map-workspaces/node_modules/minimatch": {
+ "version": "5.1.6",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "fs-extra": "^9.1.0",
- "npmlog": "^6.0.2",
- "read-cmd-shim": "^2.0.0"
+ "brace-expansion": "^2.0.1"
},
"engines": {
- "node": "^14.15.0 || >=16.0.0"
+ "node": ">=10"
}
},
- "node_modules/@lerna/resolve-symlink/node_modules/are-we-there-yet": {
- "version": "3.0.0",
+ "node_modules/@npmcli/metavuln-calculator": {
+ "version": "3.1.1",
"dev": true,
"license": "ISC",
"dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
+ "cacache": "^16.0.0",
+ "json-parse-even-better-errors": "^2.3.1",
+ "pacote": "^13.0.3",
+ "semver": "^7.3.5"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/resolve-symlink/node_modules/gauge": {
- "version": "4.0.4",
+ "node_modules/@npmcli/metavuln-calculator/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
"license": "ISC",
"dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
+ "yallist": "^4.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=10"
}
},
- "node_modules/@lerna/resolve-symlink/node_modules/npmlog": {
- "version": "6.0.2",
+ "node_modules/@npmcli/metavuln-calculator/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
"license": "ISC",
"dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=10"
}
},
- "node_modules/@lerna/rimraf-dir": {
- "version": "5.1.2",
+ "node_modules/@npmcli/metavuln-calculator/node_modules/yallist": {
+ "version": "4.0.0",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/@npmcli/move-file": {
+ "version": "2.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@lerna/child-process": "5.1.1",
- "npmlog": "^6.0.2",
- "path-exists": "^4.0.0",
+ "mkdirp": "^1.0.4",
"rimraf": "^3.0.2"
},
"engines": {
- "node": "^14.15.0 || >=16.0.0"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/rimraf-dir/node_modules/are-we-there-yet": {
- "version": "3.0.0",
+ "node_modules/@npmcli/name-from-folder": {
+ "version": "1.0.1",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/@npmcli/node-gyp": {
+ "version": "2.0.0",
"dev": true,
"license": "ISC",
- "dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
- },
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/rimraf-dir/node_modules/gauge": {
- "version": "4.0.4",
+ "node_modules/@npmcli/package-json": {
+ "version": "2.0.0",
"dev": true,
"license": "ISC",
"dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
+ "json-parse-even-better-errors": "^2.3.1"
},
"engines": {
"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/rimraf-dir/node_modules/npmlog": {
- "version": "6.0.2",
+ "node_modules/@npmcli/promise-spawn": {
+ "version": "3.0.0",
"dev": true,
"license": "ISC",
"dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
+ "infer-owner": "^1.0.4"
},
"engines": {
"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/rimraf-dir/node_modules/path-exists": {
- "version": "4.0.0",
+ "node_modules/@npmcli/run-script": {
+ "version": "4.2.1",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
+ "dependencies": {
+ "@npmcli/node-gyp": "^2.0.0",
+ "@npmcli/promise-spawn": "^3.0.0",
+ "node-gyp": "^9.0.0",
+ "read-package-json-fast": "^2.0.3",
+ "which": "^2.0.2"
+ },
"engines": {
- "node": ">=8"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/@lerna/run": {
- "version": "5.1.2",
+ "node_modules/@nrwl/cli": {
+ "version": "14.8.9",
"dev": true,
"license": "MIT",
"dependencies": {
- "@lerna/command": "5.1.2",
- "@lerna/filter-options": "5.1.2",
- "@lerna/npm-run-script": "5.1.2",
- "@lerna/output": "5.1.2",
- "@lerna/profiler": "5.1.2",
- "@lerna/run-topologically": "5.1.2",
- "@lerna/timer": "5.1.1",
- "@lerna/validation-error": "5.1.2",
- "p-map": "^4.0.0"
- },
- "engines": {
- "node": "^14.15.0 || >=16.0.0"
+ "nx": "14.8.9"
}
},
- "node_modules/@lerna/run-lifecycle": {
- "version": "5.1.2",
+ "node_modules/@nrwl/devkit": {
+ "version": "15.9.7",
"dev": true,
"license": "MIT",
"dependencies": {
- "@lerna/npm-conf": "5.1.1",
- "@npmcli/run-script": "^3.0.2",
- "npmlog": "^6.0.2"
+ "ejs": "^3.1.7",
+ "ignore": "^5.0.4",
+ "semver": "7.5.4",
+ "tmp": "~0.2.1",
+ "tslib": "^2.3.0"
},
- "engines": {
- "node": "^14.15.0 || >=16.0.0"
+ "peerDependencies": {
+ "nx": ">= 14.1 <= 16"
}
},
- "node_modules/@lerna/run-lifecycle/node_modules/are-we-there-yet": {
- "version": "3.0.0",
+ "node_modules/@nrwl/devkit/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
"license": "ISC",
"dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
+ "yallist": "^4.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "node": ">=10"
}
},
- "node_modules/@lerna/run-lifecycle/node_modules/gauge": {
- "version": "4.0.4",
+ "node_modules/@nrwl/devkit/node_modules/semver": {
+ "version": "7.5.4",
"dev": true,
"license": "ISC",
"dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=10"
}
},
- "node_modules/@lerna/run-lifecycle/node_modules/npmlog": {
- "version": "6.0.2",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/@lerna/run-topologically": {
- "version": "5.1.2",
+ "node_modules/@nrwl/devkit/node_modules/tmp": {
+ "version": "0.2.3",
"dev": true,
"license": "MIT",
- "dependencies": {
- "@lerna/query-graph": "5.1.2",
- "p-queue": "^6.6.2"
- },
"engines": {
- "node": "^14.15.0 || >=16.0.0"
+ "node": ">=14.14"
}
},
- "node_modules/@lerna/run/node_modules/p-map": {
+ "node_modules/@nrwl/devkit/node_modules/yallist": {
"version": "4.0.0",
"dev": true,
+ "license": "ISC"
+ },
+ "node_modules/@nrwl/tao": {
+ "version": "14.8.9",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "aggregate-error": "^3.0.0"
- },
- "engines": {
- "node": ">=10"
+ "nx": "14.8.9"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "bin": {
+ "tao": "index.js"
}
},
- "node_modules/@lerna/symlink-binary": {
- "version": "5.1.2",
- "dev": true,
+ "node_modules/@octokit/auth-token": {
+ "version": "3.0.4",
"license": "MIT",
- "dependencies": {
- "@lerna/create-symlink": "5.1.2",
- "@lerna/package": "5.1.1",
- "fs-extra": "^9.1.0",
- "p-map": "^4.0.0"
- },
"engines": {
- "node": "^14.15.0 || >=16.0.0"
+ "node": ">= 14"
}
},
- "node_modules/@lerna/symlink-binary/node_modules/p-map": {
- "version": "4.0.0",
- "dev": true,
+ "node_modules/@octokit/core": {
+ "version": "4.2.4",
"license": "MIT",
"dependencies": {
- "aggregate-error": "^3.0.0"
+ "@octokit/auth-token": "^3.0.0",
+ "@octokit/graphql": "^5.0.0",
+ "@octokit/request": "^6.0.0",
+ "@octokit/request-error": "^3.0.0",
+ "@octokit/types": "^9.0.0",
+ "before-after-hook": "^2.2.0",
+ "universal-user-agent": "^6.0.0"
},
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">= 14"
}
},
- "node_modules/@lerna/symlink-dependencies": {
- "version": "5.1.2",
- "dev": true,
+ "node_modules/@octokit/endpoint": {
+ "version": "7.0.6",
"license": "MIT",
"dependencies": {
- "@lerna/create-symlink": "5.1.2",
- "@lerna/resolve-symlink": "5.1.2",
- "@lerna/symlink-binary": "5.1.2",
- "fs-extra": "^9.1.0",
- "p-map": "^4.0.0",
- "p-map-series": "^2.1.0"
+ "@octokit/types": "^9.0.0",
+ "is-plain-object": "^5.0.0",
+ "universal-user-agent": "^6.0.0"
},
"engines": {
- "node": "^14.15.0 || >=16.0.0"
+ "node": ">= 14"
}
},
- "node_modules/@lerna/symlink-dependencies/node_modules/p-map": {
- "version": "4.0.0",
- "dev": true,
+ "node_modules/@octokit/graphql": {
+ "version": "5.0.6",
"license": "MIT",
"dependencies": {
- "aggregate-error": "^3.0.0"
+ "@octokit/request": "^6.0.0",
+ "@octokit/types": "^9.0.0",
+ "universal-user-agent": "^6.0.0"
},
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">= 14"
}
},
- "node_modules/@lerna/temp-write": {
- "version": "5.1.0",
+ "node_modules/@octokit/openapi-types": {
+ "version": "18.1.1",
+ "license": "MIT"
+ },
+ "node_modules/@octokit/plugin-enterprise-rest": {
+ "version": "6.0.1",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "graceful-fs": "^4.1.15",
- "is-stream": "^2.0.0",
- "make-dir": "^3.0.0",
- "temp-dir": "^1.0.0",
- "uuid": "^8.3.2"
- }
+ "license": "MIT"
},
- "node_modules/@lerna/temp-write/node_modules/make-dir": {
- "version": "3.1.0",
+ "node_modules/@octokit/plugin-paginate-rest": {
+ "version": "6.1.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "semver": "^6.0.0"
+ "@octokit/tsconfig": "^1.0.2",
+ "@octokit/types": "^9.2.3"
},
"engines": {
- "node": ">=8"
+ "node": ">= 14"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "peerDependencies": {
+ "@octokit/core": ">=4"
}
},
- "node_modules/@lerna/timer": {
- "version": "5.1.1",
+ "node_modules/@octokit/plugin-request-log": {
+ "version": "1.0.4",
"dev": true,
"license": "MIT",
- "engines": {
- "node": "^14.15.0 || >=16.0.0"
+ "peerDependencies": {
+ "@octokit/core": ">=3"
}
},
- "node_modules/@lerna/validation-error": {
- "version": "5.1.2",
+ "node_modules/@octokit/plugin-rest-endpoint-methods": {
+ "version": "7.2.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "npmlog": "^6.0.2"
+ "@octokit/types": "^10.0.0"
},
"engines": {
- "node": "^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/@lerna/validation-error/node_modules/are-we-there-yet": {
- "version": "3.0.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
+ "node": ">= 14"
},
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "peerDependencies": {
+ "@octokit/core": ">=3"
}
},
- "node_modules/@lerna/validation-error/node_modules/gauge": {
- "version": "4.0.4",
+ "node_modules/@octokit/plugin-rest-endpoint-methods/node_modules/@octokit/types": {
+ "version": "10.0.0",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "@octokit/openapi-types": "^18.0.0"
}
},
- "node_modules/@lerna/validation-error/node_modules/npmlog": {
- "version": "6.0.2",
- "dev": true,
- "license": "ISC",
+ "node_modules/@octokit/request": {
+ "version": "6.2.8",
+ "license": "MIT",
"dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
+ "@octokit/endpoint": "^7.0.0",
+ "@octokit/request-error": "^3.0.0",
+ "@octokit/types": "^9.0.0",
+ "is-plain-object": "^5.0.0",
+ "node-fetch": "^2.6.7",
+ "universal-user-agent": "^6.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">= 14"
}
},
- "node_modules/@lerna/version": {
- "version": "5.1.2",
- "dev": true,
+ "node_modules/@octokit/request-error": {
+ "version": "3.0.3",
"license": "MIT",
"dependencies": {
- "@lerna/check-working-tree": "5.1.2",
- "@lerna/child-process": "5.1.1",
- "@lerna/collect-updates": "5.1.2",
- "@lerna/command": "5.1.2",
- "@lerna/conventional-commits": "5.1.2",
- "@lerna/github-client": "5.1.2",
- "@lerna/gitlab-client": "5.1.2",
- "@lerna/output": "5.1.2",
- "@lerna/prerelease-id-from-version": "5.1.1",
- "@lerna/prompt": "5.1.2",
- "@lerna/run-lifecycle": "5.1.2",
- "@lerna/run-topologically": "5.1.2",
- "@lerna/temp-write": "5.1.0",
- "@lerna/validation-error": "5.1.2",
- "chalk": "^4.1.0",
- "dedent": "^0.7.0",
- "load-json-file": "^6.2.0",
- "minimatch": "^3.0.4",
- "npmlog": "^6.0.2",
- "p-map": "^4.0.0",
- "p-pipe": "^3.1.0",
- "p-reduce": "^2.1.0",
- "p-waterfall": "^2.1.1",
- "semver": "^7.3.4",
- "slash": "^3.0.0",
- "write-json-file": "^4.3.0"
+ "@octokit/types": "^9.0.0",
+ "deprecation": "^2.0.0",
+ "once": "^1.4.0"
},
"engines": {
- "node": "^14.15.0 || >=16.0.0"
+ "node": ">= 14"
}
},
- "node_modules/@lerna/version/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/@octokit/rest": {
+ "version": "19.0.13",
"dev": true,
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
+ "@octokit/core": "^4.2.1",
+ "@octokit/plugin-paginate-rest": "^6.1.2",
+ "@octokit/plugin-request-log": "^1.0.4",
+ "@octokit/plugin-rest-endpoint-methods": "^7.1.2"
},
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "node": ">= 14"
}
},
- "node_modules/@lerna/version/node_modules/are-we-there-yet": {
- "version": "3.0.0",
+ "node_modules/@octokit/tsconfig": {
+ "version": "1.0.2",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
- }
+ "license": "MIT"
},
- "node_modules/@lerna/version/node_modules/chalk": {
- "version": "4.1.2",
- "dev": true,
+ "node_modules/@octokit/types": {
+ "version": "9.3.2",
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "@octokit/openapi-types": "^18.0.0"
}
},
- "node_modules/@lerna/version/node_modules/gauge": {
- "version": "4.0.4",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
+ "node_modules/@open-draft/deferred-promise": {
+ "version": "2.2.0",
+ "license": "MIT"
},
- "node_modules/@lerna/version/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/@parcel/watcher": {
+ "version": "2.0.4",
"dev": true,
+ "hasInstallScript": true,
"license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@lerna/version/node_modules/npmlog": {
- "version": "6.0.2",
- "dev": true,
- "license": "ISC",
"dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
+ "node-addon-api": "^3.2.1",
+ "node-gyp-build": "^4.3.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
}
},
- "node_modules/@lerna/version/node_modules/p-map": {
- "version": "4.0.0",
+ "node_modules/@pkgjs/parseargs": {
+ "version": "0.11.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "aggregate-error": "^3.0.0"
- },
+ "optional": true,
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=14"
}
},
- "node_modules/@lerna/version/node_modules/semver": {
- "version": "7.3.7",
+ "node_modules/@playwright/test": {
+ "version": "1.43.0",
"dev": true,
- "license": "ISC",
+ "license": "Apache-2.0",
"dependencies": {
- "lru-cache": "^6.0.0"
+ "playwright": "1.43.0"
},
"bin": {
- "semver": "bin/semver.js"
+ "playwright": "cli.js"
},
"engines": {
- "node": ">=10"
+ "node": ">=16"
}
},
- "node_modules/@lerna/version/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/@pmmmwh/react-refresh-webpack-plugin": {
+ "version": "0.5.11",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
+ "ansi-html-community": "^0.0.8",
+ "common-path-prefix": "^3.0.0",
+ "core-js-pure": "^3.23.3",
+ "error-stack-parser": "^2.0.6",
+ "find-up": "^5.0.0",
+ "html-entities": "^2.1.0",
+ "loader-utils": "^2.0.4",
+ "schema-utils": "^3.0.0",
+ "source-map": "^0.7.3"
},
"engines": {
- "node": ">=8"
- }
- },
- "node_modules/@lerna/write-log-file": {
- "version": "5.1.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "npmlog": "^6.0.2",
- "write-file-atomic": "^3.0.3"
+ "node": ">= 10.13"
},
- "engines": {
- "node": "^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/@lerna/write-log-file/node_modules/are-we-there-yet": {
- "version": "3.0.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
+ "peerDependencies": {
+ "@types/webpack": "4.x || 5.x",
+ "react-refresh": ">=0.10.0 <1.0.0",
+ "sockjs-client": "^1.4.0",
+ "type-fest": ">=0.17.0 <5.0.0",
+ "webpack": ">=4.43.0 <6.0.0",
+ "webpack-dev-server": "3.x || 4.x",
+ "webpack-hot-middleware": "2.x",
+ "webpack-plugin-serve": "0.x || 1.x"
},
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "peerDependenciesMeta": {
+ "@types/webpack": {
+ "optional": true
+ },
+ "sockjs-client": {
+ "optional": true
+ },
+ "type-fest": {
+ "optional": true
+ },
+ "webpack-dev-server": {
+ "optional": true
+ },
+ "webpack-hot-middleware": {
+ "optional": true
+ },
+ "webpack-plugin-serve": {
+ "optional": true
+ }
}
},
- "node_modules/@lerna/write-log-file/node_modules/gauge": {
- "version": "4.0.4",
+ "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/loader-utils": {
+ "version": "2.0.4",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
+ "big.js": "^5.2.2",
+ "emojis-list": "^3.0.0",
+ "json5": "^2.1.2"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=8.9.0"
}
},
- "node_modules/@lerna/write-log-file/node_modules/npmlog": {
- "version": "6.0.2",
+ "node_modules/@polka/url": {
+ "version": "1.0.0-next.25",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/@lezer/common": {
- "version": "0.15.12",
"license": "MIT"
},
- "node_modules/@lezer/css": {
- "version": "0.15.2",
+ "node_modules/@popperjs/core": {
+ "version": "2.11.8",
"license": "MIT",
- "dependencies": {
- "@lezer/lr": "^0.15.0"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/popperjs"
}
},
- "node_modules/@lezer/html": {
- "version": "0.15.1",
+ "node_modules/@radix-ui/number": {
+ "version": "1.0.1",
"license": "MIT",
"dependencies": {
- "@lezer/lr": "^0.15.0"
+ "@babel/runtime": "^7.13.10"
}
},
- "node_modules/@lezer/javascript": {
- "version": "0.15.3",
+ "node_modules/@radix-ui/primitive": {
+ "version": "1.0.1",
"license": "MIT",
"dependencies": {
- "@lezer/lr": "^0.15.0"
+ "@babel/runtime": "^7.13.10"
}
},
- "node_modules/@lezer/lr": {
- "version": "0.15.8",
+ "node_modules/@radix-ui/react-accordion": {
+ "version": "1.1.2",
"license": "MIT",
"dependencies": {
- "@lezer/common": "^0.15.0"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/primitive": "1.0.1",
+ "@radix-ui/react-collapsible": "1.0.3",
+ "@radix-ui/react-collection": "1.0.3",
+ "@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-direction": "1.0.1",
+ "@radix-ui/react-id": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-use-controllable-state": "1.0.1"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/@lezer/markdown": {
- "version": "0.15.6",
+ "node_modules/@radix-ui/react-arrow": {
+ "version": "1.0.1",
"license": "MIT",
"dependencies": {
- "@lezer/common": "^0.15.0"
- }
- },
- "node_modules/@mdx-js/mdx": {
- "version": "1.6.22",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/core": "7.12.9",
- "@babel/plugin-syntax-jsx": "7.12.1",
- "@babel/plugin-syntax-object-rest-spread": "7.8.3",
- "@mdx-js/util": "1.6.22",
- "babel-plugin-apply-mdx-type-prop": "1.6.22",
- "babel-plugin-extract-import-names": "1.6.22",
- "camelcase-css": "2.0.1",
- "detab": "2.0.4",
- "hast-util-raw": "6.0.1",
- "lodash.uniq": "4.5.0",
- "mdast-util-to-hast": "10.0.1",
- "remark-footnotes": "2.0.0",
- "remark-mdx": "1.6.22",
- "remark-parse": "8.0.3",
- "remark-squeeze-paragraphs": "4.0.0",
- "style-to-object": "0.3.0",
- "unified": "9.2.0",
- "unist-builder": "2.0.3",
- "unist-util-visit": "2.0.3"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-primitive": "1.0.1"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/@mdx-js/mdx/node_modules/@babel/core": {
- "version": "7.12.9",
- "dev": true,
+ "node_modules/@radix-ui/react-arrow/node_modules/@radix-ui/react-compose-refs": {
+ "version": "1.0.0",
"license": "MIT",
"dependencies": {
- "@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.5",
- "@babel/helper-module-transforms": "^7.12.1",
- "@babel/helpers": "^7.12.5",
- "@babel/parser": "^7.12.7",
- "@babel/template": "^7.12.7",
- "@babel/traverse": "^7.12.9",
- "@babel/types": "^7.12.7",
- "convert-source-map": "^1.7.0",
- "debug": "^4.1.0",
- "gensync": "^1.0.0-beta.1",
- "json5": "^2.1.2",
- "lodash": "^4.17.19",
- "resolve": "^1.3.2",
- "semver": "^5.4.1",
- "source-map": "^0.5.0"
- },
- "engines": {
- "node": ">=6.9.0"
+ "@babel/runtime": "^7.13.10"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/babel"
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/@mdx-js/mdx/node_modules/@babel/plugin-syntax-jsx": {
- "version": "7.12.1",
- "dev": true,
+ "node_modules/@radix-ui/react-arrow/node_modules/@radix-ui/react-primitive": {
+ "version": "1.0.1",
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.10.4"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-slot": "1.0.1"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@mdx-js/mdx/node_modules/semver": {
- "version": "5.7.1",
- "dev": true,
- "license": "ISC",
- "bin": {
- "semver": "bin/semver"
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/@mdx-js/react": {
- "version": "1.6.22",
- "dev": true,
+ "node_modules/@radix-ui/react-arrow/node_modules/@radix-ui/react-slot": {
+ "version": "1.0.1",
"license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-compose-refs": "1.0.0"
},
"peerDependencies": {
- "react": "^16.13.1 || ^17.0.0"
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/@mdx-js/util": {
- "version": "1.6.22",
- "dev": true,
+ "node_modules/@radix-ui/react-avatar": {
+ "version": "1.0.4",
"license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-use-callback-ref": "1.0.1",
+ "@radix-ui/react-use-layout-effect": "1.0.1"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/@mrmlnc/readdir-enhanced": {
- "version": "2.2.1",
- "dev": true,
+ "node_modules/@radix-ui/react-checkbox": {
+ "version": "1.0.4",
"license": "MIT",
"dependencies": {
- "call-me-maybe": "^1.0.1",
- "glob-to-regexp": "^0.3.0"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/primitive": "1.0.1",
+ "@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-presence": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-use-controllable-state": "1.0.1",
+ "@radix-ui/react-use-previous": "1.0.1",
+ "@radix-ui/react-use-size": "1.0.1"
},
- "engines": {
- "node": ">=4"
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/@mrmlnc/readdir-enhanced/node_modules/glob-to-regexp": {
- "version": "0.3.0",
- "dev": true,
- "license": "BSD"
- },
- "node_modules/@next/bundle-analyzer": {
- "version": "12.1.0",
- "dev": true,
+ "node_modules/@radix-ui/react-collapsible": {
+ "version": "1.0.3",
"license": "MIT",
"dependencies": {
- "webpack-bundle-analyzer": "4.3.0"
- }
- },
- "node_modules/@next/env": {
- "version": "12.3.4",
- "license": "MIT"
- },
- "node_modules/@next/swc-android-arm-eabi": {
- "version": "12.3.4",
- "resolved": "https://registry.npmjs.org/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-12.3.4.tgz",
- "integrity": "sha512-cM42Cw6V4Bz/2+j/xIzO8nK/Q3Ly+VSlZJTa1vHzsocJRYz8KT6MrreXaci2++SIZCF1rVRCDgAg5PpqRibdIA==",
- "cpu": [
- "arm"
- ],
- "optional": true,
- "os": [
- "android"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-android-arm64": {
- "version": "12.3.4",
- "resolved": "https://registry.npmjs.org/@next/swc-android-arm64/-/swc-android-arm64-12.3.4.tgz",
- "integrity": "sha512-5jf0dTBjL+rabWjGj3eghpLUxCukRhBcEJgwLedewEA/LJk2HyqCvGIwj5rH+iwmq1llCWbOky2dO3pVljrapg==",
- "cpu": [
- "arm64"
- ],
- "optional": true,
- "os": [
- "android"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-darwin-arm64": {
- "version": "12.3.4",
- "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-12.3.4.tgz",
- "integrity": "sha512-DqsSTd3FRjQUR6ao0E1e2OlOcrF5br+uegcEGPVonKYJpcr0MJrtYmPxd4v5T6UCJZ+XzydF7eQo5wdGvSZAyA==",
- "cpu": [
- "arm64"
- ],
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-darwin-x64": {
- "version": "12.3.4",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-freebsd-x64": {
- "version": "12.3.4",
- "resolved": "https://registry.npmjs.org/@next/swc-freebsd-x64/-/swc-freebsd-x64-12.3.4.tgz",
- "integrity": "sha512-KM9JXRXi/U2PUM928z7l4tnfQ9u8bTco/jb939pdFUHqc28V43Ohd31MmZD1QzEK4aFlMRaIBQOWQZh4D/E5lQ==",
- "cpu": [
- "x64"
- ],
- "optional": true,
- "os": [
- "freebsd"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-linux-arm-gnueabihf": {
- "version": "12.3.4",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-12.3.4.tgz",
- "integrity": "sha512-3zqD3pO+z5CZyxtKDTnOJ2XgFFRUBciOox6EWkoZvJfc9zcidNAQxuwonUeNts6Xbm8Wtm5YGIRC0x+12YH7kw==",
- "cpu": [
- "arm"
- ],
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-linux-arm64-gnu": {
- "version": "12.3.4",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-12.3.4.tgz",
- "integrity": "sha512-kiX0vgJGMZVv+oo1QuObaYulXNvdH/IINmvdZnVzMO/jic/B8EEIGlZ8Bgvw8LCjH3zNVPO3mGrdMvnEEPEhKA==",
- "cpu": [
- "arm64"
- ],
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-linux-arm64-musl": {
- "version": "12.3.4",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-12.3.4.tgz",
- "integrity": "sha512-EETZPa1juczrKLWk5okoW2hv7D7WvonU+Cf2CgsSoxgsYbUCZ1voOpL4JZTOb6IbKMDo6ja+SbY0vzXZBUMvkQ==",
- "cpu": [
- "arm64"
- ],
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-linux-x64-gnu": {
- "version": "12.3.4",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-12.3.4.tgz",
- "integrity": "sha512-4csPbRbfZbuWOk3ATyWcvVFdD9/Rsdq5YHKvRuEni68OCLkfy4f+4I9OBpyK1SKJ00Cih16NJbHE+k+ljPPpag==",
- "cpu": [
- "x64"
- ],
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-linux-x64-musl": {
- "version": "12.3.4",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-12.3.4.tgz",
- "integrity": "sha512-YeBmI+63Ro75SUiL/QXEVXQ19T++58aI/IINOyhpsRL1LKdyfK/35iilraZEFz9bLQrwy1LYAR5lK200A9Gjbg==",
- "cpu": [
- "x64"
- ],
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-win32-arm64-msvc": {
- "version": "12.3.4",
- "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-12.3.4.tgz",
- "integrity": "sha512-Sd0qFUJv8Tj0PukAYbCCDbmXcMkbIuhnTeHm9m4ZGjCf6kt7E/RMs55Pd3R5ePjOkN7dJEuxYBehawTR/aPDSQ==",
- "cpu": [
- "arm64"
- ],
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-win32-ia32-msvc": {
- "version": "12.3.4",
- "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-12.3.4.tgz",
- "integrity": "sha512-rt/vv/vg/ZGGkrkKcuJ0LyliRdbskQU+91bje+PgoYmxTZf/tYs6IfbmgudBJk6gH3QnjHWbkphDdRQrseRefQ==",
- "cpu": [
- "ia32"
- ],
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-win32-x64-msvc": {
- "version": "12.3.4",
- "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-12.3.4.tgz",
- "integrity": "sha512-DQ20JEfTBZAgF8QCjYfJhv2/279M6onxFjdG/+5B0Cyj00/EdBxiWb2eGGFgQhrBbNv/lsvzFbbi0Ptf8Vw/bg==",
- "cpu": [
- "x64"
- ],
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@nodelib/fs.scandir": {
- "version": "2.1.5",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@nodelib/fs.stat": "2.0.5",
- "run-parallel": "^1.1.9"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/@nodelib/fs.stat": {
- "version": "2.0.5",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/@nodelib/fs.walk": {
- "version": "1.2.8",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@nodelib/fs.scandir": "2.1.5",
- "fastq": "^1.6.0"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/@npmcli/arborist": {
- "version": "5.2.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "@isaacs/string-locale-compare": "^1.1.0",
- "@npmcli/installed-package-contents": "^1.0.7",
- "@npmcli/map-workspaces": "^2.0.3",
- "@npmcli/metavuln-calculator": "^3.0.1",
- "@npmcli/move-file": "^2.0.0",
- "@npmcli/name-from-folder": "^1.0.1",
- "@npmcli/node-gyp": "^2.0.0",
- "@npmcli/package-json": "^2.0.0",
- "@npmcli/run-script": "^3.0.0",
- "bin-links": "^3.0.0",
- "cacache": "^16.0.6",
- "common-ancestor-path": "^1.0.1",
- "json-parse-even-better-errors": "^2.3.1",
- "json-stringify-nice": "^1.1.4",
- "mkdirp": "^1.0.4",
- "mkdirp-infer-owner": "^2.0.0",
- "nopt": "^5.0.0",
- "npm-install-checks": "^5.0.0",
- "npm-package-arg": "^9.0.0",
- "npm-pick-manifest": "^7.0.0",
- "npm-registry-fetch": "^13.0.0",
- "npmlog": "^6.0.2",
- "pacote": "^13.0.5",
- "parse-conflict-json": "^2.0.1",
- "proc-log": "^2.0.0",
- "promise-all-reject-late": "^1.0.0",
- "promise-call-limit": "^1.0.1",
- "read-package-json-fast": "^2.0.2",
- "readdir-scoped-modules": "^1.1.0",
- "rimraf": "^3.0.2",
- "semver": "^7.3.7",
- "ssri": "^9.0.0",
- "treeverse": "^2.0.0",
- "walk-up-path": "^1.0.0"
- },
- "bin": {
- "arborist": "bin/index.js"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/@npmcli/arborist/node_modules/@npmcli/fs": {
- "version": "2.1.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "@gar/promisify": "^1.1.3",
- "semver": "^7.3.5"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/@npmcli/arborist/node_modules/@npmcli/move-file": {
- "version": "2.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "mkdirp": "^1.0.4",
- "rimraf": "^3.0.2"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/@npmcli/arborist/node_modules/@tootallnate/once": {
- "version": "2.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@npmcli/arborist/node_modules/are-we-there-yet": {
- "version": "3.0.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
- }
- },
- "node_modules/@npmcli/arborist/node_modules/brace-expansion": {
- "version": "2.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "balanced-match": "^1.0.0"
- }
- },
- "node_modules/@npmcli/arborist/node_modules/builtins": {
- "version": "5.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "semver": "^7.0.0"
- }
- },
- "node_modules/@npmcli/arborist/node_modules/cacache": {
- "version": "16.1.1",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "@npmcli/fs": "^2.1.0",
- "@npmcli/move-file": "^2.0.0",
- "chownr": "^2.0.0",
- "fs-minipass": "^2.1.0",
- "glob": "^8.0.1",
- "infer-owner": "^1.0.4",
- "lru-cache": "^7.7.1",
- "minipass": "^3.1.6",
- "minipass-collect": "^1.0.2",
- "minipass-flush": "^1.0.5",
- "minipass-pipeline": "^1.2.4",
- "mkdirp": "^1.0.4",
- "p-map": "^4.0.0",
- "promise-inflight": "^1.0.1",
- "rimraf": "^3.0.2",
- "ssri": "^9.0.0",
- "tar": "^6.1.11",
- "unique-filename": "^1.1.1"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/@npmcli/arborist/node_modules/cacache/node_modules/lru-cache": {
- "version": "7.10.1",
- "dev": true,
- "license": "ISC",
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/@npmcli/arborist/node_modules/gauge": {
- "version": "4.0.4",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/@npmcli/arborist/node_modules/glob": {
- "version": "8.0.3",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^5.0.1",
- "once": "^1.3.0"
- },
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/@npmcli/arborist/node_modules/hosted-git-info": {
- "version": "5.0.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "lru-cache": "^7.5.1"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
- }
- },
- "node_modules/@npmcli/arborist/node_modules/hosted-git-info/node_modules/lru-cache": {
- "version": "7.10.1",
- "dev": true,
- "license": "ISC",
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/@npmcli/arborist/node_modules/http-proxy-agent": {
- "version": "5.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@tootallnate/once": "2",
- "agent-base": "6",
- "debug": "4"
- },
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/@npmcli/arborist/node_modules/make-fetch-happen": {
- "version": "10.1.7",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "agentkeepalive": "^4.2.1",
- "cacache": "^16.1.0",
- "http-cache-semantics": "^4.1.0",
- "http-proxy-agent": "^5.0.0",
- "https-proxy-agent": "^5.0.0",
- "is-lambda": "^1.0.1",
- "lru-cache": "^7.7.1",
- "minipass": "^3.1.6",
- "minipass-collect": "^1.0.2",
- "minipass-fetch": "^2.0.3",
- "minipass-flush": "^1.0.5",
- "minipass-pipeline": "^1.2.4",
- "negotiator": "^0.6.3",
- "promise-retry": "^2.0.1",
- "socks-proxy-agent": "^7.0.0",
- "ssri": "^9.0.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/@npmcli/arborist/node_modules/make-fetch-happen/node_modules/lru-cache": {
- "version": "7.10.1",
- "dev": true,
- "license": "ISC",
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/@npmcli/arborist/node_modules/minimatch": {
- "version": "5.1.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "brace-expansion": "^2.0.1"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/@npmcli/arborist/node_modules/minipass-fetch": {
- "version": "2.1.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "minipass": "^3.1.6",
- "minipass-sized": "^1.0.3",
- "minizlib": "^2.1.2"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- },
- "optionalDependencies": {
- "encoding": "^0.1.13"
- }
- },
- "node_modules/@npmcli/arborist/node_modules/npm-package-arg": {
- "version": "9.0.2",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "hosted-git-info": "^5.0.0",
- "semver": "^7.3.5",
- "validate-npm-package-name": "^4.0.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/@npmcli/arborist/node_modules/npm-registry-fetch": {
- "version": "13.1.1",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "make-fetch-happen": "^10.0.6",
- "minipass": "^3.1.6",
- "minipass-fetch": "^2.0.3",
- "minipass-json-stream": "^1.0.1",
- "minizlib": "^2.1.2",
- "npm-package-arg": "^9.0.1",
- "proc-log": "^2.0.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/@npmcli/arborist/node_modules/npmlog": {
- "version": "6.0.2",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/@npmcli/arborist/node_modules/p-map": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "aggregate-error": "^3.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@npmcli/arborist/node_modules/semver": {
- "version": "7.3.7",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/@npmcli/arborist/node_modules/socks-proxy-agent": {
- "version": "7.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "agent-base": "^6.0.2",
- "debug": "^4.3.3",
- "socks": "^2.6.2"
- },
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@npmcli/arborist/node_modules/ssri": {
- "version": "9.0.1",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "minipass": "^3.1.1"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/@npmcli/arborist/node_modules/validate-npm-package-name": {
- "version": "4.0.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "builtins": "^5.0.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/@npmcli/ci-detect": {
- "version": "1.4.0",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/@npmcli/fs": {
- "version": "1.1.1",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "@gar/promisify": "^1.0.1",
- "semver": "^7.3.5"
- }
- },
- "node_modules/@npmcli/fs/node_modules/semver": {
- "version": "7.3.5",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/@npmcli/git": {
- "version": "3.0.1",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "@npmcli/promise-spawn": "^3.0.0",
- "lru-cache": "^7.4.4",
- "mkdirp": "^1.0.4",
- "npm-pick-manifest": "^7.0.0",
- "proc-log": "^2.0.0",
- "promise-inflight": "^1.0.1",
- "promise-retry": "^2.0.1",
- "semver": "^7.3.5",
- "which": "^2.0.2"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/@npmcli/git/node_modules/lru-cache": {
- "version": "7.10.1",
- "dev": true,
- "license": "ISC",
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/@npmcli/git/node_modules/semver": {
- "version": "7.3.7",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/@npmcli/git/node_modules/semver/node_modules/lru-cache": {
- "version": "6.0.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "yallist": "^4.0.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/@npmcli/installed-package-contents": {
- "version": "1.0.7",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "npm-bundled": "^1.1.1",
- "npm-normalize-package-bin": "^1.0.1"
- },
- "bin": {
- "installed-package-contents": "index.js"
- },
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@npmcli/map-workspaces": {
- "version": "2.0.3",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "@npmcli/name-from-folder": "^1.0.1",
- "glob": "^8.0.1",
- "minimatch": "^5.0.1",
- "read-package-json-fast": "^2.0.3"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/@npmcli/map-workspaces/node_modules/brace-expansion": {
- "version": "2.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "balanced-match": "^1.0.0"
- }
- },
- "node_modules/@npmcli/map-workspaces/node_modules/glob": {
- "version": "8.0.3",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^5.0.1",
- "once": "^1.3.0"
- },
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/@npmcli/map-workspaces/node_modules/minimatch": {
- "version": "5.1.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "brace-expansion": "^2.0.1"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/@npmcli/metavuln-calculator": {
- "version": "3.1.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "cacache": "^16.0.0",
- "json-parse-even-better-errors": "^2.3.1",
- "pacote": "^13.0.3",
- "semver": "^7.3.5"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/@npmcli/metavuln-calculator/node_modules/@npmcli/fs": {
- "version": "2.1.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "@gar/promisify": "^1.1.3",
- "semver": "^7.3.5"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/@npmcli/metavuln-calculator/node_modules/@npmcli/move-file": {
- "version": "2.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "mkdirp": "^1.0.4",
- "rimraf": "^3.0.2"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/@npmcli/metavuln-calculator/node_modules/brace-expansion": {
- "version": "2.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "balanced-match": "^1.0.0"
- }
- },
- "node_modules/@npmcli/metavuln-calculator/node_modules/cacache": {
- "version": "16.1.1",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "@npmcli/fs": "^2.1.0",
- "@npmcli/move-file": "^2.0.0",
- "chownr": "^2.0.0",
- "fs-minipass": "^2.1.0",
- "glob": "^8.0.1",
- "infer-owner": "^1.0.4",
- "lru-cache": "^7.7.1",
- "minipass": "^3.1.6",
- "minipass-collect": "^1.0.2",
- "minipass-flush": "^1.0.5",
- "minipass-pipeline": "^1.2.4",
- "mkdirp": "^1.0.4",
- "p-map": "^4.0.0",
- "promise-inflight": "^1.0.1",
- "rimraf": "^3.0.2",
- "ssri": "^9.0.0",
- "tar": "^6.1.11",
- "unique-filename": "^1.1.1"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/@npmcli/metavuln-calculator/node_modules/cacache/node_modules/lru-cache": {
- "version": "7.10.1",
- "dev": true,
- "license": "ISC",
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/@npmcli/metavuln-calculator/node_modules/glob": {
- "version": "8.0.3",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^5.0.1",
- "once": "^1.3.0"
- },
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/@npmcli/metavuln-calculator/node_modules/minimatch": {
- "version": "5.1.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "brace-expansion": "^2.0.1"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/@npmcli/metavuln-calculator/node_modules/p-map": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "aggregate-error": "^3.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@npmcli/metavuln-calculator/node_modules/semver": {
- "version": "7.3.7",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/@npmcli/metavuln-calculator/node_modules/ssri": {
- "version": "9.0.1",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "minipass": "^3.1.1"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/@npmcli/move-file": {
- "version": "1.1.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "mkdirp": "^1.0.4",
- "rimraf": "^3.0.2"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/@npmcli/name-from-folder": {
- "version": "1.0.1",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/@npmcli/node-gyp": {
- "version": "2.0.0",
- "dev": true,
- "license": "ISC",
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/@npmcli/package-json": {
- "version": "2.0.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "json-parse-even-better-errors": "^2.3.1"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/@npmcli/promise-spawn": {
- "version": "3.0.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "infer-owner": "^1.0.4"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/@npmcli/run-script": {
- "version": "3.0.3",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "@npmcli/node-gyp": "^2.0.0",
- "@npmcli/promise-spawn": "^3.0.0",
- "node-gyp": "^8.4.1",
- "read-package-json-fast": "^2.0.3"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/@nrwl/cli": {
- "version": "14.3.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "nx": "14.3.2"
- }
- },
- "node_modules/@nrwl/tao": {
- "version": "14.3.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "nx": "14.3.2"
- },
- "bin": {
- "tao": "index.js"
- }
- },
- "node_modules/@octokit/auth-token": {
- "version": "3.0.1",
- "license": "MIT",
- "dependencies": {
- "@octokit/types": "^7.0.0"
- },
- "engines": {
- "node": ">= 14"
- }
- },
- "node_modules/@octokit/auth-token/node_modules/@octokit/openapi-types": {
- "version": "13.9.0",
- "license": "MIT"
- },
- "node_modules/@octokit/auth-token/node_modules/@octokit/types": {
- "version": "7.3.0",
- "license": "MIT",
- "dependencies": {
- "@octokit/openapi-types": "^13.9.0"
- }
- },
- "node_modules/@octokit/core": {
- "version": "4.0.5",
- "license": "MIT",
- "dependencies": {
- "@octokit/auth-token": "^3.0.0",
- "@octokit/graphql": "^5.0.0",
- "@octokit/request": "^6.0.0",
- "@octokit/request-error": "^3.0.0",
- "@octokit/types": "^7.0.0",
- "before-after-hook": "^2.2.0",
- "universal-user-agent": "^6.0.0"
- },
- "engines": {
- "node": ">= 14"
- }
- },
- "node_modules/@octokit/core/node_modules/@octokit/openapi-types": {
- "version": "13.9.0",
- "license": "MIT"
- },
- "node_modules/@octokit/core/node_modules/@octokit/types": {
- "version": "7.3.0",
- "license": "MIT",
- "dependencies": {
- "@octokit/openapi-types": "^13.9.0"
- }
- },
- "node_modules/@octokit/endpoint": {
- "version": "7.0.2",
- "license": "MIT",
- "dependencies": {
- "@octokit/types": "^7.0.0",
- "is-plain-object": "^5.0.0",
- "universal-user-agent": "^6.0.0"
- },
- "engines": {
- "node": ">= 14"
- }
- },
- "node_modules/@octokit/endpoint/node_modules/@octokit/openapi-types": {
- "version": "13.9.0",
- "license": "MIT"
- },
- "node_modules/@octokit/endpoint/node_modules/@octokit/types": {
- "version": "7.3.0",
- "license": "MIT",
- "dependencies": {
- "@octokit/openapi-types": "^13.9.0"
- }
- },
- "node_modules/@octokit/endpoint/node_modules/is-plain-object": {
- "version": "5.0.0",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@octokit/graphql": {
- "version": "5.0.1",
- "license": "MIT",
- "dependencies": {
- "@octokit/request": "^6.0.0",
- "@octokit/types": "^7.0.0",
- "universal-user-agent": "^6.0.0"
- },
- "engines": {
- "node": ">= 14"
- }
- },
- "node_modules/@octokit/graphql/node_modules/@octokit/openapi-types": {
- "version": "13.9.0",
- "license": "MIT"
- },
- "node_modules/@octokit/graphql/node_modules/@octokit/types": {
- "version": "7.3.0",
- "license": "MIT",
- "dependencies": {
- "@octokit/openapi-types": "^13.9.0"
- }
- },
- "node_modules/@octokit/openapi-types": {
- "version": "11.2.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@octokit/plugin-enterprise-rest": {
- "version": "6.0.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@octokit/plugin-paginate-rest": {
- "version": "2.17.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@octokit/types": "^6.34.0"
- },
- "peerDependencies": {
- "@octokit/core": ">=2"
- }
- },
- "node_modules/@octokit/plugin-request-log": {
- "version": "1.0.4",
- "dev": true,
- "license": "MIT",
- "peerDependencies": {
- "@octokit/core": ">=3"
- }
- },
- "node_modules/@octokit/plugin-rest-endpoint-methods": {
- "version": "5.13.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@octokit/types": "^6.34.0",
- "deprecation": "^2.3.1"
- },
- "peerDependencies": {
- "@octokit/core": ">=3"
- }
- },
- "node_modules/@octokit/request": {
- "version": "6.2.1",
- "license": "MIT",
- "dependencies": {
- "@octokit/endpoint": "^7.0.0",
- "@octokit/request-error": "^3.0.0",
- "@octokit/types": "^7.0.0",
- "is-plain-object": "^5.0.0",
- "node-fetch": "^2.6.7",
- "universal-user-agent": "^6.0.0"
- },
- "engines": {
- "node": ">= 14"
- }
- },
- "node_modules/@octokit/request-error": {
- "version": "3.0.1",
- "license": "MIT",
- "dependencies": {
- "@octokit/types": "^7.0.0",
- "deprecation": "^2.0.0",
- "once": "^1.4.0"
- },
- "engines": {
- "node": ">= 14"
- }
- },
- "node_modules/@octokit/request-error/node_modules/@octokit/openapi-types": {
- "version": "13.9.0",
- "license": "MIT"
- },
- "node_modules/@octokit/request-error/node_modules/@octokit/types": {
- "version": "7.3.0",
- "license": "MIT",
- "dependencies": {
- "@octokit/openapi-types": "^13.9.0"
- }
- },
- "node_modules/@octokit/request/node_modules/@octokit/openapi-types": {
- "version": "13.9.0",
- "license": "MIT"
- },
- "node_modules/@octokit/request/node_modules/@octokit/types": {
- "version": "7.3.0",
- "license": "MIT",
- "dependencies": {
- "@octokit/openapi-types": "^13.9.0"
- }
- },
- "node_modules/@octokit/request/node_modules/is-plain-object": {
- "version": "5.0.0",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@octokit/rest": {
- "version": "18.12.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@octokit/core": "^3.5.1",
- "@octokit/plugin-paginate-rest": "^2.16.8",
- "@octokit/plugin-request-log": "^1.0.4",
- "@octokit/plugin-rest-endpoint-methods": "^5.12.0"
- }
- },
- "node_modules/@octokit/rest/node_modules/@octokit/auth-token": {
- "version": "2.5.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@octokit/types": "^6.0.3"
- }
- },
- "node_modules/@octokit/rest/node_modules/@octokit/core": {
- "version": "3.6.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@octokit/auth-token": "^2.4.4",
- "@octokit/graphql": "^4.5.8",
- "@octokit/request": "^5.6.3",
- "@octokit/request-error": "^2.0.5",
- "@octokit/types": "^6.0.3",
- "before-after-hook": "^2.2.0",
- "universal-user-agent": "^6.0.0"
- }
- },
- "node_modules/@octokit/rest/node_modules/@octokit/endpoint": {
- "version": "6.0.12",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@octokit/types": "^6.0.3",
- "is-plain-object": "^5.0.0",
- "universal-user-agent": "^6.0.0"
- }
- },
- "node_modules/@octokit/rest/node_modules/@octokit/graphql": {
- "version": "4.8.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@octokit/request": "^5.6.0",
- "@octokit/types": "^6.0.3",
- "universal-user-agent": "^6.0.0"
- }
- },
- "node_modules/@octokit/rest/node_modules/@octokit/request": {
- "version": "5.6.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@octokit/endpoint": "^6.0.1",
- "@octokit/request-error": "^2.1.0",
- "@octokit/types": "^6.16.1",
- "is-plain-object": "^5.0.0",
- "node-fetch": "^2.6.7",
- "universal-user-agent": "^6.0.0"
- }
- },
- "node_modules/@octokit/rest/node_modules/@octokit/request-error": {
- "version": "2.1.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@octokit/types": "^6.0.3",
- "deprecation": "^2.0.0",
- "once": "^1.4.0"
- }
- },
- "node_modules/@octokit/rest/node_modules/is-plain-object": {
- "version": "5.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@octokit/types": {
- "version": "6.34.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@octokit/openapi-types": "^11.2.0"
- }
- },
- "node_modules/@parcel/watcher": {
- "version": "2.0.4",
- "dev": true,
- "hasInstallScript": true,
- "license": "MIT",
- "dependencies": {
- "node-addon-api": "^3.2.1",
- "node-gyp-build": "^4.3.0"
- },
- "engines": {
- "node": ">= 10.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/@playwright/test": {
- "version": "1.29.1",
- "dev": true,
- "license": "Apache-2.0",
- "dependencies": {
- "@types/node": "*",
- "playwright-core": "1.29.1"
- },
- "bin": {
- "playwright": "cli.js"
- },
- "engines": {
- "node": ">=14"
- }
- },
- "node_modules/@playwright/test/node_modules/playwright-core": {
- "version": "1.29.1",
- "dev": true,
- "license": "Apache-2.0",
- "bin": {
- "playwright": "cli.js"
- },
- "engines": {
- "node": ">=14"
- }
- },
- "node_modules/@pmmmwh/react-refresh-webpack-plugin": {
- "version": "0.5.4",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-html-community": "^0.0.8",
- "common-path-prefix": "^3.0.0",
- "core-js-pure": "^3.8.1",
- "error-stack-parser": "^2.0.6",
- "find-up": "^5.0.0",
- "html-entities": "^2.1.0",
- "loader-utils": "^2.0.0",
- "schema-utils": "^3.0.0",
- "source-map": "^0.7.3"
- },
- "engines": {
- "node": ">= 10.13"
- },
- "peerDependencies": {
- "@types/webpack": "4.x || 5.x",
- "react-refresh": ">=0.10.0 <1.0.0",
- "sockjs-client": "^1.4.0",
- "type-fest": ">=0.17.0 <3.0.0",
- "webpack": ">=4.43.0 <6.0.0",
- "webpack-dev-server": "3.x || 4.x",
- "webpack-hot-middleware": "2.x",
- "webpack-plugin-serve": "0.x || 1.x"
- },
- "peerDependenciesMeta": {
- "@types/webpack": {
- "optional": true
- },
- "sockjs-client": {
- "optional": true
- },
- "type-fest": {
- "optional": true
- },
- "webpack-dev-server": {
- "optional": true
- },
- "webpack-hot-middleware": {
- "optional": true
- },
- "webpack-plugin-serve": {
- "optional": true
- }
- }
- },
- "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/source-map": {
- "version": "0.7.3",
- "dev": true,
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/@polka/url": {
- "version": "1.0.0-next.21",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@popperjs/core": {
- "version": "2.11.7",
- "license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/popperjs"
- }
- },
- "node_modules/@radix-ui/number": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10"
- }
- },
- "node_modules/@radix-ui/primitive": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10"
- }
- },
- "node_modules/@radix-ui/react-arrow": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-primitive": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-arrow/node_modules/@radix-ui/react-primitive": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-slot": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-arrow/node_modules/@radix-ui/react-slot": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-compose-refs": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-collection": {
- "version": "1.0.3",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-compose-refs": "1.0.1",
- "@radix-ui/react-context": "1.0.1",
- "@radix-ui/react-primitive": "1.0.3",
- "@radix-ui/react-slot": "1.0.2"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-collection/node_modules/@radix-ui/react-compose-refs": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-collection/node_modules/@radix-ui/react-context": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-collection/node_modules/@radix-ui/react-primitive": {
- "version": "1.0.3",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-slot": "1.0.2"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-collection/node_modules/@radix-ui/react-slot": {
- "version": "1.0.2",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-compose-refs": "1.0.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-compose-refs": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-context": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-dialog": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/primitive": "1.0.0",
- "@radix-ui/react-compose-refs": "1.0.0",
- "@radix-ui/react-context": "1.0.0",
- "@radix-ui/react-dismissable-layer": "1.0.0",
- "@radix-ui/react-focus-guards": "1.0.0",
- "@radix-ui/react-focus-scope": "1.0.0",
- "@radix-ui/react-id": "1.0.0",
- "@radix-ui/react-portal": "1.0.0",
- "@radix-ui/react-presence": "1.0.0",
- "@radix-ui/react-primitive": "1.0.0",
- "@radix-ui/react-slot": "1.0.0",
- "@radix-ui/react-use-controllable-state": "1.0.0",
- "aria-hidden": "^1.1.1",
- "react-remove-scroll": "2.5.4"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-primitive": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-slot": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-slot": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-compose-refs": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-direction": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-dismissable-layer": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/primitive": "1.0.0",
- "@radix-ui/react-compose-refs": "1.0.0",
- "@radix-ui/react-primitive": "1.0.0",
- "@radix-ui/react-use-callback-ref": "1.0.0",
- "@radix-ui/react-use-escape-keydown": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-dismissable-layer/node_modules/@radix-ui/react-primitive": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-slot": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-dismissable-layer/node_modules/@radix-ui/react-slot": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-compose-refs": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-dropdown-menu": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-dropdown-menu/-/react-dropdown-menu-2.0.3.tgz",
- "integrity": "sha512-ToCPPztcJMu8WW33xCoG/nGcclVsCsV90IiEdkLhrWro3DzJOR2pPUoSi/aXX7c8imRO0DsZOrfL2bmn0U9qAQ==",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/primitive": "1.0.0",
- "@radix-ui/react-compose-refs": "1.0.0",
- "@radix-ui/react-context": "1.0.0",
- "@radix-ui/react-id": "1.0.0",
- "@radix-ui/react-menu": "2.0.3",
- "@radix-ui/react-primitive": "1.0.1",
- "@radix-ui/react-use-controllable-state": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-dropdown-menu/node_modules/@radix-ui/react-primitive": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-1.0.1.tgz",
- "integrity": "sha512-fHbmislWVkZaIdeF6GZxF0A/NH/3BjrGIYj+Ae6eTmTCr7EB0RQAAVEiqsXK6p3/JcRqVSBQoceZroj30Jj3XA==",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-slot": "1.0.1"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-focus-guards": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-focus-scope": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-compose-refs": "1.0.0",
- "@radix-ui/react-primitive": "1.0.0",
- "@radix-ui/react-use-callback-ref": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-focus-scope/node_modules/@radix-ui/react-primitive": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-slot": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-focus-scope/node_modules/@radix-ui/react-slot": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-compose-refs": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-id": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-use-layout-effect": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-label": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-compose-refs": "1.0.0",
- "@radix-ui/react-context": "1.0.0",
- "@radix-ui/react-id": "1.0.0",
- "@radix-ui/react-primitive": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-label/node_modules/@radix-ui/react-primitive": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-slot": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-label/node_modules/@radix-ui/react-slot": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-compose-refs": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-menu": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-menu/-/react-menu-2.0.3.tgz",
- "integrity": "sha512-JKgWMzNhWqnimRynMDtR26bKfpraGUj4e39+g9p45Fb1XTEDWepjvtBlkjhZcM068VHiwp7HALqkt7Y5qVRbyQ==",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/primitive": "1.0.0",
- "@radix-ui/react-collection": "1.0.1",
- "@radix-ui/react-compose-refs": "1.0.0",
- "@radix-ui/react-context": "1.0.0",
- "@radix-ui/react-direction": "1.0.0",
- "@radix-ui/react-dismissable-layer": "1.0.2",
- "@radix-ui/react-focus-guards": "1.0.0",
- "@radix-ui/react-focus-scope": "1.0.1",
- "@radix-ui/react-id": "1.0.0",
- "@radix-ui/react-popper": "1.1.0",
- "@radix-ui/react-portal": "1.0.1",
- "@radix-ui/react-presence": "1.0.0",
- "@radix-ui/react-primitive": "1.0.1",
- "@radix-ui/react-roving-focus": "1.0.2",
- "@radix-ui/react-slot": "1.0.1",
- "@radix-ui/react-use-callback-ref": "1.0.0",
- "aria-hidden": "^1.1.1",
- "react-remove-scroll": "2.5.5"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-arrow": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-arrow/-/react-arrow-1.0.1.tgz",
- "integrity": "sha512-1yientwXqXcErDHEv8av9ZVNEBldH8L9scVR3is20lL+jOCfcJyMFZFEY5cgIrgexsq1qggSXqiEL/d/4f+QXA==",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-primitive": "1.0.1"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-collection": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-collection/-/react-collection-1.0.1.tgz",
- "integrity": "sha512-uuiFbs+YCKjn3X1DTSx9G7BHApu4GHbi3kgiwsnFUbOKCrwejAJv4eE4Vc8C0Oaxt9T0aV4ox0WCOdx+39Xo+g==",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-compose-refs": "1.0.0",
- "@radix-ui/react-context": "1.0.0",
- "@radix-ui/react-primitive": "1.0.1",
- "@radix-ui/react-slot": "1.0.1"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-dismissable-layer": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.0.2.tgz",
- "integrity": "sha512-WjJzMrTWROozDqLB0uRWYvj4UuXsM/2L19EmQ3Au+IJWqwvwq9Bwd+P8ivo0Deg9JDPArR1I6MbWNi1CmXsskg==",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/primitive": "1.0.0",
- "@radix-ui/react-compose-refs": "1.0.0",
- "@radix-ui/react-primitive": "1.0.1",
- "@radix-ui/react-use-callback-ref": "1.0.0",
- "@radix-ui/react-use-escape-keydown": "1.0.2"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-focus-scope": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-focus-scope/-/react-focus-scope-1.0.1.tgz",
- "integrity": "sha512-Ej2MQTit8IWJiS2uuujGUmxXjF/y5xZptIIQnyd2JHLwtV0R2j9NRVoRj/1j/gJ7e3REdaBw4Hjf4a1ImhkZcQ==",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-compose-refs": "1.0.0",
- "@radix-ui/react-primitive": "1.0.1",
- "@radix-ui/react-use-callback-ref": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-popper": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-popper/-/react-popper-1.1.0.tgz",
- "integrity": "sha512-07U7jpI0dZcLRAxT7L9qs6HecSoPhDSJybF7mEGHJDBDv+ZoGCvIlva0s+WxMXwJEav+ckX3hAlXBtnHmuvlCQ==",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@floating-ui/react-dom": "0.7.2",
- "@radix-ui/react-arrow": "1.0.1",
- "@radix-ui/react-compose-refs": "1.0.0",
- "@radix-ui/react-context": "1.0.0",
- "@radix-ui/react-primitive": "1.0.1",
- "@radix-ui/react-use-callback-ref": "1.0.0",
- "@radix-ui/react-use-layout-effect": "1.0.0",
- "@radix-ui/react-use-rect": "1.0.0",
- "@radix-ui/react-use-size": "1.0.0",
- "@radix-ui/rect": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-portal": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-portal/-/react-portal-1.0.1.tgz",
- "integrity": "sha512-NY2vUWI5WENgAT1nfC6JS7RU5xRYBfjZVLq0HmgEN1Ezy3rk/UruMV4+Rd0F40PEaFC5SrLS1ixYvcYIQrb4Ig==",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-primitive": "1.0.1"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-primitive": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-1.0.1.tgz",
- "integrity": "sha512-fHbmislWVkZaIdeF6GZxF0A/NH/3BjrGIYj+Ae6eTmTCr7EB0RQAAVEiqsXK6p3/JcRqVSBQoceZroj30Jj3XA==",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-slot": "1.0.1"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-roving-focus": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-roving-focus/-/react-roving-focus-1.0.2.tgz",
- "integrity": "sha512-HLK+CqD/8pN6GfJm3U+cqpqhSKYAWiOJDe+A+8MfxBnOue39QEeMa43csUn2CXCHQT0/mewh1LrrG4tfkM9DMA==",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/primitive": "1.0.0",
- "@radix-ui/react-collection": "1.0.1",
- "@radix-ui/react-compose-refs": "1.0.0",
- "@radix-ui/react-context": "1.0.0",
- "@radix-ui/react-direction": "1.0.0",
- "@radix-ui/react-id": "1.0.0",
- "@radix-ui/react-primitive": "1.0.1",
- "@radix-ui/react-use-callback-ref": "1.0.0",
- "@radix-ui/react-use-controllable-state": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-use-callback-ref": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.0.0.tgz",
- "integrity": "sha512-GZtyzoHz95Rhs6S63D2t/eqvdFCm7I+yHMLVQheKM7nBD8mbZIt+ct1jz4536MDnaOGKIxynJ8eHTkVGVVkoTg==",
- "dependencies": {
- "@babel/runtime": "^7.13.10"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-use-escape-keydown": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.0.2.tgz",
- "integrity": "sha512-DXGim3x74WgUv+iMNCF+cAo8xUHHeqvjx8zs7trKf+FkQKPQXLk2sX7Gx1ysH7Q76xCpZuxIJE7HLPxRE+Q+GA==",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-use-callback-ref": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-use-size": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-use-size/-/react-use-size-1.0.0.tgz",
- "integrity": "sha512-imZ3aYcoYCKhhgNpkNDh/aTiU05qw9hX+HHI1QDBTyIlcFjgeFlKKySNGMwTp7nYFLQg/j0VA2FmCY4WPDDHMg==",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-use-layout-effect": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-menu/node_modules/react-remove-scroll": {
- "version": "2.5.5",
- "resolved": "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.5.5.tgz",
- "integrity": "sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==",
- "dependencies": {
- "react-remove-scroll-bar": "^2.3.3",
- "react-style-singleton": "^2.2.1",
- "tslib": "^2.1.0",
- "use-callback-ref": "^1.3.0",
- "use-sidecar": "^1.1.2"
- },
- "engines": {
- "node": ">=10"
- },
- "peerDependencies": {
- "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-popover": {
- "version": "1.0.2",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/primitive": "1.0.0",
- "@radix-ui/react-compose-refs": "1.0.0",
- "@radix-ui/react-context": "1.0.0",
- "@radix-ui/react-dismissable-layer": "1.0.2",
- "@radix-ui/react-focus-guards": "1.0.0",
- "@radix-ui/react-focus-scope": "1.0.1",
- "@radix-ui/react-id": "1.0.0",
- "@radix-ui/react-popper": "1.0.1",
- "@radix-ui/react-portal": "1.0.1",
- "@radix-ui/react-presence": "1.0.0",
- "@radix-ui/react-primitive": "1.0.1",
- "@radix-ui/react-slot": "1.0.1",
- "@radix-ui/react-use-controllable-state": "1.0.0",
- "aria-hidden": "^1.1.1",
- "react-remove-scroll": "2.5.5"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-arrow": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-primitive": "1.0.1"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-dismissable-layer": {
- "version": "1.0.2",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/primitive": "1.0.0",
- "@radix-ui/react-compose-refs": "1.0.0",
- "@radix-ui/react-primitive": "1.0.1",
- "@radix-ui/react-use-callback-ref": "1.0.0",
- "@radix-ui/react-use-escape-keydown": "1.0.2"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-focus-scope": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-compose-refs": "1.0.0",
- "@radix-ui/react-primitive": "1.0.1",
- "@radix-ui/react-use-callback-ref": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-popper": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@floating-ui/react-dom": "0.7.2",
- "@radix-ui/react-arrow": "1.0.1",
- "@radix-ui/react-compose-refs": "1.0.0",
- "@radix-ui/react-context": "1.0.0",
- "@radix-ui/react-primitive": "1.0.1",
- "@radix-ui/react-use-layout-effect": "1.0.0",
- "@radix-ui/react-use-rect": "1.0.0",
- "@radix-ui/react-use-size": "1.0.0",
- "@radix-ui/rect": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-portal": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-primitive": "1.0.1"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-primitive": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-slot": "1.0.1"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-use-escape-keydown": {
- "version": "1.0.2",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-use-callback-ref": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-use-size": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-use-layout-effect": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-popover/node_modules/react-remove-scroll": {
- "version": "2.5.5",
- "license": "MIT",
- "dependencies": {
- "react-remove-scroll-bar": "^2.3.3",
- "react-style-singleton": "^2.2.1",
- "tslib": "^2.1.0",
- "use-callback-ref": "^1.3.0",
- "use-sidecar": "^1.1.2"
- },
- "engines": {
- "node": ">=10"
- },
- "peerDependencies": {
- "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-popper": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@floating-ui/react-dom": "0.7.2",
- "@radix-ui/react-arrow": "1.0.0",
- "@radix-ui/react-compose-refs": "1.0.0",
- "@radix-ui/react-context": "1.0.0",
- "@radix-ui/react-primitive": "1.0.0",
- "@radix-ui/react-use-layout-effect": "1.0.0",
- "@radix-ui/react-use-rect": "1.0.0",
- "@radix-ui/react-use-size": "1.0.0",
- "@radix-ui/rect": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-popper/node_modules/@radix-ui/react-primitive": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-slot": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-popper/node_modules/@radix-ui/react-slot": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-compose-refs": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-popper/node_modules/@radix-ui/react-use-size": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-use-layout-effect": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-portal": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-primitive": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-portal/node_modules/@radix-ui/react-primitive": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-slot": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-portal/node_modules/@radix-ui/react-slot": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-compose-refs": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-presence": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-compose-refs": "1.0.0",
- "@radix-ui/react-use-layout-effect": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-primitive": {
- "version": "1.0.2",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-slot": "1.0.1"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-roving-focus": {
- "version": "1.0.4",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/primitive": "1.0.1",
- "@radix-ui/react-collection": "1.0.3",
- "@radix-ui/react-compose-refs": "1.0.1",
- "@radix-ui/react-context": "1.0.1",
- "@radix-ui/react-direction": "1.0.1",
- "@radix-ui/react-id": "1.0.1",
- "@radix-ui/react-primitive": "1.0.3",
- "@radix-ui/react-use-callback-ref": "1.0.1",
- "@radix-ui/react-use-controllable-state": "1.0.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/primitive": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10"
- }
- },
- "node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-compose-refs": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-context": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-direction": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-id": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-use-layout-effect": "1.0.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-primitive": {
- "version": "1.0.3",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-slot": "1.0.2"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-slot": {
- "version": "1.0.2",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-compose-refs": "1.0.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-use-controllable-state": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-use-callback-ref": "1.0.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-use-layout-effect": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-select": {
- "version": "1.2.2",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/number": "1.0.1",
- "@radix-ui/primitive": "1.0.1",
- "@radix-ui/react-collection": "1.0.3",
- "@radix-ui/react-compose-refs": "1.0.1",
- "@radix-ui/react-context": "1.0.1",
- "@radix-ui/react-direction": "1.0.1",
- "@radix-ui/react-dismissable-layer": "1.0.4",
- "@radix-ui/react-focus-guards": "1.0.1",
- "@radix-ui/react-focus-scope": "1.0.3",
- "@radix-ui/react-id": "1.0.1",
- "@radix-ui/react-popper": "1.1.2",
- "@radix-ui/react-portal": "1.0.3",
- "@radix-ui/react-primitive": "1.0.3",
- "@radix-ui/react-slot": "1.0.2",
- "@radix-ui/react-use-callback-ref": "1.0.1",
- "@radix-ui/react-use-controllable-state": "1.0.1",
- "@radix-ui/react-use-layout-effect": "1.0.1",
- "@radix-ui/react-use-previous": "1.0.1",
- "@radix-ui/react-visually-hidden": "1.0.3",
- "aria-hidden": "^1.1.1",
- "react-remove-scroll": "2.5.5"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-select/node_modules/@floating-ui/core": {
- "version": "1.3.1",
- "license": "MIT"
- },
- "node_modules/@radix-ui/react-select/node_modules/@floating-ui/dom": {
- "version": "1.4.5",
- "license": "MIT",
- "dependencies": {
- "@floating-ui/core": "^1.3.1"
- }
- },
- "node_modules/@radix-ui/react-select/node_modules/@floating-ui/react-dom": {
- "version": "2.0.1",
- "license": "MIT",
- "dependencies": {
- "@floating-ui/dom": "^1.3.0"
- },
- "peerDependencies": {
- "react": ">=16.8.0",
- "react-dom": ">=16.8.0"
- }
- },
- "node_modules/@radix-ui/react-select/node_modules/@radix-ui/primitive": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10"
- }
- },
- "node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-arrow": {
- "version": "1.0.3",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-primitive": "1.0.3"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-compose-refs": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-context": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-direction": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-dismissable-layer": {
- "version": "1.0.4",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/primitive": "1.0.1",
- "@radix-ui/react-compose-refs": "1.0.1",
- "@radix-ui/react-primitive": "1.0.3",
- "@radix-ui/react-use-callback-ref": "1.0.1",
- "@radix-ui/react-use-escape-keydown": "1.0.3"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-focus-guards": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-focus-scope": {
- "version": "1.0.3",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-compose-refs": "1.0.1",
- "@radix-ui/react-primitive": "1.0.3",
- "@radix-ui/react-use-callback-ref": "1.0.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-id": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-use-layout-effect": "1.0.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-popper": {
- "version": "1.1.2",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@floating-ui/react-dom": "^2.0.0",
- "@radix-ui/react-arrow": "1.0.3",
- "@radix-ui/react-compose-refs": "1.0.1",
- "@radix-ui/react-context": "1.0.1",
- "@radix-ui/react-primitive": "1.0.3",
- "@radix-ui/react-use-callback-ref": "1.0.1",
- "@radix-ui/react-use-layout-effect": "1.0.1",
- "@radix-ui/react-use-rect": "1.0.1",
- "@radix-ui/react-use-size": "1.0.1",
- "@radix-ui/rect": "1.0.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-portal": {
- "version": "1.0.3",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-primitive": "1.0.3"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-primitive": {
- "version": "1.0.3",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-slot": "1.0.2"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-slot": {
- "version": "1.0.2",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-compose-refs": "1.0.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-use-controllable-state": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-use-callback-ref": "1.0.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-use-escape-keydown": {
- "version": "1.0.3",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-use-callback-ref": "1.0.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-use-layout-effect": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-use-previous": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-use-rect": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/rect": "1.0.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-visually-hidden": {
- "version": "1.0.3",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-primitive": "1.0.3"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-select/node_modules/@radix-ui/rect": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10"
- }
- },
- "node_modules/@radix-ui/react-select/node_modules/react-remove-scroll": {
- "version": "2.5.5",
- "license": "MIT",
- "dependencies": {
- "react-remove-scroll-bar": "^2.3.3",
- "react-style-singleton": "^2.2.1",
- "tslib": "^2.1.0",
- "use-callback-ref": "^1.3.0",
- "use-sidecar": "^1.1.2"
- },
- "engines": {
- "node": ">=10"
- },
- "peerDependencies": {
- "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-slot": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-compose-refs": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-switch": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/primitive": "1.0.0",
- "@radix-ui/react-compose-refs": "1.0.0",
- "@radix-ui/react-context": "1.0.0",
- "@radix-ui/react-primitive": "1.0.1",
- "@radix-ui/react-use-controllable-state": "1.0.0",
- "@radix-ui/react-use-previous": "1.0.0",
- "@radix-ui/react-use-size": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-switch/node_modules/@radix-ui/react-primitive": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-slot": "1.0.1"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-switch/node_modules/@radix-ui/react-use-size": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-use-layout-effect": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-tabs": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-tabs/-/react-tabs-1.0.4.tgz",
- "integrity": "sha512-egZfYY/+wRNCflXNHx+dePvnz9FbmssDTJBtgRfDY7e8SE5oIo3Py2eCB1ckAbh1Q7cQ/6yJZThJ++sgbxibog==",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/primitive": "1.0.1",
- "@radix-ui/react-context": "1.0.1",
- "@radix-ui/react-direction": "1.0.1",
- "@radix-ui/react-id": "1.0.1",
- "@radix-ui/react-presence": "1.0.1",
- "@radix-ui/react-primitive": "1.0.3",
- "@radix-ui/react-roving-focus": "1.0.4",
- "@radix-ui/react-use-controllable-state": "1.0.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-tabs/node_modules/@radix-ui/primitive": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.0.1.tgz",
- "integrity": "sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==",
- "dependencies": {
- "@babel/runtime": "^7.13.10"
- }
- },
- "node_modules/@radix-ui/react-tabs/node_modules/@radix-ui/react-compose-refs": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.1.tgz",
- "integrity": "sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==",
- "dependencies": {
- "@babel/runtime": "^7.13.10"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-tabs/node_modules/@radix-ui/react-context": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.0.1.tgz",
- "integrity": "sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==",
- "dependencies": {
- "@babel/runtime": "^7.13.10"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-tabs/node_modules/@radix-ui/react-direction": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.0.1.tgz",
- "integrity": "sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==",
- "dependencies": {
- "@babel/runtime": "^7.13.10"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-tabs/node_modules/@radix-ui/react-id": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.0.1.tgz",
- "integrity": "sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-use-layout-effect": "1.0.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-tabs/node_modules/@radix-ui/react-presence": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-presence/-/react-presence-1.0.1.tgz",
- "integrity": "sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-compose-refs": "1.0.1",
- "@radix-ui/react-use-layout-effect": "1.0.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-tabs/node_modules/@radix-ui/react-primitive": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-1.0.3.tgz",
- "integrity": "sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-slot": "1.0.2"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-tabs/node_modules/@radix-ui/react-slot": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.0.2.tgz",
- "integrity": "sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-compose-refs": "1.0.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-tabs/node_modules/@radix-ui/react-use-controllable-state": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.0.1.tgz",
- "integrity": "sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-use-callback-ref": "1.0.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-tabs/node_modules/@radix-ui/react-use-layout-effect": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.0.1.tgz",
- "integrity": "sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==",
- "dependencies": {
- "@babel/runtime": "^7.13.10"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-toggle": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/primitive": "1.0.0",
- "@radix-ui/react-primitive": "1.0.1",
- "@radix-ui/react-use-controllable-state": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-toggle-group": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/primitive": "1.0.0",
- "@radix-ui/react-context": "1.0.0",
- "@radix-ui/react-direction": "1.0.0",
- "@radix-ui/react-primitive": "1.0.1",
- "@radix-ui/react-roving-focus": "1.0.1",
- "@radix-ui/react-toggle": "1.0.1",
- "@radix-ui/react-use-controllable-state": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-toggle-group/node_modules/@radix-ui/react-collection": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-compose-refs": "1.0.0",
- "@radix-ui/react-context": "1.0.0",
- "@radix-ui/react-primitive": "1.0.1",
- "@radix-ui/react-slot": "1.0.1"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-toggle-group/node_modules/@radix-ui/react-primitive": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-slot": "1.0.1"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-toggle-group/node_modules/@radix-ui/react-roving-focus": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/primitive": "1.0.0",
- "@radix-ui/react-collection": "1.0.1",
- "@radix-ui/react-compose-refs": "1.0.0",
- "@radix-ui/react-context": "1.0.0",
- "@radix-ui/react-direction": "1.0.0",
- "@radix-ui/react-id": "1.0.0",
- "@radix-ui/react-primitive": "1.0.1",
- "@radix-ui/react-use-callback-ref": "1.0.0",
- "@radix-ui/react-use-controllable-state": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-toggle/node_modules/@radix-ui/react-primitive": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-slot": "1.0.1"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-tooltip": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/primitive": "1.0.0",
- "@radix-ui/react-compose-refs": "1.0.0",
- "@radix-ui/react-context": "1.0.0",
- "@radix-ui/react-dismissable-layer": "1.0.0",
- "@radix-ui/react-id": "1.0.0",
- "@radix-ui/react-popper": "1.0.0",
- "@radix-ui/react-portal": "1.0.0",
- "@radix-ui/react-presence": "1.0.0",
- "@radix-ui/react-primitive": "1.0.0",
- "@radix-ui/react-slot": "1.0.0",
- "@radix-ui/react-use-controllable-state": "1.0.0",
- "@radix-ui/react-visually-hidden": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-tooltip/node_modules/@radix-ui/react-primitive": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-slot": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-tooltip/node_modules/@radix-ui/react-slot": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-compose-refs": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-use-callback-ref": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-use-controllable-state": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-use-callback-ref": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-use-escape-keydown": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-use-callback-ref": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-use-layout-effect": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-use-previous": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-use-rect": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/rect": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-use-size": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-use-layout-effect": "1.0.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-use-size/node_modules/@radix-ui/react-use-layout-effect": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-visually-hidden": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-primitive": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-visually-hidden/node_modules/@radix-ui/react-primitive": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-slot": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/react-visually-hidden/node_modules/@radix-ui/react-slot": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-compose-refs": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0"
- }
- },
- "node_modules/@radix-ui/rect": {
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10"
- }
- },
- "node_modules/@reach/auto-id": {
- "version": "0.18.0",
- "license": "MIT",
- "dependencies": {
- "@reach/utils": "0.18.0"
- },
- "peerDependencies": {
- "react": "^16.8.0 || 17.x",
- "react-dom": "^16.8.0 || 17.x"
- }
- },
- "node_modules/@reach/combobox": {
- "version": "0.18.0",
- "license": "MIT",
- "dependencies": {
- "@reach/auto-id": "0.18.0",
- "@reach/descendants": "0.18.0",
- "@reach/polymorphic": "0.18.0",
- "@reach/popover": "0.18.0",
- "@reach/portal": "0.18.0",
- "@reach/utils": "0.18.0"
- },
- "peerDependencies": {
- "react": "^16.8.0 || 17.x",
- "react-dom": "^16.8.0 || 17.x"
- }
- },
- "node_modules/@reach/descendants": {
- "version": "0.18.0",
- "license": "MIT",
- "dependencies": {
- "@reach/utils": "0.18.0"
- },
- "peerDependencies": {
- "react": "^16.8.0 || 17.x",
- "react-dom": "^16.8.0 || 17.x"
- }
- },
- "node_modules/@reach/observe-rect": {
- "version": "1.2.0",
- "license": "MIT"
- },
- "node_modules/@reach/polymorphic": {
- "version": "0.18.0",
- "license": "MIT",
- "peerDependencies": {
- "react": "^16.8.0 || 17.x"
- }
- },
- "node_modules/@reach/popover": {
- "version": "0.18.0",
- "license": "MIT",
- "dependencies": {
- "@reach/polymorphic": "0.18.0",
- "@reach/portal": "0.18.0",
- "@reach/rect": "0.18.0",
- "@reach/utils": "0.18.0",
- "tabbable": "^5.3.3"
- },
- "peerDependencies": {
- "react": "^16.8.0 || 17.x",
- "react-dom": "^16.8.0 || 17.x"
- }
- },
- "node_modules/@reach/portal": {
- "version": "0.18.0",
- "license": "MIT",
- "dependencies": {
- "@reach/utils": "0.18.0"
- },
- "peerDependencies": {
- "react": "^16.8.0 || 17.x",
- "react-dom": "^16.8.0 || 17.x"
- }
- },
- "node_modules/@reach/rect": {
- "version": "0.18.0",
- "license": "MIT",
- "dependencies": {
- "@reach/observe-rect": "1.2.0",
- "@reach/utils": "0.18.0"
- },
- "peerDependencies": {
- "react": "^16.8.0 || 17.x",
- "react-dom": "^16.8.0 || 17.x"
- }
- },
- "node_modules/@reach/utils": {
- "version": "0.18.0",
- "license": "MIT",
- "peerDependencies": {
- "react": "^16.8.0 || 17.x",
- "react-dom": "^16.8.0 || 17.x"
- }
- },
- "node_modules/@react-hook/intersection-observer": {
- "version": "3.1.1",
- "license": "MIT",
- "dependencies": {
- "@react-hook/passive-layout-effect": "^1.2.0",
- "intersection-observer": "^0.10.0"
- },
- "peerDependencies": {
- "react": ">=16.8"
- }
- },
- "node_modules/@react-hook/passive-layout-effect": {
- "version": "1.2.1",
- "license": "MIT",
- "peerDependencies": {
- "react": ">=16.8"
- }
- },
- "node_modules/@rollup/pluginutils": {
- "version": "4.2.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "estree-walker": "^2.0.1",
- "picomatch": "^2.2.2"
- },
- "engines": {
- "node": ">= 8.0.0"
- }
- },
- "node_modules/@rushstack/eslint-patch": {
- "version": "1.1.4",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@sideway/address": {
- "version": "4.1.4",
- "dev": true,
- "license": "BSD-3-Clause",
- "dependencies": {
- "@hapi/hoek": "^9.0.0"
- }
- },
- "node_modules/@sideway/formula": {
- "version": "3.0.1",
- "dev": true,
- "license": "BSD-3-Clause"
- },
- "node_modules/@sideway/pinpoint": {
- "version": "2.0.0",
- "dev": true,
- "license": "BSD-3-Clause"
- },
- "node_modules/@sinclair/typebox": {
- "version": "0.24.20",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@sindresorhus/is": {
- "version": "0.14.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/@sinonjs/commons": {
- "version": "1.8.3",
- "dev": true,
- "license": "BSD-3-Clause",
- "dependencies": {
- "type-detect": "4.0.8"
- }
- },
- "node_modules/@sinonjs/fake-timers": {
- "version": "9.1.2",
- "dev": true,
- "license": "BSD-3-Clause",
- "dependencies": {
- "@sinonjs/commons": "^1.7.0"
- }
- },
- "node_modules/@stitches/core": {
- "version": "1.2.8",
- "license": "MIT"
- },
- "node_modules/@stitches/react": {
- "version": "1.2.8",
- "license": "MIT",
- "peerDependencies": {
- "react": ">= 16.3.0"
- }
- },
- "node_modules/@storybook/addon-a11y": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@storybook/addons": "6.5.16",
- "@storybook/api": "6.5.16",
- "@storybook/channels": "6.5.16",
- "@storybook/client-logger": "6.5.16",
- "@storybook/components": "6.5.16",
- "@storybook/core-events": "6.5.16",
- "@storybook/csf": "0.0.2--canary.4566f4d.1",
- "@storybook/theming": "6.5.16",
- "axe-core": "^4.2.0",
- "core-js": "^3.8.2",
- "global": "^4.4.0",
- "lodash": "^4.17.21",
- "react-sizeme": "^3.0.1",
- "regenerator-runtime": "^0.13.7",
- "ts-dedent": "^2.0.0",
- "util-deprecate": "^1.0.2"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "react": {
- "optional": true
- },
- "react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@storybook/addon-actions": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@storybook/addons": "6.5.16",
- "@storybook/api": "6.5.16",
- "@storybook/client-logger": "6.5.16",
- "@storybook/components": "6.5.16",
- "@storybook/core-events": "6.5.16",
- "@storybook/csf": "0.0.2--canary.4566f4d.1",
- "@storybook/theming": "6.5.16",
- "core-js": "^3.8.2",
- "fast-deep-equal": "^3.1.3",
- "global": "^4.4.0",
- "lodash": "^4.17.21",
- "polished": "^4.2.2",
- "prop-types": "^15.7.2",
- "react-inspector": "^5.1.0",
- "regenerator-runtime": "^0.13.7",
- "telejson": "^6.0.8",
- "ts-dedent": "^2.0.0",
- "util-deprecate": "^1.0.2",
- "uuid-browser": "^3.1.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "react": {
- "optional": true
- },
- "react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@storybook/addon-backgrounds": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@storybook/addons": "6.5.16",
- "@storybook/api": "6.5.16",
- "@storybook/client-logger": "6.5.16",
- "@storybook/components": "6.5.16",
- "@storybook/core-events": "6.5.16",
- "@storybook/csf": "0.0.2--canary.4566f4d.1",
- "@storybook/theming": "6.5.16",
- "core-js": "^3.8.2",
- "global": "^4.4.0",
- "memoizerific": "^1.11.3",
- "regenerator-runtime": "^0.13.7",
- "ts-dedent": "^2.0.0",
- "util-deprecate": "^1.0.2"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "react": {
- "optional": true
- },
- "react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@storybook/addon-controls": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@storybook/addons": "6.5.16",
- "@storybook/api": "6.5.16",
- "@storybook/client-logger": "6.5.16",
- "@storybook/components": "6.5.16",
- "@storybook/core-common": "6.5.16",
- "@storybook/csf": "0.0.2--canary.4566f4d.1",
- "@storybook/node-logger": "6.5.16",
- "@storybook/store": "6.5.16",
- "@storybook/theming": "6.5.16",
- "core-js": "^3.8.2",
- "lodash": "^4.17.21",
- "ts-dedent": "^2.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "react": {
- "optional": true
- },
- "react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@storybook/addon-docs": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/plugin-transform-react-jsx": "^7.12.12",
- "@babel/preset-env": "^7.12.11",
- "@jest/transform": "^26.6.2",
- "@mdx-js/react": "^1.6.22",
- "@storybook/addons": "6.5.16",
- "@storybook/api": "6.5.16",
- "@storybook/components": "6.5.16",
- "@storybook/core-common": "6.5.16",
- "@storybook/core-events": "6.5.16",
- "@storybook/csf": "0.0.2--canary.4566f4d.1",
- "@storybook/docs-tools": "6.5.16",
- "@storybook/mdx1-csf": "^0.0.1",
- "@storybook/node-logger": "6.5.16",
- "@storybook/postinstall": "6.5.16",
- "@storybook/preview-web": "6.5.16",
- "@storybook/source-loader": "6.5.16",
- "@storybook/store": "6.5.16",
- "@storybook/theming": "6.5.16",
- "babel-loader": "^8.0.0",
- "core-js": "^3.8.2",
- "fast-deep-equal": "^3.1.3",
- "global": "^4.4.0",
- "lodash": "^4.17.21",
- "regenerator-runtime": "^0.13.7",
- "remark-external-links": "^8.0.0",
- "remark-slug": "^6.0.0",
- "ts-dedent": "^2.0.0",
- "util-deprecate": "^1.0.2"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "peerDependencies": {
- "@storybook/mdx2-csf": "^0.0.3",
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "@storybook/mdx2-csf": {
- "optional": true
- },
- "react": {
- "optional": true
- },
- "react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@storybook/addon-docs/node_modules/@jest/transform": {
- "version": "26.6.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/core": "^7.1.0",
- "@jest/types": "^26.6.2",
- "babel-plugin-istanbul": "^6.0.0",
- "chalk": "^4.0.0",
- "convert-source-map": "^1.4.0",
- "fast-json-stable-stringify": "^2.0.0",
- "graceful-fs": "^4.2.4",
- "jest-haste-map": "^26.6.2",
- "jest-regex-util": "^26.0.0",
- "jest-util": "^26.6.2",
- "micromatch": "^4.0.2",
- "pirates": "^4.0.1",
- "slash": "^3.0.0",
- "source-map": "^0.6.1",
- "write-file-atomic": "^3.0.0"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/@storybook/addon-docs/node_modules/@jest/types": {
- "version": "26.6.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/istanbul-lib-coverage": "^2.0.0",
- "@types/istanbul-reports": "^3.0.0",
- "@types/node": "*",
- "@types/yargs": "^15.0.0",
- "chalk": "^4.0.0"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/@storybook/addon-docs/node_modules/@types/yargs": {
- "version": "15.0.15",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/yargs-parser": "*"
- }
- },
- "node_modules/@storybook/addon-docs/node_modules/ansi-styles": {
- "version": "4.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/@storybook/addon-docs/node_modules/chalk": {
- "version": "4.1.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/@storybook/addon-docs/node_modules/has-flag": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/addon-docs/node_modules/jest-haste-map": {
- "version": "26.6.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@jest/types": "^26.6.2",
- "@types/graceful-fs": "^4.1.2",
- "@types/node": "*",
- "anymatch": "^3.0.3",
- "fb-watchman": "^2.0.0",
- "graceful-fs": "^4.2.4",
- "jest-regex-util": "^26.0.0",
- "jest-serializer": "^26.6.2",
- "jest-util": "^26.6.2",
- "jest-worker": "^26.6.2",
- "micromatch": "^4.0.2",
- "sane": "^4.0.3",
- "walker": "^1.0.7"
- },
- "engines": {
- "node": ">= 10.14.2"
- },
- "optionalDependencies": {
- "fsevents": "^2.1.2"
- }
- },
- "node_modules/@storybook/addon-docs/node_modules/jest-regex-util": {
- "version": "26.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/@storybook/addon-docs/node_modules/jest-serializer": {
- "version": "26.6.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/node": "*",
- "graceful-fs": "^4.2.4"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/@storybook/addon-docs/node_modules/jest-util": {
- "version": "26.6.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.4",
- "is-ci": "^2.0.0",
- "micromatch": "^4.0.2"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/@storybook/addon-docs/node_modules/jest-worker": {
- "version": "26.6.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/node": "*",
- "merge-stream": "^2.0.0",
- "supports-color": "^7.0.0"
- },
- "engines": {
- "node": ">= 10.13.0"
- }
- },
- "node_modules/@storybook/addon-docs/node_modules/source-map": {
- "version": "0.6.1",
- "dev": true,
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/addon-docs/node_modules/supports-color": {
- "version": "7.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/addon-essentials": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@storybook/addon-actions": "6.5.16",
- "@storybook/addon-backgrounds": "6.5.16",
- "@storybook/addon-controls": "6.5.16",
- "@storybook/addon-docs": "6.5.16",
- "@storybook/addon-measure": "6.5.16",
- "@storybook/addon-outline": "6.5.16",
- "@storybook/addon-toolbars": "6.5.16",
- "@storybook/addon-viewport": "6.5.16",
- "@storybook/addons": "6.5.16",
- "@storybook/api": "6.5.16",
- "@storybook/core-common": "6.5.16",
- "@storybook/node-logger": "6.5.16",
- "core-js": "^3.8.2",
- "regenerator-runtime": "^0.13.7",
- "ts-dedent": "^2.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "peerDependencies": {
- "@babel/core": "^7.9.6"
- },
- "peerDependenciesMeta": {
- "@storybook/angular": {
- "optional": true
- },
- "@storybook/builder-manager4": {
- "optional": true
- },
- "@storybook/builder-manager5": {
- "optional": true
- },
- "@storybook/builder-webpack4": {
- "optional": true
- },
- "@storybook/builder-webpack5": {
- "optional": true
- },
- "@storybook/html": {
- "optional": true
- },
- "@storybook/vue": {
- "optional": true
- },
- "@storybook/vue3": {
- "optional": true
- },
- "@storybook/web-components": {
- "optional": true
- },
- "lit": {
- "optional": true
- },
- "lit-html": {
- "optional": true
- },
- "react": {
- "optional": true
- },
- "react-dom": {
- "optional": true
- },
- "svelte": {
- "optional": true
- },
- "sveltedoc-parser": {
- "optional": true
- },
- "vue": {
- "optional": true
- },
- "webpack": {
- "optional": true
- }
- }
- },
- "node_modules/@storybook/addon-interactions": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@devtools-ds/object-inspector": "^1.1.2",
- "@storybook/addons": "6.5.16",
- "@storybook/api": "6.5.16",
- "@storybook/client-logger": "6.5.16",
- "@storybook/components": "6.5.16",
- "@storybook/core-common": "6.5.16",
- "@storybook/core-events": "6.5.16",
- "@storybook/csf": "0.0.2--canary.4566f4d.1",
- "@storybook/instrumenter": "6.5.16",
- "@storybook/theming": "6.5.16",
- "core-js": "^3.8.2",
- "global": "^4.4.0",
- "jest-mock": "^27.0.6",
- "polished": "^4.2.2",
- "ts-dedent": "^2.2.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "react": {
- "optional": true
- },
- "react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@storybook/addon-links": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@storybook/addons": "6.5.16",
- "@storybook/client-logger": "6.5.16",
- "@storybook/core-events": "6.5.16",
- "@storybook/csf": "0.0.2--canary.4566f4d.1",
- "@storybook/router": "6.5.16",
- "@types/qs": "^6.9.5",
- "core-js": "^3.8.2",
- "global": "^4.4.0",
- "prop-types": "^15.7.2",
- "qs": "^6.10.0",
- "regenerator-runtime": "^0.13.7",
- "ts-dedent": "^2.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "react": {
- "optional": true
- },
- "react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@storybook/addon-measure": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@storybook/addons": "6.5.16",
- "@storybook/api": "6.5.16",
- "@storybook/client-logger": "6.5.16",
- "@storybook/components": "6.5.16",
- "@storybook/core-events": "6.5.16",
- "@storybook/csf": "0.0.2--canary.4566f4d.1",
- "core-js": "^3.8.2",
- "global": "^4.4.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "react": {
- "optional": true
- },
- "react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@storybook/addon-outline": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@storybook/addons": "6.5.16",
- "@storybook/api": "6.5.16",
- "@storybook/client-logger": "6.5.16",
- "@storybook/components": "6.5.16",
- "@storybook/core-events": "6.5.16",
- "@storybook/csf": "0.0.2--canary.4566f4d.1",
- "core-js": "^3.8.2",
- "global": "^4.4.0",
- "regenerator-runtime": "^0.13.7",
- "ts-dedent": "^2.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "react": {
- "optional": true
- },
- "react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@storybook/addon-toolbars": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@storybook/addons": "6.5.16",
- "@storybook/api": "6.5.16",
- "@storybook/client-logger": "6.5.16",
- "@storybook/components": "6.5.16",
- "@storybook/theming": "6.5.16",
- "core-js": "^3.8.2",
- "regenerator-runtime": "^0.13.7"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "react": {
- "optional": true
- },
- "react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@storybook/addon-viewport": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@storybook/addons": "6.5.16",
- "@storybook/api": "6.5.16",
- "@storybook/client-logger": "6.5.16",
- "@storybook/components": "6.5.16",
- "@storybook/core-events": "6.5.16",
- "@storybook/theming": "6.5.16",
- "core-js": "^3.8.2",
- "global": "^4.4.0",
- "memoizerific": "^1.11.3",
- "prop-types": "^15.7.2",
- "regenerator-runtime": "^0.13.7"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "react": {
- "optional": true
- },
- "react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@storybook/addons": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@storybook/api": "6.5.16",
- "@storybook/channels": "6.5.16",
- "@storybook/client-logger": "6.5.16",
- "@storybook/core-events": "6.5.16",
- "@storybook/csf": "0.0.2--canary.4566f4d.1",
- "@storybook/router": "6.5.16",
- "@storybook/theming": "6.5.16",
- "@types/webpack-env": "^1.16.0",
- "core-js": "^3.8.2",
- "global": "^4.4.0",
- "regenerator-runtime": "^0.13.7"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
- }
- },
- "node_modules/@storybook/api": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@storybook/channels": "6.5.16",
- "@storybook/client-logger": "6.5.16",
- "@storybook/core-events": "6.5.16",
- "@storybook/csf": "0.0.2--canary.4566f4d.1",
- "@storybook/router": "6.5.16",
- "@storybook/semver": "^7.3.2",
- "@storybook/theming": "6.5.16",
- "core-js": "^3.8.2",
- "fast-deep-equal": "^3.1.3",
- "global": "^4.4.0",
- "lodash": "^4.17.21",
- "memoizerific": "^1.11.3",
- "regenerator-runtime": "^0.13.7",
- "store2": "^2.12.0",
- "telejson": "^6.0.8",
- "ts-dedent": "^2.0.0",
- "util-deprecate": "^1.0.2"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
- }
- },
- "node_modules/@storybook/builder-webpack4": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/core": "^7.12.10",
- "@storybook/addons": "6.5.16",
- "@storybook/api": "6.5.16",
- "@storybook/channel-postmessage": "6.5.16",
- "@storybook/channels": "6.5.16",
- "@storybook/client-api": "6.5.16",
- "@storybook/client-logger": "6.5.16",
- "@storybook/components": "6.5.16",
- "@storybook/core-common": "6.5.16",
- "@storybook/core-events": "6.5.16",
- "@storybook/node-logger": "6.5.16",
- "@storybook/preview-web": "6.5.16",
- "@storybook/router": "6.5.16",
- "@storybook/semver": "^7.3.2",
- "@storybook/store": "6.5.16",
- "@storybook/theming": "6.5.16",
- "@storybook/ui": "6.5.16",
- "@types/node": "^14.0.10 || ^16.0.0",
- "@types/webpack": "^4.41.26",
- "autoprefixer": "^9.8.6",
- "babel-loader": "^8.0.0",
- "case-sensitive-paths-webpack-plugin": "^2.3.0",
- "core-js": "^3.8.2",
- "css-loader": "^3.6.0",
- "file-loader": "^6.2.0",
- "find-up": "^5.0.0",
- "fork-ts-checker-webpack-plugin": "^4.1.6",
- "glob": "^7.1.6",
- "glob-promise": "^3.4.0",
- "global": "^4.4.0",
- "html-webpack-plugin": "^4.0.0",
- "pnp-webpack-plugin": "1.6.4",
- "postcss": "^7.0.36",
- "postcss-flexbugs-fixes": "^4.2.1",
- "postcss-loader": "^4.2.0",
- "raw-loader": "^4.0.2",
- "stable": "^0.1.8",
- "style-loader": "^1.3.0",
- "terser-webpack-plugin": "^4.2.3",
- "ts-dedent": "^2.0.0",
- "url-loader": "^4.1.1",
- "util-deprecate": "^1.0.2",
- "webpack": "4",
- "webpack-dev-middleware": "^3.7.3",
- "webpack-filter-warnings-plugin": "^1.2.1",
- "webpack-hot-middleware": "^2.25.1",
- "webpack-virtual-modules": "^0.2.2"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/@types/html-minifier-terser": {
- "version": "5.1.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/builder-webpack4/node_modules/@types/node": {
- "version": "16.18.14",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/builder-webpack4/node_modules/@webassemblyjs/ast": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/helper-module-context": "1.9.0",
- "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
- "@webassemblyjs/wast-parser": "1.9.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/@webassemblyjs/helper-api-error": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/builder-webpack4/node_modules/@webassemblyjs/helper-buffer": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/builder-webpack4/node_modules/@webassemblyjs/helper-wasm-bytecode": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/builder-webpack4/node_modules/@webassemblyjs/helper-wasm-section": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-buffer": "1.9.0",
- "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
- "@webassemblyjs/wasm-gen": "1.9.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/@webassemblyjs/ieee754": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@xtuc/ieee754": "^1.2.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/@webassemblyjs/leb128": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@xtuc/long": "4.2.2"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/@webassemblyjs/utf8": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/builder-webpack4/node_modules/@webassemblyjs/wasm-edit": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-buffer": "1.9.0",
- "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
- "@webassemblyjs/helper-wasm-section": "1.9.0",
- "@webassemblyjs/wasm-gen": "1.9.0",
- "@webassemblyjs/wasm-opt": "1.9.0",
- "@webassemblyjs/wasm-parser": "1.9.0",
- "@webassemblyjs/wast-printer": "1.9.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/@webassemblyjs/wasm-gen": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
- "@webassemblyjs/ieee754": "1.9.0",
- "@webassemblyjs/leb128": "1.9.0",
- "@webassemblyjs/utf8": "1.9.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/@webassemblyjs/wasm-opt": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-buffer": "1.9.0",
- "@webassemblyjs/wasm-gen": "1.9.0",
- "@webassemblyjs/wasm-parser": "1.9.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/@webassemblyjs/wasm-parser": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-api-error": "1.9.0",
- "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
- "@webassemblyjs/ieee754": "1.9.0",
- "@webassemblyjs/leb128": "1.9.0",
- "@webassemblyjs/utf8": "1.9.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/@webassemblyjs/wast-printer": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/wast-parser": "1.9.0",
- "@xtuc/long": "4.2.2"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/acorn": {
- "version": "6.4.2",
- "dev": true,
- "license": "MIT",
- "bin": {
- "acorn": "bin/acorn"
- },
- "engines": {
- "node": ">=0.4.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/ansi-regex": {
- "version": "2.1.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/braces": {
- "version": "2.3.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "arr-flatten": "^1.1.0",
- "array-unique": "^0.3.2",
- "extend-shallow": "^2.0.1",
- "fill-range": "^4.0.0",
- "isobject": "^3.0.1",
- "repeat-element": "^1.1.2",
- "snapdragon": "^0.8.1",
- "snapdragon-node": "^2.0.1",
- "split-string": "^3.0.2",
- "to-regex": "^3.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/braces/node_modules/extend-shallow": {
- "version": "2.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-extendable": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/chownr": {
- "version": "1.1.4",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/@storybook/builder-webpack4/node_modules/clean-css": {
- "version": "4.2.4",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "source-map": "~0.6.0"
- },
- "engines": {
- "node": ">= 4.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/commander": {
- "version": "4.1.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/debug": {
- "version": "3.2.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ms": "^2.1.1"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/enhanced-resolve": {
- "version": "4.5.0",
- "dev": true,
- "dependencies": {
- "graceful-fs": "^4.1.2",
- "memory-fs": "^0.5.0",
- "tapable": "^1.0.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/enhanced-resolve/node_modules/memory-fs": {
- "version": "0.5.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "errno": "^0.1.3",
- "readable-stream": "^2.0.1"
- },
- "engines": {
- "node": ">=4.3.0 <5.0.0 || >=5.10"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/eslint-scope": {
- "version": "4.0.3",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "esrecurse": "^4.1.0",
- "estraverse": "^4.1.1"
- },
- "engines": {
- "node": ">=4.0.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/estraverse": {
- "version": "4.3.0",
- "dev": true,
- "license": "BSD-2-Clause",
- "engines": {
- "node": ">=4.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/fill-range": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "extend-shallow": "^2.0.1",
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1",
- "to-regex-range": "^2.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/fill-range/node_modules/extend-shallow": {
- "version": "2.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-extendable": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/find-cache-dir": {
- "version": "3.3.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "commondir": "^1.0.1",
- "make-dir": "^3.0.2",
- "pkg-dir": "^4.1.0"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/avajs/find-cache-dir?sponsor=1"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/fork-ts-checker-webpack-plugin": {
- "version": "4.1.6",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/code-frame": "^7.5.5",
- "chalk": "^2.4.1",
- "micromatch": "^3.1.10",
- "minimatch": "^3.0.4",
- "semver": "^5.6.0",
- "tapable": "^1.0.0",
- "worker-rpc": "^0.1.0"
- },
- "engines": {
- "node": ">=6.11.5",
- "yarn": ">=1.0.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/has-flag": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/html-minifier-terser": {
- "version": "5.1.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "camel-case": "^4.1.1",
- "clean-css": "^4.2.3",
- "commander": "^4.1.1",
- "he": "^1.2.0",
- "param-case": "^3.0.3",
- "relateurl": "^0.2.7",
- "terser": "^4.6.3"
- },
- "bin": {
- "html-minifier-terser": "cli.js"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/html-minifier-terser/node_modules/terser": {
- "version": "4.8.1",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "commander": "^2.20.0",
- "source-map": "~0.6.1",
- "source-map-support": "~0.5.12"
- },
- "bin": {
- "terser": "bin/terser"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/html-minifier-terser/node_modules/terser/node_modules/commander": {
- "version": "2.20.3",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/builder-webpack4/node_modules/html-webpack-plugin": {
- "version": "4.5.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/html-minifier-terser": "^5.0.0",
- "@types/tapable": "^1.0.5",
- "@types/webpack": "^4.41.8",
- "html-minifier-terser": "^5.0.1",
- "loader-utils": "^1.2.3",
- "lodash": "^4.17.20",
- "pretty-error": "^2.1.1",
- "tapable": "^1.1.3",
- "util.promisify": "1.0.0"
- },
- "engines": {
- "node": ">=6.9"
- },
- "peerDependencies": {
- "webpack": "^4.0.0 || ^5.0.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/is-buffer": {
- "version": "1.1.6",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/builder-webpack4/node_modules/is-extendable": {
- "version": "0.1.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/is-number": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "kind-of": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/is-number/node_modules/kind-of": {
- "version": "3.2.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/is-wsl": {
- "version": "1.1.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/isarray": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/builder-webpack4/node_modules/jest-worker": {
- "version": "26.6.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/node": "*",
- "merge-stream": "^2.0.0",
- "supports-color": "^7.0.0"
- },
- "engines": {
- "node": ">= 10.13.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/json5": {
- "version": "1.0.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "minimist": "^1.2.0"
- },
- "bin": {
- "json5": "lib/cli.js"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/loader-runner": {
- "version": "2.4.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4.3.0 <5.0.0 || >=5.10"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/loader-utils": {
- "version": "1.4.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "big.js": "^5.2.2",
- "emojis-list": "^3.0.0",
- "json5": "^1.0.1"
- },
- "engines": {
- "node": ">=4.0.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/locate-path": {
- "version": "5.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "p-locate": "^4.1.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/lru-cache": {
- "version": "5.1.1",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "yallist": "^3.0.2"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/make-dir": {
- "version": "3.1.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "semver": "^6.0.0"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/make-dir/node_modules/semver": {
- "version": "6.3.0",
- "dev": true,
- "license": "ISC",
- "bin": {
- "semver": "bin/semver.js"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/micromatch": {
- "version": "3.1.10",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "arr-diff": "^4.0.0",
- "array-unique": "^0.3.2",
- "braces": "^2.3.1",
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "extglob": "^2.0.4",
- "fragment-cache": "^0.2.1",
- "kind-of": "^6.0.2",
- "nanomatch": "^1.2.9",
- "object.pick": "^1.3.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/mime": {
- "version": "2.6.0",
- "dev": true,
- "license": "MIT",
- "bin": {
- "mime": "cli.js"
- },
- "engines": {
- "node": ">=4.0.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/mkdirp": {
- "version": "0.5.6",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "minimist": "^1.2.6"
- },
- "bin": {
- "mkdirp": "bin/cmd.js"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/p-locate": {
- "version": "4.1.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "p-limit": "^2.2.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/p-locate/node_modules/p-limit": {
- "version": "2.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "p-try": "^2.0.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/path-exists": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/pify": {
- "version": "4.0.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/pkg-dir": {
- "version": "4.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "find-up": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/pkg-dir/node_modules/find-up": {
- "version": "4.1.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "locate-path": "^5.0.0",
- "path-exists": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/pretty-error": {
- "version": "2.1.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "lodash": "^4.17.20",
- "renderkid": "^2.0.4"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/readable-stream": {
- "version": "2.3.8",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "core-util-is": "~1.0.0",
- "inherits": "~2.0.3",
- "isarray": "~1.0.0",
- "process-nextick-args": "~2.0.0",
- "safe-buffer": "~5.1.1",
- "string_decoder": "~1.1.1",
- "util-deprecate": "~1.0.1"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/renderkid": {
- "version": "2.0.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "css-select": "^4.1.3",
- "dom-converter": "^0.2.0",
- "htmlparser2": "^6.1.0",
- "lodash": "^4.17.21",
- "strip-ansi": "^3.0.1"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/rimraf": {
- "version": "2.7.1",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "glob": "^7.1.3"
- },
- "bin": {
- "rimraf": "bin.js"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/semver": {
- "version": "5.7.1",
- "dev": true,
- "license": "ISC",
- "bin": {
- "semver": "bin/semver"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/serialize-javascript": {
- "version": "5.0.1",
- "dev": true,
- "license": "BSD-3-Clause",
- "dependencies": {
- "randombytes": "^2.1.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/source-map": {
- "version": "0.6.1",
- "dev": true,
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/source-map-support": {
- "version": "0.5.21",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "buffer-from": "^1.0.0",
- "source-map": "^0.6.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/ssri": {
- "version": "6.0.2",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "figgy-pudding": "^3.5.1"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/string_decoder": {
- "version": "1.1.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "safe-buffer": "~5.1.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/strip-ansi": {
- "version": "3.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-regex": "^2.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/supports-color": {
- "version": "7.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/terser-webpack-plugin": {
- "version": "4.2.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "cacache": "^15.0.5",
- "find-cache-dir": "^3.3.1",
- "jest-worker": "^26.5.0",
- "p-limit": "^3.0.2",
- "schema-utils": "^3.0.0",
- "serialize-javascript": "^5.0.1",
- "source-map": "^0.6.1",
- "terser": "^5.3.4",
- "webpack-sources": "^1.4.3"
- },
- "engines": {
- "node": ">= 10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^4.0.0 || ^5.0.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/to-regex-range": {
- "version": "2.1.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/watchpack": {
- "version": "1.7.5",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "graceful-fs": "^4.1.2",
- "neo-async": "^2.5.0"
- },
- "optionalDependencies": {
- "chokidar": "^3.4.1",
- "watchpack-chokidar2": "^2.0.1"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/webpack": {
- "version": "4.46.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-module-context": "1.9.0",
- "@webassemblyjs/wasm-edit": "1.9.0",
- "@webassemblyjs/wasm-parser": "1.9.0",
- "acorn": "^6.4.1",
- "ajv": "^6.10.2",
- "ajv-keywords": "^3.4.1",
- "chrome-trace-event": "^1.0.2",
- "enhanced-resolve": "^4.5.0",
- "eslint-scope": "^4.0.3",
- "json-parse-better-errors": "^1.0.2",
- "loader-runner": "^2.4.0",
- "loader-utils": "^1.2.3",
- "memory-fs": "^0.4.1",
- "micromatch": "^3.1.10",
- "mkdirp": "^0.5.3",
- "neo-async": "^2.6.1",
- "node-libs-browser": "^2.2.1",
- "schema-utils": "^1.0.0",
- "tapable": "^1.1.3",
- "terser-webpack-plugin": "^1.4.3",
- "watchpack": "^1.7.4",
- "webpack-sources": "^1.4.1"
- },
- "bin": {
- "webpack": "bin/webpack.js"
- },
- "engines": {
- "node": ">=6.11.5"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependenciesMeta": {
- "webpack-cli": {
- "optional": true
- },
- "webpack-command": {
- "optional": true
- }
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/webpack-dev-middleware": {
- "version": "3.7.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "memory-fs": "^0.4.1",
- "mime": "^2.4.4",
- "mkdirp": "^0.5.1",
- "range-parser": "^1.2.1",
- "webpack-log": "^2.0.0"
- },
- "engines": {
- "node": ">= 6"
- },
- "peerDependencies": {
- "webpack": "^4.0.0 || ^5.0.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/webpack-filter-warnings-plugin": {
- "version": "1.2.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 4.3 < 5.0.0 || >= 5.10"
- },
- "peerDependencies": {
- "webpack": "^2.0.0 || ^3.0.0 || ^4.0.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/webpack-virtual-modules": {
- "version": "0.2.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "debug": "^3.0.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/webpack/node_modules/cacache": {
- "version": "12.0.4",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "bluebird": "^3.5.5",
- "chownr": "^1.1.1",
- "figgy-pudding": "^3.5.1",
- "glob": "^7.1.4",
- "graceful-fs": "^4.1.15",
- "infer-owner": "^1.0.3",
- "lru-cache": "^5.1.1",
- "mississippi": "^3.0.0",
- "mkdirp": "^0.5.1",
- "move-concurrently": "^1.0.1",
- "promise-inflight": "^1.0.1",
- "rimraf": "^2.6.3",
- "ssri": "^6.0.1",
- "unique-filename": "^1.1.1",
- "y18n": "^4.0.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/webpack/node_modules/commander": {
- "version": "2.20.3",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/builder-webpack4/node_modules/webpack/node_modules/find-cache-dir": {
- "version": "2.1.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "commondir": "^1.0.1",
- "make-dir": "^2.0.0",
- "pkg-dir": "^3.0.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/webpack/node_modules/find-up": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "locate-path": "^3.0.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/webpack/node_modules/locate-path": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "p-locate": "^3.0.0",
- "path-exists": "^3.0.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/webpack/node_modules/make-dir": {
- "version": "2.1.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "pify": "^4.0.1",
- "semver": "^5.6.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/webpack/node_modules/p-limit": {
- "version": "2.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "p-try": "^2.0.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/webpack/node_modules/p-locate": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "p-limit": "^2.0.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/webpack/node_modules/path-exists": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/webpack/node_modules/pkg-dir": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "find-up": "^3.0.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/webpack/node_modules/schema-utils": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ajv": "^6.1.0",
- "ajv-errors": "^1.0.0",
- "ajv-keywords": "^3.1.0"
- },
- "engines": {
- "node": ">= 4"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/webpack/node_modules/serialize-javascript": {
- "version": "4.0.0",
- "dev": true,
- "license": "BSD-3-Clause",
- "dependencies": {
- "randombytes": "^2.1.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/webpack/node_modules/terser": {
- "version": "4.8.1",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "commander": "^2.20.0",
- "source-map": "~0.6.1",
- "source-map-support": "~0.5.12"
- },
- "bin": {
- "terser": "bin/terser"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/webpack/node_modules/terser-webpack-plugin": {
- "version": "1.4.5",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "cacache": "^12.0.2",
- "find-cache-dir": "^2.1.0",
- "is-wsl": "^1.1.0",
- "schema-utils": "^1.0.0",
- "serialize-javascript": "^4.0.0",
- "source-map": "^0.6.1",
- "terser": "^4.1.2",
- "webpack-sources": "^1.4.0",
- "worker-farm": "^1.7.0"
- },
- "engines": {
- "node": ">= 6.9.0"
- },
- "peerDependencies": {
- "webpack": "^4.0.0"
- }
- },
- "node_modules/@storybook/builder-webpack4/node_modules/y18n": {
- "version": "4.0.3",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/@storybook/builder-webpack4/node_modules/yallist": {
- "version": "3.1.1",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/@storybook/builder-webpack5": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/core": "^7.12.10",
- "@storybook/addons": "6.5.16",
- "@storybook/api": "6.5.16",
- "@storybook/channel-postmessage": "6.5.16",
- "@storybook/channels": "6.5.16",
- "@storybook/client-api": "6.5.16",
- "@storybook/client-logger": "6.5.16",
- "@storybook/components": "6.5.16",
- "@storybook/core-common": "6.5.16",
- "@storybook/core-events": "6.5.16",
- "@storybook/node-logger": "6.5.16",
- "@storybook/preview-web": "6.5.16",
- "@storybook/router": "6.5.16",
- "@storybook/semver": "^7.3.2",
- "@storybook/store": "6.5.16",
- "@storybook/theming": "6.5.16",
- "@types/node": "^14.0.10 || ^16.0.0",
- "babel-loader": "^8.0.0",
- "babel-plugin-named-exports-order": "^0.0.2",
- "browser-assert": "^1.2.1",
- "case-sensitive-paths-webpack-plugin": "^2.3.0",
- "core-js": "^3.8.2",
- "css-loader": "^5.0.1",
- "fork-ts-checker-webpack-plugin": "^6.0.4",
- "glob": "^7.1.6",
- "glob-promise": "^3.4.0",
- "html-webpack-plugin": "^5.0.0",
- "path-browserify": "^1.0.1",
- "process": "^0.11.10",
- "stable": "^0.1.8",
- "style-loader": "^2.0.0",
- "terser-webpack-plugin": "^5.0.3",
- "ts-dedent": "^2.0.0",
- "util-deprecate": "^1.0.2",
- "webpack": "^5.9.0",
- "webpack-dev-middleware": "^4.1.0",
- "webpack-hot-middleware": "^2.25.1",
- "webpack-virtual-modules": "^0.4.1"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
- }
- },
- "node_modules/@storybook/builder-webpack5/node_modules/@types/node": {
- "version": "14.18.22",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/builder-webpack5/node_modules/css-loader": {
- "version": "5.2.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "icss-utils": "^5.1.0",
- "loader-utils": "^2.0.0",
- "postcss": "^8.2.15",
- "postcss-modules-extract-imports": "^3.0.0",
- "postcss-modules-local-by-default": "^4.0.0",
- "postcss-modules-scope": "^3.0.0",
- "postcss-modules-values": "^4.0.0",
- "postcss-value-parser": "^4.1.0",
- "schema-utils": "^3.0.0",
- "semver": "^7.3.5"
- },
- "engines": {
- "node": ">= 10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^4.27.0 || ^5.0.0"
- }
- },
- "node_modules/@storybook/builder-webpack5/node_modules/html-webpack-plugin": {
- "version": "5.5.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/html-minifier-terser": "^6.0.0",
- "html-minifier-terser": "^6.0.2",
- "lodash": "^4.17.21",
- "pretty-error": "^4.0.0",
- "tapable": "^2.0.0"
- },
- "engines": {
- "node": ">=10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/html-webpack-plugin"
- },
- "peerDependencies": {
- "webpack": "^5.20.0"
- }
- },
- "node_modules/@storybook/builder-webpack5/node_modules/icss-utils": {
- "version": "5.1.0",
- "dev": true,
- "license": "ISC",
- "engines": {
- "node": "^10 || ^12 || >= 14"
- },
- "peerDependencies": {
- "postcss": "^8.1.0"
- }
- },
- "node_modules/@storybook/builder-webpack5/node_modules/picocolors": {
- "version": "1.0.0",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/@storybook/builder-webpack5/node_modules/postcss": {
- "version": "8.4.8",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "nanoid": "^3.3.1",
- "picocolors": "^1.0.0",
- "source-map-js": "^1.0.2"
- },
- "engines": {
- "node": "^10 || ^12 || >=14"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
- }
- },
- "node_modules/@storybook/builder-webpack5/node_modules/postcss-modules-extract-imports": {
- "version": "3.0.0",
- "dev": true,
- "license": "ISC",
- "engines": {
- "node": "^10 || ^12 || >= 14"
- },
- "peerDependencies": {
- "postcss": "^8.1.0"
- }
- },
- "node_modules/@storybook/builder-webpack5/node_modules/postcss-modules-local-by-default": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "icss-utils": "^5.0.0",
- "postcss-selector-parser": "^6.0.2",
- "postcss-value-parser": "^4.1.0"
- },
- "engines": {
- "node": "^10 || ^12 || >= 14"
- },
- "peerDependencies": {
- "postcss": "^8.1.0"
- }
- },
- "node_modules/@storybook/builder-webpack5/node_modules/postcss-modules-scope": {
- "version": "3.0.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "postcss-selector-parser": "^6.0.4"
- },
- "engines": {
- "node": "^10 || ^12 || >= 14"
- },
- "peerDependencies": {
- "postcss": "^8.1.0"
- }
- },
- "node_modules/@storybook/builder-webpack5/node_modules/postcss-modules-values": {
- "version": "4.0.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "icss-utils": "^5.0.0"
- },
- "engines": {
- "node": "^10 || ^12 || >= 14"
- },
- "peerDependencies": {
- "postcss": "^8.1.0"
- }
- },
- "node_modules/@storybook/builder-webpack5/node_modules/semver": {
- "version": "7.3.5",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/@storybook/builder-webpack5/node_modules/style-loader": {
- "version": "2.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "loader-utils": "^2.0.0",
- "schema-utils": "^3.0.0"
- },
- "engines": {
- "node": ">= 10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^4.0.0 || ^5.0.0"
- }
- },
- "node_modules/@storybook/builder-webpack5/node_modules/tapable": {
- "version": "2.2.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/@storybook/channel-postmessage": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@storybook/channels": "6.5.16",
- "@storybook/client-logger": "6.5.16",
- "@storybook/core-events": "6.5.16",
- "core-js": "^3.8.2",
- "global": "^4.4.0",
- "qs": "^6.10.0",
- "telejson": "^6.0.8"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- }
- },
- "node_modules/@storybook/channel-websocket": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@storybook/channels": "6.5.16",
- "@storybook/client-logger": "6.5.16",
- "core-js": "^3.8.2",
- "global": "^4.4.0",
- "telejson": "^6.0.8"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- }
- },
- "node_modules/@storybook/channels": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "core-js": "^3.8.2",
- "ts-dedent": "^2.0.0",
- "util-deprecate": "^1.0.2"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- }
- },
- "node_modules/@storybook/client-api": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@storybook/addons": "6.5.16",
- "@storybook/channel-postmessage": "6.5.16",
- "@storybook/channels": "6.5.16",
- "@storybook/client-logger": "6.5.16",
- "@storybook/core-events": "6.5.16",
- "@storybook/csf": "0.0.2--canary.4566f4d.1",
- "@storybook/store": "6.5.16",
- "@types/qs": "^6.9.5",
- "@types/webpack-env": "^1.16.0",
- "core-js": "^3.8.2",
- "fast-deep-equal": "^3.1.3",
- "global": "^4.4.0",
- "lodash": "^4.17.21",
- "memoizerific": "^1.11.3",
- "qs": "^6.10.0",
- "regenerator-runtime": "^0.13.7",
- "store2": "^2.12.0",
- "synchronous-promise": "^2.0.15",
- "ts-dedent": "^2.0.0",
- "util-deprecate": "^1.0.2"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
- }
- },
- "node_modules/@storybook/client-logger": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "core-js": "^3.8.2",
- "global": "^4.4.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- }
- },
- "node_modules/@storybook/components": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@storybook/client-logger": "6.5.16",
- "@storybook/csf": "0.0.2--canary.4566f4d.1",
- "@storybook/theming": "6.5.16",
- "core-js": "^3.8.2",
- "memoizerific": "^1.11.3",
- "qs": "^6.10.0",
- "regenerator-runtime": "^0.13.7",
- "util-deprecate": "^1.0.2"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
- }
- },
- "node_modules/@storybook/core": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@storybook/core-client": "6.5.16",
- "@storybook/core-server": "6.5.16"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "webpack": "*"
- },
- "peerDependenciesMeta": {
- "@storybook/builder-webpack5": {
- "optional": true
- },
- "@storybook/manager-webpack5": {
- "optional": true
- },
- "typescript": {
- "optional": true
- }
- }
- },
- "node_modules/@storybook/core-client": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@storybook/addons": "6.5.16",
- "@storybook/channel-postmessage": "6.5.16",
- "@storybook/channel-websocket": "6.5.16",
- "@storybook/client-api": "6.5.16",
- "@storybook/client-logger": "6.5.16",
- "@storybook/core-events": "6.5.16",
- "@storybook/csf": "0.0.2--canary.4566f4d.1",
- "@storybook/preview-web": "6.5.16",
- "@storybook/store": "6.5.16",
- "@storybook/ui": "6.5.16",
- "airbnb-js-shims": "^2.2.1",
- "ansi-to-html": "^0.6.11",
- "core-js": "^3.8.2",
- "global": "^4.4.0",
- "lodash": "^4.17.21",
- "qs": "^6.10.0",
- "regenerator-runtime": "^0.13.7",
- "ts-dedent": "^2.0.0",
- "unfetch": "^4.2.0",
- "util-deprecate": "^1.0.2"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "webpack": "*"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
- }
- },
- "node_modules/@storybook/core-common": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/core": "^7.12.10",
- "@babel/plugin-proposal-class-properties": "^7.12.1",
- "@babel/plugin-proposal-decorators": "^7.12.12",
- "@babel/plugin-proposal-export-default-from": "^7.12.1",
- "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
- "@babel/plugin-proposal-object-rest-spread": "^7.12.1",
- "@babel/plugin-proposal-optional-chaining": "^7.12.7",
- "@babel/plugin-proposal-private-methods": "^7.12.1",
- "@babel/plugin-proposal-private-property-in-object": "^7.12.1",
- "@babel/plugin-syntax-dynamic-import": "^7.8.3",
- "@babel/plugin-transform-arrow-functions": "^7.12.1",
- "@babel/plugin-transform-block-scoping": "^7.12.12",
- "@babel/plugin-transform-classes": "^7.12.1",
- "@babel/plugin-transform-destructuring": "^7.12.1",
- "@babel/plugin-transform-for-of": "^7.12.1",
- "@babel/plugin-transform-parameters": "^7.12.1",
- "@babel/plugin-transform-shorthand-properties": "^7.12.1",
- "@babel/plugin-transform-spread": "^7.12.1",
- "@babel/preset-env": "^7.12.11",
- "@babel/preset-react": "^7.12.10",
- "@babel/preset-typescript": "^7.12.7",
- "@babel/register": "^7.12.1",
- "@storybook/node-logger": "6.5.16",
- "@storybook/semver": "^7.3.2",
- "@types/node": "^14.0.10 || ^16.0.0",
- "@types/pretty-hrtime": "^1.0.0",
- "babel-loader": "^8.0.0",
- "babel-plugin-macros": "^3.0.1",
- "babel-plugin-polyfill-corejs3": "^0.1.0",
- "chalk": "^4.1.0",
- "core-js": "^3.8.2",
- "express": "^4.17.1",
- "file-system-cache": "^1.0.5",
- "find-up": "^5.0.0",
- "fork-ts-checker-webpack-plugin": "^6.0.4",
- "fs-extra": "^9.0.1",
- "glob": "^7.1.6",
- "handlebars": "^4.7.7",
- "interpret": "^2.2.0",
- "json5": "^2.2.3",
- "lazy-universal-dotenv": "^3.0.1",
- "picomatch": "^2.3.0",
- "pkg-dir": "^5.0.0",
- "pretty-hrtime": "^1.0.3",
- "resolve-from": "^5.0.0",
- "slash": "^3.0.0",
- "telejson": "^6.0.8",
- "ts-dedent": "^2.0.0",
- "util-deprecate": "^1.0.2",
- "webpack": "4"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
- }
- },
- "node_modules/@storybook/core-common/node_modules/@babel/helper-define-polyfill-provider": {
- "version": "0.1.5",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-compilation-targets": "^7.13.0",
- "@babel/helper-module-imports": "^7.12.13",
- "@babel/helper-plugin-utils": "^7.13.0",
- "@babel/traverse": "^7.13.0",
- "debug": "^4.1.1",
- "lodash.debounce": "^4.0.8",
- "resolve": "^1.14.2",
- "semver": "^6.1.2"
- },
- "peerDependencies": {
- "@babel/core": "^7.4.0-0"
- }
- },
- "node_modules/@storybook/core-common/node_modules/@types/node": {
- "version": "16.18.14",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/core-common/node_modules/@webassemblyjs/ast": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/helper-module-context": "1.9.0",
- "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
- "@webassemblyjs/wast-parser": "1.9.0"
- }
- },
- "node_modules/@storybook/core-common/node_modules/@webassemblyjs/helper-api-error": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/core-common/node_modules/@webassemblyjs/helper-buffer": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/core-common/node_modules/@webassemblyjs/helper-wasm-bytecode": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/core-common/node_modules/@webassemblyjs/helper-wasm-section": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-buffer": "1.9.0",
- "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
- "@webassemblyjs/wasm-gen": "1.9.0"
- }
- },
- "node_modules/@storybook/core-common/node_modules/@webassemblyjs/ieee754": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@xtuc/ieee754": "^1.2.0"
- }
- },
- "node_modules/@storybook/core-common/node_modules/@webassemblyjs/leb128": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@xtuc/long": "4.2.2"
- }
- },
- "node_modules/@storybook/core-common/node_modules/@webassemblyjs/utf8": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/core-common/node_modules/@webassemblyjs/wasm-edit": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-buffer": "1.9.0",
- "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
- "@webassemblyjs/helper-wasm-section": "1.9.0",
- "@webassemblyjs/wasm-gen": "1.9.0",
- "@webassemblyjs/wasm-opt": "1.9.0",
- "@webassemblyjs/wasm-parser": "1.9.0",
- "@webassemblyjs/wast-printer": "1.9.0"
- }
- },
- "node_modules/@storybook/core-common/node_modules/@webassemblyjs/wasm-gen": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
- "@webassemblyjs/ieee754": "1.9.0",
- "@webassemblyjs/leb128": "1.9.0",
- "@webassemblyjs/utf8": "1.9.0"
- }
- },
- "node_modules/@storybook/core-common/node_modules/@webassemblyjs/wasm-opt": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-buffer": "1.9.0",
- "@webassemblyjs/wasm-gen": "1.9.0",
- "@webassemblyjs/wasm-parser": "1.9.0"
- }
- },
- "node_modules/@storybook/core-common/node_modules/@webassemblyjs/wasm-parser": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-api-error": "1.9.0",
- "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
- "@webassemblyjs/ieee754": "1.9.0",
- "@webassemblyjs/leb128": "1.9.0",
- "@webassemblyjs/utf8": "1.9.0"
- }
- },
- "node_modules/@storybook/core-common/node_modules/@webassemblyjs/wast-printer": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/wast-parser": "1.9.0",
- "@xtuc/long": "4.2.2"
- }
- },
- "node_modules/@storybook/core-common/node_modules/acorn": {
- "version": "6.4.2",
- "dev": true,
- "license": "MIT",
- "bin": {
- "acorn": "bin/acorn"
- },
- "engines": {
- "node": ">=0.4.0"
- }
- },
- "node_modules/@storybook/core-common/node_modules/ansi-styles": {
- "version": "4.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/@storybook/core-common/node_modules/babel-plugin-polyfill-corejs3": {
- "version": "0.1.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-define-polyfill-provider": "^0.1.5",
- "core-js-compat": "^3.8.1"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@storybook/core-common/node_modules/braces": {
- "version": "2.3.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "arr-flatten": "^1.1.0",
- "array-unique": "^0.3.2",
- "extend-shallow": "^2.0.1",
- "fill-range": "^4.0.0",
- "isobject": "^3.0.1",
- "repeat-element": "^1.1.2",
- "snapdragon": "^0.8.1",
- "snapdragon-node": "^2.0.1",
- "split-string": "^3.0.2",
- "to-regex": "^3.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/core-common/node_modules/braces/node_modules/extend-shallow": {
- "version": "2.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-extendable": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/core-common/node_modules/cacache": {
- "version": "12.0.4",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "bluebird": "^3.5.5",
- "chownr": "^1.1.1",
- "figgy-pudding": "^3.5.1",
- "glob": "^7.1.4",
- "graceful-fs": "^4.1.15",
- "infer-owner": "^1.0.3",
- "lru-cache": "^5.1.1",
- "mississippi": "^3.0.0",
- "mkdirp": "^0.5.1",
- "move-concurrently": "^1.0.1",
- "promise-inflight": "^1.0.1",
- "rimraf": "^2.6.3",
- "ssri": "^6.0.1",
- "unique-filename": "^1.1.1",
- "y18n": "^4.0.0"
- }
- },
- "node_modules/@storybook/core-common/node_modules/chalk": {
- "version": "4.1.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/@storybook/core-common/node_modules/chownr": {
- "version": "1.1.4",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/@storybook/core-common/node_modules/commander": {
- "version": "2.20.3",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/core-common/node_modules/enhanced-resolve": {
- "version": "4.5.0",
- "dev": true,
- "dependencies": {
- "graceful-fs": "^4.1.2",
- "memory-fs": "^0.5.0",
- "tapable": "^1.0.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@storybook/core-common/node_modules/enhanced-resolve/node_modules/memory-fs": {
- "version": "0.5.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "errno": "^0.1.3",
- "readable-stream": "^2.0.1"
- },
- "engines": {
- "node": ">=4.3.0 <5.0.0 || >=5.10"
- }
- },
- "node_modules/@storybook/core-common/node_modules/eslint-scope": {
- "version": "4.0.3",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "esrecurse": "^4.1.0",
- "estraverse": "^4.1.1"
- },
- "engines": {
- "node": ">=4.0.0"
- }
- },
- "node_modules/@storybook/core-common/node_modules/estraverse": {
- "version": "4.3.0",
- "dev": true,
- "license": "BSD-2-Clause",
- "engines": {
- "node": ">=4.0"
- }
- },
- "node_modules/@storybook/core-common/node_modules/fill-range": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "extend-shallow": "^2.0.1",
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1",
- "to-regex-range": "^2.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/core-common/node_modules/fill-range/node_modules/extend-shallow": {
- "version": "2.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-extendable": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/core-common/node_modules/has-flag": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/core-common/node_modules/is-buffer": {
- "version": "1.1.6",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/core-common/node_modules/is-extendable": {
- "version": "0.1.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/core-common/node_modules/is-number": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "kind-of": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/core-common/node_modules/is-number/node_modules/kind-of": {
- "version": "3.2.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/core-common/node_modules/is-wsl": {
- "version": "1.1.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/@storybook/core-common/node_modules/isarray": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/core-common/node_modules/loader-runner": {
- "version": "2.4.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4.3.0 <5.0.0 || >=5.10"
- }
- },
- "node_modules/@storybook/core-common/node_modules/loader-utils": {
- "version": "1.4.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "big.js": "^5.2.2",
- "emojis-list": "^3.0.0",
- "json5": "^1.0.1"
- },
- "engines": {
- "node": ">=4.0.0"
- }
- },
- "node_modules/@storybook/core-common/node_modules/loader-utils/node_modules/json5": {
- "version": "1.0.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "minimist": "^1.2.0"
- },
- "bin": {
- "json5": "lib/cli.js"
- }
- },
- "node_modules/@storybook/core-common/node_modules/lru-cache": {
- "version": "5.1.1",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "yallist": "^3.0.2"
- }
- },
- "node_modules/@storybook/core-common/node_modules/micromatch": {
- "version": "3.1.10",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "arr-diff": "^4.0.0",
- "array-unique": "^0.3.2",
- "braces": "^2.3.1",
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "extglob": "^2.0.4",
- "fragment-cache": "^0.2.1",
- "kind-of": "^6.0.2",
- "nanomatch": "^1.2.9",
- "object.pick": "^1.3.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/core-common/node_modules/mkdirp": {
- "version": "0.5.6",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "minimist": "^1.2.6"
- },
- "bin": {
- "mkdirp": "bin/cmd.js"
- }
- },
- "node_modules/@storybook/core-common/node_modules/readable-stream": {
- "version": "2.3.8",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "core-util-is": "~1.0.0",
- "inherits": "~2.0.3",
- "isarray": "~1.0.0",
- "process-nextick-args": "~2.0.0",
- "safe-buffer": "~5.1.1",
- "string_decoder": "~1.1.1",
- "util-deprecate": "~1.0.1"
- }
- },
- "node_modules/@storybook/core-common/node_modules/rimraf": {
- "version": "2.7.1",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "glob": "^7.1.3"
- },
- "bin": {
- "rimraf": "bin.js"
- }
- },
- "node_modules/@storybook/core-common/node_modules/schema-utils": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ajv": "^6.1.0",
- "ajv-errors": "^1.0.0",
- "ajv-keywords": "^3.1.0"
- },
- "engines": {
- "node": ">= 4"
- }
- },
- "node_modules/@storybook/core-common/node_modules/serialize-javascript": {
- "version": "4.0.0",
- "dev": true,
- "license": "BSD-3-Clause",
- "dependencies": {
- "randombytes": "^2.1.0"
- }
- },
- "node_modules/@storybook/core-common/node_modules/source-map": {
- "version": "0.6.1",
- "dev": true,
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/core-common/node_modules/source-map-support": {
- "version": "0.5.21",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "buffer-from": "^1.0.0",
- "source-map": "^0.6.0"
- }
- },
- "node_modules/@storybook/core-common/node_modules/ssri": {
- "version": "6.0.2",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "figgy-pudding": "^3.5.1"
- }
- },
- "node_modules/@storybook/core-common/node_modules/string_decoder": {
- "version": "1.1.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "safe-buffer": "~5.1.0"
- }
- },
- "node_modules/@storybook/core-common/node_modules/supports-color": {
- "version": "7.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/core-common/node_modules/terser": {
- "version": "4.8.1",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "commander": "^2.20.0",
- "source-map": "~0.6.1",
- "source-map-support": "~0.5.12"
- },
- "bin": {
- "terser": "bin/terser"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@storybook/core-common/node_modules/terser-webpack-plugin": {
- "version": "1.4.5",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "cacache": "^12.0.2",
- "find-cache-dir": "^2.1.0",
- "is-wsl": "^1.1.0",
- "schema-utils": "^1.0.0",
- "serialize-javascript": "^4.0.0",
- "source-map": "^0.6.1",
- "terser": "^4.1.2",
- "webpack-sources": "^1.4.0",
- "worker-farm": "^1.7.0"
- },
- "engines": {
- "node": ">= 6.9.0"
- },
- "peerDependencies": {
- "webpack": "^4.0.0"
- }
- },
- "node_modules/@storybook/core-common/node_modules/to-regex-range": {
- "version": "2.1.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/core-common/node_modules/watchpack": {
- "version": "1.7.5",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "graceful-fs": "^4.1.2",
- "neo-async": "^2.5.0"
- },
- "optionalDependencies": {
- "chokidar": "^3.4.1",
- "watchpack-chokidar2": "^2.0.1"
- }
- },
- "node_modules/@storybook/core-common/node_modules/webpack": {
- "version": "4.46.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-module-context": "1.9.0",
- "@webassemblyjs/wasm-edit": "1.9.0",
- "@webassemblyjs/wasm-parser": "1.9.0",
- "acorn": "^6.4.1",
- "ajv": "^6.10.2",
- "ajv-keywords": "^3.4.1",
- "chrome-trace-event": "^1.0.2",
- "enhanced-resolve": "^4.5.0",
- "eslint-scope": "^4.0.3",
- "json-parse-better-errors": "^1.0.2",
- "loader-runner": "^2.4.0",
- "loader-utils": "^1.2.3",
- "memory-fs": "^0.4.1",
- "micromatch": "^3.1.10",
- "mkdirp": "^0.5.3",
- "neo-async": "^2.6.1",
- "node-libs-browser": "^2.2.1",
- "schema-utils": "^1.0.0",
- "tapable": "^1.1.3",
- "terser-webpack-plugin": "^1.4.3",
- "watchpack": "^1.7.4",
- "webpack-sources": "^1.4.1"
- },
- "bin": {
- "webpack": "bin/webpack.js"
- },
- "engines": {
- "node": ">=6.11.5"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependenciesMeta": {
- "webpack-cli": {
- "optional": true
- },
- "webpack-command": {
- "optional": true
- }
- }
- },
- "node_modules/@storybook/core-common/node_modules/y18n": {
- "version": "4.0.3",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/@storybook/core-common/node_modules/yallist": {
- "version": "3.1.1",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/@storybook/core-events": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "core-js": "^3.8.2"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- }
- },
- "node_modules/@storybook/core-server": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@discoveryjs/json-ext": "^0.5.3",
- "@storybook/builder-webpack4": "6.5.16",
- "@storybook/core-client": "6.5.16",
- "@storybook/core-common": "6.5.16",
- "@storybook/core-events": "6.5.16",
- "@storybook/csf": "0.0.2--canary.4566f4d.1",
- "@storybook/csf-tools": "6.5.16",
- "@storybook/manager-webpack4": "6.5.16",
- "@storybook/node-logger": "6.5.16",
- "@storybook/semver": "^7.3.2",
- "@storybook/store": "6.5.16",
- "@storybook/telemetry": "6.5.16",
- "@types/node": "^14.0.10 || ^16.0.0",
- "@types/node-fetch": "^2.5.7",
- "@types/pretty-hrtime": "^1.0.0",
- "@types/webpack": "^4.41.26",
- "better-opn": "^2.1.1",
- "boxen": "^5.1.2",
- "chalk": "^4.1.0",
- "cli-table3": "^0.6.1",
- "commander": "^6.2.1",
- "compression": "^1.7.4",
- "core-js": "^3.8.2",
- "cpy": "^8.1.2",
- "detect-port": "^1.3.0",
- "express": "^4.17.1",
- "fs-extra": "^9.0.1",
- "global": "^4.4.0",
- "globby": "^11.0.2",
- "ip": "^2.0.0",
- "lodash": "^4.17.21",
- "node-fetch": "^2.6.7",
- "open": "^8.4.0",
- "pretty-hrtime": "^1.0.3",
- "prompts": "^2.4.0",
- "regenerator-runtime": "^0.13.7",
- "serve-favicon": "^2.5.0",
- "slash": "^3.0.0",
- "telejson": "^6.0.8",
- "ts-dedent": "^2.0.0",
- "util-deprecate": "^1.0.2",
- "watchpack": "^2.2.0",
- "webpack": "4",
- "ws": "^8.2.3",
- "x-default-browser": "^0.4.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "@storybook/builder-webpack5": {
- "optional": true
- },
- "@storybook/manager-webpack5": {
- "optional": true
- },
- "typescript": {
- "optional": true
- }
- }
- },
- "node_modules/@storybook/core-server/node_modules/@types/node": {
- "version": "16.18.14",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/core-server/node_modules/@webassemblyjs/ast": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/helper-module-context": "1.9.0",
- "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
- "@webassemblyjs/wast-parser": "1.9.0"
- }
- },
- "node_modules/@storybook/core-server/node_modules/@webassemblyjs/helper-api-error": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/core-server/node_modules/@webassemblyjs/helper-buffer": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/core-server/node_modules/@webassemblyjs/helper-wasm-bytecode": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/core-server/node_modules/@webassemblyjs/helper-wasm-section": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-buffer": "1.9.0",
- "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
- "@webassemblyjs/wasm-gen": "1.9.0"
- }
- },
- "node_modules/@storybook/core-server/node_modules/@webassemblyjs/ieee754": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@xtuc/ieee754": "^1.2.0"
- }
- },
- "node_modules/@storybook/core-server/node_modules/@webassemblyjs/leb128": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@xtuc/long": "4.2.2"
- }
- },
- "node_modules/@storybook/core-server/node_modules/@webassemblyjs/utf8": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/core-server/node_modules/@webassemblyjs/wasm-edit": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-buffer": "1.9.0",
- "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
- "@webassemblyjs/helper-wasm-section": "1.9.0",
- "@webassemblyjs/wasm-gen": "1.9.0",
- "@webassemblyjs/wasm-opt": "1.9.0",
- "@webassemblyjs/wasm-parser": "1.9.0",
- "@webassemblyjs/wast-printer": "1.9.0"
- }
- },
- "node_modules/@storybook/core-server/node_modules/@webassemblyjs/wasm-gen": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
- "@webassemblyjs/ieee754": "1.9.0",
- "@webassemblyjs/leb128": "1.9.0",
- "@webassemblyjs/utf8": "1.9.0"
- }
- },
- "node_modules/@storybook/core-server/node_modules/@webassemblyjs/wasm-opt": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-buffer": "1.9.0",
- "@webassemblyjs/wasm-gen": "1.9.0",
- "@webassemblyjs/wasm-parser": "1.9.0"
- }
- },
- "node_modules/@storybook/core-server/node_modules/@webassemblyjs/wasm-parser": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-api-error": "1.9.0",
- "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
- "@webassemblyjs/ieee754": "1.9.0",
- "@webassemblyjs/leb128": "1.9.0",
- "@webassemblyjs/utf8": "1.9.0"
- }
- },
- "node_modules/@storybook/core-server/node_modules/@webassemblyjs/wast-printer": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/wast-parser": "1.9.0",
- "@xtuc/long": "4.2.2"
- }
- },
- "node_modules/@storybook/core-server/node_modules/acorn": {
- "version": "6.4.2",
- "dev": true,
- "license": "MIT",
- "bin": {
- "acorn": "bin/acorn"
- },
- "engines": {
- "node": ">=0.4.0"
- }
- },
- "node_modules/@storybook/core-server/node_modules/ansi-styles": {
- "version": "4.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/@storybook/core-server/node_modules/braces": {
- "version": "2.3.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "arr-flatten": "^1.1.0",
- "array-unique": "^0.3.2",
- "extend-shallow": "^2.0.1",
- "fill-range": "^4.0.0",
- "isobject": "^3.0.1",
- "repeat-element": "^1.1.2",
- "snapdragon": "^0.8.1",
- "snapdragon-node": "^2.0.1",
- "split-string": "^3.0.2",
- "to-regex": "^3.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/core-server/node_modules/braces/node_modules/extend-shallow": {
- "version": "2.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-extendable": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/core-server/node_modules/cacache": {
- "version": "12.0.4",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "bluebird": "^3.5.5",
- "chownr": "^1.1.1",
- "figgy-pudding": "^3.5.1",
- "glob": "^7.1.4",
- "graceful-fs": "^4.1.15",
- "infer-owner": "^1.0.3",
- "lru-cache": "^5.1.1",
- "mississippi": "^3.0.0",
- "mkdirp": "^0.5.1",
- "move-concurrently": "^1.0.1",
- "promise-inflight": "^1.0.1",
- "rimraf": "^2.6.3",
- "ssri": "^6.0.1",
- "unique-filename": "^1.1.1",
- "y18n": "^4.0.0"
- }
- },
- "node_modules/@storybook/core-server/node_modules/chalk": {
- "version": "4.1.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/@storybook/core-server/node_modules/chownr": {
- "version": "1.1.4",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/@storybook/core-server/node_modules/commander": {
- "version": "6.2.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/@storybook/core-server/node_modules/enhanced-resolve": {
- "version": "4.5.0",
- "dev": true,
- "dependencies": {
- "graceful-fs": "^4.1.2",
- "memory-fs": "^0.5.0",
- "tapable": "^1.0.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@storybook/core-server/node_modules/enhanced-resolve/node_modules/memory-fs": {
- "version": "0.5.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "errno": "^0.1.3",
- "readable-stream": "^2.0.1"
- },
- "engines": {
- "node": ">=4.3.0 <5.0.0 || >=5.10"
- }
- },
- "node_modules/@storybook/core-server/node_modules/eslint-scope": {
- "version": "4.0.3",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "esrecurse": "^4.1.0",
- "estraverse": "^4.1.1"
- },
- "engines": {
- "node": ">=4.0.0"
- }
- },
- "node_modules/@storybook/core-server/node_modules/estraverse": {
- "version": "4.3.0",
- "dev": true,
- "license": "BSD-2-Clause",
- "engines": {
- "node": ">=4.0"
- }
- },
- "node_modules/@storybook/core-server/node_modules/fill-range": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "extend-shallow": "^2.0.1",
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1",
- "to-regex-range": "^2.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/core-server/node_modules/fill-range/node_modules/extend-shallow": {
- "version": "2.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-extendable": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/core-server/node_modules/has-flag": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/core-server/node_modules/ip": {
- "version": "2.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/core-server/node_modules/is-buffer": {
- "version": "1.1.6",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/core-server/node_modules/is-extendable": {
- "version": "0.1.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/core-server/node_modules/is-number": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "kind-of": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/core-server/node_modules/is-number/node_modules/kind-of": {
- "version": "3.2.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/core-server/node_modules/is-wsl": {
- "version": "1.1.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/@storybook/core-server/node_modules/isarray": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/core-server/node_modules/json5": {
- "version": "1.0.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "minimist": "^1.2.0"
- },
- "bin": {
- "json5": "lib/cli.js"
- }
- },
- "node_modules/@storybook/core-server/node_modules/loader-runner": {
- "version": "2.4.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4.3.0 <5.0.0 || >=5.10"
- }
- },
- "node_modules/@storybook/core-server/node_modules/loader-utils": {
- "version": "1.4.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "big.js": "^5.2.2",
- "emojis-list": "^3.0.0",
- "json5": "^1.0.1"
- },
- "engines": {
- "node": ">=4.0.0"
- }
- },
- "node_modules/@storybook/core-server/node_modules/lru-cache": {
- "version": "5.1.1",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "yallist": "^3.0.2"
- }
- },
- "node_modules/@storybook/core-server/node_modules/micromatch": {
- "version": "3.1.10",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "arr-diff": "^4.0.0",
- "array-unique": "^0.3.2",
- "braces": "^2.3.1",
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "extglob": "^2.0.4",
- "fragment-cache": "^0.2.1",
- "kind-of": "^6.0.2",
- "nanomatch": "^1.2.9",
- "object.pick": "^1.3.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/core-server/node_modules/mkdirp": {
- "version": "0.5.6",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "minimist": "^1.2.6"
- },
- "bin": {
- "mkdirp": "bin/cmd.js"
- }
- },
- "node_modules/@storybook/core-server/node_modules/readable-stream": {
- "version": "2.3.8",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "core-util-is": "~1.0.0",
- "inherits": "~2.0.3",
- "isarray": "~1.0.0",
- "process-nextick-args": "~2.0.0",
- "safe-buffer": "~5.1.1",
- "string_decoder": "~1.1.1",
- "util-deprecate": "~1.0.1"
- }
- },
- "node_modules/@storybook/core-server/node_modules/rimraf": {
- "version": "2.7.1",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "glob": "^7.1.3"
- },
- "bin": {
- "rimraf": "bin.js"
- }
- },
- "node_modules/@storybook/core-server/node_modules/schema-utils": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ajv": "^6.1.0",
- "ajv-errors": "^1.0.0",
- "ajv-keywords": "^3.1.0"
- },
- "engines": {
- "node": ">= 4"
- }
- },
- "node_modules/@storybook/core-server/node_modules/serialize-javascript": {
- "version": "4.0.0",
- "dev": true,
- "license": "BSD-3-Clause",
- "dependencies": {
- "randombytes": "^2.1.0"
- }
- },
- "node_modules/@storybook/core-server/node_modules/source-map": {
- "version": "0.6.1",
- "dev": true,
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/core-server/node_modules/source-map-support": {
- "version": "0.5.21",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "buffer-from": "^1.0.0",
- "source-map": "^0.6.0"
- }
- },
- "node_modules/@storybook/core-server/node_modules/ssri": {
- "version": "6.0.2",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "figgy-pudding": "^3.5.1"
- }
- },
- "node_modules/@storybook/core-server/node_modules/string_decoder": {
- "version": "1.1.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "safe-buffer": "~5.1.0"
- }
- },
- "node_modules/@storybook/core-server/node_modules/supports-color": {
- "version": "7.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/core-server/node_modules/terser": {
- "version": "4.8.1",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "commander": "^2.20.0",
- "source-map": "~0.6.1",
- "source-map-support": "~0.5.12"
- },
- "bin": {
- "terser": "bin/terser"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@storybook/core-server/node_modules/terser-webpack-plugin": {
- "version": "1.4.5",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "cacache": "^12.0.2",
- "find-cache-dir": "^2.1.0",
- "is-wsl": "^1.1.0",
- "schema-utils": "^1.0.0",
- "serialize-javascript": "^4.0.0",
- "source-map": "^0.6.1",
- "terser": "^4.1.2",
- "webpack-sources": "^1.4.0",
- "worker-farm": "^1.7.0"
- },
- "engines": {
- "node": ">= 6.9.0"
- },
- "peerDependencies": {
- "webpack": "^4.0.0"
- }
- },
- "node_modules/@storybook/core-server/node_modules/terser/node_modules/commander": {
- "version": "2.20.3",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/core-server/node_modules/to-regex-range": {
- "version": "2.1.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/core-server/node_modules/webpack": {
- "version": "4.46.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-module-context": "1.9.0",
- "@webassemblyjs/wasm-edit": "1.9.0",
- "@webassemblyjs/wasm-parser": "1.9.0",
- "acorn": "^6.4.1",
- "ajv": "^6.10.2",
- "ajv-keywords": "^3.4.1",
- "chrome-trace-event": "^1.0.2",
- "enhanced-resolve": "^4.5.0",
- "eslint-scope": "^4.0.3",
- "json-parse-better-errors": "^1.0.2",
- "loader-runner": "^2.4.0",
- "loader-utils": "^1.2.3",
- "memory-fs": "^0.4.1",
- "micromatch": "^3.1.10",
- "mkdirp": "^0.5.3",
- "neo-async": "^2.6.1",
- "node-libs-browser": "^2.2.1",
- "schema-utils": "^1.0.0",
- "tapable": "^1.1.3",
- "terser-webpack-plugin": "^1.4.3",
- "watchpack": "^1.7.4",
- "webpack-sources": "^1.4.1"
- },
- "bin": {
- "webpack": "bin/webpack.js"
- },
- "engines": {
- "node": ">=6.11.5"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependenciesMeta": {
- "webpack-cli": {
- "optional": true
- },
- "webpack-command": {
- "optional": true
- }
- }
- },
- "node_modules/@storybook/core-server/node_modules/webpack/node_modules/watchpack": {
- "version": "1.7.5",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "graceful-fs": "^4.1.2",
- "neo-async": "^2.5.0"
- },
- "optionalDependencies": {
- "chokidar": "^3.4.1",
- "watchpack-chokidar2": "^2.0.1"
- }
- },
- "node_modules/@storybook/core-server/node_modules/y18n": {
- "version": "4.0.3",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/@storybook/core-server/node_modules/yallist": {
- "version": "3.1.1",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/@storybook/csf": {
- "version": "0.0.2--canary.4566f4d.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "lodash": "^4.17.15"
- }
- },
- "node_modules/@storybook/csf-tools": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/core": "^7.12.10",
- "@babel/generator": "^7.12.11",
- "@babel/parser": "^7.12.11",
- "@babel/plugin-transform-react-jsx": "^7.12.12",
- "@babel/preset-env": "^7.12.11",
- "@babel/traverse": "^7.12.11",
- "@babel/types": "^7.12.11",
- "@storybook/csf": "0.0.2--canary.4566f4d.1",
- "@storybook/mdx1-csf": "^0.0.1",
- "core-js": "^3.8.2",
- "fs-extra": "^9.0.1",
- "global": "^4.4.0",
- "regenerator-runtime": "^0.13.7",
- "ts-dedent": "^2.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "peerDependencies": {
- "@storybook/mdx2-csf": "^0.0.3"
- },
- "peerDependenciesMeta": {
- "@storybook/mdx2-csf": {
- "optional": true
- }
- }
- },
- "node_modules/@storybook/docs-tools": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/core": "^7.12.10",
- "@storybook/csf": "0.0.2--canary.4566f4d.1",
- "@storybook/store": "6.5.16",
- "core-js": "^3.8.2",
- "doctrine": "^3.0.0",
- "lodash": "^4.17.21",
- "regenerator-runtime": "^0.13.7"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- }
- },
- "node_modules/@storybook/expect": {
- "version": "27.5.2-0",
- "resolved": "https://registry.npmjs.org/@storybook/expect/-/expect-27.5.2-0.tgz",
- "integrity": "sha512-cP99mhWN/JeCp7VSIiymvj5tmuMY050iFohvp8Zq+kewKsBSZ6/qpTJAGCCZk6pneTcp4S0Fm5BSqyxzbyJ3gw==",
- "dev": true,
- "dependencies": {
- "@types/jest": ">=26.0.0"
- }
- },
- "node_modules/@storybook/global": {
- "version": "5.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/instrumenter": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@storybook/addons": "6.5.16",
- "@storybook/client-logger": "6.5.16",
- "@storybook/core-events": "6.5.16",
- "core-js": "^3.8.2",
- "global": "^4.4.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- }
- },
- "node_modules/@storybook/jest": {
- "version": "0.0.10",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@storybook/expect": "storybook-jest",
- "@storybook/instrumenter": "^6.4.0",
- "@testing-library/jest-dom": "^5.16.2",
- "jest-mock": "^27.3.0"
- }
- },
- "node_modules/@storybook/manager-webpack4": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/core": "^7.12.10",
- "@babel/plugin-transform-template-literals": "^7.12.1",
- "@babel/preset-react": "^7.12.10",
- "@storybook/addons": "6.5.16",
- "@storybook/core-client": "6.5.16",
- "@storybook/core-common": "6.5.16",
- "@storybook/node-logger": "6.5.16",
- "@storybook/theming": "6.5.16",
- "@storybook/ui": "6.5.16",
- "@types/node": "^14.0.10 || ^16.0.0",
- "@types/webpack": "^4.41.26",
- "babel-loader": "^8.0.0",
- "case-sensitive-paths-webpack-plugin": "^2.3.0",
- "chalk": "^4.1.0",
- "core-js": "^3.8.2",
- "css-loader": "^3.6.0",
- "express": "^4.17.1",
- "file-loader": "^6.2.0",
- "find-up": "^5.0.0",
- "fs-extra": "^9.0.1",
- "html-webpack-plugin": "^4.0.0",
- "node-fetch": "^2.6.7",
- "pnp-webpack-plugin": "1.6.4",
- "read-pkg-up": "^7.0.1",
- "regenerator-runtime": "^0.13.7",
- "resolve-from": "^5.0.0",
- "style-loader": "^1.3.0",
- "telejson": "^6.0.8",
- "terser-webpack-plugin": "^4.2.3",
- "ts-dedent": "^2.0.0",
- "url-loader": "^4.1.1",
- "util-deprecate": "^1.0.2",
- "webpack": "4",
- "webpack-dev-middleware": "^3.7.3",
- "webpack-virtual-modules": "^0.2.2"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/@types/html-minifier-terser": {
- "version": "5.1.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/manager-webpack4/node_modules/@types/node": {
- "version": "16.18.14",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/manager-webpack4/node_modules/@webassemblyjs/ast": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/helper-module-context": "1.9.0",
- "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
- "@webassemblyjs/wast-parser": "1.9.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/@webassemblyjs/helper-api-error": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/manager-webpack4/node_modules/@webassemblyjs/helper-buffer": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/manager-webpack4/node_modules/@webassemblyjs/helper-wasm-bytecode": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/manager-webpack4/node_modules/@webassemblyjs/helper-wasm-section": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-buffer": "1.9.0",
- "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
- "@webassemblyjs/wasm-gen": "1.9.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/@webassemblyjs/ieee754": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@xtuc/ieee754": "^1.2.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/@webassemblyjs/leb128": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@xtuc/long": "4.2.2"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/@webassemblyjs/utf8": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/manager-webpack4/node_modules/@webassemblyjs/wasm-edit": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-buffer": "1.9.0",
- "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
- "@webassemblyjs/helper-wasm-section": "1.9.0",
- "@webassemblyjs/wasm-gen": "1.9.0",
- "@webassemblyjs/wasm-opt": "1.9.0",
- "@webassemblyjs/wasm-parser": "1.9.0",
- "@webassemblyjs/wast-printer": "1.9.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/@webassemblyjs/wasm-gen": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
- "@webassemblyjs/ieee754": "1.9.0",
- "@webassemblyjs/leb128": "1.9.0",
- "@webassemblyjs/utf8": "1.9.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/@webassemblyjs/wasm-opt": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-buffer": "1.9.0",
- "@webassemblyjs/wasm-gen": "1.9.0",
- "@webassemblyjs/wasm-parser": "1.9.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/@webassemblyjs/wasm-parser": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-api-error": "1.9.0",
- "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
- "@webassemblyjs/ieee754": "1.9.0",
- "@webassemblyjs/leb128": "1.9.0",
- "@webassemblyjs/utf8": "1.9.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/@webassemblyjs/wast-printer": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/wast-parser": "1.9.0",
- "@xtuc/long": "4.2.2"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/acorn": {
- "version": "6.4.2",
- "dev": true,
- "license": "MIT",
- "bin": {
- "acorn": "bin/acorn"
- },
- "engines": {
- "node": ">=0.4.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/ansi-regex": {
- "version": "2.1.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/ansi-styles": {
- "version": "4.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/braces": {
- "version": "2.3.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "arr-flatten": "^1.1.0",
- "array-unique": "^0.3.2",
- "extend-shallow": "^2.0.1",
- "fill-range": "^4.0.0",
- "isobject": "^3.0.1",
- "repeat-element": "^1.1.2",
- "snapdragon": "^0.8.1",
- "snapdragon-node": "^2.0.1",
- "split-string": "^3.0.2",
- "to-regex": "^3.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/braces/node_modules/extend-shallow": {
- "version": "2.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-extendable": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/chalk": {
- "version": "4.1.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/chownr": {
- "version": "1.1.4",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/@storybook/manager-webpack4/node_modules/clean-css": {
- "version": "4.2.4",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "source-map": "~0.6.0"
- },
- "engines": {
- "node": ">= 4.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/commander": {
- "version": "4.1.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/debug": {
- "version": "3.2.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ms": "^2.1.1"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/enhanced-resolve": {
- "version": "4.5.0",
- "dev": true,
- "dependencies": {
- "graceful-fs": "^4.1.2",
- "memory-fs": "^0.5.0",
- "tapable": "^1.0.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/enhanced-resolve/node_modules/memory-fs": {
- "version": "0.5.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "errno": "^0.1.3",
- "readable-stream": "^2.0.1"
- },
- "engines": {
- "node": ">=4.3.0 <5.0.0 || >=5.10"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/eslint-scope": {
- "version": "4.0.3",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "esrecurse": "^4.1.0",
- "estraverse": "^4.1.1"
- },
- "engines": {
- "node": ">=4.0.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/estraverse": {
- "version": "4.3.0",
- "dev": true,
- "license": "BSD-2-Clause",
- "engines": {
- "node": ">=4.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/fill-range": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "extend-shallow": "^2.0.1",
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1",
- "to-regex-range": "^2.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/fill-range/node_modules/extend-shallow": {
- "version": "2.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-extendable": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/find-cache-dir": {
- "version": "3.3.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "commondir": "^1.0.1",
- "make-dir": "^3.0.2",
- "pkg-dir": "^4.1.0"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/avajs/find-cache-dir?sponsor=1"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/has-flag": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/html-minifier-terser": {
- "version": "5.1.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "camel-case": "^4.1.1",
- "clean-css": "^4.2.3",
- "commander": "^4.1.1",
- "he": "^1.2.0",
- "param-case": "^3.0.3",
- "relateurl": "^0.2.7",
- "terser": "^4.6.3"
- },
- "bin": {
- "html-minifier-terser": "cli.js"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/html-minifier-terser/node_modules/terser": {
- "version": "4.8.1",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "commander": "^2.20.0",
- "source-map": "~0.6.1",
- "source-map-support": "~0.5.12"
- },
- "bin": {
- "terser": "bin/terser"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/html-minifier-terser/node_modules/terser/node_modules/commander": {
- "version": "2.20.3",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/manager-webpack4/node_modules/html-webpack-plugin": {
- "version": "4.5.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/html-minifier-terser": "^5.0.0",
- "@types/tapable": "^1.0.5",
- "@types/webpack": "^4.41.8",
- "html-minifier-terser": "^5.0.1",
- "loader-utils": "^1.2.3",
- "lodash": "^4.17.20",
- "pretty-error": "^2.1.1",
- "tapable": "^1.1.3",
- "util.promisify": "1.0.0"
- },
- "engines": {
- "node": ">=6.9"
- },
- "peerDependencies": {
- "webpack": "^4.0.0 || ^5.0.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/is-buffer": {
- "version": "1.1.6",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/manager-webpack4/node_modules/is-extendable": {
- "version": "0.1.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/is-number": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "kind-of": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/is-number/node_modules/kind-of": {
- "version": "3.2.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/is-wsl": {
- "version": "1.1.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/isarray": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/manager-webpack4/node_modules/jest-worker": {
- "version": "26.6.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/node": "*",
- "merge-stream": "^2.0.0",
- "supports-color": "^7.0.0"
- },
- "engines": {
- "node": ">= 10.13.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/json5": {
- "version": "1.0.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "minimist": "^1.2.0"
- },
- "bin": {
- "json5": "lib/cli.js"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/loader-runner": {
- "version": "2.4.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4.3.0 <5.0.0 || >=5.10"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/loader-utils": {
- "version": "1.4.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "big.js": "^5.2.2",
- "emojis-list": "^3.0.0",
- "json5": "^1.0.1"
- },
- "engines": {
- "node": ">=4.0.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/locate-path": {
- "version": "5.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "p-locate": "^4.1.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/lru-cache": {
- "version": "5.1.1",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "yallist": "^3.0.2"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/make-dir": {
- "version": "3.1.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "semver": "^6.0.0"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/micromatch": {
- "version": "3.1.10",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "arr-diff": "^4.0.0",
- "array-unique": "^0.3.2",
- "braces": "^2.3.1",
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "extglob": "^2.0.4",
- "fragment-cache": "^0.2.1",
- "kind-of": "^6.0.2",
- "nanomatch": "^1.2.9",
- "object.pick": "^1.3.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/mime": {
- "version": "2.6.0",
- "dev": true,
- "license": "MIT",
- "bin": {
- "mime": "cli.js"
- },
- "engines": {
- "node": ">=4.0.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/mkdirp": {
- "version": "0.5.6",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "minimist": "^1.2.6"
- },
- "bin": {
- "mkdirp": "bin/cmd.js"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/p-locate": {
- "version": "4.1.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "p-limit": "^2.2.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/p-locate/node_modules/p-limit": {
- "version": "2.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "p-try": "^2.0.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/path-exists": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/pify": {
- "version": "4.0.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/pkg-dir": {
- "version": "4.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "find-up": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/pkg-dir/node_modules/find-up": {
- "version": "4.1.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "locate-path": "^5.0.0",
- "path-exists": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/pretty-error": {
- "version": "2.1.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "lodash": "^4.17.20",
- "renderkid": "^2.0.4"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/readable-stream": {
- "version": "2.3.8",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "core-util-is": "~1.0.0",
- "inherits": "~2.0.3",
- "isarray": "~1.0.0",
- "process-nextick-args": "~2.0.0",
- "safe-buffer": "~5.1.1",
- "string_decoder": "~1.1.1",
- "util-deprecate": "~1.0.1"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/renderkid": {
- "version": "2.0.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "css-select": "^4.1.3",
- "dom-converter": "^0.2.0",
- "htmlparser2": "^6.1.0",
- "lodash": "^4.17.21",
- "strip-ansi": "^3.0.1"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/rimraf": {
- "version": "2.7.1",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "glob": "^7.1.3"
- },
- "bin": {
- "rimraf": "bin.js"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/serialize-javascript": {
- "version": "5.0.1",
- "dev": true,
- "license": "BSD-3-Clause",
- "dependencies": {
- "randombytes": "^2.1.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/source-map": {
- "version": "0.6.1",
- "dev": true,
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/source-map-support": {
- "version": "0.5.21",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "buffer-from": "^1.0.0",
- "source-map": "^0.6.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/ssri": {
- "version": "6.0.2",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "figgy-pudding": "^3.5.1"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/string_decoder": {
- "version": "1.1.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "safe-buffer": "~5.1.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/strip-ansi": {
- "version": "3.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-regex": "^2.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/supports-color": {
- "version": "7.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/terser-webpack-plugin": {
- "version": "4.2.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "cacache": "^15.0.5",
- "find-cache-dir": "^3.3.1",
- "jest-worker": "^26.5.0",
- "p-limit": "^3.0.2",
- "schema-utils": "^3.0.0",
- "serialize-javascript": "^5.0.1",
- "source-map": "^0.6.1",
- "terser": "^5.3.4",
- "webpack-sources": "^1.4.3"
- },
- "engines": {
- "node": ">= 10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^4.0.0 || ^5.0.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/to-regex-range": {
- "version": "2.1.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/watchpack": {
- "version": "1.7.5",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "graceful-fs": "^4.1.2",
- "neo-async": "^2.5.0"
- },
- "optionalDependencies": {
- "chokidar": "^3.4.1",
- "watchpack-chokidar2": "^2.0.1"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/webpack": {
- "version": "4.46.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-module-context": "1.9.0",
- "@webassemblyjs/wasm-edit": "1.9.0",
- "@webassemblyjs/wasm-parser": "1.9.0",
- "acorn": "^6.4.1",
- "ajv": "^6.10.2",
- "ajv-keywords": "^3.4.1",
- "chrome-trace-event": "^1.0.2",
- "enhanced-resolve": "^4.5.0",
- "eslint-scope": "^4.0.3",
- "json-parse-better-errors": "^1.0.2",
- "loader-runner": "^2.4.0",
- "loader-utils": "^1.2.3",
- "memory-fs": "^0.4.1",
- "micromatch": "^3.1.10",
- "mkdirp": "^0.5.3",
- "neo-async": "^2.6.1",
- "node-libs-browser": "^2.2.1",
- "schema-utils": "^1.0.0",
- "tapable": "^1.1.3",
- "terser-webpack-plugin": "^1.4.3",
- "watchpack": "^1.7.4",
- "webpack-sources": "^1.4.1"
- },
- "bin": {
- "webpack": "bin/webpack.js"
- },
- "engines": {
- "node": ">=6.11.5"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependenciesMeta": {
- "webpack-cli": {
- "optional": true
- },
- "webpack-command": {
- "optional": true
- }
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/webpack-dev-middleware": {
- "version": "3.7.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "memory-fs": "^0.4.1",
- "mime": "^2.4.4",
- "mkdirp": "^0.5.1",
- "range-parser": "^1.2.1",
- "webpack-log": "^2.0.0"
- },
- "engines": {
- "node": ">= 6"
- },
- "peerDependencies": {
- "webpack": "^4.0.0 || ^5.0.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/webpack-virtual-modules": {
- "version": "0.2.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "debug": "^3.0.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/webpack/node_modules/cacache": {
- "version": "12.0.4",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "bluebird": "^3.5.5",
- "chownr": "^1.1.1",
- "figgy-pudding": "^3.5.1",
- "glob": "^7.1.4",
- "graceful-fs": "^4.1.15",
- "infer-owner": "^1.0.3",
- "lru-cache": "^5.1.1",
- "mississippi": "^3.0.0",
- "mkdirp": "^0.5.1",
- "move-concurrently": "^1.0.1",
- "promise-inflight": "^1.0.1",
- "rimraf": "^2.6.3",
- "ssri": "^6.0.1",
- "unique-filename": "^1.1.1",
- "y18n": "^4.0.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/webpack/node_modules/commander": {
- "version": "2.20.3",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/manager-webpack4/node_modules/webpack/node_modules/find-cache-dir": {
- "version": "2.1.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "commondir": "^1.0.1",
- "make-dir": "^2.0.0",
- "pkg-dir": "^3.0.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/webpack/node_modules/find-up": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "locate-path": "^3.0.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/webpack/node_modules/locate-path": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "p-locate": "^3.0.0",
- "path-exists": "^3.0.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/webpack/node_modules/make-dir": {
- "version": "2.1.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "pify": "^4.0.1",
- "semver": "^5.6.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/webpack/node_modules/p-limit": {
- "version": "2.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "p-try": "^2.0.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/webpack/node_modules/p-locate": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "p-limit": "^2.0.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/webpack/node_modules/path-exists": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/webpack/node_modules/pkg-dir": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "find-up": "^3.0.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/webpack/node_modules/schema-utils": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ajv": "^6.1.0",
- "ajv-errors": "^1.0.0",
- "ajv-keywords": "^3.1.0"
- },
- "engines": {
- "node": ">= 4"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/webpack/node_modules/semver": {
- "version": "5.7.2",
- "dev": true,
- "license": "ISC",
- "bin": {
- "semver": "bin/semver"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/webpack/node_modules/serialize-javascript": {
- "version": "4.0.0",
- "dev": true,
- "license": "BSD-3-Clause",
- "dependencies": {
- "randombytes": "^2.1.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/webpack/node_modules/terser": {
- "version": "4.8.1",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "commander": "^2.20.0",
- "source-map": "~0.6.1",
- "source-map-support": "~0.5.12"
- },
- "bin": {
- "terser": "bin/terser"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/webpack/node_modules/terser-webpack-plugin": {
- "version": "1.4.5",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "cacache": "^12.0.2",
- "find-cache-dir": "^2.1.0",
- "is-wsl": "^1.1.0",
- "schema-utils": "^1.0.0",
- "serialize-javascript": "^4.0.0",
- "source-map": "^0.6.1",
- "terser": "^4.1.2",
- "webpack-sources": "^1.4.0",
- "worker-farm": "^1.7.0"
- },
- "engines": {
- "node": ">= 6.9.0"
- },
- "peerDependencies": {
- "webpack": "^4.0.0"
- }
- },
- "node_modules/@storybook/manager-webpack4/node_modules/y18n": {
- "version": "4.0.3",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/@storybook/manager-webpack4/node_modules/yallist": {
- "version": "3.1.1",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/@storybook/manager-webpack5": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/core": "^7.12.10",
- "@babel/plugin-transform-template-literals": "^7.12.1",
- "@babel/preset-react": "^7.12.10",
- "@storybook/addons": "6.5.16",
- "@storybook/core-client": "6.5.16",
- "@storybook/core-common": "6.5.16",
- "@storybook/node-logger": "6.5.16",
- "@storybook/theming": "6.5.16",
- "@storybook/ui": "6.5.16",
- "@types/node": "^14.0.10 || ^16.0.0",
- "babel-loader": "^8.0.0",
- "case-sensitive-paths-webpack-plugin": "^2.3.0",
- "chalk": "^4.1.0",
- "core-js": "^3.8.2",
- "css-loader": "^5.0.1",
- "express": "^4.17.1",
- "find-up": "^5.0.0",
- "fs-extra": "^9.0.1",
- "html-webpack-plugin": "^5.0.0",
- "node-fetch": "^2.6.7",
- "process": "^0.11.10",
- "read-pkg-up": "^7.0.1",
- "regenerator-runtime": "^0.13.7",
- "resolve-from": "^5.0.0",
- "style-loader": "^2.0.0",
- "telejson": "^6.0.8",
- "terser-webpack-plugin": "^5.0.3",
- "ts-dedent": "^2.0.0",
- "util-deprecate": "^1.0.2",
- "webpack": "^5.9.0",
- "webpack-dev-middleware": "^4.1.0",
- "webpack-virtual-modules": "^0.4.1"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
- }
- },
- "node_modules/@storybook/manager-webpack5/node_modules/@types/node": {
- "version": "14.18.22",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/manager-webpack5/node_modules/ansi-styles": {
- "version": "4.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/@storybook/manager-webpack5/node_modules/chalk": {
- "version": "4.1.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/@storybook/manager-webpack5/node_modules/css-loader": {
- "version": "5.2.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "icss-utils": "^5.1.0",
- "loader-utils": "^2.0.0",
- "postcss": "^8.2.15",
- "postcss-modules-extract-imports": "^3.0.0",
- "postcss-modules-local-by-default": "^4.0.0",
- "postcss-modules-scope": "^3.0.0",
- "postcss-modules-values": "^4.0.0",
- "postcss-value-parser": "^4.1.0",
- "schema-utils": "^3.0.0",
- "semver": "^7.3.5"
- },
- "engines": {
- "node": ">= 10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^4.27.0 || ^5.0.0"
- }
- },
- "node_modules/@storybook/manager-webpack5/node_modules/has-flag": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/manager-webpack5/node_modules/html-webpack-plugin": {
- "version": "5.5.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/html-minifier-terser": "^6.0.0",
- "html-minifier-terser": "^6.0.2",
- "lodash": "^4.17.21",
- "pretty-error": "^4.0.0",
- "tapable": "^2.0.0"
- },
- "engines": {
- "node": ">=10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/html-webpack-plugin"
- },
- "peerDependencies": {
- "webpack": "^5.20.0"
- }
- },
- "node_modules/@storybook/manager-webpack5/node_modules/icss-utils": {
- "version": "5.1.0",
- "dev": true,
- "license": "ISC",
- "engines": {
- "node": "^10 || ^12 || >= 14"
- },
- "peerDependencies": {
- "postcss": "^8.1.0"
- }
- },
- "node_modules/@storybook/manager-webpack5/node_modules/picocolors": {
- "version": "1.0.0",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/@storybook/manager-webpack5/node_modules/postcss": {
- "version": "8.4.8",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "nanoid": "^3.3.1",
- "picocolors": "^1.0.0",
- "source-map-js": "^1.0.2"
- },
- "engines": {
- "node": "^10 || ^12 || >=14"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
- }
- },
- "node_modules/@storybook/manager-webpack5/node_modules/postcss-modules-extract-imports": {
- "version": "3.0.0",
- "dev": true,
- "license": "ISC",
- "engines": {
- "node": "^10 || ^12 || >= 14"
- },
- "peerDependencies": {
- "postcss": "^8.1.0"
- }
- },
- "node_modules/@storybook/manager-webpack5/node_modules/postcss-modules-local-by-default": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "icss-utils": "^5.0.0",
- "postcss-selector-parser": "^6.0.2",
- "postcss-value-parser": "^4.1.0"
- },
- "engines": {
- "node": "^10 || ^12 || >= 14"
- },
- "peerDependencies": {
- "postcss": "^8.1.0"
- }
- },
- "node_modules/@storybook/manager-webpack5/node_modules/postcss-modules-scope": {
- "version": "3.0.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "postcss-selector-parser": "^6.0.4"
- },
- "engines": {
- "node": "^10 || ^12 || >= 14"
- },
- "peerDependencies": {
- "postcss": "^8.1.0"
- }
- },
- "node_modules/@storybook/manager-webpack5/node_modules/postcss-modules-values": {
- "version": "4.0.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "icss-utils": "^5.0.0"
- },
- "engines": {
- "node": "^10 || ^12 || >= 14"
- },
- "peerDependencies": {
- "postcss": "^8.1.0"
- }
- },
- "node_modules/@storybook/manager-webpack5/node_modules/semver": {
- "version": "7.3.5",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/@storybook/manager-webpack5/node_modules/style-loader": {
- "version": "2.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "loader-utils": "^2.0.0",
- "schema-utils": "^3.0.0"
- },
- "engines": {
- "node": ">= 10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^4.0.0 || ^5.0.0"
- }
- },
- "node_modules/@storybook/manager-webpack5/node_modules/supports-color": {
- "version": "7.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/manager-webpack5/node_modules/tapable": {
- "version": "2.2.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/@storybook/mdx1-csf": {
- "version": "0.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/generator": "^7.12.11",
- "@babel/parser": "^7.12.11",
- "@babel/preset-env": "^7.12.11",
- "@babel/types": "^7.12.11",
- "@mdx-js/mdx": "^1.6.22",
- "@types/lodash": "^4.14.167",
- "js-string-escape": "^1.0.1",
- "loader-utils": "^2.0.0",
- "lodash": "^4.17.21",
- "prettier": ">=2.2.1 <=2.3.0",
- "ts-dedent": "^2.0.0"
- }
- },
- "node_modules/@storybook/mdx1-csf/node_modules/prettier": {
- "version": "2.3.0",
- "dev": true,
- "license": "MIT",
- "bin": {
- "prettier": "bin-prettier.js"
- },
- "engines": {
- "node": ">=10.13.0"
- }
- },
- "node_modules/@storybook/node-logger": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/npmlog": "^4.1.2",
- "chalk": "^4.1.0",
- "core-js": "^3.8.2",
- "npmlog": "^5.0.1",
- "pretty-hrtime": "^1.0.3"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- }
- },
- "node_modules/@storybook/node-logger/node_modules/ansi-styles": {
- "version": "4.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/@storybook/node-logger/node_modules/chalk": {
- "version": "4.1.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/@storybook/node-logger/node_modules/has-flag": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/node-logger/node_modules/supports-color": {
- "version": "7.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/postinstall": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "core-js": "^3.8.2"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- }
- },
- "node_modules/@storybook/preview-web": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@storybook/addons": "6.5.16",
- "@storybook/channel-postmessage": "6.5.16",
- "@storybook/client-logger": "6.5.16",
- "@storybook/core-events": "6.5.16",
- "@storybook/csf": "0.0.2--canary.4566f4d.1",
- "@storybook/store": "6.5.16",
- "ansi-to-html": "^0.6.11",
- "core-js": "^3.8.2",
- "global": "^4.4.0",
- "lodash": "^4.17.21",
- "qs": "^6.10.0",
- "regenerator-runtime": "^0.13.7",
- "synchronous-promise": "^2.0.15",
- "ts-dedent": "^2.0.0",
- "unfetch": "^4.2.0",
- "util-deprecate": "^1.0.2"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
- }
- },
- "node_modules/@storybook/react": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/preset-flow": "^7.12.1",
- "@babel/preset-react": "^7.12.10",
- "@pmmmwh/react-refresh-webpack-plugin": "^0.5.3",
- "@storybook/addons": "6.5.16",
- "@storybook/client-logger": "6.5.16",
- "@storybook/core": "6.5.16",
- "@storybook/core-common": "6.5.16",
- "@storybook/csf": "0.0.2--canary.4566f4d.1",
- "@storybook/docs-tools": "6.5.16",
- "@storybook/node-logger": "6.5.16",
- "@storybook/react-docgen-typescript-plugin": "1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0",
- "@storybook/semver": "^7.3.2",
- "@storybook/store": "6.5.16",
- "@types/estree": "^0.0.51",
- "@types/node": "^14.14.20 || ^16.0.0",
- "@types/webpack-env": "^1.16.0",
- "acorn": "^7.4.1",
- "acorn-jsx": "^5.3.1",
- "acorn-walk": "^7.2.0",
- "babel-plugin-add-react-displayname": "^0.0.5",
- "babel-plugin-react-docgen": "^4.2.1",
- "core-js": "^3.8.2",
- "escodegen": "^2.0.0",
- "fs-extra": "^9.0.1",
- "global": "^4.4.0",
- "html-tags": "^3.1.0",
- "lodash": "^4.17.21",
- "prop-types": "^15.7.2",
- "react-element-to-jsx-string": "^14.3.4",
- "react-refresh": "^0.11.0",
- "read-pkg-up": "^7.0.1",
- "regenerator-runtime": "^0.13.7",
- "ts-dedent": "^2.0.0",
- "util-deprecate": "^1.0.2",
- "webpack": ">=4.43.0 <6.0.0"
- },
- "bin": {
- "build-storybook": "bin/build.js",
- "start-storybook": "bin/index.js",
- "storybook-server": "bin/index.js"
- },
- "engines": {
- "node": ">=10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "peerDependencies": {
- "@babel/core": "^7.11.5",
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "require-from-string": "^2.0.2"
- },
- "peerDependenciesMeta": {
- "@babel/core": {
- "optional": true
- },
- "@storybook/builder-webpack4": {
- "optional": true
- },
- "@storybook/builder-webpack5": {
- "optional": true
- },
- "@storybook/manager-webpack4": {
- "optional": true
- },
- "@storybook/manager-webpack5": {
- "optional": true
- },
- "typescript": {
- "optional": true
- }
- }
- },
- "node_modules/@storybook/react-docgen-typescript-plugin": {
- "version": "1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "debug": "^4.1.1",
- "endent": "^2.0.1",
- "find-cache-dir": "^3.3.1",
- "flat-cache": "^3.0.4",
- "micromatch": "^4.0.2",
- "react-docgen-typescript": "^2.1.1",
- "tslib": "^2.0.0"
- },
- "peerDependencies": {
- "typescript": ">= 3.x",
- "webpack": ">= 4"
- }
- },
- "node_modules/@storybook/react-docgen-typescript-plugin/node_modules/find-cache-dir": {
- "version": "3.3.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "commondir": "^1.0.1",
- "make-dir": "^3.0.2",
- "pkg-dir": "^4.1.0"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/avajs/find-cache-dir?sponsor=1"
- }
- },
- "node_modules/@storybook/react-docgen-typescript-plugin/node_modules/find-up": {
- "version": "4.1.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "locate-path": "^5.0.0",
- "path-exists": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/react-docgen-typescript-plugin/node_modules/locate-path": {
- "version": "5.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "p-locate": "^4.1.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/react-docgen-typescript-plugin/node_modules/make-dir": {
- "version": "3.1.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "semver": "^6.0.0"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@storybook/react-docgen-typescript-plugin/node_modules/p-limit": {
- "version": "2.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "p-try": "^2.0.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@storybook/react-docgen-typescript-plugin/node_modules/p-locate": {
- "version": "4.1.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "p-limit": "^2.2.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/react-docgen-typescript-plugin/node_modules/path-exists": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/react-docgen-typescript-plugin/node_modules/pkg-dir": {
- "version": "4.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "find-up": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/react/node_modules/@types/node": {
- "version": "16.11.47",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@storybook/react/node_modules/acorn": {
- "version": "7.4.1",
- "dev": true,
- "license": "MIT",
- "bin": {
- "acorn": "bin/acorn"
- },
- "engines": {
- "node": ">=0.4.0"
- }
- },
- "node_modules/@storybook/router": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@storybook/client-logger": "6.5.16",
- "core-js": "^3.8.2",
- "memoizerific": "^1.11.3",
- "qs": "^6.10.0",
- "regenerator-runtime": "^0.13.7"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
- }
- },
- "node_modules/@storybook/semver": {
- "version": "7.3.2",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "core-js": "^3.6.5",
- "find-up": "^4.1.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/@storybook/semver/node_modules/find-up": {
- "version": "4.1.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "locate-path": "^5.0.0",
- "path-exists": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/semver/node_modules/locate-path": {
- "version": "5.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "p-locate": "^4.1.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/semver/node_modules/p-limit": {
- "version": "2.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "p-try": "^2.0.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@storybook/semver/node_modules/p-locate": {
- "version": "4.1.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "p-limit": "^2.2.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/semver/node_modules/path-exists": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/source-loader": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@storybook/addons": "6.5.16",
- "@storybook/client-logger": "6.5.16",
- "@storybook/csf": "0.0.2--canary.4566f4d.1",
- "core-js": "^3.8.2",
- "estraverse": "^5.2.0",
- "global": "^4.4.0",
- "loader-utils": "^2.0.4",
- "lodash": "^4.17.21",
- "prettier": ">=2.2.1 <=2.3.0",
- "regenerator-runtime": "^0.13.7"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
- }
- },
- "node_modules/@storybook/source-loader/node_modules/loader-utils": {
- "version": "2.0.4",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "big.js": "^5.2.2",
- "emojis-list": "^3.0.0",
- "json5": "^2.1.2"
- },
- "engines": {
- "node": ">=8.9.0"
- }
- },
- "node_modules/@storybook/source-loader/node_modules/prettier": {
- "version": "2.3.0",
- "dev": true,
- "license": "MIT",
- "bin": {
- "prettier": "bin-prettier.js"
- },
- "engines": {
- "node": ">=10.13.0"
- }
- },
- "node_modules/@storybook/store": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@storybook/addons": "6.5.16",
- "@storybook/client-logger": "6.5.16",
- "@storybook/core-events": "6.5.16",
- "@storybook/csf": "0.0.2--canary.4566f4d.1",
- "core-js": "^3.8.2",
- "fast-deep-equal": "^3.1.3",
- "global": "^4.4.0",
- "lodash": "^4.17.21",
- "memoizerific": "^1.11.3",
- "regenerator-runtime": "^0.13.7",
- "slash": "^3.0.0",
- "stable": "^0.1.8",
- "synchronous-promise": "^2.0.15",
- "ts-dedent": "^2.0.0",
- "util-deprecate": "^1.0.2"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
- }
- },
- "node_modules/@storybook/telemetry": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@storybook/client-logger": "6.5.16",
- "@storybook/core-common": "6.5.16",
- "chalk": "^4.1.0",
- "core-js": "^3.8.2",
- "detect-package-manager": "^2.0.1",
- "fetch-retry": "^5.0.2",
- "fs-extra": "^9.0.1",
- "global": "^4.4.0",
- "isomorphic-unfetch": "^3.1.0",
- "nanoid": "^3.3.1",
- "read-pkg-up": "^7.0.1",
- "regenerator-runtime": "^0.13.7"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- }
- },
- "node_modules/@storybook/telemetry/node_modules/ansi-styles": {
- "version": "4.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/@storybook/telemetry/node_modules/chalk": {
- "version": "4.1.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/@storybook/telemetry/node_modules/has-flag": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/telemetry/node_modules/supports-color": {
- "version": "7.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/test-runner": {
- "version": "0.9.4",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/core": "^7.18.13",
- "@babel/generator": "^7.18.13",
- "@babel/preset-env": "^7.19.4",
- "@babel/preset-react": "^7.18.6",
- "@babel/preset-typescript": "^7.18.6",
- "@babel/template": "^7.14.5",
- "@babel/types": "^7.14.8",
- "@storybook/core-common": "^6.5.0",
- "@storybook/csf": "0.0.2--canary.4566f4d.1",
- "@storybook/csf-tools": "^6.5.0",
- "@storybook/store": "^6.5.0",
- "can-bind-to-host": "^1.1.1",
- "commander": "^9.0.0",
- "expect-playwright": "^0.8.0",
- "glob": "^8.1.0",
- "jest": "^28.0.0",
- "jest-circus": "^28.0.0",
- "jest-environment-node": "^28.0.0",
- "jest-junit": "^14.0.0",
- "jest-playwright-preset": "^2.0.0",
- "jest-runner": "^28.0.0",
- "jest-serializer-html": "^7.1.0",
- "jest-watch-typeahead": "^2.0.0",
- "node-fetch": "^2",
- "playwright": "^1.14.0",
- "read-pkg-up": "^7.0.1",
- "regenerator-runtime": "^0.13.9",
- "semver": "^7.3.7",
- "tempy": "^1.0.1",
- "ts-dedent": "^2.0.0"
- },
- "bin": {
- "test-storybook": "bin/test-storybook.js"
- }
- },
- "node_modules/@storybook/test-runner/node_modules/brace-expansion": {
- "version": "2.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "balanced-match": "^1.0.0"
- }
- },
- "node_modules/@storybook/test-runner/node_modules/commander": {
- "version": "9.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": "^12.20.0 || >=14"
- }
- },
- "node_modules/@storybook/test-runner/node_modules/glob": {
- "version": "8.1.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^5.0.1",
- "once": "^1.3.0"
- },
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/@storybook/test-runner/node_modules/minimatch": {
- "version": "5.1.6",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "brace-expansion": "^2.0.1"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/@storybook/test-runner/node_modules/semver": {
- "version": "7.5.4",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/@storybook/testing-library": {
- "version": "0.0.13",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@storybook/client-logger": "^6.4.0",
- "@storybook/instrumenter": "^6.4.0",
- "@testing-library/dom": "^8.3.0",
- "@testing-library/user-event": "^13.2.1",
- "ts-dedent": "^2.2.0"
- }
- },
- "node_modules/@storybook/theming": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@storybook/client-logger": "6.5.16",
- "core-js": "^3.8.2",
- "memoizerific": "^1.11.3",
- "regenerator-runtime": "^0.13.7"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
- }
- },
- "node_modules/@storybook/ui": {
- "version": "6.5.16",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@storybook/addons": "6.5.16",
- "@storybook/api": "6.5.16",
- "@storybook/channels": "6.5.16",
- "@storybook/client-logger": "6.5.16",
- "@storybook/components": "6.5.16",
- "@storybook/core-events": "6.5.16",
- "@storybook/router": "6.5.16",
- "@storybook/semver": "^7.3.2",
- "@storybook/theming": "6.5.16",
- "core-js": "^3.8.2",
- "memoizerific": "^1.11.3",
- "qs": "^6.10.0",
- "regenerator-runtime": "^0.13.7",
- "resolve-from": "^5.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
- }
- },
- "node_modules/@swc/helpers": {
- "version": "0.4.11",
- "license": "MIT",
- "dependencies": {
- "tslib": "^2.4.0"
- }
- },
- "node_modules/@szmarczak/http-timer": {
- "version": "1.1.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "defer-to-connect": "^1.0.1"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/@tanem/svg-injector": {
- "version": "10.1.28",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.18.6",
- "content-type": "^1.0.4",
- "tslib": "^2.4.0"
- }
- },
- "node_modules/@testing-library/dom": {
- "version": "8.11.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/code-frame": "^7.10.4",
- "@babel/runtime": "^7.12.5",
- "@types/aria-query": "^4.2.0",
- "aria-query": "^5.0.0",
- "chalk": "^4.1.0",
- "dom-accessibility-api": "^0.5.9",
- "lz-string": "^1.4.4",
- "pretty-format": "^27.0.2"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/@testing-library/dom/node_modules/ansi-styles": {
- "version": "4.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/@testing-library/dom/node_modules/chalk": {
- "version": "4.1.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/@testing-library/dom/node_modules/has-flag": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@testing-library/dom/node_modules/supports-color": {
- "version": "7.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@testing-library/jest-dom": {
- "version": "5.17.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@adobe/css-tools": "^4.0.1",
- "@babel/runtime": "^7.9.2",
- "@types/testing-library__jest-dom": "^5.9.1",
- "aria-query": "^5.0.0",
- "chalk": "^3.0.0",
- "css.escape": "^1.5.1",
- "dom-accessibility-api": "^0.5.6",
- "lodash": "^4.17.15",
- "redent": "^3.0.0"
- },
- "engines": {
- "node": ">=8",
- "npm": ">=6",
- "yarn": ">=1"
- }
- },
- "node_modules/@testing-library/jest-dom/node_modules/ansi-styles": {
- "version": "4.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/@testing-library/jest-dom/node_modules/chalk": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@testing-library/jest-dom/node_modules/has-flag": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@testing-library/jest-dom/node_modules/supports-color": {
- "version": "7.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@testing-library/react": {
- "version": "12.1.5",
- "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-12.1.5.tgz",
- "integrity": "sha512-OfTXCJUFgjd/digLUuPxa0+/3ZxsQmE7ub9kcbW/wi96Bh3o/p5vrETcBGfP17NWPGqeYYl5LTRpwyGoMC4ysg==",
- "dev": true,
- "dependencies": {
- "@babel/runtime": "^7.12.5",
- "@testing-library/dom": "^8.0.0",
- "@types/react-dom": "<18.0.0"
- },
- "engines": {
- "node": ">=12"
- },
- "peerDependencies": {
- "react": "<18.0.0",
- "react-dom": "<18.0.0"
- }
- },
- "node_modules/@testing-library/react-hooks": {
- "version": "8.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.12.5",
- "react-error-boundary": "^3.1.0"
- },
- "engines": {
- "node": ">=12"
- },
- "peerDependencies": {
- "@types/react": "^16.9.0 || ^17.0.0",
- "react": "^16.9.0 || ^17.0.0",
- "react-dom": "^16.9.0 || ^17.0.0",
- "react-test-renderer": "^16.9.0 || ^17.0.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "react-dom": {
- "optional": true
- },
- "react-test-renderer": {
- "optional": true
- }
- }
- },
- "node_modules/@testing-library/user-event": {
- "version": "13.5.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.12.5"
- },
- "engines": {
- "node": ">=10",
- "npm": ">=6"
- },
- "peerDependencies": {
- "@testing-library/dom": ">=7.21.4"
- }
- },
- "node_modules/@tootallnate/once": {
- "version": "1.1.2",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/@types/acorn": {
- "version": "4.0.6",
- "license": "MIT",
- "dependencies": {
- "@types/estree": "*"
- }
- },
- "node_modules/@types/aria-query": {
- "version": "4.2.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/babel__core": {
- "version": "7.20.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/parser": "^7.20.7",
- "@babel/types": "^7.20.7",
- "@types/babel__generator": "*",
- "@types/babel__template": "*",
- "@types/babel__traverse": "*"
- }
- },
- "node_modules/@types/babel__generator": {
- "version": "7.6.4",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.0.0"
- }
- },
- "node_modules/@types/babel__template": {
- "version": "7.4.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/parser": "^7.1.0",
- "@babel/types": "^7.0.0"
- }
- },
- "node_modules/@types/babel__traverse": {
- "version": "7.20.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.20.7"
- }
- },
- "node_modules/@types/babel-types": {
- "version": "7.0.11",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/babylon": {
- "version": "6.16.6",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/babel-types": "*"
- }
- },
- "node_modules/@types/debug": {
- "version": "4.1.7",
- "license": "MIT",
- "dependencies": {
- "@types/ms": "*"
- }
- },
- "node_modules/@types/eslint": {
- "version": "8.44.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/estree": "*",
- "@types/json-schema": "*"
- }
- },
- "node_modules/@types/eslint-scope": {
- "version": "3.7.4",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/eslint": "*",
- "@types/estree": "*"
- }
- },
- "node_modules/@types/estree": {
- "version": "0.0.51",
- "license": "MIT"
- },
- "node_modules/@types/estree-jsx": {
- "version": "0.0.1",
- "license": "MIT",
- "dependencies": {
- "@types/estree": "*"
- }
- },
- "node_modules/@types/fined": {
- "version": "1.1.3",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/glob": {
- "version": "7.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/minimatch": "*",
- "@types/node": "*"
- }
- },
- "node_modules/@types/graceful-fs": {
- "version": "4.1.5",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/node": "*"
- }
- },
- "node_modules/@types/hast": {
- "version": "2.3.4",
- "license": "MIT",
- "dependencies": {
- "@types/unist": "*"
- }
- },
- "node_modules/@types/html-minifier-terser": {
- "version": "6.1.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/inquirer": {
- "version": "8.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/through": "*",
- "rxjs": "^7.2.0"
- }
- },
- "node_modules/@types/inquirer/node_modules/rxjs": {
- "version": "7.5.5",
- "dev": true,
- "license": "Apache-2.0",
- "dependencies": {
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@types/is-function": {
- "version": "1.0.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/istanbul-lib-coverage": {
- "version": "2.0.4",
- "license": "MIT"
- },
- "node_modules/@types/istanbul-lib-report": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/istanbul-lib-coverage": "*"
- }
- },
- "node_modules/@types/istanbul-reports": {
- "version": "3.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/istanbul-lib-report": "*"
- }
- },
- "node_modules/@types/jest": {
- "version": "28.1.8",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "expect": "^28.0.0",
- "pretty-format": "^28.0.0"
- }
- },
- "node_modules/@types/jest/node_modules/ansi-styles": {
- "version": "5.2.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/@types/jest/node_modules/pretty-format": {
- "version": "28.1.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@jest/schemas": "^28.1.3",
- "ansi-regex": "^5.0.1",
- "ansi-styles": "^5.0.0",
- "react-is": "^18.0.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
- }
- },
- "node_modules/@types/jest/node_modules/react-is": {
- "version": "18.2.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/js-yaml": {
- "version": "4.0.5",
- "license": "MIT"
- },
- "node_modules/@types/jsdom": {
- "version": "16.2.15",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/node": "*",
- "@types/parse5": "^6.0.3",
- "@types/tough-cookie": "*"
- }
- },
- "node_modules/@types/jsdom/node_modules/@types/parse5": {
- "version": "6.0.3",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/json-schema": {
- "version": "7.0.9",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/json5": {
- "version": "0.0.29",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/liftoff": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/fined": "*",
- "@types/node": "*"
- }
- },
- "node_modules/@types/lodash": {
- "version": "4.14.191",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/lz-string": {
- "version": "1.3.34",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/mdast": {
- "version": "3.0.10",
- "license": "MIT",
- "dependencies": {
- "@types/unist": "*"
- }
- },
- "node_modules/@types/mdurl": {
- "version": "1.0.2",
- "license": "MIT"
- },
- "node_modules/@types/mdx": {
- "version": "2.0.2",
- "license": "MIT"
- },
- "node_modules/@types/minimatch": {
- "version": "3.0.5",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/minimist": {
- "version": "1.2.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/ms": {
- "version": "0.7.31",
- "license": "MIT"
- },
- "node_modules/@types/node": {
- "version": "17.0.45",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/node-fetch": {
- "version": "2.6.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/node": "*",
- "form-data": "^3.0.0"
- }
- },
- "node_modules/@types/normalize-package-data": {
- "version": "2.4.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/npmlog": {
- "version": "4.1.4",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/parse-json": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/parse5": {
- "version": "5.0.3",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/prettier": {
- "version": "2.7.3",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/pretty-hrtime": {
- "version": "1.0.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/prop-types": {
- "version": "15.7.5",
- "license": "MIT"
- },
- "node_modules/@types/qs": {
- "version": "6.9.7",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/react": {
- "version": "17.0.39",
- "license": "MIT",
- "dependencies": {
- "@types/prop-types": "*",
- "@types/scheduler": "*",
- "csstype": "^3.0.2"
- }
- },
- "node_modules/@types/react-dom": {
- "version": "17.0.13",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/react": "*"
- }
- },
- "node_modules/@types/scheduler": {
- "version": "0.16.2",
- "license": "MIT"
- },
- "node_modules/@types/semver": {
- "version": "7.3.13",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/source-list-map": {
- "version": "0.1.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/stack-utils": {
- "version": "2.0.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/tapable": {
- "version": "1.0.8",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/testing-library__jest-dom": {
- "version": "5.14.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/jest": "*"
- }
- },
- "node_modules/@types/through": {
- "version": "0.0.30",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/node": "*"
- }
- },
- "node_modules/@types/tough-cookie": {
- "version": "4.0.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/triple-beam": {
- "version": "1.3.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/uglify-js": {
- "version": "3.17.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "source-map": "^0.6.1"
- }
- },
- "node_modules/@types/uglify-js/node_modules/source-map": {
- "version": "0.6.1",
- "dev": true,
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@types/unist": {
- "version": "2.0.6",
- "license": "MIT"
- },
- "node_modules/@types/wait-on": {
- "version": "5.3.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/node": "*"
- }
- },
- "node_modules/@types/webpack": {
- "version": "4.41.33",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/node": "*",
- "@types/tapable": "^1",
- "@types/uglify-js": "*",
- "@types/webpack-sources": "*",
- "anymatch": "^3.0.0",
- "source-map": "^0.6.0"
- }
- },
- "node_modules/@types/webpack-env": {
- "version": "1.16.3",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/webpack-sources": {
- "version": "3.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/node": "*",
- "@types/source-list-map": "*",
- "source-map": "^0.7.3"
- }
- },
- "node_modules/@types/webpack-sources/node_modules/source-map": {
- "version": "0.7.4",
- "dev": true,
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/@types/webpack/node_modules/source-map": {
- "version": "0.6.1",
- "dev": true,
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@types/yargs": {
- "version": "17.0.24",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/yargs-parser": "*"
- }
- },
- "node_modules/@types/yargs-parser": {
- "version": "21.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/yauzl": {
- "version": "2.9.2",
- "dev": true,
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@types/node": "*"
- }
- },
- "node_modules/@typescript-eslint/eslint-plugin": {
- "version": "5.14.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@typescript-eslint/scope-manager": "5.14.0",
- "@typescript-eslint/type-utils": "5.14.0",
- "@typescript-eslint/utils": "5.14.0",
- "debug": "^4.3.2",
- "functional-red-black-tree": "^1.0.1",
- "ignore": "^5.1.8",
- "regexpp": "^3.2.0",
- "semver": "^7.3.5",
- "tsutils": "^3.21.0"
- },
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "@typescript-eslint/parser": "^5.0.0",
- "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
- }
- },
- "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": {
- "version": "7.3.5",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/@typescript-eslint/experimental-utils": {
- "version": "5.14.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@typescript-eslint/utils": "5.14.0"
- },
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
- }
- },
- "node_modules/@typescript-eslint/parser": {
- "version": "5.33.1",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "@typescript-eslint/scope-manager": "5.33.1",
- "@typescript-eslint/types": "5.33.1",
- "@typescript-eslint/typescript-estree": "5.33.1",
- "debug": "^4.3.4"
- },
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
- }
- },
- "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/scope-manager": {
- "version": "5.33.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@typescript-eslint/types": "5.33.1",
- "@typescript-eslint/visitor-keys": "5.33.1"
- },
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- }
- },
- "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/types": {
- "version": "5.33.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- }
- },
- "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/typescript-estree": {
- "version": "5.33.1",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "@typescript-eslint/types": "5.33.1",
- "@typescript-eslint/visitor-keys": "5.33.1",
- "debug": "^4.3.4",
- "globby": "^11.1.0",
- "is-glob": "^4.0.3",
- "semver": "^7.3.7",
- "tsutils": "^3.21.0"
- },
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
- }
- },
- "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/visitor-keys": {
- "version": "5.33.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@typescript-eslint/types": "5.33.1",
- "eslint-visitor-keys": "^3.3.0"
- },
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- }
- },
- "node_modules/@typescript-eslint/parser/node_modules/debug": {
- "version": "4.3.4",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ms": "2.1.2"
- },
- "engines": {
- "node": ">=6.0"
- },
- "peerDependenciesMeta": {
- "supports-color": {
- "optional": true
- }
- }
- },
- "node_modules/@typescript-eslint/parser/node_modules/eslint-visitor-keys": {
- "version": "3.3.0",
- "dev": true,
- "license": "Apache-2.0",
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- }
- },
- "node_modules/@typescript-eslint/parser/node_modules/ms": {
- "version": "2.1.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@typescript-eslint/parser/node_modules/semver": {
- "version": "7.3.7",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/@typescript-eslint/scope-manager": {
- "version": "5.14.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@typescript-eslint/types": "5.14.0",
- "@typescript-eslint/visitor-keys": "5.14.0"
- },
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- }
- },
- "node_modules/@typescript-eslint/type-utils": {
- "version": "5.14.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@typescript-eslint/utils": "5.14.0",
- "debug": "^4.3.2",
- "tsutils": "^3.21.0"
- },
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "eslint": "*"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
- }
- },
- "node_modules/@typescript-eslint/types": {
- "version": "5.14.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- }
- },
- "node_modules/@typescript-eslint/typescript-estree": {
- "version": "5.14.0",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "@typescript-eslint/types": "5.14.0",
- "@typescript-eslint/visitor-keys": "5.14.0",
- "debug": "^4.3.2",
- "globby": "^11.0.4",
- "is-glob": "^4.0.3",
- "semver": "^7.3.5",
- "tsutils": "^3.21.0"
- },
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
- }
- },
- "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": {
- "version": "7.3.5",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/@typescript-eslint/utils": {
- "version": "5.14.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/json-schema": "^7.0.9",
- "@typescript-eslint/scope-manager": "5.14.0",
- "@typescript-eslint/types": "5.14.0",
- "@typescript-eslint/typescript-estree": "5.14.0",
- "eslint-scope": "^5.1.1",
- "eslint-utils": "^3.0.0"
- },
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
- }
- },
- "node_modules/@typescript-eslint/visitor-keys": {
- "version": "5.14.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@typescript-eslint/types": "5.14.0",
- "eslint-visitor-keys": "^3.0.0"
- },
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- }
- },
- "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": {
- "version": "3.3.0",
- "dev": true,
- "license": "Apache-2.0",
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- }
- },
- "node_modules/@vitejs/plugin-react": {
- "version": "3.1.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/core": "^7.20.12",
- "@babel/plugin-transform-react-jsx-self": "^7.18.6",
- "@babel/plugin-transform-react-jsx-source": "^7.19.6",
- "magic-string": "^0.27.0",
- "react-refresh": "^0.14.0"
- },
- "engines": {
- "node": "^14.18.0 || >=16.0.0"
- },
- "peerDependencies": {
- "vite": "^4.1.0-beta.0"
- }
- },
- "node_modules/@vitejs/plugin-react/node_modules/react-refresh": {
- "version": "0.14.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@washingtonpost/color-tokens": {
- "version": "1.9.1",
- "license": "ISC"
- },
- "node_modules/@washingtonpost/eslint-plugin-wpds": {
- "resolved": "ui/eslint-plugin",
- "link": true
- },
- "node_modules/@washingtonpost/icon-tokens": {
- "version": "1.9.1",
- "resolved": "https://registry.npmjs.org/@washingtonpost/icon-tokens/-/icon-tokens-1.9.1.tgz",
- "integrity": "sha512-S9rF8EaWGBONuukT0Q16+CN17zVO7ovVH/o3bcWzNjkN/0oAXEuH6rPbeI4tqqE84tuCzaM85+g7bHLAHZpjFw=="
- },
- "node_modules/@washingtonpost/logo-tokens": {
- "version": "1.9.1",
- "resolved": "https://registry.npmjs.org/@washingtonpost/logo-tokens/-/logo-tokens-1.9.1.tgz",
- "integrity": "sha512-cUoVvJSy9CGXlnQpUhHQxejezk4g0t5/9VhWUourzh3biRP/JQ5I3vxu0UmzVSsxTQ58JUcn0+d78ZM4Ixly8g=="
- },
- "node_modules/@washingtonpost/motion-tokens": {
- "version": "1.9.1",
- "resolved": "https://registry.npmjs.org/@washingtonpost/motion-tokens/-/motion-tokens-1.9.1.tgz",
- "integrity": "sha512-gAnK5LjXTESAYvE4JcANkMsJfLqwQcxc8BBvgNpxu4iqKQ/PK4XhLeGqluMXaxoHZqqkdP9FvOT0gkWYRuIMmw=="
- },
- "node_modules/@washingtonpost/shadow-tokens": {
- "version": "1.9.1",
- "resolved": "https://registry.npmjs.org/@washingtonpost/shadow-tokens/-/shadow-tokens-1.9.1.tgz",
- "integrity": "sha512-V6LEzXzFVcfWZLd7v3VU2wzymcBjX5nw6nLdJn0rN8Qn465wHqsTPitrKlcgp+Hq0JMtlPvBgXDOIZc+UIeR0w=="
- },
- "node_modules/@washingtonpost/site-favicons": {
- "version": "0.1.3",
- "engines": {
- "node": ">= 14 || >= 16"
- },
- "peerDependencies": {
- "prop-types": "^15.7.2",
- "react": "^16.0.1 || ^17.0.2",
- "react-dom": "^16.0.1 || ^17.0.2"
- }
- },
- "node_modules/@washingtonpost/spacing-tokens": {
- "version": "1.9.1",
- "resolved": "https://registry.npmjs.org/@washingtonpost/spacing-tokens/-/spacing-tokens-1.9.1.tgz",
- "integrity": "sha512-erhg0ofHhfQnbPcSr9R/eHDmdz3XhWzhoOpjFYGn/B2XIngg4N2Bd5WE/+2ZAMGScm+C2r87roYQRsJKb6a60A=="
- },
- "node_modules/@washingtonpost/typography-tokens": {
- "version": "1.9.1",
- "resolved": "https://registry.npmjs.org/@washingtonpost/typography-tokens/-/typography-tokens-1.9.1.tgz",
- "integrity": "sha512-Nq/KTKohoO35MEHe3HuQRpFR3KpC6qP7XyDw7HT4mV3AhkD3p99Zz/XjALXEk0/Cb/9WWpaZgeR7naWbsLOyEQ=="
- },
- "node_modules/@washingtonpost/wpds-accordion": {
- "resolved": "ui/accordion",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-action-menu": {
- "resolved": "ui/action-menu",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-alert-banner": {
- "resolved": "ui/alert-banner",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-app-bar": {
- "resolved": "ui/app-bar",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-assets": {
- "version": "1.22.0",
- "resolved": "https://registry.npmjs.org/@washingtonpost/wpds-assets/-/wpds-assets-1.22.0.tgz",
- "integrity": "sha512-HS6+I3SZH/CfG6hFd0G1JWKbarce09NsyHWKPTiGZXeqoIt9i0d+Z+d0gSO+lKLVS+wZpgu2XCgJWorL1vmFlg==",
- "dependencies": {
- "react": "^16.0.1 || ^17.0.2",
- "react-dom": "^16.0.1 || ^17.0.2"
- },
- "peerDependencies": {
- "react": "^16.0.1 || ^17.0.2",
- "react-dom": "^16.0.1 || ^17.0.2"
- }
- },
- "node_modules/@washingtonpost/wpds-avatar": {
- "resolved": "ui/avatar",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-box": {
- "resolved": "ui/box",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-button": {
- "resolved": "ui/button",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-card": {
- "resolved": "ui/card",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-carousel": {
- "resolved": "ui/carousel",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-checkbox": {
- "resolved": "ui/checkbox",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-container": {
- "resolved": "ui/container",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-divider": {
- "resolved": "ui/divider",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-docs": {
- "resolved": "build.washingtonpost.com",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-drawer": {
- "resolved": "ui/drawer",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-error-message": {
- "resolved": "ui/error-message",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-fieldset": {
- "resolved": "ui/fieldset",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-helper-text": {
- "resolved": "ui/helper-text",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-icon": {
- "resolved": "ui/icon",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-input-label": {
- "resolved": "ui/input-label",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-input-password": {
- "resolved": "ui/input-password",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-input-search": {
- "resolved": "ui/input-search",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-input-shared": {
- "resolved": "ui/input-shared",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-input-text": {
- "resolved": "ui/input-text",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-input-textarea": {
- "resolved": "ui/input-textarea",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-kitchen-sink": {
- "resolved": "ui/kitchen-sink",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-navigation-menu": {
- "resolved": "ui/navigation-menu",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-pagination-dots": {
- "resolved": "ui/pagination-dots",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-popover": {
- "resolved": "ui/popover",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-radio-group": {
- "resolved": "ui/radio-group",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-scrim": {
- "resolved": "ui/scrim",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-select": {
- "resolved": "ui/select",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-switch": {
- "resolved": "ui/switch",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-tabs": {
- "resolved": "ui/tabs",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-tailwind-theme": {
- "resolved": "ui/tailwind-theme",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-theme": {
- "resolved": "ui/theme",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-tokens": {
- "resolved": "ui/tokens",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-tooltip": {
- "resolved": "ui/tooltip",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-ui-kit": {
- "resolved": "ui/kit",
- "link": true
- },
- "node_modules/@washingtonpost/wpds-visually-hidden": {
- "resolved": "ui/visually-hidden",
- "link": true
- },
- "node_modules/@webassemblyjs/ast": {
- "version": "1.11.6",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/helper-numbers": "1.11.6",
- "@webassemblyjs/helper-wasm-bytecode": "1.11.6"
- }
- },
- "node_modules/@webassemblyjs/floating-point-hex-parser": {
- "version": "1.11.6",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@webassemblyjs/helper-api-error": {
- "version": "1.11.6",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@webassemblyjs/helper-buffer": {
- "version": "1.11.6",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@webassemblyjs/helper-code-frame": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/wast-printer": "1.9.0"
- }
- },
- "node_modules/@webassemblyjs/helper-code-frame/node_modules/@webassemblyjs/ast": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/helper-module-context": "1.9.0",
- "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
- "@webassemblyjs/wast-parser": "1.9.0"
- }
- },
- "node_modules/@webassemblyjs/helper-code-frame/node_modules/@webassemblyjs/helper-wasm-bytecode": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@webassemblyjs/helper-code-frame/node_modules/@webassemblyjs/wast-printer": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/wast-parser": "1.9.0",
- "@xtuc/long": "4.2.2"
- }
- },
- "node_modules/@webassemblyjs/helper-fsm": {
- "version": "1.9.0",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/@webassemblyjs/helper-module-context": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0"
- }
- },
- "node_modules/@webassemblyjs/helper-module-context/node_modules/@webassemblyjs/ast": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/helper-module-context": "1.9.0",
- "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
- "@webassemblyjs/wast-parser": "1.9.0"
- }
- },
- "node_modules/@webassemblyjs/helper-module-context/node_modules/@webassemblyjs/helper-wasm-bytecode": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@webassemblyjs/helper-numbers": {
- "version": "1.11.6",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/floating-point-hex-parser": "1.11.6",
- "@webassemblyjs/helper-api-error": "1.11.6",
- "@xtuc/long": "4.2.2"
- }
- },
- "node_modules/@webassemblyjs/helper-wasm-bytecode": {
- "version": "1.11.6",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@webassemblyjs/helper-wasm-section": {
- "version": "1.11.6",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.11.6",
- "@webassemblyjs/helper-buffer": "1.11.6",
- "@webassemblyjs/helper-wasm-bytecode": "1.11.6",
- "@webassemblyjs/wasm-gen": "1.11.6"
- }
- },
- "node_modules/@webassemblyjs/ieee754": {
- "version": "1.11.6",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@xtuc/ieee754": "^1.2.0"
- }
- },
- "node_modules/@webassemblyjs/leb128": {
- "version": "1.11.6",
- "dev": true,
- "license": "Apache-2.0",
- "dependencies": {
- "@xtuc/long": "4.2.2"
- }
- },
- "node_modules/@webassemblyjs/utf8": {
- "version": "1.11.6",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@webassemblyjs/wasm-edit": {
- "version": "1.11.6",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.11.6",
- "@webassemblyjs/helper-buffer": "1.11.6",
- "@webassemblyjs/helper-wasm-bytecode": "1.11.6",
- "@webassemblyjs/helper-wasm-section": "1.11.6",
- "@webassemblyjs/wasm-gen": "1.11.6",
- "@webassemblyjs/wasm-opt": "1.11.6",
- "@webassemblyjs/wasm-parser": "1.11.6",
- "@webassemblyjs/wast-printer": "1.11.6"
- }
- },
- "node_modules/@webassemblyjs/wasm-gen": {
- "version": "1.11.6",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.11.6",
- "@webassemblyjs/helper-wasm-bytecode": "1.11.6",
- "@webassemblyjs/ieee754": "1.11.6",
- "@webassemblyjs/leb128": "1.11.6",
- "@webassemblyjs/utf8": "1.11.6"
- }
- },
- "node_modules/@webassemblyjs/wasm-opt": {
- "version": "1.11.6",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.11.6",
- "@webassemblyjs/helper-buffer": "1.11.6",
- "@webassemblyjs/wasm-gen": "1.11.6",
- "@webassemblyjs/wasm-parser": "1.11.6"
- }
- },
- "node_modules/@webassemblyjs/wasm-parser": {
- "version": "1.11.6",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.11.6",
- "@webassemblyjs/helper-api-error": "1.11.6",
- "@webassemblyjs/helper-wasm-bytecode": "1.11.6",
- "@webassemblyjs/ieee754": "1.11.6",
- "@webassemblyjs/leb128": "1.11.6",
- "@webassemblyjs/utf8": "1.11.6"
- }
- },
- "node_modules/@webassemblyjs/wast-parser": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/floating-point-hex-parser": "1.9.0",
- "@webassemblyjs/helper-api-error": "1.9.0",
- "@webassemblyjs/helper-code-frame": "1.9.0",
- "@webassemblyjs/helper-fsm": "1.9.0",
- "@xtuc/long": "4.2.2"
- }
- },
- "node_modules/@webassemblyjs/wast-parser/node_modules/@webassemblyjs/ast": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/helper-module-context": "1.9.0",
- "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
- "@webassemblyjs/wast-parser": "1.9.0"
- }
- },
- "node_modules/@webassemblyjs/wast-parser/node_modules/@webassemblyjs/floating-point-hex-parser": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@webassemblyjs/wast-parser/node_modules/@webassemblyjs/helper-api-error": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@webassemblyjs/wast-parser/node_modules/@webassemblyjs/helper-wasm-bytecode": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@webassemblyjs/wast-printer": {
- "version": "1.11.6",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.11.6",
- "@xtuc/long": "4.2.2"
- }
- },
- "node_modules/@xtuc/ieee754": {
- "version": "1.2.0",
- "dev": true,
- "license": "BSD-3-Clause"
- },
- "node_modules/@xtuc/long": {
- "version": "4.2.2",
- "dev": true,
- "license": "Apache-2.0"
- },
- "node_modules/@zeplin/cli": {
- "version": "2.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@hapi/joi": "^17.1.1",
- "axios": "^0.21.4",
- "chalk": "^3.0.0",
- "chokidar": "^3.3.1",
- "ci-info": "^2.0.0",
- "commander": "^6.2.0",
- "cosmiconfig": "^7.0.0",
- "execa": "^5.0.0",
- "express": "^4.17.1",
- "fs-extra": "^8.1.0",
- "git-url-parse": "^13.1.0",
- "has-yarn": "^2.1.0",
- "http-status-codes": "^1.4.0",
- "import-from": "^3.0.0",
- "import-local": "^3.0.2",
- "inquirer": "^7.0.0",
- "inquirer-fuzzy-path": "^2.3.0",
- "inquirer-search-checkbox": "^1.0.0",
- "inquirer-search-list": "^1.2.6",
- "is-installed-globally": "^0.3.2",
- "is-yarn-global": "^0.3.0",
- "jsonwebtoken": "^8.5.1",
- "latest-version": "^5.1.0",
- "mask-json": "^1.0.3",
- "open": "^7.3.0",
- "ora": "^5.1.0",
- "parse-git-config": "^3.0.0",
- "semver": "^5.7.1",
- "strip-ansi": "^6.0.0",
- "strip-comments": "^2.0.1",
- "ts-dedent": "^1.1.0",
- "update-notifier": "^5.1.0",
- "url-join": "^4.0.1",
- "winston": "^3.2.1"
- },
- "bin": {
- "zeplin": "bin/cli.js"
- }
- },
- "node_modules/@zeplin/cli-connect-react-plugin": {
- "version": "1.1.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "fs-extra": "^9.0.1",
- "pug": "^2.0.4",
- "react-docgen": "^5.3.1",
- "react-docgen-typescript": "^1.20.5",
- "update-notifier": "^5.0.1"
- },
- "peerDependencies": {
- "typescript": ">= 3.x"
- }
- },
- "node_modules/@zeplin/cli-connect-storybook-plugin": {
- "version": "2.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@storybook/csf": "0.0.1",
- "cross-spawn": "^7.0.3",
- "eventsourcemock": "^2.0.0",
- "https": "^1.0.0",
- "jsdom": "^15.2.1",
- "node-fetch": "^2.6.0",
- "path": "^0.12.7",
- "proper-url-join": "^2.1.1",
- "ts-dedent": "^2.1.0",
- "update-notifier": "^5.1.0"
- }
- },
- "node_modules/@zeplin/cli-connect-storybook-plugin/node_modules/@storybook/csf": {
- "version": "0.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "lodash": "^4.17.15"
- }
- },
- "node_modules/@zeplin/cli-connect-storybook-plugin/node_modules/acorn": {
- "version": "7.4.1",
- "dev": true,
- "license": "MIT",
- "bin": {
- "acorn": "bin/acorn"
- },
- "engines": {
- "node": ">=0.4.0"
- }
- },
- "node_modules/@zeplin/cli-connect-storybook-plugin/node_modules/acorn-globals": {
- "version": "4.3.4",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "acorn": "^6.0.1",
- "acorn-walk": "^6.0.1"
- }
- },
- "node_modules/@zeplin/cli-connect-storybook-plugin/node_modules/acorn-globals/node_modules/acorn": {
- "version": "6.4.2",
- "dev": true,
- "license": "MIT",
- "bin": {
- "acorn": "bin/acorn"
- },
- "engines": {
- "node": ">=0.4.0"
- }
- },
- "node_modules/@zeplin/cli-connect-storybook-plugin/node_modules/acorn-walk": {
- "version": "6.2.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.4.0"
- }
- },
- "node_modules/@zeplin/cli-connect-storybook-plugin/node_modules/data-urls": {
- "version": "1.1.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "abab": "^2.0.0",
- "whatwg-mimetype": "^2.2.0",
- "whatwg-url": "^7.0.0"
- }
- },
- "node_modules/@zeplin/cli-connect-storybook-plugin/node_modules/domexception": {
- "version": "1.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "webidl-conversions": "^4.0.2"
- }
- },
- "node_modules/@zeplin/cli-connect-storybook-plugin/node_modules/escodegen": {
- "version": "1.14.3",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "esprima": "^4.0.1",
- "estraverse": "^4.2.0",
- "esutils": "^2.0.2",
- "optionator": "^0.8.1"
- },
- "bin": {
- "escodegen": "bin/escodegen.js",
- "esgenerate": "bin/esgenerate.js"
- },
- "engines": {
- "node": ">=4.0"
- },
- "optionalDependencies": {
- "source-map": "~0.6.1"
- }
- },
- "node_modules/@zeplin/cli-connect-storybook-plugin/node_modules/estraverse": {
- "version": "4.3.0",
- "dev": true,
- "license": "BSD-2-Clause",
- "engines": {
- "node": ">=4.0"
- }
- },
- "node_modules/@zeplin/cli-connect-storybook-plugin/node_modules/html-encoding-sniffer": {
- "version": "1.0.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "whatwg-encoding": "^1.0.1"
- }
- },
- "node_modules/@zeplin/cli-connect-storybook-plugin/node_modules/jsdom": {
- "version": "15.2.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "abab": "^2.0.0",
- "acorn": "^7.1.0",
- "acorn-globals": "^4.3.2",
- "array-equal": "^1.0.0",
- "cssom": "^0.4.1",
- "cssstyle": "^2.0.0",
- "data-urls": "^1.1.0",
- "domexception": "^1.0.1",
- "escodegen": "^1.11.1",
- "html-encoding-sniffer": "^1.0.2",
- "nwsapi": "^2.2.0",
- "parse5": "5.1.0",
- "pn": "^1.1.0",
- "request": "^2.88.0",
- "request-promise-native": "^1.0.7",
- "saxes": "^3.1.9",
- "symbol-tree": "^3.2.2",
- "tough-cookie": "^3.0.1",
- "w3c-hr-time": "^1.0.1",
- "w3c-xmlserializer": "^1.1.2",
- "webidl-conversions": "^4.0.2",
- "whatwg-encoding": "^1.0.5",
- "whatwg-mimetype": "^2.3.0",
- "whatwg-url": "^7.0.0",
- "ws": "^7.0.0",
- "xml-name-validator": "^3.0.0"
- },
- "engines": {
- "node": ">=8"
- },
- "peerDependencies": {
- "canvas": "^2.5.0"
- },
- "peerDependenciesMeta": {
- "canvas": {
- "optional": true
- }
- }
- },
- "node_modules/@zeplin/cli-connect-storybook-plugin/node_modules/levn": {
- "version": "0.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "prelude-ls": "~1.1.2",
- "type-check": "~0.3.2"
- },
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/@zeplin/cli-connect-storybook-plugin/node_modules/optionator": {
- "version": "0.8.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "deep-is": "~0.1.3",
- "fast-levenshtein": "~2.0.6",
- "levn": "~0.3.0",
- "prelude-ls": "~1.1.2",
- "type-check": "~0.3.2",
- "word-wrap": "~1.2.3"
- },
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/@zeplin/cli-connect-storybook-plugin/node_modules/parse5": {
- "version": "5.1.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@zeplin/cli-connect-storybook-plugin/node_modules/prelude-ls": {
- "version": "1.1.2",
- "dev": true,
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/@zeplin/cli-connect-storybook-plugin/node_modules/saxes": {
- "version": "3.1.11",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "xmlchars": "^2.1.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@zeplin/cli-connect-storybook-plugin/node_modules/source-map": {
- "version": "0.6.1",
- "dev": true,
- "license": "BSD-3-Clause",
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@zeplin/cli-connect-storybook-plugin/node_modules/tough-cookie": {
- "version": "3.0.1",
- "dev": true,
- "license": "BSD-3-Clause",
- "dependencies": {
- "ip-regex": "^2.1.0",
- "psl": "^1.1.28",
- "punycode": "^2.1.1"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/@zeplin/cli-connect-storybook-plugin/node_modules/tr46": {
- "version": "1.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "punycode": "^2.1.0"
- }
- },
- "node_modules/@zeplin/cli-connect-storybook-plugin/node_modules/type-check": {
- "version": "0.3.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "prelude-ls": "~1.1.2"
- },
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/@zeplin/cli-connect-storybook-plugin/node_modules/w3c-xmlserializer": {
- "version": "1.1.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "domexception": "^1.0.1",
- "webidl-conversions": "^4.0.2",
- "xml-name-validator": "^3.0.0"
- }
- },
- "node_modules/@zeplin/cli-connect-storybook-plugin/node_modules/webidl-conversions": {
- "version": "4.0.2",
- "dev": true,
- "license": "BSD-2-Clause"
- },
- "node_modules/@zeplin/cli-connect-storybook-plugin/node_modules/whatwg-url": {
- "version": "7.1.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "lodash.sortby": "^4.7.0",
- "tr46": "^1.0.1",
- "webidl-conversions": "^4.0.2"
- }
- },
- "node_modules/@zeplin/cli-connect-storybook-plugin/node_modules/ws": {
- "version": "7.5.9",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8.3.0"
- },
- "peerDependencies": {
- "bufferutil": "^4.0.1",
- "utf-8-validate": "^5.0.2"
- },
- "peerDependenciesMeta": {
- "bufferutil": {
- "optional": true
- },
- "utf-8-validate": {
- "optional": true
- }
- }
- },
- "node_modules/@zeplin/cli/node_modules/ansi-styles": {
- "version": "4.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/@zeplin/cli/node_modules/bl": {
- "version": "4.1.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "buffer": "^5.5.0",
- "inherits": "^2.0.4",
- "readable-stream": "^3.4.0"
- }
- },
- "node_modules/@zeplin/cli/node_modules/buffer": {
- "version": "5.7.1",
- "dev": true,
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "base64-js": "^1.3.1",
- "ieee754": "^1.1.13"
- }
- },
- "node_modules/@zeplin/cli/node_modules/chalk": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@zeplin/cli/node_modules/ci-info": {
- "version": "2.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@zeplin/cli/node_modules/commander": {
- "version": "6.2.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/@zeplin/cli/node_modules/fs-extra": {
- "version": "8.1.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "graceful-fs": "^4.2.0",
- "jsonfile": "^4.0.0",
- "universalify": "^0.1.0"
- },
- "engines": {
- "node": ">=6 <7 || >=8"
- }
- },
- "node_modules/@zeplin/cli/node_modules/git-up": {
- "version": "7.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-ssh": "^1.4.0",
- "parse-url": "^8.1.0"
- }
- },
- "node_modules/@zeplin/cli/node_modules/git-url-parse": {
- "version": "13.1.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "git-up": "^7.0.0"
- }
- },
- "node_modules/@zeplin/cli/node_modules/global-dirs": {
- "version": "2.1.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ini": "1.3.7"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@zeplin/cli/node_modules/has-flag": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@zeplin/cli/node_modules/ini": {
- "version": "1.3.7",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/@zeplin/cli/node_modules/is-installed-globally": {
- "version": "0.3.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "global-dirs": "^2.0.1",
- "is-path-inside": "^3.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@zeplin/cli/node_modules/is-interactive": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@zeplin/cli/node_modules/is-unicode-supported": {
- "version": "0.1.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@zeplin/cli/node_modules/jsonfile": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "optionalDependencies": {
- "graceful-fs": "^4.1.6"
- }
- },
- "node_modules/@zeplin/cli/node_modules/log-symbols": {
- "version": "4.1.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "chalk": "^4.1.0",
- "is-unicode-supported": "^0.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@zeplin/cli/node_modules/log-symbols/node_modules/chalk": {
- "version": "4.1.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/@zeplin/cli/node_modules/open": {
- "version": "7.4.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-docker": "^2.0.0",
- "is-wsl": "^2.1.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@zeplin/cli/node_modules/ora": {
- "version": "5.4.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "bl": "^4.1.0",
- "chalk": "^4.1.0",
- "cli-cursor": "^3.1.0",
- "cli-spinners": "^2.5.0",
- "is-interactive": "^1.0.0",
- "is-unicode-supported": "^0.1.0",
- "log-symbols": "^4.1.0",
- "strip-ansi": "^6.0.0",
- "wcwidth": "^1.0.1"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@zeplin/cli/node_modules/ora/node_modules/chalk": {
- "version": "4.1.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/@zeplin/cli/node_modules/parse-path": {
- "version": "7.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "protocols": "^2.0.0"
- }
- },
- "node_modules/@zeplin/cli/node_modules/parse-url": {
- "version": "8.1.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "parse-path": "^7.0.0"
- }
- },
- "node_modules/@zeplin/cli/node_modules/protocols": {
- "version": "2.0.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@zeplin/cli/node_modules/semver": {
- "version": "5.7.1",
- "dev": true,
- "license": "ISC",
- "bin": {
- "semver": "bin/semver"
- }
- },
- "node_modules/@zeplin/cli/node_modules/supports-color": {
- "version": "7.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@zeplin/cli/node_modules/ts-dedent": {
- "version": "1.2.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.10"
- }
- },
- "node_modules/@zeplin/cli/node_modules/universalify": {
- "version": "0.1.2",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 4.0.0"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/primitive": "1.0.1",
+ "@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-id": "1.0.1",
+ "@radix-ui/react-presence": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-use-controllable-state": "1.0.1",
+ "@radix-ui/react-use-layout-effect": "1.0.1"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/abab": {
- "version": "2.0.6",
- "dev": true,
- "license": "BSD-3-Clause"
- },
- "node_modules/abbrev": {
- "version": "1.1.1",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/accepts": {
- "version": "1.3.8",
- "dev": true,
+ "node_modules/@radix-ui/react-collection": {
+ "version": "1.0.3",
"license": "MIT",
"dependencies": {
- "mime-types": "~2.1.34",
- "negotiator": "0.6.3"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-slot": "1.0.2"
},
- "engines": {
- "node": ">= 0.6"
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/acorn": {
- "version": "8.10.0",
+ "node_modules/@radix-ui/react-compose-refs": {
+ "version": "1.0.1",
"license": "MIT",
- "bin": {
- "acorn": "bin/acorn"
+ "dependencies": {
+ "@babel/runtime": "^7.13.10"
},
- "engines": {
- "node": ">=0.4.0"
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
}
},
- "node_modules/acorn-globals": {
- "version": "6.0.0",
- "dev": true,
+ "node_modules/@radix-ui/react-context": {
+ "version": "1.0.1",
"license": "MIT",
"dependencies": {
- "acorn": "^7.1.1",
- "acorn-walk": "^7.1.1"
+ "@babel/runtime": "^7.13.10"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
}
},
- "node_modules/acorn-globals/node_modules/acorn": {
- "version": "7.4.1",
- "dev": true,
+ "node_modules/@radix-ui/react-dialog": {
+ "version": "1.0.5",
"license": "MIT",
- "bin": {
- "acorn": "bin/acorn"
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/primitive": "1.0.1",
+ "@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-dismissable-layer": "1.0.5",
+ "@radix-ui/react-focus-guards": "1.0.1",
+ "@radix-ui/react-focus-scope": "1.0.4",
+ "@radix-ui/react-id": "1.0.1",
+ "@radix-ui/react-portal": "1.0.4",
+ "@radix-ui/react-presence": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-slot": "1.0.2",
+ "@radix-ui/react-use-controllable-state": "1.0.1",
+ "aria-hidden": "^1.1.1",
+ "react-remove-scroll": "2.5.5"
},
- "engines": {
- "node": ">=0.4.0"
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/acorn-import-assertions": {
- "version": "1.9.0",
- "dev": true,
+ "node_modules/@radix-ui/react-direction": {
+ "version": "1.0.1",
"license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.13.10"
+ },
"peerDependencies": {
- "acorn": "^8"
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
}
},
- "node_modules/acorn-jsx": {
- "version": "5.3.2",
+ "node_modules/@radix-ui/react-dismissable-layer": {
+ "version": "1.0.5",
"license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/primitive": "1.0.1",
+ "@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-use-callback-ref": "1.0.1",
+ "@radix-ui/react-use-escape-keydown": "1.0.3"
+ },
"peerDependencies": {
- "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/acorn-walk": {
- "version": "7.2.0",
- "dev": true,
+ "node_modules/@radix-ui/react-dropdown-menu": {
+ "version": "2.0.3",
"license": "MIT",
- "engines": {
- "node": ">=0.4.0"
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/primitive": "1.0.0",
+ "@radix-ui/react-compose-refs": "1.0.0",
+ "@radix-ui/react-context": "1.0.0",
+ "@radix-ui/react-id": "1.0.0",
+ "@radix-ui/react-menu": "2.0.3",
+ "@radix-ui/react-primitive": "1.0.1",
+ "@radix-ui/react-use-controllable-state": "1.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/add-stream": {
+ "node_modules/@radix-ui/react-dropdown-menu/node_modules/@radix-ui/primitive": {
"version": "1.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/address": {
- "version": "1.2.2",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 10.0.0"
- }
- },
- "node_modules/agent-base": {
- "version": "6.0.2",
- "dev": true,
"license": "MIT",
"dependencies": {
- "debug": "4"
- },
- "engines": {
- "node": ">= 6.0.0"
+ "@babel/runtime": "^7.13.10"
}
},
- "node_modules/agentkeepalive": {
- "version": "4.2.1",
- "dev": true,
+ "node_modules/@radix-ui/react-dropdown-menu/node_modules/@radix-ui/react-compose-refs": {
+ "version": "1.0.0",
"license": "MIT",
"dependencies": {
- "debug": "^4.1.0",
- "depd": "^1.1.2",
- "humanize-ms": "^1.2.1"
+ "@babel/runtime": "^7.13.10"
},
- "engines": {
- "node": ">= 8.0.0"
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/aggregate-error": {
- "version": "3.1.0",
- "dev": true,
+ "node_modules/@radix-ui/react-dropdown-menu/node_modules/@radix-ui/react-context": {
+ "version": "1.0.0",
"license": "MIT",
"dependencies": {
- "clean-stack": "^2.0.0",
- "indent-string": "^4.0.0"
+ "@babel/runtime": "^7.13.10"
},
- "engines": {
- "node": ">=8"
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/airbnb-js-shims": {
- "version": "2.2.1",
- "dev": true,
+ "node_modules/@radix-ui/react-dropdown-menu/node_modules/@radix-ui/react-id": {
+ "version": "1.0.0",
"license": "MIT",
"dependencies": {
- "array-includes": "^3.0.3",
- "array.prototype.flat": "^1.2.1",
- "array.prototype.flatmap": "^1.2.1",
- "es5-shim": "^4.5.13",
- "es6-shim": "^0.35.5",
- "function.prototype.name": "^1.1.0",
- "globalthis": "^1.0.0",
- "object.entries": "^1.1.0",
- "object.fromentries": "^2.0.0 || ^1.0.0",
- "object.getownpropertydescriptors": "^2.0.3",
- "object.values": "^1.1.0",
- "promise.allsettled": "^1.0.0",
- "promise.prototype.finally": "^3.1.0",
- "string.prototype.matchall": "^4.0.0 || ^3.0.1",
- "string.prototype.padend": "^3.0.0",
- "string.prototype.padstart": "^3.0.0",
- "symbol.prototype.description": "^1.0.0"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-use-layout-effect": "1.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/ajv": {
- "version": "6.12.6",
- "dev": true,
+ "node_modules/@radix-ui/react-dropdown-menu/node_modules/@radix-ui/react-primitive": {
+ "version": "1.0.1",
"license": "MIT",
"dependencies": {
- "fast-deep-equal": "^3.1.1",
- "fast-json-stable-stringify": "^2.0.0",
- "json-schema-traverse": "^0.4.1",
- "uri-js": "^4.2.2"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-slot": "1.0.1"
},
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/epoberezkin"
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/ajv-errors": {
+ "node_modules/@radix-ui/react-dropdown-menu/node_modules/@radix-ui/react-slot": {
"version": "1.0.1",
- "dev": true,
"license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-compose-refs": "1.0.0"
+ },
"peerDependencies": {
- "ajv": ">=5.0.0"
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/ajv-keywords": {
- "version": "3.5.2",
- "dev": true,
+ "node_modules/@radix-ui/react-dropdown-menu/node_modules/@radix-ui/react-use-callback-ref": {
+ "version": "1.0.0",
"license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.13.10"
+ },
"peerDependencies": {
- "ajv": "^6.9.1"
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/algoliasearch": {
- "version": "4.14.1",
+ "node_modules/@radix-ui/react-dropdown-menu/node_modules/@radix-ui/react-use-controllable-state": {
+ "version": "1.0.0",
"license": "MIT",
"dependencies": {
- "@algolia/cache-browser-local-storage": "4.14.1",
- "@algolia/cache-common": "4.14.1",
- "@algolia/cache-in-memory": "4.14.1",
- "@algolia/client-account": "4.14.1",
- "@algolia/client-analytics": "4.14.1",
- "@algolia/client-common": "4.14.1",
- "@algolia/client-personalization": "4.14.1",
- "@algolia/client-search": "4.14.1",
- "@algolia/logger-common": "4.14.1",
- "@algolia/logger-console": "4.14.1",
- "@algolia/requester-browser-xhr": "4.14.1",
- "@algolia/requester-common": "4.14.1",
- "@algolia/requester-node-http": "4.14.1",
- "@algolia/transporter": "4.14.1"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-use-callback-ref": "1.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/align-text": {
- "version": "0.1.4",
- "dev": true,
+ "node_modules/@radix-ui/react-dropdown-menu/node_modules/@radix-ui/react-use-layout-effect": {
+ "version": "1.0.0",
"license": "MIT",
"dependencies": {
- "kind-of": "^3.0.2",
- "longest": "^1.0.1",
- "repeat-string": "^1.5.2"
+ "@babel/runtime": "^7.13.10"
},
- "engines": {
- "node": ">=0.10.0"
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/align-text/node_modules/is-buffer": {
- "version": "1.1.6",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/align-text/node_modules/kind-of": {
- "version": "3.2.2",
- "dev": true,
+ "node_modules/@radix-ui/react-focus-guards": {
+ "version": "1.0.1",
"license": "MIT",
"dependencies": {
- "is-buffer": "^1.1.5"
+ "@babel/runtime": "^7.13.10"
},
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/ansi-align": {
- "version": "3.0.1",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "string-width": "^4.1.0"
- }
- },
- "node_modules/ansi-colors": {
- "version": "4.1.3",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
}
},
- "node_modules/ansi-escapes": {
- "version": "4.3.2",
- "dev": true,
+ "node_modules/@radix-ui/react-focus-scope": {
+ "version": "1.0.4",
"license": "MIT",
"dependencies": {
- "type-fest": "^0.21.3"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-use-callback-ref": "1.0.1"
},
- "engines": {
- "node": ">=8"
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/ansi-escapes/node_modules/type-fest": {
- "version": "0.21.3",
- "dev": true,
- "license": "(MIT OR CC0-1.0)",
- "engines": {
- "node": ">=10"
+ "node_modules/@radix-ui/react-id": {
+ "version": "1.0.1",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-use-layout-effect": "1.0.1"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/ansi-html-community": {
- "version": "0.0.8",
- "dev": true,
- "engines": [
- "node >= 0.8.0"
- ],
- "license": "Apache-2.0",
- "bin": {
- "ansi-html": "bin/ansi-html"
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
}
},
- "node_modules/ansi-regex": {
- "version": "5.0.1",
+ "node_modules/@radix-ui/react-label": {
+ "version": "1.0.0",
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-compose-refs": "1.0.0",
+ "@radix-ui/react-context": "1.0.0",
+ "@radix-ui/react-id": "1.0.0",
+ "@radix-ui/react-primitive": "1.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/ansi-styles": {
- "version": "3.2.1",
+ "node_modules/@radix-ui/react-label/node_modules/@radix-ui/react-compose-refs": {
+ "version": "1.0.0",
"license": "MIT",
"dependencies": {
- "color-convert": "^1.9.0"
+ "@babel/runtime": "^7.13.10"
},
- "engines": {
- "node": ">=4"
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/ansi-styles/node_modules/color-convert": {
- "version": "1.9.3",
+ "node_modules/@radix-ui/react-label/node_modules/@radix-ui/react-context": {
+ "version": "1.0.0",
"license": "MIT",
"dependencies": {
- "color-name": "1.1.3"
+ "@babel/runtime": "^7.13.10"
+ },
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/ansi-styles/node_modules/color-name": {
- "version": "1.1.3",
- "license": "MIT"
- },
- "node_modules/ansi-to-html": {
- "version": "0.6.15",
- "dev": true,
+ "node_modules/@radix-ui/react-label/node_modules/@radix-ui/react-id": {
+ "version": "1.0.0",
"license": "MIT",
"dependencies": {
- "entities": "^2.0.0"
- },
- "bin": {
- "ansi-to-html": "bin/ansi-to-html"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-use-layout-effect": "1.0.0"
},
- "engines": {
- "node": ">=8.0.0"
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/any-promise": {
- "version": "1.3.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/anymatch": {
- "version": "3.1.2",
- "dev": true,
- "license": "ISC",
+ "node_modules/@radix-ui/react-label/node_modules/@radix-ui/react-primitive": {
+ "version": "1.0.0",
+ "license": "MIT",
"dependencies": {
- "normalize-path": "^3.0.0",
- "picomatch": "^2.0.4"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-slot": "1.0.0"
},
- "engines": {
- "node": ">= 8"
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/app-root-dir": {
- "version": "1.0.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/append-transform": {
- "version": "2.0.0",
- "dev": true,
+ "node_modules/@radix-ui/react-label/node_modules/@radix-ui/react-slot": {
+ "version": "1.0.0",
"license": "MIT",
"dependencies": {
- "default-require-extensions": "^3.0.0"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-compose-refs": "1.0.0"
},
- "engines": {
- "node": ">=8"
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/aproba": {
- "version": "2.0.0",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/archy": {
+ "node_modules/@radix-ui/react-label/node_modules/@radix-ui/react-use-layout-effect": {
"version": "1.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/are-we-there-yet": {
- "version": "2.0.0",
- "dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
+ "@babel/runtime": "^7.13.10"
},
- "engines": {
- "node": ">=10"
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/arg": {
- "version": "5.0.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/argparse": {
- "version": "2.0.1",
- "license": "Python-2.0"
- },
- "node_modules/aria-hidden": {
- "version": "1.2.1",
+ "node_modules/@radix-ui/react-menu": {
+ "version": "2.0.3",
"license": "MIT",
"dependencies": {
- "tslib": "^2.0.0"
- },
- "engines": {
- "node": ">=10"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/primitive": "1.0.0",
+ "@radix-ui/react-collection": "1.0.1",
+ "@radix-ui/react-compose-refs": "1.0.0",
+ "@radix-ui/react-context": "1.0.0",
+ "@radix-ui/react-direction": "1.0.0",
+ "@radix-ui/react-dismissable-layer": "1.0.2",
+ "@radix-ui/react-focus-guards": "1.0.0",
+ "@radix-ui/react-focus-scope": "1.0.1",
+ "@radix-ui/react-id": "1.0.0",
+ "@radix-ui/react-popper": "1.1.0",
+ "@radix-ui/react-portal": "1.0.1",
+ "@radix-ui/react-presence": "1.0.0",
+ "@radix-ui/react-primitive": "1.0.1",
+ "@radix-ui/react-roving-focus": "1.0.2",
+ "@radix-ui/react-slot": "1.0.1",
+ "@radix-ui/react-use-callback-ref": "1.0.0",
+ "aria-hidden": "^1.1.1",
+ "react-remove-scroll": "2.5.5"
},
"peerDependencies": {
- "@types/react": "^16.9.0 || ^17.0.0 || ^18.0.0",
- "react": "^16.9.0 || ^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/aria-query": {
- "version": "5.1.3",
- "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz",
- "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==",
- "dev": true,
+ "node_modules/@radix-ui/react-menu/node_modules/@radix-ui/primitive": {
+ "version": "1.0.0",
+ "license": "MIT",
"dependencies": {
- "deep-equal": "^2.0.5"
+ "@babel/runtime": "^7.13.10"
}
},
- "node_modules/arr-diff": {
- "version": "4.0.0",
- "dev": true,
+ "node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-collection": {
+ "version": "1.0.1",
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-compose-refs": "1.0.0",
+ "@radix-ui/react-context": "1.0.0",
+ "@radix-ui/react-primitive": "1.0.1",
+ "@radix-ui/react-slot": "1.0.1"
+ },
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/arr-flatten": {
- "version": "1.1.0",
- "dev": true,
+ "node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-compose-refs": {
+ "version": "1.0.0",
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "@babel/runtime": "^7.13.10"
+ },
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/arr-union": {
- "version": "3.1.0",
- "dev": true,
+ "node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-context": {
+ "version": "1.0.0",
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "@babel/runtime": "^7.13.10"
+ },
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/array-buffer-byte-length": {
+ "node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-direction": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz",
- "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==",
- "dev": true,
+ "license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "is-array-buffer": "^3.0.1"
+ "@babel/runtime": "^7.13.10"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/array-differ": {
- "version": "3.0.0",
- "dev": true,
+ "node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-dismissable-layer": {
+ "version": "1.0.2",
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/primitive": "1.0.0",
+ "@radix-ui/react-compose-refs": "1.0.0",
+ "@radix-ui/react-primitive": "1.0.1",
+ "@radix-ui/react-use-callback-ref": "1.0.0",
+ "@radix-ui/react-use-escape-keydown": "1.0.2"
+ },
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/array-each": {
- "version": "1.0.1",
- "dev": true,
+ "node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-focus-guards": {
+ "version": "1.0.0",
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "@babel/runtime": "^7.13.10"
+ },
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/array-equal": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/array-find-index": {
- "version": "1.0.2",
- "dev": true,
+ "node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-focus-scope": {
+ "version": "1.0.1",
"license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-compose-refs": "1.0.0",
+ "@radix-ui/react-primitive": "1.0.1",
+ "@radix-ui/react-use-callback-ref": "1.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/array-flatten": {
- "version": "1.1.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/array-ify": {
+ "node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-id": {
"version": "1.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/array-includes": {
- "version": "3.1.5",
- "dev": true,
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.19.5",
- "get-intrinsic": "^1.1.1",
- "is-string": "^1.0.7"
- },
- "engines": {
- "node": ">= 0.4"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-use-layout-effect": "1.0.0"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/array-slice": {
- "version": "1.1.0",
- "dev": true,
+ "node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-portal": {
+ "version": "1.0.1",
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-primitive": "1.0.1"
+ },
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/array-union": {
- "version": "2.1.0",
- "dev": true,
+ "node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-presence": {
+ "version": "1.0.0",
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-compose-refs": "1.0.0",
+ "@radix-ui/react-use-layout-effect": "1.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/array-uniq": {
- "version": "1.0.3",
- "dev": true,
+ "node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-primitive": {
+ "version": "1.0.1",
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-slot": "1.0.1"
+ },
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/array-unique": {
- "version": "0.3.2",
- "dev": true,
+ "node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-slot": {
+ "version": "1.0.1",
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-compose-refs": "1.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/array.prototype.filter": {
- "version": "1.0.1",
- "dev": true,
+ "node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-use-callback-ref": {
+ "version": "1.0.0",
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.19.0",
- "es-array-method-boxes-properly": "^1.0.0",
- "is-string": "^1.0.7"
- },
- "engines": {
- "node": ">= 0.4"
+ "@babel/runtime": "^7.13.10"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/array.prototype.flat": {
- "version": "1.2.5",
- "dev": true,
+ "node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-use-escape-keydown": {
+ "version": "1.0.2",
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.19.0"
- },
- "engines": {
- "node": ">= 0.4"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-use-callback-ref": "1.0.0"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/array.prototype.flatmap": {
- "version": "1.3.0",
- "dev": true,
+ "node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-use-layout-effect": {
+ "version": "1.0.0",
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.19.2",
- "es-shim-unscopables": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.4"
+ "@babel/runtime": "^7.13.10"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/array.prototype.map": {
- "version": "1.0.5",
- "dev": true,
+ "node_modules/@radix-ui/react-navigation-menu": {
+ "version": "1.1.4",
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4",
- "es-array-method-boxes-properly": "^1.0.0",
- "is-string": "^1.0.7"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/primitive": "1.0.1",
+ "@radix-ui/react-collection": "1.0.3",
+ "@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-direction": "1.0.1",
+ "@radix-ui/react-dismissable-layer": "1.0.5",
+ "@radix-ui/react-id": "1.0.1",
+ "@radix-ui/react-presence": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-use-callback-ref": "1.0.1",
+ "@radix-ui/react-use-controllable-state": "1.0.1",
+ "@radix-ui/react-use-layout-effect": "1.0.1",
+ "@radix-ui/react-use-previous": "1.0.1",
+ "@radix-ui/react-visually-hidden": "1.0.3"
},
- "engines": {
- "node": ">= 0.4"
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/array.prototype.reduce": {
- "version": "1.0.5",
- "dev": true,
+ "node_modules/@radix-ui/react-popover": {
+ "version": "1.0.7",
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4",
- "es-array-method-boxes-properly": "^1.0.0",
- "is-string": "^1.0.7"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/primitive": "1.0.1",
+ "@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-dismissable-layer": "1.0.5",
+ "@radix-ui/react-focus-guards": "1.0.1",
+ "@radix-ui/react-focus-scope": "1.0.4",
+ "@radix-ui/react-id": "1.0.1",
+ "@radix-ui/react-popper": "1.1.3",
+ "@radix-ui/react-portal": "1.0.4",
+ "@radix-ui/react-presence": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-slot": "1.0.2",
+ "@radix-ui/react-use-controllable-state": "1.0.1",
+ "aria-hidden": "^1.1.1",
+ "react-remove-scroll": "2.5.5"
},
- "engines": {
- "node": ">= 0.4"
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/arrify": {
- "version": "2.0.1",
- "dev": true,
+ "node_modules/@radix-ui/react-popover/node_modules/@floating-ui/core": {
+ "version": "1.6.0",
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "dependencies": {
+ "@floating-ui/utils": "^0.2.1"
}
},
- "node_modules/asap": {
- "version": "2.0.6",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/asn1": {
- "version": "0.2.6",
- "dev": true,
+ "node_modules/@radix-ui/react-popover/node_modules/@floating-ui/dom": {
+ "version": "1.6.3",
"license": "MIT",
"dependencies": {
- "safer-buffer": "~2.1.0"
+ "@floating-ui/core": "^1.0.0",
+ "@floating-ui/utils": "^0.2.0"
}
},
- "node_modules/asn1.js": {
- "version": "5.4.1",
- "dev": true,
+ "node_modules/@radix-ui/react-popover/node_modules/@floating-ui/react-dom": {
+ "version": "2.0.8",
"license": "MIT",
"dependencies": {
- "bn.js": "^4.0.0",
- "inherits": "^2.0.1",
- "minimalistic-assert": "^1.0.0",
- "safer-buffer": "^2.1.0"
+ "@floating-ui/dom": "^1.6.1"
+ },
+ "peerDependencies": {
+ "react": ">=16.8.0",
+ "react-dom": ">=16.8.0"
}
},
- "node_modules/asn1.js/node_modules/bn.js": {
- "version": "4.12.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/assert": {
- "version": "1.5.0",
- "dev": true,
+ "node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-arrow": {
+ "version": "1.0.3",
"license": "MIT",
"dependencies": {
- "object-assign": "^4.1.1",
- "util": "0.10.3"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-primitive": "1.0.3"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/assert-plus": {
- "version": "1.0.0",
- "dev": true,
+ "node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-popper": {
+ "version": "1.1.3",
"license": "MIT",
- "engines": {
- "node": ">=0.8"
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@floating-ui/react-dom": "^2.0.0",
+ "@radix-ui/react-arrow": "1.0.3",
+ "@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-use-callback-ref": "1.0.1",
+ "@radix-ui/react-use-layout-effect": "1.0.1",
+ "@radix-ui/react-use-rect": "1.0.1",
+ "@radix-ui/react-use-size": "1.0.1",
+ "@radix-ui/rect": "1.0.1"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/assert/node_modules/inherits": {
- "version": "2.0.1",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/assert/node_modules/util": {
- "version": "0.10.3",
- "dev": true,
+ "node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-use-rect": {
+ "version": "1.0.1",
"license": "MIT",
"dependencies": {
- "inherits": "2.0.1"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/rect": "1.0.1"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
}
},
- "node_modules/assign-symbols": {
- "version": "1.0.0",
- "dev": true,
+ "node_modules/@radix-ui/react-popover/node_modules/@radix-ui/rect": {
+ "version": "1.0.1",
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "@babel/runtime": "^7.13.10"
}
},
- "node_modules/ast-pretty-print": {
- "version": "2.0.1",
- "dev": true,
+ "node_modules/@radix-ui/react-popper": {
+ "version": "1.1.0",
"license": "MIT",
"dependencies": {
- "pretty-format-ast": "^1.0.1",
- "pretty-format2": "^2.0.3"
+ "@babel/runtime": "^7.13.10",
+ "@floating-ui/react-dom": "0.7.2",
+ "@radix-ui/react-arrow": "1.0.1",
+ "@radix-ui/react-compose-refs": "1.0.0",
+ "@radix-ui/react-context": "1.0.0",
+ "@radix-ui/react-primitive": "1.0.1",
+ "@radix-ui/react-use-callback-ref": "1.0.0",
+ "@radix-ui/react-use-layout-effect": "1.0.0",
+ "@radix-ui/react-use-rect": "1.0.0",
+ "@radix-ui/react-use-size": "1.0.0",
+ "@radix-ui/rect": "1.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/ast-types": {
- "version": "0.14.2",
+ "node_modules/@radix-ui/react-popper/node_modules/@radix-ui/react-compose-refs": {
+ "version": "1.0.0",
"license": "MIT",
"dependencies": {
- "tslib": "^2.0.1"
+ "@babel/runtime": "^7.13.10"
},
- "engines": {
- "node": ">=4"
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/ast-types-flow": {
- "version": "0.0.7",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/astring": {
- "version": "1.8.3",
+ "node_modules/@radix-ui/react-popper/node_modules/@radix-ui/react-context": {
+ "version": "1.0.0",
"license": "MIT",
- "bin": {
- "astring": "bin/astring"
+ "dependencies": {
+ "@babel/runtime": "^7.13.10"
+ },
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/async": {
- "version": "3.2.4",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/async-each": {
- "version": "1.0.6",
- "dev": true,
- "funding": [
- {
- "type": "individual",
- "url": "https://paulmillr.com/funding/"
- }
- ],
+ "node_modules/@radix-ui/react-popper/node_modules/@radix-ui/react-primitive": {
+ "version": "1.0.1",
"license": "MIT",
- "optional": true
- },
- "node_modules/asynckit": {
- "version": "0.4.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/at-least-node": {
- "version": "1.0.0",
- "dev": true,
- "license": "ISC",
- "engines": {
- "node": ">= 4.0.0"
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-slot": "1.0.1"
+ },
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/atob": {
- "version": "2.1.2",
- "dev": true,
- "license": "(MIT OR Apache-2.0)",
- "bin": {
- "atob": "bin/atob.js"
+ "node_modules/@radix-ui/react-popper/node_modules/@radix-ui/react-slot": {
+ "version": "1.0.1",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-compose-refs": "1.0.0"
},
- "engines": {
- "node": ">= 4.5.0"
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/autoprefixer": {
- "version": "9.8.8",
- "dev": true,
+ "node_modules/@radix-ui/react-popper/node_modules/@radix-ui/react-use-callback-ref": {
+ "version": "1.0.0",
"license": "MIT",
"dependencies": {
- "browserslist": "^4.12.0",
- "caniuse-lite": "^1.0.30001109",
- "normalize-range": "^0.1.2",
- "num2fraction": "^1.2.2",
- "picocolors": "^0.2.1",
- "postcss": "^7.0.32",
- "postcss-value-parser": "^4.1.0"
- },
- "bin": {
- "autoprefixer": "bin/autoprefixer"
+ "@babel/runtime": "^7.13.10"
},
- "funding": {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/autoprefixer"
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/available-typed-arrays": {
- "version": "1.0.5",
- "dev": true,
+ "node_modules/@radix-ui/react-popper/node_modules/@radix-ui/react-use-layout-effect": {
+ "version": "1.0.0",
"license": "MIT",
- "engines": {
- "node": ">= 0.4"
+ "dependencies": {
+ "@babel/runtime": "^7.13.10"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/aws-sign2": {
- "version": "0.7.0",
- "dev": true,
- "license": "Apache-2.0",
- "engines": {
- "node": "*"
- }
- },
- "node_modules/aws4": {
- "version": "1.12.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/axe-core": {
- "version": "4.4.3",
- "dev": true,
- "license": "MPL-2.0",
- "engines": {
- "node": ">=4"
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/axios": {
- "version": "0.21.4",
- "dev": true,
+ "node_modules/@radix-ui/react-popper/node_modules/@radix-ui/react-use-size": {
+ "version": "1.0.0",
"license": "MIT",
"dependencies": {
- "follow-redirects": "^1.14.0"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-use-layout-effect": "1.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/axobject-query": {
- "version": "2.2.0",
- "dev": true,
- "license": "Apache-2.0"
- },
- "node_modules/babel-code-frame": {
- "version": "6.26.0",
- "dev": true,
+ "node_modules/@radix-ui/react-portal": {
+ "version": "1.0.4",
"license": "MIT",
"dependencies": {
- "chalk": "^1.1.3",
- "esutils": "^2.0.2",
- "js-tokens": "^3.0.2"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-primitive": "1.0.3"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/babel-code-frame/node_modules/ansi-regex": {
- "version": "2.1.1",
- "dev": true,
+ "node_modules/@radix-ui/react-presence": {
+ "version": "1.0.1",
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-use-layout-effect": "1.0.1"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/babel-code-frame/node_modules/ansi-styles": {
- "version": "2.2.1",
- "dev": true,
+ "node_modules/@radix-ui/react-primitive": {
+ "version": "1.0.3",
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-slot": "1.0.2"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/babel-code-frame/node_modules/chalk": {
+ "node_modules/@radix-ui/react-radio-group": {
"version": "1.1.3",
- "dev": true,
"license": "MIT",
"dependencies": {
- "ansi-styles": "^2.2.1",
- "escape-string-regexp": "^1.0.2",
- "has-ansi": "^2.0.0",
- "strip-ansi": "^3.0.0",
- "supports-color": "^2.0.0"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/primitive": "1.0.1",
+ "@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-direction": "1.0.1",
+ "@radix-ui/react-presence": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-roving-focus": "1.0.4",
+ "@radix-ui/react-use-controllable-state": "1.0.1",
+ "@radix-ui/react-use-previous": "1.0.1",
+ "@radix-ui/react-use-size": "1.0.1"
},
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/babel-code-frame/node_modules/escape-string-regexp": {
- "version": "1.0.5",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.8.0"
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/babel-code-frame/node_modules/js-tokens": {
- "version": "3.0.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/babel-code-frame/node_modules/strip-ansi": {
- "version": "3.0.1",
- "dev": true,
+ "node_modules/@radix-ui/react-radio-group/node_modules/@radix-ui/react-roving-focus": {
+ "version": "1.0.4",
"license": "MIT",
"dependencies": {
- "ansi-regex": "^2.0.0"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/primitive": "1.0.1",
+ "@radix-ui/react-collection": "1.0.3",
+ "@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-direction": "1.0.1",
+ "@radix-ui/react-id": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-use-callback-ref": "1.0.1",
+ "@radix-ui/react-use-controllable-state": "1.0.1"
},
- "engines": {
- "node": ">=0.10.0"
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/babel-code-frame/node_modules/supports-color": {
- "version": "2.0.0",
- "dev": true,
+ "node_modules/@radix-ui/react-roving-focus": {
+ "version": "1.0.2",
"license": "MIT",
- "engines": {
- "node": ">=0.8.0"
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/primitive": "1.0.0",
+ "@radix-ui/react-collection": "1.0.1",
+ "@radix-ui/react-compose-refs": "1.0.0",
+ "@radix-ui/react-context": "1.0.0",
+ "@radix-ui/react-direction": "1.0.0",
+ "@radix-ui/react-id": "1.0.0",
+ "@radix-ui/react-primitive": "1.0.1",
+ "@radix-ui/react-use-callback-ref": "1.0.0",
+ "@radix-ui/react-use-controllable-state": "1.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/babel-core": {
- "version": "6.26.3",
- "dev": true,
+ "node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/primitive": {
+ "version": "1.0.0",
"license": "MIT",
"dependencies": {
- "babel-code-frame": "^6.26.0",
- "babel-generator": "^6.26.0",
- "babel-helpers": "^6.24.1",
- "babel-messages": "^6.23.0",
- "babel-register": "^6.26.0",
- "babel-runtime": "^6.26.0",
- "babel-template": "^6.26.0",
- "babel-traverse": "^6.26.0",
- "babel-types": "^6.26.0",
- "babylon": "^6.18.0",
- "convert-source-map": "^1.5.1",
- "debug": "^2.6.9",
- "json5": "^0.5.1",
- "lodash": "^4.17.4",
- "minimatch": "^3.0.4",
- "path-is-absolute": "^1.0.1",
- "private": "^0.1.8",
- "slash": "^1.0.0",
- "source-map": "^0.5.7"
+ "@babel/runtime": "^7.13.10"
}
},
- "node_modules/babel-core/node_modules/babylon": {
- "version": "6.18.0",
- "dev": true,
+ "node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-collection": {
+ "version": "1.0.1",
"license": "MIT",
- "bin": {
- "babylon": "bin/babylon.js"
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-compose-refs": "1.0.0",
+ "@radix-ui/react-context": "1.0.0",
+ "@radix-ui/react-primitive": "1.0.1",
+ "@radix-ui/react-slot": "1.0.1"
+ },
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/babel-core/node_modules/debug": {
- "version": "2.6.9",
- "dev": true,
+ "node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-compose-refs": {
+ "version": "1.0.0",
"license": "MIT",
"dependencies": {
- "ms": "2.0.0"
+ "@babel/runtime": "^7.13.10"
+ },
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/babel-core/node_modules/json5": {
- "version": "0.5.1",
- "dev": true,
+ "node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-context": {
+ "version": "1.0.0",
"license": "MIT",
- "bin": {
- "json5": "lib/cli.js"
+ "dependencies": {
+ "@babel/runtime": "^7.13.10"
+ },
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/babel-core/node_modules/ms": {
- "version": "2.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/babel-core/node_modules/slash": {
+ "node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-direction": {
"version": "1.0.0",
- "dev": true,
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "@babel/runtime": "^7.13.10"
+ },
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/babel-errors": {
- "version": "1.1.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/babel-explode-module": {
- "version": "1.4.0",
- "dev": true,
+ "node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-id": {
+ "version": "1.0.0",
"license": "MIT",
"dependencies": {
- "babel-types": "^6.24.1"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-use-layout-effect": "1.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/babel-file": {
- "version": "3.0.0",
- "dev": true,
+ "node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-primitive": {
+ "version": "1.0.1",
"license": "MIT",
"dependencies": {
- "@babel/core": "^7.0.0-beta.56"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-slot": "1.0.1"
+ },
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/babel-file-loader": {
- "version": "2.0.0",
- "dev": true,
+ "node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-slot": {
+ "version": "1.0.1",
"license": "MIT",
"dependencies": {
- "babel-errors": "^1.0.1",
- "babel-file": "^3.0.0",
- "babel-plugin-tester": "^3.0.0",
- "babel-types": "^6.24.1",
- "read-file-async": "^1.0.0",
- "resolve": "^1.3.3",
- "resolve-async": "^1.0.1"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-compose-refs": "1.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/babel-flow-identifiers": {
- "version": "1.1.3",
- "dev": true,
+ "node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-use-callback-ref": {
+ "version": "1.0.0",
"license": "MIT",
"dependencies": {
- "babel-flow-scope": "^1.2.1",
- "babel-identifiers": "^1.0.0"
+ "@babel/runtime": "^7.13.10"
+ },
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/babel-flow-scope": {
- "version": "1.2.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/babel-flow-types": {
- "version": "1.2.3",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/babel-generator": {
- "version": "6.26.1",
- "dev": true,
+ "node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-use-controllable-state": {
+ "version": "1.0.0",
"license": "MIT",
"dependencies": {
- "babel-messages": "^6.23.0",
- "babel-runtime": "^6.26.0",
- "babel-types": "^6.26.0",
- "detect-indent": "^4.0.0",
- "jsesc": "^1.3.0",
- "lodash": "^4.17.4",
- "source-map": "^0.5.7",
- "trim-right": "^1.0.1"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-use-callback-ref": "1.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/babel-generator/node_modules/detect-indent": {
- "version": "4.0.0",
- "dev": true,
+ "node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-use-layout-effect": {
+ "version": "1.0.0",
"license": "MIT",
"dependencies": {
- "repeating": "^2.0.0"
+ "@babel/runtime": "^7.13.10"
},
- "engines": {
- "node": ">=0.10.0"
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/babel-generator/node_modules/jsesc": {
- "version": "1.3.0",
- "dev": true,
+ "node_modules/@radix-ui/react-select": {
+ "version": "1.2.2",
"license": "MIT",
- "bin": {
- "jsesc": "bin/jsesc"
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/number": "1.0.1",
+ "@radix-ui/primitive": "1.0.1",
+ "@radix-ui/react-collection": "1.0.3",
+ "@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-direction": "1.0.1",
+ "@radix-ui/react-dismissable-layer": "1.0.4",
+ "@radix-ui/react-focus-guards": "1.0.1",
+ "@radix-ui/react-focus-scope": "1.0.3",
+ "@radix-ui/react-id": "1.0.1",
+ "@radix-ui/react-popper": "1.1.2",
+ "@radix-ui/react-portal": "1.0.3",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-slot": "1.0.2",
+ "@radix-ui/react-use-callback-ref": "1.0.1",
+ "@radix-ui/react-use-controllable-state": "1.0.1",
+ "@radix-ui/react-use-layout-effect": "1.0.1",
+ "@radix-ui/react-use-previous": "1.0.1",
+ "@radix-ui/react-visually-hidden": "1.0.3",
+ "aria-hidden": "^1.1.1",
+ "react-remove-scroll": "2.5.5"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/babel-helper-simplify-module": {
- "version": "2.2.1",
- "dev": true,
+ "node_modules/@radix-ui/react-select/node_modules/@floating-ui/core": {
+ "version": "1.6.0",
"license": "MIT",
"dependencies": {
- "babel-explode-module": "^1.4.0"
+ "@floating-ui/utils": "^0.2.1"
}
},
- "node_modules/babel-helpers": {
- "version": "6.24.1",
- "dev": true,
+ "node_modules/@radix-ui/react-select/node_modules/@floating-ui/dom": {
+ "version": "1.6.3",
"license": "MIT",
"dependencies": {
- "babel-runtime": "^6.22.0",
- "babel-template": "^6.24.1"
+ "@floating-ui/core": "^1.0.0",
+ "@floating-ui/utils": "^0.2.0"
}
},
- "node_modules/babel-identifiers": {
- "version": "1.1.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/babel-jest": {
- "version": "28.1.3",
- "dev": true,
+ "node_modules/@radix-ui/react-select/node_modules/@floating-ui/react-dom": {
+ "version": "2.0.8",
"license": "MIT",
"dependencies": {
- "@jest/transform": "^28.1.3",
- "@types/babel__core": "^7.1.14",
- "babel-plugin-istanbul": "^6.1.1",
- "babel-preset-jest": "^28.1.3",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.9",
- "slash": "^3.0.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "@floating-ui/dom": "^1.6.1"
},
"peerDependencies": {
- "@babel/core": "^7.8.0"
+ "react": ">=16.8.0",
+ "react-dom": ">=16.8.0"
}
},
- "node_modules/babel-jest/node_modules/ansi-styles": {
- "version": "4.3.0",
- "dev": true,
+ "node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-arrow": {
+ "version": "1.0.3",
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-primitive": "1.0.3"
},
- "engines": {
- "node": ">=8"
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
},
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/babel-jest/node_modules/chalk": {
- "version": "4.1.2",
- "dev": true,
+ "node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-dismissable-layer": {
+ "version": "1.0.4",
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/primitive": "1.0.1",
+ "@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-use-callback-ref": "1.0.1",
+ "@radix-ui/react-use-escape-keydown": "1.0.3"
},
- "engines": {
- "node": ">=10"
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
},
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/babel-jest/node_modules/has-flag": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/babel-jest/node_modules/supports-color": {
- "version": "7.2.0",
- "dev": true,
+ "node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-focus-scope": {
+ "version": "1.0.3",
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-use-callback-ref": "1.0.1"
},
- "engines": {
- "node": ">=8"
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/babel-loader": {
- "version": "8.2.3",
- "dev": true,
+ "node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-popper": {
+ "version": "1.1.2",
"license": "MIT",
"dependencies": {
- "find-cache-dir": "^3.3.1",
- "loader-utils": "^1.4.0",
- "make-dir": "^3.1.0",
- "schema-utils": "^2.6.5"
- },
- "engines": {
- "node": ">= 8.9"
+ "@babel/runtime": "^7.13.10",
+ "@floating-ui/react-dom": "^2.0.0",
+ "@radix-ui/react-arrow": "1.0.3",
+ "@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-use-callback-ref": "1.0.1",
+ "@radix-ui/react-use-layout-effect": "1.0.1",
+ "@radix-ui/react-use-rect": "1.0.1",
+ "@radix-ui/react-use-size": "1.0.1",
+ "@radix-ui/rect": "1.0.1"
},
"peerDependencies": {
- "@babel/core": "^7.0.0",
- "webpack": ">=2"
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/babel-loader/node_modules/find-cache-dir": {
- "version": "3.3.2",
- "dev": true,
+ "node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-portal": {
+ "version": "1.0.3",
"license": "MIT",
"dependencies": {
- "commondir": "^1.0.1",
- "make-dir": "^3.0.2",
- "pkg-dir": "^4.1.0"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-primitive": "1.0.3"
},
- "engines": {
- "node": ">=8"
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
},
- "funding": {
- "url": "https://github.com/avajs/find-cache-dir?sponsor=1"
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/babel-loader/node_modules/find-up": {
- "version": "4.1.0",
- "dev": true,
+ "node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-use-rect": {
+ "version": "1.0.1",
"license": "MIT",
"dependencies": {
- "locate-path": "^5.0.0",
- "path-exists": "^4.0.0"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/rect": "1.0.1"
},
- "engines": {
- "node": ">=8"
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
}
},
- "node_modules/babel-loader/node_modules/json5": {
+ "node_modules/@radix-ui/react-select/node_modules/@radix-ui/rect": {
"version": "1.0.1",
- "dev": true,
"license": "MIT",
"dependencies": {
- "minimist": "^1.2.0"
- },
- "bin": {
- "json5": "lib/cli.js"
+ "@babel/runtime": "^7.13.10"
}
},
- "node_modules/babel-loader/node_modules/loader-utils": {
- "version": "1.4.0",
- "dev": true,
+ "node_modules/@radix-ui/react-separator": {
+ "version": "1.0.3",
"license": "MIT",
"dependencies": {
- "big.js": "^5.2.2",
- "emojis-list": "^3.0.0",
- "json5": "^1.0.1"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-primitive": "1.0.3"
},
- "engines": {
- "node": ">=4.0.0"
- }
- },
- "node_modules/babel-loader/node_modules/locate-path": {
- "version": "5.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "p-locate": "^4.1.0"
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
},
- "engines": {
- "node": ">=8"
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/babel-loader/node_modules/make-dir": {
- "version": "3.1.0",
- "dev": true,
+ "node_modules/@radix-ui/react-slot": {
+ "version": "1.0.2",
"license": "MIT",
"dependencies": {
- "semver": "^6.0.0"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-compose-refs": "1.0.1"
},
- "engines": {
- "node": ">=8"
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
}
},
- "node_modules/babel-loader/node_modules/p-limit": {
- "version": "2.3.0",
- "dev": true,
+ "node_modules/@radix-ui/react-switch": {
+ "version": "1.0.3",
"license": "MIT",
"dependencies": {
- "p-try": "^2.0.0"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/primitive": "1.0.1",
+ "@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-use-controllable-state": "1.0.1",
+ "@radix-ui/react-use-previous": "1.0.1",
+ "@radix-ui/react-use-size": "1.0.1"
},
- "engines": {
- "node": ">=6"
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/babel-loader/node_modules/p-locate": {
- "version": "4.1.0",
- "dev": true,
- "license": "MIT",
+ "node_modules/@radix-ui/react-tabs": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-tabs/-/react-tabs-1.0.4.tgz",
+ "integrity": "sha512-egZfYY/+wRNCflXNHx+dePvnz9FbmssDTJBtgRfDY7e8SE5oIo3Py2eCB1ckAbh1Q7cQ/6yJZThJ++sgbxibog==",
"dependencies": {
- "p-limit": "^2.2.0"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/primitive": "1.0.1",
+ "@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-direction": "1.0.1",
+ "@radix-ui/react-id": "1.0.1",
+ "@radix-ui/react-presence": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-roving-focus": "1.0.4",
+ "@radix-ui/react-use-controllable-state": "1.0.1"
},
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/babel-loader/node_modules/path-exists": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/babel-loader/node_modules/pkg-dir": {
- "version": "4.2.0",
- "dev": true,
+ "node_modules/@radix-ui/react-tabs/node_modules/@radix-ui/react-roving-focus": {
+ "version": "1.0.4",
"license": "MIT",
"dependencies": {
- "find-up": "^4.0.0"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/primitive": "1.0.1",
+ "@radix-ui/react-collection": "1.0.3",
+ "@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-direction": "1.0.1",
+ "@radix-ui/react-id": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-use-callback-ref": "1.0.1",
+ "@radix-ui/react-use-controllable-state": "1.0.1"
},
- "engines": {
- "node": ">=8"
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/babel-loader/node_modules/schema-utils": {
- "version": "2.7.1",
- "dev": true,
+ "node_modules/@radix-ui/react-toggle": {
+ "version": "1.0.3",
"license": "MIT",
"dependencies": {
- "@types/json-schema": "^7.0.5",
- "ajv": "^6.12.4",
- "ajv-keywords": "^3.5.2"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/primitive": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-use-controllable-state": "1.0.1"
},
- "engines": {
- "node": ">= 8.9.0"
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/babel-messages": {
- "version": "6.23.0",
- "dev": true,
+ "node_modules/@radix-ui/react-toggle-group": {
+ "version": "1.0.4",
"license": "MIT",
"dependencies": {
- "babel-runtime": "^6.22.0"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/primitive": "1.0.1",
+ "@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-direction": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-roving-focus": "1.0.4",
+ "@radix-ui/react-toggle": "1.0.3",
+ "@radix-ui/react-use-controllable-state": "1.0.1"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/babel-normalize-comments": {
- "version": "1.0.2",
- "dev": true,
+ "node_modules/@radix-ui/react-toggle-group/node_modules/@radix-ui/react-roving-focus": {
+ "version": "1.0.4",
"license": "MIT",
"dependencies": {
- "babel-flow-types": "^1.2.3"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/primitive": "1.0.1",
+ "@radix-ui/react-collection": "1.0.3",
+ "@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-direction": "1.0.1",
+ "@radix-ui/react-id": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-use-callback-ref": "1.0.1",
+ "@radix-ui/react-use-controllable-state": "1.0.1"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/babel-plugin-add-react-displayname": {
- "version": "0.0.5",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/babel-plugin-apply-mdx-type-prop": {
- "version": "1.6.22",
+ "node_modules/@radix-ui/react-toolbar": {
+ "version": "1.0.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "7.10.4",
- "@mdx-js/util": "1.6.22"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/primitive": "1.0.1",
+ "@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-direction": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-roving-focus": "1.0.4",
+ "@radix-ui/react-separator": "1.0.3",
+ "@radix-ui/react-toggle-group": "1.0.4"
},
"peerDependencies": {
- "@babel/core": "^7.11.6"
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/babel-plugin-apply-mdx-type-prop/node_modules/@babel/helper-plugin-utils": {
- "version": "7.10.4",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/babel-plugin-extract-import-names": {
- "version": "1.6.22",
+ "node_modules/@radix-ui/react-toolbar/node_modules/@radix-ui/react-roving-focus": {
+ "version": "1.0.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "7.10.4"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/primitive": "1.0.1",
+ "@radix-ui/react-collection": "1.0.3",
+ "@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-direction": "1.0.1",
+ "@radix-ui/react-id": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-use-callback-ref": "1.0.1",
+ "@radix-ui/react-use-controllable-state": "1.0.1"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/babel-plugin-extract-import-names/node_modules/@babel/helper-plugin-utils": {
- "version": "7.10.4",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/babel-plugin-extract-react-types": {
- "version": "0.1.14",
- "dev": true,
+ "node_modules/@radix-ui/react-tooltip": {
+ "version": "1.0.7",
"license": "MIT",
"dependencies": {
- "extract-react-types": "^0.30.0"
- }
- },
- "node_modules/babel-plugin-istanbul": {
- "version": "6.1.1",
- "dev": true,
- "license": "BSD-3-Clause",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.0.0",
- "@istanbuljs/load-nyc-config": "^1.0.0",
- "@istanbuljs/schema": "^0.1.2",
- "istanbul-lib-instrument": "^5.0.4",
- "test-exclude": "^6.0.0"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/primitive": "1.0.1",
+ "@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-dismissable-layer": "1.0.5",
+ "@radix-ui/react-id": "1.0.1",
+ "@radix-ui/react-popper": "1.1.3",
+ "@radix-ui/react-portal": "1.0.4",
+ "@radix-ui/react-presence": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-slot": "1.0.2",
+ "@radix-ui/react-use-controllable-state": "1.0.1",
+ "@radix-ui/react-visually-hidden": "1.0.3"
},
- "engines": {
- "node": ">=8"
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/babel-plugin-jest-hoist": {
- "version": "28.1.3",
- "dev": true,
+ "node_modules/@radix-ui/react-tooltip/node_modules/@floating-ui/core": {
+ "version": "1.6.0",
"license": "MIT",
"dependencies": {
- "@babel/template": "^7.3.3",
- "@babel/types": "^7.3.3",
- "@types/babel__core": "^7.1.14",
- "@types/babel__traverse": "^7.0.6"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "@floating-ui/utils": "^0.2.1"
}
},
- "node_modules/babel-plugin-macros": {
- "version": "3.1.0",
- "dev": true,
+ "node_modules/@radix-ui/react-tooltip/node_modules/@floating-ui/dom": {
+ "version": "1.6.3",
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.12.5",
- "cosmiconfig": "^7.0.0",
- "resolve": "^1.19.0"
- },
- "engines": {
- "node": ">=10",
- "npm": ">=6"
+ "@floating-ui/core": "^1.0.0",
+ "@floating-ui/utils": "^0.2.0"
}
},
- "node_modules/babel-plugin-named-exports-order": {
- "version": "0.0.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/babel-plugin-polyfill-corejs2": {
- "version": "0.3.3",
- "dev": true,
+ "node_modules/@radix-ui/react-tooltip/node_modules/@floating-ui/react-dom": {
+ "version": "2.0.8",
"license": "MIT",
"dependencies": {
- "@babel/compat-data": "^7.17.7",
- "@babel/helper-define-polyfill-provider": "^0.3.3",
- "semver": "^6.1.1"
+ "@floating-ui/dom": "^1.6.1"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "react": ">=16.8.0",
+ "react-dom": ">=16.8.0"
}
},
- "node_modules/babel-plugin-polyfill-corejs3": {
- "version": "0.6.0",
- "dev": true,
+ "node_modules/@radix-ui/react-tooltip/node_modules/@radix-ui/react-arrow": {
+ "version": "1.0.3",
"license": "MIT",
"dependencies": {
- "@babel/helper-define-polyfill-provider": "^0.3.3",
- "core-js-compat": "^3.25.1"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-primitive": "1.0.3"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/babel-plugin-polyfill-regenerator": {
- "version": "0.4.1",
- "dev": true,
+ "node_modules/@radix-ui/react-tooltip/node_modules/@radix-ui/react-popper": {
+ "version": "1.1.3",
"license": "MIT",
"dependencies": {
- "@babel/helper-define-polyfill-provider": "^0.3.3"
+ "@babel/runtime": "^7.13.10",
+ "@floating-ui/react-dom": "^2.0.0",
+ "@radix-ui/react-arrow": "1.0.3",
+ "@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-use-callback-ref": "1.0.1",
+ "@radix-ui/react-use-layout-effect": "1.0.1",
+ "@radix-ui/react-use-rect": "1.0.1",
+ "@radix-ui/react-use-size": "1.0.1",
+ "@radix-ui/rect": "1.0.1"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/babel-plugin-react-docgen": {
- "version": "4.2.1",
- "dev": true,
+ "node_modules/@radix-ui/react-tooltip/node_modules/@radix-ui/react-use-rect": {
+ "version": "1.0.1",
"license": "MIT",
"dependencies": {
- "ast-types": "^0.14.2",
- "lodash": "^4.17.15",
- "react-docgen": "^5.0.0"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/rect": "1.0.1"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
}
},
- "node_modules/babel-plugin-tester": {
- "version": "3.3.0",
- "dev": true,
+ "node_modules/@radix-ui/react-tooltip/node_modules/@radix-ui/rect": {
+ "version": "1.0.1",
"license": "MIT",
"dependencies": {
- "babel-core": "^6.25.0",
- "common-tags": "^1.4.0",
- "invariant": "^2.2.2",
- "lodash.merge": "^4.6.0",
- "path-exists": "^3.0.0",
- "strip-indent": "^2.0.0"
+ "@babel/runtime": "^7.13.10"
}
},
- "node_modules/babel-plugin-tester/node_modules/strip-indent": {
- "version": "2.0.0",
- "dev": true,
+ "node_modules/@radix-ui/react-use-callback-ref": {
+ "version": "1.0.1",
"license": "MIT",
- "engines": {
- "node": ">=4"
+ "dependencies": {
+ "@babel/runtime": "^7.13.10"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
}
},
- "node_modules/babel-preset-current-node-syntax": {
+ "node_modules/@radix-ui/react-use-controllable-state": {
"version": "1.0.1",
- "dev": true,
"license": "MIT",
"dependencies": {
- "@babel/plugin-syntax-async-generators": "^7.8.4",
- "@babel/plugin-syntax-bigint": "^7.8.3",
- "@babel/plugin-syntax-class-properties": "^7.8.3",
- "@babel/plugin-syntax-import-meta": "^7.8.3",
- "@babel/plugin-syntax-json-strings": "^7.8.3",
- "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3",
- "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
- "@babel/plugin-syntax-numeric-separator": "^7.8.3",
- "@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.8.3"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-use-callback-ref": "1.0.1"
},
"peerDependencies": {
- "@babel/core": "^7.0.0"
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
}
},
- "node_modules/babel-preset-jest": {
- "version": "28.1.3",
- "dev": true,
+ "node_modules/@radix-ui/react-use-escape-keydown": {
+ "version": "1.0.3",
"license": "MIT",
"dependencies": {
- "babel-plugin-jest-hoist": "^28.1.3",
- "babel-preset-current-node-syntax": "^1.0.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-use-callback-ref": "1.0.1"
},
"peerDependencies": {
- "@babel/core": "^7.0.0"
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
}
},
- "node_modules/babel-react-components": {
- "version": "1.1.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/babel-register": {
- "version": "6.26.0",
- "dev": true,
+ "node_modules/@radix-ui/react-use-layout-effect": {
+ "version": "1.0.1",
"license": "MIT",
"dependencies": {
- "babel-core": "^6.26.0",
- "babel-runtime": "^6.26.0",
- "core-js": "^2.5.0",
- "home-or-tmp": "^2.0.0",
- "lodash": "^4.17.4",
- "mkdirp": "^0.5.1",
- "source-map-support": "^0.4.15"
+ "@babel/runtime": "^7.13.10"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
}
},
- "node_modules/babel-register/node_modules/core-js": {
- "version": "2.6.12",
- "dev": true,
- "hasInstallScript": true,
- "license": "MIT"
- },
- "node_modules/babel-register/node_modules/mkdirp": {
- "version": "0.5.6",
- "dev": true,
+ "node_modules/@radix-ui/react-use-previous": {
+ "version": "1.0.1",
"license": "MIT",
"dependencies": {
- "minimist": "^1.2.6"
+ "@babel/runtime": "^7.13.10"
},
- "bin": {
- "mkdirp": "bin/cmd.js"
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
}
},
- "node_modules/babel-runtime": {
- "version": "6.26.0",
- "dev": true,
+ "node_modules/@radix-ui/react-use-rect": {
+ "version": "1.0.0",
"license": "MIT",
"dependencies": {
- "core-js": "^2.4.0",
- "regenerator-runtime": "^0.11.0"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/rect": "1.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8 || ^17.0 || ^18.0"
}
},
- "node_modules/babel-runtime/node_modules/core-js": {
- "version": "2.6.12",
- "dev": true,
- "hasInstallScript": true,
- "license": "MIT"
- },
- "node_modules/babel-runtime/node_modules/regenerator-runtime": {
- "version": "0.11.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/babel-template": {
- "version": "6.26.0",
- "dev": true,
+ "node_modules/@radix-ui/react-use-size": {
+ "version": "1.0.1",
"license": "MIT",
"dependencies": {
- "babel-runtime": "^6.26.0",
- "babel-traverse": "^6.26.0",
- "babel-types": "^6.26.0",
- "babylon": "^6.18.0",
- "lodash": "^4.17.4"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-use-layout-effect": "1.0.1"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
}
},
- "node_modules/babel-template/node_modules/babylon": {
- "version": "6.18.0",
- "dev": true,
+ "node_modules/@radix-ui/react-visually-hidden": {
+ "version": "1.0.3",
"license": "MIT",
- "bin": {
- "babylon": "bin/babylon.js"
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-primitive": "1.0.3"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/babel-traverse": {
- "version": "6.26.0",
- "dev": true,
+ "node_modules/@radix-ui/rect": {
+ "version": "1.0.0",
"license": "MIT",
"dependencies": {
- "babel-code-frame": "^6.26.0",
- "babel-messages": "^6.23.0",
- "babel-runtime": "^6.26.0",
- "babel-types": "^6.26.0",
- "babylon": "^6.18.0",
- "debug": "^2.6.8",
- "globals": "^9.18.0",
- "invariant": "^2.2.2",
- "lodash": "^4.17.4"
+ "@babel/runtime": "^7.13.10"
}
},
- "node_modules/babel-traverse/node_modules/babylon": {
- "version": "6.18.0",
- "dev": true,
+ "node_modules/@reach/auto-id": {
+ "version": "0.18.0",
"license": "MIT",
- "bin": {
- "babylon": "bin/babylon.js"
+ "dependencies": {
+ "@reach/utils": "0.18.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || 17.x",
+ "react-dom": "^16.8.0 || 17.x"
}
},
- "node_modules/babel-traverse/node_modules/debug": {
- "version": "2.6.9",
- "dev": true,
+ "node_modules/@reach/combobox": {
+ "version": "0.18.0",
"license": "MIT",
"dependencies": {
- "ms": "2.0.0"
+ "@reach/auto-id": "0.18.0",
+ "@reach/descendants": "0.18.0",
+ "@reach/polymorphic": "0.18.0",
+ "@reach/popover": "0.18.0",
+ "@reach/portal": "0.18.0",
+ "@reach/utils": "0.18.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || 17.x",
+ "react-dom": "^16.8.0 || 17.x"
}
},
- "node_modules/babel-traverse/node_modules/globals": {
- "version": "9.18.0",
- "dev": true,
+ "node_modules/@reach/descendants": {
+ "version": "0.18.0",
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "@reach/utils": "0.18.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || 17.x",
+ "react-dom": "^16.8.0 || 17.x"
}
},
- "node_modules/babel-traverse/node_modules/ms": {
- "version": "2.0.0",
- "dev": true,
+ "node_modules/@reach/observe-rect": {
+ "version": "1.2.0",
"license": "MIT"
},
- "node_modules/babel-type-scopes": {
- "version": "1.1.0",
- "dev": true,
+ "node_modules/@reach/polymorphic": {
+ "version": "0.18.0",
"license": "MIT",
- "dependencies": {
- "babel-flow-types": "^1.2.1"
+ "peerDependencies": {
+ "react": "^16.8.0 || 17.x"
}
},
- "node_modules/babel-types": {
- "version": "6.26.0",
- "dev": true,
+ "node_modules/@reach/popover": {
+ "version": "0.18.0",
"license": "MIT",
"dependencies": {
- "babel-runtime": "^6.26.0",
- "esutils": "^2.0.2",
- "lodash": "^4.17.4",
- "to-fast-properties": "^1.0.3"
+ "@reach/polymorphic": "0.18.0",
+ "@reach/portal": "0.18.0",
+ "@reach/rect": "0.18.0",
+ "@reach/utils": "0.18.0",
+ "tabbable": "^5.3.3"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || 17.x",
+ "react-dom": "^16.8.0 || 17.x"
}
},
- "node_modules/babel-types/node_modules/to-fast-properties": {
- "version": "1.0.3",
- "dev": true,
+ "node_modules/@reach/portal": {
+ "version": "0.18.0",
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "@reach/utils": "0.18.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || 17.x",
+ "react-dom": "^16.8.0 || 17.x"
}
},
- "node_modules/babylon": {
- "version": "7.0.0-beta.47",
- "dev": true,
+ "node_modules/@reach/rect": {
+ "version": "0.18.0",
"license": "MIT",
- "bin": {
- "babylon": "bin/babylon.js"
+ "dependencies": {
+ "@reach/observe-rect": "1.2.0",
+ "@reach/utils": "0.18.0"
},
- "engines": {
- "node": ">=6.0.0"
+ "peerDependencies": {
+ "react": "^16.8.0 || 17.x",
+ "react-dom": "^16.8.0 || 17.x"
}
},
- "node_modules/babylon-options": {
- "version": "2.0.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/bail": {
- "version": "1.0.5",
- "dev": true,
+ "node_modules/@reach/utils": {
+ "version": "0.18.0",
"license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "peerDependencies": {
+ "react": "^16.8.0 || 17.x",
+ "react-dom": "^16.8.0 || 17.x"
}
},
- "node_modules/balanced-match": {
- "version": "1.0.2",
- "license": "MIT"
- },
- "node_modules/base": {
- "version": "0.11.2",
- "dev": true,
+ "node_modules/@react-hook/intersection-observer": {
+ "version": "3.1.1",
"license": "MIT",
"dependencies": {
- "cache-base": "^1.0.1",
- "class-utils": "^0.3.5",
- "component-emitter": "^1.2.1",
- "define-property": "^1.0.0",
- "isobject": "^3.0.1",
- "mixin-deep": "^1.2.0",
- "pascalcase": "^0.1.1"
+ "@react-hook/passive-layout-effect": "^1.2.0",
+ "intersection-observer": "^0.10.0"
},
- "engines": {
- "node": ">=0.10.0"
+ "peerDependencies": {
+ "react": ">=16.8"
}
},
- "node_modules/base/node_modules/define-property": {
- "version": "1.0.0",
- "dev": true,
+ "node_modules/@react-hook/passive-layout-effect": {
+ "version": "1.2.1",
"license": "MIT",
- "dependencies": {
- "is-descriptor": "^1.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
+ "peerDependencies": {
+ "react": ">=16.8"
}
},
- "node_modules/base64-js": {
- "version": "1.5.1",
- "dev": true,
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "MIT"
- },
- "node_modules/batch-processor": {
- "version": "1.0.0",
+ "node_modules/@rushstack/eslint-patch": {
+ "version": "1.10.1",
"dev": true,
"license": "MIT"
},
- "node_modules/bcrypt-pbkdf": {
- "version": "1.0.2",
+ "node_modules/@sideway/address": {
+ "version": "4.1.5",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
- "tweetnacl": "^0.14.3"
+ "@hapi/hoek": "^9.0.0"
}
},
- "node_modules/before-after-hook": {
- "version": "2.2.2",
- "license": "Apache-2.0"
- },
- "node_modules/better-opn": {
- "version": "2.1.1",
+ "node_modules/@sideway/formula": {
+ "version": "3.0.1",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "open": "^7.0.3"
- },
- "engines": {
- "node": ">8.0.0"
- }
+ "license": "BSD-3-Clause"
},
- "node_modules/better-opn/node_modules/open": {
- "version": "7.4.2",
+ "node_modules/@sideway/pinpoint": {
+ "version": "2.0.0",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "is-docker": "^2.0.0",
- "is-wsl": "^2.1.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
+ "license": "BSD-3-Clause"
},
- "node_modules/big-integer": {
- "version": "1.6.51",
+ "node_modules/@sinclair/typebox": {
+ "version": "0.27.8",
"dev": true,
- "license": "Unlicense",
- "optional": true,
- "engines": {
- "node": ">=0.6"
- }
+ "license": "MIT"
},
- "node_modules/big.js": {
- "version": "5.2.2",
+ "node_modules/@sindresorhus/is": {
+ "version": "0.14.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": "*"
+ "node": ">=6"
}
},
- "node_modules/bin-links": {
+ "node_modules/@sinonjs/commons": {
"version": "3.0.1",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "cmd-shim": "^5.0.0",
- "mkdirp-infer-owner": "^2.0.0",
- "npm-normalize-package-bin": "^1.0.0",
- "read-cmd-shim": "^3.0.0",
- "rimraf": "^3.0.0",
- "write-file-atomic": "^4.0.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/bin-links/node_modules/cmd-shim": {
- "version": "5.0.0",
- "dev": true,
- "license": "ISC",
+ "license": "BSD-3-Clause",
"dependencies": {
- "mkdirp-infer-owner": "^2.0.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/bin-links/node_modules/read-cmd-shim": {
- "version": "3.0.0",
- "dev": true,
- "license": "ISC",
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "type-detect": "4.0.8"
}
},
- "node_modules/bin-links/node_modules/write-file-atomic": {
- "version": "4.0.1",
+ "node_modules/@sinonjs/fake-timers": {
+ "version": "10.3.0",
"dev": true,
- "license": "ISC",
+ "license": "BSD-3-Clause",
"dependencies": {
- "imurmurhash": "^0.1.4",
- "signal-exit": "^3.0.7"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
- }
- },
- "node_modules/binary-extensions": {
- "version": "2.2.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
+ "@sinonjs/commons": "^3.0.0"
}
},
- "node_modules/binaryextensions": {
- "version": "2.3.0",
- "license": "MIT",
- "engines": {
- "node": ">=0.8"
- },
- "funding": {
- "url": "https://bevry.me/fund"
- }
+ "node_modules/@stitches/core": {
+ "version": "1.2.8",
+ "license": "MIT"
},
- "node_modules/bindings": {
- "version": "1.5.0",
- "dev": true,
+ "node_modules/@stitches/react": {
+ "version": "1.2.8",
"license": "MIT",
- "optional": true,
- "dependencies": {
- "file-uri-to-path": "1.0.0"
+ "peerDependencies": {
+ "react": ">= 16.3.0"
}
},
- "node_modules/bl": {
- "version": "5.0.0",
+ "node_modules/@storybook/addon-a11y": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
"dependencies": {
- "buffer": "^6.0.3",
- "inherits": "^2.0.4",
- "readable-stream": "^3.4.0"
+ "@storybook/addon-highlight": "7.6.17",
+ "axe-core": "^4.2.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
}
},
- "node_modules/bluebird": {
- "version": "3.7.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/bn.js": {
- "version": "5.2.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/body-parser": {
- "version": "1.19.2",
+ "node_modules/@storybook/addon-actions": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
"dependencies": {
- "bytes": "3.1.2",
- "content-type": "~1.0.4",
- "debug": "2.6.9",
- "depd": "~1.1.2",
- "http-errors": "1.8.1",
- "iconv-lite": "0.4.24",
- "on-finished": "~2.3.0",
- "qs": "6.9.7",
- "raw-body": "2.4.3",
- "type-is": "~1.6.18"
+ "@storybook/core-events": "7.6.17",
+ "@storybook/global": "^5.0.0",
+ "@types/uuid": "^9.0.1",
+ "dequal": "^2.0.2",
+ "polished": "^4.2.2",
+ "uuid": "^9.0.0"
},
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/body-parser/node_modules/bytes": {
- "version": "3.1.2",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
}
},
- "node_modules/body-parser/node_modules/debug": {
- "version": "2.6.9",
+ "node_modules/@storybook/addon-backgrounds": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
"dependencies": {
- "ms": "2.0.0"
- }
- },
- "node_modules/body-parser/node_modules/ms": {
- "version": "2.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/body-parser/node_modules/qs": {
- "version": "6.9.7",
- "dev": true,
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.6"
+ "@storybook/global": "^5.0.0",
+ "memoizerific": "^1.11.3",
+ "ts-dedent": "^2.0.0"
},
"funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
}
},
- "node_modules/boolbase": {
- "version": "1.0.0",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/boxen": {
- "version": "5.1.2",
+ "node_modules/@storybook/addon-controls": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-align": "^3.0.0",
- "camelcase": "^6.2.0",
- "chalk": "^4.1.0",
- "cli-boxes": "^2.2.1",
- "string-width": "^4.2.2",
- "type-fest": "^0.20.2",
- "widest-line": "^3.1.0",
- "wrap-ansi": "^7.0.0"
- },
- "engines": {
- "node": ">=10"
+ "@storybook/blocks": "7.6.17",
+ "lodash": "^4.17.21",
+ "ts-dedent": "^2.0.0"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
}
},
- "node_modules/boxen/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/@storybook/addon-docs": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
+ "@jest/transform": "^29.3.1",
+ "@mdx-js/react": "^2.1.5",
+ "@storybook/blocks": "7.6.17",
+ "@storybook/client-logger": "7.6.17",
+ "@storybook/components": "7.6.17",
+ "@storybook/csf-plugin": "7.6.17",
+ "@storybook/csf-tools": "7.6.17",
+ "@storybook/global": "^5.0.0",
+ "@storybook/mdx2-csf": "^1.0.0",
+ "@storybook/node-logger": "7.6.17",
+ "@storybook/postinstall": "7.6.17",
+ "@storybook/preview-api": "7.6.17",
+ "@storybook/react-dom-shim": "7.6.17",
+ "@storybook/theming": "7.6.17",
+ "@storybook/types": "7.6.17",
+ "fs-extra": "^11.1.0",
+ "remark-external-links": "^8.0.0",
+ "remark-slug": "^6.0.0",
+ "ts-dedent": "^2.0.0"
},
"funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
},
- "node_modules/boxen/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/@storybook/addon-docs/node_modules/@mdx-js/react": {
+ "version": "2.3.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
+ "@types/mdx": "^2.0.0",
+ "@types/react": ">=16"
},
- "engines": {
- "node": ">=10"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ },
+ "peerDependencies": {
+ "react": ">=16"
+ }
+ },
+ "node_modules/@storybook/addon-essentials": {
+ "version": "7.6.17",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@storybook/addon-actions": "7.6.17",
+ "@storybook/addon-backgrounds": "7.6.17",
+ "@storybook/addon-controls": "7.6.17",
+ "@storybook/addon-docs": "7.6.17",
+ "@storybook/addon-highlight": "7.6.17",
+ "@storybook/addon-measure": "7.6.17",
+ "@storybook/addon-outline": "7.6.17",
+ "@storybook/addon-toolbars": "7.6.17",
+ "@storybook/addon-viewport": "7.6.17",
+ "@storybook/core-common": "7.6.17",
+ "@storybook/manager-api": "7.6.17",
+ "@storybook/node-logger": "7.6.17",
+ "@storybook/preview-api": "7.6.17",
+ "ts-dedent": "^2.0.0"
},
"funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
},
- "node_modules/boxen/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/@storybook/addon-highlight": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "dependencies": {
+ "@storybook/global": "^5.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
}
},
- "node_modules/boxen/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/@storybook/addon-interactions": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
+ "@storybook/global": "^5.0.0",
+ "@storybook/types": "7.6.17",
+ "jest-mock": "^27.0.6",
+ "polished": "^4.2.2",
+ "ts-dedent": "^2.2.0"
},
- "engines": {
- "node": ">=8"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
}
},
- "node_modules/bplist-parser": {
- "version": "0.1.1",
+ "node_modules/@storybook/addon-links": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
- "optional": true,
"dependencies": {
- "big-integer": "^1.6.7"
+ "@storybook/csf": "^0.1.2",
+ "@storybook/global": "^5.0.0",
+ "ts-dedent": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ },
+ "peerDependenciesMeta": {
+ "react": {
+ "optional": true
+ }
}
},
- "node_modules/brace-expansion": {
- "version": "1.1.11",
+ "node_modules/@storybook/addon-measure": {
+ "version": "7.6.17",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "balanced-match": "^1.0.0",
- "concat-map": "0.0.1"
+ "@storybook/global": "^5.0.0",
+ "tiny-invariant": "^1.3.1"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
}
},
- "node_modules/braces": {
- "version": "3.0.2",
+ "node_modules/@storybook/addon-outline": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
"dependencies": {
- "fill-range": "^7.0.1"
+ "@storybook/global": "^5.0.0",
+ "ts-dedent": "^2.0.0"
},
- "engines": {
- "node": ">=8"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
}
},
- "node_modules/brorand": {
- "version": "1.1.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/browser-assert": {
- "version": "1.2.1",
- "dev": true
- },
- "node_modules/browser-process-hrtime": {
- "version": "1.0.0",
- "dev": true,
- "license": "BSD-2-Clause"
- },
- "node_modules/browserify-aes": {
- "version": "1.2.0",
+ "node_modules/@storybook/addon-toolbars": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
- "dependencies": {
- "buffer-xor": "^1.0.3",
- "cipher-base": "^1.0.0",
- "create-hash": "^1.1.0",
- "evp_bytestokey": "^1.0.3",
- "inherits": "^2.0.1",
- "safe-buffer": "^5.0.1"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
}
},
- "node_modules/browserify-cipher": {
- "version": "1.0.1",
+ "node_modules/@storybook/addon-viewport": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
"dependencies": {
- "browserify-aes": "^1.0.4",
- "browserify-des": "^1.0.0",
- "evp_bytestokey": "^1.0.0"
+ "memoizerific": "^1.11.3"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
}
},
- "node_modules/browserify-des": {
- "version": "1.0.2",
+ "node_modules/@storybook/addons": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
"dependencies": {
- "cipher-base": "^1.0.1",
- "des.js": "^1.0.0",
- "inherits": "^2.0.1",
- "safe-buffer": "^5.1.2"
+ "@storybook/manager-api": "7.6.17",
+ "@storybook/preview-api": "7.6.17",
+ "@storybook/types": "7.6.17"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
}
},
- "node_modules/browserify-rsa": {
- "version": "4.1.0",
+ "node_modules/@storybook/blocks": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
"dependencies": {
- "bn.js": "^5.0.0",
- "randombytes": "^2.0.1"
+ "@storybook/channels": "7.6.17",
+ "@storybook/client-logger": "7.6.17",
+ "@storybook/components": "7.6.17",
+ "@storybook/core-events": "7.6.17",
+ "@storybook/csf": "^0.1.2",
+ "@storybook/docs-tools": "7.6.17",
+ "@storybook/global": "^5.0.0",
+ "@storybook/manager-api": "7.6.17",
+ "@storybook/preview-api": "7.6.17",
+ "@storybook/theming": "7.6.17",
+ "@storybook/types": "7.6.17",
+ "@types/lodash": "^4.14.167",
+ "color-convert": "^2.0.1",
+ "dequal": "^2.0.2",
+ "lodash": "^4.17.21",
+ "markdown-to-jsx": "^7.1.8",
+ "memoizerific": "^1.11.3",
+ "polished": "^4.2.2",
+ "react-colorful": "^5.1.2",
+ "telejson": "^7.2.0",
+ "tocbot": "^4.20.1",
+ "ts-dedent": "^2.0.0",
+ "util-deprecate": "^1.0.2"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
},
- "node_modules/browserify-sign": {
- "version": "4.2.1",
+ "node_modules/@storybook/builder-manager": {
+ "version": "7.6.17",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "bn.js": "^5.1.1",
- "browserify-rsa": "^4.0.1",
- "create-hash": "^1.2.0",
- "create-hmac": "^1.1.7",
- "elliptic": "^6.5.3",
- "inherits": "^2.0.4",
- "parse-asn1": "^5.1.5",
- "readable-stream": "^3.6.0",
- "safe-buffer": "^5.2.0"
+ "@fal-works/esbuild-plugin-global-externals": "^2.1.2",
+ "@storybook/core-common": "7.6.17",
+ "@storybook/manager": "7.6.17",
+ "@storybook/node-logger": "7.6.17",
+ "@types/ejs": "^3.1.1",
+ "@types/find-cache-dir": "^3.2.1",
+ "@yarnpkg/esbuild-plugin-pnp": "^3.0.0-rc.10",
+ "browser-assert": "^1.2.1",
+ "ejs": "^3.1.8",
+ "esbuild": "^0.18.0",
+ "esbuild-plugin-alias": "^0.2.1",
+ "express": "^4.17.3",
+ "find-cache-dir": "^3.0.0",
+ "fs-extra": "^11.1.0",
+ "process": "^0.11.10",
+ "util": "^0.12.4"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
}
},
- "node_modules/browserify-sign/node_modules/safe-buffer": {
- "version": "5.2.1",
+ "node_modules/@storybook/builder-manager/node_modules/@esbuild/linux-loong64": {
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz",
+ "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==",
+ "cpu": [
+ "loong64"
+ ],
"dev": true,
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
+ "optional": true,
+ "os": [
+ "linux"
],
- "license": "MIT"
+ "engines": {
+ "node": ">=12"
+ }
},
- "node_modules/browserify-zlib": {
- "version": "0.2.0",
+ "node_modules/@storybook/builder-manager/node_modules/esbuild": {
+ "version": "0.18.20",
"dev": true,
+ "hasInstallScript": true,
"license": "MIT",
- "dependencies": {
- "pako": "~1.0.5"
+ "bin": {
+ "esbuild": "bin/esbuild"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "optionalDependencies": {
+ "@esbuild/android-arm": "0.18.20",
+ "@esbuild/android-arm64": "0.18.20",
+ "@esbuild/android-x64": "0.18.20",
+ "@esbuild/darwin-arm64": "0.18.20",
+ "@esbuild/darwin-x64": "0.18.20",
+ "@esbuild/freebsd-arm64": "0.18.20",
+ "@esbuild/freebsd-x64": "0.18.20",
+ "@esbuild/linux-arm": "0.18.20",
+ "@esbuild/linux-arm64": "0.18.20",
+ "@esbuild/linux-ia32": "0.18.20",
+ "@esbuild/linux-loong64": "0.18.20",
+ "@esbuild/linux-mips64el": "0.18.20",
+ "@esbuild/linux-ppc64": "0.18.20",
+ "@esbuild/linux-riscv64": "0.18.20",
+ "@esbuild/linux-s390x": "0.18.20",
+ "@esbuild/linux-x64": "0.18.20",
+ "@esbuild/netbsd-x64": "0.18.20",
+ "@esbuild/openbsd-x64": "0.18.20",
+ "@esbuild/sunos-x64": "0.18.20",
+ "@esbuild/win32-arm64": "0.18.20",
+ "@esbuild/win32-ia32": "0.18.20",
+ "@esbuild/win32-x64": "0.18.20"
}
},
- "node_modules/browserslist": {
- "version": "4.21.5",
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/browserslist"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "caniuse-lite": "^1.0.30001449",
- "electron-to-chromium": "^1.4.284",
- "node-releases": "^2.0.8",
- "update-browserslist-db": "^1.0.10"
+ "node_modules/@storybook/builder-webpack5": {
+ "version": "7.6.17",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/core": "^7.23.2",
+ "@storybook/channels": "7.6.17",
+ "@storybook/client-logger": "7.6.17",
+ "@storybook/core-common": "7.6.17",
+ "@storybook/core-events": "7.6.17",
+ "@storybook/core-webpack": "7.6.17",
+ "@storybook/node-logger": "7.6.17",
+ "@storybook/preview": "7.6.17",
+ "@storybook/preview-api": "7.6.17",
+ "@swc/core": "^1.3.82",
+ "@types/node": "^18.0.0",
+ "@types/semver": "^7.3.4",
+ "babel-loader": "^9.0.0",
+ "browser-assert": "^1.2.1",
+ "case-sensitive-paths-webpack-plugin": "^2.4.0",
+ "cjs-module-lexer": "^1.2.3",
+ "constants-browserify": "^1.0.0",
+ "css-loader": "^6.7.1",
+ "es-module-lexer": "^1.4.1",
+ "express": "^4.17.3",
+ "fork-ts-checker-webpack-plugin": "^8.0.0",
+ "fs-extra": "^11.1.0",
+ "html-webpack-plugin": "^5.5.0",
+ "magic-string": "^0.30.5",
+ "path-browserify": "^1.0.1",
+ "process": "^0.11.10",
+ "semver": "^7.3.7",
+ "style-loader": "^3.3.1",
+ "swc-loader": "^0.2.3",
+ "terser-webpack-plugin": "^5.3.1",
+ "ts-dedent": "^2.0.0",
+ "url": "^0.11.0",
+ "util": "^0.12.4",
+ "util-deprecate": "^1.0.2",
+ "webpack": "5",
+ "webpack-dev-middleware": "^6.1.1",
+ "webpack-hot-middleware": "^2.25.1",
+ "webpack-virtual-modules": "^0.5.0"
},
- "bin": {
- "browserslist": "cli.js"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
},
- "engines": {
- "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
}
},
- "node_modules/bs-logger": {
- "version": "0.2.6",
+ "node_modules/@storybook/builder-webpack5/node_modules/ajv": {
+ "version": "8.12.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "fast-json-stable-stringify": "2.x"
+ "fast-deep-equal": "^3.1.1",
+ "json-schema-traverse": "^1.0.0",
+ "require-from-string": "^2.0.2",
+ "uri-js": "^4.2.2"
},
- "engines": {
- "node": ">= 6"
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/epoberezkin"
}
},
- "node_modules/bser": {
- "version": "2.1.1",
+ "node_modules/@storybook/builder-webpack5/node_modules/ajv-keywords": {
+ "version": "5.1.0",
"dev": true,
- "license": "Apache-2.0",
+ "license": "MIT",
"dependencies": {
- "node-int64": "^0.4.0"
+ "fast-deep-equal": "^3.1.3"
+ },
+ "peerDependencies": {
+ "ajv": "^8.8.2"
}
},
- "node_modules/buffer": {
- "version": "6.0.3",
+ "node_modules/@storybook/builder-webpack5/node_modules/babel-loader": {
+ "version": "9.1.3",
"dev": true,
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
"license": "MIT",
"dependencies": {
- "base64-js": "^1.3.1",
- "ieee754": "^1.2.1"
+ "find-cache-dir": "^4.0.0",
+ "schema-utils": "^4.0.0"
+ },
+ "engines": {
+ "node": ">= 14.15.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.12.0",
+ "webpack": ">=5"
}
},
- "node_modules/buffer-crc32": {
- "version": "0.2.13",
+ "node_modules/@storybook/builder-webpack5/node_modules/find-cache-dir": {
+ "version": "4.0.0",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "common-path-prefix": "^3.0.0",
+ "pkg-dir": "^7.0.0"
+ },
"engines": {
- "node": "*"
+ "node": ">=14.16"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/buffer-equal-constant-time": {
- "version": "1.0.1",
- "dev": true,
- "license": "BSD-3-Clause"
- },
- "node_modules/buffer-from": {
- "version": "1.1.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/buffer-xor": {
- "version": "1.0.3",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/builtin-status-codes": {
- "version": "3.0.0",
+ "node_modules/@storybook/builder-webpack5/node_modules/find-up": {
+ "version": "6.3.0",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "dependencies": {
+ "locate-path": "^7.1.0",
+ "path-exists": "^5.0.0"
+ },
+ "engines": {
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
},
- "node_modules/builtins": {
- "version": "1.0.3",
+ "node_modules/@storybook/builder-webpack5/node_modules/json-schema-traverse": {
+ "version": "1.0.0",
"dev": true,
"license": "MIT"
},
- "node_modules/bundle-require": {
- "version": "3.0.4",
+ "node_modules/@storybook/builder-webpack5/node_modules/locate-path": {
+ "version": "7.2.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "load-tsconfig": "^0.2.0"
+ "p-locate": "^6.0.0"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
- "peerDependencies": {
- "esbuild": ">=0.13"
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/byte-size": {
- "version": "7.0.1",
+ "node_modules/@storybook/builder-webpack5/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
+ "dependencies": {
+ "yallist": "^4.0.0"
+ },
"engines": {
"node": ">=10"
}
},
- "node_modules/bytes": {
- "version": "3.0.0",
+ "node_modules/@storybook/builder-webpack5/node_modules/p-limit": {
+ "version": "4.0.0",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/c8": {
- "version": "7.11.0",
- "license": "ISC",
"dependencies": {
- "@bcoe/v8-coverage": "^0.2.3",
- "@istanbuljs/schema": "^0.1.2",
- "find-up": "^5.0.0",
- "foreground-child": "^2.0.0",
- "istanbul-lib-coverage": "^3.0.1",
- "istanbul-lib-report": "^3.0.0",
- "istanbul-reports": "^3.0.2",
- "rimraf": "^3.0.0",
- "test-exclude": "^6.0.0",
- "v8-to-istanbul": "^8.0.0",
- "yargs": "^16.2.0",
- "yargs-parser": "^20.2.7"
- },
- "bin": {
- "c8": "bin/c8.js"
+ "yocto-queue": "^1.0.0"
},
"engines": {
- "node": ">=10.12.0"
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/c8/node_modules/yargs-parser": {
- "version": "20.2.9",
- "license": "ISC",
+ "node_modules/@storybook/builder-webpack5/node_modules/p-locate": {
+ "version": "6.0.0",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "p-limit": "^4.0.0"
+ },
"engines": {
- "node": ">=10"
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/cac": {
- "version": "6.7.12",
+ "node_modules/@storybook/builder-webpack5/node_modules/path-exists": {
+ "version": "5.0.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=8"
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
}
},
- "node_modules/cacache": {
- "version": "15.3.0",
+ "node_modules/@storybook/builder-webpack5/node_modules/pkg-dir": {
+ "version": "7.0.0",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "@npmcli/fs": "^1.0.0",
- "@npmcli/move-file": "^1.0.1",
- "chownr": "^2.0.0",
- "fs-minipass": "^2.0.0",
- "glob": "^7.1.4",
- "infer-owner": "^1.0.4",
- "lru-cache": "^6.0.0",
- "minipass": "^3.1.1",
- "minipass-collect": "^1.0.2",
- "minipass-flush": "^1.0.5",
- "minipass-pipeline": "^1.2.2",
- "mkdirp": "^1.0.3",
- "p-map": "^4.0.0",
- "promise-inflight": "^1.0.1",
- "rimraf": "^3.0.2",
- "ssri": "^8.0.1",
- "tar": "^6.0.2",
- "unique-filename": "^1.1.1"
+ "find-up": "^6.3.0"
},
"engines": {
- "node": ">= 10"
+ "node": ">=14.16"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/cacache/node_modules/p-map": {
- "version": "4.0.0",
+ "node_modules/@storybook/builder-webpack5/node_modules/schema-utils": {
+ "version": "4.2.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "aggregate-error": "^3.0.0"
+ "@types/json-schema": "^7.0.9",
+ "ajv": "^8.9.0",
+ "ajv-formats": "^2.1.1",
+ "ajv-keywords": "^5.1.0"
},
"engines": {
- "node": ">=10"
+ "node": ">= 12.13.0"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
}
},
- "node_modules/cache-base": {
- "version": "1.0.1",
+ "node_modules/@storybook/builder-webpack5/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "collection-visit": "^1.0.0",
- "component-emitter": "^1.2.1",
- "get-value": "^2.0.6",
- "has-value": "^1.0.0",
- "isobject": "^3.0.1",
- "set-value": "^2.0.0",
- "to-object-path": "^0.3.0",
- "union-value": "^1.0.0",
- "unset-value": "^1.0.0"
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10"
}
},
- "node_modules/cacheable-request": {
- "version": "6.1.0",
+ "node_modules/@storybook/builder-webpack5/node_modules/yallist": {
+ "version": "4.0.0",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/@storybook/builder-webpack5/node_modules/yocto-queue": {
+ "version": "1.0.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "clone-response": "^1.0.2",
- "get-stream": "^5.1.0",
- "http-cache-semantics": "^4.0.0",
- "keyv": "^3.0.0",
- "lowercase-keys": "^2.0.0",
- "normalize-url": "^4.1.0",
- "responselike": "^1.0.2"
- },
"engines": {
- "node": ">=8"
+ "node": ">=12.20"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/cacheable-request/node_modules/get-stream": {
- "version": "5.2.0",
+ "node_modules/@storybook/channels": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
"dependencies": {
- "pump": "^3.0.0"
+ "@storybook/client-logger": "7.6.17",
+ "@storybook/core-events": "7.6.17",
+ "@storybook/global": "^5.0.0",
+ "qs": "^6.10.0",
+ "telejson": "^7.2.0",
+ "tiny-invariant": "^1.3.1"
},
- "engines": {
- "node": ">=8"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ }
+ },
+ "node_modules/@storybook/cli": {
+ "version": "7.6.17",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/core": "^7.23.2",
+ "@babel/preset-env": "^7.23.2",
+ "@babel/types": "^7.23.0",
+ "@ndelangen/get-tarball": "^3.0.7",
+ "@storybook/codemod": "7.6.17",
+ "@storybook/core-common": "7.6.17",
+ "@storybook/core-events": "7.6.17",
+ "@storybook/core-server": "7.6.17",
+ "@storybook/csf-tools": "7.6.17",
+ "@storybook/node-logger": "7.6.17",
+ "@storybook/telemetry": "7.6.17",
+ "@storybook/types": "7.6.17",
+ "@types/semver": "^7.3.4",
+ "@yarnpkg/fslib": "2.10.3",
+ "@yarnpkg/libzip": "2.3.0",
+ "chalk": "^4.1.0",
+ "commander": "^6.2.1",
+ "cross-spawn": "^7.0.3",
+ "detect-indent": "^6.1.0",
+ "envinfo": "^7.7.3",
+ "execa": "^5.0.0",
+ "express": "^4.17.3",
+ "find-up": "^5.0.0",
+ "fs-extra": "^11.1.0",
+ "get-npm-tarball-url": "^2.0.3",
+ "get-port": "^5.1.1",
+ "giget": "^1.0.0",
+ "globby": "^11.0.2",
+ "jscodeshift": "^0.15.1",
+ "leven": "^3.1.0",
+ "ora": "^5.4.1",
+ "prettier": "^2.8.0",
+ "prompts": "^2.4.0",
+ "puppeteer-core": "^2.1.1",
+ "read-pkg-up": "^7.0.1",
+ "semver": "^7.3.7",
+ "strip-json-comments": "^3.0.1",
+ "tempy": "^1.0.1",
+ "ts-dedent": "^2.0.0",
+ "util-deprecate": "^1.0.2"
+ },
+ "bin": {
+ "getstorybook": "bin/index.js",
+ "sb": "bin/index.js"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
}
},
- "node_modules/cacheable-request/node_modules/lowercase-keys": {
- "version": "2.0.0",
+ "node_modules/@storybook/cli/node_modules/commander": {
+ "version": "6.2.1",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=8"
+ "node": ">= 6"
}
},
- "node_modules/cacheable-request/node_modules/normalize-url": {
- "version": "4.5.1",
+ "node_modules/@storybook/cli/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
+ "dependencies": {
+ "yallist": "^4.0.0"
+ },
"engines": {
- "node": ">=8"
+ "node": ">=10"
}
},
- "node_modules/caching-transform": {
- "version": "4.0.0",
+ "node_modules/@storybook/cli/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "hasha": "^5.0.0",
- "make-dir": "^3.0.0",
- "package-hash": "^4.0.0",
- "write-file-atomic": "^3.0.0"
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
},
"engines": {
- "node": ">=8"
+ "node": ">=10"
}
},
- "node_modules/caching-transform/node_modules/make-dir": {
- "version": "3.1.0",
+ "node_modules/@storybook/cli/node_modules/yallist": {
+ "version": "4.0.0",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/@storybook/client-logger": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
"dependencies": {
- "semver": "^6.0.0"
- },
- "engines": {
- "node": ">=8"
+ "@storybook/global": "^5.0.0"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
}
},
- "node_modules/call-bind": {
- "version": "1.0.2",
+ "node_modules/@storybook/codemod": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
"dependencies": {
- "function-bind": "^1.1.1",
- "get-intrinsic": "^1.0.2"
+ "@babel/core": "^7.23.2",
+ "@babel/preset-env": "^7.23.2",
+ "@babel/types": "^7.23.0",
+ "@storybook/csf": "^0.1.2",
+ "@storybook/csf-tools": "7.6.17",
+ "@storybook/node-logger": "7.6.17",
+ "@storybook/types": "7.6.17",
+ "@types/cross-spawn": "^6.0.2",
+ "cross-spawn": "^7.0.3",
+ "globby": "^11.0.2",
+ "jscodeshift": "^0.15.1",
+ "lodash": "^4.17.21",
+ "prettier": "^2.8.0",
+ "recast": "^0.23.1"
},
"funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
}
},
- "node_modules/call-me-maybe": {
- "version": "1.0.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/callsites": {
- "version": "3.1.0",
+ "node_modules/@storybook/components": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=6"
+ "dependencies": {
+ "@radix-ui/react-select": "^1.2.2",
+ "@radix-ui/react-toolbar": "^1.0.4",
+ "@storybook/client-logger": "7.6.17",
+ "@storybook/csf": "^0.1.2",
+ "@storybook/global": "^5.0.0",
+ "@storybook/theming": "7.6.17",
+ "@storybook/types": "7.6.17",
+ "memoizerific": "^1.11.3",
+ "use-resize-observer": "^9.1.0",
+ "util-deprecate": "^1.0.2"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
},
- "node_modules/camel-case": {
- "version": "4.1.2",
+ "node_modules/@storybook/core-client": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
"dependencies": {
- "pascal-case": "^3.1.2",
- "tslib": "^2.0.3"
+ "@storybook/client-logger": "7.6.17",
+ "@storybook/preview-api": "7.6.17"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
}
},
- "node_modules/camelcase": {
- "version": "6.3.0",
+ "node_modules/@storybook/core-common": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=10"
+ "dependencies": {
+ "@storybook/core-events": "7.6.17",
+ "@storybook/node-logger": "7.6.17",
+ "@storybook/types": "7.6.17",
+ "@types/find-cache-dir": "^3.2.1",
+ "@types/node": "^18.0.0",
+ "@types/node-fetch": "^2.6.4",
+ "@types/pretty-hrtime": "^1.0.0",
+ "chalk": "^4.1.0",
+ "esbuild": "^0.18.0",
+ "esbuild-register": "^3.5.0",
+ "file-system-cache": "2.3.0",
+ "find-cache-dir": "^3.0.0",
+ "find-up": "^5.0.0",
+ "fs-extra": "^11.1.0",
+ "glob": "^10.0.0",
+ "handlebars": "^4.7.7",
+ "lazy-universal-dotenv": "^4.0.0",
+ "node-fetch": "^2.0.0",
+ "picomatch": "^2.3.0",
+ "pkg-dir": "^5.0.0",
+ "pretty-hrtime": "^1.0.3",
+ "resolve-from": "^5.0.0",
+ "ts-dedent": "^2.0.0"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
}
},
- "node_modules/camelcase-css": {
- "version": "2.0.1",
+ "node_modules/@storybook/core-common/node_modules/@esbuild/linux-loong64": {
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz",
+ "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==",
+ "cpu": [
+ "loong64"
+ ],
"dev": true,
- "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
"engines": {
- "node": ">= 6"
+ "node": ">=12"
}
},
- "node_modules/camelcase-keys": {
- "version": "6.2.2",
+ "node_modules/@storybook/core-common/node_modules/brace-expansion": {
+ "version": "2.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "camelcase": "^5.3.1",
- "map-obj": "^4.0.0",
- "quick-lru": "^4.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "balanced-match": "^1.0.0"
}
},
- "node_modules/camelcase-keys/node_modules/camelcase": {
- "version": "5.3.1",
+ "node_modules/@storybook/core-common/node_modules/esbuild": {
+ "version": "0.18.20",
"dev": true,
+ "hasInstallScript": true,
"license": "MIT",
+ "bin": {
+ "esbuild": "bin/esbuild"
+ },
"engines": {
- "node": ">=6"
- }
- },
- "node_modules/can-bind-to-host": {
- "version": "1.1.2",
+ "node": ">=12"
+ },
+ "optionalDependencies": {
+ "@esbuild/android-arm": "0.18.20",
+ "@esbuild/android-arm64": "0.18.20",
+ "@esbuild/android-x64": "0.18.20",
+ "@esbuild/darwin-arm64": "0.18.20",
+ "@esbuild/darwin-x64": "0.18.20",
+ "@esbuild/freebsd-arm64": "0.18.20",
+ "@esbuild/freebsd-x64": "0.18.20",
+ "@esbuild/linux-arm": "0.18.20",
+ "@esbuild/linux-arm64": "0.18.20",
+ "@esbuild/linux-ia32": "0.18.20",
+ "@esbuild/linux-loong64": "0.18.20",
+ "@esbuild/linux-mips64el": "0.18.20",
+ "@esbuild/linux-ppc64": "0.18.20",
+ "@esbuild/linux-riscv64": "0.18.20",
+ "@esbuild/linux-s390x": "0.18.20",
+ "@esbuild/linux-x64": "0.18.20",
+ "@esbuild/netbsd-x64": "0.18.20",
+ "@esbuild/openbsd-x64": "0.18.20",
+ "@esbuild/sunos-x64": "0.18.20",
+ "@esbuild/win32-arm64": "0.18.20",
+ "@esbuild/win32-ia32": "0.18.20",
+ "@esbuild/win32-x64": "0.18.20"
+ }
+ },
+ "node_modules/@storybook/core-common/node_modules/foreground-child": {
+ "version": "3.1.1",
"dev": true,
- "license": "MIT",
- "bin": {
- "can-bind-to-host": "dist/bin/can-bind-to-host.js"
+ "license": "ISC",
+ "dependencies": {
+ "cross-spawn": "^7.0.0",
+ "signal-exit": "^4.0.1"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/caniuse-lite": {
- "version": "1.0.30001449",
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
- }
- ],
- "license": "CC-BY-4.0"
- },
- "node_modules/capital-case": {
- "version": "1.0.4",
+ "node_modules/@storybook/core-common/node_modules/glob": {
+ "version": "10.3.12",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "no-case": "^3.0.4",
- "tslib": "^2.0.3",
- "upper-case-first": "^2.0.2"
+ "foreground-child": "^3.1.0",
+ "jackspeak": "^2.3.6",
+ "minimatch": "^9.0.1",
+ "minipass": "^7.0.4",
+ "path-scurry": "^1.10.2"
+ },
+ "bin": {
+ "glob": "dist/esm/bin.mjs"
+ },
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/capture-exit": {
- "version": "2.0.0",
+ "node_modules/@storybook/core-common/node_modules/minimatch": {
+ "version": "9.0.4",
"dev": true,
"license": "ISC",
"dependencies": {
- "rsvp": "^4.8.4"
+ "brace-expansion": "^2.0.1"
},
"engines": {
- "node": "6.* || 8.* || >= 10.*"
+ "node": ">=16 || 14 >=14.17"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/case-sensitive-paths-webpack-plugin": {
- "version": "2.4.0",
+ "node_modules/@storybook/core-common/node_modules/minipass": {
+ "version": "7.0.4",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"engines": {
- "node": ">=4"
+ "node": ">=16 || 14 >=14.17"
}
},
- "node_modules/caseless": {
- "version": "0.12.0",
+ "node_modules/@storybook/core-common/node_modules/signal-exit": {
+ "version": "4.1.0",
"dev": true,
- "license": "Apache-2.0"
+ "license": "ISC",
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
},
- "node_modules/ccount": {
- "version": "1.1.0",
+ "node_modules/@storybook/core-events": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "ts-dedent": "^2.0.0"
+ },
"funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
}
},
- "node_modules/center-align": {
- "version": "0.1.3",
+ "node_modules/@storybook/core-server": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
"dependencies": {
- "align-text": "^0.1.3",
- "lazy-cache": "^1.0.3"
+ "@aw-web-design/x-default-browser": "1.4.126",
+ "@discoveryjs/json-ext": "^0.5.3",
+ "@storybook/builder-manager": "7.6.17",
+ "@storybook/channels": "7.6.17",
+ "@storybook/core-common": "7.6.17",
+ "@storybook/core-events": "7.6.17",
+ "@storybook/csf": "^0.1.2",
+ "@storybook/csf-tools": "7.6.17",
+ "@storybook/docs-mdx": "^0.1.0",
+ "@storybook/global": "^5.0.0",
+ "@storybook/manager": "7.6.17",
+ "@storybook/node-logger": "7.6.17",
+ "@storybook/preview-api": "7.6.17",
+ "@storybook/telemetry": "7.6.17",
+ "@storybook/types": "7.6.17",
+ "@types/detect-port": "^1.3.0",
+ "@types/node": "^18.0.0",
+ "@types/pretty-hrtime": "^1.0.0",
+ "@types/semver": "^7.3.4",
+ "better-opn": "^3.0.2",
+ "chalk": "^4.1.0",
+ "cli-table3": "^0.6.1",
+ "compression": "^1.7.4",
+ "detect-port": "^1.3.0",
+ "express": "^4.17.3",
+ "fs-extra": "^11.1.0",
+ "globby": "^11.0.2",
+ "ip": "^2.0.1",
+ "lodash": "^4.17.21",
+ "open": "^8.4.0",
+ "pretty-hrtime": "^1.0.3",
+ "prompts": "^2.4.0",
+ "read-pkg-up": "^7.0.1",
+ "semver": "^7.3.7",
+ "telejson": "^7.2.0",
+ "tiny-invariant": "^1.3.1",
+ "ts-dedent": "^2.0.0",
+ "util": "^0.12.4",
+ "util-deprecate": "^1.0.2",
+ "watchpack": "^2.2.0",
+ "ws": "^8.2.3"
},
- "engines": {
- "node": ">=0.10.0"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
}
},
- "node_modules/chalk": {
- "version": "2.4.2",
- "license": "MIT",
+ "node_modules/@storybook/core-server/node_modules/lru-cache": {
+ "version": "6.0.0",
+ "dev": true,
+ "license": "ISC",
"dependencies": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
+ "yallist": "^4.0.0"
},
"engines": {
- "node": ">=4"
+ "node": ">=10"
}
},
- "node_modules/chalk/node_modules/escape-string-regexp": {
- "version": "1.0.5",
+ "node_modules/@storybook/core-server/node_modules/open": {
+ "version": "8.4.2",
+ "dev": true,
"license": "MIT",
+ "dependencies": {
+ "define-lazy-prop": "^2.0.0",
+ "is-docker": "^2.1.1",
+ "is-wsl": "^2.2.0"
+ },
"engines": {
- "node": ">=0.8.0"
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/change-case": {
- "version": "4.1.2",
+ "node_modules/@storybook/core-server/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "camel-case": "^4.1.2",
- "capital-case": "^1.0.4",
- "constant-case": "^3.0.4",
- "dot-case": "^3.0.4",
- "header-case": "^2.0.4",
- "no-case": "^3.0.4",
- "param-case": "^3.0.4",
- "pascal-case": "^3.1.2",
- "path-case": "^3.0.4",
- "sentence-case": "^3.0.4",
- "snake-case": "^3.0.4",
- "tslib": "^2.0.3"
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/char-regex": {
- "version": "1.0.2",
+ "node_modules/@storybook/core-server/node_modules/ws": {
+ "version": "8.16.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=10"
+ "node": ">=10.0.0"
+ },
+ "peerDependencies": {
+ "bufferutil": "^4.0.1",
+ "utf-8-validate": ">=5.0.2"
+ },
+ "peerDependenciesMeta": {
+ "bufferutil": {
+ "optional": true
+ },
+ "utf-8-validate": {
+ "optional": true
+ }
}
},
- "node_modules/character-entities": {
- "version": "1.2.4",
+ "node_modules/@storybook/core-server/node_modules/yallist": {
+ "version": "4.0.0",
"dev": true,
- "license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
+ "license": "ISC"
},
- "node_modules/character-entities-html4": {
- "version": "2.1.0",
+ "node_modules/@storybook/core-webpack": {
+ "version": "7.6.17",
+ "dev": true,
"license": "MIT",
+ "dependencies": {
+ "@storybook/core-common": "7.6.17",
+ "@storybook/node-logger": "7.6.17",
+ "@storybook/types": "7.6.17",
+ "@types/node": "^18.0.0",
+ "ts-dedent": "^2.0.0"
+ },
"funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
}
},
- "node_modules/character-entities-legacy": {
- "version": "1.1.4",
+ "node_modules/@storybook/csf": {
+ "version": "0.1.3",
"dev": true,
"license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "dependencies": {
+ "type-fest": "^2.19.0"
}
},
- "node_modules/character-parser": {
- "version": "2.2.0",
+ "node_modules/@storybook/csf-plugin": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-regex": "^1.0.3"
+ "@storybook/csf-tools": "7.6.17",
+ "unplugin": "^1.3.1"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
}
},
- "node_modules/character-reference-invalid": {
- "version": "1.1.4",
+ "node_modules/@storybook/csf-tools": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "@babel/generator": "^7.23.0",
+ "@babel/parser": "^7.23.0",
+ "@babel/traverse": "^7.23.2",
+ "@babel/types": "^7.23.0",
+ "@storybook/csf": "^0.1.2",
+ "@storybook/types": "7.6.17",
+ "fs-extra": "^11.1.0",
+ "recast": "^0.23.1",
+ "ts-dedent": "^2.0.0"
+ },
"funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
}
},
- "node_modules/chardet": {
- "version": "0.7.0",
+ "node_modules/@storybook/docs-mdx": {
+ "version": "0.1.0",
"dev": true,
"license": "MIT"
},
- "node_modules/cheerio": {
- "version": "1.0.0-rc.10",
+ "node_modules/@storybook/docs-tools": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
"dependencies": {
- "cheerio-select": "^1.5.0",
- "dom-serializer": "^1.3.2",
- "domhandler": "^4.2.0",
- "htmlparser2": "^6.1.0",
- "parse5": "^6.0.1",
- "parse5-htmlparser2-tree-adapter": "^6.0.1",
- "tslib": "^2.2.0"
- },
- "engines": {
- "node": ">= 6"
+ "@storybook/core-common": "7.6.17",
+ "@storybook/preview-api": "7.6.17",
+ "@storybook/types": "7.6.17",
+ "@types/doctrine": "^0.0.3",
+ "assert": "^2.1.0",
+ "doctrine": "^3.0.0",
+ "lodash": "^4.17.21"
},
"funding": {
- "url": "https://github.com/cheeriojs/cheerio?sponsor=1"
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
}
},
- "node_modules/cheerio-select": {
- "version": "1.5.0",
+ "node_modules/@storybook/expect": {
+ "version": "28.1.3-5",
+ "resolved": "https://registry.npmjs.org/@storybook/expect/-/expect-28.1.3-5.tgz",
+ "integrity": "sha512-lS1oJnY1qTAxnH87C765NdfvGhksA6hBcbUVI5CHiSbNsEtr456wtg/z+dT9XlPriq1D5t2SgfNL9dBAoIGyIA==",
"dev": true,
- "license": "BSD-2-Clause",
"dependencies": {
- "css-select": "^4.1.3",
- "css-what": "^5.0.1",
- "domelementtype": "^2.2.0",
- "domhandler": "^4.2.0",
- "domutils": "^2.7.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/fb55"
+ "@types/jest": "28.1.3"
}
},
- "node_modules/chokidar": {
- "version": "3.5.3",
+ "node_modules/@storybook/expect/node_modules/@jest/schemas": {
+ "version": "28.1.3",
"dev": true,
- "funding": [
- {
- "type": "individual",
- "url": "https://paulmillr.com/funding/"
- }
- ],
"license": "MIT",
"dependencies": {
- "anymatch": "~3.1.2",
- "braces": "~3.0.2",
- "glob-parent": "~5.1.2",
- "is-binary-path": "~2.1.0",
- "is-glob": "~4.0.1",
- "normalize-path": "~3.0.0",
- "readdirp": "~3.6.0"
- },
- "engines": {
- "node": ">= 8.10.0"
- },
- "optionalDependencies": {
- "fsevents": "~2.3.2"
- }
- },
- "node_modules/chokidar/node_modules/glob-parent": {
- "version": "5.1.2",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "is-glob": "^4.0.1"
+ "@sinclair/typebox": "^0.24.1"
},
"engines": {
- "node": ">= 6"
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "node_modules/chownr": {
- "version": "2.0.0",
+ "node_modules/@storybook/expect/node_modules/@sinclair/typebox": {
+ "version": "0.24.51",
"dev": true,
- "license": "ISC",
- "engines": {
- "node": ">=10"
- }
+ "license": "MIT"
},
- "node_modules/chromatic": {
- "version": "6.5.1",
+ "node_modules/@storybook/expect/node_modules/@types/jest": {
+ "version": "28.1.3",
"dev": true,
"license": "MIT",
- "bin": {
- "chroma": "bin/main.cjs",
- "chromatic": "bin/main.cjs",
- "chromatic-cli": "bin/main.cjs"
+ "dependencies": {
+ "jest-matcher-utils": "^28.0.0",
+ "pretty-format": "^28.0.0"
}
},
- "node_modules/chrome-trace-event": {
- "version": "1.0.3",
+ "node_modules/@storybook/expect/node_modules/ansi-styles": {
+ "version": "5.2.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=6.0"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/ci-info": {
- "version": "3.3.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/cipher-base": {
- "version": "1.0.4",
+ "node_modules/@storybook/expect/node_modules/diff-sequences": {
+ "version": "28.1.1",
"dev": true,
"license": "MIT",
- "dependencies": {
- "inherits": "^2.0.1",
- "safe-buffer": "^5.0.1"
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "node_modules/cjs-module-lexer": {
- "version": "1.2.3",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/class-utils": {
- "version": "0.3.6",
+ "node_modules/@storybook/expect/node_modules/jest-diff": {
+ "version": "28.1.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "arr-union": "^3.1.0",
- "define-property": "^0.2.5",
- "isobject": "^3.0.0",
- "static-extend": "^0.1.1"
+ "chalk": "^4.0.0",
+ "diff-sequences": "^28.1.1",
+ "jest-get-type": "^28.0.2",
+ "pretty-format": "^28.1.3"
},
"engines": {
- "node": ">=0.10.0"
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "node_modules/class-utils/node_modules/define-property": {
- "version": "0.2.5",
+ "node_modules/@storybook/expect/node_modules/jest-get-type": {
+ "version": "28.0.2",
"dev": true,
"license": "MIT",
- "dependencies": {
- "is-descriptor": "^0.1.0"
- },
"engines": {
- "node": ">=0.10.0"
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "node_modules/class-utils/node_modules/is-accessor-descriptor": {
- "version": "0.1.6",
+ "node_modules/@storybook/expect/node_modules/jest-matcher-utils": {
+ "version": "28.1.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "kind-of": "^3.0.2"
+ "chalk": "^4.0.0",
+ "jest-diff": "^28.1.3",
+ "jest-get-type": "^28.0.2",
+ "pretty-format": "^28.1.3"
},
"engines": {
- "node": ">=0.10.0"
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "node_modules/class-utils/node_modules/is-accessor-descriptor/node_modules/kind-of": {
- "version": "3.2.2",
+ "node_modules/@storybook/expect/node_modules/pretty-format": {
+ "version": "28.1.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-buffer": "^1.1.5"
+ "@jest/schemas": "^28.1.3",
+ "ansi-regex": "^5.0.1",
+ "ansi-styles": "^5.0.0",
+ "react-is": "^18.0.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "node_modules/class-utils/node_modules/is-buffer": {
- "version": "1.1.6",
+ "node_modules/@storybook/expect/node_modules/react-is": {
+ "version": "18.2.0",
"dev": true,
"license": "MIT"
},
- "node_modules/class-utils/node_modules/is-data-descriptor": {
- "version": "0.1.4",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "kind-of": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/class-utils/node_modules/is-data-descriptor/node_modules/kind-of": {
- "version": "3.2.2",
+ "node_modules/@storybook/global": {
+ "version": "5.0.0",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
- }
+ "license": "MIT"
},
- "node_modules/class-utils/node_modules/is-descriptor": {
- "version": "0.1.6",
+ "node_modules/@storybook/jest": {
+ "version": "0.2.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-accessor-descriptor": "^0.1.6",
- "is-data-descriptor": "^0.1.4",
- "kind-of": "^5.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/class-utils/node_modules/kind-of": {
- "version": "5.1.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "@storybook/expect": "storybook-jest",
+ "@testing-library/jest-dom": "^6.1.2",
+ "@types/jest": "28.1.3",
+ "jest-mock": "^27.3.0"
}
},
- "node_modules/classnames": {
- "version": "2.3.2",
- "license": "MIT"
- },
- "node_modules/clean-css": {
- "version": "5.3.2",
+ "node_modules/@storybook/jest/node_modules/@jest/schemas": {
+ "version": "28.1.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "source-map": "~0.6.0"
+ "@sinclair/typebox": "^0.24.1"
},
"engines": {
- "node": ">= 10.0"
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "node_modules/clean-css/node_modules/source-map": {
- "version": "0.6.1",
+ "node_modules/@storybook/jest/node_modules/@sinclair/typebox": {
+ "version": "0.24.51",
"dev": true,
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.10.0"
- }
+ "license": "MIT"
},
- "node_modules/clean-stack": {
- "version": "2.2.0",
+ "node_modules/@storybook/jest/node_modules/@types/jest": {
+ "version": "28.1.3",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=6"
+ "dependencies": {
+ "jest-matcher-utils": "^28.0.0",
+ "pretty-format": "^28.0.0"
}
},
- "node_modules/cli-boxes": {
- "version": "2.2.1",
+ "node_modules/@storybook/jest/node_modules/ansi-styles": {
+ "version": "5.2.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=6"
+ "node": ">=10"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/cli-cursor": {
- "version": "3.1.0",
+ "node_modules/@storybook/jest/node_modules/diff-sequences": {
+ "version": "28.1.1",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ }
+ },
+ "node_modules/@storybook/jest/node_modules/jest-diff": {
+ "version": "28.1.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "restore-cursor": "^3.1.0"
+ "chalk": "^4.0.0",
+ "diff-sequences": "^28.1.1",
+ "jest-get-type": "^28.0.2",
+ "pretty-format": "^28.1.3"
},
"engines": {
- "node": ">=8"
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "node_modules/cli-spinners": {
- "version": "2.6.1",
+ "node_modules/@storybook/jest/node_modules/jest-get-type": {
+ "version": "28.0.2",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "node_modules/cli-table3": {
- "version": "0.6.3",
+ "node_modules/@storybook/jest/node_modules/jest-matcher-utils": {
+ "version": "28.1.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "string-width": "^4.2.0"
+ "chalk": "^4.0.0",
+ "jest-diff": "^28.1.3",
+ "jest-get-type": "^28.0.2",
+ "pretty-format": "^28.1.3"
},
"engines": {
- "node": "10.* || >= 12.*"
- },
- "optionalDependencies": {
- "@colors/colors": "1.5.0"
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "node_modules/cli-width": {
- "version": "3.0.0",
+ "node_modules/@storybook/jest/node_modules/pretty-format": {
+ "version": "28.1.3",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
+ "dependencies": {
+ "@jest/schemas": "^28.1.3",
+ "ansi-regex": "^5.0.1",
+ "ansi-styles": "^5.0.0",
+ "react-is": "^18.0.0"
+ },
"engines": {
- "node": ">= 10"
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "node_modules/cliui": {
- "version": "7.0.4",
- "license": "ISC",
- "dependencies": {
- "string-width": "^4.2.0",
- "strip-ansi": "^6.0.0",
- "wrap-ansi": "^7.0.0"
- }
+ "node_modules/@storybook/jest/node_modules/react-is": {
+ "version": "18.2.0",
+ "dev": true,
+ "license": "MIT"
},
- "node_modules/clone": {
- "version": "1.0.4",
+ "node_modules/@storybook/manager": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=0.8"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
}
},
- "node_modules/clone-deep": {
- "version": "4.0.1",
+ "node_modules/@storybook/manager-api": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-plain-object": "^2.0.4",
- "kind-of": "^6.0.2",
- "shallow-clone": "^3.0.0"
+ "@storybook/channels": "7.6.17",
+ "@storybook/client-logger": "7.6.17",
+ "@storybook/core-events": "7.6.17",
+ "@storybook/csf": "^0.1.2",
+ "@storybook/global": "^5.0.0",
+ "@storybook/router": "7.6.17",
+ "@storybook/theming": "7.6.17",
+ "@storybook/types": "7.6.17",
+ "dequal": "^2.0.2",
+ "lodash": "^4.17.21",
+ "memoizerific": "^1.11.3",
+ "store2": "^2.14.2",
+ "telejson": "^7.2.0",
+ "ts-dedent": "^2.0.0"
},
- "engines": {
- "node": ">=6"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
}
},
- "node_modules/clone-response": {
- "version": "1.0.3",
+ "node_modules/@storybook/mdx2-csf": {
+ "version": "1.1.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@storybook/nextjs": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
"dependencies": {
- "mimic-response": "^1.0.0"
+ "@babel/core": "^7.23.2",
+ "@babel/plugin-syntax-bigint": "^7.8.3",
+ "@babel/plugin-syntax-dynamic-import": "^7.8.3",
+ "@babel/plugin-syntax-import-assertions": "^7.22.5",
+ "@babel/plugin-transform-class-properties": "^7.22.5",
+ "@babel/plugin-transform-export-namespace-from": "^7.22.11",
+ "@babel/plugin-transform-numeric-separator": "^7.22.11",
+ "@babel/plugin-transform-object-rest-spread": "^7.22.15",
+ "@babel/plugin-transform-runtime": "^7.23.2",
+ "@babel/preset-env": "^7.23.2",
+ "@babel/preset-react": "^7.22.15",
+ "@babel/preset-typescript": "^7.23.2",
+ "@babel/runtime": "^7.23.2",
+ "@storybook/addon-actions": "7.6.17",
+ "@storybook/builder-webpack5": "7.6.17",
+ "@storybook/core-common": "7.6.17",
+ "@storybook/core-events": "7.6.17",
+ "@storybook/node-logger": "7.6.17",
+ "@storybook/preset-react-webpack": "7.6.17",
+ "@storybook/preview-api": "7.6.17",
+ "@storybook/react": "7.6.17",
+ "@types/node": "^18.0.0",
+ "@types/semver": "^7.3.4",
+ "css-loader": "^6.7.3",
+ "find-up": "^5.0.0",
+ "fs-extra": "^11.1.0",
+ "image-size": "^1.0.0",
+ "loader-utils": "^3.2.1",
+ "node-polyfill-webpack-plugin": "^2.0.1",
+ "pnp-webpack-plugin": "^1.7.0",
+ "postcss": "^8.4.21",
+ "postcss-loader": "^7.0.2",
+ "resolve-url-loader": "^5.0.0",
+ "sass-loader": "^12.4.0",
+ "semver": "^7.3.5",
+ "sharp": "^0.32.6",
+ "style-loader": "^3.3.1",
+ "styled-jsx": "5.1.1",
+ "ts-dedent": "^2.0.0",
+ "tsconfig-paths": "^4.0.0",
+ "tsconfig-paths-webpack-plugin": "^4.0.1"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/clsx": {
- "version": "1.1.1",
- "license": "MIT",
"engines": {
- "node": ">=6"
+ "node": ">=16.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "@next/font": "^13.0.0|| ^14.0.0",
+ "next": "^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0",
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "webpack": "^5.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@next/font": {
+ "optional": true
+ },
+ "typescript": {
+ "optional": true
+ },
+ "webpack": {
+ "optional": true
+ }
}
},
- "node_modules/cmd-shim": {
- "version": "4.1.0",
+ "node_modules/@storybook/nextjs/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
"license": "ISC",
"dependencies": {
- "mkdirp-infer-owner": "^2.0.0"
+ "yallist": "^4.0.0"
},
"engines": {
"node": ">=10"
}
},
- "node_modules/co": {
- "version": "4.6.0",
+ "node_modules/@storybook/nextjs/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
- "license": "MIT",
- "engines": {
- "iojs": ">= 1.0.0",
- "node": ">= 0.12.0"
- }
- },
- "node_modules/codesandbox-import-util-types": {
- "version": "2.2.3"
- },
- "node_modules/codesandbox-import-utils": {
- "version": "1.3.8",
+ "license": "ISC",
"dependencies": {
- "codesandbox-import-util-types": "^1.3.7",
- "istextorbinary": "2.2.1",
- "lz-string": "^1.4.4"
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/codesandbox-import-utils/node_modules/codesandbox-import-util-types": {
- "version": "1.3.7"
+ "node_modules/@storybook/nextjs/node_modules/yallist": {
+ "version": "4.0.0",
+ "dev": true,
+ "license": "ISC"
},
- "node_modules/collapse-white-space": {
- "version": "1.0.6",
+ "node_modules/@storybook/node-logger": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
"funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
}
},
- "node_modules/collect-v8-coverage": {
- "version": "1.0.1",
+ "node_modules/@storybook/postinstall": {
+ "version": "7.6.17",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ }
},
- "node_modules/collection-visit": {
- "version": "1.0.0",
+ "node_modules/@storybook/preset-react-webpack": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
"dependencies": {
- "map-visit": "^1.0.0",
- "object-visit": "^1.0.0"
+ "@babel/preset-flow": "^7.22.15",
+ "@babel/preset-react": "^7.22.15",
+ "@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
+ "@storybook/core-webpack": "7.6.17",
+ "@storybook/docs-tools": "7.6.17",
+ "@storybook/node-logger": "7.6.17",
+ "@storybook/react": "7.6.17",
+ "@storybook/react-docgen-typescript-plugin": "1.0.6--canary.9.0c3f3b7.0",
+ "@types/node": "^18.0.0",
+ "@types/semver": "^7.3.4",
+ "babel-plugin-add-react-displayname": "^0.0.5",
+ "fs-extra": "^11.1.0",
+ "magic-string": "^0.30.5",
+ "react-docgen": "^7.0.0",
+ "react-refresh": "^0.14.0",
+ "semver": "^7.3.7",
+ "webpack": "5"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=16.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.22.0",
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@babel/core": {
+ "optional": true
+ },
+ "typescript": {
+ "optional": true
+ }
}
},
- "node_modules/color": {
- "version": "3.2.1",
+ "node_modules/@storybook/preset-react-webpack/node_modules/@types/doctrine": {
+ "version": "0.0.9",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "color-convert": "^1.9.3",
- "color-string": "^1.6.0"
- }
+ "license": "MIT"
},
- "node_modules/color-convert": {
- "version": "2.0.1",
- "license": "MIT",
+ "node_modules/@storybook/preset-react-webpack/node_modules/lru-cache": {
+ "version": "6.0.0",
+ "dev": true,
+ "license": "ISC",
"dependencies": {
- "color-name": "~1.1.4"
+ "yallist": "^4.0.0"
},
"engines": {
- "node": ">=7.0.0"
+ "node": ">=10"
}
},
- "node_modules/color-name": {
- "version": "1.1.4",
- "license": "MIT"
- },
- "node_modules/color-string": {
- "version": "1.9.1",
+ "node_modules/@storybook/preset-react-webpack/node_modules/react-docgen": {
+ "version": "7.0.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "color-name": "^1.0.0",
- "simple-swizzle": "^0.2.2"
+ "@babel/core": "^7.18.9",
+ "@babel/traverse": "^7.18.9",
+ "@babel/types": "^7.18.9",
+ "@types/babel__core": "^7.18.0",
+ "@types/babel__traverse": "^7.18.0",
+ "@types/doctrine": "^0.0.9",
+ "@types/resolve": "^1.20.2",
+ "doctrine": "^3.0.0",
+ "resolve": "^1.22.1",
+ "strip-indent": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=16.14.0"
}
},
- "node_modules/color-support": {
- "version": "1.1.3",
+ "node_modules/@storybook/preset-react-webpack/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
"license": "ISC",
+ "dependencies": {
+ "lru-cache": "^6.0.0"
+ },
"bin": {
- "color-support": "bin.js"
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/color/node_modules/color-convert": {
- "version": "1.9.3",
+ "node_modules/@storybook/preset-react-webpack/node_modules/strip-indent": {
+ "version": "4.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "color-name": "1.1.3"
+ "min-indent": "^1.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/color/node_modules/color-name": {
- "version": "1.1.3",
+ "node_modules/@storybook/preset-react-webpack/node_modules/yallist": {
+ "version": "4.0.0",
"dev": true,
- "license": "MIT"
+ "license": "ISC"
},
- "node_modules/colorette": {
- "version": "1.4.0",
+ "node_modules/@storybook/preview": {
+ "version": "7.6.17",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ }
},
- "node_modules/colorspace": {
- "version": "1.1.4",
+ "node_modules/@storybook/preview-api": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
"dependencies": {
- "color": "^3.1.3",
- "text-hex": "1.0.x"
+ "@storybook/channels": "7.6.17",
+ "@storybook/client-logger": "7.6.17",
+ "@storybook/core-events": "7.6.17",
+ "@storybook/csf": "^0.1.2",
+ "@storybook/global": "^5.0.0",
+ "@storybook/types": "7.6.17",
+ "@types/qs": "^6.9.5",
+ "dequal": "^2.0.2",
+ "lodash": "^4.17.21",
+ "memoizerific": "^1.11.3",
+ "qs": "^6.10.0",
+ "synchronous-promise": "^2.0.15",
+ "ts-dedent": "^2.0.0",
+ "util-deprecate": "^1.0.2"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
}
},
- "node_modules/columnify": {
- "version": "1.6.0",
+ "node_modules/@storybook/react": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
"dependencies": {
- "strip-ansi": "^6.0.1",
- "wcwidth": "^1.0.0"
+ "@storybook/client-logger": "7.6.17",
+ "@storybook/core-client": "7.6.17",
+ "@storybook/docs-tools": "7.6.17",
+ "@storybook/global": "^5.0.0",
+ "@storybook/preview-api": "7.6.17",
+ "@storybook/react-dom-shim": "7.6.17",
+ "@storybook/types": "7.6.17",
+ "@types/escodegen": "^0.0.6",
+ "@types/estree": "^0.0.51",
+ "@types/node": "^18.0.0",
+ "acorn": "^7.4.1",
+ "acorn-jsx": "^5.3.1",
+ "acorn-walk": "^7.2.0",
+ "escodegen": "^2.1.0",
+ "html-tags": "^3.1.0",
+ "lodash": "^4.17.21",
+ "prop-types": "^15.7.2",
+ "react-element-to-jsx-string": "^15.0.0",
+ "ts-dedent": "^2.0.0",
+ "type-fest": "~2.19",
+ "util-deprecate": "^1.0.2"
},
"engines": {
- "node": ">=8.0.0"
+ "node": ">=16.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "typescript": "*"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
}
},
- "node_modules/combined-stream": {
- "version": "1.0.8",
+ "node_modules/@storybook/react-docgen-typescript-plugin": {
+ "version": "1.0.6--canary.9.0c3f3b7.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "delayed-stream": "~1.0.0"
+ "debug": "^4.1.1",
+ "endent": "^2.0.1",
+ "find-cache-dir": "^3.3.1",
+ "flat-cache": "^3.0.4",
+ "micromatch": "^4.0.2",
+ "react-docgen-typescript": "^2.2.2",
+ "tslib": "^2.0.0"
},
- "engines": {
- "node": ">= 0.8"
+ "peerDependencies": {
+ "typescript": ">= 4.x",
+ "webpack": ">= 4"
}
},
- "node_modules/comma-separated-tokens": {
- "version": "1.0.8",
+ "node_modules/@storybook/react-dom-shim": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
"funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
},
- "node_modules/commander": {
- "version": "8.3.0",
+ "node_modules/@storybook/router": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">= 12"
+ "dependencies": {
+ "@storybook/client-logger": "7.6.17",
+ "memoizerific": "^1.11.3",
+ "qs": "^6.10.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
}
},
- "node_modules/common-ancestor-path": {
- "version": "1.0.1",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/common-path-prefix": {
- "version": "3.0.0",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/common-tags": {
- "version": "1.8.2",
+ "node_modules/@storybook/telemetry": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=4.0.0"
+ "dependencies": {
+ "@storybook/client-logger": "7.6.17",
+ "@storybook/core-common": "7.6.17",
+ "@storybook/csf-tools": "7.6.17",
+ "chalk": "^4.1.0",
+ "detect-package-manager": "^2.0.1",
+ "fetch-retry": "^5.0.2",
+ "fs-extra": "^11.1.0",
+ "read-pkg-up": "^7.0.1"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
}
},
- "node_modules/commondir": {
- "version": "1.0.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/compare-func": {
- "version": "2.0.0",
+ "node_modules/@storybook/telemetry/node_modules/detect-package-manager": {
+ "version": "2.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "array-ify": "^1.0.0",
- "dot-prop": "^5.1.0"
+ "execa": "^5.1.1"
+ },
+ "engines": {
+ "node": ">=12"
}
},
- "node_modules/compare-func/node_modules/dot-prop": {
- "version": "5.3.0",
+ "node_modules/@storybook/test-runner": {
+ "version": "0.16.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-obj": "^2.0.0"
+ "@babel/core": "^7.22.5",
+ "@babel/generator": "^7.22.5",
+ "@babel/template": "^7.22.5",
+ "@babel/types": "^7.22.5",
+ "@jest/types": "^29.6.3",
+ "@storybook/core-common": "^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0",
+ "@storybook/csf": "^0.1.1",
+ "@storybook/csf-tools": "^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0",
+ "@storybook/preview-api": "^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0",
+ "@swc/core": "^1.3.18",
+ "@swc/jest": "^0.2.23",
+ "can-bind-to-host": "^1.1.1",
+ "commander": "^9.0.0",
+ "expect-playwright": "^0.8.0",
+ "glob": "^10.2.2",
+ "jest": "^29.6.4",
+ "jest-circus": "^29.6.4",
+ "jest-environment-node": "^29.6.4",
+ "jest-junit": "^16.0.0",
+ "jest-playwright-preset": "^4.0.0",
+ "jest-runner": "^29.6.4",
+ "jest-serializer-html": "^7.1.0",
+ "jest-watch-typeahead": "^2.0.0",
+ "node-fetch": "^2",
+ "playwright": "^1.14.0",
+ "read-pkg-up": "^7.0.1",
+ "tempy": "^1.0.1",
+ "ts-dedent": "^2.0.0"
+ },
+ "bin": {
+ "test-storybook": "dist/test-storybook.js"
},
"engines": {
- "node": ">=8"
+ "node": "^16.10.0 || ^18.0.0 || >=20.0.0"
}
},
- "node_modules/component-emitter": {
- "version": "1.3.0",
+ "node_modules/@storybook/test-runner/node_modules/brace-expansion": {
+ "version": "2.0.1",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "dependencies": {
+ "balanced-match": "^1.0.0"
+ }
},
- "node_modules/compressible": {
- "version": "2.0.18",
+ "node_modules/@storybook/test-runner/node_modules/foreground-child": {
+ "version": "3.1.1",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "mime-db": ">= 1.43.0 < 2"
+ "cross-spawn": "^7.0.0",
+ "signal-exit": "^4.0.1"
},
"engines": {
- "node": ">= 0.6"
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/compression": {
- "version": "1.7.4",
+ "node_modules/@storybook/test-runner/node_modules/glob": {
+ "version": "10.3.12",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "accepts": "~1.3.5",
- "bytes": "3.0.0",
- "compressible": "~2.0.16",
- "debug": "2.6.9",
- "on-headers": "~1.0.2",
- "safe-buffer": "5.1.2",
- "vary": "~1.1.2"
+ "foreground-child": "^3.1.0",
+ "jackspeak": "^2.3.6",
+ "minimatch": "^9.0.1",
+ "minipass": "^7.0.4",
+ "path-scurry": "^1.10.2"
+ },
+ "bin": {
+ "glob": "dist/esm/bin.mjs"
},
"engines": {
- "node": ">= 0.8.0"
+ "node": ">=16 || 14 >=14.17"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/compression/node_modules/debug": {
- "version": "2.6.9",
+ "node_modules/@storybook/test-runner/node_modules/minimatch": {
+ "version": "9.0.4",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "ms": "2.0.0"
+ "brace-expansion": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/compression/node_modules/ms": {
- "version": "2.0.0",
+ "node_modules/@storybook/test-runner/node_modules/minipass": {
+ "version": "7.0.4",
"dev": true,
- "license": "MIT"
+ "license": "ISC",
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ }
},
- "node_modules/concat-map": {
- "version": "0.0.1",
- "license": "MIT"
+ "node_modules/@storybook/test-runner/node_modules/signal-exit": {
+ "version": "4.1.0",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
},
- "node_modules/concat-stream": {
- "version": "2.0.0",
+ "node_modules/@storybook/testing-library": {
+ "version": "0.2.2",
"dev": true,
- "engines": [
- "node >= 6.0"
- ],
"license": "MIT",
"dependencies": {
- "buffer-from": "^1.0.0",
- "inherits": "^2.0.3",
- "readable-stream": "^3.0.2",
- "typedarray": "^0.0.6"
+ "@testing-library/dom": "^9.0.0",
+ "@testing-library/user-event": "^14.4.0",
+ "ts-dedent": "^2.2.0"
}
},
- "node_modules/config-chain": {
- "version": "1.1.13",
+ "node_modules/@storybook/testing-library/node_modules/@testing-library/dom": {
+ "version": "9.3.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "ini": "^1.3.4",
- "proto-list": "~1.2.1"
+ "@babel/code-frame": "^7.10.4",
+ "@babel/runtime": "^7.12.5",
+ "@types/aria-query": "^5.0.1",
+ "aria-query": "5.1.3",
+ "chalk": "^4.1.0",
+ "dom-accessibility-api": "^0.5.9",
+ "lz-string": "^1.5.0",
+ "pretty-format": "^27.0.2"
+ },
+ "engines": {
+ "node": ">=14"
+ }
+ },
+ "node_modules/@storybook/testing-library/node_modules/aria-query": {
+ "version": "5.1.3",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "deep-equal": "^2.0.5"
}
},
- "node_modules/configstore": {
- "version": "5.0.1",
+ "node_modules/@storybook/theming": {
+ "version": "7.6.17",
"dev": true,
- "license": "BSD-2-Clause",
+ "license": "MIT",
"dependencies": {
- "dot-prop": "^5.2.0",
- "graceful-fs": "^4.1.2",
- "make-dir": "^3.0.0",
- "unique-string": "^2.0.0",
- "write-file-atomic": "^3.0.0",
- "xdg-basedir": "^4.0.0"
+ "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0",
+ "@storybook/client-logger": "7.6.17",
+ "@storybook/global": "^5.0.0",
+ "memoizerific": "^1.11.3"
},
- "engines": {
- "node": ">=8"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
},
- "node_modules/configstore/node_modules/dot-prop": {
- "version": "5.3.0",
+ "node_modules/@storybook/types": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-obj": "^2.0.0"
+ "@storybook/channels": "7.6.17",
+ "@types/babel__core": "^7.0.0",
+ "@types/express": "^4.7.0",
+ "file-system-cache": "2.3.0"
},
- "engines": {
- "node": ">=8"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
}
},
- "node_modules/configstore/node_modules/make-dir": {
- "version": "3.1.0",
+ "node_modules/@swc/core": {
+ "version": "1.4.13",
"dev": true,
- "license": "MIT",
+ "hasInstallScript": true,
+ "license": "Apache-2.0",
"dependencies": {
- "semver": "^6.0.0"
+ "@swc/counter": "^0.1.2",
+ "@swc/types": "^0.1.5"
},
"engines": {
- "node": ">=8"
+ "node": ">=10"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "type": "opencollective",
+ "url": "https://opencollective.com/swc"
+ },
+ "optionalDependencies": {
+ "@swc/core-darwin-arm64": "1.4.13",
+ "@swc/core-darwin-x64": "1.4.13",
+ "@swc/core-linux-arm-gnueabihf": "1.4.13",
+ "@swc/core-linux-arm64-gnu": "1.4.13",
+ "@swc/core-linux-arm64-musl": "1.4.13",
+ "@swc/core-linux-x64-gnu": "1.4.13",
+ "@swc/core-linux-x64-musl": "1.4.13",
+ "@swc/core-win32-arm64-msvc": "1.4.13",
+ "@swc/core-win32-ia32-msvc": "1.4.13",
+ "@swc/core-win32-x64-msvc": "1.4.13"
+ },
+ "peerDependencies": {
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependenciesMeta": {
+ "@swc/helpers": {
+ "optional": true
+ }
}
},
- "node_modules/console-browserify": {
- "version": "1.2.0",
- "dev": true
- },
- "node_modules/console-control-strings": {
- "version": "1.1.0",
+ "node_modules/@swc/core-darwin-x64": {
+ "version": "1.4.13",
+ "cpu": [
+ "x64"
+ ],
"dev": true,
- "license": "ISC"
+ "license": "Apache-2.0 AND MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">=10"
+ }
},
- "node_modules/constant-case": {
- "version": "3.0.4",
+ "node_modules/@swc/counter": {
+ "version": "0.1.3",
"dev": true,
- "license": "MIT",
+ "license": "Apache-2.0"
+ },
+ "node_modules/@swc/helpers": {
+ "version": "0.5.2",
+ "license": "Apache-2.0",
"dependencies": {
- "no-case": "^3.0.4",
- "tslib": "^2.0.3",
- "upper-case": "^2.0.2"
+ "tslib": "^2.4.0"
}
},
- "node_modules/constantinople": {
- "version": "3.1.2",
+ "node_modules/@swc/jest": {
+ "version": "0.2.36",
"dev": true,
"license": "MIT",
"dependencies": {
- "@types/babel-types": "^7.0.0",
- "@types/babylon": "^6.16.2",
- "babel-types": "^6.26.0",
- "babylon": "^6.18.0"
+ "@jest/create-cache-key-function": "^29.7.0",
+ "@swc/counter": "^0.1.3",
+ "jsonc-parser": "^3.2.0"
+ },
+ "engines": {
+ "npm": ">= 7.0.0"
+ },
+ "peerDependencies": {
+ "@swc/core": "*"
}
},
- "node_modules/constantinople/node_modules/babylon": {
- "version": "6.18.0",
+ "node_modules/@swc/types": {
+ "version": "0.1.6",
"dev": true,
- "license": "MIT",
- "bin": {
- "babylon": "bin/babylon.js"
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@swc/counter": "^0.1.3"
}
},
- "node_modules/constants-browserify": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/content-disposition": {
- "version": "0.5.4",
+ "node_modules/@szmarczak/http-timer": {
+ "version": "1.1.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "safe-buffer": "5.2.1"
+ "defer-to-connect": "^1.0.1"
},
"engines": {
- "node": ">= 0.6"
+ "node": ">=6"
}
},
- "node_modules/content-disposition/node_modules/safe-buffer": {
- "version": "5.2.1",
- "dev": true,
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "MIT"
- },
- "node_modules/content-type": {
- "version": "1.0.4",
+ "node_modules/@tanem/svg-injector": {
+ "version": "10.1.68",
"license": "MIT",
- "engines": {
- "node": ">= 0.6"
+ "dependencies": {
+ "@babel/runtime": "^7.23.2",
+ "content-type": "^1.0.5",
+ "tslib": "^2.6.2"
}
},
- "node_modules/conventional-changelog-angular": {
- "version": "5.0.13",
+ "node_modules/@testing-library/dom": {
+ "version": "10.0.0",
+ "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-10.0.0.tgz",
+ "integrity": "sha512-PmJPnogldqoVFf+EwbHvbBJ98MmqASV8kLrBYgsDNxQcFMeIS7JFL48sfyXvuMtgmWO/wMhh25odr+8VhDmn4g==",
"dev": true,
- "license": "ISC",
"dependencies": {
- "compare-func": "^2.0.0",
- "q": "^1.5.1"
+ "@babel/code-frame": "^7.10.4",
+ "@babel/runtime": "^7.12.5",
+ "@types/aria-query": "^5.0.1",
+ "aria-query": "5.3.0",
+ "chalk": "^4.1.0",
+ "dom-accessibility-api": "^0.5.9",
+ "lz-string": "^1.5.0",
+ "pretty-format": "^27.0.2"
},
"engines": {
- "node": ">=10"
+ "node": ">=18"
}
},
- "node_modules/conventional-changelog-core": {
- "version": "4.2.4",
+ "node_modules/@testing-library/jest-dom": {
+ "version": "6.4.2",
+ "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-6.4.2.tgz",
+ "integrity": "sha512-CzqH0AFymEMG48CpzXFriYYkOjk6ZGPCLMhW9e9jg3KMCn5OfJecF8GtGW7yGfR/IgCe3SX8BSwjdzI6BBbZLw==",
"dev": true,
- "license": "MIT",
"dependencies": {
- "add-stream": "^1.0.0",
- "conventional-changelog-writer": "^5.0.0",
- "conventional-commits-parser": "^3.2.0",
- "dateformat": "^3.0.0",
- "get-pkg-repo": "^4.0.0",
- "git-raw-commits": "^2.0.8",
- "git-remote-origin-url": "^2.0.0",
- "git-semver-tags": "^4.1.1",
+ "@adobe/css-tools": "^4.3.2",
+ "@babel/runtime": "^7.9.2",
+ "aria-query": "^5.0.0",
+ "chalk": "^3.0.0",
+ "css.escape": "^1.5.1",
+ "dom-accessibility-api": "^0.6.3",
"lodash": "^4.17.15",
- "normalize-package-data": "^3.0.0",
- "q": "^1.5.1",
- "read-pkg": "^3.0.0",
- "read-pkg-up": "^3.0.0",
- "through2": "^4.0.0"
+ "redent": "^3.0.0"
},
"engines": {
- "node": ">=10"
+ "node": ">=14",
+ "npm": ">=6",
+ "yarn": ">=1"
+ },
+ "peerDependencies": {
+ "@jest/globals": ">= 28",
+ "@types/bun": "latest",
+ "@types/jest": ">= 28",
+ "jest": ">= 28",
+ "vitest": ">= 0.32"
+ },
+ "peerDependenciesMeta": {
+ "@jest/globals": {
+ "optional": true
+ },
+ "@types/bun": {
+ "optional": true
+ },
+ "@types/jest": {
+ "optional": true
+ },
+ "jest": {
+ "optional": true
+ },
+ "vitest": {
+ "optional": true
+ }
}
},
- "node_modules/conventional-changelog-core/node_modules/find-up": {
- "version": "2.1.0",
+ "node_modules/@testing-library/jest-dom/node_modules/chalk": {
+ "version": "3.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "locate-path": "^2.0.0"
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
},
"engines": {
- "node": ">=4"
+ "node": ">=8"
}
},
- "node_modules/conventional-changelog-core/node_modules/locate-path": {
- "version": "2.0.0",
+ "node_modules/@testing-library/jest-dom/node_modules/dom-accessibility-api": {
+ "version": "0.6.3",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@testing-library/react": {
+ "version": "14.3.0",
+ "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-14.3.0.tgz",
+ "integrity": "sha512-AYJGvNFMbCa5vt1UtDCa/dcaABrXq8gph6VN+cffIx0UeA0qiGqS+sT60+sb+Gjc8tGXdECWYQgaF0khf8b+Lg==",
"dev": true,
- "license": "MIT",
"dependencies": {
- "p-locate": "^2.0.0",
- "path-exists": "^3.0.0"
+ "@babel/runtime": "^7.12.5",
+ "@testing-library/dom": "^9.0.0",
+ "@types/react-dom": "^18.0.0"
},
"engines": {
- "node": ">=4"
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "react": "^18.0.0",
+ "react-dom": "^18.0.0"
}
},
- "node_modules/conventional-changelog-core/node_modules/p-limit": {
- "version": "1.3.0",
+ "node_modules/@testing-library/react-hooks": {
+ "version": "8.0.1",
+ "resolved": "https://registry.npmjs.org/@testing-library/react-hooks/-/react-hooks-8.0.1.tgz",
+ "integrity": "sha512-Aqhl2IVmLt8IovEVarNDFuJDVWVvhnr9/GCU6UUnrYXwgDFF9h2L2o2P9KBni1AST5sT6riAyoukFLyjQUgD/g==",
"dev": true,
- "license": "MIT",
"dependencies": {
- "p-try": "^1.0.0"
+ "@babel/runtime": "^7.12.5",
+ "react-error-boundary": "^3.1.0"
},
"engines": {
- "node": ">=4"
+ "node": ">=12"
+ },
+ "peerDependencies": {
+ "@types/react": "^16.9.0 || ^17.0.0",
+ "react": "^16.9.0 || ^17.0.0",
+ "react-dom": "^16.9.0 || ^17.0.0",
+ "react-test-renderer": "^16.9.0 || ^17.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "react-dom": {
+ "optional": true
+ },
+ "react-test-renderer": {
+ "optional": true
+ }
}
},
- "node_modules/conventional-changelog-core/node_modules/p-locate": {
- "version": "2.0.0",
+ "node_modules/@testing-library/react/node_modules/@testing-library/dom": {
+ "version": "9.3.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "p-limit": "^1.1.0"
+ "@babel/code-frame": "^7.10.4",
+ "@babel/runtime": "^7.12.5",
+ "@types/aria-query": "^5.0.1",
+ "aria-query": "5.1.3",
+ "chalk": "^4.1.0",
+ "dom-accessibility-api": "^0.5.9",
+ "lz-string": "^1.5.0",
+ "pretty-format": "^27.0.2"
},
"engines": {
- "node": ">=4"
+ "node": ">=14"
}
},
- "node_modules/conventional-changelog-core/node_modules/p-try": {
- "version": "1.0.0",
+ "node_modules/@testing-library/react/node_modules/aria-query": {
+ "version": "5.1.3",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4"
+ "license": "Apache-2.0",
+ "dependencies": {
+ "deep-equal": "^2.0.5"
}
},
- "node_modules/conventional-changelog-core/node_modules/read-pkg-up": {
- "version": "3.0.0",
+ "node_modules/@testing-library/user-event": {
+ "version": "14.5.2",
+ "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-14.5.2.tgz",
+ "integrity": "sha512-YAh82Wh4TIrxYLmfGcixwD18oIjyC1pFQC2Y01F2lzV2HTMiYrI0nze0FD0ocB//CKS/7jIUgae+adPqxK5yCQ==",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "find-up": "^2.0.0",
- "read-pkg": "^3.0.0"
- },
"engines": {
- "node": ">=4"
+ "node": ">=12",
+ "npm": ">=6"
+ },
+ "peerDependencies": {
+ "@testing-library/dom": ">=7.21.4"
}
},
- "node_modules/conventional-changelog-preset-loader": {
- "version": "2.3.4",
+ "node_modules/@tootallnate/once": {
+ "version": "2.0.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=10"
+ "node": ">= 10"
}
},
- "node_modules/conventional-changelog-writer": {
- "version": "5.0.1",
- "dev": true,
+ "node_modules/@types/acorn": {
+ "version": "4.0.6",
"license": "MIT",
"dependencies": {
- "conventional-commits-filter": "^2.0.7",
- "dateformat": "^3.0.0",
- "handlebars": "^4.7.7",
- "json-stringify-safe": "^5.0.1",
- "lodash": "^4.17.15",
- "meow": "^8.0.0",
- "semver": "^6.0.0",
- "split": "^1.0.0",
- "through2": "^4.0.0"
- },
- "bin": {
- "conventional-changelog-writer": "cli.js"
- },
- "engines": {
- "node": ">=10"
+ "@types/estree": "*"
}
},
- "node_modules/conventional-commits-filter": {
- "version": "2.0.7",
+ "node_modules/@types/aria-query": {
+ "version": "5.0.4",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "lodash.ismatch": "^4.4.0",
- "modify-values": "^1.0.0"
- },
- "engines": {
- "node": ">=10"
- }
+ "license": "MIT"
},
- "node_modules/conventional-commits-parser": {
- "version": "3.2.4",
+ "node_modules/@types/babel__core": {
+ "version": "7.20.5",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-text-path": "^1.0.1",
- "JSONStream": "^1.0.4",
- "lodash": "^4.17.15",
- "meow": "^8.0.0",
- "split2": "^3.0.0",
- "through2": "^4.0.0"
- },
- "bin": {
- "conventional-commits-parser": "cli.js"
- },
- "engines": {
- "node": ">=10"
+ "@babel/parser": "^7.20.7",
+ "@babel/types": "^7.20.7",
+ "@types/babel__generator": "*",
+ "@types/babel__template": "*",
+ "@types/babel__traverse": "*"
}
},
- "node_modules/conventional-recommended-bump": {
- "version": "6.1.0",
+ "node_modules/@types/babel__generator": {
+ "version": "7.6.8",
"dev": true,
"license": "MIT",
"dependencies": {
- "concat-stream": "^2.0.0",
- "conventional-changelog-preset-loader": "^2.3.4",
- "conventional-commits-filter": "^2.0.7",
- "conventional-commits-parser": "^3.2.0",
- "git-raw-commits": "^2.0.8",
- "git-semver-tags": "^4.1.1",
- "meow": "^8.0.0",
- "q": "^1.5.1"
- },
- "bin": {
- "conventional-recommended-bump": "cli.js"
- },
- "engines": {
- "node": ">=10"
+ "@babel/types": "^7.0.0"
}
},
- "node_modules/convert-source-map": {
- "version": "1.8.0",
+ "node_modules/@types/babel__template": {
+ "version": "7.4.4",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "safe-buffer": "~5.1.1"
+ "@babel/parser": "^7.1.0",
+ "@babel/types": "^7.0.0"
}
},
- "node_modules/cookie": {
- "version": "0.4.2",
+ "node_modules/@types/babel__traverse": {
+ "version": "7.20.5",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">= 0.6"
+ "dependencies": {
+ "@babel/types": "^7.20.7"
}
},
- "node_modules/cookie-signature": {
- "version": "1.0.6",
+ "node_modules/@types/babel-types": {
+ "version": "7.0.15",
"dev": true,
"license": "MIT"
},
- "node_modules/copy-concurrently": {
- "version": "1.0.5",
+ "node_modules/@types/babylon": {
+ "version": "6.16.9",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "aproba": "^1.1.1",
- "fs-write-stream-atomic": "^1.0.8",
- "iferr": "^0.1.5",
- "mkdirp": "^0.5.1",
- "rimraf": "^2.5.4",
- "run-queue": "^1.0.0"
+ "@types/babel-types": "*"
}
},
- "node_modules/copy-concurrently/node_modules/aproba": {
- "version": "1.2.0",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/copy-concurrently/node_modules/mkdirp": {
- "version": "0.5.6",
+ "node_modules/@types/body-parser": {
+ "version": "1.19.5",
"dev": true,
"license": "MIT",
"dependencies": {
- "minimist": "^1.2.6"
- },
- "bin": {
- "mkdirp": "bin/cmd.js"
+ "@types/connect": "*",
+ "@types/node": "*"
}
},
- "node_modules/copy-concurrently/node_modules/rimraf": {
- "version": "2.7.1",
+ "node_modules/@types/connect": {
+ "version": "3.4.38",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "glob": "^7.1.3"
- },
- "bin": {
- "rimraf": "bin.js"
+ "@types/node": "*"
}
},
- "node_modules/copy-descriptor": {
- "version": "0.1.1",
+ "node_modules/@types/cross-spawn": {
+ "version": "6.0.6",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "@types/node": "*"
}
},
- "node_modules/core-js": {
- "version": "3.21.1",
- "dev": true,
- "hasInstallScript": true,
+ "node_modules/@types/debug": {
+ "version": "4.1.12",
"license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/core-js"
+ "dependencies": {
+ "@types/ms": "*"
}
},
- "node_modules/core-js-compat": {
- "version": "3.29.0",
+ "node_modules/@types/detect-port": {
+ "version": "1.3.5",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/doctrine": {
+ "version": "0.0.3",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/ejs": {
+ "version": "3.1.5",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/emscripten": {
+ "version": "1.39.10",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/escodegen": {
+ "version": "0.0.6",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/eslint": {
+ "version": "8.56.7",
"dev": true,
"license": "MIT",
"dependencies": {
- "browserslist": "^4.21.5"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/core-js"
+ "@types/estree": "*",
+ "@types/json-schema": "*"
}
},
- "node_modules/core-js-pure": {
- "version": "3.21.1",
+ "node_modules/@types/eslint-scope": {
+ "version": "3.7.7",
"dev": true,
- "hasInstallScript": true,
"license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/core-js"
+ "dependencies": {
+ "@types/eslint": "*",
+ "@types/estree": "*"
}
},
- "node_modules/core-util-is": {
- "version": "1.0.2",
- "dev": true,
+ "node_modules/@types/estree": {
+ "version": "0.0.51",
"license": "MIT"
},
- "node_modules/cosmiconfig": {
- "version": "7.0.1",
- "dev": true,
+ "node_modules/@types/estree-jsx": {
+ "version": "1.0.5",
"license": "MIT",
"dependencies": {
- "@types/parse-json": "^4.0.0",
- "import-fresh": "^3.2.1",
- "parse-json": "^5.0.0",
- "path-type": "^4.0.0",
- "yaml": "^1.10.0"
- },
- "engines": {
- "node": ">=10"
+ "@types/estree": "*"
}
},
- "node_modules/country-flag-icons": {
- "version": "1.5.5",
- "license": "MIT"
- },
- "node_modules/cp-file": {
- "version": "7.0.0",
+ "node_modules/@types/express": {
+ "version": "4.17.21",
"dev": true,
"license": "MIT",
"dependencies": {
- "graceful-fs": "^4.1.2",
- "make-dir": "^3.0.0",
- "nested-error-stacks": "^2.0.0",
- "p-event": "^4.1.0"
- },
- "engines": {
- "node": ">=8"
+ "@types/body-parser": "*",
+ "@types/express-serve-static-core": "^4.17.33",
+ "@types/qs": "*",
+ "@types/serve-static": "*"
}
},
- "node_modules/cp-file/node_modules/make-dir": {
- "version": "3.1.0",
+ "node_modules/@types/express-serve-static-core": {
+ "version": "4.19.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "semver": "^6.0.0"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "@types/node": "*",
+ "@types/qs": "*",
+ "@types/range-parser": "*",
+ "@types/send": "*"
}
},
- "node_modules/cpy": {
- "version": "8.1.2",
+ "node_modules/@types/find-cache-dir": {
+ "version": "3.2.1",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/fined": {
+ "version": "1.1.5",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/graceful-fs": {
+ "version": "4.1.9",
"dev": true,
"license": "MIT",
"dependencies": {
- "arrify": "^2.0.1",
- "cp-file": "^7.0.0",
- "globby": "^9.2.0",
- "has-glob": "^1.0.0",
- "junk": "^3.1.0",
- "nested-error-stacks": "^2.1.0",
- "p-all": "^2.1.0",
- "p-filter": "^2.1.0",
- "p-map": "^3.0.0"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "@types/node": "*"
}
},
- "node_modules/cpy/node_modules/@nodelib/fs.stat": {
- "version": "1.1.3",
+ "node_modules/@types/hast": {
+ "version": "2.3.10",
+ "license": "MIT",
+ "dependencies": {
+ "@types/unist": "^2"
+ }
+ },
+ "node_modules/@types/html-minifier-terser": {
+ "version": "6.1.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/http-errors": {
+ "version": "2.0.4",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/inquirer": {
+ "version": "8.2.10",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">= 6"
+ "dependencies": {
+ "@types/through": "*",
+ "rxjs": "^7.2.0"
}
},
- "node_modules/cpy/node_modules/array-union": {
- "version": "1.0.2",
+ "node_modules/@types/inquirer/node_modules/rxjs": {
+ "version": "7.8.1",
"dev": true,
- "license": "MIT",
+ "license": "Apache-2.0",
"dependencies": {
- "array-uniq": "^1.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
+ "tslib": "^2.1.0"
}
},
- "node_modules/cpy/node_modules/braces": {
- "version": "2.3.2",
+ "node_modules/@types/istanbul-lib-coverage": {
+ "version": "2.0.6",
+ "license": "MIT"
+ },
+ "node_modules/@types/istanbul-lib-report": {
+ "version": "3.0.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "arr-flatten": "^1.1.0",
- "array-unique": "^0.3.2",
- "extend-shallow": "^2.0.1",
- "fill-range": "^4.0.0",
- "isobject": "^3.0.1",
- "repeat-element": "^1.1.2",
- "snapdragon": "^0.8.1",
- "snapdragon-node": "^2.0.1",
- "split-string": "^3.0.2",
- "to-regex": "^3.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
+ "@types/istanbul-lib-coverage": "*"
}
},
- "node_modules/cpy/node_modules/braces/node_modules/extend-shallow": {
- "version": "2.0.1",
+ "node_modules/@types/istanbul-reports": {
+ "version": "3.0.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-extendable": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
+ "@types/istanbul-lib-report": "*"
}
},
- "node_modules/cpy/node_modules/dir-glob": {
- "version": "2.2.2",
+ "node_modules/@types/jest": {
+ "version": "29.5.12",
"dev": true,
"license": "MIT",
"dependencies": {
- "path-type": "^3.0.0"
- },
- "engines": {
- "node": ">=4"
+ "expect": "^29.0.0",
+ "pretty-format": "^29.0.0"
}
},
- "node_modules/cpy/node_modules/fast-glob": {
- "version": "2.2.7",
+ "node_modules/@types/jest/node_modules/ansi-styles": {
+ "version": "5.2.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "@mrmlnc/readdir-enhanced": "^2.2.1",
- "@nodelib/fs.stat": "^1.1.2",
- "glob-parent": "^3.1.0",
- "is-glob": "^4.0.0",
- "merge2": "^1.2.3",
- "micromatch": "^3.1.10"
- },
"engines": {
- "node": ">=4.0.0"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/cpy/node_modules/fill-range": {
- "version": "4.0.0",
+ "node_modules/@types/jest/node_modules/pretty-format": {
+ "version": "29.7.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "extend-shallow": "^2.0.1",
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1",
- "to-regex-range": "^2.1.0"
+ "@jest/schemas": "^29.6.3",
+ "ansi-styles": "^5.0.0",
+ "react-is": "^18.0.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/cpy/node_modules/fill-range/node_modules/extend-shallow": {
- "version": "2.0.1",
+ "node_modules/@types/jest/node_modules/react-is": {
+ "version": "18.2.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/js-yaml": {
+ "version": "4.0.9",
+ "license": "MIT"
+ },
+ "node_modules/@types/jsdom": {
+ "version": "20.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-extendable": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
+ "@types/node": "*",
+ "@types/tough-cookie": "*",
+ "parse5": "^7.0.0"
}
},
- "node_modules/cpy/node_modules/glob-parent": {
- "version": "3.1.0",
+ "node_modules/@types/json-schema": {
+ "version": "7.0.15",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "is-glob": "^3.1.0",
- "path-dirname": "^1.0.0"
- }
+ "license": "MIT"
},
- "node_modules/cpy/node_modules/glob-parent/node_modules/is-glob": {
- "version": "3.1.0",
+ "node_modules/@types/json5": {
+ "version": "0.0.29",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/liftoff": {
+ "version": "4.0.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-extglob": "^2.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
+ "@types/fined": "*",
+ "@types/node": "*"
}
},
- "node_modules/cpy/node_modules/globby": {
- "version": "9.2.0",
+ "node_modules/@types/lodash": {
+ "version": "4.17.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/lz-string": {
+ "version": "1.5.0",
+ "deprecated": "This is a stub types definition. lz-string provides its own type definitions, so you do not need this installed.",
"dev": true,
"license": "MIT",
"dependencies": {
- "@types/glob": "^7.1.1",
- "array-union": "^1.0.2",
- "dir-glob": "^2.2.2",
- "fast-glob": "^2.2.6",
- "glob": "^7.1.3",
- "ignore": "^4.0.3",
- "pify": "^4.0.1",
- "slash": "^2.0.0"
- },
- "engines": {
- "node": ">=6"
+ "lz-string": "*"
}
},
- "node_modules/cpy/node_modules/ignore": {
- "version": "4.0.6",
- "dev": true,
+ "node_modules/@types/mdast": {
+ "version": "3.0.15",
"license": "MIT",
- "engines": {
- "node": ">= 4"
+ "dependencies": {
+ "@types/unist": "^2"
}
},
- "node_modules/cpy/node_modules/is-buffer": {
- "version": "1.1.6",
+ "node_modules/@types/mdx": {
+ "version": "2.0.12",
+ "license": "MIT"
+ },
+ "node_modules/@types/mime": {
+ "version": "1.3.5",
"dev": true,
"license": "MIT"
},
- "node_modules/cpy/node_modules/is-extendable": {
- "version": "0.1.1",
+ "node_modules/@types/mime-types": {
+ "version": "2.1.4",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
+ "license": "MIT"
},
- "node_modules/cpy/node_modules/is-number": {
- "version": "3.0.0",
+ "node_modules/@types/minimatch": {
+ "version": "3.0.5",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "kind-of": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
+ "license": "MIT"
},
- "node_modules/cpy/node_modules/is-number/node_modules/kind-of": {
- "version": "3.2.2",
+ "node_modules/@types/minimist": {
+ "version": "1.2.5",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
- }
+ "license": "MIT"
+ },
+ "node_modules/@types/ms": {
+ "version": "0.7.34",
+ "license": "MIT"
},
- "node_modules/cpy/node_modules/micromatch": {
- "version": "3.1.10",
+ "node_modules/@types/node": {
+ "version": "18.19.31",
"dev": true,
"license": "MIT",
"dependencies": {
- "arr-diff": "^4.0.0",
- "array-unique": "^0.3.2",
- "braces": "^2.3.1",
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "extglob": "^2.0.4",
- "fragment-cache": "^0.2.1",
- "kind-of": "^6.0.2",
- "nanomatch": "^1.2.9",
- "object.pick": "^1.3.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
+ "undici-types": "~5.26.4"
}
},
- "node_modules/cpy/node_modules/path-type": {
- "version": "3.0.0",
+ "node_modules/@types/node-fetch": {
+ "version": "2.6.11",
"dev": true,
"license": "MIT",
"dependencies": {
- "pify": "^3.0.0"
- },
- "engines": {
- "node": ">=4"
+ "@types/node": "*",
+ "form-data": "^4.0.0"
}
},
- "node_modules/cpy/node_modules/path-type/node_modules/pify": {
- "version": "3.0.0",
+ "node_modules/@types/normalize-package-data": {
+ "version": "2.4.4",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
+ "license": "MIT"
},
- "node_modules/cpy/node_modules/pify": {
- "version": "4.0.1",
+ "node_modules/@types/parse-json": {
+ "version": "4.0.2",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
+ "license": "MIT"
},
- "node_modules/cpy/node_modules/slash": {
- "version": "2.0.0",
+ "node_modules/@types/prettier": {
+ "version": "2.7.3",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
+ "license": "MIT"
},
- "node_modules/cpy/node_modules/to-regex-range": {
- "version": "2.1.1",
+ "node_modules/@types/pretty-hrtime": {
+ "version": "1.0.3",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/prop-types": {
+ "version": "15.7.12",
+ "license": "MIT"
+ },
+ "node_modules/@types/qs": {
+ "version": "6.9.14",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/range-parser": {
+ "version": "1.2.7",
"dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/react": {
+ "version": "18.2.39",
"license": "MIT",
"dependencies": {
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1"
- },
- "engines": {
- "node": ">=0.10.0"
+ "@types/prop-types": "*",
+ "@types/scheduler": "*",
+ "csstype": "^3.0.2"
}
},
- "node_modules/create-ecdh": {
- "version": "4.0.4",
+ "node_modules/@types/react-dom": {
+ "version": "18.2.17",
"dev": true,
"license": "MIT",
"dependencies": {
- "bn.js": "^4.1.0",
- "elliptic": "^6.5.3"
+ "@types/react": "*"
}
},
- "node_modules/create-ecdh/node_modules/bn.js": {
- "version": "4.12.0",
+ "node_modules/@types/resolve": {
+ "version": "1.20.6",
"dev": true,
"license": "MIT"
},
- "node_modules/create-hash": {
- "version": "1.2.0",
+ "node_modules/@types/scheduler": {
+ "version": "0.23.0",
+ "license": "MIT"
+ },
+ "node_modules/@types/semver": {
+ "version": "7.5.8",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/send": {
+ "version": "0.17.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "cipher-base": "^1.0.1",
- "inherits": "^2.0.1",
- "md5.js": "^1.3.4",
- "ripemd160": "^2.0.1",
- "sha.js": "^2.4.0"
+ "@types/mime": "^1",
+ "@types/node": "*"
}
},
- "node_modules/create-hmac": {
- "version": "1.1.7",
+ "node_modules/@types/serve-static": {
+ "version": "1.15.7",
"dev": true,
"license": "MIT",
"dependencies": {
- "cipher-base": "^1.0.3",
- "create-hash": "^1.1.0",
- "inherits": "^2.0.1",
- "ripemd160": "^2.0.0",
- "safe-buffer": "^5.0.1",
- "sha.js": "^2.4.8"
+ "@types/http-errors": "*",
+ "@types/node": "*",
+ "@types/send": "*"
}
},
- "node_modules/crelt": {
- "version": "1.0.5",
+ "node_modules/@types/stack-utils": {
+ "version": "2.0.3",
+ "dev": true,
"license": "MIT"
},
- "node_modules/cross-spawn": {
- "version": "7.0.3",
+ "node_modules/@types/through": {
+ "version": "0.0.33",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "path-key": "^3.1.0",
- "shebang-command": "^2.0.0",
- "which": "^2.0.1"
- },
- "engines": {
- "node": ">= 8"
+ "@types/node": "*"
}
},
- "node_modules/crypto-browserify": {
- "version": "3.12.0",
+ "node_modules/@types/tough-cookie": {
+ "version": "4.0.5",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/triple-beam": {
+ "version": "1.3.5",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/unist": {
+ "version": "2.0.10",
+ "license": "MIT"
+ },
+ "node_modules/@types/uuid": {
+ "version": "9.0.8",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/wait-on": {
+ "version": "5.3.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "browserify-cipher": "^1.0.0",
- "browserify-sign": "^4.0.0",
- "create-ecdh": "^4.0.0",
- "create-hash": "^1.1.0",
- "create-hmac": "^1.1.0",
- "diffie-hellman": "^5.0.0",
- "inherits": "^2.0.1",
- "pbkdf2": "^3.0.3",
- "public-encrypt": "^4.0.0",
- "randombytes": "^2.0.0",
- "randomfill": "^1.0.3"
- },
- "engines": {
- "node": "*"
+ "@types/node": "*"
}
},
- "node_modules/crypto-random-string": {
- "version": "2.0.0",
+ "node_modules/@types/yargs": {
+ "version": "17.0.32",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "dependencies": {
+ "@types/yargs-parser": "*"
}
},
- "node_modules/css-loader": {
- "version": "3.6.0",
+ "node_modules/@types/yargs-parser": {
+ "version": "21.0.3",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@typescript-eslint/eslint-plugin": {
+ "version": "5.62.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "camelcase": "^5.3.1",
- "cssesc": "^3.0.0",
- "icss-utils": "^4.1.1",
- "loader-utils": "^1.2.3",
- "normalize-path": "^3.0.0",
- "postcss": "^7.0.32",
- "postcss-modules-extract-imports": "^2.0.0",
- "postcss-modules-local-by-default": "^3.0.2",
- "postcss-modules-scope": "^2.2.0",
- "postcss-modules-values": "^3.0.0",
- "postcss-value-parser": "^4.1.0",
- "schema-utils": "^2.7.0",
- "semver": "^6.3.0"
+ "@eslint-community/regexpp": "^4.4.0",
+ "@typescript-eslint/scope-manager": "5.62.0",
+ "@typescript-eslint/type-utils": "5.62.0",
+ "@typescript-eslint/utils": "5.62.0",
+ "debug": "^4.3.4",
+ "graphemer": "^1.4.0",
+ "ignore": "^5.2.0",
+ "natural-compare-lite": "^1.4.0",
+ "semver": "^7.3.7",
+ "tsutils": "^3.21.0"
},
"engines": {
- "node": ">= 8.9.0"
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"type": "opencollective",
- "url": "https://opencollective.com/webpack"
+ "url": "https://opencollective.com/typescript-eslint"
},
"peerDependencies": {
- "webpack": "^4.0.0 || ^5.0.0"
+ "@typescript-eslint/parser": "^5.0.0",
+ "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
}
},
- "node_modules/css-loader/node_modules/camelcase": {
- "version": "5.3.1",
+ "node_modules/@typescript-eslint/eslint-plugin/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
+ "dependencies": {
+ "yallist": "^4.0.0"
+ },
"engines": {
- "node": ">=6"
+ "node": ">=10"
}
},
- "node_modules/css-loader/node_modules/json5": {
- "version": "1.0.2",
+ "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "minimist": "^1.2.0"
+ "lru-cache": "^6.0.0"
},
"bin": {
- "json5": "lib/cli.js"
- }
- },
- "node_modules/css-loader/node_modules/loader-utils": {
- "version": "1.4.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "big.js": "^5.2.2",
- "emojis-list": "^3.0.0",
- "json5": "^1.0.1"
+ "semver": "bin/semver.js"
},
"engines": {
- "node": ">=4.0.0"
+ "node": ">=10"
}
},
- "node_modules/css-loader/node_modules/schema-utils": {
- "version": "2.7.1",
+ "node_modules/@typescript-eslint/eslint-plugin/node_modules/yallist": {
+ "version": "4.0.0",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/@typescript-eslint/experimental-utils": {
+ "version": "5.62.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@types/json-schema": "^7.0.5",
- "ajv": "^6.12.4",
- "ajv-keywords": "^3.5.2"
+ "@typescript-eslint/utils": "5.62.0"
},
"engines": {
- "node": ">= 8.9.0"
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"type": "opencollective",
- "url": "https://opencollective.com/webpack"
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependencies": {
+ "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
}
},
- "node_modules/css-select": {
- "version": "4.2.1",
+ "node_modules/@typescript-eslint/parser": {
+ "version": "5.62.0",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
- "boolbase": "^1.0.0",
- "css-what": "^5.1.0",
- "domhandler": "^4.3.0",
- "domutils": "^2.8.0",
- "nth-check": "^2.0.1"
+ "@typescript-eslint/scope-manager": "5.62.0",
+ "@typescript-eslint/types": "5.62.0",
+ "@typescript-eslint/typescript-estree": "5.62.0",
+ "debug": "^4.3.4"
},
- "funding": {
- "url": "https://github.com/sponsors/fb55"
- }
- },
- "node_modules/css-what": {
- "version": "5.1.0",
- "dev": true,
- "license": "BSD-2-Clause",
"engines": {
- "node": ">= 6"
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
- "url": "https://github.com/sponsors/fb55"
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependencies": {
+ "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
}
},
- "node_modules/css.escape": {
- "version": "1.5.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/cssesc": {
- "version": "3.0.0",
+ "node_modules/@typescript-eslint/scope-manager": {
+ "version": "5.62.0",
"dev": true,
"license": "MIT",
- "bin": {
- "cssesc": "bin/cssesc"
+ "dependencies": {
+ "@typescript-eslint/types": "5.62.0",
+ "@typescript-eslint/visitor-keys": "5.62.0"
},
"engines": {
- "node": ">=4"
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
}
},
- "node_modules/cssom": {
- "version": "0.4.4",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/cssstyle": {
- "version": "2.3.0",
+ "node_modules/@typescript-eslint/type-utils": {
+ "version": "5.62.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "cssom": "~0.3.6"
+ "@typescript-eslint/typescript-estree": "5.62.0",
+ "@typescript-eslint/utils": "5.62.0",
+ "debug": "^4.3.4",
+ "tsutils": "^3.21.0"
},
"engines": {
- "node": ">=8"
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependencies": {
+ "eslint": "*"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
}
},
- "node_modules/cssstyle/node_modules/cssom": {
- "version": "0.3.8",
+ "node_modules/@typescript-eslint/types": {
+ "version": "5.62.0",
"dev": true,
- "license": "MIT"
- },
- "node_modules/csstype": {
- "version": "3.1.1",
- "license": "MIT"
+ "license": "MIT",
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ }
},
- "node_modules/currently-unhandled": {
- "version": "0.4.1",
+ "node_modules/@typescript-eslint/typescript-estree": {
+ "version": "5.62.0",
"dev": true,
- "license": "MIT",
- "optional": true,
+ "license": "BSD-2-Clause",
"dependencies": {
- "array-find-index": "^1.0.1"
+ "@typescript-eslint/types": "5.62.0",
+ "@typescript-eslint/visitor-keys": "5.62.0",
+ "debug": "^4.3.4",
+ "globby": "^11.1.0",
+ "is-glob": "^4.0.3",
+ "semver": "^7.3.7",
+ "tsutils": "^3.21.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
}
},
- "node_modules/cwd": {
- "version": "0.10.0",
+ "node_modules/@typescript-eslint/typescript-estree/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "find-pkg": "^0.1.2",
- "fs-exists-sync": "^0.1.0"
+ "yallist": "^4.0.0"
},
"engines": {
- "node": ">=0.8"
+ "node": ">=10"
}
},
- "node_modules/cyclist": {
- "version": "1.0.2",
+ "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
- "license": "MIT"
- },
- "node_modules/d": {
- "version": "1.0.1",
"license": "ISC",
"dependencies": {
- "es5-ext": "^0.10.50",
- "type": "^1.0.1"
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/damerau-levenshtein": {
- "version": "1.0.8",
+ "node_modules/@typescript-eslint/typescript-estree/node_modules/yallist": {
+ "version": "4.0.0",
"dev": true,
- "license": "BSD-2-Clause"
+ "license": "ISC"
},
- "node_modules/dargs": {
- "version": "7.0.0",
+ "node_modules/@typescript-eslint/utils": {
+ "version": "5.62.0",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "@eslint-community/eslint-utils": "^4.2.0",
+ "@types/json-schema": "^7.0.9",
+ "@types/semver": "^7.3.12",
+ "@typescript-eslint/scope-manager": "5.62.0",
+ "@typescript-eslint/types": "5.62.0",
+ "@typescript-eslint/typescript-estree": "5.62.0",
+ "eslint-scope": "^5.1.1",
+ "semver": "^7.3.7"
+ },
"engines": {
- "node": ">=8"
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependencies": {
+ "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
}
},
- "node_modules/dashdash": {
- "version": "1.14.1",
+ "node_modules/@typescript-eslint/utils/node_modules/eslint-scope": {
+ "version": "5.1.1",
"dev": true,
- "license": "MIT",
+ "license": "BSD-2-Clause",
"dependencies": {
- "assert-plus": "^1.0.0"
+ "esrecurse": "^4.3.0",
+ "estraverse": "^4.1.1"
},
"engines": {
- "node": ">=0.10"
+ "node": ">=8.0.0"
}
},
- "node_modules/data-urls": {
- "version": "3.0.2",
+ "node_modules/@typescript-eslint/utils/node_modules/estraverse": {
+ "version": "4.3.0",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "abab": "^2.0.6",
- "whatwg-mimetype": "^3.0.0",
- "whatwg-url": "^11.0.0"
- },
+ "license": "BSD-2-Clause",
"engines": {
- "node": ">=12"
+ "node": ">=4.0"
}
},
- "node_modules/data-urls/node_modules/tr46": {
- "version": "3.0.0",
+ "node_modules/@typescript-eslint/utils/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "punycode": "^2.1.1"
+ "yallist": "^4.0.0"
},
"engines": {
- "node": ">=12"
+ "node": ">=10"
}
},
- "node_modules/data-urls/node_modules/webidl-conversions": {
- "version": "7.0.0",
+ "node_modules/@typescript-eslint/utils/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
- "license": "BSD-2-Clause",
+ "license": "ISC",
+ "dependencies": {
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
+ },
"engines": {
- "node": ">=12"
+ "node": ">=10"
}
},
- "node_modules/data-urls/node_modules/whatwg-mimetype": {
- "version": "3.0.0",
+ "node_modules/@typescript-eslint/utils/node_modules/yallist": {
+ "version": "4.0.0",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=12"
- }
+ "license": "ISC"
},
- "node_modules/data-urls/node_modules/whatwg-url": {
- "version": "11.0.0",
+ "node_modules/@typescript-eslint/visitor-keys": {
+ "version": "5.62.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "tr46": "^3.0.0",
- "webidl-conversions": "^7.0.0"
+ "@typescript-eslint/types": "5.62.0",
+ "eslint-visitor-keys": "^3.3.0"
},
"engines": {
- "node": ">=12"
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
}
},
- "node_modules/dateformat": {
- "version": "3.0.3",
+ "node_modules/@ungap/structured-clone": {
+ "version": "1.2.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC"
+ },
+ "node_modules/@washingtonpost/eslint-plugin-wpds": {
+ "resolved": "packages/eslint-plugin",
+ "link": true
+ },
+ "node_modules/@washingtonpost/front-end-utils": {
+ "version": "0.5.17-alpha.1",
+ "license": "ISC"
+ },
+ "node_modules/@washingtonpost/icon-tokens": {
+ "version": "1.9.1",
+ "license": "ISC"
+ },
+ "node_modules/@washingtonpost/logo-tokens": {
+ "version": "1.9.1",
+ "license": "ISC"
+ },
+ "node_modules/@washingtonpost/motion-tokens": {
+ "version": "1.9.1",
+ "license": "ISC"
+ },
+ "node_modules/@washingtonpost/shadow-tokens": {
+ "version": "1.9.1",
+ "license": "ISC"
+ },
+ "node_modules/@washingtonpost/site-favicons": {
+ "version": "0.3.4-alpha.1",
+ "peerDependencies": {
+ "prop-types": "^15.7.2",
+ "react": "^18.2.0",
+ "react-dom": "^18.2.0"
+ }
+ },
+ "node_modules/@washingtonpost/site-footer": {
+ "version": "0.25.3-alpha.1",
+ "dependencies": {
+ "@washingtonpost/front-end-utils": "^0.5.17-alpha.1",
+ "@washingtonpost/site-user-data": "^0.6.2-alpha.1",
+ "@washingtonpost/wpds-ui-kit": "^2.0.0-alpha.6",
+ "swr": "^2.2.0"
+ },
"engines": {
- "node": "*"
+ "node": ">= 12 || >= 14 || >= 16 || >= 18"
+ },
+ "peerDependencies": {
+ "prop-types": "^15.7.2",
+ "react": "^18.2.0",
+ "react-dom": "^18.2.0"
}
},
- "node_modules/debug": {
- "version": "4.3.3",
- "license": "MIT",
+ "node_modules/@washingtonpost/site-user-data": {
+ "version": "0.6.2-alpha.2",
"dependencies": {
- "ms": "2.1.2"
+ "@washingtonpost/front-end-utils": "^0.5.17-alpha.2",
+ "@washingtonpost/subs-sdk": "^1.20.1-react18.5",
+ "react": "^18.2.0"
},
"engines": {
- "node": ">=6.0"
+ "node": ">= 12 || >= 14 || >= 16 || >= 18"
},
- "peerDependenciesMeta": {
- "supports-color": {
- "optional": true
- }
+ "peerDependencies": {
+ "@washingtonpost/front-end-utils": "*",
+ "react": "^18.2.0"
}
},
- "node_modules/debug/node_modules/ms": {
- "version": "2.1.2",
- "license": "MIT"
+ "node_modules/@washingtonpost/site-user-data/node_modules/@washingtonpost/front-end-utils": {
+ "version": "0.5.17-alpha.2",
+ "license": "ISC"
},
- "node_modules/debuglog": {
- "version": "1.0.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": "*"
+ "node_modules/@washingtonpost/spacing-tokens": {
+ "version": "1.9.1",
+ "license": "ISC"
+ },
+ "node_modules/@washingtonpost/subs-sdk": {
+ "version": "1.21.5",
+ "license": "UNLICENSED",
+ "dependencies": {
+ "uuid": "^8.3.2"
}
},
- "node_modules/decamelize": {
- "version": "1.2.0",
- "dev": true,
+ "node_modules/@washingtonpost/subs-sdk/node_modules/uuid": {
+ "version": "8.3.2",
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "bin": {
+ "uuid": "dist/bin/uuid"
}
},
- "node_modules/decamelize-keys": {
- "version": "1.1.0",
- "dev": true,
- "license": "MIT",
+ "node_modules/@washingtonpost/tachyons-css": {
+ "version": "1.9.0",
"dependencies": {
- "decamelize": "^1.1.0",
- "map-obj": "^1.0.0"
+ "@washingtonpost/icon-tokens": "latest",
+ "@washingtonpost/logo-tokens": "latest",
+ "@washingtonpost/motion-tokens": "latest",
+ "@washingtonpost/shadow-tokens": "latest",
+ "@washingtonpost/spacing-tokens": "latest",
+ "@washingtonpost/typography-tokens": "latest",
+ "@washingtonpost/wpds-ui-kit": "latest"
},
- "engines": {
- "node": ">=0.10.0"
+ "peerDependencies": {
+ "@washingtonpost/icon-tokens": "latest",
+ "@washingtonpost/logo-tokens": "latest",
+ "@washingtonpost/motion-tokens": "latest",
+ "@washingtonpost/shadow-tokens": "latest",
+ "@washingtonpost/spacing-tokens": "latest",
+ "@washingtonpost/typography-tokens": "latest",
+ "@washingtonpost/wpds-ui-kit": "latest"
}
},
- "node_modules/decamelize-keys/node_modules/map-obj": {
- "version": "1.0.1",
- "dev": true,
+ "node_modules/@washingtonpost/tachyons-css/node_modules/@washingtonpost/eslint-plugin-wpds": {
+ "version": "1.24.0",
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "@washingtonpost/wpds-theme": "1.24.0"
+ },
+ "peerDependencies": {
+ "@washingtonpost/wpds-theme": "*"
}
},
- "node_modules/decimal.js": {
- "version": "10.4.3",
- "dev": true,
- "license": "MIT"
+ "node_modules/@washingtonpost/tachyons-css/node_modules/@washingtonpost/wpds-ui-kit": {
+ "version": "1.24.0",
+ "license": "MIT",
+ "dependencies": {
+ "@washingtonpost/eslint-plugin-wpds": "1.24.0",
+ "@washingtonpost/wpds-accordion": "1.24.0",
+ "@washingtonpost/wpds-action-menu": "1.24.0",
+ "@washingtonpost/wpds-alert-banner": "1.24.0",
+ "@washingtonpost/wpds-app-bar": "1.24.0",
+ "@washingtonpost/wpds-avatar": "1.24.0",
+ "@washingtonpost/wpds-box": "1.24.0",
+ "@washingtonpost/wpds-button": "1.24.0",
+ "@washingtonpost/wpds-card": "1.24.0",
+ "@washingtonpost/wpds-carousel": "1.24.0",
+ "@washingtonpost/wpds-checkbox": "1.24.0",
+ "@washingtonpost/wpds-container": "1.24.0",
+ "@washingtonpost/wpds-dialog": "1.24.0",
+ "@washingtonpost/wpds-divider": "1.24.0",
+ "@washingtonpost/wpds-drawer": "1.24.0",
+ "@washingtonpost/wpds-error-message": "1.24.0",
+ "@washingtonpost/wpds-fieldset": "1.24.0",
+ "@washingtonpost/wpds-helper-text": "1.24.0",
+ "@washingtonpost/wpds-icon": "1.24.0",
+ "@washingtonpost/wpds-input-label": "1.24.0",
+ "@washingtonpost/wpds-input-password": "1.24.0",
+ "@washingtonpost/wpds-input-search": "1.24.0",
+ "@washingtonpost/wpds-input-shared": "1.24.0",
+ "@washingtonpost/wpds-input-text": "1.24.0",
+ "@washingtonpost/wpds-input-textarea": "1.24.0",
+ "@washingtonpost/wpds-navigation-menu": "1.24.0",
+ "@washingtonpost/wpds-pagination-dots": "1.24.0",
+ "@washingtonpost/wpds-popover": "1.24.0",
+ "@washingtonpost/wpds-radio-group": "1.24.0",
+ "@washingtonpost/wpds-scrim": "1.24.0",
+ "@washingtonpost/wpds-select": "1.24.0",
+ "@washingtonpost/wpds-switch": "1.24.0",
+ "@washingtonpost/wpds-tabs": "1.24.0",
+ "@washingtonpost/wpds-theme": "1.24.0",
+ "@washingtonpost/wpds-tooltip": "1.24.0",
+ "@washingtonpost/wpds-visually-hidden": "1.24.0"
+ },
+ "peerDependencies": {
+ "@types/react": "^17.0.79",
+ "@washingtonpost/eslint-plugin-wpds": "*",
+ "@washingtonpost/wpds-accordion": "*",
+ "@washingtonpost/wpds-action-menu": "*",
+ "@washingtonpost/wpds-alert-banner": "*",
+ "@washingtonpost/wpds-app-bar": "*",
+ "@washingtonpost/wpds-avatar": "*",
+ "@washingtonpost/wpds-box": "*",
+ "@washingtonpost/wpds-button": "*",
+ "@washingtonpost/wpds-card": "*",
+ "@washingtonpost/wpds-carousel": "*",
+ "@washingtonpost/wpds-checkbox": "*",
+ "@washingtonpost/wpds-container": "*",
+ "@washingtonpost/wpds-dialog": "*",
+ "@washingtonpost/wpds-divider": "*",
+ "@washingtonpost/wpds-drawer": "*",
+ "@washingtonpost/wpds-error-message": "*",
+ "@washingtonpost/wpds-fieldset": "*",
+ "@washingtonpost/wpds-helper-text": "*",
+ "@washingtonpost/wpds-icon": "*",
+ "@washingtonpost/wpds-input-label": "*",
+ "@washingtonpost/wpds-input-password": "*",
+ "@washingtonpost/wpds-input-search": "*",
+ "@washingtonpost/wpds-input-shared": "*",
+ "@washingtonpost/wpds-input-text": "*",
+ "@washingtonpost/wpds-input-textarea": "*",
+ "@washingtonpost/wpds-navigation-menu": "*",
+ "@washingtonpost/wpds-pagination-dots": "*",
+ "@washingtonpost/wpds-popover": "*",
+ "@washingtonpost/wpds-radio-group": "*",
+ "@washingtonpost/wpds-scrim": "*",
+ "@washingtonpost/wpds-select": "*",
+ "@washingtonpost/wpds-switch": "*",
+ "@washingtonpost/wpds-tabs": "*",
+ "@washingtonpost/wpds-theme": "*",
+ "@washingtonpost/wpds-tooltip": "*",
+ "@washingtonpost/wpds-visually-hidden": "*"
+ }
},
- "node_modules/decode-named-character-reference": {
- "version": "1.0.2",
+ "node_modules/@washingtonpost/typography-tokens": {
+ "version": "1.9.1",
+ "license": "ISC"
+ },
+ "node_modules/@washingtonpost/wpds-accordion": {
+ "version": "1.24.0",
"license": "MIT",
"dependencies": {
- "character-entities": "^2.0.0"
+ "@radix-ui/react-accordion": "^1.1.0",
+ "@washingtonpost/wpds-assets": "^1.22.0",
+ "@washingtonpost/wpds-icon": "1.24.0",
+ "@washingtonpost/wpds-theme": "1.24.0"
},
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "peerDependencies": {
+ "@washingtonpost/wpds-assets": "^1.18.0",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/decode-named-character-reference/node_modules/character-entities": {
- "version": "2.0.2",
- "license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "node_modules/@washingtonpost/wpds-accordion/node_modules/@washingtonpost/wpds-assets": {
+ "version": "1.25.0",
+ "resolved": "https://registry.npmjs.org/@washingtonpost/wpds-assets/-/wpds-assets-1.25.0.tgz",
+ "integrity": "sha512-g9JxI8HpuewHeJ75snMEo5JQwEH1ZC3GBEUshcUiKUoRjoL9+0XCvhKbW3zpcJHAnWF4nyt3S3t+/oDczGmJ8g==",
+ "dependencies": {
+ "react": "^16.0.1 || ^17.0.2",
+ "react-dom": "^16.0.1 || ^17.0.2"
+ },
+ "peerDependencies": {
+ "react": "^16.0.1 || ^17.0.2",
+ "react-dom": "^16.0.1 || ^17.0.2"
}
},
- "node_modules/decode-uri-component": {
- "version": "0.2.0",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-action-menu": {
+ "version": "1.24.0",
"license": "MIT",
- "engines": {
- "node": ">=0.10"
+ "dependencies": {
+ "@radix-ui/react-dropdown-menu": "2.0.3",
+ "@washingtonpost/wpds-assets": "^1.20.0",
+ "@washingtonpost/wpds-button": "1.24.0",
+ "@washingtonpost/wpds-divider": "1.24.0",
+ "@washingtonpost/wpds-icon": "1.24.0",
+ "@washingtonpost/wpds-theme": "1.24.0"
+ },
+ "peerDependencies": {
+ "@washingtonpost/wpds-assets": "^1.20.0",
+ "@washingtonpost/wpds-button": "^1.7.0",
+ "@washingtonpost/wpds-icon": "*",
+ "@washingtonpost/wpds-theme": "*",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/decompress-response": {
- "version": "3.3.0",
- "dev": true,
- "license": "MIT",
+ "node_modules/@washingtonpost/wpds-action-menu/node_modules/@washingtonpost/wpds-assets": {
+ "version": "1.25.0",
+ "resolved": "https://registry.npmjs.org/@washingtonpost/wpds-assets/-/wpds-assets-1.25.0.tgz",
+ "integrity": "sha512-g9JxI8HpuewHeJ75snMEo5JQwEH1ZC3GBEUshcUiKUoRjoL9+0XCvhKbW3zpcJHAnWF4nyt3S3t+/oDczGmJ8g==",
"dependencies": {
- "mimic-response": "^1.0.0"
+ "react": "^16.0.1 || ^17.0.2",
+ "react-dom": "^16.0.1 || ^17.0.2"
},
- "engines": {
- "node": ">=4"
+ "peerDependencies": {
+ "react": "^16.0.1 || ^17.0.2",
+ "react-dom": "^16.0.1 || ^17.0.2"
}
},
- "node_modules/dedent": {
- "version": "0.7.0",
- "dev": true,
- "license": "MIT"
+ "node_modules/@washingtonpost/wpds-alert-banner": {
+ "version": "1.24.0",
+ "license": "MIT",
+ "dependencies": {
+ "@washingtonpost/wpds-app-bar": "1.24.0",
+ "@washingtonpost/wpds-assets": "^1.22.0",
+ "@washingtonpost/wpds-button": "1.24.0",
+ "@washingtonpost/wpds-container": "1.24.0",
+ "@washingtonpost/wpds-icon": "1.24.0",
+ "@washingtonpost/wpds-theme": "1.24.0",
+ "react": "^16.8.6 || ^17.0.2"
+ },
+ "peerDependencies": {
+ "@washingtonpost/wpds-app-bar": "*",
+ "@washingtonpost/wpds-assets": "^1.22.0",
+ "@washingtonpost/wpds-button": "*",
+ "@washingtonpost/wpds-container": "*",
+ "@washingtonpost/wpds-icon": "*",
+ "@washingtonpost/wpds-theme": "*",
+ "react": "^16.8.6 || ^17.0.2"
+ }
},
- "node_modules/deep-equal": {
- "version": "2.2.2",
- "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.2.tgz",
- "integrity": "sha512-xjVyBf0w5vH0I42jdAZzOKVldmPgSulmiyPRywoyq7HXC9qdgo17kxJE+rdnif5Tz6+pIrpJI8dCpMNLIGkUiA==",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-alert-banner/node_modules/@washingtonpost/wpds-assets": {
+ "version": "1.25.0",
+ "resolved": "https://registry.npmjs.org/@washingtonpost/wpds-assets/-/wpds-assets-1.25.0.tgz",
+ "integrity": "sha512-g9JxI8HpuewHeJ75snMEo5JQwEH1ZC3GBEUshcUiKUoRjoL9+0XCvhKbW3zpcJHAnWF4nyt3S3t+/oDczGmJ8g==",
"dependencies": {
- "array-buffer-byte-length": "^1.0.0",
- "call-bind": "^1.0.2",
- "es-get-iterator": "^1.1.3",
- "get-intrinsic": "^1.2.1",
- "is-arguments": "^1.1.1",
- "is-array-buffer": "^3.0.2",
- "is-date-object": "^1.0.5",
- "is-regex": "^1.1.4",
- "is-shared-array-buffer": "^1.0.2",
- "isarray": "^2.0.5",
- "object-is": "^1.1.5",
- "object-keys": "^1.1.1",
- "object.assign": "^4.1.4",
- "regexp.prototype.flags": "^1.5.0",
- "side-channel": "^1.0.4",
- "which-boxed-primitive": "^1.0.2",
- "which-collection": "^1.0.1",
- "which-typed-array": "^1.1.9"
+ "react": "^16.0.1 || ^17.0.2",
+ "react-dom": "^16.0.1 || ^17.0.2"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "peerDependencies": {
+ "react": "^16.0.1 || ^17.0.2",
+ "react-dom": "^16.0.1 || ^17.0.2"
}
},
- "node_modules/deep-extend": {
- "version": "0.6.0",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-app-bar": {
+ "version": "1.24.0",
"license": "MIT",
- "engines": {
- "node": ">=4.0.0"
+ "dependencies": {
+ "@washingtonpost/wpds-theme": "1.24.0",
+ "react": "^16.8.6 || ^17.0.2"
+ },
+ "peerDependencies": {
+ "@washingtonpost/wpds-theme": "*",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/deep-is": {
- "version": "0.1.4",
- "dev": true,
- "license": "MIT"
+ "node_modules/@washingtonpost/wpds-assets": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/@washingtonpost/wpds-assets/-/wpds-assets-2.0.0.tgz",
+ "integrity": "sha512-ZYXOv5rEEq3A+BT3izaJdTTf/x1rMkRSKjVS6jwJ+YGVifp1fUPTB9fGPRxCxEnWTRjo0a+xXIe0tUK36YvjEw==",
+ "dependencies": {
+ "react": "^18.2.0",
+ "react-dom": "^18.2.0"
+ },
+ "peerDependencies": {
+ "react": "^18.2.0",
+ "react-dom": "^18.2.0"
+ }
},
- "node_modules/deepmerge": {
- "version": "4.2.2",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-avatar": {
+ "version": "1.24.0",
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "@radix-ui/react-avatar": "latest",
+ "@washingtonpost/wpds-theme": "1.24.0"
+ },
+ "peerDependencies": {
+ "@radix-ui/react-avatar": "latest",
+ "@washingtonpost/wpds-theme": "*",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/default-browser-id": {
- "version": "1.0.4",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-box": {
+ "version": "1.24.0",
"license": "MIT",
- "optional": true,
"dependencies": {
- "bplist-parser": "^0.1.0",
- "meow": "^3.1.0",
- "untildify": "^2.0.0"
- },
- "bin": {
- "default-browser-id": "cli.js"
+ "@washingtonpost/wpds-theme": "1.24.0",
+ "react": "^16.8.6 || ^17.0.2"
},
- "engines": {
- "node": ">=0.10.0"
+ "peerDependencies": {
+ "@washingtonpost/wpds-theme": "*",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/default-browser-id/node_modules/camelcase": {
- "version": "2.1.1",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-button": {
+ "version": "1.24.0",
"license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "@washingtonpost/wpds-theme": "1.24.0",
+ "react": "^16.8.6 || ^17.0.2"
+ },
+ "peerDependencies": {
+ "@washingtonpost/wpds-theme": "*",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/default-browser-id/node_modules/camelcase-keys": {
- "version": "2.1.0",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-card": {
+ "version": "1.24.0",
"license": "MIT",
- "optional": true,
"dependencies": {
- "camelcase": "^2.0.0",
- "map-obj": "^1.0.0"
+ "@washingtonpost/wpds-theme": "1.24.0"
},
- "engines": {
- "node": ">=0.10.0"
+ "peerDependencies": {
+ "@washingtonpost/wpds-theme": "*",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/default-browser-id/node_modules/find-up": {
- "version": "1.1.2",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-carousel": {
+ "version": "1.24.0",
"license": "MIT",
- "optional": true,
"dependencies": {
- "path-exists": "^2.0.0",
- "pinkie-promise": "^2.0.0"
+ "@radix-ui/react-slot": "^1.0.0",
+ "@radix-ui/react-use-controllable-state": "^1.0.0",
+ "@washingtonpost/wpds-assets": "^1.22.0",
+ "@washingtonpost/wpds-button": "1.24.0",
+ "@washingtonpost/wpds-icon": "1.24.0",
+ "@washingtonpost/wpds-pagination-dots": "1.24.0",
+ "@washingtonpost/wpds-theme": "1.24.0",
+ "nanoid": "^3.3.4",
+ "react-swipeable": "^7.0.0"
},
- "engines": {
- "node": ">=0.10.0"
+ "peerDependencies": {
+ "@washingtonpost/wpds-assets": "^1.22.0",
+ "@washingtonpost/wpds-button": "*",
+ "@washingtonpost/wpds-icon": "*",
+ "@washingtonpost/wpds-pagination-dots": "*",
+ "@washingtonpost/wpds-theme": "*",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/default-browser-id/node_modules/hosted-git-info": {
- "version": "2.8.9",
- "dev": true,
- "license": "ISC",
- "optional": true
+ "node_modules/@washingtonpost/wpds-carousel/node_modules/@washingtonpost/wpds-assets": {
+ "version": "1.25.0",
+ "resolved": "https://registry.npmjs.org/@washingtonpost/wpds-assets/-/wpds-assets-1.25.0.tgz",
+ "integrity": "sha512-g9JxI8HpuewHeJ75snMEo5JQwEH1ZC3GBEUshcUiKUoRjoL9+0XCvhKbW3zpcJHAnWF4nyt3S3t+/oDczGmJ8g==",
+ "dependencies": {
+ "react": "^16.0.1 || ^17.0.2",
+ "react-dom": "^16.0.1 || ^17.0.2"
+ },
+ "peerDependencies": {
+ "react": "^16.0.1 || ^17.0.2",
+ "react-dom": "^16.0.1 || ^17.0.2"
+ }
},
- "node_modules/default-browser-id/node_modules/indent-string": {
- "version": "2.1.0",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-checkbox": {
+ "version": "1.24.0",
"license": "MIT",
- "optional": true,
"dependencies": {
- "repeating": "^2.0.0"
+ "@radix-ui/react-checkbox": "^1.0.0",
+ "@washingtonpost/wpds-assets": "^1.22.0",
+ "@washingtonpost/wpds-icon": "1.24.0",
+ "@washingtonpost/wpds-input-label": "1.24.0",
+ "@washingtonpost/wpds-input-shared": "1.24.0",
+ "@washingtonpost/wpds-theme": "1.24.0",
+ "@washingtonpost/wpds-visually-hidden": "1.24.0",
+ "react": "^16.8.6 || ^17.0.2"
},
- "engines": {
- "node": ">=0.10.0"
+ "peerDependencies": {
+ "@radix-ui/react-checkbox": "^1.0.0",
+ "@washingtonpost/wpds-assets": "^1.22.0",
+ "@washingtonpost/wpds-icon": "*",
+ "@washingtonpost/wpds-input-label": "*",
+ "@washingtonpost/wpds-input-shared": "*",
+ "@washingtonpost/wpds-theme": "*",
+ "@washingtonpost/wpds-visually-hidden": "*",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/default-browser-id/node_modules/load-json-file": {
- "version": "1.1.0",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-checkbox/node_modules/@washingtonpost/wpds-assets": {
+ "version": "1.25.0",
+ "resolved": "https://registry.npmjs.org/@washingtonpost/wpds-assets/-/wpds-assets-1.25.0.tgz",
+ "integrity": "sha512-g9JxI8HpuewHeJ75snMEo5JQwEH1ZC3GBEUshcUiKUoRjoL9+0XCvhKbW3zpcJHAnWF4nyt3S3t+/oDczGmJ8g==",
+ "dependencies": {
+ "react": "^16.0.1 || ^17.0.2",
+ "react-dom": "^16.0.1 || ^17.0.2"
+ },
+ "peerDependencies": {
+ "react": "^16.0.1 || ^17.0.2",
+ "react-dom": "^16.0.1 || ^17.0.2"
+ }
+ },
+ "node_modules/@washingtonpost/wpds-container": {
+ "version": "1.24.0",
"license": "MIT",
- "optional": true,
"dependencies": {
- "graceful-fs": "^4.1.2",
- "parse-json": "^2.2.0",
- "pify": "^2.0.0",
- "pinkie-promise": "^2.0.0",
- "strip-bom": "^2.0.0"
+ "@washingtonpost/wpds-theme": "1.24.0",
+ "react": "^16.8.6 || ^17.0.2"
},
- "engines": {
- "node": ">=0.10.0"
+ "peerDependencies": {
+ "@washingtonpost/wpds-theme": "*",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/default-browser-id/node_modules/map-obj": {
- "version": "1.0.1",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-dialog": {
+ "version": "1.24.0",
"license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "@radix-ui/react-dialog": "^1.0.5",
+ "@radix-ui/react-use-controllable-state": "^1.0.1",
+ "@washingtonpost/wpds-assets": "^1.23.1",
+ "@washingtonpost/wpds-button": "1.24.0",
+ "@washingtonpost/wpds-icon": "1.24.0",
+ "@washingtonpost/wpds-theme": "1.24.0",
+ "react-transition-group": "^4.4.5"
+ },
+ "peerDependencies": {
+ "@washingtonpost/wpds-theme": "*",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/default-browser-id/node_modules/meow": {
- "version": "3.7.0",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-dialog/node_modules/@washingtonpost/wpds-assets": {
+ "version": "1.25.0",
+ "resolved": "https://registry.npmjs.org/@washingtonpost/wpds-assets/-/wpds-assets-1.25.0.tgz",
+ "integrity": "sha512-g9JxI8HpuewHeJ75snMEo5JQwEH1ZC3GBEUshcUiKUoRjoL9+0XCvhKbW3zpcJHAnWF4nyt3S3t+/oDczGmJ8g==",
+ "dependencies": {
+ "react": "^16.0.1 || ^17.0.2",
+ "react-dom": "^16.0.1 || ^17.0.2"
+ },
+ "peerDependencies": {
+ "react": "^16.0.1 || ^17.0.2",
+ "react-dom": "^16.0.1 || ^17.0.2"
+ }
+ },
+ "node_modules/@washingtonpost/wpds-divider": {
+ "version": "1.24.0",
"license": "MIT",
- "optional": true,
"dependencies": {
- "camelcase-keys": "^2.0.0",
- "decamelize": "^1.1.2",
- "loud-rejection": "^1.0.0",
- "map-obj": "^1.0.1",
- "minimist": "^1.1.3",
- "normalize-package-data": "^2.3.4",
- "object-assign": "^4.0.1",
- "read-pkg-up": "^1.0.1",
- "redent": "^1.0.0",
- "trim-newlines": "^1.0.0"
+ "@radix-ui/react-separator": "^1.0.0",
+ "@washingtonpost/wpds-theme": "1.24.0"
},
- "engines": {
- "node": ">=0.10.0"
+ "peerDependencies": {
+ "@washingtonpost/wpds-theme": "*",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/default-browser-id/node_modules/normalize-package-data": {
- "version": "2.5.0",
- "dev": true,
- "license": "BSD-2-Clause",
- "optional": true,
+ "node_modules/@washingtonpost/wpds-docs": {
+ "resolved": "build.washingtonpost.com",
+ "link": true
+ },
+ "node_modules/@washingtonpost/wpds-drawer": {
+ "version": "1.24.0",
+ "license": "MIT",
"dependencies": {
- "hosted-git-info": "^2.1.4",
- "resolve": "^1.10.0",
- "semver": "2 || 3 || 4 || 5",
- "validate-npm-package-license": "^3.0.1"
+ "@radix-ui/react-focus-scope": "^1.0.0",
+ "@washingtonpost/wpds-assets": "^1.22.0",
+ "@washingtonpost/wpds-button": "1.24.0",
+ "@washingtonpost/wpds-icon": "1.24.0",
+ "@washingtonpost/wpds-scrim": "1.24.0",
+ "@washingtonpost/wpds-theme": "1.24.0",
+ "react-transition-group": "^4.4.5"
+ },
+ "peerDependencies": {
+ "@washingtonpost/wpds-assets": "^1.22.0",
+ "@washingtonpost/wpds-button": "*",
+ "@washingtonpost/wpds-icon": "*",
+ "@washingtonpost/wpds-scrim": "*",
+ "@washingtonpost/wpds-theme": "*",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/default-browser-id/node_modules/parse-json": {
- "version": "2.2.0",
- "dev": true,
- "license": "MIT",
- "optional": true,
+ "node_modules/@washingtonpost/wpds-drawer/node_modules/@washingtonpost/wpds-assets": {
+ "version": "1.25.0",
+ "resolved": "https://registry.npmjs.org/@washingtonpost/wpds-assets/-/wpds-assets-1.25.0.tgz",
+ "integrity": "sha512-g9JxI8HpuewHeJ75snMEo5JQwEH1ZC3GBEUshcUiKUoRjoL9+0XCvhKbW3zpcJHAnWF4nyt3S3t+/oDczGmJ8g==",
"dependencies": {
- "error-ex": "^1.2.0"
+ "react": "^16.0.1 || ^17.0.2",
+ "react-dom": "^16.0.1 || ^17.0.2"
},
- "engines": {
- "node": ">=0.10.0"
+ "peerDependencies": {
+ "react": "^16.0.1 || ^17.0.2",
+ "react-dom": "^16.0.1 || ^17.0.2"
}
},
- "node_modules/default-browser-id/node_modules/path-exists": {
- "version": "2.1.0",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-error-message": {
+ "version": "1.24.0",
"license": "MIT",
- "optional": true,
"dependencies": {
- "pinkie-promise": "^2.0.0"
+ "@washingtonpost/wpds-theme": "1.24.0"
},
- "engines": {
- "node": ">=0.10.0"
+ "peerDependencies": {
+ "@washingtonpost/wpds-theme": "*",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/default-browser-id/node_modules/path-type": {
- "version": "1.1.0",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-fieldset": {
+ "version": "1.24.0",
"license": "MIT",
- "optional": true,
"dependencies": {
- "graceful-fs": "^4.1.2",
- "pify": "^2.0.0",
- "pinkie-promise": "^2.0.0"
+ "@washingtonpost/wpds-theme": "1.24.0"
},
- "engines": {
- "node": ">=0.10.0"
+ "peerDependencies": {
+ "@washingtonpost/wpds-theme": "*",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/default-browser-id/node_modules/pify": {
- "version": "2.3.0",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-helper-text": {
+ "version": "1.24.0",
"license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "@washingtonpost/wpds-theme": "1.24.0"
+ },
+ "peerDependencies": {
+ "@washingtonpost/wpds-theme": "*",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/default-browser-id/node_modules/read-pkg": {
- "version": "1.1.0",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-icon": {
+ "version": "1.24.0",
"license": "MIT",
- "optional": true,
"dependencies": {
- "load-json-file": "^1.0.0",
- "normalize-package-data": "^2.3.2",
- "path-type": "^1.0.0"
+ "@washingtonpost/wpds-theme": "1.24.0",
+ "@washingtonpost/wpds-visually-hidden": "1.24.0",
+ "react": "^16.8.6 || ^17.0.2"
},
- "engines": {
- "node": ">=0.10.0"
+ "peerDependencies": {
+ "@washingtonpost/wpds-theme": "*",
+ "@washingtonpost/wpds-visually-hidden": "*",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/default-browser-id/node_modules/read-pkg-up": {
- "version": "1.0.1",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-input-label": {
+ "version": "1.24.0",
"license": "MIT",
- "optional": true,
"dependencies": {
- "find-up": "^1.0.0",
- "read-pkg": "^1.0.0"
+ "@radix-ui/react-label": "^1.0.0",
+ "@washingtonpost/wpds-input-shared": "1.24.0",
+ "@washingtonpost/wpds-theme": "1.24.0"
},
- "engines": {
- "node": ">=0.10.0"
+ "peerDependencies": {
+ "@washingtonpost/wpds-input-shared": "*",
+ "@washingtonpost/wpds-theme": "*",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/default-browser-id/node_modules/redent": {
- "version": "1.0.0",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-input-password": {
+ "version": "1.24.0",
"license": "MIT",
- "optional": true,
"dependencies": {
- "indent-string": "^2.1.0",
- "strip-indent": "^1.0.1"
+ "@washingtonpost/wpds-assets": "^1.22.0",
+ "@washingtonpost/wpds-icon": "1.24.0",
+ "@washingtonpost/wpds-input-text": "1.24.0"
},
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/default-browser-id/node_modules/semver": {
- "version": "5.7.1",
- "dev": true,
- "license": "ISC",
- "optional": true,
- "bin": {
- "semver": "bin/semver"
+ "peerDependencies": {
+ "@washingtonpost/wpds-assets": "^1.22.0",
+ "@washingtonpost/wpds-icon": "*",
+ "@washingtonpost/wpds-input-text": "*",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/default-browser-id/node_modules/strip-bom": {
- "version": "2.0.0",
- "dev": true,
- "license": "MIT",
- "optional": true,
+ "node_modules/@washingtonpost/wpds-input-password/node_modules/@washingtonpost/wpds-assets": {
+ "version": "1.25.0",
+ "resolved": "https://registry.npmjs.org/@washingtonpost/wpds-assets/-/wpds-assets-1.25.0.tgz",
+ "integrity": "sha512-g9JxI8HpuewHeJ75snMEo5JQwEH1ZC3GBEUshcUiKUoRjoL9+0XCvhKbW3zpcJHAnWF4nyt3S3t+/oDczGmJ8g==",
"dependencies": {
- "is-utf8": "^0.2.0"
+ "react": "^16.0.1 || ^17.0.2",
+ "react-dom": "^16.0.1 || ^17.0.2"
},
- "engines": {
- "node": ">=0.10.0"
+ "peerDependencies": {
+ "react": "^16.0.1 || ^17.0.2",
+ "react-dom": "^16.0.1 || ^17.0.2"
}
},
- "node_modules/default-browser-id/node_modules/strip-indent": {
- "version": "1.0.1",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-input-search": {
+ "version": "1.24.0",
"license": "MIT",
- "optional": true,
"dependencies": {
- "get-stdin": "^4.0.1"
- },
- "bin": {
- "strip-indent": "cli.js"
+ "@reach/combobox": "^0.18.0",
+ "@reach/popover": "^0.18.0",
+ "@washingtonpost/wpds-assets": "^1.22.0",
+ "@washingtonpost/wpds-icon": "1.24.0",
+ "@washingtonpost/wpds-input-label": "1.24.0",
+ "@washingtonpost/wpds-input-text": "1.24.0",
+ "@washingtonpost/wpds-theme": "1.24.0",
+ "match-sorter": "6.3.1"
},
- "engines": {
- "node": ">=0.10.0"
+ "peerDependencies": {
+ "@washingtonpost/wpds-assets": "^1.18.0",
+ "@washingtonpost/wpds-icon": "*",
+ "@washingtonpost/wpds-input-label": "*",
+ "@washingtonpost/wpds-input-text": "*",
+ "@washingtonpost/wpds-theme": "*",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/default-browser-id/node_modules/trim-newlines": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
+ "node_modules/@washingtonpost/wpds-input-search/node_modules/@washingtonpost/wpds-assets": {
+ "version": "1.25.0",
+ "resolved": "https://registry.npmjs.org/@washingtonpost/wpds-assets/-/wpds-assets-1.25.0.tgz",
+ "integrity": "sha512-g9JxI8HpuewHeJ75snMEo5JQwEH1ZC3GBEUshcUiKUoRjoL9+0XCvhKbW3zpcJHAnWF4nyt3S3t+/oDczGmJ8g==",
+ "dependencies": {
+ "react": "^16.0.1 || ^17.0.2",
+ "react-dom": "^16.0.1 || ^17.0.2"
+ },
+ "peerDependencies": {
+ "react": "^16.0.1 || ^17.0.2",
+ "react-dom": "^16.0.1 || ^17.0.2"
}
},
- "node_modules/default-require-extensions": {
- "version": "3.0.1",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-input-shared": {
+ "version": "1.24.0",
"license": "MIT",
"dependencies": {
- "strip-bom": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
+ "@washingtonpost/wpds-theme": "1.24.0"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "peerDependencies": {
+ "@washingtonpost/wpds-theme": "*",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/defaults": {
- "version": "1.0.3",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-input-text": {
+ "version": "1.24.0",
"license": "MIT",
"dependencies": {
- "clone": "^1.0.2"
+ "@radix-ui/react-label": "^1.0.0",
+ "@washingtonpost/wpds-assets": "^1.22.0",
+ "@washingtonpost/wpds-button": "1.24.0",
+ "@washingtonpost/wpds-error-message": "1.24.0",
+ "@washingtonpost/wpds-helper-text": "1.24.0",
+ "@washingtonpost/wpds-icon": "1.24.0",
+ "@washingtonpost/wpds-input-label": "1.24.0",
+ "@washingtonpost/wpds-input-shared": "1.24.0",
+ "@washingtonpost/wpds-theme": "1.24.0",
+ "@washingtonpost/wpds-visually-hidden": "1.24.0",
+ "nanoid": "^3.3.4"
+ },
+ "peerDependencies": {
+ "@washingtonpost/wpds-assets": "^1.22.0",
+ "@washingtonpost/wpds-button": "*",
+ "@washingtonpost/wpds-divider": "*",
+ "@washingtonpost/wpds-error-message": "*",
+ "@washingtonpost/wpds-helper-text": "*",
+ "@washingtonpost/wpds-icon": "*",
+ "@washingtonpost/wpds-input-label": "*",
+ "@washingtonpost/wpds-input-shared": "*",
+ "@washingtonpost/wpds-theme": "*",
+ "@washingtonpost/wpds-visually-hidden": "*",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/defer-to-connect": {
- "version": "1.1.3",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/define-data-property": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.0.tgz",
- "integrity": "sha512-UzGwzcjyv3OtAvolTj1GoyNYzfFR+iqbGjcnBEENZVCpM4/Ng1yhGNvS3lR/xDS74Tb2wGG9WzNSNIOS9UVb2g==",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-input-text/node_modules/@washingtonpost/wpds-assets": {
+ "version": "1.25.0",
+ "resolved": "https://registry.npmjs.org/@washingtonpost/wpds-assets/-/wpds-assets-1.25.0.tgz",
+ "integrity": "sha512-g9JxI8HpuewHeJ75snMEo5JQwEH1ZC3GBEUshcUiKUoRjoL9+0XCvhKbW3zpcJHAnWF4nyt3S3t+/oDczGmJ8g==",
"dependencies": {
- "get-intrinsic": "^1.2.1",
- "gopd": "^1.0.1",
- "has-property-descriptors": "^1.0.0"
+ "react": "^16.0.1 || ^17.0.2",
+ "react-dom": "^16.0.1 || ^17.0.2"
},
- "engines": {
- "node": ">= 0.4"
+ "peerDependencies": {
+ "react": "^16.0.1 || ^17.0.2",
+ "react-dom": "^16.0.1 || ^17.0.2"
}
},
- "node_modules/define-lazy-prop": {
- "version": "2.0.0",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-input-textarea": {
+ "version": "1.24.0",
"license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/define-properties": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz",
- "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==",
- "dev": true,
"dependencies": {
- "define-data-property": "^1.0.1",
- "has-property-descriptors": "^1.0.0",
- "object-keys": "^1.1.1"
- },
- "engines": {
- "node": ">= 0.4"
+ "@washingtonpost/wpds-error-message": "1.24.0",
+ "@washingtonpost/wpds-helper-text": "1.24.0",
+ "@washingtonpost/wpds-input-label": "1.24.0",
+ "@washingtonpost/wpds-input-shared": "1.24.0",
+ "@washingtonpost/wpds-theme": "1.24.0",
+ "nanoid": "^3.3.4",
+ "react": "^16.8.6 || ^17.0.2"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "peerDependencies": {
+ "@washingtonpost/wpds-error-message": "*",
+ "@washingtonpost/wpds-helper-text": "*",
+ "@washingtonpost/wpds-input-label": "*",
+ "@washingtonpost/wpds-input-shared": "*",
+ "@washingtonpost/wpds-theme": "*",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/define-property": {
- "version": "2.0.2",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-kitchen-sink": {
+ "resolved": "packages/kitchen-sink",
+ "link": true
+ },
+ "node_modules/@washingtonpost/wpds-navigation-menu": {
+ "version": "1.24.0",
"license": "MIT",
"dependencies": {
- "is-descriptor": "^1.0.2",
- "isobject": "^3.0.1"
+ "@popperjs/core": "^2.11.7",
+ "@radix-ui/react-navigation-menu": "^1.1.2",
+ "@washingtonpost/wpds-theme": "1.24.0",
+ "popper-max-size-modifier": "^0.2.0",
+ "react-popper": "^2.3.0",
+ "react-transition-group": "^4.4.5"
},
- "engines": {
- "node": ">=0.10.0"
+ "peerDependencies": {
+ "@washingtonpost/wpds-theme": "*",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/del": {
- "version": "6.0.0",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-pagination-dots": {
+ "version": "1.24.0",
"license": "MIT",
"dependencies": {
- "globby": "^11.0.1",
- "graceful-fs": "^4.2.4",
- "is-glob": "^4.0.1",
- "is-path-cwd": "^2.2.0",
- "is-path-inside": "^3.0.2",
- "p-map": "^4.0.0",
- "rimraf": "^3.0.2",
- "slash": "^3.0.0"
- },
- "engines": {
- "node": ">=10"
+ "@washingtonpost/wpds-theme": "1.24.0"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "peerDependencies": {
+ "@washingtonpost/wpds-theme": "*",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/del/node_modules/p-map": {
- "version": "4.0.0",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-popover": {
+ "version": "1.24.0",
"license": "MIT",
"dependencies": {
- "aggregate-error": "^3.0.0"
- },
- "engines": {
- "node": ">=10"
+ "@radix-ui/react-popover": "^1.0.2",
+ "@washingtonpost/wpds-assets": "^1.22.0",
+ "@washingtonpost/wpds-button": "1.24.0",
+ "@washingtonpost/wpds-icon": "1.24.0",
+ "@washingtonpost/wpds-theme": "1.24.0"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/delayed-stream": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.4.0"
+ "peerDependencies": {
+ "@washingtonpost/wpds-theme": "^1.18.0",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/delegates": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/depd": {
- "version": "1.1.2",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
+ "node_modules/@washingtonpost/wpds-popover/node_modules/@washingtonpost/wpds-assets": {
+ "version": "1.25.0",
+ "resolved": "https://registry.npmjs.org/@washingtonpost/wpds-assets/-/wpds-assets-1.25.0.tgz",
+ "integrity": "sha512-g9JxI8HpuewHeJ75snMEo5JQwEH1ZC3GBEUshcUiKUoRjoL9+0XCvhKbW3zpcJHAnWF4nyt3S3t+/oDczGmJ8g==",
+ "dependencies": {
+ "react": "^16.0.1 || ^17.0.2",
+ "react-dom": "^16.0.1 || ^17.0.2"
+ },
+ "peerDependencies": {
+ "react": "^16.0.1 || ^17.0.2",
+ "react-dom": "^16.0.1 || ^17.0.2"
}
},
- "node_modules/deprecation": {
- "version": "2.3.1",
- "license": "ISC"
- },
- "node_modules/dequal": {
- "version": "2.0.3",
+ "node_modules/@washingtonpost/wpds-radio-group": {
+ "version": "1.24.0",
"license": "MIT",
- "engines": {
- "node": ">=6"
+ "dependencies": {
+ "@radix-ui/react-radio-group": "^1.0.0",
+ "@washingtonpost/wpds-error-message": "1.24.0",
+ "@washingtonpost/wpds-fieldset": "1.24.0",
+ "@washingtonpost/wpds-input-label": "1.24.0",
+ "@washingtonpost/wpds-theme": "1.24.0",
+ "nanoid": "^3.3.3"
+ },
+ "peerDependencies": {
+ "@washingtonpost/wpds-error-message": "*",
+ "@washingtonpost/wpds-fieldset": "*",
+ "@washingtonpost/wpds-input-label": "*",
+ "@washingtonpost/wpds-theme": "*",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/des.js": {
- "version": "1.1.0",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-scrim": {
+ "version": "1.24.0",
"license": "MIT",
"dependencies": {
- "inherits": "^2.0.1",
- "minimalistic-assert": "^1.0.0"
+ "@radix-ui/react-dialog": "^1.0.0",
+ "@washingtonpost/wpds-theme": "1.24.0",
+ "react-transition-group": "^4.4.5"
+ },
+ "peerDependencies": {
+ "@washingtonpost/wpds-theme": "^0.25.0",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/destroy": {
- "version": "1.0.4",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/detab": {
- "version": "2.0.4",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-select": {
+ "version": "1.24.0",
"license": "MIT",
"dependencies": {
- "repeat-string": "^1.5.4"
+ "@radix-ui/react-select": "^1.2.2",
+ "@radix-ui/react-use-controllable-state": "^1.0.0",
+ "@washingtonpost/wpds-assets": "^1.22.0",
+ "@washingtonpost/wpds-divider": "1.24.0",
+ "@washingtonpost/wpds-icon": "1.24.0",
+ "@washingtonpost/wpds-input-label": "1.24.0",
+ "@washingtonpost/wpds-input-shared": "1.24.0",
+ "@washingtonpost/wpds-theme": "1.24.0",
+ "nanoid": "^3.3.4"
},
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "peerDependencies": {
+ "@radix-ui/react-select": "^1.2.2",
+ "@radix-ui/react-use-controllable-state": "^1.0.0",
+ "@washingtonpost/wpds-assets": "^1.22.0",
+ "@washingtonpost/wpds-divider": "*",
+ "@washingtonpost/wpds-icon": "*",
+ "@washingtonpost/wpds-input-label": "*",
+ "@washingtonpost/wpds-input-shared": "*",
+ "@washingtonpost/wpds-theme": "*",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/detect-file": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "node_modules/@washingtonpost/wpds-select/node_modules/@washingtonpost/wpds-assets": {
+ "version": "1.25.0",
+ "resolved": "https://registry.npmjs.org/@washingtonpost/wpds-assets/-/wpds-assets-1.25.0.tgz",
+ "integrity": "sha512-g9JxI8HpuewHeJ75snMEo5JQwEH1ZC3GBEUshcUiKUoRjoL9+0XCvhKbW3zpcJHAnWF4nyt3S3t+/oDczGmJ8g==",
+ "dependencies": {
+ "react": "^16.0.1 || ^17.0.2",
+ "react-dom": "^16.0.1 || ^17.0.2"
+ },
+ "peerDependencies": {
+ "react": "^16.0.1 || ^17.0.2",
+ "react-dom": "^16.0.1 || ^17.0.2"
}
},
- "node_modules/detect-indent": {
- "version": "6.1.0",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-switch": {
+ "version": "1.24.0",
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "dependencies": {
+ "@radix-ui/react-switch": "^1.0.1",
+ "@washingtonpost/wpds-theme": "1.24.0"
+ },
+ "peerDependencies": {
+ "@washingtonpost/wpds-theme": "*",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/detect-newline": {
- "version": "3.1.0",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-tabs": {
+ "version": "1.24.0",
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "dependencies": {
+ "@radix-ui/react-primitive": "^1.0.2",
+ "@radix-ui/react-tabs": "latest",
+ "@washingtonpost/wpds-assets": "^1.22.0",
+ "@washingtonpost/wpds-icon": "1.1.0",
+ "@washingtonpost/wpds-theme": "1.24.0",
+ "@washingtonpost/wpds-tooltip": "1.24.0",
+ "react-transition-group": "^4.4.5"
+ },
+ "peerDependencies": {
+ "@radix-ui/react-tabs": "latest",
+ "@washingtonpost/wpds-theme": "*",
+ "@washingtonpost/wpds-tooltip": "*",
+ "react": "^16.8.6 || ^17.0.2",
+ "react-transition-group": "^4.4.5"
}
},
- "node_modules/detect-node-es": {
- "version": "1.1.0",
- "license": "MIT"
- },
- "node_modules/detect-package-manager": {
- "version": "2.0.1",
- "dev": true,
- "license": "MIT",
+ "node_modules/@washingtonpost/wpds-tabs/node_modules/@washingtonpost/wpds-assets": {
+ "version": "1.25.0",
+ "resolved": "https://registry.npmjs.org/@washingtonpost/wpds-assets/-/wpds-assets-1.25.0.tgz",
+ "integrity": "sha512-g9JxI8HpuewHeJ75snMEo5JQwEH1ZC3GBEUshcUiKUoRjoL9+0XCvhKbW3zpcJHAnWF4nyt3S3t+/oDczGmJ8g==",
"dependencies": {
- "execa": "^5.1.1"
+ "react": "^16.0.1 || ^17.0.2",
+ "react-dom": "^16.0.1 || ^17.0.2"
},
- "engines": {
- "node": ">=12"
+ "peerDependencies": {
+ "react": "^16.0.1 || ^17.0.2",
+ "react-dom": "^16.0.1 || ^17.0.2"
}
},
- "node_modules/detect-port": {
- "version": "1.5.1",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-tabs/node_modules/@washingtonpost/wpds-icon": {
+ "version": "1.1.0",
"license": "MIT",
"dependencies": {
- "address": "^1.0.1",
- "debug": "4"
+ "@washingtonpost/wpds-theme": "1.1.0",
+ "@washingtonpost/wpds-visually-hidden": "1.1.0",
+ "react": "^16.8.6 || ^17.0.2"
},
- "bin": {
- "detect": "bin/detect-port.js",
- "detect-port": "bin/detect-port.js"
+ "peerDependencies": {
+ "@washingtonpost/wpds-theme": "*",
+ "@washingtonpost/wpds-visually-hidden": "*",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/dezalgo": {
- "version": "1.0.4",
- "dev": true,
- "license": "ISC",
+ "node_modules/@washingtonpost/wpds-tabs/node_modules/@washingtonpost/wpds-icon/node_modules/@washingtonpost/wpds-theme": {
+ "version": "1.1.0",
+ "license": "MIT",
"dependencies": {
- "asap": "^2.0.0",
- "wrappy": "1"
- }
- },
- "node_modules/didyoumean": {
- "version": "1.2.2",
- "dev": true,
- "license": "Apache-2.0"
- },
- "node_modules/diff": {
- "version": "5.1.0",
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.3.1"
+ "@stitches/react": "^1.2.8"
}
},
- "node_modules/diff-sequences": {
- "version": "28.1.1",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-tabs/node_modules/@washingtonpost/wpds-visually-hidden": {
+ "version": "1.1.0",
"license": "MIT",
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "dependencies": {
+ "@washingtonpost/wpds-theme": "1.1.0",
+ "react": "^16.8.6 || ^17.0.2"
+ },
+ "peerDependencies": {
+ "@washingtonpost/wpds-theme": "*",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/diffable-html": {
- "version": "4.1.0",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-tabs/node_modules/@washingtonpost/wpds-visually-hidden/node_modules/@washingtonpost/wpds-theme": {
+ "version": "1.1.0",
"license": "MIT",
"dependencies": {
- "htmlparser2": "^3.9.2"
+ "@stitches/react": "^1.2.8"
}
},
- "node_modules/diffable-html/node_modules/dom-serializer": {
- "version": "0.2.2",
- "dev": true,
+ "node_modules/@washingtonpost/wpds-tailwind-theme": {
+ "resolved": "packages/tailwind-theme",
+ "link": true
+ },
+ "node_modules/@washingtonpost/wpds-theme": {
+ "version": "1.24.0",
"license": "MIT",
"dependencies": {
- "domelementtype": "^2.0.1",
- "entities": "^2.0.0"
+ "@stitches/react": "^1.2.8"
}
},
- "node_modules/diffable-html/node_modules/dom-serializer/node_modules/domelementtype": {
- "version": "2.3.0",
- "dev": true,
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/fb55"
- }
- ],
- "license": "BSD-2-Clause"
+ "node_modules/@washingtonpost/wpds-tokens": {
+ "resolved": "packages/tokens",
+ "link": true
},
- "node_modules/diffable-html/node_modules/dom-serializer/node_modules/entities": {
- "version": "2.2.0",
- "dev": true,
- "license": "BSD-2-Clause",
- "funding": {
- "url": "https://github.com/fb55/entities?sponsor=1"
+ "node_modules/@washingtonpost/wpds-tooltip": {
+ "version": "1.24.0",
+ "license": "MIT",
+ "dependencies": {
+ "@radix-ui/react-tooltip": "^1.0.0",
+ "@washingtonpost/wpds-theme": "1.24.0"
+ },
+ "peerDependencies": {
+ "@radix-ui/react-tooltip": "^1.0.0",
+ "@washingtonpost/wpds-theme": "*",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/diffable-html/node_modules/domelementtype": {
- "version": "1.3.1",
- "dev": true,
- "license": "BSD-2-Clause"
+ "node_modules/@washingtonpost/wpds-ui-kit": {
+ "resolved": "packages/kit",
+ "link": true
},
- "node_modules/diffable-html/node_modules/domhandler": {
- "version": "2.4.2",
- "dev": true,
- "license": "BSD-2-Clause",
+ "node_modules/@washingtonpost/wpds-visually-hidden": {
+ "version": "1.24.0",
+ "license": "MIT",
"dependencies": {
- "domelementtype": "1"
+ "@washingtonpost/wpds-theme": "1.24.0",
+ "react": "^16.8.6 || ^17.0.2"
+ },
+ "peerDependencies": {
+ "@washingtonpost/wpds-theme": "*",
+ "react": "^16.8.6 || ^17.0.2"
}
},
- "node_modules/diffable-html/node_modules/domutils": {
- "version": "1.7.0",
+ "node_modules/@webassemblyjs/ast": {
+ "version": "1.12.1",
"dev": true,
- "license": "BSD-2-Clause",
+ "license": "MIT",
"dependencies": {
- "dom-serializer": "0",
- "domelementtype": "1"
+ "@webassemblyjs/helper-numbers": "1.11.6",
+ "@webassemblyjs/helper-wasm-bytecode": "1.11.6"
}
},
- "node_modules/diffable-html/node_modules/entities": {
- "version": "1.1.2",
+ "node_modules/@webassemblyjs/floating-point-hex-parser": {
+ "version": "1.11.6",
"dev": true,
- "license": "BSD-2-Clause"
+ "license": "MIT"
},
- "node_modules/diffable-html/node_modules/htmlparser2": {
- "version": "3.10.1",
+ "node_modules/@webassemblyjs/helper-api-error": {
+ "version": "1.11.6",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "domelementtype": "^1.3.1",
- "domhandler": "^2.3.0",
- "domutils": "^1.5.1",
- "entities": "^1.1.1",
- "inherits": "^2.0.1",
- "readable-stream": "^3.1.1"
- }
+ "license": "MIT"
},
- "node_modules/diffie-hellman": {
- "version": "5.0.3",
+ "node_modules/@webassemblyjs/helper-buffer": {
+ "version": "1.12.1",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@webassemblyjs/helper-numbers": {
+ "version": "1.11.6",
"dev": true,
"license": "MIT",
"dependencies": {
- "bn.js": "^4.1.0",
- "miller-rabin": "^4.0.0",
- "randombytes": "^2.0.0"
+ "@webassemblyjs/floating-point-hex-parser": "1.11.6",
+ "@webassemblyjs/helper-api-error": "1.11.6",
+ "@xtuc/long": "4.2.2"
}
},
- "node_modules/diffie-hellman/node_modules/bn.js": {
- "version": "4.12.0",
+ "node_modules/@webassemblyjs/helper-wasm-bytecode": {
+ "version": "1.11.6",
"dev": true,
"license": "MIT"
},
- "node_modules/dir-glob": {
- "version": "3.0.1",
+ "node_modules/@webassemblyjs/helper-wasm-section": {
+ "version": "1.12.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "path-type": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
+ "@webassemblyjs/ast": "1.12.1",
+ "@webassemblyjs/helper-buffer": "1.12.1",
+ "@webassemblyjs/helper-wasm-bytecode": "1.11.6",
+ "@webassemblyjs/wasm-gen": "1.12.1"
}
},
- "node_modules/discontinuous-range": {
- "version": "1.0.0",
+ "node_modules/@webassemblyjs/ieee754": {
+ "version": "1.11.6",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "dependencies": {
+ "@xtuc/ieee754": "^1.2.0"
+ }
},
- "node_modules/dlv": {
- "version": "1.1.3",
+ "node_modules/@webassemblyjs/leb128": {
+ "version": "1.11.6",
"dev": true,
- "license": "MIT"
- },
- "node_modules/doctrine": {
- "version": "3.0.0",
"license": "Apache-2.0",
"dependencies": {
- "esutils": "^2.0.2"
- },
- "engines": {
- "node": ">=6.0.0"
+ "@xtuc/long": "4.2.2"
}
},
- "node_modules/doctypes": {
- "version": "1.1.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/dom-accessibility-api": {
- "version": "0.5.13",
+ "node_modules/@webassemblyjs/utf8": {
+ "version": "1.11.6",
"dev": true,
"license": "MIT"
},
- "node_modules/dom-converter": {
- "version": "0.2.0",
+ "node_modules/@webassemblyjs/wasm-edit": {
+ "version": "1.12.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "utila": "~0.4"
+ "@webassemblyjs/ast": "1.12.1",
+ "@webassemblyjs/helper-buffer": "1.12.1",
+ "@webassemblyjs/helper-wasm-bytecode": "1.11.6",
+ "@webassemblyjs/helper-wasm-section": "1.12.1",
+ "@webassemblyjs/wasm-gen": "1.12.1",
+ "@webassemblyjs/wasm-opt": "1.12.1",
+ "@webassemblyjs/wasm-parser": "1.12.1",
+ "@webassemblyjs/wast-printer": "1.12.1"
}
},
- "node_modules/dom-helpers": {
- "version": "5.2.1",
+ "node_modules/@webassemblyjs/wasm-gen": {
+ "version": "1.12.1",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.8.7",
- "csstype": "^3.0.2"
+ "@webassemblyjs/ast": "1.12.1",
+ "@webassemblyjs/helper-wasm-bytecode": "1.11.6",
+ "@webassemblyjs/ieee754": "1.11.6",
+ "@webassemblyjs/leb128": "1.11.6",
+ "@webassemblyjs/utf8": "1.11.6"
}
},
- "node_modules/dom-serializer": {
- "version": "1.3.2",
+ "node_modules/@webassemblyjs/wasm-opt": {
+ "version": "1.12.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "domelementtype": "^2.0.1",
- "domhandler": "^4.2.0",
- "entities": "^2.0.0"
- },
- "funding": {
- "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1"
+ "@webassemblyjs/ast": "1.12.1",
+ "@webassemblyjs/helper-buffer": "1.12.1",
+ "@webassemblyjs/wasm-gen": "1.12.1",
+ "@webassemblyjs/wasm-parser": "1.12.1"
}
},
- "node_modules/dom-walk": {
- "version": "0.1.2",
- "dev": true
- },
- "node_modules/domain-browser": {
- "version": "1.2.0",
+ "node_modules/@webassemblyjs/wasm-parser": {
+ "version": "1.12.1",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=0.4",
- "npm": ">=1.2"
+ "dependencies": {
+ "@webassemblyjs/ast": "1.12.1",
+ "@webassemblyjs/helper-api-error": "1.11.6",
+ "@webassemblyjs/helper-wasm-bytecode": "1.11.6",
+ "@webassemblyjs/ieee754": "1.11.6",
+ "@webassemblyjs/leb128": "1.11.6",
+ "@webassemblyjs/utf8": "1.11.6"
}
},
- "node_modules/domelementtype": {
- "version": "2.2.0",
- "dev": true,
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/fb55"
- }
- ],
- "license": "BSD-2-Clause"
- },
- "node_modules/domexception": {
- "version": "4.0.0",
+ "node_modules/@webassemblyjs/wast-printer": {
+ "version": "1.12.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "webidl-conversions": "^7.0.0"
- },
- "engines": {
- "node": ">=12"
+ "@webassemblyjs/ast": "1.12.1",
+ "@xtuc/long": "4.2.2"
}
},
- "node_modules/domexception/node_modules/webidl-conversions": {
- "version": "7.0.0",
+ "node_modules/@xtuc/ieee754": {
+ "version": "1.2.0",
"dev": true,
- "license": "BSD-2-Clause",
- "engines": {
- "node": ">=12"
- }
+ "license": "BSD-3-Clause"
},
- "node_modules/domhandler": {
- "version": "4.3.0",
+ "node_modules/@xtuc/long": {
+ "version": "4.2.2",
+ "dev": true,
+ "license": "Apache-2.0"
+ },
+ "node_modules/@yarnpkg/esbuild-plugin-pnp": {
+ "version": "3.0.0-rc.15",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
- "domelementtype": "^2.2.0"
+ "tslib": "^2.4.0"
},
"engines": {
- "node": ">= 4"
+ "node": ">=14.15.0"
},
- "funding": {
- "url": "https://github.com/fb55/domhandler?sponsor=1"
+ "peerDependencies": {
+ "esbuild": ">=0.10.0"
}
},
- "node_modules/domutils": {
- "version": "2.8.0",
+ "node_modules/@yarnpkg/fslib": {
+ "version": "2.10.3",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
- "dom-serializer": "^1.0.1",
- "domelementtype": "^2.2.0",
- "domhandler": "^4.2.0"
+ "@yarnpkg/libzip": "^2.3.0",
+ "tslib": "^1.13.0"
},
- "funding": {
- "url": "https://github.com/fb55/domutils?sponsor=1"
+ "engines": {
+ "node": ">=12 <14 || 14.2 - 14.9 || >14.10.0"
}
},
- "node_modules/dot-case": {
- "version": "3.0.4",
- "license": "MIT",
- "dependencies": {
- "no-case": "^3.0.4",
- "tslib": "^2.0.3"
- }
+ "node_modules/@yarnpkg/fslib/node_modules/tslib": {
+ "version": "1.14.1",
+ "dev": true,
+ "license": "0BSD"
},
- "node_modules/dot-prop": {
- "version": "6.0.1",
+ "node_modules/@yarnpkg/libzip": {
+ "version": "2.3.0",
"dev": true,
- "license": "MIT",
+ "license": "BSD-2-Clause",
"dependencies": {
- "is-obj": "^2.0.0"
+ "@types/emscripten": "^1.39.6",
+ "tslib": "^1.13.0"
},
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=12 <14 || 14.2 - 14.9 || >14.10.0"
}
},
- "node_modules/dotenv": {
- "version": "14.3.2",
+ "node_modules/@yarnpkg/libzip/node_modules/tslib": {
+ "version": "1.14.1",
"dev": true,
- "license": "BSD-2-Clause",
- "engines": {
- "node": ">=12"
- }
+ "license": "0BSD"
},
- "node_modules/dotenv-expand": {
- "version": "5.1.0",
+ "node_modules/@yarnpkg/lockfile": {
+ "version": "1.1.0",
"dev": true,
"license": "BSD-2-Clause"
},
- "node_modules/duplexer": {
- "version": "0.1.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/duplexer3": {
- "version": "0.1.5",
- "dev": true,
- "license": "BSD-3-Clause"
- },
- "node_modules/duplexify": {
- "version": "3.7.1",
+ "node_modules/@yarnpkg/parsers": {
+ "version": "3.0.0",
"dev": true,
- "license": "MIT",
+ "license": "BSD-2-Clause",
"dependencies": {
- "end-of-stream": "^1.0.0",
- "inherits": "^2.0.1",
- "readable-stream": "^2.0.0",
- "stream-shift": "^1.0.0"
+ "js-yaml": "^3.10.0",
+ "tslib": "^2.4.0"
+ },
+ "engines": {
+ "node": ">=18.12.0"
}
},
- "node_modules/duplexify/node_modules/isarray": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/duplexify/node_modules/readable-stream": {
- "version": "2.3.8",
+ "node_modules/@yarnpkg/parsers/node_modules/argparse": {
+ "version": "1.0.10",
"dev": true,
"license": "MIT",
"dependencies": {
- "core-util-is": "~1.0.0",
- "inherits": "~2.0.3",
- "isarray": "~1.0.0",
- "process-nextick-args": "~2.0.0",
- "safe-buffer": "~5.1.1",
- "string_decoder": "~1.1.1",
- "util-deprecate": "~1.0.1"
+ "sprintf-js": "~1.0.2"
}
},
- "node_modules/duplexify/node_modules/string_decoder": {
- "version": "1.1.1",
+ "node_modules/@yarnpkg/parsers/node_modules/js-yaml": {
+ "version": "3.14.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "safe-buffer": "~5.1.0"
+ "argparse": "^1.0.7",
+ "esprima": "^4.0.0"
+ },
+ "bin": {
+ "js-yaml": "bin/js-yaml.js"
}
},
- "node_modules/ecc-jsbn": {
- "version": "0.1.2",
+ "node_modules/@yarnpkg/parsers/node_modules/sprintf-js": {
+ "version": "1.0.3",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "jsbn": "~0.1.0",
- "safer-buffer": "^2.1.0"
- }
+ "license": "BSD-3-Clause"
},
- "node_modules/ecdsa-sig-formatter": {
- "version": "1.0.11",
+ "node_modules/@zeplin/cli": {
+ "version": "2.0.2",
"dev": true,
- "license": "Apache-2.0",
+ "license": "MIT",
"dependencies": {
- "safe-buffer": "^5.0.1"
+ "@hapi/joi": "^17.1.1",
+ "axios": "^0.21.4",
+ "chalk": "^3.0.0",
+ "chokidar": "^3.3.1",
+ "ci-info": "^2.0.0",
+ "commander": "^6.2.0",
+ "cosmiconfig": "^7.0.0",
+ "detect-package-manager": "^3.0.1",
+ "execa": "^5.0.0",
+ "express": "^4.17.1",
+ "fs-extra": "^8.1.0",
+ "git-url-parse": "^13.1.0",
+ "has-yarn": "^2.1.0",
+ "http-status-codes": "^1.4.0",
+ "import-from": "^3.0.0",
+ "import-local": "^3.0.2",
+ "inquirer": "^7.0.0",
+ "inquirer-fuzzy-path": "^2.3.0",
+ "inquirer-search-checkbox": "^1.0.0",
+ "inquirer-search-list": "^1.2.6",
+ "is-installed-globally": "^0.3.2",
+ "is-yarn-global": "^0.3.0",
+ "jsonwebtoken": "^8.5.1",
+ "latest-version": "^5.1.0",
+ "mask-json": "^1.0.3",
+ "open": "^7.3.0",
+ "ora": "^5.1.0",
+ "parse-git-config": "^3.0.0",
+ "semver": "^5.7.1",
+ "strip-ansi": "^6.0.0",
+ "strip-comments": "^2.0.1",
+ "ts-dedent": "^1.1.0",
+ "update-notifier": "^5.1.0",
+ "url-join": "^4.0.1",
+ "winston": "^3.2.1"
+ },
+ "bin": {
+ "zeplin": "bin/cli.js"
}
},
- "node_modules/editions": {
- "version": "1.3.4",
+ "node_modules/@zeplin/cli-connect-react-plugin": {
+ "version": "1.1.2",
+ "dev": true,
"license": "MIT",
- "engines": {
- "node": ">=0.8"
+ "dependencies": {
+ "fs-extra": "^9.0.1",
+ "pug": "^2.0.4",
+ "react-docgen": "^5.3.1",
+ "react-docgen-typescript": "^2.2.2",
+ "update-notifier": "^5.0.1"
+ },
+ "peerDependencies": {
+ "typescript": ">= 4.x"
}
},
- "node_modules/ee-first": {
- "version": "1.1.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/electron-to-chromium": {
- "version": "1.4.319",
- "license": "ISC"
- },
- "node_modules/element-resize-detector": {
- "version": "1.2.4",
+ "node_modules/@zeplin/cli-connect-react-plugin/node_modules/fs-extra": {
+ "version": "9.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "batch-processor": "1.0.0"
+ "at-least-node": "^1.0.0",
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/elliptic": {
- "version": "6.5.4",
+ "node_modules/@zeplin/cli-connect-storybook-plugin": {
+ "version": "2.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "bn.js": "^4.11.9",
- "brorand": "^1.1.0",
- "hash.js": "^1.0.0",
- "hmac-drbg": "^1.0.1",
- "inherits": "^2.0.4",
- "minimalistic-assert": "^1.0.1",
- "minimalistic-crypto-utils": "^1.0.1"
+ "@storybook/csf": "0.0.1",
+ "cross-spawn": "^7.0.3",
+ "eventsourcemock": "^2.0.0",
+ "https": "^1.0.0",
+ "jsdom": "^15.2.1",
+ "node-fetch": "^2.6.0",
+ "path": "^0.12.7",
+ "proper-url-join": "^2.1.1",
+ "ts-dedent": "^2.1.0",
+ "update-notifier": "^5.1.0"
}
},
- "node_modules/elliptic/node_modules/bn.js": {
- "version": "4.12.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/emittery": {
- "version": "0.10.2",
+ "node_modules/@zeplin/cli-connect-storybook-plugin/node_modules/@storybook/csf": {
+ "version": "0.0.1",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sindresorhus/emittery?sponsor=1"
+ "dependencies": {
+ "lodash": "^4.17.15"
}
},
- "node_modules/emoji-regex": {
- "version": "8.0.0",
- "license": "MIT"
- },
- "node_modules/emojis-list": {
+ "node_modules/@zeplin/cli/node_modules/chalk": {
"version": "3.0.0",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
"engines": {
- "node": ">= 4"
+ "node": ">=8"
}
},
- "node_modules/enabled": {
- "version": "2.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/encodeurl": {
- "version": "1.0.2",
+ "node_modules/@zeplin/cli/node_modules/commander": {
+ "version": "6.2.1",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/encoding": {
- "version": "0.1.13",
- "dev": true,
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "iconv-lite": "^0.6.2"
+ "node": ">= 6"
}
},
- "node_modules/encoding/node_modules/iconv-lite": {
- "version": "0.6.3",
+ "node_modules/@zeplin/cli/node_modules/fs-extra": {
+ "version": "8.1.0",
"dev": true,
"license": "MIT",
- "optional": true,
"dependencies": {
- "safer-buffer": ">= 2.1.2 < 3.0.0"
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^4.0.0",
+ "universalify": "^0.1.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=6 <7 || >=8"
}
},
- "node_modules/end-of-stream": {
- "version": "1.4.4",
+ "node_modules/@zeplin/cli/node_modules/jsonfile": {
+ "version": "4.0.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "once": "^1.4.0"
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
}
},
- "node_modules/endent": {
- "version": "2.1.0",
+ "node_modules/@zeplin/cli/node_modules/semver": {
+ "version": "5.7.2",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "dedent": "^0.7.0",
- "fast-json-parse": "^1.0.3",
- "objectorarray": "^1.0.5"
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver"
}
},
- "node_modules/enhanced-resolve": {
- "version": "5.15.0",
+ "node_modules/@zeplin/cli/node_modules/ts-dedent": {
+ "version": "1.2.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "graceful-fs": "^4.2.4",
- "tapable": "^2.2.0"
- },
"engines": {
- "node": ">=10.13.0"
+ "node": ">=6.10"
}
},
- "node_modules/enhanced-resolve/node_modules/tapable": {
- "version": "2.2.1",
+ "node_modules/@zeplin/cli/node_modules/universalify": {
+ "version": "0.1.2",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=6"
+ "node": ">= 4.0.0"
}
},
- "node_modules/enquirer": {
- "version": "2.3.6",
+ "node_modules/@zkochan/js-yaml": {
+ "version": "0.0.6",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-colors": "^4.1.1"
+ "argparse": "^2.0.1"
},
- "engines": {
- "node": ">=8.6"
- }
- },
- "node_modules/entities": {
- "version": "2.2.0",
- "dev": true,
- "license": "BSD-2-Clause",
- "funding": {
- "url": "https://github.com/fb55/entities?sponsor=1"
+ "bin": {
+ "js-yaml": "bin/js-yaml.js"
}
},
- "node_modules/env-paths": {
- "version": "2.2.1",
+ "node_modules/abab": {
+ "version": "2.0.6",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
+ "license": "BSD-3-Clause"
},
- "node_modules/envinfo": {
- "version": "7.8.1",
+ "node_modules/abbrev": {
+ "version": "1.1.1",
"dev": true,
- "license": "MIT",
- "bin": {
- "envinfo": "dist/cli.js"
- },
- "engines": {
- "node": ">=4"
- }
+ "license": "ISC"
},
- "node_modules/enzyme": {
- "version": "3.11.0",
+ "node_modules/abort-controller": {
+ "version": "3.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "array.prototype.flat": "^1.2.3",
- "cheerio": "^1.0.0-rc.3",
- "enzyme-shallow-equal": "^1.0.1",
- "function.prototype.name": "^1.1.2",
- "has": "^1.0.3",
- "html-element-map": "^1.2.0",
- "is-boolean-object": "^1.0.1",
- "is-callable": "^1.1.5",
- "is-number-object": "^1.0.4",
- "is-regex": "^1.0.5",
- "is-string": "^1.0.5",
- "is-subset": "^0.1.1",
- "lodash.escape": "^4.0.1",
- "lodash.isequal": "^4.5.0",
- "object-inspect": "^1.7.0",
- "object-is": "^1.0.2",
- "object.assign": "^4.1.0",
- "object.entries": "^1.1.1",
- "object.values": "^1.1.1",
- "raf": "^3.4.1",
- "rst-selector-parser": "^2.2.3",
- "string.prototype.trim": "^1.2.1"
+ "event-target-shim": "^5.0.0"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "engines": {
+ "node": ">=6.5"
}
},
- "node_modules/enzyme-shallow-equal": {
- "version": "1.0.4",
+ "node_modules/accepts": {
+ "version": "1.3.8",
"dev": true,
"license": "MIT",
"dependencies": {
- "has": "^1.0.3",
- "object-is": "^1.1.2"
+ "mime-types": "~2.1.34",
+ "negotiator": "0.6.3"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "engines": {
+ "node": ">= 0.6"
}
},
- "node_modules/err-code": {
- "version": "2.0.3",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/errno": {
- "version": "0.1.8",
+ "node_modules/acorn": {
+ "version": "7.4.1",
"dev": true,
"license": "MIT",
- "dependencies": {
- "prr": "~1.0.1"
- },
"bin": {
- "errno": "cli.js"
+ "acorn": "bin/acorn"
+ },
+ "engines": {
+ "node": ">=0.4.0"
}
},
- "node_modules/error-ex": {
- "version": "1.3.2",
+ "node_modules/acorn-globals": {
+ "version": "4.3.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-arrayish": "^0.2.1"
+ "acorn": "^6.0.1",
+ "acorn-walk": "^6.0.1"
}
},
- "node_modules/error-stack-parser": {
- "version": "2.0.7",
+ "node_modules/acorn-globals/node_modules/acorn": {
+ "version": "6.4.2",
"dev": true,
"license": "MIT",
- "dependencies": {
- "stackframe": "^1.1.1"
+ "bin": {
+ "acorn": "bin/acorn"
+ },
+ "engines": {
+ "node": ">=0.4.0"
}
},
- "node_modules/es-abstract": {
- "version": "1.21.1",
+ "node_modules/acorn-globals/node_modules/acorn-walk": {
+ "version": "6.2.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "available-typed-arrays": "^1.0.5",
- "call-bind": "^1.0.2",
- "es-set-tostringtag": "^2.0.1",
- "es-to-primitive": "^1.2.1",
- "function-bind": "^1.1.1",
- "function.prototype.name": "^1.1.5",
- "get-intrinsic": "^1.1.3",
- "get-symbol-description": "^1.0.0",
- "globalthis": "^1.0.3",
- "gopd": "^1.0.1",
- "has": "^1.0.3",
- "has-property-descriptors": "^1.0.0",
- "has-proto": "^1.0.1",
- "has-symbols": "^1.0.3",
- "internal-slot": "^1.0.4",
- "is-array-buffer": "^3.0.1",
- "is-callable": "^1.2.7",
- "is-negative-zero": "^2.0.2",
- "is-regex": "^1.1.4",
- "is-shared-array-buffer": "^1.0.2",
- "is-string": "^1.0.7",
- "is-typed-array": "^1.1.10",
- "is-weakref": "^1.0.2",
- "object-inspect": "^1.12.2",
- "object-keys": "^1.1.1",
- "object.assign": "^4.1.4",
- "regexp.prototype.flags": "^1.4.3",
- "safe-regex-test": "^1.0.0",
- "string.prototype.trimend": "^1.0.6",
- "string.prototype.trimstart": "^1.0.6",
- "typed-array-length": "^1.0.4",
- "unbox-primitive": "^1.0.2",
- "which-typed-array": "^1.1.9"
- },
"engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "node": ">=0.4.0"
}
},
- "node_modules/es-array-method-boxes-properly": {
- "version": "1.0.0",
+ "node_modules/acorn-import-assertions": {
+ "version": "1.9.0",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "peerDependencies": {
+ "acorn": "^8"
+ }
},
- "node_modules/es-get-iterator": {
- "version": "1.1.3",
+ "node_modules/acorn-jsx": {
+ "version": "5.3.2",
+ "license": "MIT",
+ "peerDependencies": {
+ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
+ }
+ },
+ "node_modules/acorn-walk": {
+ "version": "7.2.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.2",
- "get-intrinsic": "^1.1.3",
- "has-symbols": "^1.0.3",
- "is-arguments": "^1.1.1",
- "is-map": "^2.0.2",
- "is-set": "^2.0.2",
- "is-string": "^1.0.7",
- "isarray": "^2.0.5",
- "stop-iteration-iterator": "^1.0.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "engines": {
+ "node": ">=0.4.0"
}
},
- "node_modules/es-module-lexer": {
- "version": "1.3.0",
+ "node_modules/add-stream": {
+ "version": "1.0.0",
"dev": true,
"license": "MIT"
},
- "node_modules/es-set-tostringtag": {
- "version": "2.0.1",
+ "node_modules/address": {
+ "version": "1.2.2",
"dev": true,
"license": "MIT",
- "dependencies": {
- "get-intrinsic": "^1.1.3",
- "has": "^1.0.3",
- "has-tostringtag": "^1.0.0"
- },
"engines": {
- "node": ">= 0.4"
+ "node": ">= 10.0.0"
}
},
- "node_modules/es-shim-unscopables": {
- "version": "1.0.0",
+ "node_modules/adjust-sourcemap-loader": {
+ "version": "4.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "has": "^1.0.3"
+ "loader-utils": "^2.0.0",
+ "regex-parser": "^2.2.11"
+ },
+ "engines": {
+ "node": ">=8.9"
}
},
- "node_modules/es-to-primitive": {
- "version": "1.2.1",
+ "node_modules/adjust-sourcemap-loader/node_modules/loader-utils": {
+ "version": "2.0.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-callable": "^1.1.4",
- "is-date-object": "^1.0.1",
- "is-symbol": "^1.0.2"
+ "big.js": "^5.2.2",
+ "emojis-list": "^3.0.0",
+ "json5": "^2.1.2"
},
"engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "node": ">=8.9.0"
}
},
- "node_modules/es5-ext": {
- "version": "0.10.61",
- "hasInstallScript": true,
- "license": "ISC",
+ "node_modules/agent-base": {
+ "version": "6.0.2",
+ "dev": true,
+ "license": "MIT",
"dependencies": {
- "es6-iterator": "^2.0.3",
- "es6-symbol": "^3.1.3",
- "next-tick": "^1.1.0"
+ "debug": "4"
},
"engines": {
- "node": ">=0.10"
+ "node": ">= 6.0.0"
}
},
- "node_modules/es5-shim": {
- "version": "4.6.7",
+ "node_modules/agentkeepalive": {
+ "version": "4.5.0",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "humanize-ms": "^1.2.1"
+ },
"engines": {
- "node": ">=0.4.0"
+ "node": ">= 8.0.0"
}
},
- "node_modules/es6-error": {
- "version": "4.1.1",
+ "node_modules/aggregate-error": {
+ "version": "3.1.0",
"dev": true,
- "license": "MIT"
- },
- "node_modules/es6-iterator": {
- "version": "2.0.3",
"license": "MIT",
"dependencies": {
- "d": "1",
- "es5-ext": "^0.10.35",
- "es6-symbol": "^3.1.1"
+ "clean-stack": "^2.0.0",
+ "indent-string": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/es6-shim": {
- "version": "0.35.7",
+ "node_modules/ajv": {
+ "version": "6.12.6",
"dev": true,
- "license": "MIT"
- },
- "node_modules/es6-symbol": {
- "version": "3.1.3",
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "d": "^1.0.1",
- "ext": "^1.1.2"
+ "fast-deep-equal": "^3.1.1",
+ "fast-json-stable-stringify": "^2.0.0",
+ "json-schema-traverse": "^0.4.1",
+ "uri-js": "^4.2.2"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/epoberezkin"
}
},
- "node_modules/esbuild": {
- "version": "0.14.25",
+ "node_modules/ajv-formats": {
+ "version": "2.1.1",
"dev": true,
- "hasInstallScript": true,
"license": "MIT",
- "bin": {
- "esbuild": "bin/esbuild"
+ "dependencies": {
+ "ajv": "^8.0.0"
},
- "engines": {
- "node": ">=12"
+ "peerDependencies": {
+ "ajv": "^8.0.0"
},
- "optionalDependencies": {
- "esbuild-android-64": "0.14.25",
- "esbuild-android-arm64": "0.14.25",
- "esbuild-darwin-64": "0.14.25",
- "esbuild-darwin-arm64": "0.14.25",
- "esbuild-freebsd-64": "0.14.25",
- "esbuild-freebsd-arm64": "0.14.25",
- "esbuild-linux-32": "0.14.25",
- "esbuild-linux-64": "0.14.25",
- "esbuild-linux-arm": "0.14.25",
- "esbuild-linux-arm64": "0.14.25",
- "esbuild-linux-mips64le": "0.14.25",
- "esbuild-linux-ppc64le": "0.14.25",
- "esbuild-linux-riscv64": "0.14.25",
- "esbuild-linux-s390x": "0.14.25",
- "esbuild-netbsd-64": "0.14.25",
- "esbuild-openbsd-64": "0.14.25",
- "esbuild-sunos-64": "0.14.25",
- "esbuild-windows-32": "0.14.25",
- "esbuild-windows-64": "0.14.25",
- "esbuild-windows-arm64": "0.14.25"
- }
- },
- "node_modules/esbuild-android-64": {
- "version": "0.14.25",
- "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.14.25.tgz",
- "integrity": "sha512-L5vCUk7TzFbBnoESNoXjU3x9+/+7TDIE/1mTfy/erAfvZAqC+S3sp/Qa9wkypFMcFvN9FzvESkTlpeQDolREtQ==",
- "cpu": [
- "x64"
- ],
- "optional": true,
- "os": [
- "android"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/esbuild-android-arm64": {
- "version": "0.15.5",
- "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.15.5.tgz",
- "integrity": "sha512-YyEkaQl08ze3cBzI/4Cm1S+rVh8HMOpCdq8B78JLbNFHhzi4NixVN93xDrHZLztlocEYqi45rHHCgA8kZFidFg==",
- "cpu": [
- "arm64"
- ],
- "optional": true,
- "os": [
- "android"
- ],
- "engines": {
- "node": ">=12"
+ "peerDependenciesMeta": {
+ "ajv": {
+ "optional": true
+ }
}
},
- "node_modules/esbuild-darwin-64": {
- "version": "0.14.25",
- "cpu": [
- "x64"
- ],
+ "node_modules/ajv-formats/node_modules/ajv": {
+ "version": "8.12.0",
+ "dev": true,
"license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/esbuild-darwin-arm64": {
- "version": "0.14.25",
- "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.25.tgz",
- "integrity": "sha512-oTcDgdm0MDVEmw2DWu8BV68pYuImpFgvWREPErBZmNA4MYKGuBRaCiJqq6jZmBR1x+3y1DWCjez+5uLtuAm6mw==",
- "cpu": [
- "arm64"
- ],
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">=12"
+ "dependencies": {
+ "fast-deep-equal": "^3.1.1",
+ "json-schema-traverse": "^1.0.0",
+ "require-from-string": "^2.0.2",
+ "uri-js": "^4.2.2"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/epoberezkin"
}
},
- "node_modules/esbuild-freebsd-64": {
- "version": "0.14.25",
- "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.25.tgz",
- "integrity": "sha512-ueAqbnMZ8arnuLH8tHwTCQYeptnHOUV7vA6px6j4zjjQwDx7TdP7kACPf3TLZLdJQ3CAD1XCvQ2sPhX+8tacvQ==",
- "cpu": [
- "x64"
- ],
- "optional": true,
- "os": [
- "freebsd"
- ],
- "engines": {
- "node": ">=12"
- }
+ "node_modules/ajv-formats/node_modules/json-schema-traverse": {
+ "version": "1.0.0",
+ "dev": true,
+ "license": "MIT"
},
- "node_modules/esbuild-freebsd-arm64": {
- "version": "0.14.25",
- "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.25.tgz",
- "integrity": "sha512-+ZVWud2HKh+Ob6k/qiJWjBtUg4KmJGGmbvEXXW1SNKS7hW7HU+Zq2ZCcE1akFxOPkVB+EhOty/sSek30tkCYug==",
- "cpu": [
- "arm64"
- ],
- "optional": true,
- "os": [
- "freebsd"
- ],
- "engines": {
- "node": ">=12"
+ "node_modules/ajv-keywords": {
+ "version": "3.5.2",
+ "dev": true,
+ "license": "MIT",
+ "peerDependencies": {
+ "ajv": "^6.9.1"
}
},
- "node_modules/esbuild-linux-32": {
- "version": "0.14.25",
- "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.25.tgz",
- "integrity": "sha512-3OP/lwV3kCzEz45tobH9nj+uE4ubhGsfx+tn0L26WAGtUbmmcRpqy7XRG/qK7h1mClZ+eguIANcQntYMdYklfw==",
- "cpu": [
- "ia32"
- ],
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=12"
+ "node_modules/algoliasearch": {
+ "version": "4.23.2",
+ "license": "MIT",
+ "dependencies": {
+ "@algolia/cache-browser-local-storage": "4.23.2",
+ "@algolia/cache-common": "4.23.2",
+ "@algolia/cache-in-memory": "4.23.2",
+ "@algolia/client-account": "4.23.2",
+ "@algolia/client-analytics": "4.23.2",
+ "@algolia/client-common": "4.23.2",
+ "@algolia/client-personalization": "4.23.2",
+ "@algolia/client-search": "4.23.2",
+ "@algolia/logger-common": "4.23.2",
+ "@algolia/logger-console": "4.23.2",
+ "@algolia/recommend": "4.23.2",
+ "@algolia/requester-browser-xhr": "4.23.2",
+ "@algolia/requester-common": "4.23.2",
+ "@algolia/requester-node-http": "4.23.2",
+ "@algolia/transporter": "4.23.2"
}
},
- "node_modules/esbuild-linux-64": {
- "version": "0.14.25",
- "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.25.tgz",
- "integrity": "sha512-+aKHdHZmX9qwVlQmu5xYXh7GsBFf4TWrePgeJTalhXHOG7NNuUwoHmketGiZEoNsWyyqwH9rE5BC+iwcLY30Ug==",
- "cpu": [
- "x64"
- ],
- "optional": true,
- "os": [
- "linux"
- ],
+ "node_modules/align-text": {
+ "version": "0.1.4",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "kind-of": "^3.0.2",
+ "longest": "^1.0.1",
+ "repeat-string": "^1.5.2"
+ },
"engines": {
- "node": ">=12"
+ "node": ">=0.10.0"
}
},
- "node_modules/esbuild-linux-arm": {
- "version": "0.14.25",
- "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.25.tgz",
- "integrity": "sha512-aTLcE2VBoLydL943REcAcgnDi3bHtmULSXWLbjtBdtykRatJVSxKMjK9YlBXUZC4/YcNQfH7AxwVeQr9fNxPhw==",
- "cpu": [
- "arm"
- ],
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=12"
- }
+ "node_modules/align-text/node_modules/is-buffer": {
+ "version": "1.1.6",
+ "dev": true,
+ "license": "MIT"
},
- "node_modules/esbuild-linux-arm64": {
- "version": "0.14.25",
- "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.25.tgz",
- "integrity": "sha512-UxfenPx/wSZx55gScCImPtXekvZQLI2GW3qe5dtlmU7luiqhp5GWPzGeQEbD3yN3xg/pHc671m5bma5Ns7lBHw==",
- "cpu": [
- "arm64"
- ],
- "optional": true,
- "os": [
- "linux"
- ],
+ "node_modules/align-text/node_modules/kind-of": {
+ "version": "3.2.2",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "is-buffer": "^1.1.5"
+ },
"engines": {
- "node": ">=12"
+ "node": ">=0.10.0"
}
},
- "node_modules/esbuild-linux-mips64le": {
- "version": "0.14.25",
- "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.25.tgz",
- "integrity": "sha512-wLWYyqVfYx9Ur6eU5RT92yJVsaBGi5RdkoWqRHOqcJ38Kn60QMlcghsKeWfe9jcYut8LangYZ98xO1LxIoSXrQ==",
- "cpu": [
- "mips64el"
- ],
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=12"
- }
+ "node_modules/anser": {
+ "version": "2.1.1",
+ "license": "MIT"
},
- "node_modules/esbuild-linux-ppc64le": {
- "version": "0.14.25",
- "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.25.tgz",
- "integrity": "sha512-0dR6Csl6Zas3g4p9ULckEl8Mo8IInJh33VCJ3eaV1hj9+MHGdmDOakYMN8MZP9/5nl+NU/0ygpd14cWgy8uqRw==",
- "cpu": [
- "ppc64"
- ],
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=12"
+ "node_modules/ansi-align": {
+ "version": "3.0.1",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "string-width": "^4.1.0"
}
},
- "node_modules/esbuild-linux-riscv64": {
- "version": "0.14.25",
- "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.25.tgz",
- "integrity": "sha512-J4d20HDmTrgvhR0bdkDhvvJGaikH3LzXQnNaseo8rcw9Yqby9A90gKUmWpfwqLVNRILvNnAmKLfBjCKU9ajg8w==",
- "cpu": [
- "riscv64"
- ],
- "optional": true,
- "os": [
- "linux"
- ],
+ "node_modules/ansi-colors": {
+ "version": "4.1.3",
+ "dev": true,
+ "license": "MIT",
"engines": {
- "node": ">=12"
+ "node": ">=6"
}
},
- "node_modules/esbuild-linux-s390x": {
- "version": "0.14.25",
- "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.25.tgz",
- "integrity": "sha512-YI2d5V6nTE73ZnhEKQD7MtsPs1EtUZJ3obS21oxQxGbbRw1G+PtJKjNyur+3t6nzHP9oTg6GHQ3S3hOLLmbDIQ==",
- "cpu": [
- "s390x"
- ],
- "optional": true,
- "os": [
- "linux"
- ],
+ "node_modules/ansi-escapes": {
+ "version": "4.3.2",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "type-fest": "^0.21.3"
+ },
"engines": {
- "node": ">=12"
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/esbuild-netbsd-64": {
- "version": "0.14.25",
- "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.25.tgz",
- "integrity": "sha512-TKIVgNWLUOkr+Exrye70XTEE1lJjdQXdM4tAXRzfHE9iBA7LXWcNtVIuSnphTqpanPzTDFarF0yqq4kpbC6miA==",
- "cpu": [
- "x64"
- ],
- "optional": true,
- "os": [
- "netbsd"
- ],
+ "node_modules/ansi-escapes/node_modules/type-fest": {
+ "version": "0.21.3",
+ "dev": true,
+ "license": "(MIT OR CC0-1.0)",
"engines": {
- "node": ">=12"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/esbuild-openbsd-64": {
- "version": "0.14.25",
- "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.25.tgz",
- "integrity": "sha512-QgFJ37A15D7NIXBTYEqz29+uw3nNBOIyog+3kFidANn6kjw0GHZ0lEYQn+cwjyzu94WobR+fes7cTl/ZYlHb1A==",
- "cpu": [
- "x64"
- ],
- "optional": true,
- "os": [
- "openbsd"
+ "node_modules/ansi-html-community": {
+ "version": "0.0.8",
+ "dev": true,
+ "engines": [
+ "node >= 0.8.0"
],
+ "license": "Apache-2.0",
+ "bin": {
+ "ansi-html": "bin/ansi-html"
+ }
+ },
+ "node_modules/ansi-regex": {
+ "version": "5.0.1",
+ "license": "MIT",
"engines": {
- "node": ">=12"
+ "node": ">=8"
}
},
- "node_modules/esbuild-sunos-64": {
- "version": "0.14.25",
- "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.25.tgz",
- "integrity": "sha512-rmWfjUItYIVlqr5EnTH1+GCxXiBOC42WBZ3w++qh7n2cS9Xo0lO5pGSG2N+huOU2fX5L+6YUuJ78/vOYvefeFw==",
- "cpu": [
- "x64"
- ],
- "optional": true,
- "os": [
- "sunos"
- ],
+ "node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "license": "MIT",
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
"engines": {
- "node": ">=12"
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/esbuild-windows-32": {
- "version": "0.14.25",
- "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.25.tgz",
- "integrity": "sha512-HGAxVUofl3iUIz9W10Y9XKtD0bNsK9fBXv1D55N/ljNvkrAYcGB8YCm0v7DjlwtyS6ws3dkdQyXadbxkbzaKOA==",
- "cpu": [
- "ia32"
- ],
- "optional": true,
- "os": [
- "win32"
- ],
+ "node_modules/any-promise": {
+ "version": "1.3.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/anymatch": {
+ "version": "3.1.3",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "normalize-path": "^3.0.0",
+ "picomatch": "^2.0.4"
+ },
"engines": {
- "node": ">=12"
+ "node": ">= 8"
}
},
- "node_modules/esbuild-windows-64": {
- "version": "0.14.25",
- "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.25.tgz",
- "integrity": "sha512-TirEohRkfWU9hXLgoDxzhMQD1g8I2mOqvdQF2RS9E/wbkORTAqJHyh7wqGRCQAwNzdNXdg3JAyhQ9/177AadWA==",
- "cpu": [
- "x64"
- ],
- "optional": true,
- "os": [
- "win32"
- ],
+ "node_modules/app-root-dir": {
+ "version": "1.0.2",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/append-transform": {
+ "version": "2.0.0",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "default-require-extensions": "^3.0.0"
+ },
"engines": {
- "node": ">=12"
+ "node": ">=8"
}
},
- "node_modules/esbuild-windows-arm64": {
- "version": "0.14.25",
- "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.25.tgz",
- "integrity": "sha512-4ype9ERiI45rSh+R8qUoBtaj6kJvUOI7oVLhKqPEpcF4Pa5PpT3hm/mXAyotJHREkHpM87PAJcA442mLnbtlNA==",
- "cpu": [
- "arm64"
- ],
- "optional": true,
- "os": [
- "win32"
- ],
+ "node_modules/aproba": {
+ "version": "2.0.0",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/archy": {
+ "version": "1.0.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/are-we-there-yet": {
+ "version": "3.0.1",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "delegates": "^1.0.0",
+ "readable-stream": "^3.6.0"
+ },
"engines": {
- "node": ">=12"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/esbuild/node_modules/esbuild-android-arm64": {
- "version": "0.14.25",
- "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.25.tgz",
- "integrity": "sha512-4jv5xPjM/qNm27T5j3ZEck0PvjgQtoMHnz4FzwF5zNP56PvY2CT0WStcAIl6jNlsuDdN63rk2HRBIsO6xFbcFw==",
- "cpu": [
- "arm64"
- ],
+ "node_modules/arg": {
+ "version": "5.0.2",
"dev": true,
- "optional": true,
- "os": [
- "android"
- ],
+ "license": "MIT"
+ },
+ "node_modules/argparse": {
+ "version": "2.0.1",
+ "license": "Python-2.0"
+ },
+ "node_modules/aria-hidden": {
+ "version": "1.2.4",
+ "license": "MIT",
+ "dependencies": {
+ "tslib": "^2.0.0"
+ },
"engines": {
- "node": ">=12"
+ "node": ">=10"
}
},
- "node_modules/escalade": {
- "version": "3.1.1",
+ "node_modules/aria-query": {
+ "version": "5.3.0",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "dequal": "^2.0.3"
+ }
+ },
+ "node_modules/array-buffer-byte-length": {
+ "version": "1.0.1",
+ "dev": true,
"license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.5",
+ "is-array-buffer": "^3.0.4"
+ },
"engines": {
- "node": ">=6"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/escape-goat": {
- "version": "2.1.1",
+ "node_modules/array-differ": {
+ "version": "3.0.0",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=8"
}
},
- "node_modules/escape-html": {
- "version": "1.0.3",
+ "node_modules/array-each": {
+ "version": "1.0.1",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
},
- "node_modules/escape-string-regexp": {
- "version": "4.0.0",
+ "node_modules/array-equal": {
+ "version": "1.0.2",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=10"
- },
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/escodegen": {
- "version": "2.0.0",
+ "node_modules/array-flatten": {
+ "version": "1.1.1",
"dev": true,
- "license": "BSD-2-Clause",
+ "license": "MIT"
+ },
+ "node_modules/array-ify": {
+ "version": "1.0.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/array-includes": {
+ "version": "3.1.8",
+ "dev": true,
+ "license": "MIT",
"dependencies": {
- "esprima": "^4.0.1",
- "estraverse": "^5.2.0",
- "esutils": "^2.0.2",
- "optionator": "^0.8.1"
- },
- "bin": {
- "escodegen": "bin/escodegen.js",
- "esgenerate": "bin/esgenerate.js"
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2",
+ "es-object-atoms": "^1.0.0",
+ "get-intrinsic": "^1.2.4",
+ "is-string": "^1.0.7"
},
"engines": {
- "node": ">=6.0"
+ "node": ">= 0.4"
},
- "optionalDependencies": {
- "source-map": "~0.6.1"
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/escodegen/node_modules/levn": {
- "version": "0.3.0",
+ "node_modules/array-slice": {
+ "version": "1.1.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "prelude-ls": "~1.1.2",
- "type-check": "~0.3.2"
- },
"engines": {
- "node": ">= 0.8.0"
+ "node": ">=0.10.0"
}
},
- "node_modules/escodegen/node_modules/optionator": {
- "version": "0.8.3",
+ "node_modules/array-union": {
+ "version": "2.1.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "deep-is": "~0.1.3",
- "fast-levenshtein": "~2.0.6",
- "levn": "~0.3.0",
- "prelude-ls": "~1.1.2",
- "type-check": "~0.3.2",
- "word-wrap": "~1.2.3"
- },
"engines": {
- "node": ">= 0.8.0"
+ "node": ">=8"
}
},
- "node_modules/escodegen/node_modules/prelude-ls": {
- "version": "1.1.2",
+ "node_modules/array.prototype.filter": {
+ "version": "1.0.4",
"dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2",
+ "es-array-method-boxes-properly": "^1.0.0",
+ "es-object-atoms": "^1.0.0",
+ "is-string": "^1.0.7"
+ },
"engines": {
- "node": ">= 0.8.0"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/escodegen/node_modules/source-map": {
- "version": "0.6.1",
+ "node_modules/array.prototype.findlast": {
+ "version": "1.2.5",
"dev": true,
- "license": "BSD-3-Clause",
- "optional": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0",
+ "es-shim-unscopables": "^1.0.2"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/escodegen/node_modules/type-check": {
- "version": "0.3.2",
+ "node_modules/array.prototype.findlastindex": {
+ "version": "1.2.5",
"dev": true,
"license": "MIT",
"dependencies": {
- "prelude-ls": "~1.1.2"
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0",
+ "es-shim-unscopables": "^1.0.2"
},
"engines": {
- "node": ">= 0.8.0"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/eslint": {
- "version": "8.12.0",
+ "node_modules/array.prototype.flat": {
+ "version": "1.3.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "@eslint/eslintrc": "^1.2.1",
- "@humanwhocodes/config-array": "^0.9.2",
- "ajv": "^6.10.0",
- "chalk": "^4.0.0",
- "cross-spawn": "^7.0.2",
- "debug": "^4.3.2",
- "doctrine": "^3.0.0",
- "escape-string-regexp": "^4.0.0",
- "eslint-scope": "^7.1.1",
- "eslint-utils": "^3.0.0",
- "eslint-visitor-keys": "^3.3.0",
- "espree": "^9.3.1",
- "esquery": "^1.4.0",
- "esutils": "^2.0.2",
- "fast-deep-equal": "^3.1.3",
- "file-entry-cache": "^6.0.1",
- "functional-red-black-tree": "^1.0.1",
- "glob-parent": "^6.0.1",
- "globals": "^13.6.0",
- "ignore": "^5.2.0",
- "import-fresh": "^3.0.0",
- "imurmurhash": "^0.1.4",
- "is-glob": "^4.0.0",
- "js-yaml": "^4.1.0",
- "json-stable-stringify-without-jsonify": "^1.0.1",
- "levn": "^0.4.1",
- "lodash.merge": "^4.6.2",
- "minimatch": "^3.0.4",
- "natural-compare": "^1.4.0",
- "optionator": "^0.9.1",
- "regexpp": "^3.2.0",
- "strip-ansi": "^6.0.1",
- "strip-json-comments": "^3.1.0",
- "text-table": "^0.2.0",
- "v8-compile-cache": "^2.0.3"
- },
- "bin": {
- "eslint": "bin/eslint.js"
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
+ "es-shim-unscopables": "^1.0.0"
},
"engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://opencollective.com/eslint"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/eslint-config-prettier": {
- "version": "8.5.0",
+ "node_modules/array.prototype.flatmap": {
+ "version": "1.3.2",
"dev": true,
"license": "MIT",
- "bin": {
- "eslint-config-prettier": "bin/cli.js"
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
+ "es-shim-unscopables": "^1.0.0"
},
- "peerDependencies": {
- "eslint": ">=7.0.0"
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/eslint-import-resolver-node": {
- "version": "0.3.6",
+ "node_modules/array.prototype.toreversed": {
+ "version": "1.1.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "debug": "^3.2.7",
- "resolve": "^1.20.0"
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
+ "es-shim-unscopables": "^1.0.0"
}
},
- "node_modules/eslint-import-resolver-node/node_modules/debug": {
- "version": "3.2.7",
+ "node_modules/array.prototype.tosorted": {
+ "version": "1.1.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "ms": "^2.1.1"
+ "call-bind": "^1.0.5",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.22.3",
+ "es-errors": "^1.1.0",
+ "es-shim-unscopables": "^1.0.2"
}
},
- "node_modules/eslint-import-resolver-typescript": {
- "version": "2.7.1",
+ "node_modules/arraybuffer.prototype.slice": {
+ "version": "1.0.3",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "debug": "^4.3.4",
- "glob": "^7.2.0",
- "is-glob": "^4.0.3",
- "resolve": "^1.22.0",
- "tsconfig-paths": "^3.14.1"
+ "array-buffer-byte-length": "^1.0.1",
+ "call-bind": "^1.0.5",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.22.3",
+ "es-errors": "^1.2.1",
+ "get-intrinsic": "^1.2.3",
+ "is-array-buffer": "^3.0.4",
+ "is-shared-array-buffer": "^1.0.2"
},
"engines": {
- "node": ">=4"
+ "node": ">= 0.4"
},
- "peerDependencies": {
- "eslint": "*",
- "eslint-plugin-import": "*"
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/eslint-import-resolver-typescript/node_modules/debug": {
- "version": "4.3.4",
+ "node_modules/arrify": {
+ "version": "1.0.1",
"dev": true,
"license": "MIT",
- "dependencies": {
- "ms": "2.1.2"
- },
"engines": {
- "node": ">=6.0"
- },
- "peerDependenciesMeta": {
- "supports-color": {
- "optional": true
- }
+ "node": ">=0.10.0"
}
},
- "node_modules/eslint-import-resolver-typescript/node_modules/ms": {
- "version": "2.1.2",
+ "node_modules/asap": {
+ "version": "2.0.6",
"dev": true,
"license": "MIT"
},
- "node_modules/eslint-module-utils": {
- "version": "2.7.3",
+ "node_modules/asn1": {
+ "version": "0.2.6",
"dev": true,
"license": "MIT",
"dependencies": {
- "debug": "^3.2.7",
- "find-up": "^2.1.0"
- },
- "engines": {
- "node": ">=4"
+ "safer-buffer": "~2.1.0"
}
},
- "node_modules/eslint-module-utils/node_modules/debug": {
- "version": "3.2.7",
+ "node_modules/asn1.js": {
+ "version": "4.10.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "ms": "^2.1.1"
+ "bn.js": "^4.0.0",
+ "inherits": "^2.0.1",
+ "minimalistic-assert": "^1.0.0"
}
},
- "node_modules/eslint-module-utils/node_modules/find-up": {
+ "node_modules/asn1.js/node_modules/bn.js": {
+ "version": "4.12.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/assert": {
"version": "2.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "locate-path": "^2.0.0"
- },
- "engines": {
- "node": ">=4"
+ "call-bind": "^1.0.2",
+ "is-nan": "^1.3.2",
+ "object-is": "^1.1.5",
+ "object.assign": "^4.1.4",
+ "util": "^0.12.5"
}
},
- "node_modules/eslint-module-utils/node_modules/locate-path": {
- "version": "2.0.0",
+ "node_modules/assert-plus": {
+ "version": "1.0.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "p-locate": "^2.0.0",
- "path-exists": "^3.0.0"
- },
"engines": {
- "node": ">=4"
+ "node": ">=0.8"
}
},
- "node_modules/eslint-module-utils/node_modules/p-limit": {
- "version": "1.3.0",
+ "node_modules/ast-pretty-print": {
+ "version": "2.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "p-try": "^1.0.0"
- },
- "engines": {
- "node": ">=4"
+ "pretty-format-ast": "^1.0.1",
+ "pretty-format2": "^2.0.3"
}
},
- "node_modules/eslint-module-utils/node_modules/p-locate": {
- "version": "2.0.0",
- "dev": true,
+ "node_modules/ast-types": {
+ "version": "0.14.2",
"license": "MIT",
"dependencies": {
- "p-limit": "^1.1.0"
+ "tslib": "^2.0.1"
},
"engines": {
"node": ">=4"
}
},
- "node_modules/eslint-module-utils/node_modules/p-try": {
+ "node_modules/ast-types-flow": {
+ "version": "0.0.8",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/astring": {
+ "version": "1.8.6",
+ "license": "MIT",
+ "bin": {
+ "astring": "bin/astring"
+ }
+ },
+ "node_modules/async": {
+ "version": "3.2.5",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/async-limiter": {
+ "version": "1.0.1",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/asynckit": {
+ "version": "0.4.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/at-least-node": {
"version": "1.0.0",
"dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">= 4.0.0"
+ }
+ },
+ "node_modules/autoprefixer": {
+ "version": "10.4.19",
+ "dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/autoprefixer"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
"license": "MIT",
+ "dependencies": {
+ "browserslist": "^4.23.0",
+ "caniuse-lite": "^1.0.30001599",
+ "fraction.js": "^4.3.7",
+ "normalize-range": "^0.1.2",
+ "picocolors": "^1.0.0",
+ "postcss-value-parser": "^4.2.0"
+ },
+ "bin": {
+ "autoprefixer": "bin/autoprefixer"
+ },
"engines": {
- "node": ">=4"
+ "node": "^10 || ^12 || >=14"
+ },
+ "peerDependencies": {
+ "postcss": "^8.1.0"
}
},
- "node_modules/eslint-plugin-import": {
- "version": "2.26.0",
+ "node_modules/available-typed-arrays": {
+ "version": "1.0.7",
"dev": true,
"license": "MIT",
"dependencies": {
- "array-includes": "^3.1.4",
- "array.prototype.flat": "^1.2.5",
- "debug": "^2.6.9",
- "doctrine": "^2.1.0",
- "eslint-import-resolver-node": "^0.3.6",
- "eslint-module-utils": "^2.7.3",
- "has": "^1.0.3",
- "is-core-module": "^2.8.1",
- "is-glob": "^4.0.3",
- "minimatch": "^3.1.2",
- "object.values": "^1.1.5",
- "resolve": "^1.22.0",
- "tsconfig-paths": "^3.14.1"
+ "possible-typed-array-names": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
},
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/aws-sign2": {
+ "version": "0.7.0",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": "*"
+ }
+ },
+ "node_modules/aws4": {
+ "version": "1.12.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/axe-core": {
+ "version": "4.9.0",
+ "dev": true,
+ "license": "MPL-2.0",
"engines": {
"node": ">=4"
- },
- "peerDependencies": {
- "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8"
}
},
- "node_modules/eslint-plugin-import/node_modules/debug": {
- "version": "2.6.9",
+ "node_modules/axios": {
+ "version": "0.21.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "ms": "2.0.0"
+ "follow-redirects": "^1.14.0"
}
},
- "node_modules/eslint-plugin-import/node_modules/doctrine": {
- "version": "2.1.0",
+ "node_modules/axobject-query": {
+ "version": "3.2.1",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
- "esutils": "^2.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
+ "dequal": "^2.0.3"
}
},
- "node_modules/eslint-plugin-import/node_modules/ms": {
- "version": "2.0.0",
+ "node_modules/b4a": {
+ "version": "1.6.6",
"dev": true,
- "license": "MIT"
+ "license": "Apache-2.0"
},
- "node_modules/eslint-plugin-jest": {
- "version": "25.7.0",
+ "node_modules/babel-core": {
+ "version": "7.0.0-bridge.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "@typescript-eslint/experimental-utils": "^5.0.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- },
"peerDependencies": {
- "@typescript-eslint/eslint-plugin": "^4.0.0 || ^5.0.0",
- "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
- },
- "peerDependenciesMeta": {
- "@typescript-eslint/eslint-plugin": {
- "optional": true
- },
- "jest": {
- "optional": true
- }
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/eslint-plugin-jest-dom": {
- "version": "3.9.4",
+ "node_modules/babel-errors": {
+ "version": "1.1.1",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/babel-explode-module": {
+ "version": "1.4.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.16.3",
- "@testing-library/dom": "^7.31.2",
- "requireindex": "^1.2.0"
- },
- "engines": {
- "node": "^10.12.0 || >=12.0.0",
- "npm": ">=6",
- "yarn": ">=1"
- },
- "peerDependencies": {
- "eslint": ">=6.8"
+ "babel-types": "^6.24.1"
}
},
- "node_modules/eslint-plugin-jest-dom/node_modules/@jest/types": {
- "version": "26.6.2",
+ "node_modules/babel-file": {
+ "version": "3.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@types/istanbul-lib-coverage": "^2.0.0",
- "@types/istanbul-reports": "^3.0.0",
- "@types/node": "*",
- "@types/yargs": "^15.0.0",
- "chalk": "^4.0.0"
- },
- "engines": {
- "node": ">= 10.14.2"
+ "@babel/core": "^7.0.0-beta.56"
}
},
- "node_modules/eslint-plugin-jest-dom/node_modules/@testing-library/dom": {
- "version": "7.31.2",
+ "node_modules/babel-flow-identifiers": {
+ "version": "1.1.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/code-frame": "^7.10.4",
- "@babel/runtime": "^7.12.5",
- "@types/aria-query": "^4.2.0",
- "aria-query": "^4.2.2",
- "chalk": "^4.1.0",
- "dom-accessibility-api": "^0.5.6",
- "lz-string": "^1.4.4",
- "pretty-format": "^26.6.2"
- },
- "engines": {
- "node": ">=10"
+ "babel-flow-scope": "^1.2.1",
+ "babel-identifiers": "^1.0.0"
}
},
- "node_modules/eslint-plugin-jest-dom/node_modules/@types/yargs": {
- "version": "15.0.14",
+ "node_modules/babel-flow-scope": {
+ "version": "1.2.1",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/babel-flow-types": {
+ "version": "1.2.3",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/babel-helper-simplify-module": {
+ "version": "2.2.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@types/yargs-parser": "*"
+ "babel-explode-module": "^1.4.0"
}
},
- "node_modules/eslint-plugin-jest-dom/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/babel-identifiers": {
+ "version": "1.1.2",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/babel-jest": {
+ "version": "29.7.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
+ "@jest/transform": "^29.7.0",
+ "@types/babel__core": "^7.1.14",
+ "babel-plugin-istanbul": "^6.1.1",
+ "babel-preset-jest": "^29.6.3",
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.9",
+ "slash": "^3.0.0"
},
"engines": {
- "node": ">=8"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
},
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "peerDependencies": {
+ "@babel/core": "^7.8.0"
}
},
- "node_modules/eslint-plugin-jest-dom/node_modules/aria-query": {
- "version": "4.2.2",
+ "node_modules/babel-loader": {
+ "version": "8.3.0",
"dev": true,
- "license": "Apache-2.0",
+ "license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.10.2",
- "@babel/runtime-corejs3": "^7.10.2"
+ "find-cache-dir": "^3.3.1",
+ "loader-utils": "^2.0.0",
+ "make-dir": "^3.1.0",
+ "schema-utils": "^2.6.5"
},
"engines": {
- "node": ">=6.0"
+ "node": ">= 8.9"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0",
+ "webpack": ">=2"
}
},
- "node_modules/eslint-plugin-jest-dom/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/babel-loader/node_modules/loader-utils": {
+ "version": "2.0.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
+ "big.js": "^5.2.2",
+ "emojis-list": "^3.0.0",
+ "json5": "^2.1.2"
},
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "node": ">=8.9.0"
}
},
- "node_modules/eslint-plugin-jest-dom/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/babel-loader/node_modules/schema-utils": {
+ "version": "2.7.1",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "@types/json-schema": "^7.0.5",
+ "ajv": "^6.12.4",
+ "ajv-keywords": "^3.5.2"
+ },
"engines": {
- "node": ">=8"
+ "node": ">= 8.9.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
}
},
- "node_modules/eslint-plugin-jest-dom/node_modules/pretty-format": {
- "version": "26.6.2",
+ "node_modules/babel-normalize-comments": {
+ "version": "1.0.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "@jest/types": "^26.6.2",
- "ansi-regex": "^5.0.0",
- "ansi-styles": "^4.0.0",
- "react-is": "^17.0.1"
- },
- "engines": {
- "node": ">= 10"
+ "babel-flow-types": "^1.2.3"
}
},
- "node_modules/eslint-plugin-jest-dom/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/babel-plugin-add-react-displayname": {
+ "version": "0.0.5",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/babel-plugin-extract-react-types": {
+ "version": "0.1.14",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
+ "extract-react-types": "^0.30.0"
}
},
- "node_modules/eslint-plugin-jsx-a11y": {
- "version": "6.6.0",
+ "node_modules/babel-plugin-istanbul": {
+ "version": "6.1.1",
"dev": true,
- "license": "MIT",
+ "license": "BSD-3-Clause",
"dependencies": {
- "@babel/runtime": "^7.18.3",
- "aria-query": "^4.2.2",
- "array-includes": "^3.1.5",
- "ast-types-flow": "^0.0.7",
- "axe-core": "^4.4.2",
- "axobject-query": "^2.2.0",
- "damerau-levenshtein": "^1.0.8",
- "emoji-regex": "^9.2.2",
- "has": "^1.0.3",
- "jsx-ast-utils": "^3.3.1",
- "language-tags": "^1.0.5",
- "minimatch": "^3.1.2",
- "semver": "^6.3.0"
+ "@babel/helper-plugin-utils": "^7.0.0",
+ "@istanbuljs/load-nyc-config": "^1.0.0",
+ "@istanbuljs/schema": "^0.1.2",
+ "istanbul-lib-instrument": "^5.0.4",
+ "test-exclude": "^6.0.0"
},
"engines": {
- "node": ">=4.0"
- },
- "peerDependencies": {
- "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8"
+ "node": ">=8"
}
},
- "node_modules/eslint-plugin-jsx-a11y/node_modules/aria-query": {
- "version": "4.2.2",
+ "node_modules/babel-plugin-jest-hoist": {
+ "version": "29.6.3",
"dev": true,
- "license": "Apache-2.0",
+ "license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.10.2",
- "@babel/runtime-corejs3": "^7.10.2"
+ "@babel/template": "^7.3.3",
+ "@babel/types": "^7.3.3",
+ "@types/babel__core": "^7.1.14",
+ "@types/babel__traverse": "^7.0.6"
},
"engines": {
- "node": ">=6.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/eslint-plugin-jsx-a11y/node_modules/emoji-regex": {
- "version": "9.2.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/eslint-plugin-react": {
- "version": "7.30.1",
+ "node_modules/babel-plugin-polyfill-corejs2": {
+ "version": "0.4.10",
"dev": true,
"license": "MIT",
"dependencies": {
- "array-includes": "^3.1.5",
- "array.prototype.flatmap": "^1.3.0",
- "doctrine": "^2.1.0",
- "estraverse": "^5.3.0",
- "jsx-ast-utils": "^2.4.1 || ^3.0.0",
- "minimatch": "^3.1.2",
- "object.entries": "^1.1.5",
- "object.fromentries": "^2.0.5",
- "object.hasown": "^1.1.1",
- "object.values": "^1.1.5",
- "prop-types": "^15.8.1",
- "resolve": "^2.0.0-next.3",
- "semver": "^6.3.0",
- "string.prototype.matchall": "^4.0.7"
- },
- "engines": {
- "node": ">=4"
+ "@babel/compat-data": "^7.22.6",
+ "@babel/helper-define-polyfill-provider": "^0.6.1",
+ "semver": "^6.3.1"
},
"peerDependencies": {
- "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8"
+ "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
}
},
- "node_modules/eslint-plugin-react-hooks": {
- "version": "4.6.0",
+ "node_modules/babel-plugin-polyfill-corejs3": {
+ "version": "0.10.4",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=10"
+ "dependencies": {
+ "@babel/helper-define-polyfill-provider": "^0.6.1",
+ "core-js-compat": "^3.36.1"
},
"peerDependencies": {
- "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0"
+ "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
}
},
- "node_modules/eslint-plugin-react/node_modules/doctrine": {
- "version": "2.1.0",
+ "node_modules/babel-plugin-polyfill-regenerator": {
+ "version": "0.6.1",
"dev": true,
- "license": "Apache-2.0",
+ "license": "MIT",
"dependencies": {
- "esutils": "^2.0.2"
+ "@babel/helper-define-polyfill-provider": "^0.6.1"
},
- "engines": {
- "node": ">=0.10.0"
+ "peerDependencies": {
+ "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
}
},
- "node_modules/eslint-plugin-react/node_modules/resolve": {
- "version": "2.0.0-next.3",
+ "node_modules/babel-preset-current-node-syntax": {
+ "version": "1.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-core-module": "^2.2.0",
- "path-parse": "^1.0.6"
+ "@babel/plugin-syntax-async-generators": "^7.8.4",
+ "@babel/plugin-syntax-bigint": "^7.8.3",
+ "@babel/plugin-syntax-class-properties": "^7.8.3",
+ "@babel/plugin-syntax-import-meta": "^7.8.3",
+ "@babel/plugin-syntax-json-strings": "^7.8.3",
+ "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3",
+ "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
+ "@babel/plugin-syntax-numeric-separator": "^7.8.3",
+ "@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.8.3"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
}
},
- "node_modules/eslint-plugin-storybook": {
- "version": "0.6.11",
+ "node_modules/babel-preset-jest": {
+ "version": "29.6.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "@storybook/csf": "^0.0.1",
- "@typescript-eslint/utils": "^5.45.0",
- "requireindex": "^1.1.0",
- "ts-dedent": "^2.2.0"
+ "babel-plugin-jest-hoist": "^29.6.3",
+ "babel-preset-current-node-syntax": "^1.0.0"
},
"engines": {
- "node": "12.x || 14.x || >= 16"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
},
"peerDependencies": {
- "eslint": ">=6"
+ "@babel/core": "^7.0.0"
}
},
- "node_modules/eslint-plugin-storybook/node_modules/@storybook/csf": {
- "version": "0.0.1",
+ "node_modules/babel-react-components": {
+ "version": "1.1.0",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "lodash": "^4.17.15"
- }
+ "license": "MIT"
},
- "node_modules/eslint-plugin-storybook/node_modules/@typescript-eslint/scope-manager": {
- "version": "5.54.0",
+ "node_modules/babel-runtime": {
+ "version": "6.26.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@typescript-eslint/types": "5.54.0",
- "@typescript-eslint/visitor-keys": "5.54.0"
- },
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
+ "core-js": "^2.4.0",
+ "regenerator-runtime": "^0.11.0"
}
},
- "node_modules/eslint-plugin-storybook/node_modules/@typescript-eslint/types": {
- "version": "5.54.0",
+ "node_modules/babel-runtime/node_modules/regenerator-runtime": {
+ "version": "0.11.1",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- }
+ "license": "MIT"
},
- "node_modules/eslint-plugin-storybook/node_modules/@typescript-eslint/typescript-estree": {
- "version": "5.54.0",
+ "node_modules/babel-type-scopes": {
+ "version": "1.1.0",
"dev": true,
- "license": "BSD-2-Clause",
+ "license": "MIT",
"dependencies": {
- "@typescript-eslint/types": "5.54.0",
- "@typescript-eslint/visitor-keys": "5.54.0",
- "debug": "^4.3.4",
- "globby": "^11.1.0",
- "is-glob": "^4.0.3",
- "semver": "^7.3.7",
- "tsutils": "^3.21.0"
- },
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
+ "babel-flow-types": "^1.2.1"
}
},
- "node_modules/eslint-plugin-storybook/node_modules/@typescript-eslint/utils": {
- "version": "5.54.0",
+ "node_modules/babel-types": {
+ "version": "6.26.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@types/json-schema": "^7.0.9",
- "@types/semver": "^7.3.12",
- "@typescript-eslint/scope-manager": "5.54.0",
- "@typescript-eslint/types": "5.54.0",
- "@typescript-eslint/typescript-estree": "5.54.0",
- "eslint-scope": "^5.1.1",
- "eslint-utils": "^3.0.0",
- "semver": "^7.3.7"
- },
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
+ "babel-runtime": "^6.26.0",
+ "esutils": "^2.0.2",
+ "lodash": "^4.17.4",
+ "to-fast-properties": "^1.0.3"
}
},
- "node_modules/eslint-plugin-storybook/node_modules/@typescript-eslint/visitor-keys": {
- "version": "5.54.0",
+ "node_modules/babel-types/node_modules/to-fast-properties": {
+ "version": "1.0.3",
"dev": true,
"license": "MIT",
- "dependencies": {
- "@typescript-eslint/types": "5.54.0",
- "eslint-visitor-keys": "^3.3.0"
- },
"engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
+ "node": ">=0.10.0"
}
},
- "node_modules/eslint-plugin-storybook/node_modules/debug": {
- "version": "4.3.4",
+ "node_modules/babylon": {
+ "version": "7.0.0-beta.47",
"dev": true,
"license": "MIT",
- "dependencies": {
- "ms": "2.1.2"
+ "bin": {
+ "babylon": "bin/babylon.js"
},
"engines": {
- "node": ">=6.0"
- },
- "peerDependenciesMeta": {
- "supports-color": {
- "optional": true
- }
+ "node": ">=6.0.0"
}
},
- "node_modules/eslint-plugin-storybook/node_modules/eslint-visitor-keys": {
- "version": "3.3.0",
+ "node_modules/babylon-options": {
+ "version": "2.0.1",
"dev": true,
- "license": "Apache-2.0",
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ "license": "MIT"
+ },
+ "node_modules/bail": {
+ "version": "2.0.2",
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/eslint-plugin-storybook/node_modules/ms": {
- "version": "2.1.2",
- "dev": true,
+ "node_modules/balanced-match": {
+ "version": "1.0.2",
"license": "MIT"
},
- "node_modules/eslint-plugin-storybook/node_modules/semver": {
- "version": "7.3.8",
+ "node_modules/bare-events": {
+ "version": "2.2.2",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
+ "license": "Apache-2.0",
+ "optional": true
},
- "node_modules/eslint-plugin-testing-library": {
- "version": "5.0.6",
+ "node_modules/bare-fs": {
+ "version": "2.2.3",
"dev": true,
- "license": "MIT",
+ "license": "Apache-2.0",
+ "optional": true,
"dependencies": {
- "@typescript-eslint/utils": "^5.13.0"
- },
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0",
- "npm": ">=6"
- },
- "peerDependencies": {
- "eslint": "^7.5.0 || ^8.0.0"
+ "bare-events": "^2.0.0",
+ "bare-path": "^2.0.0",
+ "streamx": "^2.13.0"
}
},
- "node_modules/eslint-plugin-use-encapsulation": {
- "version": "1.0.0",
+ "node_modules/bare-os": {
+ "version": "2.2.1",
"dev": true,
- "license": "MIT",
- "peerDependencies": {
- "eslint": ">=0.8.0"
- }
+ "license": "Apache-2.0",
+ "optional": true
},
- "node_modules/eslint-scope": {
- "version": "5.1.1",
+ "node_modules/bare-path": {
+ "version": "2.1.1",
"dev": true,
- "license": "BSD-2-Clause",
+ "license": "Apache-2.0",
+ "optional": true,
"dependencies": {
- "esrecurse": "^4.3.0",
- "estraverse": "^4.1.1"
- },
- "engines": {
- "node": ">=8.0.0"
+ "bare-os": "^2.1.0"
}
},
- "node_modules/eslint-scope/node_modules/estraverse": {
- "version": "4.3.0",
- "dev": true,
- "license": "BSD-2-Clause",
- "engines": {
- "node": ">=4.0"
- }
+ "node_modules/base64-js": {
+ "version": "1.5.1",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT"
},
- "node_modules/eslint-utils": {
- "version": "3.0.0",
+ "node_modules/bcrypt-pbkdf": {
+ "version": "1.0.2",
"dev": true,
- "license": "MIT",
+ "license": "BSD-3-Clause",
"dependencies": {
- "eslint-visitor-keys": "^2.0.0"
- },
- "engines": {
- "node": "^10.0.0 || ^12.0.0 || >= 14.0.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/mysticatea"
- },
- "peerDependencies": {
- "eslint": ">=5"
+ "tweetnacl": "^0.14.3"
}
},
- "node_modules/eslint-visitor-keys": {
- "version": "2.1.0",
+ "node_modules/before-after-hook": {
+ "version": "2.2.3",
+ "license": "Apache-2.0"
+ },
+ "node_modules/better-opn": {
+ "version": "3.0.2",
"dev": true,
- "license": "Apache-2.0",
+ "license": "MIT",
+ "dependencies": {
+ "open": "^8.0.4"
+ },
"engines": {
- "node": ">=10"
+ "node": ">=12.0.0"
}
},
- "node_modules/eslint/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/better-opn/node_modules/open": {
+ "version": "8.4.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
+ "define-lazy-prop": "^2.0.0",
+ "is-docker": "^2.1.1",
+ "is-wsl": "^2.2.0"
},
"engines": {
- "node": ">=8"
+ "node": ">=12"
},
"funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/eslint/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/big-integer": {
+ "version": "1.6.52",
+ "dev": true,
+ "license": "Unlicense",
+ "engines": {
+ "node": ">=0.6"
+ }
+ },
+ "node_modules/big.js": {
+ "version": "5.2.2",
"dev": true,
"license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "node": "*"
}
},
- "node_modules/eslint/node_modules/eslint-scope": {
- "version": "7.1.1",
+ "node_modules/bin-links": {
+ "version": "3.0.3",
"dev": true,
- "license": "BSD-2-Clause",
+ "license": "ISC",
"dependencies": {
- "esrecurse": "^4.3.0",
- "estraverse": "^5.2.0"
+ "cmd-shim": "^5.0.0",
+ "mkdirp-infer-owner": "^2.0.0",
+ "npm-normalize-package-bin": "^2.0.0",
+ "read-cmd-shim": "^3.0.0",
+ "rimraf": "^3.0.0",
+ "write-file-atomic": "^4.0.0"
},
"engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/eslint/node_modules/eslint-visitor-keys": {
- "version": "3.3.0",
+ "node_modules/bin-links/node_modules/npm-normalize-package-bin": {
+ "version": "2.0.0",
"dev": true,
- "license": "Apache-2.0",
+ "license": "ISC",
"engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/eslint/node_modules/globals": {
- "version": "13.12.1",
+ "node_modules/binary-extensions": {
+ "version": "2.3.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "type-fest": "^0.20.2"
- },
"engines": {
"node": ">=8"
},
@@ -27010,621 +14753,616 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/eslint/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/bl": {
+ "version": "4.1.0",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "dependencies": {
+ "buffer": "^5.5.0",
+ "inherits": "^2.0.4",
+ "readable-stream": "^3.4.0"
}
},
- "node_modules/eslint/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/bl/node_modules/buffer": {
+ "version": "5.7.1",
"dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
+ "base64-js": "^1.3.1",
+ "ieee754": "^1.1.13"
}
},
- "node_modules/espree": {
- "version": "9.3.1",
+ "node_modules/bn.js": {
+ "version": "5.2.1",
"dev": true,
- "license": "BSD-2-Clause",
+ "license": "MIT"
+ },
+ "node_modules/body-parser": {
+ "version": "1.20.2",
+ "dev": true,
+ "license": "MIT",
"dependencies": {
- "acorn": "^8.7.0",
- "acorn-jsx": "^5.3.1",
- "eslint-visitor-keys": "^3.3.0"
+ "bytes": "3.1.2",
+ "content-type": "~1.0.5",
+ "debug": "2.6.9",
+ "depd": "2.0.0",
+ "destroy": "1.2.0",
+ "http-errors": "2.0.0",
+ "iconv-lite": "0.4.24",
+ "on-finished": "2.4.1",
+ "qs": "6.11.0",
+ "raw-body": "2.5.2",
+ "type-is": "~1.6.18",
+ "unpipe": "1.0.0"
},
"engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ "node": ">= 0.8",
+ "npm": "1.2.8000 || >= 1.4.16"
}
},
- "node_modules/espree/node_modules/eslint-visitor-keys": {
- "version": "3.3.0",
+ "node_modules/body-parser/node_modules/debug": {
+ "version": "2.6.9",
"dev": true,
- "license": "Apache-2.0",
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ "license": "MIT",
+ "dependencies": {
+ "ms": "2.0.0"
}
},
- "node_modules/esprima": {
- "version": "4.0.1",
- "license": "BSD-2-Clause",
- "bin": {
- "esparse": "bin/esparse.js",
- "esvalidate": "bin/esvalidate.js"
- },
- "engines": {
- "node": ">=4"
- }
+ "node_modules/body-parser/node_modules/ms": {
+ "version": "2.0.0",
+ "dev": true,
+ "license": "MIT"
},
- "node_modules/esquery": {
- "version": "1.4.0",
+ "node_modules/body-parser/node_modules/qs": {
+ "version": "6.11.0",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
- "estraverse": "^5.1.0"
+ "side-channel": "^1.0.4"
},
"engines": {
- "node": ">=0.10"
- }
- },
- "node_modules/esrecurse": {
- "version": "4.3.0",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "estraverse": "^5.2.0"
+ "node": ">=0.6"
},
- "engines": {
- "node": ">=4.0"
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/estraverse": {
- "version": "5.3.0",
+ "node_modules/boolbase": {
+ "version": "1.0.0",
"dev": true,
- "license": "BSD-2-Clause",
- "engines": {
- "node": ">=4.0"
- }
+ "license": "ISC"
},
- "node_modules/estree-to-babel": {
- "version": "3.2.1",
+ "node_modules/boxen": {
+ "version": "5.1.2",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@babel/traverse": "^7.1.6",
- "@babel/types": "^7.2.0",
- "c8": "^7.6.0"
+ "ansi-align": "^3.0.0",
+ "camelcase": "^6.2.0",
+ "chalk": "^4.1.0",
+ "cli-boxes": "^2.2.1",
+ "string-width": "^4.2.2",
+ "type-fest": "^0.20.2",
+ "widest-line": "^3.1.0",
+ "wrap-ansi": "^7.0.0"
},
"engines": {
- "node": ">=8.3.0"
- }
- },
- "node_modules/estree-util-attach-comments": {
- "version": "2.0.1",
- "license": "MIT",
- "dependencies": {
- "@types/estree": "^0.0.51"
+ "node": ">=10"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/estree-util-build-jsx": {
- "version": "2.1.0",
+ "node_modules/boxen/node_modules/camelcase": {
+ "version": "6.3.0",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "@types/estree-jsx": "^0.0.1",
- "estree-util-is-identifier-name": "^2.0.0",
- "estree-walker": "^3.0.0"
+ "engines": {
+ "node": ">=10"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/estree-util-build-jsx/node_modules/estree-util-is-identifier-name": {
- "version": "2.0.1",
- "license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/estree-util-build-jsx/node_modules/estree-walker": {
- "version": "3.0.1",
- "license": "MIT"
- },
- "node_modules/estree-util-is-identifier-name": {
- "version": "1.1.0",
- "license": "MIT",
+ "node_modules/boxen/node_modules/type-fest": {
+ "version": "0.20.2",
+ "dev": true,
+ "license": "(MIT OR CC0-1.0)",
+ "engines": {
+ "node": ">=10"
+ },
"funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/estree-util-visit": {
- "version": "1.1.0",
+ "node_modules/bplist-parser": {
+ "version": "0.2.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/estree-jsx": "^0.0.1",
- "@types/unist": "^2.0.0"
+ "big-integer": "^1.6.44"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/estree-walker": {
- "version": "2.0.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/esutils": {
- "version": "2.0.3",
- "license": "BSD-2-Clause",
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 5.10.0"
}
},
- "node_modules/etag": {
- "version": "1.8.1",
- "dev": true,
+ "node_modules/brace-expansion": {
+ "version": "1.1.11",
"license": "MIT",
- "engines": {
- "node": ">= 0.6"
+ "dependencies": {
+ "balanced-match": "^1.0.0",
+ "concat-map": "0.0.1"
}
},
- "node_modules/eventemitter3": {
- "version": "4.0.7",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/events": {
- "version": "3.3.0",
+ "node_modules/braces": {
+ "version": "3.0.2",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "fill-range": "^7.0.1"
+ },
"engines": {
- "node": ">=0.8.x"
+ "node": ">=8"
}
},
- "node_modules/eventsourcemock": {
- "version": "2.0.0",
+ "node_modules/brorand": {
+ "version": "1.1.0",
"dev": true,
"license": "MIT"
},
- "node_modules/evp_bytestokey": {
- "version": "1.0.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "md5.js": "^1.3.4",
- "safe-buffer": "^5.1.1"
- }
+ "node_modules/browser-assert": {
+ "version": "1.2.1",
+ "dev": true
},
- "node_modules/exec-sh": {
- "version": "0.3.6",
+ "node_modules/browser-process-hrtime": {
+ "version": "1.0.0",
"dev": true,
- "license": "MIT"
+ "license": "BSD-2-Clause"
},
- "node_modules/execa": {
- "version": "5.1.1",
+ "node_modules/browserify-aes": {
+ "version": "1.2.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "cross-spawn": "^7.0.3",
- "get-stream": "^6.0.0",
- "human-signals": "^2.1.0",
- "is-stream": "^2.0.0",
- "merge-stream": "^2.0.0",
- "npm-run-path": "^4.0.1",
- "onetime": "^5.1.2",
- "signal-exit": "^3.0.3",
- "strip-final-newline": "^2.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sindresorhus/execa?sponsor=1"
- }
- },
- "node_modules/exit": {
- "version": "0.1.2",
- "dev": true,
- "engines": {
- "node": ">= 0.8.0"
+ "buffer-xor": "^1.0.3",
+ "cipher-base": "^1.0.0",
+ "create-hash": "^1.1.0",
+ "evp_bytestokey": "^1.0.3",
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.0.1"
}
},
- "node_modules/expand-brackets": {
- "version": "2.1.4",
+ "node_modules/browserify-cipher": {
+ "version": "1.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "debug": "^2.3.3",
- "define-property": "^0.2.5",
- "extend-shallow": "^2.0.1",
- "posix-character-classes": "^0.1.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
+ "browserify-aes": "^1.0.4",
+ "browserify-des": "^1.0.0",
+ "evp_bytestokey": "^1.0.0"
}
},
- "node_modules/expand-brackets/node_modules/debug": {
- "version": "2.6.9",
+ "node_modules/browserify-des": {
+ "version": "1.0.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "ms": "2.0.0"
+ "cipher-base": "^1.0.1",
+ "des.js": "^1.0.0",
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.1.2"
}
},
- "node_modules/expand-brackets/node_modules/define-property": {
- "version": "0.2.5",
+ "node_modules/browserify-rsa": {
+ "version": "4.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-descriptor": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
+ "bn.js": "^5.0.0",
+ "randombytes": "^2.0.1"
}
},
- "node_modules/expand-brackets/node_modules/extend-shallow": {
- "version": "2.0.1",
+ "node_modules/browserify-sign": {
+ "version": "4.2.3",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "is-extendable": "^0.1.0"
+ "bn.js": "^5.2.1",
+ "browserify-rsa": "^4.1.0",
+ "create-hash": "^1.2.0",
+ "create-hmac": "^1.1.7",
+ "elliptic": "^6.5.5",
+ "hash-base": "~3.0",
+ "inherits": "^2.0.4",
+ "parse-asn1": "^5.1.7",
+ "readable-stream": "^2.3.8",
+ "safe-buffer": "^5.2.1"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 0.12"
}
},
- "node_modules/expand-brackets/node_modules/is-accessor-descriptor": {
- "version": "0.1.6",
+ "node_modules/browserify-sign/node_modules/isarray": {
+ "version": "1.0.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/browserify-sign/node_modules/readable-stream": {
+ "version": "2.3.8",
"dev": true,
"license": "MIT",
"dependencies": {
- "kind-of": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
}
},
- "node_modules/expand-brackets/node_modules/is-accessor-descriptor/node_modules/kind-of": {
- "version": "3.2.2",
+ "node_modules/browserify-sign/node_modules/readable-stream/node_modules/safe-buffer": {
+ "version": "5.1.2",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/browserify-sign/node_modules/string_decoder": {
+ "version": "1.1.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
+ "safe-buffer": "~5.1.0"
}
},
- "node_modules/expand-brackets/node_modules/is-buffer": {
- "version": "1.1.6",
+ "node_modules/browserify-sign/node_modules/string_decoder/node_modules/safe-buffer": {
+ "version": "5.1.2",
"dev": true,
"license": "MIT"
},
- "node_modules/expand-brackets/node_modules/is-data-descriptor": {
- "version": "0.1.4",
+ "node_modules/browserify-zlib": {
+ "version": "0.2.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "kind-of": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
+ "pako": "~1.0.5"
}
},
- "node_modules/expand-brackets/node_modules/is-data-descriptor/node_modules/kind-of": {
- "version": "3.2.2",
- "dev": true,
+ "node_modules/browserslist": {
+ "version": "4.23.0",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "is-buffer": "^1.1.5"
+ "caniuse-lite": "^1.0.30001587",
+ "electron-to-chromium": "^1.4.668",
+ "node-releases": "^2.0.14",
+ "update-browserslist-db": "^1.0.13"
+ },
+ "bin": {
+ "browserslist": "cli.js"
},
"engines": {
- "node": ">=0.10.0"
+ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
}
},
- "node_modules/expand-brackets/node_modules/is-descriptor": {
- "version": "0.1.6",
+ "node_modules/bs-logger": {
+ "version": "0.2.6",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-accessor-descriptor": "^0.1.6",
- "is-data-descriptor": "^0.1.4",
- "kind-of": "^5.0.0"
+ "fast-json-stable-stringify": "2.x"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 6"
}
},
- "node_modules/expand-brackets/node_modules/is-extendable": {
- "version": "0.1.1",
+ "node_modules/bser": {
+ "version": "2.1.1",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "license": "Apache-2.0",
+ "dependencies": {
+ "node-int64": "^0.4.0"
}
},
- "node_modules/expand-brackets/node_modules/kind-of": {
- "version": "5.1.0",
- "dev": true,
+ "node_modules/buffer": {
+ "version": "6.0.3",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "base64-js": "^1.3.1",
+ "ieee754": "^1.2.1"
}
},
- "node_modules/expand-brackets/node_modules/ms": {
- "version": "2.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/expand-tilde": {
- "version": "2.0.2",
+ "node_modules/buffer-crc32": {
+ "version": "0.2.13",
"dev": true,
"license": "MIT",
- "dependencies": {
- "homedir-polyfill": "^1.0.1"
- },
"engines": {
- "node": ">=0.10.0"
+ "node": "*"
}
},
- "node_modules/expect": {
- "version": "28.1.3",
+ "node_modules/buffer-equal-constant-time": {
+ "version": "1.0.1",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "@jest/expect-utils": "^28.1.3",
- "jest-get-type": "^28.0.2",
- "jest-matcher-utils": "^28.1.3",
- "jest-message-util": "^28.1.3",
- "jest-util": "^28.1.3"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
- }
+ "license": "BSD-3-Clause"
},
- "node_modules/expect-playwright": {
- "version": "0.8.0",
+ "node_modules/buffer-from": {
+ "version": "1.1.2",
"dev": true,
"license": "MIT"
},
- "node_modules/express": {
- "version": "4.17.3",
+ "node_modules/buffer-xor": {
+ "version": "1.0.3",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "accepts": "~1.3.8",
- "array-flatten": "1.1.1",
- "body-parser": "1.19.2",
- "content-disposition": "0.5.4",
- "content-type": "~1.0.4",
- "cookie": "0.4.2",
- "cookie-signature": "1.0.6",
- "debug": "2.6.9",
- "depd": "~1.1.2",
- "encodeurl": "~1.0.2",
- "escape-html": "~1.0.3",
- "etag": "~1.8.1",
- "finalhandler": "~1.1.2",
- "fresh": "0.5.2",
- "merge-descriptors": "1.0.1",
- "methods": "~1.1.2",
- "on-finished": "~2.3.0",
- "parseurl": "~1.3.3",
- "path-to-regexp": "0.1.7",
- "proxy-addr": "~2.0.7",
- "qs": "6.9.7",
- "range-parser": "~1.2.1",
- "safe-buffer": "5.2.1",
- "send": "0.17.2",
- "serve-static": "1.14.2",
- "setprototypeof": "1.2.0",
- "statuses": "~1.5.0",
- "type-is": "~1.6.18",
- "utils-merge": "1.0.1",
- "vary": "~1.1.2"
- },
- "engines": {
- "node": ">= 0.10.0"
- }
+ "license": "MIT"
},
- "node_modules/express/node_modules/debug": {
- "version": "2.6.9",
+ "node_modules/builtin-status-codes": {
+ "version": "3.0.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/builtins": {
+ "version": "5.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "ms": "2.0.0"
+ "semver": "^7.0.0"
}
},
- "node_modules/express/node_modules/ms": {
- "version": "2.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/express/node_modules/qs": {
- "version": "6.9.7",
+ "node_modules/builtins/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.6"
+ "license": "ISC",
+ "dependencies": {
+ "yallist": "^4.0.0"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/express/node_modules/safe-buffer": {
- "version": "5.2.1",
+ "node_modules/builtins/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "MIT"
- },
- "node_modules/ext": {
- "version": "1.6.0",
"license": "ISC",
"dependencies": {
- "type": "^2.5.0"
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/ext/node_modules/type": {
- "version": "2.6.0",
+ "node_modules/builtins/node_modules/yallist": {
+ "version": "4.0.0",
+ "dev": true,
"license": "ISC"
},
- "node_modules/extend": {
- "version": "3.0.2",
- "license": "MIT"
- },
- "node_modules/extend-shallow": {
- "version": "3.0.2",
+ "node_modules/bundle-require": {
+ "version": "3.1.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "assign-symbols": "^1.0.0",
- "is-extendable": "^1.0.1"
+ "load-tsconfig": "^0.2.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ },
+ "peerDependencies": {
+ "esbuild": ">=0.13"
}
},
- "node_modules/external-editor": {
- "version": "3.1.0",
- "dev": true,
- "license": "MIT",
+ "node_modules/busboy": {
+ "version": "1.6.0",
"dependencies": {
- "chardet": "^0.7.0",
- "iconv-lite": "^0.4.24",
- "tmp": "^0.0.33"
+ "streamsearch": "^1.1.0"
},
"engines": {
- "node": ">=4"
+ "node": ">=10.16.0"
}
},
- "node_modules/extglob": {
- "version": "2.0.4",
+ "node_modules/byte-size": {
+ "version": "7.0.1",
"dev": true,
"license": "MIT",
- "dependencies": {
- "array-unique": "^0.3.2",
- "define-property": "^1.0.0",
- "expand-brackets": "^2.1.4",
- "extend-shallow": "^2.0.1",
- "fragment-cache": "^0.2.1",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.1"
- },
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10"
}
},
- "node_modules/extglob/node_modules/define-property": {
- "version": "1.0.0",
+ "node_modules/bytes": {
+ "version": "3.1.2",
"dev": true,
"license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/c8": {
+ "version": "7.14.0",
+ "license": "ISC",
"dependencies": {
- "is-descriptor": "^1.0.0"
+ "@bcoe/v8-coverage": "^0.2.3",
+ "@istanbuljs/schema": "^0.1.3",
+ "find-up": "^5.0.0",
+ "foreground-child": "^2.0.0",
+ "istanbul-lib-coverage": "^3.2.0",
+ "istanbul-lib-report": "^3.0.0",
+ "istanbul-reports": "^3.1.4",
+ "rimraf": "^3.0.2",
+ "test-exclude": "^6.0.0",
+ "v8-to-istanbul": "^9.0.0",
+ "yargs": "^16.2.0",
+ "yargs-parser": "^20.2.9"
+ },
+ "bin": {
+ "c8": "bin/c8.js"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10.12.0"
}
},
- "node_modules/extglob/node_modules/extend-shallow": {
- "version": "2.0.1",
- "dev": true,
+ "node_modules/c8/node_modules/yargs": {
+ "version": "16.2.0",
"license": "MIT",
"dependencies": {
- "is-extendable": "^0.1.0"
+ "cliui": "^7.0.2",
+ "escalade": "^3.1.1",
+ "get-caller-file": "^2.0.5",
+ "require-directory": "^2.1.1",
+ "string-width": "^4.2.0",
+ "y18n": "^5.0.5",
+ "yargs-parser": "^20.2.2"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10"
}
},
- "node_modules/extglob/node_modules/is-extendable": {
- "version": "0.1.1",
+ "node_modules/c8/node_modules/yargs-parser": {
+ "version": "20.2.9",
+ "license": "ISC",
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/cac": {
+ "version": "6.7.14",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=0.10.0"
+ "node": ">=8"
}
},
- "node_modules/extract-react-types": {
- "version": "0.30.2",
+ "node_modules/cacache": {
+ "version": "16.1.3",
"dev": true,
- "license": "Apache-2.0",
+ "license": "ISC",
"dependencies": {
- "@aparna036/babel-explode-module": "^2.0.1",
- "@babel/core": "^7.4.4",
- "@babel/runtime": "^7.4.4",
- "@babel/types": "^7.0.0-beta.56",
- "ast-pretty-print": "^2.0.1",
- "babel-errors": "^1.1.1",
- "babel-file": "^3.0.0",
- "babel-file-loader": "^2.0.0",
- "babel-flow-identifiers": "^1.1.3",
- "babel-helper-simplify-module": "^2.2.1",
- "babel-identifiers": "^1.1.2",
- "babel-normalize-comments": "^1.0.1",
- "babel-react-components": "^1.1.0",
- "babel-type-scopes": "^1.1.0",
- "babylon": "^7.0.0-beta.22",
- "babylon-options": "^2.0.1",
- "resolve": "^1.10.1",
- "strip-indent": "^2.0.0"
+ "@npmcli/fs": "^2.1.0",
+ "@npmcli/move-file": "^2.0.0",
+ "chownr": "^2.0.0",
+ "fs-minipass": "^2.1.0",
+ "glob": "^8.0.1",
+ "infer-owner": "^1.0.4",
+ "lru-cache": "^7.7.1",
+ "minipass": "^3.1.6",
+ "minipass-collect": "^1.0.2",
+ "minipass-flush": "^1.0.5",
+ "minipass-pipeline": "^1.2.4",
+ "mkdirp": "^1.0.4",
+ "p-map": "^4.0.0",
+ "promise-inflight": "^1.0.1",
+ "rimraf": "^3.0.2",
+ "ssri": "^9.0.0",
+ "tar": "^6.1.11",
+ "unique-filename": "^2.0.0"
+ },
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/extract-react-types/node_modules/strip-indent": {
- "version": "2.0.0",
+ "node_modules/cacache/node_modules/brace-expansion": {
+ "version": "2.0.1",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=4"
+ "dependencies": {
+ "balanced-match": "^1.0.0"
}
},
- "node_modules/extract-zip": {
- "version": "2.0.1",
+ "node_modules/cacache/node_modules/glob": {
+ "version": "8.1.0",
"dev": true,
- "license": "BSD-2-Clause",
+ "license": "ISC",
"dependencies": {
- "debug": "^4.1.1",
- "get-stream": "^5.1.0",
- "yauzl": "^2.10.0"
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^5.0.1",
+ "once": "^1.3.0"
},
- "bin": {
- "extract-zip": "cli.js"
+ "engines": {
+ "node": ">=12"
},
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/cacache/node_modules/lru-cache": {
+ "version": "7.18.3",
+ "dev": true,
+ "license": "ISC",
"engines": {
- "node": ">= 10.17.0"
+ "node": ">=12"
+ }
+ },
+ "node_modules/cacache/node_modules/minimatch": {
+ "version": "5.1.6",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "brace-expansion": "^2.0.1"
},
- "optionalDependencies": {
- "@types/yauzl": "^2.9.1"
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/cacheable-request": {
+ "version": "6.1.0",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "clone-response": "^1.0.2",
+ "get-stream": "^5.1.0",
+ "http-cache-semantics": "^4.0.0",
+ "keyv": "^3.0.0",
+ "lowercase-keys": "^2.0.0",
+ "normalize-url": "^4.1.0",
+ "responselike": "^1.0.2"
+ },
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/extract-zip/node_modules/get-stream": {
+ "node_modules/cacheable-request/node_modules/get-stream": {
"version": "5.2.0",
"dev": true,
"license": "MIT",
@@ -27638,105 +15376,111 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/extsprintf": {
- "version": "1.3.0",
+ "node_modules/cacheable-request/node_modules/json-buffer": {
+ "version": "3.0.0",
"dev": true,
- "engines": [
- "node >=0.6.0"
- ],
"license": "MIT"
},
- "node_modules/fast-deep-equal": {
- "version": "3.1.3",
+ "node_modules/cacheable-request/node_modules/keyv": {
+ "version": "3.1.0",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "dependencies": {
+ "json-buffer": "3.0.0"
+ }
},
- "node_modules/fast-glob": {
- "version": "3.2.12",
+ "node_modules/cacheable-request/node_modules/lowercase-keys": {
+ "version": "2.0.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "@nodelib/fs.stat": "^2.0.2",
- "@nodelib/fs.walk": "^1.2.3",
- "glob-parent": "^5.1.2",
- "merge2": "^1.3.0",
- "micromatch": "^4.0.4"
- },
"engines": {
- "node": ">=8.6.0"
+ "node": ">=8"
}
},
- "node_modules/fast-glob/node_modules/glob-parent": {
- "version": "5.1.2",
+ "node_modules/caching-transform": {
+ "version": "4.0.0",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "is-glob": "^4.0.1"
+ "hasha": "^5.0.0",
+ "make-dir": "^3.0.0",
+ "package-hash": "^4.0.0",
+ "write-file-atomic": "^3.0.0"
},
"engines": {
- "node": ">= 6"
+ "node": ">=8"
}
},
- "node_modules/fast-json-parse": {
- "version": "1.0.3",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/fast-json-stable-stringify": {
- "version": "2.1.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/fast-levenshtein": {
- "version": "2.0.6",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/fastq": {
- "version": "1.13.0",
+ "node_modules/caching-transform/node_modules/write-file-atomic": {
+ "version": "3.0.3",
"dev": true,
"license": "ISC",
"dependencies": {
- "reusify": "^1.0.4"
+ "imurmurhash": "^0.1.4",
+ "is-typedarray": "^1.0.0",
+ "signal-exit": "^3.0.2",
+ "typedarray-to-buffer": "^3.1.5"
}
},
- "node_modules/fb-watchman": {
- "version": "2.0.1",
+ "node_modules/call-bind": {
+ "version": "1.0.7",
"dev": true,
- "license": "Apache-2.0",
+ "license": "MIT",
"dependencies": {
- "bser": "2.1.1"
+ "es-define-property": "^1.0.0",
+ "es-errors": "^1.3.0",
+ "function-bind": "^1.1.2",
+ "get-intrinsic": "^1.2.4",
+ "set-function-length": "^1.2.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/fd-slicer": {
- "version": "1.1.0",
+ "node_modules/callsites": {
+ "version": "3.1.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "pend": "~1.2.0"
+ "engines": {
+ "node": ">=6"
}
},
- "node_modules/fecha": {
- "version": "4.2.3",
+ "node_modules/camel-case": {
+ "version": "4.1.2",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "dependencies": {
+ "pascal-case": "^3.1.2",
+ "tslib": "^2.0.3"
+ }
},
- "node_modules/fetch-retry": {
- "version": "5.0.4",
+ "node_modules/camelcase": {
+ "version": "5.3.1",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
},
- "node_modules/figgy-pudding": {
- "version": "3.5.2",
+ "node_modules/camelcase-css": {
+ "version": "2.0.1",
"dev": true,
- "license": "ISC"
+ "license": "MIT",
+ "engines": {
+ "node": ">= 6"
+ }
},
- "node_modules/figures": {
- "version": "3.2.0",
+ "node_modules/camelcase-keys": {
+ "version": "6.2.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "escape-string-regexp": "^1.0.5"
+ "camelcase": "^5.3.1",
+ "map-obj": "^4.0.0",
+ "quick-lru": "^4.0.1"
},
"engines": {
"node": ">=8"
@@ -27745,4094 +15489,4234 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/figures/node_modules/escape-string-regexp": {
- "version": "1.0.5",
+ "node_modules/can-bind-to-host": {
+ "version": "1.1.2",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=0.8.0"
+ "bin": {
+ "can-bind-to-host": "dist/bin/can-bind-to-host.js"
}
},
- "node_modules/file-entry-cache": {
- "version": "6.0.1",
+ "node_modules/caniuse-lite": {
+ "version": "1.0.30001607",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "CC-BY-4.0"
+ },
+ "node_modules/capital-case": {
+ "version": "1.0.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "flat-cache": "^3.0.4"
- },
- "engines": {
- "node": "^10.12.0 || >=12.0.0"
+ "no-case": "^3.0.4",
+ "tslib": "^2.0.3",
+ "upper-case-first": "^2.0.2"
}
},
- "node_modules/file-loader": {
- "version": "6.2.0",
+ "node_modules/case-sensitive-paths-webpack-plugin": {
+ "version": "2.4.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "loader-utils": "^2.0.0",
- "schema-utils": "^3.0.0"
- },
"engines": {
- "node": ">= 10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^4.0.0 || ^5.0.0"
+ "node": ">=4"
}
},
- "node_modules/file-system-cache": {
- "version": "1.1.0",
+ "node_modules/caseless": {
+ "version": "0.12.0",
"dev": true,
+ "license": "Apache-2.0"
+ },
+ "node_modules/ccount": {
+ "version": "2.0.1",
"license": "MIT",
- "dependencies": {
- "fs-extra": "^10.1.0",
- "ramda": "^0.28.0"
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/file-system-cache/node_modules/fs-extra": {
- "version": "10.1.0",
+ "node_modules/center-align": {
+ "version": "0.1.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "graceful-fs": "^4.2.0",
- "jsonfile": "^6.0.1",
- "universalify": "^2.0.0"
+ "align-text": "^0.1.3",
+ "lazy-cache": "^1.0.3"
},
"engines": {
- "node": ">=12"
+ "node": ">=0.10.0"
}
},
- "node_modules/file-uri-to-path": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT",
- "optional": true
- },
- "node_modules/fill-range": {
- "version": "7.0.1",
+ "node_modules/chalk": {
+ "version": "4.1.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "to-regex-range": "^5.0.1"
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
},
"engines": {
- "node": ">=8"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
}
},
- "node_modules/filter-obj": {
- "version": "1.1.0",
+ "node_modules/change-case": {
+ "version": "4.1.2",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "camel-case": "^4.1.2",
+ "capital-case": "^1.0.4",
+ "constant-case": "^3.0.4",
+ "dot-case": "^3.0.4",
+ "header-case": "^2.0.4",
+ "no-case": "^3.0.4",
+ "param-case": "^3.0.4",
+ "pascal-case": "^3.1.2",
+ "path-case": "^3.0.4",
+ "sentence-case": "^3.0.4",
+ "snake-case": "^3.0.4",
+ "tslib": "^2.0.3"
}
},
- "node_modules/finalhandler": {
- "version": "1.1.2",
+ "node_modules/char-regex": {
+ "version": "1.0.2",
"dev": true,
"license": "MIT",
- "dependencies": {
- "debug": "2.6.9",
- "encodeurl": "~1.0.2",
- "escape-html": "~1.0.3",
- "on-finished": "~2.3.0",
- "parseurl": "~1.3.3",
- "statuses": "~1.5.0",
- "unpipe": "~1.0.0"
- },
"engines": {
- "node": ">= 0.8"
+ "node": ">=10"
}
},
- "node_modules/finalhandler/node_modules/debug": {
- "version": "2.6.9",
+ "node_modules/character-entities": {
+ "version": "2.0.2",
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/character-entities-html4": {
+ "version": "2.1.0",
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/character-entities-legacy": {
+ "version": "3.0.0",
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/character-parser": {
+ "version": "2.2.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "ms": "2.0.0"
+ "is-regex": "^1.0.3"
}
},
- "node_modules/finalhandler/node_modules/ms": {
- "version": "2.0.0",
+ "node_modules/character-reference-invalid": {
+ "version": "2.0.1",
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/chardet": {
+ "version": "0.7.0",
"dev": true,
"license": "MIT"
},
- "node_modules/find-cache-dir": {
- "version": "2.1.0",
+ "node_modules/cheerio": {
+ "version": "1.0.0-rc.12",
"dev": true,
"license": "MIT",
"dependencies": {
- "commondir": "^1.0.1",
- "make-dir": "^2.0.0",
- "pkg-dir": "^3.0.0"
+ "cheerio-select": "^2.1.0",
+ "dom-serializer": "^2.0.0",
+ "domhandler": "^5.0.3",
+ "domutils": "^3.0.1",
+ "htmlparser2": "^8.0.1",
+ "parse5": "^7.0.0",
+ "parse5-htmlparser2-tree-adapter": "^7.0.0"
},
"engines": {
- "node": ">=6"
+ "node": ">= 6"
+ },
+ "funding": {
+ "url": "https://github.com/cheeriojs/cheerio?sponsor=1"
}
},
- "node_modules/find-cache-dir/node_modules/find-up": {
- "version": "3.0.0",
+ "node_modules/cheerio-select": {
+ "version": "2.1.0",
"dev": true,
- "license": "MIT",
+ "license": "BSD-2-Clause",
"dependencies": {
- "locate-path": "^3.0.0"
+ "boolbase": "^1.0.0",
+ "css-select": "^5.1.0",
+ "css-what": "^6.1.0",
+ "domelementtype": "^2.3.0",
+ "domhandler": "^5.0.3",
+ "domutils": "^3.0.1"
},
- "engines": {
- "node": ">=6"
+ "funding": {
+ "url": "https://github.com/sponsors/fb55"
}
},
- "node_modules/find-cache-dir/node_modules/locate-path": {
- "version": "3.0.0",
+ "node_modules/chokidar": {
+ "version": "3.6.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "p-locate": "^3.0.0",
- "path-exists": "^3.0.0"
+ "anymatch": "~3.1.2",
+ "braces": "~3.0.2",
+ "glob-parent": "~5.1.2",
+ "is-binary-path": "~2.1.0",
+ "is-glob": "~4.0.1",
+ "normalize-path": "~3.0.0",
+ "readdirp": "~3.6.0"
},
"engines": {
- "node": ">=6"
+ "node": ">= 8.10.0"
+ },
+ "funding": {
+ "url": "https://paulmillr.com/funding/"
+ },
+ "optionalDependencies": {
+ "fsevents": "~2.3.2"
}
},
- "node_modules/find-cache-dir/node_modules/p-limit": {
- "version": "2.3.0",
+ "node_modules/chokidar/node_modules/glob-parent": {
+ "version": "5.1.2",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "p-try": "^2.0.0"
+ "is-glob": "^4.0.1"
},
"engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">= 6"
}
},
- "node_modules/find-cache-dir/node_modules/p-locate": {
- "version": "3.0.0",
+ "node_modules/chownr": {
+ "version": "2.0.0",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "p-limit": "^2.0.0"
- },
+ "license": "ISC",
"engines": {
- "node": ">=6"
+ "node": ">=10"
}
},
- "node_modules/find-cache-dir/node_modules/pkg-dir": {
- "version": "3.0.0",
+ "node_modules/chromatic": {
+ "version": "6.24.1",
"dev": true,
"license": "MIT",
- "dependencies": {
- "find-up": "^3.0.0"
- },
- "engines": {
- "node": ">=6"
+ "bin": {
+ "chroma": "dist/bin.js",
+ "chromatic": "dist/bin.js",
+ "chromatic-cli": "dist/bin.js"
}
},
- "node_modules/find-file-up": {
- "version": "0.1.3",
+ "node_modules/chrome-trace-event": {
+ "version": "1.0.3",
"dev": true,
"license": "MIT",
- "dependencies": {
- "fs-exists-sync": "^0.1.0",
- "resolve-dir": "^0.1.0"
- },
"engines": {
- "node": ">=0.10.0"
+ "node": ">=6.0"
}
},
- "node_modules/find-pkg": {
- "version": "0.1.2",
+ "node_modules/ci-info": {
+ "version": "2.0.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/cipher-base": {
+ "version": "1.0.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "find-file-up": "^0.1.2"
- },
- "engines": {
- "node": ">=0.10.0"
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.0.1"
}
},
- "node_modules/find-process": {
- "version": "1.4.7",
+ "node_modules/citty": {
+ "version": "0.1.6",
"dev": true,
"license": "MIT",
"dependencies": {
- "chalk": "^4.0.0",
- "commander": "^5.1.0",
- "debug": "^4.1.1"
- },
- "bin": {
- "find-process": "bin/find-process.js"
+ "consola": "^3.2.3"
}
},
- "node_modules/find-process/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/cjs-module-lexer": {
+ "version": "1.2.3",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/classnames": {
+ "version": "2.5.1",
+ "license": "MIT"
+ },
+ "node_modules/clean-css": {
+ "version": "5.3.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
+ "source-map": "~0.6.0"
},
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "node": ">= 10.0"
}
},
- "node_modules/find-process/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/clean-css/node_modules/source-map": {
+ "version": "0.6.1",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
+ "license": "BSD-3-Clause",
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "node": ">=0.10.0"
}
},
- "node_modules/find-process/node_modules/commander": {
- "version": "5.1.0",
+ "node_modules/clean-set": {
+ "version": "1.1.2",
+ "license": "MIT"
+ },
+ "node_modules/clean-stack": {
+ "version": "2.2.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">= 6"
+ "node": ">=6"
}
},
- "node_modules/find-process/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/cli-boxes": {
+ "version": "2.2.1",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=8"
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/find-process/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/cli-cursor": {
+ "version": "3.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
+ "restore-cursor": "^3.1.0"
},
"engines": {
"node": ">=8"
}
},
- "node_modules/find-up": {
- "version": "5.0.0",
+ "node_modules/cli-spinners": {
+ "version": "2.6.1",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "locate-path": "^6.0.0",
- "path-exists": "^4.0.0"
- },
"engines": {
- "node": ">=10"
+ "node": ">=6"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/find-up/node_modules/path-exists": {
- "version": "4.0.0",
+ "node_modules/cli-table3": {
+ "version": "0.6.4",
+ "dev": true,
"license": "MIT",
+ "dependencies": {
+ "string-width": "^4.2.0"
+ },
"engines": {
- "node": ">=8"
+ "node": "10.* || >= 12.*"
+ },
+ "optionalDependencies": {
+ "@colors/colors": "1.5.0"
}
},
- "node_modules/findup-sync": {
- "version": "5.0.0",
+ "node_modules/cli-width": {
+ "version": "3.0.0",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "detect-file": "^1.0.0",
- "is-glob": "^4.0.3",
- "micromatch": "^4.0.4",
- "resolve-dir": "^1.0.1"
- },
+ "license": "ISC",
"engines": {
- "node": ">= 10.13.0"
+ "node": ">= 10"
}
},
- "node_modules/findup-sync/node_modules/global-modules": {
- "version": "1.0.0",
+ "node_modules/client-only": {
+ "version": "0.0.1",
+ "license": "MIT"
+ },
+ "node_modules/cliui": {
+ "version": "7.0.4",
+ "license": "ISC",
+ "dependencies": {
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.0",
+ "wrap-ansi": "^7.0.0"
+ }
+ },
+ "node_modules/clone": {
+ "version": "1.0.4",
"dev": true,
"license": "MIT",
- "dependencies": {
- "global-prefix": "^1.0.1",
- "is-windows": "^1.0.1",
- "resolve-dir": "^1.0.0"
- },
"engines": {
- "node": ">=0.10.0"
+ "node": ">=0.8"
}
},
- "node_modules/findup-sync/node_modules/global-prefix": {
- "version": "1.0.2",
+ "node_modules/clone-deep": {
+ "version": "4.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "expand-tilde": "^2.0.2",
- "homedir-polyfill": "^1.0.1",
- "ini": "^1.3.4",
- "is-windows": "^1.0.1",
- "which": "^1.2.14"
+ "is-plain-object": "^2.0.4",
+ "kind-of": "^6.0.2",
+ "shallow-clone": "^3.0.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=6"
}
},
- "node_modules/findup-sync/node_modules/resolve-dir": {
- "version": "1.0.1",
+ "node_modules/clone-deep/node_modules/is-plain-object": {
+ "version": "2.0.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "expand-tilde": "^2.0.0",
- "global-modules": "^1.0.0"
+ "isobject": "^3.0.1"
},
"engines": {
"node": ">=0.10.0"
}
},
- "node_modules/findup-sync/node_modules/which": {
- "version": "1.3.1",
+ "node_modules/clone-response": {
+ "version": "1.0.3",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "isexe": "^2.0.0"
+ "mimic-response": "^1.0.0"
},
- "bin": {
- "which": "bin/which"
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/fined": {
- "version": "2.0.0",
- "dev": true,
+ "node_modules/clsx": {
+ "version": "1.2.1",
"license": "MIT",
- "dependencies": {
- "expand-tilde": "^2.0.2",
- "is-plain-object": "^5.0.0",
- "object.defaults": "^1.1.0",
- "object.pick": "^1.3.0",
- "parse-filepath": "^1.0.2"
- },
"engines": {
- "node": ">= 10.13.0"
+ "node": ">=6"
}
},
- "node_modules/fined/node_modules/is-plain-object": {
+ "node_modules/cmd-shim": {
"version": "5.0.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
+ "dependencies": {
+ "mkdirp-infer-owner": "^2.0.0"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/flagged-respawn": {
- "version": "2.0.0",
+ "node_modules/co": {
+ "version": "4.6.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">= 10.13.0"
+ "iojs": ">= 1.0.0",
+ "node": ">= 0.12.0"
}
},
- "node_modules/flat": {
- "version": "5.0.2",
+ "node_modules/collect-v8-coverage": {
+ "version": "1.0.2",
"dev": true,
- "license": "BSD-3-Clause",
- "bin": {
- "flat": "cli.js"
- }
+ "license": "MIT"
},
- "node_modules/flat-cache": {
- "version": "3.0.4",
+ "node_modules/color": {
+ "version": "4.2.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "flatted": "^3.1.0",
- "rimraf": "^3.0.2"
+ "color-convert": "^2.0.1",
+ "color-string": "^1.9.0"
},
"engines": {
- "node": "^10.12.0 || >=12.0.0"
+ "node": ">=12.5.0"
}
},
- "node_modules/flatted": {
- "version": "3.2.5",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/flush-write-stream": {
- "version": "1.1.1",
- "dev": true,
+ "node_modules/color-convert": {
+ "version": "2.0.1",
"license": "MIT",
"dependencies": {
- "inherits": "^2.0.3",
- "readable-stream": "^2.3.6"
+ "color-name": "~1.1.4"
+ },
+ "engines": {
+ "node": ">=7.0.0"
}
},
- "node_modules/flush-write-stream/node_modules/isarray": {
- "version": "1.0.0",
- "dev": true,
+ "node_modules/color-name": {
+ "version": "1.1.4",
"license": "MIT"
},
- "node_modules/flush-write-stream/node_modules/readable-stream": {
- "version": "2.3.8",
+ "node_modules/color-string": {
+ "version": "1.9.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "core-util-is": "~1.0.0",
- "inherits": "~2.0.3",
- "isarray": "~1.0.0",
- "process-nextick-args": "~2.0.0",
- "safe-buffer": "~5.1.1",
- "string_decoder": "~1.1.1",
- "util-deprecate": "~1.0.1"
+ "color-name": "^1.0.0",
+ "simple-swizzle": "^0.2.2"
}
},
- "node_modules/flush-write-stream/node_modules/string_decoder": {
- "version": "1.1.1",
+ "node_modules/color-support": {
+ "version": "1.1.3",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "safe-buffer": "~5.1.0"
+ "license": "ISC",
+ "bin": {
+ "color-support": "bin.js"
}
},
- "node_modules/fn.name": {
- "version": "1.1.0",
+ "node_modules/colorette": {
+ "version": "2.0.20",
"dev": true,
"license": "MIT"
},
- "node_modules/focus-lock": {
- "version": "0.8.1",
+ "node_modules/colorspace": {
+ "version": "1.1.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "tslib": "^1.9.3"
- },
- "engines": {
- "node": ">=10"
+ "color": "^3.1.3",
+ "text-hex": "1.0.x"
}
},
- "node_modules/focus-lock/node_modules/tslib": {
- "version": "1.14.1",
- "dev": true,
- "license": "0BSD"
- },
- "node_modules/follow-redirects": {
- "version": "1.15.2",
+ "node_modules/colorspace/node_modules/color": {
+ "version": "3.2.1",
"dev": true,
- "funding": [
- {
- "type": "individual",
- "url": "https://github.com/sponsors/RubenVerborgh"
- }
- ],
"license": "MIT",
- "engines": {
- "node": ">=4.0"
- },
- "peerDependenciesMeta": {
- "debug": {
- "optional": true
- }
+ "dependencies": {
+ "color-convert": "^1.9.3",
+ "color-string": "^1.6.0"
}
},
- "node_modules/for-each": {
- "version": "0.3.3",
+ "node_modules/colorspace/node_modules/color-convert": {
+ "version": "1.9.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-callable": "^1.1.3"
+ "color-name": "1.1.3"
}
},
- "node_modules/for-in": {
- "version": "1.0.2",
+ "node_modules/colorspace/node_modules/color-name": {
+ "version": "1.1.3",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
+ "license": "MIT"
},
- "node_modules/for-own": {
- "version": "1.0.0",
+ "node_modules/columnify": {
+ "version": "1.6.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "for-in": "^1.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/foreground-child": {
- "version": "2.0.0",
- "license": "ISC",
- "dependencies": {
- "cross-spawn": "^7.0.0",
- "signal-exit": "^3.0.2"
+ "strip-ansi": "^6.0.1",
+ "wcwidth": "^1.0.0"
},
"engines": {
"node": ">=8.0.0"
}
},
- "node_modules/forever-agent": {
- "version": "0.6.1",
- "dev": true,
- "license": "Apache-2.0",
- "engines": {
- "node": "*"
- }
- },
- "node_modules/fork-ts-checker-webpack-plugin": {
- "version": "6.5.0",
+ "node_modules/combined-stream": {
+ "version": "1.0.8",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/code-frame": "^7.8.3",
- "@types/json-schema": "^7.0.5",
- "chalk": "^4.1.0",
- "chokidar": "^3.4.2",
- "cosmiconfig": "^6.0.0",
- "deepmerge": "^4.2.2",
- "fs-extra": "^9.0.0",
- "glob": "^7.1.6",
- "memfs": "^3.1.2",
- "minimatch": "^3.0.4",
- "schema-utils": "2.7.0",
- "semver": "^7.3.2",
- "tapable": "^1.0.0"
+ "delayed-stream": "~1.0.0"
},
"engines": {
- "node": ">=10",
- "yarn": ">=1.0.0"
- },
- "peerDependencies": {
- "eslint": ">= 6",
- "typescript": ">= 2.7",
- "vue-template-compiler": "*",
- "webpack": ">= 4"
- },
- "peerDependenciesMeta": {
- "eslint": {
- "optional": true
- },
- "vue-template-compiler": {
- "optional": true
- }
+ "node": ">= 0.8"
}
},
- "node_modules/fork-ts-checker-webpack-plugin/node_modules/ansi-styles": {
- "version": "4.3.0",
- "dev": true,
+ "node_modules/comma-separated-tokens": {
+ "version": "2.0.3",
"license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
"funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/commander": {
+ "version": "9.5.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "node": "^12.20.0 || >=14"
}
},
- "node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": {
- "version": "6.0.0",
+ "node_modules/common-ancestor-path": {
+ "version": "1.0.1",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/parse-json": "^4.0.0",
- "import-fresh": "^3.1.0",
- "parse-json": "^5.0.0",
- "path-type": "^4.0.0",
- "yaml": "^1.7.2"
- },
- "engines": {
- "node": ">=8"
- }
+ "license": "ISC"
},
- "node_modules/fork-ts-checker-webpack-plugin/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/common-path-prefix": {
+ "version": "3.0.0",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
+ "license": "ISC"
},
- "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": {
- "version": "2.7.0",
+ "node_modules/commondir": {
+ "version": "1.0.1",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/json-schema": "^7.0.4",
- "ajv": "^6.12.2",
- "ajv-keywords": "^3.4.1"
- },
- "engines": {
- "node": ">= 8.9.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- }
+ "license": "MIT"
},
- "node_modules/fork-ts-checker-webpack-plugin/node_modules/semver": {
- "version": "7.3.5",
+ "node_modules/compare-func": {
+ "version": "2.0.0",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
+ "array-ify": "^1.0.0",
+ "dot-prop": "^5.1.0"
}
},
- "node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/compare-func/node_modules/dot-prop": {
+ "version": "5.3.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
+ "is-obj": "^2.0.0"
},
"engines": {
"node": ">=8"
}
},
- "node_modules/form-data": {
- "version": "3.0.1",
+ "node_modules/compressible": {
+ "version": "2.0.18",
"dev": true,
"license": "MIT",
"dependencies": {
- "asynckit": "^0.4.0",
- "combined-stream": "^1.0.8",
- "mime-types": "^2.1.12"
+ "mime-db": ">= 1.43.0 < 2"
},
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/forwarded": {
- "version": "0.2.0",
- "dev": true,
- "license": "MIT",
"engines": {
"node": ">= 0.6"
}
},
- "node_modules/fraction.js": {
- "version": "4.2.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": "*"
- },
- "funding": {
- "type": "patreon",
- "url": "https://www.patreon.com/infusion"
- }
- },
- "node_modules/fragment-cache": {
- "version": "0.2.1",
+ "node_modules/compression": {
+ "version": "1.7.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "map-cache": "^0.2.2"
+ "accepts": "~1.3.5",
+ "bytes": "3.0.0",
+ "compressible": "~2.0.16",
+ "debug": "2.6.9",
+ "on-headers": "~1.0.2",
+ "safe-buffer": "5.1.2",
+ "vary": "~1.1.2"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 0.8.0"
}
},
- "node_modules/fresh": {
- "version": "0.5.2",
+ "node_modules/compression/node_modules/bytes": {
+ "version": "3.0.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">= 0.6"
+ "node": ">= 0.8"
}
},
- "node_modules/from2": {
- "version": "2.3.0",
+ "node_modules/compression/node_modules/debug": {
+ "version": "2.6.9",
"dev": true,
"license": "MIT",
"dependencies": {
- "inherits": "^2.0.1",
- "readable-stream": "^2.0.0"
+ "ms": "2.0.0"
}
},
- "node_modules/from2/node_modules/isarray": {
- "version": "1.0.0",
+ "node_modules/compression/node_modules/ms": {
+ "version": "2.0.0",
"dev": true,
"license": "MIT"
},
- "node_modules/from2/node_modules/readable-stream": {
- "version": "2.3.8",
+ "node_modules/compression/node_modules/safe-buffer": {
+ "version": "5.1.2",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "core-util-is": "~1.0.0",
- "inherits": "~2.0.3",
- "isarray": "~1.0.0",
- "process-nextick-args": "~2.0.0",
- "safe-buffer": "~5.1.1",
- "string_decoder": "~1.1.1",
- "util-deprecate": "~1.0.1"
- }
+ "license": "MIT"
},
- "node_modules/from2/node_modules/string_decoder": {
- "version": "1.1.1",
+ "node_modules/concat-map": {
+ "version": "0.0.1",
+ "license": "MIT"
+ },
+ "node_modules/concat-stream": {
+ "version": "2.0.0",
"dev": true,
+ "engines": [
+ "node >= 6.0"
+ ],
"license": "MIT",
"dependencies": {
- "safe-buffer": "~5.1.0"
+ "buffer-from": "^1.0.0",
+ "inherits": "^2.0.3",
+ "readable-stream": "^3.0.2",
+ "typedarray": "^0.0.6"
}
},
- "node_modules/fromentries": {
- "version": "1.3.2",
- "dev": true,
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "MIT"
- },
- "node_modules/fs-constants": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/fs-exists-sync": {
- "version": "0.1.0",
+ "node_modules/config-chain": {
+ "version": "1.1.13",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "ini": "^1.3.4",
+ "proto-list": "~1.2.1"
}
},
- "node_modules/fs-extra": {
- "version": "9.1.0",
+ "node_modules/configstore": {
+ "version": "5.0.1",
"dev": true,
- "license": "MIT",
+ "license": "BSD-2-Clause",
"dependencies": {
- "at-least-node": "^1.0.0",
- "graceful-fs": "^4.2.0",
- "jsonfile": "^6.0.1",
- "universalify": "^2.0.0"
+ "dot-prop": "^5.2.0",
+ "graceful-fs": "^4.1.2",
+ "make-dir": "^3.0.0",
+ "unique-string": "^2.0.0",
+ "write-file-atomic": "^3.0.0",
+ "xdg-basedir": "^4.0.0"
},
"engines": {
- "node": ">=10"
+ "node": ">=8"
}
},
- "node_modules/fs-minipass": {
- "version": "2.1.0",
+ "node_modules/configstore/node_modules/dot-prop": {
+ "version": "5.3.0",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "minipass": "^3.0.0"
+ "is-obj": "^2.0.0"
},
"engines": {
- "node": ">= 8"
+ "node": ">=8"
}
},
- "node_modules/fs-monkey": {
- "version": "1.0.3",
- "dev": true,
- "license": "Unlicense"
- },
- "node_modules/fs-write-stream-atomic": {
- "version": "1.0.10",
+ "node_modules/configstore/node_modules/write-file-atomic": {
+ "version": "3.0.3",
"dev": true,
"license": "ISC",
"dependencies": {
- "graceful-fs": "^4.1.2",
- "iferr": "^0.1.5",
"imurmurhash": "^0.1.4",
- "readable-stream": "1 || 2"
+ "is-typedarray": "^1.0.0",
+ "signal-exit": "^3.0.2",
+ "typedarray-to-buffer": "^3.1.5"
}
},
- "node_modules/fs-write-stream-atomic/node_modules/isarray": {
- "version": "1.0.0",
+ "node_modules/consola": {
+ "version": "3.2.3",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "engines": {
+ "node": "^14.18.0 || >=16.10.0"
+ }
},
- "node_modules/fs-write-stream-atomic/node_modules/readable-stream": {
- "version": "2.3.8",
+ "node_modules/console-browserify": {
+ "version": "1.2.0",
+ "dev": true
+ },
+ "node_modules/console-control-strings": {
+ "version": "1.1.0",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/constant-case": {
+ "version": "3.0.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "core-util-is": "~1.0.0",
- "inherits": "~2.0.3",
- "isarray": "~1.0.0",
- "process-nextick-args": "~2.0.0",
- "safe-buffer": "~5.1.1",
- "string_decoder": "~1.1.1",
- "util-deprecate": "~1.0.1"
+ "no-case": "^3.0.4",
+ "tslib": "^2.0.3",
+ "upper-case": "^2.0.2"
}
},
- "node_modules/fs-write-stream-atomic/node_modules/string_decoder": {
- "version": "1.1.1",
+ "node_modules/constantinople": {
+ "version": "3.1.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "safe-buffer": "~5.1.0"
+ "@types/babel-types": "^7.0.0",
+ "@types/babylon": "^6.16.2",
+ "babel-types": "^6.26.0",
+ "babylon": "^6.18.0"
}
},
- "node_modules/fs.realpath": {
- "version": "1.0.0",
- "license": "ISC"
- },
- "node_modules/fsevents": {
- "version": "2.3.2",
+ "node_modules/constantinople/node_modules/babylon": {
+ "version": "6.18.0",
"dev": true,
"license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
+ "bin": {
+ "babylon": "bin/babylon.js"
}
},
- "node_modules/function-bind": {
- "version": "1.1.1",
+ "node_modules/constants-browserify": {
+ "version": "1.0.0",
"dev": true,
"license": "MIT"
},
- "node_modules/function.prototype.name": {
- "version": "1.1.5",
+ "node_modules/content-disposition": {
+ "version": "0.5.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.19.0",
- "functions-have-names": "^1.2.2"
- },
- "engines": {
- "node": ">= 0.4"
+ "safe-buffer": "5.2.1"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/functional-red-black-tree": {
- "version": "1.0.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/functions-have-names": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz",
- "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==",
- "dev": true,
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/fuse.js": {
- "version": "6.6.2",
- "license": "Apache-2.0",
"engines": {
- "node": ">=10"
+ "node": ">= 0.6"
}
},
- "node_modules/fuzzy": {
- "version": "0.1.3",
- "dev": true,
+ "node_modules/content-type": {
+ "version": "1.0.5",
+ "license": "MIT",
"engines": {
- "node": ">= 0.6.0"
+ "node": ">= 0.6"
}
},
- "node_modules/gauge": {
- "version": "3.0.2",
+ "node_modules/conventional-changelog-angular": {
+ "version": "5.0.13",
"dev": true,
"license": "ISC",
"dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.2",
- "console-control-strings": "^1.0.0",
- "has-unicode": "^2.0.1",
- "object-assign": "^4.1.1",
- "signal-exit": "^3.0.0",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.2"
+ "compare-func": "^2.0.0",
+ "q": "^1.5.1"
},
"engines": {
"node": ">=10"
}
},
- "node_modules/gensync": {
- "version": "1.0.0-beta.2",
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/get-caller-file": {
- "version": "2.0.5",
- "license": "ISC",
- "engines": {
- "node": "6.* || 8.* || >= 10.*"
- }
- },
- "node_modules/get-intrinsic": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz",
- "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==",
+ "node_modules/conventional-changelog-core": {
+ "version": "4.2.4",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "function-bind": "^1.1.1",
- "has": "^1.0.3",
- "has-proto": "^1.0.1",
- "has-symbols": "^1.0.3"
+ "add-stream": "^1.0.0",
+ "conventional-changelog-writer": "^5.0.0",
+ "conventional-commits-parser": "^3.2.0",
+ "dateformat": "^3.0.0",
+ "get-pkg-repo": "^4.0.0",
+ "git-raw-commits": "^2.0.8",
+ "git-remote-origin-url": "^2.0.0",
+ "git-semver-tags": "^4.1.1",
+ "lodash": "^4.17.15",
+ "normalize-package-data": "^3.0.0",
+ "q": "^1.5.1",
+ "read-pkg": "^3.0.0",
+ "read-pkg-up": "^3.0.0",
+ "through2": "^4.0.0"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/get-nonce": {
- "version": "1.0.1",
- "license": "MIT",
"engines": {
- "node": ">=6"
+ "node": ">=10"
}
},
- "node_modules/get-own-enumerable-property-symbols": {
- "version": "3.0.2",
- "license": "ISC"
- },
- "node_modules/get-package-type": {
- "version": "0.1.0",
+ "node_modules/conventional-changelog-core/node_modules/find-up": {
+ "version": "2.1.0",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "locate-path": "^2.0.0"
+ },
"engines": {
- "node": ">=8.0.0"
+ "node": ">=4"
}
},
- "node_modules/get-pkg-repo": {
- "version": "4.2.1",
+ "node_modules/conventional-changelog-core/node_modules/locate-path": {
+ "version": "2.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@hutson/parse-repository-url": "^3.0.0",
- "hosted-git-info": "^4.0.0",
- "through2": "^2.0.0",
- "yargs": "^16.2.0"
- },
- "bin": {
- "get-pkg-repo": "src/cli.js"
+ "p-locate": "^2.0.0",
+ "path-exists": "^3.0.0"
},
"engines": {
- "node": ">=6.9.0"
+ "node": ">=4"
}
},
- "node_modules/get-pkg-repo/node_modules/isarray": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/get-pkg-repo/node_modules/readable-stream": {
- "version": "2.3.7",
+ "node_modules/conventional-changelog-core/node_modules/p-limit": {
+ "version": "1.3.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "core-util-is": "~1.0.0",
- "inherits": "~2.0.3",
- "isarray": "~1.0.0",
- "process-nextick-args": "~2.0.0",
- "safe-buffer": "~5.1.1",
- "string_decoder": "~1.1.1",
- "util-deprecate": "~1.0.1"
+ "p-try": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/get-pkg-repo/node_modules/string_decoder": {
- "version": "1.1.1",
+ "node_modules/conventional-changelog-core/node_modules/p-locate": {
+ "version": "2.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "safe-buffer": "~5.1.0"
+ "p-limit": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/get-pkg-repo/node_modules/through2": {
- "version": "2.0.5",
+ "node_modules/conventional-changelog-core/node_modules/p-try": {
+ "version": "1.0.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "readable-stream": "~2.3.6",
- "xtend": "~4.0.1"
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/get-port": {
- "version": "5.1.1",
+ "node_modules/conventional-changelog-core/node_modules/path-exists": {
+ "version": "3.0.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=4"
}
},
- "node_modules/get-stdin": {
- "version": "4.0.1",
+ "node_modules/conventional-changelog-core/node_modules/read-pkg-up": {
+ "version": "3.0.0",
"dev": true,
"license": "MIT",
- "optional": true,
+ "dependencies": {
+ "find-up": "^2.0.0",
+ "read-pkg": "^3.0.0"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": ">=4"
}
},
- "node_modules/get-stream": {
- "version": "6.0.1",
+ "node_modules/conventional-changelog-preset-loader": {
+ "version": "2.3.4",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/get-symbol-description": {
- "version": "1.0.0",
+ "node_modules/conventional-changelog-writer": {
+ "version": "5.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "get-intrinsic": "^1.1.1"
+ "conventional-commits-filter": "^2.0.7",
+ "dateformat": "^3.0.0",
+ "handlebars": "^4.7.7",
+ "json-stringify-safe": "^5.0.1",
+ "lodash": "^4.17.15",
+ "meow": "^8.0.0",
+ "semver": "^6.0.0",
+ "split": "^1.0.0",
+ "through2": "^4.0.0"
},
- "engines": {
- "node": ">= 0.4"
+ "bin": {
+ "conventional-changelog-writer": "cli.js"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/get-value": {
- "version": "2.0.6",
- "dev": true,
- "license": "MIT",
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10"
}
},
- "node_modules/getpass": {
- "version": "0.1.7",
+ "node_modules/conventional-commits-filter": {
+ "version": "2.0.7",
"dev": true,
"license": "MIT",
"dependencies": {
- "assert-plus": "^1.0.0"
- }
- },
- "node_modules/git-config-path": {
- "version": "2.0.0",
- "dev": true,
- "license": "MIT",
+ "lodash.ismatch": "^4.4.0",
+ "modify-values": "^1.0.0"
+ },
"engines": {
- "node": ">=4"
+ "node": ">=10"
}
},
- "node_modules/git-raw-commits": {
- "version": "2.0.11",
+ "node_modules/conventional-commits-parser": {
+ "version": "3.2.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "dargs": "^7.0.0",
+ "is-text-path": "^1.0.1",
+ "JSONStream": "^1.0.4",
"lodash": "^4.17.15",
"meow": "^8.0.0",
"split2": "^3.0.0",
"through2": "^4.0.0"
},
"bin": {
- "git-raw-commits": "cli.js"
+ "conventional-commits-parser": "cli.js"
},
"engines": {
"node": ">=10"
}
},
- "node_modules/git-remote-origin-url": {
- "version": "2.0.0",
+ "node_modules/conventional-recommended-bump": {
+ "version": "6.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "gitconfiglocal": "^1.0.0",
- "pify": "^2.3.0"
+ "concat-stream": "^2.0.0",
+ "conventional-changelog-preset-loader": "^2.3.4",
+ "conventional-commits-filter": "^2.0.7",
+ "conventional-commits-parser": "^3.2.0",
+ "git-raw-commits": "^2.0.8",
+ "git-semver-tags": "^4.1.1",
+ "meow": "^8.0.0",
+ "q": "^1.5.1"
+ },
+ "bin": {
+ "conventional-recommended-bump": "cli.js"
},
"engines": {
- "node": ">=4"
+ "node": ">=10"
}
},
- "node_modules/git-remote-origin-url/node_modules/pify": {
- "version": "2.3.0",
+ "node_modules/convert-source-map": {
+ "version": "2.0.0",
+ "license": "MIT"
+ },
+ "node_modules/cookie": {
+ "version": "0.6.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/cookie-signature": {
+ "version": "1.0.6",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/core-js": {
+ "version": "2.6.12",
+ "dev": true,
+ "hasInstallScript": true,
+ "license": "MIT"
+ },
+ "node_modules/core-js-compat": {
+ "version": "3.36.1",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "browserslist": "^4.23.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/core-js"
+ }
+ },
+ "node_modules/core-js-pure": {
+ "version": "3.36.1",
+ "dev": true,
+ "hasInstallScript": true,
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/core-js"
}
},
- "node_modules/git-semver-tags": {
- "version": "4.1.1",
+ "node_modules/core-util-is": {
+ "version": "1.0.2",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/cosmiconfig": {
+ "version": "7.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "meow": "^8.0.0",
- "semver": "^6.0.0"
- },
- "bin": {
- "git-semver-tags": "cli.js"
+ "@types/parse-json": "^4.0.0",
+ "import-fresh": "^3.2.1",
+ "parse-json": "^5.0.0",
+ "path-type": "^4.0.0",
+ "yaml": "^1.10.0"
},
"engines": {
"node": ">=10"
}
},
- "node_modules/git-up": {
- "version": "4.0.5",
+ "node_modules/country-flag-icons": {
+ "version": "1.5.11",
+ "license": "MIT"
+ },
+ "node_modules/create-ecdh": {
+ "version": "4.0.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-ssh": "^1.3.0",
- "parse-url": "^6.0.0"
+ "bn.js": "^4.1.0",
+ "elliptic": "^6.5.3"
}
},
- "node_modules/git-url-parse": {
- "version": "11.6.0",
+ "node_modules/create-ecdh/node_modules/bn.js": {
+ "version": "4.12.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/create-hash": {
+ "version": "1.2.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "git-up": "^4.0.0"
+ "cipher-base": "^1.0.1",
+ "inherits": "^2.0.1",
+ "md5.js": "^1.3.4",
+ "ripemd160": "^2.0.1",
+ "sha.js": "^2.4.0"
}
},
- "node_modules/gitconfiglocal": {
- "version": "1.0.0",
+ "node_modules/create-hmac": {
+ "version": "1.1.7",
"dev": true,
- "license": "BSD",
+ "license": "MIT",
"dependencies": {
- "ini": "^1.3.2"
+ "cipher-base": "^1.0.3",
+ "create-hash": "^1.1.0",
+ "inherits": "^2.0.1",
+ "ripemd160": "^2.0.0",
+ "safe-buffer": "^5.0.1",
+ "sha.js": "^2.4.8"
}
},
- "node_modules/github-slugger": {
- "version": "1.5.0",
+ "node_modules/create-jest": {
+ "version": "29.7.0",
"dev": true,
- "license": "ISC"
- },
- "node_modules/glob": {
- "version": "7.2.0",
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.0.4",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
+ "@jest/types": "^29.6.3",
+ "chalk": "^4.0.0",
+ "exit": "^0.1.2",
+ "graceful-fs": "^4.2.9",
+ "jest-config": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "prompts": "^2.0.1"
},
- "engines": {
- "node": "*"
+ "bin": {
+ "create-jest": "bin/create-jest.js"
},
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/glob-parent": {
- "version": "6.0.2",
- "dev": true,
- "license": "ISC",
+ "node_modules/crelt": {
+ "version": "1.0.6",
+ "license": "MIT"
+ },
+ "node_modules/cross-spawn": {
+ "version": "7.0.3",
+ "license": "MIT",
"dependencies": {
- "is-glob": "^4.0.3"
+ "path-key": "^3.1.0",
+ "shebang-command": "^2.0.0",
+ "which": "^2.0.1"
},
"engines": {
- "node": ">=10.13.0"
+ "node": ">= 8"
}
},
- "node_modules/glob-promise": {
- "version": "3.4.0",
+ "node_modules/crypto-browserify": {
+ "version": "3.12.0",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "@types/glob": "*"
+ "browserify-cipher": "^1.0.0",
+ "browserify-sign": "^4.0.0",
+ "create-ecdh": "^4.0.0",
+ "create-hash": "^1.1.0",
+ "create-hmac": "^1.1.0",
+ "diffie-hellman": "^5.0.0",
+ "inherits": "^2.0.1",
+ "pbkdf2": "^3.0.3",
+ "public-encrypt": "^4.0.0",
+ "randombytes": "^2.0.0",
+ "randomfill": "^1.0.3"
},
"engines": {
- "node": ">=4"
- },
- "peerDependencies": {
- "glob": "*"
+ "node": "*"
}
},
- "node_modules/glob-to-regexp": {
- "version": "0.4.1",
- "dev": true,
- "license": "BSD-2-Clause"
- },
- "node_modules/global": {
- "version": "4.4.0",
+ "node_modules/crypto-random-string": {
+ "version": "2.0.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "min-document": "^2.19.0",
- "process": "^0.11.10"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/global-dirs": {
- "version": "3.0.1",
+ "node_modules/css-loader": {
+ "version": "6.11.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "ini": "2.0.0"
+ "icss-utils": "^5.1.0",
+ "postcss": "^8.4.33",
+ "postcss-modules-extract-imports": "^3.1.0",
+ "postcss-modules-local-by-default": "^4.0.5",
+ "postcss-modules-scope": "^3.2.0",
+ "postcss-modules-values": "^4.0.0",
+ "postcss-value-parser": "^4.2.0",
+ "semver": "^7.5.4"
},
"engines": {
- "node": ">=10"
+ "node": ">= 12.13.0"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ },
+ "peerDependencies": {
+ "@rspack/core": "0.x || 1.x",
+ "webpack": "^5.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@rspack/core": {
+ "optional": true
+ },
+ "webpack": {
+ "optional": true
+ }
}
},
- "node_modules/global-dirs/node_modules/ini": {
- "version": "2.0.0",
+ "node_modules/css-loader/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
"license": "ISC",
+ "dependencies": {
+ "yallist": "^4.0.0"
+ },
"engines": {
"node": ">=10"
}
},
- "node_modules/global-modules": {
- "version": "0.2.3",
+ "node_modules/css-loader/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "global-prefix": "^0.1.4",
- "is-windows": "^0.2.0"
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10"
}
},
- "node_modules/global-modules/node_modules/is-windows": {
- "version": "0.2.0",
+ "node_modules/css-loader/node_modules/yallist": {
+ "version": "4.0.0",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
+ "license": "ISC"
},
- "node_modules/global-prefix": {
- "version": "0.1.5",
+ "node_modules/css-select": {
+ "version": "5.1.0",
"dev": true,
- "license": "MIT",
+ "license": "BSD-2-Clause",
"dependencies": {
- "homedir-polyfill": "^1.0.0",
- "ini": "^1.3.4",
- "is-windows": "^0.2.0",
- "which": "^1.2.12"
+ "boolbase": "^1.0.0",
+ "css-what": "^6.1.0",
+ "domhandler": "^5.0.2",
+ "domutils": "^3.0.1",
+ "nth-check": "^2.0.1"
},
- "engines": {
- "node": ">=0.10.0"
+ "funding": {
+ "url": "https://github.com/sponsors/fb55"
}
},
- "node_modules/global-prefix/node_modules/is-windows": {
- "version": "0.2.0",
+ "node_modules/css-what": {
+ "version": "6.1.0",
"dev": true,
- "license": "MIT",
+ "license": "BSD-2-Clause",
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/fb55"
}
},
- "node_modules/global-prefix/node_modules/which": {
- "version": "1.3.1",
+ "node_modules/css.escape": {
+ "version": "1.5.1",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "isexe": "^2.0.0"
- },
- "bin": {
- "which": "bin/which"
- }
+ "license": "MIT"
},
- "node_modules/globals": {
- "version": "11.12.0",
+ "node_modules/cssesc": {
+ "version": "3.0.0",
+ "dev": true,
"license": "MIT",
+ "bin": {
+ "cssesc": "bin/cssesc"
+ },
"engines": {
"node": ">=4"
}
},
- "node_modules/globalthis": {
- "version": "1.0.3",
+ "node_modules/cssom": {
+ "version": "0.4.4",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "define-properties": "^1.1.3"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
+ "license": "MIT"
},
- "node_modules/globby": {
- "version": "11.1.0",
+ "node_modules/cssstyle": {
+ "version": "2.3.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "array-union": "^2.1.0",
- "dir-glob": "^3.0.1",
- "fast-glob": "^3.2.9",
- "ignore": "^5.2.0",
- "merge2": "^1.4.1",
- "slash": "^3.0.0"
+ "cssom": "~0.3.6"
},
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=8"
}
},
- "node_modules/gopd": {
- "version": "1.0.1",
+ "node_modules/cssstyle/node_modules/cssom": {
+ "version": "0.3.8",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "get-intrinsic": "^1.1.3"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
+ "license": "MIT"
},
- "node_modules/got": {
- "version": "9.6.0",
+ "node_modules/csstype": {
+ "version": "3.1.3",
+ "license": "MIT"
+ },
+ "node_modules/cwd": {
+ "version": "0.10.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@sindresorhus/is": "^0.14.0",
- "@szmarczak/http-timer": "^1.1.2",
- "cacheable-request": "^6.0.0",
- "decompress-response": "^3.3.0",
- "duplexer3": "^0.1.4",
- "get-stream": "^4.1.0",
- "lowercase-keys": "^1.0.1",
- "mimic-response": "^1.0.1",
- "p-cancelable": "^1.0.0",
- "to-readable-stream": "^1.0.0",
- "url-parse-lax": "^3.0.0"
+ "find-pkg": "^0.1.2",
+ "fs-exists-sync": "^0.1.0"
},
"engines": {
- "node": ">=8.6"
+ "node": ">=0.8"
}
},
- "node_modules/got/node_modules/get-stream": {
- "version": "4.1.0",
- "dev": true,
- "license": "MIT",
+ "node_modules/d": {
+ "version": "1.0.2",
+ "license": "ISC",
"dependencies": {
- "pump": "^3.0.0"
+ "es5-ext": "^0.10.64",
+ "type": "^2.7.2"
},
"engines": {
- "node": ">=6"
+ "node": ">=0.12"
}
},
- "node_modules/graceful-fs": {
- "version": "4.2.9",
+ "node_modules/damerau-levenshtein": {
+ "version": "1.0.8",
"dev": true,
- "license": "ISC"
+ "license": "BSD-2-Clause"
},
- "node_modules/gray-matter": {
- "version": "4.0.3",
+ "node_modules/dargs": {
+ "version": "7.0.0",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "js-yaml": "^3.13.1",
- "kind-of": "^6.0.2",
- "section-matter": "^1.0.0",
- "strip-bom-string": "^1.0.0"
- },
"engines": {
- "node": ">=6.0"
+ "node": ">=8"
}
},
- "node_modules/gray-matter/node_modules/argparse": {
- "version": "1.0.10",
+ "node_modules/dashdash": {
+ "version": "1.14.1",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "sprintf-js": "~1.0.2"
+ "assert-plus": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=0.10"
}
},
- "node_modules/gray-matter/node_modules/js-yaml": {
- "version": "3.14.1",
+ "node_modules/data-urls": {
+ "version": "1.1.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "argparse": "^1.0.7",
- "esprima": "^4.0.0"
- },
- "bin": {
- "js-yaml": "bin/js-yaml.js"
+ "abab": "^2.0.0",
+ "whatwg-mimetype": "^2.2.0",
+ "whatwg-url": "^7.0.0"
}
},
- "node_modules/gzip-size": {
- "version": "6.0.0",
+ "node_modules/data-view-buffer": {
+ "version": "1.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "duplexer": "^0.1.2"
+ "call-bind": "^1.0.6",
+ "es-errors": "^1.3.0",
+ "is-data-view": "^1.0.1"
},
"engines": {
- "node": ">=10"
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/handlebars": {
- "version": "4.7.7",
+ "node_modules/data-view-byte-length": {
+ "version": "1.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "minimist": "^1.2.5",
- "neo-async": "^2.6.0",
- "source-map": "^0.6.1",
- "wordwrap": "^1.0.0"
- },
- "bin": {
- "handlebars": "bin/handlebars"
+ "call-bind": "^1.0.7",
+ "es-errors": "^1.3.0",
+ "is-data-view": "^1.0.1"
},
"engines": {
- "node": ">=0.4.7"
+ "node": ">= 0.4"
},
- "optionalDependencies": {
- "uglify-js": "^3.1.4"
- }
- },
- "node_modules/handlebars/node_modules/source-map": {
- "version": "0.6.1",
- "dev": true,
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/har-schema": {
- "version": "2.0.0",
- "dev": true,
- "license": "ISC",
- "engines": {
- "node": ">=4"
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/har-validator": {
- "version": "5.1.5",
+ "node_modules/data-view-byte-offset": {
+ "version": "1.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "ajv": "^6.12.3",
- "har-schema": "^2.0.0"
+ "call-bind": "^1.0.6",
+ "es-errors": "^1.3.0",
+ "is-data-view": "^1.0.1"
},
"engines": {
- "node": ">=6"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/hard-rejection": {
- "version": "2.1.0",
+ "node_modules/dateformat": {
+ "version": "3.0.3",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=6"
+ "node": "*"
}
},
- "node_modules/has": {
- "version": "1.0.3",
- "dev": true,
+ "node_modules/debug": {
+ "version": "4.3.4",
"license": "MIT",
"dependencies": {
- "function-bind": "^1.1.1"
+ "ms": "2.1.2"
},
"engines": {
- "node": ">= 0.4.0"
- }
- },
- "node_modules/has-ansi": {
- "version": "2.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-regex": "^2.0.0"
+ "node": ">=6.0"
},
- "engines": {
- "node": ">=0.10.0"
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
}
},
- "node_modules/has-ansi/node_modules/ansi-regex": {
- "version": "2.1.1",
+ "node_modules/debuglog": {
+ "version": "1.0.1",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=0.10.0"
+ "node": "*"
}
},
- "node_modules/has-bigints": {
- "version": "1.0.2",
+ "node_modules/decamelize": {
+ "version": "1.2.0",
"dev": true,
"license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/has-flag": {
- "version": "3.0.0",
- "license": "MIT",
"engines": {
- "node": ">=4"
+ "node": ">=0.10.0"
}
},
- "node_modules/has-glob": {
- "version": "1.0.0",
+ "node_modules/decamelize-keys": {
+ "version": "1.1.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-glob": "^3.0.0"
+ "decamelize": "^1.1.0",
+ "map-obj": "^1.0.0"
},
"engines": {
"node": ">=0.10.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/has-glob/node_modules/is-glob": {
- "version": "3.1.0",
+ "node_modules/decamelize-keys/node_modules/map-obj": {
+ "version": "1.0.1",
"dev": true,
"license": "MIT",
- "dependencies": {
- "is-extglob": "^2.1.0"
- },
"engines": {
"node": ">=0.10.0"
}
},
- "node_modules/has-property-descriptors": {
- "version": "1.0.0",
+ "node_modules/decimal.js": {
+ "version": "10.4.3",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "get-intrinsic": "^1.1.1"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
+ "license": "MIT"
},
- "node_modules/has-proto": {
- "version": "1.0.1",
- "dev": true,
+ "node_modules/decode-named-character-reference": {
+ "version": "1.0.2",
"license": "MIT",
- "engines": {
- "node": ">= 0.4"
+ "dependencies": {
+ "character-entities": "^2.0.0"
},
"funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/has-symbols": {
- "version": "1.0.3",
+ "node_modules/decode-uri-component": {
+ "version": "0.2.2",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "node": ">=0.10"
}
},
- "node_modules/has-tostringtag": {
- "version": "1.0.0",
+ "node_modules/decompress-response": {
+ "version": "3.3.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-symbols": "^1.0.2"
+ "mimic-response": "^1.0.0"
},
"engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "node": ">=4"
}
},
- "node_modules/has-unicode": {
- "version": "2.0.1",
+ "node_modules/dedent": {
+ "version": "0.7.0",
"dev": true,
- "license": "ISC"
+ "license": "MIT"
},
- "node_modules/has-value": {
- "version": "1.0.0",
+ "node_modules/deep-equal": {
+ "version": "2.2.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "get-value": "^2.0.6",
- "has-values": "^1.0.0",
- "isobject": "^3.0.0"
+ "array-buffer-byte-length": "^1.0.0",
+ "call-bind": "^1.0.5",
+ "es-get-iterator": "^1.1.3",
+ "get-intrinsic": "^1.2.2",
+ "is-arguments": "^1.1.1",
+ "is-array-buffer": "^3.0.2",
+ "is-date-object": "^1.0.5",
+ "is-regex": "^1.1.4",
+ "is-shared-array-buffer": "^1.0.2",
+ "isarray": "^2.0.5",
+ "object-is": "^1.1.5",
+ "object-keys": "^1.1.1",
+ "object.assign": "^4.1.4",
+ "regexp.prototype.flags": "^1.5.1",
+ "side-channel": "^1.0.4",
+ "which-boxed-primitive": "^1.0.2",
+ "which-collection": "^1.0.1",
+ "which-typed-array": "^1.1.13"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/has-values": {
- "version": "1.0.0",
+ "node_modules/deep-extend": {
+ "version": "0.6.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "is-number": "^3.0.0",
- "kind-of": "^4.0.0"
- },
"engines": {
- "node": ">=0.10.0"
+ "node": ">=4.0.0"
}
},
- "node_modules/has-values/node_modules/is-buffer": {
- "version": "1.1.6",
+ "node_modules/deep-is": {
+ "version": "0.1.4",
"dev": true,
"license": "MIT"
},
- "node_modules/has-values/node_modules/is-number": {
- "version": "3.0.0",
+ "node_modules/deepmerge": {
+ "version": "4.3.1",
"dev": true,
"license": "MIT",
- "dependencies": {
- "kind-of": "^3.0.2"
- },
"engines": {
"node": ">=0.10.0"
}
},
- "node_modules/has-values/node_modules/is-number/node_modules/kind-of": {
- "version": "3.2.2",
+ "node_modules/default-browser-id": {
+ "version": "3.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-buffer": "^1.1.5"
+ "bplist-parser": "^0.2.0",
+ "untildify": "^4.0.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/has-values/node_modules/kind-of": {
- "version": "4.0.0",
+ "node_modules/default-require-extensions": {
+ "version": "3.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-buffer": "^1.1.5"
+ "strip-bom": "^4.0.0"
},
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/has-yarn": {
- "version": "2.1.0",
- "dev": true,
- "license": "MIT",
"engines": {
"node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/hash-base": {
- "version": "3.1.0",
+ "node_modules/defaults": {
+ "version": "1.0.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "inherits": "^2.0.4",
- "readable-stream": "^3.6.0",
- "safe-buffer": "^5.2.0"
+ "clone": "^1.0.2"
},
- "engines": {
- "node": ">=4"
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/hash-base/node_modules/safe-buffer": {
- "version": "5.2.1",
+ "node_modules/defer-to-connect": {
+ "version": "1.1.3",
"dev": true,
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
"license": "MIT"
},
- "node_modules/hash.js": {
- "version": "1.1.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "inherits": "^2.0.3",
- "minimalistic-assert": "^1.0.1"
- }
- },
- "node_modules/hasha": {
- "version": "5.2.2",
+ "node_modules/define-data-property": {
+ "version": "1.1.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-stream": "^2.0.0",
- "type-fest": "^0.8.0"
+ "es-define-property": "^1.0.0",
+ "es-errors": "^1.3.0",
+ "gopd": "^1.0.1"
},
"engines": {
- "node": ">=8"
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/hasha/node_modules/type-fest": {
- "version": "0.8.1",
+ "node_modules/define-lazy-prop": {
+ "version": "2.0.0",
"dev": true,
- "license": "(MIT OR CC0-1.0)",
+ "license": "MIT",
"engines": {
"node": ">=8"
}
},
- "node_modules/hast-to-hyperscript": {
- "version": "9.0.1",
+ "node_modules/define-properties": {
+ "version": "1.2.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@types/unist": "^2.0.3",
- "comma-separated-tokens": "^1.0.0",
- "property-information": "^5.3.0",
- "space-separated-tokens": "^1.0.0",
- "style-to-object": "^0.3.0",
- "unist-util-is": "^4.0.0",
- "web-namespaces": "^1.0.0"
+ "define-data-property": "^1.0.1",
+ "has-property-descriptors": "^1.0.0",
+ "object-keys": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/hast-util-from-parse5": {
- "version": "6.0.1",
+ "node_modules/defu": {
+ "version": "6.1.4",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/del": {
+ "version": "6.1.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@types/parse5": "^5.0.0",
- "hastscript": "^6.0.0",
- "property-information": "^5.0.0",
- "vfile": "^4.0.0",
- "vfile-location": "^3.2.0",
- "web-namespaces": "^1.0.0"
+ "globby": "^11.0.1",
+ "graceful-fs": "^4.2.4",
+ "is-glob": "^4.0.1",
+ "is-path-cwd": "^2.2.0",
+ "is-path-inside": "^3.0.2",
+ "p-map": "^4.0.0",
+ "rimraf": "^3.0.2",
+ "slash": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=10"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/hast-util-parse-selector": {
- "version": "2.2.5",
+ "node_modules/delayed-stream": {
+ "version": "1.0.0",
"dev": true,
"license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=0.4.0"
}
},
- "node_modules/hast-util-raw": {
- "version": "6.0.1",
+ "node_modules/delegates": {
+ "version": "1.0.0",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/hast": "^2.0.0",
- "hast-util-from-parse5": "^6.0.0",
- "hast-util-to-parse5": "^6.0.0",
- "html-void-elements": "^1.0.0",
- "parse5": "^6.0.0",
- "unist-util-position": "^3.0.0",
- "vfile": "^4.0.0",
- "web-namespaces": "^1.0.0",
- "xtend": "^4.0.0",
- "zwitch": "^1.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
+ "license": "MIT"
},
- "node_modules/hast-util-to-estree": {
- "version": "2.0.2",
+ "node_modules/depd": {
+ "version": "2.0.0",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "@types/estree-jsx": "^0.0.1",
- "@types/hast": "^2.0.0",
- "@types/unist": "^2.0.0",
- "comma-separated-tokens": "^2.0.0",
- "estree-util-attach-comments": "^2.0.0",
- "estree-util-is-identifier-name": "^2.0.0",
- "hast-util-whitespace": "^2.0.0",
- "mdast-util-mdx-expression": "^1.0.0",
- "mdast-util-mdxjs-esm": "^1.0.0",
- "property-information": "^6.0.0",
- "space-separated-tokens": "^2.0.0",
- "style-to-object": "^0.3.0",
- "unist-util-position": "^4.0.0",
- "zwitch": "^2.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">= 0.8"
}
},
- "node_modules/hast-util-to-estree/node_modules/comma-separated-tokens": {
- "version": "2.0.2",
- "license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
+ "node_modules/deprecation": {
+ "version": "2.3.1",
+ "license": "ISC"
},
- "node_modules/hast-util-to-estree/node_modules/estree-util-is-identifier-name": {
- "version": "2.0.1",
+ "node_modules/dequal": {
+ "version": "2.0.3",
"license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=6"
}
},
- "node_modules/hast-util-to-estree/node_modules/property-information": {
- "version": "6.1.1",
+ "node_modules/des.js": {
+ "version": "1.1.0",
+ "dev": true,
"license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "dependencies": {
+ "inherits": "^2.0.1",
+ "minimalistic-assert": "^1.0.0"
}
},
- "node_modules/hast-util-to-estree/node_modules/space-separated-tokens": {
- "version": "2.0.1",
+ "node_modules/destroy": {
+ "version": "1.2.0",
+ "dev": true,
"license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "engines": {
+ "node": ">= 0.8",
+ "npm": "1.2.8000 || >= 1.4.16"
}
},
- "node_modules/hast-util-to-estree/node_modules/unist-util-position": {
- "version": "4.0.3",
+ "node_modules/detect-file": {
+ "version": "1.0.0",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "@types/unist": "^2.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/hast-util-to-estree/node_modules/zwitch": {
- "version": "2.0.2",
+ "node_modules/detect-indent": {
+ "version": "6.1.0",
+ "dev": true,
"license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/hast-util-to-parse5": {
- "version": "6.0.0",
+ "node_modules/detect-libc": {
+ "version": "2.0.3",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "hast-to-hyperscript": "^9.0.0",
- "property-information": "^5.0.0",
- "web-namespaces": "^1.0.0",
- "xtend": "^4.0.0",
- "zwitch": "^1.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/hast-util-to-string": {
- "version": "1.0.4",
+ "node_modules/detect-newline": {
+ "version": "3.1.0",
+ "dev": true,
"license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/hast-util-whitespace": {
- "version": "2.0.0",
- "license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
+ "node_modules/detect-node-es": {
+ "version": "1.1.0",
+ "license": "MIT"
},
- "node_modules/hastscript": {
- "version": "6.0.0",
+ "node_modules/detect-package-manager": {
+ "version": "3.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@types/hast": "^2.0.0",
- "comma-separated-tokens": "^1.0.0",
- "hast-util-parse-selector": "^2.0.0",
- "property-information": "^5.0.0",
- "space-separated-tokens": "^1.0.0"
+ "execa": "^5.1.1"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=12"
}
},
- "node_modules/he": {
- "version": "1.2.0",
+ "node_modules/detect-port": {
+ "version": "1.5.1",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "address": "^1.0.1",
+ "debug": "4"
+ },
"bin": {
- "he": "bin/he"
+ "detect": "bin/detect-port.js",
+ "detect-port": "bin/detect-port.js"
}
},
- "node_modules/header-case": {
- "version": "2.0.4",
+ "node_modules/dezalgo": {
+ "version": "1.0.4",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "capital-case": "^1.0.4",
- "tslib": "^2.0.3"
+ "asap": "^2.0.0",
+ "wrappy": "1"
}
},
- "node_modules/hmac-drbg": {
- "version": "1.0.1",
+ "node_modules/didyoumean": {
+ "version": "1.2.2",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "hash.js": "^1.0.3",
- "minimalistic-assert": "^1.0.0",
- "minimalistic-crypto-utils": "^1.0.1"
+ "license": "Apache-2.0"
+ },
+ "node_modules/diff": {
+ "version": "5.2.0",
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=0.3.1"
}
},
- "node_modules/home-or-tmp": {
- "version": "2.0.0",
+ "node_modules/diff-sequences": {
+ "version": "29.6.3",
"dev": true,
"license": "MIT",
- "dependencies": {
- "os-homedir": "^1.0.0",
- "os-tmpdir": "^1.0.1"
- },
"engines": {
- "node": ">=0.10.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/homedir-polyfill": {
- "version": "1.0.3",
+ "node_modules/diffable-html": {
+ "version": "4.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "parse-passwd": "^1.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
+ "htmlparser2": "^3.9.2"
}
},
- "node_modules/hosted-git-info": {
- "version": "4.1.0",
+ "node_modules/diffable-html/node_modules/dom-serializer": {
+ "version": "0.2.2",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "lru-cache": "^6.0.0"
- },
- "engines": {
- "node": ">=10"
+ "domelementtype": "^2.0.1",
+ "entities": "^2.0.0"
}
},
- "node_modules/html-element-map": {
+ "node_modules/diffable-html/node_modules/dom-serializer/node_modules/domelementtype": {
+ "version": "2.3.0",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/fb55"
+ }
+ ],
+ "license": "BSD-2-Clause"
+ },
+ "node_modules/diffable-html/node_modules/dom-serializer/node_modules/entities": {
+ "version": "2.2.0",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "funding": {
+ "url": "https://github.com/fb55/entities?sponsor=1"
+ }
+ },
+ "node_modules/diffable-html/node_modules/domelementtype": {
"version": "1.3.1",
"dev": true,
- "license": "MIT",
+ "license": "BSD-2-Clause"
+ },
+ "node_modules/diffable-html/node_modules/domhandler": {
+ "version": "2.4.2",
+ "dev": true,
+ "license": "BSD-2-Clause",
"dependencies": {
- "array.prototype.filter": "^1.0.0",
- "call-bind": "^1.0.2"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "domelementtype": "1"
}
},
- "node_modules/html-encoding-sniffer": {
- "version": "3.0.0",
+ "node_modules/diffable-html/node_modules/domutils": {
+ "version": "1.7.0",
"dev": true,
- "license": "MIT",
+ "license": "BSD-2-Clause",
"dependencies": {
- "whatwg-encoding": "^2.0.0"
- },
- "engines": {
- "node": ">=12"
+ "dom-serializer": "0",
+ "domelementtype": "1"
}
},
- "node_modules/html-encoding-sniffer/node_modules/iconv-lite": {
- "version": "0.6.3",
+ "node_modules/diffable-html/node_modules/entities": {
+ "version": "1.1.2",
+ "dev": true,
+ "license": "BSD-2-Clause"
+ },
+ "node_modules/diffable-html/node_modules/htmlparser2": {
+ "version": "3.10.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "safer-buffer": ">= 2.1.2 < 3.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
+ "domelementtype": "^1.3.1",
+ "domhandler": "^2.3.0",
+ "domutils": "^1.5.1",
+ "entities": "^1.1.1",
+ "inherits": "^2.0.1",
+ "readable-stream": "^3.1.1"
}
},
- "node_modules/html-encoding-sniffer/node_modules/whatwg-encoding": {
- "version": "2.0.0",
+ "node_modules/diffie-hellman": {
+ "version": "5.0.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "iconv-lite": "0.6.3"
- },
- "engines": {
- "node": ">=12"
+ "bn.js": "^4.1.0",
+ "miller-rabin": "^4.0.0",
+ "randombytes": "^2.0.0"
}
},
- "node_modules/html-entities": {
- "version": "2.3.2",
+ "node_modules/diffie-hellman/node_modules/bn.js": {
+ "version": "4.12.0",
"dev": true,
"license": "MIT"
},
- "node_modules/html-escaper": {
- "version": "2.0.2",
- "license": "MIT"
- },
- "node_modules/html-minifier-terser": {
- "version": "6.1.0",
+ "node_modules/dir-glob": {
+ "version": "3.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "camel-case": "^4.1.2",
- "clean-css": "^5.2.2",
- "commander": "^8.3.0",
- "he": "^1.2.0",
- "param-case": "^3.0.4",
- "relateurl": "^0.2.7",
- "terser": "^5.10.0"
- },
- "bin": {
- "html-minifier-terser": "cli.js"
+ "path-type": "^4.0.0"
},
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/html-tags": {
- "version": "3.2.0",
- "dev": true,
- "license": "MIT",
"engines": {
"node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/html-void-elements": {
- "version": "1.0.5",
+ "node_modules/discontinuous-range": {
+ "version": "1.0.0",
"dev": true,
- "license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
+ "license": "MIT"
},
- "node_modules/htmlparser2": {
- "version": "6.1.0",
+ "node_modules/dlv": {
+ "version": "1.1.3",
"dev": true,
- "funding": [
- "https://github.com/fb55/htmlparser2?sponsor=1",
- {
- "type": "github",
- "url": "https://github.com/sponsors/fb55"
- }
- ],
- "license": "MIT",
+ "license": "MIT"
+ },
+ "node_modules/doctrine": {
+ "version": "3.0.0",
+ "license": "Apache-2.0",
"dependencies": {
- "domelementtype": "^2.0.1",
- "domhandler": "^4.0.0",
- "domutils": "^2.5.2",
- "entities": "^2.0.0"
+ "esutils": "^2.0.2"
+ },
+ "engines": {
+ "node": ">=6.0.0"
}
},
- "node_modules/http-cache-semantics": {
- "version": "4.1.0",
+ "node_modules/doctypes": {
+ "version": "1.1.0",
"dev": true,
- "license": "BSD-2-Clause"
+ "license": "MIT"
},
- "node_modules/http-errors": {
- "version": "1.8.1",
+ "node_modules/dom-accessibility-api": {
+ "version": "0.5.16",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/dom-converter": {
+ "version": "0.2.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "depd": "~1.1.2",
- "inherits": "2.0.4",
- "setprototypeof": "1.2.0",
- "statuses": ">= 1.5.0 < 2",
- "toidentifier": "1.0.1"
- },
- "engines": {
- "node": ">= 0.6"
+ "utila": "~0.4"
}
},
- "node_modules/http-proxy-agent": {
- "version": "4.0.1",
- "dev": true,
+ "node_modules/dom-helpers": {
+ "version": "5.2.1",
"license": "MIT",
"dependencies": {
- "@tootallnate/once": "1",
- "agent-base": "6",
- "debug": "4"
- },
- "engines": {
- "node": ">= 6"
+ "@babel/runtime": "^7.8.7",
+ "csstype": "^3.0.2"
}
},
- "node_modules/http-signature": {
- "version": "1.2.0",
+ "node_modules/dom-serializer": {
+ "version": "2.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "assert-plus": "^1.0.0",
- "jsprim": "^1.2.2",
- "sshpk": "^1.7.0"
+ "domelementtype": "^2.3.0",
+ "domhandler": "^5.0.2",
+ "entities": "^4.2.0"
},
- "engines": {
- "node": ">=0.8",
- "npm": ">=1.3.7"
+ "funding": {
+ "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1"
}
},
- "node_modules/http-status-codes": {
- "version": "1.4.0",
+ "node_modules/domain-browser": {
+ "version": "4.23.0",
"dev": true,
- "license": "MIT"
+ "license": "Artistic-2.0",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://bevry.me/fund"
+ }
},
- "node_modules/https": {
- "version": "1.0.0",
+ "node_modules/domelementtype": {
+ "version": "2.3.0",
"dev": true,
- "license": "ISC"
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/fb55"
+ }
+ ],
+ "license": "BSD-2-Clause"
},
- "node_modules/https-browserify": {
- "version": "1.0.0",
+ "node_modules/domexception": {
+ "version": "1.0.1",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "dependencies": {
+ "webidl-conversions": "^4.0.2"
+ }
},
- "node_modules/https-proxy-agent": {
- "version": "5.0.0",
+ "node_modules/domhandler": {
+ "version": "5.0.3",
"dev": true,
- "license": "MIT",
+ "license": "BSD-2-Clause",
"dependencies": {
- "agent-base": "6",
- "debug": "4"
+ "domelementtype": "^2.3.0"
},
"engines": {
- "node": ">= 6"
+ "node": ">= 4"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/domhandler?sponsor=1"
}
},
- "node_modules/human-signals": {
- "version": "2.1.0",
+ "node_modules/domutils": {
+ "version": "3.1.0",
"dev": true,
- "license": "Apache-2.0",
- "engines": {
- "node": ">=10.17.0"
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "dom-serializer": "^2.0.0",
+ "domelementtype": "^2.3.0",
+ "domhandler": "^5.0.3"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/domutils?sponsor=1"
}
},
- "node_modules/humanize-ms": {
- "version": "1.2.1",
- "dev": true,
+ "node_modules/dot-case": {
+ "version": "3.0.4",
"license": "MIT",
"dependencies": {
- "ms": "^2.0.0"
+ "no-case": "^3.0.4",
+ "tslib": "^2.0.3"
}
},
- "node_modules/husky": {
- "version": "7.0.4",
+ "node_modules/dot-prop": {
+ "version": "6.0.1",
"dev": true,
"license": "MIT",
- "bin": {
- "husky": "lib/bin.js"
+ "dependencies": {
+ "is-obj": "^2.0.0"
},
"engines": {
- "node": ">=12"
+ "node": ">=10"
},
"funding": {
- "url": "https://github.com/sponsors/typicode"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/iconv-lite": {
- "version": "0.4.24",
+ "node_modules/dotenv": {
+ "version": "14.3.2",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "safer-buffer": ">= 2.1.2 < 3"
- },
+ "license": "BSD-2-Clause",
"engines": {
- "node": ">=0.10.0"
+ "node": ">=12"
}
},
- "node_modules/icss-utils": {
- "version": "4.1.1",
+ "node_modules/dotenv-expand": {
+ "version": "10.0.0",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "postcss": "^7.0.14"
- },
+ "license": "BSD-2-Clause",
"engines": {
- "node": ">= 6"
+ "node": ">=12"
}
},
- "node_modules/ieee754": {
- "version": "1.2.1",
+ "node_modules/duplexer": {
+ "version": "0.1.2",
"dev": true,
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "BSD-3-Clause"
+ "license": "MIT"
},
- "node_modules/iferr": {
+ "node_modules/duplexer3": {
"version": "0.1.5",
"dev": true,
- "license": "MIT"
+ "license": "BSD-3-Clause"
},
- "node_modules/ignore": {
- "version": "5.2.0",
+ "node_modules/duplexify": {
+ "version": "3.7.1",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">= 4"
+ "dependencies": {
+ "end-of-stream": "^1.0.0",
+ "inherits": "^2.0.1",
+ "readable-stream": "^2.0.0",
+ "stream-shift": "^1.0.0"
}
},
- "node_modules/ignore-walk": {
- "version": "3.0.4",
+ "node_modules/duplexify/node_modules/isarray": {
+ "version": "1.0.0",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "minimatch": "^3.0.4"
- }
+ "license": "MIT"
},
- "node_modules/import-fresh": {
- "version": "3.3.0",
+ "node_modules/duplexify/node_modules/readable-stream": {
+ "version": "2.3.8",
"dev": true,
"license": "MIT",
"dependencies": {
- "parent-module": "^1.0.0",
- "resolve-from": "^4.0.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
}
},
- "node_modules/import-fresh/node_modules/resolve-from": {
- "version": "4.0.0",
+ "node_modules/duplexify/node_modules/safe-buffer": {
+ "version": "5.1.2",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/duplexify/node_modules/string_decoder": {
+ "version": "1.1.1",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=4"
+ "dependencies": {
+ "safe-buffer": "~5.1.0"
}
},
- "node_modules/import-from": {
- "version": "3.0.0",
+ "node_modules/eastasianwidth": {
+ "version": "0.2.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/ecc-jsbn": {
+ "version": "0.1.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "resolve-from": "^5.0.0"
- },
- "engines": {
- "node": ">=8"
+ "jsbn": "~0.1.0",
+ "safer-buffer": "^2.1.0"
}
},
- "node_modules/import-lazy": {
- "version": "2.1.0",
+ "node_modules/ecc-jsbn/node_modules/jsbn": {
+ "version": "0.1.1",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4"
+ "license": "MIT"
+ },
+ "node_modules/ecdsa-sig-formatter": {
+ "version": "1.0.11",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "safe-buffer": "^5.0.1"
}
},
- "node_modules/import-local": {
- "version": "3.1.0",
+ "node_modules/ee-first": {
+ "version": "1.1.1",
"dev": true,
- "license": "MIT",
+ "license": "MIT"
+ },
+ "node_modules/ejs": {
+ "version": "3.1.9",
+ "dev": true,
+ "license": "Apache-2.0",
"dependencies": {
- "pkg-dir": "^4.2.0",
- "resolve-cwd": "^3.0.0"
+ "jake": "^10.8.5"
},
"bin": {
- "import-local-fixture": "fixtures/cli.js"
+ "ejs": "bin/cli.js"
},
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=0.10.0"
}
},
- "node_modules/import-local/node_modules/find-up": {
- "version": "4.1.0",
+ "node_modules/electron-to-chromium": {
+ "version": "1.4.730",
+ "license": "ISC"
+ },
+ "node_modules/elliptic": {
+ "version": "6.5.5",
"dev": true,
"license": "MIT",
"dependencies": {
- "locate-path": "^5.0.0",
- "path-exists": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
+ "bn.js": "^4.11.9",
+ "brorand": "^1.1.0",
+ "hash.js": "^1.0.0",
+ "hmac-drbg": "^1.0.1",
+ "inherits": "^2.0.4",
+ "minimalistic-assert": "^1.0.1",
+ "minimalistic-crypto-utils": "^1.0.1"
}
},
- "node_modules/import-local/node_modules/locate-path": {
- "version": "5.0.0",
+ "node_modules/elliptic/node_modules/bn.js": {
+ "version": "4.12.0",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "p-locate": "^4.1.0"
- },
- "engines": {
- "node": ">=8"
- }
+ "license": "MIT"
},
- "node_modules/import-local/node_modules/p-limit": {
- "version": "2.3.0",
+ "node_modules/emittery": {
+ "version": "0.13.1",
"dev": true,
"license": "MIT",
- "dependencies": {
- "p-try": "^2.0.0"
- },
"engines": {
- "node": ">=6"
+ "node": ">=12"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/sindresorhus/emittery?sponsor=1"
}
},
- "node_modules/import-local/node_modules/p-locate": {
- "version": "4.1.0",
+ "node_modules/emoji-regex": {
+ "version": "9.2.2",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/emojis-list": {
+ "version": "3.0.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "p-limit": "^2.2.0"
- },
"engines": {
- "node": ">=8"
+ "node": ">= 4"
}
},
- "node_modules/import-local/node_modules/path-exists": {
- "version": "4.0.0",
+ "node_modules/enabled": {
+ "version": "2.0.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/encodeurl": {
+ "version": "1.0.2",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=8"
+ "node": ">= 0.8"
}
},
- "node_modules/import-local/node_modules/pkg-dir": {
- "version": "4.2.0",
+ "node_modules/encoding": {
+ "version": "0.1.13",
"dev": true,
"license": "MIT",
+ "optional": true,
"dependencies": {
- "find-up": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
+ "iconv-lite": "^0.6.2"
}
},
- "node_modules/imurmurhash": {
- "version": "0.1.4",
+ "node_modules/encoding/node_modules/iconv-lite": {
+ "version": "0.6.3",
"dev": true,
"license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
+ },
"engines": {
- "node": ">=0.8.19"
+ "node": ">=0.10.0"
}
},
- "node_modules/indent-string": {
- "version": "4.0.0",
+ "node_modules/end-of-stream": {
+ "version": "1.4.4",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "dependencies": {
+ "once": "^1.4.0"
}
},
- "node_modules/infer-owner": {
- "version": "1.0.4",
+ "node_modules/endent": {
+ "version": "2.1.0",
"dev": true,
- "license": "ISC"
- },
- "node_modules/inflight": {
- "version": "1.0.6",
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "once": "^1.3.0",
- "wrappy": "1"
+ "dedent": "^0.7.0",
+ "fast-json-parse": "^1.0.3",
+ "objectorarray": "^1.0.5"
}
},
- "node_modules/inherits": {
- "version": "2.0.4",
- "license": "ISC"
- },
- "node_modules/ini": {
- "version": "1.3.8",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/init-package-json": {
- "version": "2.0.5",
+ "node_modules/enhanced-resolve": {
+ "version": "5.16.0",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "npm-package-arg": "^8.1.5",
- "promzard": "^0.3.0",
- "read": "~1.0.1",
- "read-package-json": "^4.1.1",
- "semver": "^7.3.5",
- "validate-npm-package-license": "^3.0.4",
- "validate-npm-package-name": "^3.0.0"
+ "graceful-fs": "^4.2.4",
+ "tapable": "^2.2.0"
},
"engines": {
- "node": ">=10"
+ "node": ">=10.13.0"
}
},
- "node_modules/init-package-json/node_modules/read-package-json": {
- "version": "4.1.2",
+ "node_modules/enquirer": {
+ "version": "2.3.6",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "glob": "^7.1.1",
- "json-parse-even-better-errors": "^2.3.0",
- "normalize-package-data": "^3.0.0",
- "npm-normalize-package-bin": "^1.0.0"
+ "ansi-colors": "^4.1.1"
},
"engines": {
- "node": ">=10"
+ "node": ">=8.6"
}
},
- "node_modules/init-package-json/node_modules/semver": {
- "version": "7.3.7",
+ "node_modules/entities": {
+ "version": "4.5.0",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
+ "license": "BSD-2-Clause",
"engines": {
- "node": ">=10"
- }
- },
- "node_modules/inline-style-parser": {
- "version": "0.1.1",
- "license": "MIT"
- },
- "node_modules/input-format": {
- "version": "0.3.8",
- "license": "MIT",
- "dependencies": {
- "prop-types": "^15.8.1"
+ "node": ">=0.12"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/entities?sponsor=1"
}
},
- "node_modules/inquirer": {
- "version": "7.3.3",
+ "node_modules/env-paths": {
+ "version": "2.2.1",
"dev": true,
"license": "MIT",
- "dependencies": {
- "ansi-escapes": "^4.2.1",
- "chalk": "^4.1.0",
- "cli-cursor": "^3.1.0",
- "cli-width": "^3.0.0",
- "external-editor": "^3.0.3",
- "figures": "^3.0.0",
- "lodash": "^4.17.19",
- "mute-stream": "0.0.8",
- "run-async": "^2.4.0",
- "rxjs": "^6.6.0",
- "string-width": "^4.1.0",
- "strip-ansi": "^6.0.0",
- "through": "^2.3.6"
- },
"engines": {
- "node": ">=8.0.0"
+ "node": ">=6"
}
},
- "node_modules/inquirer-autocomplete-prompt": {
- "version": "1.4.0",
+ "node_modules/envinfo": {
+ "version": "7.12.0",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "ansi-escapes": "^4.3.1",
- "chalk": "^4.0.0",
- "figures": "^3.2.0",
- "run-async": "^2.4.0",
- "rxjs": "^6.6.2"
+ "license": "MIT",
+ "bin": {
+ "envinfo": "dist/cli.js"
},
"engines": {
- "node": ">=10"
- },
- "peerDependencies": {
- "inquirer": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
+ "node": ">=4"
}
},
- "node_modules/inquirer-autocomplete-prompt/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/enzyme": {
+ "version": "3.11.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
+ "array.prototype.flat": "^1.2.3",
+ "cheerio": "^1.0.0-rc.3",
+ "enzyme-shallow-equal": "^1.0.1",
+ "function.prototype.name": "^1.1.2",
+ "has": "^1.0.3",
+ "html-element-map": "^1.2.0",
+ "is-boolean-object": "^1.0.1",
+ "is-callable": "^1.1.5",
+ "is-number-object": "^1.0.4",
+ "is-regex": "^1.0.5",
+ "is-string": "^1.0.5",
+ "is-subset": "^0.1.1",
+ "lodash.escape": "^4.0.1",
+ "lodash.isequal": "^4.5.0",
+ "object-inspect": "^1.7.0",
+ "object-is": "^1.0.2",
+ "object.assign": "^4.1.0",
+ "object.entries": "^1.1.1",
+ "object.values": "^1.1.1",
+ "raf": "^3.4.1",
+ "rst-selector-parser": "^2.2.3",
+ "string.prototype.trim": "^1.2.1"
},
"funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/inquirer-autocomplete-prompt/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/enzyme-shallow-equal": {
+ "version": "1.0.7",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
+ "hasown": "^2.0.0",
+ "object-is": "^1.1.5"
},
"funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/inquirer-autocomplete-prompt/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/err-code": {
+ "version": "2.0.3",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
+ "license": "MIT"
},
- "node_modules/inquirer-autocomplete-prompt/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/error-ex": {
+ "version": "1.3.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
+ "is-arrayish": "^0.2.1"
}
},
- "node_modules/inquirer-fuzzy-path": {
- "version": "2.3.0",
+ "node_modules/error-stack-parser": {
+ "version": "2.1.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-styles": "^3.2.1",
- "fuzzy": "^0.1.3",
- "inquirer": "^6.0.0",
- "inquirer-autocomplete-prompt": "^1.0.2",
- "strip-ansi": "^4.0.0"
- },
- "engines": {
- "node": ">=8.0"
+ "stackframe": "^1.3.4"
}
},
- "node_modules/inquirer-fuzzy-path/node_modules/ansi-escapes": {
- "version": "3.2.0",
+ "node_modules/es-abstract": {
+ "version": "1.23.3",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "array-buffer-byte-length": "^1.0.1",
+ "arraybuffer.prototype.slice": "^1.0.3",
+ "available-typed-arrays": "^1.0.7",
+ "call-bind": "^1.0.7",
+ "data-view-buffer": "^1.0.1",
+ "data-view-byte-length": "^1.0.1",
+ "data-view-byte-offset": "^1.0.0",
+ "es-define-property": "^1.0.0",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0",
+ "es-set-tostringtag": "^2.0.3",
+ "es-to-primitive": "^1.2.1",
+ "function.prototype.name": "^1.1.6",
+ "get-intrinsic": "^1.2.4",
+ "get-symbol-description": "^1.0.2",
+ "globalthis": "^1.0.3",
+ "gopd": "^1.0.1",
+ "has-property-descriptors": "^1.0.2",
+ "has-proto": "^1.0.3",
+ "has-symbols": "^1.0.3",
+ "hasown": "^2.0.2",
+ "internal-slot": "^1.0.7",
+ "is-array-buffer": "^3.0.4",
+ "is-callable": "^1.2.7",
+ "is-data-view": "^1.0.1",
+ "is-negative-zero": "^2.0.3",
+ "is-regex": "^1.1.4",
+ "is-shared-array-buffer": "^1.0.3",
+ "is-string": "^1.0.7",
+ "is-typed-array": "^1.1.13",
+ "is-weakref": "^1.0.2",
+ "object-inspect": "^1.13.1",
+ "object-keys": "^1.1.1",
+ "object.assign": "^4.1.5",
+ "regexp.prototype.flags": "^1.5.2",
+ "safe-array-concat": "^1.1.2",
+ "safe-regex-test": "^1.0.3",
+ "string.prototype.trim": "^1.2.9",
+ "string.prototype.trimend": "^1.0.8",
+ "string.prototype.trimstart": "^1.0.8",
+ "typed-array-buffer": "^1.0.2",
+ "typed-array-byte-length": "^1.0.1",
+ "typed-array-byte-offset": "^1.0.2",
+ "typed-array-length": "^1.0.6",
+ "unbox-primitive": "^1.0.2",
+ "which-typed-array": "^1.1.15"
+ },
"engines": {
- "node": ">=4"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/inquirer-fuzzy-path/node_modules/ansi-regex": {
- "version": "3.0.1",
+ "node_modules/es-array-method-boxes-properly": {
+ "version": "1.0.0",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
+ "license": "MIT"
},
- "node_modules/inquirer-fuzzy-path/node_modules/cli-cursor": {
- "version": "2.1.0",
+ "node_modules/es-define-property": {
+ "version": "1.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "restore-cursor": "^2.0.0"
+ "get-intrinsic": "^1.2.4"
},
"engines": {
- "node": ">=4"
+ "node": ">= 0.4"
}
},
- "node_modules/inquirer-fuzzy-path/node_modules/cli-width": {
- "version": "2.2.1",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/inquirer-fuzzy-path/node_modules/escape-string-regexp": {
- "version": "1.0.5",
+ "node_modules/es-errors": {
+ "version": "1.3.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=0.8.0"
+ "node": ">= 0.4"
}
},
- "node_modules/inquirer-fuzzy-path/node_modules/figures": {
- "version": "2.0.0",
+ "node_modules/es-get-iterator": {
+ "version": "1.1.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "escape-string-regexp": "^1.0.5"
+ "call-bind": "^1.0.2",
+ "get-intrinsic": "^1.1.3",
+ "has-symbols": "^1.0.3",
+ "is-arguments": "^1.1.1",
+ "is-map": "^2.0.2",
+ "is-set": "^2.0.2",
+ "is-string": "^1.0.7",
+ "isarray": "^2.0.5",
+ "stop-iteration-iterator": "^1.0.0"
},
- "engines": {
- "node": ">=4"
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/inquirer-fuzzy-path/node_modules/inquirer": {
- "version": "6.5.2",
+ "node_modules/es-iterator-helpers": {
+ "version": "1.0.18",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-escapes": "^3.2.0",
- "chalk": "^2.4.2",
- "cli-cursor": "^2.1.0",
- "cli-width": "^2.0.0",
- "external-editor": "^3.0.3",
- "figures": "^2.0.0",
- "lodash": "^4.17.12",
- "mute-stream": "0.0.7",
- "run-async": "^2.2.0",
- "rxjs": "^6.4.0",
- "string-width": "^2.1.0",
- "strip-ansi": "^5.1.0",
- "through": "^2.3.6"
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.0",
+ "es-errors": "^1.3.0",
+ "es-set-tostringtag": "^2.0.3",
+ "function-bind": "^1.1.2",
+ "get-intrinsic": "^1.2.4",
+ "globalthis": "^1.0.3",
+ "has-property-descriptors": "^1.0.2",
+ "has-proto": "^1.0.3",
+ "has-symbols": "^1.0.3",
+ "internal-slot": "^1.0.7",
+ "iterator.prototype": "^1.1.2",
+ "safe-array-concat": "^1.1.2"
},
"engines": {
- "node": ">=6.0.0"
+ "node": ">= 0.4"
}
},
- "node_modules/inquirer-fuzzy-path/node_modules/inquirer/node_modules/ansi-regex": {
- "version": "4.1.1",
+ "node_modules/es-module-lexer": {
+ "version": "1.5.0",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
+ "license": "MIT"
},
- "node_modules/inquirer-fuzzy-path/node_modules/inquirer/node_modules/strip-ansi": {
- "version": "5.2.0",
+ "node_modules/es-object-atoms": {
+ "version": "1.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-regex": "^4.1.0"
+ "es-errors": "^1.3.0"
},
"engines": {
- "node": ">=6"
+ "node": ">= 0.4"
}
},
- "node_modules/inquirer-fuzzy-path/node_modules/is-fullwidth-code-point": {
- "version": "2.0.0",
+ "node_modules/es-set-tostringtag": {
+ "version": "2.0.3",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "get-intrinsic": "^1.2.4",
+ "has-tostringtag": "^1.0.2",
+ "hasown": "^2.0.1"
+ },
"engines": {
- "node": ">=4"
+ "node": ">= 0.4"
}
},
- "node_modules/inquirer-fuzzy-path/node_modules/mimic-fn": {
- "version": "1.2.0",
+ "node_modules/es-shim-unscopables": {
+ "version": "1.0.2",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=4"
+ "dependencies": {
+ "hasown": "^2.0.0"
}
},
- "node_modules/inquirer-fuzzy-path/node_modules/mute-stream": {
- "version": "0.0.7",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/inquirer-fuzzy-path/node_modules/onetime": {
- "version": "2.0.1",
+ "node_modules/es-to-primitive": {
+ "version": "1.2.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "mimic-fn": "^1.0.0"
+ "is-callable": "^1.1.4",
+ "is-date-object": "^1.0.1",
+ "is-symbol": "^1.0.2"
},
"engines": {
- "node": ">=4"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/inquirer-fuzzy-path/node_modules/restore-cursor": {
- "version": "2.0.0",
- "dev": true,
- "license": "MIT",
+ "node_modules/es5-ext": {
+ "version": "0.10.64",
+ "hasInstallScript": true,
+ "license": "ISC",
"dependencies": {
- "onetime": "^2.0.0",
- "signal-exit": "^3.0.2"
+ "es6-iterator": "^2.0.3",
+ "es6-symbol": "^3.1.3",
+ "esniff": "^2.0.1",
+ "next-tick": "^1.1.0"
},
"engines": {
- "node": ">=4"
+ "node": ">=0.10"
}
},
- "node_modules/inquirer-fuzzy-path/node_modules/string-width": {
- "version": "2.1.1",
+ "node_modules/es6-error": {
+ "version": "4.1.1",
"dev": true,
+ "license": "MIT"
+ },
+ "node_modules/es6-iterator": {
+ "version": "2.0.3",
"license": "MIT",
"dependencies": {
- "is-fullwidth-code-point": "^2.0.0",
- "strip-ansi": "^4.0.0"
+ "d": "1",
+ "es5-ext": "^0.10.35",
+ "es6-symbol": "^3.1.1"
+ }
+ },
+ "node_modules/es6-symbol": {
+ "version": "3.1.4",
+ "license": "ISC",
+ "dependencies": {
+ "d": "^1.0.2",
+ "ext": "^1.7.0"
},
"engines": {
- "node": ">=4"
+ "node": ">=0.12"
}
},
- "node_modules/inquirer-fuzzy-path/node_modules/strip-ansi": {
- "version": "4.0.0",
+ "node_modules/esbuild": {
+ "version": "0.14.25",
"dev": true,
+ "hasInstallScript": true,
"license": "MIT",
- "dependencies": {
- "ansi-regex": "^3.0.0"
+ "bin": {
+ "esbuild": "bin/esbuild"
},
"engines": {
- "node": ">=4"
+ "node": ">=12"
+ },
+ "optionalDependencies": {
+ "esbuild-android-64": "0.14.25",
+ "esbuild-android-arm64": "0.14.25",
+ "esbuild-darwin-64": "0.14.25",
+ "esbuild-darwin-arm64": "0.14.25",
+ "esbuild-freebsd-64": "0.14.25",
+ "esbuild-freebsd-arm64": "0.14.25",
+ "esbuild-linux-32": "0.14.25",
+ "esbuild-linux-64": "0.14.25",
+ "esbuild-linux-arm": "0.14.25",
+ "esbuild-linux-arm64": "0.14.25",
+ "esbuild-linux-mips64le": "0.14.25",
+ "esbuild-linux-ppc64le": "0.14.25",
+ "esbuild-linux-riscv64": "0.14.25",
+ "esbuild-linux-s390x": "0.14.25",
+ "esbuild-netbsd-64": "0.14.25",
+ "esbuild-openbsd-64": "0.14.25",
+ "esbuild-sunos-64": "0.14.25",
+ "esbuild-windows-32": "0.14.25",
+ "esbuild-windows-64": "0.14.25",
+ "esbuild-windows-arm64": "0.14.25"
}
},
- "node_modules/inquirer-search-checkbox": {
- "version": "1.0.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "chalk": "^2.3.0",
- "figures": "^2.0.0",
- "fuzzy": "^0.1.3",
- "inquirer": "^3.3.0"
+ "node_modules/esbuild-android-64": {
+ "version": "0.14.25",
+ "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.14.25.tgz",
+ "integrity": "sha512-L5vCUk7TzFbBnoESNoXjU3x9+/+7TDIE/1mTfy/erAfvZAqC+S3sp/Qa9wkypFMcFvN9FzvESkTlpeQDolREtQ==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=12"
}
},
- "node_modules/inquirer-search-checkbox/node_modules/ansi-escapes": {
- "version": "3.2.0",
- "dev": true,
- "license": "MIT",
+ "node_modules/esbuild-android-arm64": {
+ "version": "0.15.5",
+ "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.15.5.tgz",
+ "integrity": "sha512-YyEkaQl08ze3cBzI/4Cm1S+rVh8HMOpCdq8B78JLbNFHhzi4NixVN93xDrHZLztlocEYqi45rHHCgA8kZFidFg==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "android"
+ ],
"engines": {
- "node": ">=4"
+ "node": ">=12"
}
},
- "node_modules/inquirer-search-checkbox/node_modules/ansi-regex": {
- "version": "3.0.1",
- "dev": true,
+ "node_modules/esbuild-darwin-64": {
+ "version": "0.14.25",
+ "cpu": [
+ "x64"
+ ],
"license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
"engines": {
- "node": ">=4"
+ "node": ">=12"
}
},
- "node_modules/inquirer-search-checkbox/node_modules/chardet": {
- "version": "0.4.2",
- "dev": true,
- "license": "MIT"
+ "node_modules/esbuild-darwin-arm64": {
+ "version": "0.14.25",
+ "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.25.tgz",
+ "integrity": "sha512-oTcDgdm0MDVEmw2DWu8BV68pYuImpFgvWREPErBZmNA4MYKGuBRaCiJqq6jZmBR1x+3y1DWCjez+5uLtuAm6mw==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
},
- "node_modules/inquirer-search-checkbox/node_modules/cli-cursor": {
- "version": "2.1.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "restore-cursor": "^2.0.0"
- },
+ "node_modules/esbuild-freebsd-64": {
+ "version": "0.14.25",
+ "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.25.tgz",
+ "integrity": "sha512-ueAqbnMZ8arnuLH8tHwTCQYeptnHOUV7vA6px6j4zjjQwDx7TdP7kACPf3TLZLdJQ3CAD1XCvQ2sPhX+8tacvQ==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
"engines": {
- "node": ">=4"
+ "node": ">=12"
}
},
- "node_modules/inquirer-search-checkbox/node_modules/cli-width": {
- "version": "2.2.1",
- "dev": true,
- "license": "ISC"
+ "node_modules/esbuild-freebsd-arm64": {
+ "version": "0.14.25",
+ "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.25.tgz",
+ "integrity": "sha512-+ZVWud2HKh+Ob6k/qiJWjBtUg4KmJGGmbvEXXW1SNKS7hW7HU+Zq2ZCcE1akFxOPkVB+EhOty/sSek30tkCYug==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
},
- "node_modules/inquirer-search-checkbox/node_modules/escape-string-regexp": {
- "version": "1.0.5",
- "dev": true,
- "license": "MIT",
+ "node_modules/esbuild-linux-32": {
+ "version": "0.14.25",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.25.tgz",
+ "integrity": "sha512-3OP/lwV3kCzEz45tobH9nj+uE4ubhGsfx+tn0L26WAGtUbmmcRpqy7XRG/qK7h1mClZ+eguIANcQntYMdYklfw==",
+ "cpu": [
+ "ia32"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
"engines": {
- "node": ">=0.8.0"
+ "node": ">=12"
}
},
- "node_modules/inquirer-search-checkbox/node_modules/external-editor": {
- "version": "2.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "chardet": "^0.4.0",
- "iconv-lite": "^0.4.17",
- "tmp": "^0.0.33"
- },
+ "node_modules/esbuild-linux-64": {
+ "version": "0.14.25",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.25.tgz",
+ "integrity": "sha512-+aKHdHZmX9qwVlQmu5xYXh7GsBFf4TWrePgeJTalhXHOG7NNuUwoHmketGiZEoNsWyyqwH9rE5BC+iwcLY30Ug==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
"engines": {
- "node": ">=0.12"
+ "node": ">=12"
}
},
- "node_modules/inquirer-search-checkbox/node_modules/figures": {
- "version": "2.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "escape-string-regexp": "^1.0.5"
- },
+ "node_modules/esbuild-linux-arm": {
+ "version": "0.14.25",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.25.tgz",
+ "integrity": "sha512-aTLcE2VBoLydL943REcAcgnDi3bHtmULSXWLbjtBdtykRatJVSxKMjK9YlBXUZC4/YcNQfH7AxwVeQr9fNxPhw==",
+ "cpu": [
+ "arm"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
"engines": {
- "node": ">=4"
+ "node": ">=12"
}
},
- "node_modules/inquirer-search-checkbox/node_modules/inquirer": {
- "version": "3.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-escapes": "^3.0.0",
- "chalk": "^2.0.0",
- "cli-cursor": "^2.1.0",
- "cli-width": "^2.0.0",
- "external-editor": "^2.0.4",
- "figures": "^2.0.0",
- "lodash": "^4.3.0",
- "mute-stream": "0.0.7",
- "run-async": "^2.2.0",
- "rx-lite": "^4.0.8",
- "rx-lite-aggregates": "^4.0.8",
- "string-width": "^2.1.0",
- "strip-ansi": "^4.0.0",
- "through": "^2.3.6"
+ "node_modules/esbuild-linux-arm64": {
+ "version": "0.14.25",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.25.tgz",
+ "integrity": "sha512-UxfenPx/wSZx55gScCImPtXekvZQLI2GW3qe5dtlmU7luiqhp5GWPzGeQEbD3yN3xg/pHc671m5bma5Ns7lBHw==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
}
},
- "node_modules/inquirer-search-checkbox/node_modules/is-fullwidth-code-point": {
- "version": "2.0.0",
- "dev": true,
- "license": "MIT",
+ "node_modules/esbuild-linux-mips64le": {
+ "version": "0.14.25",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.25.tgz",
+ "integrity": "sha512-wLWYyqVfYx9Ur6eU5RT92yJVsaBGi5RdkoWqRHOqcJ38Kn60QMlcghsKeWfe9jcYut8LangYZ98xO1LxIoSXrQ==",
+ "cpu": [
+ "mips64el"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
"engines": {
- "node": ">=4"
+ "node": ">=12"
}
},
- "node_modules/inquirer-search-checkbox/node_modules/mimic-fn": {
- "version": "1.2.0",
- "dev": true,
- "license": "MIT",
+ "node_modules/esbuild-linux-ppc64le": {
+ "version": "0.14.25",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.25.tgz",
+ "integrity": "sha512-0dR6Csl6Zas3g4p9ULckEl8Mo8IInJh33VCJ3eaV1hj9+MHGdmDOakYMN8MZP9/5nl+NU/0ygpd14cWgy8uqRw==",
+ "cpu": [
+ "ppc64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
"engines": {
- "node": ">=4"
+ "node": ">=12"
}
},
- "node_modules/inquirer-search-checkbox/node_modules/mute-stream": {
- "version": "0.0.7",
+ "node_modules/esbuild-linux-riscv64": {
+ "version": "0.14.25",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.25.tgz",
+ "integrity": "sha512-J4d20HDmTrgvhR0bdkDhvvJGaikH3LzXQnNaseo8rcw9Yqby9A90gKUmWpfwqLVNRILvNnAmKLfBjCKU9ajg8w==",
+ "cpu": [
+ "riscv64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild-linux-s390x": {
+ "version": "0.14.25",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.25.tgz",
+ "integrity": "sha512-YI2d5V6nTE73ZnhEKQD7MtsPs1EtUZJ3obS21oxQxGbbRw1G+PtJKjNyur+3t6nzHP9oTg6GHQ3S3hOLLmbDIQ==",
+ "cpu": [
+ "s390x"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild-netbsd-64": {
+ "version": "0.14.25",
+ "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.25.tgz",
+ "integrity": "sha512-TKIVgNWLUOkr+Exrye70XTEE1lJjdQXdM4tAXRzfHE9iBA7LXWcNtVIuSnphTqpanPzTDFarF0yqq4kpbC6miA==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "netbsd"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild-openbsd-64": {
+ "version": "0.14.25",
+ "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.25.tgz",
+ "integrity": "sha512-QgFJ37A15D7NIXBTYEqz29+uw3nNBOIyog+3kFidANn6kjw0GHZ0lEYQn+cwjyzu94WobR+fes7cTl/ZYlHb1A==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "openbsd"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild-plugin-alias": {
+ "version": "0.2.1",
"dev": true,
- "license": "ISC"
+ "license": "MIT"
},
- "node_modules/inquirer-search-checkbox/node_modules/onetime": {
- "version": "2.0.1",
+ "node_modules/esbuild-register": {
+ "version": "3.5.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "mimic-fn": "^1.0.0"
+ "debug": "^4.3.4"
},
+ "peerDependencies": {
+ "esbuild": ">=0.12 <1"
+ }
+ },
+ "node_modules/esbuild-sunos-64": {
+ "version": "0.14.25",
+ "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.25.tgz",
+ "integrity": "sha512-rmWfjUItYIVlqr5EnTH1+GCxXiBOC42WBZ3w++qh7n2cS9Xo0lO5pGSG2N+huOU2fX5L+6YUuJ78/vOYvefeFw==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "sunos"
+ ],
"engines": {
- "node": ">=4"
+ "node": ">=12"
}
},
- "node_modules/inquirer-search-checkbox/node_modules/restore-cursor": {
- "version": "2.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "onetime": "^2.0.0",
- "signal-exit": "^3.0.2"
- },
+ "node_modules/esbuild-windows-32": {
+ "version": "0.14.25",
+ "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.25.tgz",
+ "integrity": "sha512-HGAxVUofl3iUIz9W10Y9XKtD0bNsK9fBXv1D55N/ljNvkrAYcGB8YCm0v7DjlwtyS6ws3dkdQyXadbxkbzaKOA==",
+ "cpu": [
+ "ia32"
+ ],
+ "optional": true,
+ "os": [
+ "win32"
+ ],
"engines": {
- "node": ">=4"
+ "node": ">=12"
}
},
- "node_modules/inquirer-search-checkbox/node_modules/string-width": {
- "version": "2.1.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-fullwidth-code-point": "^2.0.0",
- "strip-ansi": "^4.0.0"
- },
+ "node_modules/esbuild-windows-64": {
+ "version": "0.14.25",
+ "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.25.tgz",
+ "integrity": "sha512-TirEohRkfWU9hXLgoDxzhMQD1g8I2mOqvdQF2RS9E/wbkORTAqJHyh7wqGRCQAwNzdNXdg3JAyhQ9/177AadWA==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "win32"
+ ],
"engines": {
- "node": ">=4"
+ "node": ">=12"
}
},
- "node_modules/inquirer-search-checkbox/node_modules/strip-ansi": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-regex": "^3.0.0"
- },
+ "node_modules/esbuild-windows-arm64": {
+ "version": "0.14.25",
+ "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.25.tgz",
+ "integrity": "sha512-4ype9ERiI45rSh+R8qUoBtaj6kJvUOI7oVLhKqPEpcF4Pa5PpT3hm/mXAyotJHREkHpM87PAJcA442mLnbtlNA==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "win32"
+ ],
"engines": {
- "node": ">=4"
- }
- },
- "node_modules/inquirer-search-list": {
- "version": "1.2.6",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "chalk": "^2.3.0",
- "figures": "^2.0.0",
- "fuzzy": "^0.1.3",
- "inquirer": "^3.3.0"
+ "node": ">=12"
}
},
- "node_modules/inquirer-search-list/node_modules/ansi-escapes": {
- "version": "3.2.0",
+ "node_modules/esbuild/node_modules/esbuild-android-arm64": {
+ "version": "0.14.25",
+ "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.25.tgz",
+ "integrity": "sha512-4jv5xPjM/qNm27T5j3ZEck0PvjgQtoMHnz4FzwF5zNP56PvY2CT0WStcAIl6jNlsuDdN63rk2HRBIsO6xFbcFw==",
+ "cpu": [
+ "arm64"
+ ],
"dev": true,
- "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
"engines": {
- "node": ">=4"
+ "node": ">=12"
}
},
- "node_modules/inquirer-search-list/node_modules/ansi-regex": {
- "version": "3.0.1",
- "dev": true,
+ "node_modules/escalade": {
+ "version": "3.1.2",
"license": "MIT",
"engines": {
- "node": ">=4"
+ "node": ">=6"
}
},
- "node_modules/inquirer-search-list/node_modules/chardet": {
- "version": "0.4.2",
- "dev": true,
+ "node_modules/escape-carriage": {
+ "version": "1.3.1",
"license": "MIT"
},
- "node_modules/inquirer-search-list/node_modules/cli-cursor": {
- "version": "2.1.0",
+ "node_modules/escape-goat": {
+ "version": "2.1.1",
"dev": true,
"license": "MIT",
- "dependencies": {
- "restore-cursor": "^2.0.0"
- },
"engines": {
- "node": ">=4"
+ "node": ">=8"
}
},
- "node_modules/inquirer-search-list/node_modules/cli-width": {
- "version": "2.2.1",
+ "node_modules/escape-html": {
+ "version": "1.0.3",
"dev": true,
- "license": "ISC"
+ "license": "MIT"
},
- "node_modules/inquirer-search-list/node_modules/escape-string-regexp": {
- "version": "1.0.5",
+ "node_modules/escape-string-regexp": {
+ "version": "4.0.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=0.8.0"
- }
- },
- "node_modules/inquirer-search-list/node_modules/external-editor": {
- "version": "2.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "chardet": "^0.4.0",
- "iconv-lite": "^0.4.17",
- "tmp": "^0.0.33"
+ "node": ">=10"
},
- "engines": {
- "node": ">=0.12"
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/inquirer-search-list/node_modules/figures": {
- "version": "2.0.0",
+ "node_modules/escodegen": {
+ "version": "2.1.0",
"dev": true,
- "license": "MIT",
+ "license": "BSD-2-Clause",
"dependencies": {
- "escape-string-regexp": "^1.0.5"
+ "esprima": "^4.0.1",
+ "estraverse": "^5.2.0",
+ "esutils": "^2.0.2"
+ },
+ "bin": {
+ "escodegen": "bin/escodegen.js",
+ "esgenerate": "bin/esgenerate.js"
},
"engines": {
- "node": ">=4"
- }
- },
- "node_modules/inquirer-search-list/node_modules/inquirer": {
- "version": "3.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-escapes": "^3.0.0",
- "chalk": "^2.0.0",
- "cli-cursor": "^2.1.0",
- "cli-width": "^2.0.0",
- "external-editor": "^2.0.4",
- "figures": "^2.0.0",
- "lodash": "^4.3.0",
- "mute-stream": "0.0.7",
- "run-async": "^2.2.0",
- "rx-lite": "^4.0.8",
- "rx-lite-aggregates": "^4.0.8",
- "string-width": "^2.1.0",
- "strip-ansi": "^4.0.0",
- "through": "^2.3.6"
+ "node": ">=6.0"
+ },
+ "optionalDependencies": {
+ "source-map": "~0.6.1"
}
},
- "node_modules/inquirer-search-list/node_modules/is-fullwidth-code-point": {
- "version": "2.0.0",
+ "node_modules/escodegen/node_modules/source-map": {
+ "version": "0.6.1",
"dev": true,
- "license": "MIT",
+ "license": "BSD-3-Clause",
+ "optional": true,
"engines": {
- "node": ">=4"
+ "node": ">=0.10.0"
}
},
- "node_modules/inquirer-search-list/node_modules/mimic-fn": {
- "version": "1.2.0",
+ "node_modules/eslint": {
+ "version": "8.57.0",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "@eslint-community/eslint-utils": "^4.2.0",
+ "@eslint-community/regexpp": "^4.6.1",
+ "@eslint/eslintrc": "^2.1.4",
+ "@eslint/js": "8.57.0",
+ "@humanwhocodes/config-array": "^0.11.14",
+ "@humanwhocodes/module-importer": "^1.0.1",
+ "@nodelib/fs.walk": "^1.2.8",
+ "@ungap/structured-clone": "^1.2.0",
+ "ajv": "^6.12.4",
+ "chalk": "^4.0.0",
+ "cross-spawn": "^7.0.2",
+ "debug": "^4.3.2",
+ "doctrine": "^3.0.0",
+ "escape-string-regexp": "^4.0.0",
+ "eslint-scope": "^7.2.2",
+ "eslint-visitor-keys": "^3.4.3",
+ "espree": "^9.6.1",
+ "esquery": "^1.4.2",
+ "esutils": "^2.0.2",
+ "fast-deep-equal": "^3.1.3",
+ "file-entry-cache": "^6.0.1",
+ "find-up": "^5.0.0",
+ "glob-parent": "^6.0.2",
+ "globals": "^13.19.0",
+ "graphemer": "^1.4.0",
+ "ignore": "^5.2.0",
+ "imurmurhash": "^0.1.4",
+ "is-glob": "^4.0.0",
+ "is-path-inside": "^3.0.3",
+ "js-yaml": "^4.1.0",
+ "json-stable-stringify-without-jsonify": "^1.0.1",
+ "levn": "^0.4.1",
+ "lodash.merge": "^4.6.2",
+ "minimatch": "^3.1.2",
+ "natural-compare": "^1.4.0",
+ "optionator": "^0.9.3",
+ "strip-ansi": "^6.0.1",
+ "text-table": "^0.2.0"
+ },
+ "bin": {
+ "eslint": "bin/eslint.js"
+ },
"engines": {
- "node": ">=4"
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
}
},
- "node_modules/inquirer-search-list/node_modules/mute-stream": {
- "version": "0.0.7",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/inquirer-search-list/node_modules/onetime": {
- "version": "2.0.1",
+ "node_modules/eslint-config-next": {
+ "version": "14.1.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "mimic-fn": "^1.0.0"
+ "@next/eslint-plugin-next": "14.1.4",
+ "@rushstack/eslint-patch": "^1.3.3",
+ "@typescript-eslint/parser": "^5.4.2 || ^6.0.0",
+ "eslint-import-resolver-node": "^0.3.6",
+ "eslint-import-resolver-typescript": "^3.5.2",
+ "eslint-plugin-import": "^2.28.1",
+ "eslint-plugin-jsx-a11y": "^6.7.1",
+ "eslint-plugin-react": "^7.33.2",
+ "eslint-plugin-react-hooks": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705"
},
- "engines": {
- "node": ">=4"
+ "peerDependencies": {
+ "eslint": "^7.23.0 || ^8.0.0",
+ "typescript": ">=3.3.1"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
}
},
- "node_modules/inquirer-search-list/node_modules/restore-cursor": {
- "version": "2.0.0",
+ "node_modules/eslint-config-prettier": {
+ "version": "8.10.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "onetime": "^2.0.0",
- "signal-exit": "^3.0.2"
+ "bin": {
+ "eslint-config-prettier": "bin/cli.js"
},
- "engines": {
- "node": ">=4"
+ "peerDependencies": {
+ "eslint": ">=7.0.0"
}
},
- "node_modules/inquirer-search-list/node_modules/string-width": {
- "version": "2.1.1",
+ "node_modules/eslint-import-resolver-node": {
+ "version": "0.3.9",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-fullwidth-code-point": "^2.0.0",
- "strip-ansi": "^4.0.0"
- },
- "engines": {
- "node": ">=4"
+ "debug": "^3.2.7",
+ "is-core-module": "^2.13.0",
+ "resolve": "^1.22.4"
}
},
- "node_modules/inquirer-search-list/node_modules/strip-ansi": {
- "version": "4.0.0",
+ "node_modules/eslint-import-resolver-node/node_modules/debug": {
+ "version": "3.2.7",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-regex": "^3.0.0"
- },
- "engines": {
- "node": ">=4"
+ "ms": "^2.1.1"
}
},
- "node_modules/inquirer/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/eslint-import-resolver-typescript": {
+ "version": "3.6.1",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "color-convert": "^2.0.1"
+ "debug": "^4.3.4",
+ "enhanced-resolve": "^5.12.0",
+ "eslint-module-utils": "^2.7.4",
+ "fast-glob": "^3.3.1",
+ "get-tsconfig": "^4.5.0",
+ "is-core-module": "^2.11.0",
+ "is-glob": "^4.0.3"
},
"engines": {
- "node": ">=8"
+ "node": "^14.18.0 || >=16.0.0"
},
"funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts"
+ },
+ "peerDependencies": {
+ "eslint": "*",
+ "eslint-plugin-import": "*"
}
},
- "node_modules/inquirer/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/eslint-module-utils": {
+ "version": "2.8.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
+ "debug": "^3.2.7"
},
"engines": {
- "node": ">=10"
+ "node": ">=4"
},
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "peerDependenciesMeta": {
+ "eslint": {
+ "optional": true
+ }
}
},
- "node_modules/inquirer/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/eslint-module-utils/node_modules/debug": {
+ "version": "3.2.7",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "dependencies": {
+ "ms": "^2.1.1"
}
},
- "node_modules/inquirer/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/eslint-plugin-import": {
+ "version": "2.29.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
+ "array-includes": "^3.1.7",
+ "array.prototype.findlastindex": "^1.2.3",
+ "array.prototype.flat": "^1.3.2",
+ "array.prototype.flatmap": "^1.3.2",
+ "debug": "^3.2.7",
+ "doctrine": "^2.1.0",
+ "eslint-import-resolver-node": "^0.3.9",
+ "eslint-module-utils": "^2.8.0",
+ "hasown": "^2.0.0",
+ "is-core-module": "^2.13.1",
+ "is-glob": "^4.0.3",
+ "minimatch": "^3.1.2",
+ "object.fromentries": "^2.0.7",
+ "object.groupby": "^1.0.1",
+ "object.values": "^1.1.7",
+ "semver": "^6.3.1",
+ "tsconfig-paths": "^3.15.0"
},
"engines": {
- "node": ">=8"
+ "node": ">=4"
+ },
+ "peerDependencies": {
+ "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8"
}
},
- "node_modules/internal-slot": {
- "version": "1.0.5",
+ "node_modules/eslint-plugin-import/node_modules/debug": {
+ "version": "3.2.7",
"dev": true,
"license": "MIT",
"dependencies": {
- "get-intrinsic": "^1.2.0",
- "has": "^1.0.3",
- "side-channel": "^1.0.4"
- },
- "engines": {
- "node": ">= 0.4"
+ "ms": "^2.1.1"
}
},
- "node_modules/interpret": {
- "version": "2.2.0",
+ "node_modules/eslint-plugin-import/node_modules/doctrine": {
+ "version": "2.1.0",
"dev": true,
- "license": "MIT",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "esutils": "^2.0.2"
+ },
"engines": {
- "node": ">= 0.10"
+ "node": ">=0.10.0"
}
},
- "node_modules/intersection-observer": {
- "version": "0.10.0",
- "license": "W3C-20150513"
- },
- "node_modules/invariant": {
- "version": "2.2.4",
+ "node_modules/eslint-plugin-import/node_modules/json5": {
+ "version": "1.0.2",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "loose-envify": "^1.0.0"
+ "minimist": "^1.2.0"
+ },
+ "bin": {
+ "json5": "lib/cli.js"
}
},
- "node_modules/ip": {
- "version": "1.1.5",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/ip-regex": {
- "version": "2.1.0",
+ "node_modules/eslint-plugin-import/node_modules/strip-bom": {
+ "version": "3.0.0",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=4"
}
},
- "node_modules/ipaddr.js": {
- "version": "1.9.1",
+ "node_modules/eslint-plugin-import/node_modules/tsconfig-paths": {
+ "version": "3.15.0",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">= 0.10"
+ "dependencies": {
+ "@types/json5": "^0.0.29",
+ "json5": "^1.0.2",
+ "minimist": "^1.2.6",
+ "strip-bom": "^3.0.0"
}
},
- "node_modules/is-absolute": {
- "version": "1.0.0",
+ "node_modules/eslint-plugin-jest": {
+ "version": "25.7.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-relative": "^1.0.0",
- "is-windows": "^1.0.1"
+ "@typescript-eslint/experimental-utils": "^5.0.0"
},
"engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/is-absolute-url": {
- "version": "3.0.3",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ },
+ "peerDependencies": {
+ "@typescript-eslint/eslint-plugin": "^4.0.0 || ^5.0.0",
+ "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@typescript-eslint/eslint-plugin": {
+ "optional": true
+ },
+ "jest": {
+ "optional": true
+ }
}
},
- "node_modules/is-accessor-descriptor": {
- "version": "1.0.0",
+ "node_modules/eslint-plugin-jest-dom": {
+ "version": "3.9.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "kind-of": "^6.0.0"
+ "@babel/runtime": "^7.16.3",
+ "@testing-library/dom": "^7.31.2",
+ "requireindex": "^1.2.0"
},
"engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/is-alphabetical": {
- "version": "1.0.4",
- "dev": true,
- "license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
- "node_modules/is-alphanumerical": {
- "version": "1.0.4",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-alphabetical": "^1.0.0",
- "is-decimal": "^1.0.0"
+ "node": "^10.12.0 || >=12.0.0",
+ "npm": ">=6",
+ "yarn": ">=1"
},
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "peerDependencies": {
+ "eslint": ">=6.8"
}
},
- "node_modules/is-arguments": {
- "version": "1.1.1",
+ "node_modules/eslint-plugin-jest-dom/node_modules/@jest/types": {
+ "version": "26.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "has-tostringtag": "^1.0.0"
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^15.0.0",
+ "chalk": "^4.0.0"
},
"engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "node": ">= 10.14.2"
}
},
- "node_modules/is-array-buffer": {
- "version": "3.0.2",
+ "node_modules/eslint-plugin-jest-dom/node_modules/@testing-library/dom": {
+ "version": "7.31.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "get-intrinsic": "^1.2.0",
- "is-typed-array": "^1.1.10"
+ "@babel/code-frame": "^7.10.4",
+ "@babel/runtime": "^7.12.5",
+ "@types/aria-query": "^4.2.0",
+ "aria-query": "^4.2.2",
+ "chalk": "^4.1.0",
+ "dom-accessibility-api": "^0.5.6",
+ "lz-string": "^1.4.4",
+ "pretty-format": "^26.6.2"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/is-arrayish": {
- "version": "0.2.1",
+ "node_modules/eslint-plugin-jest-dom/node_modules/@types/aria-query": {
+ "version": "4.2.2",
"dev": true,
"license": "MIT"
},
- "node_modules/is-bigint": {
- "version": "1.0.4",
+ "node_modules/eslint-plugin-jest-dom/node_modules/@types/yargs": {
+ "version": "15.0.19",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-bigints": "^1.0.1"
+ "@types/yargs-parser": "*"
+ }
+ },
+ "node_modules/eslint-plugin-jest-dom/node_modules/aria-query": {
+ "version": "4.2.2",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@babel/runtime": "^7.10.2",
+ "@babel/runtime-corejs3": "^7.10.2"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "engines": {
+ "node": ">=6.0"
}
},
- "node_modules/is-binary-path": {
- "version": "2.1.0",
+ "node_modules/eslint-plugin-jest-dom/node_modules/pretty-format": {
+ "version": "26.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "binary-extensions": "^2.0.0"
+ "@jest/types": "^26.6.2",
+ "ansi-regex": "^5.0.0",
+ "ansi-styles": "^4.0.0",
+ "react-is": "^17.0.1"
},
"engines": {
- "node": ">=8"
+ "node": ">= 10"
}
},
- "node_modules/is-boolean-object": {
- "version": "1.1.2",
+ "node_modules/eslint-plugin-jsx-a11y": {
+ "version": "6.8.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "has-tostringtag": "^1.0.0"
+ "@babel/runtime": "^7.23.2",
+ "aria-query": "^5.3.0",
+ "array-includes": "^3.1.7",
+ "array.prototype.flatmap": "^1.3.2",
+ "ast-types-flow": "^0.0.8",
+ "axe-core": "=4.7.0",
+ "axobject-query": "^3.2.1",
+ "damerau-levenshtein": "^1.0.8",
+ "emoji-regex": "^9.2.2",
+ "es-iterator-helpers": "^1.0.15",
+ "hasown": "^2.0.0",
+ "jsx-ast-utils": "^3.3.5",
+ "language-tags": "^1.0.9",
+ "minimatch": "^3.1.2",
+ "object.entries": "^1.1.7",
+ "object.fromentries": "^2.0.7"
},
"engines": {
- "node": ">= 0.4"
+ "node": ">=4.0"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "peerDependencies": {
+ "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8"
}
},
- "node_modules/is-buffer": {
- "version": "2.0.5",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
+ "node_modules/eslint-plugin-jsx-a11y/node_modules/axe-core": {
+ "version": "4.7.0",
+ "dev": true,
+ "license": "MPL-2.0",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/eslint-plugin-react": {
+ "version": "7.34.1",
+ "dev": true,
"license": "MIT",
+ "dependencies": {
+ "array-includes": "^3.1.7",
+ "array.prototype.findlast": "^1.2.4",
+ "array.prototype.flatmap": "^1.3.2",
+ "array.prototype.toreversed": "^1.1.2",
+ "array.prototype.tosorted": "^1.1.3",
+ "doctrine": "^2.1.0",
+ "es-iterator-helpers": "^1.0.17",
+ "estraverse": "^5.3.0",
+ "jsx-ast-utils": "^2.4.1 || ^3.0.0",
+ "minimatch": "^3.1.2",
+ "object.entries": "^1.1.7",
+ "object.fromentries": "^2.0.7",
+ "object.hasown": "^1.1.3",
+ "object.values": "^1.1.7",
+ "prop-types": "^15.8.1",
+ "resolve": "^2.0.0-next.5",
+ "semver": "^6.3.1",
+ "string.prototype.matchall": "^4.0.10"
+ },
"engines": {
"node": ">=4"
+ },
+ "peerDependencies": {
+ "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8"
}
},
- "node_modules/is-callable": {
- "version": "1.2.7",
+ "node_modules/eslint-plugin-react-hooks": {
+ "version": "4.6.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">= 0.4"
+ "node": ">=10"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "peerDependencies": {
+ "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0"
}
},
- "node_modules/is-ci": {
- "version": "2.0.0",
+ "node_modules/eslint-plugin-react/node_modules/doctrine": {
+ "version": "2.1.0",
"dev": true,
- "license": "MIT",
+ "license": "Apache-2.0",
"dependencies": {
- "ci-info": "^2.0.0"
+ "esutils": "^2.0.2"
},
- "bin": {
- "is-ci": "bin.js"
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/is-ci/node_modules/ci-info": {
- "version": "2.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/is-core-module": {
- "version": "2.11.0",
+ "node_modules/eslint-plugin-react/node_modules/resolve": {
+ "version": "2.0.0-next.5",
"dev": true,
"license": "MIT",
"dependencies": {
- "has": "^1.0.3"
+ "is-core-module": "^2.13.0",
+ "path-parse": "^1.0.7",
+ "supports-preserve-symlinks-flag": "^1.0.0"
+ },
+ "bin": {
+ "resolve": "bin/resolve"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/is-data-descriptor": {
- "version": "1.0.0",
+ "node_modules/eslint-plugin-storybook": {
+ "version": "0.6.15",
"dev": true,
"license": "MIT",
"dependencies": {
- "kind-of": "^6.0.0"
+ "@storybook/csf": "^0.0.1",
+ "@typescript-eslint/utils": "^5.45.0",
+ "requireindex": "^1.1.0",
+ "ts-dedent": "^2.2.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": "12.x || 14.x || >= 16"
+ },
+ "peerDependencies": {
+ "eslint": ">=6"
}
},
- "node_modules/is-date-object": {
- "version": "1.0.5",
+ "node_modules/eslint-plugin-storybook/node_modules/@storybook/csf": {
+ "version": "0.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-tostringtag": "^1.0.0"
+ "lodash": "^4.17.15"
+ }
+ },
+ "node_modules/eslint-plugin-testing-library": {
+ "version": "5.11.1",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@typescript-eslint/utils": "^5.58.0"
},
"engines": {
- "node": ">= 0.4"
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0",
+ "npm": ">=6"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "peerDependencies": {
+ "eslint": "^7.5.0 || ^8.0.0"
}
},
- "node_modules/is-decimal": {
- "version": "1.0.4",
+ "node_modules/eslint-plugin-use-encapsulation": {
+ "version": "1.1.0",
"dev": true,
"license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "peerDependencies": {
+ "eslint": ">=0.8.0"
}
},
- "node_modules/is-descriptor": {
- "version": "1.0.2",
+ "node_modules/eslint-scope": {
+ "version": "7.2.2",
"dev": true,
- "license": "MIT",
+ "license": "BSD-2-Clause",
"dependencies": {
- "is-accessor-descriptor": "^1.0.0",
- "is-data-descriptor": "^1.0.0",
- "kind-of": "^6.0.2"
+ "esrecurse": "^4.3.0",
+ "estraverse": "^5.2.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
}
},
- "node_modules/is-docker": {
- "version": "2.2.1",
+ "node_modules/eslint-utils": {
+ "version": "3.0.0",
"dev": true,
"license": "MIT",
- "bin": {
- "is-docker": "cli.js"
+ "dependencies": {
+ "eslint-visitor-keys": "^2.0.0"
},
"engines": {
- "node": ">=8"
+ "node": "^10.0.0 || ^12.0.0 || >= 14.0.0"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/sponsors/mysticatea"
+ },
+ "peerDependencies": {
+ "eslint": ">=5"
}
},
- "node_modules/is-dom": {
- "version": "1.1.0",
+ "node_modules/eslint-utils/node_modules/eslint-visitor-keys": {
+ "version": "2.1.0",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "is-object": "^1.0.1",
- "is-window": "^1.0.2"
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/is-expression": {
- "version": "3.0.0",
+ "node_modules/eslint-visitor-keys": {
+ "version": "3.4.3",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "acorn": "~4.0.2",
- "object-assign": "^4.0.1"
+ "license": "Apache-2.0",
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
}
},
- "node_modules/is-expression/node_modules/acorn": {
- "version": "4.0.13",
+ "node_modules/eslint/node_modules/@eslint/eslintrc": {
+ "version": "2.1.4",
"dev": true,
"license": "MIT",
- "bin": {
- "acorn": "bin/acorn"
+ "dependencies": {
+ "ajv": "^6.12.4",
+ "debug": "^4.3.2",
+ "espree": "^9.6.0",
+ "globals": "^13.19.0",
+ "ignore": "^5.2.0",
+ "import-fresh": "^3.2.1",
+ "js-yaml": "^4.1.0",
+ "minimatch": "^3.1.2",
+ "strip-json-comments": "^3.1.1"
},
"engines": {
- "node": ">=0.4.0"
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
}
},
- "node_modules/is-extendable": {
- "version": "1.0.1",
+ "node_modules/eslint/node_modules/@humanwhocodes/config-array": {
+ "version": "0.11.14",
"dev": true,
- "license": "MIT",
+ "license": "Apache-2.0",
"dependencies": {
- "is-plain-object": "^2.0.4"
+ "@humanwhocodes/object-schema": "^2.0.2",
+ "debug": "^4.3.1",
+ "minimatch": "^3.0.5"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10.10.0"
}
},
- "node_modules/is-extglob": {
- "version": "2.1.1",
+ "node_modules/eslint/node_modules/@humanwhocodes/object-schema": {
+ "version": "2.0.3",
"dev": true,
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/esm": {
+ "version": "3.2.25",
"license": "MIT",
"engines": {
- "node": ">=0.10.0"
+ "node": ">=6"
}
},
- "node_modules/is-finite": {
- "version": "1.1.0",
+ "node_modules/esniff": {
+ "version": "2.0.1",
+ "license": "ISC",
+ "dependencies": {
+ "d": "^1.0.1",
+ "es5-ext": "^0.10.62",
+ "event-emitter": "^0.3.5",
+ "type": "^2.7.2"
+ },
+ "engines": {
+ "node": ">=0.10"
+ }
+ },
+ "node_modules/espree": {
+ "version": "9.6.1",
"dev": true,
- "license": "MIT",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "acorn": "^8.9.0",
+ "acorn-jsx": "^5.3.2",
+ "eslint-visitor-keys": "^3.4.1"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://opencollective.com/eslint"
}
},
- "node_modules/is-fullwidth-code-point": {
- "version": "3.0.0",
+ "node_modules/espree/node_modules/acorn": {
+ "version": "8.11.3",
+ "dev": true,
"license": "MIT",
+ "bin": {
+ "acorn": "bin/acorn"
+ },
"engines": {
- "node": ">=8"
+ "node": ">=0.4.0"
}
},
- "node_modules/is-function": {
- "version": "1.0.2",
- "dev": true,
- "license": "MIT"
+ "node_modules/esprima": {
+ "version": "4.0.1",
+ "license": "BSD-2-Clause",
+ "bin": {
+ "esparse": "bin/esparse.js",
+ "esvalidate": "bin/esvalidate.js"
+ },
+ "engines": {
+ "node": ">=4"
+ }
},
- "node_modules/is-generator-fn": {
- "version": "2.1.0",
+ "node_modules/esquery": {
+ "version": "1.5.0",
"dev": true,
- "license": "MIT",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "estraverse": "^5.1.0"
+ },
"engines": {
- "node": ">=6"
+ "node": ">=0.10"
}
},
- "node_modules/is-glob": {
- "version": "4.0.3",
+ "node_modules/esrecurse": {
+ "version": "4.3.0",
"dev": true,
- "license": "MIT",
+ "license": "BSD-2-Clause",
"dependencies": {
- "is-extglob": "^2.1.1"
+ "estraverse": "^5.2.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=4.0"
}
},
- "node_modules/is-hexadecimal": {
- "version": "1.0.4",
+ "node_modules/estraverse": {
+ "version": "5.3.0",
"dev": true,
- "license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=4.0"
}
},
- "node_modules/is-installed-globally": {
- "version": "0.4.0",
- "dev": true,
+ "node_modules/estree-to-babel": {
+ "version": "3.2.1",
"license": "MIT",
"dependencies": {
- "global-dirs": "^3.0.0",
- "is-path-inside": "^3.0.2"
+ "@babel/traverse": "^7.1.6",
+ "@babel/types": "^7.2.0",
+ "c8": "^7.6.0"
},
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=8.3.0"
}
},
- "node_modules/is-interactive": {
- "version": "2.0.0",
- "dev": true,
+ "node_modules/estree-util-attach-comments": {
+ "version": "2.1.1",
"license": "MIT",
- "engines": {
- "node": ">=12"
+ "dependencies": {
+ "@types/estree": "^1.0.0"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/is-lambda": {
- "version": "1.0.1",
- "dev": true,
+ "node_modules/estree-util-attach-comments/node_modules/@types/estree": {
+ "version": "1.0.5",
"license": "MIT"
},
- "node_modules/is-map": {
- "version": "2.0.2",
- "dev": true,
+ "node_modules/estree-util-build-jsx": {
+ "version": "2.2.2",
"license": "MIT",
+ "dependencies": {
+ "@types/estree-jsx": "^1.0.0",
+ "estree-util-is-identifier-name": "^2.0.0",
+ "estree-walker": "^3.0.0"
+ },
"funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/is-negative-zero": {
- "version": "2.0.2",
- "dev": true,
+ "node_modules/estree-util-is-identifier-name": {
+ "version": "2.1.0",
"license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
"funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/is-npm": {
- "version": "5.0.0",
- "dev": true,
+ "node_modules/estree-util-to-js": {
+ "version": "1.2.0",
"license": "MIT",
- "engines": {
- "node": ">=10"
+ "dependencies": {
+ "@types/estree-jsx": "^1.0.0",
+ "astring": "^1.8.0",
+ "source-map": "^0.7.0"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/is-number": {
- "version": "7.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.12.0"
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/is-number-object": {
- "version": "1.0.6",
- "dev": true,
+ "node_modules/estree-util-visit": {
+ "version": "1.2.1",
"license": "MIT",
"dependencies": {
- "has-tostringtag": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.4"
+ "@types/estree-jsx": "^1.0.0",
+ "@types/unist": "^2.0.0"
},
"funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/is-obj": {
- "version": "2.0.0",
- "dev": true,
+ "node_modules/estree-walker": {
+ "version": "3.0.3",
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "dependencies": {
+ "@types/estree": "^1.0.0"
}
},
- "node_modules/is-object": {
- "version": "1.0.2",
- "dev": true,
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "node_modules/estree-walker/node_modules/@types/estree": {
+ "version": "1.0.5",
+ "license": "MIT"
+ },
+ "node_modules/esutils": {
+ "version": "2.0.3",
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/is-path-cwd": {
- "version": "2.2.0",
+ "node_modules/etag": {
+ "version": "1.8.1",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=6"
+ "node": ">= 0.6"
}
},
- "node_modules/is-path-inside": {
- "version": "3.0.3",
- "dev": true,
+ "node_modules/event-emitter": {
+ "version": "0.3.5",
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "dependencies": {
+ "d": "1",
+ "es5-ext": "~0.10.14"
}
},
- "node_modules/is-plain-obj": {
- "version": "1.1.0",
+ "node_modules/event-target-shim": {
+ "version": "5.0.1",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=0.10.0"
+ "node": ">=6"
}
},
- "node_modules/is-plain-object": {
- "version": "2.0.4",
+ "node_modules/eventemitter3": {
+ "version": "4.0.7",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/events": {
+ "version": "3.3.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "isobject": "^3.0.1"
- },
"engines": {
- "node": ">=0.10.0"
+ "node": ">=0.8.x"
}
},
- "node_modules/is-potential-custom-element-name": {
- "version": "1.0.1",
+ "node_modules/eventsourcemock": {
+ "version": "2.0.0",
"dev": true,
"license": "MIT"
},
- "node_modules/is-promise": {
- "version": "2.2.2",
+ "node_modules/evp_bytestokey": {
+ "version": "1.0.3",
"dev": true,
- "license": "MIT"
- },
- "node_modules/is-reference": {
- "version": "3.0.0",
"license": "MIT",
"dependencies": {
- "@types/estree": "*"
+ "md5.js": "^1.3.4",
+ "safe-buffer": "^5.1.1"
}
},
- "node_modules/is-regex": {
- "version": "1.1.4",
+ "node_modules/execa": {
+ "version": "5.1.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "has-tostringtag": "^1.0.0"
+ "cross-spawn": "^7.0.3",
+ "get-stream": "^6.0.0",
+ "human-signals": "^2.1.0",
+ "is-stream": "^2.0.0",
+ "merge-stream": "^2.0.0",
+ "npm-run-path": "^4.0.1",
+ "onetime": "^5.1.2",
+ "signal-exit": "^3.0.3",
+ "strip-final-newline": "^2.0.0"
},
"engines": {
- "node": ">= 0.4"
+ "node": ">=10"
},
"funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "url": "https://github.com/sindresorhus/execa?sponsor=1"
}
},
- "node_modules/is-regexp": {
- "version": "3.1.0",
- "license": "MIT",
+ "node_modules/exit": {
+ "version": "0.1.2",
+ "dev": true,
"engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">= 0.8.0"
}
},
- "node_modules/is-relative": {
- "version": "1.0.0",
+ "node_modules/expand-template": {
+ "version": "2.0.3",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "is-unc-path": "^1.0.0"
- },
+ "license": "(MIT OR WTFPL)",
"engines": {
- "node": ">=0.10.0"
+ "node": ">=6"
}
},
- "node_modules/is-set": {
+ "node_modules/expand-tilde": {
"version": "2.0.2",
"dev": true,
"license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-shared-array-buffer": {
- "version": "1.0.2",
- "dev": true,
- "license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2"
+ "homedir-polyfill": "^1.0.1"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-ssh": {
- "version": "1.4.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "protocols": "^2.0.1"
- }
- },
- "node_modules/is-ssh/node_modules/protocols": {
- "version": "2.0.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/is-stream": {
- "version": "2.0.1",
- "dev": true,
- "license": "MIT",
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=0.10.0"
}
},
- "node_modules/is-string": {
- "version": "1.0.7",
+ "node_modules/expect": {
+ "version": "29.7.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-tostringtag": "^1.0.0"
+ "@jest/expect-utils": "^29.7.0",
+ "jest-get-type": "^29.6.3",
+ "jest-matcher-utils": "^29.7.0",
+ "jest-message-util": "^29.7.0",
+ "jest-util": "^29.7.0"
},
"engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-subset": {
- "version": "0.1.1",
+ "node_modules/expect-playwright": {
+ "version": "0.8.0",
"dev": true,
"license": "MIT"
},
- "node_modules/is-symbol": {
- "version": "1.0.4",
+ "node_modules/exponential-backoff": {
+ "version": "3.1.1",
+ "dev": true,
+ "license": "Apache-2.0"
+ },
+ "node_modules/express": {
+ "version": "4.19.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-symbols": "^1.0.2"
- },
- "engines": {
- "node": ">= 0.4"
+ "accepts": "~1.3.8",
+ "array-flatten": "1.1.1",
+ "body-parser": "1.20.2",
+ "content-disposition": "0.5.4",
+ "content-type": "~1.0.4",
+ "cookie": "0.6.0",
+ "cookie-signature": "1.0.6",
+ "debug": "2.6.9",
+ "depd": "2.0.0",
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "etag": "~1.8.1",
+ "finalhandler": "1.2.0",
+ "fresh": "0.5.2",
+ "http-errors": "2.0.0",
+ "merge-descriptors": "1.0.1",
+ "methods": "~1.1.2",
+ "on-finished": "2.4.1",
+ "parseurl": "~1.3.3",
+ "path-to-regexp": "0.1.7",
+ "proxy-addr": "~2.0.7",
+ "qs": "6.11.0",
+ "range-parser": "~1.2.1",
+ "safe-buffer": "5.2.1",
+ "send": "0.18.0",
+ "serve-static": "1.15.0",
+ "setprototypeof": "1.2.0",
+ "statuses": "2.0.1",
+ "type-is": "~1.6.18",
+ "utils-merge": "1.0.1",
+ "vary": "~1.1.2"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "engines": {
+ "node": ">= 0.10.0"
}
},
- "node_modules/is-text-path": {
- "version": "1.0.1",
+ "node_modules/express/node_modules/debug": {
+ "version": "2.6.9",
"dev": true,
"license": "MIT",
"dependencies": {
- "text-extensions": "^1.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
+ "ms": "2.0.0"
}
},
- "node_modules/is-typed-array": {
- "version": "1.1.10",
+ "node_modules/express/node_modules/ms": {
+ "version": "2.0.0",
"dev": true,
- "license": "MIT",
+ "license": "MIT"
+ },
+ "node_modules/express/node_modules/qs": {
+ "version": "6.11.0",
+ "dev": true,
+ "license": "BSD-3-Clause",
"dependencies": {
- "available-typed-arrays": "^1.0.5",
- "call-bind": "^1.0.2",
- "for-each": "^0.3.3",
- "gopd": "^1.0.1",
- "has-tostringtag": "^1.0.0"
+ "side-channel": "^1.0.4"
},
"engines": {
- "node": ">= 0.4"
+ "node": ">=0.6"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/is-typedarray": {
- "version": "1.0.0",
- "dev": true,
+ "node_modules/ext": {
+ "version": "1.7.0",
+ "license": "ISC",
+ "dependencies": {
+ "type": "^2.7.2"
+ }
+ },
+ "node_modules/extend": {
+ "version": "3.0.2",
"license": "MIT"
},
- "node_modules/is-unc-path": {
- "version": "1.0.0",
- "dev": true,
+ "node_modules/extend-shallow": {
+ "version": "2.0.1",
"license": "MIT",
"dependencies": {
- "unc-path-regex": "^0.1.2"
+ "is-extendable": "^0.1.0"
},
"engines": {
"node": ">=0.10.0"
}
},
- "node_modules/is-unicode-supported": {
- "version": "1.1.0",
+ "node_modules/external-editor": {
+ "version": "3.1.0",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=12"
+ "dependencies": {
+ "chardet": "^0.7.0",
+ "iconv-lite": "^0.4.24",
+ "tmp": "^0.0.33"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/is-utf8": {
- "version": "0.2.1",
- "dev": true,
- "license": "MIT",
- "optional": true
- },
- "node_modules/is-weakmap": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz",
- "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==",
+ "node_modules/extract-react-types": {
+ "version": "0.30.3",
"dev": true,
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@aparna036/babel-explode-module": "^2.0.1",
+ "@babel/core": "^7.4.4",
+ "@babel/runtime": "^7.4.4",
+ "@babel/types": "^7.0.0-beta.56",
+ "ast-pretty-print": "^2.0.1",
+ "babel-errors": "^1.1.1",
+ "babel-file": "^3.0.0",
+ "babel-flow-identifiers": "^1.1.3",
+ "babel-helper-simplify-module": "^2.2.1",
+ "babel-identifiers": "^1.1.2",
+ "babel-normalize-comments": "^1.0.1",
+ "babel-react-components": "^1.1.0",
+ "babel-type-scopes": "^1.1.0",
+ "babylon": "^7.0.0-beta.22",
+ "babylon-options": "^2.0.1",
+ "read-file-async": "^1.0.0",
+ "resolve": "^1.10.1",
+ "resolve-async": "^1.0.1",
+ "strip-indent": "^2.0.0"
}
},
- "node_modules/is-weakref": {
- "version": "1.0.2",
+ "node_modules/extract-zip": {
+ "version": "1.7.0",
"dev": true,
- "license": "MIT",
+ "license": "BSD-2-Clause",
"dependencies": {
- "call-bind": "^1.0.2"
+ "concat-stream": "^1.6.2",
+ "debug": "^2.6.9",
+ "mkdirp": "^0.5.4",
+ "yauzl": "^2.10.0"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "bin": {
+ "extract-zip": "cli.js"
}
},
- "node_modules/is-weakset": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz",
- "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==",
+ "node_modules/extract-zip/node_modules/concat-stream": {
+ "version": "1.6.2",
"dev": true,
+ "engines": [
+ "node >= 0.8"
+ ],
+ "license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "get-intrinsic": "^1.1.1"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "buffer-from": "^1.0.0",
+ "inherits": "^2.0.3",
+ "readable-stream": "^2.2.2",
+ "typedarray": "^0.0.6"
}
},
- "node_modules/is-whitespace-character": {
- "version": "1.0.4",
+ "node_modules/extract-zip/node_modules/debug": {
+ "version": "2.6.9",
"dev": true,
"license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "dependencies": {
+ "ms": "2.0.0"
}
},
- "node_modules/is-window": {
- "version": "1.0.2",
+ "node_modules/extract-zip/node_modules/isarray": {
+ "version": "1.0.0",
"dev": true,
"license": "MIT"
},
- "node_modules/is-windows": {
- "version": "1.0.2",
+ "node_modules/extract-zip/node_modules/mkdirp": {
+ "version": "0.5.6",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "minimist": "^1.2.6"
+ },
+ "bin": {
+ "mkdirp": "bin/cmd.js"
}
},
- "node_modules/is-word-character": {
- "version": "1.0.4",
+ "node_modules/extract-zip/node_modules/ms": {
+ "version": "2.0.0",
"dev": true,
- "license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
+ "license": "MIT"
},
- "node_modules/is-wsl": {
- "version": "2.2.0",
+ "node_modules/extract-zip/node_modules/readable-stream": {
+ "version": "2.3.8",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-docker": "^2.0.0"
- },
- "engines": {
- "node": ">=8"
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
}
},
- "node_modules/is-yarn-global": {
- "version": "0.3.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/isarray": {
- "version": "2.0.5",
+ "node_modules/extract-zip/node_modules/safe-buffer": {
+ "version": "5.1.2",
"dev": true,
"license": "MIT"
},
- "node_modules/isbinaryfile": {
- "version": "4.0.8",
+ "node_modules/extract-zip/node_modules/string_decoder": {
+ "version": "1.1.1",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">= 8.0.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/gjtorikian/"
+ "dependencies": {
+ "safe-buffer": "~5.1.0"
}
},
- "node_modules/isexe": {
- "version": "2.0.0",
- "license": "ISC"
- },
- "node_modules/isobject": {
- "version": "3.0.1",
+ "node_modules/extsprintf": {
+ "version": "1.3.0",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
+ "engines": [
+ "node >=0.6.0"
+ ],
+ "license": "MIT"
},
- "node_modules/isomorphic-unfetch": {
- "version": "3.1.0",
+ "node_modules/fast-deep-equal": {
+ "version": "3.1.3",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "node-fetch": "^2.6.1",
- "unfetch": "^4.2.0"
- }
+ "license": "MIT"
},
- "node_modules/isstream": {
- "version": "0.1.2",
+ "node_modules/fast-fifo": {
+ "version": "1.3.2",
"dev": true,
"license": "MIT"
},
- "node_modules/istanbul-lib-coverage": {
- "version": "3.2.0",
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/istanbul-lib-hook": {
- "version": "3.0.0",
+ "node_modules/fast-glob": {
+ "version": "3.3.2",
"dev": true,
- "license": "BSD-3-Clause",
+ "license": "MIT",
"dependencies": {
- "append-transform": "^2.0.0"
+ "@nodelib/fs.stat": "^2.0.2",
+ "@nodelib/fs.walk": "^1.2.3",
+ "glob-parent": "^5.1.2",
+ "merge2": "^1.3.0",
+ "micromatch": "^4.0.4"
},
"engines": {
- "node": ">=8"
+ "node": ">=8.6.0"
}
},
- "node_modules/istanbul-lib-instrument": {
- "version": "5.1.0",
+ "node_modules/fast-glob/node_modules/glob-parent": {
+ "version": "5.1.2",
"dev": true,
- "license": "BSD-3-Clause",
+ "license": "ISC",
"dependencies": {
- "@babel/core": "^7.12.3",
- "@babel/parser": "^7.14.7",
- "@istanbuljs/schema": "^0.1.2",
- "istanbul-lib-coverage": "^3.2.0",
- "semver": "^6.3.0"
+ "is-glob": "^4.0.1"
},
"engines": {
- "node": ">=8"
+ "node": ">= 6"
}
},
- "node_modules/istanbul-lib-processinfo": {
- "version": "2.0.3",
+ "node_modules/fast-json-parse": {
+ "version": "1.0.3",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/fast-json-stable-stringify": {
+ "version": "2.1.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/fast-levenshtein": {
+ "version": "2.0.6",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/fastq": {
+ "version": "1.17.1",
"dev": true,
"license": "ISC",
"dependencies": {
- "archy": "^1.0.0",
- "cross-spawn": "^7.0.3",
- "istanbul-lib-coverage": "^3.2.0",
- "p-map": "^3.0.0",
- "rimraf": "^3.0.0",
- "uuid": "^8.3.2"
- },
- "engines": {
- "node": ">=8"
+ "reusify": "^1.0.4"
}
},
- "node_modules/istanbul-lib-report": {
- "version": "3.0.0",
- "license": "BSD-3-Clause",
+ "node_modules/fb-watchman": {
+ "version": "2.0.2",
+ "dev": true,
+ "license": "Apache-2.0",
"dependencies": {
- "istanbul-lib-coverage": "^3.0.0",
- "make-dir": "^3.0.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=8"
+ "bser": "2.1.1"
}
},
- "node_modules/istanbul-lib-report/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/fd-slicer": {
+ "version": "1.1.0",
+ "dev": true,
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "dependencies": {
+ "pend": "~1.2.0"
}
},
- "node_modules/istanbul-lib-report/node_modules/make-dir": {
- "version": "3.1.0",
+ "node_modules/fecha": {
+ "version": "4.2.3",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/fetch-retry": {
+ "version": "5.0.6",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/figures": {
+ "version": "3.2.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "semver": "^6.0.0"
+ "escape-string-regexp": "^1.0.5"
},
"engines": {
"node": ">=8"
@@ -31841,6083 +19725,6083 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/istanbul-lib-report/node_modules/supports-color": {
- "version": "7.2.0",
- "license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/istanbul-lib-source-maps": {
- "version": "4.0.1",
+ "node_modules/figures/node_modules/escape-string-regexp": {
+ "version": "1.0.5",
"dev": true,
- "license": "BSD-3-Clause",
- "dependencies": {
- "debug": "^4.1.1",
- "istanbul-lib-coverage": "^3.0.0",
- "source-map": "^0.6.1"
- },
+ "license": "MIT",
"engines": {
- "node": ">=10"
+ "node": ">=0.8.0"
}
},
- "node_modules/istanbul-lib-source-maps/node_modules/source-map": {
- "version": "0.6.1",
+ "node_modules/file-entry-cache": {
+ "version": "6.0.1",
"dev": true,
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/istanbul-reports": {
- "version": "3.1.4",
- "license": "BSD-3-Clause",
- "dependencies": {
- "html-escaper": "^2.0.0",
- "istanbul-lib-report": "^3.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/istextorbinary": {
- "version": "2.2.1",
"license": "MIT",
"dependencies": {
- "binaryextensions": "2",
- "editions": "^1.3.3",
- "textextensions": "2"
+ "flat-cache": "^3.0.4"
},
"engines": {
- "node": ">=0.12"
- }
- },
- "node_modules/iterate-iterator": {
- "version": "1.0.2",
- "dev": true,
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "node": "^10.12.0 || >=12.0.0"
}
},
- "node_modules/iterate-value": {
- "version": "1.0.2",
+ "node_modules/file-system-cache": {
+ "version": "2.3.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "es-get-iterator": "^1.0.2",
- "iterate-iterator": "^1.0.1"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "fs-extra": "11.1.1",
+ "ramda": "0.29.0"
}
},
- "node_modules/jest": {
- "version": "28.1.3",
+ "node_modules/file-system-cache/node_modules/fs-extra": {
+ "version": "11.1.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@jest/core": "^28.1.3",
- "@jest/types": "^28.1.3",
- "import-local": "^3.0.2",
- "jest-cli": "^28.1.3"
- },
- "bin": {
- "jest": "bin/jest.js"
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
- },
- "peerDependencies": {
- "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
- },
- "peerDependenciesMeta": {
- "node-notifier": {
- "optional": true
- }
+ "node": ">=14.14"
}
},
- "node_modules/jest-changed-files": {
- "version": "28.1.3",
+ "node_modules/filelist": {
+ "version": "1.0.4",
"dev": true,
- "license": "MIT",
+ "license": "Apache-2.0",
"dependencies": {
- "execa": "^5.0.0",
- "p-limit": "^3.1.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "minimatch": "^5.0.1"
}
},
- "node_modules/jest-circus": {
- "version": "28.1.3",
+ "node_modules/filelist/node_modules/brace-expansion": {
+ "version": "2.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@jest/environment": "^28.1.3",
- "@jest/expect": "^28.1.3",
- "@jest/test-result": "^28.1.3",
- "@jest/types": "^28.1.3",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "co": "^4.6.0",
- "dedent": "^0.7.0",
- "is-generator-fn": "^2.0.0",
- "jest-each": "^28.1.3",
- "jest-matcher-utils": "^28.1.3",
- "jest-message-util": "^28.1.3",
- "jest-runtime": "^28.1.3",
- "jest-snapshot": "^28.1.3",
- "jest-util": "^28.1.3",
- "p-limit": "^3.1.0",
- "pretty-format": "^28.1.3",
- "slash": "^3.0.0",
- "stack-utils": "^2.0.3"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "balanced-match": "^1.0.0"
}
},
- "node_modules/jest-circus/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/filelist/node_modules/minimatch": {
+ "version": "5.1.6",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "color-convert": "^2.0.1"
+ "brace-expansion": "^2.0.1"
},
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "node": ">=10"
}
},
- "node_modules/jest-circus/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/fill-range": {
+ "version": "7.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
+ "to-regex-range": "^5.0.1"
},
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "node": ">=8"
}
},
- "node_modules/jest-circus/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/filter-obj": {
+ "version": "2.0.2",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=8"
}
},
- "node_modules/jest-circus/node_modules/pretty-format": {
- "version": "28.1.3",
+ "node_modules/finalhandler": {
+ "version": "1.2.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@jest/schemas": "^28.1.3",
- "ansi-regex": "^5.0.1",
- "ansi-styles": "^5.0.0",
- "react-is": "^18.0.0"
+ "debug": "2.6.9",
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "on-finished": "2.4.1",
+ "parseurl": "~1.3.3",
+ "statuses": "2.0.1",
+ "unpipe": "~1.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": ">= 0.8"
}
},
- "node_modules/jest-circus/node_modules/pretty-format/node_modules/ansi-styles": {
- "version": "5.2.0",
+ "node_modules/finalhandler/node_modules/debug": {
+ "version": "2.6.9",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "dependencies": {
+ "ms": "2.0.0"
}
},
- "node_modules/jest-circus/node_modules/react-is": {
- "version": "18.2.0",
+ "node_modules/finalhandler/node_modules/ms": {
+ "version": "2.0.0",
"dev": true,
"license": "MIT"
},
- "node_modules/jest-circus/node_modules/supports-color": {
- "version": "7.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/jest-cli": {
- "version": "28.1.3",
+ "node_modules/find-cache-dir": {
+ "version": "3.3.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "@jest/core": "^28.1.3",
- "@jest/test-result": "^28.1.3",
- "@jest/types": "^28.1.3",
- "chalk": "^4.0.0",
- "exit": "^0.1.2",
- "graceful-fs": "^4.2.9",
- "import-local": "^3.0.2",
- "jest-config": "^28.1.3",
- "jest-util": "^28.1.3",
- "jest-validate": "^28.1.3",
- "prompts": "^2.0.1",
- "yargs": "^17.3.1"
- },
- "bin": {
- "jest": "bin/jest.js"
+ "commondir": "^1.0.1",
+ "make-dir": "^3.0.2",
+ "pkg-dir": "^4.1.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
- },
- "peerDependencies": {
- "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
+ "node": ">=8"
},
- "peerDependenciesMeta": {
- "node-notifier": {
- "optional": true
- }
+ "funding": {
+ "url": "https://github.com/avajs/find-cache-dir?sponsor=1"
}
},
- "node_modules/jest-cli/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/find-cache-dir/node_modules/find-up": {
+ "version": "4.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
},
"engines": {
"node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/jest-cli/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/find-cache-dir/node_modules/locate-path": {
+ "version": "5.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
+ "p-locate": "^4.1.0"
},
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "node": ">=8"
}
},
- "node_modules/jest-cli/node_modules/cliui": {
- "version": "8.0.1",
+ "node_modules/find-cache-dir/node_modules/p-limit": {
+ "version": "2.3.0",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "string-width": "^4.2.0",
- "strip-ansi": "^6.0.1",
- "wrap-ansi": "^7.0.0"
+ "p-try": "^2.0.0"
},
"engines": {
- "node": ">=12"
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/jest-cli/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/find-cache-dir/node_modules/p-locate": {
+ "version": "4.1.0",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "p-limit": "^2.2.0"
+ },
"engines": {
"node": ">=8"
}
},
- "node_modules/jest-cli/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/find-cache-dir/node_modules/pkg-dir": {
+ "version": "4.2.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
+ "find-up": "^4.0.0"
},
"engines": {
"node": ">=8"
}
},
- "node_modules/jest-cli/node_modules/yargs": {
- "version": "17.7.2",
+ "node_modules/find-file-up": {
+ "version": "0.1.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "cliui": "^8.0.1",
- "escalade": "^3.1.1",
- "get-caller-file": "^2.0.5",
- "require-directory": "^2.1.1",
- "string-width": "^4.2.3",
- "y18n": "^5.0.5",
- "yargs-parser": "^21.1.1"
+ "fs-exists-sync": "^0.1.0",
+ "resolve-dir": "^0.1.0"
},
"engines": {
- "node": ">=12"
+ "node": ">=0.10.0"
}
},
- "node_modules/jest-cli/node_modules/yargs-parser": {
- "version": "21.1.1",
+ "node_modules/find-pkg": {
+ "version": "0.1.2",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
+ "dependencies": {
+ "find-file-up": "^0.1.2"
+ },
"engines": {
- "node": ">=12"
+ "node": ">=0.10.0"
}
},
- "node_modules/jest-config": {
- "version": "28.1.3",
+ "node_modules/find-process": {
+ "version": "1.4.7",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/core": "^7.11.6",
- "@jest/test-sequencer": "^28.1.3",
- "@jest/types": "^28.1.3",
- "babel-jest": "^28.1.3",
"chalk": "^4.0.0",
- "ci-info": "^3.2.0",
- "deepmerge": "^4.2.2",
- "glob": "^7.1.3",
- "graceful-fs": "^4.2.9",
- "jest-circus": "^28.1.3",
- "jest-environment-node": "^28.1.3",
- "jest-get-type": "^28.0.2",
- "jest-regex-util": "^28.0.2",
- "jest-resolve": "^28.1.3",
- "jest-runner": "^28.1.3",
- "jest-util": "^28.1.3",
- "jest-validate": "^28.1.3",
- "micromatch": "^4.0.4",
- "parse-json": "^5.2.0",
- "pretty-format": "^28.1.3",
- "slash": "^3.0.0",
- "strip-json-comments": "^3.1.1"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
- },
- "peerDependencies": {
- "@types/node": "*",
- "ts-node": ">=9.0.0"
+ "commander": "^5.1.0",
+ "debug": "^4.1.1"
},
- "peerDependenciesMeta": {
- "@types/node": {
- "optional": true
- },
- "ts-node": {
- "optional": true
- }
+ "bin": {
+ "find-process": "bin/find-process.js"
}
},
- "node_modules/jest-config/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/find-process/node_modules/commander": {
+ "version": "5.1.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "node": ">= 6"
}
},
- "node_modules/jest-config/node_modules/chalk": {
- "version": "4.1.2",
- "dev": true,
+ "node_modules/find-up": {
+ "version": "5.0.0",
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
+ "locate-path": "^6.0.0",
+ "path-exists": "^4.0.0"
},
"engines": {
"node": ">=10"
},
"funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/jest-config/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/findup-sync": {
+ "version": "5.0.0",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "detect-file": "^1.0.0",
+ "is-glob": "^4.0.3",
+ "micromatch": "^4.0.4",
+ "resolve-dir": "^1.0.1"
+ },
"engines": {
- "node": ">=8"
+ "node": ">= 10.13.0"
}
},
- "node_modules/jest-config/node_modules/pretty-format": {
- "version": "28.1.3",
+ "node_modules/findup-sync/node_modules/global-modules": {
+ "version": "1.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@jest/schemas": "^28.1.3",
- "ansi-regex": "^5.0.1",
- "ansi-styles": "^5.0.0",
- "react-is": "^18.0.0"
+ "global-prefix": "^1.0.1",
+ "is-windows": "^1.0.1",
+ "resolve-dir": "^1.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": ">=0.10.0"
}
},
- "node_modules/jest-config/node_modules/pretty-format/node_modules/ansi-styles": {
- "version": "5.2.0",
+ "node_modules/findup-sync/node_modules/global-prefix": {
+ "version": "1.0.2",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=10"
+ "dependencies": {
+ "expand-tilde": "^2.0.2",
+ "homedir-polyfill": "^1.0.1",
+ "ini": "^1.3.4",
+ "is-windows": "^1.0.1",
+ "which": "^1.2.14"
},
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/jest-config/node_modules/react-is": {
- "version": "18.2.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/jest-config/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/findup-sync/node_modules/resolve-dir": {
+ "version": "1.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
+ "expand-tilde": "^2.0.0",
+ "global-modules": "^1.0.0"
},
"engines": {
- "node": ">=8"
+ "node": ">=0.10.0"
}
},
- "node_modules/jest-diff": {
- "version": "28.1.3",
+ "node_modules/findup-sync/node_modules/which": {
+ "version": "1.3.1",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "chalk": "^4.0.0",
- "diff-sequences": "^28.1.1",
- "jest-get-type": "^28.0.2",
- "pretty-format": "^28.1.3"
+ "isexe": "^2.0.0"
},
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "bin": {
+ "which": "bin/which"
}
},
- "node_modules/jest-diff/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/fined": {
+ "version": "2.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
+ "expand-tilde": "^2.0.2",
+ "is-plain-object": "^5.0.0",
+ "object.defaults": "^1.1.0",
+ "object.pick": "^1.3.0",
+ "parse-filepath": "^1.0.2"
},
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "node": ">= 10.13.0"
}
},
- "node_modules/jest-diff/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/flagged-respawn": {
+ "version": "2.0.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "node": ">= 10.13.0"
}
},
- "node_modules/jest-diff/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/flat": {
+ "version": "5.0.2",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
+ "license": "BSD-3-Clause",
+ "bin": {
+ "flat": "cli.js"
}
},
- "node_modules/jest-diff/node_modules/pretty-format": {
- "version": "28.1.3",
+ "node_modules/flat-cache": {
+ "version": "3.2.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@jest/schemas": "^28.1.3",
- "ansi-regex": "^5.0.1",
- "ansi-styles": "^5.0.0",
- "react-is": "^18.0.0"
+ "flatted": "^3.2.9",
+ "keyv": "^4.5.3",
+ "rimraf": "^3.0.2"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": "^10.12.0 || >=12.0.0"
}
},
- "node_modules/jest-diff/node_modules/pretty-format/node_modules/ansi-styles": {
- "version": "5.2.0",
+ "node_modules/flatted": {
+ "version": "3.3.1",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/flow-parser": {
+ "version": "0.233.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "node": ">=0.4.0"
}
},
- "node_modules/jest-diff/node_modules/react-is": {
- "version": "18.2.0",
+ "node_modules/fn.name": {
+ "version": "1.1.0",
"dev": true,
"license": "MIT"
},
- "node_modules/jest-diff/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/follow-redirects": {
+ "version": "1.15.6",
"dev": true,
+ "funding": [
+ {
+ "type": "individual",
+ "url": "https://github.com/sponsors/RubenVerborgh"
+ }
+ ],
"license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
"engines": {
- "node": ">=8"
+ "node": ">=4.0"
+ },
+ "peerDependenciesMeta": {
+ "debug": {
+ "optional": true
+ }
}
},
- "node_modules/jest-docblock": {
- "version": "28.1.1",
+ "node_modules/for-each": {
+ "version": "0.3.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "detect-newline": "^3.0.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "is-callable": "^1.1.3"
}
},
- "node_modules/jest-each": {
- "version": "28.1.3",
+ "node_modules/for-in": {
+ "version": "1.0.2",
"dev": true,
"license": "MIT",
- "dependencies": {
- "@jest/types": "^28.1.3",
- "chalk": "^4.0.0",
- "jest-get-type": "^28.0.2",
- "jest-util": "^28.1.3",
- "pretty-format": "^28.1.3"
- },
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": ">=0.10.0"
}
},
- "node_modules/jest-each/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/for-own": {
+ "version": "1.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
+ "for-in": "^1.0.1"
},
"engines": {
- "node": ">=8"
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/foreground-child": {
+ "version": "2.0.0",
+ "license": "ISC",
+ "dependencies": {
+ "cross-spawn": "^7.0.0",
+ "signal-exit": "^3.0.2"
},
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "engines": {
+ "node": ">=8.0.0"
}
},
- "node_modules/jest-each/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/forever-agent": {
+ "version": "0.6.1",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": "*"
+ }
+ },
+ "node_modules/fork-ts-checker-webpack-plugin": {
+ "version": "8.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
+ "@babel/code-frame": "^7.16.7",
+ "chalk": "^4.1.2",
+ "chokidar": "^3.5.3",
+ "cosmiconfig": "^7.0.1",
+ "deepmerge": "^4.2.2",
+ "fs-extra": "^10.0.0",
+ "memfs": "^3.4.1",
+ "minimatch": "^3.0.4",
+ "node-abort-controller": "^3.0.1",
+ "schema-utils": "^3.1.1",
+ "semver": "^7.3.5",
+ "tapable": "^2.2.1"
},
"engines": {
- "node": ">=10"
+ "node": ">=12.13.0",
+ "yarn": ">=1.0.0"
},
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "peerDependencies": {
+ "typescript": ">3.6.0",
+ "webpack": "^5.11.0"
}
},
- "node_modules/jest-each/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": {
+ "version": "10.1.0",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
"engines": {
- "node": ">=8"
+ "node": ">=12"
}
},
- "node_modules/jest-each/node_modules/pretty-format": {
- "version": "28.1.3",
+ "node_modules/fork-ts-checker-webpack-plugin/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "@jest/schemas": "^28.1.3",
- "ansi-regex": "^5.0.1",
- "ansi-styles": "^5.0.0",
- "react-is": "^18.0.0"
+ "yallist": "^4.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": ">=10"
}
},
- "node_modules/jest-each/node_modules/pretty-format/node_modules/ansi-styles": {
- "version": "5.2.0",
+ "node_modules/fork-ts-checker-webpack-plugin/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
+ "dependencies": {
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
+ },
"engines": {
"node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/jest-each/node_modules/react-is": {
- "version": "18.2.0",
+ "node_modules/fork-ts-checker-webpack-plugin/node_modules/yallist": {
+ "version": "4.0.0",
"dev": true,
- "license": "MIT"
+ "license": "ISC"
},
- "node_modules/jest-each/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/form-data": {
+ "version": "4.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.8",
+ "mime-types": "^2.1.12"
},
"engines": {
- "node": ">=8"
+ "node": ">= 6"
}
},
- "node_modules/jest-environment-jsdom": {
- "version": "28.1.3",
+ "node_modules/forwarded": {
+ "version": "0.2.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "@jest/environment": "^28.1.3",
- "@jest/fake-timers": "^28.1.3",
- "@jest/types": "^28.1.3",
- "@types/jsdom": "^16.2.4",
- "@types/node": "*",
- "jest-mock": "^28.1.3",
- "jest-util": "^28.1.3",
- "jsdom": "^19.0.0"
- },
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": ">= 0.6"
}
},
- "node_modules/jest-environment-jsdom/node_modules/jest-mock": {
- "version": "28.1.3",
+ "node_modules/fraction.js": {
+ "version": "4.3.7",
"dev": true,
"license": "MIT",
- "dependencies": {
- "@jest/types": "^28.1.3",
- "@types/node": "*"
- },
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": "*"
+ },
+ "funding": {
+ "type": "patreon",
+ "url": "https://github.com/sponsors/rawify"
}
},
- "node_modules/jest-environment-node": {
- "version": "28.1.3",
+ "node_modules/fresh": {
+ "version": "0.5.2",
"dev": true,
"license": "MIT",
- "dependencies": {
- "@jest/environment": "^28.1.3",
- "@jest/fake-timers": "^28.1.3",
- "@jest/types": "^28.1.3",
- "@types/node": "*",
- "jest-mock": "^28.1.3",
- "jest-util": "^28.1.3"
- },
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": ">= 0.6"
}
},
- "node_modules/jest-environment-node/node_modules/jest-mock": {
- "version": "28.1.3",
+ "node_modules/fromentries": {
+ "version": "1.3.2",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/fs-constants": {
+ "version": "1.0.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/fs-exists-sync": {
+ "version": "0.1.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "@jest/types": "^28.1.3",
- "@types/node": "*"
- },
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": ">=0.10.0"
}
},
- "node_modules/jest-get-type": {
- "version": "28.0.2",
+ "node_modules/fs-extra": {
+ "version": "11.2.0",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": ">=14.14"
}
},
- "node_modules/jest-haste-map": {
- "version": "28.1.3",
+ "node_modules/fs-minipass": {
+ "version": "2.1.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "@jest/types": "^28.1.3",
- "@types/graceful-fs": "^4.1.3",
- "@types/node": "*",
- "anymatch": "^3.0.3",
- "fb-watchman": "^2.0.0",
- "graceful-fs": "^4.2.9",
- "jest-regex-util": "^28.0.2",
- "jest-util": "^28.1.3",
- "jest-worker": "^28.1.3",
- "micromatch": "^4.0.4",
- "walker": "^1.0.8"
+ "minipass": "^3.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
- },
- "optionalDependencies": {
- "fsevents": "^2.3.2"
+ "node": ">= 8"
}
},
- "node_modules/jest-haste-map/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/fs-monkey": {
+ "version": "1.0.5",
+ "dev": true,
+ "license": "Unlicense"
+ },
+ "node_modules/fs.realpath": {
+ "version": "1.0.0",
+ "license": "ISC"
+ },
+ "node_modules/fsevents": {
+ "version": "2.3.3",
"dev": true,
"license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
"engines": {
- "node": ">=8"
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
}
},
- "node_modules/jest-haste-map/node_modules/jest-worker": {
- "version": "28.1.3",
+ "node_modules/function-bind": {
+ "version": "1.1.2",
"dev": true,
"license": "MIT",
- "dependencies": {
- "@types/node": "*",
- "merge-stream": "^2.0.0",
- "supports-color": "^8.0.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/jest-haste-map/node_modules/jest-worker/node_modules/supports-color": {
- "version": "8.1.1",
+ "node_modules/function.prototype.name": {
+ "version": "1.1.6",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
+ "functions-have-names": "^1.2.3"
},
"engines": {
- "node": ">=10"
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://github.com/chalk/supports-color?sponsor=1"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/jest-junit": {
- "version": "14.0.1",
+ "node_modules/functional-red-black-tree": {
+ "version": "1.0.1",
"dev": true,
- "license": "Apache-2.0",
- "dependencies": {
- "mkdirp": "^1.0.4",
- "strip-ansi": "^6.0.1",
- "uuid": "^8.3.2",
- "xml": "^1.0.1"
- },
- "engines": {
- "node": ">=10.12.0"
- }
+ "license": "MIT"
},
- "node_modules/jest-leak-detector": {
- "version": "28.1.3",
+ "node_modules/functions-have-names": {
+ "version": "1.2.3",
"dev": true,
"license": "MIT",
- "dependencies": {
- "jest-get-type": "^28.0.2",
- "pretty-format": "^28.1.3"
- },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/fuse.js": {
+ "version": "6.6.2",
+ "license": "Apache-2.0",
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": ">=10"
}
},
- "node_modules/jest-leak-detector/node_modules/ansi-styles": {
- "version": "5.2.0",
+ "node_modules/fuzzy": {
+ "version": "0.1.3",
"dev": true,
- "license": "MIT",
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "node": ">= 0.6.0"
}
},
- "node_modules/jest-leak-detector/node_modules/pretty-format": {
- "version": "28.1.3",
+ "node_modules/gauge": {
+ "version": "4.0.4",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "@jest/schemas": "^28.1.3",
- "ansi-regex": "^5.0.1",
- "ansi-styles": "^5.0.0",
- "react-is": "^18.0.0"
+ "aproba": "^1.0.3 || ^2.0.0",
+ "color-support": "^1.1.3",
+ "console-control-strings": "^1.1.0",
+ "has-unicode": "^2.0.1",
+ "signal-exit": "^3.0.7",
+ "string-width": "^4.2.3",
+ "strip-ansi": "^6.0.1",
+ "wide-align": "^1.1.5"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/jest-leak-detector/node_modules/react-is": {
- "version": "18.2.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/jest-matcher-utils": {
- "version": "28.1.3",
- "dev": true,
+ "node_modules/gensync": {
+ "version": "1.0.0-beta.2",
"license": "MIT",
- "dependencies": {
- "chalk": "^4.0.0",
- "jest-diff": "^28.1.3",
- "jest-get-type": "^28.0.2",
- "pretty-format": "^28.1.3"
- },
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": ">=6.9.0"
}
},
- "node_modules/jest-matcher-utils/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/get-caller-file": {
+ "version": "2.0.5",
+ "license": "ISC",
+ "engines": {
+ "node": "6.* || 8.* || >= 10.*"
+ }
+ },
+ "node_modules/get-intrinsic": {
+ "version": "1.2.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
+ "es-errors": "^1.3.0",
+ "function-bind": "^1.1.2",
+ "has-proto": "^1.0.1",
+ "has-symbols": "^1.0.3",
+ "hasown": "^2.0.0"
},
"engines": {
- "node": ">=8"
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/jest-matcher-utils/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/get-nonce": {
+ "version": "1.0.1",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/get-npm-tarball-url": {
+ "version": "2.1.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "node": ">=12.17"
}
},
- "node_modules/jest-matcher-utils/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/get-own-enumerable-property-symbols": {
+ "version": "3.0.2",
+ "license": "ISC"
+ },
+ "node_modules/get-package-type": {
+ "version": "0.1.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=8"
+ "node": ">=8.0.0"
}
},
- "node_modules/jest-matcher-utils/node_modules/pretty-format": {
- "version": "28.1.3",
+ "node_modules/get-pkg-repo": {
+ "version": "4.2.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@jest/schemas": "^28.1.3",
- "ansi-regex": "^5.0.1",
- "ansi-styles": "^5.0.0",
- "react-is": "^18.0.0"
+ "@hutson/parse-repository-url": "^3.0.0",
+ "hosted-git-info": "^4.0.0",
+ "through2": "^2.0.0",
+ "yargs": "^16.2.0"
+ },
+ "bin": {
+ "get-pkg-repo": "src/cli.js"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": ">=6.9.0"
}
},
- "node_modules/jest-matcher-utils/node_modules/pretty-format/node_modules/ansi-styles": {
- "version": "5.2.0",
+ "node_modules/get-pkg-repo/node_modules/isarray": {
+ "version": "1.0.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/get-pkg-repo/node_modules/readable-stream": {
+ "version": "2.3.8",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "dependencies": {
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
}
},
- "node_modules/jest-matcher-utils/node_modules/react-is": {
- "version": "18.2.0",
+ "node_modules/get-pkg-repo/node_modules/safe-buffer": {
+ "version": "5.1.2",
"dev": true,
"license": "MIT"
},
- "node_modules/jest-matcher-utils/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/get-pkg-repo/node_modules/string_decoder": {
+ "version": "1.1.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
+ "safe-buffer": "~5.1.0"
}
},
- "node_modules/jest-message-util": {
- "version": "28.1.3",
+ "node_modules/get-pkg-repo/node_modules/through2": {
+ "version": "2.0.5",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/code-frame": "^7.12.13",
- "@jest/types": "^28.1.3",
- "@types/stack-utils": "^2.0.0",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.9",
- "micromatch": "^4.0.4",
- "pretty-format": "^28.1.3",
- "slash": "^3.0.0",
- "stack-utils": "^2.0.3"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "readable-stream": "~2.3.6",
+ "xtend": "~4.0.1"
}
},
- "node_modules/jest-message-util/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/get-pkg-repo/node_modules/yargs": {
+ "version": "16.2.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
+ "cliui": "^7.0.2",
+ "escalade": "^3.1.1",
+ "get-caller-file": "^2.0.5",
+ "require-directory": "^2.1.1",
+ "string-width": "^4.2.0",
+ "y18n": "^5.0.5",
+ "yargs-parser": "^20.2.2"
},
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "node": ">=10"
}
},
- "node_modules/jest-message-util/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/get-port": {
+ "version": "5.1.1",
"dev": true,
"license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
"engines": {
- "node": ">=10"
+ "node": ">=8"
},
"funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/jest-message-util/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/get-stream": {
+ "version": "6.0.1",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=8"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/jest-message-util/node_modules/pretty-format": {
- "version": "28.1.3",
+ "node_modules/get-symbol-description": {
+ "version": "1.0.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "@jest/schemas": "^28.1.3",
- "ansi-regex": "^5.0.1",
- "ansi-styles": "^5.0.0",
- "react-is": "^18.0.0"
+ "call-bind": "^1.0.5",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.4"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/jest-message-util/node_modules/pretty-format/node_modules/ansi-styles": {
- "version": "5.2.0",
+ "node_modules/get-tsconfig": {
+ "version": "4.7.3",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=10"
+ "dependencies": {
+ "resolve-pkg-maps": "^1.0.0"
},
"funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1"
}
},
- "node_modules/jest-message-util/node_modules/react-is": {
- "version": "18.2.0",
+ "node_modules/getpass": {
+ "version": "0.1.7",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "dependencies": {
+ "assert-plus": "^1.0.0"
+ }
},
- "node_modules/jest-message-util/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/giget": {
+ "version": "1.2.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
+ "citty": "^0.1.6",
+ "consola": "^3.2.3",
+ "defu": "^6.1.4",
+ "node-fetch-native": "^1.6.3",
+ "nypm": "^0.3.8",
+ "ohash": "^1.1.3",
+ "pathe": "^1.1.2",
+ "tar": "^6.2.0"
},
- "engines": {
- "node": ">=8"
+ "bin": {
+ "giget": "dist/cli.mjs"
}
},
- "node_modules/jest-mock": {
- "version": "27.5.1",
+ "node_modules/git-config-path": {
+ "version": "2.0.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "@jest/types": "^27.5.1",
- "@types/node": "*"
- },
"engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ "node": ">=4"
}
},
- "node_modules/jest-mock/node_modules/@jest/types": {
- "version": "27.5.1",
+ "node_modules/git-raw-commits": {
+ "version": "2.0.11",
"dev": true,
"license": "MIT",
"dependencies": {
- "@types/istanbul-lib-coverage": "^2.0.0",
- "@types/istanbul-reports": "^3.0.0",
- "@types/node": "*",
- "@types/yargs": "^16.0.0",
- "chalk": "^4.0.0"
+ "dargs": "^7.0.0",
+ "lodash": "^4.17.15",
+ "meow": "^8.0.0",
+ "split2": "^3.0.0",
+ "through2": "^4.0.0"
+ },
+ "bin": {
+ "git-raw-commits": "cli.js"
},
"engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ "node": ">=10"
}
},
- "node_modules/jest-mock/node_modules/@types/yargs": {
- "version": "16.0.5",
+ "node_modules/git-remote-origin-url": {
+ "version": "2.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@types/yargs-parser": "*"
+ "gitconfiglocal": "^1.0.0",
+ "pify": "^2.3.0"
+ },
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/jest-mock/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/git-remote-origin-url/node_modules/pify": {
+ "version": "2.3.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "node": ">=0.10.0"
}
},
- "node_modules/jest-mock/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/git-semver-tags": {
+ "version": "4.1.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
+ "meow": "^8.0.0",
+ "semver": "^6.0.0"
+ },
+ "bin": {
+ "git-semver-tags": "cli.js"
},
"engines": {
"node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
}
},
- "node_modules/jest-mock/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/git-up": {
+ "version": "7.0.0",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "dependencies": {
+ "is-ssh": "^1.4.0",
+ "parse-url": "^8.1.0"
}
},
- "node_modules/jest-mock/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/git-url-parse": {
+ "version": "13.1.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
+ "git-up": "^7.0.0"
}
},
- "node_modules/jest-playwright-preset": {
- "version": "2.0.0",
+ "node_modules/gitconfiglocal": {
+ "version": "1.0.0",
"dev": true,
- "license": "MIT",
+ "license": "BSD",
"dependencies": {
- "expect-playwright": "^0.8.0",
- "jest-process-manager": "^0.3.1",
- "nyc": "^15.1.0",
- "playwright-core": ">=1.2.0",
- "rimraf": "^3.0.2",
- "uuid": "^8.3.2"
- },
- "peerDependencies": {
- "jest": "^28.0.0",
- "jest-circus": "^28.0.0",
- "jest-environment-node": "^28.0.0",
- "jest-runner": "^28.0.0"
+ "ini": "^1.3.2"
}
},
- "node_modules/jest-pnp-resolver": {
- "version": "1.2.3",
+ "node_modules/github-from-package": {
+ "version": "0.0.0",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
+ "license": "MIT"
+ },
+ "node_modules/github-slugger": {
+ "version": "1.5.0",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/glob": {
+ "version": "7.2.3",
+ "license": "ISC",
+ "dependencies": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.1.1",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
},
- "peerDependencies": {
- "jest-resolve": "*"
+ "engines": {
+ "node": "*"
},
- "peerDependenciesMeta": {
- "jest-resolve": {
- "optional": true
- }
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/jest-process-manager": {
- "version": "0.3.1",
+ "node_modules/glob-parent": {
+ "version": "6.0.2",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "@types/wait-on": "^5.2.0",
- "chalk": "^4.1.0",
- "cwd": "^0.10.0",
- "exit": "^0.1.2",
- "find-process": "^1.4.4",
- "prompts": "^2.4.1",
- "signal-exit": "^3.0.3",
- "spawnd": "^5.0.0",
- "tree-kill": "^1.2.2",
- "wait-on": "^5.3.0"
+ "is-glob": "^4.0.3"
+ },
+ "engines": {
+ "node": ">=10.13.0"
}
},
- "node_modules/jest-process-manager/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/glob-to-regexp": {
+ "version": "0.4.1",
+ "license": "BSD-2-Clause"
+ },
+ "node_modules/global-dirs": {
+ "version": "2.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
+ "ini": "1.3.7"
},
"engines": {
"node": ">=8"
},
"funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/jest-process-manager/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/global-modules": {
+ "version": "0.2.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
+ "global-prefix": "^0.1.4",
+ "is-windows": "^0.2.0"
},
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "node": ">=0.10.0"
}
},
- "node_modules/jest-process-manager/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/global-modules/node_modules/is-windows": {
+ "version": "0.2.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=8"
+ "node": ">=0.10.0"
}
},
- "node_modules/jest-process-manager/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/global-prefix": {
+ "version": "0.1.5",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
+ "homedir-polyfill": "^1.0.0",
+ "ini": "^1.3.4",
+ "is-windows": "^0.2.0",
+ "which": "^1.2.12"
},
"engines": {
- "node": ">=8"
+ "node": ">=0.10.0"
}
},
- "node_modules/jest-regex-util": {
- "version": "28.0.2",
+ "node_modules/global-prefix/node_modules/is-windows": {
+ "version": "0.2.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": ">=0.10.0"
}
},
- "node_modules/jest-resolve": {
- "version": "28.1.3",
+ "node_modules/global-prefix/node_modules/which": {
+ "version": "1.3.1",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.9",
- "jest-haste-map": "^28.1.3",
- "jest-pnp-resolver": "^1.2.2",
- "jest-util": "^28.1.3",
- "jest-validate": "^28.1.3",
- "resolve": "^1.20.0",
- "resolve.exports": "^1.1.0",
- "slash": "^3.0.0"
+ "isexe": "^2.0.0"
},
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "bin": {
+ "which": "bin/which"
}
},
- "node_modules/jest-resolve-dependencies": {
- "version": "28.1.3",
+ "node_modules/globals": {
+ "version": "13.24.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "jest-regex-util": "^28.0.2",
- "jest-snapshot": "^28.1.3"
+ "type-fest": "^0.20.2"
+ },
+ "engines": {
+ "node": ">=8"
},
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/globals/node_modules/type-fest": {
+ "version": "0.20.2",
+ "dev": true,
+ "license": "(MIT OR CC0-1.0)",
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/jest-resolve/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/globalthis": {
+ "version": "1.0.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
+ "define-properties": "^1.1.3"
},
"engines": {
- "node": ">=8"
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/jest-resolve/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/globby": {
+ "version": "11.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
+ "array-union": "^2.1.0",
+ "dir-glob": "^3.0.1",
+ "fast-glob": "^3.2.9",
+ "ignore": "^5.2.0",
+ "merge2": "^1.4.1",
+ "slash": "^3.0.0"
},
"engines": {
"node": ">=10"
},
"funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/jest-resolve/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/gopd": {
+ "version": "1.0.1",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "dependencies": {
+ "get-intrinsic": "^1.1.3"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/jest-resolve/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/got": {
+ "version": "9.6.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
+ "@sindresorhus/is": "^0.14.0",
+ "@szmarczak/http-timer": "^1.1.2",
+ "cacheable-request": "^6.0.0",
+ "decompress-response": "^3.3.0",
+ "duplexer3": "^0.1.4",
+ "get-stream": "^4.1.0",
+ "lowercase-keys": "^1.0.1",
+ "mimic-response": "^1.0.1",
+ "p-cancelable": "^1.0.0",
+ "to-readable-stream": "^1.0.0",
+ "url-parse-lax": "^3.0.0"
},
"engines": {
- "node": ">=8"
+ "node": ">=8.6"
}
},
- "node_modules/jest-runner": {
- "version": "28.1.3",
+ "node_modules/got/node_modules/get-stream": {
+ "version": "4.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@jest/console": "^28.1.3",
- "@jest/environment": "^28.1.3",
- "@jest/test-result": "^28.1.3",
- "@jest/transform": "^28.1.3",
- "@jest/types": "^28.1.3",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "emittery": "^0.10.2",
- "graceful-fs": "^4.2.9",
- "jest-docblock": "^28.1.1",
- "jest-environment-node": "^28.1.3",
- "jest-haste-map": "^28.1.3",
- "jest-leak-detector": "^28.1.3",
- "jest-message-util": "^28.1.3",
- "jest-resolve": "^28.1.3",
- "jest-runtime": "^28.1.3",
- "jest-util": "^28.1.3",
- "jest-watcher": "^28.1.3",
- "jest-worker": "^28.1.3",
- "p-limit": "^3.1.0",
- "source-map-support": "0.5.13"
+ "pump": "^3.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": ">=6"
}
},
- "node_modules/jest-runner/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/graceful-fs": {
+ "version": "4.2.11",
+ "license": "ISC"
+ },
+ "node_modules/graphemer": {
+ "version": "1.4.0",
"dev": true,
+ "license": "MIT"
+ },
+ "node_modules/gray-matter": {
+ "version": "4.0.3",
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
+ "js-yaml": "^3.13.1",
+ "kind-of": "^6.0.2",
+ "section-matter": "^1.0.0",
+ "strip-bom-string": "^1.0.0"
},
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "node": ">=6.0"
}
},
- "node_modules/jest-runner/node_modules/chalk": {
- "version": "4.1.2",
- "dev": true,
+ "node_modules/gray-matter/node_modules/argparse": {
+ "version": "1.0.10",
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "sprintf-js": "~1.0.2"
}
},
- "node_modules/jest-runner/node_modules/has-flag": {
- "version": "4.0.0",
- "dev": true,
+ "node_modules/gray-matter/node_modules/js-yaml": {
+ "version": "3.14.1",
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "dependencies": {
+ "argparse": "^1.0.7",
+ "esprima": "^4.0.0"
+ },
+ "bin": {
+ "js-yaml": "bin/js-yaml.js"
}
},
- "node_modules/jest-runner/node_modules/jest-worker": {
- "version": "28.1.3",
+ "node_modules/gray-matter/node_modules/sprintf-js": {
+ "version": "1.0.3",
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/gunzip-maybe": {
+ "version": "1.4.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "@types/node": "*",
- "merge-stream": "^2.0.0",
- "supports-color": "^8.0.0"
+ "browserify-zlib": "^0.1.4",
+ "is-deflate": "^1.0.0",
+ "is-gzip": "^1.0.0",
+ "peek-stream": "^1.1.0",
+ "pumpify": "^1.3.3",
+ "through2": "^2.0.3"
},
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "bin": {
+ "gunzip-maybe": "bin.js"
}
},
- "node_modules/jest-runner/node_modules/jest-worker/node_modules/supports-color": {
- "version": "8.1.1",
+ "node_modules/gunzip-maybe/node_modules/browserify-zlib": {
+ "version": "0.1.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/supports-color?sponsor=1"
+ "pako": "~0.2.0"
}
},
- "node_modules/jest-runner/node_modules/source-map": {
- "version": "0.6.1",
+ "node_modules/gunzip-maybe/node_modules/isarray": {
+ "version": "1.0.0",
"dev": true,
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.10.0"
- }
+ "license": "MIT"
},
- "node_modules/jest-runner/node_modules/source-map-support": {
- "version": "0.5.13",
+ "node_modules/gunzip-maybe/node_modules/pako": {
+ "version": "0.2.9",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/gunzip-maybe/node_modules/readable-stream": {
+ "version": "2.3.8",
"dev": true,
"license": "MIT",
"dependencies": {
- "buffer-from": "^1.0.0",
- "source-map": "^0.6.0"
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
}
},
- "node_modules/jest-runner/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/gunzip-maybe/node_modules/safe-buffer": {
+ "version": "5.1.2",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/gunzip-maybe/node_modules/string_decoder": {
+ "version": "1.1.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
+ "safe-buffer": "~5.1.0"
}
},
- "node_modules/jest-runtime": {
- "version": "28.1.3",
+ "node_modules/gunzip-maybe/node_modules/through2": {
+ "version": "2.0.5",
"dev": true,
"license": "MIT",
"dependencies": {
- "@jest/environment": "^28.1.3",
- "@jest/fake-timers": "^28.1.3",
- "@jest/globals": "^28.1.3",
- "@jest/source-map": "^28.1.2",
- "@jest/test-result": "^28.1.3",
- "@jest/transform": "^28.1.3",
- "@jest/types": "^28.1.3",
- "chalk": "^4.0.0",
- "cjs-module-lexer": "^1.0.0",
- "collect-v8-coverage": "^1.0.0",
- "execa": "^5.0.0",
- "glob": "^7.1.3",
- "graceful-fs": "^4.2.9",
- "jest-haste-map": "^28.1.3",
- "jest-message-util": "^28.1.3",
- "jest-mock": "^28.1.3",
- "jest-regex-util": "^28.0.2",
- "jest-resolve": "^28.1.3",
- "jest-snapshot": "^28.1.3",
- "jest-util": "^28.1.3",
- "slash": "^3.0.0",
- "strip-bom": "^4.0.0"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "readable-stream": "~2.3.6",
+ "xtend": "~4.0.1"
}
},
- "node_modules/jest-runtime/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/gzip-size": {
+ "version": "6.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
+ "duplexer": "^0.1.2"
},
"engines": {
- "node": ">=8"
+ "node": ">=10"
},
"funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/jest-runtime/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/handlebars": {
+ "version": "4.7.8",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
+ "minimist": "^1.2.5",
+ "neo-async": "^2.6.2",
+ "source-map": "^0.6.1",
+ "wordwrap": "^1.0.0"
+ },
+ "bin": {
+ "handlebars": "bin/handlebars"
},
"engines": {
- "node": ">=10"
+ "node": ">=0.4.7"
},
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "optionalDependencies": {
+ "uglify-js": "^3.1.4"
}
},
- "node_modules/jest-runtime/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/handlebars/node_modules/source-map": {
+ "version": "0.6.1",
"dev": true,
- "license": "MIT",
+ "license": "BSD-3-Clause",
"engines": {
- "node": ">=8"
+ "node": ">=0.10.0"
}
},
- "node_modules/jest-runtime/node_modules/jest-mock": {
- "version": "28.1.3",
+ "node_modules/har-schema": {
+ "version": "2.0.0",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "@jest/types": "^28.1.3",
- "@types/node": "*"
- },
+ "license": "ISC",
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": ">=4"
}
},
- "node_modules/jest-runtime/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/har-validator": {
+ "version": "5.1.5",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
+ "ajv": "^6.12.3",
+ "har-schema": "^2.0.0"
},
"engines": {
- "node": ">=8"
+ "node": ">=6"
}
},
- "node_modules/jest-serializer-html": {
- "version": "7.1.0",
+ "node_modules/hard-rejection": {
+ "version": "2.1.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "diffable-html": "^4.1.0"
+ "engines": {
+ "node": ">=6"
}
},
- "node_modules/jest-snapshot": {
- "version": "28.1.3",
+ "node_modules/has": {
+ "version": "1.0.4",
"dev": true,
"license": "MIT",
- "dependencies": {
- "@babel/core": "^7.11.6",
- "@babel/generator": "^7.7.2",
- "@babel/plugin-syntax-typescript": "^7.7.2",
- "@babel/traverse": "^7.7.2",
- "@babel/types": "^7.3.3",
- "@jest/expect-utils": "^28.1.3",
- "@jest/transform": "^28.1.3",
- "@jest/types": "^28.1.3",
- "@types/babel__traverse": "^7.0.6",
- "@types/prettier": "^2.1.5",
- "babel-preset-current-node-syntax": "^1.0.0",
- "chalk": "^4.0.0",
- "expect": "^28.1.3",
- "graceful-fs": "^4.2.9",
- "jest-diff": "^28.1.3",
- "jest-get-type": "^28.0.2",
- "jest-haste-map": "^28.1.3",
- "jest-matcher-utils": "^28.1.3",
- "jest-message-util": "^28.1.3",
- "jest-util": "^28.1.3",
- "natural-compare": "^1.4.0",
- "pretty-format": "^28.1.3",
- "semver": "^7.3.5"
- },
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": ">= 0.4.0"
}
},
- "node_modules/jest-snapshot/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/has-bigints": {
+ "version": "1.0.2",
"dev": true,
"license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-flag": {
+ "version": "4.0.0",
+ "license": "MIT",
"engines": {
"node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/jest-snapshot/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/has-property-descriptors": {
+ "version": "1.0.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
+ "es-define-property": "^1.0.0"
},
"funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/jest-snapshot/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/has-proto": {
+ "version": "1.0.3",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=8"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/jest-snapshot/node_modules/pretty-format": {
- "version": "28.1.3",
+ "node_modules/has-symbols": {
+ "version": "1.0.3",
"dev": true,
"license": "MIT",
- "dependencies": {
- "@jest/schemas": "^28.1.3",
- "ansi-regex": "^5.0.1",
- "ansi-styles": "^5.0.0",
- "react-is": "^18.0.0"
- },
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/jest-snapshot/node_modules/pretty-format/node_modules/ansi-styles": {
- "version": "5.2.0",
+ "node_modules/has-tostringtag": {
+ "version": "1.0.2",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "has-symbols": "^1.0.3"
+ },
"engines": {
- "node": ">=10"
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/jest-snapshot/node_modules/react-is": {
- "version": "18.2.0",
+ "node_modules/has-unicode": {
+ "version": "2.0.1",
"dev": true,
- "license": "MIT"
+ "license": "ISC"
},
- "node_modules/jest-snapshot/node_modules/semver": {
- "version": "7.5.4",
+ "node_modules/has-yarn": {
+ "version": "2.1.0",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
+ "license": "MIT",
"engines": {
- "node": ">=10"
+ "node": ">=8"
}
},
- "node_modules/jest-snapshot/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/hash-base": {
+ "version": "3.0.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.0.1"
},
"engines": {
- "node": ">=8"
+ "node": ">=4"
}
},
- "node_modules/jest-util": {
- "version": "28.1.3",
+ "node_modules/hash.js": {
+ "version": "1.1.7",
"dev": true,
"license": "MIT",
"dependencies": {
- "@jest/types": "^28.1.3",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "ci-info": "^3.2.0",
- "graceful-fs": "^4.2.9",
- "picomatch": "^2.2.3"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "inherits": "^2.0.3",
+ "minimalistic-assert": "^1.0.1"
}
},
- "node_modules/jest-util/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/hasha": {
+ "version": "5.2.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
+ "is-stream": "^2.0.0",
+ "type-fest": "^0.8.0"
},
"engines": {
"node": ">=8"
},
"funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/jest-util/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/hasha/node_modules/type-fest": {
+ "version": "0.8.1",
+ "dev": true,
+ "license": "(MIT OR CC0-1.0)",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/hasown": {
+ "version": "2.0.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
+ "function-bind": "^1.1.2"
},
"engines": {
- "node": ">=10"
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/hast-util-to-estree": {
+ "version": "2.3.3",
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree": "^1.0.0",
+ "@types/estree-jsx": "^1.0.0",
+ "@types/hast": "^2.0.0",
+ "@types/unist": "^2.0.0",
+ "comma-separated-tokens": "^2.0.0",
+ "estree-util-attach-comments": "^2.0.0",
+ "estree-util-is-identifier-name": "^2.0.0",
+ "hast-util-whitespace": "^2.0.0",
+ "mdast-util-mdx-expression": "^1.0.0",
+ "mdast-util-mdxjs-esm": "^1.0.0",
+ "property-information": "^6.0.0",
+ "space-separated-tokens": "^2.0.0",
+ "style-to-object": "^0.4.1",
+ "unist-util-position": "^4.0.0",
+ "zwitch": "^2.0.0"
},
"funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/jest-util/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/hast-util-to-estree/node_modules/@types/estree": {
+ "version": "1.0.5",
+ "license": "MIT"
+ },
+ "node_modules/hast-util-to-string": {
+ "version": "1.0.4",
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/hast-util-whitespace": {
+ "version": "2.0.1",
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/he": {
+ "version": "1.2.0",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "bin": {
+ "he": "bin/he"
}
},
- "node_modules/jest-util/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/header-case": {
+ "version": "2.0.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
+ "capital-case": "^1.0.4",
+ "tslib": "^2.0.3"
}
},
- "node_modules/jest-validate": {
- "version": "28.1.3",
+ "node_modules/hmac-drbg": {
+ "version": "1.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@jest/types": "^28.1.3",
- "camelcase": "^6.2.0",
- "chalk": "^4.0.0",
- "jest-get-type": "^28.0.2",
- "leven": "^3.1.0",
- "pretty-format": "^28.1.3"
+ "hash.js": "^1.0.3",
+ "minimalistic-assert": "^1.0.0",
+ "minimalistic-crypto-utils": "^1.0.1"
+ }
+ },
+ "node_modules/homedir-polyfill": {
+ "version": "1.0.3",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "parse-passwd": "^1.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": ">=0.10.0"
}
},
- "node_modules/jest-validate/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/hosted-git-info": {
+ "version": "4.1.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "color-convert": "^2.0.1"
+ "lru-cache": "^6.0.0"
},
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "node": ">=10"
}
},
- "node_modules/jest-validate/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/hosted-git-info/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
+ "yallist": "^4.0.0"
},
"engines": {
"node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
}
},
- "node_modules/jest-validate/node_modules/has-flag": {
+ "node_modules/hosted-git-info/node_modules/yallist": {
"version": "4.0.0",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
+ "license": "ISC"
},
- "node_modules/jest-validate/node_modules/pretty-format": {
- "version": "28.1.3",
+ "node_modules/html-element-map": {
+ "version": "1.3.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@jest/schemas": "^28.1.3",
- "ansi-regex": "^5.0.1",
- "ansi-styles": "^5.0.0",
- "react-is": "^18.0.0"
+ "array.prototype.filter": "^1.0.0",
+ "call-bind": "^1.0.2"
},
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/jest-validate/node_modules/pretty-format/node_modules/ansi-styles": {
- "version": "5.2.0",
+ "node_modules/html-encoding-sniffer": {
+ "version": "1.0.2",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "dependencies": {
+ "whatwg-encoding": "^1.0.1"
}
},
- "node_modules/jest-validate/node_modules/react-is": {
- "version": "18.2.0",
+ "node_modules/html-entities": {
+ "version": "2.5.2",
"dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/mdevils"
+ },
+ {
+ "type": "patreon",
+ "url": "https://patreon.com/mdevils"
+ }
+ ],
"license": "MIT"
},
- "node_modules/jest-validate/node_modules/supports-color": {
- "version": "7.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
+ "node_modules/html-escaper": {
+ "version": "2.0.2",
+ "license": "MIT"
},
- "node_modules/jest-watch-typeahead": {
- "version": "2.2.2",
+ "node_modules/html-minifier-terser": {
+ "version": "6.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-escapes": "^6.0.0",
- "chalk": "^5.2.0",
- "jest-regex-util": "^29.0.0",
- "jest-watcher": "^29.0.0",
- "slash": "^5.0.0",
- "string-length": "^5.0.1",
- "strip-ansi": "^7.0.1"
+ "camel-case": "^4.1.2",
+ "clean-css": "^5.2.2",
+ "commander": "^8.3.0",
+ "he": "^1.2.0",
+ "param-case": "^3.0.4",
+ "relateurl": "^0.2.7",
+ "terser": "^5.10.0"
},
- "engines": {
- "node": "^14.17.0 || ^16.10.0 || >=18.0.0"
+ "bin": {
+ "html-minifier-terser": "cli.js"
},
- "peerDependencies": {
- "jest": "^27.0.0 || ^28.0.0 || ^29.0.0"
+ "engines": {
+ "node": ">=12"
}
},
- "node_modules/jest-watch-typeahead/node_modules/@jest/console": {
- "version": "29.6.2",
+ "node_modules/html-minifier-terser/node_modules/commander": {
+ "version": "8.3.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "@jest/types": "^29.6.1",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "jest-message-util": "^29.6.2",
- "jest-util": "^29.6.2",
- "slash": "^3.0.0"
- },
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": ">= 12"
}
},
- "node_modules/jest-watch-typeahead/node_modules/@jest/console/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/html-tags": {
+ "version": "3.3.1",
"dev": true,
"license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
"engines": {
"node": ">=8"
},
"funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/jest-watch-typeahead/node_modules/@jest/console/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/html-webpack-plugin": {
+ "version": "5.6.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
+ "@types/html-minifier-terser": "^6.0.0",
+ "html-minifier-terser": "^6.0.2",
+ "lodash": "^4.17.21",
+ "pretty-error": "^4.0.0",
+ "tapable": "^2.0.0"
},
"engines": {
- "node": ">=10"
+ "node": ">=10.13.0"
},
"funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "type": "opencollective",
+ "url": "https://opencollective.com/html-webpack-plugin"
+ },
+ "peerDependencies": {
+ "@rspack/core": "0.x || 1.x",
+ "webpack": "^5.20.0"
+ },
+ "peerDependenciesMeta": {
+ "@rspack/core": {
+ "optional": true
+ },
+ "webpack": {
+ "optional": true
+ }
}
},
- "node_modules/jest-watch-typeahead/node_modules/@jest/console/node_modules/slash": {
- "version": "3.0.0",
+ "node_modules/htmlparser2": {
+ "version": "8.0.2",
"dev": true,
+ "funding": [
+ "https://github.com/fb55/htmlparser2?sponsor=1",
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/fb55"
+ }
+ ],
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "dependencies": {
+ "domelementtype": "^2.3.0",
+ "domhandler": "^5.0.3",
+ "domutils": "^3.0.1",
+ "entities": "^4.4.0"
}
},
- "node_modules/jest-watch-typeahead/node_modules/@jest/schemas": {
- "version": "29.6.0",
+ "node_modules/http-cache-semantics": {
+ "version": "4.1.1",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "@sinclair/typebox": "^0.27.8"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
+ "license": "BSD-2-Clause"
},
- "node_modules/jest-watch-typeahead/node_modules/@jest/test-result": {
- "version": "29.6.2",
+ "node_modules/http-errors": {
+ "version": "2.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@jest/console": "^29.6.2",
- "@jest/types": "^29.6.1",
- "@types/istanbul-lib-coverage": "^2.0.0",
- "collect-v8-coverage": "^1.0.0"
+ "depd": "2.0.0",
+ "inherits": "2.0.4",
+ "setprototypeof": "1.2.0",
+ "statuses": "2.0.1",
+ "toidentifier": "1.0.1"
},
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": ">= 0.8"
}
},
- "node_modules/jest-watch-typeahead/node_modules/@jest/types": {
- "version": "29.6.1",
+ "node_modules/http-proxy-agent": {
+ "version": "5.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@jest/schemas": "^29.6.0",
- "@types/istanbul-lib-coverage": "^2.0.0",
- "@types/istanbul-reports": "^3.0.0",
- "@types/node": "*",
- "@types/yargs": "^17.0.8",
- "chalk": "^4.0.0"
+ "@tootallnate/once": "2",
+ "agent-base": "6",
+ "debug": "4"
},
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": ">= 6"
}
},
- "node_modules/jest-watch-typeahead/node_modules/@jest/types/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/http-signature": {
+ "version": "1.2.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
+ "assert-plus": "^1.0.0",
+ "jsprim": "^1.2.2",
+ "sshpk": "^1.7.0"
},
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "node": ">=0.8",
+ "npm": ">=1.3.7"
}
},
- "node_modules/jest-watch-typeahead/node_modules/@jest/types/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/http-status-codes": {
+ "version": "1.4.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/https": {
+ "version": "1.0.0",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/https-browserify": {
+ "version": "1.0.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/https-proxy-agent": {
+ "version": "5.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
+ "agent-base": "6",
+ "debug": "4"
},
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "node": ">= 6"
}
},
- "node_modules/jest-watch-typeahead/node_modules/@sinclair/typebox": {
- "version": "0.27.8",
+ "node_modules/human-signals": {
+ "version": "2.1.0",
"dev": true,
- "license": "MIT"
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=10.17.0"
+ }
},
- "node_modules/jest-watch-typeahead/node_modules/ansi-escapes": {
- "version": "6.2.0",
+ "node_modules/humanize-ms": {
+ "version": "1.2.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "type-fest": "^3.0.0"
- },
- "engines": {
- "node": ">=14.16"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "ms": "^2.0.0"
}
},
- "node_modules/jest-watch-typeahead/node_modules/ansi-regex": {
- "version": "6.0.1",
+ "node_modules/husky": {
+ "version": "7.0.4",
"dev": true,
"license": "MIT",
+ "bin": {
+ "husky": "lib/bin.js"
+ },
"engines": {
"node": ">=12"
},
"funding": {
- "url": "https://github.com/chalk/ansi-regex?sponsor=1"
+ "url": "https://github.com/sponsors/typicode"
}
},
- "node_modules/jest-watch-typeahead/node_modules/ansi-styles": {
- "version": "5.2.0",
+ "node_modules/iconv-lite": {
+ "version": "0.4.24",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=10"
+ "dependencies": {
+ "safer-buffer": ">= 2.1.2 < 3"
},
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/jest-watch-typeahead/node_modules/chalk": {
- "version": "5.3.0",
+ "node_modules/icss-utils": {
+ "version": "5.1.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"engines": {
- "node": "^12.17.0 || ^14.13 || >=16.0.0"
+ "node": "^10 || ^12 || >= 14"
},
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "peerDependencies": {
+ "postcss": "^8.1.0"
}
},
- "node_modules/jest-watch-typeahead/node_modules/emittery": {
- "version": "0.13.1",
+ "node_modules/ieee754": {
+ "version": "1.2.1",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/ignore": {
+ "version": "5.3.1",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sindresorhus/emittery?sponsor=1"
+ "node": ">= 4"
}
},
- "node_modules/jest-watch-typeahead/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/ignore-walk": {
+ "version": "5.0.1",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
+ "dependencies": {
+ "minimatch": "^5.0.1"
+ },
"engines": {
- "node": ">=8"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/jest-watch-typeahead/node_modules/jest-message-util": {
- "version": "29.6.2",
+ "node_modules/ignore-walk/node_modules/brace-expansion": {
+ "version": "2.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/code-frame": "^7.12.13",
- "@jest/types": "^29.6.1",
- "@types/stack-utils": "^2.0.0",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.9",
- "micromatch": "^4.0.4",
- "pretty-format": "^29.6.2",
- "slash": "^3.0.0",
- "stack-utils": "^2.0.3"
+ "balanced-match": "^1.0.0"
+ }
+ },
+ "node_modules/ignore-walk/node_modules/minimatch": {
+ "version": "5.1.6",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "brace-expansion": "^2.0.1"
},
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": ">=10"
}
},
- "node_modules/jest-watch-typeahead/node_modules/jest-message-util/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/image-size": {
+ "version": "1.1.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
+ "queue": "6.0.2"
},
- "engines": {
- "node": ">=8"
+ "bin": {
+ "image-size": "bin/image-size.js"
},
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "engines": {
+ "node": ">=16.x"
}
},
- "node_modules/jest-watch-typeahead/node_modules/jest-message-util/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/import-fresh": {
+ "version": "3.3.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
+ "parent-module": "^1.0.0",
+ "resolve-from": "^4.0.0"
},
"engines": {
- "node": ">=10"
+ "node": ">=6"
},
"funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/jest-watch-typeahead/node_modules/jest-message-util/node_modules/slash": {
- "version": "3.0.0",
+ "node_modules/import-fresh/node_modules/resolve-from": {
+ "version": "4.0.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=8"
+ "node": ">=4"
}
},
- "node_modules/jest-watch-typeahead/node_modules/jest-regex-util": {
- "version": "29.4.3",
+ "node_modules/import-from": {
+ "version": "3.0.0",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "resolve-from": "^5.0.0"
+ },
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": ">=8"
}
},
- "node_modules/jest-watch-typeahead/node_modules/jest-util": {
- "version": "29.6.2",
+ "node_modules/import-lazy": {
+ "version": "2.1.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "@jest/types": "^29.6.1",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "ci-info": "^3.2.0",
- "graceful-fs": "^4.2.9",
- "picomatch": "^2.2.3"
- },
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": ">=4"
}
},
- "node_modules/jest-watch-typeahead/node_modules/jest-util/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/import-local": {
+ "version": "3.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
+ "pkg-dir": "^4.2.0",
+ "resolve-cwd": "^3.0.0"
+ },
+ "bin": {
+ "import-local-fixture": "fixtures/cli.js"
},
"engines": {
"node": ">=8"
},
"funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/jest-watch-typeahead/node_modules/jest-util/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/import-local/node_modules/find-up": {
+ "version": "4.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
},
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "node": ">=8"
}
},
- "node_modules/jest-watch-typeahead/node_modules/jest-watcher": {
- "version": "29.6.2",
+ "node_modules/import-local/node_modules/locate-path": {
+ "version": "5.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@jest/test-result": "^29.6.2",
- "@jest/types": "^29.6.1",
- "@types/node": "*",
- "ansi-escapes": "^4.2.1",
- "chalk": "^4.0.0",
- "emittery": "^0.13.1",
- "jest-util": "^29.6.2",
- "string-length": "^4.0.1"
+ "p-locate": "^4.1.0"
},
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": ">=8"
}
},
- "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/ansi-escapes": {
- "version": "4.3.2",
+ "node_modules/import-local/node_modules/p-limit": {
+ "version": "2.3.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "type-fest": "^0.21.3"
+ "p-try": "^2.0.0"
},
"engines": {
- "node": ">=8"
+ "node": ">=6"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/ansi-regex": {
- "version": "5.0.1",
+ "node_modules/import-local/node_modules/p-locate": {
+ "version": "4.1.0",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "p-limit": "^2.2.0"
+ },
"engines": {
"node": ">=8"
}
},
- "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/import-local/node_modules/pkg-dir": {
+ "version": "4.2.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
+ "find-up": "^4.0.0"
},
"engines": {
"node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/imurmurhash": {
+ "version": "0.1.4",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.8.19"
+ }
+ },
+ "node_modules/indent-string": {
+ "version": "4.0.0",
"dev": true,
"license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/infer-owner": {
+ "version": "1.0.4",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/inflight": {
+ "version": "1.0.6",
+ "license": "ISC",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
+ "once": "^1.3.0",
+ "wrappy": "1"
+ }
+ },
+ "node_modules/inherits": {
+ "version": "2.0.4",
+ "license": "ISC"
+ },
+ "node_modules/ini": {
+ "version": "1.3.7",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/init-package-json": {
+ "version": "3.0.2",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "npm-package-arg": "^9.0.1",
+ "promzard": "^0.3.0",
+ "read": "^1.0.7",
+ "read-package-json": "^5.0.0",
+ "semver": "^7.3.5",
+ "validate-npm-package-license": "^3.0.4",
+ "validate-npm-package-name": "^4.0.0"
},
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/string-length": {
- "version": "4.0.2",
+ "node_modules/init-package-json/node_modules/hosted-git-info": {
+ "version": "5.2.1",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "char-regex": "^1.0.2",
- "strip-ansi": "^6.0.0"
+ "lru-cache": "^7.5.1"
},
"engines": {
- "node": ">=10"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/strip-ansi": {
- "version": "6.0.1",
+ "node_modules/init-package-json/node_modules/lru-cache": {
+ "version": "7.18.3",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/init-package-json/node_modules/npm-package-arg": {
+ "version": "9.1.2",
+ "dev": true,
+ "license": "ISC",
"dependencies": {
- "ansi-regex": "^5.0.1"
+ "hosted-git-info": "^5.0.0",
+ "proc-log": "^2.0.1",
+ "semver": "^7.3.5",
+ "validate-npm-package-name": "^4.0.0"
},
"engines": {
- "node": ">=8"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/type-fest": {
- "version": "0.21.3",
+ "node_modules/init-package-json/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
- "license": "(MIT OR CC0-1.0)",
+ "license": "ISC",
+ "dependencies": {
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
+ },
"engines": {
"node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/jest-watch-typeahead/node_modules/pretty-format": {
- "version": "29.6.2",
+ "node_modules/init-package-json/node_modules/semver/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "@jest/schemas": "^29.6.0",
- "ansi-styles": "^5.0.0",
- "react-is": "^18.0.0"
+ "yallist": "^4.0.0"
},
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": ">=10"
}
},
- "node_modules/jest-watch-typeahead/node_modules/react-is": {
- "version": "18.2.0",
+ "node_modules/init-package-json/node_modules/yallist": {
+ "version": "4.0.0",
"dev": true,
+ "license": "ISC"
+ },
+ "node_modules/inline-style-parser": {
+ "version": "0.1.1",
"license": "MIT"
},
- "node_modules/jest-watch-typeahead/node_modules/slash": {
- "version": "5.1.0",
- "dev": true,
+ "node_modules/input-format": {
+ "version": "0.3.10",
"license": "MIT",
- "engines": {
- "node": ">=14.16"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "dependencies": {
+ "prop-types": "^15.8.1"
}
},
- "node_modules/jest-watch-typeahead/node_modules/string-length": {
- "version": "5.0.1",
+ "node_modules/inquirer": {
+ "version": "7.3.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "char-regex": "^2.0.0",
- "strip-ansi": "^7.0.1"
+ "ansi-escapes": "^4.2.1",
+ "chalk": "^4.1.0",
+ "cli-cursor": "^3.1.0",
+ "cli-width": "^3.0.0",
+ "external-editor": "^3.0.3",
+ "figures": "^3.0.0",
+ "lodash": "^4.17.19",
+ "mute-stream": "0.0.8",
+ "run-async": "^2.4.0",
+ "rxjs": "^6.6.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0",
+ "through": "^2.3.6"
},
"engines": {
- "node": ">=12.20"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=8.0.0"
}
},
- "node_modules/jest-watch-typeahead/node_modules/string-length/node_modules/char-regex": {
- "version": "2.0.1",
+ "node_modules/inquirer-autocomplete-prompt": {
+ "version": "1.4.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
+ "dependencies": {
+ "ansi-escapes": "^4.3.1",
+ "chalk": "^4.0.0",
+ "figures": "^3.2.0",
+ "run-async": "^2.4.0",
+ "rxjs": "^6.6.2"
+ },
"engines": {
- "node": ">=12.20"
+ "node": ">=10"
+ },
+ "peerDependencies": {
+ "inquirer": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
}
},
- "node_modules/jest-watch-typeahead/node_modules/strip-ansi": {
- "version": "7.1.0",
+ "node_modules/inquirer-fuzzy-path": {
+ "version": "2.3.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-regex": "^6.0.1"
+ "ansi-styles": "^3.2.1",
+ "fuzzy": "^0.1.3",
+ "inquirer": "^6.0.0",
+ "inquirer-autocomplete-prompt": "^1.0.2",
+ "strip-ansi": "^4.0.0"
},
"engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/chalk/strip-ansi?sponsor=1"
+ "node": ">=8.0"
}
},
- "node_modules/jest-watch-typeahead/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/inquirer-fuzzy-path/node_modules/ansi-escapes": {
+ "version": "3.2.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
"engines": {
- "node": ">=8"
+ "node": ">=4"
}
},
- "node_modules/jest-watch-typeahead/node_modules/type-fest": {
- "version": "3.13.1",
+ "node_modules/inquirer-fuzzy-path/node_modules/ansi-regex": {
+ "version": "3.0.1",
"dev": true,
- "license": "(MIT OR CC0-1.0)",
+ "license": "MIT",
"engines": {
- "node": ">=14.16"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=4"
}
},
- "node_modules/jest-watcher": {
- "version": "28.1.3",
+ "node_modules/inquirer-fuzzy-path/node_modules/ansi-styles": {
+ "version": "3.2.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@jest/test-result": "^28.1.3",
- "@jest/types": "^28.1.3",
- "@types/node": "*",
- "ansi-escapes": "^4.2.1",
- "chalk": "^4.0.0",
- "emittery": "^0.10.2",
- "jest-util": "^28.1.3",
- "string-length": "^4.0.1"
+ "color-convert": "^1.9.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ "node": ">=4"
}
},
- "node_modules/jest-watcher/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/inquirer-fuzzy-path/node_modules/chalk": {
+ "version": "2.4.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
},
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "node": ">=4"
}
},
- "node_modules/jest-watcher/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/inquirer-fuzzy-path/node_modules/cli-cursor": {
+ "version": "2.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
+ "restore-cursor": "^2.0.0"
},
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "node": ">=4"
}
},
- "node_modules/jest-watcher/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/inquirer-fuzzy-path/node_modules/cli-width": {
+ "version": "2.2.1",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/inquirer-fuzzy-path/node_modules/color-convert": {
+ "version": "1.9.3",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "dependencies": {
+ "color-name": "1.1.3"
}
},
- "node_modules/jest-watcher/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/inquirer-fuzzy-path/node_modules/color-name": {
+ "version": "1.1.3",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/inquirer-fuzzy-path/node_modules/escape-string-regexp": {
+ "version": "1.0.5",
"dev": true,
"license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
"engines": {
- "node": ">=8"
+ "node": ">=0.8.0"
}
},
- "node_modules/jest-worker": {
- "version": "27.5.1",
+ "node_modules/inquirer-fuzzy-path/node_modules/figures": {
+ "version": "2.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@types/node": "*",
- "merge-stream": "^2.0.0",
- "supports-color": "^8.0.0"
+ "escape-string-regexp": "^1.0.5"
},
"engines": {
- "node": ">= 10.13.0"
+ "node": ">=4"
}
},
- "node_modules/jest-worker/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/inquirer-fuzzy-path/node_modules/has-flag": {
+ "version": "3.0.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=8"
+ "node": ">=4"
}
},
- "node_modules/jest-worker/node_modules/supports-color": {
- "version": "8.1.1",
+ "node_modules/inquirer-fuzzy-path/node_modules/inquirer": {
+ "version": "6.5.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
+ "ansi-escapes": "^3.2.0",
+ "chalk": "^2.4.2",
+ "cli-cursor": "^2.1.0",
+ "cli-width": "^2.0.0",
+ "external-editor": "^3.0.3",
+ "figures": "^2.0.0",
+ "lodash": "^4.17.12",
+ "mute-stream": "0.0.7",
+ "run-async": "^2.2.0",
+ "rxjs": "^6.4.0",
+ "string-width": "^2.1.0",
+ "strip-ansi": "^5.1.0",
+ "through": "^2.3.6"
},
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/supports-color?sponsor=1"
+ "node": ">=6.0.0"
}
},
- "node_modules/jiti": {
- "version": "1.18.2",
+ "node_modules/inquirer-fuzzy-path/node_modules/inquirer/node_modules/ansi-regex": {
+ "version": "4.1.1",
"dev": true,
"license": "MIT",
- "bin": {
- "jiti": "bin/jiti.js"
- }
- },
- "node_modules/joi": {
- "version": "17.9.2",
- "dev": true,
- "license": "BSD-3-Clause",
- "dependencies": {
- "@hapi/hoek": "^9.0.0",
- "@hapi/topo": "^5.0.0",
- "@sideway/address": "^4.1.3",
- "@sideway/formula": "^3.0.1",
- "@sideway/pinpoint": "^2.0.0"
+ "engines": {
+ "node": ">=6"
}
},
- "node_modules/joycon": {
- "version": "3.1.1",
+ "node_modules/inquirer-fuzzy-path/node_modules/inquirer/node_modules/strip-ansi": {
+ "version": "5.2.0",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^4.1.0"
+ },
"engines": {
- "node": ">=10"
+ "node": ">=6"
}
},
- "node_modules/jpeg-js": {
- "version": "0.4.3",
- "dev": true,
- "license": "BSD-3-Clause"
- },
- "node_modules/js-string-escape": {
- "version": "1.0.1",
+ "node_modules/inquirer-fuzzy-path/node_modules/is-fullwidth-code-point": {
+ "version": "2.0.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">= 0.8"
+ "node": ">=4"
}
},
- "node_modules/js-stringify": {
- "version": "1.0.2",
+ "node_modules/inquirer-fuzzy-path/node_modules/mimic-fn": {
+ "version": "1.2.0",
"dev": true,
- "license": "MIT"
- },
- "node_modules/js-tokens": {
- "version": "4.0.0",
- "license": "MIT"
- },
- "node_modules/js-yaml": {
- "version": "4.1.0",
"license": "MIT",
- "dependencies": {
- "argparse": "^2.0.1"
- },
- "bin": {
- "js-yaml": "bin/js-yaml.js"
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/jsbn": {
- "version": "0.1.1",
+ "node_modules/inquirer-fuzzy-path/node_modules/mute-stream": {
+ "version": "0.0.7",
"dev": true,
- "license": "MIT"
+ "license": "ISC"
},
- "node_modules/jsdom": {
- "version": "19.0.0",
+ "node_modules/inquirer-fuzzy-path/node_modules/onetime": {
+ "version": "2.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "abab": "^2.0.5",
- "acorn": "^8.5.0",
- "acorn-globals": "^6.0.0",
- "cssom": "^0.5.0",
- "cssstyle": "^2.3.0",
- "data-urls": "^3.0.1",
- "decimal.js": "^10.3.1",
- "domexception": "^4.0.0",
- "escodegen": "^2.0.0",
- "form-data": "^4.0.0",
- "html-encoding-sniffer": "^3.0.0",
- "http-proxy-agent": "^5.0.0",
- "https-proxy-agent": "^5.0.0",
- "is-potential-custom-element-name": "^1.0.1",
- "nwsapi": "^2.2.0",
- "parse5": "6.0.1",
- "saxes": "^5.0.1",
- "symbol-tree": "^3.2.4",
- "tough-cookie": "^4.0.0",
- "w3c-hr-time": "^1.0.2",
- "w3c-xmlserializer": "^3.0.0",
- "webidl-conversions": "^7.0.0",
- "whatwg-encoding": "^2.0.0",
- "whatwg-mimetype": "^3.0.0",
- "whatwg-url": "^10.0.0",
- "ws": "^8.2.3",
- "xml-name-validator": "^4.0.0"
+ "mimic-fn": "^1.0.0"
},
"engines": {
- "node": ">=12"
- },
- "peerDependencies": {
- "canvas": "^2.5.0"
- },
- "peerDependenciesMeta": {
- "canvas": {
- "optional": true
- }
+ "node": ">=4"
}
},
- "node_modules/jsdom/node_modules/@tootallnate/once": {
+ "node_modules/inquirer-fuzzy-path/node_modules/restore-cursor": {
"version": "2.0.0",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/jsdom/node_modules/cssom": {
- "version": "0.5.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/jsdom/node_modules/form-data": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
"dependencies": {
- "asynckit": "^0.4.0",
- "combined-stream": "^1.0.8",
- "mime-types": "^2.1.12"
+ "onetime": "^2.0.0",
+ "signal-exit": "^3.0.2"
},
"engines": {
- "node": ">= 6"
+ "node": ">=4"
}
},
- "node_modules/jsdom/node_modules/http-proxy-agent": {
- "version": "5.0.0",
+ "node_modules/inquirer-fuzzy-path/node_modules/string-width": {
+ "version": "2.1.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@tootallnate/once": "2",
- "agent-base": "6",
- "debug": "4"
+ "is-fullwidth-code-point": "^2.0.0",
+ "strip-ansi": "^4.0.0"
},
"engines": {
- "node": ">= 6"
+ "node": ">=4"
}
},
- "node_modules/jsdom/node_modules/iconv-lite": {
- "version": "0.6.3",
+ "node_modules/inquirer-fuzzy-path/node_modules/strip-ansi": {
+ "version": "4.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "safer-buffer": ">= 2.1.2 < 3.0.0"
+ "ansi-regex": "^3.0.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=4"
}
},
- "node_modules/jsdom/node_modules/tr46": {
- "version": "3.0.0",
+ "node_modules/inquirer-fuzzy-path/node_modules/supports-color": {
+ "version": "5.5.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "punycode": "^2.1.1"
+ "has-flag": "^3.0.0"
},
"engines": {
- "node": ">=12"
+ "node": ">=4"
}
},
- "node_modules/jsdom/node_modules/webidl-conversions": {
- "version": "7.0.0",
+ "node_modules/inquirer-search-checkbox": {
+ "version": "1.0.0",
"dev": true,
- "license": "BSD-2-Clause",
- "engines": {
- "node": ">=12"
+ "license": "ISC",
+ "dependencies": {
+ "chalk": "^2.3.0",
+ "figures": "^2.0.0",
+ "fuzzy": "^0.1.3",
+ "inquirer": "^3.3.0"
}
},
- "node_modules/jsdom/node_modules/whatwg-encoding": {
- "version": "2.0.0",
+ "node_modules/inquirer-search-checkbox/node_modules/ansi-escapes": {
+ "version": "3.2.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "iconv-lite": "0.6.3"
- },
"engines": {
- "node": ">=12"
+ "node": ">=4"
}
},
- "node_modules/jsdom/node_modules/whatwg-mimetype": {
- "version": "3.0.0",
+ "node_modules/inquirer-search-checkbox/node_modules/ansi-regex": {
+ "version": "3.0.1",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=12"
+ "node": ">=4"
}
},
- "node_modules/jsdom/node_modules/whatwg-url": {
- "version": "10.0.0",
+ "node_modules/inquirer-search-checkbox/node_modules/ansi-styles": {
+ "version": "3.2.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "tr46": "^3.0.0",
- "webidl-conversions": "^7.0.0"
+ "color-convert": "^1.9.0"
},
"engines": {
- "node": ">=12"
+ "node": ">=4"
}
},
- "node_modules/jsdom/node_modules/xml-name-validator": {
- "version": "4.0.0",
+ "node_modules/inquirer-search-checkbox/node_modules/chalk": {
+ "version": "2.4.2",
"dev": true,
- "license": "Apache-2.0",
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/jsesc": {
- "version": "2.5.2",
"license": "MIT",
- "bin": {
- "jsesc": "bin/jsesc"
+ "dependencies": {
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
},
"engines": {
"node": ">=4"
}
},
- "node_modules/json-buffer": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/json-parse-better-errors": {
- "version": "1.0.2",
+ "node_modules/inquirer-search-checkbox/node_modules/chardet": {
+ "version": "0.4.2",
"dev": true,
"license": "MIT"
},
- "node_modules/json-parse-even-better-errors": {
- "version": "2.3.1",
+ "node_modules/inquirer-search-checkbox/node_modules/cli-cursor": {
+ "version": "2.1.0",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "dependencies": {
+ "restore-cursor": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
},
- "node_modules/json-schema": {
- "version": "0.4.0",
+ "node_modules/inquirer-search-checkbox/node_modules/cli-width": {
+ "version": "2.2.1",
"dev": true,
- "license": "(AFL-2.1 OR BSD-3-Clause)"
+ "license": "ISC"
},
- "node_modules/json-schema-traverse": {
- "version": "0.4.1",
+ "node_modules/inquirer-search-checkbox/node_modules/color-convert": {
+ "version": "1.9.3",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "dependencies": {
+ "color-name": "1.1.3"
+ }
},
- "node_modules/json-stable-stringify-without-jsonify": {
- "version": "1.0.1",
+ "node_modules/inquirer-search-checkbox/node_modules/color-name": {
+ "version": "1.1.3",
"dev": true,
"license": "MIT"
},
- "node_modules/json-stringify-nice": {
- "version": "1.1.4",
+ "node_modules/inquirer-search-checkbox/node_modules/escape-string-regexp": {
+ "version": "1.0.5",
"dev": true,
- "license": "ISC",
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.8.0"
}
},
- "node_modules/json-stringify-safe": {
- "version": "5.0.1",
+ "node_modules/inquirer-search-checkbox/node_modules/external-editor": {
+ "version": "2.2.0",
"dev": true,
- "license": "ISC"
- },
- "node_modules/json5": {
- "version": "2.2.3",
"license": "MIT",
- "bin": {
- "json5": "lib/cli.js"
+ "dependencies": {
+ "chardet": "^0.4.0",
+ "iconv-lite": "^0.4.17",
+ "tmp": "^0.0.33"
},
"engines": {
- "node": ">=6"
+ "node": ">=0.12"
}
},
- "node_modules/jsonc-parser": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/jsonfile": {
- "version": "6.1.0",
+ "node_modules/inquirer-search-checkbox/node_modules/figures": {
+ "version": "2.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "universalify": "^2.0.0"
+ "escape-string-regexp": "^1.0.5"
},
- "optionalDependencies": {
- "graceful-fs": "^4.1.6"
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/jsonparse": {
- "version": "1.3.1",
+ "node_modules/inquirer-search-checkbox/node_modules/has-flag": {
+ "version": "3.0.0",
"dev": true,
- "engines": [
- "node >= 0.2.0"
- ],
- "license": "MIT"
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
},
- "node_modules/JSONStream": {
- "version": "1.3.5",
+ "node_modules/inquirer-search-checkbox/node_modules/inquirer": {
+ "version": "3.3.0",
"dev": true,
- "license": "(MIT OR Apache-2.0)",
+ "license": "MIT",
"dependencies": {
- "jsonparse": "^1.2.0",
- "through": ">=2.2.7 <3"
- },
- "bin": {
- "JSONStream": "bin.js"
- },
- "engines": {
- "node": "*"
+ "ansi-escapes": "^3.0.0",
+ "chalk": "^2.0.0",
+ "cli-cursor": "^2.1.0",
+ "cli-width": "^2.0.0",
+ "external-editor": "^2.0.4",
+ "figures": "^2.0.0",
+ "lodash": "^4.3.0",
+ "mute-stream": "0.0.7",
+ "run-async": "^2.2.0",
+ "rx-lite": "^4.0.8",
+ "rx-lite-aggregates": "^4.0.8",
+ "string-width": "^2.1.0",
+ "strip-ansi": "^4.0.0",
+ "through": "^2.3.6"
}
},
- "node_modules/jsonwebtoken": {
- "version": "8.5.1",
+ "node_modules/inquirer-search-checkbox/node_modules/is-fullwidth-code-point": {
+ "version": "2.0.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "jws": "^3.2.2",
- "lodash.includes": "^4.3.0",
- "lodash.isboolean": "^3.0.3",
- "lodash.isinteger": "^4.0.4",
- "lodash.isnumber": "^3.0.3",
- "lodash.isplainobject": "^4.0.6",
- "lodash.isstring": "^4.0.1",
- "lodash.once": "^4.0.0",
- "ms": "^2.1.1",
- "semver": "^5.6.0"
- },
"engines": {
- "node": ">=4",
- "npm": ">=1.4.28"
+ "node": ">=4"
}
},
- "node_modules/jsonwebtoken/node_modules/semver": {
- "version": "5.7.1",
+ "node_modules/inquirer-search-checkbox/node_modules/mimic-fn": {
+ "version": "1.2.0",
"dev": true,
- "license": "ISC",
- "bin": {
- "semver": "bin/semver"
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/jsprim": {
- "version": "1.4.2",
+ "node_modules/inquirer-search-checkbox/node_modules/mute-stream": {
+ "version": "0.0.7",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/inquirer-search-checkbox/node_modules/onetime": {
+ "version": "2.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "assert-plus": "1.0.0",
- "extsprintf": "1.3.0",
- "json-schema": "0.4.0",
- "verror": "1.10.0"
+ "mimic-fn": "^1.0.0"
},
"engines": {
- "node": ">=0.6.0"
+ "node": ">=4"
}
},
- "node_modules/jstransformer": {
- "version": "1.0.0",
+ "node_modules/inquirer-search-checkbox/node_modules/restore-cursor": {
+ "version": "2.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-promise": "^2.0.0",
- "promise": "^7.0.1"
+ "onetime": "^2.0.0",
+ "signal-exit": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/jsx-ast-utils": {
- "version": "3.3.2",
+ "node_modules/inquirer-search-checkbox/node_modules/string-width": {
+ "version": "2.1.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "array-includes": "^3.1.5",
- "object.assign": "^4.1.2"
+ "is-fullwidth-code-point": "^2.0.0",
+ "strip-ansi": "^4.0.0"
},
"engines": {
- "node": ">=4.0"
+ "node": ">=4"
}
},
- "node_modules/junk": {
- "version": "3.1.0",
+ "node_modules/inquirer-search-checkbox/node_modules/strip-ansi": {
+ "version": "4.0.0",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^3.0.0"
+ },
"engines": {
- "node": ">=8"
+ "node": ">=4"
}
},
- "node_modules/just-diff": {
- "version": "5.0.3",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/just-diff-apply": {
- "version": "5.3.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/jwa": {
- "version": "1.4.1",
+ "node_modules/inquirer-search-checkbox/node_modules/supports-color": {
+ "version": "5.5.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "buffer-equal-constant-time": "1.0.1",
- "ecdsa-sig-formatter": "1.0.11",
- "safe-buffer": "^5.0.1"
+ "has-flag": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/jws": {
- "version": "3.2.2",
+ "node_modules/inquirer-search-list": {
+ "version": "1.2.6",
"dev": true,
"license": "MIT",
"dependencies": {
- "jwa": "^1.4.1",
- "safe-buffer": "^5.0.1"
+ "chalk": "^2.3.0",
+ "figures": "^2.0.0",
+ "fuzzy": "^0.1.3",
+ "inquirer": "^3.3.0"
}
},
- "node_modules/keyv": {
- "version": "3.1.0",
+ "node_modules/inquirer-search-list/node_modules/ansi-escapes": {
+ "version": "3.2.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "json-buffer": "3.0.0"
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/kind-of": {
- "version": "6.0.3",
+ "node_modules/inquirer-search-list/node_modules/ansi-regex": {
+ "version": "3.0.1",
+ "dev": true,
"license": "MIT",
"engines": {
- "node": ">=0.10.0"
+ "node": ">=4"
}
},
- "node_modules/kleur": {
- "version": "3.0.3",
+ "node_modules/inquirer-search-list/node_modules/ansi-styles": {
+ "version": "3.2.1",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "color-convert": "^1.9.0"
+ },
"engines": {
- "node": ">=6"
+ "node": ">=4"
}
},
- "node_modules/klona": {
- "version": "2.0.6",
+ "node_modules/inquirer-search-list/node_modules/chalk": {
+ "version": "2.4.2",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
+ },
"engines": {
- "node": ">= 8"
+ "node": ">=4"
}
},
- "node_modules/kuler": {
- "version": "2.0.0",
+ "node_modules/inquirer-search-list/node_modules/chardet": {
+ "version": "0.4.2",
"dev": true,
"license": "MIT"
},
- "node_modules/language-subtag-registry": {
- "version": "0.3.22",
- "dev": true,
- "license": "CC0-1.0"
- },
- "node_modules/language-tags": {
- "version": "1.0.5",
+ "node_modules/inquirer-search-list/node_modules/cli-cursor": {
+ "version": "2.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "language-subtag-registry": "~0.3.2"
+ "restore-cursor": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/latest-version": {
- "version": "5.1.0",
+ "node_modules/inquirer-search-list/node_modules/cli-width": {
+ "version": "2.2.1",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/inquirer-search-list/node_modules/color-convert": {
+ "version": "1.9.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "package-json": "^6.3.0"
- },
- "engines": {
- "node": ">=8"
+ "color-name": "1.1.3"
}
},
- "node_modules/lazy-cache": {
- "version": "1.0.4",
+ "node_modules/inquirer-search-list/node_modules/color-name": {
+ "version": "1.1.3",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/inquirer-search-list/node_modules/escape-string-regexp": {
+ "version": "1.0.5",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=0.10.0"
+ "node": ">=0.8.0"
}
},
- "node_modules/lazy-universal-dotenv": {
- "version": "3.0.1",
+ "node_modules/inquirer-search-list/node_modules/external-editor": {
+ "version": "2.2.0",
"dev": true,
- "license": "Apache-2.0",
+ "license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.5.0",
- "app-root-dir": "^1.0.2",
- "core-js": "^3.0.4",
- "dotenv": "^8.0.0",
- "dotenv-expand": "^5.1.0"
+ "chardet": "^0.4.0",
+ "iconv-lite": "^0.4.17",
+ "tmp": "^0.0.33"
},
"engines": {
- "node": ">=6.0.0",
- "npm": ">=6.0.0",
- "yarn": ">=1.0.0"
- }
- },
- "node_modules/lazy-universal-dotenv/node_modules/dotenv": {
- "version": "8.6.0",
- "dev": true,
- "license": "BSD-2-Clause",
- "engines": {
- "node": ">=10"
+ "node": ">=0.12"
}
},
- "node_modules/lerna": {
- "version": "5.1.2",
+ "node_modules/inquirer-search-list/node_modules/figures": {
+ "version": "2.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@lerna/add": "5.1.2",
- "@lerna/bootstrap": "5.1.2",
- "@lerna/changed": "5.1.2",
- "@lerna/clean": "5.1.2",
- "@lerna/cli": "5.1.2",
- "@lerna/create": "5.1.2",
- "@lerna/diff": "5.1.2",
- "@lerna/exec": "5.1.2",
- "@lerna/import": "5.1.2",
- "@lerna/info": "5.1.2",
- "@lerna/init": "5.1.2",
- "@lerna/link": "5.1.2",
- "@lerna/list": "5.1.2",
- "@lerna/publish": "5.1.2",
- "@lerna/run": "5.1.2",
- "@lerna/version": "5.1.2",
- "import-local": "^3.0.2",
- "npmlog": "^6.0.2"
- },
- "bin": {
- "lerna": "cli.js"
+ "escape-string-regexp": "^1.0.5"
},
"engines": {
- "node": "^14.15.0 || >=16.0.0"
+ "node": ">=4"
}
},
- "node_modules/lerna/node_modules/are-we-there-yet": {
+ "node_modules/inquirer-search-list/node_modules/has-flag": {
"version": "3.0.0",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
- },
+ "license": "MIT",
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "node": ">=4"
}
},
- "node_modules/lerna/node_modules/gauge": {
- "version": "4.0.4",
+ "node_modules/inquirer-search-list/node_modules/inquirer": {
+ "version": "3.3.0",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "ansi-escapes": "^3.0.0",
+ "chalk": "^2.0.0",
+ "cli-cursor": "^2.1.0",
+ "cli-width": "^2.0.0",
+ "external-editor": "^2.0.4",
+ "figures": "^2.0.0",
+ "lodash": "^4.3.0",
+ "mute-stream": "0.0.7",
+ "run-async": "^2.2.0",
+ "rx-lite": "^4.0.8",
+ "rx-lite-aggregates": "^4.0.8",
+ "string-width": "^2.1.0",
+ "strip-ansi": "^4.0.0",
+ "through": "^2.3.6"
}
},
- "node_modules/lerna/node_modules/npmlog": {
- "version": "6.0.2",
+ "node_modules/inquirer-search-list/node_modules/is-fullwidth-code-point": {
+ "version": "2.0.0",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
- },
+ "license": "MIT",
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=4"
}
},
- "node_modules/leven": {
- "version": "3.1.0",
+ "node_modules/inquirer-search-list/node_modules/mimic-fn": {
+ "version": "1.2.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=6"
+ "node": ">=4"
}
},
- "node_modules/levn": {
- "version": "0.4.1",
+ "node_modules/inquirer-search-list/node_modules/mute-stream": {
+ "version": "0.0.7",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/inquirer-search-list/node_modules/onetime": {
+ "version": "2.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "prelude-ls": "^1.2.1",
- "type-check": "~0.4.0"
+ "mimic-fn": "^1.0.0"
},
"engines": {
- "node": ">= 0.8.0"
+ "node": ">=4"
}
},
- "node_modules/libnpmaccess": {
- "version": "4.0.3",
+ "node_modules/inquirer-search-list/node_modules/restore-cursor": {
+ "version": "2.0.0",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "aproba": "^2.0.0",
- "minipass": "^3.1.1",
- "npm-package-arg": "^8.1.2",
- "npm-registry-fetch": "^11.0.0"
+ "onetime": "^2.0.0",
+ "signal-exit": "^3.0.2"
},
"engines": {
- "node": ">=10"
+ "node": ">=4"
}
},
- "node_modules/libnpmaccess/node_modules/npm-registry-fetch": {
- "version": "11.0.0",
+ "node_modules/inquirer-search-list/node_modules/string-width": {
+ "version": "2.1.1",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "make-fetch-happen": "^9.0.1",
- "minipass": "^3.1.3",
- "minipass-fetch": "^1.3.0",
- "minipass-json-stream": "^1.0.1",
- "minizlib": "^2.0.0",
- "npm-package-arg": "^8.0.0"
+ "is-fullwidth-code-point": "^2.0.0",
+ "strip-ansi": "^4.0.0"
},
"engines": {
- "node": ">=10"
+ "node": ">=4"
}
},
- "node_modules/libnpmpublish": {
- "version": "4.0.2",
+ "node_modules/inquirer-search-list/node_modules/strip-ansi": {
+ "version": "4.0.0",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "normalize-package-data": "^3.0.2",
- "npm-package-arg": "^8.1.2",
- "npm-registry-fetch": "^11.0.0",
- "semver": "^7.1.3",
- "ssri": "^8.0.1"
+ "ansi-regex": "^3.0.0"
},
"engines": {
- "node": ">=10"
+ "node": ">=4"
}
},
- "node_modules/libnpmpublish/node_modules/npm-registry-fetch": {
- "version": "11.0.0",
+ "node_modules/inquirer-search-list/node_modules/supports-color": {
+ "version": "5.5.0",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "make-fetch-happen": "^9.0.1",
- "minipass": "^3.1.3",
- "minipass-fetch": "^1.3.0",
- "minipass-json-stream": "^1.0.1",
- "minizlib": "^2.0.0",
- "npm-package-arg": "^8.0.0"
+ "has-flag": "^3.0.0"
},
"engines": {
- "node": ">=10"
+ "node": ">=4"
}
},
- "node_modules/libnpmpublish/node_modules/semver": {
- "version": "7.3.7",
+ "node_modules/internal-slot": {
+ "version": "1.0.7",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
+ "es-errors": "^1.3.0",
+ "hasown": "^2.0.0",
+ "side-channel": "^1.0.4"
},
"engines": {
- "node": ">=10"
+ "node": ">= 0.4"
}
},
- "node_modules/libphonenumber-js": {
- "version": "1.10.15",
+ "node_modules/interpret": {
+ "version": "2.2.0",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.10"
+ }
+ },
+ "node_modules/intersection-observer": {
+ "version": "0.10.0",
+ "license": "W3C-20150513"
+ },
+ "node_modules/invariant": {
+ "version": "2.2.4",
+ "license": "MIT",
+ "dependencies": {
+ "loose-envify": "^1.0.0"
+ }
+ },
+ "node_modules/ip": {
+ "version": "2.0.1",
+ "dev": true,
"license": "MIT"
},
- "node_modules/liftoff": {
- "version": "4.0.0",
+ "node_modules/ip-address": {
+ "version": "9.0.5",
"dev": true,
"license": "MIT",
"dependencies": {
- "extend": "^3.0.2",
- "findup-sync": "^5.0.0",
- "fined": "^2.0.0",
- "flagged-respawn": "^2.0.0",
- "is-plain-object": "^5.0.0",
- "object.map": "^1.0.1",
- "rechoir": "^0.8.0",
- "resolve": "^1.20.0"
+ "jsbn": "1.1.0",
+ "sprintf-js": "^1.1.3"
},
"engines": {
- "node": ">=10.13.0"
+ "node": ">= 12"
}
},
- "node_modules/liftoff/node_modules/is-plain-object": {
- "version": "5.0.0",
+ "node_modules/ip-regex": {
+ "version": "2.1.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=0.10.0"
+ "node": ">=4"
}
},
- "node_modules/lilconfig": {
- "version": "2.1.0",
+ "node_modules/ipaddr.js": {
+ "version": "1.9.1",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=10"
+ "node": ">= 0.10"
}
},
- "node_modules/lines-and-columns": {
- "version": "1.2.4",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/load-json-file": {
- "version": "6.2.0",
+ "node_modules/is-absolute": {
+ "version": "1.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "graceful-fs": "^4.1.15",
- "parse-json": "^5.0.0",
- "strip-bom": "^4.0.0",
- "type-fest": "^0.6.0"
+ "is-relative": "^1.0.0",
+ "is-windows": "^1.0.1"
},
"engines": {
- "node": ">=8"
+ "node": ">=0.10.0"
}
},
- "node_modules/load-json-file/node_modules/type-fest": {
- "version": "0.6.0",
+ "node_modules/is-absolute-url": {
+ "version": "3.0.3",
"dev": true,
- "license": "(MIT OR CC0-1.0)",
+ "license": "MIT",
"engines": {
"node": ">=8"
}
},
- "node_modules/load-tsconfig": {
- "version": "0.2.3",
- "dev": true,
+ "node_modules/is-alphabetical": {
+ "version": "2.0.1",
"license": "MIT",
- "engines": {
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/loader-runner": {
- "version": "4.3.0",
- "dev": true,
+ "node_modules/is-alphanumerical": {
+ "version": "2.0.1",
"license": "MIT",
- "engines": {
- "node": ">=6.11.5"
+ "dependencies": {
+ "is-alphabetical": "^2.0.0",
+ "is-decimal": "^2.0.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/loader-utils": {
- "version": "2.0.2",
+ "node_modules/is-arguments": {
+ "version": "1.1.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "big.js": "^5.2.2",
- "emojis-list": "^3.0.0",
- "json5": "^2.1.2"
+ "call-bind": "^1.0.2",
+ "has-tostringtag": "^1.0.0"
},
"engines": {
- "node": ">=8.9.0"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/locate-path": {
- "version": "6.0.0",
+ "node_modules/is-array-buffer": {
+ "version": "3.0.4",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "p-locate": "^5.0.0"
+ "call-bind": "^1.0.2",
+ "get-intrinsic": "^1.2.1"
},
"engines": {
- "node": ">=10"
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/lodash": {
- "version": "4.17.21",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/lodash.debounce": {
- "version": "4.0.8",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/lodash.escape": {
- "version": "4.0.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/lodash.flattendeep": {
- "version": "4.4.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/lodash.get": {
- "version": "4.4.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/lodash.includes": {
- "version": "4.3.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/lodash.isboolean": {
- "version": "3.0.3",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/lodash.isequal": {
- "version": "4.5.0",
- "license": "MIT"
- },
- "node_modules/lodash.isinteger": {
- "version": "4.0.4",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/lodash.ismatch": {
- "version": "4.4.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/lodash.isnumber": {
- "version": "3.0.3",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/lodash.isplainobject": {
- "version": "4.0.6",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/lodash.isstring": {
- "version": "4.0.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/lodash.memoize": {
- "version": "4.1.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/lodash.merge": {
- "version": "4.6.2",
+ "node_modules/is-arrayish": {
+ "version": "0.2.1",
"dev": true,
"license": "MIT"
},
- "node_modules/lodash.once": {
- "version": "4.1.1",
+ "node_modules/is-async-function": {
+ "version": "2.0.0",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "dependencies": {
+ "has-tostringtag": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
},
- "node_modules/lodash.sortby": {
- "version": "4.7.0",
+ "node_modules/is-bigint": {
+ "version": "1.0.4",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "dependencies": {
+ "has-bigints": "^1.0.1"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
},
- "node_modules/lodash.uniq": {
- "version": "4.5.0",
+ "node_modules/is-binary-path": {
+ "version": "2.1.0",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "dependencies": {
+ "binary-extensions": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
},
- "node_modules/log-symbols": {
- "version": "5.1.0",
+ "node_modules/is-boolean-object": {
+ "version": "1.1.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "chalk": "^5.0.0",
- "is-unicode-supported": "^1.1.0"
+ "call-bind": "^1.0.2",
+ "has-tostringtag": "^1.0.0"
},
"engines": {
- "node": ">=12"
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/log-symbols/node_modules/chalk": {
- "version": "5.0.1",
+ "node_modules/is-buffer": {
+ "version": "2.0.5",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/is-callable": {
+ "version": "1.2.7",
"dev": true,
"license": "MIT",
"engines": {
- "node": "^12.17.0 || ^14.13 || >=16.0.0"
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/logform": {
- "version": "2.5.1",
+ "node_modules/is-ci": {
+ "version": "2.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@colors/colors": "1.5.0",
- "@types/triple-beam": "^1.3.2",
- "fecha": "^4.2.0",
- "ms": "^2.1.1",
- "safe-stable-stringify": "^2.3.1",
- "triple-beam": "^1.3.0"
+ "ci-info": "^2.0.0"
+ },
+ "bin": {
+ "is-ci": "bin.js"
}
},
- "node_modules/longest": {
+ "node_modules/is-core-module": {
+ "version": "2.13.1",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "hasown": "^2.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-data-view": {
"version": "1.0.1",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "is-typed-array": "^1.1.13"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/longest-streak": {
- "version": "3.0.1",
+ "node_modules/is-date-object": {
+ "version": "1.0.5",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "has-tostringtag": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-decimal": {
+ "version": "2.0.1",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/loose-envify": {
- "version": "1.4.0",
+ "node_modules/is-deflate": {
+ "version": "1.0.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/is-docker": {
+ "version": "2.2.1",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "js-tokens": "^3.0.0 || ^4.0.0"
- },
"bin": {
- "loose-envify": "cli.js"
+ "is-docker": "cli.js"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/loud-rejection": {
- "version": "1.6.0",
+ "node_modules/is-expression": {
+ "version": "3.0.0",
"dev": true,
"license": "MIT",
- "optional": true,
"dependencies": {
- "currently-unhandled": "^0.4.1",
- "signal-exit": "^3.0.0"
+ "acorn": "~4.0.2",
+ "object-assign": "^4.0.1"
+ }
+ },
+ "node_modules/is-expression/node_modules/acorn": {
+ "version": "4.0.13",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "acorn": "bin/acorn"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=0.4.0"
}
},
- "node_modules/lower-case": {
- "version": "2.0.2",
+ "node_modules/is-extendable": {
+ "version": "0.1.1",
"license": "MIT",
- "dependencies": {
- "tslib": "^2.0.3"
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/lowercase-keys": {
- "version": "1.0.1",
+ "node_modules/is-extglob": {
+ "version": "2.1.1",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
}
},
- "node_modules/lru-cache": {
- "version": "6.0.0",
+ "node_modules/is-finalizationregistry": {
+ "version": "1.0.2",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "yallist": "^4.0.0"
+ "call-bind": "^1.0.2"
},
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-fullwidth-code-point": {
+ "version": "3.0.0",
+ "license": "MIT",
"engines": {
- "node": ">=10"
+ "node": ">=8"
}
},
- "node_modules/lz-string": {
- "version": "1.5.0",
- "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz",
- "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==",
- "bin": {
- "lz-string": "bin/bin.js"
+ "node_modules/is-generator-fn": {
+ "version": "2.1.0",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
}
},
- "node_modules/magic-string": {
- "version": "0.27.0",
+ "node_modules/is-generator-function": {
+ "version": "1.0.10",
"dev": true,
"license": "MIT",
"dependencies": {
- "@jridgewell/sourcemap-codec": "^1.4.13"
+ "has-tostringtag": "^1.0.0"
},
"engines": {
- "node": ">=12"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/make-dir": {
- "version": "2.1.0",
+ "node_modules/is-glob": {
+ "version": "4.0.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "pify": "^4.0.1",
- "semver": "^5.6.0"
+ "is-extglob": "^2.1.1"
},
"engines": {
- "node": ">=6"
+ "node": ">=0.10.0"
}
},
- "node_modules/make-dir/node_modules/pify": {
- "version": "4.0.1",
+ "node_modules/is-gzip": {
+ "version": "1.0.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=6"
+ "node": ">=0.10.0"
}
},
- "node_modules/make-dir/node_modules/semver": {
- "version": "5.7.1",
- "dev": true,
- "license": "ISC",
- "bin": {
- "semver": "bin/semver"
+ "node_modules/is-hexadecimal": {
+ "version": "2.0.1",
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/make-error": {
- "version": "1.3.6",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/make-fetch-happen": {
- "version": "9.1.0",
+ "node_modules/is-installed-globally": {
+ "version": "0.3.2",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "agentkeepalive": "^4.1.3",
- "cacache": "^15.2.0",
- "http-cache-semantics": "^4.1.0",
- "http-proxy-agent": "^4.0.1",
- "https-proxy-agent": "^5.0.0",
- "is-lambda": "^1.0.1",
- "lru-cache": "^6.0.0",
- "minipass": "^3.1.3",
- "minipass-collect": "^1.0.2",
- "minipass-fetch": "^1.3.2",
- "minipass-flush": "^1.0.5",
- "minipass-pipeline": "^1.2.4",
- "negotiator": "^0.6.2",
- "promise-retry": "^2.0.1",
- "socks-proxy-agent": "^6.0.0",
- "ssri": "^8.0.0"
+ "global-dirs": "^2.0.1",
+ "is-path-inside": "^3.0.1"
},
"engines": {
- "node": ">= 10"
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/make-iterator": {
- "version": "1.0.1",
+ "node_modules/is-interactive": {
+ "version": "1.0.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "kind-of": "^6.0.2"
- },
"engines": {
- "node": ">=0.10.0"
+ "node": ">=8"
}
},
- "node_modules/makeerror": {
- "version": "1.0.12",
+ "node_modules/is-lambda": {
+ "version": "1.0.1",
"dev": true,
- "license": "BSD-3-Clause",
- "dependencies": {
- "tmpl": "1.0.5"
+ "license": "MIT"
+ },
+ "node_modules/is-map": {
+ "version": "2.0.3",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/map-age-cleaner": {
- "version": "0.1.3",
+ "node_modules/is-nan": {
+ "version": "1.3.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "p-defer": "^1.0.0"
+ "call-bind": "^1.0.0",
+ "define-properties": "^1.1.3"
},
"engines": {
- "node": ">=6"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/map-cache": {
- "version": "0.2.2",
+ "node_modules/is-negative-zero": {
+ "version": "2.0.3",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/map-obj": {
- "version": "4.3.0",
+ "node_modules/is-npm": {
+ "version": "5.0.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=8"
+ "node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/map-or-similar": {
- "version": "1.5.0",
+ "node_modules/is-number": {
+ "version": "7.0.0",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.12.0"
+ }
},
- "node_modules/map-visit": {
- "version": "1.0.0",
+ "node_modules/is-number-object": {
+ "version": "1.0.7",
"dev": true,
"license": "MIT",
"dependencies": {
- "object-visit": "^1.0.0"
+ "has-tostringtag": "^1.0.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/markdown-escapes": {
- "version": "1.0.4",
+ "node_modules/is-obj": {
+ "version": "2.0.0",
"dev": true,
"license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/markdown-extensions": {
- "version": "1.1.1",
+ "node_modules/is-path-cwd": {
+ "version": "2.2.0",
+ "dev": true,
"license": "MIT",
"engines": {
- "node": ">=0.10.0"
+ "node": ">=6"
}
},
- "node_modules/markdown-table": {
- "version": "3.0.2",
+ "node_modules/is-path-inside": {
+ "version": "3.0.3",
+ "dev": true,
"license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/mask-json": {
- "version": "1.0.3",
+ "node_modules/is-plain-obj": {
+ "version": "1.1.0",
"dev": true,
- "license": "SEE LICENSE IN LICENSE",
- "dependencies": {
- "lodash": "^4.17.4"
- },
+ "license": "MIT",
"engines": {
- "node": ">=5.0.0"
+ "node": ">=0.10.0"
}
},
- "node_modules/match-sorter": {
- "version": "6.3.1",
+ "node_modules/is-plain-object": {
+ "version": "5.0.0",
"license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.12.5",
- "remove-accents": "0.4.2"
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/md5.js": {
- "version": "1.3.5",
+ "node_modules/is-potential-custom-element-name": {
+ "version": "1.0.1",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/is-promise": {
+ "version": "2.2.2",
"dev": true,
+ "license": "MIT"
+ },
+ "node_modules/is-reference": {
+ "version": "3.0.2",
"license": "MIT",
"dependencies": {
- "hash-base": "^3.0.0",
- "inherits": "^2.0.1",
- "safe-buffer": "^5.1.2"
+ "@types/estree": "*"
}
},
- "node_modules/mdast-squeeze-paragraphs": {
- "version": "4.0.0",
+ "node_modules/is-regex": {
+ "version": "1.1.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "unist-util-remove": "^2.0.0"
+ "call-bind": "^1.0.2",
+ "has-tostringtag": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/mdast-util-definitions": {
- "version": "4.0.0",
- "dev": true,
+ "node_modules/is-regexp": {
+ "version": "3.1.0",
"license": "MIT",
- "dependencies": {
- "unist-util-visit": "^2.0.0"
+ "engines": {
+ "node": ">=12"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/mdast-util-find-and-replace": {
- "version": "2.2.1",
+ "node_modules/is-relative": {
+ "version": "1.0.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "escape-string-regexp": "^5.0.0",
- "unist-util-is": "^5.0.0",
- "unist-util-visit-parents": "^5.0.0"
+ "is-unc-path": "^1.0.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp": {
- "version": "5.0.0",
+ "node_modules/is-set": {
+ "version": "2.0.3",
+ "dev": true,
"license": "MIT",
"engines": {
- "node": ">=12"
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/mdast-util-find-and-replace/node_modules/unist-util-is": {
- "version": "5.1.1",
+ "node_modules/is-shared-array-buffer": {
+ "version": "1.0.3",
+ "dev": true,
"license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/mdast-util-find-and-replace/node_modules/unist-util-visit-parents": {
- "version": "5.1.0",
+ "node_modules/is-ssh": {
+ "version": "1.4.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/unist": "^2.0.0",
- "unist-util-is": "^5.0.0"
+ "protocols": "^2.0.1"
+ }
+ },
+ "node_modules/is-stream": {
+ "version": "2.0.1",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/mdast-util-from-markdown": {
- "version": "1.2.0",
+ "node_modules/is-string": {
+ "version": "1.0.7",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/mdast": "^3.0.0",
- "@types/unist": "^2.0.0",
- "decode-named-character-reference": "^1.0.0",
- "mdast-util-to-string": "^3.1.0",
- "micromark": "^3.0.0",
- "micromark-util-decode-numeric-character-reference": "^1.0.0",
- "micromark-util-decode-string": "^1.0.0",
- "micromark-util-normalize-identifier": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0",
- "unist-util-stringify-position": "^3.0.0",
- "uvu": "^0.5.0"
+ "has-tostringtag": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/mdast-util-from-markdown/node_modules/mdast-util-to-string": {
- "version": "3.1.0",
+ "node_modules/is-subset": {
+ "version": "0.1.1",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/is-symbol": {
+ "version": "1.0.4",
+ "dev": true,
"license": "MIT",
+ "dependencies": {
+ "has-symbols": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/mdast-util-from-markdown/node_modules/unist-util-stringify-position": {
- "version": "3.0.2",
+ "node_modules/is-text-path": {
+ "version": "1.0.1",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/unist": "^2.0.0"
+ "text-extensions": "^1.0.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/mdast-util-gfm": {
- "version": "2.0.1",
+ "node_modules/is-typed-array": {
+ "version": "1.1.13",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "mdast-util-from-markdown": "^1.0.0",
- "mdast-util-gfm-autolink-literal": "^1.0.0",
- "mdast-util-gfm-footnote": "^1.0.0",
- "mdast-util-gfm-strikethrough": "^1.0.0",
- "mdast-util-gfm-table": "^1.0.0",
- "mdast-util-gfm-task-list-item": "^1.0.0",
- "mdast-util-to-markdown": "^1.0.0"
+ "which-typed-array": "^1.1.14"
+ },
+ "engines": {
+ "node": ">= 0.4"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/mdast-util-gfm-autolink-literal": {
- "version": "1.0.2",
+ "node_modules/is-typedarray": {
+ "version": "1.0.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/is-unc-path": {
+ "version": "1.0.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/mdast": "^3.0.0",
- "ccount": "^2.0.0",
- "mdast-util-find-and-replace": "^2.0.0",
- "micromark-util-character": "^1.0.0"
+ "unc-path-regex": "^0.1.2"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/mdast-util-gfm-autolink-literal/node_modules/ccount": {
- "version": "2.0.1",
+ "node_modules/is-unicode-supported": {
+ "version": "0.1.0",
+ "dev": true,
"license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
"funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/mdast-util-gfm-footnote": {
- "version": "1.0.1",
+ "node_modules/is-weakmap": {
+ "version": "2.0.2",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "@types/mdast": "^3.0.0",
- "mdast-util-to-markdown": "^1.3.0",
- "micromark-util-normalize-identifier": "^1.0.0"
+ "engines": {
+ "node": ">= 0.4"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/mdast-util-gfm-strikethrough": {
- "version": "1.0.1",
+ "node_modules/is-weakref": {
+ "version": "1.0.2",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/mdast": "^3.0.0",
- "mdast-util-to-markdown": "^1.3.0"
+ "call-bind": "^1.0.2"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/mdast-util-gfm-table": {
- "version": "1.0.4",
+ "node_modules/is-weakset": {
+ "version": "2.0.3",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "markdown-table": "^3.0.0",
- "mdast-util-from-markdown": "^1.0.0",
- "mdast-util-to-markdown": "^1.3.0"
+ "call-bind": "^1.0.7",
+ "get-intrinsic": "^1.2.4"
+ },
+ "engines": {
+ "node": ">= 0.4"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/mdast-util-gfm-task-list-item": {
- "version": "1.0.1",
+ "node_modules/is-windows": {
+ "version": "1.0.2",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "@types/mdast": "^3.0.0",
- "mdast-util-to-markdown": "^1.3.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/mdast-util-mdx": {
- "version": "2.0.0",
+ "node_modules/is-wsl": {
+ "version": "2.2.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "mdast-util-mdx-expression": "^1.0.0",
- "mdast-util-mdx-jsx": "^2.0.0",
- "mdast-util-mdxjs-esm": "^1.0.0"
+ "is-docker": "^2.0.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/mdast-util-mdx-expression": {
- "version": "1.2.1",
+ "node_modules/is-yarn-global": {
+ "version": "0.3.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/isarray": {
+ "version": "2.0.5",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/isbinaryfile": {
+ "version": "4.0.10",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "@types/estree-jsx": "^0.0.1",
- "@types/hast": "^2.0.0",
- "@types/mdast": "^3.0.0",
- "mdast-util-from-markdown": "^1.0.0",
- "mdast-util-to-markdown": "^1.0.0"
+ "engines": {
+ "node": ">= 8.0.0"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "url": "https://github.com/sponsors/gjtorikian/"
}
},
- "node_modules/mdast-util-mdx-jsx": {
- "version": "2.0.2",
+ "node_modules/isexe": {
+ "version": "2.0.0",
+ "license": "ISC"
+ },
+ "node_modules/isobject": {
+ "version": "3.0.1",
+ "dev": true,
"license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/isstream": {
+ "version": "0.1.2",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/istanbul-lib-coverage": {
+ "version": "3.2.2",
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/istanbul-lib-hook": {
+ "version": "3.0.0",
+ "dev": true,
+ "license": "BSD-3-Clause",
"dependencies": {
- "@types/estree-jsx": "^0.0.1",
- "@types/hast": "^2.0.0",
- "@types/mdast": "^3.0.0",
- "ccount": "^2.0.0",
- "mdast-util-to-markdown": "^1.3.0",
- "parse-entities": "^4.0.0",
- "stringify-entities": "^4.0.0",
- "unist-util-remove-position": "^4.0.0",
- "unist-util-stringify-position": "^3.0.0",
- "vfile-message": "^3.0.0"
+ "append-transform": "^2.0.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/mdast-util-mdx-jsx/node_modules/ccount": {
- "version": "2.0.1",
- "license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "node_modules/istanbul-lib-instrument": {
+ "version": "5.2.1",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "@babel/core": "^7.12.3",
+ "@babel/parser": "^7.14.7",
+ "@istanbuljs/schema": "^0.1.2",
+ "istanbul-lib-coverage": "^3.2.0",
+ "semver": "^6.3.0"
+ },
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/mdast-util-mdx-jsx/node_modules/character-entities": {
- "version": "2.0.2",
- "license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "node_modules/istanbul-lib-processinfo": {
+ "version": "2.0.3",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "archy": "^1.0.0",
+ "cross-spawn": "^7.0.3",
+ "istanbul-lib-coverage": "^3.2.0",
+ "p-map": "^3.0.0",
+ "rimraf": "^3.0.0",
+ "uuid": "^8.3.2"
+ },
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/mdast-util-mdx-jsx/node_modules/character-entities-legacy": {
+ "node_modules/istanbul-lib-processinfo/node_modules/p-map": {
"version": "3.0.0",
+ "dev": true,
"license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "dependencies": {
+ "aggregate-error": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/mdast-util-mdx-jsx/node_modules/character-reference-invalid": {
- "version": "2.0.1",
+ "node_modules/istanbul-lib-processinfo/node_modules/uuid": {
+ "version": "8.3.2",
+ "dev": true,
"license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "bin": {
+ "uuid": "dist/bin/uuid"
}
},
- "node_modules/mdast-util-mdx-jsx/node_modules/is-alphabetical": {
- "version": "2.0.1",
- "license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "node_modules/istanbul-lib-report": {
+ "version": "3.0.1",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "istanbul-lib-coverage": "^3.0.0",
+ "make-dir": "^4.0.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/mdast-util-mdx-jsx/node_modules/is-alphanumerical": {
- "version": "2.0.1",
- "license": "MIT",
+ "node_modules/istanbul-lib-report/node_modules/lru-cache": {
+ "version": "6.0.0",
+ "license": "ISC",
"dependencies": {
- "is-alphabetical": "^2.0.0",
- "is-decimal": "^2.0.0"
+ "yallist": "^4.0.0"
},
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/mdast-util-mdx-jsx/node_modules/is-decimal": {
- "version": "2.0.1",
+ "node_modules/istanbul-lib-report/node_modules/make-dir": {
+ "version": "4.0.0",
"license": "MIT",
+ "dependencies": {
+ "semver": "^7.5.3"
+ },
+ "engines": {
+ "node": ">=10"
+ },
"funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/mdast-util-mdx-jsx/node_modules/is-hexadecimal": {
- "version": "2.0.1",
- "license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "node_modules/istanbul-lib-report/node_modules/semver": {
+ "version": "7.6.0",
+ "license": "ISC",
+ "dependencies": {
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/mdast-util-mdx-jsx/node_modules/parse-entities": {
+ "node_modules/istanbul-lib-report/node_modules/yallist": {
"version": "4.0.0",
- "license": "MIT",
+ "license": "ISC"
+ },
+ "node_modules/istanbul-lib-source-maps": {
+ "version": "4.0.1",
+ "dev": true,
+ "license": "BSD-3-Clause",
"dependencies": {
- "@types/unist": "^2.0.0",
- "character-entities": "^2.0.0",
- "character-entities-legacy": "^3.0.0",
- "character-reference-invalid": "^2.0.0",
- "decode-named-character-reference": "^1.0.0",
- "is-alphanumerical": "^2.0.0",
- "is-decimal": "^2.0.0",
- "is-hexadecimal": "^2.0.0"
+ "debug": "^4.1.1",
+ "istanbul-lib-coverage": "^3.0.0",
+ "source-map": "^0.6.1"
},
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/mdast-util-mdx-jsx/node_modules/unist-util-is": {
- "version": "5.1.1",
- "license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "node_modules/istanbul-lib-source-maps/node_modules/source-map": {
+ "version": "0.6.1",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/mdast-util-mdx-jsx/node_modules/unist-util-remove-position": {
- "version": "4.0.1",
- "license": "MIT",
+ "node_modules/istanbul-reports": {
+ "version": "3.1.7",
+ "license": "BSD-3-Clause",
"dependencies": {
- "@types/unist": "^2.0.0",
- "unist-util-visit": "^4.0.0"
+ "html-escaper": "^2.0.0",
+ "istanbul-lib-report": "^3.0.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/mdast-util-mdx-jsx/node_modules/unist-util-stringify-position": {
- "version": "3.0.2",
+ "node_modules/iterator.prototype": {
+ "version": "1.1.2",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/unist": "^2.0.0"
+ "define-properties": "^1.2.1",
+ "get-intrinsic": "^1.2.1",
+ "has-symbols": "^1.0.3",
+ "reflect.getprototypeof": "^1.0.4",
+ "set-function-name": "^2.0.1"
+ }
+ },
+ "node_modules/jackspeak": {
+ "version": "2.3.6",
+ "dev": true,
+ "license": "BlueOak-1.0.0",
+ "dependencies": {
+ "@isaacs/cliui": "^8.0.2"
+ },
+ "engines": {
+ "node": ">=14"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "url": "https://github.com/sponsors/isaacs"
+ },
+ "optionalDependencies": {
+ "@pkgjs/parseargs": "^0.11.0"
}
},
- "node_modules/mdast-util-mdx-jsx/node_modules/unist-util-visit": {
- "version": "4.1.0",
- "license": "MIT",
+ "node_modules/jake": {
+ "version": "10.8.7",
+ "dev": true,
+ "license": "Apache-2.0",
"dependencies": {
- "@types/unist": "^2.0.0",
- "unist-util-is": "^5.0.0",
- "unist-util-visit-parents": "^5.0.0"
+ "async": "^3.2.3",
+ "chalk": "^4.0.2",
+ "filelist": "^1.0.4",
+ "minimatch": "^3.1.2"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "bin": {
+ "jake": "bin/cli.js"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/mdast-util-mdx-jsx/node_modules/unist-util-visit-parents": {
- "version": "5.1.0",
- "license": "MIT",
+ "node_modules/jest": {
+ "version": "29.7.0",
+ "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz",
+ "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==",
+ "dev": true,
"dependencies": {
- "@types/unist": "^2.0.0",
- "unist-util-is": "^5.0.0"
+ "@jest/core": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "import-local": "^3.0.2",
+ "jest-cli": "^29.7.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "bin": {
+ "jest": "bin/jest.js"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ },
+ "peerDependencies": {
+ "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
+ },
+ "peerDependenciesMeta": {
+ "node-notifier": {
+ "optional": true
+ }
}
},
- "node_modules/mdast-util-mdx-jsx/node_modules/vfile-message": {
- "version": "3.1.2",
+ "node_modules/jest-changed-files": {
+ "version": "29.7.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/unist": "^2.0.0",
- "unist-util-stringify-position": "^3.0.0"
+ "execa": "^5.0.0",
+ "jest-util": "^29.7.0",
+ "p-limit": "^3.1.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/mdast-util-mdxjs-esm": {
- "version": "1.2.1",
+ "node_modules/jest-circus": {
+ "version": "29.7.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/estree-jsx": "^0.0.1",
- "@types/hast": "^2.0.0",
- "@types/mdast": "^3.0.0",
- "mdast-util-from-markdown": "^1.0.0",
- "mdast-util-to-markdown": "^1.0.0"
+ "@jest/environment": "^29.7.0",
+ "@jest/expect": "^29.7.0",
+ "@jest/test-result": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "co": "^4.6.0",
+ "dedent": "^1.0.0",
+ "is-generator-fn": "^2.0.0",
+ "jest-each": "^29.7.0",
+ "jest-matcher-utils": "^29.7.0",
+ "jest-message-util": "^29.7.0",
+ "jest-runtime": "^29.7.0",
+ "jest-snapshot": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "p-limit": "^3.1.0",
+ "pretty-format": "^29.7.0",
+ "pure-rand": "^6.0.0",
+ "slash": "^3.0.0",
+ "stack-utils": "^2.0.3"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/mdast-util-to-hast": {
- "version": "10.0.1",
+ "node_modules/jest-circus/node_modules/ansi-styles": {
+ "version": "5.2.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "@types/mdast": "^3.0.0",
- "@types/unist": "^2.0.0",
- "mdast-util-definitions": "^4.0.0",
- "mdurl": "^1.0.0",
- "unist-builder": "^2.0.0",
- "unist-util-generated": "^1.0.0",
- "unist-util-position": "^3.0.0",
- "unist-util-visit": "^2.0.0"
+ "engines": {
+ "node": ">=10"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/mdast-util-to-markdown": {
- "version": "1.3.0",
+ "node_modules/jest-circus/node_modules/dedent": {
+ "version": "1.5.1",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "@types/mdast": "^3.0.0",
- "@types/unist": "^2.0.0",
- "longest-streak": "^3.0.0",
- "mdast-util-to-string": "^3.0.0",
- "micromark-util-decode-string": "^1.0.0",
- "unist-util-visit": "^4.0.0",
- "zwitch": "^2.0.0"
+ "peerDependencies": {
+ "babel-plugin-macros": "^3.1.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "peerDependenciesMeta": {
+ "babel-plugin-macros": {
+ "optional": true
+ }
}
},
- "node_modules/mdast-util-to-markdown/node_modules/mdast-util-to-string": {
- "version": "3.1.0",
+ "node_modules/jest-circus/node_modules/pretty-format": {
+ "version": "29.7.0",
+ "dev": true,
"license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "dependencies": {
+ "@jest/schemas": "^29.6.3",
+ "ansi-styles": "^5.0.0",
+ "react-is": "^18.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/mdast-util-to-markdown/node_modules/unist-util-is": {
- "version": "5.1.1",
+ "node_modules/jest-circus/node_modules/react-is": {
+ "version": "18.2.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/jest-cli": {
+ "version": "29.7.0",
+ "dev": true,
"license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "dependencies": {
+ "@jest/core": "^29.7.0",
+ "@jest/test-result": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "chalk": "^4.0.0",
+ "create-jest": "^29.7.0",
+ "exit": "^0.1.2",
+ "import-local": "^3.0.2",
+ "jest-config": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "jest-validate": "^29.7.0",
+ "yargs": "^17.3.1"
+ },
+ "bin": {
+ "jest": "bin/jest.js"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ },
+ "peerDependencies": {
+ "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
+ },
+ "peerDependenciesMeta": {
+ "node-notifier": {
+ "optional": true
+ }
}
},
- "node_modules/mdast-util-to-markdown/node_modules/unist-util-visit": {
- "version": "4.1.0",
+ "node_modules/jest-config": {
+ "version": "29.7.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/unist": "^2.0.0",
- "unist-util-is": "^5.0.0",
- "unist-util-visit-parents": "^5.0.0"
+ "@babel/core": "^7.11.6",
+ "@jest/test-sequencer": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "babel-jest": "^29.7.0",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "deepmerge": "^4.2.2",
+ "glob": "^7.1.3",
+ "graceful-fs": "^4.2.9",
+ "jest-circus": "^29.7.0",
+ "jest-environment-node": "^29.7.0",
+ "jest-get-type": "^29.6.3",
+ "jest-regex-util": "^29.6.3",
+ "jest-resolve": "^29.7.0",
+ "jest-runner": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "jest-validate": "^29.7.0",
+ "micromatch": "^4.0.4",
+ "parse-json": "^5.2.0",
+ "pretty-format": "^29.7.0",
+ "slash": "^3.0.0",
+ "strip-json-comments": "^3.1.1"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/mdast-util-to-markdown/node_modules/unist-util-visit-parents": {
- "version": "5.1.0",
- "license": "MIT",
- "dependencies": {
- "@types/unist": "^2.0.0",
- "unist-util-is": "^5.0.0"
+ "peerDependencies": {
+ "@types/node": "*",
+ "ts-node": ">=9.0.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/mdast-util-to-markdown/node_modules/zwitch": {
- "version": "2.0.2",
- "license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "peerDependenciesMeta": {
+ "@types/node": {
+ "optional": true
+ },
+ "ts-node": {
+ "optional": true
+ }
}
},
- "node_modules/mdast-util-to-string": {
- "version": "1.1.0",
+ "node_modules/jest-config/node_modules/ansi-styles": {
+ "version": "5.2.0",
"dev": true,
"license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/mdurl": {
- "version": "1.0.1",
- "license": "MIT"
- },
- "node_modules/media-typer": {
- "version": "0.3.0",
+ "node_modules/jest-config/node_modules/ci-info": {
+ "version": "3.9.0",
"dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/sibiraj-s"
+ }
+ ],
"license": "MIT",
"engines": {
- "node": ">= 0.6"
+ "node": ">=8"
}
},
- "node_modules/mem": {
- "version": "8.1.1",
+ "node_modules/jest-config/node_modules/pretty-format": {
+ "version": "29.7.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "map-age-cleaner": "^0.1.3",
- "mimic-fn": "^3.1.0"
+ "@jest/schemas": "^29.6.3",
+ "ansi-styles": "^5.0.0",
+ "react-is": "^18.0.0"
},
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sindresorhus/mem?sponsor=1"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/mem/node_modules/mimic-fn": {
- "version": "3.1.0",
+ "node_modules/jest-config/node_modules/react-is": {
+ "version": "18.2.0",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
+ "license": "MIT"
},
- "node_modules/memfs": {
- "version": "3.4.1",
+ "node_modules/jest-diff": {
+ "version": "29.7.0",
"dev": true,
- "license": "Unlicense",
+ "license": "MIT",
"dependencies": {
- "fs-monkey": "1.0.3"
+ "chalk": "^4.0.0",
+ "diff-sequences": "^29.6.3",
+ "jest-get-type": "^29.6.3",
+ "pretty-format": "^29.7.0"
},
"engines": {
- "node": ">= 4.0.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/memoizerific": {
- "version": "1.11.3",
+ "node_modules/jest-diff/node_modules/ansi-styles": {
+ "version": "5.2.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "map-or-similar": "^1.5.0"
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/memory-fs": {
- "version": "0.4.1",
+ "node_modules/jest-diff/node_modules/pretty-format": {
+ "version": "29.7.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "errno": "^0.1.3",
- "readable-stream": "^2.0.1"
+ "@jest/schemas": "^29.6.3",
+ "ansi-styles": "^5.0.0",
+ "react-is": "^18.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/memory-fs/node_modules/isarray": {
- "version": "1.0.0",
+ "node_modules/jest-diff/node_modules/react-is": {
+ "version": "18.2.0",
"dev": true,
"license": "MIT"
},
- "node_modules/memory-fs/node_modules/readable-stream": {
- "version": "2.3.8",
+ "node_modules/jest-docblock": {
+ "version": "29.7.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "core-util-is": "~1.0.0",
- "inherits": "~2.0.3",
- "isarray": "~1.0.0",
- "process-nextick-args": "~2.0.0",
- "safe-buffer": "~5.1.1",
- "string_decoder": "~1.1.1",
- "util-deprecate": "~1.0.1"
+ "detect-newline": "^3.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/memory-fs/node_modules/string_decoder": {
- "version": "1.1.1",
+ "node_modules/jest-each": {
+ "version": "29.7.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "safe-buffer": "~5.1.0"
+ "@jest/types": "^29.6.3",
+ "chalk": "^4.0.0",
+ "jest-get-type": "^29.6.3",
+ "jest-util": "^29.7.0",
+ "pretty-format": "^29.7.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/meow": {
- "version": "8.1.2",
+ "node_modules/jest-each/node_modules/ansi-styles": {
+ "version": "5.2.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "@types/minimist": "^1.2.0",
- "camelcase-keys": "^6.2.2",
- "decamelize-keys": "^1.1.0",
- "hard-rejection": "^2.1.0",
- "minimist-options": "4.1.0",
- "normalize-package-data": "^3.0.0",
- "read-pkg-up": "^7.0.1",
- "redent": "^3.0.0",
- "trim-newlines": "^3.0.0",
- "type-fest": "^0.18.0",
- "yargs-parser": "^20.2.3"
- },
"engines": {
"node": ">=10"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/meow/node_modules/type-fest": {
- "version": "0.18.1",
+ "node_modules/jest-each/node_modules/pretty-format": {
+ "version": "29.7.0",
"dev": true,
- "license": "(MIT OR CC0-1.0)",
- "engines": {
- "node": ">=10"
+ "license": "MIT",
+ "dependencies": {
+ "@jest/schemas": "^29.6.3",
+ "ansi-styles": "^5.0.0",
+ "react-is": "^18.0.0"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/merge-descriptors": {
- "version": "1.0.1",
+ "node_modules/jest-each/node_modules/react-is": {
+ "version": "18.2.0",
"dev": true,
"license": "MIT"
},
- "node_modules/merge-stream": {
- "version": "2.0.0",
+ "node_modules/jest-environment-jsdom": {
+ "version": "29.7.0",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "dependencies": {
+ "@jest/environment": "^29.7.0",
+ "@jest/fake-timers": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/jsdom": "^20.0.0",
+ "@types/node": "*",
+ "jest-mock": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "jsdom": "^20.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ },
+ "peerDependencies": {
+ "canvas": "^2.5.0"
+ },
+ "peerDependenciesMeta": {
+ "canvas": {
+ "optional": true
+ }
+ }
},
- "node_modules/merge2": {
- "version": "1.4.1",
+ "node_modules/jest-environment-jsdom/node_modules/acorn": {
+ "version": "8.11.3",
"dev": true,
"license": "MIT",
+ "bin": {
+ "acorn": "bin/acorn"
+ },
"engines": {
- "node": ">= 8"
+ "node": ">=0.4.0"
}
},
- "node_modules/methods": {
- "version": "1.1.2",
+ "node_modules/jest-environment-jsdom/node_modules/acorn-globals": {
+ "version": "7.0.1",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "acorn": "^8.1.0",
+ "acorn-walk": "^8.0.2"
+ }
+ },
+ "node_modules/jest-environment-jsdom/node_modules/acorn-walk": {
+ "version": "8.3.2",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">= 0.6"
+ "node": ">=0.4.0"
}
},
- "node_modules/microevent.ts": {
- "version": "0.1.1",
+ "node_modules/jest-environment-jsdom/node_modules/cssom": {
+ "version": "0.5.0",
"dev": true,
"license": "MIT"
},
- "node_modules/micromark": {
- "version": "3.0.10",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
+ "node_modules/jest-environment-jsdom/node_modules/data-urls": {
+ "version": "3.0.2",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/debug": "^4.0.0",
- "debug": "^4.0.0",
- "decode-named-character-reference": "^1.0.0",
- "micromark-core-commonmark": "^1.0.1",
- "micromark-factory-space": "^1.0.0",
- "micromark-util-character": "^1.0.0",
- "micromark-util-chunked": "^1.0.0",
- "micromark-util-combine-extensions": "^1.0.0",
- "micromark-util-decode-numeric-character-reference": "^1.0.0",
- "micromark-util-encode": "^1.0.0",
- "micromark-util-normalize-identifier": "^1.0.0",
- "micromark-util-resolve-all": "^1.0.0",
- "micromark-util-sanitize-uri": "^1.0.0",
- "micromark-util-subtokenize": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.1",
- "uvu": "^0.5.0"
+ "abab": "^2.0.6",
+ "whatwg-mimetype": "^3.0.0",
+ "whatwg-url": "^11.0.0"
+ },
+ "engines": {
+ "node": ">=12"
}
},
- "node_modules/micromark-core-commonmark": {
- "version": "1.0.6",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
+ "node_modules/jest-environment-jsdom/node_modules/domexception": {
+ "version": "4.0.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "decode-named-character-reference": "^1.0.0",
- "micromark-factory-destination": "^1.0.0",
- "micromark-factory-label": "^1.0.0",
- "micromark-factory-space": "^1.0.0",
- "micromark-factory-title": "^1.0.0",
- "micromark-factory-whitespace": "^1.0.0",
- "micromark-util-character": "^1.0.0",
- "micromark-util-chunked": "^1.0.0",
- "micromark-util-classify-character": "^1.0.0",
- "micromark-util-html-tag-name": "^1.0.0",
- "micromark-util-normalize-identifier": "^1.0.0",
- "micromark-util-resolve-all": "^1.0.0",
- "micromark-util-subtokenize": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.1",
- "uvu": "^0.5.0"
+ "webidl-conversions": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=12"
}
},
- "node_modules/micromark-extension-gfm": {
- "version": "2.0.1",
+ "node_modules/jest-environment-jsdom/node_modules/html-encoding-sniffer": {
+ "version": "3.0.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "micromark-extension-gfm-autolink-literal": "^1.0.0",
- "micromark-extension-gfm-footnote": "^1.0.0",
- "micromark-extension-gfm-strikethrough": "^1.0.0",
- "micromark-extension-gfm-table": "^1.0.0",
- "micromark-extension-gfm-tagfilter": "^1.0.0",
- "micromark-extension-gfm-task-list-item": "^1.0.0",
- "micromark-util-combine-extensions": "^1.0.0",
- "micromark-util-types": "^1.0.0"
+ "whatwg-encoding": "^2.0.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=12"
}
},
- "node_modules/micromark-extension-gfm-autolink-literal": {
- "version": "1.0.3",
+ "node_modules/jest-environment-jsdom/node_modules/iconv-lite": {
+ "version": "0.6.3",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "micromark-util-character": "^1.0.0",
- "micromark-util-sanitize-uri": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0",
- "uvu": "^0.5.0"
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/micromark-extension-gfm-footnote": {
- "version": "1.0.4",
+ "node_modules/jest-environment-jsdom/node_modules/jest-mock": {
+ "version": "29.7.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "micromark-core-commonmark": "^1.0.0",
- "micromark-factory-space": "^1.0.0",
- "micromark-util-character": "^1.0.0",
- "micromark-util-normalize-identifier": "^1.0.0",
- "micromark-util-sanitize-uri": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0",
- "uvu": "^0.5.0"
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "jest-util": "^29.7.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/micromark-extension-gfm-strikethrough": {
- "version": "1.0.4",
+ "node_modules/jest-environment-jsdom/node_modules/jsdom": {
+ "version": "20.0.3",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "micromark-util-chunked": "^1.0.0",
- "micromark-util-classify-character": "^1.0.0",
- "micromark-util-resolve-all": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0",
- "uvu": "^0.5.0"
+ "abab": "^2.0.6",
+ "acorn": "^8.8.1",
+ "acorn-globals": "^7.0.0",
+ "cssom": "^0.5.0",
+ "cssstyle": "^2.3.0",
+ "data-urls": "^3.0.2",
+ "decimal.js": "^10.4.2",
+ "domexception": "^4.0.0",
+ "escodegen": "^2.0.0",
+ "form-data": "^4.0.0",
+ "html-encoding-sniffer": "^3.0.0",
+ "http-proxy-agent": "^5.0.0",
+ "https-proxy-agent": "^5.0.1",
+ "is-potential-custom-element-name": "^1.0.1",
+ "nwsapi": "^2.2.2",
+ "parse5": "^7.1.1",
+ "saxes": "^6.0.0",
+ "symbol-tree": "^3.2.4",
+ "tough-cookie": "^4.1.2",
+ "w3c-xmlserializer": "^4.0.0",
+ "webidl-conversions": "^7.0.0",
+ "whatwg-encoding": "^2.0.0",
+ "whatwg-mimetype": "^3.0.0",
+ "whatwg-url": "^11.0.0",
+ "ws": "^8.11.0",
+ "xml-name-validator": "^4.0.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "canvas": "^2.5.0"
+ },
+ "peerDependenciesMeta": {
+ "canvas": {
+ "optional": true
+ }
}
},
- "node_modules/micromark-extension-gfm-table": {
- "version": "1.0.5",
- "license": "MIT",
+ "node_modules/jest-environment-jsdom/node_modules/saxes": {
+ "version": "6.0.0",
+ "dev": true,
+ "license": "ISC",
"dependencies": {
- "micromark-factory-space": "^1.0.0",
- "micromark-util-character": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0",
- "uvu": "^0.5.0"
+ "xmlchars": "^2.2.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=v12.22.7"
}
},
- "node_modules/micromark-extension-gfm-tagfilter": {
- "version": "1.0.1",
- "license": "MIT",
+ "node_modules/jest-environment-jsdom/node_modules/tough-cookie": {
+ "version": "4.1.3",
+ "dev": true,
+ "license": "BSD-3-Clause",
"dependencies": {
- "micromark-util-types": "^1.0.0"
+ "psl": "^1.1.33",
+ "punycode": "^2.1.1",
+ "universalify": "^0.2.0",
+ "url-parse": "^1.5.3"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=6"
}
},
- "node_modules/micromark-extension-gfm-task-list-item": {
- "version": "1.0.3",
+ "node_modules/jest-environment-jsdom/node_modules/tr46": {
+ "version": "3.0.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "micromark-factory-space": "^1.0.0",
- "micromark-util-character": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0",
- "uvu": "^0.5.0"
+ "punycode": "^2.1.1"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=12"
}
},
- "node_modules/micromark-extension-mdx-expression": {
- "version": "1.0.3",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
+ "node_modules/jest-environment-jsdom/node_modules/universalify": {
+ "version": "0.2.0",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "micromark-factory-mdx-expression": "^1.0.0",
- "micromark-factory-space": "^1.0.0",
- "micromark-util-character": "^1.0.0",
- "micromark-util-events-to-acorn": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0",
- "uvu": "^0.5.0"
+ "engines": {
+ "node": ">= 4.0.0"
}
},
- "node_modules/micromark-extension-mdx-jsx": {
- "version": "1.0.3",
+ "node_modules/jest-environment-jsdom/node_modules/w3c-xmlserializer": {
+ "version": "4.0.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/acorn": "^4.0.0",
- "estree-util-is-identifier-name": "^2.0.0",
- "micromark-factory-mdx-expression": "^1.0.0",
- "micromark-factory-space": "^1.0.0",
- "micromark-util-character": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0",
- "uvu": "^0.5.0",
- "vfile-message": "^3.0.0"
+ "xml-name-validator": "^4.0.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=14"
}
},
- "node_modules/micromark-extension-mdx-jsx/node_modules/estree-util-is-identifier-name": {
- "version": "2.0.1",
- "license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "node_modules/jest-environment-jsdom/node_modules/webidl-conversions": {
+ "version": "7.0.0",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=12"
}
},
- "node_modules/micromark-extension-mdx-jsx/node_modules/unist-util-stringify-position": {
- "version": "3.0.2",
+ "node_modules/jest-environment-jsdom/node_modules/whatwg-encoding": {
+ "version": "2.0.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/unist": "^2.0.0"
+ "iconv-lite": "0.6.3"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=12"
}
},
- "node_modules/micromark-extension-mdx-jsx/node_modules/vfile-message": {
- "version": "3.1.2",
+ "node_modules/jest-environment-jsdom/node_modules/whatwg-mimetype": {
+ "version": "3.0.0",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "@types/unist": "^2.0.0",
- "unist-util-stringify-position": "^3.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=12"
}
},
- "node_modules/micromark-extension-mdx-md": {
- "version": "1.0.0",
+ "node_modules/jest-environment-jsdom/node_modules/whatwg-url": {
+ "version": "11.0.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "micromark-util-types": "^1.0.0"
+ "tr46": "^3.0.0",
+ "webidl-conversions": "^7.0.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=12"
}
},
- "node_modules/micromark-extension-mdxjs": {
- "version": "1.0.0",
+ "node_modules/jest-environment-jsdom/node_modules/ws": {
+ "version": "8.16.0",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "acorn": "^8.0.0",
- "acorn-jsx": "^5.0.0",
- "micromark-extension-mdx-expression": "^1.0.0",
- "micromark-extension-mdx-jsx": "^1.0.0",
- "micromark-extension-mdx-md": "^1.0.0",
- "micromark-extension-mdxjs-esm": "^1.0.0",
- "micromark-util-combine-extensions": "^1.0.0",
- "micromark-util-types": "^1.0.0"
+ "engines": {
+ "node": ">=10.0.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "peerDependencies": {
+ "bufferutil": "^4.0.1",
+ "utf-8-validate": ">=5.0.2"
+ },
+ "peerDependenciesMeta": {
+ "bufferutil": {
+ "optional": true
+ },
+ "utf-8-validate": {
+ "optional": true
+ }
}
},
- "node_modules/micromark-extension-mdxjs-esm": {
- "version": "1.0.3",
+ "node_modules/jest-environment-jsdom/node_modules/xml-name-validator": {
+ "version": "4.0.0",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/jest-environment-node": {
+ "version": "29.7.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "micromark-core-commonmark": "^1.0.0",
- "micromark-util-character": "^1.0.0",
- "micromark-util-events-to-acorn": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0",
- "unist-util-position-from-estree": "^1.1.0",
- "uvu": "^0.5.0",
- "vfile-message": "^3.0.0"
+ "@jest/environment": "^29.7.0",
+ "@jest/fake-timers": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "jest-mock": "^29.7.0",
+ "jest-util": "^29.7.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/micromark-extension-mdxjs-esm/node_modules/unist-util-stringify-position": {
- "version": "3.0.2",
+ "node_modules/jest-environment-node/node_modules/jest-mock": {
+ "version": "29.7.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/unist": "^2.0.0"
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "jest-util": "^29.7.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/micromark-extension-mdxjs-esm/node_modules/vfile-message": {
- "version": "3.1.2",
+ "node_modules/jest-get-type": {
+ "version": "29.6.3",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "@types/unist": "^2.0.0",
- "unist-util-stringify-position": "^3.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/micromark-factory-destination": {
- "version": "1.0.0",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
+ "node_modules/jest-haste-map": {
+ "version": "29.7.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "micromark-util-character": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0"
+ "@jest/types": "^29.6.3",
+ "@types/graceful-fs": "^4.1.3",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "graceful-fs": "^4.2.9",
+ "jest-regex-util": "^29.6.3",
+ "jest-util": "^29.7.0",
+ "jest-worker": "^29.7.0",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.8"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ },
+ "optionalDependencies": {
+ "fsevents": "^2.3.2"
}
},
- "node_modules/micromark-factory-label": {
- "version": "1.0.2",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
- "license": "MIT",
+ "node_modules/jest-junit": {
+ "version": "16.0.0",
+ "dev": true,
+ "license": "Apache-2.0",
"dependencies": {
- "micromark-util-character": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0",
- "uvu": "^0.5.0"
+ "mkdirp": "^1.0.4",
+ "strip-ansi": "^6.0.1",
+ "uuid": "^8.3.2",
+ "xml": "^1.0.1"
+ },
+ "engines": {
+ "node": ">=10.12.0"
}
},
- "node_modules/micromark-factory-mdx-expression": {
- "version": "1.0.6",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
+ "node_modules/jest-junit/node_modules/uuid": {
+ "version": "8.3.2",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "micromark-factory-space": "^1.0.0",
- "micromark-util-character": "^1.0.0",
- "micromark-util-events-to-acorn": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0",
- "unist-util-position-from-estree": "^1.0.0",
- "uvu": "^0.5.0",
- "vfile-message": "^3.0.0"
+ "bin": {
+ "uuid": "dist/bin/uuid"
}
},
- "node_modules/micromark-factory-mdx-expression/node_modules/unist-util-stringify-position": {
- "version": "3.0.2",
+ "node_modules/jest-leak-detector": {
+ "version": "29.7.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/unist": "^2.0.0"
+ "jest-get-type": "^29.6.3",
+ "pretty-format": "^29.7.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/micromark-factory-mdx-expression/node_modules/vfile-message": {
- "version": "3.1.2",
+ "node_modules/jest-leak-detector/node_modules/ansi-styles": {
+ "version": "5.2.0",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "@types/unist": "^2.0.0",
- "unist-util-stringify-position": "^3.0.0"
+ "engines": {
+ "node": ">=10"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/micromark-factory-space": {
- "version": "1.0.0",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
+ "node_modules/jest-leak-detector/node_modules/pretty-format": {
+ "version": "29.7.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "micromark-util-character": "^1.0.0",
- "micromark-util-types": "^1.0.0"
+ "@jest/schemas": "^29.6.3",
+ "ansi-styles": "^5.0.0",
+ "react-is": "^18.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/micromark-factory-title": {
- "version": "1.0.2",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "micromark-factory-space": "^1.0.0",
- "micromark-util-character": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0",
- "uvu": "^0.5.0"
- }
+ "node_modules/jest-leak-detector/node_modules/react-is": {
+ "version": "18.2.0",
+ "dev": true,
+ "license": "MIT"
},
- "node_modules/micromark-factory-whitespace": {
- "version": "1.0.0",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
+ "node_modules/jest-matcher-utils": {
+ "version": "29.7.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "micromark-factory-space": "^1.0.0",
- "micromark-util-character": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0"
+ "chalk": "^4.0.0",
+ "jest-diff": "^29.7.0",
+ "jest-get-type": "^29.6.3",
+ "pretty-format": "^29.7.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/micromark-util-character": {
- "version": "1.1.0",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
+ "node_modules/jest-matcher-utils/node_modules/ansi-styles": {
+ "version": "5.2.0",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0"
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/micromark-util-chunked": {
- "version": "1.0.0",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
+ "node_modules/jest-matcher-utils/node_modules/pretty-format": {
+ "version": "29.7.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "micromark-util-symbol": "^1.0.0"
+ "@jest/schemas": "^29.6.3",
+ "ansi-styles": "^5.0.0",
+ "react-is": "^18.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/micromark-util-classify-character": {
- "version": "1.0.0",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "micromark-util-character": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0"
- }
+ "node_modules/jest-matcher-utils/node_modules/react-is": {
+ "version": "18.2.0",
+ "dev": true,
+ "license": "MIT"
},
- "node_modules/micromark-util-combine-extensions": {
- "version": "1.0.0",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
+ "node_modules/jest-message-util": {
+ "version": "29.7.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "micromark-util-chunked": "^1.0.0",
- "micromark-util-types": "^1.0.0"
+ "@babel/code-frame": "^7.12.13",
+ "@jest/types": "^29.6.3",
+ "@types/stack-utils": "^2.0.0",
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.9",
+ "micromatch": "^4.0.4",
+ "pretty-format": "^29.7.0",
+ "slash": "^3.0.0",
+ "stack-utils": "^2.0.3"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/micromark-util-decode-numeric-character-reference": {
- "version": "1.0.0",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
+ "node_modules/jest-message-util/node_modules/ansi-styles": {
+ "version": "5.2.0",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "micromark-util-symbol": "^1.0.0"
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/micromark-util-decode-string": {
- "version": "1.0.2",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
+ "node_modules/jest-message-util/node_modules/pretty-format": {
+ "version": "29.7.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "decode-named-character-reference": "^1.0.0",
- "micromark-util-character": "^1.0.0",
- "micromark-util-decode-numeric-character-reference": "^1.0.0",
- "micromark-util-symbol": "^1.0.0"
+ "@jest/schemas": "^29.6.3",
+ "ansi-styles": "^5.0.0",
+ "react-is": "^18.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/micromark-util-encode": {
- "version": "1.0.1",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
+ "node_modules/jest-message-util/node_modules/react-is": {
+ "version": "18.2.0",
+ "dev": true,
"license": "MIT"
},
- "node_modules/micromark-util-events-to-acorn": {
- "version": "1.1.0",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
+ "node_modules/jest-mock": {
+ "version": "27.5.1",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/acorn": "^4.0.0",
- "@types/estree": "^0.0.51",
- "estree-util-visit": "^1.0.0",
- "micromark-util-types": "^1.0.0",
- "uvu": "^0.5.0",
- "vfile-location": "^4.0.0",
- "vfile-message": "^3.0.0"
+ "@jest/types": "^27.5.1",
+ "@types/node": "*"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
- "node_modules/micromark-util-events-to-acorn/node_modules/unist-util-stringify-position": {
- "version": "3.0.2",
+ "node_modules/jest-mock/node_modules/@jest/types": {
+ "version": "27.5.1",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/unist": "^2.0.0"
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
- "node_modules/micromark-util-events-to-acorn/node_modules/vfile": {
- "version": "5.3.4",
+ "node_modules/jest-mock/node_modules/@types/yargs": {
+ "version": "16.0.9",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/unist": "^2.0.0",
- "is-buffer": "^2.0.0",
- "unist-util-stringify-position": "^3.0.0",
- "vfile-message": "^3.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "@types/yargs-parser": "*"
}
},
- "node_modules/micromark-util-events-to-acorn/node_modules/vfile-location": {
- "version": "4.0.1",
+ "node_modules/jest-playwright-preset": {
+ "version": "4.0.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/unist": "^2.0.0",
- "vfile": "^5.0.0"
+ "expect-playwright": "^0.8.0",
+ "jest-process-manager": "^0.4.0",
+ "nyc": "^15.1.0",
+ "playwright-core": ">=1.2.0",
+ "rimraf": "^3.0.2",
+ "uuid": "^8.3.2"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "peerDependencies": {
+ "jest": "^29.3.1",
+ "jest-circus": "^29.3.1",
+ "jest-environment-node": "^29.3.1",
+ "jest-runner": "^29.3.1"
}
},
- "node_modules/micromark-util-events-to-acorn/node_modules/vfile-message": {
- "version": "3.1.2",
+ "node_modules/jest-playwright-preset/node_modules/uuid": {
+ "version": "8.3.2",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "@types/unist": "^2.0.0",
- "unist-util-stringify-position": "^3.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "bin": {
+ "uuid": "dist/bin/uuid"
}
},
- "node_modules/micromark-util-html-tag-name": {
- "version": "1.1.0",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
+ "node_modules/jest-pnp-resolver": {
+ "version": "1.2.3",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ },
+ "peerDependencies": {
+ "jest-resolve": "*"
+ },
+ "peerDependenciesMeta": {
+ "jest-resolve": {
+ "optional": true
}
- ],
- "license": "MIT"
+ }
},
- "node_modules/micromark-util-normalize-identifier": {
- "version": "1.0.0",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
+ "node_modules/jest-process-manager": {
+ "version": "0.4.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "micromark-util-symbol": "^1.0.0"
+ "@types/wait-on": "^5.2.0",
+ "chalk": "^4.1.0",
+ "cwd": "^0.10.0",
+ "exit": "^0.1.2",
+ "find-process": "^1.4.4",
+ "prompts": "^2.4.1",
+ "signal-exit": "^3.0.3",
+ "spawnd": "^5.0.0",
+ "tree-kill": "^1.2.2",
+ "wait-on": "^7.0.0"
}
},
- "node_modules/micromark-util-resolve-all": {
- "version": "1.0.0",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
+ "node_modules/jest-regex-util": {
+ "version": "29.6.3",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "micromark-util-types": "^1.0.0"
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/micromark-util-sanitize-uri": {
- "version": "1.0.0",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
+ "node_modules/jest-resolve": {
+ "version": "29.7.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "micromark-util-character": "^1.0.0",
- "micromark-util-encode": "^1.0.0",
- "micromark-util-symbol": "^1.0.0"
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.9",
+ "jest-haste-map": "^29.7.0",
+ "jest-pnp-resolver": "^1.2.2",
+ "jest-util": "^29.7.0",
+ "jest-validate": "^29.7.0",
+ "resolve": "^1.20.0",
+ "resolve.exports": "^2.0.0",
+ "slash": "^3.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/micromark-util-subtokenize": {
- "version": "1.0.2",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
+ "node_modules/jest-resolve-dependencies": {
+ "version": "29.7.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "micromark-util-chunked": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0",
- "uvu": "^0.5.0"
+ "jest-regex-util": "^29.6.3",
+ "jest-snapshot": "^29.7.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/micromark-util-symbol": {
- "version": "1.0.1",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
- "license": "MIT"
- },
- "node_modules/micromark-util-types": {
- "version": "1.0.2",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
- "license": "MIT"
+ "node_modules/jest-runner": {
+ "version": "29.7.0",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@jest/console": "^29.7.0",
+ "@jest/environment": "^29.7.0",
+ "@jest/test-result": "^29.7.0",
+ "@jest/transform": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "emittery": "^0.13.1",
+ "graceful-fs": "^4.2.9",
+ "jest-docblock": "^29.7.0",
+ "jest-environment-node": "^29.7.0",
+ "jest-haste-map": "^29.7.0",
+ "jest-leak-detector": "^29.7.0",
+ "jest-message-util": "^29.7.0",
+ "jest-resolve": "^29.7.0",
+ "jest-runtime": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "jest-watcher": "^29.7.0",
+ "jest-worker": "^29.7.0",
+ "p-limit": "^3.1.0",
+ "source-map-support": "0.5.13"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
},
- "node_modules/micromatch": {
- "version": "4.0.5",
+ "node_modules/jest-runtime": {
+ "version": "29.7.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "braces": "^3.0.2",
- "picomatch": "^2.3.1"
+ "@jest/environment": "^29.7.0",
+ "@jest/fake-timers": "^29.7.0",
+ "@jest/globals": "^29.7.0",
+ "@jest/source-map": "^29.6.3",
+ "@jest/test-result": "^29.7.0",
+ "@jest/transform": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "cjs-module-lexer": "^1.0.0",
+ "collect-v8-coverage": "^1.0.0",
+ "glob": "^7.1.3",
+ "graceful-fs": "^4.2.9",
+ "jest-haste-map": "^29.7.0",
+ "jest-message-util": "^29.7.0",
+ "jest-mock": "^29.7.0",
+ "jest-regex-util": "^29.6.3",
+ "jest-resolve": "^29.7.0",
+ "jest-snapshot": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "slash": "^3.0.0",
+ "strip-bom": "^4.0.0"
},
"engines": {
- "node": ">=8.6"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/miller-rabin": {
- "version": "4.0.1",
+ "node_modules/jest-runtime/node_modules/jest-mock": {
+ "version": "29.7.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "bn.js": "^4.0.0",
- "brorand": "^1.0.1"
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "jest-util": "^29.7.0"
},
- "bin": {
- "miller-rabin": "bin/miller-rabin"
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/miller-rabin/node_modules/bn.js": {
- "version": "4.12.0",
+ "node_modules/jest-serializer-html": {
+ "version": "7.1.0",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "dependencies": {
+ "diffable-html": "^4.1.0"
+ }
},
- "node_modules/mime": {
- "version": "3.0.0",
+ "node_modules/jest-snapshot": {
+ "version": "29.7.0",
"dev": true,
"license": "MIT",
- "bin": {
- "mime": "cli.js"
+ "dependencies": {
+ "@babel/core": "^7.11.6",
+ "@babel/generator": "^7.7.2",
+ "@babel/plugin-syntax-jsx": "^7.7.2",
+ "@babel/plugin-syntax-typescript": "^7.7.2",
+ "@babel/types": "^7.3.3",
+ "@jest/expect-utils": "^29.7.0",
+ "@jest/transform": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "babel-preset-current-node-syntax": "^1.0.0",
+ "chalk": "^4.0.0",
+ "expect": "^29.7.0",
+ "graceful-fs": "^4.2.9",
+ "jest-diff": "^29.7.0",
+ "jest-get-type": "^29.6.3",
+ "jest-matcher-utils": "^29.7.0",
+ "jest-message-util": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "natural-compare": "^1.4.0",
+ "pretty-format": "^29.7.0",
+ "semver": "^7.5.3"
},
"engines": {
- "node": ">=10.0.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/mime-db": {
- "version": "1.52.0",
+ "node_modules/jest-snapshot/node_modules/ansi-styles": {
+ "version": "5.2.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">= 0.6"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/mime-types": {
- "version": "2.1.34",
+ "node_modules/jest-snapshot/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "mime-db": "1.51.0"
+ "yallist": "^4.0.0"
},
"engines": {
- "node": ">= 0.6"
+ "node": ">=10"
}
},
- "node_modules/mime-types/node_modules/mime-db": {
- "version": "1.51.0",
+ "node_modules/jest-snapshot/node_modules/pretty-format": {
+ "version": "29.7.0",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "@jest/schemas": "^29.6.3",
+ "ansi-styles": "^5.0.0",
+ "react-is": "^18.0.0"
+ },
"engines": {
- "node": ">= 0.6"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/mimic-fn": {
- "version": "2.1.0",
+ "node_modules/jest-snapshot/node_modules/react-is": {
+ "version": "18.2.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/jest-snapshot/node_modules/semver": {
+ "version": "7.6.0",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/jest-snapshot/node_modules/yallist": {
+ "version": "4.0.0",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/jest-util": {
+ "version": "29.7.0",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.9",
+ "picomatch": "^2.2.3"
+ },
"engines": {
- "node": ">=6"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/mimic-response": {
- "version": "1.0.1",
+ "node_modules/jest-util/node_modules/ci-info": {
+ "version": "3.9.0",
"dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/sibiraj-s"
+ }
+ ],
"license": "MIT",
"engines": {
- "node": ">=4"
+ "node": ">=8"
}
},
- "node_modules/min-document": {
- "version": "2.19.0",
+ "node_modules/jest-validate": {
+ "version": "29.7.0",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "dom-walk": "^0.1.0"
+ "@jest/types": "^29.6.3",
+ "camelcase": "^6.2.0",
+ "chalk": "^4.0.0",
+ "jest-get-type": "^29.6.3",
+ "leven": "^3.1.0",
+ "pretty-format": "^29.7.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/min-indent": {
- "version": "1.0.1",
+ "node_modules/jest-validate/node_modules/ansi-styles": {
+ "version": "5.2.0",
+ "dev": true,
"license": "MIT",
"engines": {
- "node": ">=4"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/minimalistic-assert": {
- "version": "1.0.1",
+ "node_modules/jest-validate/node_modules/camelcase": {
+ "version": "6.3.0",
"dev": true,
- "license": "ISC"
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
},
- "node_modules/minimalistic-crypto-utils": {
- "version": "1.0.1",
+ "node_modules/jest-validate/node_modules/pretty-format": {
+ "version": "29.7.0",
"dev": true,
- "license": "MIT"
- },
- "node_modules/minimatch": {
- "version": "3.1.2",
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "brace-expansion": "^1.1.7"
+ "@jest/schemas": "^29.6.3",
+ "ansi-styles": "^5.0.0",
+ "react-is": "^18.0.0"
},
"engines": {
- "node": "*"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/minimist": {
- "version": "1.2.6",
+ "node_modules/jest-validate/node_modules/react-is": {
+ "version": "18.2.0",
"dev": true,
"license": "MIT"
},
- "node_modules/minimist-options": {
- "version": "4.1.0",
+ "node_modules/jest-watch-typeahead": {
+ "version": "2.2.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "arrify": "^1.0.1",
- "is-plain-obj": "^1.1.0",
- "kind-of": "^6.0.3"
+ "ansi-escapes": "^6.0.0",
+ "chalk": "^5.2.0",
+ "jest-regex-util": "^29.0.0",
+ "jest-watcher": "^29.0.0",
+ "slash": "^5.0.0",
+ "string-length": "^5.0.1",
+ "strip-ansi": "^7.0.1"
},
"engines": {
- "node": ">= 6"
+ "node": "^14.17.0 || ^16.10.0 || >=18.0.0"
+ },
+ "peerDependencies": {
+ "jest": "^27.0.0 || ^28.0.0 || ^29.0.0"
}
},
- "node_modules/minimist-options/node_modules/arrify": {
- "version": "1.0.1",
+ "node_modules/jest-watch-typeahead/node_modules/ansi-escapes": {
+ "version": "6.2.1",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=0.10.0"
+ "node": ">=14.16"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/minipass": {
- "version": "3.1.6",
+ "node_modules/jest-watch-typeahead/node_modules/ansi-regex": {
+ "version": "6.0.1",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "yallist": "^4.0.0"
- },
+ "license": "MIT",
"engines": {
- "node": ">=8"
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
}
},
- "node_modules/minipass-collect": {
- "version": "1.0.2",
+ "node_modules/jest-watch-typeahead/node_modules/chalk": {
+ "version": "5.3.0",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "minipass": "^3.0.0"
+ "license": "MIT",
+ "engines": {
+ "node": "^12.17.0 || ^14.13 || >=16.0.0"
},
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/jest-watch-typeahead/node_modules/char-regex": {
+ "version": "2.0.1",
+ "dev": true,
+ "license": "MIT",
"engines": {
- "node": ">= 8"
+ "node": ">=12.20"
}
},
- "node_modules/minipass-fetch": {
- "version": "1.4.1",
+ "node_modules/jest-watch-typeahead/node_modules/slash": {
+ "version": "5.1.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "minipass": "^3.1.0",
- "minipass-sized": "^1.0.3",
- "minizlib": "^2.0.0"
- },
"engines": {
- "node": ">=8"
+ "node": ">=14.16"
},
- "optionalDependencies": {
- "encoding": "^0.1.12"
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/minipass-flush": {
- "version": "1.0.5",
+ "node_modules/jest-watch-typeahead/node_modules/string-length": {
+ "version": "5.0.1",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "minipass": "^3.0.0"
+ "char-regex": "^2.0.0",
+ "strip-ansi": "^7.0.1"
},
"engines": {
- "node": ">= 8"
+ "node": ">=12.20"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/minipass-json-stream": {
- "version": "1.0.1",
+ "node_modules/jest-watch-typeahead/node_modules/strip-ansi": {
+ "version": "7.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "jsonparse": "^1.3.1",
- "minipass": "^3.0.0"
+ "ansi-regex": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
}
},
- "node_modules/minipass-pipeline": {
- "version": "1.2.4",
+ "node_modules/jest-watcher": {
+ "version": "29.7.0",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "minipass": "^3.0.0"
+ "@jest/test-result": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "ansi-escapes": "^4.2.1",
+ "chalk": "^4.0.0",
+ "emittery": "^0.13.1",
+ "jest-util": "^29.7.0",
+ "string-length": "^4.0.1"
},
"engines": {
- "node": ">=8"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/minipass-sized": {
- "version": "1.0.3",
+ "node_modules/jest-worker": {
+ "version": "29.7.0",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "minipass": "^3.0.0"
+ "@types/node": "*",
+ "jest-util": "^29.7.0",
+ "merge-stream": "^2.0.0",
+ "supports-color": "^8.0.0"
},
"engines": {
- "node": ">=8"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/minizlib": {
- "version": "2.1.2",
+ "node_modules/jest-worker/node_modules/supports-color": {
+ "version": "8.1.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "minipass": "^3.0.0",
- "yallist": "^4.0.0"
+ "has-flag": "^4.0.0"
},
"engines": {
- "node": ">= 8"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
}
},
- "node_modules/mississippi": {
- "version": "3.0.0",
+ "node_modules/jiti": {
+ "version": "1.21.0",
"dev": true,
- "license": "BSD-2-Clause",
+ "license": "MIT",
+ "bin": {
+ "jiti": "bin/jiti.js"
+ }
+ },
+ "node_modules/joi": {
+ "version": "17.12.3",
+ "dev": true,
+ "license": "BSD-3-Clause",
"dependencies": {
- "concat-stream": "^1.5.0",
- "duplexify": "^3.4.2",
- "end-of-stream": "^1.1.0",
- "flush-write-stream": "^1.0.0",
- "from2": "^2.1.0",
- "parallel-transform": "^1.1.0",
- "pump": "^3.0.0",
- "pumpify": "^1.3.3",
- "stream-each": "^1.1.0",
- "through2": "^2.0.0"
- },
+ "@hapi/hoek": "^9.3.0",
+ "@hapi/topo": "^5.1.0",
+ "@sideway/address": "^4.1.5",
+ "@sideway/formula": "^3.0.1",
+ "@sideway/pinpoint": "^2.0.0"
+ }
+ },
+ "node_modules/joycon": {
+ "version": "3.1.1",
+ "dev": true,
+ "license": "MIT",
"engines": {
- "node": ">=4.0.0"
+ "node": ">=10"
}
},
- "node_modules/mississippi/node_modules/concat-stream": {
- "version": "1.6.2",
+ "node_modules/js-stringify": {
+ "version": "1.0.2",
"dev": true,
- "engines": [
- "node >= 0.8"
- ],
+ "license": "MIT"
+ },
+ "node_modules/js-tokens": {
+ "version": "4.0.0",
+ "license": "MIT"
+ },
+ "node_modules/js-yaml": {
+ "version": "4.1.0",
"license": "MIT",
"dependencies": {
- "buffer-from": "^1.0.0",
- "inherits": "^2.0.3",
- "readable-stream": "^2.2.2",
- "typedarray": "^0.0.6"
+ "argparse": "^2.0.1"
+ },
+ "bin": {
+ "js-yaml": "bin/js-yaml.js"
}
},
- "node_modules/mississippi/node_modules/isarray": {
- "version": "1.0.0",
+ "node_modules/jsbn": {
+ "version": "1.1.0",
"dev": true,
"license": "MIT"
},
- "node_modules/mississippi/node_modules/readable-stream": {
- "version": "2.3.8",
+ "node_modules/jscodeshift": {
+ "version": "0.15.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "core-util-is": "~1.0.0",
- "inherits": "~2.0.3",
- "isarray": "~1.0.0",
- "process-nextick-args": "~2.0.0",
- "safe-buffer": "~5.1.1",
- "string_decoder": "~1.1.1",
- "util-deprecate": "~1.0.1"
+ "@babel/core": "^7.23.0",
+ "@babel/parser": "^7.23.0",
+ "@babel/plugin-transform-class-properties": "^7.22.5",
+ "@babel/plugin-transform-modules-commonjs": "^7.23.0",
+ "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.11",
+ "@babel/plugin-transform-optional-chaining": "^7.23.0",
+ "@babel/plugin-transform-private-methods": "^7.22.5",
+ "@babel/preset-flow": "^7.22.15",
+ "@babel/preset-typescript": "^7.23.0",
+ "@babel/register": "^7.22.15",
+ "babel-core": "^7.0.0-bridge.0",
+ "chalk": "^4.1.2",
+ "flow-parser": "0.*",
+ "graceful-fs": "^4.2.4",
+ "micromatch": "^4.0.4",
+ "neo-async": "^2.5.0",
+ "node-dir": "^0.1.17",
+ "recast": "^0.23.3",
+ "temp": "^0.8.4",
+ "write-file-atomic": "^2.3.0"
+ },
+ "bin": {
+ "jscodeshift": "bin/jscodeshift.js"
+ },
+ "peerDependencies": {
+ "@babel/preset-env": "^7.1.6"
+ },
+ "peerDependenciesMeta": {
+ "@babel/preset-env": {
+ "optional": true
+ }
}
},
- "node_modules/mississippi/node_modules/string_decoder": {
- "version": "1.1.1",
+ "node_modules/jscodeshift/node_modules/write-file-atomic": {
+ "version": "2.4.3",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "safe-buffer": "~5.1.0"
+ "graceful-fs": "^4.1.11",
+ "imurmurhash": "^0.1.4",
+ "signal-exit": "^3.0.2"
}
},
- "node_modules/mississippi/node_modules/through2": {
- "version": "2.0.5",
+ "node_modules/jsdom": {
+ "version": "15.2.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "readable-stream": "~2.3.6",
- "xtend": "~4.0.1"
+ "abab": "^2.0.0",
+ "acorn": "^7.1.0",
+ "acorn-globals": "^4.3.2",
+ "array-equal": "^1.0.0",
+ "cssom": "^0.4.1",
+ "cssstyle": "^2.0.0",
+ "data-urls": "^1.1.0",
+ "domexception": "^1.0.1",
+ "escodegen": "^1.11.1",
+ "html-encoding-sniffer": "^1.0.2",
+ "nwsapi": "^2.2.0",
+ "parse5": "5.1.0",
+ "pn": "^1.1.0",
+ "request": "^2.88.0",
+ "request-promise-native": "^1.0.7",
+ "saxes": "^3.1.9",
+ "symbol-tree": "^3.2.2",
+ "tough-cookie": "^3.0.1",
+ "w3c-hr-time": "^1.0.1",
+ "w3c-xmlserializer": "^1.1.2",
+ "webidl-conversions": "^4.0.2",
+ "whatwg-encoding": "^1.0.5",
+ "whatwg-mimetype": "^2.3.0",
+ "whatwg-url": "^7.0.0",
+ "ws": "^7.0.0",
+ "xml-name-validator": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "peerDependencies": {
+ "canvas": "^2.5.0"
+ },
+ "peerDependenciesMeta": {
+ "canvas": {
+ "optional": true
+ }
}
},
- "node_modules/mixin-deep": {
- "version": "1.3.2",
+ "node_modules/jsdom/node_modules/escodegen": {
+ "version": "1.14.3",
"dev": true,
- "license": "MIT",
+ "license": "BSD-2-Clause",
"dependencies": {
- "for-in": "^1.0.2",
- "is-extendable": "^1.0.1"
+ "esprima": "^4.0.1",
+ "estraverse": "^4.2.0",
+ "esutils": "^2.0.2",
+ "optionator": "^0.8.1"
+ },
+ "bin": {
+ "escodegen": "bin/escodegen.js",
+ "esgenerate": "bin/esgenerate.js"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=4.0"
+ },
+ "optionalDependencies": {
+ "source-map": "~0.6.1"
}
},
- "node_modules/mkdirp": {
- "version": "1.0.4",
+ "node_modules/jsdom/node_modules/estraverse": {
+ "version": "4.3.0",
"dev": true,
- "license": "MIT",
- "bin": {
- "mkdirp": "bin/cmd.js"
- },
+ "license": "BSD-2-Clause",
"engines": {
- "node": ">=10"
+ "node": ">=4.0"
}
},
- "node_modules/mkdirp-infer-owner": {
- "version": "2.0.0",
+ "node_modules/jsdom/node_modules/levn": {
+ "version": "0.3.0",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "chownr": "^2.0.0",
- "infer-owner": "^1.0.4",
- "mkdirp": "^1.0.3"
+ "prelude-ls": "~1.1.2",
+ "type-check": "~0.3.2"
},
"engines": {
- "node": ">=10"
+ "node": ">= 0.8.0"
}
},
- "node_modules/modify-values": {
- "version": "1.0.1",
+ "node_modules/jsdom/node_modules/optionator": {
+ "version": "0.8.3",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "deep-is": "~0.1.3",
+ "fast-levenshtein": "~2.0.6",
+ "levn": "~0.3.0",
+ "prelude-ls": "~1.1.2",
+ "type-check": "~0.3.2",
+ "word-wrap": "~1.2.3"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 0.8.0"
}
},
- "node_modules/moo": {
- "version": "0.5.1",
+ "node_modules/jsdom/node_modules/parse5": {
+ "version": "5.1.0",
"dev": true,
- "license": "BSD-3-Clause"
+ "license": "MIT"
},
- "node_modules/move-concurrently": {
- "version": "1.0.1",
+ "node_modules/jsdom/node_modules/prelude-ls": {
+ "version": "1.1.2",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "aproba": "^1.1.1",
- "copy-concurrently": "^1.0.0",
- "fs-write-stream-atomic": "^1.0.8",
- "mkdirp": "^0.5.1",
- "rimraf": "^2.5.4",
- "run-queue": "^1.0.3"
+ "engines": {
+ "node": ">= 0.8.0"
}
},
- "node_modules/move-concurrently/node_modules/aproba": {
- "version": "1.2.0",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/move-concurrently/node_modules/mkdirp": {
- "version": "0.5.6",
+ "node_modules/jsdom/node_modules/source-map": {
+ "version": "0.6.1",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "minimist": "^1.2.6"
- },
- "bin": {
- "mkdirp": "bin/cmd.js"
+ "license": "BSD-3-Clause",
+ "optional": true,
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/move-concurrently/node_modules/rimraf": {
- "version": "2.7.1",
+ "node_modules/jsdom/node_modules/type-check": {
+ "version": "0.3.2",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "glob": "^7.1.3"
+ "prelude-ls": "~1.1.2"
},
- "bin": {
- "rimraf": "bin.js"
+ "engines": {
+ "node": ">= 0.8.0"
}
},
- "node_modules/mri": {
- "version": "1.2.0",
+ "node_modules/jsesc": {
+ "version": "2.5.2",
"license": "MIT",
+ "bin": {
+ "jsesc": "bin/jsesc"
+ },
"engines": {
"node": ">=4"
}
},
- "node_modules/mrmime": {
- "version": "1.0.0",
+ "node_modules/json-buffer": {
+ "version": "3.0.1",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=10"
- }
+ "license": "MIT"
},
- "node_modules/ms": {
- "version": "2.1.3",
+ "node_modules/json-parse-better-errors": {
+ "version": "1.0.2",
"dev": true,
"license": "MIT"
},
- "node_modules/multimatch": {
- "version": "5.0.0",
+ "node_modules/json-parse-even-better-errors": {
+ "version": "2.3.1",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/minimatch": "^3.0.3",
- "array-differ": "^3.0.0",
- "array-union": "^2.1.0",
- "arrify": "^2.0.1",
- "minimatch": "^3.0.4"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
+ "license": "MIT"
},
- "node_modules/mute-stream": {
- "version": "0.0.8",
+ "node_modules/json-schema": {
+ "version": "0.4.0",
"dev": true,
- "license": "ISC"
+ "license": "(AFL-2.1 OR BSD-3-Clause)"
},
- "node_modules/mz": {
- "version": "2.7.0",
+ "node_modules/json-schema-traverse": {
+ "version": "0.4.1",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "any-promise": "^1.0.0",
- "object-assign": "^4.0.1",
- "thenify-all": "^1.0.0"
+ "license": "MIT"
+ },
+ "node_modules/json-stable-stringify-without-jsonify": {
+ "version": "1.0.1",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/json-stringify-nice": {
+ "version": "1.1.4",
+ "dev": true,
+ "license": "ISC",
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/nan": {
- "version": "2.17.0",
+ "node_modules/json-stringify-safe": {
+ "version": "5.0.1",
"dev": true,
- "license": "MIT",
- "optional": true
+ "license": "ISC"
},
- "node_modules/nanoid": {
- "version": "3.3.6",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
+ "node_modules/json5": {
+ "version": "2.2.3",
"license": "MIT",
"bin": {
- "nanoid": "bin/nanoid.cjs"
+ "json5": "lib/cli.js"
},
"engines": {
- "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
+ "node": ">=6"
}
},
- "node_modules/nanomatch": {
- "version": "1.2.13",
+ "node_modules/jsonc-parser": {
+ "version": "3.2.1",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/jsonfile": {
+ "version": "6.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "arr-diff": "^4.0.0",
- "array-unique": "^0.3.2",
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "fragment-cache": "^0.2.1",
- "is-windows": "^1.0.2",
- "kind-of": "^6.0.2",
- "object.pick": "^1.3.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.1"
+ "universalify": "^2.0.0"
},
- "engines": {
- "node": ">=0.10.0"
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
}
},
- "node_modules/natural-compare": {
- "version": "1.4.0",
+ "node_modules/jsonparse": {
+ "version": "1.3.1",
"dev": true,
+ "engines": [
+ "node >= 0.2.0"
+ ],
"license": "MIT"
},
- "node_modules/nearley": {
- "version": "2.20.1",
+ "node_modules/JSONStream": {
+ "version": "1.3.5",
"dev": true,
- "license": "MIT",
+ "license": "(MIT OR Apache-2.0)",
"dependencies": {
- "commander": "^2.19.0",
- "moo": "^0.5.0",
- "railroad-diagrams": "^1.0.0",
- "randexp": "0.4.6"
+ "jsonparse": "^1.2.0",
+ "through": ">=2.2.7 <3"
},
"bin": {
- "nearley-railroad": "bin/nearley-railroad.js",
- "nearley-test": "bin/nearley-test.js",
- "nearley-unparse": "bin/nearley-unparse.js",
- "nearleyc": "bin/nearleyc.js"
+ "JSONStream": "bin.js"
},
- "funding": {
- "type": "individual",
- "url": "https://nearley.js.org/#give-to-nearley"
+ "engines": {
+ "node": "*"
}
},
- "node_modules/nearley/node_modules/commander": {
- "version": "2.20.3",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/negotiator": {
- "version": "0.6.3",
+ "node_modules/jsonwebtoken": {
+ "version": "8.5.1",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "jws": "^3.2.2",
+ "lodash.includes": "^4.3.0",
+ "lodash.isboolean": "^3.0.3",
+ "lodash.isinteger": "^4.0.4",
+ "lodash.isnumber": "^3.0.3",
+ "lodash.isplainobject": "^4.0.6",
+ "lodash.isstring": "^4.0.1",
+ "lodash.once": "^4.0.0",
+ "ms": "^2.1.1",
+ "semver": "^5.6.0"
+ },
"engines": {
- "node": ">= 0.6"
+ "node": ">=4",
+ "npm": ">=1.4.28"
}
},
- "node_modules/neo-async": {
- "version": "2.6.2",
- "license": "MIT"
- },
- "node_modules/nested-error-stacks": {
- "version": "2.1.1",
+ "node_modules/jsonwebtoken/node_modules/semver": {
+ "version": "5.7.2",
"dev": true,
- "license": "MIT"
- },
- "node_modules/next": {
- "version": "12.3.4",
- "license": "MIT",
- "dependencies": {
- "@next/env": "12.3.4",
- "@swc/helpers": "0.4.11",
- "caniuse-lite": "^1.0.30001406",
- "postcss": "8.4.14",
- "styled-jsx": "5.0.7",
- "use-sync-external-store": "1.2.0"
- },
+ "license": "ISC",
"bin": {
- "next": "dist/bin/next"
- },
- "engines": {
- "node": ">=12.22.0"
- },
- "optionalDependencies": {
- "@next/swc-android-arm-eabi": "12.3.4",
- "@next/swc-android-arm64": "12.3.4",
- "@next/swc-darwin-arm64": "12.3.4",
- "@next/swc-darwin-x64": "12.3.4",
- "@next/swc-freebsd-x64": "12.3.4",
- "@next/swc-linux-arm-gnueabihf": "12.3.4",
- "@next/swc-linux-arm64-gnu": "12.3.4",
- "@next/swc-linux-arm64-musl": "12.3.4",
- "@next/swc-linux-x64-gnu": "12.3.4",
- "@next/swc-linux-x64-musl": "12.3.4",
- "@next/swc-win32-arm64-msvc": "12.3.4",
- "@next/swc-win32-ia32-msvc": "12.3.4",
- "@next/swc-win32-x64-msvc": "12.3.4"
- },
- "peerDependencies": {
- "fibers": ">= 3.1.0",
- "node-sass": "^6.0.0 || ^7.0.0",
- "react": "^17.0.2 || ^18.0.0-0",
- "react-dom": "^17.0.2 || ^18.0.0-0",
- "sass": "^1.3.0"
- },
- "peerDependenciesMeta": {
- "fibers": {
- "optional": true
- },
- "node-sass": {
- "optional": true
- },
- "sass": {
- "optional": true
- }
+ "semver": "bin/semver"
}
},
- "node_modules/next-mdx-remote": {
- "version": "4.1.0",
- "license": "MPL-2.0",
+ "node_modules/jsprim": {
+ "version": "1.4.2",
+ "dev": true,
+ "license": "MIT",
"dependencies": {
- "@mdx-js/mdx": "^2.0.0",
- "@mdx-js/react": "^2.0.0",
- "vfile": "^5.3.0",
- "vfile-matter": "^3.0.1"
+ "assert-plus": "1.0.0",
+ "extsprintf": "1.3.0",
+ "json-schema": "0.4.0",
+ "verror": "1.10.0"
},
"engines": {
- "node": ">=14",
- "npm": ">=7"
- },
- "peerDependencies": {
- "react": ">=16.x <=18.x",
- "react-dom": ">=16.x <=18.x"
+ "node": ">=0.6.0"
}
},
- "node_modules/next-mdx-remote/node_modules/@mdx-js/mdx": {
- "version": "2.1.2",
+ "node_modules/jstransformer": {
+ "version": "1.0.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/estree-jsx": "^0.0.1",
- "@types/mdx": "^2.0.0",
- "astring": "^1.6.0",
- "estree-util-build-jsx": "^2.0.0",
- "estree-util-is-identifier-name": "^2.0.0",
- "estree-walker": "^3.0.0",
- "hast-util-to-estree": "^2.0.0",
- "markdown-extensions": "^1.0.0",
- "periscopic": "^3.0.0",
- "remark-mdx": "^2.0.0",
- "remark-parse": "^10.0.0",
- "remark-rehype": "^10.0.0",
- "unified": "^10.0.0",
- "unist-util-position-from-estree": "^1.0.0",
- "unist-util-stringify-position": "^3.0.0",
- "unist-util-visit": "^4.0.0",
- "vfile": "^5.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "is-promise": "^2.0.0",
+ "promise": "^7.0.1"
}
},
- "node_modules/next-mdx-remote/node_modules/@mdx-js/react": {
- "version": "2.1.2",
+ "node_modules/jsx-ast-utils": {
+ "version": "3.3.5",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/mdx": "^2.0.0",
- "@types/react": ">=16"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "array-includes": "^3.1.6",
+ "array.prototype.flat": "^1.3.1",
+ "object.assign": "^4.1.4",
+ "object.values": "^1.1.6"
},
- "peerDependencies": {
- "react": ">=16"
- }
- },
- "node_modules/next-mdx-remote/node_modules/bail": {
- "version": "2.0.2",
- "license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "engines": {
+ "node": ">=4.0"
}
},
- "node_modules/next-mdx-remote/node_modules/estree-util-is-identifier-name": {
- "version": "2.0.1",
- "license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
+ "node_modules/just-diff": {
+ "version": "5.2.0",
+ "dev": true,
+ "license": "MIT"
},
- "node_modules/next-mdx-remote/node_modules/estree-walker": {
- "version": "3.0.1",
+ "node_modules/just-diff-apply": {
+ "version": "5.5.0",
+ "dev": true,
"license": "MIT"
},
- "node_modules/next-mdx-remote/node_modules/is-plain-obj": {
- "version": "4.1.0",
+ "node_modules/jwa": {
+ "version": "1.4.1",
+ "dev": true,
"license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "dependencies": {
+ "buffer-equal-constant-time": "1.0.1",
+ "ecdsa-sig-formatter": "1.0.11",
+ "safe-buffer": "^5.0.1"
}
},
- "node_modules/next-mdx-remote/node_modules/remark-mdx": {
- "version": "2.1.2",
+ "node_modules/jws": {
+ "version": "3.2.2",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "mdast-util-mdx": "^2.0.0",
- "micromark-extension-mdxjs": "^1.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "jwa": "^1.4.1",
+ "safe-buffer": "^5.0.1"
}
},
- "node_modules/next-mdx-remote/node_modules/remark-parse": {
- "version": "10.0.1",
+ "node_modules/keyv": {
+ "version": "4.5.4",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/mdast": "^3.0.0",
- "mdast-util-from-markdown": "^1.0.0",
- "unified": "^10.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "json-buffer": "3.0.1"
}
},
- "node_modules/next-mdx-remote/node_modules/trough": {
- "version": "2.1.0",
+ "node_modules/kind-of": {
+ "version": "6.0.3",
"license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/next-mdx-remote/node_modules/unified": {
- "version": "10.1.2",
+ "node_modules/kleur": {
+ "version": "3.0.3",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "@types/unist": "^2.0.0",
- "bail": "^2.0.0",
- "extend": "^3.0.0",
- "is-buffer": "^2.0.0",
- "is-plain-obj": "^4.0.0",
- "trough": "^2.0.0",
- "vfile": "^5.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=6"
}
},
- "node_modules/next-mdx-remote/node_modules/unist-util-is": {
- "version": "5.1.1",
+ "node_modules/klona": {
+ "version": "2.0.6",
+ "dev": true,
"license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">= 8"
}
},
- "node_modules/next-mdx-remote/node_modules/unist-util-stringify-position": {
- "version": "3.0.2",
- "license": "MIT",
- "dependencies": {
- "@types/unist": "^2.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
+ "node_modules/kuler": {
+ "version": "2.0.0",
+ "dev": true,
+ "license": "MIT"
},
- "node_modules/next-mdx-remote/node_modules/unist-util-visit": {
- "version": "4.1.0",
+ "node_modules/language-subtag-registry": {
+ "version": "0.3.22",
+ "dev": true,
+ "license": "CC0-1.0"
+ },
+ "node_modules/language-tags": {
+ "version": "1.0.9",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/unist": "^2.0.0",
- "unist-util-is": "^5.0.0",
- "unist-util-visit-parents": "^5.0.0"
+ "language-subtag-registry": "^0.3.20"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=0.10"
}
},
- "node_modules/next-mdx-remote/node_modules/unist-util-visit-parents": {
+ "node_modules/latest-version": {
"version": "5.1.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/unist": "^2.0.0",
- "unist-util-is": "^5.0.0"
+ "package-json": "^6.3.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/next-mdx-remote/node_modules/vfile": {
- "version": "5.3.4",
+ "node_modules/lazy-cache": {
+ "version": "1.0.4",
+ "dev": true,
"license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/lazy-universal-dotenv": {
+ "version": "4.0.0",
+ "dev": true,
+ "license": "Apache-2.0",
"dependencies": {
- "@types/unist": "^2.0.0",
- "is-buffer": "^2.0.0",
- "unist-util-stringify-position": "^3.0.0",
- "vfile-message": "^3.0.0"
+ "app-root-dir": "^1.0.2",
+ "dotenv": "^16.0.0",
+ "dotenv-expand": "^10.0.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=14.0.0"
}
},
- "node_modules/next-mdx-remote/node_modules/vfile-message": {
- "version": "3.1.2",
- "license": "MIT",
- "dependencies": {
- "@types/unist": "^2.0.0",
- "unist-util-stringify-position": "^3.0.0"
+ "node_modules/lazy-universal-dotenv/node_modules/dotenv": {
+ "version": "16.4.5",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=12"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "url": "https://dotenvx.com"
}
},
- "node_modules/next-remote-watch": {
- "version": "2.0.0",
- "dev": true,
- "license": "MPL-2.0",
- "dependencies": {
- "chalk": "^4.0.0",
- "chokidar": "^3.4.0",
- "commander": "^5.0.0",
- "express": "^4.17.1"
+ "node_modules/lerna": {
+ "version": "5.6.2",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@lerna/add": "5.6.2",
+ "@lerna/bootstrap": "5.6.2",
+ "@lerna/changed": "5.6.2",
+ "@lerna/clean": "5.6.2",
+ "@lerna/cli": "5.6.2",
+ "@lerna/command": "5.6.2",
+ "@lerna/create": "5.6.2",
+ "@lerna/diff": "5.6.2",
+ "@lerna/exec": "5.6.2",
+ "@lerna/import": "5.6.2",
+ "@lerna/info": "5.6.2",
+ "@lerna/init": "5.6.2",
+ "@lerna/link": "5.6.2",
+ "@lerna/list": "5.6.2",
+ "@lerna/publish": "5.6.2",
+ "@lerna/run": "5.6.2",
+ "@lerna/version": "5.6.2",
+ "@nrwl/devkit": ">=14.8.1 < 16",
+ "import-local": "^3.0.2",
+ "inquirer": "^8.2.4",
+ "npmlog": "^6.0.2",
+ "nx": ">=14.8.1 < 16",
+ "typescript": "^3 || ^4"
},
"bin": {
- "next-remote-watch": "bin/next-remote-watch"
+ "lerna": "cli.js"
},
"engines": {
- "node": ">= 10"
- },
- "peerDependencies": {
- "next": ">=10"
+ "node": "^14.15.0 || >=16.0.0"
}
},
- "node_modules/next-remote-watch/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/lerna/node_modules/inquirer": {
+ "version": "8.2.6",
"dev": true,
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
+ "ansi-escapes": "^4.2.1",
+ "chalk": "^4.1.1",
+ "cli-cursor": "^3.1.0",
+ "cli-width": "^3.0.0",
+ "external-editor": "^3.0.3",
+ "figures": "^3.0.0",
+ "lodash": "^4.17.21",
+ "mute-stream": "0.0.8",
+ "ora": "^5.4.1",
+ "run-async": "^2.4.0",
+ "rxjs": "^7.5.5",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0",
+ "through": "^2.3.6",
+ "wrap-ansi": "^6.0.1"
},
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "node": ">=12.0.0"
}
},
- "node_modules/next-remote-watch/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/lerna/node_modules/rxjs": {
+ "version": "7.8.1",
"dev": true,
- "license": "MIT",
+ "license": "Apache-2.0",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "tslib": "^2.1.0"
}
},
- "node_modules/next-remote-watch/node_modules/commander": {
- "version": "5.1.0",
+ "node_modules/lerna/node_modules/wrap-ansi": {
+ "version": "6.2.0",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
+ },
"engines": {
- "node": ">= 6"
+ "node": ">=8"
}
},
- "node_modules/next-remote-watch/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/leven": {
+ "version": "3.1.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=8"
+ "node": ">=6"
}
},
- "node_modules/next-remote-watch/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/levn": {
+ "version": "0.4.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
+ "prelude-ls": "^1.2.1",
+ "type-check": "~0.4.0"
},
"engines": {
- "node": ">=8"
+ "node": ">= 0.8.0"
}
},
- "node_modules/next-tick": {
- "version": "1.1.0",
- "license": "ISC"
- },
- "node_modules/next/node_modules/picocolors": {
- "version": "1.0.0",
- "license": "ISC"
- },
- "node_modules/next/node_modules/postcss": {
- "version": "8.4.14",
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/postcss"
- }
- ],
- "license": "MIT",
+ "node_modules/libnpmaccess": {
+ "version": "6.0.4",
+ "dev": true,
+ "license": "ISC",
"dependencies": {
- "nanoid": "^3.3.4",
- "picocolors": "^1.0.0",
- "source-map-js": "^1.0.2"
+ "aproba": "^2.0.0",
+ "minipass": "^3.1.1",
+ "npm-package-arg": "^9.0.1",
+ "npm-registry-fetch": "^13.0.0"
},
"engines": {
- "node": "^10 || ^12 || >=14"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/nice-try": {
- "version": "1.0.5",
+ "node_modules/libnpmaccess/node_modules/hosted-git-info": {
+ "version": "5.2.1",
"dev": true,
- "license": "MIT"
- },
- "node_modules/no-case": {
- "version": "3.0.4",
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "lower-case": "^2.0.2",
- "tslib": "^2.0.3"
+ "lru-cache": "^7.5.1"
+ },
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/node-addon-api": {
- "version": "3.2.1",
+ "node_modules/libnpmaccess/node_modules/lru-cache": {
+ "version": "7.18.3",
"dev": true,
- "license": "MIT"
- },
- "node_modules/node-dir": {
- "version": "0.1.17",
- "license": "MIT",
- "dependencies": {
- "minimatch": "^3.0.2"
- },
+ "license": "ISC",
"engines": {
- "node": ">= 0.10.5"
+ "node": ">=12"
}
},
- "node_modules/node-fetch": {
- "version": "2.6.7",
- "license": "MIT",
+ "node_modules/libnpmaccess/node_modules/npm-package-arg": {
+ "version": "9.1.2",
+ "dev": true,
+ "license": "ISC",
"dependencies": {
- "whatwg-url": "^5.0.0"
+ "hosted-git-info": "^5.0.0",
+ "proc-log": "^2.0.1",
+ "semver": "^7.3.5",
+ "validate-npm-package-name": "^4.0.0"
},
"engines": {
- "node": "4.x || >=6.0.0"
- },
- "peerDependencies": {
- "encoding": "^0.1.0"
- },
- "peerDependenciesMeta": {
- "encoding": {
- "optional": true
- }
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/node-fetch/node_modules/tr46": {
- "version": "0.0.3",
- "license": "MIT"
- },
- "node_modules/node-fetch/node_modules/webidl-conversions": {
- "version": "3.0.1",
- "license": "BSD-2-Clause"
- },
- "node_modules/node-fetch/node_modules/whatwg-url": {
- "version": "5.0.0",
- "license": "MIT",
+ "node_modules/libnpmaccess/node_modules/semver": {
+ "version": "7.6.0",
+ "dev": true,
+ "license": "ISC",
"dependencies": {
- "tr46": "~0.0.3",
- "webidl-conversions": "^3.0.0"
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/node-gyp": {
- "version": "8.4.1",
+ "node_modules/libnpmaccess/node_modules/semver/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "env-paths": "^2.2.0",
- "glob": "^7.1.4",
- "graceful-fs": "^4.2.6",
- "make-fetch-happen": "^9.1.0",
- "nopt": "^5.0.0",
- "npmlog": "^6.0.0",
- "rimraf": "^3.0.2",
- "semver": "^7.3.5",
- "tar": "^6.1.2",
- "which": "^2.0.2"
- },
- "bin": {
- "node-gyp": "bin/node-gyp.js"
+ "yallist": "^4.0.0"
},
"engines": {
- "node": ">= 10.12.0"
+ "node": ">=10"
}
},
- "node_modules/node-gyp-build": {
- "version": "4.4.0",
+ "node_modules/libnpmaccess/node_modules/yallist": {
+ "version": "4.0.0",
"dev": true,
- "license": "MIT",
- "bin": {
- "node-gyp-build": "bin.js",
- "node-gyp-build-optional": "optional.js",
- "node-gyp-build-test": "build-test.js"
+ "license": "ISC"
+ },
+ "node_modules/libnpmpublish": {
+ "version": "6.0.5",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "normalize-package-data": "^4.0.0",
+ "npm-package-arg": "^9.0.1",
+ "npm-registry-fetch": "^13.0.0",
+ "semver": "^7.3.7",
+ "ssri": "^9.0.0"
+ },
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/node-gyp/node_modules/are-we-there-yet": {
- "version": "3.0.0",
+ "node_modules/libnpmpublish/node_modules/hosted-git-info": {
+ "version": "5.2.1",
"dev": true,
"license": "ISC",
"dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
+ "lru-cache": "^7.5.1"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/node-gyp/node_modules/gauge": {
- "version": "4.0.4",
+ "node_modules/libnpmpublish/node_modules/lru-cache": {
+ "version": "7.18.3",
"dev": true,
"license": "ISC",
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/libnpmpublish/node_modules/normalize-package-data": {
+ "version": "4.0.1",
+ "dev": true,
+ "license": "BSD-2-Clause",
"dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.3",
- "console-control-strings": "^1.1.0",
- "has-unicode": "^2.0.1",
- "signal-exit": "^3.0.7",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.5"
+ "hosted-git-info": "^5.0.0",
+ "is-core-module": "^2.8.1",
+ "semver": "^7.3.5",
+ "validate-npm-package-license": "^3.0.4"
},
"engines": {
"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/node-gyp/node_modules/npmlog": {
- "version": "6.0.2",
+ "node_modules/libnpmpublish/node_modules/npm-package-arg": {
+ "version": "9.1.2",
"dev": true,
"license": "ISC",
"dependencies": {
- "are-we-there-yet": "^3.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^4.0.3",
- "set-blocking": "^2.0.0"
+ "hosted-git-info": "^5.0.0",
+ "proc-log": "^2.0.1",
+ "semver": "^7.3.5",
+ "validate-npm-package-name": "^4.0.0"
},
"engines": {
"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/node-gyp/node_modules/semver": {
- "version": "7.3.7",
+ "node_modules/libnpmpublish/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -37930,2144 +25814,2615 @@
"node": ">=10"
}
},
- "node_modules/node-int64": {
- "version": "0.4.0",
+ "node_modules/libnpmpublish/node_modules/semver/node_modules/lru-cache": {
+ "version": "6.0.0",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "yallist": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/libnpmpublish/node_modules/yallist": {
+ "version": "4.0.0",
"dev": true,
+ "license": "ISC"
+ },
+ "node_modules/libphonenumber-js": {
+ "version": "1.10.60",
"license": "MIT"
},
- "node_modules/node-libs-browser": {
- "version": "2.2.1",
+ "node_modules/liftoff": {
+ "version": "4.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "assert": "^1.1.1",
- "browserify-zlib": "^0.2.0",
- "buffer": "^4.3.0",
- "console-browserify": "^1.1.0",
- "constants-browserify": "^1.0.0",
- "crypto-browserify": "^3.11.0",
- "domain-browser": "^1.1.1",
- "events": "^3.0.0",
- "https-browserify": "^1.0.0",
- "os-browserify": "^0.3.0",
- "path-browserify": "0.0.1",
- "process": "^0.11.10",
- "punycode": "^1.2.4",
- "querystring-es3": "^0.2.0",
- "readable-stream": "^2.3.3",
- "stream-browserify": "^2.0.1",
- "stream-http": "^2.7.2",
- "string_decoder": "^1.0.0",
- "timers-browserify": "^2.0.4",
- "tty-browserify": "0.0.0",
- "url": "^0.11.0",
- "util": "^0.11.0",
- "vm-browserify": "^1.0.1"
+ "extend": "^3.0.2",
+ "findup-sync": "^5.0.0",
+ "fined": "^2.0.0",
+ "flagged-respawn": "^2.0.0",
+ "is-plain-object": "^5.0.0",
+ "object.map": "^1.0.1",
+ "rechoir": "^0.8.0",
+ "resolve": "^1.20.0"
+ },
+ "engines": {
+ "node": ">=10.13.0"
}
},
- "node_modules/node-libs-browser/node_modules/buffer": {
- "version": "4.9.2",
+ "node_modules/lilconfig": {
+ "version": "2.1.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "base64-js": "^1.0.2",
- "ieee754": "^1.1.4",
- "isarray": "^1.0.0"
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/node-libs-browser/node_modules/isarray": {
- "version": "1.0.0",
+ "node_modules/lines-and-columns": {
+ "version": "1.2.4",
"dev": true,
"license": "MIT"
},
- "node_modules/node-libs-browser/node_modules/path-browserify": {
- "version": "0.0.1",
+ "node_modules/load-json-file": {
+ "version": "6.2.0",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "dependencies": {
+ "graceful-fs": "^4.1.15",
+ "parse-json": "^5.0.0",
+ "strip-bom": "^4.0.0",
+ "type-fest": "^0.6.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
},
- "node_modules/node-libs-browser/node_modules/punycode": {
- "version": "1.4.1",
+ "node_modules/load-json-file/node_modules/type-fest": {
+ "version": "0.6.0",
"dev": true,
- "license": "MIT"
+ "license": "(MIT OR CC0-1.0)",
+ "engines": {
+ "node": ">=8"
+ }
},
- "node_modules/node-libs-browser/node_modules/readable-stream": {
- "version": "2.3.8",
+ "node_modules/load-tsconfig": {
+ "version": "0.2.5",
"dev": true,
"license": "MIT",
- "dependencies": {
- "core-util-is": "~1.0.0",
- "inherits": "~2.0.3",
- "isarray": "~1.0.0",
- "process-nextick-args": "~2.0.0",
- "safe-buffer": "~5.1.1",
- "string_decoder": "~1.1.1",
- "util-deprecate": "~1.0.1"
+ "engines": {
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
}
},
- "node_modules/node-libs-browser/node_modules/string_decoder": {
- "version": "1.1.1",
+ "node_modules/loader-runner": {
+ "version": "4.3.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "safe-buffer": "~5.1.0"
+ "engines": {
+ "node": ">=6.11.5"
}
},
- "node_modules/node-plop": {
- "version": "0.30.0",
+ "node_modules/loader-utils": {
+ "version": "3.2.1",
"dev": true,
"license": "MIT",
+ "engines": {
+ "node": ">= 12.13.0"
+ }
+ },
+ "node_modules/locate-path": {
+ "version": "6.0.0",
+ "license": "MIT",
"dependencies": {
- "@types/inquirer": "^8.1.3",
- "change-case": "^4.1.2",
- "del": "^6.0.0",
- "globby": "^12.0.2",
- "handlebars": "^4.4.3",
- "inquirer": "^8.2.0",
- "isbinaryfile": "^4.0.8",
- "lodash.get": "^4.4.2",
- "lower-case": "^2.0.2",
- "mkdirp": "^1.0.4",
- "resolve": "^1.20.0",
- "title-case": "^3.0.3",
- "upper-case": "^2.0.2"
+ "p-locate": "^5.0.0"
},
"engines": {
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/node-plop/node_modules/ansi-styles": {
+ "node_modules/lodash": {
+ "version": "4.17.21",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/lodash.debounce": {
+ "version": "4.0.8",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/lodash.escape": {
+ "version": "4.0.1",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/lodash.flattendeep": {
+ "version": "4.4.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/lodash.get": {
+ "version": "4.4.2",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/lodash.includes": {
"version": "4.3.0",
"dev": true,
+ "license": "MIT"
+ },
+ "node_modules/lodash.isboolean": {
+ "version": "3.0.3",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/lodash.isequal": {
+ "version": "4.5.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/lodash.isinteger": {
+ "version": "4.0.4",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/lodash.ismatch": {
+ "version": "4.4.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/lodash.isnumber": {
+ "version": "3.0.3",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/lodash.isplainobject": {
+ "version": "4.0.6",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/lodash.isstring": {
+ "version": "4.0.1",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/lodash.memoize": {
+ "version": "4.1.2",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/lodash.merge": {
+ "version": "4.6.2",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/lodash.once": {
+ "version": "4.1.1",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/lodash.sortby": {
+ "version": "4.7.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/log-symbols": {
+ "version": "4.1.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
+ "chalk": "^4.1.0",
+ "is-unicode-supported": "^0.1.0"
},
"engines": {
- "node": ">=8"
+ "node": ">=10"
},
"funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/node-plop/node_modules/array-union": {
- "version": "3.0.1",
+ "node_modules/logform": {
+ "version": "2.6.0",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=12"
+ "dependencies": {
+ "@colors/colors": "1.6.0",
+ "@types/triple-beam": "^1.3.2",
+ "fecha": "^4.2.0",
+ "ms": "^2.1.1",
+ "safe-stable-stringify": "^2.3.1",
+ "triple-beam": "^1.3.0"
},
+ "engines": {
+ "node": ">= 12.0.0"
+ }
+ },
+ "node_modules/logform/node_modules/@colors/colors": {
+ "version": "1.6.0",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.1.90"
+ }
+ },
+ "node_modules/longest": {
+ "version": "1.0.1",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/longest-streak": {
+ "version": "3.1.0",
+ "license": "MIT",
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/loose-envify": {
+ "version": "1.4.0",
+ "license": "MIT",
+ "dependencies": {
+ "js-tokens": "^3.0.0 || ^4.0.0"
+ },
+ "bin": {
+ "loose-envify": "cli.js"
+ }
+ },
+ "node_modules/lower-case": {
+ "version": "2.0.2",
+ "license": "MIT",
+ "dependencies": {
+ "tslib": "^2.0.3"
+ }
+ },
+ "node_modules/lowercase-keys": {
+ "version": "1.0.1",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/lru-cache": {
+ "version": "5.1.1",
+ "license": "ISC",
+ "dependencies": {
+ "yallist": "^3.0.2"
}
},
- "node_modules/node-plop/node_modules/bl": {
- "version": "4.1.0",
- "dev": true,
+ "node_modules/lz-string": {
+ "version": "1.5.0",
"license": "MIT",
- "dependencies": {
- "buffer": "^5.5.0",
- "inherits": "^2.0.4",
- "readable-stream": "^3.4.0"
+ "bin": {
+ "lz-string": "bin/bin.js"
}
},
- "node_modules/node-plop/node_modules/buffer": {
- "version": "5.7.1",
+ "node_modules/magic-string": {
+ "version": "0.30.9",
"dev": true,
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
"license": "MIT",
"dependencies": {
- "base64-js": "^1.3.1",
- "ieee754": "^1.1.13"
+ "@jridgewell/sourcemap-codec": "^1.4.15"
+ },
+ "engines": {
+ "node": ">=12"
}
},
- "node_modules/node-plop/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/make-dir": {
+ "version": "3.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
+ "semver": "^6.0.0"
},
"engines": {
- "node": ">=10"
+ "node": ">=8"
},
"funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/node-plop/node_modules/globby": {
- "version": "12.2.0",
+ "node_modules/make-error": {
+ "version": "1.3.6",
"dev": true,
- "license": "MIT",
+ "license": "ISC"
+ },
+ "node_modules/make-fetch-happen": {
+ "version": "10.2.1",
+ "dev": true,
+ "license": "ISC",
"dependencies": {
- "array-union": "^3.0.1",
- "dir-glob": "^3.0.1",
- "fast-glob": "^3.2.7",
- "ignore": "^5.1.9",
- "merge2": "^1.4.1",
- "slash": "^4.0.0"
+ "agentkeepalive": "^4.2.1",
+ "cacache": "^16.1.0",
+ "http-cache-semantics": "^4.1.0",
+ "http-proxy-agent": "^5.0.0",
+ "https-proxy-agent": "^5.0.0",
+ "is-lambda": "^1.0.1",
+ "lru-cache": "^7.7.1",
+ "minipass": "^3.1.6",
+ "minipass-collect": "^1.0.2",
+ "minipass-fetch": "^2.0.3",
+ "minipass-flush": "^1.0.5",
+ "minipass-pipeline": "^1.2.4",
+ "negotiator": "^0.6.3",
+ "promise-retry": "^2.0.1",
+ "socks-proxy-agent": "^7.0.0",
+ "ssri": "^9.0.0"
},
"engines": {
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/node-plop/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/make-fetch-happen/node_modules/lru-cache": {
+ "version": "7.18.3",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"engines": {
- "node": ">=8"
+ "node": ">=12"
}
},
- "node_modules/node-plop/node_modules/inquirer": {
- "version": "8.2.1",
+ "node_modules/make-iterator": {
+ "version": "1.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-escapes": "^4.2.1",
- "chalk": "^4.1.1",
- "cli-cursor": "^3.1.0",
- "cli-width": "^3.0.0",
- "external-editor": "^3.0.3",
- "figures": "^3.0.0",
- "lodash": "^4.17.21",
- "mute-stream": "0.0.8",
- "ora": "^5.4.1",
- "run-async": "^2.4.0",
- "rxjs": "^7.5.5",
- "string-width": "^4.1.0",
- "strip-ansi": "^6.0.0",
- "through": "^2.3.6"
+ "kind-of": "^6.0.2"
},
"engines": {
- "node": ">=12.0.0"
+ "node": ">=0.10.0"
}
},
- "node_modules/node-plop/node_modules/is-interactive": {
- "version": "1.0.0",
+ "node_modules/makeerror": {
+ "version": "1.0.12",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "tmpl": "1.0.5"
+ }
+ },
+ "node_modules/map-cache": {
+ "version": "0.2.2",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=8"
+ "node": ">=0.10.0"
}
},
- "node_modules/node-plop/node_modules/is-unicode-supported": {
- "version": "0.1.0",
+ "node_modules/map-obj": {
+ "version": "4.3.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=10"
+ "node": ">=8"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/node-plop/node_modules/log-symbols": {
- "version": "4.1.0",
+ "node_modules/map-or-similar": {
+ "version": "1.5.0",
"dev": true,
+ "license": "MIT"
+ },
+ "node_modules/markdown-extensions": {
+ "version": "1.1.1",
"license": "MIT",
- "dependencies": {
- "chalk": "^4.1.0",
- "is-unicode-supported": "^0.1.0"
- },
"engines": {
- "node": ">=10"
- },
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/markdown-table": {
+ "version": "3.0.3",
+ "license": "MIT",
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/node-plop/node_modules/ora": {
- "version": "5.4.1",
+ "node_modules/markdown-to-jsx": {
+ "version": "7.4.6",
"dev": true,
"license": "MIT",
- "dependencies": {
- "bl": "^4.1.0",
- "chalk": "^4.1.0",
- "cli-cursor": "^3.1.0",
- "cli-spinners": "^2.5.0",
- "is-interactive": "^1.0.0",
- "is-unicode-supported": "^0.1.0",
- "log-symbols": "^4.1.0",
- "strip-ansi": "^6.0.0",
- "wcwidth": "^1.0.1"
- },
"engines": {
- "node": ">=10"
+ "node": ">= 10"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "peerDependencies": {
+ "react": ">= 0.14.0"
}
},
- "node_modules/node-plop/node_modules/rxjs": {
- "version": "7.5.5",
+ "node_modules/mask-json": {
+ "version": "1.0.3",
"dev": true,
- "license": "Apache-2.0",
+ "license": "SEE LICENSE IN LICENSE",
"dependencies": {
- "tslib": "^2.1.0"
+ "lodash": "^4.17.4"
+ },
+ "engines": {
+ "node": ">=5.0.0"
}
},
- "node_modules/node-plop/node_modules/slash": {
- "version": "4.0.0",
- "dev": true,
+ "node_modules/match-sorter": {
+ "version": "6.3.1",
"license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "dependencies": {
+ "@babel/runtime": "^7.12.5",
+ "remove-accents": "0.4.2"
}
},
- "node_modules/node-plop/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/md5.js": {
+ "version": "1.3.5",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
+ "hash-base": "^3.0.0",
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.1.2"
}
},
- "node_modules/node-preload": {
- "version": "0.2.1",
+ "node_modules/mdast-util-definitions": {
+ "version": "4.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "process-on-spawn": "^1.0.0"
+ "unist-util-visit": "^2.0.0"
},
- "engines": {
- "node": ">=8"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/node-releases": {
- "version": "2.0.10",
- "license": "MIT"
+ "node_modules/mdast-util-definitions/node_modules/unist-util-is": {
+ "version": "4.1.0",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
},
- "node_modules/nopt": {
- "version": "5.0.0",
+ "node_modules/mdast-util-definitions/node_modules/unist-util-visit": {
+ "version": "2.0.3",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "abbrev": "1"
- },
- "bin": {
- "nopt": "bin/nopt.js"
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0",
+ "unist-util-visit-parents": "^3.0.0"
},
- "engines": {
- "node": ">=6"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/normalize-package-data": {
- "version": "3.0.3",
+ "node_modules/mdast-util-definitions/node_modules/unist-util-visit-parents": {
+ "version": "3.1.1",
"dev": true,
- "license": "BSD-2-Clause",
+ "license": "MIT",
"dependencies": {
- "hosted-git-info": "^4.0.1",
- "is-core-module": "^2.5.0",
- "semver": "^7.3.4",
- "validate-npm-package-license": "^3.0.1"
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0"
},
- "engines": {
- "node": ">=10"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/normalize-package-data/node_modules/semver": {
- "version": "7.3.7",
- "dev": true,
- "license": "ISC",
+ "node_modules/mdast-util-find-and-replace": {
+ "version": "2.2.2",
+ "license": "MIT",
"dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
+ "@types/mdast": "^3.0.0",
+ "escape-string-regexp": "^5.0.0",
+ "unist-util-is": "^5.0.0",
+ "unist-util-visit-parents": "^5.0.0"
},
- "engines": {
- "node": ">=10"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/normalize-path": {
- "version": "3.0.0",
- "dev": true,
+ "node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp": {
+ "version": "5.0.0",
"license": "MIT",
"engines": {
- "node": ">=0.10.0"
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/normalize-range": {
- "version": "0.1.2",
- "dev": true,
+ "node_modules/mdast-util-from-markdown": {
+ "version": "1.3.1",
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "@types/mdast": "^3.0.0",
+ "@types/unist": "^2.0.0",
+ "decode-named-character-reference": "^1.0.0",
+ "mdast-util-to-string": "^3.1.0",
+ "micromark": "^3.0.0",
+ "micromark-util-decode-numeric-character-reference": "^1.0.0",
+ "micromark-util-decode-string": "^1.0.0",
+ "micromark-util-normalize-identifier": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "unist-util-stringify-position": "^3.0.0",
+ "uvu": "^0.5.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/normalize-url": {
- "version": "6.1.0",
- "dev": true,
+ "node_modules/mdast-util-gfm": {
+ "version": "2.0.2",
"license": "MIT",
- "engines": {
- "node": ">=10"
+ "dependencies": {
+ "mdast-util-from-markdown": "^1.0.0",
+ "mdast-util-gfm-autolink-literal": "^1.0.0",
+ "mdast-util-gfm-footnote": "^1.0.0",
+ "mdast-util-gfm-strikethrough": "^1.0.0",
+ "mdast-util-gfm-table": "^1.0.0",
+ "mdast-util-gfm-task-list-item": "^1.0.0",
+ "mdast-util-to-markdown": "^1.0.0"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/npm-bundled": {
- "version": "1.1.2",
- "dev": true,
- "license": "ISC",
+ "node_modules/mdast-util-gfm-autolink-literal": {
+ "version": "1.0.3",
+ "license": "MIT",
"dependencies": {
- "npm-normalize-package-bin": "^1.0.1"
+ "@types/mdast": "^3.0.0",
+ "ccount": "^2.0.0",
+ "mdast-util-find-and-replace": "^2.0.0",
+ "micromark-util-character": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/npm-install-checks": {
- "version": "5.0.0",
- "dev": true,
- "license": "BSD-2-Clause",
+ "node_modules/mdast-util-gfm-footnote": {
+ "version": "1.0.2",
+ "license": "MIT",
"dependencies": {
- "semver": "^7.1.1"
+ "@types/mdast": "^3.0.0",
+ "mdast-util-to-markdown": "^1.3.0",
+ "micromark-util-normalize-identifier": "^1.0.0"
},
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/npm-install-checks/node_modules/semver": {
- "version": "7.3.7",
- "dev": true,
- "license": "ISC",
+ "node_modules/mdast-util-gfm-strikethrough": {
+ "version": "1.0.3",
+ "license": "MIT",
"dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
+ "@types/mdast": "^3.0.0",
+ "mdast-util-to-markdown": "^1.3.0"
},
- "engines": {
- "node": ">=10"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/npm-normalize-package-bin": {
- "version": "1.0.1",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/npm-package-arg": {
- "version": "8.1.5",
- "dev": true,
- "license": "ISC",
+ "node_modules/mdast-util-gfm-table": {
+ "version": "1.0.7",
+ "license": "MIT",
"dependencies": {
- "hosted-git-info": "^4.0.1",
- "semver": "^7.3.4",
- "validate-npm-package-name": "^3.0.0"
+ "@types/mdast": "^3.0.0",
+ "markdown-table": "^3.0.0",
+ "mdast-util-from-markdown": "^1.0.0",
+ "mdast-util-to-markdown": "^1.3.0"
},
- "engines": {
- "node": ">=10"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/npm-package-arg/node_modules/semver": {
- "version": "7.3.7",
- "dev": true,
- "license": "ISC",
+ "node_modules/mdast-util-gfm-task-list-item": {
+ "version": "1.0.2",
+ "license": "MIT",
"dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
+ "@types/mdast": "^3.0.0",
+ "mdast-util-to-markdown": "^1.3.0"
},
- "engines": {
- "node": ">=10"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/npm-packlist": {
- "version": "2.2.2",
- "dev": true,
- "license": "ISC",
+ "node_modules/mdast-util-mdx": {
+ "version": "2.0.1",
+ "license": "MIT",
"dependencies": {
- "glob": "^7.1.6",
- "ignore-walk": "^3.0.3",
- "npm-bundled": "^1.1.1",
- "npm-normalize-package-bin": "^1.0.1"
+ "mdast-util-from-markdown": "^1.0.0",
+ "mdast-util-mdx-expression": "^1.0.0",
+ "mdast-util-mdx-jsx": "^2.0.0",
+ "mdast-util-mdxjs-esm": "^1.0.0",
+ "mdast-util-to-markdown": "^1.0.0"
},
- "bin": {
- "npm-packlist": "bin/index.js"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-mdx-expression": {
+ "version": "1.3.2",
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree-jsx": "^1.0.0",
+ "@types/hast": "^2.0.0",
+ "@types/mdast": "^3.0.0",
+ "mdast-util-from-markdown": "^1.0.0",
+ "mdast-util-to-markdown": "^1.0.0"
},
- "engines": {
- "node": ">=10"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/npm-pick-manifest": {
- "version": "7.0.1",
- "dev": true,
- "license": "ISC",
+ "node_modules/mdast-util-mdx-jsx": {
+ "version": "2.1.4",
+ "license": "MIT",
"dependencies": {
- "npm-install-checks": "^5.0.0",
- "npm-normalize-package-bin": "^1.0.1",
- "npm-package-arg": "^9.0.0",
- "semver": "^7.3.5"
+ "@types/estree-jsx": "^1.0.0",
+ "@types/hast": "^2.0.0",
+ "@types/mdast": "^3.0.0",
+ "@types/unist": "^2.0.0",
+ "ccount": "^2.0.0",
+ "mdast-util-from-markdown": "^1.1.0",
+ "mdast-util-to-markdown": "^1.3.0",
+ "parse-entities": "^4.0.0",
+ "stringify-entities": "^4.0.0",
+ "unist-util-remove-position": "^4.0.0",
+ "unist-util-stringify-position": "^3.0.0",
+ "vfile-message": "^3.0.0"
},
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/npm-pick-manifest/node_modules/builtins": {
- "version": "5.0.1",
- "dev": true,
+ "node_modules/mdast-util-mdxjs-esm": {
+ "version": "1.3.1",
"license": "MIT",
"dependencies": {
- "semver": "^7.0.0"
+ "@types/estree-jsx": "^1.0.0",
+ "@types/hast": "^2.0.0",
+ "@types/mdast": "^3.0.0",
+ "mdast-util-from-markdown": "^1.0.0",
+ "mdast-util-to-markdown": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/npm-pick-manifest/node_modules/hosted-git-info": {
- "version": "5.0.0",
- "dev": true,
- "license": "ISC",
+ "node_modules/mdast-util-phrasing": {
+ "version": "3.0.1",
+ "license": "MIT",
"dependencies": {
- "lru-cache": "^7.5.1"
+ "@types/mdast": "^3.0.0",
+ "unist-util-is": "^5.0.0"
},
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/npm-pick-manifest/node_modules/hosted-git-info/node_modules/lru-cache": {
- "version": "7.10.1",
- "dev": true,
- "license": "ISC",
- "engines": {
- "node": ">=12"
+ "node_modules/mdast-util-to-hast": {
+ "version": "12.3.0",
+ "license": "MIT",
+ "dependencies": {
+ "@types/hast": "^2.0.0",
+ "@types/mdast": "^3.0.0",
+ "mdast-util-definitions": "^5.0.0",
+ "micromark-util-sanitize-uri": "^1.1.0",
+ "trim-lines": "^3.0.0",
+ "unist-util-generated": "^2.0.0",
+ "unist-util-position": "^4.0.0",
+ "unist-util-visit": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/npm-pick-manifest/node_modules/npm-package-arg": {
- "version": "9.0.2",
- "dev": true,
- "license": "ISC",
+ "node_modules/mdast-util-to-hast/node_modules/mdast-util-definitions": {
+ "version": "5.1.2",
+ "license": "MIT",
"dependencies": {
- "hosted-git-info": "^5.0.0",
- "semver": "^7.3.5",
- "validate-npm-package-name": "^4.0.0"
+ "@types/mdast": "^3.0.0",
+ "@types/unist": "^2.0.0",
+ "unist-util-visit": "^4.0.0"
},
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/npm-pick-manifest/node_modules/semver": {
- "version": "7.3.7",
- "dev": true,
- "license": "ISC",
+ "node_modules/mdast-util-to-markdown": {
+ "version": "1.5.0",
+ "license": "MIT",
"dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
+ "@types/mdast": "^3.0.0",
+ "@types/unist": "^2.0.0",
+ "longest-streak": "^3.0.0",
+ "mdast-util-phrasing": "^3.0.0",
+ "mdast-util-to-string": "^3.0.0",
+ "micromark-util-decode-string": "^1.0.0",
+ "unist-util-visit": "^4.0.0",
+ "zwitch": "^2.0.0"
},
- "engines": {
- "node": ">=10"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/npm-pick-manifest/node_modules/validate-npm-package-name": {
- "version": "4.0.0",
- "dev": true,
- "license": "ISC",
+ "node_modules/mdast-util-to-string": {
+ "version": "3.2.0",
+ "license": "MIT",
"dependencies": {
- "builtins": "^5.0.0"
+ "@types/mdast": "^3.0.0"
},
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/npm-registry-fetch": {
- "version": "9.0.0",
+ "node_modules/media-typer": {
+ "version": "0.3.0",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "@npmcli/ci-detect": "^1.0.0",
- "lru-cache": "^6.0.0",
- "make-fetch-happen": "^8.0.9",
- "minipass": "^3.1.3",
- "minipass-fetch": "^1.3.0",
- "minipass-json-stream": "^1.0.1",
- "minizlib": "^2.0.0",
- "npm-package-arg": "^8.0.0"
- },
+ "license": "MIT",
"engines": {
- "node": ">=10"
+ "node": ">= 0.6"
}
},
- "node_modules/npm-registry-fetch/node_modules/make-fetch-happen": {
- "version": "8.0.14",
+ "node_modules/memfs": {
+ "version": "3.5.3",
"dev": true,
- "license": "ISC",
+ "license": "Unlicense",
"dependencies": {
- "agentkeepalive": "^4.1.3",
- "cacache": "^15.0.5",
- "http-cache-semantics": "^4.1.0",
- "http-proxy-agent": "^4.0.1",
- "https-proxy-agent": "^5.0.0",
- "is-lambda": "^1.0.1",
- "lru-cache": "^6.0.0",
- "minipass": "^3.1.3",
- "minipass-collect": "^1.0.2",
- "minipass-fetch": "^1.3.2",
- "minipass-flush": "^1.0.5",
- "minipass-pipeline": "^1.2.4",
- "promise-retry": "^2.0.1",
- "socks-proxy-agent": "^5.0.0",
- "ssri": "^8.0.0"
+ "fs-monkey": "^1.0.4"
},
"engines": {
- "node": ">= 10"
+ "node": ">= 4.0.0"
}
},
- "node_modules/npm-registry-fetch/node_modules/socks-proxy-agent": {
- "version": "5.0.1",
+ "node_modules/memoizerific": {
+ "version": "1.11.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "agent-base": "^6.0.2",
- "debug": "4",
- "socks": "^2.3.3"
- },
- "engines": {
- "node": ">= 6"
+ "map-or-similar": "^1.5.0"
}
},
- "node_modules/npm-run-path": {
- "version": "4.0.1",
+ "node_modules/meow": {
+ "version": "8.1.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "path-key": "^3.0.0"
+ "@types/minimist": "^1.2.0",
+ "camelcase-keys": "^6.2.2",
+ "decamelize-keys": "^1.1.0",
+ "hard-rejection": "^2.1.0",
+ "minimist-options": "4.1.0",
+ "normalize-package-data": "^3.0.0",
+ "read-pkg-up": "^7.0.1",
+ "redent": "^3.0.0",
+ "trim-newlines": "^3.0.0",
+ "type-fest": "^0.18.0",
+ "yargs-parser": "^20.2.3"
},
"engines": {
- "node": ">=8"
- }
- },
- "node_modules/npmlog": {
- "version": "5.0.1",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "are-we-there-yet": "^2.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^3.0.0",
- "set-blocking": "^2.0.0"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/nth-check": {
- "version": "2.0.1",
+ "node_modules/meow/node_modules/type-fest": {
+ "version": "0.18.1",
"dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "boolbase": "^1.0.0"
+ "license": "(MIT OR CC0-1.0)",
+ "engines": {
+ "node": ">=10"
},
"funding": {
- "url": "https://github.com/fb55/nth-check?sponsor=1"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/num2fraction": {
- "version": "1.2.2",
+ "node_modules/merge-descriptors": {
+ "version": "1.0.1",
"dev": true,
"license": "MIT"
},
- "node_modules/nwsapi": {
- "version": "2.2.0",
+ "node_modules/merge-stream": {
+ "version": "2.0.0",
"dev": true,
"license": "MIT"
},
- "node_modules/nx": {
- "version": "14.3.2",
+ "node_modules/merge2": {
+ "version": "1.4.1",
"dev": true,
- "hasInstallScript": true,
"license": "MIT",
- "dependencies": {
- "@nrwl/cli": "14.3.2",
- "@nrwl/tao": "14.3.2",
- "@parcel/watcher": "2.0.4",
- "chalk": "4.1.0",
- "chokidar": "^3.5.1",
- "cli-cursor": "3.1.0",
- "cli-spinners": "2.6.1",
- "cliui": "^7.0.2",
- "dotenv": "~10.0.0",
- "enquirer": "~2.3.6",
- "fast-glob": "3.2.7",
- "figures": "3.2.0",
- "flat": "^5.0.2",
- "fs-extra": "^10.1.0",
- "glob": "7.1.4",
- "ignore": "^5.0.4",
- "jsonc-parser": "3.0.0",
- "minimatch": "3.0.5",
- "npm-run-path": "^4.0.1",
- "open": "^8.4.0",
- "semver": "7.3.4",
- "string-width": "^4.2.3",
- "tar-stream": "~2.2.0",
- "tmp": "~0.2.1",
- "tsconfig-paths": "^3.9.0",
- "tslib": "^2.3.0",
- "v8-compile-cache": "2.3.0",
- "yargs": "^17.4.0",
- "yargs-parser": "21.0.1"
- },
- "bin": {
- "nx": "bin/nx.js"
- },
- "peerDependencies": {
- "@swc-node/register": "^1.4.2",
- "@swc/core": "^1.2.173"
- },
- "peerDependenciesMeta": {
- "@swc-node/register": {
- "optional": true
- },
- "@swc/core": {
- "optional": true
- }
+ "engines": {
+ "node": ">= 8"
}
},
- "node_modules/nx/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/methods": {
+ "version": "1.1.2",
"dev": true,
"license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "node": ">= 0.6"
}
},
- "node_modules/nx/node_modules/chalk": {
- "version": "4.1.0",
- "dev": true,
+ "node_modules/micromark": {
+ "version": "3.2.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "@types/debug": "^4.0.0",
+ "debug": "^4.0.0",
+ "decode-named-character-reference": "^1.0.0",
+ "micromark-core-commonmark": "^1.0.1",
+ "micromark-factory-space": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-chunked": "^1.0.0",
+ "micromark-util-combine-extensions": "^1.0.0",
+ "micromark-util-decode-numeric-character-reference": "^1.0.0",
+ "micromark-util-encode": "^1.0.0",
+ "micromark-util-normalize-identifier": "^1.0.0",
+ "micromark-util-resolve-all": "^1.0.0",
+ "micromark-util-sanitize-uri": "^1.0.0",
+ "micromark-util-subtokenize": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.1",
+ "uvu": "^0.5.0"
}
},
- "node_modules/nx/node_modules/dotenv": {
- "version": "10.0.0",
- "dev": true,
- "license": "BSD-2-Clause",
- "engines": {
- "node": ">=10"
+ "node_modules/micromark-core-commonmark": {
+ "version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "decode-named-character-reference": "^1.0.0",
+ "micromark-factory-destination": "^1.0.0",
+ "micromark-factory-label": "^1.0.0",
+ "micromark-factory-space": "^1.0.0",
+ "micromark-factory-title": "^1.0.0",
+ "micromark-factory-whitespace": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-chunked": "^1.0.0",
+ "micromark-util-classify-character": "^1.0.0",
+ "micromark-util-html-tag-name": "^1.0.0",
+ "micromark-util-normalize-identifier": "^1.0.0",
+ "micromark-util-resolve-all": "^1.0.0",
+ "micromark-util-subtokenize": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.1",
+ "uvu": "^0.5.0"
}
},
- "node_modules/nx/node_modules/fast-glob": {
- "version": "3.2.7",
- "dev": true,
+ "node_modules/micromark-extension-gfm": {
+ "version": "2.0.3",
"license": "MIT",
"dependencies": {
- "@nodelib/fs.stat": "^2.0.2",
- "@nodelib/fs.walk": "^1.2.3",
- "glob-parent": "^5.1.2",
- "merge2": "^1.3.0",
- "micromatch": "^4.0.4"
+ "micromark-extension-gfm-autolink-literal": "^1.0.0",
+ "micromark-extension-gfm-footnote": "^1.0.0",
+ "micromark-extension-gfm-strikethrough": "^1.0.0",
+ "micromark-extension-gfm-table": "^1.0.0",
+ "micromark-extension-gfm-tagfilter": "^1.0.0",
+ "micromark-extension-gfm-task-list-item": "^1.0.0",
+ "micromark-util-combine-extensions": "^1.0.0",
+ "micromark-util-types": "^1.0.0"
},
- "engines": {
- "node": ">=8"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/nx/node_modules/fs-extra": {
- "version": "10.1.0",
- "dev": true,
+ "node_modules/micromark-extension-gfm-autolink-literal": {
+ "version": "1.0.5",
"license": "MIT",
"dependencies": {
- "graceful-fs": "^4.2.0",
- "jsonfile": "^6.0.1",
- "universalify": "^2.0.0"
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-sanitize-uri": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0"
},
- "engines": {
- "node": ">=12"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/nx/node_modules/glob": {
- "version": "7.1.4",
- "dev": true,
- "license": "ISC",
+ "node_modules/micromark-extension-gfm-footnote": {
+ "version": "1.1.2",
+ "license": "MIT",
"dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.0.4",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
+ "micromark-core-commonmark": "^1.0.0",
+ "micromark-factory-space": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-normalize-identifier": "^1.0.0",
+ "micromark-util-sanitize-uri": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "uvu": "^0.5.0"
},
- "engines": {
- "node": "*"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/nx/node_modules/glob-parent": {
- "version": "5.1.2",
- "dev": true,
- "license": "ISC",
+ "node_modules/micromark-extension-gfm-strikethrough": {
+ "version": "1.0.7",
+ "license": "MIT",
"dependencies": {
- "is-glob": "^4.0.1"
+ "micromark-util-chunked": "^1.0.0",
+ "micromark-util-classify-character": "^1.0.0",
+ "micromark-util-resolve-all": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "uvu": "^0.5.0"
},
- "engines": {
- "node": ">= 6"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/nx/node_modules/has-flag": {
- "version": "4.0.0",
- "dev": true,
+ "node_modules/micromark-extension-gfm-table": {
+ "version": "1.0.7",
"license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/nx/node_modules/minimatch": {
- "version": "3.0.5",
- "dev": true,
- "license": "ISC",
"dependencies": {
- "brace-expansion": "^1.1.7"
+ "micromark-factory-space": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "uvu": "^0.5.0"
},
- "engines": {
- "node": "*"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/nx/node_modules/semver": {
- "version": "7.3.4",
- "dev": true,
- "license": "ISC",
+ "node_modules/micromark-extension-gfm-tagfilter": {
+ "version": "1.0.2",
+ "license": "MIT",
"dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
+ "micromark-util-types": "^1.0.0"
},
- "engines": {
- "node": ">=10"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/nx/node_modules/supports-color": {
- "version": "7.2.0",
- "dev": true,
+ "node_modules/micromark-extension-gfm-task-list-item": {
+ "version": "1.0.5",
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
+ "micromark-factory-space": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "uvu": "^0.5.0"
},
- "engines": {
- "node": ">=8"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/nx/node_modules/tmp": {
- "version": "0.2.1",
- "dev": true,
+ "node_modules/micromark-extension-mdx-expression": {
+ "version": "1.0.8",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "rimraf": "^3.0.0"
- },
- "engines": {
- "node": ">=8.17.0"
+ "@types/estree": "^1.0.0",
+ "micromark-factory-mdx-expression": "^1.0.0",
+ "micromark-factory-space": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-events-to-acorn": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "uvu": "^0.5.0"
}
},
- "node_modules/nx/node_modules/yargs": {
- "version": "17.5.1",
- "dev": true,
+ "node_modules/micromark-extension-mdx-expression/node_modules/@types/estree": {
+ "version": "1.0.5",
+ "license": "MIT"
+ },
+ "node_modules/micromark-extension-mdx-jsx": {
+ "version": "1.0.5",
"license": "MIT",
"dependencies": {
- "cliui": "^7.0.2",
- "escalade": "^3.1.1",
- "get-caller-file": "^2.0.5",
- "require-directory": "^2.1.1",
- "string-width": "^4.2.3",
- "y18n": "^5.0.5",
- "yargs-parser": "^21.0.0"
+ "@types/acorn": "^4.0.0",
+ "@types/estree": "^1.0.0",
+ "estree-util-is-identifier-name": "^2.0.0",
+ "micromark-factory-mdx-expression": "^1.0.0",
+ "micromark-factory-space": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "uvu": "^0.5.0",
+ "vfile-message": "^3.0.0"
},
- "engines": {
- "node": ">=12"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/nx/node_modules/yargs-parser": {
- "version": "21.0.1",
- "dev": true,
- "license": "ISC",
- "engines": {
- "node": ">=12"
- }
+ "node_modules/micromark-extension-mdx-jsx/node_modules/@types/estree": {
+ "version": "1.0.5",
+ "license": "MIT"
},
- "node_modules/nyc": {
- "version": "15.1.0",
- "dev": true,
- "license": "ISC",
+ "node_modules/micromark-extension-mdx-md": {
+ "version": "1.0.1",
+ "license": "MIT",
"dependencies": {
- "@istanbuljs/load-nyc-config": "^1.0.0",
- "@istanbuljs/schema": "^0.1.2",
- "caching-transform": "^4.0.0",
- "convert-source-map": "^1.7.0",
- "decamelize": "^1.2.0",
- "find-cache-dir": "^3.2.0",
- "find-up": "^4.1.0",
- "foreground-child": "^2.0.0",
- "get-package-type": "^0.1.0",
- "glob": "^7.1.6",
- "istanbul-lib-coverage": "^3.0.0",
- "istanbul-lib-hook": "^3.0.0",
- "istanbul-lib-instrument": "^4.0.0",
- "istanbul-lib-processinfo": "^2.0.2",
- "istanbul-lib-report": "^3.0.0",
- "istanbul-lib-source-maps": "^4.0.0",
- "istanbul-reports": "^3.0.2",
- "make-dir": "^3.0.0",
- "node-preload": "^0.2.1",
- "p-map": "^3.0.0",
- "process-on-spawn": "^1.0.0",
- "resolve-from": "^5.0.0",
- "rimraf": "^3.0.0",
- "signal-exit": "^3.0.2",
- "spawn-wrap": "^2.0.0",
- "test-exclude": "^6.0.0",
- "yargs": "^15.0.2"
+ "micromark-util-types": "^1.0.0"
},
- "bin": {
- "nyc": "bin/nyc.js"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark-extension-mdxjs": {
+ "version": "1.0.1",
+ "license": "MIT",
+ "dependencies": {
+ "acorn": "^8.0.0",
+ "acorn-jsx": "^5.0.0",
+ "micromark-extension-mdx-expression": "^1.0.0",
+ "micromark-extension-mdx-jsx": "^1.0.0",
+ "micromark-extension-mdx-md": "^1.0.0",
+ "micromark-extension-mdxjs-esm": "^1.0.0",
+ "micromark-util-combine-extensions": "^1.0.0",
+ "micromark-util-types": "^1.0.0"
},
- "engines": {
- "node": ">=8.9"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/nyc/node_modules/ansi-styles": {
- "version": "4.3.0",
- "dev": true,
+ "node_modules/micromark-extension-mdxjs-esm": {
+ "version": "1.0.5",
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
+ "@types/estree": "^1.0.0",
+ "micromark-core-commonmark": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-events-to-acorn": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "unist-util-position-from-estree": "^1.1.0",
+ "uvu": "^0.5.0",
+ "vfile-message": "^3.0.0"
},
"funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/nyc/node_modules/camelcase": {
- "version": "5.3.1",
- "dev": true,
+ "node_modules/micromark-extension-mdxjs-esm/node_modules/@types/estree": {
+ "version": "1.0.5",
+ "license": "MIT"
+ },
+ "node_modules/micromark-extension-mdxjs/node_modules/acorn": {
+ "version": "8.11.3",
"license": "MIT",
+ "bin": {
+ "acorn": "bin/acorn"
+ },
"engines": {
- "node": ">=6"
+ "node": ">=0.4.0"
}
},
- "node_modules/nyc/node_modules/cliui": {
- "version": "6.0.0",
- "dev": true,
- "license": "ISC",
+ "node_modules/micromark-factory-destination": {
+ "version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
"dependencies": {
- "string-width": "^4.2.0",
- "strip-ansi": "^6.0.0",
- "wrap-ansi": "^6.2.0"
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0"
}
},
- "node_modules/nyc/node_modules/find-cache-dir": {
- "version": "3.3.2",
- "dev": true,
+ "node_modules/micromark-factory-label": {
+ "version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "commondir": "^1.0.1",
- "make-dir": "^3.0.2",
- "pkg-dir": "^4.1.0"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/avajs/find-cache-dir?sponsor=1"
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "uvu": "^0.5.0"
}
},
- "node_modules/nyc/node_modules/find-up": {
- "version": "4.1.0",
- "dev": true,
+ "node_modules/micromark-factory-mdx-expression": {
+ "version": "1.0.9",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "locate-path": "^5.0.0",
- "path-exists": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
+ "@types/estree": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-events-to-acorn": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "unist-util-position-from-estree": "^1.0.0",
+ "uvu": "^0.5.0",
+ "vfile-message": "^3.0.0"
}
},
- "node_modules/nyc/node_modules/istanbul-lib-instrument": {
- "version": "4.0.3",
- "dev": true,
- "license": "BSD-3-Clause",
+ "node_modules/micromark-factory-mdx-expression/node_modules/@types/estree": {
+ "version": "1.0.5",
+ "license": "MIT"
+ },
+ "node_modules/micromark-factory-space": {
+ "version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
"dependencies": {
- "@babel/core": "^7.7.5",
- "@istanbuljs/schema": "^0.1.2",
- "istanbul-lib-coverage": "^3.0.0",
- "semver": "^6.3.0"
- },
- "engines": {
- "node": ">=8"
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-types": "^1.0.0"
}
},
- "node_modules/nyc/node_modules/locate-path": {
- "version": "5.0.0",
- "dev": true,
+ "node_modules/micromark-factory-title": {
+ "version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "p-locate": "^4.1.0"
- },
- "engines": {
- "node": ">=8"
+ "micromark-factory-space": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0"
}
},
- "node_modules/nyc/node_modules/make-dir": {
- "version": "3.1.0",
- "dev": true,
+ "node_modules/micromark-factory-whitespace": {
+ "version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "semver": "^6.0.0"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "micromark-factory-space": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0"
}
},
- "node_modules/nyc/node_modules/p-limit": {
- "version": "2.3.0",
- "dev": true,
+ "node_modules/micromark-util-character": {
+ "version": "1.2.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "p-try": "^2.0.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0"
}
},
- "node_modules/nyc/node_modules/p-locate": {
- "version": "4.1.0",
- "dev": true,
+ "node_modules/micromark-util-chunked": {
+ "version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "p-limit": "^2.2.0"
- },
- "engines": {
- "node": ">=8"
+ "micromark-util-symbol": "^1.0.0"
}
},
- "node_modules/nyc/node_modules/path-exists": {
- "version": "4.0.0",
- "dev": true,
+ "node_modules/micromark-util-classify-character": {
+ "version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "dependencies": {
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0"
}
},
- "node_modules/nyc/node_modules/pkg-dir": {
- "version": "4.2.0",
- "dev": true,
+ "node_modules/micromark-util-combine-extensions": {
+ "version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "find-up": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
+ "micromark-util-chunked": "^1.0.0",
+ "micromark-util-types": "^1.0.0"
}
},
- "node_modules/nyc/node_modules/wrap-ansi": {
- "version": "6.2.0",
- "dev": true,
+ "node_modules/micromark-util-decode-numeric-character-reference": {
+ "version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.0.0",
- "string-width": "^4.1.0",
- "strip-ansi": "^6.0.0"
- },
- "engines": {
- "node": ">=8"
+ "micromark-util-symbol": "^1.0.0"
}
},
- "node_modules/nyc/node_modules/y18n": {
- "version": "4.0.3",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/nyc/node_modules/yargs": {
- "version": "15.4.1",
- "dev": true,
+ "node_modules/micromark-util-decode-string": {
+ "version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "cliui": "^6.0.0",
- "decamelize": "^1.2.0",
- "find-up": "^4.1.0",
- "get-caller-file": "^2.0.1",
- "require-directory": "^2.1.1",
- "require-main-filename": "^2.0.0",
- "set-blocking": "^2.0.0",
- "string-width": "^4.2.0",
- "which-module": "^2.0.0",
- "y18n": "^4.0.0",
- "yargs-parser": "^18.1.2"
- },
- "engines": {
- "node": ">=8"
+ "decode-named-character-reference": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-decode-numeric-character-reference": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0"
}
},
- "node_modules/nyc/node_modules/yargs-parser": {
- "version": "18.1.3",
- "dev": true,
- "license": "ISC",
+ "node_modules/micromark-util-encode": {
+ "version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/micromark-util-events-to-acorn": {
+ "version": "1.2.3",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
"dependencies": {
- "camelcase": "^5.0.0",
- "decamelize": "^1.2.0"
- },
- "engines": {
- "node": ">=6"
+ "@types/acorn": "^4.0.0",
+ "@types/estree": "^1.0.0",
+ "@types/unist": "^2.0.0",
+ "estree-util-visit": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "uvu": "^0.5.0",
+ "vfile-message": "^3.0.0"
}
},
- "node_modules/oauth-sign": {
- "version": "0.9.0",
- "dev": true,
- "license": "Apache-2.0",
- "engines": {
- "node": "*"
+ "node_modules/micromark-util-events-to-acorn/node_modules/@types/estree": {
+ "version": "1.0.5",
+ "license": "MIT"
+ },
+ "node_modules/micromark-util-html-tag-name": {
+ "version": "1.2.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/micromark-util-normalize-identifier": {
+ "version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "micromark-util-symbol": "^1.0.0"
}
},
- "node_modules/object-assign": {
- "version": "4.1.1",
+ "node_modules/micromark-util-resolve-all": {
+ "version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "micromark-util-types": "^1.0.0"
}
},
- "node_modules/object-copy": {
- "version": "0.1.0",
- "dev": true,
+ "node_modules/micromark-util-sanitize-uri": {
+ "version": "1.2.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "copy-descriptor": "^0.1.0",
- "define-property": "^0.2.5",
- "kind-of": "^3.0.3"
- },
- "engines": {
- "node": ">=0.10.0"
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-encode": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0"
}
},
- "node_modules/object-copy/node_modules/define-property": {
- "version": "0.2.5",
- "dev": true,
+ "node_modules/micromark-util-subtokenize": {
+ "version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "is-descriptor": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
+ "micromark-util-chunked": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "uvu": "^0.5.0"
}
},
- "node_modules/object-copy/node_modules/is-accessor-descriptor": {
- "version": "0.1.6",
+ "node_modules/micromark-util-symbol": {
+ "version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/micromark-util-types": {
+ "version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/micromatch": {
+ "version": "4.0.5",
"dev": true,
"license": "MIT",
"dependencies": {
- "kind-of": "^3.0.2"
+ "braces": "^3.0.2",
+ "picomatch": "^2.3.1"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=8.6"
}
},
- "node_modules/object-copy/node_modules/is-buffer": {
- "version": "1.1.6",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/object-copy/node_modules/is-data-descriptor": {
- "version": "0.1.4",
+ "node_modules/miller-rabin": {
+ "version": "4.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "kind-of": "^3.0.2"
+ "bn.js": "^4.0.0",
+ "brorand": "^1.0.1"
},
- "engines": {
- "node": ">=0.10.0"
+ "bin": {
+ "miller-rabin": "bin/miller-rabin"
}
},
- "node_modules/object-copy/node_modules/is-descriptor": {
- "version": "0.1.6",
+ "node_modules/miller-rabin/node_modules/bn.js": {
+ "version": "4.12.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/mime": {
+ "version": "1.6.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "is-accessor-descriptor": "^0.1.6",
- "is-data-descriptor": "^0.1.4",
- "kind-of": "^5.0.0"
+ "bin": {
+ "mime": "cli.js"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=4"
}
},
- "node_modules/object-copy/node_modules/is-descriptor/node_modules/kind-of": {
- "version": "5.1.0",
- "dev": true,
+ "node_modules/mime-db": {
+ "version": "1.52.0",
"license": "MIT",
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 0.6"
}
},
- "node_modules/object-copy/node_modules/kind-of": {
- "version": "3.2.2",
+ "node_modules/mime-types": {
+ "version": "2.1.35",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-buffer": "^1.1.5"
+ "mime-db": "1.52.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 0.6"
}
},
- "node_modules/object-hash": {
- "version": "3.0.0",
+ "node_modules/mimic-fn": {
+ "version": "2.1.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">= 6"
+ "node": ">=6"
}
},
- "node_modules/object-inspect": {
- "version": "1.12.3",
+ "node_modules/mimic-response": {
+ "version": "1.0.1",
"dev": true,
"license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/object-is": {
- "version": "1.1.5",
- "dev": true,
+ "node_modules/min-indent": {
+ "version": "1.0.1",
"license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3"
- },
"engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "node": ">=4"
}
},
- "node_modules/object-keys": {
- "version": "1.1.1",
+ "node_modules/minimalistic-assert": {
+ "version": "1.0.1",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- }
+ "license": "ISC"
},
- "node_modules/object-visit": {
+ "node_modules/minimalistic-crypto-utils": {
"version": "1.0.1",
"dev": true,
- "license": "MIT",
+ "license": "MIT"
+ },
+ "node_modules/minimatch": {
+ "version": "3.1.2",
+ "license": "ISC",
"dependencies": {
- "isobject": "^3.0.0"
+ "brace-expansion": "^1.1.7"
},
"engines": {
- "node": ">=0.10.0"
+ "node": "*"
}
},
- "node_modules/object.assign": {
- "version": "4.1.4",
+ "node_modules/minimist": {
+ "version": "1.2.8",
"dev": true,
"license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "has-symbols": "^1.0.3",
- "object-keys": "^1.1.1"
- },
- "engines": {
- "node": ">= 0.4"
- },
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/object.defaults": {
- "version": "1.1.0",
+ "node_modules/minimist-options": {
+ "version": "4.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "array-each": "^1.0.1",
- "array-slice": "^1.0.0",
- "for-own": "^1.0.0",
- "isobject": "^3.0.0"
+ "arrify": "^1.0.1",
+ "is-plain-obj": "^1.1.0",
+ "kind-of": "^6.0.3"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 6"
}
},
- "node_modules/object.entries": {
- "version": "1.1.5",
+ "node_modules/minipass": {
+ "version": "3.3.6",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.19.1"
+ "yallist": "^4.0.0"
},
"engines": {
- "node": ">= 0.4"
+ "node": ">=8"
}
},
- "node_modules/object.fromentries": {
- "version": "2.0.5",
+ "node_modules/minipass-collect": {
+ "version": "1.0.2",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.19.1"
+ "minipass": "^3.0.0"
},
"engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "node": ">= 8"
}
},
- "node_modules/object.getownpropertydescriptors": {
- "version": "2.1.5",
+ "node_modules/minipass-fetch": {
+ "version": "2.1.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "array.prototype.reduce": "^1.0.5",
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
+ "minipass": "^3.1.6",
+ "minipass-sized": "^1.0.3",
+ "minizlib": "^2.1.2"
},
"engines": {
- "node": ">= 0.8"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "optionalDependencies": {
+ "encoding": "^0.1.13"
}
},
- "node_modules/object.hasown": {
- "version": "1.1.1",
+ "node_modules/minipass-flush": {
+ "version": "1.0.5",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "define-properties": "^1.1.4",
- "es-abstract": "^1.19.5"
+ "minipass": "^3.0.0"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "engines": {
+ "node": ">= 8"
}
},
- "node_modules/object.map": {
+ "node_modules/minipass-json-stream": {
"version": "1.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "for-own": "^1.0.0",
- "make-iterator": "^1.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
+ "jsonparse": "^1.3.1",
+ "minipass": "^3.0.0"
}
},
- "node_modules/object.pick": {
- "version": "1.3.0",
+ "node_modules/minipass-pipeline": {
+ "version": "1.2.4",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "isobject": "^3.0.1"
+ "minipass": "^3.0.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=8"
}
},
- "node_modules/object.values": {
- "version": "1.1.5",
+ "node_modules/minipass-sized": {
+ "version": "1.0.3",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.19.1"
+ "minipass": "^3.0.0"
},
"engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "node": ">=8"
}
},
- "node_modules/objectorarray": {
- "version": "1.0.5",
+ "node_modules/minipass/node_modules/yallist": {
+ "version": "4.0.0",
"dev": true,
"license": "ISC"
},
- "node_modules/on-finished": {
- "version": "2.3.0",
+ "node_modules/minizlib": {
+ "version": "2.1.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "ee-first": "1.1.1"
+ "minipass": "^3.0.0",
+ "yallist": "^4.0.0"
},
"engines": {
- "node": ">= 0.8"
+ "node": ">= 8"
}
},
- "node_modules/on-headers": {
- "version": "1.0.2",
+ "node_modules/minizlib/node_modules/yallist": {
+ "version": "4.0.0",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/mkdirp": {
+ "version": "1.0.4",
"dev": true,
"license": "MIT",
+ "bin": {
+ "mkdirp": "bin/cmd.js"
+ },
"engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/once": {
- "version": "1.4.0",
- "license": "ISC",
- "dependencies": {
- "wrappy": "1"
+ "node": ">=10"
}
},
- "node_modules/one-time": {
- "version": "1.0.0",
+ "node_modules/mkdirp-classic": {
+ "version": "0.5.3",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "fn.name": "1.x.x"
- }
+ "license": "MIT"
},
- "node_modules/onetime": {
- "version": "5.1.2",
+ "node_modules/mkdirp-infer-owner": {
+ "version": "2.0.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "mimic-fn": "^2.1.0"
+ "chownr": "^2.0.0",
+ "infer-owner": "^1.0.4",
+ "mkdirp": "^1.0.3"
},
"engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=10"
}
},
- "node_modules/open": {
- "version": "8.4.0",
+ "node_modules/modify-values": {
+ "version": "1.0.1",
"dev": true,
"license": "MIT",
- "dependencies": {
- "define-lazy-prop": "^2.0.0",
- "is-docker": "^2.1.1",
- "is-wsl": "^2.2.0"
- },
"engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=0.10.0"
}
},
- "node_modules/opener": {
- "version": "1.5.2",
+ "node_modules/moo": {
+ "version": "0.5.2",
"dev": true,
- "license": "(WTFPL OR MIT)",
- "bin": {
- "opener": "bin/opener-bin.js"
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/mri": {
+ "version": "1.2.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/optionator": {
- "version": "0.9.1",
+ "node_modules/mrmime": {
+ "version": "1.0.1",
"dev": true,
"license": "MIT",
- "dependencies": {
- "deep-is": "^0.1.3",
- "fast-levenshtein": "^2.0.6",
- "levn": "^0.4.1",
- "prelude-ls": "^1.2.1",
- "type-check": "^0.4.0",
- "word-wrap": "^1.2.3"
- },
"engines": {
- "node": ">= 0.8.0"
+ "node": ">=10"
}
},
- "node_modules/ora": {
- "version": "6.1.0",
+ "node_modules/ms": {
+ "version": "2.1.2",
+ "license": "MIT"
+ },
+ "node_modules/multimatch": {
+ "version": "5.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "bl": "^5.0.0",
- "chalk": "^5.0.0",
- "cli-cursor": "^4.0.0",
- "cli-spinners": "^2.6.1",
- "is-interactive": "^2.0.0",
- "is-unicode-supported": "^1.1.0",
- "log-symbols": "^5.1.0",
- "strip-ansi": "^7.0.1",
- "wcwidth": "^1.0.1"
+ "@types/minimatch": "^3.0.3",
+ "array-differ": "^3.0.0",
+ "array-union": "^2.1.0",
+ "arrify": "^2.0.1",
+ "minimatch": "^3.0.4"
},
"engines": {
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ "node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/ora/node_modules/ansi-regex": {
- "version": "6.0.1",
+ "node_modules/multimatch/node_modules/arrify": {
+ "version": "2.0.1",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-regex?sponsor=1"
+ "node": ">=8"
}
},
- "node_modules/ora/node_modules/chalk": {
- "version": "5.0.1",
+ "node_modules/mute-stream": {
+ "version": "0.0.8",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": "^12.17.0 || ^14.13 || >=16.0.0"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
+ "license": "ISC"
},
- "node_modules/ora/node_modules/cli-cursor": {
- "version": "4.0.0",
+ "node_modules/mz": {
+ "version": "2.7.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "restore-cursor": "^4.0.0"
- },
- "engines": {
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "any-promise": "^1.0.0",
+ "object-assign": "^4.0.1",
+ "thenify-all": "^1.0.0"
}
},
- "node_modules/ora/node_modules/restore-cursor": {
- "version": "4.0.0",
- "dev": true,
+ "node_modules/nanoid": {
+ "version": "3.3.7",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
"license": "MIT",
- "dependencies": {
- "onetime": "^5.1.0",
- "signal-exit": "^3.0.2"
+ "bin": {
+ "nanoid": "bin/nanoid.cjs"
},
"engines": {
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
}
},
- "node_modules/ora/node_modules/strip-ansi": {
- "version": "7.0.1",
+ "node_modules/napi-build-utils": {
+ "version": "1.0.2",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/natural-compare": {
+ "version": "1.4.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/natural-compare-lite": {
+ "version": "1.4.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/nearley": {
+ "version": "2.20.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-regex": "^6.0.1"
+ "commander": "^2.19.0",
+ "moo": "^0.5.0",
+ "railroad-diagrams": "^1.0.0",
+ "randexp": "0.4.6"
},
- "engines": {
- "node": ">=12"
+ "bin": {
+ "nearley-railroad": "bin/nearley-railroad.js",
+ "nearley-test": "bin/nearley-test.js",
+ "nearley-unparse": "bin/nearley-unparse.js",
+ "nearleyc": "bin/nearleyc.js"
},
"funding": {
- "url": "https://github.com/chalk/strip-ansi?sponsor=1"
+ "type": "individual",
+ "url": "https://nearley.js.org/#give-to-nearley"
}
},
- "node_modules/os-browserify": {
- "version": "0.3.0",
+ "node_modules/nearley/node_modules/commander": {
+ "version": "2.20.3",
"dev": true,
"license": "MIT"
},
- "node_modules/os-homedir": {
- "version": "1.0.2",
+ "node_modules/negotiator": {
+ "version": "0.6.3",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 0.6"
}
},
- "node_modules/os-tmpdir": {
- "version": "1.0.2",
- "dev": true,
+ "node_modules/neo-async": {
+ "version": "2.6.2",
+ "license": "MIT"
+ },
+ "node_modules/next": {
+ "version": "14.0.3",
"license": "MIT",
+ "dependencies": {
+ "@next/env": "14.0.3",
+ "@swc/helpers": "0.5.2",
+ "busboy": "1.6.0",
+ "caniuse-lite": "^1.0.30001406",
+ "postcss": "8.4.31",
+ "styled-jsx": "5.1.1",
+ "watchpack": "2.4.0"
+ },
+ "bin": {
+ "next": "dist/bin/next"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": ">=18.17.0"
+ },
+ "optionalDependencies": {
+ "@next/swc-darwin-arm64": "14.0.3",
+ "@next/swc-darwin-x64": "14.0.3",
+ "@next/swc-linux-arm64-gnu": "14.0.3",
+ "@next/swc-linux-arm64-musl": "14.0.3",
+ "@next/swc-linux-x64-gnu": "14.0.3",
+ "@next/swc-linux-x64-musl": "14.0.3",
+ "@next/swc-win32-arm64-msvc": "14.0.3",
+ "@next/swc-win32-ia32-msvc": "14.0.3",
+ "@next/swc-win32-x64-msvc": "14.0.3"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.1.0",
+ "react": "^18.2.0",
+ "react-dom": "^18.2.0",
+ "sass": "^1.3.0"
+ },
+ "peerDependenciesMeta": {
+ "@opentelemetry/api": {
+ "optional": true
+ },
+ "sass": {
+ "optional": true
+ }
}
},
- "node_modules/p-all": {
- "version": "2.1.0",
- "dev": true,
- "license": "MIT",
+ "node_modules/next-mdx-remote": {
+ "version": "4.4.1",
+ "license": "MPL-2.0",
"dependencies": {
- "p-map": "^2.0.0"
+ "@mdx-js/mdx": "^2.2.1",
+ "@mdx-js/react": "^2.2.1",
+ "vfile": "^5.3.0",
+ "vfile-matter": "^3.0.1"
},
"engines": {
- "node": ">=6"
+ "node": ">=14",
+ "npm": ">=7"
+ },
+ "peerDependencies": {
+ "react": ">=16.x <=18.x",
+ "react-dom": ">=16.x <=18.x"
}
},
- "node_modules/p-all/node_modules/p-map": {
- "version": "2.1.0",
- "dev": true,
+ "node_modules/next-mdx-remote/node_modules/@mdx-js/react": {
+ "version": "2.3.0",
"license": "MIT",
- "engines": {
- "node": ">=6"
+ "dependencies": {
+ "@types/mdx": "^2.0.0",
+ "@types/react": ">=16"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ },
+ "peerDependencies": {
+ "react": ">=16"
}
},
- "node_modules/p-cancelable": {
- "version": "1.1.0",
+ "node_modules/next-remote-watch": {
+ "version": "2.0.0",
"dev": true,
- "license": "MIT",
+ "license": "MPL-2.0",
+ "dependencies": {
+ "chalk": "^4.0.0",
+ "chokidar": "^3.4.0",
+ "commander": "^5.0.0",
+ "express": "^4.17.1"
+ },
+ "bin": {
+ "next-remote-watch": "bin/next-remote-watch"
+ },
"engines": {
- "node": ">=6"
+ "node": ">= 10"
+ },
+ "peerDependencies": {
+ "next": ">=10"
}
},
- "node_modules/p-defer": {
- "version": "1.0.0",
+ "node_modules/next-remote-watch/node_modules/commander": {
+ "version": "5.1.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=4"
+ "node": ">= 6"
}
},
- "node_modules/p-event": {
- "version": "4.2.0",
- "dev": true,
+ "node_modules/next-themes": {
+ "version": "0.2.1",
"license": "MIT",
- "dependencies": {
- "p-timeout": "^3.1.0"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "peerDependencies": {
+ "next": "*",
+ "react": "*",
+ "react-dom": "*"
}
},
- "node_modules/p-filter": {
- "version": "2.1.0",
- "dev": true,
+ "node_modules/next-tick": {
+ "version": "1.1.0",
+ "license": "ISC"
+ },
+ "node_modules/next/node_modules/postcss": {
+ "version": "8.4.31",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/postcss"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "p-map": "^2.0.0"
+ "nanoid": "^3.3.6",
+ "picocolors": "^1.0.0",
+ "source-map-js": "^1.0.2"
},
"engines": {
- "node": ">=8"
+ "node": "^10 || ^12 || >=14"
}
},
- "node_modules/p-filter/node_modules/p-map": {
- "version": "2.1.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
+ "node_modules/nextjs13-approuter": {
+ "resolved": "apps/nextjs13-approuter",
+ "link": true
},
- "node_modules/p-finally": {
- "version": "1.0.0",
- "dev": true,
+ "node_modules/nextjs13-pagerouter": {
+ "resolved": "apps/nextjs13-pagerouter",
+ "link": true
+ },
+ "node_modules/nextjs14-approuter": {
+ "resolved": "apps/nextjs14-approuter",
+ "link": true
+ },
+ "node_modules/nextjs14-pagerouter": {
+ "resolved": "apps/nextjs14-pagerouter",
+ "link": true
+ },
+ "node_modules/no-case": {
+ "version": "3.0.4",
"license": "MIT",
- "engines": {
- "node": ">=4"
+ "dependencies": {
+ "lower-case": "^2.0.2",
+ "tslib": "^2.0.3"
}
},
- "node_modules/p-limit": {
- "version": "3.1.0",
+ "node_modules/node-abi": {
+ "version": "3.57.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "yocto-queue": "^0.1.0"
+ "semver": "^7.3.5"
},
"engines": {
"node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/p-locate": {
- "version": "5.0.0",
- "license": "MIT",
+ "node_modules/node-abi/node_modules/lru-cache": {
+ "version": "6.0.0",
+ "dev": true,
+ "license": "ISC",
"dependencies": {
- "p-limit": "^3.0.2"
+ "yallist": "^4.0.0"
},
"engines": {
"node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/p-map": {
- "version": "3.0.0",
+ "node_modules/node-abi/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "aggregate-error": "^3.0.0"
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
},
"engines": {
- "node": ">=8"
+ "node": ">=10"
}
},
- "node_modules/p-map-series": {
- "version": "2.1.0",
+ "node_modules/node-abi/node_modules/yallist": {
+ "version": "4.0.0",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
+ "license": "ISC"
},
- "node_modules/p-pipe": {
- "version": "3.1.0",
+ "node_modules/node-abort-controller": {
+ "version": "3.1.1",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/node-addon-api": {
+ "version": "3.2.1",
"dev": true,
+ "license": "MIT"
+ },
+ "node_modules/node-dir": {
+ "version": "0.1.17",
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "dependencies": {
+ "minimatch": "^3.0.2"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "engines": {
+ "node": ">= 0.10.5"
}
},
- "node_modules/p-queue": {
- "version": "6.6.2",
- "dev": true,
+ "node_modules/node-fetch": {
+ "version": "2.7.0",
"license": "MIT",
"dependencies": {
- "eventemitter3": "^4.0.4",
- "p-timeout": "^3.2.0"
+ "whatwg-url": "^5.0.0"
},
"engines": {
- "node": ">=8"
+ "node": "4.x || >=6.0.0"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "peerDependencies": {
+ "encoding": "^0.1.0"
+ },
+ "peerDependenciesMeta": {
+ "encoding": {
+ "optional": true
+ }
}
},
- "node_modules/p-reduce": {
- "version": "2.1.0",
+ "node_modules/node-fetch-native": {
+ "version": "1.6.4",
"dev": true,
+ "license": "MIT"
+ },
+ "node_modules/node-fetch/node_modules/tr46": {
+ "version": "0.0.3",
+ "license": "MIT"
+ },
+ "node_modules/node-fetch/node_modules/webidl-conversions": {
+ "version": "3.0.1",
+ "license": "BSD-2-Clause"
+ },
+ "node_modules/node-fetch/node_modules/whatwg-url": {
+ "version": "5.0.0",
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "dependencies": {
+ "tr46": "~0.0.3",
+ "webidl-conversions": "^3.0.0"
}
},
- "node_modules/p-timeout": {
- "version": "3.2.0",
+ "node_modules/node-gyp": {
+ "version": "9.4.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "p-finally": "^1.0.0"
+ "env-paths": "^2.2.0",
+ "exponential-backoff": "^3.1.1",
+ "glob": "^7.1.4",
+ "graceful-fs": "^4.2.6",
+ "make-fetch-happen": "^10.0.3",
+ "nopt": "^6.0.0",
+ "npmlog": "^6.0.0",
+ "rimraf": "^3.0.2",
+ "semver": "^7.3.5",
+ "tar": "^6.1.2",
+ "which": "^2.0.2"
+ },
+ "bin": {
+ "node-gyp": "bin/node-gyp.js"
},
"engines": {
- "node": ">=8"
+ "node": "^12.13 || ^14.13 || >=16"
}
},
- "node_modules/p-try": {
- "version": "2.2.0",
+ "node_modules/node-gyp-build": {
+ "version": "4.8.0",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=6"
+ "bin": {
+ "node-gyp-build": "bin.js",
+ "node-gyp-build-optional": "optional.js",
+ "node-gyp-build-test": "build-test.js"
}
},
- "node_modules/p-waterfall": {
- "version": "2.1.1",
+ "node_modules/node-gyp/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "p-reduce": "^2.0.0"
+ "yallist": "^4.0.0"
},
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=10"
}
},
- "node_modules/package-hash": {
- "version": "4.0.0",
+ "node_modules/node-gyp/node_modules/nopt": {
+ "version": "6.0.0",
"dev": true,
"license": "ISC",
"dependencies": {
- "graceful-fs": "^4.1.15",
- "hasha": "^5.0.0",
- "lodash.flattendeep": "^4.4.0",
- "release-zalgo": "^1.0.0"
+ "abbrev": "^1.0.0"
},
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/package-json": {
- "version": "6.5.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "got": "^9.6.0",
- "registry-auth-token": "^4.0.0",
- "registry-url": "^5.0.0",
- "semver": "^6.2.0"
+ "bin": {
+ "nopt": "bin/nopt.js"
},
"engines": {
- "node": ">=8"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/pacote": {
- "version": "13.6.0",
+ "node_modules/node-gyp/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
"license": "ISC",
"dependencies": {
- "@npmcli/git": "^3.0.0",
- "@npmcli/installed-package-contents": "^1.0.7",
- "@npmcli/promise-spawn": "^3.0.0",
- "@npmcli/run-script": "^3.0.1",
- "cacache": "^16.0.0",
- "chownr": "^2.0.0",
- "fs-minipass": "^2.1.0",
- "infer-owner": "^1.0.4",
- "minipass": "^3.1.6",
- "mkdirp": "^1.0.4",
- "npm-package-arg": "^9.0.0",
- "npm-packlist": "^5.1.0",
- "npm-pick-manifest": "^7.0.0",
- "npm-registry-fetch": "^13.0.1",
- "proc-log": "^2.0.0",
- "promise-retry": "^2.0.1",
- "read-package-json": "^5.0.0",
- "read-package-json-fast": "^2.0.3",
- "rimraf": "^3.0.2",
- "ssri": "^9.0.0",
- "tar": "^6.1.11"
+ "lru-cache": "^6.0.0"
},
"bin": {
- "pacote": "lib/bin.js"
+ "semver": "bin/semver.js"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=10"
}
},
- "node_modules/pacote/node_modules/@npmcli/fs": {
- "version": "2.1.0",
+ "node_modules/node-gyp/node_modules/yallist": {
+ "version": "4.0.0",
"dev": true,
- "license": "ISC",
+ "license": "ISC"
+ },
+ "node_modules/node-int64": {
+ "version": "0.4.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/node-plop": {
+ "version": "0.31.1",
+ "dev": true,
+ "license": "MIT",
"dependencies": {
- "@gar/promisify": "^1.1.3",
- "semver": "^7.3.5"
+ "@types/inquirer": "^8.2.1",
+ "change-case": "^4.1.2",
+ "del": "^6.0.0",
+ "globby": "^13.1.1",
+ "handlebars": "^4.4.3",
+ "inquirer": "^8.2.2",
+ "isbinaryfile": "^4.0.8",
+ "lodash.get": "^4.4.2",
+ "lower-case": "^2.0.2",
+ "mkdirp": "^1.0.4",
+ "resolve": "^1.20.0",
+ "title-case": "^3.0.3",
+ "upper-case": "^2.0.2"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
}
},
- "node_modules/pacote/node_modules/@npmcli/move-file": {
- "version": "2.0.0",
+ "node_modules/node-plop/node_modules/globby": {
+ "version": "13.2.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "mkdirp": "^1.0.4",
- "rimraf": "^3.0.2"
+ "dir-glob": "^3.0.1",
+ "fast-glob": "^3.3.0",
+ "ignore": "^5.2.4",
+ "merge2": "^1.4.1",
+ "slash": "^4.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/pacote/node_modules/@tootallnate/once": {
- "version": "2.0.0",
+ "node_modules/node-plop/node_modules/inquirer": {
+ "version": "8.2.6",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "ansi-escapes": "^4.2.1",
+ "chalk": "^4.1.1",
+ "cli-cursor": "^3.1.0",
+ "cli-width": "^3.0.0",
+ "external-editor": "^3.0.3",
+ "figures": "^3.0.0",
+ "lodash": "^4.17.21",
+ "mute-stream": "0.0.8",
+ "ora": "^5.4.1",
+ "run-async": "^2.4.0",
+ "rxjs": "^7.5.5",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0",
+ "through": "^2.3.6",
+ "wrap-ansi": "^6.0.1"
+ },
"engines": {
- "node": ">= 10"
+ "node": ">=12.0.0"
}
},
- "node_modules/pacote/node_modules/brace-expansion": {
- "version": "2.0.1",
+ "node_modules/node-plop/node_modules/rxjs": {
+ "version": "7.8.1",
"dev": true,
- "license": "MIT",
+ "license": "Apache-2.0",
"dependencies": {
- "balanced-match": "^1.0.0"
+ "tslib": "^2.1.0"
}
},
- "node_modules/pacote/node_modules/builtins": {
- "version": "5.0.1",
+ "node_modules/node-plop/node_modules/slash": {
+ "version": "4.0.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "semver": "^7.0.0"
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/pacote/node_modules/cacache": {
- "version": "16.1.1",
+ "node_modules/node-plop/node_modules/wrap-ansi": {
+ "version": "6.2.0",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "@npmcli/fs": "^2.1.0",
- "@npmcli/move-file": "^2.0.0",
- "chownr": "^2.0.0",
- "fs-minipass": "^2.1.0",
- "glob": "^8.0.1",
- "infer-owner": "^1.0.4",
- "lru-cache": "^7.7.1",
- "minipass": "^3.1.6",
- "minipass-collect": "^1.0.2",
- "minipass-flush": "^1.0.5",
- "minipass-pipeline": "^1.2.4",
- "mkdirp": "^1.0.4",
- "p-map": "^4.0.0",
- "promise-inflight": "^1.0.1",
- "rimraf": "^3.0.2",
- "ssri": "^9.0.0",
- "tar": "^6.1.11",
- "unique-filename": "^1.1.1"
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=8"
}
},
- "node_modules/pacote/node_modules/glob": {
- "version": "8.0.3",
+ "node_modules/node-polyfill-webpack-plugin": {
+ "version": "2.0.1",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^5.0.1",
- "once": "^1.3.0"
+ "assert": "^2.0.0",
+ "browserify-zlib": "^0.2.0",
+ "buffer": "^6.0.3",
+ "console-browserify": "^1.2.0",
+ "constants-browserify": "^1.0.0",
+ "crypto-browserify": "^3.12.0",
+ "domain-browser": "^4.22.0",
+ "events": "^3.3.0",
+ "filter-obj": "^2.0.2",
+ "https-browserify": "^1.0.0",
+ "os-browserify": "^0.3.0",
+ "path-browserify": "^1.0.1",
+ "process": "^0.11.10",
+ "punycode": "^2.1.1",
+ "querystring-es3": "^0.2.1",
+ "readable-stream": "^4.0.0",
+ "stream-browserify": "^3.0.0",
+ "stream-http": "^3.2.0",
+ "string_decoder": "^1.3.0",
+ "timers-browserify": "^2.0.12",
+ "tty-browserify": "^0.0.1",
+ "type-fest": "^2.14.0",
+ "url": "^0.11.0",
+ "util": "^0.12.4",
+ "vm-browserify": "^1.1.2"
},
"engines": {
"node": ">=12"
},
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
+ "peerDependencies": {
+ "webpack": ">=5"
}
},
- "node_modules/pacote/node_modules/hosted-git-info": {
- "version": "5.0.0",
+ "node_modules/node-polyfill-webpack-plugin/node_modules/readable-stream": {
+ "version": "4.5.2",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "lru-cache": "^7.5.1"
+ "abort-controller": "^3.0.0",
+ "buffer": "^6.0.3",
+ "events": "^3.3.0",
+ "process": "^0.11.10",
+ "string_decoder": "^1.3.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
- "node_modules/pacote/node_modules/http-proxy-agent": {
- "version": "5.0.0",
+ "node_modules/node-preload": {
+ "version": "0.2.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@tootallnate/once": "2",
- "agent-base": "6",
- "debug": "4"
+ "process-on-spawn": "^1.0.0"
},
"engines": {
- "node": ">= 6"
+ "node": ">=8"
}
},
- "node_modules/pacote/node_modules/ignore-walk": {
- "version": "5.0.1",
+ "node_modules/node-releases": {
+ "version": "2.0.14",
+ "license": "MIT"
+ },
+ "node_modules/nopt": {
+ "version": "5.0.0",
"dev": true,
"license": "ISC",
"dependencies": {
- "minimatch": "^5.0.1"
+ "abbrev": "1"
+ },
+ "bin": {
+ "nopt": "bin/nopt.js"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=6"
}
},
- "node_modules/pacote/node_modules/lru-cache": {
- "version": "7.10.1",
+ "node_modules/normalize-package-data": {
+ "version": "3.0.3",
"dev": true,
- "license": "ISC",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "hosted-git-info": "^4.0.1",
+ "is-core-module": "^2.5.0",
+ "semver": "^7.3.4",
+ "validate-npm-package-license": "^3.0.1"
+ },
"engines": {
- "node": ">=12"
+ "node": ">=10"
}
},
- "node_modules/pacote/node_modules/make-fetch-happen": {
- "version": "10.1.7",
+ "node_modules/normalize-package-data/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
"license": "ISC",
"dependencies": {
- "agentkeepalive": "^4.2.1",
- "cacache": "^16.1.0",
- "http-cache-semantics": "^4.1.0",
- "http-proxy-agent": "^5.0.0",
- "https-proxy-agent": "^5.0.0",
- "is-lambda": "^1.0.1",
- "lru-cache": "^7.7.1",
- "minipass": "^3.1.6",
- "minipass-collect": "^1.0.2",
- "minipass-fetch": "^2.0.3",
- "minipass-flush": "^1.0.5",
- "minipass-pipeline": "^1.2.4",
- "negotiator": "^0.6.3",
- "promise-retry": "^2.0.1",
- "socks-proxy-agent": "^7.0.0",
- "ssri": "^9.0.0"
+ "yallist": "^4.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=10"
}
},
- "node_modules/pacote/node_modules/minimatch": {
- "version": "5.1.0",
+ "node_modules/normalize-package-data/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
"license": "ISC",
"dependencies": {
- "brace-expansion": "^2.0.1"
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
},
"engines": {
"node": ">=10"
}
},
- "node_modules/pacote/node_modules/minipass-fetch": {
- "version": "2.1.0",
+ "node_modules/normalize-package-data/node_modules/yallist": {
+ "version": "4.0.0",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/normalize-path": {
+ "version": "3.0.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "minipass": "^3.1.6",
- "minipass-sized": "^1.0.3",
- "minizlib": "^2.1.2"
- },
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- },
- "optionalDependencies": {
- "encoding": "^0.1.13"
+ "node": ">=0.10.0"
}
},
- "node_modules/pacote/node_modules/normalize-package-data": {
- "version": "4.0.0",
+ "node_modules/normalize-range": {
+ "version": "0.1.2",
"dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "hosted-git-info": "^5.0.0",
- "is-core-module": "^2.8.1",
- "semver": "^7.3.5",
- "validate-npm-package-license": "^3.0.4"
- },
+ "license": "MIT",
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "node": ">=0.10.0"
}
},
- "node_modules/pacote/node_modules/npm-package-arg": {
- "version": "9.0.2",
+ "node_modules/normalize-url": {
+ "version": "4.5.1",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "hosted-git-info": "^5.0.0",
- "semver": "^7.3.5",
- "validate-npm-package-name": "^4.0.0"
- },
+ "license": "MIT",
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=8"
}
},
- "node_modules/pacote/node_modules/npm-packlist": {
- "version": "5.1.0",
+ "node_modules/npm-bundled": {
+ "version": "1.1.2",
"dev": true,
"license": "ISC",
"dependencies": {
- "glob": "^8.0.1",
- "ignore-walk": "^5.0.1",
- "npm-bundled": "^1.1.2",
"npm-normalize-package-bin": "^1.0.1"
- },
- "bin": {
- "npm-packlist": "bin/index.js"
+ }
+ },
+ "node_modules/npm-install-checks": {
+ "version": "5.0.0",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "semver": "^7.1.1"
},
"engines": {
"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/pacote/node_modules/npm-registry-fetch": {
- "version": "13.1.1",
+ "node_modules/npm-install-checks/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
"license": "ISC",
"dependencies": {
- "make-fetch-happen": "^10.0.6",
- "minipass": "^3.1.6",
- "minipass-fetch": "^2.0.3",
- "minipass-json-stream": "^1.0.1",
- "minizlib": "^2.1.2",
- "npm-package-arg": "^9.0.1",
- "proc-log": "^2.0.0"
+ "yallist": "^4.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=10"
}
},
- "node_modules/pacote/node_modules/p-map": {
- "version": "4.0.0",
+ "node_modules/npm-install-checks/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "aggregate-error": "^3.0.0"
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
},
"engines": {
"node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/pacote/node_modules/read-package-json": {
- "version": "5.0.1",
+ "node_modules/npm-install-checks/node_modules/yallist": {
+ "version": "4.0.0",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/npm-normalize-package-bin": {
+ "version": "1.0.1",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/npm-package-arg": {
+ "version": "8.1.1",
"dev": true,
"license": "ISC",
"dependencies": {
- "glob": "^8.0.1",
- "json-parse-even-better-errors": "^2.3.1",
- "normalize-package-data": "^4.0.0",
- "npm-normalize-package-bin": "^1.0.1"
+ "hosted-git-info": "^3.0.6",
+ "semver": "^7.0.0",
+ "validate-npm-package-name": "^3.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=10"
}
},
- "node_modules/pacote/node_modules/semver": {
- "version": "7.3.7",
+ "node_modules/npm-package-arg/node_modules/builtins": {
+ "version": "1.0.3",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/npm-package-arg/node_modules/hosted-git-info": {
+ "version": "3.0.8",
"dev": true,
"license": "ISC",
"dependencies": {
"lru-cache": "^6.0.0"
},
- "bin": {
- "semver": "bin/semver.js"
- },
"engines": {
"node": ">=10"
}
},
- "node_modules/pacote/node_modules/semver/node_modules/lru-cache": {
+ "node_modules/npm-package-arg/node_modules/lru-cache": {
"version": "6.0.0",
"dev": true,
"license": "ISC",
@@ -40078,1027 +28433,999 @@
"node": ">=10"
}
},
- "node_modules/pacote/node_modules/socks-proxy-agent": {
- "version": "7.0.0",
+ "node_modules/npm-package-arg/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "agent-base": "^6.0.2",
- "debug": "^4.3.3",
- "socks": "^2.6.2"
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
},
"engines": {
- "node": ">= 10"
+ "node": ">=10"
}
},
- "node_modules/pacote/node_modules/ssri": {
- "version": "9.0.1",
+ "node_modules/npm-package-arg/node_modules/validate-npm-package-name": {
+ "version": "3.0.0",
"dev": true,
"license": "ISC",
"dependencies": {
- "minipass": "^3.1.1"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "builtins": "^1.0.3"
}
},
- "node_modules/pacote/node_modules/validate-npm-package-name": {
+ "node_modules/npm-package-arg/node_modules/yallist": {
"version": "4.0.0",
"dev": true,
+ "license": "ISC"
+ },
+ "node_modules/npm-packlist": {
+ "version": "5.1.3",
+ "dev": true,
"license": "ISC",
"dependencies": {
- "builtins": "^5.0.0"
+ "glob": "^8.0.1",
+ "ignore-walk": "^5.0.1",
+ "npm-bundled": "^2.0.0",
+ "npm-normalize-package-bin": "^2.0.0"
+ },
+ "bin": {
+ "npm-packlist": "bin/index.js"
},
"engines": {
"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/pako": {
- "version": "1.0.11",
- "dev": true,
- "license": "(MIT AND Zlib)"
- },
- "node_modules/parallel-transform": {
- "version": "1.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "cyclist": "^1.0.1",
- "inherits": "^2.0.3",
- "readable-stream": "^2.1.5"
- }
- },
- "node_modules/parallel-transform/node_modules/isarray": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/parallel-transform/node_modules/readable-stream": {
- "version": "2.3.8",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "core-util-is": "~1.0.0",
- "inherits": "~2.0.3",
- "isarray": "~1.0.0",
- "process-nextick-args": "~2.0.0",
- "safe-buffer": "~5.1.1",
- "string_decoder": "~1.1.1",
- "util-deprecate": "~1.0.1"
- }
- },
- "node_modules/parallel-transform/node_modules/string_decoder": {
- "version": "1.1.1",
+ "node_modules/npm-packlist/node_modules/brace-expansion": {
+ "version": "2.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "safe-buffer": "~5.1.0"
- }
- },
- "node_modules/param-case": {
- "version": "3.0.4",
- "license": "MIT",
- "dependencies": {
- "dot-case": "^3.0.4",
- "tslib": "^2.0.3"
+ "balanced-match": "^1.0.0"
}
},
- "node_modules/parent-module": {
- "version": "1.0.1",
+ "node_modules/npm-packlist/node_modules/glob": {
+ "version": "8.1.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "callsites": "^3.0.0"
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^5.0.1",
+ "once": "^1.3.0"
},
"engines": {
- "node": ">=6"
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/parse-asn1": {
+ "node_modules/npm-packlist/node_modules/minimatch": {
"version": "5.1.6",
"dev": true,
"license": "ISC",
"dependencies": {
- "asn1.js": "^5.2.0",
- "browserify-aes": "^1.0.0",
- "evp_bytestokey": "^1.0.0",
- "pbkdf2": "^3.0.3",
- "safe-buffer": "^5.1.1"
+ "brace-expansion": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/parse-conflict-json": {
- "version": "2.0.2",
+ "node_modules/npm-packlist/node_modules/npm-bundled": {
+ "version": "2.0.1",
"dev": true,
"license": "ISC",
"dependencies": {
- "json-parse-even-better-errors": "^2.3.1",
- "just-diff": "^5.0.1",
- "just-diff-apply": "^5.2.0"
+ "npm-normalize-package-bin": "^2.0.0"
},
"engines": {
"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/parse-entities": {
+ "node_modules/npm-packlist/node_modules/npm-normalize-package-bin": {
"version": "2.0.0",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "character-entities": "^1.0.0",
- "character-entities-legacy": "^1.0.0",
- "character-reference-invalid": "^1.0.0",
- "is-alphanumerical": "^1.0.0",
- "is-decimal": "^1.0.0",
- "is-hexadecimal": "^1.0.0"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "license": "ISC",
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/parse-filepath": {
- "version": "1.0.2",
+ "node_modules/npm-pick-manifest": {
+ "version": "7.0.2",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "is-absolute": "^1.0.0",
- "map-cache": "^0.2.0",
- "path-root": "^0.1.1"
+ "npm-install-checks": "^5.0.0",
+ "npm-normalize-package-bin": "^2.0.0",
+ "npm-package-arg": "^9.0.0",
+ "semver": "^7.3.5"
},
"engines": {
- "node": ">=0.8"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/parse-git-config": {
- "version": "3.0.0",
+ "node_modules/npm-pick-manifest/node_modules/hosted-git-info": {
+ "version": "5.2.1",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "git-config-path": "^2.0.0",
- "ini": "^1.3.5"
+ "lru-cache": "^7.5.1"
},
"engines": {
- "node": ">=8"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/parse-json": {
- "version": "5.2.0",
+ "node_modules/npm-pick-manifest/node_modules/lru-cache": {
+ "version": "7.18.3",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/code-frame": "^7.0.0",
- "error-ex": "^1.3.1",
- "json-parse-even-better-errors": "^2.3.0",
- "lines-and-columns": "^1.1.6"
- },
+ "license": "ISC",
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=12"
}
},
- "node_modules/parse-passwd": {
- "version": "1.0.0",
+ "node_modules/npm-pick-manifest/node_modules/npm-normalize-package-bin": {
+ "version": "2.0.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"engines": {
- "node": ">=0.10.0"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/parse-path": {
- "version": "4.0.4",
+ "node_modules/npm-pick-manifest/node_modules/npm-package-arg": {
+ "version": "9.1.2",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "is-ssh": "^1.3.0",
- "protocols": "^1.4.0",
- "qs": "^6.9.4",
- "query-string": "^6.13.8"
+ "hosted-git-info": "^5.0.0",
+ "proc-log": "^2.0.1",
+ "semver": "^7.3.5",
+ "validate-npm-package-name": "^4.0.0"
+ },
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/parse-url": {
- "version": "6.0.0",
+ "node_modules/npm-pick-manifest/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "is-ssh": "^1.3.0",
- "normalize-url": "^6.1.0",
- "parse-path": "^4.0.0",
- "protocols": "^1.4.0"
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/parse5": {
- "version": "6.0.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/parse5-htmlparser2-tree-adapter": {
- "version": "6.0.1",
+ "node_modules/npm-pick-manifest/node_modules/semver/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "parse5": "^6.0.1"
- }
- },
- "node_modules/parseurl": {
- "version": "1.3.3",
- "dev": true,
- "license": "MIT",
+ "yallist": "^4.0.0"
+ },
"engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/pascal-case": {
- "version": "3.1.2",
- "license": "MIT",
- "dependencies": {
- "no-case": "^3.0.4",
- "tslib": "^2.0.3"
+ "node": ">=10"
}
},
- "node_modules/pascalcase": {
- "version": "0.1.1",
+ "node_modules/npm-pick-manifest/node_modules/yallist": {
+ "version": "4.0.0",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
+ "license": "ISC"
},
- "node_modules/path": {
- "version": "0.12.7",
+ "node_modules/npm-registry-fetch": {
+ "version": "13.3.1",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "process": "^0.11.1",
- "util": "^0.10.3"
+ "make-fetch-happen": "^10.0.6",
+ "minipass": "^3.1.6",
+ "minipass-fetch": "^2.0.3",
+ "minipass-json-stream": "^1.0.1",
+ "minizlib": "^2.1.2",
+ "npm-package-arg": "^9.0.1",
+ "proc-log": "^2.0.0"
+ },
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/path-browserify": {
- "version": "1.0.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/path-case": {
- "version": "3.0.4",
+ "node_modules/npm-registry-fetch/node_modules/hosted-git-info": {
+ "version": "5.2.1",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "dot-case": "^3.0.4",
- "tslib": "^2.0.3"
- }
- },
- "node_modules/path-dirname": {
- "version": "1.0.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/path-exists": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
+ "lru-cache": "^7.5.1"
+ },
"engines": {
- "node": ">=4"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/path-is-absolute": {
- "version": "1.0.1",
- "license": "MIT",
+ "node_modules/npm-registry-fetch/node_modules/lru-cache": {
+ "version": "7.18.3",
+ "dev": true,
+ "license": "ISC",
"engines": {
- "node": ">=0.10.0"
+ "node": ">=12"
}
},
- "node_modules/path-key": {
- "version": "3.1.1",
- "license": "MIT",
+ "node_modules/npm-registry-fetch/node_modules/npm-package-arg": {
+ "version": "9.1.2",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "hosted-git-info": "^5.0.0",
+ "proc-log": "^2.0.1",
+ "semver": "^7.3.5",
+ "validate-npm-package-name": "^4.0.0"
+ },
"engines": {
- "node": ">=8"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/path-parse": {
- "version": "1.0.7",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/path-root": {
- "version": "0.1.1",
+ "node_modules/npm-registry-fetch/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "path-root-regex": "^0.1.0"
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10"
}
},
- "node_modules/path-root-regex": {
- "version": "0.1.2",
+ "node_modules/npm-registry-fetch/node_modules/semver/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
+ "dependencies": {
+ "yallist": "^4.0.0"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10"
}
},
- "node_modules/path-to-regexp": {
- "version": "0.1.7",
+ "node_modules/npm-registry-fetch/node_modules/yallist": {
+ "version": "4.0.0",
"dev": true,
- "license": "MIT"
+ "license": "ISC"
},
- "node_modules/path-type": {
- "version": "4.0.0",
+ "node_modules/npm-run-path": {
+ "version": "4.0.1",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "path-key": "^3.0.0"
+ },
"engines": {
"node": ">=8"
}
},
- "node_modules/path/node_modules/inherits": {
- "version": "2.0.3",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/path/node_modules/util": {
- "version": "0.10.4",
+ "node_modules/npmlog": {
+ "version": "6.0.2",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "inherits": "2.0.3"
+ "are-we-there-yet": "^3.0.0",
+ "console-control-strings": "^1.1.0",
+ "gauge": "^4.0.3",
+ "set-blocking": "^2.0.0"
+ },
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/pbkdf2": {
- "version": "3.1.2",
+ "node_modules/nth-check": {
+ "version": "2.1.1",
"dev": true,
- "license": "MIT",
+ "license": "BSD-2-Clause",
"dependencies": {
- "create-hash": "^1.1.2",
- "create-hmac": "^1.1.4",
- "ripemd160": "^2.0.1",
- "safe-buffer": "^5.0.1",
- "sha.js": "^2.4.8"
+ "boolbase": "^1.0.0"
},
- "engines": {
- "node": ">=0.12"
+ "funding": {
+ "url": "https://github.com/fb55/nth-check?sponsor=1"
}
},
- "node_modules/pend": {
- "version": "1.2.0",
+ "node_modules/nwsapi": {
+ "version": "2.2.7",
"dev": true,
"license": "MIT"
},
- "node_modules/performance-now": {
- "version": "2.1.0",
+ "node_modules/nx": {
+ "version": "14.8.9",
"dev": true,
- "license": "MIT"
- },
- "node_modules/periscopic": {
- "version": "3.0.4",
+ "hasInstallScript": true,
"license": "MIT",
"dependencies": {
- "estree-walker": "^3.0.0",
- "is-reference": "^3.0.0"
+ "@nrwl/cli": "14.8.9",
+ "@nrwl/tao": "14.8.9",
+ "@parcel/watcher": "2.0.4",
+ "@yarnpkg/lockfile": "^1.1.0",
+ "@yarnpkg/parsers": "^3.0.0-rc.18",
+ "@zkochan/js-yaml": "0.0.6",
+ "axios": "^1.0.0",
+ "chalk": "4.1.0",
+ "chokidar": "^3.5.1",
+ "cli-cursor": "3.1.0",
+ "cli-spinners": "2.6.1",
+ "cliui": "^7.0.2",
+ "dotenv": "~10.0.0",
+ "enquirer": "~2.3.6",
+ "fast-glob": "3.2.7",
+ "figures": "3.2.0",
+ "flat": "^5.0.2",
+ "fs-extra": "^10.1.0",
+ "glob": "7.1.4",
+ "ignore": "^5.0.4",
+ "js-yaml": "4.1.0",
+ "jsonc-parser": "3.2.0",
+ "minimatch": "3.0.5",
+ "npm-run-path": "^4.0.1",
+ "open": "^8.4.0",
+ "semver": "7.3.4",
+ "string-width": "^4.2.3",
+ "strong-log-transformer": "^2.1.0",
+ "tar-stream": "~2.2.0",
+ "tmp": "~0.2.1",
+ "tsconfig-paths": "^3.9.0",
+ "tslib": "^2.3.0",
+ "v8-compile-cache": "2.3.0",
+ "yargs": "^17.4.0",
+ "yargs-parser": "21.0.1"
+ },
+ "bin": {
+ "nx": "bin/nx.js"
+ },
+ "peerDependencies": {
+ "@swc-node/register": "^1.4.2",
+ "@swc/core": "^1.2.173"
+ },
+ "peerDependenciesMeta": {
+ "@swc-node/register": {
+ "optional": true
+ },
+ "@swc/core": {
+ "optional": true
+ }
}
},
- "node_modules/periscopic/node_modules/estree-walker": {
- "version": "3.0.1",
- "license": "MIT"
- },
- "node_modules/picocolors": {
- "version": "0.2.1",
+ "node_modules/nx/node_modules/axios": {
+ "version": "1.6.8",
"dev": true,
- "license": "ISC"
+ "license": "MIT",
+ "dependencies": {
+ "follow-redirects": "^1.15.6",
+ "form-data": "^4.0.0",
+ "proxy-from-env": "^1.1.0"
+ }
},
- "node_modules/picomatch": {
- "version": "2.3.1",
+ "node_modules/nx/node_modules/chalk": {
+ "version": "4.1.0",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
"engines": {
- "node": ">=8.6"
+ "node": ">=10"
},
"funding": {
- "url": "https://github.com/sponsors/jonschlinkert"
+ "url": "https://github.com/chalk/chalk?sponsor=1"
}
},
- "node_modules/pify": {
- "version": "5.0.0",
+ "node_modules/nx/node_modules/dotenv": {
+ "version": "10.0.0",
"dev": true,
- "license": "MIT",
+ "license": "BSD-2-Clause",
"engines": {
"node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/pinkie": {
- "version": "2.0.4",
+ "node_modules/nx/node_modules/fast-glob": {
+ "version": "3.2.7",
"dev": true,
"license": "MIT",
- "optional": true,
+ "dependencies": {
+ "@nodelib/fs.stat": "^2.0.2",
+ "@nodelib/fs.walk": "^1.2.3",
+ "glob-parent": "^5.1.2",
+ "merge2": "^1.3.0",
+ "micromatch": "^4.0.4"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": ">=8"
}
},
- "node_modules/pinkie-promise": {
- "version": "2.0.1",
+ "node_modules/nx/node_modules/fs-extra": {
+ "version": "10.1.0",
"dev": true,
"license": "MIT",
- "optional": true,
"dependencies": {
- "pinkie": "^2.0.0"
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=12"
}
},
- "node_modules/pirates": {
- "version": "4.0.5",
+ "node_modules/nx/node_modules/glob": {
+ "version": "7.1.4",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
+ "dependencies": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.0.4",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
+ },
"engines": {
- "node": ">= 6"
+ "node": "*"
}
},
- "node_modules/pkg-dir": {
- "version": "5.0.0",
+ "node_modules/nx/node_modules/glob-parent": {
+ "version": "5.1.2",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "find-up": "^5.0.0"
+ "is-glob": "^4.0.1"
},
"engines": {
- "node": ">=10"
+ "node": ">= 6"
}
},
- "node_modules/playwright": {
- "version": "1.19.2",
+ "node_modules/nx/node_modules/json5": {
+ "version": "1.0.2",
"dev": true,
- "hasInstallScript": true,
- "license": "Apache-2.0",
+ "license": "MIT",
"dependencies": {
- "playwright-core": "1.19.2"
+ "minimist": "^1.2.0"
},
"bin": {
- "playwright": "cli.js"
- },
- "engines": {
- "node": ">=12"
+ "json5": "lib/cli.js"
}
},
- "node_modules/playwright-core": {
- "version": "1.19.2",
+ "node_modules/nx/node_modules/jsonc-parser": {
+ "version": "3.2.0",
"dev": true,
- "license": "Apache-2.0",
+ "license": "MIT"
+ },
+ "node_modules/nx/node_modules/lru-cache": {
+ "version": "6.0.0",
+ "dev": true,
+ "license": "ISC",
"dependencies": {
- "commander": "8.3.0",
- "debug": "4.3.3",
- "extract-zip": "2.0.1",
- "https-proxy-agent": "5.0.0",
- "jpeg-js": "0.4.3",
- "mime": "3.0.0",
- "pngjs": "6.0.0",
- "progress": "2.0.3",
- "proper-lockfile": "4.1.2",
- "proxy-from-env": "1.1.0",
- "rimraf": "3.0.2",
- "socks-proxy-agent": "6.1.1",
- "stack-utils": "2.0.5",
- "ws": "8.4.2",
- "yauzl": "2.10.0",
- "yazl": "2.5.1"
- },
- "bin": {
- "playwright": "cli.js"
+ "yallist": "^4.0.0"
},
"engines": {
- "node": ">=12"
+ "node": ">=10"
}
},
- "node_modules/playwright-core/node_modules/socks-proxy-agent": {
- "version": "6.1.1",
+ "node_modules/nx/node_modules/minimatch": {
+ "version": "3.0.5",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "agent-base": "^6.0.2",
- "debug": "^4.3.1",
- "socks": "^2.6.1"
+ "brace-expansion": "^1.1.7"
},
"engines": {
- "node": ">= 10"
+ "node": "*"
}
},
- "node_modules/playwright-core/node_modules/ws": {
+ "node_modules/nx/node_modules/open": {
"version": "8.4.2",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=10.0.0"
+ "dependencies": {
+ "define-lazy-prop": "^2.0.0",
+ "is-docker": "^2.1.1",
+ "is-wsl": "^2.2.0"
},
- "peerDependencies": {
- "bufferutil": "^4.0.1",
- "utf-8-validate": "^5.0.2"
+ "engines": {
+ "node": ">=12"
},
- "peerDependenciesMeta": {
- "bufferutil": {
- "optional": true
- },
- "utf-8-validate": {
- "optional": true
- }
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/plop": {
- "version": "3.0.5",
+ "node_modules/nx/node_modules/semver": {
+ "version": "7.3.4",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "@types/liftoff": "^4.0.0",
- "chalk": "^5.0.0",
- "interpret": "^2.2.0",
- "liftoff": "^4.0.0",
- "minimist": "^1.2.5",
- "node-plop": "^0.30.0",
- "ora": "^6.0.1",
- "v8flags": "^4.0.0"
+ "lru-cache": "^6.0.0"
},
"bin": {
- "plop": "bin/plop.js"
+ "semver": "bin/semver.js"
},
"engines": {
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ "node": ">=10"
}
},
- "node_modules/plop/node_modules/chalk": {
- "version": "5.0.1",
+ "node_modules/nx/node_modules/strip-bom": {
+ "version": "3.0.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": "^12.17.0 || ^14.13 || >=16.0.0"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "node": ">=4"
}
},
- "node_modules/pn": {
- "version": "1.1.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/pngjs": {
- "version": "6.0.0",
+ "node_modules/nx/node_modules/tmp": {
+ "version": "0.2.3",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=12.13.0"
+ "node": ">=14.14"
}
},
- "node_modules/pnp-webpack-plugin": {
- "version": "1.6.4",
+ "node_modules/nx/node_modules/tsconfig-paths": {
+ "version": "3.15.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "ts-pnp": "^1.1.6"
- },
- "engines": {
- "node": ">=6"
+ "@types/json5": "^0.0.29",
+ "json5": "^1.0.2",
+ "minimist": "^1.2.6",
+ "strip-bom": "^3.0.0"
}
},
- "node_modules/polished": {
- "version": "4.2.2",
+ "node_modules/nx/node_modules/v8-compile-cache": {
+ "version": "2.3.0",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.17.8"
- },
- "engines": {
- "node": ">=10"
- }
+ "license": "MIT"
},
- "node_modules/popper-max-size-modifier": {
- "version": "0.2.0",
- "license": "MIT",
- "peerDependencies": {
- "@popperjs/core": "^2.2.0"
- }
+ "node_modules/nx/node_modules/yallist": {
+ "version": "4.0.0",
+ "dev": true,
+ "license": "ISC"
},
- "node_modules/posix-character-classes": {
- "version": "0.1.1",
+ "node_modules/nx/node_modules/yargs-parser": {
+ "version": "21.0.1",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"engines": {
- "node": ">=0.10.0"
+ "node": ">=12"
}
},
- "node_modules/postcss": {
- "version": "7.0.39",
+ "node_modules/nyc": {
+ "version": "15.1.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "picocolors": "^0.2.1",
- "source-map": "^0.6.1"
+ "@istanbuljs/load-nyc-config": "^1.0.0",
+ "@istanbuljs/schema": "^0.1.2",
+ "caching-transform": "^4.0.0",
+ "convert-source-map": "^1.7.0",
+ "decamelize": "^1.2.0",
+ "find-cache-dir": "^3.2.0",
+ "find-up": "^4.1.0",
+ "foreground-child": "^2.0.0",
+ "get-package-type": "^0.1.0",
+ "glob": "^7.1.6",
+ "istanbul-lib-coverage": "^3.0.0",
+ "istanbul-lib-hook": "^3.0.0",
+ "istanbul-lib-instrument": "^4.0.0",
+ "istanbul-lib-processinfo": "^2.0.2",
+ "istanbul-lib-report": "^3.0.0",
+ "istanbul-lib-source-maps": "^4.0.0",
+ "istanbul-reports": "^3.0.2",
+ "make-dir": "^3.0.0",
+ "node-preload": "^0.2.1",
+ "p-map": "^3.0.0",
+ "process-on-spawn": "^1.0.0",
+ "resolve-from": "^5.0.0",
+ "rimraf": "^3.0.0",
+ "signal-exit": "^3.0.2",
+ "spawn-wrap": "^2.0.0",
+ "test-exclude": "^6.0.0",
+ "yargs": "^15.0.2"
},
- "engines": {
- "node": ">=6.0.0"
+ "bin": {
+ "nyc": "bin/nyc.js"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
+ "engines": {
+ "node": ">=8.9"
}
},
- "node_modules/postcss-flexbugs-fixes": {
- "version": "4.2.1",
+ "node_modules/nyc/node_modules/cliui": {
+ "version": "6.0.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "postcss": "^7.0.26"
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.0",
+ "wrap-ansi": "^6.2.0"
}
},
- "node_modules/postcss-import": {
- "version": "15.1.0",
+ "node_modules/nyc/node_modules/convert-source-map": {
+ "version": "1.9.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/nyc/node_modules/find-up": {
+ "version": "4.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "postcss-value-parser": "^4.0.0",
- "read-cache": "^1.0.0",
- "resolve": "^1.1.7"
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
},
"engines": {
- "node": ">=14.0.0"
- },
- "peerDependencies": {
- "postcss": "^8.0.0"
+ "node": ">=8"
}
},
- "node_modules/postcss-js": {
- "version": "4.0.1",
+ "node_modules/nyc/node_modules/istanbul-lib-instrument": {
+ "version": "4.0.3",
"dev": true,
- "license": "MIT",
+ "license": "BSD-3-Clause",
"dependencies": {
- "camelcase-css": "^2.0.1"
+ "@babel/core": "^7.7.5",
+ "@istanbuljs/schema": "^0.1.2",
+ "istanbul-lib-coverage": "^3.0.0",
+ "semver": "^6.3.0"
},
"engines": {
- "node": "^12 || ^14 || >= 16"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
- },
- "peerDependencies": {
- "postcss": "^8.4.21"
+ "node": ">=8"
}
},
- "node_modules/postcss-load-config": {
- "version": "3.1.3",
+ "node_modules/nyc/node_modules/locate-path": {
+ "version": "5.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "lilconfig": "^2.0.4",
- "yaml": "^1.10.2"
+ "p-locate": "^4.1.0"
},
"engines": {
- "node": ">= 10"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
- },
- "peerDependencies": {
- "ts-node": ">=9.0.0"
- },
- "peerDependenciesMeta": {
- "ts-node": {
- "optional": true
- }
+ "node": ">=8"
}
},
- "node_modules/postcss-loader": {
- "version": "4.3.0",
+ "node_modules/nyc/node_modules/p-limit": {
+ "version": "2.3.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "cosmiconfig": "^7.0.0",
- "klona": "^2.0.4",
- "loader-utils": "^2.0.0",
- "schema-utils": "^3.0.0",
- "semver": "^7.3.4"
+ "p-try": "^2.0.0"
},
"engines": {
- "node": ">= 10.13.0"
+ "node": ">=6"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "postcss": "^7.0.0 || ^8.0.1",
- "webpack": "^4.0.0 || ^5.0.0"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/postcss-loader/node_modules/semver": {
- "version": "7.3.8",
+ "node_modules/nyc/node_modules/p-locate": {
+ "version": "4.1.0",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
+ "p-limit": "^2.2.0"
},
"engines": {
- "node": ">=10"
+ "node": ">=8"
}
},
- "node_modules/postcss-modules-extract-imports": {
- "version": "2.0.0",
+ "node_modules/nyc/node_modules/p-map": {
+ "version": "3.0.0",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "postcss": "^7.0.5"
+ "aggregate-error": "^3.0.0"
},
"engines": {
- "node": ">= 6"
+ "node": ">=8"
}
},
- "node_modules/postcss-modules-local-by-default": {
- "version": "3.0.3",
+ "node_modules/nyc/node_modules/wrap-ansi": {
+ "version": "6.2.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "icss-utils": "^4.1.1",
- "postcss": "^7.0.32",
- "postcss-selector-parser": "^6.0.2",
- "postcss-value-parser": "^4.1.0"
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
},
"engines": {
- "node": ">= 6"
+ "node": ">=8"
}
},
- "node_modules/postcss-modules-scope": {
- "version": "2.2.0",
+ "node_modules/nyc/node_modules/y18n": {
+ "version": "4.0.3",
"dev": true,
- "license": "ISC",
+ "license": "ISC"
+ },
+ "node_modules/nyc/node_modules/yargs": {
+ "version": "15.4.1",
+ "dev": true,
+ "license": "MIT",
"dependencies": {
- "postcss": "^7.0.6",
- "postcss-selector-parser": "^6.0.0"
+ "cliui": "^6.0.0",
+ "decamelize": "^1.2.0",
+ "find-up": "^4.1.0",
+ "get-caller-file": "^2.0.1",
+ "require-directory": "^2.1.1",
+ "require-main-filename": "^2.0.0",
+ "set-blocking": "^2.0.0",
+ "string-width": "^4.2.0",
+ "which-module": "^2.0.0",
+ "y18n": "^4.0.0",
+ "yargs-parser": "^18.1.2"
},
"engines": {
- "node": ">= 6"
+ "node": ">=8"
}
},
- "node_modules/postcss-modules-values": {
- "version": "3.0.0",
+ "node_modules/nyc/node_modules/yargs-parser": {
+ "version": "18.1.3",
"dev": true,
"license": "ISC",
"dependencies": {
- "icss-utils": "^4.0.0",
- "postcss": "^7.0.6"
+ "camelcase": "^5.0.0",
+ "decamelize": "^1.2.0"
+ },
+ "engines": {
+ "node": ">=6"
}
},
- "node_modules/postcss-nested": {
- "version": "6.0.1",
+ "node_modules/nypm": {
+ "version": "0.3.8",
"dev": true,
"license": "MIT",
"dependencies": {
- "postcss-selector-parser": "^6.0.11"
+ "citty": "^0.1.6",
+ "consola": "^3.2.3",
+ "execa": "^8.0.1",
+ "pathe": "^1.1.2",
+ "ufo": "^1.4.0"
},
- "engines": {
- "node": ">=12.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
+ "bin": {
+ "nypm": "dist/cli.mjs"
},
- "peerDependencies": {
- "postcss": "^8.2.14"
+ "engines": {
+ "node": "^14.16.0 || >=16.10.0"
}
},
- "node_modules/postcss-selector-parser": {
- "version": "6.0.13",
+ "node_modules/nypm/node_modules/execa": {
+ "version": "8.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "cssesc": "^3.0.0",
- "util-deprecate": "^1.0.2"
+ "cross-spawn": "^7.0.3",
+ "get-stream": "^8.0.1",
+ "human-signals": "^5.0.0",
+ "is-stream": "^3.0.0",
+ "merge-stream": "^2.0.0",
+ "npm-run-path": "^5.1.0",
+ "onetime": "^6.0.0",
+ "signal-exit": "^4.1.0",
+ "strip-final-newline": "^3.0.0"
},
"engines": {
- "node": ">=4"
- }
- },
- "node_modules/postcss-value-parser": {
- "version": "4.2.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/postcss/node_modules/source-map": {
- "version": "0.6.1",
- "dev": true,
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.10.0"
+ "node": ">=16.17"
+ },
+ "funding": {
+ "url": "https://github.com/sindresorhus/execa?sponsor=1"
}
},
- "node_modules/prelude-ls": {
- "version": "1.2.1",
+ "node_modules/nypm/node_modules/get-stream": {
+ "version": "8.0.1",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">= 0.8.0"
+ "node": ">=16"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/prepend-http": {
- "version": "2.0.0",
+ "node_modules/nypm/node_modules/human-signals": {
+ "version": "5.0.0",
"dev": true,
- "license": "MIT",
+ "license": "Apache-2.0",
"engines": {
- "node": ">=4"
+ "node": ">=16.17.0"
}
},
- "node_modules/prettier": {
- "version": "2.7.1",
+ "node_modules/nypm/node_modules/is-stream": {
+ "version": "3.0.0",
"dev": true,
"license": "MIT",
- "bin": {
- "prettier": "bin-prettier.js"
- },
"engines": {
- "node": ">=10.13.0"
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"funding": {
- "url": "https://github.com/prettier/prettier?sponsor=1"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/pretty-error": {
+ "node_modules/nypm/node_modules/mimic-fn": {
"version": "4.0.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "lodash": "^4.17.20",
- "renderkid": "^3.0.0"
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/pretty-format": {
- "version": "27.5.1",
+ "node_modules/nypm/node_modules/npm-run-path": {
+ "version": "5.3.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-regex": "^5.0.1",
- "ansi-styles": "^5.0.0",
- "react-is": "^17.0.1"
+ "path-key": "^4.0.0"
},
"engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/pretty-format-ast": {
- "version": "1.0.1",
+ "node_modules/nypm/node_modules/onetime": {
+ "version": "6.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "pretty-format2": "^2.0.3"
+ "mimic-fn": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/pretty-format/node_modules/ansi-styles": {
- "version": "5.2.0",
+ "node_modules/nypm/node_modules/path-key": {
+ "version": "4.0.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=10"
+ "node": ">=12"
},
"funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/pretty-format2": {
- "version": "2.0.4",
+ "node_modules/nypm/node_modules/signal-exit": {
+ "version": "4.1.0",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^3.0.0"
+ "license": "ISC",
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/pretty-hrtime": {
- "version": "1.0.3",
+ "node_modules/nypm/node_modules/strip-final-newline": {
+ "version": "3.0.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">= 0.8"
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/private": {
- "version": "0.1.8",
+ "node_modules/oauth-sign": {
+ "version": "0.9.0",
"dev": true,
- "license": "MIT",
+ "license": "Apache-2.0",
"engines": {
- "node": ">= 0.6"
+ "node": "*"
}
},
- "node_modules/proc-log": {
- "version": "2.0.1",
- "dev": true,
- "license": "ISC",
+ "node_modules/object-assign": {
+ "version": "4.1.1",
+ "license": "MIT",
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=0.10.0"
}
},
- "node_modules/process": {
- "version": "0.11.10",
+ "node_modules/object-hash": {
+ "version": "3.0.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">= 0.6.0"
+ "node": ">= 6"
}
},
- "node_modules/process-nextick-args": {
- "version": "2.0.1",
+ "node_modules/object-inspect": {
+ "version": "1.13.1",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
},
- "node_modules/process-on-spawn": {
- "version": "1.0.0",
+ "node_modules/object-is": {
+ "version": "1.1.6",
"dev": true,
"license": "MIT",
"dependencies": {
- "fromentries": "^1.2.0"
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1"
},
"engines": {
- "node": ">=8"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/progress": {
- "version": "2.0.3",
+ "node_modules/object-keys": {
+ "version": "1.1.1",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=0.4.0"
+ "node": ">= 0.4"
}
},
- "node_modules/promise": {
- "version": "7.3.1",
+ "node_modules/object.assign": {
+ "version": "4.1.5",
"dev": true,
"license": "MIT",
"dependencies": {
- "asap": "~2.0.3"
- }
- },
- "node_modules/promise-all-reject-late": {
- "version": "1.0.1",
- "dev": true,
- "license": "ISC",
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/promise-call-limit": {
- "version": "1.0.1",
- "dev": true,
- "license": "ISC",
+ "call-bind": "^1.0.5",
+ "define-properties": "^1.2.1",
+ "has-symbols": "^1.0.3",
+ "object-keys": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
"funding": {
- "url": "https://github.com/sponsors/isaacs"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/promise-inflight": {
- "version": "1.0.1",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/promise-retry": {
- "version": "2.0.1",
+ "node_modules/object.defaults": {
+ "version": "1.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "err-code": "^2.0.2",
- "retry": "^0.12.0"
+ "array-each": "^1.0.1",
+ "array-slice": "^1.0.0",
+ "for-own": "^1.0.0",
+ "isobject": "^3.0.0"
},
"engines": {
- "node": ">=10"
+ "node": ">=0.10.0"
}
},
- "node_modules/promise.allsettled": {
- "version": "1.0.6",
+ "node_modules/object.entries": {
+ "version": "1.1.8",
"dev": true,
"license": "MIT",
"dependencies": {
- "array.prototype.map": "^1.0.5",
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4",
- "get-intrinsic": "^1.1.3",
- "iterate-value": "^1.0.2"
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-object-atoms": "^1.0.0"
},
"engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "node": ">= 0.4"
}
},
- "node_modules/promise.prototype.finally": {
- "version": "3.1.4",
+ "node_modules/object.fromentries": {
+ "version": "2.0.8",
"dev": true,
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2",
+ "es-object-atoms": "^1.0.0"
},
"engines": {
"node": ">= 0.4"
@@ -41107,2201 +29434,2154 @@
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/prompts": {
- "version": "2.4.2",
+ "node_modules/object.groupby": {
+ "version": "1.0.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "kleur": "^3.0.3",
- "sisteransi": "^1.0.5"
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2"
},
"engines": {
- "node": ">= 6"
+ "node": ">= 0.4"
}
},
- "node_modules/promzard": {
- "version": "0.3.0",
+ "node_modules/object.hasown": {
+ "version": "1.1.4",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "read": "1"
- }
- },
- "node_modules/prop-types": {
- "version": "15.8.1",
"license": "MIT",
"dependencies": {
- "loose-envify": "^1.4.0",
- "object-assign": "^4.1.1",
- "react-is": "^16.13.1"
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/prop-types/node_modules/react-is": {
- "version": "16.13.1",
- "license": "MIT"
- },
- "node_modules/proper-lockfile": {
- "version": "4.1.2",
+ "node_modules/object.map": {
+ "version": "1.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "graceful-fs": "^4.2.4",
- "retry": "^0.12.0",
- "signal-exit": "^3.0.2"
+ "for-own": "^1.0.0",
+ "make-iterator": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/proper-url-join": {
- "version": "2.1.1",
+ "node_modules/object.pick": {
+ "version": "1.3.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "query-string": "^6.3.0"
+ "isobject": "^3.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/property-information": {
- "version": "5.6.0",
+ "node_modules/object.values": {
+ "version": "1.2.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "xtend": "^4.0.0"
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
},
"funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/proto-list": {
- "version": "1.2.4",
+ "node_modules/objectorarray": {
+ "version": "1.0.5",
"dev": true,
"license": "ISC"
},
- "node_modules/protocols": {
- "version": "1.4.8",
+ "node_modules/ohash": {
+ "version": "1.1.3",
"dev": true,
"license": "MIT"
},
- "node_modules/proxy-addr": {
- "version": "2.0.7",
+ "node_modules/on-finished": {
+ "version": "2.4.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "forwarded": "0.2.0",
- "ipaddr.js": "1.9.1"
+ "ee-first": "1.1.1"
},
"engines": {
- "node": ">= 0.10"
+ "node": ">= 0.8"
}
},
- "node_modules/proxy-from-env": {
- "version": "1.1.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/prr": {
- "version": "1.0.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/psl": {
- "version": "1.8.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/public-encrypt": {
- "version": "4.0.3",
+ "node_modules/on-headers": {
+ "version": "1.0.2",
"dev": true,
"license": "MIT",
- "dependencies": {
- "bn.js": "^4.1.0",
- "browserify-rsa": "^4.0.0",
- "create-hash": "^1.1.0",
- "parse-asn1": "^5.0.0",
- "randombytes": "^2.0.1",
- "safe-buffer": "^5.1.2"
+ "engines": {
+ "node": ">= 0.8"
}
},
- "node_modules/public-encrypt/node_modules/bn.js": {
- "version": "4.12.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/pug": {
- "version": "2.0.4",
- "dev": true,
- "license": "MIT",
+ "node_modules/once": {
+ "version": "1.4.0",
+ "license": "ISC",
"dependencies": {
- "pug-code-gen": "^2.0.2",
- "pug-filters": "^3.1.1",
- "pug-lexer": "^4.1.0",
- "pug-linker": "^3.0.6",
- "pug-load": "^2.0.12",
- "pug-parser": "^5.0.1",
- "pug-runtime": "^2.0.5",
- "pug-strip-comments": "^1.0.4"
+ "wrappy": "1"
}
},
- "node_modules/pug-attrs": {
- "version": "2.0.4",
+ "node_modules/one-time": {
+ "version": "1.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "constantinople": "^3.0.1",
- "js-stringify": "^1.0.1",
- "pug-runtime": "^2.0.5"
+ "fn.name": "1.x.x"
}
},
- "node_modules/pug-code-gen": {
- "version": "2.0.3",
+ "node_modules/onetime": {
+ "version": "5.1.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "constantinople": "^3.1.2",
- "doctypes": "^1.1.0",
- "js-stringify": "^1.0.1",
- "pug-attrs": "^2.0.4",
- "pug-error": "^1.3.3",
- "pug-runtime": "^2.0.5",
- "void-elements": "^2.0.1",
- "with": "^5.0.0"
+ "mimic-fn": "^2.1.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/pug-error": {
- "version": "1.3.3",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/pug-filters": {
- "version": "3.1.1",
+ "node_modules/open": {
+ "version": "7.4.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "clean-css": "^4.1.11",
- "constantinople": "^3.0.1",
- "jstransformer": "1.0.0",
- "pug-error": "^1.3.3",
- "pug-walk": "^1.1.8",
- "resolve": "^1.1.6",
- "uglify-js": "^2.6.1"
+ "is-docker": "^2.0.0",
+ "is-wsl": "^2.1.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/pug-filters/node_modules/camelcase": {
- "version": "1.2.1",
+ "node_modules/opener": {
+ "version": "1.5.2",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "license": "(WTFPL OR MIT)",
+ "bin": {
+ "opener": "bin/opener-bin.js"
}
},
- "node_modules/pug-filters/node_modules/clean-css": {
- "version": "4.2.4",
+ "node_modules/optionator": {
+ "version": "0.9.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "source-map": "~0.6.0"
+ "@aashutoshrathi/word-wrap": "^1.2.3",
+ "deep-is": "^0.1.3",
+ "fast-levenshtein": "^2.0.6",
+ "levn": "^0.4.1",
+ "prelude-ls": "^1.2.1",
+ "type-check": "^0.4.0"
},
"engines": {
- "node": ">= 4.0"
+ "node": ">= 0.8.0"
}
},
- "node_modules/pug-filters/node_modules/clean-css/node_modules/source-map": {
- "version": "0.6.1",
+ "node_modules/ora": {
+ "version": "5.4.1",
"dev": true,
- "license": "BSD-3-Clause",
+ "license": "MIT",
+ "dependencies": {
+ "bl": "^4.1.0",
+ "chalk": "^4.1.0",
+ "cli-cursor": "^3.1.0",
+ "cli-spinners": "^2.5.0",
+ "is-interactive": "^1.0.0",
+ "is-unicode-supported": "^0.1.0",
+ "log-symbols": "^4.1.0",
+ "strip-ansi": "^6.0.0",
+ "wcwidth": "^1.0.1"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/pug-filters/node_modules/cliui": {
- "version": "2.1.0",
+ "node_modules/os-browserify": {
+ "version": "0.3.0",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "center-align": "^0.1.1",
- "right-align": "^0.1.1",
- "wordwrap": "0.0.2"
- }
+ "license": "MIT"
},
- "node_modules/pug-filters/node_modules/uglify-js": {
- "version": "2.8.29",
+ "node_modules/os-homedir": {
+ "version": "1.0.2",
"dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "source-map": "~0.5.1",
- "yargs": "~3.10.0"
- },
- "bin": {
- "uglifyjs": "bin/uglifyjs"
- },
+ "license": "MIT",
"engines": {
- "node": ">=0.8.0"
- },
- "optionalDependencies": {
- "uglify-to-browserify": "~1.0.0"
+ "node": ">=0.10.0"
}
},
- "node_modules/pug-filters/node_modules/wordwrap": {
- "version": "0.0.2",
+ "node_modules/os-tmpdir": {
+ "version": "1.0.2",
"dev": true,
- "license": "MIT/X11",
+ "license": "MIT",
"engines": {
- "node": ">=0.4.0"
+ "node": ">=0.10.0"
}
},
- "node_modules/pug-filters/node_modules/yargs": {
- "version": "3.10.0",
+ "node_modules/outvariant": {
+ "version": "1.4.0",
+ "license": "MIT"
+ },
+ "node_modules/p-cancelable": {
+ "version": "1.1.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "camelcase": "^1.0.2",
- "cliui": "^2.1.0",
- "decamelize": "^1.0.0",
- "window-size": "0.1.0"
+ "engines": {
+ "node": ">=6"
}
},
- "node_modules/pug-lexer": {
- "version": "4.1.0",
+ "node_modules/p-finally": {
+ "version": "1.0.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "character-parser": "^2.1.1",
- "is-expression": "^3.0.0",
- "pug-error": "^1.3.3"
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/pug-linker": {
- "version": "3.0.6",
- "dev": true,
+ "node_modules/p-limit": {
+ "version": "3.1.0",
"license": "MIT",
"dependencies": {
- "pug-error": "^1.3.3",
- "pug-walk": "^1.1.8"
+ "yocto-queue": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/pug-load": {
- "version": "2.0.12",
- "dev": true,
+ "node_modules/p-locate": {
+ "version": "5.0.0",
"license": "MIT",
"dependencies": {
- "object-assign": "^4.1.0",
- "pug-walk": "^1.1.8"
+ "p-limit": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/pug-parser": {
- "version": "5.0.1",
+ "node_modules/p-map": {
+ "version": "4.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "pug-error": "^1.3.3",
- "token-stream": "0.0.1"
+ "aggregate-error": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/pug-runtime": {
- "version": "2.0.5",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/pug-strip-comments": {
- "version": "1.0.4",
+ "node_modules/p-map-series": {
+ "version": "2.1.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "pug-error": "^1.3.3"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/pug-walk": {
- "version": "1.1.8",
+ "node_modules/p-pipe": {
+ "version": "3.1.0",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
},
- "node_modules/pump": {
- "version": "3.0.0",
+ "node_modules/p-queue": {
+ "version": "6.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "end-of-stream": "^1.1.0",
- "once": "^1.3.1"
+ "eventemitter3": "^4.0.4",
+ "p-timeout": "^3.2.0"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/pumpify": {
- "version": "1.5.1",
+ "node_modules/p-reduce": {
+ "version": "2.1.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "duplexify": "^3.6.0",
- "inherits": "^2.0.3",
- "pump": "^2.0.0"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/pumpify/node_modules/pump": {
- "version": "2.0.1",
+ "node_modules/p-timeout": {
+ "version": "3.2.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "end-of-stream": "^1.1.0",
- "once": "^1.3.1"
+ "p-finally": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/punycode": {
- "version": "2.1.1",
+ "node_modules/p-try": {
+ "version": "2.2.0",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6"
}
},
- "node_modules/pupa": {
+ "node_modules/p-waterfall": {
"version": "2.1.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "escape-goat": "^2.0.0"
+ "p-reduce": "^2.0.0"
},
"engines": {
"node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/q": {
- "version": "1.5.1",
+ "node_modules/package-hash": {
+ "version": "4.0.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
+ "dependencies": {
+ "graceful-fs": "^4.1.15",
+ "hasha": "^5.0.0",
+ "lodash.flattendeep": "^4.4.0",
+ "release-zalgo": "^1.0.0"
+ },
"engines": {
- "node": ">=0.6.0",
- "teleport": ">=0.2.0"
+ "node": ">=8"
}
},
- "node_modules/qs": {
- "version": "6.11.2",
+ "node_modules/package-json": {
+ "version": "6.5.0",
"dev": true,
- "license": "BSD-3-Clause",
+ "license": "MIT",
"dependencies": {
- "side-channel": "^1.0.4"
+ "got": "^9.6.0",
+ "registry-auth-token": "^4.0.0",
+ "registry-url": "^5.0.0",
+ "semver": "^6.2.0"
},
"engines": {
- "node": ">=0.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "node": ">=8"
}
},
- "node_modules/query-string": {
- "version": "6.14.1",
+ "node_modules/pacote": {
+ "version": "13.6.2",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "decode-uri-component": "^0.2.0",
- "filter-obj": "^1.1.0",
- "split-on-first": "^1.0.0",
- "strict-uri-encode": "^2.0.0"
+ "@npmcli/git": "^3.0.0",
+ "@npmcli/installed-package-contents": "^1.0.7",
+ "@npmcli/promise-spawn": "^3.0.0",
+ "@npmcli/run-script": "^4.1.0",
+ "cacache": "^16.0.0",
+ "chownr": "^2.0.0",
+ "fs-minipass": "^2.1.0",
+ "infer-owner": "^1.0.4",
+ "minipass": "^3.1.6",
+ "mkdirp": "^1.0.4",
+ "npm-package-arg": "^9.0.0",
+ "npm-packlist": "^5.1.0",
+ "npm-pick-manifest": "^7.0.0",
+ "npm-registry-fetch": "^13.0.1",
+ "proc-log": "^2.0.0",
+ "promise-retry": "^2.0.1",
+ "read-package-json": "^5.0.0",
+ "read-package-json-fast": "^2.0.3",
+ "rimraf": "^3.0.2",
+ "ssri": "^9.0.0",
+ "tar": "^6.1.11"
},
- "engines": {
- "node": ">=6"
+ "bin": {
+ "pacote": "lib/bin.js"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/querystring": {
- "version": "0.2.1",
+ "node_modules/pacote/node_modules/hosted-git-info": {
+ "version": "5.2.1",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
+ "dependencies": {
+ "lru-cache": "^7.5.1"
+ },
"engines": {
- "node": ">=0.4.x"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/querystring-es3": {
- "version": "0.2.1",
+ "node_modules/pacote/node_modules/lru-cache": {
+ "version": "7.18.3",
"dev": true,
+ "license": "ISC",
"engines": {
- "node": ">=0.4.x"
+ "node": ">=12"
}
},
- "node_modules/querystringify": {
- "version": "2.2.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/queue-microtask": {
- "version": "1.2.3",
+ "node_modules/pacote/node_modules/npm-package-arg": {
+ "version": "9.1.2",
"dev": true,
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "MIT"
+ "license": "ISC",
+ "dependencies": {
+ "hosted-git-info": "^5.0.0",
+ "proc-log": "^2.0.1",
+ "semver": "^7.3.5",
+ "validate-npm-package-name": "^4.0.0"
+ },
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ }
},
- "node_modules/quick-lru": {
- "version": "4.0.1",
+ "node_modules/pacote/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
+ "dependencies": {
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
+ },
"engines": {
- "node": ">=8"
+ "node": ">=10"
}
},
- "node_modules/raf": {
- "version": "3.4.1",
+ "node_modules/pacote/node_modules/semver/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "performance-now": "^2.1.0"
+ "yallist": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/railroad-diagrams": {
- "version": "1.0.0",
+ "node_modules/pacote/node_modules/yallist": {
+ "version": "4.0.0",
"dev": true,
- "license": "CC0-1.0"
+ "license": "ISC"
},
- "node_modules/ramda": {
- "version": "0.28.0",
+ "node_modules/pako": {
+ "version": "1.0.11",
"dev": true,
+ "license": "(MIT AND Zlib)"
+ },
+ "node_modules/param-case": {
+ "version": "3.0.4",
"license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/ramda"
+ "dependencies": {
+ "dot-case": "^3.0.4",
+ "tslib": "^2.0.3"
}
},
- "node_modules/randexp": {
- "version": "0.4.6",
+ "node_modules/parent-module": {
+ "version": "1.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "discontinuous-range": "1.0.0",
- "ret": "~0.1.10"
+ "callsites": "^3.0.0"
},
"engines": {
- "node": ">=0.12"
+ "node": ">=6"
}
},
- "node_modules/randombytes": {
- "version": "2.1.0",
+ "node_modules/parse-asn1": {
+ "version": "5.1.7",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "safe-buffer": "^5.1.0"
+ "asn1.js": "^4.10.1",
+ "browserify-aes": "^1.2.0",
+ "evp_bytestokey": "^1.0.3",
+ "hash-base": "~3.0",
+ "pbkdf2": "^3.1.2",
+ "safe-buffer": "^5.2.1"
+ },
+ "engines": {
+ "node": ">= 0.10"
}
},
- "node_modules/randomfill": {
- "version": "1.0.4",
+ "node_modules/parse-conflict-json": {
+ "version": "2.0.2",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "randombytes": "^2.0.5",
- "safe-buffer": "^5.1.0"
+ "json-parse-even-better-errors": "^2.3.1",
+ "just-diff": "^5.0.1",
+ "just-diff-apply": "^5.2.0"
+ },
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/range-parser": {
- "version": "1.2.1",
- "dev": true,
+ "node_modules/parse-entities": {
+ "version": "4.0.1",
"license": "MIT",
- "engines": {
- "node": ">= 0.6"
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "character-entities": "^2.0.0",
+ "character-entities-legacy": "^3.0.0",
+ "character-reference-invalid": "^2.0.0",
+ "decode-named-character-reference": "^1.0.0",
+ "is-alphanumerical": "^2.0.0",
+ "is-decimal": "^2.0.0",
+ "is-hexadecimal": "^2.0.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/raw-body": {
- "version": "2.4.3",
+ "node_modules/parse-filepath": {
+ "version": "1.0.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "bytes": "3.1.2",
- "http-errors": "1.8.1",
- "iconv-lite": "0.4.24",
- "unpipe": "1.0.0"
+ "is-absolute": "^1.0.0",
+ "map-cache": "^0.2.0",
+ "path-root": "^0.1.1"
},
"engines": {
- "node": ">= 0.8"
+ "node": ">=0.8"
}
},
- "node_modules/raw-body/node_modules/bytes": {
- "version": "3.1.2",
+ "node_modules/parse-git-config": {
+ "version": "3.0.0",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "git-config-path": "^2.0.0",
+ "ini": "^1.3.5"
+ },
"engines": {
- "node": ">= 0.8"
+ "node": ">=8"
}
},
- "node_modules/raw-loader": {
- "version": "4.0.2",
+ "node_modules/parse-json": {
+ "version": "5.2.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "loader-utils": "^2.0.0",
- "schema-utils": "^3.0.0"
+ "@babel/code-frame": "^7.0.0",
+ "error-ex": "^1.3.1",
+ "json-parse-even-better-errors": "^2.3.0",
+ "lines-and-columns": "^1.1.6"
},
"engines": {
- "node": ">= 10.13.0"
+ "node": ">=8"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^4.0.0 || ^5.0.0"
- }
- },
- "node_modules/rc": {
- "version": "1.2.8",
- "dev": true,
- "license": "(BSD-2-Clause OR MIT OR Apache-2.0)",
- "dependencies": {
- "deep-extend": "^0.6.0",
- "ini": "~1.3.0",
- "minimist": "^1.2.0",
- "strip-json-comments": "~2.0.1"
- },
- "bin": {
- "rc": "cli.js"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/rc/node_modules/strip-json-comments": {
- "version": "2.0.1",
+ "node_modules/parse-passwd": {
+ "version": "1.0.0",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
}
},
- "node_modules/react": {
- "version": "17.0.2",
+ "node_modules/parse-path": {
+ "version": "7.0.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "loose-envify": "^1.1.0",
- "object-assign": "^4.1.1"
- },
- "engines": {
- "node": ">=0.10.0"
+ "protocols": "^2.0.0"
}
},
- "node_modules/react-devtools-inline": {
- "version": "4.4.0",
+ "node_modules/parse-url": {
+ "version": "8.1.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "es6-symbol": "^3"
+ "parse-path": "^7.0.0"
}
},
- "node_modules/react-docgen": {
- "version": "5.4.3",
+ "node_modules/parse5": {
+ "version": "7.1.2",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@babel/core": "^7.7.5",
- "@babel/generator": "^7.12.11",
- "@babel/runtime": "^7.7.6",
- "ast-types": "^0.14.2",
- "commander": "^2.19.0",
- "doctrine": "^3.0.0",
- "estree-to-babel": "^3.1.0",
- "neo-async": "^2.6.1",
- "node-dir": "^0.1.10",
- "strip-indent": "^3.0.0"
- },
- "bin": {
- "react-docgen": "bin/react-docgen.js"
+ "entities": "^4.4.0"
},
- "engines": {
- "node": ">=8.10.0"
+ "funding": {
+ "url": "https://github.com/inikulin/parse5?sponsor=1"
}
},
- "node_modules/react-docgen-typescript": {
- "version": "2.2.2",
+ "node_modules/parse5-htmlparser2-tree-adapter": {
+ "version": "7.0.0",
"dev": true,
"license": "MIT",
- "peerDependencies": {
- "typescript": ">= 4.3.x"
+ "dependencies": {
+ "domhandler": "^5.0.2",
+ "parse5": "^7.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/inikulin/parse5?sponsor=1"
}
},
- "node_modules/react-docgen/node_modules/commander": {
- "version": "2.20.3",
- "license": "MIT"
+ "node_modules/parseurl": {
+ "version": "1.3.3",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
},
- "node_modules/react-dom": {
- "version": "17.0.2",
+ "node_modules/pascal-case": {
+ "version": "3.1.2",
"license": "MIT",
"dependencies": {
- "loose-envify": "^1.1.0",
- "object-assign": "^4.1.1",
- "scheduler": "^0.20.2"
- },
- "peerDependencies": {
- "react": "17.0.2"
+ "no-case": "^3.0.4",
+ "tslib": "^2.0.3"
}
},
- "node_modules/react-element-to-jsx-string": {
- "version": "14.3.4",
+ "node_modules/path": {
+ "version": "0.12.7",
"dev": true,
"license": "MIT",
"dependencies": {
- "@base2/pretty-print-object": "1.0.1",
- "is-plain-object": "5.0.0",
- "react-is": "17.0.2"
- },
- "peerDependencies": {
- "react": "^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1",
- "react-dom": "^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1"
+ "process": "^0.11.1",
+ "util": "^0.10.3"
}
},
- "node_modules/react-element-to-jsx-string/node_modules/is-plain-object": {
- "version": "5.0.0",
+ "node_modules/path-browserify": {
+ "version": "1.0.1",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/path-case": {
+ "version": "3.0.4",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "dot-case": "^3.0.4",
+ "tslib": "^2.0.3"
}
},
- "node_modules/react-error-boundary": {
- "version": "3.1.4",
+ "node_modules/path-exists": {
+ "version": "4.0.0",
"license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.12.5"
- },
"engines": {
- "node": ">=10",
- "npm": ">=6"
- },
- "peerDependencies": {
- "react": ">=16.13.1"
+ "node": ">=8"
}
},
- "node_modules/react-fast-compare": {
- "version": "3.2.2",
- "license": "MIT"
- },
- "node_modules/react-hook-form": {
- "version": "7.41.0",
+ "node_modules/path-is-absolute": {
+ "version": "1.0.1",
"license": "MIT",
"engines": {
- "node": ">=12.22.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/react-hook-form"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17 || ^18"
+ "node": ">=0.10.0"
}
},
- "node_modules/react-inspector": {
- "version": "5.1.1",
- "dev": true,
+ "node_modules/path-key": {
+ "version": "3.1.1",
"license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.0.0",
- "is-dom": "^1.0.0",
- "prop-types": "^15.0.0"
- },
- "peerDependencies": {
- "react": "^16.8.4 || ^17.0.0"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/react-is": {
- "version": "17.0.2",
+ "node_modules/path-parse": {
+ "version": "1.0.7",
+ "dev": true,
"license": "MIT"
},
- "node_modules/react-merge-refs": {
- "version": "1.1.0",
+ "node_modules/path-root": {
+ "version": "0.1.1",
"dev": true,
"license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/gregberge"
- }
- },
- "node_modules/react-phone-number-input": {
- "version": "3.2.13",
- "license": "MIT",
- "dependencies": {
- "classnames": "^2.3.1",
- "country-flag-icons": "^1.5.4",
- "input-format": "^0.3.8",
- "libphonenumber-js": "^1.10.14",
- "prop-types": "^15.8.1"
- },
- "peerDependencies": {
- "react": ">=16.8",
- "react-dom": ">=16.8"
- }
- },
- "node_modules/react-popper": {
- "version": "2.3.0",
- "license": "MIT",
"dependencies": {
- "react-fast-compare": "^3.0.1",
- "warning": "^4.0.2"
+ "path-root-regex": "^0.1.0"
},
- "peerDependencies": {
- "@popperjs/core": "^2.0.0",
- "react": "^16.8.0 || ^17 || ^18",
- "react-dom": "^16.8.0 || ^17 || ^18"
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/react-refresh": {
- "version": "0.11.0",
+ "node_modules/path-root-regex": {
+ "version": "0.1.2",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
}
},
- "node_modules/react-remove-scroll": {
- "version": "2.5.4",
- "license": "MIT",
+ "node_modules/path-scurry": {
+ "version": "1.10.2",
+ "dev": true,
+ "license": "BlueOak-1.0.0",
"dependencies": {
- "react-remove-scroll-bar": "^2.3.3",
- "react-style-singleton": "^2.2.1",
- "tslib": "^2.1.0",
- "use-callback-ref": "^1.3.0",
- "use-sidecar": "^1.1.2"
+ "lru-cache": "^10.2.0",
+ "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
},
"engines": {
- "node": ">=10"
- },
- "peerDependencies": {
- "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ "node": ">=16 || 14 >=14.17"
},
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/react-remove-scroll-bar": {
- "version": "2.3.3",
+ "node_modules/path-scurry/node_modules/lru-cache": {
+ "version": "10.2.0",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": "14 || >=16.14"
+ }
+ },
+ "node_modules/path-scurry/node_modules/minipass": {
+ "version": "7.0.4",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ }
+ },
+ "node_modules/path-to-regexp": {
+ "version": "0.1.7",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/path-type": {
+ "version": "4.0.0",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "react-style-singleton": "^2.2.1",
- "tslib": "^2.0.0"
- },
"engines": {
- "node": ">=10"
- },
- "peerDependencies": {
- "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
+ "node": ">=8"
}
},
- "node_modules/react-sizeme": {
- "version": "3.0.2",
+ "node_modules/path/node_modules/inherits": {
+ "version": "2.0.3",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/path/node_modules/util": {
+ "version": "0.10.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "element-resize-detector": "^1.2.2",
- "invariant": "^2.2.4",
- "shallowequal": "^1.1.0",
- "throttle-debounce": "^3.0.1"
+ "inherits": "2.0.3"
}
},
- "node_modules/react-style-singleton": {
- "version": "2.2.1",
+ "node_modules/pathe": {
+ "version": "1.1.2",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/pbkdf2": {
+ "version": "3.1.2",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "get-nonce": "^1.0.0",
- "invariant": "^2.2.4",
- "tslib": "^2.0.0"
+ "create-hash": "^1.1.2",
+ "create-hmac": "^1.1.4",
+ "ripemd160": "^2.0.1",
+ "safe-buffer": "^5.0.1",
+ "sha.js": "^2.4.8"
},
"engines": {
- "node": ">=10"
- },
- "peerDependencies": {
- "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
+ "node": ">=0.12"
}
},
- "node_modules/react-svg": {
- "version": "15.1.3",
+ "node_modules/peek-stream": {
+ "version": "1.1.3",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.18.6",
- "@tanem/svg-injector": "^10.1.27",
- "@types/prop-types": "^15.7.5",
- "prop-types": "^15.8.1"
- },
- "peerDependencies": {
- "react": "^16.0.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0"
+ "buffer-from": "^1.0.0",
+ "duplexify": "^3.5.0",
+ "through2": "^2.0.3"
}
},
- "node_modules/react-swipeable": {
- "version": "7.0.0",
- "license": "MIT",
- "peerDependencies": {
- "react": "^16.8.3 || ^17 || ^18"
- }
+ "node_modules/peek-stream/node_modules/isarray": {
+ "version": "1.0.0",
+ "dev": true,
+ "license": "MIT"
},
- "node_modules/react-toastify": {
- "version": "8.2.0",
+ "node_modules/peek-stream/node_modules/readable-stream": {
+ "version": "2.3.8",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "clsx": "^1.1.1"
- },
- "peerDependencies": {
- "react": ">=16",
- "react-dom": ">=16"
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
}
},
- "node_modules/react-transition-group": {
- "version": "4.4.5",
- "license": "BSD-3-Clause",
+ "node_modules/peek-stream/node_modules/safe-buffer": {
+ "version": "5.1.2",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/peek-stream/node_modules/string_decoder": {
+ "version": "1.1.1",
+ "dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.5.5",
- "dom-helpers": "^5.0.1",
- "loose-envify": "^1.4.0",
- "prop-types": "^15.6.2"
- },
- "peerDependencies": {
- "react": ">=16.6.0",
- "react-dom": ">=16.6.0"
+ "safe-buffer": "~5.1.0"
}
},
- "node_modules/read": {
- "version": "1.0.7",
+ "node_modules/peek-stream/node_modules/through2": {
+ "version": "2.0.5",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "mute-stream": "~0.0.4"
- },
- "engines": {
- "node": ">=0.8"
+ "readable-stream": "~2.3.6",
+ "xtend": "~4.0.1"
}
},
- "node_modules/read-cache": {
- "version": "1.0.0",
+ "node_modules/pend": {
+ "version": "1.2.0",
"dev": true,
+ "license": "MIT"
+ },
+ "node_modules/performance-now": {
+ "version": "2.1.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/periscopic": {
+ "version": "3.1.0",
"license": "MIT",
"dependencies": {
- "pify": "^2.3.0"
+ "@types/estree": "^1.0.0",
+ "estree-walker": "^3.0.0",
+ "is-reference": "^3.0.0"
}
},
- "node_modules/read-cache/node_modules/pify": {
- "version": "2.3.0",
+ "node_modules/periscopic/node_modules/@types/estree": {
+ "version": "1.0.5",
+ "license": "MIT"
+ },
+ "node_modules/picocolors": {
+ "version": "1.0.0",
+ "license": "ISC"
+ },
+ "node_modules/picomatch": {
+ "version": "2.3.1",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=0.10.0"
+ "node": ">=8.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
}
},
- "node_modules/read-cmd-shim": {
- "version": "2.0.0",
+ "node_modules/pify": {
+ "version": "5.0.0",
"dev": true,
- "license": "ISC"
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
},
- "node_modules/read-file-async": {
- "version": "1.0.0",
+ "node_modules/pirates": {
+ "version": "4.0.6",
"dev": true,
"license": "MIT",
- "dependencies": {
- "graceful-fs": "^4.1.11",
- "typeable-promisify": "^1.0.1"
+ "engines": {
+ "node": ">= 6"
}
},
- "node_modules/read-package-json": {
- "version": "3.0.1",
+ "node_modules/pkg-dir": {
+ "version": "5.0.0",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "glob": "^7.1.1",
- "json-parse-even-better-errors": "^2.3.0",
- "normalize-package-data": "^3.0.0",
- "npm-normalize-package-bin": "^1.0.0"
+ "find-up": "^5.0.0"
},
"engines": {
"node": ">=10"
}
},
- "node_modules/read-package-json-fast": {
- "version": "2.0.3",
+ "node_modules/playwright": {
+ "version": "1.43.0",
"dev": true,
- "license": "ISC",
+ "license": "Apache-2.0",
"dependencies": {
- "json-parse-even-better-errors": "^2.3.0",
- "npm-normalize-package-bin": "^1.0.1"
+ "playwright-core": "1.43.0"
+ },
+ "bin": {
+ "playwright": "cli.js"
},
"engines": {
- "node": ">=10"
+ "node": ">=16"
+ },
+ "optionalDependencies": {
+ "fsevents": "2.3.2"
}
},
- "node_modules/read-pkg": {
- "version": "3.0.0",
+ "node_modules/playwright-core": {
+ "version": "1.43.0",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "load-json-file": "^4.0.0",
- "normalize-package-data": "^2.3.2",
- "path-type": "^3.0.0"
+ "license": "Apache-2.0",
+ "bin": {
+ "playwright-core": "cli.js"
},
"engines": {
- "node": ">=4"
+ "node": ">=16"
}
},
- "node_modules/read-pkg-up": {
- "version": "7.0.1",
+ "node_modules/playwright/node_modules/fsevents": {
+ "version": "2.3.2",
"dev": true,
"license": "MIT",
- "dependencies": {
- "find-up": "^4.1.0",
- "read-pkg": "^5.2.0",
- "type-fest": "^0.8.1"
- },
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
}
},
- "node_modules/read-pkg-up/node_modules/find-up": {
- "version": "4.1.0",
+ "node_modules/plop": {
+ "version": "3.1.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "locate-path": "^5.0.0",
- "path-exists": "^4.0.0"
+ "@types/liftoff": "^4.0.0",
+ "chalk": "^5.0.1",
+ "interpret": "^2.2.0",
+ "liftoff": "^4.0.0",
+ "minimist": "^1.2.6",
+ "node-plop": "^0.31.1",
+ "ora": "^6.0.1",
+ "v8flags": "^4.0.0"
+ },
+ "bin": {
+ "plop": "bin/plop.js"
},
"engines": {
- "node": ">=8"
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
}
},
- "node_modules/read-pkg-up/node_modules/hosted-git-info": {
- "version": "2.8.9",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/read-pkg-up/node_modules/locate-path": {
- "version": "5.0.0",
+ "node_modules/plop/node_modules/ansi-regex": {
+ "version": "6.0.1",
"dev": true,
"license": "MIT",
- "dependencies": {
- "p-locate": "^4.1.0"
- },
"engines": {
- "node": ">=8"
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
}
},
- "node_modules/read-pkg-up/node_modules/normalize-package-data": {
- "version": "2.5.0",
+ "node_modules/plop/node_modules/chalk": {
+ "version": "5.3.0",
"dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "hosted-git-info": "^2.1.4",
- "resolve": "^1.10.0",
- "semver": "2 || 3 || 4 || 5",
- "validate-npm-package-license": "^3.0.1"
+ "license": "MIT",
+ "engines": {
+ "node": "^12.17.0 || ^14.13 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
}
},
- "node_modules/read-pkg-up/node_modules/p-limit": {
- "version": "2.3.0",
+ "node_modules/plop/node_modules/cli-cursor": {
+ "version": "4.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "p-try": "^2.0.0"
+ "restore-cursor": "^4.0.0"
},
"engines": {
- "node": ">=6"
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/read-pkg-up/node_modules/p-locate": {
- "version": "4.1.0",
+ "node_modules/plop/node_modules/is-interactive": {
+ "version": "2.0.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "p-limit": "^2.2.0"
- },
"engines": {
- "node": ">=8"
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/read-pkg-up/node_modules/path-exists": {
- "version": "4.0.0",
+ "node_modules/plop/node_modules/is-unicode-supported": {
+ "version": "1.3.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=8"
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/read-pkg-up/node_modules/read-pkg": {
- "version": "5.2.0",
+ "node_modules/plop/node_modules/log-symbols": {
+ "version": "5.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@types/normalize-package-data": "^2.4.0",
- "normalize-package-data": "^2.5.0",
- "parse-json": "^5.0.0",
- "type-fest": "^0.6.0"
+ "chalk": "^5.0.0",
+ "is-unicode-supported": "^1.1.0"
},
"engines": {
- "node": ">=8"
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/read-pkg-up/node_modules/read-pkg/node_modules/type-fest": {
- "version": "0.6.0",
+ "node_modules/plop/node_modules/ora": {
+ "version": "6.3.1",
"dev": true,
- "license": "(MIT OR CC0-1.0)",
+ "license": "MIT",
+ "dependencies": {
+ "chalk": "^5.0.0",
+ "cli-cursor": "^4.0.0",
+ "cli-spinners": "^2.6.1",
+ "is-interactive": "^2.0.0",
+ "is-unicode-supported": "^1.1.0",
+ "log-symbols": "^5.1.0",
+ "stdin-discarder": "^0.1.0",
+ "strip-ansi": "^7.0.1",
+ "wcwidth": "^1.0.1"
+ },
"engines": {
- "node": ">=8"
- }
- },
- "node_modules/read-pkg-up/node_modules/semver": {
- "version": "5.7.1",
- "dev": true,
- "license": "ISC",
- "bin": {
- "semver": "bin/semver"
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/read-pkg-up/node_modules/type-fest": {
- "version": "0.8.1",
+ "node_modules/plop/node_modules/restore-cursor": {
+ "version": "4.0.0",
"dev": true,
- "license": "(MIT OR CC0-1.0)",
+ "license": "MIT",
+ "dependencies": {
+ "onetime": "^5.1.0",
+ "signal-exit": "^3.0.2"
+ },
"engines": {
- "node": ">=8"
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/read-pkg/node_modules/hosted-git-info": {
- "version": "2.8.9",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/read-pkg/node_modules/load-json-file": {
- "version": "4.0.0",
+ "node_modules/plop/node_modules/strip-ansi": {
+ "version": "7.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "graceful-fs": "^4.1.2",
- "parse-json": "^4.0.0",
- "pify": "^3.0.0",
- "strip-bom": "^3.0.0"
+ "ansi-regex": "^6.0.1"
},
"engines": {
- "node": ">=4"
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
}
},
- "node_modules/read-pkg/node_modules/normalize-package-data": {
- "version": "2.5.0",
+ "node_modules/pn": {
+ "version": "1.1.0",
"dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "hosted-git-info": "^2.1.4",
- "resolve": "^1.10.0",
- "semver": "2 || 3 || 4 || 5",
- "validate-npm-package-license": "^3.0.1"
- }
+ "license": "MIT"
},
- "node_modules/read-pkg/node_modules/parse-json": {
- "version": "4.0.0",
+ "node_modules/pnp-webpack-plugin": {
+ "version": "1.7.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "error-ex": "^1.3.1",
- "json-parse-better-errors": "^1.0.1"
+ "ts-pnp": "^1.1.6"
},
"engines": {
- "node": ">=4"
+ "node": ">=6"
}
},
- "node_modules/read-pkg/node_modules/path-type": {
- "version": "3.0.0",
+ "node_modules/polished": {
+ "version": "4.3.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "pify": "^3.0.0"
+ "@babel/runtime": "^7.17.8"
},
"engines": {
- "node": ">=4"
+ "node": ">=10"
}
},
- "node_modules/read-pkg/node_modules/pify": {
- "version": "3.0.0",
- "dev": true,
+ "node_modules/popper-max-size-modifier": {
+ "version": "0.2.0",
"license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/read-pkg/node_modules/semver": {
- "version": "5.7.1",
- "dev": true,
- "license": "ISC",
- "bin": {
- "semver": "bin/semver"
+ "peerDependencies": {
+ "@popperjs/core": "^2.2.0"
}
},
- "node_modules/read-pkg/node_modules/strip-bom": {
- "version": "3.0.0",
+ "node_modules/possible-typed-array-names": {
+ "version": "1.0.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=4"
+ "node": ">= 0.4"
}
},
- "node_modules/readable-stream": {
- "version": "3.6.0",
+ "node_modules/postcss": {
+ "version": "8.4.38",
"dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/postcss"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "inherits": "^2.0.3",
- "string_decoder": "^1.1.1",
- "util-deprecate": "^1.0.1"
+ "nanoid": "^3.3.7",
+ "picocolors": "^1.0.0",
+ "source-map-js": "^1.2.0"
},
"engines": {
- "node": ">= 6"
+ "node": "^10 || ^12 || >=14"
}
},
- "node_modules/readdir-scoped-modules": {
- "version": "1.1.0",
+ "node_modules/postcss-import": {
+ "version": "15.1.0",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "debuglog": "^1.0.1",
- "dezalgo": "^1.0.0",
- "graceful-fs": "^4.1.2",
- "once": "^1.3.0"
+ "postcss-value-parser": "^4.0.0",
+ "read-cache": "^1.0.0",
+ "resolve": "^1.1.7"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.0.0"
}
},
- "node_modules/readdirp": {
- "version": "3.6.0",
+ "node_modules/postcss-js": {
+ "version": "4.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "picomatch": "^2.2.1"
+ "camelcase-css": "^2.0.1"
},
"engines": {
- "node": ">=8.10.0"
+ "node": "^12 || ^14 || >= 16"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.21"
}
},
- "node_modules/rechoir": {
- "version": "0.8.0",
+ "node_modules/postcss-load-config": {
+ "version": "4.0.2",
"dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "resolve": "^1.20.0"
+ "lilconfig": "^3.0.0",
+ "yaml": "^2.3.4"
},
"engines": {
- "node": ">= 10.13.0"
+ "node": ">= 14"
+ },
+ "peerDependencies": {
+ "postcss": ">=8.0.9",
+ "ts-node": ">=9.0.0"
+ },
+ "peerDependenciesMeta": {
+ "postcss": {
+ "optional": true
+ },
+ "ts-node": {
+ "optional": true
+ }
}
},
- "node_modules/redent": {
- "version": "3.0.0",
+ "node_modules/postcss-load-config/node_modules/lilconfig": {
+ "version": "3.1.1",
"dev": true,
"license": "MIT",
- "dependencies": {
- "indent-string": "^4.0.0",
- "strip-indent": "^3.0.0"
- },
"engines": {
- "node": ">=8"
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antonk52"
}
},
- "node_modules/regenerate": {
- "version": "1.4.2",
+ "node_modules/postcss-load-config/node_modules/yaml": {
+ "version": "2.4.1",
"dev": true,
- "license": "MIT"
+ "license": "ISC",
+ "bin": {
+ "yaml": "bin.mjs"
+ },
+ "engines": {
+ "node": ">= 14"
+ }
},
- "node_modules/regenerate-unicode-properties": {
- "version": "10.1.0",
+ "node_modules/postcss-loader": {
+ "version": "7.3.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "regenerate": "^1.4.2"
+ "cosmiconfig": "^8.3.5",
+ "jiti": "^1.20.0",
+ "semver": "^7.5.4"
},
"engines": {
- "node": ">=4"
+ "node": ">= 14.15.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ },
+ "peerDependencies": {
+ "postcss": "^7.0.0 || ^8.0.1",
+ "webpack": "^5.0.0"
}
},
- "node_modules/regenerator-runtime": {
- "version": "0.13.9",
- "license": "MIT"
- },
- "node_modules/regenerator-transform": {
- "version": "0.15.1",
+ "node_modules/postcss-loader/node_modules/cosmiconfig": {
+ "version": "8.3.6",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.8.4"
+ "import-fresh": "^3.3.0",
+ "js-yaml": "^4.1.0",
+ "parse-json": "^5.2.0",
+ "path-type": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/d-fischer"
+ },
+ "peerDependencies": {
+ "typescript": ">=4.9.5"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
}
},
- "node_modules/regex-not": {
- "version": "1.0.2",
+ "node_modules/postcss-loader/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "extend-shallow": "^3.0.2",
- "safe-regex": "^1.1.0"
+ "yallist": "^4.0.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10"
}
},
- "node_modules/regexp.prototype.flags": {
- "version": "1.5.1",
- "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz",
- "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==",
+ "node_modules/postcss-loader/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
+ "license": "ISC",
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.2.0",
- "set-function-name": "^2.0.0"
+ "lru-cache": "^6.0.0"
},
- "engines": {
- "node": ">= 0.4"
+ "bin": {
+ "semver": "bin/semver.js"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/regexpp": {
- "version": "3.2.0",
+ "node_modules/postcss-loader/node_modules/yallist": {
+ "version": "4.0.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC"
+ },
+ "node_modules/postcss-modules-extract-imports": {
+ "version": "3.1.0",
+ "dev": true,
+ "license": "ISC",
"engines": {
- "node": ">=8"
+ "node": "^10 || ^12 || >= 14"
},
- "funding": {
- "url": "https://github.com/sponsors/mysticatea"
+ "peerDependencies": {
+ "postcss": "^8.1.0"
}
},
- "node_modules/regexpu-core": {
- "version": "5.3.1",
+ "node_modules/postcss-modules-local-by-default": {
+ "version": "4.0.5",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/regjsgen": "^0.8.0",
- "regenerate": "^1.4.2",
- "regenerate-unicode-properties": "^10.1.0",
- "regjsparser": "^0.9.1",
- "unicode-match-property-ecmascript": "^2.0.0",
- "unicode-match-property-value-ecmascript": "^2.1.0"
+ "icss-utils": "^5.0.0",
+ "postcss-selector-parser": "^6.0.2",
+ "postcss-value-parser": "^4.1.0"
},
"engines": {
- "node": ">=4"
+ "node": "^10 || ^12 || >= 14"
+ },
+ "peerDependencies": {
+ "postcss": "^8.1.0"
}
},
- "node_modules/registry-auth-token": {
- "version": "4.2.2",
+ "node_modules/postcss-modules-scope": {
+ "version": "3.2.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "rc": "1.2.8"
+ "postcss-selector-parser": "^6.0.4"
},
"engines": {
- "node": ">=6.0.0"
+ "node": "^10 || ^12 || >= 14"
+ },
+ "peerDependencies": {
+ "postcss": "^8.1.0"
}
},
- "node_modules/registry-url": {
- "version": "5.1.0",
+ "node_modules/postcss-modules-values": {
+ "version": "4.0.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "rc": "^1.2.8"
+ "icss-utils": "^5.0.0"
},
"engines": {
- "node": ">=8"
- }
- },
- "node_modules/regjsparser": {
- "version": "0.9.1",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "jsesc": "~0.5.0"
+ "node": "^10 || ^12 || >= 14"
},
- "bin": {
- "regjsparser": "bin/parser"
- }
- },
- "node_modules/regjsparser/node_modules/jsesc": {
- "version": "0.5.0",
- "dev": true,
- "bin": {
- "jsesc": "bin/jsesc"
+ "peerDependencies": {
+ "postcss": "^8.1.0"
}
},
- "node_modules/relateurl": {
- "version": "0.2.7",
+ "node_modules/postcss-nested": {
+ "version": "6.0.1",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "postcss-selector-parser": "^6.0.11"
+ },
"engines": {
- "node": ">= 0.10"
+ "node": ">=12.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.14"
}
},
- "node_modules/release-zalgo": {
- "version": "1.0.0",
+ "node_modules/postcss-selector-parser": {
+ "version": "6.0.16",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "es6-error": "^4.0.1"
+ "cssesc": "^3.0.0",
+ "util-deprecate": "^1.0.2"
},
"engines": {
"node": ">=4"
}
},
- "node_modules/remark-external-links": {
- "version": "8.0.0",
+ "node_modules/postcss-value-parser": {
+ "version": "4.2.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/prebuild-install": {
+ "version": "7.1.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "extend": "^3.0.0",
- "is-absolute-url": "^3.0.0",
- "mdast-util-definitions": "^4.0.0",
- "space-separated-tokens": "^1.0.0",
- "unist-util-visit": "^2.0.0"
+ "detect-libc": "^2.0.0",
+ "expand-template": "^2.0.3",
+ "github-from-package": "0.0.0",
+ "minimist": "^1.2.3",
+ "mkdirp-classic": "^0.5.3",
+ "napi-build-utils": "^1.0.1",
+ "node-abi": "^3.3.0",
+ "pump": "^3.0.0",
+ "rc": "^1.2.7",
+ "simple-get": "^4.0.0",
+ "tar-fs": "^2.0.0",
+ "tunnel-agent": "^0.6.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "bin": {
+ "prebuild-install": "bin.js"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/remark-footnotes": {
- "version": "2.0.0",
+ "node_modules/prebuild-install/node_modules/chownr": {
+ "version": "1.1.4",
"dev": true,
- "license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
+ "license": "ISC"
},
- "node_modules/remark-gfm": {
- "version": "3.0.1",
+ "node_modules/prebuild-install/node_modules/tar-fs": {
+ "version": "2.1.1",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/mdast": "^3.0.0",
- "mdast-util-gfm": "^2.0.0",
- "micromark-extension-gfm": "^2.0.0",
- "unified": "^10.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "chownr": "^1.1.1",
+ "mkdirp-classic": "^0.5.2",
+ "pump": "^3.0.0",
+ "tar-stream": "^2.1.4"
}
},
- "node_modules/remark-gfm/node_modules/bail": {
- "version": "2.0.2",
+ "node_modules/prelude-ls": {
+ "version": "1.2.1",
+ "dev": true,
"license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "engines": {
+ "node": ">= 0.8.0"
}
},
- "node_modules/remark-gfm/node_modules/is-plain-obj": {
- "version": "4.1.0",
+ "node_modules/prepend-http": {
+ "version": "2.0.0",
+ "dev": true,
"license": "MIT",
"engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=4"
}
},
- "node_modules/remark-gfm/node_modules/trough": {
- "version": "2.1.0",
+ "node_modules/prettier": {
+ "version": "2.8.8",
+ "dev": true,
"license": "MIT",
+ "bin": {
+ "prettier": "bin-prettier.js"
+ },
+ "engines": {
+ "node": ">=10.13.0"
+ },
"funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "url": "https://github.com/prettier/prettier?sponsor=1"
}
},
- "node_modules/remark-gfm/node_modules/unified": {
- "version": "10.1.2",
+ "node_modules/pretty-error": {
+ "version": "4.0.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/unist": "^2.0.0",
- "bail": "^2.0.0",
- "extend": "^3.0.0",
- "is-buffer": "^2.0.0",
- "is-plain-obj": "^4.0.0",
- "trough": "^2.0.0",
- "vfile": "^5.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "lodash": "^4.17.20",
+ "renderkid": "^3.0.0"
}
},
- "node_modules/remark-gfm/node_modules/unist-util-stringify-position": {
- "version": "3.0.2",
+ "node_modules/pretty-format": {
+ "version": "27.5.1",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/unist": "^2.0.0"
+ "ansi-regex": "^5.0.1",
+ "ansi-styles": "^5.0.0",
+ "react-is": "^17.0.1"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
- "node_modules/remark-gfm/node_modules/vfile": {
- "version": "5.3.4",
+ "node_modules/pretty-format-ast": {
+ "version": "1.0.1",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/unist": "^2.0.0",
- "is-buffer": "^2.0.0",
- "unist-util-stringify-position": "^3.0.0",
- "vfile-message": "^3.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "pretty-format2": "^2.0.3"
}
},
- "node_modules/remark-gfm/node_modules/vfile-message": {
- "version": "3.1.2",
+ "node_modules/pretty-format/node_modules/ansi-styles": {
+ "version": "5.2.0",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "@types/unist": "^2.0.0",
- "unist-util-stringify-position": "^3.0.0"
+ "engines": {
+ "node": ">=10"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/remark-mdx": {
- "version": "1.6.22",
+ "node_modules/pretty-format2": {
+ "version": "2.0.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/core": "7.12.9",
- "@babel/helper-plugin-utils": "7.10.4",
- "@babel/plugin-proposal-object-rest-spread": "7.12.1",
- "@babel/plugin-syntax-jsx": "7.12.1",
- "@mdx-js/util": "1.6.22",
- "is-alphabetical": "1.0.4",
- "remark-parse": "8.0.3",
- "unified": "9.2.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "ansi-styles": "^3.0.0"
}
},
- "node_modules/remark-mdx-code-meta": {
- "version": "1.0.0",
+ "node_modules/pretty-format2/node_modules/ansi-styles": {
+ "version": "3.2.1",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "acorn": "^8.2.4",
- "acorn-jsx": "^5.3.1",
- "estree-util-is-identifier-name": "^1.1.0",
- "hast-util-to-string": "^1.0.4",
- "unist-util-visit": "^2.0.3"
+ "color-convert": "^1.9.0"
},
"engines": {
- "node": ">=12.2.0"
+ "node": ">=4"
}
},
- "node_modules/remark-mdx/node_modules/@babel/core": {
- "version": "7.12.9",
+ "node_modules/pretty-format2/node_modules/color-convert": {
+ "version": "1.9.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.5",
- "@babel/helper-module-transforms": "^7.12.1",
- "@babel/helpers": "^7.12.5",
- "@babel/parser": "^7.12.7",
- "@babel/template": "^7.12.7",
- "@babel/traverse": "^7.12.9",
- "@babel/types": "^7.12.7",
- "convert-source-map": "^1.7.0",
- "debug": "^4.1.0",
- "gensync": "^1.0.0-beta.1",
- "json5": "^2.1.2",
- "lodash": "^4.17.19",
- "resolve": "^1.3.2",
- "semver": "^5.4.1",
- "source-map": "^0.5.0"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/babel"
+ "color-name": "1.1.3"
}
},
- "node_modules/remark-mdx/node_modules/@babel/helper-plugin-utils": {
- "version": "7.10.4",
+ "node_modules/pretty-format2/node_modules/color-name": {
+ "version": "1.1.3",
"dev": true,
"license": "MIT"
},
- "node_modules/remark-mdx/node_modules/@babel/plugin-proposal-object-rest-spread": {
- "version": "7.12.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/plugin-syntax-object-rest-spread": "^7.8.0",
- "@babel/plugin-transform-parameters": "^7.12.1"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/remark-mdx/node_modules/@babel/plugin-syntax-jsx": {
- "version": "7.12.1",
+ "node_modules/pretty-hrtime": {
+ "version": "1.0.3",
"dev": true,
"license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.10.4"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "engines": {
+ "node": ">= 0.8"
}
},
- "node_modules/remark-mdx/node_modules/semver": {
- "version": "5.7.1",
+ "node_modules/proc-log": {
+ "version": "2.0.1",
"dev": true,
"license": "ISC",
- "bin": {
- "semver": "bin/semver"
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/remark-parse": {
- "version": "8.0.3",
+ "node_modules/process": {
+ "version": "0.11.10",
"dev": true,
"license": "MIT",
- "dependencies": {
- "ccount": "^1.0.0",
- "collapse-white-space": "^1.0.2",
- "is-alphabetical": "^1.0.0",
- "is-decimal": "^1.0.0",
- "is-whitespace-character": "^1.0.0",
- "is-word-character": "^1.0.0",
- "markdown-escapes": "^1.0.0",
- "parse-entities": "^2.0.0",
- "repeat-string": "^1.5.4",
- "state-toggle": "^1.0.0",
- "trim": "0.0.1",
- "trim-trailing-lines": "^1.0.0",
- "unherit": "^1.0.4",
- "unist-util-remove-position": "^2.0.0",
- "vfile-location": "^3.0.0",
- "xtend": "^4.0.1"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/remark-rehype": {
- "version": "10.1.0",
- "license": "MIT",
- "dependencies": {
- "@types/hast": "^2.0.0",
- "@types/mdast": "^3.0.0",
- "mdast-util-to-hast": "^12.1.0",
- "unified": "^10.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/remark-rehype/node_modules/bail": {
- "version": "2.0.2",
- "license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
- "node_modules/remark-rehype/node_modules/is-plain-obj": {
- "version": "4.1.0",
- "license": "MIT",
"engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">= 0.6.0"
}
},
- "node_modules/remark-rehype/node_modules/mdast-util-definitions": {
- "version": "5.1.1",
- "license": "MIT",
- "dependencies": {
- "@types/mdast": "^3.0.0",
- "@types/unist": "^2.0.0",
- "unist-util-visit": "^4.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
+ "node_modules/process-nextick-args": {
+ "version": "2.0.1",
+ "dev": true,
+ "license": "MIT"
},
- "node_modules/remark-rehype/node_modules/mdast-util-to-hast": {
- "version": "12.1.2",
+ "node_modules/process-on-spawn": {
+ "version": "1.0.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/hast": "^2.0.0",
- "@types/mdast": "^3.0.0",
- "@types/mdurl": "^1.0.0",
- "mdast-util-definitions": "^5.0.0",
- "mdurl": "^1.0.0",
- "micromark-util-sanitize-uri": "^1.0.0",
- "trim-lines": "^3.0.0",
- "unist-builder": "^3.0.0",
- "unist-util-generated": "^2.0.0",
- "unist-util-position": "^4.0.0",
- "unist-util-visit": "^4.0.0"
+ "fromentries": "^1.2.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/remark-rehype/node_modules/trough": {
- "version": "2.1.0",
+ "node_modules/progress": {
+ "version": "2.0.3",
+ "dev": true,
"license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "engines": {
+ "node": ">=0.4.0"
}
},
- "node_modules/remark-rehype/node_modules/unified": {
- "version": "10.1.2",
+ "node_modules/promise": {
+ "version": "7.3.1",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/unist": "^2.0.0",
- "bail": "^2.0.0",
- "extend": "^3.0.0",
- "is-buffer": "^2.0.0",
- "is-plain-obj": "^4.0.0",
- "trough": "^2.0.0",
- "vfile": "^5.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "asap": "~2.0.3"
}
},
- "node_modules/remark-rehype/node_modules/unist-builder": {
- "version": "3.0.0",
- "license": "MIT",
- "dependencies": {
- "@types/unist": "^2.0.0"
- },
+ "node_modules/promise-all-reject-late": {
+ "version": "1.0.1",
+ "dev": true,
+ "license": "ISC",
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/remark-rehype/node_modules/unist-util-generated": {
- "version": "2.0.0",
- "license": "MIT",
+ "node_modules/promise-call-limit": {
+ "version": "1.0.2",
+ "dev": true,
+ "license": "ISC",
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/remark-rehype/node_modules/unist-util-is": {
- "version": "5.1.1",
- "license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
+ "node_modules/promise-inflight": {
+ "version": "1.0.1",
+ "dev": true,
+ "license": "ISC"
},
- "node_modules/remark-rehype/node_modules/unist-util-position": {
- "version": "4.0.3",
+ "node_modules/promise-retry": {
+ "version": "2.0.1",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/unist": "^2.0.0"
+ "err-code": "^2.0.2",
+ "retry": "^0.12.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/remark-rehype/node_modules/unist-util-stringify-position": {
- "version": "3.0.2",
+ "node_modules/prompts": {
+ "version": "2.4.2",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/unist": "^2.0.0"
+ "kleur": "^3.0.3",
+ "sisteransi": "^1.0.5"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">= 6"
}
},
- "node_modules/remark-rehype/node_modules/unist-util-visit": {
- "version": "4.1.0",
- "license": "MIT",
+ "node_modules/promzard": {
+ "version": "0.3.0",
+ "dev": true,
+ "license": "ISC",
"dependencies": {
- "@types/unist": "^2.0.0",
- "unist-util-is": "^5.0.0",
- "unist-util-visit-parents": "^5.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "read": "1"
}
},
- "node_modules/remark-rehype/node_modules/unist-util-visit-parents": {
- "version": "5.1.0",
+ "node_modules/prop-types": {
+ "version": "15.8.1",
"license": "MIT",
"dependencies": {
- "@types/unist": "^2.0.0",
- "unist-util-is": "^5.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "loose-envify": "^1.4.0",
+ "object-assign": "^4.1.1",
+ "react-is": "^16.13.1"
}
},
- "node_modules/remark-rehype/node_modules/vfile": {
- "version": "5.3.4",
+ "node_modules/prop-types/node_modules/react-is": {
+ "version": "16.13.1",
+ "license": "MIT"
+ },
+ "node_modules/proper-url-join": {
+ "version": "2.1.1",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/unist": "^2.0.0",
- "is-buffer": "^2.0.0",
- "unist-util-stringify-position": "^3.0.0",
- "vfile-message": "^3.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "query-string": "^6.3.0"
}
},
- "node_modules/remark-rehype/node_modules/vfile-message": {
- "version": "3.1.2",
+ "node_modules/property-information": {
+ "version": "6.5.0",
"license": "MIT",
- "dependencies": {
- "@types/unist": "^2.0.0",
- "unist-util-stringify-position": "^3.0.0"
- },
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/remark-slug": {
- "version": "6.1.0",
+ "node_modules/proto-list": {
+ "version": "1.2.4",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/protocols": {
+ "version": "2.0.1",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/proxy-addr": {
+ "version": "2.0.7",
"dev": true,
"license": "MIT",
"dependencies": {
- "github-slugger": "^1.0.0",
- "mdast-util-to-string": "^1.0.0",
- "unist-util-visit": "^2.0.0"
+ "forwarded": "0.2.0",
+ "ipaddr.js": "1.9.1"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">= 0.10"
}
},
- "node_modules/remark-squeeze-paragraphs": {
- "version": "4.0.0",
+ "node_modules/proxy-from-env": {
+ "version": "1.1.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/psl": {
+ "version": "1.9.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/public-encrypt": {
+ "version": "4.0.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "mdast-squeeze-paragraphs": "^4.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "bn.js": "^4.1.0",
+ "browserify-rsa": "^4.0.0",
+ "create-hash": "^1.1.0",
+ "parse-asn1": "^5.0.0",
+ "randombytes": "^2.0.1",
+ "safe-buffer": "^5.1.2"
}
},
- "node_modules/remove-accents": {
- "version": "0.4.2",
+ "node_modules/public-encrypt/node_modules/bn.js": {
+ "version": "4.12.0",
+ "dev": true,
"license": "MIT"
},
- "node_modules/remove-trailing-separator": {
- "version": "1.1.0",
+ "node_modules/pug": {
+ "version": "2.0.4",
"dev": true,
- "license": "ISC"
+ "license": "MIT",
+ "dependencies": {
+ "pug-code-gen": "^2.0.2",
+ "pug-filters": "^3.1.1",
+ "pug-lexer": "^4.1.0",
+ "pug-linker": "^3.0.6",
+ "pug-load": "^2.0.12",
+ "pug-parser": "^5.0.1",
+ "pug-runtime": "^2.0.5",
+ "pug-strip-comments": "^1.0.4"
+ }
},
- "node_modules/renderkid": {
- "version": "3.0.0",
+ "node_modules/pug-attrs": {
+ "version": "2.0.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "css-select": "^4.1.3",
- "dom-converter": "^0.2.0",
- "htmlparser2": "^6.1.0",
- "lodash": "^4.17.21",
- "strip-ansi": "^6.0.1"
+ "constantinople": "^3.0.1",
+ "js-stringify": "^1.0.1",
+ "pug-runtime": "^2.0.5"
}
},
- "node_modules/repeat-element": {
- "version": "1.1.4",
+ "node_modules/pug-code-gen": {
+ "version": "2.0.3",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "constantinople": "^3.1.2",
+ "doctypes": "^1.1.0",
+ "js-stringify": "^1.0.1",
+ "pug-attrs": "^2.0.4",
+ "pug-error": "^1.3.3",
+ "pug-runtime": "^2.0.5",
+ "void-elements": "^2.0.1",
+ "with": "^5.0.0"
}
},
- "node_modules/repeat-string": {
- "version": "1.6.1",
+ "node_modules/pug-error": {
+ "version": "1.3.3",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/pug-filters": {
+ "version": "3.1.1",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=0.10"
+ "dependencies": {
+ "clean-css": "^4.1.11",
+ "constantinople": "^3.0.1",
+ "jstransformer": "1.0.0",
+ "pug-error": "^1.3.3",
+ "pug-walk": "^1.1.8",
+ "resolve": "^1.1.6",
+ "uglify-js": "^2.6.1"
}
},
- "node_modules/repeating": {
- "version": "2.0.1",
+ "node_modules/pug-filters/node_modules/camelcase": {
+ "version": "1.2.1",
"dev": true,
"license": "MIT",
- "dependencies": {
- "is-finite": "^1.0.0"
- },
"engines": {
"node": ">=0.10.0"
}
},
- "node_modules/request": {
- "version": "2.88.2",
+ "node_modules/pug-filters/node_modules/clean-css": {
+ "version": "4.2.4",
"dev": true,
- "license": "Apache-2.0",
+ "license": "MIT",
"dependencies": {
- "aws-sign2": "~0.7.0",
- "aws4": "^1.8.0",
- "caseless": "~0.12.0",
- "combined-stream": "~1.0.6",
- "extend": "~3.0.2",
- "forever-agent": "~0.6.1",
- "form-data": "~2.3.2",
- "har-validator": "~5.1.3",
- "http-signature": "~1.2.0",
- "is-typedarray": "~1.0.0",
- "isstream": "~0.1.2",
- "json-stringify-safe": "~5.0.1",
- "mime-types": "~2.1.19",
- "oauth-sign": "~0.9.0",
- "performance-now": "^2.1.0",
- "qs": "~6.5.2",
- "safe-buffer": "^5.1.2",
- "tough-cookie": "~2.5.0",
- "tunnel-agent": "^0.6.0",
- "uuid": "^3.3.2"
+ "source-map": "~0.6.0"
},
"engines": {
- "node": ">= 6"
+ "node": ">= 4.0"
}
},
- "node_modules/request-promise-core": {
- "version": "1.1.4",
+ "node_modules/pug-filters/node_modules/cliui": {
+ "version": "2.1.0",
"dev": true,
"license": "ISC",
"dependencies": {
- "lodash": "^4.17.19"
- },
+ "center-align": "^0.1.1",
+ "right-align": "^0.1.1",
+ "wordwrap": "0.0.2"
+ }
+ },
+ "node_modules/pug-filters/node_modules/source-map": {
+ "version": "0.6.1",
+ "dev": true,
+ "license": "BSD-3-Clause",
"engines": {
"node": ">=0.10.0"
- },
- "peerDependencies": {
- "request": "^2.34"
}
},
- "node_modules/request-promise-native": {
- "version": "1.0.9",
+ "node_modules/pug-filters/node_modules/uglify-js": {
+ "version": "2.8.29",
"dev": true,
- "license": "ISC",
+ "license": "BSD-2-Clause",
"dependencies": {
- "request-promise-core": "1.1.4",
- "stealthy-require": "^1.1.1",
- "tough-cookie": "^2.3.3"
+ "source-map": "~0.5.1",
+ "yargs": "~3.10.0"
+ },
+ "bin": {
+ "uglifyjs": "bin/uglifyjs"
},
"engines": {
- "node": ">=0.12.0"
+ "node": ">=0.8.0"
},
- "peerDependencies": {
- "request": "^2.34"
+ "optionalDependencies": {
+ "uglify-to-browserify": "~1.0.0"
}
},
- "node_modules/request-promise-native/node_modules/tough-cookie": {
- "version": "2.5.0",
+ "node_modules/pug-filters/node_modules/uglify-js/node_modules/source-map": {
+ "version": "0.5.7",
"dev": true,
"license": "BSD-3-Clause",
- "dependencies": {
- "psl": "^1.1.28",
- "punycode": "^2.1.1"
- },
"engines": {
- "node": ">=0.8"
+ "node": ">=0.10.0"
}
},
- "node_modules/request/node_modules/form-data": {
- "version": "2.3.3",
+ "node_modules/pug-filters/node_modules/wordwrap": {
+ "version": "0.0.2",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "asynckit": "^0.4.0",
- "combined-stream": "^1.0.6",
- "mime-types": "^2.1.12"
- },
+ "license": "MIT/X11",
"engines": {
- "node": ">= 0.12"
+ "node": ">=0.4.0"
}
},
- "node_modules/request/node_modules/qs": {
- "version": "6.5.3",
+ "node_modules/pug-filters/node_modules/yargs": {
+ "version": "3.10.0",
"dev": true,
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.6"
+ "license": "MIT",
+ "dependencies": {
+ "camelcase": "^1.0.2",
+ "cliui": "^2.1.0",
+ "decamelize": "^1.0.0",
+ "window-size": "0.1.0"
}
},
- "node_modules/request/node_modules/tough-cookie": {
- "version": "2.5.0",
+ "node_modules/pug-lexer": {
+ "version": "4.1.0",
"dev": true,
- "license": "BSD-3-Clause",
+ "license": "MIT",
"dependencies": {
- "psl": "^1.1.28",
- "punycode": "^2.1.1"
- },
- "engines": {
- "node": ">=0.8"
+ "character-parser": "^2.1.1",
+ "is-expression": "^3.0.0",
+ "pug-error": "^1.3.3"
}
},
- "node_modules/request/node_modules/uuid": {
- "version": "3.4.0",
+ "node_modules/pug-linker": {
+ "version": "3.0.6",
"dev": true,
"license": "MIT",
- "bin": {
- "uuid": "bin/uuid"
+ "dependencies": {
+ "pug-error": "^1.3.3",
+ "pug-walk": "^1.1.8"
}
},
- "node_modules/require-directory": {
- "version": "2.1.1",
+ "node_modules/pug-load": {
+ "version": "2.0.12",
+ "dev": true,
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "object-assign": "^4.1.0",
+ "pug-walk": "^1.1.8"
}
},
- "node_modules/require-main-filename": {
- "version": "2.0.0",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/requireindex": {
- "version": "1.2.0",
+ "node_modules/pug-parser": {
+ "version": "5.0.1",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=0.10.5"
+ "dependencies": {
+ "pug-error": "^1.3.3",
+ "token-stream": "0.0.1"
}
},
- "node_modules/requires-port": {
- "version": "1.0.0",
+ "node_modules/pug-runtime": {
+ "version": "2.0.5",
"dev": true,
"license": "MIT"
},
- "node_modules/resolve": {
- "version": "1.22.2",
+ "node_modules/pug-strip-comments": {
+ "version": "1.0.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-core-module": "^2.11.0",
- "path-parse": "^1.0.7",
- "supports-preserve-symlinks-flag": "^1.0.0"
- },
- "bin": {
- "resolve": "bin/resolve"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "pug-error": "^1.3.3"
}
},
- "node_modules/resolve-async": {
- "version": "1.0.1",
+ "node_modules/pug-walk": {
+ "version": "1.1.8",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "resolve": "^1.3.3",
- "typeable-promisify": "^1.0.1"
- }
+ "license": "MIT"
},
- "node_modules/resolve-cwd": {
+ "node_modules/pump": {
"version": "3.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "resolve-from": "^5.0.0"
- },
- "engines": {
- "node": ">=8"
+ "end-of-stream": "^1.1.0",
+ "once": "^1.3.1"
}
},
- "node_modules/resolve-dir": {
- "version": "0.1.1",
+ "node_modules/pumpify": {
+ "version": "1.5.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "expand-tilde": "^1.2.2",
- "global-modules": "^0.2.3"
- },
- "engines": {
- "node": ">=0.10.0"
+ "duplexify": "^3.6.0",
+ "inherits": "^2.0.3",
+ "pump": "^2.0.0"
}
},
- "node_modules/resolve-dir/node_modules/expand-tilde": {
- "version": "1.2.2",
+ "node_modules/pumpify/node_modules/pump": {
+ "version": "2.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "os-homedir": "^1.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/resolve-from": {
- "version": "5.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
+ "end-of-stream": "^1.1.0",
+ "once": "^1.3.1"
}
},
- "node_modules/resolve-url": {
- "version": "0.2.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/resolve.exports": {
- "version": "1.1.1",
+ "node_modules/punycode": {
+ "version": "2.3.1",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=10"
- }
- },
- "node_modules/responselike": {
- "version": "1.0.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "lowercase-keys": "^1.0.0"
+ "node": ">=6"
}
},
- "node_modules/restore-cursor": {
- "version": "3.1.0",
+ "node_modules/pupa": {
+ "version": "2.1.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "onetime": "^5.1.0",
- "signal-exit": "^3.0.2"
+ "escape-goat": "^2.0.0"
},
"engines": {
"node": ">=8"
}
},
- "node_modules/ret": {
- "version": "0.1.15",
+ "node_modules/puppeteer-core": {
+ "version": "2.1.1",
"dev": true,
- "license": "MIT",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@types/mime-types": "^2.1.0",
+ "debug": "^4.1.0",
+ "extract-zip": "^1.6.6",
+ "https-proxy-agent": "^4.0.0",
+ "mime": "^2.0.3",
+ "mime-types": "^2.1.25",
+ "progress": "^2.0.1",
+ "proxy-from-env": "^1.0.0",
+ "rimraf": "^2.6.1",
+ "ws": "^6.1.0"
+ },
"engines": {
- "node": ">=0.12"
+ "node": ">=8.16.0"
}
},
- "node_modules/retry": {
- "version": "0.12.0",
+ "node_modules/puppeteer-core/node_modules/agent-base": {
+ "version": "5.1.1",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">= 4"
+ "node": ">= 6.0.0"
}
},
- "node_modules/reusify": {
- "version": "1.0.4",
+ "node_modules/puppeteer-core/node_modules/https-proxy-agent": {
+ "version": "4.0.0",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "agent-base": "5",
+ "debug": "4"
+ },
"engines": {
- "iojs": ">=1.0.0",
- "node": ">=0.10.0"
+ "node": ">= 6.0.0"
}
},
- "node_modules/right-align": {
- "version": "0.1.3",
+ "node_modules/puppeteer-core/node_modules/mime": {
+ "version": "2.6.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "align-text": "^0.1.1"
+ "bin": {
+ "mime": "cli.js"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=4.0.0"
}
},
- "node_modules/rimraf": {
- "version": "3.0.2",
+ "node_modules/puppeteer-core/node_modules/rimraf": {
+ "version": "2.7.1",
+ "dev": true,
"license": "ISC",
"dependencies": {
"glob": "^7.1.3"
},
"bin": {
"rimraf": "bin.js"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/ripemd160": {
- "version": "2.0.2",
+ "node_modules/puppeteer-core/node_modules/ws": {
+ "version": "6.2.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "hash-base": "^3.0.0",
- "inherits": "^2.0.1"
+ "async-limiter": "~1.0.0"
}
},
- "node_modules/rollup": {
- "version": "2.70.0",
+ "node_modules/pure-rand": {
+ "version": "6.1.0",
+ "dev": true,
+ "funding": [
+ {
+ "type": "individual",
+ "url": "https://github.com/sponsors/dubzzz"
+ },
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/fast-check"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/q": {
+ "version": "1.5.1",
"dev": true,
"license": "MIT",
- "bin": {
- "rollup": "dist/bin/rollup"
- },
"engines": {
- "node": ">=10.0.0"
- },
- "optionalDependencies": {
- "fsevents": "~2.3.2"
+ "node": ">=0.6.0",
+ "teleport": ">=0.2.0"
}
},
- "node_modules/rst-selector-parser": {
- "version": "2.2.3",
+ "node_modules/qs": {
+ "version": "6.12.0",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
- "lodash.flattendeep": "^4.4.0",
- "nearley": "^2.7.10"
+ "side-channel": "^1.0.6"
+ },
+ "engines": {
+ "node": ">=0.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/rsvp": {
- "version": "4.8.5",
+ "node_modules/query-string": {
+ "version": "6.14.1",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "decode-uri-component": "^0.2.0",
+ "filter-obj": "^1.1.0",
+ "split-on-first": "^1.0.0",
+ "strict-uri-encode": "^2.0.0"
+ },
"engines": {
- "node": "6.* || >= 7.*"
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/run-async": {
- "version": "2.4.1",
+ "node_modules/query-string/node_modules/filter-obj": {
+ "version": "1.1.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=0.12.0"
+ "node": ">=0.10.0"
}
},
- "node_modules/run-parallel": {
- "version": "1.2.0",
+ "node_modules/querystring-es3": {
+ "version": "0.2.1",
+ "dev": true,
+ "engines": {
+ "node": ">=0.4.x"
+ }
+ },
+ "node_modules/querystringify": {
+ "version": "2.2.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/queue": {
+ "version": "6.0.2",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "inherits": "~2.0.3"
+ }
+ },
+ "node_modules/queue-microtask": {
+ "version": "1.2.3",
"dev": true,
"funding": [
{
@@ -43317,1018 +31597,1067 @@
"url": "https://feross.org/support"
}
],
+ "license": "MIT"
+ },
+ "node_modules/queue-tick": {
+ "version": "1.0.1",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/quick-lru": {
+ "version": "4.0.1",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "queue-microtask": "^1.2.2"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/run-queue": {
- "version": "1.0.3",
+ "node_modules/raf": {
+ "version": "3.4.1",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "aproba": "^1.1.1"
+ "performance-now": "^2.1.0"
}
},
- "node_modules/run-queue/node_modules/aproba": {
- "version": "1.2.0",
+ "node_modules/railroad-diagrams": {
+ "version": "1.0.0",
"dev": true,
- "license": "ISC"
- },
- "node_modules/rx-lite": {
- "version": "4.0.8",
- "dev": true
+ "license": "CC0-1.0"
},
- "node_modules/rx-lite-aggregates": {
- "version": "4.0.8",
+ "node_modules/ramda": {
+ "version": "0.29.0",
"dev": true,
- "dependencies": {
- "rx-lite": "*"
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/ramda"
}
},
- "node_modules/rxjs": {
- "version": "6.6.7",
+ "node_modules/randexp": {
+ "version": "0.4.6",
"dev": true,
- "license": "Apache-2.0",
+ "license": "MIT",
"dependencies": {
- "tslib": "^1.9.0"
+ "discontinuous-range": "1.0.0",
+ "ret": "~0.1.10"
},
"engines": {
- "npm": ">=2.0.0"
+ "node": ">=0.12"
}
},
- "node_modules/rxjs/node_modules/tslib": {
- "version": "1.14.1",
+ "node_modules/randombytes": {
+ "version": "2.1.0",
"dev": true,
- "license": "0BSD"
+ "license": "MIT",
+ "dependencies": {
+ "safe-buffer": "^5.1.0"
+ }
},
- "node_modules/sade": {
- "version": "1.8.1",
+ "node_modules/randomfill": {
+ "version": "1.0.4",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "mri": "^1.1.0"
+ "randombytes": "^2.0.5",
+ "safe-buffer": "^5.1.0"
+ }
+ },
+ "node_modules/range-parser": {
+ "version": "1.2.1",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/raw-body": {
+ "version": "2.5.2",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "bytes": "3.1.2",
+ "http-errors": "2.0.0",
+ "iconv-lite": "0.4.24",
+ "unpipe": "1.0.0"
},
"engines": {
- "node": ">=6"
+ "node": ">= 0.8"
}
},
- "node_modules/safe-buffer": {
- "version": "5.1.2",
- "license": "MIT"
+ "node_modules/rc": {
+ "version": "1.2.8",
+ "dev": true,
+ "license": "(BSD-2-Clause OR MIT OR Apache-2.0)",
+ "dependencies": {
+ "deep-extend": "^0.6.0",
+ "ini": "~1.3.0",
+ "minimist": "^1.2.0",
+ "strip-json-comments": "~2.0.1"
+ },
+ "bin": {
+ "rc": "cli.js"
+ }
},
- "node_modules/safe-regex": {
- "version": "1.1.0",
+ "node_modules/rc/node_modules/strip-json-comments": {
+ "version": "2.0.1",
"dev": true,
"license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/react": {
+ "version": "18.2.0",
+ "license": "MIT",
"dependencies": {
- "ret": "~0.1.10"
+ "loose-envify": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/safe-regex-test": {
- "version": "1.0.0",
+ "node_modules/react-colorful": {
+ "version": "5.6.1",
"dev": true,
"license": "MIT",
+ "peerDependencies": {
+ "react": ">=16.8.0",
+ "react-dom": ">=16.8.0"
+ }
+ },
+ "node_modules/react-devtools-inline": {
+ "version": "4.4.0",
+ "license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "get-intrinsic": "^1.1.3",
- "is-regex": "^1.1.4"
+ "es6-symbol": "^3"
+ }
+ },
+ "node_modules/react-docgen": {
+ "version": "5.4.3",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/core": "^7.7.5",
+ "@babel/generator": "^7.12.11",
+ "@babel/runtime": "^7.7.6",
+ "ast-types": "^0.14.2",
+ "commander": "^2.19.0",
+ "doctrine": "^3.0.0",
+ "estree-to-babel": "^3.1.0",
+ "neo-async": "^2.6.1",
+ "node-dir": "^0.1.10",
+ "strip-indent": "^3.0.0"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "bin": {
+ "react-docgen": "bin/react-docgen.js"
+ },
+ "engines": {
+ "node": ">=8.10.0"
}
},
- "node_modules/safe-stable-stringify": {
- "version": "2.4.3",
+ "node_modules/react-docgen-typescript": {
+ "version": "2.2.2",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=10"
+ "peerDependencies": {
+ "typescript": ">= 4.3.x"
}
},
- "node_modules/safer-buffer": {
- "version": "2.1.2",
- "dev": true,
+ "node_modules/react-docgen/node_modules/commander": {
+ "version": "2.20.3",
"license": "MIT"
},
- "node_modules/sane": {
- "version": "4.1.0",
- "dev": true,
+ "node_modules/react-docgen/node_modules/strip-indent": {
+ "version": "3.0.0",
"license": "MIT",
"dependencies": {
- "@cnakazawa/watch": "^1.0.3",
- "anymatch": "^2.0.0",
- "capture-exit": "^2.0.0",
- "exec-sh": "^0.3.2",
- "execa": "^1.0.0",
- "fb-watchman": "^2.0.0",
- "micromatch": "^3.1.4",
- "minimist": "^1.1.1",
- "walker": "~1.0.5"
- },
- "bin": {
- "sane": "src/cli.js"
+ "min-indent": "^1.0.0"
},
"engines": {
- "node": "6.* || 8.* || >= 10.*"
+ "node": ">=8"
}
},
- "node_modules/sane/node_modules/anymatch": {
- "version": "2.0.0",
- "dev": true,
- "license": "ISC",
+ "node_modules/react-dom": {
+ "version": "18.2.0",
+ "license": "MIT",
"dependencies": {
- "micromatch": "^3.1.4",
- "normalize-path": "^2.1.1"
+ "loose-envify": "^1.1.0",
+ "scheduler": "^0.23.0"
+ },
+ "peerDependencies": {
+ "react": "^18.2.0"
}
},
- "node_modules/sane/node_modules/braces": {
- "version": "2.3.2",
+ "node_modules/react-element-to-jsx-string": {
+ "version": "15.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "arr-flatten": "^1.1.0",
- "array-unique": "^0.3.2",
- "extend-shallow": "^2.0.1",
- "fill-range": "^4.0.0",
- "isobject": "^3.0.1",
- "repeat-element": "^1.1.2",
- "snapdragon": "^0.8.1",
- "snapdragon-node": "^2.0.1",
- "split-string": "^3.0.2",
- "to-regex": "^3.0.1"
+ "@base2/pretty-print-object": "1.0.1",
+ "is-plain-object": "5.0.0",
+ "react-is": "18.1.0"
},
- "engines": {
- "node": ">=0.10.0"
+ "peerDependencies": {
+ "react": "^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0",
+ "react-dom": "^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0"
}
},
- "node_modules/sane/node_modules/braces/node_modules/extend-shallow": {
- "version": "2.0.1",
+ "node_modules/react-element-to-jsx-string/node_modules/react-is": {
+ "version": "18.1.0",
"dev": true,
+ "license": "MIT"
+ },
+ "node_modules/react-error-boundary": {
+ "version": "3.1.4",
"license": "MIT",
"dependencies": {
- "is-extendable": "^0.1.0"
+ "@babel/runtime": "^7.12.5"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10",
+ "npm": ">=6"
+ },
+ "peerDependencies": {
+ "react": ">=16.13.1"
}
},
- "node_modules/sane/node_modules/cross-spawn": {
- "version": "6.0.5",
- "dev": true,
+ "node_modules/react-fast-compare": {
+ "version": "3.2.2",
+ "license": "MIT"
+ },
+ "node_modules/react-hook-form": {
+ "version": "7.51.2",
"license": "MIT",
- "dependencies": {
- "nice-try": "^1.0.4",
- "path-key": "^2.0.1",
- "semver": "^5.5.0",
- "shebang-command": "^1.2.0",
- "which": "^1.2.9"
- },
"engines": {
- "node": ">=4.8"
+ "node": ">=12.22.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/react-hook-form"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17 || ^18"
}
},
- "node_modules/sane/node_modules/execa": {
- "version": "1.0.0",
- "dev": true,
+ "node_modules/react-is": {
+ "version": "17.0.2",
+ "license": "MIT"
+ },
+ "node_modules/react-phone-number-input": {
+ "version": "3.3.12",
"license": "MIT",
"dependencies": {
- "cross-spawn": "^6.0.0",
- "get-stream": "^4.0.0",
- "is-stream": "^1.1.0",
- "npm-run-path": "^2.0.0",
- "p-finally": "^1.0.0",
- "signal-exit": "^3.0.0",
- "strip-eof": "^1.0.0"
+ "classnames": "^2.3.1",
+ "country-flag-icons": "^1.5.4",
+ "input-format": "^0.3.10",
+ "libphonenumber-js": "^1.10.60",
+ "prop-types": "^15.8.1"
},
- "engines": {
- "node": ">=6"
+ "peerDependencies": {
+ "react": ">=16.8",
+ "react-dom": ">=16.8"
}
},
- "node_modules/sane/node_modules/fill-range": {
- "version": "4.0.0",
- "dev": true,
+ "node_modules/react-popper": {
+ "version": "2.3.0",
"license": "MIT",
"dependencies": {
- "extend-shallow": "^2.0.1",
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1",
- "to-regex-range": "^2.1.0"
+ "react-fast-compare": "^3.0.1",
+ "warning": "^4.0.2"
},
- "engines": {
- "node": ">=0.10.0"
+ "peerDependencies": {
+ "@popperjs/core": "^2.0.0",
+ "react": "^16.8.0 || ^17 || ^18",
+ "react-dom": "^16.8.0 || ^17 || ^18"
}
},
- "node_modules/sane/node_modules/fill-range/node_modules/extend-shallow": {
- "version": "2.0.1",
+ "node_modules/react-refresh": {
+ "version": "0.14.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "is-extendable": "^0.1.0"
- },
"engines": {
"node": ">=0.10.0"
}
},
- "node_modules/sane/node_modules/get-stream": {
- "version": "4.1.0",
- "dev": true,
+ "node_modules/react-remove-scroll": {
+ "version": "2.5.5",
"license": "MIT",
"dependencies": {
- "pump": "^3.0.0"
+ "react-remove-scroll-bar": "^2.3.3",
+ "react-style-singleton": "^2.2.1",
+ "tslib": "^2.1.0",
+ "use-callback-ref": "^1.3.0",
+ "use-sidecar": "^1.1.2"
},
"engines": {
- "node": ">=6"
+ "node": ">=10"
+ },
+ "peerDependencies": {
+ "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
}
},
- "node_modules/sane/node_modules/is-buffer": {
- "version": "1.1.6",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/sane/node_modules/is-extendable": {
- "version": "0.1.1",
- "dev": true,
+ "node_modules/react-remove-scroll-bar": {
+ "version": "2.3.6",
"license": "MIT",
+ "dependencies": {
+ "react-style-singleton": "^2.2.1",
+ "tslib": "^2.0.0"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10"
+ },
+ "peerDependencies": {
+ "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
}
},
- "node_modules/sane/node_modules/is-number": {
- "version": "3.0.0",
- "dev": true,
+ "node_modules/react-style-singleton": {
+ "version": "2.2.1",
"license": "MIT",
"dependencies": {
- "kind-of": "^3.0.2"
+ "get-nonce": "^1.0.0",
+ "invariant": "^2.2.4",
+ "tslib": "^2.0.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10"
+ },
+ "peerDependencies": {
+ "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
}
},
- "node_modules/sane/node_modules/is-number/node_modules/kind-of": {
- "version": "3.2.2",
- "dev": true,
+ "node_modules/react-svg": {
+ "version": "15.1.21",
"license": "MIT",
"dependencies": {
- "is-buffer": "^1.1.5"
+ "@babel/runtime": "^7.20.7",
+ "@tanem/svg-injector": "^10.1.42",
+ "@types/prop-types": "^15.7.5",
+ "prop-types": "^15.8.1"
},
- "engines": {
- "node": ">=0.10.0"
+ "peerDependencies": {
+ "react": "^16.0.0 || ^17.0.0 || ^18.0.0",
+ "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0"
}
},
- "node_modules/sane/node_modules/is-stream": {
- "version": "1.1.0",
- "dev": true,
+ "node_modules/react-swipeable": {
+ "version": "7.0.1",
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "peerDependencies": {
+ "react": "^16.8.3 || ^17 || ^18"
}
},
- "node_modules/sane/node_modules/micromatch": {
- "version": "3.1.10",
- "dev": true,
+ "node_modules/react-toastify": {
+ "version": "8.2.0",
"license": "MIT",
"dependencies": {
- "arr-diff": "^4.0.0",
- "array-unique": "^0.3.2",
- "braces": "^2.3.1",
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "extglob": "^2.0.4",
- "fragment-cache": "^0.2.1",
- "kind-of": "^6.0.2",
- "nanomatch": "^1.2.9",
- "object.pick": "^1.3.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.2"
+ "clsx": "^1.1.1"
},
- "engines": {
- "node": ">=0.10.0"
+ "peerDependencies": {
+ "react": ">=16",
+ "react-dom": ">=16"
}
},
- "node_modules/sane/node_modules/normalize-path": {
- "version": "2.1.1",
- "dev": true,
- "license": "MIT",
+ "node_modules/react-transition-group": {
+ "version": "4.4.5",
+ "license": "BSD-3-Clause",
"dependencies": {
- "remove-trailing-separator": "^1.0.1"
+ "@babel/runtime": "^7.5.5",
+ "dom-helpers": "^5.0.1",
+ "loose-envify": "^1.4.0",
+ "prop-types": "^15.6.2"
},
- "engines": {
- "node": ">=0.10.0"
+ "peerDependencies": {
+ "react": ">=16.6.0",
+ "react-dom": ">=16.6.0"
}
},
- "node_modules/sane/node_modules/npm-run-path": {
- "version": "2.0.2",
+ "node_modules/read": {
+ "version": "1.0.7",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "path-key": "^2.0.0"
+ "mute-stream": "~0.0.4"
},
"engines": {
- "node": ">=4"
+ "node": ">=0.8"
}
},
- "node_modules/sane/node_modules/path-key": {
- "version": "2.0.1",
+ "node_modules/read-cache": {
+ "version": "1.0.0",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/sane/node_modules/semver": {
- "version": "5.7.1",
- "dev": true,
- "license": "ISC",
- "bin": {
- "semver": "bin/semver"
+ "dependencies": {
+ "pify": "^2.3.0"
}
},
- "node_modules/sane/node_modules/shebang-command": {
- "version": "1.2.0",
+ "node_modules/read-cache/node_modules/pify": {
+ "version": "2.3.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "shebang-regex": "^1.0.0"
- },
"engines": {
"node": ">=0.10.0"
}
},
- "node_modules/sane/node_modules/shebang-regex": {
- "version": "1.0.0",
+ "node_modules/read-cmd-shim": {
+ "version": "3.0.1",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"engines": {
- "node": ">=0.10.0"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/sane/node_modules/to-regex-range": {
- "version": "2.1.1",
+ "node_modules/read-file-async": {
+ "version": "1.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1"
- },
- "engines": {
- "node": ">=0.10.0"
+ "graceful-fs": "^4.1.11",
+ "typeable-promisify": "^1.0.1"
}
},
- "node_modules/sane/node_modules/which": {
- "version": "1.3.1",
+ "node_modules/read-package-json": {
+ "version": "5.0.2",
"dev": true,
"license": "ISC",
"dependencies": {
- "isexe": "^2.0.0"
+ "glob": "^8.0.1",
+ "json-parse-even-better-errors": "^2.3.1",
+ "normalize-package-data": "^4.0.0",
+ "npm-normalize-package-bin": "^2.0.0"
},
- "bin": {
- "which": "bin/which"
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/saxes": {
- "version": "5.0.1",
+ "node_modules/read-package-json-fast": {
+ "version": "2.0.3",
"dev": true,
"license": "ISC",
"dependencies": {
- "xmlchars": "^2.2.0"
+ "json-parse-even-better-errors": "^2.3.0",
+ "npm-normalize-package-bin": "^1.0.1"
},
"engines": {
"node": ">=10"
}
},
- "node_modules/scheduler": {
- "version": "0.20.2",
+ "node_modules/read-package-json/node_modules/brace-expansion": {
+ "version": "2.0.1",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "loose-envify": "^1.1.0",
- "object-assign": "^4.1.1"
+ "balanced-match": "^1.0.0"
}
},
- "node_modules/schema-utils": {
- "version": "3.3.0",
+ "node_modules/read-package-json/node_modules/glob": {
+ "version": "8.1.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "@types/json-schema": "^7.0.8",
- "ajv": "^6.12.5",
- "ajv-keywords": "^3.5.2"
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^5.0.1",
+ "once": "^1.3.0"
},
"engines": {
- "node": ">= 10.13.0"
+ "node": ">=12"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/section-matter": {
- "version": "1.0.0",
- "license": "MIT",
+ "node_modules/read-package-json/node_modules/hosted-git-info": {
+ "version": "5.2.1",
+ "dev": true,
+ "license": "ISC",
"dependencies": {
- "extend-shallow": "^2.0.1",
- "kind-of": "^6.0.0"
+ "lru-cache": "^7.5.1"
},
"engines": {
- "node": ">=4"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/section-matter/node_modules/extend-shallow": {
- "version": "2.0.1",
- "license": "MIT",
+ "node_modules/read-package-json/node_modules/lru-cache": {
+ "version": "7.18.3",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/read-package-json/node_modules/minimatch": {
+ "version": "5.1.6",
+ "dev": true,
+ "license": "ISC",
"dependencies": {
- "is-extendable": "^0.1.0"
+ "brace-expansion": "^2.0.1"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10"
}
},
- "node_modules/section-matter/node_modules/is-extendable": {
- "version": "0.1.1",
- "license": "MIT",
+ "node_modules/read-package-json/node_modules/normalize-package-data": {
+ "version": "4.0.1",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "hosted-git-info": "^5.0.0",
+ "is-core-module": "^2.8.1",
+ "semver": "^7.3.5",
+ "validate-npm-package-license": "^3.0.4"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/semver": {
- "version": "6.3.0",
+ "node_modules/read-package-json/node_modules/npm-normalize-package-bin": {
+ "version": "2.0.0",
+ "dev": true,
"license": "ISC",
- "bin": {
- "semver": "bin/semver.js"
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/semver-diff": {
- "version": "3.1.1",
+ "node_modules/read-package-json/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "semver": "^6.3.0"
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
},
"engines": {
- "node": ">=8"
+ "node": ">=10"
}
},
- "node_modules/send": {
- "version": "0.17.2",
+ "node_modules/read-package-json/node_modules/semver/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "debug": "2.6.9",
- "depd": "~1.1.2",
- "destroy": "~1.0.4",
- "encodeurl": "~1.0.2",
- "escape-html": "~1.0.3",
- "etag": "~1.8.1",
- "fresh": "0.5.2",
- "http-errors": "1.8.1",
- "mime": "1.6.0",
- "ms": "2.1.3",
- "on-finished": "~2.3.0",
- "range-parser": "~1.2.1",
- "statuses": "~1.5.0"
+ "yallist": "^4.0.0"
},
"engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/send/node_modules/debug": {
- "version": "2.6.9",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ms": "2.0.0"
+ "node": ">=10"
}
},
- "node_modules/send/node_modules/debug/node_modules/ms": {
- "version": "2.0.0",
+ "node_modules/read-package-json/node_modules/yallist": {
+ "version": "4.0.0",
"dev": true,
- "license": "MIT"
+ "license": "ISC"
},
- "node_modules/send/node_modules/mime": {
- "version": "1.6.0",
+ "node_modules/read-pkg": {
+ "version": "3.0.0",
"dev": true,
"license": "MIT",
- "bin": {
- "mime": "cli.js"
+ "dependencies": {
+ "load-json-file": "^4.0.0",
+ "normalize-package-data": "^2.3.2",
+ "path-type": "^3.0.0"
},
"engines": {
"node": ">=4"
}
},
- "node_modules/sentence-case": {
- "version": "3.0.4",
+ "node_modules/read-pkg-up": {
+ "version": "7.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "no-case": "^3.0.4",
- "tslib": "^2.0.3",
- "upper-case-first": "^2.0.2"
- }
- },
- "node_modules/serialize-javascript": {
- "version": "6.0.1",
- "dev": true,
- "license": "BSD-3-Clause",
- "dependencies": {
- "randombytes": "^2.1.0"
+ "find-up": "^4.1.0",
+ "read-pkg": "^5.2.0",
+ "type-fest": "^0.8.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/serve-favicon": {
- "version": "2.5.0",
+ "node_modules/read-pkg-up/node_modules/find-up": {
+ "version": "4.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "etag": "~1.8.1",
- "fresh": "0.5.2",
- "ms": "2.1.1",
- "parseurl": "~1.3.2",
- "safe-buffer": "5.1.1"
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
},
"engines": {
- "node": ">= 0.8.0"
+ "node": ">=8"
}
},
- "node_modules/serve-favicon/node_modules/ms": {
- "version": "2.1.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/serve-favicon/node_modules/safe-buffer": {
- "version": "5.1.1",
+ "node_modules/read-pkg-up/node_modules/hosted-git-info": {
+ "version": "2.8.9",
"dev": true,
- "license": "MIT"
+ "license": "ISC"
},
- "node_modules/serve-static": {
- "version": "1.14.2",
+ "node_modules/read-pkg-up/node_modules/locate-path": {
+ "version": "5.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "encodeurl": "~1.0.2",
- "escape-html": "~1.0.3",
- "parseurl": "~1.3.3",
- "send": "0.17.2"
+ "p-locate": "^4.1.0"
},
"engines": {
- "node": ">= 0.8.0"
+ "node": ">=8"
}
},
- "node_modules/set-blocking": {
- "version": "2.0.0",
+ "node_modules/read-pkg-up/node_modules/normalize-package-data": {
+ "version": "2.5.0",
"dev": true,
- "license": "ISC"
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "hosted-git-info": "^2.1.4",
+ "resolve": "^1.10.0",
+ "semver": "2 || 3 || 4 || 5",
+ "validate-npm-package-license": "^3.0.1"
+ }
},
- "node_modules/set-function-name": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz",
- "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==",
+ "node_modules/read-pkg-up/node_modules/p-limit": {
+ "version": "2.3.0",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "define-data-property": "^1.0.1",
- "functions-have-names": "^1.2.3",
- "has-property-descriptors": "^1.0.0"
+ "p-try": "^2.0.0"
},
"engines": {
- "node": ">= 0.4"
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/set-value": {
- "version": "2.0.1",
+ "node_modules/read-pkg-up/node_modules/p-locate": {
+ "version": "4.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "extend-shallow": "^2.0.1",
- "is-extendable": "^0.1.1",
- "is-plain-object": "^2.0.3",
- "split-string": "^3.0.1"
+ "p-limit": "^2.2.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=8"
}
},
- "node_modules/set-value/node_modules/extend-shallow": {
- "version": "2.0.1",
+ "node_modules/read-pkg-up/node_modules/read-pkg": {
+ "version": "5.2.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-extendable": "^0.1.0"
+ "@types/normalize-package-data": "^2.4.0",
+ "normalize-package-data": "^2.5.0",
+ "parse-json": "^5.0.0",
+ "type-fest": "^0.6.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=8"
}
},
- "node_modules/set-value/node_modules/is-extendable": {
- "version": "0.1.1",
+ "node_modules/read-pkg-up/node_modules/read-pkg/node_modules/type-fest": {
+ "version": "0.6.0",
"dev": true,
- "license": "MIT",
+ "license": "(MIT OR CC0-1.0)",
"engines": {
- "node": ">=0.10.0"
+ "node": ">=8"
}
},
- "node_modules/setimmediate": {
- "version": "1.0.5",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/setprototypeof": {
- "version": "1.2.0",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/sha.js": {
- "version": "2.4.11",
+ "node_modules/read-pkg-up/node_modules/semver": {
+ "version": "5.7.2",
"dev": true,
- "license": "(MIT AND BSD-3-Clause)",
- "dependencies": {
- "inherits": "^2.0.1",
- "safe-buffer": "^5.0.1"
- },
+ "license": "ISC",
"bin": {
- "sha.js": "bin.js"
+ "semver": "bin/semver"
}
},
- "node_modules/shallow-clone": {
- "version": "3.0.1",
+ "node_modules/read-pkg-up/node_modules/type-fest": {
+ "version": "0.8.1",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "kind-of": "^6.0.2"
- },
+ "license": "(MIT OR CC0-1.0)",
"engines": {
"node": ">=8"
}
},
- "node_modules/shallowequal": {
- "version": "1.1.0",
+ "node_modules/read-pkg/node_modules/hosted-git-info": {
+ "version": "2.8.9",
"dev": true,
- "license": "MIT"
+ "license": "ISC"
},
- "node_modules/shebang-command": {
- "version": "2.0.0",
+ "node_modules/read-pkg/node_modules/load-json-file": {
+ "version": "4.0.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "shebang-regex": "^3.0.0"
+ "graceful-fs": "^4.1.2",
+ "parse-json": "^4.0.0",
+ "pify": "^3.0.0",
+ "strip-bom": "^3.0.0"
},
"engines": {
- "node": ">=8"
- }
- },
- "node_modules/shebang-regex": {
- "version": "3.0.0",
- "license": "MIT",
- "engines": {
- "node": ">=8"
+ "node": ">=4"
}
},
- "node_modules/side-channel": {
- "version": "1.0.4",
+ "node_modules/read-pkg/node_modules/normalize-package-data": {
+ "version": "2.5.0",
"dev": true,
- "license": "MIT",
+ "license": "BSD-2-Clause",
"dependencies": {
- "call-bind": "^1.0.0",
- "get-intrinsic": "^1.0.2",
- "object-inspect": "^1.9.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "hosted-git-info": "^2.1.4",
+ "resolve": "^1.10.0",
+ "semver": "2 || 3 || 4 || 5",
+ "validate-npm-package-license": "^3.0.1"
}
},
- "node_modules/signal-exit": {
- "version": "3.0.7",
- "license": "ISC"
- },
- "node_modules/simple-swizzle": {
- "version": "0.2.2",
+ "node_modules/read-pkg/node_modules/parse-json": {
+ "version": "4.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-arrayish": "^0.3.1"
+ "error-ex": "^1.3.1",
+ "json-parse-better-errors": "^1.0.1"
+ },
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/simple-swizzle/node_modules/is-arrayish": {
- "version": "0.3.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/sirv": {
- "version": "1.0.19",
+ "node_modules/read-pkg/node_modules/path-type": {
+ "version": "3.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@polka/url": "^1.0.0-next.20",
- "mrmime": "^1.0.0",
- "totalist": "^1.0.0"
+ "pify": "^3.0.0"
},
"engines": {
- "node": ">= 10"
+ "node": ">=4"
}
},
- "node_modules/sisteransi": {
- "version": "1.0.5",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/slash": {
+ "node_modules/read-pkg/node_modules/pify": {
"version": "3.0.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=8"
+ "node": ">=4"
}
},
- "node_modules/smart-buffer": {
- "version": "4.2.0",
+ "node_modules/read-pkg/node_modules/semver": {
+ "version": "5.7.2",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 6.0.0",
- "npm": ">= 3.0.0"
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver"
}
},
- "node_modules/snake-case": {
- "version": "3.0.4",
+ "node_modules/read-pkg/node_modules/strip-bom": {
+ "version": "3.0.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "dot-case": "^3.0.4",
- "tslib": "^2.0.3"
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/snapdragon": {
- "version": "0.8.2",
+ "node_modules/readable-stream": {
+ "version": "3.6.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "base": "^0.11.1",
- "debug": "^2.2.0",
- "define-property": "^0.2.5",
- "extend-shallow": "^2.0.1",
- "map-cache": "^0.2.2",
- "source-map": "^0.5.6",
- "source-map-resolve": "^0.5.0",
- "use": "^3.1.0"
+ "inherits": "^2.0.3",
+ "string_decoder": "^1.1.1",
+ "util-deprecate": "^1.0.1"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 6"
}
},
- "node_modules/snapdragon-node": {
- "version": "2.1.1",
+ "node_modules/readdir-scoped-modules": {
+ "version": "1.1.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "define-property": "^1.0.0",
- "isobject": "^3.0.0",
- "snapdragon-util": "^3.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
+ "debuglog": "^1.0.1",
+ "dezalgo": "^1.0.0",
+ "graceful-fs": "^4.1.2",
+ "once": "^1.3.0"
}
},
- "node_modules/snapdragon-node/node_modules/define-property": {
- "version": "1.0.0",
+ "node_modules/readdirp": {
+ "version": "3.6.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-descriptor": "^1.0.0"
+ "picomatch": "^2.2.1"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=8.10.0"
}
},
- "node_modules/snapdragon-util": {
- "version": "3.0.1",
+ "node_modules/recast": {
+ "version": "0.23.6",
"dev": true,
"license": "MIT",
"dependencies": {
- "kind-of": "^3.2.0"
+ "ast-types": "^0.16.1",
+ "esprima": "~4.0.0",
+ "source-map": "~0.6.1",
+ "tiny-invariant": "^1.3.3",
+ "tslib": "^2.0.1"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 4"
}
},
- "node_modules/snapdragon-util/node_modules/is-buffer": {
- "version": "1.1.6",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/snapdragon-util/node_modules/kind-of": {
- "version": "3.2.2",
+ "node_modules/recast/node_modules/ast-types": {
+ "version": "0.16.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-buffer": "^1.1.5"
+ "tslib": "^2.0.1"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=4"
}
},
- "node_modules/snapdragon/node_modules/debug": {
- "version": "2.6.9",
+ "node_modules/recast/node_modules/source-map": {
+ "version": "0.6.1",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "ms": "2.0.0"
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/snapdragon/node_modules/define-property": {
- "version": "0.2.5",
+ "node_modules/rechoir": {
+ "version": "0.8.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-descriptor": "^0.1.0"
+ "resolve": "^1.20.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 10.13.0"
}
},
- "node_modules/snapdragon/node_modules/extend-shallow": {
- "version": "2.0.1",
+ "node_modules/redent": {
+ "version": "3.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-extendable": "^0.1.0"
+ "indent-string": "^4.0.0",
+ "strip-indent": "^3.0.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=8"
}
},
- "node_modules/snapdragon/node_modules/is-accessor-descriptor": {
- "version": "0.1.6",
+ "node_modules/redent/node_modules/strip-indent": {
+ "version": "3.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "kind-of": "^3.0.2"
+ "min-indent": "^1.0.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=8"
}
},
- "node_modules/snapdragon/node_modules/is-accessor-descriptor/node_modules/kind-of": {
- "version": "3.2.2",
+ "node_modules/reflect.getprototypeof": {
+ "version": "1.0.6",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-buffer": "^1.1.5"
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.1",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.4",
+ "globalthis": "^1.0.3",
+ "which-builtin-type": "^1.1.3"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/snapdragon/node_modules/is-buffer": {
- "version": "1.1.6",
+ "node_modules/regenerate": {
+ "version": "1.4.2",
"dev": true,
"license": "MIT"
},
- "node_modules/snapdragon/node_modules/is-data-descriptor": {
- "version": "0.1.4",
+ "node_modules/regenerate-unicode-properties": {
+ "version": "10.1.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "kind-of": "^3.0.2"
+ "regenerate": "^1.4.2"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=4"
}
},
- "node_modules/snapdragon/node_modules/is-data-descriptor/node_modules/kind-of": {
- "version": "3.2.2",
+ "node_modules/regenerator-runtime": {
+ "version": "0.14.1",
+ "license": "MIT"
+ },
+ "node_modules/regenerator-transform": {
+ "version": "0.15.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
+ "@babel/runtime": "^7.8.4"
}
},
- "node_modules/snapdragon/node_modules/is-descriptor": {
- "version": "0.1.6",
+ "node_modules/regex-parser": {
+ "version": "2.3.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/regexp.prototype.flags": {
+ "version": "1.5.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-accessor-descriptor": "^0.1.6",
- "is-data-descriptor": "^0.1.4",
- "kind-of": "^5.0.0"
+ "call-bind": "^1.0.6",
+ "define-properties": "^1.2.1",
+ "es-errors": "^1.3.0",
+ "set-function-name": "^2.0.1"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/snapdragon/node_modules/is-extendable": {
- "version": "0.1.1",
+ "node_modules/regexpp": {
+ "version": "3.2.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=0.10.0"
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/mysticatea"
}
},
- "node_modules/snapdragon/node_modules/kind-of": {
- "version": "5.1.0",
+ "node_modules/regexpu-core": {
+ "version": "5.3.2",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "@babel/regjsgen": "^0.8.0",
+ "regenerate": "^1.4.2",
+ "regenerate-unicode-properties": "^10.1.0",
+ "regjsparser": "^0.9.1",
+ "unicode-match-property-ecmascript": "^2.0.0",
+ "unicode-match-property-value-ecmascript": "^2.1.0"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": ">=4"
}
},
- "node_modules/snapdragon/node_modules/ms": {
- "version": "2.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/snapdragon/node_modules/source-map-resolve": {
- "version": "0.5.3",
+ "node_modules/registry-auth-token": {
+ "version": "4.2.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "atob": "^2.1.2",
- "decode-uri-component": "^0.2.0",
- "resolve-url": "^0.2.1",
- "source-map-url": "^0.4.0",
- "urix": "^0.1.0"
+ "rc": "1.2.8"
+ },
+ "engines": {
+ "node": ">=6.0.0"
}
},
- "node_modules/socks": {
- "version": "2.6.2",
+ "node_modules/registry-url": {
+ "version": "5.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "ip": "^1.1.5",
- "smart-buffer": "^4.2.0"
+ "rc": "^1.2.8"
},
"engines": {
- "node": ">= 10.13.0",
- "npm": ">= 3.0.0"
+ "node": ">=8"
}
},
- "node_modules/socks-proxy-agent": {
- "version": "6.2.1",
+ "node_modules/regjsparser": {
+ "version": "0.9.1",
"dev": true,
- "license": "MIT",
+ "license": "BSD-2-Clause",
"dependencies": {
- "agent-base": "^6.0.2",
- "debug": "^4.3.3",
- "socks": "^2.6.2"
+ "jsesc": "~0.5.0"
},
- "engines": {
- "node": ">= 10"
+ "bin": {
+ "regjsparser": "bin/parser"
}
},
- "node_modules/sort-keys": {
- "version": "4.2.0",
+ "node_modules/regjsparser/node_modules/jsesc": {
+ "version": "0.5.0",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "is-plain-obj": "^2.0.0"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "bin": {
+ "jsesc": "bin/jsesc"
}
},
- "node_modules/sort-keys/node_modules/is-plain-obj": {
- "version": "2.1.0",
+ "node_modules/relateurl": {
+ "version": "0.2.7",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=8"
+ "node": ">= 0.10"
}
},
- "node_modules/source-list-map": {
+ "node_modules/relative-luminance": {
"version": "2.0.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/source-map": {
- "version": "0.5.7",
- "dev": true,
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.10.0"
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "esm": "^3.0.84"
}
},
- "node_modules/source-map-js": {
- "version": "1.0.2",
- "license": "BSD-3-Clause",
+ "node_modules/release-zalgo": {
+ "version": "1.0.0",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "es6-error": "^4.0.1"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": ">=4"
}
},
- "node_modules/source-map-support": {
- "version": "0.4.18",
+ "node_modules/remark-external-links": {
+ "version": "8.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "source-map": "^0.5.6"
+ "extend": "^3.0.0",
+ "is-absolute-url": "^3.0.0",
+ "mdast-util-definitions": "^4.0.0",
+ "space-separated-tokens": "^1.0.0",
+ "unist-util-visit": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/source-map-url": {
- "version": "0.4.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/space-separated-tokens": {
+ "node_modules/remark-external-links/node_modules/space-separated-tokens": {
"version": "1.1.5",
"dev": true,
"license": "MIT",
@@ -44337,1097 +32666,1166 @@
"url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/spawn-wrap": {
- "version": "2.0.0",
+ "node_modules/remark-external-links/node_modules/unist-util-is": {
+ "version": "4.1.0",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "foreground-child": "^2.0.0",
- "is-windows": "^1.0.2",
- "make-dir": "^3.0.0",
- "rimraf": "^3.0.0",
- "signal-exit": "^3.0.2",
- "which": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/spawn-wrap/node_modules/make-dir": {
- "version": "3.1.0",
+ "node_modules/remark-external-links/node_modules/unist-util-visit": {
+ "version": "2.0.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "semver": "^6.0.0"
- },
- "engines": {
- "node": ">=8"
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0",
+ "unist-util-visit-parents": "^3.0.0"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/spawnd": {
- "version": "5.0.0",
+ "node_modules/remark-external-links/node_modules/unist-util-visit-parents": {
+ "version": "3.1.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "exit": "^0.1.2",
- "signal-exit": "^3.0.3",
- "tree-kill": "^1.2.2",
- "wait-port": "^0.2.9"
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/spdx-correct": {
- "version": "3.1.1",
- "dev": true,
- "license": "Apache-2.0",
+ "node_modules/remark-gfm": {
+ "version": "3.0.1",
+ "license": "MIT",
"dependencies": {
- "spdx-expression-parse": "^3.0.0",
- "spdx-license-ids": "^3.0.0"
+ "@types/mdast": "^3.0.0",
+ "mdast-util-gfm": "^2.0.0",
+ "micromark-extension-gfm": "^2.0.0",
+ "unified": "^10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/spdx-exceptions": {
+ "node_modules/remark-mdx": {
"version": "2.3.0",
- "dev": true,
- "license": "CC-BY-3.0"
- },
- "node_modules/spdx-expression-parse": {
- "version": "3.0.1",
- "dev": true,
"license": "MIT",
"dependencies": {
- "spdx-exceptions": "^2.1.0",
- "spdx-license-ids": "^3.0.0"
+ "mdast-util-mdx": "^2.0.0",
+ "micromark-extension-mdxjs": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/spdx-license-ids": {
- "version": "3.0.11",
- "dev": true,
- "license": "CC0-1.0"
- },
- "node_modules/split": {
- "version": "1.0.1",
- "dev": true,
+ "node_modules/remark-mdx-code-meta": {
+ "version": "1.0.0",
"license": "MIT",
"dependencies": {
- "through": "2"
+ "acorn": "^8.2.4",
+ "acorn-jsx": "^5.3.1",
+ "estree-util-is-identifier-name": "^1.1.0",
+ "hast-util-to-string": "^1.0.4",
+ "unist-util-visit": "^2.0.3"
},
"engines": {
- "node": "*"
+ "node": ">=12.2.0"
}
},
- "node_modules/split-on-first": {
- "version": "1.1.0",
- "dev": true,
+ "node_modules/remark-mdx-code-meta/node_modules/acorn": {
+ "version": "8.11.3",
"license": "MIT",
+ "bin": {
+ "acorn": "bin/acorn"
+ },
"engines": {
- "node": ">=6"
+ "node": ">=0.4.0"
}
},
- "node_modules/split-string": {
- "version": "3.1.0",
- "dev": true,
+ "node_modules/remark-mdx-code-meta/node_modules/estree-util-is-identifier-name": {
+ "version": "1.1.0",
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/remark-mdx-code-meta/node_modules/unist-util-is": {
+ "version": "4.1.0",
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remark-mdx-code-meta/node_modules/unist-util-visit": {
+ "version": "2.0.3",
"license": "MIT",
"dependencies": {
- "extend-shallow": "^3.0.0"
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0",
+ "unist-util-visit-parents": "^3.0.0"
},
- "engines": {
- "node": ">=0.10.0"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/split2": {
- "version": "3.2.2",
- "dev": true,
- "license": "ISC",
+ "node_modules/remark-mdx-code-meta/node_modules/unist-util-visit-parents": {
+ "version": "3.1.1",
+ "license": "MIT",
"dependencies": {
- "readable-stream": "^3.0.0"
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/sprintf-js": {
- "version": "1.0.3",
- "license": "BSD-3-Clause"
- },
- "node_modules/sshpk": {
- "version": "1.17.0",
- "dev": true,
+ "node_modules/remark-parse": {
+ "version": "10.0.2",
"license": "MIT",
"dependencies": {
- "asn1": "~0.2.3",
- "assert-plus": "^1.0.0",
- "bcrypt-pbkdf": "^1.0.0",
- "dashdash": "^1.12.0",
- "ecc-jsbn": "~0.1.1",
- "getpass": "^0.1.1",
- "jsbn": "~0.1.0",
- "safer-buffer": "^2.0.2",
- "tweetnacl": "~0.14.0"
+ "@types/mdast": "^3.0.0",
+ "mdast-util-from-markdown": "^1.0.0",
+ "unified": "^10.0.0"
},
- "bin": {
- "sshpk-conv": "bin/sshpk-conv",
- "sshpk-sign": "bin/sshpk-sign",
- "sshpk-verify": "bin/sshpk-verify"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remark-rehype": {
+ "version": "10.1.0",
+ "license": "MIT",
+ "dependencies": {
+ "@types/hast": "^2.0.0",
+ "@types/mdast": "^3.0.0",
+ "mdast-util-to-hast": "^12.1.0",
+ "unified": "^10.0.0"
},
- "engines": {
- "node": ">=0.10.0"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/ssri": {
- "version": "8.0.1",
+ "node_modules/remark-slug": {
+ "version": "6.1.0",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "minipass": "^3.1.1"
+ "github-slugger": "^1.0.0",
+ "mdast-util-to-string": "^1.0.0",
+ "unist-util-visit": "^2.0.0"
},
- "engines": {
- "node": ">= 8"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/stable": {
- "version": "0.1.8",
+ "node_modules/remark-slug/node_modules/mdast-util-to-string": {
+ "version": "1.1.0",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
},
- "node_modules/stack-trace": {
- "version": "0.0.10",
+ "node_modules/remark-slug/node_modules/unist-util-is": {
+ "version": "4.1.0",
"dev": true,
"license": "MIT",
- "engines": {
- "node": "*"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/stack-utils": {
- "version": "2.0.5",
+ "node_modules/remark-slug/node_modules/unist-util-visit": {
+ "version": "2.0.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "escape-string-regexp": "^2.0.0"
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0",
+ "unist-util-visit-parents": "^3.0.0"
},
- "engines": {
- "node": ">=10"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/stack-utils/node_modules/escape-string-regexp": {
- "version": "2.0.0",
+ "node_modules/remark-slug/node_modules/unist-util-visit-parents": {
+ "version": "3.1.1",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/stackframe": {
- "version": "1.2.1",
- "dev": true,
+ "node_modules/remove-accents": {
+ "version": "0.4.2",
"license": "MIT"
},
- "node_modules/state-toggle": {
- "version": "1.0.3",
+ "node_modules/renderkid": {
+ "version": "3.0.0",
"dev": true,
"license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "dependencies": {
+ "css-select": "^4.1.3",
+ "dom-converter": "^0.2.0",
+ "htmlparser2": "^6.1.0",
+ "lodash": "^4.17.21",
+ "strip-ansi": "^6.0.1"
}
},
- "node_modules/static-extend": {
- "version": "0.1.2",
+ "node_modules/renderkid/node_modules/css-select": {
+ "version": "4.3.0",
"dev": true,
- "license": "MIT",
+ "license": "BSD-2-Clause",
"dependencies": {
- "define-property": "^0.2.5",
- "object-copy": "^0.1.0"
+ "boolbase": "^1.0.0",
+ "css-what": "^6.0.1",
+ "domhandler": "^4.3.1",
+ "domutils": "^2.8.0",
+ "nth-check": "^2.0.1"
},
- "engines": {
- "node": ">=0.10.0"
+ "funding": {
+ "url": "https://github.com/sponsors/fb55"
}
},
- "node_modules/static-extend/node_modules/define-property": {
- "version": "0.2.5",
+ "node_modules/renderkid/node_modules/dom-serializer": {
+ "version": "1.4.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-descriptor": "^0.1.0"
+ "domelementtype": "^2.0.1",
+ "domhandler": "^4.2.0",
+ "entities": "^2.0.0"
},
- "engines": {
- "node": ">=0.10.0"
+ "funding": {
+ "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1"
}
},
- "node_modules/static-extend/node_modules/is-accessor-descriptor": {
- "version": "0.1.6",
+ "node_modules/renderkid/node_modules/domhandler": {
+ "version": "4.3.1",
"dev": true,
- "license": "MIT",
+ "license": "BSD-2-Clause",
"dependencies": {
- "kind-of": "^3.0.2"
+ "domelementtype": "^2.2.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 4"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/domhandler?sponsor=1"
}
},
- "node_modules/static-extend/node_modules/is-accessor-descriptor/node_modules/kind-of": {
- "version": "3.2.2",
+ "node_modules/renderkid/node_modules/domutils": {
+ "version": "2.8.0",
"dev": true,
- "license": "MIT",
+ "license": "BSD-2-Clause",
"dependencies": {
- "is-buffer": "^1.1.5"
+ "dom-serializer": "^1.0.1",
+ "domelementtype": "^2.2.0",
+ "domhandler": "^4.2.0"
},
- "engines": {
- "node": ">=0.10.0"
+ "funding": {
+ "url": "https://github.com/fb55/domutils?sponsor=1"
}
},
- "node_modules/static-extend/node_modules/is-buffer": {
- "version": "1.1.6",
+ "node_modules/renderkid/node_modules/entities": {
+ "version": "2.2.0",
"dev": true,
- "license": "MIT"
+ "license": "BSD-2-Clause",
+ "funding": {
+ "url": "https://github.com/fb55/entities?sponsor=1"
+ }
},
- "node_modules/static-extend/node_modules/is-data-descriptor": {
- "version": "0.1.4",
+ "node_modules/renderkid/node_modules/htmlparser2": {
+ "version": "6.1.0",
"dev": true,
+ "funding": [
+ "https://github.com/fb55/htmlparser2?sponsor=1",
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/fb55"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "kind-of": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
+ "domelementtype": "^2.0.1",
+ "domhandler": "^4.0.0",
+ "domutils": "^2.5.2",
+ "entities": "^2.0.0"
}
},
- "node_modules/static-extend/node_modules/is-data-descriptor/node_modules/kind-of": {
- "version": "3.2.2",
+ "node_modules/repeat-string": {
+ "version": "1.6.1",
"dev": true,
"license": "MIT",
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
"engines": {
- "node": ">=0.10.0"
+ "node": ">=0.10"
}
},
- "node_modules/static-extend/node_modules/is-descriptor": {
- "version": "0.1.6",
+ "node_modules/request": {
+ "version": "2.88.2",
"dev": true,
- "license": "MIT",
+ "license": "Apache-2.0",
"dependencies": {
- "is-accessor-descriptor": "^0.1.6",
- "is-data-descriptor": "^0.1.4",
- "kind-of": "^5.0.0"
+ "aws-sign2": "~0.7.0",
+ "aws4": "^1.8.0",
+ "caseless": "~0.12.0",
+ "combined-stream": "~1.0.6",
+ "extend": "~3.0.2",
+ "forever-agent": "~0.6.1",
+ "form-data": "~2.3.2",
+ "har-validator": "~5.1.3",
+ "http-signature": "~1.2.0",
+ "is-typedarray": "~1.0.0",
+ "isstream": "~0.1.2",
+ "json-stringify-safe": "~5.0.1",
+ "mime-types": "~2.1.19",
+ "oauth-sign": "~0.9.0",
+ "performance-now": "^2.1.0",
+ "qs": "~6.5.2",
+ "safe-buffer": "^5.1.2",
+ "tough-cookie": "~2.5.0",
+ "tunnel-agent": "^0.6.0",
+ "uuid": "^3.3.2"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 6"
}
},
- "node_modules/static-extend/node_modules/kind-of": {
- "version": "5.1.0",
+ "node_modules/request-promise-core": {
+ "version": "1.1.4",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
+ "dependencies": {
+ "lodash": "^4.17.19"
+ },
"engines": {
"node": ">=0.10.0"
+ },
+ "peerDependencies": {
+ "request": "^2.34"
}
},
- "node_modules/statuses": {
- "version": "1.5.0",
+ "node_modules/request-promise-native": {
+ "version": "1.0.9",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
+ "dependencies": {
+ "request-promise-core": "1.1.4",
+ "stealthy-require": "^1.1.1",
+ "tough-cookie": "^2.3.3"
+ },
"engines": {
- "node": ">= 0.6"
+ "node": ">=0.12.0"
+ },
+ "peerDependencies": {
+ "request": "^2.34"
}
},
- "node_modules/stealthy-require": {
- "version": "1.1.1",
+ "node_modules/request-promise-native/node_modules/tough-cookie": {
+ "version": "2.5.0",
"dev": true,
- "license": "ISC",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "psl": "^1.1.28",
+ "punycode": "^2.1.1"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": ">=0.8"
}
},
- "node_modules/stop-iteration-iterator": {
- "version": "1.0.0",
+ "node_modules/request/node_modules/form-data": {
+ "version": "2.3.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "internal-slot": "^1.0.4"
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.6",
+ "mime-types": "^2.1.12"
},
"engines": {
- "node": ">= 0.4"
+ "node": ">= 0.12"
}
},
- "node_modules/store2": {
- "version": "2.13.1",
- "dev": true,
- "license": "(MIT OR GPL-3.0)"
- },
- "node_modules/storybook-addon-themes": {
- "version": "6.1.0",
+ "node_modules/request/node_modules/qs": {
+ "version": "6.5.3",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "@storybook/addons": "^6.0.0",
- "@storybook/api": "^6.0.0",
- "@storybook/components": "^6.0.0",
- "@storybook/core-events": "^6.0.0",
- "@storybook/theming": "^6.0.0",
- "core-js": "^3.6.4",
- "global": "^4.4.0",
- "memoizerific": "^1.11.3"
- },
- "peerDependenciesMeta": {
- "react": {
- "optional": true
- },
- "svelte": {
- "optional": true
- },
- "vue": {
- "optional": true
- }
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=0.6"
}
},
- "node_modules/storybook-dark-mode": {
- "version": "2.1.1",
+ "node_modules/request/node_modules/tough-cookie": {
+ "version": "2.5.0",
"dev": true,
- "license": "MIT",
+ "license": "BSD-3-Clause",
"dependencies": {
- "@storybook/addons": "^6.5.14",
- "@storybook/api": "^6.5.14",
- "@storybook/components": "^6.5.14",
- "@storybook/core-events": "^6.5.14",
- "@storybook/global": "^5.0.0",
- "@storybook/theming": "^6.5.14",
- "fast-deep-equal": "^3.1.3",
- "memoizerific": "^1.11.3"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ "psl": "^1.1.28",
+ "punycode": "^2.1.1"
},
- "peerDependenciesMeta": {
- "react": {
- "optional": true
- },
- "react-dom": {
- "optional": true
- }
+ "engines": {
+ "node": ">=0.8"
}
},
- "node_modules/stream-browserify": {
- "version": "2.0.2",
+ "node_modules/request/node_modules/uuid": {
+ "version": "3.4.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "inherits": "~2.0.1",
- "readable-stream": "^2.0.2"
+ "bin": {
+ "uuid": "bin/uuid"
}
},
- "node_modules/stream-browserify/node_modules/isarray": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/stream-browserify/node_modules/readable-stream": {
- "version": "2.3.8",
- "dev": true,
+ "node_modules/require-directory": {
+ "version": "2.1.1",
"license": "MIT",
- "dependencies": {
- "core-util-is": "~1.0.0",
- "inherits": "~2.0.3",
- "isarray": "~1.0.0",
- "process-nextick-args": "~2.0.0",
- "safe-buffer": "~5.1.1",
- "string_decoder": "~1.1.1",
- "util-deprecate": "~1.0.1"
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/stream-browserify/node_modules/string_decoder": {
- "version": "1.1.1",
+ "node_modules/require-from-string": {
+ "version": "2.0.2",
"dev": true,
"license": "MIT",
- "dependencies": {
- "safe-buffer": "~5.1.0"
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/stream-each": {
- "version": "1.2.3",
+ "node_modules/require-main-filename": {
+ "version": "2.0.0",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "end-of-stream": "^1.1.0",
- "stream-shift": "^1.0.0"
- }
+ "license": "ISC"
},
- "node_modules/stream-http": {
- "version": "2.8.3",
+ "node_modules/requireindex": {
+ "version": "1.2.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "builtin-status-codes": "^3.0.0",
- "inherits": "^2.0.1",
- "readable-stream": "^2.3.6",
- "to-arraybuffer": "^1.0.0",
- "xtend": "^4.0.0"
+ "engines": {
+ "node": ">=0.10.5"
}
},
- "node_modules/stream-http/node_modules/isarray": {
+ "node_modules/requires-port": {
"version": "1.0.0",
"dev": true,
"license": "MIT"
},
- "node_modules/stream-http/node_modules/readable-stream": {
- "version": "2.3.8",
+ "node_modules/resolve": {
+ "version": "1.22.8",
"dev": true,
"license": "MIT",
"dependencies": {
- "core-util-is": "~1.0.0",
- "inherits": "~2.0.3",
- "isarray": "~1.0.0",
- "process-nextick-args": "~2.0.0",
- "safe-buffer": "~5.1.1",
- "string_decoder": "~1.1.1",
- "util-deprecate": "~1.0.1"
+ "is-core-module": "^2.13.0",
+ "path-parse": "^1.0.7",
+ "supports-preserve-symlinks-flag": "^1.0.0"
+ },
+ "bin": {
+ "resolve": "bin/resolve"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/stream-http/node_modules/string_decoder": {
- "version": "1.1.1",
+ "node_modules/resolve-async": {
+ "version": "1.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "safe-buffer": "~5.1.0"
+ "resolve": "^1.3.3",
+ "typeable-promisify": "^1.0.1"
}
},
- "node_modules/stream-shift": {
- "version": "1.0.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/strict-uri-encode": {
- "version": "2.0.0",
+ "node_modules/resolve-cwd": {
+ "version": "3.0.0",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "resolve-from": "^5.0.0"
+ },
"engines": {
- "node": ">=4"
+ "node": ">=8"
}
},
- "node_modules/string_decoder": {
- "version": "1.3.0",
+ "node_modules/resolve-dir": {
+ "version": "0.1.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "safe-buffer": "~5.2.0"
+ "expand-tilde": "^1.2.2",
+ "global-modules": "^0.2.3"
+ },
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/string_decoder/node_modules/safe-buffer": {
- "version": "5.2.1",
- "dev": true,
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "MIT"
- },
- "node_modules/string-length": {
- "version": "4.0.2",
+ "node_modules/resolve-dir/node_modules/expand-tilde": {
+ "version": "1.2.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "char-regex": "^1.0.2",
- "strip-ansi": "^6.0.0"
+ "os-homedir": "^1.0.1"
},
"engines": {
- "node": ">=10"
+ "node": ">=0.10.0"
}
},
- "node_modules/string-width": {
- "version": "4.2.3",
+ "node_modules/resolve-from": {
+ "version": "5.0.0",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "emoji-regex": "^8.0.0",
- "is-fullwidth-code-point": "^3.0.0",
- "strip-ansi": "^6.0.1"
- },
"engines": {
"node": ">=8"
}
},
- "node_modules/string.prototype.matchall": {
- "version": "4.0.7",
+ "node_modules/resolve-pkg-maps": {
+ "version": "1.0.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.19.1",
- "get-intrinsic": "^1.1.1",
- "has-symbols": "^1.0.3",
- "internal-slot": "^1.0.3",
- "regexp.prototype.flags": "^1.4.1",
- "side-channel": "^1.0.4"
- },
"funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1"
}
},
- "node_modules/string.prototype.padend": {
- "version": "3.1.4",
+ "node_modules/resolve-url-loader": {
+ "version": "5.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
+ "adjust-sourcemap-loader": "^4.0.0",
+ "convert-source-map": "^1.7.0",
+ "loader-utils": "^2.0.0",
+ "postcss": "^8.2.14",
+ "source-map": "0.6.1"
},
"engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "node": ">=12"
}
},
- "node_modules/string.prototype.padstart": {
- "version": "3.1.4",
+ "node_modules/resolve-url-loader/node_modules/convert-source-map": {
+ "version": "1.9.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/resolve-url-loader/node_modules/loader-utils": {
+ "version": "2.0.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
+ "big.js": "^5.2.2",
+ "emojis-list": "^3.0.0",
+ "json5": "^2.1.2"
},
"engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "node": ">=8.9.0"
}
},
- "node_modules/string.prototype.trim": {
- "version": "1.2.5",
+ "node_modules/resolve-url-loader/node_modules/source-map": {
+ "version": "0.6.1",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/resolve.exports": {
+ "version": "2.0.2",
"dev": true,
"license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.19.1"
- },
"engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "node": ">=10"
}
},
- "node_modules/string.prototype.trimend": {
- "version": "1.0.6",
+ "node_modules/responselike": {
+ "version": "1.0.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "lowercase-keys": "^1.0.0"
}
},
- "node_modules/string.prototype.trimstart": {
- "version": "1.0.6",
+ "node_modules/restore-cursor": {
+ "version": "3.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
+ "onetime": "^5.1.0",
+ "signal-exit": "^3.0.2"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/stringify-entities": {
- "version": "4.0.3",
+ "node_modules/ret": {
+ "version": "0.1.15",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "character-entities-html4": "^2.0.0",
- "character-entities-legacy": "^3.0.0"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "engines": {
+ "node": ">=0.12"
}
},
- "node_modules/stringify-entities/node_modules/character-entities-legacy": {
- "version": "3.0.0",
+ "node_modules/retry": {
+ "version": "0.12.0",
+ "dev": true,
"license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "engines": {
+ "node": ">= 4"
}
},
- "node_modules/stringify-object": {
- "version": "4.0.1",
- "license": "BSD-2-Clause",
- "dependencies": {
- "get-own-enumerable-property-symbols": "^3.0.2",
- "is-obj": "^3.0.0",
- "is-regexp": "^3.0.0"
+ "node_modules/reusify": {
+ "version": "1.0.4",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "iojs": ">=1.0.0",
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/right-align": {
+ "version": "0.1.3",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "align-text": "^0.1.1"
},
"engines": {
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ "node": ">=0.10.0"
}
},
- "node_modules/stringify-object/node_modules/is-obj": {
- "version": "3.0.0",
- "license": "MIT",
- "engines": {
- "node": ">=12"
+ "node_modules/rimraf": {
+ "version": "3.0.2",
+ "license": "ISC",
+ "dependencies": {
+ "glob": "^7.1.3"
+ },
+ "bin": {
+ "rimraf": "bin.js"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/strip-ansi": {
- "version": "6.0.1",
+ "node_modules/ripemd160": {
+ "version": "2.0.2",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "ansi-regex": "^5.0.1"
- },
- "engines": {
- "node": ">=8"
+ "hash-base": "^3.0.0",
+ "inherits": "^2.0.1"
}
},
- "node_modules/strip-bom": {
- "version": "4.0.0",
+ "node_modules/rollup": {
+ "version": "2.79.1",
"dev": true,
"license": "MIT",
+ "bin": {
+ "rollup": "dist/bin/rollup"
+ },
"engines": {
- "node": ">=8"
+ "node": ">=10.0.0"
+ },
+ "optionalDependencies": {
+ "fsevents": "~2.3.2"
}
},
- "node_modules/strip-bom-string": {
- "version": "1.0.0",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "node_modules/rst-selector-parser": {
+ "version": "2.2.3",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "lodash.flattendeep": "^4.4.0",
+ "nearley": "^2.7.10"
}
},
- "node_modules/strip-comments": {
- "version": "2.0.1",
+ "node_modules/run-async": {
+ "version": "2.4.1",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=10"
+ "node": ">=0.12.0"
}
},
- "node_modules/strip-eof": {
- "version": "1.0.0",
+ "node_modules/run-parallel": {
+ "version": "1.2.0",
"dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "queue-microtask": "^1.2.2"
}
},
- "node_modules/strip-final-newline": {
- "version": "2.0.0",
+ "node_modules/rx-lite": {
+ "version": "4.0.8",
+ "dev": true
+ },
+ "node_modules/rx-lite-aggregates": {
+ "version": "4.0.8",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
+ "dependencies": {
+ "rx-lite": "*"
}
},
- "node_modules/strip-indent": {
- "version": "3.0.0",
- "license": "MIT",
+ "node_modules/rxjs": {
+ "version": "6.6.7",
+ "dev": true,
+ "license": "Apache-2.0",
"dependencies": {
- "min-indent": "^1.0.0"
+ "tslib": "^1.9.0"
},
"engines": {
- "node": ">=8"
+ "npm": ">=2.0.0"
}
},
- "node_modules/strip-json-comments": {
- "version": "3.1.1",
+ "node_modules/rxjs/node_modules/tslib": {
+ "version": "1.14.1",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
+ "license": "0BSD"
},
- "node_modules/strong-log-transformer": {
- "version": "2.1.0",
- "dev": true,
- "license": "Apache-2.0",
+ "node_modules/sade": {
+ "version": "1.8.1",
+ "license": "MIT",
"dependencies": {
- "duplexer": "^0.1.1",
- "minimist": "^1.2.0",
- "through": "^2.3.4"
- },
- "bin": {
- "sl-log-transformer": "bin/sl-log-transformer.js"
+ "mri": "^1.1.0"
},
"engines": {
- "node": ">=4"
+ "node": ">=6"
}
},
- "node_modules/style-loader": {
- "version": "1.3.0",
+ "node_modules/safe-array-concat": {
+ "version": "1.1.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "loader-utils": "^2.0.0",
- "schema-utils": "^2.7.0"
+ "call-bind": "^1.0.7",
+ "get-intrinsic": "^1.2.4",
+ "has-symbols": "^1.0.3",
+ "isarray": "^2.0.5"
},
"engines": {
- "node": ">= 8.9.0"
+ "node": ">=0.4"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^4.0.0 || ^5.0.0"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/style-loader/node_modules/schema-utils": {
- "version": "2.7.1",
+ "node_modules/safe-buffer": {
+ "version": "5.2.1",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/safe-regex-test": {
+ "version": "1.0.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "@types/json-schema": "^7.0.5",
- "ajv": "^6.12.4",
- "ajv-keywords": "^3.5.2"
+ "call-bind": "^1.0.6",
+ "es-errors": "^1.3.0",
+ "is-regex": "^1.1.4"
},
"engines": {
- "node": ">= 8.9.0"
+ "node": ">= 0.4"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/style-mod": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/style-mod/-/style-mod-4.1.0.tgz",
- "integrity": "sha512-Ca5ib8HrFn+f+0n4N4ScTIA9iTOQ7MaGS1ylHcoVqW9J7w2w8PzN6g9gKmTYgGEBH8e120+RCmhpje6jC5uGWA=="
- },
- "node_modules/style-to-object": {
- "version": "0.3.0",
+ "node_modules/safe-stable-stringify": {
+ "version": "2.4.3",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "inline-style-parser": "0.1.1"
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/styled-jsx": {
- "version": "5.0.7",
+ "node_modules/safer-buffer": {
+ "version": "2.1.2",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/sass-loader": {
+ "version": "12.6.0",
+ "dev": true,
"license": "MIT",
+ "dependencies": {
+ "klona": "^2.0.4",
+ "neo-async": "^2.6.2"
+ },
"engines": {
- "node": ">= 12.0.0"
+ "node": ">= 12.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
},
"peerDependencies": {
- "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0"
+ "fibers": ">= 3.1.0",
+ "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0",
+ "sass": "^1.3.0",
+ "sass-embedded": "*",
+ "webpack": "^5.0.0"
},
"peerDependenciesMeta": {
- "@babel/core": {
+ "fibers": {
"optional": true
},
- "babel-plugin-macros": {
+ "node-sass": {
+ "optional": true
+ },
+ "sass": {
+ "optional": true
+ },
+ "sass-embedded": {
"optional": true
}
}
},
- "node_modules/sucrase": {
- "version": "3.32.0",
+ "node_modules/saxes": {
+ "version": "3.1.11",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "@jridgewell/gen-mapping": "^0.3.2",
- "commander": "^4.0.0",
- "glob": "7.1.6",
- "lines-and-columns": "^1.1.6",
- "mz": "^2.7.0",
- "pirates": "^4.0.1",
- "ts-interface-checker": "^0.1.9"
- },
- "bin": {
- "sucrase": "bin/sucrase",
- "sucrase-node": "bin/sucrase-node"
+ "xmlchars": "^2.1.1"
},
"engines": {
"node": ">=8"
}
},
- "node_modules/sucrase/node_modules/commander": {
- "version": "4.1.1",
- "dev": true,
+ "node_modules/scheduler": {
+ "version": "0.23.0",
"license": "MIT",
- "engines": {
- "node": ">= 6"
+ "dependencies": {
+ "loose-envify": "^1.1.0"
}
},
- "node_modules/sucrase/node_modules/glob": {
- "version": "7.1.6",
+ "node_modules/schema-utils": {
+ "version": "3.3.0",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.0.4",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
+ "@types/json-schema": "^7.0.8",
+ "ajv": "^6.12.5",
+ "ajv-keywords": "^3.5.2"
},
"engines": {
- "node": "*"
+ "node": ">= 10.13.0"
},
"funding": {
- "url": "https://github.com/sponsors/isaacs"
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
}
},
- "node_modules/supports-color": {
- "version": "5.5.0",
+ "node_modules/section-matter": {
+ "version": "1.0.0",
"license": "MIT",
"dependencies": {
- "has-flag": "^3.0.0"
+ "extend-shallow": "^2.0.1",
+ "kind-of": "^6.0.0"
},
"engines": {
"node": ">=4"
}
},
- "node_modules/supports-hyperlinks": {
- "version": "2.3.0",
+ "node_modules/semver": {
+ "version": "6.3.1",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ }
+ },
+ "node_modules/semver-diff": {
+ "version": "3.1.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0",
- "supports-color": "^7.0.0"
+ "semver": "^6.3.0"
},
"engines": {
"node": ">=8"
}
},
- "node_modules/supports-hyperlinks/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/send": {
+ "version": "0.18.0",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "debug": "2.6.9",
+ "depd": "2.0.0",
+ "destroy": "1.2.0",
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "etag": "~1.8.1",
+ "fresh": "0.5.2",
+ "http-errors": "2.0.0",
+ "mime": "1.6.0",
+ "ms": "2.1.3",
+ "on-finished": "2.4.1",
+ "range-parser": "~1.2.1",
+ "statuses": "2.0.1"
+ },
"engines": {
- "node": ">=8"
+ "node": ">= 0.8.0"
}
},
- "node_modules/supports-hyperlinks/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/send/node_modules/debug": {
+ "version": "2.6.9",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
+ "ms": "2.0.0"
}
},
- "node_modules/supports-preserve-symlinks-flag": {
- "version": "1.0.0",
+ "node_modules/send/node_modules/debug/node_modules/ms": {
+ "version": "2.0.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/send/node_modules/ms": {
+ "version": "2.1.3",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/sentence-case": {
+ "version": "3.0.4",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "dependencies": {
+ "no-case": "^3.0.4",
+ "tslib": "^2.0.3",
+ "upper-case-first": "^2.0.2"
}
},
- "node_modules/symbol-tree": {
- "version": "3.2.4",
+ "node_modules/serialize-javascript": {
+ "version": "6.0.2",
"dev": true,
- "license": "MIT"
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "randombytes": "^2.1.0"
+ }
},
- "node_modules/symbol.prototype.description": {
- "version": "1.0.5",
+ "node_modules/serve-static": {
+ "version": "1.15.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "get-symbol-description": "^1.0.0",
- "has-symbols": "^1.0.2",
- "object.getownpropertydescriptors": "^2.1.2"
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "parseurl": "~1.3.3",
+ "send": "0.18.0"
},
"engines": {
- "node": ">= 0.11.15"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "node": ">= 0.8.0"
}
},
- "node_modules/synchronous-promise": {
- "version": "2.0.17",
+ "node_modules/set-blocking": {
+ "version": "2.0.0",
"dev": true,
- "license": "BSD-3-Clause"
- },
- "node_modules/tabbable": {
- "version": "5.3.3",
- "license": "MIT"
+ "license": "ISC"
},
- "node_modules/tailwindcss": {
- "version": "3.3.2",
+ "node_modules/set-function-length": {
+ "version": "1.2.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "@alloc/quick-lru": "^5.2.0",
- "arg": "^5.0.2",
- "chokidar": "^3.5.3",
- "didyoumean": "^1.2.2",
- "dlv": "^1.1.3",
- "fast-glob": "^3.2.12",
- "glob-parent": "^6.0.2",
- "is-glob": "^4.0.3",
- "jiti": "^1.18.2",
- "lilconfig": "^2.1.0",
- "micromatch": "^4.0.5",
- "normalize-path": "^3.0.0",
- "object-hash": "^3.0.0",
- "picocolors": "^1.0.0",
- "postcss": "^8.4.23",
- "postcss-import": "^15.1.0",
- "postcss-js": "^4.0.1",
- "postcss-load-config": "^4.0.1",
- "postcss-nested": "^6.0.1",
- "postcss-selector-parser": "^6.0.11",
- "postcss-value-parser": "^4.2.0",
- "resolve": "^1.22.2",
- "sucrase": "^3.32.0"
+ "define-data-property": "^1.1.4",
+ "es-errors": "^1.3.0",
+ "function-bind": "^1.1.2",
+ "get-intrinsic": "^1.2.4",
+ "gopd": "^1.0.1",
+ "has-property-descriptors": "^1.0.2"
},
- "bin": {
- "tailwind": "lib/cli.js",
- "tailwindcss": "lib/cli.js"
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/set-function-name": {
+ "version": "2.0.2",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "define-data-property": "^1.1.4",
+ "es-errors": "^1.3.0",
+ "functions-have-names": "^1.2.3",
+ "has-property-descriptors": "^1.0.2"
},
"engines": {
- "node": ">=14.0.0"
+ "node": ">= 0.4"
}
},
- "node_modules/tailwindcss/node_modules/picocolors": {
- "version": "1.0.0",
+ "node_modules/setimmediate": {
+ "version": "1.0.5",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/setprototypeof": {
+ "version": "1.2.0",
"dev": true,
"license": "ISC"
},
- "node_modules/tailwindcss/node_modules/postcss": {
- "version": "8.4.24",
+ "node_modules/sha.js": {
+ "version": "2.4.11",
+ "dev": true,
+ "license": "(MIT AND BSD-3-Clause)",
+ "dependencies": {
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.0.1"
+ },
+ "bin": {
+ "sha.js": "bin.js"
+ }
+ },
+ "node_modules/shallow-clone": {
+ "version": "3.0.1",
"dev": true,
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/postcss"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
"license": "MIT",
"dependencies": {
- "nanoid": "^3.3.6",
- "picocolors": "^1.0.0",
- "source-map-js": "^1.0.2"
+ "kind-of": "^6.0.2"
},
"engines": {
- "node": "^10 || ^12 || >=14"
+ "node": ">=8"
}
},
- "node_modules/tailwindcss/node_modules/postcss-load-config": {
- "version": "4.0.1",
+ "node_modules/sharp": {
+ "version": "0.32.6",
"dev": true,
- "license": "MIT",
+ "hasInstallScript": true,
+ "license": "Apache-2.0",
"dependencies": {
- "lilconfig": "^2.0.5",
- "yaml": "^2.1.1"
+ "color": "^4.2.3",
+ "detect-libc": "^2.0.2",
+ "node-addon-api": "^6.1.0",
+ "prebuild-install": "^7.1.1",
+ "semver": "^7.5.4",
+ "simple-get": "^4.0.1",
+ "tar-fs": "^3.0.4",
+ "tunnel-agent": "^0.6.0"
},
"engines": {
- "node": ">= 14"
+ "node": ">=14.15.0"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
- },
- "peerDependencies": {
- "postcss": ">=8.0.9",
- "ts-node": ">=9.0.0"
- },
- "peerDependenciesMeta": {
- "postcss": {
- "optional": true
- },
- "ts-node": {
- "optional": true
- }
+ "url": "https://opencollective.com/libvips"
}
},
- "node_modules/tailwindcss/node_modules/yaml": {
- "version": "2.3.1",
+ "node_modules/sharp/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
"license": "ISC",
+ "dependencies": {
+ "yallist": "^4.0.0"
+ },
"engines": {
- "node": ">= 14"
+ "node": ">=10"
}
},
- "node_modules/tapable": {
- "version": "1.1.3",
+ "node_modules/sharp/node_modules/node-addon-api": {
+ "version": "6.1.0",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
+ "license": "MIT"
},
- "node_modules/tar": {
- "version": "6.1.11",
+ "node_modules/sharp/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
"license": "ISC",
"dependencies": {
- "chownr": "^2.0.0",
- "fs-minipass": "^2.0.0",
- "minipass": "^3.0.0",
- "minizlib": "^2.1.1",
- "mkdirp": "^1.0.3",
- "yallist": "^4.0.0"
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
},
"engines": {
- "node": ">= 10"
+ "node": ">=10"
}
},
- "node_modules/tar-stream": {
- "version": "2.2.0",
+ "node_modules/sharp/node_modules/yallist": {
+ "version": "4.0.0",
"dev": true,
+ "license": "ISC"
+ },
+ "node_modules/shebang-command": {
+ "version": "2.0.0",
"license": "MIT",
"dependencies": {
- "bl": "^4.0.3",
- "end-of-stream": "^1.4.1",
- "fs-constants": "^1.0.0",
- "inherits": "^2.0.3",
- "readable-stream": "^3.1.1"
+ "shebang-regex": "^3.0.0"
},
"engines": {
- "node": ">=6"
+ "node": ">=8"
}
},
- "node_modules/tar-stream/node_modules/bl": {
- "version": "4.1.0",
+ "node_modules/shebang-regex": {
+ "version": "3.0.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/side-channel": {
+ "version": "1.0.6",
"dev": true,
"license": "MIT",
"dependencies": {
- "buffer": "^5.5.0",
- "inherits": "^2.0.4",
- "readable-stream": "^3.4.0"
+ "call-bind": "^1.0.7",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.4",
+ "object-inspect": "^1.13.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/tar-stream/node_modules/buffer": {
- "version": "5.7.1",
+ "node_modules/signal-exit": {
+ "version": "3.0.7",
+ "license": "ISC"
+ },
+ "node_modules/simple-concat": {
+ "version": "1.0.1",
"dev": true,
"funding": [
{
@@ -45443,53 +33841,38 @@
"url": "https://feross.org/support"
}
],
- "license": "MIT",
- "dependencies": {
- "base64-js": "^1.3.1",
- "ieee754": "^1.1.13"
- }
+ "license": "MIT"
},
- "node_modules/telejson": {
- "version": "6.0.8",
+ "node_modules/simple-get": {
+ "version": "4.0.1",
"dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "@types/is-function": "^1.0.0",
- "global": "^4.4.0",
- "is-function": "^1.0.2",
- "is-regex": "^1.1.2",
- "is-symbol": "^1.0.3",
- "isobject": "^4.0.0",
- "lodash": "^4.17.21",
- "memoizerific": "^1.11.3"
- }
- },
- "node_modules/telejson/node_modules/isobject": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/temp-dir": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4"
+ "decompress-response": "^6.0.0",
+ "once": "^1.3.1",
+ "simple-concat": "^1.0.0"
}
},
- "node_modules/tempy": {
- "version": "1.0.1",
+ "node_modules/simple-get/node_modules/decompress-response": {
+ "version": "6.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "del": "^6.0.0",
- "is-stream": "^2.0.0",
- "temp-dir": "^2.0.0",
- "type-fest": "^0.16.0",
- "unique-string": "^2.0.0"
+ "mimic-response": "^3.1.0"
},
"engines": {
"node": ">=10"
@@ -45498,18 +33881,10 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/tempy/node_modules/temp-dir": {
- "version": "2.0.0",
+ "node_modules/simple-get/node_modules/mimic-response": {
+ "version": "3.1.0",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/tempy/node_modules/type-fest": {
- "version": "0.16.0",
- "dev": true,
- "license": "(MIT OR CC0-1.0)",
"engines": {
"node": ">=10"
},
@@ -45517,294 +33892,217 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/terminal-link": {
- "version": "2.1.1",
+ "node_modules/simple-swizzle": {
+ "version": "0.2.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-escapes": "^4.2.1",
- "supports-hyperlinks": "^2.0.0"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "is-arrayish": "^0.3.1"
}
},
- "node_modules/terser": {
- "version": "5.19.2",
+ "node_modules/simple-swizzle/node_modules/is-arrayish": {
+ "version": "0.3.2",
"dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "@jridgewell/source-map": "^0.3.3",
- "acorn": "^8.8.2",
- "commander": "^2.20.0",
- "source-map-support": "~0.5.20"
- },
- "bin": {
- "terser": "bin/terser"
- },
- "engines": {
- "node": ">=10"
- }
+ "license": "MIT"
},
- "node_modules/terser-webpack-plugin": {
- "version": "5.3.9",
+ "node_modules/sirv": {
+ "version": "1.0.19",
"dev": true,
"license": "MIT",
"dependencies": {
- "@jridgewell/trace-mapping": "^0.3.17",
- "jest-worker": "^27.4.5",
- "schema-utils": "^3.1.1",
- "serialize-javascript": "^6.0.1",
- "terser": "^5.16.8"
+ "@polka/url": "^1.0.0-next.20",
+ "mrmime": "^1.0.0",
+ "totalist": "^1.0.0"
},
"engines": {
- "node": ">= 10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^5.1.0"
- },
- "peerDependenciesMeta": {
- "@swc/core": {
- "optional": true
- },
- "esbuild": {
- "optional": true
- },
- "uglify-js": {
- "optional": true
- }
+ "node": ">= 10"
}
},
- "node_modules/terser/node_modules/commander": {
- "version": "2.20.3",
+ "node_modules/sisteransi": {
+ "version": "1.0.5",
"dev": true,
"license": "MIT"
},
- "node_modules/terser/node_modules/source-map-support": {
- "version": "0.5.21",
+ "node_modules/slash": {
+ "version": "3.0.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "buffer-from": "^1.0.0",
- "source-map": "^0.6.0"
- }
- },
- "node_modules/terser/node_modules/source-map-support/node_modules/source-map": {
- "version": "0.6.1",
- "dev": true,
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/test-exclude": {
- "version": "6.0.0",
- "license": "ISC",
- "dependencies": {
- "@istanbuljs/schema": "^0.1.2",
- "glob": "^7.1.4",
- "minimatch": "^3.0.4"
- },
"engines": {
"node": ">=8"
}
},
- "node_modules/text-extensions": {
- "version": "1.9.0",
+ "node_modules/smart-buffer": {
+ "version": "4.2.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=0.10"
+ "node": ">= 6.0.0",
+ "npm": ">= 3.0.0"
}
},
- "node_modules/text-hex": {
- "version": "1.0.0",
+ "node_modules/snake-case": {
+ "version": "3.0.4",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "dependencies": {
+ "dot-case": "^3.0.4",
+ "tslib": "^2.0.3"
+ }
},
- "node_modules/text-table": {
- "version": "0.2.0",
+ "node_modules/socks": {
+ "version": "2.8.2",
"dev": true,
- "license": "MIT"
- },
- "node_modules/textextensions": {
- "version": "2.6.0",
"license": "MIT",
- "engines": {
- "node": ">=0.8"
+ "dependencies": {
+ "ip-address": "^9.0.5",
+ "smart-buffer": "^4.2.0"
},
- "funding": {
- "url": "https://bevry.me/fund"
+ "engines": {
+ "node": ">= 10.0.0",
+ "npm": ">= 3.0.0"
}
},
- "node_modules/thenify": {
- "version": "3.3.1",
+ "node_modules/socks-proxy-agent": {
+ "version": "7.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "any-promise": "^1.0.0"
+ "agent-base": "^6.0.2",
+ "debug": "^4.3.3",
+ "socks": "^2.6.2"
+ },
+ "engines": {
+ "node": ">= 10"
}
},
- "node_modules/thenify-all": {
- "version": "1.6.0",
+ "node_modules/sort-keys": {
+ "version": "4.2.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "thenify": ">= 3.1.0 < 4"
+ "is-plain-obj": "^2.0.0"
},
"engines": {
- "node": ">=0.8"
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/throttle-debounce": {
- "version": "3.0.1",
+ "node_modules/sort-keys/node_modules/is-plain-obj": {
+ "version": "2.1.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=10"
+ "node": ">=8"
}
},
- "node_modules/through": {
- "version": "2.3.8",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/through2": {
- "version": "4.0.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "readable-stream": "3"
+ "node_modules/source-map": {
+ "version": "0.7.4",
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">= 8"
}
},
- "node_modules/timers-browserify": {
- "version": "2.0.12",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "setimmediate": "^1.0.4"
- },
+ "node_modules/source-map-js": {
+ "version": "1.2.0",
+ "license": "BSD-3-Clause",
"engines": {
- "node": ">=0.6.0"
+ "node": ">=0.10.0"
}
},
- "node_modules/title-case": {
- "version": "3.0.3",
+ "node_modules/source-map-support": {
+ "version": "0.5.13",
"dev": true,
"license": "MIT",
"dependencies": {
- "tslib": "^2.0.3"
+ "buffer-from": "^1.0.0",
+ "source-map": "^0.6.0"
}
},
- "node_modules/tmp": {
- "version": "0.0.33",
+ "node_modules/source-map-support/node_modules/source-map": {
+ "version": "0.6.1",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "os-tmpdir": "~1.0.2"
- },
+ "license": "BSD-3-Clause",
"engines": {
- "node": ">=0.6.0"
+ "node": ">=0.10.0"
}
},
- "node_modules/tmpl": {
- "version": "1.0.5",
- "dev": true,
- "license": "BSD-3-Clause"
- },
- "node_modules/to-arraybuffer": {
- "version": "1.0.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/to-fast-properties": {
- "version": "2.0.0",
+ "node_modules/space-separated-tokens": {
+ "version": "2.0.2",
"license": "MIT",
- "engines": {
- "node": ">=4"
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/to-object-path": {
- "version": "0.3.0",
+ "node_modules/spawn-wrap": {
+ "version": "2.0.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "kind-of": "^3.0.2"
+ "foreground-child": "^2.0.0",
+ "is-windows": "^1.0.2",
+ "make-dir": "^3.0.0",
+ "rimraf": "^3.0.0",
+ "signal-exit": "^3.0.2",
+ "which": "^2.0.1"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=8"
}
},
- "node_modules/to-object-path/node_modules/is-buffer": {
- "version": "1.1.6",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/to-object-path/node_modules/kind-of": {
- "version": "3.2.2",
+ "node_modules/spawnd": {
+ "version": "5.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
+ "exit": "^0.1.2",
+ "signal-exit": "^3.0.3",
+ "tree-kill": "^1.2.2",
+ "wait-port": "^0.2.9"
}
},
- "node_modules/to-readable-stream": {
- "version": "1.0.0",
+ "node_modules/spdx-correct": {
+ "version": "3.2.0",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
+ "license": "Apache-2.0",
+ "dependencies": {
+ "spdx-expression-parse": "^3.0.0",
+ "spdx-license-ids": "^3.0.0"
}
},
- "node_modules/to-regex": {
- "version": "3.0.2",
+ "node_modules/spdx-exceptions": {
+ "version": "2.5.0",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "regex-not": "^1.0.2",
- "safe-regex": "^1.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
+ "license": "CC-BY-3.0"
},
- "node_modules/to-regex-range": {
- "version": "5.0.1",
+ "node_modules/spdx-expression-parse": {
+ "version": "3.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-number": "^7.0.0"
- },
- "engines": {
- "node": ">=8.0"
+ "spdx-exceptions": "^2.1.0",
+ "spdx-license-ids": "^3.0.0"
}
},
- "node_modules/toidentifier": {
+ "node_modules/spdx-license-ids": {
+ "version": "3.0.17",
+ "dev": true,
+ "license": "CC0-1.0"
+ },
+ "node_modules/split": {
"version": "1.0.1",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "through": "2"
+ },
"engines": {
- "node": ">=0.6"
+ "node": "*"
}
},
- "node_modules/token-stream": {
- "version": "0.0.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/totalist": {
+ "node_modules/split-on-first": {
"version": "1.1.0",
"dev": true,
"license": "MIT",
@@ -45812,1677 +34110,1638 @@
"node": ">=6"
}
},
- "node_modules/tough-cookie": {
- "version": "4.1.3",
+ "node_modules/split2": {
+ "version": "3.2.2",
"dev": true,
- "license": "BSD-3-Clause",
+ "license": "ISC",
"dependencies": {
- "psl": "^1.1.33",
- "punycode": "^2.1.1",
- "universalify": "^0.2.0",
- "url-parse": "^1.5.3"
- },
- "engines": {
- "node": ">=6"
+ "readable-stream": "^3.0.0"
}
},
- "node_modules/tough-cookie/node_modules/universalify": {
- "version": "0.2.0",
+ "node_modules/sprintf-js": {
+ "version": "1.1.3",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 4.0.0"
- }
+ "license": "BSD-3-Clause"
},
- "node_modules/tr46": {
- "version": "2.1.0",
+ "node_modules/sshpk": {
+ "version": "1.18.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "punycode": "^2.1.1"
+ "asn1": "~0.2.3",
+ "assert-plus": "^1.0.0",
+ "bcrypt-pbkdf": "^1.0.0",
+ "dashdash": "^1.12.0",
+ "ecc-jsbn": "~0.1.1",
+ "getpass": "^0.1.1",
+ "jsbn": "~0.1.0",
+ "safer-buffer": "^2.0.2",
+ "tweetnacl": "~0.14.0"
+ },
+ "bin": {
+ "sshpk-conv": "bin/sshpk-conv",
+ "sshpk-sign": "bin/sshpk-sign",
+ "sshpk-verify": "bin/sshpk-verify"
},
"engines": {
- "node": ">=8"
+ "node": ">=0.10.0"
}
},
- "node_modules/tree-kill": {
- "version": "1.2.2",
+ "node_modules/sshpk/node_modules/jsbn": {
+ "version": "0.1.1",
"dev": true,
- "license": "MIT",
- "bin": {
- "tree-kill": "cli.js"
- }
+ "license": "MIT"
},
- "node_modules/treeverse": {
- "version": "2.0.0",
+ "node_modules/ssri": {
+ "version": "9.0.1",
"dev": true,
"license": "ISC",
+ "dependencies": {
+ "minipass": "^3.1.1"
+ },
"engines": {
"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/trim": {
- "version": "0.0.1",
- "dev": true
- },
- "node_modules/trim-lines": {
- "version": "3.0.1",
- "license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
- "node_modules/trim-newlines": {
- "version": "3.0.1",
+ "node_modules/stack-trace": {
+ "version": "0.0.10",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=8"
+ "node": "*"
}
},
- "node_modules/trim-right": {
- "version": "1.0.1",
+ "node_modules/stack-utils": {
+ "version": "2.0.6",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "escape-string-regexp": "^2.0.0"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10"
}
},
- "node_modules/trim-trailing-lines": {
- "version": "1.1.4",
+ "node_modules/stack-utils/node_modules/escape-string-regexp": {
+ "version": "2.0.0",
"dev": true,
"license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/triple-beam": {
- "version": "1.3.0",
+ "node_modules/stackframe": {
+ "version": "1.3.4",
"dev": true,
"license": "MIT"
},
- "node_modules/trough": {
- "version": "1.0.5",
- "dev": true,
- "license": "MIT",
+ "node_modules/static-browser-server": {
+ "version": "1.0.3",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@open-draft/deferred-promise": "^2.1.0",
+ "dotenv": "^16.0.3",
+ "mime-db": "^1.52.0",
+ "outvariant": "^1.3.0"
+ }
+ },
+ "node_modules/static-browser-server/node_modules/dotenv": {
+ "version": "16.4.5",
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=12"
+ },
"funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "url": "https://dotenvx.com"
}
},
- "node_modules/ts-dedent": {
- "version": "2.2.0",
+ "node_modules/statuses": {
+ "version": "2.0.1",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=6.10"
+ "node": ">= 0.8"
}
},
- "node_modules/ts-interface-checker": {
- "version": "0.1.13",
- "dev": true,
- "license": "Apache-2.0"
- },
- "node_modules/ts-jest": {
- "version": "28.0.8",
+ "node_modules/stdin-discarder": {
+ "version": "0.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "bs-logger": "0.x",
- "fast-json-stable-stringify": "2.x",
- "jest-util": "^28.0.0",
- "json5": "^2.2.1",
- "lodash.memoize": "4.x",
- "make-error": "1.x",
- "semver": "7.x",
- "yargs-parser": "^21.0.1"
- },
- "bin": {
- "ts-jest": "cli.js"
+ "bl": "^5.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
- },
- "peerDependencies": {
- "@babel/core": ">=7.0.0-beta.0 <8",
- "@jest/types": "^28.0.0",
- "babel-jest": "^28.0.0",
- "jest": "^28.0.0",
- "typescript": ">=4.3"
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
- "peerDependenciesMeta": {
- "@babel/core": {
- "optional": true
- },
- "@jest/types": {
- "optional": true
- },
- "babel-jest": {
- "optional": true
- },
- "esbuild": {
- "optional": true
- }
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/ts-jest/node_modules/semver": {
- "version": "7.3.7",
+ "node_modules/stdin-discarder/node_modules/bl": {
+ "version": "5.1.0",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
+ "buffer": "^6.0.3",
+ "inherits": "^2.0.4",
+ "readable-stream": "^3.4.0"
}
},
- "node_modules/ts-jest/node_modules/yargs-parser": {
- "version": "21.1.1",
+ "node_modules/stealthy-require": {
+ "version": "1.1.1",
"dev": true,
"license": "ISC",
"engines": {
- "node": ">=12"
+ "node": ">=0.10.0"
}
},
- "node_modules/ts-pnp": {
- "version": "1.2.0",
+ "node_modules/stop-iteration-iterator": {
+ "version": "1.0.0",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=6"
+ "dependencies": {
+ "internal-slot": "^1.0.4"
},
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
+ "engines": {
+ "node": ">= 0.4"
}
},
- "node_modules/tsconfig-paths": {
- "version": "3.14.1",
+ "node_modules/store2": {
+ "version": "2.14.3",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/json5": "^0.0.29",
- "json5": "^1.0.1",
- "minimist": "^1.2.6",
- "strip-bom": "^3.0.0"
- }
+ "license": "MIT"
},
- "node_modules/tsconfig-paths/node_modules/json5": {
- "version": "1.0.1",
+ "node_modules/storybook": {
+ "version": "7.6.17",
"dev": true,
"license": "MIT",
"dependencies": {
- "minimist": "^1.2.0"
+ "@storybook/cli": "7.6.17"
},
"bin": {
- "json5": "lib/cli.js"
- }
- },
- "node_modules/tsconfig-paths/node_modules/strip-bom": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4"
+ "sb": "index.js",
+ "storybook": "index.js"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
}
},
- "node_modules/tslib": {
- "version": "2.4.0",
- "license": "0BSD"
- },
- "node_modules/tsup": {
- "version": "5.11.13",
+ "node_modules/storybook-dark-mode": {
+ "version": "3.0.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "bundle-require": "^3.0.2",
- "cac": "^6.7.12",
- "chokidar": "^3.5.1",
- "debug": "^4.3.1",
- "esbuild": "^0.14.2",
- "execa": "^5.0.0",
- "globby": "^11.0.3",
- "joycon": "^3.0.1",
- "postcss-load-config": "^3.0.1",
- "resolve-from": "^5.0.0",
- "rollup": "^2.60.0",
- "source-map": "^0.7.3",
- "sucrase": "^3.20.3",
- "tree-kill": "^1.2.2"
- },
- "bin": {
- "tsup": "dist/cli-default.js",
- "tsup-node": "dist/cli-node.js"
+ "@storybook/addons": "^7.0.0",
+ "@storybook/components": "^7.0.0",
+ "@storybook/core-events": "^7.0.0",
+ "@storybook/global": "^5.0.0",
+ "@storybook/manager-api": "^7.0.0",
+ "@storybook/theming": "^7.0.0",
+ "fast-deep-equal": "^3.1.3",
+ "memoizerific": "^1.11.3"
},
"peerDependencies": {
- "typescript": "^4.1.0"
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"peerDependenciesMeta": {
- "typescript": {
+ "react": {
+ "optional": true
+ },
+ "react-dom": {
"optional": true
}
}
},
- "node_modules/tsup/node_modules/source-map": {
- "version": "0.7.3",
+ "node_modules/stream-browserify": {
+ "version": "3.0.0",
"dev": true,
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">= 8"
+ "license": "MIT",
+ "dependencies": {
+ "inherits": "~2.0.4",
+ "readable-stream": "^3.5.0"
}
},
- "node_modules/tsutils": {
- "version": "3.21.0",
+ "node_modules/stream-http": {
+ "version": "3.2.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "tslib": "^1.8.1"
- },
- "engines": {
- "node": ">= 6"
- },
- "peerDependencies": {
- "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta"
+ "builtin-status-codes": "^3.0.0",
+ "inherits": "^2.0.4",
+ "readable-stream": "^3.6.0",
+ "xtend": "^4.0.2"
}
},
- "node_modules/tsutils/node_modules/tslib": {
- "version": "1.14.1",
- "dev": true,
- "license": "0BSD"
- },
- "node_modules/tty-browserify": {
- "version": "0.0.0",
+ "node_modules/stream-shift": {
+ "version": "1.0.3",
"dev": true,
"license": "MIT"
},
- "node_modules/tunnel-agent": {
- "version": "0.6.0",
- "dev": true,
- "license": "Apache-2.0",
- "dependencies": {
- "safe-buffer": "^5.0.1"
- },
+ "node_modules/streamsearch": {
+ "version": "1.1.0",
"engines": {
- "node": "*"
+ "node": ">=10.0.0"
}
},
- "node_modules/turbo": {
- "version": "1.10.14",
- "resolved": "https://registry.npmjs.org/turbo/-/turbo-1.10.14.tgz",
- "integrity": "sha512-hr9wDNYcsee+vLkCDIm8qTtwhJ6+UAMJc3nIY6+PNgUTtXcQgHxCq8BGoL7gbABvNWv76CNbK5qL4Lp9G3ZYRA==",
+ "node_modules/streamx": {
+ "version": "2.16.1",
"dev": true,
- "bin": {
- "turbo": "bin/turbo"
+ "license": "MIT",
+ "dependencies": {
+ "fast-fifo": "^1.1.0",
+ "queue-tick": "^1.0.1"
},
"optionalDependencies": {
- "turbo-darwin-64": "1.10.14",
- "turbo-darwin-arm64": "1.10.14",
- "turbo-linux-64": "1.10.14",
- "turbo-linux-arm64": "1.10.14",
- "turbo-windows-64": "1.10.14",
- "turbo-windows-arm64": "1.10.14"
+ "bare-events": "^2.2.0"
}
},
- "node_modules/turbo-darwin-64": {
- "version": "1.10.14",
- "resolved": "https://registry.npmjs.org/turbo-darwin-64/-/turbo-darwin-64-1.10.14.tgz",
- "integrity": "sha512-I8RtFk1b9UILAExPdG/XRgGQz95nmXPE7OiGb6ytjtNIR5/UZBS/xVX/7HYpCdmfriKdVwBKhalCoV4oDvAGEg==",
- "cpu": [
- "x64"
- ],
- "optional": true,
- "os": [
- "darwin"
- ]
- },
- "node_modules/turbo-darwin-arm64": {
- "version": "1.10.14",
- "resolved": "https://registry.npmjs.org/turbo-darwin-arm64/-/turbo-darwin-arm64-1.10.14.tgz",
- "integrity": "sha512-KAdUWryJi/XX7OD0alOuOa0aJ5TLyd4DNIYkHPHYcM6/d7YAovYvxRNwmx9iv6Vx6IkzTnLeTiUB8zy69QkG9Q==",
- "cpu": [
- "arm64"
- ],
- "optional": true,
- "os": [
- "darwin"
- ]
- },
- "node_modules/turbo-linux-64": {
- "version": "1.10.14",
- "resolved": "https://registry.npmjs.org/turbo-linux-64/-/turbo-linux-64-1.10.14.tgz",
- "integrity": "sha512-BOBzoREC2u4Vgpap/WDxM6wETVqVMRcM8OZw4hWzqCj2bqbQ6L0wxs1LCLWVrghQf93JBQtIGAdFFLyCSBXjWQ==",
- "cpu": [
- "x64"
- ],
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/turbo-linux-arm64": {
- "version": "1.10.14",
- "resolved": "https://registry.npmjs.org/turbo-linux-arm64/-/turbo-linux-arm64-1.10.14.tgz",
- "integrity": "sha512-D8T6XxoTdN5D4V5qE2VZG+/lbZX/89BkAEHzXcsSUTRjrwfMepT3d2z8aT6hxv4yu8EDdooZq/2Bn/vjMI32xw==",
- "cpu": [
- "arm64"
- ],
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/turbo-windows-64": {
- "version": "1.10.14",
- "resolved": "https://registry.npmjs.org/turbo-windows-64/-/turbo-windows-64-1.10.14.tgz",
- "integrity": "sha512-zKNS3c1w4i6432N0cexZ20r/aIhV62g69opUn82FLVs/zk3Ie0GVkSB6h0rqIvMalCp7enIR87LkPSDGz9K4UA==",
- "cpu": [
- "x64"
- ],
- "optional": true,
- "os": [
- "win32"
- ]
- },
- "node_modules/turbo-windows-arm64": {
- "version": "1.10.14",
- "resolved": "https://registry.npmjs.org/turbo-windows-arm64/-/turbo-windows-arm64-1.10.14.tgz",
- "integrity": "sha512-rkBwrTPTxNSOUF7of8eVvvM+BkfkhA2OvpHM94if8tVsU+khrjglilp8MTVPHlyS9byfemPAmFN90oRIPB05BA==",
- "cpu": [
- "arm64"
- ],
- "optional": true,
- "os": [
- "win32"
- ]
+ "node_modules/strict-event-emitter": {
+ "version": "0.4.6",
+ "license": "MIT"
},
- "node_modules/tweetnacl": {
- "version": "0.14.5",
+ "node_modules/strict-uri-encode": {
+ "version": "2.0.0",
"dev": true,
- "license": "Unlicense"
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
},
- "node_modules/type": {
- "version": "1.2.0",
- "license": "ISC"
+ "node_modules/string_decoder": {
+ "version": "1.3.0",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "safe-buffer": "~5.2.0"
+ }
},
- "node_modules/type-check": {
- "version": "0.4.0",
+ "node_modules/string-length": {
+ "version": "4.0.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "prelude-ls": "^1.2.1"
+ "char-regex": "^1.0.2",
+ "strip-ansi": "^6.0.0"
},
"engines": {
- "node": ">= 0.8.0"
+ "node": ">=10"
}
},
- "node_modules/type-detect": {
- "version": "4.0.8",
- "dev": true,
+ "node_modules/string-width": {
+ "version": "4.2.3",
"license": "MIT",
+ "dependencies": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ },
"engines": {
- "node": ">=4"
+ "node": ">=8"
}
},
- "node_modules/type-fest": {
- "version": "0.20.2",
+ "node_modules/string-width-cjs": {
+ "name": "string-width",
+ "version": "4.2.3",
"dev": true,
- "license": "(MIT OR CC0-1.0)",
- "engines": {
- "node": ">=10"
+ "license": "MIT",
+ "dependencies": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/type-is": {
- "version": "1.6.18",
+ "node_modules/string-width-cjs/node_modules/emoji-regex": {
+ "version": "8.0.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/string-width/node_modules/emoji-regex": {
+ "version": "8.0.0",
+ "license": "MIT"
+ },
+ "node_modules/string.prototype.matchall": {
+ "version": "4.0.11",
"dev": true,
"license": "MIT",
"dependencies": {
- "media-typer": "0.3.0",
- "mime-types": "~2.1.24"
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0",
+ "get-intrinsic": "^1.2.4",
+ "gopd": "^1.0.1",
+ "has-symbols": "^1.0.3",
+ "internal-slot": "^1.0.7",
+ "regexp.prototype.flags": "^1.5.2",
+ "set-function-name": "^2.0.2",
+ "side-channel": "^1.0.6"
},
"engines": {
- "node": ">= 0.6"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/typeable-promisify": {
- "version": "1.0.1",
+ "node_modules/string.prototype.trim": {
+ "version": "1.2.9",
"dev": true,
"license": "MIT",
"dependencies": {
- "any-promise": "^1.3.0"
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.0",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/typed-array-length": {
- "version": "1.0.4",
+ "node_modules/string.prototype.trimend": {
+ "version": "1.0.8",
"dev": true,
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "for-each": "^0.3.3",
- "is-typed-array": "^1.1.9"
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-object-atoms": "^1.0.0"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/typedarray": {
- "version": "0.0.6",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/typedarray-to-buffer": {
- "version": "3.1.5",
+ "node_modules/string.prototype.trimstart": {
+ "version": "1.0.8",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-typedarray": "^1.0.0"
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/typescript": {
- "version": "4.5.5",
- "license": "Apache-2.0",
- "bin": {
- "tsc": "bin/tsc",
- "tsserver": "bin/tsserver"
+ "node_modules/stringify-entities": {
+ "version": "4.0.4",
+ "license": "MIT",
+ "dependencies": {
+ "character-entities-html4": "^2.0.0",
+ "character-entities-legacy": "^3.0.0"
},
- "engines": {
- "node": ">=4.2.0"
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/uglify-js": {
- "version": "3.15.2",
- "dev": true,
+ "node_modules/stringify-object": {
+ "version": "4.0.1",
"license": "BSD-2-Clause",
- "optional": true,
- "bin": {
- "uglifyjs": "bin/uglifyjs"
+ "dependencies": {
+ "get-own-enumerable-property-symbols": "^3.0.2",
+ "is-obj": "^3.0.0",
+ "is-regexp": "^3.0.0"
},
"engines": {
- "node": ">=0.8.0"
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
}
},
- "node_modules/uglify-to-browserify": {
- "version": "1.0.2",
- "dev": true,
- "license": "MIT",
- "optional": true
- },
- "node_modules/unbox-primitive": {
- "version": "1.0.2",
- "dev": true,
+ "node_modules/stringify-object/node_modules/is-obj": {
+ "version": "3.0.0",
"license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.2",
- "has-bigints": "^1.0.2",
- "has-symbols": "^1.0.3",
- "which-boxed-primitive": "^1.0.2"
+ "engines": {
+ "node": ">=12"
},
"funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/unc-path-regex": {
- "version": "0.1.2",
- "dev": true,
+ "node_modules/strip-ansi": {
+ "version": "6.0.1",
"license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": ">=8"
}
},
- "node_modules/unfetch": {
- "version": "4.2.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/unherit": {
- "version": "1.1.3",
+ "node_modules/strip-ansi-cjs": {
+ "name": "strip-ansi",
+ "version": "6.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "inherits": "^2.0.0",
- "xtend": "^4.0.0"
+ "ansi-regex": "^5.0.1"
},
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/unicode-canonical-property-names-ecmascript": {
- "version": "2.0.0",
+ "node_modules/strip-bom": {
+ "version": "4.0.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=4"
+ "node": ">=8"
}
},
- "node_modules/unicode-match-property-ecmascript": {
- "version": "2.0.0",
- "dev": true,
+ "node_modules/strip-bom-string": {
+ "version": "1.0.0",
"license": "MIT",
- "dependencies": {
- "unicode-canonical-property-names-ecmascript": "^2.0.0",
- "unicode-property-aliases-ecmascript": "^2.0.0"
- },
"engines": {
- "node": ">=4"
+ "node": ">=0.10.0"
}
},
- "node_modules/unicode-match-property-value-ecmascript": {
- "version": "2.1.0",
+ "node_modules/strip-comments": {
+ "version": "2.0.1",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=4"
+ "node": ">=10"
}
},
- "node_modules/unicode-property-aliases-ecmascript": {
- "version": "2.1.0",
+ "node_modules/strip-final-newline": {
+ "version": "2.0.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=4"
+ "node": ">=6"
}
},
- "node_modules/unified": {
- "version": "9.2.0",
+ "node_modules/strip-indent": {
+ "version": "2.0.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "bail": "^1.0.0",
- "extend": "^3.0.0",
- "is-buffer": "^2.0.0",
- "is-plain-obj": "^2.0.0",
- "trough": "^1.0.0",
- "vfile": "^4.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/unified/node_modules/is-plain-obj": {
- "version": "2.1.0",
+ "node_modules/strip-json-comments": {
+ "version": "3.1.1",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/union-value": {
- "version": "1.0.1",
+ "node_modules/strong-log-transformer": {
+ "version": "2.1.0",
"dev": true,
- "license": "MIT",
+ "license": "Apache-2.0",
"dependencies": {
- "arr-union": "^3.1.0",
- "get-value": "^2.0.6",
- "is-extendable": "^0.1.1",
- "set-value": "^2.0.1"
+ "duplexer": "^0.1.1",
+ "minimist": "^1.2.0",
+ "through": "^2.3.4"
+ },
+ "bin": {
+ "sl-log-transformer": "bin/sl-log-transformer.js"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=4"
}
},
- "node_modules/union-value/node_modules/is-extendable": {
- "version": "0.1.1",
+ "node_modules/style-loader": {
+ "version": "3.3.4",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 12.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ },
+ "peerDependencies": {
+ "webpack": "^5.0.0"
}
},
- "node_modules/unique-filename": {
- "version": "1.1.1",
- "dev": true,
- "license": "ISC",
+ "node_modules/style-mod": {
+ "version": "4.1.2",
+ "license": "MIT"
+ },
+ "node_modules/style-to-object": {
+ "version": "0.4.4",
+ "license": "MIT",
"dependencies": {
- "unique-slug": "^2.0.0"
+ "inline-style-parser": "0.1.1"
}
},
- "node_modules/unique-slug": {
- "version": "2.0.2",
- "dev": true,
- "license": "ISC",
+ "node_modules/styled-jsx": {
+ "version": "5.1.1",
+ "license": "MIT",
"dependencies": {
- "imurmurhash": "^0.1.4"
+ "client-only": "0.0.1"
+ },
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "peerDependencies": {
+ "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0"
+ },
+ "peerDependenciesMeta": {
+ "@babel/core": {
+ "optional": true
+ },
+ "babel-plugin-macros": {
+ "optional": true
+ }
}
},
- "node_modules/unique-string": {
- "version": "2.0.0",
+ "node_modules/sucrase": {
+ "version": "3.35.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "crypto-random-string": "^2.0.0"
+ "@jridgewell/gen-mapping": "^0.3.2",
+ "commander": "^4.0.0",
+ "glob": "^10.3.10",
+ "lines-and-columns": "^1.1.6",
+ "mz": "^2.7.0",
+ "pirates": "^4.0.1",
+ "ts-interface-checker": "^0.1.9"
+ },
+ "bin": {
+ "sucrase": "bin/sucrase",
+ "sucrase-node": "bin/sucrase-node"
},
"engines": {
- "node": ">=8"
+ "node": ">=16 || 14 >=14.17"
}
},
- "node_modules/unist-builder": {
- "version": "2.0.3",
+ "node_modules/sucrase/node_modules/brace-expansion": {
+ "version": "2.0.1",
"dev": true,
"license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "dependencies": {
+ "balanced-match": "^1.0.0"
}
},
- "node_modules/unist-util-generated": {
- "version": "1.1.6",
+ "node_modules/sucrase/node_modules/commander": {
+ "version": "4.1.1",
"dev": true,
"license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">= 6"
}
},
- "node_modules/unist-util-is": {
- "version": "4.1.0",
- "license": "MIT",
+ "node_modules/sucrase/node_modules/foreground-child": {
+ "version": "3.1.1",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "cross-spawn": "^7.0.0",
+ "signal-exit": "^4.0.1"
+ },
+ "engines": {
+ "node": ">=14"
+ },
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/unist-util-position": {
- "version": "3.1.0",
+ "node_modules/sucrase/node_modules/glob": {
+ "version": "10.3.12",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
+ "dependencies": {
+ "foreground-child": "^3.1.0",
+ "jackspeak": "^2.3.6",
+ "minimatch": "^9.0.1",
+ "minipass": "^7.0.4",
+ "path-scurry": "^1.10.2"
+ },
+ "bin": {
+ "glob": "dist/esm/bin.mjs"
+ },
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ },
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/unist-util-position-from-estree": {
- "version": "1.1.1",
- "license": "MIT",
+ "node_modules/sucrase/node_modules/minimatch": {
+ "version": "9.0.4",
+ "dev": true,
+ "license": "ISC",
"dependencies": {
- "@types/unist": "^2.0.0"
+ "brace-expansion": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/unist-util-remove": {
- "version": "2.1.0",
+ "node_modules/sucrase/node_modules/minipass": {
+ "version": "7.0.4",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "unist-util-is": "^4.0.0"
+ "license": "ISC",
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ }
+ },
+ "node_modules/sucrase/node_modules/signal-exit": {
+ "version": "4.1.0",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">=14"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/unist-util-remove-position": {
- "version": "2.0.1",
- "dev": true,
+ "node_modules/supports-color": {
+ "version": "7.2.0",
"license": "MIT",
"dependencies": {
- "unist-util-visit": "^2.0.0"
+ "has-flag": "^4.0.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/unist-util-stringify-position": {
- "version": "2.0.3",
+ "node_modules/supports-preserve-symlinks-flag": {
+ "version": "1.0.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "@types/unist": "^2.0.2"
+ "engines": {
+ "node": ">= 0.4"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/unist-util-visit": {
- "version": "2.0.3",
+ "node_modules/swc-loader": {
+ "version": "0.2.6",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/unist": "^2.0.0",
- "unist-util-is": "^4.0.0",
- "unist-util-visit-parents": "^3.0.0"
+ "@swc/counter": "^0.1.3"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "peerDependencies": {
+ "@swc/core": "^1.2.147",
+ "webpack": ">=2"
}
},
- "node_modules/unist-util-visit-parents": {
- "version": "3.1.1",
+ "node_modules/swr": {
+ "version": "2.2.5",
"license": "MIT",
"dependencies": {
- "@types/unist": "^2.0.0",
- "unist-util-is": "^4.0.0"
+ "client-only": "^0.0.1",
+ "use-sync-external-store": "^1.2.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "peerDependencies": {
+ "react": "^16.11.0 || ^17.0.0 || ^18.0.0"
}
},
- "node_modules/universal-user-agent": {
- "version": "6.0.0",
- "license": "ISC"
+ "node_modules/symbol-tree": {
+ "version": "3.2.4",
+ "dev": true,
+ "license": "MIT"
},
- "node_modules/universalify": {
- "version": "2.0.0",
+ "node_modules/synchronous-promise": {
+ "version": "2.0.17",
+ "dev": true,
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/tabbable": {
+ "version": "5.3.3",
+ "license": "MIT"
+ },
+ "node_modules/tailwindcss": {
+ "version": "3.4.3",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "@alloc/quick-lru": "^5.2.0",
+ "arg": "^5.0.2",
+ "chokidar": "^3.5.3",
+ "didyoumean": "^1.2.2",
+ "dlv": "^1.1.3",
+ "fast-glob": "^3.3.0",
+ "glob-parent": "^6.0.2",
+ "is-glob": "^4.0.3",
+ "jiti": "^1.21.0",
+ "lilconfig": "^2.1.0",
+ "micromatch": "^4.0.5",
+ "normalize-path": "^3.0.0",
+ "object-hash": "^3.0.0",
+ "picocolors": "^1.0.0",
+ "postcss": "^8.4.23",
+ "postcss-import": "^15.1.0",
+ "postcss-js": "^4.0.1",
+ "postcss-load-config": "^4.0.1",
+ "postcss-nested": "^6.0.1",
+ "postcss-selector-parser": "^6.0.11",
+ "resolve": "^1.22.2",
+ "sucrase": "^3.32.0"
+ },
+ "bin": {
+ "tailwind": "lib/cli.js",
+ "tailwindcss": "lib/cli.js"
+ },
"engines": {
- "node": ">= 10.0.0"
+ "node": ">=14.0.0"
}
},
- "node_modules/unpipe": {
- "version": "1.0.0",
+ "node_modules/tapable": {
+ "version": "2.2.1",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">= 0.8"
+ "node": ">=6"
}
},
- "node_modules/unset-value": {
- "version": "1.0.0",
+ "node_modules/tar": {
+ "version": "6.2.1",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "has-value": "^0.3.1",
- "isobject": "^3.0.0"
+ "chownr": "^2.0.0",
+ "fs-minipass": "^2.0.0",
+ "minipass": "^5.0.0",
+ "minizlib": "^2.1.1",
+ "mkdirp": "^1.0.3",
+ "yallist": "^4.0.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10"
}
},
- "node_modules/unset-value/node_modules/has-value": {
- "version": "0.3.1",
+ "node_modules/tar-fs": {
+ "version": "3.0.5",
"dev": true,
"license": "MIT",
"dependencies": {
- "get-value": "^2.0.3",
- "has-values": "^0.1.4",
- "isobject": "^2.0.0"
+ "pump": "^3.0.0",
+ "tar-stream": "^3.1.5"
},
- "engines": {
- "node": ">=0.10.0"
+ "optionalDependencies": {
+ "bare-fs": "^2.1.1",
+ "bare-path": "^2.1.0"
}
},
- "node_modules/unset-value/node_modules/has-value/node_modules/isobject": {
- "version": "2.1.0",
+ "node_modules/tar-fs/node_modules/tar-stream": {
+ "version": "3.1.7",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "b4a": "^1.6.4",
+ "fast-fifo": "^1.2.0",
+ "streamx": "^2.15.0"
+ }
+ },
+ "node_modules/tar-stream": {
+ "version": "2.2.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "isarray": "1.0.0"
+ "bl": "^4.0.3",
+ "end-of-stream": "^1.4.1",
+ "fs-constants": "^1.0.0",
+ "inherits": "^2.0.3",
+ "readable-stream": "^3.1.1"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=6"
}
},
- "node_modules/unset-value/node_modules/has-values": {
- "version": "0.1.4",
+ "node_modules/tar/node_modules/minipass": {
+ "version": "5.0.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"engines": {
- "node": ">=0.10.0"
+ "node": ">=8"
}
},
- "node_modules/unset-value/node_modules/isarray": {
- "version": "1.0.0",
+ "node_modules/tar/node_modules/yallist": {
+ "version": "4.0.0",
"dev": true,
- "license": "MIT"
+ "license": "ISC"
},
- "node_modules/untildify": {
- "version": "2.1.0",
+ "node_modules/telejson": {
+ "version": "7.2.0",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "memoizerific": "^1.11.3"
+ }
+ },
+ "node_modules/temp": {
+ "version": "0.8.4",
"dev": true,
"license": "MIT",
- "optional": true,
"dependencies": {
- "os-homedir": "^1.0.0"
+ "rimraf": "~2.6.2"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=6.0.0"
}
},
- "node_modules/upath": {
- "version": "2.0.1",
+ "node_modules/temp-dir": {
+ "version": "1.0.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=4",
- "yarn": "*"
+ "node": ">=4"
}
},
- "node_modules/update-browserslist-db": {
- "version": "1.0.10",
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/browserslist"
- }
- ],
- "license": "MIT",
+ "node_modules/temp/node_modules/rimraf": {
+ "version": "2.6.3",
+ "dev": true,
+ "license": "ISC",
"dependencies": {
- "escalade": "^3.1.1",
- "picocolors": "^1.0.0"
+ "glob": "^7.1.3"
},
"bin": {
- "browserslist-lint": "cli.js"
- },
- "peerDependencies": {
- "browserslist": ">= 4.21.0"
+ "rimraf": "bin.js"
}
},
- "node_modules/update-browserslist-db/node_modules/picocolors": {
- "version": "1.0.0",
- "license": "ISC"
- },
- "node_modules/update-notifier": {
- "version": "5.1.0",
+ "node_modules/tempy": {
+ "version": "1.0.1",
"dev": true,
- "license": "BSD-2-Clause",
+ "license": "MIT",
"dependencies": {
- "boxen": "^5.0.0",
- "chalk": "^4.1.0",
- "configstore": "^5.0.1",
- "has-yarn": "^2.1.0",
- "import-lazy": "^2.1.0",
- "is-ci": "^2.0.0",
- "is-installed-globally": "^0.4.0",
- "is-npm": "^5.0.0",
- "is-yarn-global": "^0.3.0",
- "latest-version": "^5.1.0",
- "pupa": "^2.1.1",
- "semver": "^7.3.4",
- "semver-diff": "^3.1.1",
- "xdg-basedir": "^4.0.0"
+ "del": "^6.0.0",
+ "is-stream": "^2.0.0",
+ "temp-dir": "^2.0.0",
+ "type-fest": "^0.16.0",
+ "unique-string": "^2.0.0"
},
"engines": {
"node": ">=10"
},
"funding": {
- "url": "https://github.com/yeoman/update-notifier?sponsor=1"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/update-notifier/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/tempy/node_modules/temp-dir": {
+ "version": "2.0.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
"engines": {
"node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/update-notifier/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/tempy/node_modules/type-fest": {
+ "version": "0.16.0",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
+ "license": "(MIT OR CC0-1.0)",
"engines": {
"node": ">=10"
},
"funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/update-notifier/node_modules/has-flag": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/update-notifier/node_modules/semver": {
- "version": "7.5.0",
+ "node_modules/terser": {
+ "version": "5.30.3",
"dev": true,
- "license": "ISC",
+ "license": "BSD-2-Clause",
"dependencies": {
- "lru-cache": "^6.0.0"
+ "@jridgewell/source-map": "^0.3.3",
+ "acorn": "^8.8.2",
+ "commander": "^2.20.0",
+ "source-map-support": "~0.5.20"
},
"bin": {
- "semver": "bin/semver.js"
+ "terser": "bin/terser"
},
"engines": {
"node": ">=10"
}
},
- "node_modules/update-notifier/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/terser-webpack-plugin": {
+ "version": "5.3.10",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
+ "@jridgewell/trace-mapping": "^0.3.20",
+ "jest-worker": "^27.4.5",
+ "schema-utils": "^3.1.1",
+ "serialize-javascript": "^6.0.1",
+ "terser": "^5.26.0"
},
"engines": {
- "node": ">=8"
+ "node": ">= 10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ },
+ "peerDependencies": {
+ "webpack": "^5.1.0"
+ },
+ "peerDependenciesMeta": {
+ "@swc/core": {
+ "optional": true
+ },
+ "esbuild": {
+ "optional": true
+ },
+ "uglify-js": {
+ "optional": true
+ }
}
},
- "node_modules/upper-case": {
- "version": "2.0.2",
+ "node_modules/terser-webpack-plugin/node_modules/jest-worker": {
+ "version": "27.5.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "tslib": "^2.0.3"
+ "@types/node": "*",
+ "merge-stream": "^2.0.0",
+ "supports-color": "^8.0.0"
+ },
+ "engines": {
+ "node": ">= 10.13.0"
}
},
- "node_modules/upper-case-first": {
- "version": "2.0.2",
+ "node_modules/terser-webpack-plugin/node_modules/supports-color": {
+ "version": "8.1.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "tslib": "^2.0.3"
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
}
},
- "node_modules/uri-js": {
- "version": "4.4.1",
+ "node_modules/terser/node_modules/acorn": {
+ "version": "8.11.3",
"dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "punycode": "^2.1.0"
+ "license": "MIT",
+ "bin": {
+ "acorn": "bin/acorn"
+ },
+ "engines": {
+ "node": ">=0.4.0"
}
},
- "node_modules/urix": {
- "version": "0.1.0",
+ "node_modules/terser/node_modules/commander": {
+ "version": "2.20.3",
"dev": true,
"license": "MIT"
},
- "node_modules/url": {
- "version": "0.11.1",
+ "node_modules/terser/node_modules/source-map": {
+ "version": "0.6.1",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/terser/node_modules/source-map-support": {
+ "version": "0.5.21",
"dev": true,
"license": "MIT",
"dependencies": {
- "punycode": "^1.4.1",
- "qs": "^6.11.0"
+ "buffer-from": "^1.0.0",
+ "source-map": "^0.6.0"
}
},
- "node_modules/url-join": {
- "version": "4.0.1",
- "dev": true,
- "license": "MIT"
+ "node_modules/test-exclude": {
+ "version": "6.0.0",
+ "license": "ISC",
+ "dependencies": {
+ "@istanbuljs/schema": "^0.1.2",
+ "glob": "^7.1.4",
+ "minimatch": "^3.0.4"
+ },
+ "engines": {
+ "node": ">=8"
+ }
},
- "node_modules/url-loader": {
- "version": "4.1.1",
+ "node_modules/text-extensions": {
+ "version": "1.9.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "loader-utils": "^2.0.0",
- "mime-types": "^2.1.27",
- "schema-utils": "^3.0.0"
- },
"engines": {
- "node": ">= 10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "file-loader": "*",
- "webpack": "^4.0.0 || ^5.0.0"
- },
- "peerDependenciesMeta": {
- "file-loader": {
- "optional": true
- }
+ "node": ">=0.10"
}
},
- "node_modules/url-parse": {
- "version": "1.5.10",
+ "node_modules/text-hex": {
+ "version": "1.0.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/text-table": {
+ "version": "0.2.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/thenify": {
+ "version": "3.3.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "querystringify": "^2.1.1",
- "requires-port": "^1.0.0"
+ "any-promise": "^1.0.0"
}
},
- "node_modules/url-parse-lax": {
- "version": "3.0.0",
+ "node_modules/thenify-all": {
+ "version": "1.6.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "prepend-http": "^2.0.0"
+ "thenify": ">= 3.1.0 < 4"
},
"engines": {
- "node": ">=4"
+ "node": ">=0.8"
}
},
- "node_modules/url/node_modules/punycode": {
- "version": "1.4.1",
+ "node_modules/through": {
+ "version": "2.3.8",
"dev": true,
"license": "MIT"
},
- "node_modules/use": {
- "version": "3.1.1",
+ "node_modules/through2": {
+ "version": "4.0.2",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "readable-stream": "3"
}
},
- "node_modules/use-callback-ref": {
- "version": "1.3.0",
+ "node_modules/timers-browserify": {
+ "version": "2.0.12",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "tslib": "^2.0.0"
+ "setimmediate": "^1.0.4"
},
"engines": {
- "node": ">=10"
- },
- "peerDependencies": {
- "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
+ "node": ">=0.6.0"
}
},
- "node_modules/use-isomorphic-layout-effect": {
- "version": "1.1.2",
+ "node_modules/tiny-invariant": {
+ "version": "1.3.3",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/title-case": {
+ "version": "3.0.3",
+ "dev": true,
"license": "MIT",
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
+ "dependencies": {
+ "tslib": "^2.0.3"
}
},
- "node_modules/use-sidecar": {
- "version": "1.1.2",
+ "node_modules/tmp": {
+ "version": "0.0.33",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "detect-node-es": "^1.1.0",
- "tslib": "^2.0.0"
+ "os-tmpdir": "~1.0.2"
},
"engines": {
- "node": ">=10"
- },
- "peerDependencies": {
- "@types/react": "^16.9.0 || ^17.0.0 || ^18.0.0",
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
+ "node": ">=0.6.0"
}
},
- "node_modules/use-sync-external-store": {
- "version": "1.2.0",
+ "node_modules/tmpl": {
+ "version": "1.0.5",
+ "dev": true,
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/to-fast-properties": {
+ "version": "2.0.0",
"license": "MIT",
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/to-readable-stream": {
+ "version": "1.0.0",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
}
},
- "node_modules/util": {
- "version": "0.11.1",
+ "node_modules/to-regex-range": {
+ "version": "5.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "inherits": "2.0.3"
+ "is-number": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=8.0"
}
},
- "node_modules/util-deprecate": {
- "version": "1.0.2",
+ "node_modules/tocbot": {
+ "version": "4.25.0",
"dev": true,
"license": "MIT"
},
- "node_modules/util.promisify": {
- "version": "1.0.0",
+ "node_modules/toidentifier": {
+ "version": "1.0.1",
"dev": true,
"license": "MIT",
- "dependencies": {
- "define-properties": "^1.1.2",
- "object.getownpropertydescriptors": "^2.0.3"
+ "engines": {
+ "node": ">=0.6"
}
},
- "node_modules/util/node_modules/inherits": {
- "version": "2.0.3",
+ "node_modules/token-stream": {
+ "version": "0.0.1",
"dev": true,
- "license": "ISC"
+ "license": "MIT"
},
- "node_modules/utila": {
- "version": "0.4.0",
+ "node_modules/totalist": {
+ "version": "1.1.0",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
},
- "node_modules/utils-merge": {
+ "node_modules/tough-cookie": {
+ "version": "3.0.1",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "ip-regex": "^2.1.0",
+ "psl": "^1.1.28",
+ "punycode": "^2.1.1"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/tr46": {
"version": "1.0.1",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">= 0.4.0"
+ "dependencies": {
+ "punycode": "^2.1.0"
}
},
- "node_modules/uuid": {
- "version": "8.3.2",
+ "node_modules/tree-kill": {
+ "version": "1.2.2",
"dev": true,
"license": "MIT",
"bin": {
- "uuid": "dist/bin/uuid"
+ "tree-kill": "cli.js"
}
},
- "node_modules/uuid-browser": {
- "version": "3.1.0",
+ "node_modules/treeverse": {
+ "version": "2.0.0",
"dev": true,
- "license": "MIT"
+ "license": "ISC",
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ }
},
- "node_modules/uvu": {
- "version": "0.5.6",
+ "node_modules/trim-lines": {
+ "version": "3.0.1",
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/trim-newlines": {
+ "version": "3.0.1",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "dequal": "^2.0.0",
- "diff": "^5.0.0",
- "kleur": "^4.0.3",
- "sade": "^1.7.3"
- },
- "bin": {
- "uvu": "bin.js"
- },
"engines": {
"node": ">=8"
}
},
- "node_modules/uvu/node_modules/kleur": {
- "version": "4.1.5",
+ "node_modules/triple-beam": {
+ "version": "1.4.1",
+ "dev": true,
"license": "MIT",
"engines": {
- "node": ">=6"
+ "node": ">= 14.0.0"
}
},
- "node_modules/v8-compile-cache": {
- "version": "2.3.0",
+ "node_modules/trough": {
+ "version": "2.2.0",
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/ts-dedent": {
+ "version": "2.2.0",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.10"
+ }
},
- "node_modules/v8-to-istanbul": {
- "version": "8.1.1",
- "license": "ISC",
+ "node_modules/ts-interface-checker": {
+ "version": "0.1.13",
+ "dev": true,
+ "license": "Apache-2.0"
+ },
+ "node_modules/ts-jest": {
+ "version": "29.1.2",
+ "dev": true,
+ "license": "MIT",
"dependencies": {
- "@types/istanbul-lib-coverage": "^2.0.1",
- "convert-source-map": "^1.6.0",
- "source-map": "^0.7.3"
+ "bs-logger": "0.x",
+ "fast-json-stable-stringify": "2.x",
+ "jest-util": "^29.0.0",
+ "json5": "^2.2.3",
+ "lodash.memoize": "4.x",
+ "make-error": "1.x",
+ "semver": "^7.5.3",
+ "yargs-parser": "^21.0.1"
+ },
+ "bin": {
+ "ts-jest": "cli.js"
},
"engines": {
- "node": ">=10.12.0"
+ "node": "^16.10.0 || ^18.0.0 || >=20.0.0"
+ },
+ "peerDependencies": {
+ "@babel/core": ">=7.0.0-beta.0 <8",
+ "@jest/types": "^29.0.0",
+ "babel-jest": "^29.0.0",
+ "jest": "^29.0.0",
+ "typescript": ">=4.3 <6"
+ },
+ "peerDependenciesMeta": {
+ "@babel/core": {
+ "optional": true
+ },
+ "@jest/types": {
+ "optional": true
+ },
+ "babel-jest": {
+ "optional": true
+ },
+ "esbuild": {
+ "optional": true
+ }
}
},
- "node_modules/v8-to-istanbul/node_modules/source-map": {
- "version": "0.7.3",
- "license": "BSD-3-Clause",
+ "node_modules/ts-jest/node_modules/lru-cache": {
+ "version": "6.0.0",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "yallist": "^4.0.0"
+ },
"engines": {
- "node": ">= 8"
+ "node": ">=10"
}
},
- "node_modules/v8flags": {
- "version": "4.0.0",
+ "node_modules/ts-jest/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
+ "dependencies": {
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
+ },
"engines": {
- "node": ">= 10.13.0"
+ "node": ">=10"
}
},
- "node_modules/validate-npm-package-license": {
- "version": "3.0.4",
+ "node_modules/ts-jest/node_modules/yallist": {
+ "version": "4.0.0",
"dev": true,
- "license": "Apache-2.0",
- "dependencies": {
- "spdx-correct": "^3.0.0",
- "spdx-expression-parse": "^3.0.0"
- }
+ "license": "ISC"
},
- "node_modules/validate-npm-package-name": {
- "version": "3.0.0",
+ "node_modules/ts-jest/node_modules/yargs-parser": {
+ "version": "21.1.1",
"dev": true,
"license": "ISC",
- "dependencies": {
- "builtins": "^1.0.3"
+ "engines": {
+ "node": ">=12"
}
},
- "node_modules/vary": {
- "version": "1.1.2",
+ "node_modules/ts-pnp": {
+ "version": "1.2.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">= 0.8"
+ "node": ">=6"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
}
},
- "node_modules/verror": {
- "version": "1.10.0",
+ "node_modules/tsconfig-paths": {
+ "version": "4.2.0",
"dev": true,
- "engines": [
- "node >=0.6.0"
- ],
"license": "MIT",
"dependencies": {
- "assert-plus": "^1.0.0",
- "core-util-is": "1.0.2",
- "extsprintf": "^1.2.0"
+ "json5": "^2.2.2",
+ "minimist": "^1.2.6",
+ "strip-bom": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
}
},
- "node_modules/vfile": {
- "version": "4.2.1",
+ "node_modules/tsconfig-paths-webpack-plugin": {
+ "version": "4.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@types/unist": "^2.0.0",
- "is-buffer": "^2.0.0",
- "unist-util-stringify-position": "^2.0.0",
- "vfile-message": "^2.0.0"
+ "chalk": "^4.1.0",
+ "enhanced-resolve": "^5.7.0",
+ "tsconfig-paths": "^4.1.2"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=10.13.0"
}
},
- "node_modules/vfile-location": {
- "version": "3.2.0",
+ "node_modules/tsconfig-paths/node_modules/strip-bom": {
+ "version": "3.0.0",
"dev": true,
"license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/vfile-matter": {
- "version": "3.0.1",
- "license": "MIT",
- "dependencies": {
- "@types/js-yaml": "^4.0.0",
- "is-buffer": "^2.0.0",
- "js-yaml": "^4.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
+ "node_modules/tslib": {
+ "version": "2.6.2",
+ "license": "0BSD"
},
- "node_modules/vfile-message": {
- "version": "2.0.4",
+ "node_modules/tsup": {
+ "version": "5.11.13",
"dev": true,
"license": "MIT",
"dependencies": {
- "@types/unist": "^2.0.0",
- "unist-util-stringify-position": "^2.0.0"
+ "bundle-require": "^3.0.2",
+ "cac": "^6.7.12",
+ "chokidar": "^3.5.1",
+ "debug": "^4.3.1",
+ "esbuild": "^0.14.2",
+ "execa": "^5.0.0",
+ "globby": "^11.0.3",
+ "joycon": "^3.0.1",
+ "postcss-load-config": "^3.0.1",
+ "resolve-from": "^5.0.0",
+ "rollup": "^2.60.0",
+ "source-map": "^0.7.3",
+ "sucrase": "^3.20.3",
+ "tree-kill": "^1.2.2"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "bin": {
+ "tsup": "dist/cli-default.js",
+ "tsup-node": "dist/cli-node.js"
+ },
+ "peerDependencies": {
+ "typescript": "^4.1.0"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
}
},
- "node_modules/vite": {
- "version": "4.1.4",
+ "node_modules/tsup/node_modules/postcss-load-config": {
+ "version": "3.1.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "esbuild": "^0.16.14",
- "postcss": "^8.4.21",
- "resolve": "^1.22.1",
- "rollup": "^3.10.0"
- },
- "bin": {
- "vite": "bin/vite.js"
+ "lilconfig": "^2.0.5",
+ "yaml": "^1.10.2"
},
"engines": {
- "node": "^14.18.0 || >=16.0.0"
+ "node": ">= 10"
},
- "optionalDependencies": {
- "fsevents": "~2.3.2"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
},
"peerDependencies": {
- "@types/node": ">= 14",
- "less": "*",
- "sass": "*",
- "stylus": "*",
- "sugarss": "*",
- "terser": "^5.4.0"
+ "postcss": ">=8.0.9",
+ "ts-node": ">=9.0.0"
},
"peerDependenciesMeta": {
- "@types/node": {
- "optional": true
- },
- "less": {
- "optional": true
- },
- "sass": {
- "optional": true
- },
- "stylus": {
- "optional": true
- },
- "sugarss": {
+ "postcss": {
"optional": true
},
- "terser": {
+ "ts-node": {
"optional": true
}
}
},
- "node_modules/vite-project": {
- "resolved": "apps/vite-project",
- "link": true
- },
- "node_modules/vite-v2-project": {
- "resolved": "apps/vite-v2-project",
- "link": true
- },
- "node_modules/vite/node_modules/@esbuild/android-arm": {
- "version": "0.16.17",
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.16.17.tgz",
- "integrity": "sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw==",
- "cpu": [
- "arm"
- ],
+ "node_modules/tsutils": {
+ "version": "3.21.0",
"dev": true,
- "optional": true,
- "os": [
- "android"
- ],
+ "license": "MIT",
+ "dependencies": {
+ "tslib": "^1.8.1"
+ },
"engines": {
- "node": ">=12"
+ "node": ">= 6"
+ },
+ "peerDependencies": {
+ "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta"
}
},
- "node_modules/vite/node_modules/@esbuild/android-arm64": {
- "version": "0.16.17",
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.16.17.tgz",
- "integrity": "sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg==",
- "cpu": [
- "arm64"
- ],
+ "node_modules/tsutils/node_modules/tslib": {
+ "version": "1.14.1",
"dev": true,
- "optional": true,
- "os": [
- "android"
- ],
- "engines": {
- "node": ">=12"
- }
+ "license": "0BSD"
},
- "node_modules/vite/node_modules/@esbuild/android-x64": {
- "version": "0.16.17",
- "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.16.17.tgz",
- "integrity": "sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ==",
- "cpu": [
- "x64"
- ],
+ "node_modules/tty-browserify": {
+ "version": "0.0.1",
"dev": true,
- "optional": true,
- "os": [
- "android"
- ],
- "engines": {
- "node": ">=12"
- }
+ "license": "MIT"
},
- "node_modules/vite/node_modules/@esbuild/darwin-arm64": {
- "version": "0.16.17",
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.16.17.tgz",
- "integrity": "sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w==",
- "cpu": [
- "arm64"
- ],
+ "node_modules/tunnel-agent": {
+ "version": "0.6.0",
"dev": true,
- "optional": true,
- "os": [
- "darwin"
- ],
+ "license": "Apache-2.0",
+ "dependencies": {
+ "safe-buffer": "^5.0.1"
+ },
"engines": {
- "node": ">=12"
+ "node": "*"
}
},
- "node_modules/vite/node_modules/@esbuild/freebsd-arm64": {
- "version": "0.16.17",
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.16.17.tgz",
- "integrity": "sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw==",
- "cpu": [
- "arm64"
- ],
+ "node_modules/turbo": {
+ "version": "1.13.2",
"dev": true,
- "optional": true,
- "os": [
- "freebsd"
- ],
- "engines": {
- "node": ">=12"
+ "license": "MPL-2.0",
+ "bin": {
+ "turbo": "bin/turbo"
+ },
+ "optionalDependencies": {
+ "turbo-darwin-64": "1.13.2",
+ "turbo-darwin-arm64": "1.13.2",
+ "turbo-linux-64": "1.13.2",
+ "turbo-linux-arm64": "1.13.2",
+ "turbo-windows-64": "1.13.2",
+ "turbo-windows-arm64": "1.13.2"
}
},
- "node_modules/vite/node_modules/@esbuild/freebsd-x64": {
- "version": "0.16.17",
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.16.17.tgz",
- "integrity": "sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug==",
+ "node_modules/turbo-darwin-64": {
+ "version": "1.11.1",
"cpu": [
"x64"
],
- "dev": true,
- "optional": true,
- "os": [
- "freebsd"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/vite/node_modules/@esbuild/linux-arm": {
- "version": "0.16.17",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.16.17.tgz",
- "integrity": "sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ==",
- "cpu": [
- "arm"
- ],
- "dev": true,
+ "license": "MPL-2.0",
"optional": true,
"os": [
- "linux"
- ],
- "engines": {
- "node": ">=12"
- }
+ "darwin"
+ ]
},
- "node_modules/vite/node_modules/@esbuild/linux-arm64": {
- "version": "0.16.17",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.16.17.tgz",
- "integrity": "sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g==",
+ "node_modules/turbo-darwin-arm64": {
+ "version": "1.11.1",
+ "resolved": "https://registry.npmjs.org/turbo-darwin-arm64/-/turbo-darwin-arm64-1.11.1.tgz",
+ "integrity": "sha512-lIpT7nPkU0xmpkI8VOGQcgoQKmUATRMpRhTDclz6j/Px7Qtxjc+2PitKHKfR3aCnseoRMGkgMzPEJTPUwCpnlQ==",
"cpu": [
"arm64"
],
- "dev": true,
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/vite/node_modules/@esbuild/linux-ia32": {
- "version": "0.16.17",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.16.17.tgz",
- "integrity": "sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg==",
- "cpu": [
- "ia32"
- ],
- "dev": true,
"optional": true,
"os": [
- "linux"
- ],
- "engines": {
- "node": ">=12"
- }
+ "darwin"
+ ]
},
- "node_modules/vite/node_modules/@esbuild/linux-loong64": {
- "version": "0.16.17",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.16.17.tgz",
- "integrity": "sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ==",
+ "node_modules/turbo-linux-64": {
+ "version": "1.11.1",
+ "resolved": "https://registry.npmjs.org/turbo-linux-64/-/turbo-linux-64-1.11.1.tgz",
+ "integrity": "sha512-mHFSqMkgy3h/M8Ocj2oiOr6CqlCqB6coCPWVIAmraBk+SQywwsszgJ69GWBfm7lwwJvb3B1YN1wkZNe9ZZnBfg==",
"cpu": [
- "loong64"
+ "x64"
],
- "dev": true,
"optional": true,
"os": [
"linux"
- ],
- "engines": {
- "node": ">=12"
- }
+ ]
},
- "node_modules/vite/node_modules/@esbuild/linux-mips64el": {
- "version": "0.16.17",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.16.17.tgz",
- "integrity": "sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw==",
+ "node_modules/turbo-linux-arm64": {
+ "version": "1.11.1",
+ "resolved": "https://registry.npmjs.org/turbo-linux-arm64/-/turbo-linux-arm64-1.11.1.tgz",
+ "integrity": "sha512-6ybojTkAkymo1Ig7kU3s2YQUUSRf3l2qatPZgw3v4OmFTSU2feCU1sHjAEqhHwEjV1KciDo1wRl1gjjyby4foQ==",
"cpu": [
- "mips64el"
+ "arm64"
],
- "dev": true,
"optional": true,
"os": [
"linux"
- ],
- "engines": {
- "node": ">=12"
- }
+ ]
},
- "node_modules/vite/node_modules/@esbuild/linux-ppc64": {
- "version": "0.16.17",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.16.17.tgz",
- "integrity": "sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g==",
+ "node_modules/turbo-windows-64": {
+ "version": "1.11.1",
+ "resolved": "https://registry.npmjs.org/turbo-windows-64/-/turbo-windows-64-1.11.1.tgz",
+ "integrity": "sha512-ytWy6+yEtBfv6nbgCKW6HsolgUFAC1PZGMPzbqRGnCm2eLVWhDuwO1Yk7uq4cvdrpXcXgOMcPEoJZxUCDbeJaQ==",
"cpu": [
- "ppc64"
+ "x64"
],
- "dev": true,
"optional": true,
"os": [
- "linux"
- ],
- "engines": {
- "node": ">=12"
- }
+ "win32"
+ ]
},
- "node_modules/vite/node_modules/@esbuild/linux-riscv64": {
- "version": "0.16.17",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.16.17.tgz",
- "integrity": "sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw==",
+ "node_modules/turbo-windows-arm64": {
+ "version": "1.11.1",
+ "resolved": "https://registry.npmjs.org/turbo-windows-arm64/-/turbo-windows-arm64-1.11.1.tgz",
+ "integrity": "sha512-O04DdJoRavOh/v9/MM5wWCEtOekO4aiLljNZc/fOh853sOhid61ZRSEYUmS9ecjmZ/OjKqedIfbkitaQ77c4xA==",
"cpu": [
- "riscv64"
+ "arm64"
],
- "dev": true,
"optional": true,
"os": [
- "linux"
- ],
- "engines": {
- "node": ">=12"
- }
+ "win32"
+ ]
},
- "node_modules/vite/node_modules/@esbuild/linux-s390x": {
- "version": "0.16.17",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.16.17.tgz",
- "integrity": "sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w==",
+ "node_modules/turbo/node_modules/turbo-darwin-64": {
+ "version": "1.13.2",
"cpu": [
- "s390x"
+ "x64"
],
"dev": true,
+ "license": "MPL-2.0",
"optional": true,
"os": [
- "linux"
- ],
- "engines": {
- "node": ">=12"
- }
+ "darwin"
+ ]
},
- "node_modules/vite/node_modules/@esbuild/linux-x64": {
- "version": "0.16.17",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.16.17.tgz",
- "integrity": "sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw==",
+ "node_modules/turbo/node_modules/turbo-darwin-arm64": {
+ "version": "1.13.2",
+ "resolved": "https://registry.npmjs.org/turbo-darwin-arm64/-/turbo-darwin-arm64-1.13.2.tgz",
+ "integrity": "sha512-0HySm06/D2N91rJJ89FbiI/AodmY8B3WDSFTVEpu2+8spUw7hOJ8okWOT0e5iGlyayUP9gr31eOeL3VFZkpfCw==",
"cpu": [
- "x64"
+ "arm64"
],
"dev": true,
"optional": true,
"os": [
- "linux"
- ],
- "engines": {
- "node": ">=12"
- }
+ "darwin"
+ ]
},
- "node_modules/vite/node_modules/@esbuild/netbsd-x64": {
- "version": "0.16.17",
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.16.17.tgz",
- "integrity": "sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA==",
+ "node_modules/turbo/node_modules/turbo-linux-64": {
+ "version": "1.13.2",
+ "resolved": "https://registry.npmjs.org/turbo-linux-64/-/turbo-linux-64-1.13.2.tgz",
+ "integrity": "sha512-7HnibgbqZrjn4lcfIouzlPu8ZHSBtURG4c7Bedu7WJUDeZo+RE1crlrQm8wuwO54S0siYqUqo7GNHxu4IXbioQ==",
"cpu": [
"x64"
],
"dev": true,
"optional": true,
"os": [
- "netbsd"
- ],
- "engines": {
- "node": ">=12"
- }
+ "linux"
+ ]
},
- "node_modules/vite/node_modules/@esbuild/openbsd-x64": {
- "version": "0.16.17",
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.16.17.tgz",
- "integrity": "sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg==",
+ "node_modules/turbo/node_modules/turbo-linux-arm64": {
+ "version": "1.13.2",
+ "resolved": "https://registry.npmjs.org/turbo-linux-arm64/-/turbo-linux-arm64-1.13.2.tgz",
+ "integrity": "sha512-sUq4dbpk6SNKg/Hkwn256Vj2AEYSQdG96repio894h5/LEfauIK2QYiC/xxAeW3WBMc6BngmvNyURIg7ltrePg==",
"cpu": [
- "x64"
+ "arm64"
],
"dev": true,
"optional": true,
"os": [
- "openbsd"
- ],
- "engines": {
- "node": ">=12"
- }
+ "linux"
+ ]
},
- "node_modules/vite/node_modules/@esbuild/sunos-x64": {
- "version": "0.16.17",
- "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.16.17.tgz",
- "integrity": "sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw==",
+ "node_modules/turbo/node_modules/turbo-windows-64": {
+ "version": "1.13.2",
+ "resolved": "https://registry.npmjs.org/turbo-windows-64/-/turbo-windows-64-1.13.2.tgz",
+ "integrity": "sha512-DqzhcrciWq3dpzllJR2VVIyOhSlXYCo4mNEWl98DJ3FZ08PEzcI3ceudlH6F0t/nIcfSItK1bDP39cs7YoZHEA==",
"cpu": [
"x64"
],
"dev": true,
"optional": true,
"os": [
- "sunos"
- ],
- "engines": {
- "node": ">=12"
- }
+ "win32"
+ ]
},
- "node_modules/vite/node_modules/@esbuild/win32-arm64": {
- "version": "0.16.17",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.16.17.tgz",
- "integrity": "sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw==",
+ "node_modules/turbo/node_modules/turbo-windows-arm64": {
+ "version": "1.13.2",
+ "resolved": "https://registry.npmjs.org/turbo-windows-arm64/-/turbo-windows-arm64-1.13.2.tgz",
+ "integrity": "sha512-WnPMrwfCXxK69CdDfS1/j2DlzcKxSmycgDAqV0XCYpK/812KB0KlvsVAt5PjEbZGXkY88pCJ1BLZHAjF5FcbqA==",
"cpu": [
"arm64"
],
@@ -47490,3141 +35749,3081 @@
"optional": true,
"os": [
"win32"
- ],
+ ]
+ },
+ "node_modules/tweetnacl": {
+ "version": "0.14.5",
+ "dev": true,
+ "license": "Unlicense"
+ },
+ "node_modules/type": {
+ "version": "2.7.2",
+ "license": "ISC"
+ },
+ "node_modules/type-check": {
+ "version": "0.4.0",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "prelude-ls": "^1.2.1"
+ },
"engines": {
- "node": ">=12"
+ "node": ">= 0.8.0"
}
},
- "node_modules/vite/node_modules/@esbuild/win32-ia32": {
- "version": "0.16.17",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.16.17.tgz",
- "integrity": "sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig==",
- "cpu": [
- "ia32"
- ],
+ "node_modules/type-detect": {
+ "version": "4.0.8",
"dev": true,
- "optional": true,
- "os": [
- "win32"
- ],
+ "license": "MIT",
"engines": {
- "node": ">=12"
+ "node": ">=4"
}
},
- "node_modules/vite/node_modules/@esbuild/win32-x64": {
- "version": "0.16.17",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.16.17.tgz",
- "integrity": "sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q==",
- "cpu": [
- "x64"
- ],
+ "node_modules/type-fest": {
+ "version": "2.19.0",
"dev": true,
- "optional": true,
- "os": [
- "win32"
- ],
+ "license": "(MIT OR CC0-1.0)",
"engines": {
- "node": ">=12"
+ "node": ">=12.20"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/vite/node_modules/esbuild": {
- "version": "0.16.17",
+ "node_modules/type-is": {
+ "version": "1.6.18",
"dev": true,
- "hasInstallScript": true,
"license": "MIT",
- "bin": {
- "esbuild": "bin/esbuild"
+ "dependencies": {
+ "media-typer": "0.3.0",
+ "mime-types": "~2.1.24"
},
"engines": {
- "node": ">=12"
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/typeable-promisify": {
+ "version": "1.0.1",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "any-promise": "^1.3.0"
+ }
+ },
+ "node_modules/typed-array-buffer": {
+ "version": "1.0.2",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "es-errors": "^1.3.0",
+ "is-typed-array": "^1.1.13"
},
- "optionalDependencies": {
- "@esbuild/android-arm": "0.16.17",
- "@esbuild/android-arm64": "0.16.17",
- "@esbuild/android-x64": "0.16.17",
- "@esbuild/darwin-arm64": "0.16.17",
- "@esbuild/darwin-x64": "0.16.17",
- "@esbuild/freebsd-arm64": "0.16.17",
- "@esbuild/freebsd-x64": "0.16.17",
- "@esbuild/linux-arm": "0.16.17",
- "@esbuild/linux-arm64": "0.16.17",
- "@esbuild/linux-ia32": "0.16.17",
- "@esbuild/linux-loong64": "0.16.17",
- "@esbuild/linux-mips64el": "0.16.17",
- "@esbuild/linux-ppc64": "0.16.17",
- "@esbuild/linux-riscv64": "0.16.17",
- "@esbuild/linux-s390x": "0.16.17",
- "@esbuild/linux-x64": "0.16.17",
- "@esbuild/netbsd-x64": "0.16.17",
- "@esbuild/openbsd-x64": "0.16.17",
- "@esbuild/sunos-x64": "0.16.17",
- "@esbuild/win32-arm64": "0.16.17",
- "@esbuild/win32-ia32": "0.16.17",
- "@esbuild/win32-x64": "0.16.17"
- }
- },
- "node_modules/vite/node_modules/picocolors": {
- "version": "1.0.0",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/typed-array-byte-length": {
+ "version": "1.0.1",
"dev": true,
- "license": "ISC"
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "for-each": "^0.3.3",
+ "gopd": "^1.0.1",
+ "has-proto": "^1.0.3",
+ "is-typed-array": "^1.1.13"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
},
- "node_modules/vite/node_modules/postcss": {
- "version": "8.4.21",
+ "node_modules/typed-array-byte-offset": {
+ "version": "1.0.2",
"dev": true,
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/postcss"
- }
- ],
"license": "MIT",
"dependencies": {
- "nanoid": "^3.3.4",
- "picocolors": "^1.0.0",
- "source-map-js": "^1.0.2"
+ "available-typed-arrays": "^1.0.7",
+ "call-bind": "^1.0.7",
+ "for-each": "^0.3.3",
+ "gopd": "^1.0.1",
+ "has-proto": "^1.0.3",
+ "is-typed-array": "^1.1.13"
},
"engines": {
- "node": "^10 || ^12 || >=14"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/vite/node_modules/rollup": {
- "version": "3.19.1",
+ "node_modules/typed-array-length": {
+ "version": "1.0.6",
"dev": true,
"license": "MIT",
- "bin": {
- "rollup": "dist/bin/rollup"
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "for-each": "^0.3.3",
+ "gopd": "^1.0.1",
+ "has-proto": "^1.0.3",
+ "is-typed-array": "^1.1.13",
+ "possible-typed-array-names": "^1.0.0"
},
"engines": {
- "node": ">=14.18.0",
- "npm": ">=8.0.0"
+ "node": ">= 0.4"
},
- "optionalDependencies": {
- "fsevents": "~2.3.2"
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/vm-browserify": {
- "version": "1.1.2",
+ "node_modules/typedarray": {
+ "version": "0.0.6",
"dev": true,
"license": "MIT"
},
- "node_modules/void-elements": {
- "version": "2.0.1",
+ "node_modules/typedarray-to-buffer": {
+ "version": "3.1.5",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "is-typedarray": "^1.0.0"
+ }
+ },
+ "node_modules/typescript": {
+ "version": "4.5.5",
+ "license": "Apache-2.0",
+ "bin": {
+ "tsc": "bin/tsc",
+ "tsserver": "bin/tsserver"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": ">=4.2.0"
}
},
- "node_modules/w3c-hr-time": {
+ "node_modules/ufo": {
+ "version": "1.5.3",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/uglify-js": {
+ "version": "3.17.4",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "optional": true,
+ "bin": {
+ "uglifyjs": "bin/uglifyjs"
+ },
+ "engines": {
+ "node": ">=0.8.0"
+ }
+ },
+ "node_modules/uglify-to-browserify": {
+ "version": "1.0.2",
+ "dev": true,
+ "license": "MIT",
+ "optional": true
+ },
+ "node_modules/unbox-primitive": {
"version": "1.0.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "browser-process-hrtime": "^1.0.0"
+ "call-bind": "^1.0.2",
+ "has-bigints": "^1.0.2",
+ "has-symbols": "^1.0.3",
+ "which-boxed-primitive": "^1.0.2"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/w3c-keyname": {
- "version": "2.2.4",
+ "node_modules/unc-path-regex": {
+ "version": "0.1.2",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/undici-types": {
+ "version": "5.26.5",
+ "dev": true,
"license": "MIT"
},
- "node_modules/w3c-xmlserializer": {
- "version": "3.0.0",
+ "node_modules/unicode-canonical-property-names-ecmascript": {
+ "version": "2.0.0",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/unicode-match-property-ecmascript": {
+ "version": "2.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "xml-name-validator": "^4.0.0"
+ "unicode-canonical-property-names-ecmascript": "^2.0.0",
+ "unicode-property-aliases-ecmascript": "^2.0.0"
},
"engines": {
- "node": ">=12"
+ "node": ">=4"
}
},
- "node_modules/w3c-xmlserializer/node_modules/xml-name-validator": {
- "version": "4.0.0",
+ "node_modules/unicode-match-property-value-ecmascript": {
+ "version": "2.1.0",
"dev": true,
- "license": "Apache-2.0",
+ "license": "MIT",
"engines": {
- "node": ">=12"
+ "node": ">=4"
}
},
- "node_modules/wait-on": {
- "version": "5.3.0",
+ "node_modules/unicode-property-aliases-ecmascript": {
+ "version": "2.1.0",
"dev": true,
"license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/unified": {
+ "version": "10.1.2",
+ "license": "MIT",
"dependencies": {
- "axios": "^0.21.1",
- "joi": "^17.3.0",
- "lodash": "^4.17.21",
- "minimist": "^1.2.5",
- "rxjs": "^6.6.3"
+ "@types/unist": "^2.0.0",
+ "bail": "^2.0.0",
+ "extend": "^3.0.0",
+ "is-buffer": "^2.0.0",
+ "is-plain-obj": "^4.0.0",
+ "trough": "^2.0.0",
+ "vfile": "^5.0.0"
},
- "bin": {
- "wait-on": "bin/wait-on"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unified/node_modules/is-plain-obj": {
+ "version": "4.1.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/unique-filename": {
+ "version": "2.0.1",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "unique-slug": "^3.0.0"
},
"engines": {
- "node": ">=8.9.0"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/wait-port": {
- "version": "0.2.14",
+ "node_modules/unique-slug": {
+ "version": "3.0.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "chalk": "^2.4.2",
- "commander": "^3.0.2",
- "debug": "^4.1.1"
+ "imurmurhash": "^0.1.4"
},
- "bin": {
- "wait-port": "bin/wait-port.js"
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ }
+ },
+ "node_modules/unique-string": {
+ "version": "2.0.0",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "crypto-random-string": "^2.0.0"
},
"engines": {
"node": ">=8"
}
},
- "node_modules/wait-port/node_modules/commander": {
- "version": "3.0.2",
- "dev": true,
- "license": "MIT"
+ "node_modules/unist-util-generated": {
+ "version": "2.0.1",
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
},
- "node_modules/walk-up-path": {
- "version": "1.0.0",
- "dev": true,
- "license": "ISC"
+ "node_modules/unist-util-is": {
+ "version": "5.2.1",
+ "license": "MIT",
+ "dependencies": {
+ "@types/unist": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
},
- "node_modules/walker": {
- "version": "1.0.8",
- "dev": true,
- "license": "Apache-2.0",
+ "node_modules/unist-util-position": {
+ "version": "4.0.4",
+ "license": "MIT",
"dependencies": {
- "makeerror": "1.0.12"
+ "@types/unist": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/warning": {
- "version": "4.0.3",
+ "node_modules/unist-util-position-from-estree": {
+ "version": "1.1.2",
"license": "MIT",
"dependencies": {
- "loose-envify": "^1.0.0"
+ "@types/unist": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/watchpack": {
- "version": "2.4.0",
- "dev": true,
+ "node_modules/unist-util-remove-position": {
+ "version": "4.0.2",
"license": "MIT",
"dependencies": {
- "glob-to-regexp": "^0.4.1",
- "graceful-fs": "^4.1.2"
+ "@types/unist": "^2.0.0",
+ "unist-util-visit": "^4.0.0"
},
- "engines": {
- "node": ">=10.13.0"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unist-util-stringify-position": {
+ "version": "3.0.3",
+ "license": "MIT",
+ "dependencies": {
+ "@types/unist": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unist-util-visit": {
+ "version": "4.1.2",
+ "license": "MIT",
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^5.0.0",
+ "unist-util-visit-parents": "^5.1.1"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unist-util-visit-parents": {
+ "version": "5.1.3",
+ "license": "MIT",
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^5.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/watchpack-chokidar2": {
+ "node_modules/universal-user-agent": {
+ "version": "6.0.1",
+ "license": "ISC"
+ },
+ "node_modules/universalify": {
"version": "2.0.1",
"dev": true,
"license": "MIT",
- "optional": true,
- "dependencies": {
- "chokidar": "^2.1.8"
+ "engines": {
+ "node": ">= 10.0.0"
}
},
- "node_modules/watchpack-chokidar2/node_modules/anymatch": {
- "version": "2.0.0",
+ "node_modules/unpipe": {
+ "version": "1.0.0",
"dev": true,
- "license": "ISC",
- "optional": true,
- "dependencies": {
- "micromatch": "^3.1.4",
- "normalize-path": "^2.1.1"
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
}
},
- "node_modules/watchpack-chokidar2/node_modules/anymatch/node_modules/normalize-path": {
- "version": "2.1.1",
+ "node_modules/unplugin": {
+ "version": "1.10.1",
"dev": true,
"license": "MIT",
- "optional": true,
"dependencies": {
- "remove-trailing-separator": "^1.0.1"
+ "acorn": "^8.11.3",
+ "chokidar": "^3.6.0",
+ "webpack-sources": "^3.2.3",
+ "webpack-virtual-modules": "^0.6.1"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=14.0.0"
}
},
- "node_modules/watchpack-chokidar2/node_modules/binary-extensions": {
- "version": "1.13.1",
+ "node_modules/unplugin/node_modules/acorn": {
+ "version": "8.11.3",
"dev": true,
"license": "MIT",
- "optional": true,
+ "bin": {
+ "acorn": "bin/acorn"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": ">=0.4.0"
}
},
- "node_modules/watchpack-chokidar2/node_modules/braces": {
- "version": "2.3.2",
+ "node_modules/unplugin/node_modules/webpack-virtual-modules": {
+ "version": "0.6.1",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/untildify": {
+ "version": "4.0.0",
"dev": true,
"license": "MIT",
- "optional": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/upath": {
+ "version": "2.0.1",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4",
+ "yarn": "*"
+ }
+ },
+ "node_modules/update-browserslist-db": {
+ "version": "1.0.13",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
"dependencies": {
- "arr-flatten": "^1.1.0",
- "array-unique": "^0.3.2",
- "extend-shallow": "^2.0.1",
- "fill-range": "^4.0.0",
- "isobject": "^3.0.1",
- "repeat-element": "^1.1.2",
- "snapdragon": "^0.8.1",
- "snapdragon-node": "^2.0.1",
- "split-string": "^3.0.2",
- "to-regex": "^3.0.1"
+ "escalade": "^3.1.1",
+ "picocolors": "^1.0.0"
+ },
+ "bin": {
+ "update-browserslist-db": "cli.js"
+ },
+ "peerDependencies": {
+ "browserslist": ">= 4.21.0"
+ }
+ },
+ "node_modules/update-notifier": {
+ "version": "5.1.0",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "boxen": "^5.0.0",
+ "chalk": "^4.1.0",
+ "configstore": "^5.0.1",
+ "has-yarn": "^2.1.0",
+ "import-lazy": "^2.1.0",
+ "is-ci": "^2.0.0",
+ "is-installed-globally": "^0.4.0",
+ "is-npm": "^5.0.0",
+ "is-yarn-global": "^0.3.0",
+ "latest-version": "^5.1.0",
+ "pupa": "^2.1.1",
+ "semver": "^7.3.4",
+ "semver-diff": "^3.1.1",
+ "xdg-basedir": "^4.0.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/yeoman/update-notifier?sponsor=1"
}
},
- "node_modules/watchpack-chokidar2/node_modules/braces/node_modules/extend-shallow": {
- "version": "2.0.1",
+ "node_modules/update-notifier/node_modules/global-dirs": {
+ "version": "3.0.1",
"dev": true,
"license": "MIT",
- "optional": true,
"dependencies": {
- "is-extendable": "^0.1.0"
+ "ini": "2.0.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/update-notifier/node_modules/ini": {
+ "version": "2.0.0",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/watchpack-chokidar2/node_modules/chokidar": {
- "version": "2.1.8",
+ "node_modules/update-notifier/node_modules/is-installed-globally": {
+ "version": "0.4.0",
"dev": true,
"license": "MIT",
- "optional": true,
"dependencies": {
- "anymatch": "^2.0.0",
- "async-each": "^1.0.1",
- "braces": "^2.3.2",
- "glob-parent": "^3.1.0",
- "inherits": "^2.0.3",
- "is-binary-path": "^1.0.0",
- "is-glob": "^4.0.0",
- "normalize-path": "^3.0.0",
- "path-is-absolute": "^1.0.0",
- "readdirp": "^2.2.1",
- "upath": "^1.1.1"
+ "global-dirs": "^3.0.0",
+ "is-path-inside": "^3.0.2"
},
- "optionalDependencies": {
- "fsevents": "^1.2.7"
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/watchpack-chokidar2/node_modules/fill-range": {
- "version": "4.0.0",
+ "node_modules/update-notifier/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
- "license": "MIT",
- "optional": true,
+ "license": "ISC",
"dependencies": {
- "extend-shallow": "^2.0.1",
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1",
- "to-regex-range": "^2.1.0"
+ "yallist": "^4.0.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10"
}
},
- "node_modules/watchpack-chokidar2/node_modules/fill-range/node_modules/extend-shallow": {
- "version": "2.0.1",
+ "node_modules/update-notifier/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
- "license": "MIT",
- "optional": true,
+ "license": "ISC",
"dependencies": {
- "is-extendable": "^0.1.0"
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10"
}
},
- "node_modules/watchpack-chokidar2/node_modules/fsevents": {
- "version": "1.2.13",
+ "node_modules/update-notifier/node_modules/yallist": {
+ "version": "4.0.0",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/upper-case": {
+ "version": "2.0.2",
"dev": true,
- "hasInstallScript": true,
"license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
"dependencies": {
- "bindings": "^1.5.0",
- "nan": "^2.12.1"
- },
- "engines": {
- "node": ">= 4.0"
+ "tslib": "^2.0.3"
}
},
- "node_modules/watchpack-chokidar2/node_modules/glob-parent": {
- "version": "3.1.0",
+ "node_modules/upper-case-first": {
+ "version": "2.0.2",
"dev": true,
- "license": "ISC",
- "optional": true,
+ "license": "MIT",
"dependencies": {
- "is-glob": "^3.1.0",
- "path-dirname": "^1.0.0"
+ "tslib": "^2.0.3"
}
},
- "node_modules/watchpack-chokidar2/node_modules/glob-parent/node_modules/is-glob": {
- "version": "3.1.0",
+ "node_modules/uri-js": {
+ "version": "4.4.1",
"dev": true,
- "license": "MIT",
- "optional": true,
+ "license": "BSD-2-Clause",
"dependencies": {
- "is-extglob": "^2.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
+ "punycode": "^2.1.0"
}
},
- "node_modules/watchpack-chokidar2/node_modules/is-binary-path": {
- "version": "1.0.1",
+ "node_modules/url": {
+ "version": "0.11.3",
"dev": true,
"license": "MIT",
- "optional": true,
"dependencies": {
- "binary-extensions": "^1.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
+ "punycode": "^1.4.1",
+ "qs": "^6.11.2"
}
},
- "node_modules/watchpack-chokidar2/node_modules/is-buffer": {
- "version": "1.1.6",
+ "node_modules/url-join": {
+ "version": "4.0.1",
"dev": true,
- "license": "MIT",
- "optional": true
+ "license": "MIT"
},
- "node_modules/watchpack-chokidar2/node_modules/is-extendable": {
- "version": "0.1.1",
+ "node_modules/url-parse": {
+ "version": "1.5.10",
"dev": true,
"license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "querystringify": "^2.1.1",
+ "requires-port": "^1.0.0"
}
},
- "node_modules/watchpack-chokidar2/node_modules/is-number": {
+ "node_modules/url-parse-lax": {
"version": "3.0.0",
"dev": true,
"license": "MIT",
- "optional": true,
"dependencies": {
- "kind-of": "^3.0.2"
+ "prepend-http": "^2.0.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=4"
}
},
- "node_modules/watchpack-chokidar2/node_modules/is-number/node_modules/kind-of": {
- "version": "3.2.2",
+ "node_modules/url/node_modules/punycode": {
+ "version": "1.4.1",
"dev": true,
+ "license": "MIT"
+ },
+ "node_modules/use-callback-ref": {
+ "version": "1.3.2",
"license": "MIT",
- "optional": true,
"dependencies": {
- "is-buffer": "^1.1.5"
+ "tslib": "^2.0.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10"
+ },
+ "peerDependencies": {
+ "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
}
},
- "node_modules/watchpack-chokidar2/node_modules/isarray": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT",
- "optional": true
- },
- "node_modules/watchpack-chokidar2/node_modules/micromatch": {
- "version": "3.1.10",
- "dev": true,
+ "node_modules/use-isomorphic-layout-effect": {
+ "version": "1.1.2",
"license": "MIT",
- "optional": true,
- "dependencies": {
- "arr-diff": "^4.0.0",
- "array-unique": "^0.3.2",
- "braces": "^2.3.1",
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "extglob": "^2.0.4",
- "fragment-cache": "^0.2.1",
- "kind-of": "^6.0.2",
- "nanomatch": "^1.2.9",
- "object.pick": "^1.3.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.2"
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
- "engines": {
- "node": ">=0.10.0"
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
}
},
- "node_modules/watchpack-chokidar2/node_modules/readable-stream": {
- "version": "2.3.8",
+ "node_modules/use-resize-observer": {
+ "version": "9.1.0",
"dev": true,
"license": "MIT",
- "optional": true,
"dependencies": {
- "core-util-is": "~1.0.0",
- "inherits": "~2.0.3",
- "isarray": "~1.0.0",
- "process-nextick-args": "~2.0.0",
- "safe-buffer": "~5.1.1",
- "string_decoder": "~1.1.1",
- "util-deprecate": "~1.0.1"
+ "@juggle/resize-observer": "^3.3.1"
+ },
+ "peerDependencies": {
+ "react": "16.8.0 - 18",
+ "react-dom": "16.8.0 - 18"
}
},
- "node_modules/watchpack-chokidar2/node_modules/readdirp": {
- "version": "2.2.1",
- "dev": true,
+ "node_modules/use-sidecar": {
+ "version": "1.1.2",
"license": "MIT",
- "optional": true,
"dependencies": {
- "graceful-fs": "^4.1.11",
- "micromatch": "^3.1.10",
- "readable-stream": "^2.0.2"
+ "detect-node-es": "^1.1.0",
+ "tslib": "^2.0.0"
},
"engines": {
- "node": ">=0.10"
+ "node": ">=10"
+ },
+ "peerDependencies": {
+ "@types/react": "^16.9.0 || ^17.0.0 || ^18.0.0",
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
}
},
- "node_modules/watchpack-chokidar2/node_modules/string_decoder": {
- "version": "1.1.1",
- "dev": true,
+ "node_modules/use-sync-external-store": {
+ "version": "1.2.0",
"license": "MIT",
- "optional": true,
- "dependencies": {
- "safe-buffer": "~5.1.0"
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
},
- "node_modules/watchpack-chokidar2/node_modules/to-regex-range": {
- "version": "2.1.1",
+ "node_modules/util": {
+ "version": "0.12.5",
"dev": true,
"license": "MIT",
- "optional": true,
"dependencies": {
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1"
- },
- "engines": {
- "node": ">=0.10.0"
+ "inherits": "^2.0.3",
+ "is-arguments": "^1.0.4",
+ "is-generator-function": "^1.0.7",
+ "is-typed-array": "^1.1.3",
+ "which-typed-array": "^1.1.2"
}
},
- "node_modules/watchpack-chokidar2/node_modules/upath": {
- "version": "1.2.0",
+ "node_modules/util-deprecate": {
+ "version": "1.0.2",
"dev": true,
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=4",
- "yarn": "*"
- }
+ "license": "MIT"
},
- "node_modules/wcwidth": {
- "version": "1.0.1",
+ "node_modules/utila": {
+ "version": "0.4.0",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "defaults": "^1.0.3"
- }
+ "license": "MIT"
},
- "node_modules/web-namespaces": {
- "version": "1.1.4",
+ "node_modules/utils-merge": {
+ "version": "1.0.1",
"dev": true,
"license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
- "node_modules/webidl-conversions": {
- "version": "6.1.0",
- "dev": true,
- "license": "BSD-2-Clause",
"engines": {
- "node": ">=10.4"
+ "node": ">= 0.4.0"
}
},
- "node_modules/webpack": {
- "version": "5.88.2",
+ "node_modules/uuid": {
+ "version": "9.0.1",
"dev": true,
+ "funding": [
+ "https://github.com/sponsors/broofa",
+ "https://github.com/sponsors/ctavan"
+ ],
"license": "MIT",
- "dependencies": {
- "@types/eslint-scope": "^3.7.3",
- "@types/estree": "^1.0.0",
- "@webassemblyjs/ast": "^1.11.5",
- "@webassemblyjs/wasm-edit": "^1.11.5",
- "@webassemblyjs/wasm-parser": "^1.11.5",
- "acorn": "^8.7.1",
- "acorn-import-assertions": "^1.9.0",
- "browserslist": "^4.14.5",
- "chrome-trace-event": "^1.0.2",
- "enhanced-resolve": "^5.15.0",
- "es-module-lexer": "^1.2.1",
- "eslint-scope": "5.1.1",
- "events": "^3.2.0",
- "glob-to-regexp": "^0.4.1",
- "graceful-fs": "^4.2.9",
- "json-parse-even-better-errors": "^2.3.1",
- "loader-runner": "^4.2.0",
- "mime-types": "^2.1.27",
- "neo-async": "^2.6.2",
- "schema-utils": "^3.2.0",
- "tapable": "^2.1.1",
- "terser-webpack-plugin": "^5.3.7",
- "watchpack": "^2.4.0",
- "webpack-sources": "^3.2.3"
- },
"bin": {
- "webpack": "bin/webpack.js"
- },
- "engines": {
- "node": ">=10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependenciesMeta": {
- "webpack-cli": {
- "optional": true
- }
+ "uuid": "dist/bin/uuid"
}
},
- "node_modules/webpack-bundle-analyzer": {
- "version": "4.3.0",
- "dev": true,
+ "node_modules/uvu": {
+ "version": "0.5.6",
"license": "MIT",
"dependencies": {
- "acorn": "^8.0.4",
- "acorn-walk": "^8.0.0",
- "chalk": "^4.1.0",
- "commander": "^6.2.0",
- "gzip-size": "^6.0.0",
- "lodash": "^4.17.20",
- "opener": "^1.5.2",
- "sirv": "^1.0.7",
- "ws": "^7.3.1"
+ "dequal": "^2.0.0",
+ "diff": "^5.0.0",
+ "kleur": "^4.0.3",
+ "sade": "^1.7.3"
},
"bin": {
- "webpack-bundle-analyzer": "lib/bin/analyzer.js"
+ "uvu": "bin.js"
},
"engines": {
- "node": ">= 10.13.0"
+ "node": ">=8"
}
},
- "node_modules/webpack-bundle-analyzer/node_modules/acorn-walk": {
- "version": "8.2.0",
- "dev": true,
+ "node_modules/uvu/node_modules/kleur": {
+ "version": "4.1.5",
"license": "MIT",
"engines": {
- "node": ">=0.4.0"
+ "node": ">=6"
}
},
- "node_modules/webpack-bundle-analyzer/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/v8-compile-cache": {
+ "version": "2.4.0",
"dev": true,
- "license": "MIT",
+ "license": "MIT"
+ },
+ "node_modules/v8-to-istanbul": {
+ "version": "9.2.0",
+ "license": "ISC",
"dependencies": {
- "color-convert": "^2.0.1"
+ "@jridgewell/trace-mapping": "^0.3.12",
+ "@types/istanbul-lib-coverage": "^2.0.1",
+ "convert-source-map": "^2.0.0"
},
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "node": ">=10.12.0"
}
},
- "node_modules/webpack-bundle-analyzer/node_modules/chalk": {
- "version": "4.1.2",
+ "node_modules/v8flags": {
+ "version": "4.0.1",
"dev": true,
"license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "node": ">= 10.13.0"
}
},
- "node_modules/webpack-bundle-analyzer/node_modules/commander": {
- "version": "6.2.1",
+ "node_modules/validate-npm-package-license": {
+ "version": "3.0.4",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 6"
+ "license": "Apache-2.0",
+ "dependencies": {
+ "spdx-correct": "^3.0.0",
+ "spdx-expression-parse": "^3.0.0"
}
},
- "node_modules/webpack-bundle-analyzer/node_modules/has-flag": {
+ "node_modules/validate-npm-package-name": {
"version": "4.0.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
+ "dependencies": {
+ "builtins": "^5.0.0"
+ },
"engines": {
- "node": ">=8"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/webpack-bundle-analyzer/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/vary": {
+ "version": "1.1.2",
"dev": true,
"license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
"engines": {
- "node": ">=8"
+ "node": ">= 0.8"
}
},
- "node_modules/webpack-bundle-analyzer/node_modules/ws": {
- "version": "7.5.7",
+ "node_modules/verror": {
+ "version": "1.10.0",
"dev": true,
+ "engines": [
+ "node >=0.6.0"
+ ],
"license": "MIT",
- "engines": {
- "node": ">=8.3.0"
- },
- "peerDependencies": {
- "bufferutil": "^4.0.1",
- "utf-8-validate": "^5.0.2"
- },
- "peerDependenciesMeta": {
- "bufferutil": {
- "optional": true
- },
- "utf-8-validate": {
- "optional": true
- }
+ "dependencies": {
+ "assert-plus": "^1.0.0",
+ "core-util-is": "1.0.2",
+ "extsprintf": "^1.2.0"
}
},
- "node_modules/webpack-dev-middleware": {
- "version": "4.3.0",
- "dev": true,
+ "node_modules/vfile": {
+ "version": "5.3.7",
"license": "MIT",
"dependencies": {
- "colorette": "^1.2.2",
- "mem": "^8.1.1",
- "memfs": "^3.2.2",
- "mime-types": "^2.1.30",
- "range-parser": "^1.2.1",
- "schema-utils": "^3.0.0"
- },
- "engines": {
- "node": ">= v10.23.3"
+ "@types/unist": "^2.0.0",
+ "is-buffer": "^2.0.0",
+ "unist-util-stringify-position": "^3.0.0",
+ "vfile-message": "^3.0.0"
},
"funding": {
"type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^4.0.0 || ^5.0.0"
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/webpack-hot-middleware": {
- "version": "2.25.1",
- "dev": true,
+ "node_modules/vfile-matter": {
+ "version": "3.0.1",
"license": "MIT",
"dependencies": {
- "ansi-html-community": "0.0.8",
- "html-entities": "^2.1.0",
- "querystring": "^0.2.0",
- "strip-ansi": "^6.0.0"
+ "@types/js-yaml": "^4.0.0",
+ "is-buffer": "^2.0.0",
+ "js-yaml": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/webpack-log": {
- "version": "2.0.0",
- "dev": true,
+ "node_modules/vfile-message": {
+ "version": "3.1.4",
"license": "MIT",
"dependencies": {
- "ansi-colors": "^3.0.0",
- "uuid": "^3.3.2"
+ "@types/unist": "^2.0.0",
+ "unist-util-stringify-position": "^3.0.0"
},
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/webpack-log/node_modules/ansi-colors": {
- "version": "3.2.4",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/webpack-log/node_modules/uuid": {
- "version": "3.4.0",
- "dev": true,
- "license": "MIT",
- "bin": {
- "uuid": "bin/uuid"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/webpack-sources": {
- "version": "1.4.3",
+ "node_modules/vite": {
+ "version": "4.5.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "source-list-map": "^2.0.0",
- "source-map": "~0.6.1"
- }
- },
- "node_modules/webpack-sources/node_modules/source-map": {
- "version": "0.6.1",
- "dev": true,
- "license": "BSD-3-Clause",
+ "esbuild": "^0.18.10",
+ "postcss": "^8.4.27",
+ "rollup": "^3.27.1"
+ },
+ "bin": {
+ "vite": "bin/vite.js"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": "^14.18.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/vitejs/vite?sponsor=1"
+ },
+ "optionalDependencies": {
+ "fsevents": "~2.3.2"
+ },
+ "peerDependencies": {
+ "@types/node": ">= 14",
+ "less": "*",
+ "lightningcss": "^1.21.0",
+ "sass": "*",
+ "stylus": "*",
+ "sugarss": "*",
+ "terser": "^5.4.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/node": {
+ "optional": true
+ },
+ "less": {
+ "optional": true
+ },
+ "lightningcss": {
+ "optional": true
+ },
+ "sass": {
+ "optional": true
+ },
+ "stylus": {
+ "optional": true
+ },
+ "sugarss": {
+ "optional": true
+ },
+ "terser": {
+ "optional": true
+ }
}
},
- "node_modules/webpack-virtual-modules": {
- "version": "0.4.3",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/webpack/node_modules/@types/estree": {
- "version": "1.0.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/webpack/node_modules/tapable": {
- "version": "2.2.1",
+ "node_modules/vite/node_modules/@esbuild/linux-loong64": {
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz",
+ "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==",
+ "cpu": [
+ "loong64"
+ ],
"dev": true,
- "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
"engines": {
- "node": ">=6"
+ "node": ">=12"
}
},
- "node_modules/webpack/node_modules/webpack-sources": {
- "version": "3.2.3",
+ "node_modules/vite/node_modules/esbuild": {
+ "version": "0.18.20",
"dev": true,
+ "hasInstallScript": true,
"license": "MIT",
+ "bin": {
+ "esbuild": "bin/esbuild"
+ },
"engines": {
- "node": ">=10.13.0"
+ "node": ">=12"
+ },
+ "optionalDependencies": {
+ "@esbuild/android-arm": "0.18.20",
+ "@esbuild/android-arm64": "0.18.20",
+ "@esbuild/android-x64": "0.18.20",
+ "@esbuild/darwin-arm64": "0.18.20",
+ "@esbuild/darwin-x64": "0.18.20",
+ "@esbuild/freebsd-arm64": "0.18.20",
+ "@esbuild/freebsd-x64": "0.18.20",
+ "@esbuild/linux-arm": "0.18.20",
+ "@esbuild/linux-arm64": "0.18.20",
+ "@esbuild/linux-ia32": "0.18.20",
+ "@esbuild/linux-loong64": "0.18.20",
+ "@esbuild/linux-mips64el": "0.18.20",
+ "@esbuild/linux-ppc64": "0.18.20",
+ "@esbuild/linux-riscv64": "0.18.20",
+ "@esbuild/linux-s390x": "0.18.20",
+ "@esbuild/linux-x64": "0.18.20",
+ "@esbuild/netbsd-x64": "0.18.20",
+ "@esbuild/openbsd-x64": "0.18.20",
+ "@esbuild/sunos-x64": "0.18.20",
+ "@esbuild/win32-arm64": "0.18.20",
+ "@esbuild/win32-ia32": "0.18.20",
+ "@esbuild/win32-x64": "0.18.20"
}
},
- "node_modules/whatwg-encoding": {
- "version": "1.0.5",
+ "node_modules/vite/node_modules/rollup": {
+ "version": "3.29.4",
"dev": true,
"license": "MIT",
- "dependencies": {
- "iconv-lite": "0.4.24"
+ "bin": {
+ "rollup": "dist/bin/rollup"
+ },
+ "engines": {
+ "node": ">=14.18.0",
+ "npm": ">=8.0.0"
+ },
+ "optionalDependencies": {
+ "fsevents": "~2.3.2"
}
},
- "node_modules/whatwg-mimetype": {
- "version": "2.3.0",
+ "node_modules/vm-browserify": {
+ "version": "1.1.2",
"dev": true,
"license": "MIT"
},
- "node_modules/whatwg-url": {
- "version": "8.7.0",
+ "node_modules/void-elements": {
+ "version": "2.0.1",
"dev": true,
"license": "MIT",
- "dependencies": {
- "lodash": "^4.7.0",
- "tr46": "^2.1.0",
- "webidl-conversions": "^6.1.0"
- },
"engines": {
- "node": ">=10"
+ "node": ">=0.10.0"
}
},
- "node_modules/which": {
- "version": "2.0.2",
- "license": "ISC",
+ "node_modules/w3c-hr-time": {
+ "version": "1.0.2",
+ "dev": true,
+ "license": "MIT",
"dependencies": {
- "isexe": "^2.0.0"
- },
- "bin": {
- "node-which": "bin/node-which"
- },
- "engines": {
- "node": ">= 8"
+ "browser-process-hrtime": "^1.0.0"
}
},
- "node_modules/which-boxed-primitive": {
- "version": "1.0.2",
+ "node_modules/w3c-keyname": {
+ "version": "2.2.8",
+ "license": "MIT"
+ },
+ "node_modules/w3c-xmlserializer": {
+ "version": "1.1.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-bigint": "^1.0.1",
- "is-boolean-object": "^1.1.0",
- "is-number-object": "^1.0.4",
- "is-string": "^1.0.5",
- "is-symbol": "^1.0.3"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "domexception": "^1.0.1",
+ "webidl-conversions": "^4.0.2",
+ "xml-name-validator": "^3.0.0"
}
},
- "node_modules/which-collection": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz",
- "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==",
+ "node_modules/wait-on": {
+ "version": "7.2.0",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "is-map": "^2.0.1",
- "is-set": "^2.0.1",
- "is-weakmap": "^2.0.1",
- "is-weakset": "^2.0.1"
+ "axios": "^1.6.1",
+ "joi": "^17.11.0",
+ "lodash": "^4.17.21",
+ "minimist": "^1.2.8",
+ "rxjs": "^7.8.1"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "bin": {
+ "wait-on": "bin/wait-on"
+ },
+ "engines": {
+ "node": ">=12.0.0"
}
},
- "node_modules/which-module": {
- "version": "2.0.1",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/which-typed-array": {
- "version": "1.1.9",
+ "node_modules/wait-on/node_modules/axios": {
+ "version": "1.6.8",
"dev": true,
"license": "MIT",
"dependencies": {
- "available-typed-arrays": "^1.0.5",
- "call-bind": "^1.0.2",
- "for-each": "^0.3.3",
- "gopd": "^1.0.1",
- "has-tostringtag": "^1.0.0",
- "is-typed-array": "^1.1.10"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "follow-redirects": "^1.15.6",
+ "form-data": "^4.0.0",
+ "proxy-from-env": "^1.1.0"
}
},
- "node_modules/wide-align": {
- "version": "1.1.5",
+ "node_modules/wait-on/node_modules/rxjs": {
+ "version": "7.8.1",
"dev": true,
- "license": "ISC",
+ "license": "Apache-2.0",
"dependencies": {
- "string-width": "^1.0.2 || 2 || 3 || 4"
+ "tslib": "^2.1.0"
}
},
- "node_modules/widest-line": {
- "version": "3.1.0",
+ "node_modules/wait-port": {
+ "version": "0.2.14",
"dev": true,
"license": "MIT",
"dependencies": {
- "string-width": "^4.0.0"
+ "chalk": "^2.4.2",
+ "commander": "^3.0.2",
+ "debug": "^4.1.1"
+ },
+ "bin": {
+ "wait-port": "bin/wait-port.js"
},
"engines": {
"node": ">=8"
}
},
- "node_modules/window-size": {
- "version": "0.1.0",
- "dev": true,
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/winston": {
- "version": "3.8.2",
+ "node_modules/wait-port/node_modules/ansi-styles": {
+ "version": "3.2.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@colors/colors": "1.5.0",
- "@dabh/diagnostics": "^2.0.2",
- "async": "^3.2.3",
- "is-stream": "^2.0.0",
- "logform": "^2.4.0",
- "one-time": "^1.0.0",
- "readable-stream": "^3.4.0",
- "safe-stable-stringify": "^2.3.1",
- "stack-trace": "0.0.x",
- "triple-beam": "^1.3.0",
- "winston-transport": "^4.5.0"
+ "color-convert": "^1.9.0"
},
"engines": {
- "node": ">= 12.0.0"
+ "node": ">=4"
}
},
- "node_modules/winston-transport": {
- "version": "4.5.0",
+ "node_modules/wait-port/node_modules/chalk": {
+ "version": "2.4.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "logform": "^2.3.2",
- "readable-stream": "^3.6.0",
- "triple-beam": "^1.3.0"
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
},
"engines": {
- "node": ">= 6.4.0"
+ "node": ">=4"
}
},
- "node_modules/with": {
- "version": "5.1.1",
+ "node_modules/wait-port/node_modules/color-convert": {
+ "version": "1.9.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "acorn": "^3.1.0",
- "acorn-globals": "^3.0.0"
+ "color-name": "1.1.3"
}
},
- "node_modules/with/node_modules/acorn": {
- "version": "3.3.0",
+ "node_modules/wait-port/node_modules/color-name": {
+ "version": "1.1.3",
"dev": true,
- "license": "MIT",
- "bin": {
- "acorn": "bin/acorn"
- },
- "engines": {
- "node": ">=0.4.0"
- }
+ "license": "MIT"
},
- "node_modules/with/node_modules/acorn-globals": {
- "version": "3.1.0",
+ "node_modules/wait-port/node_modules/commander": {
+ "version": "3.0.2",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "acorn": "^4.0.4"
- }
+ "license": "MIT"
},
- "node_modules/with/node_modules/acorn-globals/node_modules/acorn": {
- "version": "4.0.13",
+ "node_modules/wait-port/node_modules/escape-string-regexp": {
+ "version": "1.0.5",
"dev": true,
"license": "MIT",
- "bin": {
- "acorn": "bin/acorn"
- },
"engines": {
- "node": ">=0.4.0"
+ "node": ">=0.8.0"
}
},
- "node_modules/word-wrap": {
- "version": "1.2.3",
+ "node_modules/wait-port/node_modules/has-flag": {
+ "version": "3.0.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=0.10.0"
+ "node": ">=4"
}
},
- "node_modules/wordwrap": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/worker-farm": {
- "version": "1.7.0",
+ "node_modules/wait-port/node_modules/supports-color": {
+ "version": "5.5.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "errno": "~0.1.7"
+ "has-flag": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/worker-rpc": {
- "version": "0.1.1",
+ "node_modules/walk-up-path": {
+ "version": "1.0.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC"
+ },
+ "node_modules/walker": {
+ "version": "1.0.8",
+ "dev": true,
+ "license": "Apache-2.0",
"dependencies": {
- "microevent.ts": "~0.1.1"
+ "makeerror": "1.0.12"
}
},
- "node_modules/wrap-ansi": {
- "version": "7.0.0",
+ "node_modules/warning": {
+ "version": "4.0.3",
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.0.0",
- "string-width": "^4.1.0",
- "strip-ansi": "^6.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+ "loose-envify": "^1.0.0"
}
},
- "node_modules/wrap-ansi/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/watchpack": {
+ "version": "2.4.0",
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
+ "glob-to-regexp": "^0.4.1",
+ "graceful-fs": "^4.1.2"
},
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "node": ">=10.13.0"
}
},
- "node_modules/wrappy": {
- "version": "1.0.2",
- "license": "ISC"
- },
- "node_modules/write-file-atomic": {
- "version": "3.0.3",
- "dev": true,
- "license": "ISC",
+ "node_modules/wcag-contrast": {
+ "version": "3.0.0",
+ "license": "BSD-2-Clause",
"dependencies": {
- "imurmurhash": "^0.1.4",
- "is-typedarray": "^1.0.0",
- "signal-exit": "^3.0.2",
- "typedarray-to-buffer": "^3.1.5"
+ "relative-luminance": "^2.0.0"
}
},
- "node_modules/write-json-file": {
- "version": "4.3.0",
+ "node_modules/wcwidth": {
+ "version": "1.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "detect-indent": "^6.0.0",
- "graceful-fs": "^4.1.15",
- "is-plain-obj": "^2.0.0",
- "make-dir": "^3.0.0",
- "sort-keys": "^4.0.0",
- "write-file-atomic": "^3.0.0"
- },
- "engines": {
- "node": ">=8.3"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "defaults": "^1.0.3"
}
},
- "node_modules/write-json-file/node_modules/is-plain-obj": {
- "version": "2.1.0",
+ "node_modules/webidl-conversions": {
+ "version": "4.0.2",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
+ "license": "BSD-2-Clause"
},
- "node_modules/write-json-file/node_modules/make-dir": {
- "version": "3.1.0",
+ "node_modules/webpack": {
+ "version": "5.91.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "semver": "^6.0.0"
+ "@types/eslint-scope": "^3.7.3",
+ "@types/estree": "^1.0.5",
+ "@webassemblyjs/ast": "^1.12.1",
+ "@webassemblyjs/wasm-edit": "^1.12.1",
+ "@webassemblyjs/wasm-parser": "^1.12.1",
+ "acorn": "^8.7.1",
+ "acorn-import-assertions": "^1.9.0",
+ "browserslist": "^4.21.10",
+ "chrome-trace-event": "^1.0.2",
+ "enhanced-resolve": "^5.16.0",
+ "es-module-lexer": "^1.2.1",
+ "eslint-scope": "5.1.1",
+ "events": "^3.2.0",
+ "glob-to-regexp": "^0.4.1",
+ "graceful-fs": "^4.2.11",
+ "json-parse-even-better-errors": "^2.3.1",
+ "loader-runner": "^4.2.0",
+ "mime-types": "^2.1.27",
+ "neo-async": "^2.6.2",
+ "schema-utils": "^3.2.0",
+ "tapable": "^2.1.1",
+ "terser-webpack-plugin": "^5.3.10",
+ "watchpack": "^2.4.1",
+ "webpack-sources": "^3.2.3"
+ },
+ "bin": {
+ "webpack": "bin/webpack.js"
},
"engines": {
- "node": ">=8"
+ "node": ">=10.13.0"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ },
+ "peerDependenciesMeta": {
+ "webpack-cli": {
+ "optional": true
+ }
}
},
- "node_modules/write-pkg": {
- "version": "4.0.0",
+ "node_modules/webpack-bundle-analyzer": {
+ "version": "4.3.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "sort-keys": "^2.0.0",
- "type-fest": "^0.4.1",
- "write-json-file": "^3.2.0"
+ "acorn": "^8.0.4",
+ "acorn-walk": "^8.0.0",
+ "chalk": "^4.1.0",
+ "commander": "^6.2.0",
+ "gzip-size": "^6.0.0",
+ "lodash": "^4.17.20",
+ "opener": "^1.5.2",
+ "sirv": "^1.0.7",
+ "ws": "^7.3.1"
+ },
+ "bin": {
+ "webpack-bundle-analyzer": "lib/bin/analyzer.js"
},
"engines": {
- "node": ">=8"
+ "node": ">= 10.13.0"
}
},
- "node_modules/write-pkg/node_modules/detect-indent": {
- "version": "5.0.0",
+ "node_modules/webpack-bundle-analyzer/node_modules/acorn": {
+ "version": "8.11.3",
"dev": true,
"license": "MIT",
+ "bin": {
+ "acorn": "bin/acorn"
+ },
"engines": {
- "node": ">=4"
+ "node": ">=0.4.0"
}
},
- "node_modules/write-pkg/node_modules/pify": {
- "version": "4.0.1",
+ "node_modules/webpack-bundle-analyzer/node_modules/acorn-walk": {
+ "version": "8.3.2",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=6"
+ "node": ">=0.4.0"
}
},
- "node_modules/write-pkg/node_modules/sort-keys": {
- "version": "2.0.0",
+ "node_modules/webpack-bundle-analyzer/node_modules/commander": {
+ "version": "6.2.1",
"dev": true,
"license": "MIT",
- "dependencies": {
- "is-plain-obj": "^1.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/write-pkg/node_modules/type-fest": {
- "version": "0.4.1",
- "dev": true,
- "license": "(MIT OR CC0-1.0)",
"engines": {
- "node": ">=6"
- }
- },
- "node_modules/write-pkg/node_modules/write-file-atomic": {
- "version": "2.4.3",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "graceful-fs": "^4.1.11",
- "imurmurhash": "^0.1.4",
- "signal-exit": "^3.0.2"
+ "node": ">= 6"
}
},
- "node_modules/write-pkg/node_modules/write-json-file": {
- "version": "3.2.0",
+ "node_modules/webpack-dev-middleware": {
+ "version": "6.1.3",
"dev": true,
"license": "MIT",
"dependencies": {
- "detect-indent": "^5.0.0",
- "graceful-fs": "^4.1.15",
- "make-dir": "^2.1.0",
- "pify": "^4.0.1",
- "sort-keys": "^2.0.0",
- "write-file-atomic": "^2.4.2"
+ "colorette": "^2.0.10",
+ "memfs": "^3.4.12",
+ "mime-types": "^2.1.31",
+ "range-parser": "^1.2.1",
+ "schema-utils": "^4.0.0"
},
"engines": {
- "node": ">=6"
- }
- },
- "node_modules/ws": {
- "version": "8.12.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=10.0.0"
+ "node": ">= 14.15.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
},
"peerDependencies": {
- "bufferutil": "^4.0.1",
- "utf-8-validate": ">=5.0.2"
+ "webpack": "^5.0.0"
},
"peerDependenciesMeta": {
- "bufferutil": {
- "optional": true
- },
- "utf-8-validate": {
+ "webpack": {
"optional": true
}
}
},
- "node_modules/x-default-browser": {
- "version": "0.4.0",
+ "node_modules/webpack-dev-middleware/node_modules/ajv": {
+ "version": "8.12.0",
"dev": true,
"license": "MIT",
- "bin": {
- "x-default-browser": "bin/x-default-browser.js"
+ "dependencies": {
+ "fast-deep-equal": "^3.1.1",
+ "json-schema-traverse": "^1.0.0",
+ "require-from-string": "^2.0.2",
+ "uri-js": "^4.2.2"
},
- "optionalDependencies": {
- "default-browser-id": "^1.0.4"
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/epoberezkin"
}
},
- "node_modules/xdg-basedir": {
- "version": "4.0.0",
+ "node_modules/webpack-dev-middleware/node_modules/ajv-keywords": {
+ "version": "5.1.0",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "dependencies": {
+ "fast-deep-equal": "^3.1.3"
+ },
+ "peerDependencies": {
+ "ajv": "^8.8.2"
}
},
- "node_modules/xml": {
- "version": "1.0.1",
+ "node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": {
+ "version": "1.0.0",
"dev": true,
"license": "MIT"
},
- "node_modules/xml-name-validator": {
- "version": "3.0.0",
- "dev": true,
- "license": "Apache-2.0"
- },
- "node_modules/xmlchars": {
- "version": "2.2.0",
+ "node_modules/webpack-dev-middleware/node_modules/schema-utils": {
+ "version": "4.2.0",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "dependencies": {
+ "@types/json-schema": "^7.0.9",
+ "ajv": "^8.9.0",
+ "ajv-formats": "^2.1.1",
+ "ajv-keywords": "^5.1.0"
+ },
+ "engines": {
+ "node": ">= 12.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ }
},
- "node_modules/xtend": {
- "version": "4.0.2",
+ "node_modules/webpack-hot-middleware": {
+ "version": "2.26.1",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=0.4"
+ "dependencies": {
+ "ansi-html-community": "0.0.8",
+ "html-entities": "^2.1.0",
+ "strip-ansi": "^6.0.0"
}
},
- "node_modules/y18n": {
- "version": "5.0.8",
- "license": "ISC",
+ "node_modules/webpack-sources": {
+ "version": "3.2.3",
+ "dev": true,
+ "license": "MIT",
"engines": {
- "node": ">=10"
+ "node": ">=10.13.0"
}
},
- "node_modules/yallist": {
- "version": "4.0.0",
+ "node_modules/webpack-virtual-modules": {
+ "version": "0.5.0",
"dev": true,
- "license": "ISC"
+ "license": "MIT"
},
- "node_modules/yaml": {
- "version": "1.10.2",
+ "node_modules/webpack/node_modules/@types/estree": {
+ "version": "1.0.5",
"dev": true,
- "license": "ISC",
- "engines": {
- "node": ">= 6"
- }
+ "license": "MIT"
},
- "node_modules/yargs": {
- "version": "16.2.0",
+ "node_modules/webpack/node_modules/acorn": {
+ "version": "8.11.3",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "cliui": "^7.0.2",
- "escalade": "^3.1.1",
- "get-caller-file": "^2.0.5",
- "require-directory": "^2.1.1",
- "string-width": "^4.2.0",
- "y18n": "^5.0.5",
- "yargs-parser": "^20.2.2"
+ "bin": {
+ "acorn": "bin/acorn"
},
"engines": {
- "node": ">=10"
- }
- },
- "node_modules/yargs-parser": {
- "version": "20.2.4",
- "license": "ISC",
- "engines": {
- "node": ">=10"
+ "node": ">=0.4.0"
}
},
- "node_modules/yauzl": {
- "version": "2.10.0",
+ "node_modules/webpack/node_modules/eslint-scope": {
+ "version": "5.1.1",
"dev": true,
- "license": "MIT",
+ "license": "BSD-2-Clause",
"dependencies": {
- "buffer-crc32": "~0.2.3",
- "fd-slicer": "~1.1.0"
+ "esrecurse": "^4.3.0",
+ "estraverse": "^4.1.1"
+ },
+ "engines": {
+ "node": ">=8.0.0"
}
},
- "node_modules/yazl": {
- "version": "2.5.1",
+ "node_modules/webpack/node_modules/estraverse": {
+ "version": "4.3.0",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "buffer-crc32": "~0.2.3"
- }
- },
- "node_modules/yocto-queue": {
- "version": "0.1.0",
- "license": "MIT",
+ "license": "BSD-2-Clause",
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=4.0"
}
},
- "node_modules/zwitch": {
- "version": "1.0.5",
+ "node_modules/webpack/node_modules/watchpack": {
+ "version": "2.4.1",
"dev": true,
"license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
- "ui/accordion": {
- "name": "@washingtonpost/wpds-accordion",
- "version": "1.17.0",
- "license": "MIT",
"dependencies": {
- "@radix-ui/react-accordion": "^1.1.0",
- "@washingtonpost/wpds-assets": "^1.22.0",
- "@washingtonpost/wpds-icon": "1.17.0",
- "@washingtonpost/wpds-theme": "1.17.0"
- },
- "devDependencies": {
- "tsup": "5.11.13",
- "typescript": "4.5.5"
- },
- "peerDependencies": {
- "@washingtonpost/wpds-assets": "^1.18.0",
- "react": "^16.8.6 || ^17.0.2"
+ "glob-to-regexp": "^0.4.1",
+ "graceful-fs": "^4.1.2"
+ },
+ "engines": {
+ "node": ">=10.13.0"
}
},
- "ui/accordion/node_modules/@radix-ui/react-accordion": {
- "version": "1.1.0",
+ "node_modules/whatwg-encoding": {
+ "version": "1.0.5",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/primitive": "1.0.0",
- "@radix-ui/react-collapsible": "1.0.1",
- "@radix-ui/react-collection": "1.0.1",
- "@radix-ui/react-compose-refs": "1.0.0",
- "@radix-ui/react-context": "1.0.0",
- "@radix-ui/react-direction": "1.0.0",
- "@radix-ui/react-id": "1.0.0",
- "@radix-ui/react-primitive": "1.0.1",
- "@radix-ui/react-use-controllable-state": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
+ "iconv-lite": "0.4.24"
}
},
- "ui/accordion/node_modules/@radix-ui/react-collapsible": {
- "version": "1.0.1",
+ "node_modules/whatwg-mimetype": {
+ "version": "2.3.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/whatwg-url": {
+ "version": "7.1.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/primitive": "1.0.0",
- "@radix-ui/react-compose-refs": "1.0.0",
- "@radix-ui/react-context": "1.0.0",
- "@radix-ui/react-id": "1.0.0",
- "@radix-ui/react-presence": "1.0.0",
- "@radix-ui/react-primitive": "1.0.1",
- "@radix-ui/react-use-controllable-state": "1.0.0",
- "@radix-ui/react-use-layout-effect": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
+ "lodash.sortby": "^4.7.0",
+ "tr46": "^1.0.1",
+ "webidl-conversions": "^4.0.2"
}
},
- "ui/accordion/node_modules/@radix-ui/react-collection": {
- "version": "1.0.1",
- "license": "MIT",
+ "node_modules/which": {
+ "version": "2.0.2",
+ "license": "ISC",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-compose-refs": "1.0.0",
- "@radix-ui/react-context": "1.0.0",
- "@radix-ui/react-primitive": "1.0.1",
- "@radix-ui/react-slot": "1.0.1"
+ "isexe": "^2.0.0"
},
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
+ "bin": {
+ "node-which": "bin/node-which"
+ },
+ "engines": {
+ "node": ">= 8"
}
},
- "ui/accordion/node_modules/@radix-ui/react-primitive": {
- "version": "1.0.1",
+ "node_modules/which-boxed-primitive": {
+ "version": "1.0.2",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-slot": "1.0.1"
+ "is-bigint": "^1.0.1",
+ "is-boolean-object": "^1.1.0",
+ "is-number-object": "^1.0.4",
+ "is-string": "^1.0.5",
+ "is-symbol": "^1.0.3"
},
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "ui/accordion/node_modules/@washingtonpost/wpds-assets": {
- "version": "1.16.0",
- "license": "ISC",
+ "node_modules/which-builtin-type": {
+ "version": "1.1.3",
+ "dev": true,
+ "license": "MIT",
"dependencies": {
- "react": "^16.0.1 || ^17.0.2",
- "react-dom": "^16.0.1 || ^17.0.2"
+ "function.prototype.name": "^1.1.5",
+ "has-tostringtag": "^1.0.0",
+ "is-async-function": "^2.0.0",
+ "is-date-object": "^1.0.5",
+ "is-finalizationregistry": "^1.0.2",
+ "is-generator-function": "^1.0.10",
+ "is-regex": "^1.1.4",
+ "is-weakref": "^1.0.2",
+ "isarray": "^2.0.5",
+ "which-boxed-primitive": "^1.0.2",
+ "which-collection": "^1.0.1",
+ "which-typed-array": "^1.1.9"
},
- "peerDependencies": {
- "react": "^16.0.1 || ^17.0.2",
- "react-dom": "^16.0.1 || ^17.0.2"
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "ui/action-menu": {
- "name": "@washingtonpost/wpds-action-menu",
- "version": "1.17.0",
+ "node_modules/which-collection": {
+ "version": "1.0.2",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@radix-ui/react-dropdown-menu": "2.0.3",
- "@washingtonpost/wpds-assets": "^1.20.0",
- "@washingtonpost/wpds-button": "1.17.0",
- "@washingtonpost/wpds-divider": "1.17.0",
- "@washingtonpost/wpds-icon": "1.17.0",
- "@washingtonpost/wpds-theme": "1.17.0"
+ "is-map": "^2.0.3",
+ "is-set": "^2.0.3",
+ "is-weakmap": "^2.0.2",
+ "is-weakset": "^2.0.3"
},
- "devDependencies": {
- "@types/node": "^20.4.2",
- "tsup": "5.11.13",
- "typescript": "4.5.5"
+ "engines": {
+ "node": ">= 0.4"
},
- "peerDependencies": {
- "@washingtonpost/wpds-assets": "^1.20.0",
- "@washingtonpost/wpds-button": "^1.7.0",
- "@washingtonpost/wpds-icon": "*",
- "@washingtonpost/wpds-theme": "*",
- "react": "^16.8.6 || ^17.0.2"
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "ui/action-menu/node_modules/@types/node": {
- "version": "20.5.0",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.0.tgz",
- "integrity": "sha512-Mgq7eCtoTjT89FqNoTzzXg2XvCi5VMhRV6+I2aYanc6kQCBImeNaAYRs/DyoVqk1YEUJK5gN9VO7HRIdz4Wo3Q==",
- "dev": true
+ "node_modules/which-module": {
+ "version": "2.0.1",
+ "dev": true,
+ "license": "ISC"
},
- "ui/alert-banner": {
- "name": "@washingtonpost/wpds-alert-banner",
- "version": "1.17.0",
+ "node_modules/which-typed-array": {
+ "version": "1.1.15",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@washingtonpost/wpds-app-bar": "1.17.0",
- "@washingtonpost/wpds-assets": "^1.22.0",
- "@washingtonpost/wpds-button": "1.17.0",
- "@washingtonpost/wpds-container": "1.17.0",
- "@washingtonpost/wpds-icon": "1.17.0",
- "@washingtonpost/wpds-theme": "1.17.0",
- "react": "^16.8.6 || ^17.0.2"
+ "available-typed-arrays": "^1.0.7",
+ "call-bind": "^1.0.7",
+ "for-each": "^0.3.3",
+ "gopd": "^1.0.1",
+ "has-tostringtag": "^1.0.2"
},
- "devDependencies": {
- "tsup": "5.11.13",
- "typescript": "4.5.5"
+ "engines": {
+ "node": ">= 0.4"
},
- "peerDependencies": {
- "@washingtonpost/wpds-app-bar": "*",
- "@washingtonpost/wpds-assets": "^1.22.0",
- "@washingtonpost/wpds-button": "*",
- "@washingtonpost/wpds-container": "*",
- "@washingtonpost/wpds-icon": "*",
- "@washingtonpost/wpds-theme": "*",
- "react": "^16.8.6 || ^17.0.2"
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "ui/alert-banner/node_modules/@washingtonpost/wpds-assets": {
- "version": "1.16.0",
+ "node_modules/wide-align": {
+ "version": "1.1.5",
+ "dev": true,
"license": "ISC",
"dependencies": {
- "react": "^16.0.1 || ^17.0.2",
- "react-dom": "^16.0.1 || ^17.0.2"
- },
- "peerDependencies": {
- "react": "^16.0.1 || ^17.0.2",
- "react-dom": "^16.0.1 || ^17.0.2"
+ "string-width": "^1.0.2 || 2 || 3 || 4"
}
},
- "ui/app-bar": {
- "name": "@washingtonpost/wpds-app-bar",
- "version": "1.17.0",
+ "node_modules/widest-line": {
+ "version": "3.1.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@washingtonpost/wpds-theme": "1.17.0",
- "react": "^16.8.6 || ^17.0.2"
- },
- "devDependencies": {
- "tsup": "5.11.13",
- "typescript": "4.5.5"
+ "string-width": "^4.0.0"
},
- "peerDependencies": {
- "@washingtonpost/wpds-theme": "*",
- "react": "^16.8.6 || ^17.0.2"
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/window-size": {
+ "version": "0.1.0",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.8.0"
}
},
- "ui/avatar": {
- "name": "@washingtonpost/wpds-avatar",
- "version": "1.17.0",
+ "node_modules/winston": {
+ "version": "3.13.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@radix-ui/react-avatar": "latest",
- "@washingtonpost/wpds-theme": "1.17.0"
- },
- "devDependencies": {
- "tsup": "5.11.13",
- "typescript": "4.5.5"
+ "@colors/colors": "^1.6.0",
+ "@dabh/diagnostics": "^2.0.2",
+ "async": "^3.2.3",
+ "is-stream": "^2.0.0",
+ "logform": "^2.4.0",
+ "one-time": "^1.0.0",
+ "readable-stream": "^3.4.0",
+ "safe-stable-stringify": "^2.3.1",
+ "stack-trace": "0.0.x",
+ "triple-beam": "^1.3.0",
+ "winston-transport": "^4.7.0"
},
- "peerDependencies": {
- "@radix-ui/react-avatar": "latest",
- "@washingtonpost/wpds-theme": "*",
- "react": "^16.8.6 || ^17.0.2"
+ "engines": {
+ "node": ">= 12.0.0"
}
},
- "ui/avatar/node_modules/@radix-ui/react-avatar": {
- "version": "1.0.2",
+ "node_modules/winston-transport": {
+ "version": "4.7.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-context": "1.0.0",
- "@radix-ui/react-primitive": "1.0.2",
- "@radix-ui/react-use-callback-ref": "1.0.0",
- "@radix-ui/react-use-layout-effect": "1.0.0"
+ "logform": "^2.3.2",
+ "readable-stream": "^3.6.0",
+ "triple-beam": "^1.3.0"
},
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
+ "engines": {
+ "node": ">= 12.0.0"
}
},
- "ui/box": {
- "name": "@washingtonpost/wpds-box",
- "version": "1.17.0",
+ "node_modules/winston/node_modules/@colors/colors": {
+ "version": "1.6.0",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "@washingtonpost/wpds-theme": "1.17.0",
- "react": "^16.8.6 || ^17.0.2"
- },
- "devDependencies": {
- "tsup": "5.11.13",
- "typescript": "4.5.5"
- },
- "peerDependencies": {
- "@washingtonpost/wpds-theme": "*",
- "react": "^16.8.6 || ^17.0.2"
+ "engines": {
+ "node": ">=0.1.90"
}
},
- "ui/button": {
- "name": "@washingtonpost/wpds-button",
- "version": "1.17.0",
+ "node_modules/with": {
+ "version": "5.1.1",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@washingtonpost/wpds-theme": "1.17.0",
- "react": "^16.8.6 || ^17.0.2"
- },
- "devDependencies": {
- "tsup": "5.11.13",
- "typescript": "4.5.5"
- },
- "peerDependencies": {
- "@washingtonpost/wpds-theme": "*",
- "react": "^16.8.6 || ^17.0.2"
+ "acorn": "^3.1.0",
+ "acorn-globals": "^3.0.0"
}
},
- "ui/card": {
- "name": "@washingtonpost/wpds-card",
- "version": "1.17.0",
+ "node_modules/with/node_modules/acorn": {
+ "version": "3.3.0",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "@washingtonpost/wpds-theme": "1.17.0"
- },
- "devDependencies": {
- "tsup": "5.11.13",
- "typescript": "4.5.5"
+ "bin": {
+ "acorn": "bin/acorn"
},
- "peerDependencies": {
- "@washingtonpost/wpds-theme": "*",
- "react": "^16.8.6 || ^17.0.2"
+ "engines": {
+ "node": ">=0.4.0"
}
},
- "ui/carousel": {
- "name": "@washingtonpost/wpds-carousel",
- "version": "1.17.0",
+ "node_modules/with/node_modules/acorn-globals": {
+ "version": "3.1.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@radix-ui/react-slot": "^1.0.0",
- "@radix-ui/react-use-controllable-state": "^1.0.0",
- "@washingtonpost/wpds-assets": "^1.22.0",
- "@washingtonpost/wpds-button": "1.17.0",
- "@washingtonpost/wpds-icon": "1.17.0",
- "@washingtonpost/wpds-pagination-dots": "1.17.0",
- "@washingtonpost/wpds-theme": "1.17.0",
- "nanoid": "^3.3.4",
- "react-swipeable": "^7.0.0"
- },
- "devDependencies": {
- "tsup": "^5.11.13",
- "typescript": "4.5.5"
- },
- "peerDependencies": {
- "@washingtonpost/wpds-assets": "^1.22.0",
- "@washingtonpost/wpds-button": "*",
- "@washingtonpost/wpds-icon": "*",
- "@washingtonpost/wpds-pagination-dots": "*",
- "@washingtonpost/wpds-theme": "*",
- "react": "^16.8.6 || ^17.0.2"
+ "acorn": "^4.0.4"
}
},
- "ui/checkbox": {
- "name": "@washingtonpost/wpds-checkbox",
- "version": "1.17.0",
+ "node_modules/with/node_modules/acorn-globals/node_modules/acorn": {
+ "version": "4.0.13",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "@radix-ui/react-checkbox": "^1.0.0",
- "@washingtonpost/wpds-assets": "^1.22.0",
- "@washingtonpost/wpds-icon": "1.17.0",
- "@washingtonpost/wpds-input-label": "1.17.0",
- "@washingtonpost/wpds-input-shared": "1.17.0",
- "@washingtonpost/wpds-theme": "1.17.0",
- "@washingtonpost/wpds-visually-hidden": "1.17.0",
- "react": "^16.8.6 || ^17.0.2"
- },
- "devDependencies": {
- "tsup": "5.11.13",
- "typescript": "4.5.5"
+ "bin": {
+ "acorn": "bin/acorn"
},
- "peerDependencies": {
- "@radix-ui/react-checkbox": "^1.0.0",
- "@washingtonpost/wpds-assets": "^1.22.0",
- "@washingtonpost/wpds-icon": "*",
- "@washingtonpost/wpds-input-label": "*",
- "@washingtonpost/wpds-input-shared": "*",
- "@washingtonpost/wpds-theme": "*",
- "@washingtonpost/wpds-visually-hidden": "*",
- "react": "^16.8.6 || ^17.0.2"
+ "engines": {
+ "node": ">=0.4.0"
}
},
- "ui/checkbox/node_modules/@radix-ui/react-checkbox": {
- "version": "1.0.2",
+ "node_modules/word-wrap": {
+ "version": "1.2.5",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/primitive": "1.0.0",
- "@radix-ui/react-compose-refs": "1.0.0",
- "@radix-ui/react-context": "1.0.0",
- "@radix-ui/react-presence": "1.0.0",
- "@radix-ui/react-primitive": "1.0.1",
- "@radix-ui/react-use-controllable-state": "1.0.0",
- "@radix-ui/react-use-previous": "1.0.0",
- "@radix-ui/react-use-size": "1.0.0"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "ui/checkbox/node_modules/@radix-ui/react-primitive": {
- "version": "1.0.1",
+ "node_modules/wordwrap": {
+ "version": "1.0.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/wrap-ansi": {
+ "version": "7.0.0",
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-slot": "1.0.1"
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
},
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
}
},
- "ui/checkbox/node_modules/@radix-ui/react-use-size": {
- "version": "1.0.0",
+ "node_modules/wrap-ansi-cjs": {
+ "name": "wrap-ansi",
+ "version": "7.0.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-use-layout-effect": "1.0.0"
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
},
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0"
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
}
},
- "ui/checkbox/node_modules/@washingtonpost/wpds-assets": {
- "version": "1.16.0",
+ "node_modules/wrappy": {
+ "version": "1.0.2",
+ "license": "ISC"
+ },
+ "node_modules/write-file-atomic": {
+ "version": "4.0.2",
+ "dev": true,
"license": "ISC",
"dependencies": {
- "react": "^16.0.1 || ^17.0.2",
- "react-dom": "^16.0.1 || ^17.0.2"
+ "imurmurhash": "^0.1.4",
+ "signal-exit": "^3.0.7"
},
- "peerDependencies": {
- "react": "^16.0.1 || ^17.0.2",
- "react-dom": "^16.0.1 || ^17.0.2"
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "ui/container": {
- "name": "@washingtonpost/wpds-container",
- "version": "1.17.0",
+ "node_modules/write-json-file": {
+ "version": "4.3.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@washingtonpost/wpds-theme": "1.17.0",
- "react": "^16.8.6 || ^17.0.2"
+ "detect-indent": "^6.0.0",
+ "graceful-fs": "^4.1.15",
+ "is-plain-obj": "^2.0.0",
+ "make-dir": "^3.0.0",
+ "sort-keys": "^4.0.0",
+ "write-file-atomic": "^3.0.0"
},
- "devDependencies": {
- "tsup": "5.11.13",
- "typescript": "4.5.5"
+ "engines": {
+ "node": ">=8.3"
},
- "peerDependencies": {
- "@washingtonpost/wpds-theme": "*",
- "react": "^16.8.6 || ^17.0.2"
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "ui/css": {
- "name": "@washingtonpost/wpds-tokens",
- "version": "0.0.0",
- "extraneous": true,
+ "node_modules/write-json-file/node_modules/is-plain-obj": {
+ "version": "2.1.0",
+ "dev": true,
"license": "MIT",
- "devDependencies": {
- "@washingtonpost/wpds-theme": "latest",
- "react": "^17.0.2",
- "react-dom": "^17.0.2"
+ "engines": {
+ "node": ">=8"
}
},
- "ui/divider": {
- "name": "@washingtonpost/wpds-divider",
- "version": "1.17.0",
- "license": "MIT",
+ "node_modules/write-json-file/node_modules/write-file-atomic": {
+ "version": "3.0.3",
+ "dev": true,
+ "license": "ISC",
"dependencies": {
- "@radix-ui/react-separator": "^1.0.0",
- "@washingtonpost/wpds-theme": "1.17.0"
- },
- "devDependencies": {
- "tsup": "5.11.13",
- "typescript": "4.5.5"
- },
- "peerDependencies": {
- "@washingtonpost/wpds-theme": "*",
- "react": "^16.8.6 || ^17.0.2"
+ "imurmurhash": "^0.1.4",
+ "is-typedarray": "^1.0.0",
+ "signal-exit": "^3.0.2",
+ "typedarray-to-buffer": "^3.1.5"
}
},
- "ui/divider/node_modules/@radix-ui/react-primitive": {
- "version": "1.0.1",
+ "node_modules/write-pkg": {
+ "version": "4.0.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-slot": "1.0.1"
+ "sort-keys": "^2.0.0",
+ "type-fest": "^0.4.1",
+ "write-json-file": "^3.2.0"
},
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
+ "engines": {
+ "node": ">=8"
}
},
- "ui/divider/node_modules/@radix-ui/react-separator": {
- "version": "1.0.1",
+ "node_modules/write-pkg/node_modules/detect-indent": {
+ "version": "5.0.0",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-primitive": "1.0.1"
- },
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
+ "engines": {
+ "node": ">=4"
}
},
- "ui/drawer": {
- "name": "@washingtonpost/wpds-drawer",
- "version": "1.17.0",
+ "node_modules/write-pkg/node_modules/make-dir": {
+ "version": "2.1.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@radix-ui/react-focus-scope": "^1.0.0",
- "@washingtonpost/wpds-assets": "^1.22.0",
- "@washingtonpost/wpds-button": "1.17.0",
- "@washingtonpost/wpds-icon": "1.17.0",
- "@washingtonpost/wpds-scrim": "1.17.0",
- "@washingtonpost/wpds-theme": "1.17.0",
- "react-transition-group": "^4.4.5"
- },
- "devDependencies": {
- "tsup": "5.11.13",
- "typescript": "4.5.5"
+ "pify": "^4.0.1",
+ "semver": "^5.6.0"
},
- "peerDependencies": {
- "@washingtonpost/wpds-assets": "^1.22.0",
- "@washingtonpost/wpds-button": "*",
- "@washingtonpost/wpds-icon": "*",
- "@washingtonpost/wpds-scrim": "*",
- "@washingtonpost/wpds-theme": "*",
- "react": "^16.8.6 || ^17.0.2"
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/write-pkg/node_modules/pify": {
+ "version": "4.0.1",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
}
},
- "ui/drawer/node_modules/@washingtonpost/wpds-assets": {
- "version": "1.16.0",
+ "node_modules/write-pkg/node_modules/semver": {
+ "version": "5.7.2",
+ "dev": true,
"license": "ISC",
- "dependencies": {
- "react": "^16.0.1 || ^17.0.2",
- "react-dom": "^16.0.1 || ^17.0.2"
- },
- "peerDependencies": {
- "react": "^16.0.1 || ^17.0.2",
- "react-dom": "^16.0.1 || ^17.0.2"
+ "bin": {
+ "semver": "bin/semver"
}
},
- "ui/error-message": {
- "name": "@washingtonpost/wpds-error-message",
- "version": "1.17.0",
+ "node_modules/write-pkg/node_modules/sort-keys": {
+ "version": "2.0.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@washingtonpost/wpds-theme": "1.17.0"
- },
- "devDependencies": {
- "tsup": "5.11.13",
- "typescript": "4.5.5"
+ "is-plain-obj": "^1.0.0"
},
- "peerDependencies": {
- "@washingtonpost/wpds-theme": "*",
- "react": "^16.8.6 || ^17.0.2"
+ "engines": {
+ "node": ">=4"
}
},
- "ui/eslint-plugin": {
- "name": "@washingtonpost/eslint-plugin-wpds",
- "version": "1.17.0",
- "license": "MIT",
- "dependencies": {
- "@washingtonpost/wpds-theme": "1.17.0"
- },
- "devDependencies": {
- "jest": "^28.1.0"
- },
- "peerDependencies": {
- "@washingtonpost/wpds-theme": "*"
+ "node_modules/write-pkg/node_modules/type-fest": {
+ "version": "0.4.1",
+ "dev": true,
+ "license": "(MIT OR CC0-1.0)",
+ "engines": {
+ "node": ">=6"
}
},
- "ui/fieldset": {
- "name": "@washingtonpost/wpds-fieldset",
- "version": "1.17.0",
- "license": "MIT",
+ "node_modules/write-pkg/node_modules/write-file-atomic": {
+ "version": "2.4.3",
+ "dev": true,
+ "license": "ISC",
"dependencies": {
- "@washingtonpost/wpds-theme": "1.17.0"
- },
- "devDependencies": {
- "tsup": "5.11.13",
- "typescript": "4.5.5"
- },
- "peerDependencies": {
- "@washingtonpost/wpds-theme": "*",
- "react": "^16.8.6 || ^17.0.2"
+ "graceful-fs": "^4.1.11",
+ "imurmurhash": "^0.1.4",
+ "signal-exit": "^3.0.2"
}
},
- "ui/helper-text": {
- "name": "@washingtonpost/wpds-helper-text",
- "version": "1.17.0",
+ "node_modules/write-pkg/node_modules/write-json-file": {
+ "version": "3.2.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@washingtonpost/wpds-theme": "1.17.0"
- },
- "devDependencies": {
- "tsup": "5.11.13",
- "typescript": "4.5.5"
+ "detect-indent": "^5.0.0",
+ "graceful-fs": "^4.1.15",
+ "make-dir": "^2.1.0",
+ "pify": "^4.0.1",
+ "sort-keys": "^2.0.0",
+ "write-file-atomic": "^2.4.2"
},
- "peerDependencies": {
- "@washingtonpost/wpds-theme": "*",
- "react": "^16.8.6 || ^17.0.2"
+ "engines": {
+ "node": ">=6"
}
},
- "ui/icon": {
- "name": "@washingtonpost/wpds-icon",
- "version": "1.17.0",
+ "node_modules/ws": {
+ "version": "7.5.9",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "@washingtonpost/wpds-theme": "1.17.0",
- "@washingtonpost/wpds-visually-hidden": "1.17.0",
- "react": "^16.8.6 || ^17.0.2"
- },
- "devDependencies": {
- "tsup": "5.11.13",
- "typescript": "4.5.5"
+ "engines": {
+ "node": ">=8.3.0"
},
"peerDependencies": {
- "@washingtonpost/wpds-theme": "*",
- "@washingtonpost/wpds-visually-hidden": "*",
- "react": "^16.8.6 || ^17.0.2"
+ "bufferutil": "^4.0.1",
+ "utf-8-validate": "^5.0.2"
+ },
+ "peerDependenciesMeta": {
+ "bufferutil": {
+ "optional": true
+ },
+ "utf-8-validate": {
+ "optional": true
+ }
}
},
- "ui/input-label": {
- "name": "@washingtonpost/wpds-input-label",
- "version": "1.17.0",
+ "node_modules/xdg-basedir": {
+ "version": "4.0.0",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "@radix-ui/react-label": "^1.0.0",
- "@washingtonpost/wpds-input-shared": "1.17.0",
- "@washingtonpost/wpds-theme": "1.17.0"
- },
- "devDependencies": {
- "tsup": "5.11.13",
- "typescript": "4.5.5"
- },
- "peerDependencies": {
- "@washingtonpost/wpds-input-shared": "*",
- "@washingtonpost/wpds-theme": "*",
- "react": "^16.8.6 || ^17.0.2"
+ "engines": {
+ "node": ">=8"
}
},
- "ui/input-password": {
- "name": "@washingtonpost/wpds-input-password",
- "version": "1.17.0",
+ "node_modules/xml": {
+ "version": "1.0.1",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/xml-name-validator": {
+ "version": "3.0.0",
+ "dev": true,
+ "license": "Apache-2.0"
+ },
+ "node_modules/xmlchars": {
+ "version": "2.2.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/xtend": {
+ "version": "4.0.2",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "@washingtonpost/wpds-assets": "^1.22.0",
- "@washingtonpost/wpds-icon": "1.17.0",
- "@washingtonpost/wpds-input-text": "1.17.0"
- },
- "devDependencies": {
- "tsup": "5.11.13",
- "typescript": "4.5.5"
- },
- "peerDependencies": {
- "@washingtonpost/wpds-assets": "^1.22.0",
- "@washingtonpost/wpds-icon": "*",
- "@washingtonpost/wpds-input-text": "*",
- "react": "^16.8.6 || ^17.0.2"
+ "engines": {
+ "node": ">=0.4"
}
},
- "ui/input-password/node_modules/@washingtonpost/wpds-assets": {
- "version": "1.16.0",
+ "node_modules/y18n": {
+ "version": "5.0.8",
"license": "ISC",
- "dependencies": {
- "react": "^16.0.1 || ^17.0.2",
- "react-dom": "^16.0.1 || ^17.0.2"
- },
- "peerDependencies": {
- "react": "^16.0.1 || ^17.0.2",
- "react-dom": "^16.0.1 || ^17.0.2"
+ "engines": {
+ "node": ">=10"
}
},
- "ui/input-search": {
- "name": "@washingtonpost/wpds-input-search",
- "version": "1.17.0",
- "license": "MIT",
- "dependencies": {
- "@reach/combobox": "^0.18.0",
- "@reach/popover": "^0.18.0",
- "@washingtonpost/wpds-assets": "^1.22.0",
- "@washingtonpost/wpds-icon": "1.17.0",
- "@washingtonpost/wpds-input-label": "1.17.0",
- "@washingtonpost/wpds-input-text": "1.17.0",
- "@washingtonpost/wpds-theme": "1.17.0",
- "match-sorter": "6.3.1"
- },
- "devDependencies": {
- "tsup": "5.11.13",
- "typescript": "4.5.5"
- },
- "peerDependencies": {
- "@washingtonpost/wpds-assets": "^1.18.0",
- "@washingtonpost/wpds-icon": "*",
- "@washingtonpost/wpds-input-label": "*",
- "@washingtonpost/wpds-input-text": "*",
- "@washingtonpost/wpds-theme": "*",
- "react": "^16.8.6 || ^17.0.2"
+ "node_modules/yallist": {
+ "version": "3.1.1",
+ "license": "ISC"
+ },
+ "node_modules/yaml": {
+ "version": "1.10.2",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">= 6"
}
},
- "ui/input-shared": {
- "name": "@washingtonpost/wpds-input-shared",
- "version": "1.17.0",
+ "node_modules/yargs": {
+ "version": "17.7.2",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@washingtonpost/wpds-theme": "1.17.0"
- },
- "devDependencies": {
- "tsup": "5.11.13",
- "typescript": "4.5.5"
+ "cliui": "^8.0.1",
+ "escalade": "^3.1.1",
+ "get-caller-file": "^2.0.5",
+ "require-directory": "^2.1.1",
+ "string-width": "^4.2.3",
+ "y18n": "^5.0.5",
+ "yargs-parser": "^21.1.1"
},
- "peerDependencies": {
- "@washingtonpost/wpds-theme": "*",
- "react": "^16.8.6 || ^17.0.2"
+ "engines": {
+ "node": ">=12"
}
},
- "ui/input-text": {
- "name": "@washingtonpost/wpds-input-text",
- "version": "1.17.0",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-label": "^1.0.0",
- "@washingtonpost/wpds-assets": "^1.22.0",
- "@washingtonpost/wpds-button": "1.17.0",
- "@washingtonpost/wpds-error-message": "1.17.0",
- "@washingtonpost/wpds-helper-text": "1.17.0",
- "@washingtonpost/wpds-icon": "1.17.0",
- "@washingtonpost/wpds-input-label": "1.17.0",
- "@washingtonpost/wpds-input-shared": "1.17.0",
- "@washingtonpost/wpds-theme": "1.17.0",
- "@washingtonpost/wpds-visually-hidden": "1.17.0",
- "nanoid": "^3.3.4"
- },
- "devDependencies": {
- "tsup": "5.11.13",
- "typescript": "4.5.5"
- },
- "peerDependencies": {
- "@washingtonpost/wpds-assets": "^1.22.0",
- "@washingtonpost/wpds-button": "*",
- "@washingtonpost/wpds-divider": "*",
- "@washingtonpost/wpds-error-message": "*",
- "@washingtonpost/wpds-helper-text": "*",
- "@washingtonpost/wpds-icon": "*",
- "@washingtonpost/wpds-input-label": "*",
- "@washingtonpost/wpds-input-shared": "*",
- "@washingtonpost/wpds-theme": "*",
- "@washingtonpost/wpds-visually-hidden": "*",
- "react": "^16.8.6 || ^17.0.2"
+ "node_modules/yargs-parser": {
+ "version": "20.2.4",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">=10"
}
},
- "ui/input-text/node_modules/@washingtonpost/wpds-assets": {
- "version": "1.16.0",
+ "node_modules/yargs/node_modules/cliui": {
+ "version": "8.0.1",
+ "dev": true,
"license": "ISC",
"dependencies": {
- "react": "^16.0.1 || ^17.0.2",
- "react-dom": "^16.0.1 || ^17.0.2"
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.1",
+ "wrap-ansi": "^7.0.0"
},
- "peerDependencies": {
- "react": "^16.0.1 || ^17.0.2",
- "react-dom": "^16.0.1 || ^17.0.2"
+ "engines": {
+ "node": ">=12"
}
},
- "ui/input-text/node_modules/nanoid": {
- "version": "3.3.2",
- "license": "MIT",
- "bin": {
- "nanoid": "bin/nanoid.cjs"
- },
+ "node_modules/yargs/node_modules/yargs-parser": {
+ "version": "21.1.1",
+ "dev": true,
+ "license": "ISC",
"engines": {
- "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
+ "node": ">=12"
}
},
- "ui/input-textarea": {
- "name": "@washingtonpost/wpds-input-textarea",
- "version": "1.17.0",
+ "node_modules/yauzl": {
+ "version": "2.10.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@washingtonpost/wpds-error-message": "1.17.0",
- "@washingtonpost/wpds-helper-text": "1.17.0",
- "@washingtonpost/wpds-input-label": "1.17.0",
- "@washingtonpost/wpds-input-shared": "1.17.0",
- "@washingtonpost/wpds-theme": "1.17.0",
- "nanoid": "^3.3.4",
- "react": "^16.8.6 || ^17.0.2"
- },
- "devDependencies": {
- "tsup": "5.11.13",
- "typescript": "4.5.5"
- },
- "peerDependencies": {
- "@washingtonpost/wpds-error-message": "*",
- "@washingtonpost/wpds-helper-text": "*",
- "@washingtonpost/wpds-input-label": "*",
- "@washingtonpost/wpds-input-shared": "*",
- "@washingtonpost/wpds-theme": "*",
- "react": "^16.8.6 || ^17.0.2"
+ "buffer-crc32": "~0.2.3",
+ "fd-slicer": "~1.1.0"
}
},
- "ui/kit": {
- "name": "@washingtonpost/wpds-ui-kit",
- "version": "1.17.0",
- "license": "MIT",
- "dependencies": {
- "@washingtonpost/eslint-plugin-wpds": "1.17.0",
- "@washingtonpost/wpds-accordion": "1.17.0",
- "@washingtonpost/wpds-action-menu": "1.17.0",
- "@washingtonpost/wpds-alert-banner": "1.17.0",
- "@washingtonpost/wpds-app-bar": "1.17.0",
- "@washingtonpost/wpds-avatar": "1.17.0",
- "@washingtonpost/wpds-box": "1.17.0",
- "@washingtonpost/wpds-button": "1.17.0",
- "@washingtonpost/wpds-card": "1.17.0",
- "@washingtonpost/wpds-carousel": "1.17.0",
- "@washingtonpost/wpds-checkbox": "1.17.0",
- "@washingtonpost/wpds-container": "1.17.0",
- "@washingtonpost/wpds-divider": "1.17.0",
- "@washingtonpost/wpds-drawer": "1.17.0",
- "@washingtonpost/wpds-error-message": "1.17.0",
- "@washingtonpost/wpds-fieldset": "1.17.0",
- "@washingtonpost/wpds-helper-text": "1.17.0",
- "@washingtonpost/wpds-icon": "1.17.0",
- "@washingtonpost/wpds-input-label": "1.17.0",
- "@washingtonpost/wpds-input-password": "1.17.0",
- "@washingtonpost/wpds-input-search": "1.17.0",
- "@washingtonpost/wpds-input-shared": "1.17.0",
- "@washingtonpost/wpds-input-text": "1.17.0",
- "@washingtonpost/wpds-input-textarea": "1.17.0",
- "@washingtonpost/wpds-navigation-menu": "1.17.0",
- "@washingtonpost/wpds-pagination-dots": "1.17.0",
- "@washingtonpost/wpds-popover": "1.17.0",
- "@washingtonpost/wpds-radio-group": "1.17.0",
- "@washingtonpost/wpds-scrim": "1.17.0",
- "@washingtonpost/wpds-select": "1.17.0",
- "@washingtonpost/wpds-switch": "1.17.0",
- "@washingtonpost/wpds-tabs": "1.17.0",
- "@washingtonpost/wpds-theme": "1.17.0",
- "@washingtonpost/wpds-tooltip": "1.17.0",
- "@washingtonpost/wpds-visually-hidden": "1.17.0"
- },
- "devDependencies": {
- "tsup": "5.11.13",
- "typescript": "4.5.5"
+ "node_modules/yocto-queue": {
+ "version": "0.1.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
},
- "peerDependencies": {
- "@washingtonpost/eslint-plugin-wpds": "*",
- "@washingtonpost/wpds-accordion": "*",
- "@washingtonpost/wpds-action-menu": "*",
- "@washingtonpost/wpds-alert-banner": "*",
- "@washingtonpost/wpds-app-bar": "*",
- "@washingtonpost/wpds-avatar": "*",
- "@washingtonpost/wpds-box": "*",
- "@washingtonpost/wpds-button": "*",
- "@washingtonpost/wpds-card": "*",
- "@washingtonpost/wpds-carousel": "*",
- "@washingtonpost/wpds-checkbox": "*",
- "@washingtonpost/wpds-container": "*",
- "@washingtonpost/wpds-divider": "*",
- "@washingtonpost/wpds-drawer": "*",
- "@washingtonpost/wpds-error-message": "*",
- "@washingtonpost/wpds-fieldset": "*",
- "@washingtonpost/wpds-helper-text": "*",
- "@washingtonpost/wpds-icon": "*",
- "@washingtonpost/wpds-input-label": "*",
- "@washingtonpost/wpds-input-password": "*",
- "@washingtonpost/wpds-input-search": "*",
- "@washingtonpost/wpds-input-shared": "*",
- "@washingtonpost/wpds-input-text": "*",
- "@washingtonpost/wpds-input-textarea": "*",
- "@washingtonpost/wpds-navigation-menu": "*",
- "@washingtonpost/wpds-pagination-dots": "*",
- "@washingtonpost/wpds-popover": "*",
- "@washingtonpost/wpds-radio-group": "*",
- "@washingtonpost/wpds-scrim": "*",
- "@washingtonpost/wpds-select": "*",
- "@washingtonpost/wpds-switch": "*",
- "@washingtonpost/wpds-tabs": "*",
- "@washingtonpost/wpds-theme": "*",
- "@washingtonpost/wpds-tooltip": "*",
- "@washingtonpost/wpds-visually-hidden": "*"
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "ui/kitchen-sink": {
- "name": "@washingtonpost/wpds-kitchen-sink",
- "version": "1.17.0",
+ "node_modules/zwitch": {
+ "version": "2.0.4",
"license": "MIT",
- "dependencies": {
- "@washingtonpost/wpds-assets": "latest",
- "@washingtonpost/wpds-ui-kit": "1.17.0",
- "nanoid": "^3.3.4"
- },
- "devDependencies": {
- "tsup": "5.11.13",
- "typescript": "4.5.5"
- },
- "peerDependencies": {
- "@washingtonpost/wpds-assets": "latest",
- "@washingtonpost/wpds-ui-kit": "1.2.0",
- "react": "^16.8.6 || ^17.0.2"
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
- "ui/navigation-menu": {
- "name": "@washingtonpost/wpds-navigation-menu",
- "version": "1.17.0",
+ "packages/eslint-plugin": {
+ "name": "@washingtonpost/eslint-plugin-wpds",
+ "version": "2.0.0",
"license": "MIT",
"dependencies": {
- "@popperjs/core": "^2.11.7",
- "@radix-ui/react-navigation-menu": "^1.1.2",
- "@washingtonpost/wpds-theme": "1.17.0",
- "popper-max-size-modifier": "^0.2.0",
- "react-popper": "^2.3.0",
- "react-transition-group": "^4.4.5"
+ "@washingtonpost/wpds-ui-kit": "2.0.0"
},
"devDependencies": {
- "tsup": "5.11.13",
- "typescript": "4.5.5"
+ "jest": "^28.1.0"
},
"peerDependencies": {
- "@washingtonpost/wpds-theme": "*",
- "react": "^16.8.6 || ^17.0.2"
+ "@washingtonpost/wpds-ui-kit": "2.0.0-alpha.10"
}
},
- "ui/navigation-menu/node_modules/@radix-ui/primitive": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.0.1.tgz",
- "integrity": "sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==",
+ "packages/eslint-plugin/node_modules/@jest/console": {
+ "version": "28.1.3",
+ "dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.13.10"
+ "@jest/types": "^28.1.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "jest-message-util": "^28.1.3",
+ "jest-util": "^28.1.3",
+ "slash": "^3.0.0"
+ },
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "ui/navigation-menu/node_modules/@radix-ui/react-compose-refs": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.1.tgz",
- "integrity": "sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==",
+ "packages/eslint-plugin/node_modules/@jest/core": {
+ "version": "28.1.3",
+ "dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.13.10"
+ "@jest/console": "^28.1.3",
+ "@jest/reporters": "^28.1.3",
+ "@jest/test-result": "^28.1.3",
+ "@jest/transform": "^28.1.3",
+ "@jest/types": "^28.1.3",
+ "@types/node": "*",
+ "ansi-escapes": "^4.2.1",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "exit": "^0.1.2",
+ "graceful-fs": "^4.2.9",
+ "jest-changed-files": "^28.1.3",
+ "jest-config": "^28.1.3",
+ "jest-haste-map": "^28.1.3",
+ "jest-message-util": "^28.1.3",
+ "jest-regex-util": "^28.0.2",
+ "jest-resolve": "^28.1.3",
+ "jest-resolve-dependencies": "^28.1.3",
+ "jest-runner": "^28.1.3",
+ "jest-runtime": "^28.1.3",
+ "jest-snapshot": "^28.1.3",
+ "jest-util": "^28.1.3",
+ "jest-validate": "^28.1.3",
+ "jest-watcher": "^28.1.3",
+ "micromatch": "^4.0.4",
+ "pretty-format": "^28.1.3",
+ "rimraf": "^3.0.0",
+ "slash": "^3.0.0",
+ "strip-ansi": "^6.0.0"
+ },
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
},
"peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
+ "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
},
"peerDependenciesMeta": {
- "@types/react": {
+ "node-notifier": {
"optional": true
}
}
},
- "ui/navigation-menu/node_modules/@radix-ui/react-context": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.0.1.tgz",
- "integrity": "sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==",
+ "packages/eslint-plugin/node_modules/@jest/environment": {
+ "version": "28.1.3",
+ "dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.13.10"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
+ "@jest/fake-timers": "^28.1.3",
+ "@jest/types": "^28.1.3",
+ "@types/node": "*",
+ "jest-mock": "^28.1.3"
},
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "ui/navigation-menu/node_modules/@radix-ui/react-direction": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.0.1.tgz",
- "integrity": "sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==",
+ "packages/eslint-plugin/node_modules/@jest/expect": {
+ "version": "28.1.3",
+ "dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.13.10"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
+ "expect": "^28.1.3",
+ "jest-snapshot": "^28.1.3"
},
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "ui/navigation-menu/node_modules/@radix-ui/react-dismissable-layer": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.0.5.tgz",
- "integrity": "sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==",
+ "packages/eslint-plugin/node_modules/@jest/expect-utils": {
+ "version": "28.1.3",
+ "dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/primitive": "1.0.1",
- "@radix-ui/react-compose-refs": "1.0.1",
- "@radix-ui/react-primitive": "1.0.3",
- "@radix-ui/react-use-callback-ref": "1.0.1",
- "@radix-ui/react-use-escape-keydown": "1.0.3"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
+ "jest-get-type": "^28.0.2"
},
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "ui/navigation-menu/node_modules/@radix-ui/react-id": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.0.1.tgz",
- "integrity": "sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==",
+ "packages/eslint-plugin/node_modules/@jest/fake-timers": {
+ "version": "28.1.3",
+ "dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-use-layout-effect": "1.0.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
+ "@jest/types": "^28.1.3",
+ "@sinonjs/fake-timers": "^9.1.2",
+ "@types/node": "*",
+ "jest-message-util": "^28.1.3",
+ "jest-mock": "^28.1.3",
+ "jest-util": "^28.1.3"
},
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "ui/navigation-menu/node_modules/@radix-ui/react-navigation-menu": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-navigation-menu/-/react-navigation-menu-1.1.4.tgz",
- "integrity": "sha512-Cc+seCS3PmWmjI51ufGG7zp1cAAIRqHVw7C9LOA2TZ+R4hG6rDvHcTqIsEEFLmZO3zNVH72jOOE7kKNy8W+RtA==",
+ "packages/eslint-plugin/node_modules/@jest/globals": {
+ "version": "28.1.3",
+ "dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/primitive": "1.0.1",
- "@radix-ui/react-collection": "1.0.3",
- "@radix-ui/react-compose-refs": "1.0.1",
- "@radix-ui/react-context": "1.0.1",
- "@radix-ui/react-direction": "1.0.1",
- "@radix-ui/react-dismissable-layer": "1.0.5",
- "@radix-ui/react-id": "1.0.1",
- "@radix-ui/react-presence": "1.0.1",
- "@radix-ui/react-primitive": "1.0.3",
- "@radix-ui/react-use-callback-ref": "1.0.1",
- "@radix-ui/react-use-controllable-state": "1.0.1",
- "@radix-ui/react-use-layout-effect": "1.0.1",
- "@radix-ui/react-use-previous": "1.0.1",
- "@radix-ui/react-visually-hidden": "1.0.3"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
+ "@jest/environment": "^28.1.3",
+ "@jest/expect": "^28.1.3",
+ "@jest/types": "^28.1.3"
},
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "ui/navigation-menu/node_modules/@radix-ui/react-presence": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-presence/-/react-presence-1.0.1.tgz",
- "integrity": "sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==",
+ "packages/eslint-plugin/node_modules/@jest/reporters": {
+ "version": "28.1.3",
+ "dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-compose-refs": "1.0.1",
- "@radix-ui/react-use-layout-effect": "1.0.1"
+ "@bcoe/v8-coverage": "^0.2.3",
+ "@jest/console": "^28.1.3",
+ "@jest/test-result": "^28.1.3",
+ "@jest/transform": "^28.1.3",
+ "@jest/types": "^28.1.3",
+ "@jridgewell/trace-mapping": "^0.3.13",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "collect-v8-coverage": "^1.0.0",
+ "exit": "^0.1.2",
+ "glob": "^7.1.3",
+ "graceful-fs": "^4.2.9",
+ "istanbul-lib-coverage": "^3.0.0",
+ "istanbul-lib-instrument": "^5.1.0",
+ "istanbul-lib-report": "^3.0.0",
+ "istanbul-lib-source-maps": "^4.0.0",
+ "istanbul-reports": "^3.1.3",
+ "jest-message-util": "^28.1.3",
+ "jest-util": "^28.1.3",
+ "jest-worker": "^28.1.3",
+ "slash": "^3.0.0",
+ "string-length": "^4.0.1",
+ "strip-ansi": "^6.0.0",
+ "terminal-link": "^2.0.0",
+ "v8-to-istanbul": "^9.0.1"
+ },
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
},
"peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
+ "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
},
"peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
+ "node-notifier": {
"optional": true
}
}
},
- "ui/navigation-menu/node_modules/@radix-ui/react-primitive": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-1.0.3.tgz",
- "integrity": "sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==",
+ "packages/eslint-plugin/node_modules/@jest/schemas": {
+ "version": "28.1.3",
+ "dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-slot": "1.0.2"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
+ "@sinclair/typebox": "^0.24.1"
},
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "ui/navigation-menu/node_modules/@radix-ui/react-slot": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.0.2.tgz",
- "integrity": "sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==",
+ "packages/eslint-plugin/node_modules/@jest/source-map": {
+ "version": "28.1.2",
+ "dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-compose-refs": "1.0.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
+ "@jridgewell/trace-mapping": "^0.3.13",
+ "callsites": "^3.0.0",
+ "graceful-fs": "^4.2.9"
},
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "ui/navigation-menu/node_modules/@radix-ui/react-use-controllable-state": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.0.1.tgz",
- "integrity": "sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==",
+ "packages/eslint-plugin/node_modules/@jest/test-result": {
+ "version": "28.1.3",
+ "dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-use-callback-ref": "1.0.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
+ "@jest/console": "^28.1.3",
+ "@jest/types": "^28.1.3",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "collect-v8-coverage": "^1.0.0"
},
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "ui/navigation-menu/node_modules/@radix-ui/react-use-escape-keydown": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.0.3.tgz",
- "integrity": "sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==",
+ "packages/eslint-plugin/node_modules/@jest/test-sequencer": {
+ "version": "28.1.3",
+ "dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-use-callback-ref": "1.0.1"
+ "@jest/test-result": "^28.1.3",
+ "graceful-fs": "^4.2.9",
+ "jest-haste-map": "^28.1.3",
+ "slash": "^3.0.0"
},
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ }
+ },
+ "packages/eslint-plugin/node_modules/@jest/transform": {
+ "version": "28.1.3",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/core": "^7.11.6",
+ "@jest/types": "^28.1.3",
+ "@jridgewell/trace-mapping": "^0.3.13",
+ "babel-plugin-istanbul": "^6.1.1",
+ "chalk": "^4.0.0",
+ "convert-source-map": "^1.4.0",
+ "fast-json-stable-stringify": "^2.0.0",
+ "graceful-fs": "^4.2.9",
+ "jest-haste-map": "^28.1.3",
+ "jest-regex-util": "^28.0.2",
+ "jest-util": "^28.1.3",
+ "micromatch": "^4.0.4",
+ "pirates": "^4.0.4",
+ "slash": "^3.0.0",
+ "write-file-atomic": "^4.0.1"
},
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "ui/navigation-menu/node_modules/@radix-ui/react-use-layout-effect": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.0.1.tgz",
- "integrity": "sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==",
+ "packages/eslint-plugin/node_modules/@jest/types": {
+ "version": "28.1.3",
+ "dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.13.10"
+ "@jest/schemas": "^28.1.3",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^17.0.8",
+ "chalk": "^4.0.0"
},
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ }
+ },
+ "packages/eslint-plugin/node_modules/@sinclair/typebox": {
+ "version": "0.24.51",
+ "dev": true,
+ "license": "MIT"
+ },
+ "packages/eslint-plugin/node_modules/@sinonjs/commons": {
+ "version": "1.8.6",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "type-detect": "4.0.8"
+ }
+ },
+ "packages/eslint-plugin/node_modules/@sinonjs/fake-timers": {
+ "version": "9.1.2",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "@sinonjs/commons": "^1.7.0"
+ }
+ },
+ "packages/eslint-plugin/node_modules/ansi-styles": {
+ "version": "5.2.0",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
},
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "ui/navigation-menu/node_modules/@radix-ui/react-use-previous": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-use-previous/-/react-use-previous-1.0.1.tgz",
- "integrity": "sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==",
+ "packages/eslint-plugin/node_modules/babel-jest": {
+ "version": "28.1.3",
+ "dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.13.10"
+ "@jest/transform": "^28.1.3",
+ "@types/babel__core": "^7.1.14",
+ "babel-plugin-istanbul": "^6.1.1",
+ "babel-preset-jest": "^28.1.3",
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.9",
+ "slash": "^3.0.0"
+ },
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
},
"peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
+ "@babel/core": "^7.8.0"
+ }
+ },
+ "packages/eslint-plugin/node_modules/babel-plugin-jest-hoist": {
+ "version": "28.1.3",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/template": "^7.3.3",
+ "@babel/types": "^7.3.3",
+ "@types/babel__core": "^7.1.14",
+ "@types/babel__traverse": "^7.0.6"
},
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "ui/navigation-menu/node_modules/@radix-ui/react-visually-hidden": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-visually-hidden/-/react-visually-hidden-1.0.3.tgz",
- "integrity": "sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==",
+ "packages/eslint-plugin/node_modules/babel-preset-jest": {
+ "version": "28.1.3",
+ "dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-primitive": "1.0.3"
+ "babel-plugin-jest-hoist": "^28.1.3",
+ "babel-preset-current-node-syntax": "^1.0.0"
+ },
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
},
"peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
+ "@babel/core": "^7.0.0"
+ }
+ },
+ "packages/eslint-plugin/node_modules/camelcase": {
+ "version": "6.3.0",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
},
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "packages/eslint-plugin/node_modules/ci-info": {
+ "version": "3.9.0",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/sibiraj-s"
}
+ ],
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
}
},
- "ui/pagination-dots": {
- "name": "@washingtonpost/wpds-pagination-dots",
- "version": "1.17.0",
+ "packages/eslint-plugin/node_modules/convert-source-map": {
+ "version": "1.9.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "packages/eslint-plugin/node_modules/diff-sequences": {
+ "version": "28.1.1",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "@washingtonpost/wpds-theme": "1.17.0"
- },
- "devDependencies": {
- "tsup": "5.11.13",
- "typescript": "4.5.5"
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ }
+ },
+ "packages/eslint-plugin/node_modules/emittery": {
+ "version": "0.10.2",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
},
- "peerDependencies": {
- "@washingtonpost/wpds-theme": "*",
- "react": "^16.8.6 || ^17.0.2"
+ "funding": {
+ "url": "https://github.com/sindresorhus/emittery?sponsor=1"
}
},
- "ui/popover": {
- "name": "@washingtonpost/wpds-popover",
- "version": "1.17.0",
+ "packages/eslint-plugin/node_modules/expect": {
+ "version": "28.1.3",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@radix-ui/react-popover": "^1.0.2",
- "@washingtonpost/wpds-assets": "^1.22.0",
- "@washingtonpost/wpds-button": "1.17.0",
- "@washingtonpost/wpds-icon": "1.17.0",
- "@washingtonpost/wpds-theme": "1.17.0"
- },
- "devDependencies": {
- "tsup": "5.11.13",
- "typescript": "4.5.5"
+ "@jest/expect-utils": "^28.1.3",
+ "jest-get-type": "^28.0.2",
+ "jest-matcher-utils": "^28.1.3",
+ "jest-message-util": "^28.1.3",
+ "jest-util": "^28.1.3"
},
- "peerDependencies": {
- "@washingtonpost/wpds-theme": "^1.18.0",
- "react": "^16.8.6 || ^17.0.2"
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "ui/radio-group": {
- "name": "@washingtonpost/wpds-radio-group",
- "version": "1.17.0",
+ "packages/eslint-plugin/node_modules/jest": {
+ "version": "28.1.3",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@radix-ui/react-radio-group": "^1.0.0",
- "@washingtonpost/wpds-error-message": "1.17.0",
- "@washingtonpost/wpds-fieldset": "1.17.0",
- "@washingtonpost/wpds-input-label": "1.17.0",
- "@washingtonpost/wpds-theme": "1.17.0",
- "nanoid": "^3.3.3"
+ "@jest/core": "^28.1.3",
+ "@jest/types": "^28.1.3",
+ "import-local": "^3.0.2",
+ "jest-cli": "^28.1.3"
},
- "devDependencies": {
- "tsup": "5.11.13",
- "typescript": "4.5.5"
+ "bin": {
+ "jest": "bin/jest.js"
+ },
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
},
"peerDependencies": {
- "@washingtonpost/wpds-error-message": "*",
- "@washingtonpost/wpds-fieldset": "*",
- "@washingtonpost/wpds-input-label": "*",
- "@washingtonpost/wpds-theme": "*",
- "react": "^16.8.6 || ^17.0.2"
+ "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
+ },
+ "peerDependenciesMeta": {
+ "node-notifier": {
+ "optional": true
+ }
}
},
- "ui/radio-group/node_modules/@radix-ui/react-collection": {
- "version": "1.0.1",
+ "packages/eslint-plugin/node_modules/jest-changed-files": {
+ "version": "28.1.3",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-compose-refs": "1.0.0",
- "@radix-ui/react-context": "1.0.0",
- "@radix-ui/react-primitive": "1.0.1",
- "@radix-ui/react-slot": "1.0.1"
+ "execa": "^5.0.0",
+ "p-limit": "^3.1.0"
},
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "ui/radio-group/node_modules/@radix-ui/react-primitive": {
- "version": "1.0.1",
+ "packages/eslint-plugin/node_modules/jest-circus": {
+ "version": "28.1.3",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-slot": "1.0.1"
+ "@jest/environment": "^28.1.3",
+ "@jest/expect": "^28.1.3",
+ "@jest/test-result": "^28.1.3",
+ "@jest/types": "^28.1.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "co": "^4.6.0",
+ "dedent": "^0.7.0",
+ "is-generator-fn": "^2.0.0",
+ "jest-each": "^28.1.3",
+ "jest-matcher-utils": "^28.1.3",
+ "jest-message-util": "^28.1.3",
+ "jest-runtime": "^28.1.3",
+ "jest-snapshot": "^28.1.3",
+ "jest-util": "^28.1.3",
+ "p-limit": "^3.1.0",
+ "pretty-format": "^28.1.3",
+ "slash": "^3.0.0",
+ "stack-utils": "^2.0.3"
},
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "ui/radio-group/node_modules/@radix-ui/react-radio-group": {
- "version": "1.1.0",
+ "packages/eslint-plugin/node_modules/jest-cli": {
+ "version": "28.1.3",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/primitive": "1.0.0",
- "@radix-ui/react-compose-refs": "1.0.0",
- "@radix-ui/react-context": "1.0.0",
- "@radix-ui/react-direction": "1.0.0",
- "@radix-ui/react-presence": "1.0.0",
- "@radix-ui/react-primitive": "1.0.1",
- "@radix-ui/react-roving-focus": "1.0.1",
- "@radix-ui/react-use-controllable-state": "1.0.0",
- "@radix-ui/react-use-previous": "1.0.0",
- "@radix-ui/react-use-size": "1.0.0"
+ "@jest/core": "^28.1.3",
+ "@jest/test-result": "^28.1.3",
+ "@jest/types": "^28.1.3",
+ "chalk": "^4.0.0",
+ "exit": "^0.1.2",
+ "graceful-fs": "^4.2.9",
+ "import-local": "^3.0.2",
+ "jest-config": "^28.1.3",
+ "jest-util": "^28.1.3",
+ "jest-validate": "^28.1.3",
+ "prompts": "^2.0.1",
+ "yargs": "^17.3.1"
+ },
+ "bin": {
+ "jest": "bin/jest.js"
+ },
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
},
"peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
+ "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
+ },
+ "peerDependenciesMeta": {
+ "node-notifier": {
+ "optional": true
+ }
}
},
- "ui/radio-group/node_modules/@radix-ui/react-roving-focus": {
- "version": "1.0.1",
+ "packages/eslint-plugin/node_modules/jest-config": {
+ "version": "28.1.3",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/primitive": "1.0.0",
- "@radix-ui/react-collection": "1.0.1",
- "@radix-ui/react-compose-refs": "1.0.0",
- "@radix-ui/react-context": "1.0.0",
- "@radix-ui/react-direction": "1.0.0",
- "@radix-ui/react-id": "1.0.0",
- "@radix-ui/react-primitive": "1.0.1",
- "@radix-ui/react-use-callback-ref": "1.0.0",
- "@radix-ui/react-use-controllable-state": "1.0.0"
+ "@babel/core": "^7.11.6",
+ "@jest/test-sequencer": "^28.1.3",
+ "@jest/types": "^28.1.3",
+ "babel-jest": "^28.1.3",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "deepmerge": "^4.2.2",
+ "glob": "^7.1.3",
+ "graceful-fs": "^4.2.9",
+ "jest-circus": "^28.1.3",
+ "jest-environment-node": "^28.1.3",
+ "jest-get-type": "^28.0.2",
+ "jest-regex-util": "^28.0.2",
+ "jest-resolve": "^28.1.3",
+ "jest-runner": "^28.1.3",
+ "jest-util": "^28.1.3",
+ "jest-validate": "^28.1.3",
+ "micromatch": "^4.0.4",
+ "parse-json": "^5.2.0",
+ "pretty-format": "^28.1.3",
+ "slash": "^3.0.0",
+ "strip-json-comments": "^3.1.1"
+ },
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
},
"peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
+ "@types/node": "*",
+ "ts-node": ">=9.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/node": {
+ "optional": true
+ },
+ "ts-node": {
+ "optional": true
+ }
}
},
- "ui/radio-group/node_modules/@radix-ui/react-use-size": {
- "version": "1.0.0",
+ "packages/eslint-plugin/node_modules/jest-diff": {
+ "version": "28.1.3",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-use-layout-effect": "1.0.0"
+ "chalk": "^4.0.0",
+ "diff-sequences": "^28.1.1",
+ "jest-get-type": "^28.0.2",
+ "pretty-format": "^28.1.3"
},
- "peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0"
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "ui/scrim": {
- "name": "@washingtonpost/wpds-scrim",
- "version": "1.17.0",
+ "packages/eslint-plugin/node_modules/jest-docblock": {
+ "version": "28.1.1",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@radix-ui/react-dialog": "^1.0.0",
- "@washingtonpost/wpds-theme": "1.17.0",
- "react-transition-group": "^4.4.5"
- },
- "devDependencies": {
- "tsup": "5.11.13",
- "typescript": "4.5.5"
+ "detect-newline": "^3.0.0"
},
- "peerDependencies": {
- "@washingtonpost/wpds-theme": "^0.25.0",
- "react": "^16.8.6 || ^17.0.2"
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "ui/select": {
- "name": "@washingtonpost/wpds-select",
- "version": "1.17.0",
+ "packages/eslint-plugin/node_modules/jest-each": {
+ "version": "28.1.3",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@radix-ui/react-select": "^1.2.2",
- "@radix-ui/react-use-controllable-state": "^1.0.0",
- "@washingtonpost/wpds-assets": "^1.22.0",
- "@washingtonpost/wpds-divider": "1.17.0",
- "@washingtonpost/wpds-icon": "1.17.0",
- "@washingtonpost/wpds-input-label": "1.17.0",
- "@washingtonpost/wpds-input-shared": "1.17.0",
- "@washingtonpost/wpds-theme": "1.17.0",
- "nanoid": "^3.3.4"
+ "@jest/types": "^28.1.3",
+ "chalk": "^4.0.0",
+ "jest-get-type": "^28.0.2",
+ "jest-util": "^28.1.3",
+ "pretty-format": "^28.1.3"
},
- "devDependencies": {
- "tsup": "5.11.13",
- "typescript": "4.5.5"
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ }
+ },
+ "packages/eslint-plugin/node_modules/jest-environment-node": {
+ "version": "28.1.3",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@jest/environment": "^28.1.3",
+ "@jest/fake-timers": "^28.1.3",
+ "@jest/types": "^28.1.3",
+ "@types/node": "*",
+ "jest-mock": "^28.1.3",
+ "jest-util": "^28.1.3"
},
- "peerDependencies": {
- "@radix-ui/react-select": "^1.2.2",
- "@radix-ui/react-use-controllable-state": "^1.0.0",
- "@washingtonpost/wpds-assets": "^1.22.0",
- "@washingtonpost/wpds-divider": "*",
- "@washingtonpost/wpds-icon": "*",
- "@washingtonpost/wpds-input-label": "*",
- "@washingtonpost/wpds-input-shared": "*",
- "@washingtonpost/wpds-theme": "*",
- "react": "^16.8.6 || ^17.0.2"
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ }
+ },
+ "packages/eslint-plugin/node_modules/jest-get-type": {
+ "version": "28.0.2",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "ui/select/node_modules/@radix-ui/react-use-controllable-state": {
- "version": "1.0.1",
+ "packages/eslint-plugin/node_modules/jest-haste-map": {
+ "version": "28.1.3",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-use-callback-ref": "1.0.1"
+ "@jest/types": "^28.1.3",
+ "@types/graceful-fs": "^4.1.3",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "graceful-fs": "^4.2.9",
+ "jest-regex-util": "^28.0.2",
+ "jest-util": "^28.1.3",
+ "jest-worker": "^28.1.3",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.8"
},
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
},
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
+ "optionalDependencies": {
+ "fsevents": "^2.3.2"
}
},
- "ui/switch": {
- "name": "@washingtonpost/wpds-switch",
- "version": "1.17.0",
+ "packages/eslint-plugin/node_modules/jest-leak-detector": {
+ "version": "28.1.3",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@radix-ui/react-switch": "^1.0.1",
- "@washingtonpost/wpds-theme": "1.17.0"
- },
- "devDependencies": {
- "tsup": "5.11.13",
- "typescript": "4.5.5"
+ "jest-get-type": "^28.0.2",
+ "pretty-format": "^28.1.3"
},
- "peerDependencies": {
- "@washingtonpost/wpds-theme": "*",
- "react": "^16.8.6 || ^17.0.2"
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "ui/tabs": {
- "name": "@washingtonpost/wpds-tabs",
- "version": "1.17.0",
+ "packages/eslint-plugin/node_modules/jest-matcher-utils": {
+ "version": "28.1.3",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@radix-ui/react-primitive": "^1.0.2",
- "@radix-ui/react-tabs": "latest",
- "@washingtonpost/wpds-assets": "^1.22.0",
- "@washingtonpost/wpds-icon": "1.1.0",
- "@washingtonpost/wpds-theme": "1.17.0",
- "@washingtonpost/wpds-tooltip": "1.17.0",
- "react-transition-group": "^4.4.5"
- },
- "devDependencies": {
- "tsup": "^5.11.13",
- "typescript": "4.5.5"
+ "chalk": "^4.0.0",
+ "jest-diff": "^28.1.3",
+ "jest-get-type": "^28.0.2",
+ "pretty-format": "^28.1.3"
},
- "peerDependencies": {
- "@radix-ui/react-tabs": "latest",
- "@washingtonpost/wpds-theme": "*",
- "@washingtonpost/wpds-tooltip": "*",
- "react": "^16.8.6 || ^17.0.2",
- "react-transition-group": "^4.4.5"
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "ui/tabs/node_modules/@radix-ui/react-compose-refs": {
- "version": "1.0.1",
+ "packages/eslint-plugin/node_modules/jest-message-util": {
+ "version": "28.1.3",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.13.10"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
+ "@babel/code-frame": "^7.12.13",
+ "@jest/types": "^28.1.3",
+ "@types/stack-utils": "^2.0.0",
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.9",
+ "micromatch": "^4.0.4",
+ "pretty-format": "^28.1.3",
+ "slash": "^3.0.0",
+ "stack-utils": "^2.0.3"
},
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "ui/tabs/node_modules/@radix-ui/react-primitive": {
- "version": "1.0.3",
+ "packages/eslint-plugin/node_modules/jest-mock": {
+ "version": "28.1.3",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-slot": "1.0.2"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
+ "@jest/types": "^28.1.3",
+ "@types/node": "*"
},
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "ui/tabs/node_modules/@radix-ui/react-slot": {
- "version": "1.0.2",
+ "packages/eslint-plugin/node_modules/jest-regex-util": {
+ "version": "28.0.2",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ }
+ },
+ "packages/eslint-plugin/node_modules/jest-resolve": {
+ "version": "28.1.3",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-compose-refs": "1.0.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.9",
+ "jest-haste-map": "^28.1.3",
+ "jest-pnp-resolver": "^1.2.2",
+ "jest-util": "^28.1.3",
+ "jest-validate": "^28.1.3",
+ "resolve": "^1.20.0",
+ "resolve.exports": "^1.1.0",
+ "slash": "^3.0.0"
},
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "ui/tabs/node_modules/@washingtonpost/wpds-icon": {
- "version": "1.1.0",
+ "packages/eslint-plugin/node_modules/jest-resolve-dependencies": {
+ "version": "28.1.3",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@washingtonpost/wpds-theme": "1.1.0",
- "@washingtonpost/wpds-visually-hidden": "1.1.0",
- "react": "^16.8.6 || ^17.0.2"
+ "jest-regex-util": "^28.0.2",
+ "jest-snapshot": "^28.1.3"
},
- "peerDependencies": {
- "@washingtonpost/wpds-theme": "*",
- "@washingtonpost/wpds-visually-hidden": "*",
- "react": "^16.8.6 || ^17.0.2"
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "ui/tabs/node_modules/@washingtonpost/wpds-icon/node_modules/@washingtonpost/wpds-theme": {
- "version": "1.1.0",
+ "packages/eslint-plugin/node_modules/jest-runner": {
+ "version": "28.1.3",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@stitches/react": "^1.2.8"
+ "@jest/console": "^28.1.3",
+ "@jest/environment": "^28.1.3",
+ "@jest/test-result": "^28.1.3",
+ "@jest/transform": "^28.1.3",
+ "@jest/types": "^28.1.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "emittery": "^0.10.2",
+ "graceful-fs": "^4.2.9",
+ "jest-docblock": "^28.1.1",
+ "jest-environment-node": "^28.1.3",
+ "jest-haste-map": "^28.1.3",
+ "jest-leak-detector": "^28.1.3",
+ "jest-message-util": "^28.1.3",
+ "jest-resolve": "^28.1.3",
+ "jest-runtime": "^28.1.3",
+ "jest-util": "^28.1.3",
+ "jest-watcher": "^28.1.3",
+ "jest-worker": "^28.1.3",
+ "p-limit": "^3.1.0",
+ "source-map-support": "0.5.13"
+ },
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "ui/tabs/node_modules/@washingtonpost/wpds-visually-hidden": {
- "version": "1.1.0",
+ "packages/eslint-plugin/node_modules/jest-runtime": {
+ "version": "28.1.3",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@washingtonpost/wpds-theme": "1.1.0",
- "react": "^16.8.6 || ^17.0.2"
+ "@jest/environment": "^28.1.3",
+ "@jest/fake-timers": "^28.1.3",
+ "@jest/globals": "^28.1.3",
+ "@jest/source-map": "^28.1.2",
+ "@jest/test-result": "^28.1.3",
+ "@jest/transform": "^28.1.3",
+ "@jest/types": "^28.1.3",
+ "chalk": "^4.0.0",
+ "cjs-module-lexer": "^1.0.0",
+ "collect-v8-coverage": "^1.0.0",
+ "execa": "^5.0.0",
+ "glob": "^7.1.3",
+ "graceful-fs": "^4.2.9",
+ "jest-haste-map": "^28.1.3",
+ "jest-message-util": "^28.1.3",
+ "jest-mock": "^28.1.3",
+ "jest-regex-util": "^28.0.2",
+ "jest-resolve": "^28.1.3",
+ "jest-snapshot": "^28.1.3",
+ "jest-util": "^28.1.3",
+ "slash": "^3.0.0",
+ "strip-bom": "^4.0.0"
},
- "peerDependencies": {
- "@washingtonpost/wpds-theme": "*",
- "react": "^16.8.6 || ^17.0.2"
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "ui/tabs/node_modules/@washingtonpost/wpds-visually-hidden/node_modules/@washingtonpost/wpds-theme": {
- "version": "1.1.0",
+ "packages/eslint-plugin/node_modules/jest-snapshot": {
+ "version": "28.1.3",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@stitches/react": "^1.2.8"
+ "@babel/core": "^7.11.6",
+ "@babel/generator": "^7.7.2",
+ "@babel/plugin-syntax-typescript": "^7.7.2",
+ "@babel/traverse": "^7.7.2",
+ "@babel/types": "^7.3.3",
+ "@jest/expect-utils": "^28.1.3",
+ "@jest/transform": "^28.1.3",
+ "@jest/types": "^28.1.3",
+ "@types/babel__traverse": "^7.0.6",
+ "@types/prettier": "^2.1.5",
+ "babel-preset-current-node-syntax": "^1.0.0",
+ "chalk": "^4.0.0",
+ "expect": "^28.1.3",
+ "graceful-fs": "^4.2.9",
+ "jest-diff": "^28.1.3",
+ "jest-get-type": "^28.0.2",
+ "jest-haste-map": "^28.1.3",
+ "jest-matcher-utils": "^28.1.3",
+ "jest-message-util": "^28.1.3",
+ "jest-util": "^28.1.3",
+ "natural-compare": "^1.4.0",
+ "pretty-format": "^28.1.3",
+ "semver": "^7.3.5"
+ },
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "ui/tailwind-theme": {
- "name": "@washingtonpost/wpds-tailwind-theme",
- "version": "1.17.0",
+ "packages/eslint-plugin/node_modules/jest-util": {
+ "version": "28.1.3",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@washingtonpost/wpds-theme": "1.17.0"
- },
- "devDependencies": {
- "autoprefixer": "^10.4.14",
- "postcss": "^8.4.24",
- "tailwindcss": "^3.3.2",
- "vite": "^4.3.9"
+ "@jest/types": "^28.1.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.9",
+ "picomatch": "^2.2.3"
},
- "peerDependencies": {
- "@washingtonpost/wpds-theme": "*"
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "ui/tailwind-theme/node_modules/@esbuild/darwin-x64": {
- "version": "0.17.19",
- "cpu": [
- "x64"
- ],
+ "packages/eslint-plugin/node_modules/jest-validate": {
+ "version": "28.1.3",
"dev": true,
"license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
+ "dependencies": {
+ "@jest/types": "^28.1.3",
+ "camelcase": "^6.2.0",
+ "chalk": "^4.0.0",
+ "jest-get-type": "^28.0.2",
+ "leven": "^3.1.0",
+ "pretty-format": "^28.1.3"
+ },
"engines": {
- "node": ">=12"
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "ui/tailwind-theme/node_modules/@esbuild/linux-loong64": {
- "version": "0.17.19",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.19.tgz",
- "integrity": "sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==",
- "cpu": [
- "loong64"
- ],
+ "packages/eslint-plugin/node_modules/jest-watcher": {
+ "version": "28.1.3",
"dev": true,
- "optional": true,
- "os": [
- "linux"
- ],
+ "license": "MIT",
+ "dependencies": {
+ "@jest/test-result": "^28.1.3",
+ "@jest/types": "^28.1.3",
+ "@types/node": "*",
+ "ansi-escapes": "^4.2.1",
+ "chalk": "^4.0.0",
+ "emittery": "^0.10.2",
+ "jest-util": "^28.1.3",
+ "string-length": "^4.0.1"
+ },
"engines": {
- "node": ">=12"
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "ui/tailwind-theme/node_modules/autoprefixer": {
- "version": "10.4.14",
+ "packages/eslint-plugin/node_modules/jest-worker": {
+ "version": "28.1.3",
"dev": true,
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/autoprefixer"
- }
- ],
"license": "MIT",
"dependencies": {
- "browserslist": "^4.21.5",
- "caniuse-lite": "^1.0.30001464",
- "fraction.js": "^4.2.0",
- "normalize-range": "^0.1.2",
- "picocolors": "^1.0.0",
- "postcss-value-parser": "^4.2.0"
- },
- "bin": {
- "autoprefixer": "bin/autoprefixer"
+ "@types/node": "*",
+ "merge-stream": "^2.0.0",
+ "supports-color": "^8.0.0"
},
"engines": {
- "node": "^10 || ^12 || >=14"
- },
- "peerDependencies": {
- "postcss": "^8.1.0"
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "ui/tailwind-theme/node_modules/caniuse-lite": {
- "version": "1.0.30001495",
+ "packages/eslint-plugin/node_modules/lru-cache": {
+ "version": "6.0.0",
"dev": true,
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "license": "CC-BY-4.0"
+ "license": "ISC",
+ "dependencies": {
+ "yallist": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
},
- "ui/tailwind-theme/node_modules/esbuild": {
- "version": "0.17.19",
+ "packages/eslint-plugin/node_modules/pretty-format": {
+ "version": "28.1.3",
"dev": true,
- "hasInstallScript": true,
"license": "MIT",
- "bin": {
- "esbuild": "bin/esbuild"
+ "dependencies": {
+ "@jest/schemas": "^28.1.3",
+ "ansi-regex": "^5.0.1",
+ "ansi-styles": "^5.0.0",
+ "react-is": "^18.0.0"
},
"engines": {
- "node": ">=12"
- },
- "optionalDependencies": {
- "@esbuild/android-arm": "0.17.19",
- "@esbuild/android-arm64": "0.17.19",
- "@esbuild/android-x64": "0.17.19",
- "@esbuild/darwin-arm64": "0.17.19",
- "@esbuild/darwin-x64": "0.17.19",
- "@esbuild/freebsd-arm64": "0.17.19",
- "@esbuild/freebsd-x64": "0.17.19",
- "@esbuild/linux-arm": "0.17.19",
- "@esbuild/linux-arm64": "0.17.19",
- "@esbuild/linux-ia32": "0.17.19",
- "@esbuild/linux-loong64": "0.17.19",
- "@esbuild/linux-mips64el": "0.17.19",
- "@esbuild/linux-ppc64": "0.17.19",
- "@esbuild/linux-riscv64": "0.17.19",
- "@esbuild/linux-s390x": "0.17.19",
- "@esbuild/linux-x64": "0.17.19",
- "@esbuild/netbsd-x64": "0.17.19",
- "@esbuild/openbsd-x64": "0.17.19",
- "@esbuild/sunos-x64": "0.17.19",
- "@esbuild/win32-arm64": "0.17.19",
- "@esbuild/win32-ia32": "0.17.19",
- "@esbuild/win32-x64": "0.17.19"
- }
- },
- "ui/tailwind-theme/node_modules/picocolors": {
- "version": "1.0.0",
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+ }
+ },
+ "packages/eslint-plugin/node_modules/react-is": {
+ "version": "18.2.0",
"dev": true,
- "license": "ISC"
+ "license": "MIT"
},
- "ui/tailwind-theme/node_modules/postcss": {
- "version": "8.4.24",
+ "packages/eslint-plugin/node_modules/resolve.exports": {
+ "version": "1.1.1",
"dev": true,
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/postcss"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
"license": "MIT",
- "dependencies": {
- "nanoid": "^3.3.6",
- "picocolors": "^1.0.0",
- "source-map-js": "^1.0.2"
- },
"engines": {
- "node": "^10 || ^12 || >=14"
+ "node": ">=10"
}
},
- "ui/tailwind-theme/node_modules/rollup": {
- "version": "3.24.0",
+ "packages/eslint-plugin/node_modules/semver": {
+ "version": "7.6.0",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
+ "dependencies": {
+ "lru-cache": "^6.0.0"
+ },
"bin": {
- "rollup": "dist/bin/rollup"
+ "semver": "bin/semver.js"
},
"engines": {
- "node": ">=14.18.0",
- "npm": ">=8.0.0"
- },
- "optionalDependencies": {
- "fsevents": "~2.3.2"
+ "node": ">=10"
}
},
- "ui/tailwind-theme/node_modules/vite": {
- "version": "4.3.9",
+ "packages/eslint-plugin/node_modules/supports-color": {
+ "version": "8.1.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "esbuild": "^0.17.5",
- "postcss": "^8.4.23",
- "rollup": "^3.21.0"
- },
- "bin": {
- "vite": "bin/vite.js"
+ "has-flag": "^4.0.0"
},
"engines": {
- "node": "^14.18.0 || >=16.0.0"
- },
- "optionalDependencies": {
- "fsevents": "~2.3.2"
- },
- "peerDependencies": {
- "@types/node": ">= 14",
- "less": "*",
- "sass": "*",
- "stylus": "*",
- "sugarss": "*",
- "terser": "^5.4.0"
+ "node": ">=10"
},
- "peerDependenciesMeta": {
- "@types/node": {
- "optional": true
- },
- "less": {
- "optional": true
- },
- "sass": {
- "optional": true
- },
- "stylus": {
- "optional": true
- },
- "sugarss": {
- "optional": true
- },
- "terser": {
- "optional": true
- }
+ "funding": {
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
}
},
- "ui/theme": {
- "name": "@washingtonpost/wpds-theme",
- "version": "1.17.0",
+ "packages/eslint-plugin/node_modules/yallist": {
+ "version": "4.0.0",
+ "dev": true,
+ "license": "ISC"
+ },
+ "packages/kit": {
+ "name": "@washingtonpost/wpds-ui-kit",
+ "version": "2.0.0",
"license": "MIT",
"dependencies": {
- "@stitches/react": "^1.2.8"
+ "@radix-ui/react-accordion": "^1.1.2",
+ "@radix-ui/react-avatar": "latest",
+ "@radix-ui/react-checkbox": "^1.0.0",
+ "@radix-ui/react-dialog": "^1.0.5",
+ "@radix-ui/react-dropdown-menu": "2.0.3",
+ "@radix-ui/react-focus-scope": "^1.0.0",
+ "@radix-ui/react-label": "^1.0.0",
+ "@radix-ui/react-popover": "^1.0.2",
+ "@radix-ui/react-primitive": "^1.0.2",
+ "@radix-ui/react-radio-group": "^1.0.0",
+ "@radix-ui/react-select": "^1.2.2",
+ "@radix-ui/react-separator": "^1.0.0",
+ "@radix-ui/react-slot": "^1.0.0",
+ "@radix-ui/react-tabs": "latest",
+ "@radix-ui/react-tooltip": "^1.0.0",
+ "@radix-ui/react-use-controllable-state": "^1.0.1",
+ "@reach/combobox": "^0.18.0",
+ "@reach/popover": "^0.18.0",
+ "@stitches/react": "^1.2.8",
+ "@washingtonpost/wpds-assets": "2.0.0",
+ "match-sorter": "6.3.1",
+ "nanoid": "^3.3.4",
+ "react": "^18.2.0",
+ "react-swipeable": "^7.0.0",
+ "react-transition-group": "^4.4.5"
},
"devDependencies": {
"tsup": "5.11.13",
"typescript": "4.5.5"
+ },
+ "peerDependencies": {
+ "react": "^18.2.0",
+ "react-dom": "^18.2.0"
}
},
- "ui/tokens": {
- "name": "@washingtonpost/wpds-tokens",
- "version": "1.17.0",
- "license": "MIT",
- "devDependencies": {
- "@washingtonpost/wpds-theme": "latest",
- "react": "^17.0.2",
- "react-dom": "^17.0.2"
- }
- },
- "ui/tokens/node_modules/@washingtonpost/wpds-theme": {
- "version": "1.14.0",
- "resolved": "https://registry.npmjs.org/@washingtonpost/wpds-theme/-/wpds-theme-1.14.0.tgz",
- "integrity": "sha512-i3e8Hm72Cg7cYpEj1vpZUmjf+pKuCT8E63Itjmhd274GnoG5XnxJsXXlujk6NXTSTLYENU7PVCXkZFmGTx2JjA==",
- "dev": true,
- "dependencies": {
- "@stitches/react": "^1.2.8"
- }
- },
- "ui/tooltip": {
- "name": "@washingtonpost/wpds-tooltip",
- "version": "1.17.0",
+ "packages/kitchen-sink": {
+ "name": "@washingtonpost/wpds-kitchen-sink",
+ "version": "2.0.0",
"license": "MIT",
"dependencies": {
- "@radix-ui/react-tooltip": "^1.0.0",
- "@washingtonpost/wpds-theme": "1.17.0"
+ "@washingtonpost/wpds-assets": "2.0.0",
+ "@washingtonpost/wpds-ui-kit": "2.0.0",
+ "nanoid": "^3.3.4"
},
"devDependencies": {
"tsup": "5.11.13",
"typescript": "4.5.5"
},
"peerDependencies": {
- "@radix-ui/react-tooltip": "^1.0.0",
- "@washingtonpost/wpds-theme": "*",
- "react": "^16.8.6 || ^17.0.2"
+ "@washingtonpost/wpds-assets": "2.0.0",
+ "@washingtonpost/wpds-ui-kit": "2.0.0-alpha.10",
+ "react": "^18.2.0"
}
},
- "ui/visually-hidden": {
- "name": "@washingtonpost/wpds-visually-hidden",
- "version": "1.17.0",
+ "packages/tailwind-theme": {
+ "name": "@washingtonpost/wpds-tailwind-theme",
+ "version": "2.0.0",
"license": "MIT",
"dependencies": {
- "@washingtonpost/wpds-theme": "1.17.0",
- "react": "^16.8.6 || ^17.0.2"
+ "@washingtonpost/wpds-ui-kit": "2.0.0"
},
"devDependencies": {
- "tsup": "5.11.13",
- "typescript": "4.5.5"
+ "autoprefixer": "^10.4.14",
+ "postcss": "^8.4.24",
+ "tailwindcss": "^3.3.2",
+ "vite": "^4.3.9"
},
"peerDependencies": {
- "@washingtonpost/wpds-theme": "*",
- "react": "^16.8.6 || ^17.0.2"
+ "@washingtonpost/wpds-ui-kit": "2.0.0-alpha.10"
+ }
+ },
+ "packages/tokens": {
+ "name": "@washingtonpost/wpds-tokens",
+ "version": "2.0.0",
+ "license": "MIT",
+ "devDependencies": {
+ "@washingtonpost/wpds-ui-kit": "2.0.0",
+ "react": "^18.2.0",
+ "react-dom": "^18.2.0"
}
}
}
diff --git a/package.json b/package.json
index 33ffc30fb..ab37d0e98 100644
--- a/package.json
+++ b/package.json
@@ -7,27 +7,26 @@
"@babel/plugin-transform-typescript": "^7.16.1",
"@babel/preset-react": "^7.14.5",
"@babel/template": "^7.15.4",
- "@playwright/test": "^1.28.0",
- "@storybook/addon-a11y": "^6.5.16",
- "@storybook/addon-actions": "^6.5.16",
- "@storybook/addon-essentials": "^6.5.16",
- "@storybook/addon-interactions": "^6.5.16",
- "@storybook/addon-links": "^6.5.16",
- "@storybook/builder-webpack5": "^6.5.16",
- "@storybook/jest": "^0.0.10",
- "@storybook/manager-webpack5": "^6.5.16",
- "@storybook/react": "^6.5.16",
- "@storybook/test-runner": "^0.9.4",
- "@storybook/testing-library": "^0.0.13",
- "@testing-library/dom": "^8.9.1",
- "@testing-library/jest-dom": "^5.14.1",
- "@testing-library/react": "^12.1.5",
- "@testing-library/react-hooks": "^8.0.1",
- "@testing-library/user-event": "^13.5.0",
- "@types/jest": "^28.1.8",
- "@types/node": "^17.0.21",
- "@types/react": "^17.0.39",
- "@types/react-dom": "^17.0.11",
+ "@playwright/test": "^1.40.1",
+ "@storybook/addon-a11y": "^7.6.3",
+ "@storybook/addon-actions": "^7.6.3",
+ "@storybook/addon-essentials": "^7.6.3",
+ "@storybook/addon-interactions": "^7.6.3",
+ "@storybook/addon-links": "^7.6.3",
+ "@storybook/jest": "^0.2.3",
+ "@storybook/nextjs": "^7.6.3",
+ "@storybook/react": "^7.6.3",
+ "@storybook/test-runner": "^0.16.0",
+ "@storybook/testing-library": "^0.2.2",
+ "@testing-library/dom": "latest",
+ "@testing-library/jest-dom": "latest",
+ "@testing-library/react": "latest",
+ "@testing-library/react-hooks": "latest",
+ "@testing-library/user-event": "latest",
+ "@types/jest": "^29.5.11",
+ "@types/node": "^18.19.24",
+ "@types/react": "18.2.39",
+ "@types/react-dom": "18.2.17",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"@washingtonpost/eslint-plugin-wpds": "*",
@@ -45,25 +44,26 @@
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-jest-dom": "^3.9.2",
"eslint-plugin-react": "^7.28.0",
- "eslint-plugin-storybook": "^0.6.11",
+ "eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-testing-library": "^5.0.3",
"eslint-plugin-use-encapsulation": "^1.0.0",
"husky": "^7.0.0",
- "jest": "^28.1.3",
- "jest-environment-jsdom": "^28.1.3",
+ "jest": "latest",
+ "jest-environment-jsdom": "^29.7.0",
"lerna": "^5.1.2",
- "next": "^12.3.4",
+ "next": "14.0.3",
"nx": "^14.3.2",
+ "playwright": "^1.40.1",
"plop": "^3.0.5",
"prettier": "^2.5.1",
- "react": "^17.0.2",
+ "react": "^18.2.0",
"react-docgen-typescript": "^2.2.2",
- "react-dom": "^17.0.2",
- "storybook-addon-themes": "^6.1.0",
- "storybook-dark-mode": "^2.1.1",
- "ts-jest": "^28.0.8",
+ "react-dom": "^18.2.0",
+ "storybook": "^7.6.3",
+ "storybook-dark-mode": "^3.0.3",
+ "ts-jest": "^29.1.1",
"tsup": "5.11.13",
- "turbo": "^1.10.14",
+ "turbo": "^1.11.1",
"typescript": "4.5.5",
"webpack": "^5.88.2"
},
@@ -88,21 +88,21 @@
"esbuild-windows-32": "0.14.25",
"esbuild-windows-64": "0.14.25",
"esbuild-windows-arm64": "0.14.25",
- "turbo-darwin-64": "1.10.14",
- "turbo-darwin-arm64": "1.10.14",
- "turbo-linux-64": "1.10.14",
- "turbo-linux-arm64": "1.10.14",
- "turbo-windows-64": "1.10.14",
- "turbo-windows-arm64": "1.10.14"
+ "turbo-darwin-64": "1.11.1",
+ "turbo-darwin-arm64": "1.11.1",
+ "turbo-linux-64": "1.11.1",
+ "turbo-linux-arm64": "1.11.1",
+ "turbo-windows-64": "1.11.1",
+ "turbo-windows-arm64": "1.11.1"
},
"workspaces": [
- "./ui/*",
"./build.washingtonpost.com",
- "./apps/*"
+ "./apps/*",
+ "./packages/*"
],
"dependencies": {
"@babel/standalone": "^7.17.11",
- "@washingtonpost/wpds-assets": "^1.22.0",
+ "@washingtonpost/wpds-assets": "2.0.0",
"typescript": "4.5.5"
},
"scripts": {
@@ -110,9 +110,9 @@
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md}\"",
"build": "turbo run build",
- "storybook": "start-storybook -p 6006 --quiet --ci",
+ "storybook": "storybook dev -p 6006 --quiet --ci",
"test-storybook": "test-storybook",
- "build-storybook": "npm run turbo:build;build-storybook --force-build-preview --quiet",
+ "build-storybook": "npm run turbo:build;storybook build --force-build-preview --quiet",
"turbo:build": "turbo run build",
"turbo:build:force": "turbo run build --force",
"turbo:build:ui:force": "turbo run build --force --filter={./ui/*}... --filter=!@washingtonpost/wpds-kitchen-sink",
@@ -124,18 +124,18 @@
"experimental-publish": "make experimental-publish",
"new-component": "make new-component",
"new-component-with-subcomponents": "make new-component-with-subcomponents",
- "lint": "eslint --fix --ext .ts,.tsx ui/",
- "lint:check": "eslint --ext .ts,.tsx ui/",
+ "lint": "eslint --fix --ext .ts,.tsx packages/kit",
+ "lint:check": "eslint --ext .ts,.tsx packages/kit",
"clean": "turbo run clean && rm -rf node_modules",
"dev": "turbo run dev --concurrency=42",
- "start": "turbo run start"
+ "start": "turbo run start",
+ "playwright": "playwright test"
},
"prettier": {},
+ "packageManager": "npm@10.2.4",
"overrides": {
"react-docgen-typescript": "^2.2.2",
- "react": "^17.0.2",
- "react-dom": "^17.0.2",
- "@washingtonpost/wpds-assets": "^1.22.0"
- },
- "packageManager": "npm@9.6.7"
+ "react": "^18.2.0",
+ "react-dom": "^18.2.0"
+ }
}
diff --git a/ui/eslint-plugin/CHANGELOG.md b/packages/eslint-plugin/CHANGELOG.md
similarity index 55%
rename from ui/eslint-plugin/CHANGELOG.md
rename to packages/eslint-plugin/CHANGELOG.md
index 027bd9e57..f14b0b2a2 100644
--- a/ui/eslint-plugin/CHANGELOG.md
+++ b/packages/eslint-plugin/CHANGELOG.md
@@ -3,6 +3,148 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [2.0.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.24.0...v2.0.0) (2024-04-24)
+
+### Features
+
+- v2.0.0 ([#542](https://github.com/washingtonpost/wpds-ui-kit/issues/542)) ([d429cfa](https://github.com/washingtonpost/wpds-ui-kit/commit/d429cfabb7489a2548ffad5c3d945145824d4a22)), closes [#544](https://github.com/washingtonpost/wpds-ui-kit/issues/544) [#552](https://github.com/washingtonpost/wpds-ui-kit/issues/552) [#555](https://github.com/washingtonpost/wpds-ui-kit/issues/555) [#560](https://github.com/washingtonpost/wpds-ui-kit/issues/560) [#562](https://github.com/washingtonpost/wpds-ui-kit/issues/562) [#564](https://github.com/washingtonpost/wpds-ui-kit/issues/564) [#565](https://github.com/washingtonpost/wpds-ui-kit/issues/565) [#574](https://github.com/washingtonpost/wpds-ui-kit/issues/574) [#570](https://github.com/washingtonpost/wpds-ui-kit/issues/570) [#579](https://github.com/washingtonpost/wpds-ui-kit/issues/579) [#578](https://github.com/washingtonpost/wpds-ui-kit/issues/578) [#580](https://github.com/washingtonpost/wpds-ui-kit/issues/580) [#579](https://github.com/washingtonpost/wpds-ui-kit/issues/579)
+
+# [2.0.0-alpha.12](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.11...v2.0.0-alpha.12) (2024-04-10)
+
+**Note:** Version bump only for package @washingtonpost/eslint-plugin-wpds
+
+# [2.0.0-alpha.11](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.10...v2.0.0-alpha.11) (2024-04-09)
+
+**Note:** Version bump only for package @washingtonpost/eslint-plugin-wpds
+
+# [2.0.0-alpha.10](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.7...v2.0.0-alpha.10) (2024-04-09)
+
+**Note:** Version bump only for package @washingtonpost/eslint-plugin-wpds
+
+# [2.0.0-alpha.9](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.7...v2.0.0-alpha.9) (2024-04-09)
+
+**Note:** Version bump only for package @washingtonpost/eslint-plugin-wpds
+
+# [2.0.0-alpha.8](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.7...v2.0.0-alpha.8) (2024-04-04)
+
+**Note:** Version bump only for package @washingtonpost/eslint-plugin-wpds
+
+# [2.0.0-alpha.7](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.6...v2.0.0-alpha.7) (2024-04-02)
+
+# [2.0.0-alpha.2](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.1...v2.0.0-alpha.2) (2024-03-14)
+
+# [2.0.0-alpha.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.0...v2.0.0-alpha.1) (2024-03-14)
+
+# [2.0.0-alpha.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.1.0-experimental.0...v2.0.0-alpha.0) (2024-03-14)
+
+# [2.1.0-experimental.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.0...v2.1.0-experimental.0) (2024-03-13)
+
+### Bug Fixes
+
+- merging main and resolving conflicts ([#585](https://github.com/washingtonpost/wpds-ui-kit/issues/585)) ([253effe](https://github.com/washingtonpost/wpds-ui-kit/commit/253effebcc310c6ceee9efbed2e346d7b3132691))
+
+### Features
+
+- v2 mass components upgrade/migration ([#578](https://github.com/washingtonpost/wpds-ui-kit/issues/578)) ([5e0394b](https://github.com/washingtonpost/wpds-ui-kit/commit/5e0394b4e6747bfd9fee1dc0bcd82d1dcb6cd9b6)), closes [#580](https://github.com/washingtonpost/wpds-ui-kit/issues/580) [#579](https://github.com/washingtonpost/wpds-ui-kit/issues/579)
+
+# [2.0.0-alpha.6](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.5...v2.0.0-alpha.6) (2024-03-15)
+
+**Note:** Version bump only for package @washingtonpost/eslint-plugin-wpds
+
+# [2.0.0-alpha.5](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.4...v2.0.0-alpha.5) (2024-03-15)
+
+**Note:** Version bump only for package @washingtonpost/eslint-plugin-wpds
+
+# [2.0.0-alpha.4](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.3...v2.0.0-alpha.4) (2024-03-15)
+
+**Note:** Version bump only for package @washingtonpost/eslint-plugin-wpds
+
+# [2.0.0-alpha.3](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.6...v2.0.0-alpha.3) (2024-03-14)
+
+# [2.0.0-alpha.2](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.1...v2.0.0-alpha.2) (2024-03-14)
+
+# [2.0.0-alpha.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.0...v2.0.0-alpha.1) (2024-03-14)
+
+# [2.0.0-alpha.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.1.0-experimental.1...v2.0.0-alpha.0) (2024-03-14)
+
+# [2.1.0-experimental.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.0...v2.1.0-experimental.0) (2024-03-13)
+
+### Bug Fixes
+
+- merging main and resolving conflicts ([#585](https://github.com/washingtonpost/wpds-ui-kit/issues/585)) ([253effe](https://github.com/washingtonpost/wpds-ui-kit/commit/253effebcc310c6ceee9efbed2e346d7b3132691))
+
+### Features
+
+- v2 mass components upgrade/migration ([#578](https://github.com/washingtonpost/wpds-ui-kit/issues/578)) ([5e0394b](https://github.com/washingtonpost/wpds-ui-kit/commit/5e0394b4e6747bfd9fee1dc0bcd82d1dcb6cd9b6)), closes [#580](https://github.com/washingtonpost/wpds-ui-kit/issues/580) [#579](https://github.com/washingtonpost/wpds-ui-kit/issues/579)
+
+# [2.0.0-alpha.2](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.1...v2.0.0-alpha.2) (2024-03-14)
+
+**Note:** Version bump only for package @washingtonpost/eslint-plugin-wpds
+
+# [2.0.0-alpha.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.0...v2.0.0-alpha.1) (2024-03-14)
+
+**Note:** Version bump only for package @washingtonpost/eslint-plugin-wpds
+
+# [2.0.0-alpha.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.1.0-experimental.0...v2.0.0-alpha.0) (2024-03-14)
+
+# [1.24.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.23.1...v1.24.0) (2024-04-09)
+
+**Note:** Version bump only for package @washingtonpost/eslint-plugin-wpds
+
+## [1.23.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.23.0...v1.23.1) (2024-03-26)
+
+**Note:** Version bump only for package @washingtonpost/eslint-plugin-wpds
+
+# [1.23.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.6...v1.23.0) (2024-03-25)
+
+**Note:** Version bump only for package @washingtonpost/eslint-plugin-wpds
+
+## [1.22.6](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.5...v1.22.6) (2024-03-14)
+
+**Note:** Version bump only for package @washingtonpost/eslint-plugin-wpds
+
+## [1.22.5](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.4...v1.22.5) (2024-03-14)
+
+**Note:** Version bump only for package @washingtonpost/eslint-plugin-wpds
+
+## [1.22.4](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.3...v1.22.4) (2024-03-14)
+
+**Note:** Version bump only for package @washingtonpost/eslint-plugin-wpds
+
+## [1.22.3](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.2...v1.22.3) (2024-03-14)
+
+**Note:** Version bump only for package @washingtonpost/eslint-plugin-wpds
+
+## [1.22.2](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.1...v1.22.2) (2024-03-14)
+
+**Note:** Version bump only for package @washingtonpost/eslint-plugin-wpds
+
+## [1.22.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.0...v1.22.1) (2024-03-14)
+
+### Bug Fixes
+
+- Fixed onSurface to have the correct camel casing ([#571](https://github.com/washingtonpost/wpds-ui-kit/issues/571)) ([9daca60](https://github.com/washingtonpost/wpds-ui-kit/commit/9daca60f9c562aa2d697c8389d44d2ef491f1494))
+
+# [1.22.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.21.0...v1.22.0) (2024-02-15)
+
+**Note:** Version bump only for package @washingtonpost/eslint-plugin-wpds
+
+# [1.21.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.20.0...v1.21.0) (2024-02-07)
+
+**Note:** Version bump only for package @washingtonpost/eslint-plugin-wpds
+
+# [1.20.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.19.0...v1.20.0) (2024-01-24)
+
+**Note:** Version bump only for package @washingtonpost/eslint-plugin-wpds
+
+# [1.19.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.18.0...v1.19.0) (2024-01-10)
+
+**Note:** Version bump only for package @washingtonpost/eslint-plugin-wpds
+
+# [1.18.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.17.0...v1.18.0) (2023-12-13)
+
+**Note:** Version bump only for package @washingtonpost/eslint-plugin-wpds
+
# [1.17.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.16.2...v1.17.0) (2023-11-30)
**Note:** Version bump only for package @washingtonpost/eslint-plugin-wpds
diff --git a/ui/eslint-plugin/README.md b/packages/eslint-plugin/README.md
similarity index 100%
rename from ui/eslint-plugin/README.md
rename to packages/eslint-plugin/README.md
diff --git a/ui/eslint-plugin/package.json b/packages/eslint-plugin/package.json
similarity index 80%
rename from ui/eslint-plugin/package.json
rename to packages/eslint-plugin/package.json
index cce3860be..f2e5c84fd 100644
--- a/ui/eslint-plugin/package.json
+++ b/packages/eslint-plugin/package.json
@@ -1,6 +1,6 @@
{
"name": "@washingtonpost/eslint-plugin-wpds",
- "version": "1.17.0",
+ "version": "2.0.0",
"description": "WPDS lint rules",
"author": "WPDS Support ",
"homepage": "https://github.com/washingtonpost/wpds-ui-kit#readme",
@@ -25,13 +25,13 @@
"test": "jest"
},
"peerDependencies": {
- "@washingtonpost/wpds-theme": "*"
+ "@washingtonpost/wpds-ui-kit": "2.0.0-alpha.10"
},
"dependencies": {
- "@washingtonpost/wpds-theme": "1.17.0"
+ "@washingtonpost/wpds-ui-kit": "2.0.0"
},
"devDependencies": {
"jest": "^28.1.0"
},
- "gitHead": "5ba886cfa95b3eed476edf87b1ac36d37ffe3469"
+ "gitHead": "31c56dc13e81f793df44d9edd16420c7163b7163"
}
diff --git a/ui/eslint-plugin/src/index.js b/packages/eslint-plugin/src/index.js
similarity index 100%
rename from ui/eslint-plugin/src/index.js
rename to packages/eslint-plugin/src/index.js
diff --git a/ui/eslint-plugin/src/rules/theme-colors.js b/packages/eslint-plugin/src/rules/theme-colors.js
similarity index 97%
rename from ui/eslint-plugin/src/rules/theme-colors.js
rename to packages/eslint-plugin/src/rules/theme-colors.js
index 6323b020f..8ebf6e6e5 100644
--- a/ui/eslint-plugin/src/rules/theme-colors.js
+++ b/packages/eslint-plugin/src/rules/theme-colors.js
@@ -1,5 +1,5 @@
/* eslint-disable-next-line @typescript-eslint/no-var-requires */
-const tokens = require("@washingtonpost/wpds-theme/src/wpds.tokens.json");
+const tokens = require("@washingtonpost/wpds-ui-kit/src/theme/wpds.tokens.json");
module.exports = {
meta: {
diff --git a/ui/eslint-plugin/src/rules/theme-colors.test.js b/packages/eslint-plugin/src/rules/theme-colors.test.js
similarity index 100%
rename from ui/eslint-plugin/src/rules/theme-colors.test.js
rename to packages/eslint-plugin/src/rules/theme-colors.test.js
diff --git a/packages/kit/CHANGELOG.md b/packages/kit/CHANGELOG.md
new file mode 100644
index 000000000..5a03fbf77
--- /dev/null
+++ b/packages/kit/CHANGELOG.md
@@ -0,0 +1,112 @@
+# Change Log
+
+All notable changes to this project will be documented in this file.
+See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+# [2.0.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.24.0...v2.0.0) (2024-04-24)
+
+### Features
+
+- v2.0.0 ([#542](https://github.com/washingtonpost/wpds-ui-kit/issues/542)) ([d429cfa](https://github.com/washingtonpost/wpds-ui-kit/commit/d429cfabb7489a2548ffad5c3d945145824d4a22)), closes [#544](https://github.com/washingtonpost/wpds-ui-kit/issues/544) [#552](https://github.com/washingtonpost/wpds-ui-kit/issues/552) [#555](https://github.com/washingtonpost/wpds-ui-kit/issues/555) [#560](https://github.com/washingtonpost/wpds-ui-kit/issues/560) [#562](https://github.com/washingtonpost/wpds-ui-kit/issues/562) [#564](https://github.com/washingtonpost/wpds-ui-kit/issues/564) [#565](https://github.com/washingtonpost/wpds-ui-kit/issues/565) [#574](https://github.com/washingtonpost/wpds-ui-kit/issues/574) [#570](https://github.com/washingtonpost/wpds-ui-kit/issues/570) [#579](https://github.com/washingtonpost/wpds-ui-kit/issues/579) [#578](https://github.com/washingtonpost/wpds-ui-kit/issues/578) [#580](https://github.com/washingtonpost/wpds-ui-kit/issues/580) [#579](https://github.com/washingtonpost/wpds-ui-kit/issues/579)
+
+# [2.0.0-alpha.12](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.11...v2.0.0-alpha.12) (2024-04-10)
+
+**Note:** Version bump only for package @washingtonpost/wpds-ui-kit
+
+# [2.0.0-alpha.11](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.10...v2.0.0-alpha.11) (2024-04-09)
+
+**Note:** Version bump only for package @washingtonpost/wpds-ui-kit
+
+# [2.0.0-alpha.10](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.7...v2.0.0-alpha.10) (2024-04-09)
+
+### Bug Fixes
+
+- add tokens specifier to exports ([#616](https://github.com/washingtonpost/wpds-ui-kit/issues/616)) ([261c231](https://github.com/washingtonpost/wpds-ui-kit/commit/261c2317d9f34c20da55afaa8d9012d45677ca52))
+- new colors are not showing up ([#614](https://github.com/washingtonpost/wpds-ui-kit/issues/614)) ([9e9b975](https://github.com/washingtonpost/wpds-ui-kit/commit/9e9b9755f70bcd70ebde30501515f31269efaf7d))
+
+# [2.0.0-alpha.9](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.7...v2.0.0-alpha.9) (2024-04-09)
+
+### Bug Fixes
+
+- add tokens specifier to exports ([#616](https://github.com/washingtonpost/wpds-ui-kit/issues/616)) ([261c231](https://github.com/washingtonpost/wpds-ui-kit/commit/261c2317d9f34c20da55afaa8d9012d45677ca52))
+- new colors are not showing up ([#614](https://github.com/washingtonpost/wpds-ui-kit/issues/614)) ([9e9b975](https://github.com/washingtonpost/wpds-ui-kit/commit/9e9b9755f70bcd70ebde30501515f31269efaf7d))
+
+# [2.0.0-alpha.8](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.7...v2.0.0-alpha.8) (2024-04-04)
+
+### Bug Fixes
+
+- new colors are not showing up ([#614](https://github.com/washingtonpost/wpds-ui-kit/issues/614)) ([9e9b975](https://github.com/washingtonpost/wpds-ui-kit/commit/9e9b9755f70bcd70ebde30501515f31269efaf7d))
+
+# [2.0.0-alpha.7](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.6...v2.0.0-alpha.7) (2024-04-02)
+
+### Bug Fixes
+
+- add nanoid back ([#607](https://github.com/washingtonpost/wpds-ui-kit/issues/607)) ([d862816](https://github.com/washingtonpost/wpds-ui-kit/commit/d862816e85c3f667b1bd5be1f253b7920261f01b))
+- make input helper and error block level elements to preserve formatting ([20a9455](https://github.com/washingtonpost/wpds-ui-kit/commit/20a9455cd8a72f1c9c7521e5ced97f09e8b59604))
+- transform Select arrow on open ([#597](https://github.com/washingtonpost/wpds-ui-kit/issues/597)) ([b0e77be](https://github.com/washingtonpost/wpds-ui-kit/commit/b0e77be13ee0e5989d81c976e2b5eb9f5a41a060))
+
+# [2.0.0-alpha.2](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.1...v2.0.0-alpha.2) (2024-03-14)
+
+# [2.0.0-alpha.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.0...v2.0.0-alpha.1) (2024-03-14)
+
+# [2.0.0-alpha.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.1.0-experimental.0...v2.0.0-alpha.0) (2024-03-14)
+
+# [2.1.0-experimental.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.0...v2.1.0-experimental.0) (2024-03-13)
+
+### Bug Fixes
+
+- merging main and resolving conflicts ([#585](https://github.com/washingtonpost/wpds-ui-kit/issues/585)) ([253effe](https://github.com/washingtonpost/wpds-ui-kit/commit/253effebcc310c6ceee9efbed2e346d7b3132691))
+
+### Features
+
+- card ([#564](https://github.com/washingtonpost/wpds-ui-kit/issues/564)) ([ce0b9db](https://github.com/washingtonpost/wpds-ui-kit/commit/ce0b9db6985f44d848b0bf38c259f04107f03344))
+- move Button, Icon, theme, and VisuallyHidden to v2 package ([#562](https://github.com/washingtonpost/wpds-ui-kit/issues/562)) ([be3524d](https://github.com/washingtonpost/wpds-ui-kit/commit/be3524d388e177023b9c476a68020a478a893f50))
+- update Accordion to React 18 ([#565](https://github.com/washingtonpost/wpds-ui-kit/issues/565)) ([672e239](https://github.com/washingtonpost/wpds-ui-kit/commit/672e23918d9989de9d1a8702d3880b3f4f0ac38f))
+- v2 mass components upgrade/migration ([#578](https://github.com/washingtonpost/wpds-ui-kit/issues/578)) ([5e0394b](https://github.com/washingtonpost/wpds-ui-kit/commit/5e0394b4e6747bfd9fee1dc0bcd82d1dcb6cd9b6)), closes [#580](https://github.com/washingtonpost/wpds-ui-kit/issues/580) [#579](https://github.com/washingtonpost/wpds-ui-kit/issues/579)
+
+# [2.0.0-alpha.6](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.5...v2.0.0-alpha.6) (2024-03-15)
+
+**Note:** Version bump only for package @washingtonpost/wpds-ui-kit
+
+# [2.0.0-alpha.5](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.4...v2.0.0-alpha.5) (2024-03-15)
+
+**Note:** Version bump only for package @washingtonpost/wpds-ui-kit
+
+# [2.0.0-alpha.4](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.3...v2.0.0-alpha.4) (2024-03-15)
+
+**Note:** Version bump only for package @washingtonpost/wpds-ui-kit
+
+# [2.0.0-alpha.3](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.6...v2.0.0-alpha.3) (2024-03-14)
+
+# [2.0.0-alpha.2](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.1...v2.0.0-alpha.2) (2024-03-14)
+
+# [2.0.0-alpha.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.0...v2.0.0-alpha.1) (2024-03-14)
+
+# [2.0.0-alpha.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.1.0-experimental.1...v2.0.0-alpha.0) (2024-03-14)
+
+# [2.1.0-experimental.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.1.0-experimental.0...v2.1.0-experimental.1) (2024-03-13)
+
+# [2.1.0-experimental.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v1.22.0...v2.1.0-experimental.0) (2024-03-13)
+
+### Bug Fixes
+
+- merging main and resolving conflicts ([#585](https://github.com/washingtonpost/wpds-ui-kit/issues/585)) ([253effe](https://github.com/washingtonpost/wpds-ui-kit/commit/253effebcc310c6ceee9efbed2e346d7b3132691))
+
+### Features
+
+- card ([#564](https://github.com/washingtonpost/wpds-ui-kit/issues/564)) ([ce0b9db](https://github.com/washingtonpost/wpds-ui-kit/commit/ce0b9db6985f44d848b0bf38c259f04107f03344))
+- move Button, Icon, theme, and VisuallyHidden to v2 package ([#562](https://github.com/washingtonpost/wpds-ui-kit/issues/562)) ([be3524d](https://github.com/washingtonpost/wpds-ui-kit/commit/be3524d388e177023b9c476a68020a478a893f50))
+- update Accordion to React 18 ([#565](https://github.com/washingtonpost/wpds-ui-kit/issues/565)) ([672e239](https://github.com/washingtonpost/wpds-ui-kit/commit/672e23918d9989de9d1a8702d3880b3f4f0ac38f))
+- v2 mass components upgrade/migration ([#578](https://github.com/washingtonpost/wpds-ui-kit/issues/578)) ([5e0394b](https://github.com/washingtonpost/wpds-ui-kit/commit/5e0394b4e6747bfd9fee1dc0bcd82d1dcb6cd9b6)), closes [#580](https://github.com/washingtonpost/wpds-ui-kit/issues/580) [#579](https://github.com/washingtonpost/wpds-ui-kit/issues/579)
+
+# [2.0.0-alpha.2](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.1...v2.0.0-alpha.2) (2024-03-14)
+
+**Note:** Version bump only for package @washingtonpost/wpds-ui-kit
+
+# [2.0.0-alpha.1](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.0.0-alpha.0...v2.0.0-alpha.1) (2024-03-14)
+
+**Note:** Version bump only for package @washingtonpost/wpds-ui-kit
+
+# [2.0.0-alpha.0](https://github.com/washingtonpost/wpds-ui-kit/compare/v2.1.0-experimental.0...v2.0.0-alpha.0) (2024-03-14)
+
+**Note:** Version bump only for package @washingtonpost/wpds-ui-kit
diff --git a/packages/kit/README.md b/packages/kit/README.md
new file mode 100644
index 000000000..e69de29bb
diff --git a/packages/kit/package.json b/packages/kit/package.json
new file mode 100644
index 000000000..917cc8d88
--- /dev/null
+++ b/packages/kit/package.json
@@ -0,0 +1,72 @@
+{
+ "name": "@washingtonpost/wpds-ui-kit",
+ "version": "2.0.0",
+ "description": "WPDS UI Kit",
+ "author": "WPDS Support ",
+ "homepage": "https://github.com/washingtonpost/wpds-ui-kit#readme",
+ "license": "MIT",
+ "source": "src/index.ts",
+ "main": "dist/index.js",
+ "module": "dist/esm/index.js",
+ "types": "dist/index.d.ts",
+ "files": [
+ "dist",
+ "README.md",
+ "src"
+ ],
+ "sideEffects": false,
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/washingtonpost/wpds-ui-kit.git"
+ },
+ "publishConfig": {
+ "access": "public"
+ },
+ "scripts": {
+ "build:transform": "node src/theme/build/transform.js",
+ "build:createHex": "node src/theme/build/modules/createHex.js",
+ "test": "echo \"Error: run tests from root\" && exit 1",
+ "build": "npm run build:transform && tsup src/index.ts --minify --format esm,cjs --dts --sourcemap --external react --legacy-output",
+ "dev": "tsup src/index.ts --format esm,cjs --watch --dts --external react --legacy-output",
+ "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
+ },
+ "bugs": {
+ "url": "https://github.com/washingtonpost/wpds-ui-kit/issues"
+ },
+ "dependencies": {
+ "@radix-ui/react-accordion": "^1.1.2",
+ "@radix-ui/react-avatar": "latest",
+ "@radix-ui/react-checkbox": "^1.0.0",
+ "@radix-ui/react-dialog": "^1.0.5",
+ "@radix-ui/react-dropdown-menu": "2.0.3",
+ "@radix-ui/react-focus-scope": "^1.0.0",
+ "@radix-ui/react-label": "^1.0.0",
+ "@radix-ui/react-popover": "^1.0.2",
+ "@radix-ui/react-primitive": "^1.0.2",
+ "@radix-ui/react-radio-group": "^1.0.0",
+ "@radix-ui/react-select": "^1.2.2",
+ "@radix-ui/react-separator": "^1.0.0",
+ "@radix-ui/react-slot": "^1.0.0",
+ "@radix-ui/react-tabs": "latest",
+ "@radix-ui/react-tooltip": "^1.0.0",
+ "@radix-ui/react-use-controllable-state": "^1.0.1",
+ "@reach/combobox": "^0.18.0",
+ "@reach/popover": "^0.18.0",
+ "@stitches/react": "^1.2.8",
+ "@washingtonpost/wpds-assets": "2.0.0",
+ "match-sorter": "6.3.1",
+ "nanoid": "^3.3.4",
+ "react": "^18.2.0",
+ "react-swipeable": "^7.0.0",
+ "react-transition-group": "^4.4.5"
+ },
+ "devDependencies": {
+ "tsup": "5.11.13",
+ "typescript": "4.5.5"
+ },
+ "peerDependencies": {
+ "react": "^18.2.0",
+ "react-dom": "^18.2.0"
+ },
+ "gitHead": "31c56dc13e81f793df44d9edd16420c7163b7163"
+}
diff --git a/packages/kit/src/accordion/Accordion.test.tsx b/packages/kit/src/accordion/Accordion.test.tsx
new file mode 100644
index 000000000..e5534aa57
--- /dev/null
+++ b/packages/kit/src/accordion/Accordion.test.tsx
@@ -0,0 +1,10 @@
+import { render, screen } from "@testing-library/react";
+import { AccordionRoot } from "./Accordion";
+
+describe("AccordionRoot", () => {
+ test("renders visibly into the document", () => {
+ render(Test );
+
+ expect(screen.getByText("Test")).toBeVisible();
+ });
+});
diff --git a/ui/accordion/src/Accordion.tsx b/packages/kit/src/accordion/Accordion.tsx
similarity index 79%
rename from ui/accordion/src/Accordion.tsx
rename to packages/kit/src/accordion/Accordion.tsx
index ffc156424..c0b9aca8b 100644
--- a/ui/accordion/src/Accordion.tsx
+++ b/packages/kit/src/accordion/Accordion.tsx
@@ -1,6 +1,6 @@
-import * as React from "react";
-import { theme, styled } from "@washingtonpost/wpds-theme";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import React, { forwardRef } from "react";
+import { theme, styled } from "../theme";
+import type * as WPDS from "../theme";
import * as AccordionPrimitive from "@radix-ui/react-accordion";
import { AccordionTrigger, AccordionHeader } from "./AccordionTrigger";
import { AccordionItem } from "./AccordionItem";
@@ -44,12 +44,11 @@ export type AccordionRootCombined = (
) &
AccordionRootVariants;
-export const AccordionRoot = React.forwardRef<
- HTMLDivElement,
- AccordionRootCombined
->(({ ...props }: AccordionRootCombined, ref) => (
-
-));
+export const AccordionRoot = forwardRef(
+ ({ ...props }: AccordionRootCombined, ref) => (
+
+ )
+);
AccordionRoot.displayName = "AccordionRoot";
diff --git a/packages/kit/src/accordion/AccordionContent.test.tsx b/packages/kit/src/accordion/AccordionContent.test.tsx
new file mode 100644
index 000000000..020e2a56a
--- /dev/null
+++ b/packages/kit/src/accordion/AccordionContent.test.tsx
@@ -0,0 +1,29 @@
+import { render, screen } from "@testing-library/react";
+import { AccordionRoot } from "./Accordion";
+import { AccordionItem } from "./AccordionItem";
+import { AccordionContent } from "./AccordionContent";
+
+const customRender = (ui, contextProps = {}) => {
+ return render(
+
+ {ui}
+
+ );
+};
+
+describe("AccordionContent", () => {
+ test("renders visibly into the document", () => {
+ customRender( );
+
+ expect(screen.getByRole("region")).toBeVisible();
+ });
+
+ test("applies padding to inner content", () => {
+ customRender(
+ Test
+ );
+
+ // eslint-disable-next-line jest-dom/prefer-to-have-class
+ expect(screen.getByText("Test").classList.length).toBe(2);
+ });
+});
diff --git a/ui/accordion/src/AccordionContent.tsx b/packages/kit/src/accordion/AccordionContent.tsx
similarity index 90%
rename from ui/accordion/src/AccordionContent.tsx
rename to packages/kit/src/accordion/AccordionContent.tsx
index 420cddd24..2917606ed 100644
--- a/ui/accordion/src/AccordionContent.tsx
+++ b/packages/kit/src/accordion/AccordionContent.tsx
@@ -1,7 +1,7 @@
-import * as React from "react";
-import { theme, styled, keyframes } from "@washingtonpost/wpds-theme";
+import React, { forwardRef } from "react";
+import { theme, styled, keyframes } from "../theme";
import * as AccordionPrimitive from "@radix-ui/react-accordion";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import type * as WPDS from "../theme";
import { AccordionContentProps as RadixAccordionContentProps } from "@radix-ui/react-accordion";
const slideDown = keyframes({
@@ -46,7 +46,7 @@ export interface AccordionContentInterface extends CombinedProps {
css?: WPDS.CSS;
}
-export const AccordionContent = React.forwardRef<
+export const AccordionContent = forwardRef<
HTMLDivElement,
AccordionContentInterface
>(({ children, ...props }: AccordionContentInterface, ref) => {
diff --git a/packages/kit/src/accordion/AccordionItem.test.tsx b/packages/kit/src/accordion/AccordionItem.test.tsx
new file mode 100644
index 000000000..fce5e4ed7
--- /dev/null
+++ b/packages/kit/src/accordion/AccordionItem.test.tsx
@@ -0,0 +1,19 @@
+import { render, screen } from "@testing-library/react";
+import { AccordionRoot } from "./Accordion";
+import { AccordionItem } from "./AccordionItem";
+
+const customRender = (ui, contextProps = {}) => {
+ return render(
+
+ {ui}
+
+ );
+};
+
+describe("AccordionItem", () => {
+ test("renders visibly into the document", () => {
+ customRender( );
+
+ expect(screen.getByTestId("test")).toBeVisible();
+ });
+});
diff --git a/ui/accordion/src/AccordionItem.tsx b/packages/kit/src/accordion/AccordionItem.tsx
similarity index 56%
rename from ui/accordion/src/AccordionItem.tsx
rename to packages/kit/src/accordion/AccordionItem.tsx
index 91bfa50ae..679751afb 100644
--- a/ui/accordion/src/AccordionItem.tsx
+++ b/packages/kit/src/accordion/AccordionItem.tsx
@@ -1,7 +1,7 @@
-import * as React from "react";
-import { theme, styled } from "@washingtonpost/wpds-theme";
+import React, { forwardRef } from "react";
+import { theme, styled } from "../theme";
import * as AccordionPrimitive from "@radix-ui/react-accordion";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import type * as WPDS from "../theme";
import { AccordionItemProps as RadixAccordionItemProps } from "@radix-ui/react-accordion";
const StyledAccordionItem = styled(AccordionPrimitive.Item, {
@@ -15,13 +15,12 @@ export interface AccordionItemInterface extends AccordionItemProps {
css?: WPDS.CSS;
}
-export const AccordionItem = React.forwardRef<
- HTMLDivElement,
- AccordionItemInterface
->(({ children, ...props }: AccordionItemInterface, ref) => (
-
- {children}
-
-));
+export const AccordionItem = forwardRef(
+ ({ children, ...props }: AccordionItemInterface, ref) => (
+
+ {children}
+
+ )
+);
AccordionItem.displayName = "AccordionItem";
diff --git a/packages/kit/src/accordion/AccordionTrigger.test.tsx b/packages/kit/src/accordion/AccordionTrigger.test.tsx
new file mode 100644
index 000000000..19dc5ada3
--- /dev/null
+++ b/packages/kit/src/accordion/AccordionTrigger.test.tsx
@@ -0,0 +1,20 @@
+import { render, screen } from "@testing-library/react";
+import { AccordionRoot } from "./Accordion";
+import { AccordionItem } from "./AccordionItem";
+import { AccordionTrigger } from "./AccordionTrigger";
+
+const customRender = (ui, contextProps = {}) => {
+ return render(
+
+ {ui}
+
+ );
+};
+
+describe("AccordionContent", () => {
+ test("renders visibly into the document", () => {
+ customRender(Test );
+
+ expect(screen.getByRole("button")).toBeVisible();
+ });
+});
diff --git a/ui/accordion/src/AccordionTrigger.tsx b/packages/kit/src/accordion/AccordionTrigger.tsx
similarity index 90%
rename from ui/accordion/src/AccordionTrigger.tsx
rename to packages/kit/src/accordion/AccordionTrigger.tsx
index a4a631ee2..c75b01f38 100644
--- a/ui/accordion/src/AccordionTrigger.tsx
+++ b/packages/kit/src/accordion/AccordionTrigger.tsx
@@ -1,9 +1,9 @@
-import * as React from "react";
+import React, { forwardRef } from "react";
import { ChevronDown } from "@washingtonpost/wpds-assets";
-import { theme, styled } from "@washingtonpost/wpds-theme";
-import { Icon } from "@washingtonpost/wpds-icon";
+import { theme, styled } from "../theme";
+import { Icon } from "../icon";
import * as AccordionPrimitive from "@radix-ui/react-accordion";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import type * as WPDS from "../theme";
import {
AccordionTriggerProps as RadixAccordionTriggerProps,
AccordionHeaderProps as RadixAccordionHeaderProps,
@@ -89,7 +89,7 @@ export interface AccordionHeaderInterface extends HeaderCombinedProps {
css?: WPDS.CSS;
}
-export const AccordionHeader = React.forwardRef<
+export const AccordionHeader = forwardRef<
HTMLDivElement,
AccordionHeaderInterface
>(({ children, ...props }: AccordionHeaderInterface, ref) => (
@@ -100,7 +100,7 @@ export const AccordionHeader = React.forwardRef<
AccordionHeader.displayName = "AccordionHeader";
-export const AccordionTrigger = React.forwardRef<
+export const AccordionTrigger = forwardRef<
HTMLButtonElement,
AccordionTriggerCombined
>((props: AccordionTriggerCombined, ref) => (
diff --git a/ui/accordion/src/index.ts b/packages/kit/src/accordion/index.ts
similarity index 100%
rename from ui/accordion/src/index.ts
rename to packages/kit/src/accordion/index.ts
diff --git a/ui/accordion/src/play.stories.tsx b/packages/kit/src/accordion/play.stories.tsx
similarity index 62%
rename from ui/accordion/src/play.stories.tsx
rename to packages/kit/src/accordion/play.stories.tsx
index 763c97a8c..03de6f4f0 100644
--- a/ui/accordion/src/play.stories.tsx
+++ b/packages/kit/src/accordion/play.stories.tsx
@@ -1,16 +1,13 @@
// /* eslint-disable @next/next/no-img-element */
-import * as React from "react";
+import React, { useRef } from "react";
import { Accordion, ACCORDION_DENSITY, ACCORDION_TYPE } from ".";
-import type { ComponentMeta, ComponentStory } from "@storybook/react";
+import { userEvent, waitFor, within } from "@storybook/testing-library";
+import { expect } from "@storybook/jest";
+import type { Meta, StoryFn } from "@storybook/react";
export default {
title: "Accordion",
component: Accordion.Root,
- subcomponents: {
- Item: Accordion.Item,
- Trigger: Accordion.Trigger,
- Content: Accordion.Content,
- },
argTypes: {
density: {
options: [
@@ -29,12 +26,12 @@ export default {
control: "boolean",
},
},
-} as ComponentMeta;
+} as Meta;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
-const Template: ComponentStory = (args) => {
- const myTriggerRef = React.useRef(null);
- const myContentRef = React.useRef(null);
+const Template: StoryFn = (args) => {
+ const myTriggerRef = useRef(null);
+ const myContentRef = useRef(null);
return (
@@ -44,7 +41,7 @@ const Template: ComponentStory = (args) => {
augue in felis pharetra finibus. In sagittis aliquam augue. Lorem
ipsum dolor sit amet, consectetur adipiscing elit.
-
+
No! You don't even believe that! Gus has cameras everywhere,
please. Listen to yourself! No, he has known everything, all along.
@@ -59,7 +56,7 @@ const Template: ComponentStory
= (args) => {
How long will I have to social distance?
-
+
= (args) => {
);
};
-export const Play = Template.bind({});
+export const Play = {
+ render: Template,
+
+ args: {
+ density: ACCORDION_DENSITY.compact,
+ type: ACCORDION_TYPE.single,
+ defaultValue: "item-1",
+ },
-Play.args = {
- density: ACCORDION_DENSITY.compact,
- type: ACCORDION_TYPE.single,
- defaultValue: "item-1",
+ name: "Accordion",
};
-Play.storyName = "Accordion";
+export const Interactions = {
+ render: Template,
+ play: async ({ canvasElement }) => {
+ const canvas = within(canvasElement);
+ await userEvent.click(canvas.getAllByRole("button")[0]);
+ await expect(canvas.getByTestId("content-0")).toBeVisible();
+ await userEvent.click(canvas.getAllByRole("button")[1]);
+ await expect(canvas.getByTestId("content-1")).toBeVisible();
+ await waitFor(() =>
+ expect(canvas.getByTestId("content-0")).not.toBeVisible()
+ );
+ },
+};
diff --git a/ui/action-menu/src/ActionMenu.tsx b/packages/kit/src/action-menu/ActionMenu.tsx
similarity index 100%
rename from ui/action-menu/src/ActionMenu.tsx
rename to packages/kit/src/action-menu/ActionMenu.tsx
diff --git a/ui/action-menu/src/ActionMenuCheckboxItem.tsx b/packages/kit/src/action-menu/ActionMenuCheckboxItem.tsx
similarity index 93%
rename from ui/action-menu/src/ActionMenuCheckboxItem.tsx
rename to packages/kit/src/action-menu/ActionMenuCheckboxItem.tsx
index bedaca5b3..34f055982 100644
--- a/ui/action-menu/src/ActionMenuCheckboxItem.tsx
+++ b/packages/kit/src/action-menu/ActionMenuCheckboxItem.tsx
@@ -1,6 +1,8 @@
-import * as React from "react";
+import React from "react";
-import WPDS, { styled, theme } from "@washingtonpost/wpds-theme";
+import { styled, theme } from "../theme";
+
+import type * as WPDS from "../theme";
import * as ActionMenuPrimitive from "@radix-ui/react-dropdown-menu";
diff --git a/ui/action-menu/src/ActionMenuContent.tsx b/packages/kit/src/action-menu/ActionMenuContent.tsx
similarity index 94%
rename from ui/action-menu/src/ActionMenuContent.tsx
rename to packages/kit/src/action-menu/ActionMenuContent.tsx
index 10b2a7527..0ebe22ef7 100644
--- a/ui/action-menu/src/ActionMenuContent.tsx
+++ b/packages/kit/src/action-menu/ActionMenuContent.tsx
@@ -1,6 +1,8 @@
-import * as React from "react";
+import React from "react";
-import WPDS, { theme, styled } from "@washingtonpost/wpds-theme";
+import { theme, styled } from "../theme";
+
+import type * as WPDS from "../theme";
import * as ActionMenuPrimitive from "@radix-ui/react-dropdown-menu";
diff --git a/ui/action-menu/src/ActionMenuGroup.tsx b/packages/kit/src/action-menu/ActionMenuGroup.tsx
similarity index 84%
rename from ui/action-menu/src/ActionMenuGroup.tsx
rename to packages/kit/src/action-menu/ActionMenuGroup.tsx
index 1408e82f2..4356ed9bf 100644
--- a/ui/action-menu/src/ActionMenuGroup.tsx
+++ b/packages/kit/src/action-menu/ActionMenuGroup.tsx
@@ -1,9 +1,11 @@
-import * as React from "react";
+import React from "react";
-import WPDS, { styled } from "@washingtonpost/wpds-theme";
+import { styled } from "../theme";
+
+import type * as WPDS from "../theme";
import * as ActionMenuPrimitive from "@radix-ui/react-dropdown-menu";
-import { Divider } from "@washingtonpost/wpds-divider";
+import { Divider } from "../divider";
import { DropdownMenuGroupProps as RadixDropdownMenuGroupProps } from "@radix-ui/react-dropdown-menu";
diff --git a/ui/action-menu/src/ActionMenuIcon.tsx b/packages/kit/src/action-menu/ActionMenuIcon.tsx
similarity index 91%
rename from ui/action-menu/src/ActionMenuIcon.tsx
rename to packages/kit/src/action-menu/ActionMenuIcon.tsx
index ac22e458c..04a86f5ae 100644
--- a/ui/action-menu/src/ActionMenuIcon.tsx
+++ b/packages/kit/src/action-menu/ActionMenuIcon.tsx
@@ -1,5 +1,7 @@
-import * as React from "react";
-import WPDS, { theme, styled } from "@washingtonpost/wpds-theme";
+import React from "react";
+import { theme, styled } from "../theme";
+
+import type * as WPDS from "../theme";
const RightIcon = styled("div", {
marginLeft: "auto",
diff --git a/ui/action-menu/src/ActionMenuItem.tsx b/packages/kit/src/action-menu/ActionMenuItem.tsx
similarity index 95%
rename from ui/action-menu/src/ActionMenuItem.tsx
rename to packages/kit/src/action-menu/ActionMenuItem.tsx
index 91afec0e5..dc3d46f88 100644
--- a/ui/action-menu/src/ActionMenuItem.tsx
+++ b/packages/kit/src/action-menu/ActionMenuItem.tsx
@@ -1,6 +1,8 @@
-import * as React from "react";
+import React from "react";
-import WPDS, { theme, styled } from "@washingtonpost/wpds-theme";
+import { theme, styled } from "../theme";
+
+import type * as WPDS from "../theme";
import * as ActionMenuPrimitive from "@radix-ui/react-dropdown-menu";
diff --git a/ui/action-menu/src/ActionMenuItemIndicator.tsx b/packages/kit/src/action-menu/ActionMenuItemIndicator.tsx
similarity index 91%
rename from ui/action-menu/src/ActionMenuItemIndicator.tsx
rename to packages/kit/src/action-menu/ActionMenuItemIndicator.tsx
index 9a37d628d..ff10855c3 100644
--- a/ui/action-menu/src/ActionMenuItemIndicator.tsx
+++ b/packages/kit/src/action-menu/ActionMenuItemIndicator.tsx
@@ -1,12 +1,14 @@
-import * as React from "react";
+import React from "react";
-import WPDS, { styled, theme } from "@washingtonpost/wpds-theme";
+import { styled, theme } from "../theme";
+
+import type * as WPDS from "../theme";
import * as ActionMenuPrimitive from "@radix-ui/react-dropdown-menu";
import { DropdownMenuItemIndicatorProps as RadixDropdownMenuItemIndicatorProps } from "@radix-ui/react-dropdown-menu";
import { ActionMenuContext } from "./context";
-import { Icon } from "@washingtonpost/wpds-icon";
+import { Icon } from "../icon";
import { Check } from "@washingtonpost/wpds-assets";
const NAME = "ActionMenuItemIndicator";
diff --git a/ui/action-menu/src/ActionMenuLabel.tsx b/packages/kit/src/action-menu/ActionMenuLabel.tsx
similarity index 93%
rename from ui/action-menu/src/ActionMenuLabel.tsx
rename to packages/kit/src/action-menu/ActionMenuLabel.tsx
index 328182424..369c1b1bf 100644
--- a/ui/action-menu/src/ActionMenuLabel.tsx
+++ b/packages/kit/src/action-menu/ActionMenuLabel.tsx
@@ -1,6 +1,8 @@
-import * as React from "react";
+import React from "react";
-import WPDS, { styled, theme } from "@washingtonpost/wpds-theme";
+import { styled, theme } from "../theme";
+
+import type * as WPDS from "../theme";
import * as ActionMenuPrimitive from "@radix-ui/react-dropdown-menu";
diff --git a/ui/action-menu/src/ActionMenuPortal.tsx b/packages/kit/src/action-menu/ActionMenuPortal.tsx
similarity index 89%
rename from ui/action-menu/src/ActionMenuPortal.tsx
rename to packages/kit/src/action-menu/ActionMenuPortal.tsx
index fd2982664..6f486ab61 100644
--- a/ui/action-menu/src/ActionMenuPortal.tsx
+++ b/packages/kit/src/action-menu/ActionMenuPortal.tsx
@@ -1,6 +1,6 @@
-import * as React from "react";
+import React from "react";
-import WPDS from "@washingtonpost/wpds-theme";
+import type * as WPDS from "../theme";
import * as ActionMenuPrimitive from "@radix-ui/react-dropdown-menu";
import { DropdownMenuPortalProps as RadixDropdownMenuPortalProps } from "@radix-ui/react-dropdown-menu";
diff --git a/ui/action-menu/src/ActionMenuRadioGroup.tsx b/packages/kit/src/action-menu/ActionMenuRadioGroup.tsx
similarity index 85%
rename from ui/action-menu/src/ActionMenuRadioGroup.tsx
rename to packages/kit/src/action-menu/ActionMenuRadioGroup.tsx
index 5bbf25a77..529c5dbaa 100644
--- a/ui/action-menu/src/ActionMenuRadioGroup.tsx
+++ b/packages/kit/src/action-menu/ActionMenuRadioGroup.tsx
@@ -1,9 +1,11 @@
-import * as React from "react";
+import React from "react";
-import WPDS, { styled } from "@washingtonpost/wpds-theme";
+import { styled } from "../theme";
+
+import type * as WPDS from "../theme";
import * as ActionMenuPrimitive from "@radix-ui/react-dropdown-menu";
-import { Divider } from "@washingtonpost/wpds-divider";
+import { Divider } from "../divider";
import { DropdownMenuRadioGroupProps as RadixDropdownMenuRadioGroupProps } from "@radix-ui/react-dropdown-menu";
diff --git a/ui/action-menu/src/ActionMenuRadioItem.tsx b/packages/kit/src/action-menu/ActionMenuRadioItem.tsx
similarity index 93%
rename from ui/action-menu/src/ActionMenuRadioItem.tsx
rename to packages/kit/src/action-menu/ActionMenuRadioItem.tsx
index 0966cfb54..d28b9d0e0 100644
--- a/ui/action-menu/src/ActionMenuRadioItem.tsx
+++ b/packages/kit/src/action-menu/ActionMenuRadioItem.tsx
@@ -1,6 +1,8 @@
-import * as React from "react";
+import React from "react";
-import WPDS, { styled, theme } from "@washingtonpost/wpds-theme";
+import { styled, theme } from "../theme";
+
+import type * as WPDS from "../theme";
import * as ActionMenuPrimitive from "@radix-ui/react-dropdown-menu";
diff --git a/ui/action-menu/src/ActionMenuRoot.tsx b/packages/kit/src/action-menu/ActionMenuRoot.tsx
similarity index 86%
rename from ui/action-menu/src/ActionMenuRoot.tsx
rename to packages/kit/src/action-menu/ActionMenuRoot.tsx
index 2a8c01ebc..bb202e188 100644
--- a/ui/action-menu/src/ActionMenuRoot.tsx
+++ b/packages/kit/src/action-menu/ActionMenuRoot.tsx
@@ -1,7 +1,7 @@
-import * as React from "react";
+import React from "react";
-import type * as WPDS from "@washingtonpost/wpds-theme";
-import { styled } from "@washingtonpost/wpds-theme";
+import type * as WPDS from "../theme";
+import { styled } from "../theme";
import * as ActionMenuPrimitive from "@radix-ui/react-dropdown-menu";
diff --git a/ui/action-menu/src/ActionMenuSeparator.tsx b/packages/kit/src/action-menu/ActionMenuSeparator.tsx
similarity index 88%
rename from ui/action-menu/src/ActionMenuSeparator.tsx
rename to packages/kit/src/action-menu/ActionMenuSeparator.tsx
index 7e7c29a82..222c494f0 100644
--- a/ui/action-menu/src/ActionMenuSeparator.tsx
+++ b/packages/kit/src/action-menu/ActionMenuSeparator.tsx
@@ -1,6 +1,8 @@
-import * as React from "react";
+import React from "react";
-import WPDS, { styled } from "@washingtonpost/wpds-theme";
+import { styled } from "../theme";
+
+import type * as WPDS from "../theme";
import * as ActionMenuPrimitive from "@radix-ui/react-dropdown-menu";
diff --git a/ui/action-menu/src/ActionMenuSub.tsx b/packages/kit/src/action-menu/ActionMenuSub.tsx
similarity index 89%
rename from ui/action-menu/src/ActionMenuSub.tsx
rename to packages/kit/src/action-menu/ActionMenuSub.tsx
index ad17ad09a..532ef26e5 100644
--- a/ui/action-menu/src/ActionMenuSub.tsx
+++ b/packages/kit/src/action-menu/ActionMenuSub.tsx
@@ -1,6 +1,8 @@
-import * as React from "react";
+import React from "react";
-import WPDS, { styled } from "@washingtonpost/wpds-theme";
+import { styled } from "../theme";
+
+import type * as WPDS from "../theme";
import * as ActionMenuPrimitive from "@radix-ui/react-dropdown-menu";
diff --git a/ui/action-menu/src/ActionMenuSubContent.tsx b/packages/kit/src/action-menu/ActionMenuSubContent.tsx
similarity index 93%
rename from ui/action-menu/src/ActionMenuSubContent.tsx
rename to packages/kit/src/action-menu/ActionMenuSubContent.tsx
index 253a2bf77..e3aed226e 100644
--- a/ui/action-menu/src/ActionMenuSubContent.tsx
+++ b/packages/kit/src/action-menu/ActionMenuSubContent.tsx
@@ -1,9 +1,10 @@
-import * as React from "react";
+import React, { useContext } from "react";
-import WPDS, { theme, styled } from "@washingtonpost/wpds-theme";
+import { theme, styled } from "../theme";
+
+import type * as WPDS from "../theme";
import * as ActionMenuPrimitive from "@radix-ui/react-dropdown-menu";
-import { useContext } from "react";
import { ActionMenuContext } from "./context";
import { DropdownMenuSubContentProps as RadixDropdownMenuSubContentProps } from "@radix-ui/react-dropdown-menu";
diff --git a/ui/action-menu/src/ActionMenuSubTrigger.tsx b/packages/kit/src/action-menu/ActionMenuSubTrigger.tsx
similarity index 90%
rename from ui/action-menu/src/ActionMenuSubTrigger.tsx
rename to packages/kit/src/action-menu/ActionMenuSubTrigger.tsx
index 9832bf2b5..e3bf4094a 100644
--- a/ui/action-menu/src/ActionMenuSubTrigger.tsx
+++ b/packages/kit/src/action-menu/ActionMenuSubTrigger.tsx
@@ -1,11 +1,11 @@
-import * as React from "react";
-import WPDS, { theme, styled } from "@washingtonpost/wpds-theme";
+import React, { useContext } from "react";
+import { theme, styled } from "../theme";
+import type * as WPDS from "../theme";
import * as ActionMenuPrimitive from "@radix-ui/react-dropdown-menu";
import { DropdownMenuSubTriggerProps as RadixDropdownMenuSubTriggerProps } from "@radix-ui/react-dropdown-menu";
-import { Icon } from "@washingtonpost/wpds-icon";
+import { Icon } from "../icon";
import { ChevronRight } from "@washingtonpost/wpds-assets";
import { ActionMenuContext } from "./context";
-import { useContext } from "react";
import { ItemStyles } from "./ActionMenuItem";
const NAME = "ActionMenuSubTrigger";
diff --git a/ui/action-menu/src/ActionMenuTrigger.tsx b/packages/kit/src/action-menu/ActionMenuTrigger.tsx
similarity index 87%
rename from ui/action-menu/src/ActionMenuTrigger.tsx
rename to packages/kit/src/action-menu/ActionMenuTrigger.tsx
index f4bb5c4e3..dc8152ae4 100644
--- a/ui/action-menu/src/ActionMenuTrigger.tsx
+++ b/packages/kit/src/action-menu/ActionMenuTrigger.tsx
@@ -1,7 +1,8 @@
-import * as React from "react";
+import React from "react";
-// import type * as WPDS from "@washingtonpost/wpds-theme";
-import WPDS, { theme, styled } from "@washingtonpost/wpds-theme";
+import { theme, styled } from "../theme";
+
+import type * as WPDS from "../theme";
import * as ActionMenuPrimitive from "@radix-ui/react-dropdown-menu";
diff --git a/ui/action-menu/src/context.tsx b/packages/kit/src/action-menu/context.tsx
similarity index 100%
rename from ui/action-menu/src/context.tsx
rename to packages/kit/src/action-menu/context.tsx
diff --git a/ui/action-menu/src/index.ts b/packages/kit/src/action-menu/index.ts
similarity index 100%
rename from ui/action-menu/src/index.ts
rename to packages/kit/src/action-menu/index.ts
diff --git a/ui/action-menu/src/play.stories.tsx b/packages/kit/src/action-menu/play.stories.tsx
similarity index 87%
rename from ui/action-menu/src/play.stories.tsx
rename to packages/kit/src/action-menu/play.stories.tsx
index 16acb67a3..6005745ab 100644
--- a/ui/action-menu/src/play.stories.tsx
+++ b/packages/kit/src/action-menu/play.stories.tsx
@@ -1,8 +1,8 @@
-import * as React from "react";
+import React, { useState } from "react";
import { ActionMenu as Component } from ".";
-import { Button } from "@washingtonpost/wpds-button";
-import { Box } from "@washingtonpost/wpds-box";
-import { Icon } from "@washingtonpost/wpds-icon";
+import { Button } from "../button";
+import { Box } from "../box";
+import { Icon } from "../icon";
import {
Bookmark,
Diamond,
@@ -14,7 +14,7 @@ import {
import { screen, userEvent } from "@storybook/testing-library";
import { expect } from "@storybook/jest";
-import type { ComponentStory } from "@storybook/react";
+import type { StoryFn } from "@storybook/react";
export default {
title: "Action Menu",
@@ -108,7 +108,9 @@ const TriggersTemplate = (parameters) => (
);
-export const Triggers = TriggersTemplate.bind({});
+export const Triggers = {
+ render: TriggersTemplate,
+};
// Leading icon
// Leading icon with a check
@@ -122,12 +124,12 @@ const Circle = (props) => (
);
const ItemVariationsTemplate = (parameters) => {
- const [checkedA, setCheckedA] = React.useState(true);
- const [checkedB, setCheckedB] = React.useState(true);
- const [checkedC, setCheckedC] = React.useState(true);
- const [checkedD, setCheckedD] = React.useState(true);
+ const [checkedA, setCheckedA] = useState(true);
+ const [checkedB, setCheckedB] = useState(true);
+ const [checkedC, setCheckedC] = useState(true);
+ const [checkedD, setCheckedD] = useState(true);
- const [radioChecked, setRadioChecked] = React.useState("radio2");
+ const [radioChecked, setRadioChecked] = useState("radio2");
return (
@@ -322,11 +324,11 @@ const ItemVariationsTemplate = (parameters) => {
);
};
-export const ItemVariations = ItemVariationsTemplate.bind({});
+export const ItemVariations = {
+ render: ItemVariationsTemplate,
+};
-const InteractionsTemplate: ComponentStory = (
- parameters
-) => (
+const InteractionsTemplate: StoryFn = (parameters) => (
Trigger
@@ -381,49 +383,51 @@ const InteractionsTemplate: ComponentStory = (
);
-export const Interactions = InteractionsTemplate.bind({});
-
-// Function to emulate pausing between interactions
-function sleep(ms) {
- return new Promise((resolve) => setTimeout(resolve, ms));
-}
+export const Interactions = {
+ render: InteractionsTemplate,
-Interactions.play = async () => {
- console.log("Start Interaction");
+ play: async () => {
+ console.log("Start Interaction");
- const trigger = screen.getAllByText("Trigger")[0];
- await sleep(500);
+ const trigger = screen.getAllByText("Trigger")[0];
+ await sleep(500);
- await userEvent.click(trigger);
- await sleep(500);
+ await userEvent.click(trigger);
+ await sleep(500);
- const content = screen.getAllByText("Level 1 Action");
- const checkVisible = async function (item) {
- await expect(item).toBeVisible();
- };
- await expect(content.length).toEqual(2);
+ const content = screen.getAllByText("Level 1 Action");
+ const checkVisible = async function (item) {
+ await expect(item).toBeVisible();
+ };
+ await expect(content.length).toEqual(2);
- content.forEach((item) => {
- checkVisible(item);
- });
+ content.forEach((item) => {
+ checkVisible(item);
+ });
- const subTrigger1 = screen.getAllByText("Open Level 2")[0];
+ const subTrigger1 = screen.getAllByText("Open Level 2")[0];
- await userEvent.click(subTrigger1);
+ await userEvent.click(subTrigger1);
- await sleep(500);
+ await sleep(500);
- const subContent1 = screen.getAllByText("Level 2 Action");
+ const subContent1 = screen.getAllByText("Level 2 Action");
- await expect(subContent1.length).toEqual(3);
+ await expect(subContent1.length).toEqual(3);
- subContent1.forEach((item) => {
- checkVisible(item);
- });
+ subContent1.forEach((item) => {
+ checkVisible(item);
+ });
- const subTrigger2 = screen.getAllByText("Open Level 3")[0];
- await userEvent.click(subTrigger2);
- const subContent2 = screen.getAllByText("Level 3 Action");
+ const subTrigger2 = screen.getAllByText("Open Level 3")[0];
+ await userEvent.click(subTrigger2);
+ const subContent2 = screen.getAllByText("Level 3 Action");
- await expect(subContent2.length).toEqual(2);
+ await expect(subContent2.length).toEqual(2);
+ },
};
+
+// Function to emulate pausing between interactions
+function sleep(ms) {
+ return new Promise((resolve) => setTimeout(resolve, ms));
+}
diff --git a/ui/alert-banner/src/AlertBanner.tsx b/packages/kit/src/alert-banner/AlertBanner.tsx
similarity index 94%
rename from ui/alert-banner/src/AlertBanner.tsx
rename to packages/kit/src/alert-banner/AlertBanner.tsx
index 145eb4189..bbf06cd16 100644
--- a/ui/alert-banner/src/AlertBanner.tsx
+++ b/packages/kit/src/alert-banner/AlertBanner.tsx
@@ -1,11 +1,11 @@
-import * as React from "react";
+import React from "react";
-import { theme, styled } from "@washingtonpost/wpds-theme";
-import { Icon } from "@washingtonpost/wpds-icon";
-import { Button } from "@washingtonpost/wpds-button";
-import { AppBar } from "@washingtonpost/wpds-app-bar";
+import { theme, styled } from "../theme";
+import { Icon } from "../icon";
+import { Button } from "../button";
+import { AppBar } from "../app-bar";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import type * as WPDS from "../theme";
import {
Error,
diff --git a/ui/alert-banner/src/index.ts b/packages/kit/src/alert-banner/index.ts
similarity index 100%
rename from ui/alert-banner/src/index.ts
rename to packages/kit/src/alert-banner/index.ts
diff --git a/ui/alert-banner/src/play.stories.tsx b/packages/kit/src/alert-banner/play.stories.tsx
similarity index 76%
rename from ui/alert-banner/src/play.stories.tsx
rename to packages/kit/src/alert-banner/play.stories.tsx
index 2d5914079..a79b792b6 100644
--- a/ui/alert-banner/src/play.stories.tsx
+++ b/packages/kit/src/alert-banner/play.stories.tsx
@@ -1,8 +1,8 @@
+import React from "react";
/* eslint react/prop-types: 0 */
-import * as React from "react";
import { AlertBanner } from "./AlertBanner";
-import { styled } from "@washingtonpost/wpds-ui-kit";
-import type { ComponentMeta, ComponentStory } from "@storybook/react";
+import { styled } from "../theme";
+import type { Meta, StoryFn } from "@storybook/react";
export default {
title: "Alert banner",
@@ -32,7 +32,7 @@ export default {
control: "boolean",
},
},
-} as ComponentMeta;
+} as Meta;
const Column = styled("div", {
display: "flex",
@@ -51,10 +51,7 @@ const Stack = styled("div", {
borderRadius: "$075",
});
-const Template: ComponentStory = ({
- children,
- ...args
-}) => (
+const Template: StoryFn = ({ children, ...args }) => (
@@ -77,20 +74,32 @@ const Template: ComponentStory = ({
);
-export const Play = Template.bind({});
+export const Play = {
+ render: Template,
-Play.args = {
- children: (
- <>
- Information:
- This alert banner
- >
- ),
- css: {
- zIndex: "$shell",
- top: 0,
- left: 0,
+ args: {
+ children: (
+ <>
+ Information:
+ This alert banner
+ >
+ ),
+ css: {
+ zIndex: "$shell",
+ top: 0,
+ left: 0,
+ },
},
+
+ decorators: [
+ (Story) => (
+
+
+
+ ),
+ ],
+
+ name: "Alert banner",
};
const Decorator = styled("div", {
@@ -101,19 +110,7 @@ const Decorator = styled("div", {
px: "$100",
});
-Play.decorators = [
- (Story) => (
-
-
-
- ),
-];
-
-Play.storyName = "Alert banner";
-
-const SpacingTemplate: ComponentStory = ({
- ...args
-}) => (
+const SpacingTemplate: StoryFn = ({ ...args }) => (
@@ -131,4 +128,6 @@ const SpacingTemplate: ComponentStory = ({
);
-export const Spacing = SpacingTemplate.bind({});
+export const Spacing = {
+ render: SpacingTemplate,
+};
diff --git a/ui/app-bar/src/AppBar.tsx b/packages/kit/src/app-bar/AppBar.tsx
similarity index 93%
rename from ui/app-bar/src/AppBar.tsx
rename to packages/kit/src/app-bar/AppBar.tsx
index 3640cbb61..b11d714b0 100644
--- a/ui/app-bar/src/AppBar.tsx
+++ b/packages/kit/src/app-bar/AppBar.tsx
@@ -1,4 +1,4 @@
-import * as Theme from "@washingtonpost/wpds-theme";
+import * as Theme from "../theme";
import * as React from "react";
export const AppBar = Theme.styled("div", {
diff --git a/ui/app-bar/src/index.ts b/packages/kit/src/app-bar/index.ts
similarity index 100%
rename from ui/app-bar/src/index.ts
rename to packages/kit/src/app-bar/index.ts
diff --git a/ui/app-bar/src/play.stories.tsx b/packages/kit/src/app-bar/play.stories.tsx
similarity index 71%
rename from ui/app-bar/src/play.stories.tsx
rename to packages/kit/src/app-bar/play.stories.tsx
index f4b64d500..d1cbbeb56 100644
--- a/ui/app-bar/src/play.stories.tsx
+++ b/packages/kit/src/app-bar/play.stories.tsx
@@ -1,15 +1,15 @@
-import * as React from "react";
-import { styled } from "@washingtonpost/wpds-theme";
+import React from "react";
+import { styled } from "../theme";
import WashingtonPostWhite from "@washingtonpost/wpds-assets/asset/washington-post-white";
import Menu from "@washingtonpost/wpds-assets/asset/menu";
-import { Container } from "@washingtonpost/wpds-container";
-import { Box } from "@washingtonpost/wpds-box";
-import { Icon } from "@washingtonpost/wpds-icon";
+import { Container } from "../container";
+import { Box } from "../box";
+import { Icon } from "../icon";
import Profile from "@washingtonpost/wpds-assets/asset/profile";
import { useDarkMode } from "storybook-dark-mode";
import WashingtonPost from "@washingtonpost/wpds-assets/asset/washington-post";
-import type { ComponentMeta, ComponentStory } from "@storybook/react";
+import type { Meta, StoryFn } from "@storybook/react";
import { AppBar as Component } from ".";
@@ -30,7 +30,7 @@ export default {
parameters: {
layout: "fullscreen",
},
-} as ComponentMeta;
+} as Meta;
const PrimaryNavigationExample = () => {
const darkModeActive = useDarkMode();
@@ -74,20 +74,26 @@ const PrimaryNavigationExample = () => {
);
};
-const Template: ComponentStory = (args) => (
-
-);
+export const Play = {
+ args: {
+ shadow: true,
+ position: "sticky",
+ css: {
+ top: 0,
+ left: 0,
+ },
+ children: ,
+ },
-export const Play = Template.bind({});
+ decorators: [
+ (Story) => (
+
+
+
+ ),
+ ],
-Play.args = {
- shadow: true,
- position: "sticky",
- css: {
- top: 0,
- left: 0,
- },
- children: ,
+ name: "App Bar",
};
const Decorator = styled("div", {
@@ -96,13 +102,3 @@ const Decorator = styled("div", {
width: "100%",
height: "calc(100vh * 3);",
});
-
-Play.decorators = [
- (Story) => (
-
-
-
- ),
-];
-
-Play.storyName = "App Bar";
diff --git a/ui/avatar/src/Avatar.tsx b/packages/kit/src/avatar/Avatar.tsx
similarity index 93%
rename from ui/avatar/src/Avatar.tsx
rename to packages/kit/src/avatar/Avatar.tsx
index 705a36e8d..c9b10dadd 100644
--- a/ui/avatar/src/Avatar.tsx
+++ b/packages/kit/src/avatar/Avatar.tsx
@@ -1,9 +1,9 @@
-import * as React from "react";
+import React from "react";
import * as AvatarPrimitive from "@radix-ui/react-avatar";
-import { css, styled } from "@washingtonpost/wpds-theme";
-import * as Tokens from "@washingtonpost/wpds-theme/src/tokens";
+import { css, styled } from "../theme";
+import * as Tokens from "../theme/tokens";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import type * as WPDS from "../theme";
import type * as Stitches from "@stitches/react";
const NAME = "Avatar";
diff --git a/ui/avatar/src/index.ts b/packages/kit/src/avatar/index.ts
similarity index 100%
rename from ui/avatar/src/index.ts
rename to packages/kit/src/avatar/index.ts
diff --git a/packages/kit/src/avatar/play.stories.tsx b/packages/kit/src/avatar/play.stories.tsx
new file mode 100644
index 000000000..ce0489deb
--- /dev/null
+++ b/packages/kit/src/avatar/play.stories.tsx
@@ -0,0 +1,146 @@
+import React from "react";
+import { Avatar as Component } from "./";
+import { styled, theme } from "../theme";
+import type { StoryObj, Meta, StoryFn } from "@storybook/react";
+
+export default {
+ title: "Avatar",
+ component: Component,
+ argTypes: {
+ size: {
+ options: [
+ "025",
+ "050",
+ "075",
+ "087",
+ "100",
+ "125",
+ "150",
+ "175",
+ "200",
+ "225",
+ "250",
+ "275",
+ "300",
+ "350",
+ "400",
+ "450",
+ "500",
+ ],
+ control: { type: "select" },
+ },
+ },
+} as Meta;
+
+const defaultArgs = {
+ size: 200,
+ css: {
+ backgroundColor: theme.colors.subtle,
+ },
+};
+
+const Container = styled("div", {
+ textAlign: "center",
+});
+const Label = styled("h3", {
+ color: theme.colors.primary,
+ margin: 0,
+ textAlign: "center",
+});
+
+export const Avatar: StoryObj = {
+ render: (args) => (
+
+ Avatar with Element using <img /> tag
+
+
+
+
+ ),
+
+ args: { ...defaultArgs },
+};
+
+export const Responsive = {
+ render: (args) => {
+ return (
+
+
+
+ );
+ },
+};
+
+const Row = styled("div", {
+ display: "flex",
+ gap: theme.space["100"],
+});
+
+export const StyledOverride: StoryObj = {
+ render: (args) => {
+ const StyledComponent = styled(Component, {
+ boxShadow: theme.shadows["300"],
+ "&.override": {
+ width: "150px",
+ height: "150px",
+ },
+ });
+
+ return (
+
+
+
+
+
+
+
+
+ );
+ },
+};
+
+export const TokenForSize: StoryObj = {
+ render: (args) => {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+ );
+ },
+};
diff --git a/ui/box/src/box.tsx b/packages/kit/src/box/box.tsx
similarity index 70%
rename from ui/box/src/box.tsx
rename to packages/kit/src/box/box.tsx
index f4fc0a789..ba0841cf2 100644
--- a/ui/box/src/box.tsx
+++ b/packages/kit/src/box/box.tsx
@@ -1,4 +1,4 @@
-import * as Kit from "@washingtonpost/wpds-theme";
+import * as Kit from "../theme";
export const Box = Kit.styled("div");
diff --git a/ui/box/src/index.ts b/packages/kit/src/box/index.ts
similarity index 100%
rename from ui/box/src/index.ts
rename to packages/kit/src/box/index.ts
diff --git a/packages/kit/src/box/play.stories.tsx b/packages/kit/src/box/play.stories.tsx
new file mode 100644
index 000000000..a1fa241fa
--- /dev/null
+++ b/packages/kit/src/box/play.stories.tsx
@@ -0,0 +1,26 @@
+import React from "react";
+import { Box as Component } from "./box";
+
+import type { Meta, StoryFn } from "@storybook/react";
+
+export default {
+ title: "Box",
+ component: Component,
+} as Meta;
+
+const Template: StoryFn = (args) => (
+
+ Hello, World!
+
+);
+
+export const Box = {
+ render: Template,
+ args: {},
+};
diff --git a/ui/button/src/Button.tsx b/packages/kit/src/button/Button.tsx
similarity index 97%
rename from ui/button/src/Button.tsx
rename to packages/kit/src/button/Button.tsx
index 748555bdf..84fcc0546 100644
--- a/ui/button/src/Button.tsx
+++ b/packages/kit/src/button/Button.tsx
@@ -1,5 +1,4 @@
-import { theme, styled } from "@washingtonpost/wpds-theme";
-import * as React from "react";
+import { theme, styled } from "../theme";
export const Button = styled("button", {
display: "flex",
diff --git a/ui/button/src/index.ts b/packages/kit/src/button/index.ts
similarity index 100%
rename from ui/button/src/index.ts
rename to packages/kit/src/button/index.ts
diff --git a/packages/kit/src/button/play.stories.tsx b/packages/kit/src/button/play.stories.tsx
new file mode 100644
index 000000000..17e2904a4
--- /dev/null
+++ b/packages/kit/src/button/play.stories.tsx
@@ -0,0 +1,325 @@
+import React from "react";
+import { expect } from "@storybook/jest";
+import { within, userEvent } from "@storybook/testing-library";
+
+import { Button as Button } from "./Button";
+import { styled, theme } from "../theme";
+import { Icon } from "../icon";
+import Asset from "@washingtonpost/wpds-assets/asset/add";
+
+import type { Meta, StoryObj } from "@storybook/react";
+
+const meta: Meta = {
+ title: "Button",
+ component: Button,
+ argTypes: {
+ onClick: { action: "clicked" },
+ variant: {
+ options: ["primary", "secondary", "cta"],
+ defaultValue: "secondary",
+ },
+ density: {
+ options: ["compact", "default"],
+ defaultValue: "compact",
+ },
+ isOutline: {
+ options: [true, false],
+ defaultValue: false,
+ },
+ icon: {
+ options: ["center", "left", "right", "none"],
+ defaultValue: "none",
+ },
+ },
+ args: {
+ children: "Text button",
+ variant: "secondary",
+ density: "compact",
+ isOutline: false,
+ icon: "none",
+ },
+};
+
+const Column = styled("div", {
+ display: "flex",
+ flexDirection: "row",
+ gap: "$100",
+ alignItems: "center",
+ marginBlockStart: "$200",
+});
+
+const Stack = styled("div", {
+ display: "flex",
+ flexDirection: "column",
+ gap: "$100",
+ alignItems: "center",
+ marginBlockStart: "$200",
+ padding: "$100",
+ borderRadius: "$075",
+});
+
+export default meta;
+type Story = StoryObj;
+
+export const Default: Story = {
+ render: ({ children, ...args }, context) => {
+ return (
+ <>
+
+
+
+ {children}
+
+
+
+
+
+ {children}
+
+
+
+
+
+
+
+
+
+
+ {children}
+
+
+
+
+
+ {children}
+
+
+
+
+
+
+
+
+
+
+ {children}
+
+
+
+
+
+ {children}
+
+
+
+
+
+
+
+
+
+
+
+
+ {children}
+
+
+
+
+
+ {children}
+
+
+
+
+
+
+
+
+
+
+ {children}
+
+
+
+
+
+
+ {children}
+
+
+
+
+
+
+
+
+
+
+ {children}
+
+
+
+
+
+ {children}
+
+
+
+
+
+
+
+
+
+
+
+
+ {children}
+
+
+
+
+
+ {children}
+
+
+
+
+
+
+
+
+
+
+ {children}
+
+
+
+
+
+ {children}
+
+
+
+
+
+
+
+
+
+
+ {children}
+
+
+
+
+
+ {children}
+
+
+
+
+
+
+
+
+
+
+
+ {children}
+
+
+
+
+
+
+
+
+
+ >
+ );
+ },
+};
+
+Default.play = async ({ args, canvasElement }) => {
+ const canvas = within(canvasElement);
+ await userEvent.click(canvas.getByTestId("light-skip-link"));
+ await expect(args.onClick).toHaveBeenCalled();
+};
diff --git a/ui/card/src/Card.tsx b/packages/kit/src/card/Card.tsx
similarity index 80%
rename from ui/card/src/Card.tsx
rename to packages/kit/src/card/Card.tsx
index 7858c49d5..d2b147907 100644
--- a/ui/card/src/Card.tsx
+++ b/packages/kit/src/card/Card.tsx
@@ -1,11 +1,11 @@
-import * as React from "react";
-import type * as WPDS from "@washingtonpost/wpds-theme";
-import { theme, styled } from "@washingtonpost/wpds-theme";
-
+import React from "react";
+import type * as WPDS from "../theme";
+import { theme, styled } from "../theme";
+//
const StyledCard = styled("div", {
padding: theme.space["150"],
border: theme.colors.faint,
- borderRadius: "2px",
+ borderRadius: theme.radii["012"],
borderWidth: "1px",
borderStyle: "solid",
backgroundColor: theme.colors.secondary,
diff --git a/ui/card/README.md b/packages/kit/src/card/README.md
similarity index 100%
rename from ui/card/README.md
rename to packages/kit/src/card/README.md
diff --git a/ui/card/src/index.ts b/packages/kit/src/card/index.ts
similarity index 100%
rename from ui/card/src/index.ts
rename to packages/kit/src/card/index.ts
diff --git a/ui/card/src/play.stories.tsx b/packages/kit/src/card/play.stories.tsx
similarity index 94%
rename from ui/card/src/play.stories.tsx
rename to packages/kit/src/card/play.stories.tsx
index 1065021a7..4b226c511 100644
--- a/ui/card/src/play.stories.tsx
+++ b/packages/kit/src/card/play.stories.tsx
@@ -1,8 +1,8 @@
-import * as React from "react";
+import React from "react";
import { Card as Component } from ".";
-import { theme, styled } from "@washingtonpost/wpds-theme";
-import { Button } from "@washingtonpost/wpds-button";
-import { Accordion, ACCORDION_TYPE } from "@washingtonpost/wpds-accordion";
+import { theme, styled } from "../theme";
+import { Button } from "../button";
+import { Accordion, ACCORDION_TYPE } from "../accordion";
import type { ComponentStory, ComponentMeta } from "@storybook/react";
diff --git a/ui/carousel/src/Carousel.tsx b/packages/kit/src/carousel/Carousel.tsx
similarity index 100%
rename from ui/carousel/src/Carousel.tsx
rename to packages/kit/src/carousel/Carousel.tsx
diff --git a/ui/carousel/src/CarouselContent.test.tsx b/packages/kit/src/carousel/CarouselContent.test.tsx
similarity index 100%
rename from ui/carousel/src/CarouselContent.test.tsx
rename to packages/kit/src/carousel/CarouselContent.test.tsx
diff --git a/ui/carousel/src/CarouselContent.tsx b/packages/kit/src/carousel/CarouselContent.tsx
similarity index 98%
rename from ui/carousel/src/CarouselContent.tsx
rename to packages/kit/src/carousel/CarouselContent.tsx
index 853453e96..9fe8bf8a2 100644
--- a/ui/carousel/src/CarouselContent.tsx
+++ b/packages/kit/src/carousel/CarouselContent.tsx
@@ -1,10 +1,10 @@
-import * as React from "react";
+import React from "react";
-import { styled, theme } from "@washingtonpost/wpds-theme";
-import type * as WPDS from "@washingtonpost/wpds-theme";
-import { nanoid } from "nanoid";
+import { styled, theme } from "../theme";
+import type * as WPDS from "../theme";
import { useSwipeable } from "react-swipeable";
+import { nanoid } from "nanoid";
import { CarouselContext } from "./CarouselRoot";
import { CarouselItemProps } from "./CarouselItem";
diff --git a/ui/carousel/src/CarouselDots.test.tsx b/packages/kit/src/carousel/CarouselDots.test.tsx
similarity index 90%
rename from ui/carousel/src/CarouselDots.test.tsx
rename to packages/kit/src/carousel/CarouselDots.test.tsx
index a0b878b89..d56e426de 100644
--- a/ui/carousel/src/CarouselDots.test.tsx
+++ b/packages/kit/src/carousel/CarouselDots.test.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { render, screen } from "@testing-library/react";
import { CarouselDots } from "./CarouselDots";
diff --git a/ui/carousel/src/CarouselDots.tsx b/packages/kit/src/carousel/CarouselDots.tsx
similarity index 84%
rename from ui/carousel/src/CarouselDots.tsx
rename to packages/kit/src/carousel/CarouselDots.tsx
index cd037330d..6b117dfae 100644
--- a/ui/carousel/src/CarouselDots.tsx
+++ b/packages/kit/src/carousel/CarouselDots.tsx
@@ -1,5 +1,5 @@
-import * as React from "react";
-import { PaginationDots } from "@washingtonpost/wpds-pagination-dots";
+import React from "react";
+import { PaginationDots } from "../pagination-dots";
import { CarouselContext } from "./CarouselRoot";
const NAME = "CarouselDots";
diff --git a/ui/carousel/src/CarouselFooter.test.tsx b/packages/kit/src/carousel/CarouselFooter.test.tsx
similarity index 90%
rename from ui/carousel/src/CarouselFooter.test.tsx
rename to packages/kit/src/carousel/CarouselFooter.test.tsx
index c7dc8caf4..ab5089458 100644
--- a/ui/carousel/src/CarouselFooter.test.tsx
+++ b/packages/kit/src/carousel/CarouselFooter.test.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { render, screen } from "@testing-library/react";
import { CarouselFooter } from "./CarouselFooter";
diff --git a/ui/carousel/src/CarouselFooter.tsx b/packages/kit/src/carousel/CarouselFooter.tsx
similarity index 77%
rename from ui/carousel/src/CarouselFooter.tsx
rename to packages/kit/src/carousel/CarouselFooter.tsx
index fc9d7e371..8e3e48e15 100644
--- a/ui/carousel/src/CarouselFooter.tsx
+++ b/packages/kit/src/carousel/CarouselFooter.tsx
@@ -1,6 +1,6 @@
-import * as React from "react";
-import { styled, theme } from "@washingtonpost/wpds-theme";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import React from "react";
+import { styled, theme } from "../theme";
+import type * as WPDS from "../theme";
const NAME = "CarouselFooter";
diff --git a/ui/carousel/src/CarouselHeader.test.tsx b/packages/kit/src/carousel/CarouselHeader.test.tsx
similarity index 90%
rename from ui/carousel/src/CarouselHeader.test.tsx
rename to packages/kit/src/carousel/CarouselHeader.test.tsx
index 7b684aa43..d393af71d 100644
--- a/ui/carousel/src/CarouselHeader.test.tsx
+++ b/packages/kit/src/carousel/CarouselHeader.test.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { render, screen } from "@testing-library/react";
import { CarouselHeader } from "./CarouselHeader";
diff --git a/ui/carousel/src/CarouselHeader.tsx b/packages/kit/src/carousel/CarouselHeader.tsx
similarity index 76%
rename from ui/carousel/src/CarouselHeader.tsx
rename to packages/kit/src/carousel/CarouselHeader.tsx
index ffecbf8ac..c1bf50fdf 100644
--- a/ui/carousel/src/CarouselHeader.tsx
+++ b/packages/kit/src/carousel/CarouselHeader.tsx
@@ -1,6 +1,6 @@
-import * as React from "react";
-import { styled, theme } from "@washingtonpost/wpds-theme";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import React from "react";
+import { styled, theme } from "../theme";
+import type * as WPDS from "../theme";
const NAME = "CarouselHeader";
diff --git a/ui/carousel/src/CarouselHeaderActions.test.tsx b/packages/kit/src/carousel/CarouselHeaderActions.test.tsx
similarity index 91%
rename from ui/carousel/src/CarouselHeaderActions.test.tsx
rename to packages/kit/src/carousel/CarouselHeaderActions.test.tsx
index 028cdedd9..699fd1b38 100644
--- a/ui/carousel/src/CarouselHeaderActions.test.tsx
+++ b/packages/kit/src/carousel/CarouselHeaderActions.test.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { render, screen } from "@testing-library/react";
import { CarouselHeaderActions } from "./CarouselHeaderActions";
diff --git a/ui/carousel/src/CarouselHeaderActions.tsx b/packages/kit/src/carousel/CarouselHeaderActions.tsx
similarity index 78%
rename from ui/carousel/src/CarouselHeaderActions.tsx
rename to packages/kit/src/carousel/CarouselHeaderActions.tsx
index ad6aeadab..9c3dbccdf 100644
--- a/ui/carousel/src/CarouselHeaderActions.tsx
+++ b/packages/kit/src/carousel/CarouselHeaderActions.tsx
@@ -1,6 +1,6 @@
-import * as React from "react";
-import { styled, theme } from "@washingtonpost/wpds-theme";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import React from "react";
+import { styled, theme } from "../theme";
+import type * as WPDS from "../theme";
const NAME = "CarouselHeaderActions";
diff --git a/ui/carousel/src/CarouselHeaderContent.test.tsx b/packages/kit/src/carousel/CarouselHeaderContent.test.tsx
similarity index 91%
rename from ui/carousel/src/CarouselHeaderContent.test.tsx
rename to packages/kit/src/carousel/CarouselHeaderContent.test.tsx
index 0598c9586..5af2587bc 100644
--- a/ui/carousel/src/CarouselHeaderContent.test.tsx
+++ b/packages/kit/src/carousel/CarouselHeaderContent.test.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { render, screen } from "@testing-library/react";
import { CarouselHeaderContent } from "./CarouselHeaderContent";
diff --git a/ui/carousel/src/CarouselHeaderContent.tsx b/packages/kit/src/carousel/CarouselHeaderContent.tsx
similarity index 77%
rename from ui/carousel/src/CarouselHeaderContent.tsx
rename to packages/kit/src/carousel/CarouselHeaderContent.tsx
index 0ecfbf4b7..21a596bce 100644
--- a/ui/carousel/src/CarouselHeaderContent.tsx
+++ b/packages/kit/src/carousel/CarouselHeaderContent.tsx
@@ -1,6 +1,6 @@
-import * as React from "react";
-import { styled } from "@washingtonpost/wpds-theme";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import React from "react";
+import { styled } from "../theme";
+import type * as WPDS from "../theme";
const NAME = "CarouselHeaderContent";
diff --git a/ui/carousel/src/CarouselItem.test.tsx b/packages/kit/src/carousel/CarouselItem.test.tsx
similarity index 100%
rename from ui/carousel/src/CarouselItem.test.tsx
rename to packages/kit/src/carousel/CarouselItem.test.tsx
diff --git a/ui/carousel/src/CarouselItem.tsx b/packages/kit/src/carousel/CarouselItem.tsx
similarity index 91%
rename from ui/carousel/src/CarouselItem.tsx
rename to packages/kit/src/carousel/CarouselItem.tsx
index fe2170e41..f57ca19f6 100644
--- a/ui/carousel/src/CarouselItem.tsx
+++ b/packages/kit/src/carousel/CarouselItem.tsx
@@ -1,6 +1,6 @@
-import * as React from "react";
-import { styled, theme } from "@washingtonpost/wpds-theme";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import React from "react";
+import { styled, theme } from "../theme";
+import type * as WPDS from "../theme";
import { CarouselContext } from "./CarouselRoot";
import { isItemShown } from "./utils";
diff --git a/ui/carousel/src/CarouselNextButton.test.tsx b/packages/kit/src/carousel/CarouselNextButton.test.tsx
similarity index 82%
rename from ui/carousel/src/CarouselNextButton.test.tsx
rename to packages/kit/src/carousel/CarouselNextButton.test.tsx
index 0786e6a79..4477e65a3 100644
--- a/ui/carousel/src/CarouselNextButton.test.tsx
+++ b/packages/kit/src/carousel/CarouselNextButton.test.tsx
@@ -19,7 +19,8 @@ describe("CarouselNextButton", () => {
expect(screen.getByRole("button")).toBeVisible();
});
- test("triggers context callback on click", () => {
+ test("triggers context callback on click", async () => {
+ const user = userEvent.setup();
const pageChangeHandler = jest.fn();
renderWithContext( , {
page: 0,
@@ -27,11 +28,12 @@ describe("CarouselNextButton", () => {
setPage: pageChangeHandler,
});
- userEvent.click(screen.getByRole("button"));
+ await user.click(screen.getByRole("button"));
expect(pageChangeHandler).toHaveBeenCalledWith(1);
});
- test("triggers callback on click", () => {
+ test("triggers callback on click", async () => {
+ const user = userEvent.setup();
const clickHandler = jest.fn();
renderWithContext( , {
page: 0,
@@ -39,7 +41,7 @@ describe("CarouselNextButton", () => {
setPage: () => undefined,
});
- userEvent.click(screen.getByRole("button"));
+ await user.click(screen.getByRole("button"));
expect(clickHandler).toHaveBeenCalled();
});
diff --git a/ui/carousel/src/CarouselNextButton.tsx b/packages/kit/src/carousel/CarouselNextButton.tsx
similarity index 89%
rename from ui/carousel/src/CarouselNextButton.tsx
rename to packages/kit/src/carousel/CarouselNextButton.tsx
index 456e93d78..8af7983c4 100644
--- a/ui/carousel/src/CarouselNextButton.tsx
+++ b/packages/kit/src/carousel/CarouselNextButton.tsx
@@ -1,8 +1,8 @@
-import * as React from "react";
+import React from "react";
import { Slot } from "@radix-ui/react-slot";
-import { Button } from "@washingtonpost/wpds-button";
-import { Icon } from "@washingtonpost/wpds-icon";
-import { ArrowRight } from "@washingtonpost/wpds-assets/";
+import { Button } from "../button";
+import { Icon } from "../icon";
+import { ArrowRight } from "@washingtonpost/wpds-assets";
import { CarouselContext } from "./CarouselRoot";
const NAME = "CarouselNextButton";
diff --git a/ui/carousel/src/CarouselPreviousButton.test.tsx b/packages/kit/src/carousel/CarouselPreviousButton.test.tsx
similarity index 82%
rename from ui/carousel/src/CarouselPreviousButton.test.tsx
rename to packages/kit/src/carousel/CarouselPreviousButton.test.tsx
index f2ce14c9f..35e4e38cc 100644
--- a/ui/carousel/src/CarouselPreviousButton.test.tsx
+++ b/packages/kit/src/carousel/CarouselPreviousButton.test.tsx
@@ -19,7 +19,8 @@ describe("CarouselPreviousButton", () => {
expect(screen.getByRole("button")).toBeVisible();
});
- test("triggers context callback on click", () => {
+ test("triggers context callback on click", async () => {
+ const user = userEvent.setup();
const pageChangeHandler = jest.fn();
renderWithContext( , {
page: 1,
@@ -27,11 +28,12 @@ describe("CarouselPreviousButton", () => {
setPage: pageChangeHandler,
});
- userEvent.click(screen.getByRole("button"));
+ await user.click(screen.getByRole("button"));
expect(pageChangeHandler).toHaveBeenCalledWith(0);
});
- test("triggers callback on click", () => {
+ test("triggers callback on click", async () => {
+ const user = userEvent.setup();
const clickHandler = jest.fn();
renderWithContext( , {
page: 1,
@@ -39,7 +41,7 @@ describe("CarouselPreviousButton", () => {
setPage: () => undefined,
});
- userEvent.click(screen.getByRole("button"));
+ await user.click(screen.getByRole("button"));
expect(clickHandler).toHaveBeenCalled();
});
diff --git a/ui/carousel/src/CarouselPreviousButton.tsx b/packages/kit/src/carousel/CarouselPreviousButton.tsx
similarity index 89%
rename from ui/carousel/src/CarouselPreviousButton.tsx
rename to packages/kit/src/carousel/CarouselPreviousButton.tsx
index 0eee7f2ab..0ec864685 100644
--- a/ui/carousel/src/CarouselPreviousButton.tsx
+++ b/packages/kit/src/carousel/CarouselPreviousButton.tsx
@@ -1,8 +1,8 @@
-import * as React from "react";
+import React from "react";
import { Slot } from "@radix-ui/react-slot";
-import { Button } from "@washingtonpost/wpds-button";
-import { Icon } from "@washingtonpost/wpds-icon";
-import { ArrowLeft } from "@washingtonpost/wpds-assets/";
+import { Button } from "../button";
+import { Icon } from "../icon";
+import { ArrowLeft } from "@washingtonpost/wpds-assets";
import { CarouselContext } from "./CarouselRoot";
const NAME = "CarouselPreviousButton";
diff --git a/ui/carousel/src/CarouselRoot.test.tsx b/packages/kit/src/carousel/CarouselRoot.test.tsx
similarity index 90%
rename from ui/carousel/src/CarouselRoot.test.tsx
rename to packages/kit/src/carousel/CarouselRoot.test.tsx
index 6cb52d29b..c34b4f6f4 100644
--- a/ui/carousel/src/CarouselRoot.test.tsx
+++ b/packages/kit/src/carousel/CarouselRoot.test.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { render, screen } from "@testing-library/react";
import { CarouselRoot } from "./CarouselRoot";
diff --git a/ui/carousel/src/CarouselRoot.tsx b/packages/kit/src/carousel/CarouselRoot.tsx
similarity index 95%
rename from ui/carousel/src/CarouselRoot.tsx
rename to packages/kit/src/carousel/CarouselRoot.tsx
index 08b05e831..06212b5c3 100644
--- a/ui/carousel/src/CarouselRoot.tsx
+++ b/packages/kit/src/carousel/CarouselRoot.tsx
@@ -1,7 +1,7 @@
-import * as React from "react";
+import React from "react";
import { useControllableState } from "@radix-ui/react-use-controllable-state";
-import { styled } from "@washingtonpost/wpds-theme";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import { styled } from "../theme";
+import type * as WPDS from "../theme";
type CarouselContextProps = {
page: number;
diff --git a/ui/carousel/src/CarouselTitle.test.tsx b/packages/kit/src/carousel/CarouselTitle.test.tsx
similarity index 90%
rename from ui/carousel/src/CarouselTitle.test.tsx
rename to packages/kit/src/carousel/CarouselTitle.test.tsx
index 75108d2b4..8c33129a0 100644
--- a/ui/carousel/src/CarouselTitle.test.tsx
+++ b/packages/kit/src/carousel/CarouselTitle.test.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { render, screen } from "@testing-library/react";
import { CarouselTitle } from "./CarouselTitle";
diff --git a/ui/carousel/src/CarouselTitle.tsx b/packages/kit/src/carousel/CarouselTitle.tsx
similarity index 77%
rename from ui/carousel/src/CarouselTitle.tsx
rename to packages/kit/src/carousel/CarouselTitle.tsx
index 92857c0ea..ef8d6fea0 100644
--- a/ui/carousel/src/CarouselTitle.tsx
+++ b/packages/kit/src/carousel/CarouselTitle.tsx
@@ -1,9 +1,11 @@
-import * as React from "react";
+import React from "react";
+
import { nanoid } from "nanoid";
-import { styled, theme } from "@washingtonpost/wpds-theme";
+
+import { styled, theme } from "../theme";
import { CarouselContext } from "./CarouselRoot";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import type * as WPDS from "../theme";
const NAME = "CarouselTitle";
@@ -24,8 +26,9 @@ export const CarouselTitle = React.forwardRef<
const { titleId, setTitleId } = React.useContext(CarouselContext);
React.useEffect(() => {
- const id = `${nanoid(6)}-title`;
- setTitleId && setTitleId(id);
+ if (setTitleId) {
+ setTitleId(`${nanoid(6)}-title`);
+ }
}, [setTitleId]);
return (
diff --git a/ui/carousel/src/index.ts b/packages/kit/src/carousel/index.ts
similarity index 100%
rename from ui/carousel/src/index.ts
rename to packages/kit/src/carousel/index.ts
diff --git a/ui/carousel/src/play.stories.jsx b/packages/kit/src/carousel/play.stories.jsx
similarity index 95%
rename from ui/carousel/src/play.stories.jsx
rename to packages/kit/src/carousel/play.stories.jsx
index 027071cea..60e6eb33b 100644
--- a/ui/carousel/src/play.stories.jsx
+++ b/packages/kit/src/carousel/play.stories.jsx
@@ -1,11 +1,11 @@
-import * as React from "react";
+import { useState, useRef } from "react";
import { userEvent, waitFor, within } from "@storybook/testing-library";
import { expect } from "@storybook/jest";
-import { styled, theme } from "@washingtonpost/wpds-theme";
+import { styled, theme } from "../theme";
import { Carousel as Component } from "./";
-import { Box } from "@washingtonpost/wpds-box";
-import { Button } from "@washingtonpost/wpds-button";
-import { Icon } from "@washingtonpost/wpds-icon";
+import { Box } from "../box";
+import { Button } from "../button";
+import { Icon } from "../icon";
import { Play, Pause } from "@washingtonpost/wpds-assets";
import { useActiveDescendant } from "./useActiveDescendant";
@@ -27,7 +27,7 @@ export default {
};
const Template = (args) => {
- const [page, setPage] = React.useState(0);
+ const [page, setPage] = useState(0);
const items = [
theme.colors.red400,
theme.colors.orange400,
@@ -175,9 +175,9 @@ CustomButtons.parameters = {
const SlideshowTemplate = (args) => {
const items = new Array(4).fill("");
- const [page, setPage] = React.useState(0);
- const wrapRef = React.useRef(false);
- const [intervalId, setIntervalId] = React.useState();
+ const [page, setPage] = useState(0);
+ const wrapRef = useRef(false);
+ const [intervalId, setIntervalId] = useState();
const handleOnClick = () => {
const wrapPages = (currentPage) => {
@@ -305,7 +305,7 @@ const BrightsCarouselTemplate = (args) => {
},
];
- const [focused, setFocused] = React.useState();
+ const [focused, setFocused] = useState();
const triggerActiveLink = () => {
window.open(focused.url);
@@ -404,7 +404,7 @@ const VerticalVideoTemplate = () => {
{ id: "title-5", headline: "Title 5", byline: "Author 5" },
];
- const containerRef = React.useRef(null);
+ const containerRef = useRef(null);
const { addDescendant, handleDescendantFocus, contentProps } =
useActiveDescendant(containerRef);
@@ -555,7 +555,7 @@ export const VerticalVideo = VerticalVideoTemplate.bind({});
const InteractionsTemplate = () => {
const items = [{ id: "item-1" }, { id: "item-2" }, { id: "item-3" }];
- const containerRef = React.useRef(null);
+ const containerRef = useRef(null);
const { handleDescendantFocus, contentProps, addDescendant, focusClassName } =
useActiveDescendant(containerRef);
return (
@@ -629,8 +629,8 @@ Interactions.play = async ({ canvasElement }) => {
};
const InternalFocusTemplate = () => {
- const [asyncState, setAsyncState] = React.useState(false);
- const containerRef = React.useRef();
+ const [asyncState, setAsyncState] = useState(false);
+ const containerRef = useRef();
const { handleDescendantFocus, contentProps, addDescendant, focusClassName } =
useActiveDescendant(containerRef);
return (
@@ -700,26 +700,41 @@ const InternalFocusTemplate = () => {
export const InternalFocusInteractions = InternalFocusTemplate.bind({});
+InternalFocusInteractions.parameters = {
+ chromatic: { viewports: [1024], disableSnapshot: true },
+};
+function hasClassContaining(el, str) {
+ return Array.from(el.classList).findIndex((cls) =>
+ cls.toLowerCase().includes(str)
+ ) !== -1
+ ? true
+ : false;
+}
+
InternalFocusInteractions.play = async ({ canvasElement }) => {
const canvas = within(canvasElement);
await userEvent.tab();
await userEvent.tab();
await userEvent.tab();
await userEvent.keyboard("[ArrowDown]");
+
const groups = canvas.getAllByRole("group");
const content = groups[1];
expect(content).toHaveAttribute("aria-activedescendant", "button-id-0");
+
const button1 = canvas.getByText("Action 1");
await userEvent.click(button1);
await waitFor(() =>
- expect(button1).toHaveClass("wpds-c-kSOqLF-bywHgD-variant-primary")
+ expect(hasClassContaining(button1, "variant-primary")).toBe(true)
);
+
const button2 = canvas.getByText("Action 2");
await userEvent.click(button2);
await waitFor(() =>
- expect(button2).toHaveClass("wpds-c-kSOqLF-bywHgD-variant-primary")
+ expect(hasClassContaining(button2, "variant-primary")).toBe(true)
);
+
await userEvent.click(canvas.getAllByRole("main")[0]);
const item2 = canvas.getByLabelText("3 of 10");
- expect(item2).not.toHaveClass("wpds-c-lnwwct-jEMdsi-focused-true");
+ expect(hasClassContaining(item2, "focused-true")).not.toBe(true);
};
diff --git a/ui/carousel/src/useActiveDescendant.test.tsx b/packages/kit/src/carousel/useActiveDescendant.test.tsx
similarity index 72%
rename from ui/carousel/src/useActiveDescendant.test.tsx
rename to packages/kit/src/carousel/useActiveDescendant.test.tsx
index c8283c9e5..4da51f42c 100644
--- a/ui/carousel/src/useActiveDescendant.test.tsx
+++ b/packages/kit/src/carousel/useActiveDescendant.test.tsx
@@ -1,4 +1,4 @@
-import * as React from "react";
+import { useRef } from "react";
import { render, screen } from "@testing-library/react";
import userEvent from "@testing-library/user-event";
import { useActiveDescendant } from "./useActiveDescendant";
@@ -7,7 +7,7 @@ import { CarouselContent } from "./CarouselContent";
import { CarouselItem } from "./CarouselItem";
const ComponentWrapper = ({ onClick }: { onClick?: () => void }) => {
- const containerRef = React.useRef(null);
+ const containerRef = useRef(null);
const { handleDescendantFocus, contentProps, addDescendant, focusClassName } =
useActiveDescendant(containerRef);
@@ -76,77 +76,84 @@ describe("useActiveDescendant", () => {
expect(screen.getByText("Test 1")).toBeVisible();
});
- test("uses the down arrow to navigate to child elements", () => {
+ test("uses the down arrow to navigate to child elements", async () => {
+ const user = userEvent.setup();
render( );
const groups = screen.getAllByRole("group");
const content = groups[1];
- userEvent.tab();
+ await user.tab();
expect(content).toHaveFocus();
expect(content).toHaveAttribute("aria-activedescendant", "test-1");
- userEvent.keyboard("[ArrowDown]");
+ await user.keyboard("[ArrowDown]");
expect(screen.getByText("Test 1")).toHaveClass(activeClassname);
expect(content).toHaveAttribute("aria-activedescendant", "test-1-link");
});
- test("uses the up arrow to navigate away from child elements", () => {
+ test("uses the up arrow to navigate away from child elements", async () => {
+ const user = userEvent.setup();
render( );
- userEvent.tab();
- userEvent.keyboard("[ArrowDown]");
- userEvent.keyboard("[ArrowUp]");
+ await user.tab();
+ await user.keyboard("[ArrowDown]");
+ await user.keyboard("[ArrowUp]");
expect(screen.getByText("Test 1")).not.toHaveClass(activeClassname);
});
- test("uses the up and down arrow to navigate between child elements", () => {
+ test("uses the up and down arrow to navigate between child elements", async () => {
+ const user = userEvent.setup();
render( );
const groups = screen.getAllByRole("group");
const content = groups[1];
- userEvent.tab();
- userEvent.keyboard("[ArrowDown]");
- userEvent.keyboard("[ArrowDown]");
+ await user.tab();
+ await user.keyboard("[ArrowDown]");
+ await user.keyboard("[ArrowDown]");
expect(screen.getByText("Test 1.2")).toHaveClass(activeClassname);
expect(content).toHaveAttribute("aria-activedescendant", "test-1-link-2");
- userEvent.keyboard("[ArrowUp]");
+ await user.keyboard("[ArrowUp]");
expect(screen.getByText("Test 1")).toHaveClass(activeClassname);
expect(screen.getByText("Test 1.2")).not.toHaveClass(activeClassname);
expect(content).toHaveAttribute("aria-activedescendant", "test-1-link");
});
- test("removes active child when new parent becomes active", () => {
+ test("removes active child when new parent becomes active", async () => {
+ const user = userEvent.setup();
render( );
const groups = screen.getAllByRole("group");
const content = groups[1];
- userEvent.tab();
- userEvent.keyboard("[ArrowDown]");
- userEvent.keyboard("[ArrowRight]");
+ await user.tab();
+ await user.keyboard("[ArrowDown]");
+ await user.keyboard("[ArrowRight]");
expect(screen.getByText("Test 1")).not.toHaveClass(activeClassname);
expect(content).toHaveAttribute("aria-activedescendant", "test-2");
});
- test("removes active child when content loses focus", () => {
+ test("removes active child when content loses focus", async () => {
+ const user = userEvent.setup();
render( );
- userEvent.tab();
- userEvent.keyboard("[ArrowDown]");
- userEvent.tab();
+ await user.tab();
+ await user.keyboard("[ArrowDown]");
+ await user.tab();
expect(screen.getByText("Test 1")).not.toHaveClass(activeClassname);
});
- test("replaces active child when content returns focus", () => {
+ test("replaces active child when content returns focus", async () => {
+ const user = userEvent.setup();
render( );
- userEvent.tab();
- userEvent.keyboard("[ArrowDown]");
- userEvent.tab();
- userEvent.tab();
+ await user.tab();
+ await user.keyboard("[ArrowDown]");
+ await user.tab();
+ await user.tab();
expect(screen.getByText("Test 1")).toHaveClass(activeClassname);
});
- test("fires child click event from keyboard interaction", () => {
+ test("fires child click event from keyboard interaction", async () => {
+ const user = userEvent.setup();
const handleClick = jest.fn();
render( );
- userEvent.tab();
- userEvent.keyboard("[ArrowRight]");
- userEvent.keyboard("[ArrowDown]");
- userEvent.keyboard("[Space]");
- userEvent.keyboard("[Enter]");
+ await user.tab();
+ await user.keyboard("[ArrowRight]");
+ await user.keyboard("[ArrowDown]");
+ await user.keyboard("[Space]");
+ await user.keyboard("[Enter]");
expect(handleClick).toHaveBeenCalledTimes(2);
});
});
diff --git a/ui/carousel/src/useActiveDescendant.ts b/packages/kit/src/carousel/useActiveDescendant.ts
similarity index 99%
rename from ui/carousel/src/useActiveDescendant.ts
rename to packages/kit/src/carousel/useActiveDescendant.ts
index 7b398a45a..cc21c556f 100644
--- a/ui/carousel/src/useActiveDescendant.ts
+++ b/packages/kit/src/carousel/useActiveDescendant.ts
@@ -1,5 +1,5 @@
/** manage aria-activedescendant */
-import { css, theme } from "@washingtonpost/wpds-theme";
+import { css, theme } from "../theme";
import { useState, useRef, useCallback } from "react";
const focused = css({
diff --git a/ui/carousel/src/utils.tsx b/packages/kit/src/carousel/utils.tsx
similarity index 100%
rename from ui/carousel/src/utils.tsx
rename to packages/kit/src/carousel/utils.tsx
diff --git a/ui/checkbox/src/Checkbox.tsx b/packages/kit/src/checkbox/Checkbox.tsx
similarity index 97%
rename from ui/checkbox/src/Checkbox.tsx
rename to packages/kit/src/checkbox/Checkbox.tsx
index fd075c0e5..6d24bb140 100644
--- a/ui/checkbox/src/Checkbox.tsx
+++ b/packages/kit/src/checkbox/Checkbox.tsx
@@ -1,12 +1,12 @@
-import * as React from "react";
+import React from "react";
-import { styled, theme } from "@washingtonpost/wpds-theme";
+import { styled, theme } from "../theme";
import { Check, Indeterminate } from "@washingtonpost/wpds-assets";
import * as PrimitiveCheckbox from "@radix-ui/react-checkbox";
-import { InputLabel } from "@washingtonpost/wpds-input-label";
+import { InputLabel } from "../input-label";
const StyledCheckbox = styled(PrimitiveCheckbox.Root, {
transition: `background ${theme.transitions.fast} ${theme.transitions.inOut}`,
diff --git a/ui/checkbox/src/index.ts b/packages/kit/src/checkbox/index.ts
similarity index 100%
rename from ui/checkbox/src/index.ts
rename to packages/kit/src/checkbox/index.ts
diff --git a/ui/checkbox/src/play.stories.tsx b/packages/kit/src/checkbox/play.stories.tsx
similarity index 90%
rename from ui/checkbox/src/play.stories.tsx
rename to packages/kit/src/checkbox/play.stories.tsx
index 2b7e26c52..225ce9534 100644
--- a/ui/checkbox/src/play.stories.tsx
+++ b/packages/kit/src/checkbox/play.stories.tsx
@@ -1,8 +1,8 @@
-import * as React from "react";
-import { styled, theme } from "@washingtonpost/wpds-theme";
+import React, { useState } from "react";
+import { styled, theme } from "../theme";
import { Checkbox as Component } from ".";
-import type { ComponentStory, ComponentMeta } from "@storybook/react";
+import type { StoryFn, Meta } from "@storybook/react";
const variants = ["primary", "secondary", "cta"];
const size = ["087", "125"];
@@ -70,25 +70,27 @@ export default {
control: "text",
},
},
-} as ComponentMeta;
+} as Meta;
-export const Play = (args) => {
- const [checked, setChecked] = React.useState(false);
+export const Play = {
+ render: (args) => {
+ const [checked, setChecked] = useState(false);
- return (
-
- );
-};
-Play.args = {};
+ return (
+
+ );
+ },
-Play.storyName = "Checkbox";
+ args: {},
+ name: "Checkbox",
+};
-const ChromaticTemplate: ComponentStory = () => {
+const ChromaticTemplate: StoryFn = () => {
const isRequired = true;
return (
<>
@@ -261,12 +263,15 @@ const ChromaticTemplate: ComponentStory = () => {
);
};
-export const Chromatic = ChromaticTemplate.bind({});
-Chromatic.args = {};
-Chromatic.decorators = [
- (Story) => (
-
-
-
- ),
-];
+export const Chromatic = {
+ render: ChromaticTemplate,
+ args: {},
+
+ decorators: [
+ (Story) => (
+
+
+
+ ),
+ ],
+};
diff --git a/ui/container/src/Container.tsx b/packages/kit/src/container/Container.tsx
similarity index 95%
rename from ui/container/src/Container.tsx
rename to packages/kit/src/container/Container.tsx
index cc7701926..51c523e71 100644
--- a/ui/container/src/Container.tsx
+++ b/packages/kit/src/container/Container.tsx
@@ -1,4 +1,4 @@
-import * as Theme from "@washingtonpost/wpds-theme";
+import * as Theme from "../theme";
import * as React from "react";
export const Container = Theme.styled("div", {
diff --git a/ui/container/src/index.ts b/packages/kit/src/container/index.ts
similarity index 100%
rename from ui/container/src/index.ts
rename to packages/kit/src/container/index.ts
diff --git a/packages/kit/src/container/play.stories.tsx b/packages/kit/src/container/play.stories.tsx
new file mode 100644
index 000000000..3d0d9b560
--- /dev/null
+++ b/packages/kit/src/container/play.stories.tsx
@@ -0,0 +1,63 @@
+import React from "react";
+import { Box } from "../box";
+import { Container as Component } from ".";
+
+import type { StoryFn, Meta } from "@storybook/react";
+
+export default {
+ title: "Container",
+ component: Component,
+ argTypes: {
+ maxWidth: {
+ options: ["fluid", "sm", "md", "lg", "xl"],
+ defaultValue: "fluid",
+ },
+ },
+ parameters: {
+ layout: "fullscreen",
+ },
+ args: {
+ maxWidth: "fluid",
+ },
+} as Meta;
+
+const Template: StoryFn = (args) => (
+ <>
+ Extra lg
+ lg
+ md
+ sm
+ Fluid
+ Play
+ >
+);
+
+export const Container = {
+ render: Template,
+ args: {},
+
+ decorators: [
+ (Story) => (
+ *": {
+ border: "1px dashed $gray100",
+ background: "rgb(148, 83, 140, 0.2)",
+ height: "$500",
+ color: "$primary",
+ },
+ }}
+ >
+
+
+ ),
+ ],
+
+ parameters: {
+ chromatic: { viewports: [767, 768, 900, 1024, 1440] },
+ },
+};
diff --git a/packages/kit/src/dialog/Dialog.tsx b/packages/kit/src/dialog/Dialog.tsx
new file mode 100644
index 000000000..9f0f4b15e
--- /dev/null
+++ b/packages/kit/src/dialog/Dialog.tsx
@@ -0,0 +1,39 @@
+import { DialogRoot } from "./DialogRoot";
+import { DialogContent } from "./DialogContent";
+import { DialogTrigger } from "./DialogTrigger";
+import { DialogPortal } from "./DialogPortal";
+import { DialogOverlay } from "./DialogOverlay";
+import { DialogTitle } from "./DialogTitle";
+import { DialogDescription } from "./DialogDescription";
+import { DialogClose } from "./DialogClose";
+import { DialogHeader } from "./DialogHeader";
+import { DialogBody } from "./DialogBody";
+import { DialogFooter } from "./DialogFooter";
+
+export type DialogProps = {
+ Root: typeof DialogRoot;
+ Content: typeof DialogContent;
+ Trigger: typeof DialogTrigger;
+ Portal: typeof DialogPortal;
+ Overlay: typeof DialogOverlay;
+ Title: typeof DialogTitle;
+ Description: typeof DialogDescription;
+ Close: typeof DialogClose;
+ Header: typeof DialogHeader;
+ Body: typeof DialogBody;
+ Footer: typeof DialogFooter;
+};
+
+export const Dialog: DialogProps = {
+ Root: DialogRoot,
+ Content: DialogContent,
+ Trigger: DialogTrigger,
+ Portal: DialogPortal,
+ Overlay: DialogOverlay,
+ Title: DialogTitle,
+ Description: DialogDescription,
+ Close: DialogClose,
+ Header: DialogHeader,
+ Body: DialogBody,
+ Footer: DialogFooter,
+};
diff --git a/packages/kit/src/dialog/DialogBody.test.tsx b/packages/kit/src/dialog/DialogBody.test.tsx
new file mode 100644
index 000000000..cf78c79d4
--- /dev/null
+++ b/packages/kit/src/dialog/DialogBody.test.tsx
@@ -0,0 +1,25 @@
+import * as React from "react";
+import { render, screen } from "@testing-library/react";
+import { DialogBody } from "./DialogBody";
+
+const ComponentWrapper = () => {
+ const bodyRef = React.useRef(null);
+ return {bodyRef.current && `ref`} ;
+};
+
+describe("DialogBody", () => {
+ test("renders visibly into the document", () => {
+ render(test );
+ expect(screen.getByText("test")).toBeVisible();
+ });
+ test("accepts callback ref", () => {
+ const callbackRef = jest.fn();
+ render( );
+ expect(callbackRef).toHaveBeenCalled();
+ });
+ test("accepts ref", () => {
+ const { rerender } = render( );
+ rerender( );
+ expect(screen.getByText("ref")).toBeVisible();
+ });
+});
diff --git a/packages/kit/src/dialog/DialogBody.tsx b/packages/kit/src/dialog/DialogBody.tsx
new file mode 100644
index 000000000..332654746
--- /dev/null
+++ b/packages/kit/src/dialog/DialogBody.tsx
@@ -0,0 +1,61 @@
+import * as React from "react";
+import { styled, theme } from "../theme";
+
+import type * as WPDS from "../theme";
+
+const NAME = "DialogBody";
+
+const StyledBody = styled("div", {
+ color: theme.colors.primary,
+ fontFamily: theme.fonts.meta,
+ fontSize: theme.fontSizes["100"],
+ fontWeight: theme.fontWeights.light,
+ lineHeight: theme.lineHeights["125"],
+ gridArea: "body",
+ maxHeight: "100%",
+ overflowY: "auto",
+ variants: {
+ isOverflow: {
+ true: {
+ marginInlineEnd: `calc(-1 * ${theme.space["150"]})`,
+ paddingInlineEnd: theme.space["125"],
+ },
+ },
+ },
+});
+
+export type DialogBodyProps = {
+ /** Any React node may be used as a child */
+ children?: React.ReactNode;
+ /** Override CSS */
+ css?: WPDS.CSS;
+} & React.ComponentPropsWithRef;
+
+export const DialogBody = React.forwardRef(
+ ({ children, ...props }: DialogBodyProps, ref) => {
+ const internalRef = React.useRef(null);
+
+ React.useEffect(() => {
+ if (!ref) return;
+ typeof ref === "function"
+ ? ref(internalRef.current)
+ : (ref.current = internalRef.current);
+ }, [ref, internalRef]);
+
+ const [isOverflow, setIsOverflow] = React.useState(false);
+
+ React.useEffect(() => {
+ if (!internalRef.current) return;
+ const element = internalRef.current;
+ setIsOverflow(element.scrollHeight > element.clientHeight);
+ }, [children, setIsOverflow]);
+
+ return (
+
+ {children}
+
+ );
+ }
+);
+
+DialogBody.displayName = NAME;
diff --git a/packages/kit/src/dialog/DialogClose.test.tsx b/packages/kit/src/dialog/DialogClose.test.tsx
new file mode 100644
index 000000000..1d4c53cdf
--- /dev/null
+++ b/packages/kit/src/dialog/DialogClose.test.tsx
@@ -0,0 +1,23 @@
+import * as React from "react";
+import { render, screen } from "@testing-library/react";
+import { DialogRoot } from "./DialogRoot";
+import { DialogClose } from "./DialogClose";
+
+const customRender = (component) => {
+ return render({component} );
+};
+
+describe("DialogClose", () => {
+ test("renders visibly into the document", () => {
+ customRender( );
+ expect(screen.getByRole("button")).toBeVisible();
+ });
+ test("honors asChild prop", () => {
+ customRender(
+
+ Cancel
+
+ );
+ expect(screen.getByText("Cancel")).toBeVisible();
+ });
+});
diff --git a/packages/kit/src/dialog/DialogClose.tsx b/packages/kit/src/dialog/DialogClose.tsx
new file mode 100644
index 000000000..1538067da
--- /dev/null
+++ b/packages/kit/src/dialog/DialogClose.tsx
@@ -0,0 +1,56 @@
+import * as React from "react";
+import * as DialogPrimitive from "@radix-ui/react-dialog";
+import { styled, theme } from "../theme";
+import { Button } from "../button";
+import { Icon } from "../icon";
+import { Close } from "@washingtonpost/wpds-assets";
+
+import type * as WPDS from "../theme";
+
+const NAME = "DialogClose";
+
+const StyledClose = styled(DialogPrimitive.Close, {
+ variants: {
+ main: {
+ true: {
+ position: "absolute",
+ insetBlockStart: theme.space["100"],
+ insetInlineEnd: theme.space["100"],
+ },
+ },
+ },
+});
+
+export type DialogCloseProps = {
+ /** Any React node may be used as a child */
+ children?: React.ReactNode;
+ /** Override CSS */
+ css?: WPDS.CSS;
+} & React.ComponentPropsWithRef;
+
+export const DialogClose = React.forwardRef<
+ HTMLButtonElement,
+ DialogCloseProps
+>(({ ...props }, ref) => {
+ if (props.asChild) {
+ return ;
+ } else {
+ return (
+
+
+
+
+
+
+
+ );
+ }
+});
+
+DialogClose.displayName = NAME;
diff --git a/packages/kit/src/dialog/DialogContent.test.tsx b/packages/kit/src/dialog/DialogContent.test.tsx
new file mode 100644
index 000000000..7ac9b8f3e
--- /dev/null
+++ b/packages/kit/src/dialog/DialogContent.test.tsx
@@ -0,0 +1,15 @@
+import * as React from "react";
+import { render, screen } from "@testing-library/react";
+import { DialogRoot } from "./DialogRoot";
+import { DialogContent } from "./DialogContent";
+
+const customRender = (component, rootProps = {}) => {
+ return render({component} );
+};
+
+describe("DialogContent", () => {
+ test("renders visibly into the document", () => {
+ customRender( , { defaultOpen: true });
+ expect(screen.getByRole("dialog")).toBeVisible();
+ });
+});
diff --git a/packages/kit/src/dialog/DialogContent.tsx b/packages/kit/src/dialog/DialogContent.tsx
new file mode 100644
index 000000000..f049e408c
--- /dev/null
+++ b/packages/kit/src/dialog/DialogContent.tsx
@@ -0,0 +1,130 @@
+import * as React from "react";
+import * as DialogPrimitive from "@radix-ui/react-dialog";
+import { theme, styled } from "../theme";
+import { CSSTransition } from "react-transition-group";
+import { DialogContext } from "./DialogRoot";
+
+import type { DialogContentProps as RadixDialogContentProps } from "@radix-ui/react-dialog";
+import type { StandardLonghandProperties } from "@stitches/react/types/css";
+import type * as WPDS from "../theme";
+
+const NAME = "DialogContent";
+
+const StyledContent = styled(DialogPrimitive.Content, {
+ borderRadius: theme.radii["025"],
+ boxShadow: theme.shadows["300"],
+ color: theme.colors.primary,
+ containerType: "inline-size",
+ display: "grid",
+ gridTemplateAreas: "'header' 'body' 'footer'",
+ gridTemplateRows: "auto 1fr auto",
+ padding: theme.space["150"],
+ position: "fixed",
+ top: "50%",
+ left: "50%",
+ transform: "translate(-50%, -50%)",
+ "&.wpds-dialog-content-enter, &.wpds-dialog-content-appear": {
+ transform: "translate(-50%, -47%)",
+ opacity: 0,
+ },
+ "&.wpds-dialog-content-enter-active, &.wpds-dialog-content-appear-active": {
+ transform: "translate(-50%, -50%)",
+ opacity: 1,
+ transition: `
+ transform ${theme.transitions.normal} ${theme.transitions.inOut},
+ opacity ${theme.transitions.normal} ${theme.transitions.inOut}
+ `,
+ "@reducedMotion": {
+ transition: "none",
+ },
+ },
+ "&.wpds-dialog-content-exit": {
+ transform: "translate(-50%, -50%)",
+ opacity: 1,
+ },
+ "&.wpds-dialog-content-exit-active": {
+ transform: "translate(-50%, -50%) scale(0.97)",
+ opacity: 0,
+ transition: `
+ transform ${theme.transitions.fast} ${theme.transitions.inOut},
+ opacity ${theme.transitions.fast} ${theme.transitions.inOut}
+ `,
+ "@reducedMotion": {
+ transition: "none",
+ },
+ },
+});
+
+export type DialogContentProps = {
+ /** Css background color of content*/
+ backgroundColor?:
+ | StandardLonghandProperties["backgroundColor"]
+ | (typeof theme.colors)[keyof typeof theme.colors];
+ /** Any React node may be used as a child */
+ children?: React.ReactNode;
+ /** Override CSS */
+ css?: WPDS.CSS;
+ /** Width in any valid css string */
+ width?: string;
+ /** Height in any valid css string */
+ height?: string;
+ /** Css z-index */
+ zIndex?:
+ | StandardLonghandProperties["zIndex"]
+ | (typeof theme.zIndices)[keyof typeof theme.zIndices];
+} & RadixDialogContentProps;
+
+export const DialogContent = React.forwardRef<
+ HTMLDivElement,
+ DialogContentProps
+>(
+ (
+ {
+ backgroundColor = theme.colors.secondary,
+ children,
+ css,
+ forceMount = true,
+ width = "500px",
+ height = "300px",
+ zIndex = theme.zIndices.offer,
+ ...props
+ }: DialogContentProps,
+ ref
+ ) => {
+ const { open } = React.useContext(DialogContext);
+
+ const internalRef = React.useRef(null);
+ React.useEffect(() => {
+ if (!ref) return;
+ typeof ref === "function"
+ ? ref(internalRef.current)
+ : (ref.current = internalRef.current);
+ }, [ref, internalRef]);
+
+ return (
+
+
+ {children}
+
+
+ );
+ }
+);
+
+DialogContent.displayName = NAME;
diff --git a/packages/kit/src/dialog/DialogDescription.test.tsx b/packages/kit/src/dialog/DialogDescription.test.tsx
new file mode 100644
index 000000000..74748e2bd
--- /dev/null
+++ b/packages/kit/src/dialog/DialogDescription.test.tsx
@@ -0,0 +1,17 @@
+import * as React from "react";
+import { render, screen } from "@testing-library/react";
+import { DialogRoot } from "./DialogRoot";
+import { DialogDescription } from "./DialogDescription";
+
+const customRender = (component, rootProps = {}) => {
+ return render({component} );
+};
+
+describe("DialogDescription", () => {
+ test("renders visibly into the document", () => {
+ customRender(test , {
+ defaultOpen: true,
+ });
+ expect(screen.getByText("test")).toBeVisible();
+ });
+});
diff --git a/packages/kit/src/dialog/DialogDescription.tsx b/packages/kit/src/dialog/DialogDescription.tsx
new file mode 100644
index 000000000..636dd5a29
--- /dev/null
+++ b/packages/kit/src/dialog/DialogDescription.tsx
@@ -0,0 +1,41 @@
+import * as React from "react";
+import * as DialogPrimitive from "@radix-ui/react-dialog";
+import { theme, styled } from "../theme";
+
+import type { DialogDescriptionProps as RadixDialogDescriptionProps } from "@radix-ui/react-dialog";
+import type * as WPDS from "../theme";
+
+const NAME = "DialogDescription";
+
+const StyledDescription = styled(DialogPrimitive.Description, {
+ color: theme.colors.primary,
+ fontFamily: theme.fonts.meta,
+ fontSize: theme.fontSizes["100"],
+ fontWeight: theme.fontWeights.light,
+ lineHeight: theme.lineHeights["125"],
+ marginBlockStart: 0,
+ marginBlockEnd: theme.space["125"],
+ "&:last-child": {
+ marginBlockEnd: 0,
+ },
+});
+
+export type DialogDescriptionProps = {
+ /** Any React node may be used as a child */
+ children?: React.ReactNode;
+ /** Override CSS */
+ css?: WPDS.CSS;
+} & RadixDialogDescriptionProps;
+
+export const DialogDescription = React.forwardRef<
+ HTMLParagraphElement,
+ DialogDescriptionProps
+>(({ children, ...props }: DialogDescriptionProps, ref) => {
+ return (
+
+ {children}
+
+ );
+});
+
+DialogDescription.displayName = NAME;
diff --git a/packages/kit/src/dialog/DialogFooter.test.tsx b/packages/kit/src/dialog/DialogFooter.test.tsx
new file mode 100644
index 000000000..ab7b268f3
--- /dev/null
+++ b/packages/kit/src/dialog/DialogFooter.test.tsx
@@ -0,0 +1,10 @@
+import * as React from "react";
+import { render, screen } from "@testing-library/react";
+import { DialogFooter } from "./DialogFooter";
+
+describe("DialogFooter", () => {
+ test("renders visibly into the document", () => {
+ render( );
+ expect(screen.getByRole("contentinfo")).toBeVisible();
+ });
+});
diff --git a/packages/kit/src/dialog/DialogFooter.tsx b/packages/kit/src/dialog/DialogFooter.tsx
new file mode 100644
index 000000000..87d1c2367
--- /dev/null
+++ b/packages/kit/src/dialog/DialogFooter.tsx
@@ -0,0 +1,38 @@
+import * as React from "react";
+import { styled, theme } from "../theme";
+
+import type * as WPDS from "../theme";
+
+const NAME = "DialogFooter";
+
+const StyledFooter = styled("footer", {
+ display: "flex",
+ alignItems: "center",
+ justifyContent: "flex-end",
+ gap: theme.space["050"],
+ "@container (max-width: 350px)": {
+ flexDirection: "column-reverse",
+ alignItems: "stretch",
+ },
+ gridArea: "footer",
+ marginBlockStart: theme.space["150"],
+});
+
+export type DialogFooterProps = {
+ /** Any React node may be used as a child */
+ children?: React.ReactNode;
+ /** Override CSS */
+ css?: WPDS.CSS;
+} & React.ComponentPropsWithRef;
+
+export const DialogFooter = React.forwardRef(
+ ({ children, ...props }: DialogFooterProps, ref) => {
+ return (
+
+ {children}
+
+ );
+ }
+);
+
+DialogFooter.displayName = NAME;
diff --git a/packages/kit/src/dialog/DialogHeader.test.tsx b/packages/kit/src/dialog/DialogHeader.test.tsx
new file mode 100644
index 000000000..e2c2e62b2
--- /dev/null
+++ b/packages/kit/src/dialog/DialogHeader.test.tsx
@@ -0,0 +1,10 @@
+import * as React from "react";
+import { render, screen } from "@testing-library/react";
+import { DialogHeader } from "./DialogHeader";
+
+describe("DialogHeader", () => {
+ test("renders visibly into the document", () => {
+ render( );
+ expect(screen.getByRole("banner")).toBeVisible();
+ });
+});
diff --git a/packages/kit/src/dialog/DialogHeader.tsx b/packages/kit/src/dialog/DialogHeader.tsx
new file mode 100644
index 000000000..4ba275754
--- /dev/null
+++ b/packages/kit/src/dialog/DialogHeader.tsx
@@ -0,0 +1,29 @@
+import * as React from "react";
+import { styled } from "../theme";
+
+import type * as WPDS from "../theme";
+
+const NAME = "DialogHeader";
+
+const StyledHeader = styled("header", {
+ gridArea: "header",
+});
+
+export type DialogHeaderProps = {
+ /** Any React node may be used as a child */
+ children?: React.ReactNode;
+ /** Override CSS */
+ css?: WPDS.CSS;
+} & React.ComponentPropsWithRef;
+
+export const DialogHeader = React.forwardRef(
+ ({ children, ...props }: DialogHeaderProps, ref) => {
+ return (
+
+ {children}
+
+ );
+ }
+);
+
+DialogHeader.displayName = NAME;
diff --git a/packages/kit/src/dialog/DialogOverlay.test.tsx b/packages/kit/src/dialog/DialogOverlay.test.tsx
new file mode 100644
index 000000000..dbf74205e
--- /dev/null
+++ b/packages/kit/src/dialog/DialogOverlay.test.tsx
@@ -0,0 +1,15 @@
+import * as React from "react";
+import { render, screen } from "@testing-library/react";
+import { DialogRoot } from "./DialogRoot";
+import { DialogOverlay } from "./DialogOverlay";
+
+const customRender = (component, rootProps = {}) => {
+ return render({component} );
+};
+
+describe("DialogOverlay", () => {
+ test("renders visibly into the document", () => {
+ customRender( , { defaultOpen: true });
+ expect(screen.getByTestId("test")).toBeVisible();
+ });
+});
diff --git a/packages/kit/src/dialog/DialogOverlay.tsx b/packages/kit/src/dialog/DialogOverlay.tsx
new file mode 100644
index 000000000..e7b1edca5
--- /dev/null
+++ b/packages/kit/src/dialog/DialogOverlay.tsx
@@ -0,0 +1,107 @@
+import * as React from "react";
+import * as DialogPrimitive from "@radix-ui/react-dialog";
+import { CSSTransition } from "react-transition-group";
+import { theme, styled } from "../theme";
+import { DialogContext } from "./DialogRoot";
+
+import type { DialogOverlayProps as RadixDialogOverlayProps } from "@radix-ui/react-dialog";
+import type * as WPDS from "../theme";
+import type { StandardLonghandProperties } from "@stitches/react/types/css";
+
+const NAME = "DialogOverlay";
+
+const overlayTransition = `opacity ${theme.transitions.normal} ${theme.transitions.inOut}`;
+
+const StyledOverlay = styled(DialogPrimitive.Overlay, {
+ backgroundColor: theme.colors.alpha50,
+ inset: "0",
+ position: "fixed",
+ "&.wpds-dialog-overlay-enter, &.wpds-dialog-overlay-appear": {
+ opacity: 0,
+ },
+ "&.wpds-dialog-overlay-enter-active, &.wpds-dialog-overlay-appear-active": {
+ opacity: 1,
+ transition: overlayTransition,
+ "@reducedMotion": {
+ transition: "none",
+ },
+ },
+ "&.wpds-dialog-overlay-exit": {
+ opacity: 1,
+ },
+ "&.wpds-dialog-overlay-exit-active": {
+ opacity: 0,
+ transition: overlayTransition,
+ "@reducedMotion": {
+ transition: "none",
+ },
+ },
+});
+
+export type DialogOverlayProps = {
+ /** Css background color of overlay*/
+ backgroundColor?:
+ | StandardLonghandProperties["backgroundColor"]
+ | (typeof theme.colors)[keyof typeof theme.colors];
+ /** Any React node may be used as a child */
+ children?: React.ReactNode;
+ /** Override CSS */
+ css?: WPDS.CSS;
+ /** Css z-index of overlay */
+ zIndex?:
+ | StandardLonghandProperties["zIndex"]
+ | (typeof theme.zIndices)[keyof typeof theme.zIndices];
+} & RadixDialogOverlayProps;
+
+export const DialogOverlay = React.forwardRef<
+ HTMLDivElement,
+ DialogOverlayProps
+>(
+ (
+ {
+ backgroundColor = theme.colors.alpha50,
+ children,
+ css,
+ zIndex = theme.zIndices.offer,
+ forceMount = true,
+ ...props
+ }: DialogOverlayProps,
+ ref
+ ) => {
+ const { open } = React.useContext(DialogContext);
+
+ const internalRef = React.useRef(null);
+ React.useEffect(() => {
+ if (!ref) return;
+ typeof ref === "function"
+ ? ref(internalRef.current)
+ : (ref.current = internalRef.current);
+ }, [ref, internalRef]);
+
+ return (
+
+
+ {children}
+
+
+ );
+ }
+);
+
+DialogOverlay.displayName = NAME;
diff --git a/packages/kit/src/dialog/DialogPortal.test.tsx b/packages/kit/src/dialog/DialogPortal.test.tsx
new file mode 100644
index 000000000..9dcdf9390
--- /dev/null
+++ b/packages/kit/src/dialog/DialogPortal.test.tsx
@@ -0,0 +1,20 @@
+import * as React from "react";
+import { render, screen } from "@testing-library/react";
+import { DialogRoot } from "./DialogRoot";
+import { DialogPortal } from "./DialogPortal";
+
+const customRender = (component, rootProps = {}) => {
+ return render({component} );
+};
+
+describe("DialogPortal", () => {
+ test("renders visibly into the document", () => {
+ customRender(
+
+ test
+ ,
+ { defaultOpen: true }
+ );
+ expect(screen.getByText("test")).toBeVisible();
+ });
+});
diff --git a/packages/kit/src/dialog/DialogPortal.tsx b/packages/kit/src/dialog/DialogPortal.tsx
new file mode 100644
index 000000000..4fc739fc6
--- /dev/null
+++ b/packages/kit/src/dialog/DialogPortal.tsx
@@ -0,0 +1,17 @@
+import * as React from "react";
+import * as DialogPrimitive from "@radix-ui/react-dialog";
+
+import type { DialogPortalProps as RadixDialogPortalProps } from "@radix-ui/react-dialog";
+
+const NAME = "DialogPortal";
+
+export type DialogPortalProps = RadixDialogPortalProps;
+
+export const DialogPortal = ({
+ forceMount = true,
+ ...props
+}: DialogPortalProps) => (
+
+);
+
+DialogPortal.displayName = NAME;
diff --git a/packages/kit/src/dialog/DialogRoot.test.tsx b/packages/kit/src/dialog/DialogRoot.test.tsx
new file mode 100644
index 000000000..4ca87e55d
--- /dev/null
+++ b/packages/kit/src/dialog/DialogRoot.test.tsx
@@ -0,0 +1,10 @@
+import * as React from "react";
+import { render, screen } from "@testing-library/react";
+import { DialogRoot } from "./DialogRoot";
+
+describe("DialogRoot", () => {
+ test("renders visibly into the document", () => {
+ render(test );
+ expect(screen.getByText("test")).toBeVisible();
+ });
+});
diff --git a/packages/kit/src/dialog/DialogRoot.tsx b/packages/kit/src/dialog/DialogRoot.tsx
new file mode 100644
index 000000000..e8431ea49
--- /dev/null
+++ b/packages/kit/src/dialog/DialogRoot.tsx
@@ -0,0 +1,43 @@
+import * as React from "react";
+import * as DialogPrimitive from "@radix-ui/react-dialog";
+import { useControllableState } from "@radix-ui/react-use-controllable-state";
+
+import type { DialogProps as RadixDialogProps } from "@radix-ui/react-dialog";
+
+type DialogContextInterface = {
+ open: boolean | undefined;
+};
+
+export const DialogContext = React.createContext({} as DialogContextInterface);
+
+const NAME = "DialogRoot";
+
+export type DialogRootProps = RadixDialogProps;
+
+export const DialogRoot = ({
+ open: openProp,
+ defaultOpen,
+ onOpenChange,
+ ...props
+}: DialogRootProps) => {
+ const [open, setOpen] = useControllableState({
+ prop: openProp,
+ defaultProp: defaultOpen,
+ onChange: onOpenChange,
+ });
+ return (
+
+ setOpen(val)}
+ {...props}
+ />
+
+ );
+};
+
+DialogRoot.displayName = NAME;
diff --git a/packages/kit/src/dialog/DialogTitle.test.tsx b/packages/kit/src/dialog/DialogTitle.test.tsx
new file mode 100644
index 000000000..5ab9d782f
--- /dev/null
+++ b/packages/kit/src/dialog/DialogTitle.test.tsx
@@ -0,0 +1,15 @@
+import * as React from "react";
+import { render, screen } from "@testing-library/react";
+import { DialogRoot } from "./DialogRoot";
+import { DialogTitle } from "./DialogTitle";
+
+const customRender = (component, rootProps = {}) => {
+ return render({component} );
+};
+
+describe("DialogTitle", () => {
+ test("renders visibly into the document", () => {
+ customRender( , { defaultOpen: true });
+ expect(screen.getByRole("heading")).toBeVisible();
+ });
+});
diff --git a/packages/kit/src/dialog/DialogTitle.tsx b/packages/kit/src/dialog/DialogTitle.tsx
new file mode 100644
index 000000000..ad2e11157
--- /dev/null
+++ b/packages/kit/src/dialog/DialogTitle.tsx
@@ -0,0 +1,37 @@
+import * as React from "react";
+import * as DialogPrimitive from "@radix-ui/react-dialog";
+import { theme, styled } from "../theme";
+
+import type { DialogTitleProps as RadixDialogTitleProps } from "@radix-ui/react-dialog";
+import type * as WPDS from "../theme";
+
+const NAME = "DialogTitle";
+
+const StyledTitle = styled(DialogPrimitive.Title, {
+ color: theme.colors.primary,
+ fontFamily: theme.fonts.meta,
+ fontSize: theme.fontSizes["125"],
+ fontWeight: theme.fontWeights.bold,
+ marginBlockStart: 0,
+ marginBlockEnd: theme.space["150"],
+});
+
+export type DialogTitleProps = {
+ /** Any React node may be used as a child */
+ children?: React.ReactNode;
+ /** Override CSS */
+ css?: WPDS.CSS;
+} & RadixDialogTitleProps;
+
+export const DialogTitle = React.forwardRef<
+ HTMLHeadingElement,
+ DialogTitleProps
+>(({ children, ...props }: DialogTitleProps, ref) => {
+ return (
+
+ {children}
+
+ );
+});
+
+DialogTitle.displayName = NAME;
diff --git a/packages/kit/src/dialog/DialogTrigger.test.tsx b/packages/kit/src/dialog/DialogTrigger.test.tsx
new file mode 100644
index 000000000..3e459a9cc
--- /dev/null
+++ b/packages/kit/src/dialog/DialogTrigger.test.tsx
@@ -0,0 +1,15 @@
+import * as React from "react";
+import { render, screen } from "@testing-library/react";
+import { DialogRoot } from "./DialogRoot";
+import { DialogTrigger } from "./DialogTrigger";
+
+const customRender = (component, rootProps = {}) => {
+ return render({component} );
+};
+
+describe("DialogTrigger", () => {
+ test("renders visibly into the document", () => {
+ customRender( , { defaultOpen: true });
+ expect(screen.getByRole("button")).toBeVisible();
+ });
+});
diff --git a/packages/kit/src/dialog/DialogTrigger.tsx b/packages/kit/src/dialog/DialogTrigger.tsx
new file mode 100644
index 000000000..5d06d4506
--- /dev/null
+++ b/packages/kit/src/dialog/DialogTrigger.tsx
@@ -0,0 +1,23 @@
+import * as React from "react";
+import * as DialogPrimitive from "@radix-ui/react-dialog";
+import { styled } from "../theme";
+
+import type * as WPDS from "../theme";
+
+const NAME = "DialogTrigger";
+
+const StyledTrigger = styled(DialogPrimitive.Trigger, {});
+
+export type DialogTriggerProps = {
+ /** Any React node may be used as a child */
+ children?: React.ReactNode;
+ /** Override CSS */
+ css?: WPDS.CSS;
+} & React.ComponentPropsWithRef;
+
+export const DialogTrigger = React.forwardRef<
+ HTMLButtonElement,
+ DialogTriggerProps
+>(({ ...props }, ref) => );
+
+DialogTrigger.displayName = NAME;
diff --git a/packages/kit/src/dialog/index.ts b/packages/kit/src/dialog/index.ts
new file mode 100644
index 000000000..ec26b20ad
--- /dev/null
+++ b/packages/kit/src/dialog/index.ts
@@ -0,0 +1,12 @@
+export * from "./Dialog";
+export * from "./DialogRoot";
+export * from "./DialogContent";
+export * from "./DialogTrigger";
+export * from "./DialogPortal";
+export * from "./DialogOverlay";
+export * from "./DialogTitle";
+export * from "./DialogDescription";
+export * from "./DialogClose";
+export * from "./DialogHeader";
+export * from "./DialogBody";
+export * from "./DialogFooter";
diff --git a/packages/kit/src/dialog/play.stories.tsx b/packages/kit/src/dialog/play.stories.tsx
new file mode 100644
index 000000000..ca5216b0d
--- /dev/null
+++ b/packages/kit/src/dialog/play.stories.tsx
@@ -0,0 +1,333 @@
+import * as React from "react";
+import { userEvent, waitFor, within } from "@storybook/testing-library";
+
+import { expect } from "@storybook/jest";
+import { Dialog } from "./Dialog";
+import { Button, styled, theme } from "../";
+
+import type { Meta, StoryFn } from "@storybook/react";
+
+export default {
+ title: "Dialog",
+ component: Dialog.Root,
+ subcomponents: {
+ Content: Dialog.Content,
+ Trigger: Dialog.Trigger,
+ Portal: Dialog.Portal,
+ Overlay: Dialog.Overlay,
+ Title: Dialog.Title,
+ Description: Dialog.Description,
+ },
+} as Meta;
+
+const DialogContainer = styled("div", {
+ position: "relative",
+ height: "100vh",
+ width: "50vw",
+ marginBlock: "-32px",
+ marginInlineStart: "-16px",
+ display: "flex",
+ alignItems: "center",
+ justifyContent: "center",
+});
+
+const Template: StoryFn = (args) => {
+ const [container, setContainer] = React.useState(null);
+
+ return (
+
+
+
+ Open
+
+
+
+
+ Dialog Title
+
+ Descriptive text of dialog content
+
+
+
+
+
+
+ );
+};
+
+export const Default = {
+ render: Template,
+ args: {},
+};
+
+const ContentTemplate: StoryFn = (args) => {
+ const [container, setContainer] = React.useState(null);
+
+ return (
+
+
+
+ Open
+
+
+
+
+
+ Dialog Title
+
+
+
+ Lorem ipsum dolor sit, amet consectetur adipisicing elit.
+ Tempora cupiditate possimus aliquid natus cumque? Ratione minus
+ exercitationem consequuntur quis dolor ut possimus earum
+ officiis itaque culpa eveniet vero, laboriosam sit!
+
+
+ Lorem ipsum dolor sit, amet consectetur adipisicing elit.
+ Tempora cupiditate possimus aliquid natus cumque? Ratione minus
+ exercitationem consequuntur quis dolor ut possimus earum
+ officiis itaque culpa eveniet vero, laboriosam sit!
+
+
+ Lorem ipsum dolor sit, amet consectetur adipisicing elit.
+ Tempora cupiditate possimus aliquid natus cumque? Ratione minus
+ exercitationem consequuntur quis dolor ut possimus earum
+ officiis itaque culpa eveniet vero, laboriosam sit!
+
+
+
+
+ Cancel
+
+ Confirm
+
+
+
+
+
+ );
+};
+
+export const Content = {
+ render: ContentTemplate,
+};
+
+// eslint-disable-next-line @typescript-eslint/no-explicit-any
+const ContentBackgroundColorTemplate: any = (args) => {
+ const [container, setContainer] = React.useState(null);
+
+ return (
+
+
+
+
+
+
+
+ );
+};
+
+export const ContentBackgroundColor = {
+ render: ContentBackgroundColorTemplate,
+
+ argTypes: {
+ backgroundColor: {
+ control: { type: "color" },
+ },
+ },
+
+ args: {
+ // eslint-disable-next-line @washingtonpost/wpds/theme-colors
+ backgroundColor: theme.colors.blue500.value,
+ },
+};
+
+// eslint-disable-next-line @typescript-eslint/no-explicit-any
+const OverlayBackgroundColorTemplate: any = (args) => {
+ const [container, setContainer] = React.useState(null);
+
+ return (
+
+
+
+
+
+
+
+ );
+};
+
+export const OverlayBackgroundColor = {
+ render: OverlayBackgroundColorTemplate,
+
+ argTypes: {
+ backgroundColor: {
+ control: { type: "color" },
+ },
+ },
+
+ args: {
+ // eslint-disable-next-line @washingtonpost/wpds/theme-colors
+ backgroundColor: theme.colors.green500.value,
+ },
+};
+
+const SmallTemplate: StoryFn = (args) => {
+ const [container, setContainer] = React.useState(null);
+
+ return (
+
+
+
+
+
+
+ Dialog Title
+
+
+ Lorem ipsum dolor sit, amet consectetur adipisicing elit.
+
+
+
+ Cancel
+
+ Confirm
+
+
+
+
+
+ );
+};
+
+export const Small = {
+ render: SmallTemplate,
+};
+
+const InteractionsTemplate: StoryFn = () => {
+ const [container, setContainer] = React.useState(null);
+
+ return (
+
+
+ Open
+
+
+
+
+
+ Dialog Title
+
+
+ Lorem ipsum
+
+
+
+ Cancel
+
+
+
+
+
+
+ );
+};
+
+export const Interactions = {
+ render: InteractionsTemplate,
+
+ play: async ({ canvasElement }) => {
+ const canvas = within(canvasElement);
+ const open = canvas.getByRole("button");
+ const user = userEvent.setup({ pointerEventsCheck: 0 });
+
+ await user.click(open);
+ await waitFor(() =>
+ expect(canvas.getByTestId("close-button")).toHaveFocus()
+ );
+ await user.click(canvas.getByTestId("close-button"));
+ await waitFor(() => expect(open).toHaveFocus());
+ await user.click(open);
+ await waitFor(() => expect(canvas.getByText("Cancel")).toBeVisible());
+ await user.click(canvas.getByText("Cancel"));
+ await waitFor(() => expect(open).toHaveFocus());
+ await user.click(open);
+ await waitFor(() => expect(canvas.getByTestId("overlay")).toBeVisible());
+ await user.click(canvas.getByTestId("overlay"));
+ await waitFor(() => expect(open).toHaveFocus());
+ },
+};
+
+// eslint-disable-next-line @typescript-eslint/no-explicit-any
+const ResponsiveInteractionsTemplate: any = () => {
+ const [container, setContainer] = React.useState(null);
+
+ return (
+
+
+ Open
+
+
+
+
+
+ Dialog Title
+
+
+ Lorem ipsum
+
+
+
+ Cancel
+
+
+
+
+
+
+ );
+};
+
+export const ResponsiveInteractions = {
+ render: ResponsiveInteractionsTemplate,
+
+ parameters: {
+ viewport: {
+ defaultViewport: "small",
+ viewports: {
+ small: {
+ name: "Small",
+ styles: {
+ height: "590px",
+ width: "767px",
+ },
+ type: "mobile",
+ },
+ },
+ },
+ chromatic: {
+ modes: {
+ mobile: { viewport: "small" },
+ },
+ },
+ },
+
+ play: async ({ canvasElement }) => {
+ const canvas = within(canvasElement);
+ await sleep(500);
+ await expect(canvas.getByRole("dialog")).toHaveStyle("width: 300px");
+ },
+};
+
+// Function to emulate pausing between interactions
+function sleep(ms) {
+ return new Promise((resolve) => setTimeout(resolve, ms));
+}
diff --git a/ui/divider/src/Divider.tsx b/packages/kit/src/divider/Divider.tsx
similarity index 81%
rename from ui/divider/src/Divider.tsx
rename to packages/kit/src/divider/Divider.tsx
index 6a44a707d..3775f811b 100644
--- a/ui/divider/src/Divider.tsx
+++ b/packages/kit/src/divider/Divider.tsx
@@ -1,8 +1,8 @@
-import * as React from "react";
+import React, { forwardRef } from "react";
import * as Separator from "@radix-ui/react-separator";
import type { SeparatorProps } from "@radix-ui/react-separator";
-import * as Theme from "@washingtonpost/wpds-theme";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import * as Theme from "../theme";
+import type * as WPDS from "../theme";
const NAME = "Divider";
@@ -30,7 +30,7 @@ interface DividerProps extends SeparatorProps {
variant?: "default" | "strong";
}
-export const Divider = React.forwardRef(
+export const Divider = forwardRef(
({ css, variant = "default", ...props }, ref) => {
return ;
}
diff --git a/ui/divider/src/index.ts b/packages/kit/src/divider/index.ts
similarity index 100%
rename from ui/divider/src/index.ts
rename to packages/kit/src/divider/index.ts
diff --git a/ui/divider/src/play.stories.tsx b/packages/kit/src/divider/play.stories.tsx
similarity index 66%
rename from ui/divider/src/play.stories.tsx
rename to packages/kit/src/divider/play.stories.tsx
index c07899d04..6aa2d69d1 100644
--- a/ui/divider/src/play.stories.tsx
+++ b/packages/kit/src/divider/play.stories.tsx
@@ -1,13 +1,13 @@
-import * as React from "react";
-import { styled } from "@washingtonpost/wpds-theme";
+import React from "react";
+import { styled } from "../theme";
import { Divider as Component } from "./";
-import type { ComponentMeta, ComponentStory } from "@storybook/react";
+import type { Meta, StoryFn } from "@storybook/react";
export default {
title: "Divider",
component: Component,
-} as ComponentMeta;
+} as Meta;
const Container = styled("div", {
display: "flex",
@@ -17,16 +17,18 @@ const Container = styled("div", {
height: "100px",
});
-const Template: ComponentStory = (args) => (
+const Template: StoryFn = (args) => (
);
-export const Divider = Template.bind({});
+export const Divider = {
+ render: Template,
-Divider.parameters = {
- chromatic: { disableSnapshot: true },
+ parameters: {
+ chromatic: { disableSnapshot: true },
+ },
};
const Grid = styled("div", {
@@ -52,7 +54,7 @@ const HStack = styled("section", {
gap: "$200",
});
-const ChromaticTemplate: ComponentStory = () => (
+const ChromaticTemplate: StoryFn = () => (
@@ -65,4 +67,6 @@ const ChromaticTemplate: ComponentStory = () => (
);
-export const Chromatic = ChromaticTemplate.bind({});
+export const Chromatic = {
+ render: ChromaticTemplate,
+};
diff --git a/ui/drawer/src/Drawer.tsx b/packages/kit/src/drawer/Drawer.tsx
similarity index 100%
rename from ui/drawer/src/Drawer.tsx
rename to packages/kit/src/drawer/Drawer.tsx
diff --git a/ui/drawer/src/DrawerClose.test.tsx b/packages/kit/src/drawer/DrawerClose.test.tsx
similarity index 86%
rename from ui/drawer/src/DrawerClose.test.tsx
rename to packages/kit/src/drawer/DrawerClose.test.tsx
index 077b6122e..dccd5b359 100644
--- a/ui/drawer/src/DrawerClose.test.tsx
+++ b/packages/kit/src/drawer/DrawerClose.test.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { render, screen } from "@testing-library/react";
import userEvent from "@testing-library/user-event";
import { DrawerClose } from "./DrawerClose";
@@ -25,12 +24,13 @@ describe("DrawerTrigger", () => {
);
});
- test("uses openChange handler from context", () => {
+ test("uses openChange handler from context", async () => {
+ const user = userEvent.setup();
const handleChange = jest.fn();
customRender( , {
onOpenChange: handleChange,
});
- userEvent.click(screen.getByRole("button"));
+ await user.click(screen.getByRole("button"));
expect(handleChange).toHaveBeenCalledWith(false);
});
});
diff --git a/ui/drawer/src/DrawerClose.tsx b/packages/kit/src/drawer/DrawerClose.tsx
similarity index 87%
rename from ui/drawer/src/DrawerClose.tsx
rename to packages/kit/src/drawer/DrawerClose.tsx
index 2ac84d25f..5ff4ee4e7 100644
--- a/ui/drawer/src/DrawerClose.tsx
+++ b/packages/kit/src/drawer/DrawerClose.tsx
@@ -1,8 +1,8 @@
-import * as React from "react";
+import React from "react";
import { DrawerContext } from "./DrawerRoot";
-import { styled, theme } from "@washingtonpost/wpds-theme";
-import { Button } from "@washingtonpost/wpds-button";
-import { Icon } from "@washingtonpost/wpds-icon";
+import { styled, theme } from "../theme";
+import { Button } from "../button";
+import { Icon } from "../icon";
import { Close } from "@washingtonpost/wpds-assets";
const NAME = "DrawerClose";
diff --git a/ui/drawer/src/DrawerContent.test.tsx b/packages/kit/src/drawer/DrawerContent.test.tsx
similarity index 88%
rename from ui/drawer/src/DrawerContent.test.tsx
rename to packages/kit/src/drawer/DrawerContent.test.tsx
index 3538ee1d7..708e85833 100644
--- a/ui/drawer/src/DrawerContent.test.tsx
+++ b/packages/kit/src/drawer/DrawerContent.test.tsx
@@ -1,6 +1,4 @@
-import * as React from "react";
-import { render, screen } from "@testing-library/react";
-import userEvent from "@testing-library/user-event";
+import { render, screen, fireEvent } from "@testing-library/react";
import { DrawerContent } from "./DrawerContent";
import { DrawerRoot } from "./DrawerRoot";
@@ -78,22 +76,22 @@ describe("DrawerContent", () => {
expect(spy).toHaveBeenCalled();
});
- test("removes a key listener from the document after close", () => {
+ test("removes a key listener from the document after close", async () => {
const spy = jest.spyOn(document, "removeEventListener");
customRender(Drawer Content , {
defaultOpen: true,
});
- userEvent.keyboard("{esc}");
+ fireEvent.keyDown(document, { key: "Escape", code: "Escape" });
expect(spy).toHaveBeenCalled();
});
- test("closes with esc key", () => {
+ test("closes with esc key", async () => {
const handleChange = jest.fn();
customRender(Drawer Content , {
defaultOpen: true,
onOpenChange: handleChange,
});
- userEvent.keyboard("{esc}");
+ fireEvent.keyDown(document, { key: "Escape", code: "Escape" });
expect(handleChange).toHaveBeenCalledWith(false);
});
});
diff --git a/ui/drawer/src/DrawerContent.tsx b/packages/kit/src/drawer/DrawerContent.tsx
similarity index 97%
rename from ui/drawer/src/DrawerContent.tsx
rename to packages/kit/src/drawer/DrawerContent.tsx
index 502f9463a..1a190ead7 100644
--- a/ui/drawer/src/DrawerContent.tsx
+++ b/packages/kit/src/drawer/DrawerContent.tsx
@@ -1,8 +1,8 @@
-import * as React from "react";
+import React from "react";
import { CSSTransition } from "react-transition-group";
import { FocusScope } from "@radix-ui/react-focus-scope";
-import { styled, theme } from "@washingtonpost/wpds-theme";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import { styled, theme } from "../theme";
+import type * as WPDS from "../theme";
import { DrawerContext } from "./DrawerRoot";
const drawerTransition = `transform ${theme.transitions.normal} ${theme.transitions.inOut}, opacity ${theme.transitions.normal} ${theme.transitions.inOut}`;
diff --git a/ui/drawer/src/DrawerCustomTrigger.test.tsx b/packages/kit/src/drawer/DrawerCustomTrigger.test.tsx
similarity index 83%
rename from ui/drawer/src/DrawerCustomTrigger.test.tsx
rename to packages/kit/src/drawer/DrawerCustomTrigger.test.tsx
index a521c21da..40337df6e 100644
--- a/ui/drawer/src/DrawerCustomTrigger.test.tsx
+++ b/packages/kit/src/drawer/DrawerCustomTrigger.test.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { render, screen } from "@testing-library/react";
import userEvent from "@testing-library/user-event";
import { DrawerCustomTrigger } from "./DrawerCustomTrigger";
@@ -32,16 +31,18 @@ describe("DrawerCustomTrigger", () => {
);
});
- test("uses openChange handler from context", () => {
+ test("uses openChange handler from context", async () => {
+ const user = userEvent.setup();
const handleChange = jest.fn();
customRender(Trigger Drawer , {
onOpenChange: handleChange,
});
- userEvent.click(screen.getByRole("button"));
+ await user.click(screen.getByRole("button"));
expect(handleChange).toHaveBeenCalledWith(true);
});
- test("has keyboard accessibility", () => {
+ test("has keyboard accessibility", async () => {
+ const user = userEvent.setup();
const handleChange = jest.fn();
customRender(
Trigger Drawer ,
@@ -49,11 +50,11 @@ describe("DrawerCustomTrigger", () => {
onOpenChange: handleChange,
}
);
- userEvent.tab();
+ await user.tab();
expect(screen.getByRole("button")).toHaveFocus();
- userEvent.keyboard("a");
+ await user.keyboard("a");
expect(handleChange).not.toHaveBeenCalled();
- userEvent.keyboard("{enter}");
+ await user.keyboard("{enter}");
expect(handleChange).toHaveBeenCalledWith(true);
});
});
diff --git a/ui/drawer/src/DrawerCustomTrigger.tsx b/packages/kit/src/drawer/DrawerCustomTrigger.tsx
similarity index 92%
rename from ui/drawer/src/DrawerCustomTrigger.tsx
rename to packages/kit/src/drawer/DrawerCustomTrigger.tsx
index 055d742a9..0c166531b 100644
--- a/ui/drawer/src/DrawerCustomTrigger.tsx
+++ b/packages/kit/src/drawer/DrawerCustomTrigger.tsx
@@ -1,5 +1,5 @@
-import * as React from "react";
-import { styled } from "@washingtonpost/wpds-theme";
+import React from "react";
+import { styled } from "../theme";
import { DrawerContext } from "./DrawerRoot";
const NAME = "DrawerCustomTrigger";
diff --git a/ui/drawer/src/DrawerRoot.test.tsx b/packages/kit/src/drawer/DrawerRoot.test.tsx
similarity index 87%
rename from ui/drawer/src/DrawerRoot.test.tsx
rename to packages/kit/src/drawer/DrawerRoot.test.tsx
index d3ef6aedf..64a46163b 100644
--- a/ui/drawer/src/DrawerRoot.test.tsx
+++ b/packages/kit/src/drawer/DrawerRoot.test.tsx
@@ -1,4 +1,4 @@
-import * as React from "react";
+import { useContext, useState } from "react";
import { render, screen } from "@testing-library/react";
import userEvent from "@testing-library/user-event";
import { DrawerRoot, DrawerContext } from "./DrawerRoot";
@@ -6,7 +6,7 @@ import { DrawerRoot, DrawerContext } from "./DrawerRoot";
describe("DrawerRoot", () => {
const TestComponent = () => {
const { contentId, open, defaultOpen, zIndex, onOpenChange } =
- React.useContext(DrawerContext);
+ useContext(DrawerContext);
return (
Drawer Sub-Component
@@ -73,18 +73,22 @@ describe("DrawerRoot", () => {
});
test("context sets open change callback and gets called", async () => {
+ const user = userEvent.setup();
+
const handleChange = jest.fn();
render(
);
- userEvent.click(screen.getByRole("button"));
+
+ await user.click(screen.getByRole("button"));
+
expect(handleChange).toHaveBeenCalled();
});
const App = ({ handleChange }) => {
- const [open] = React.useState(false);
+ const [open] = useState(false);
return (
@@ -93,9 +97,10 @@ describe("DrawerRoot", () => {
};
test("context uses controlled open property", async () => {
+ const user = userEvent.setup();
const handleChange = jest.fn();
render( );
- userEvent.click(screen.getByRole("button"));
- expect(handleChange).toBeCalled();
+ await user.click(screen.getByRole("button"));
+ expect(handleChange).toHaveBeenCalled();
});
});
diff --git a/ui/drawer/src/DrawerRoot.tsx b/packages/kit/src/drawer/DrawerRoot.tsx
similarity index 95%
rename from ui/drawer/src/DrawerRoot.tsx
rename to packages/kit/src/drawer/DrawerRoot.tsx
index 829253dab..33b707005 100644
--- a/ui/drawer/src/DrawerRoot.tsx
+++ b/packages/kit/src/drawer/DrawerRoot.tsx
@@ -1,5 +1,5 @@
-import * as React from "react";
-import { theme } from "@washingtonpost/wpds-theme";
+import React from "react";
+import { theme } from "../theme";
import { useControllableState } from "@radix-ui/react-use-controllable-state";
import type { Token } from "@stitches/react/types/theme";
diff --git a/ui/drawer/src/DrawerScrim.test.tsx b/packages/kit/src/drawer/DrawerScrim.test.tsx
similarity index 86%
rename from ui/drawer/src/DrawerScrim.test.tsx
rename to packages/kit/src/drawer/DrawerScrim.test.tsx
index d7a28d3ce..9f7173c19 100644
--- a/ui/drawer/src/DrawerScrim.test.tsx
+++ b/packages/kit/src/drawer/DrawerScrim.test.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { render, screen } from "@testing-library/react";
import userEvent from "@testing-library/user-event";
import { DrawerScrim } from "./DrawerScrim";
@@ -23,13 +22,14 @@ describe("DrawerScrim", () => {
expect(screen.getByTestId("test")).toBeVisible();
});
- test("uses openChange handler from context", () => {
+ test("uses openChange handler from context", async () => {
+ const user = userEvent.setup();
const handleChange = jest.fn();
customRender( , {
onOpenChange: handleChange,
defaultOpen: true,
});
- userEvent.click(screen.getByTestId("test"));
+ await user.click(screen.getByTestId("test"));
expect(handleChange).toHaveBeenCalledWith(false);
});
});
diff --git a/ui/drawer/src/DrawerScrim.tsx b/packages/kit/src/drawer/DrawerScrim.tsx
similarity index 90%
rename from ui/drawer/src/DrawerScrim.tsx
rename to packages/kit/src/drawer/DrawerScrim.tsx
index 59c6a03e6..b3c6349fe 100644
--- a/ui/drawer/src/DrawerScrim.tsx
+++ b/packages/kit/src/drawer/DrawerScrim.tsx
@@ -1,6 +1,6 @@
-import * as React from "react";
+import React from "react";
import { DrawerContext } from "./DrawerRoot";
-import { Scrim } from "@washingtonpost/wpds-scrim";
+import { Scrim } from "../scrim";
const NAME = "DrawerScrim";
diff --git a/ui/drawer/src/DrawerTrigger.test.tsx b/packages/kit/src/drawer/DrawerTrigger.test.tsx
similarity index 89%
rename from ui/drawer/src/DrawerTrigger.test.tsx
rename to packages/kit/src/drawer/DrawerTrigger.test.tsx
index 748919cfb..d72d942e6 100644
--- a/ui/drawer/src/DrawerTrigger.test.tsx
+++ b/packages/kit/src/drawer/DrawerTrigger.test.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { render, screen } from "@testing-library/react";
import userEvent from "@testing-library/user-event";
import { DrawerTrigger } from "./DrawerTrigger";
@@ -32,12 +31,13 @@ describe("DrawerTrigger", () => {
);
});
- test("uses openChange handler from context", () => {
+ test("uses openChange handler from context", async () => {
+ const user = userEvent.setup();
const handleChange = jest.fn();
customRender(Trigger Drawer , {
onOpenChange: handleChange,
});
- userEvent.click(screen.getByRole("button"));
+ await user.click(screen.getByRole("button"));
expect(handleChange).toHaveBeenCalledWith(true);
});
});
diff --git a/ui/drawer/src/DrawerTrigger.tsx b/packages/kit/src/drawer/DrawerTrigger.tsx
similarity index 88%
rename from ui/drawer/src/DrawerTrigger.tsx
rename to packages/kit/src/drawer/DrawerTrigger.tsx
index 67a67b5ba..8bfa528e2 100644
--- a/ui/drawer/src/DrawerTrigger.tsx
+++ b/packages/kit/src/drawer/DrawerTrigger.tsx
@@ -1,5 +1,5 @@
-import * as React from "react";
-import { Button } from "@washingtonpost/wpds-button";
+import React from "react";
+import { Button } from "../button";
import { DrawerContext } from "./DrawerRoot";
const NAME = "DrawerTrigger";
diff --git a/ui/drawer/src/index.ts b/packages/kit/src/drawer/index.ts
similarity index 100%
rename from ui/drawer/src/index.ts
rename to packages/kit/src/drawer/index.ts
diff --git a/ui/drawer/src/play.stories.tsx b/packages/kit/src/drawer/play.stories.tsx
similarity index 83%
rename from ui/drawer/src/play.stories.tsx
rename to packages/kit/src/drawer/play.stories.tsx
index 38e7dfdf6..2f243af19 100644
--- a/ui/drawer/src/play.stories.tsx
+++ b/packages/kit/src/drawer/play.stories.tsx
@@ -1,12 +1,12 @@
-import * as React from "react";
+import React, { useState } from "react";
import { screen, userEvent } from "@storybook/testing-library";
import { expect } from "@storybook/jest";
import { Drawer as Component } from "./";
-import { theme } from "@washingtonpost/wpds-theme";
-import { Box } from "../../box";
-import { Select } from "../../select";
+import { theme } from "../theme";
+import { Box } from "../box";
+import { Select } from "../select";
-import type { ComponentMeta, ComponentStory } from "@storybook/react";
+import type { Meta, StoryFn } from "@storybook/react";
export default {
title: "Drawer",
@@ -21,11 +21,11 @@ export default {
args: {
id: "drawer-id",
},
-} as ComponentMeta;
+} as Meta;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
-const Template: ComponentStory = (args) => {
- const [open, setOpen] = React.useState(false);
+const Template: StoryFn = (args) => {
+ const [open, setOpen] = useState(false);
const handleChange = (val) => {
setOpen(val);
@@ -46,13 +46,16 @@ const Template: ComponentStory = (args) => {
);
};
-export const Drawer = Template.bind({});
-Drawer.parameters = {
- chromatic: { disableSnapshot: true },
+export const Drawer = {
+ render: Template,
+
+ parameters: {
+ chromatic: { disableSnapshot: true },
+ },
};
// eslint-disable-next-line @typescript-eslint/no-explicit-any
-const FocusTemplate: ComponentStory = ({ loopFocus, ...args }) => (
+const FocusTemplate: StoryFn = ({ loopFocus, ...args }) => (
Trigger Drawer
@@ -80,16 +83,20 @@ const FocusTemplate: ComponentStory = ({ loopFocus, ...args }) => (
);
-export const Focus = FocusTemplate.bind({});
-Focus.args = {
- loopFocus: true,
-};
-Focus.parameters = {
- chromatic: { disableSnapshot: true },
+export const Focus = {
+ render: FocusTemplate,
+
+ args: {
+ loopFocus: true,
+ },
+
+ parameters: {
+ chromatic: { disableSnapshot: true },
+ },
};
// eslint-disable-next-line @typescript-eslint/no-explicit-any
-const PositionTemplate: ComponentStory = () => (
+const PositionTemplate: StoryFn = () => (
<>
Top
@@ -130,13 +137,16 @@ const PositionTemplate: ComponentStory = () => (
>
);
-export const Position = PositionTemplate.bind({});
-Position.parameters = {
- chromatic: { disableSnapshot: true },
+export const Position = {
+ render: PositionTemplate,
+
+ parameters: {
+ chromatic: { disableSnapshot: true },
+ },
};
// eslint-disable-next-line @typescript-eslint/no-explicit-any
-const AutoSizeTemplate: ComponentStory = () => {
+const AutoSizeTemplate: StoryFn = () => {
const text = [
`Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Vestibulum
@@ -195,7 +205,7 @@ fringilla phasellus faucibus scelerisque eleifend donec. Aliquet
porttitor lacus luctus accumsan. Orci ac auctor augue mauris augue
neque gravida in fermentum.`,
];
- const [textLength, setTextLength] = React.useState(5);
+ const [textLength, setTextLength] = useState(5);
return (
@@ -231,13 +241,16 @@ neque gravida in fermentum.`,
);
};
-export const AutoSize = AutoSizeTemplate.bind({});
-AutoSize.parameters = {
- chromatic: { disableSnapshot: true },
+export const AutoSize = {
+ render: AutoSizeTemplate,
+
+ parameters: {
+ chromatic: { disableSnapshot: true },
+ },
};
// eslint-disable-next-line @typescript-eslint/no-explicit-any
-const ChromaticTemplate: ComponentStory = () => (
+const ChromaticTemplate: StoryFn = () => (
<>
@@ -273,13 +286,16 @@ const ChromaticTemplate: ComponentStory = () => (
>
);
-export const Chromatic = ChromaticTemplate.bind({});
-Chromatic.parameters = {
- docs: { disable: true },
+export const Chromatic = {
+ render: ChromaticTemplate,
+
+ parameters: {
+ docs: { disable: true },
+ },
};
// eslint-disable-next-line @typescript-eslint/no-explicit-any
-const InteractionsTemplate: ComponentStory = () => (
+const InteractionsTemplate: StoryFn = () => (
Trigger
@@ -290,24 +306,27 @@ const InteractionsTemplate: ComponentStory = () => (
);
-export const Interactions = InteractionsTemplate.bind({});
-Interactions.parameters = {
- chromatic: { disableSnapshot: true },
+export const Interactions = {
+ render: InteractionsTemplate,
+
+ parameters: {
+ chromatic: { disableSnapshot: true },
+ },
+
+ play: async () => {
+ const trigger = screen.getAllByText("Trigger")[0];
+ await userEvent.click(trigger);
+ await sleep(300);
+ const content = screen.getAllByText("Drawer Content")[0];
+ await expect(content).toBeVisible();
+ const close = screen.getByLabelText("Close Drawer");
+ await userEvent.click(close);
+ await sleep(300);
+ await expect(content).not.toBeInTheDocument();
+ },
};
// Function to emulate pausing between interactions
function sleep(ms) {
return new Promise((resolve) => setTimeout(resolve, ms));
}
-
-Interactions.play = async () => {
- const trigger = screen.getAllByText("Trigger")[0];
- await userEvent.click(trigger);
- await sleep(300);
- const content = screen.getAllByText("Drawer Content")[0];
- await expect(content).toBeVisible();
- const close = screen.getByLabelText("Close Drawer");
- await userEvent.click(close);
- await sleep(300);
- await expect(content).not.toBeInTheDocument();
-};
diff --git a/ui/error-message/src/ErrorMessage.tsx b/packages/kit/src/error-message/ErrorMessage.tsx
similarity index 79%
rename from ui/error-message/src/ErrorMessage.tsx
rename to packages/kit/src/error-message/ErrorMessage.tsx
index f07dca5fc..f8b86ec23 100644
--- a/ui/error-message/src/ErrorMessage.tsx
+++ b/packages/kit/src/error-message/ErrorMessage.tsx
@@ -1,5 +1,5 @@
-import * as React from "react";
-import { theme, css } from "@washingtonpost/wpds-theme";
+import React from "react";
+import { theme, css } from "../theme";
const NAME = "ErrorMessage";
@@ -9,9 +9,10 @@ const ErrorMessageCSS = css({
fontSize: theme.fontSizes["075"],
fontWeight: theme.fontWeights.light,
lineHeight: 1.33,
+ marginBlock: 0,
});
-interface ErrorMessageProps extends React.ComponentPropsWithRef<"span"> {
+interface ErrorMessageProps extends React.ComponentPropsWithRef<"p"> {
/** Allows any React node as children to allow for formatted text and links */
children?: React.ReactNode;
/** Id is used to associate the error message with the `aria-errormessage` attribute of another element */
@@ -19,13 +20,13 @@ interface ErrorMessageProps extends React.ComponentPropsWithRef<"span"> {
}
export const ErrorMessage = React.forwardRef<
- HTMLSpanElement,
+ HTMLParagraphElement,
ErrorMessageProps
>(({ children, ...rest }, ref) => {
return (
-
+
{children}
-
+
);
});
diff --git a/ui/error-message/src/index.ts b/packages/kit/src/error-message/index.ts
similarity index 100%
rename from ui/error-message/src/index.ts
rename to packages/kit/src/error-message/index.ts
diff --git a/packages/kit/src/error-message/play.stories.tsx b/packages/kit/src/error-message/play.stories.tsx
new file mode 100644
index 000000000..692aa0e82
--- /dev/null
+++ b/packages/kit/src/error-message/play.stories.tsx
@@ -0,0 +1,15 @@
+import { ErrorMessage as Component } from "./";
+
+import type { Meta, StoryFn } from "@storybook/react";
+
+export default {
+ title: "ErrorMessage",
+ component: Component,
+} as Meta;
+
+export const ErrorMessage = {
+ args: {
+ children: "Error Message",
+ id: "my-error-message",
+ },
+};
diff --git a/ui/fieldset/src/Fieldset.tsx b/packages/kit/src/fieldset/Fieldset.tsx
similarity index 90%
rename from ui/fieldset/src/Fieldset.tsx
rename to packages/kit/src/fieldset/Fieldset.tsx
index 5c6ff7de1..e32a5a020 100644
--- a/ui/fieldset/src/Fieldset.tsx
+++ b/packages/kit/src/fieldset/Fieldset.tsx
@@ -1,6 +1,6 @@
-import * as React from "react";
-import * as Theme from "@washingtonpost/wpds-theme";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import React from "react";
+import * as Theme from "../theme";
+import type * as WPDS from "../theme";
const NAME = "Fieldset";
diff --git a/ui/fieldset/src/index.ts b/packages/kit/src/fieldset/index.ts
similarity index 100%
rename from ui/fieldset/src/index.ts
rename to packages/kit/src/fieldset/index.ts
diff --git a/packages/kit/src/fieldset/play.stories.tsx b/packages/kit/src/fieldset/play.stories.tsx
new file mode 100644
index 000000000..5a27a481b
--- /dev/null
+++ b/packages/kit/src/fieldset/play.stories.tsx
@@ -0,0 +1,21 @@
+import React from "react";
+import { Fieldset as Component } from "./";
+
+import type { Meta, StoryFn } from "@storybook/react";
+
+export default {
+ title: "Fieldset",
+ component: Component,
+} as Meta;
+
+const Template: StoryFn = (args) => (
+ Content
+);
+
+export const Fieldset = {
+ render: Template,
+
+ args: {
+ legend: "Fieldset",
+ },
+};
diff --git a/ui/helper-text/src/HelperText.tsx b/packages/kit/src/helper-text/HelperText.tsx
similarity index 56%
rename from ui/helper-text/src/HelperText.tsx
rename to packages/kit/src/helper-text/HelperText.tsx
index 12cb2c95e..3d8dff9d5 100644
--- a/ui/helper-text/src/HelperText.tsx
+++ b/packages/kit/src/helper-text/HelperText.tsx
@@ -1,5 +1,5 @@
-import * as React from "react";
-import { theme, css } from "@washingtonpost/wpds-theme";
+import React from "react";
+import { theme, css } from "../theme";
const NAME = "HelperText";
@@ -9,24 +9,26 @@ const HelperTextCSS = css({
fontSize: theme.fontSizes["075"],
fontWeight: theme.fontWeights.light,
lineHeight: 1.33,
+ marginBlock: 0,
});
-interface HelperTextProps extends React.ComponentPropsWithRef<"span"> {
+interface HelperTextProps extends React.ComponentPropsWithRef<"p"> {
/** Allows any React node as children to allow for formatted text and links */
children?: React.ReactNode;
/** Id is used to associate the text with the `aria-describedby` attribute of another element */
id?: string;
}
-export const HelperText = React.forwardRef(
- ({ children, ...rest }, ref) => {
- return (
-
- {children}
-
- );
- }
-);
+export const HelperText = React.forwardRef<
+ HTMLParagraphElement,
+ HelperTextProps
+>(({ children, ...rest }, ref) => {
+ return (
+
+ {children}
+
+ );
+});
HelperText.displayName = NAME;
diff --git a/ui/helper-text/src/index.ts b/packages/kit/src/helper-text/index.ts
similarity index 100%
rename from ui/helper-text/src/index.ts
rename to packages/kit/src/helper-text/index.ts
diff --git a/packages/kit/src/helper-text/play.stories.tsx b/packages/kit/src/helper-text/play.stories.tsx
new file mode 100644
index 000000000..3c7345a84
--- /dev/null
+++ b/packages/kit/src/helper-text/play.stories.tsx
@@ -0,0 +1,15 @@
+import { HelperText as Component } from "./";
+
+import type { Meta, StoryFn } from "@storybook/react";
+
+export default {
+ title: "HelperText",
+ component: Component,
+} as Meta;
+
+export const HelperText = {
+ args: {
+ children: "Helper Text",
+ id: "my-helper-text",
+ },
+};
diff --git a/ui/icon/src/icon.tsx b/packages/kit/src/icon/icon.tsx
similarity index 75%
rename from ui/icon/src/icon.tsx
rename to packages/kit/src/icon/icon.tsx
index 1a51e07de..84c945087 100644
--- a/ui/icon/src/icon.tsx
+++ b/packages/kit/src/icon/icon.tsx
@@ -1,7 +1,8 @@
-import * as React from "react";
-import { VisuallyHidden } from "@washingtonpost/wpds-visually-hidden";
-import { css, theme } from "@washingtonpost/wpds-theme";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import React, { Children, cloneElement, forwardRef } from "react";
+import { VisuallyHidden } from "../visually-hidden";
+import { css, theme } from "../theme";
+
+import type * as WPDS from "../theme";
const NAME = "Icon";
@@ -26,7 +27,7 @@ interface IconInterface extends Omit, "fill"> {
alt?: string;
}
-export const Icon = React.forwardRef(
+export const Icon = forwardRef(
(
{
children,
@@ -39,7 +40,7 @@ export const Icon = React.forwardRef(
},
ref
) => {
- const child = React.Children.only(children);
+ const child = Children.only(children);
const IconSizeStyle = css({
size: theme.sizes[size] || size,
@@ -48,7 +49,7 @@ export const Icon = React.forwardRef(
return (
<>
- {React.cloneElement(child as React.ReactElement, {
+ {cloneElement(child as React.ReactElement, {
"aria-hidden": true,
focusable: false,
role: "img",
diff --git a/ui/icon/src/index.ts b/packages/kit/src/icon/index.ts
similarity index 100%
rename from ui/icon/src/index.ts
rename to packages/kit/src/icon/index.ts
diff --git a/packages/kit/src/icon/play.stories.tsx b/packages/kit/src/icon/play.stories.tsx
new file mode 100644
index 000000000..7603c65c1
--- /dev/null
+++ b/packages/kit/src/icon/play.stories.tsx
@@ -0,0 +1,38 @@
+import React from "react";
+import { within } from "@storybook/testing-library";
+import { expect } from "@storybook/jest";
+import { theme } from "../theme";
+import Info from "@washingtonpost/wpds-assets/asset/info";
+import { Icon } from "./icon";
+
+import type { Meta, StoryObj } from "@storybook/react";
+
+const meta: Meta = {
+ title: "Icon",
+ component: Icon,
+ args: {
+ size: "200",
+ label: "Find out more information.",
+ fill: theme.colors["primary"],
+ children: ,
+ },
+};
+export default meta;
+
+type Story = StoryObj;
+
+export const Default: Story = {};
+
+export const Interaction: Story = {
+ args: {
+ // eslint-disable-next-line @washingtonpost/wpds/theme-colors
+ fill: "#5784c5ff", // theme.colors.signal using hex to make sure tests pass correctly
+ },
+};
+
+Interaction.play = async ({ canvasElement }) => {
+ const canvas = within(canvasElement);
+ const svg = canvas.queryAllByRole("img", { hidden: true })[0];
+ await expect(svg).toBeVisible();
+ await expect(svg).toHaveAttribute("fill", "#5784c5ff");
+};
diff --git a/packages/kit/src/index.ts b/packages/kit/src/index.ts
new file mode 100644
index 000000000..15d5540d4
--- /dev/null
+++ b/packages/kit/src/index.ts
@@ -0,0 +1,35 @@
+export * from "./dialog";
+export * from "./tooltip";
+export * from "./tabs";
+export * from "./select";
+export * from "./scrim";
+export * from "./radio-group";
+export * from "./popover";
+export * from "./pagination-dots";
+export * from "./input-textarea";
+export * from "./input-text";
+export * from "./input-shared";
+export * from "./input-search";
+export * from "./input-password";
+export * from "./input-label";
+export * from "./helper-text";
+export * from "./fieldset";
+export * from "./error-message";
+export * from "./drawer";
+export * from "./divider";
+export * from "./container";
+export * from "./checkbox";
+export * from "./carousel";
+export * from "./box";
+export * from "./avatar";
+export * from "./app-bar";
+export * from "./alert-banner";
+export * from "./action-menu";
+export * from "./accordion";
+export * from "./button";
+export * from "./card";
+export * from "./icon";
+export * from "./switch";
+export * from "./theme";
+export * from "./visually-hidden";
+export * from "./navigation-menu";
diff --git a/ui/input-label/src/InputLabel.tsx b/packages/kit/src/input-label/InputLabel.tsx
similarity index 78%
rename from ui/input-label/src/InputLabel.tsx
rename to packages/kit/src/input-label/InputLabel.tsx
index 121f98324..2329e898f 100644
--- a/ui/input-label/src/InputLabel.tsx
+++ b/packages/kit/src/input-label/InputLabel.tsx
@@ -1,9 +1,9 @@
-import * as React from "react";
-import { styled, theme } from "@washingtonpost/wpds-theme";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import React from "react";
+import { styled, theme } from "../theme";
+import type * as WPDS from "../theme";
import * as Label from "@radix-ui/react-label";
import type { LabelProps } from "@radix-ui/react-label";
-import { RequiredIndicatorCSS } from "@washingtonpost/wpds-input-shared";
+import { RequiredIndicatorCSS } from "../input-shared";
const NAME = "InputLabel";
@@ -34,7 +34,7 @@ interface InputLabelProps extends LabelProps {
required?: boolean;
}
-export const InputLabel = React.forwardRef(
+export const InputLabel = React.forwardRef(
({ children, css, disabled, required, ...props }, ref) => {
return (
diff --git a/ui/input-label/src/index.ts b/packages/kit/src/input-label/index.ts
similarity index 100%
rename from ui/input-label/src/index.ts
rename to packages/kit/src/input-label/index.ts
diff --git a/packages/kit/src/input-label/play.stories.tsx b/packages/kit/src/input-label/play.stories.tsx
new file mode 100644
index 000000000..a5ee241d2
--- /dev/null
+++ b/packages/kit/src/input-label/play.stories.tsx
@@ -0,0 +1,13 @@
+import { InputLabel as Component } from "./";
+import type { StoryObj, Meta, StoryFn } from "@storybook/react";
+
+export default {
+ title: "InputLabel",
+ component: Component,
+} as Meta;
+
+export const InputLabel: StoryObj = {
+ args: {
+ children: "Label",
+ },
+};
diff --git a/ui/input-password/src/InputPassword.tsx b/packages/kit/src/input-password/InputPassword.tsx
similarity index 80%
rename from ui/input-password/src/InputPassword.tsx
rename to packages/kit/src/input-password/InputPassword.tsx
index b22a1a25a..a9ae39d56 100644
--- a/ui/input-password/src/InputPassword.tsx
+++ b/packages/kit/src/input-password/InputPassword.tsx
@@ -1,9 +1,9 @@
-import * as React from "react";
-import { InputText } from "@washingtonpost/wpds-input-text";
-import { Icon } from "@washingtonpost/wpds-icon";
+import React, { forwardRef, useState } from "react";
+import { InputText } from "../input-text";
+import { Icon } from "../icon";
import { Hide, Show } from "@washingtonpost/wpds-assets";
-import type { InputTextProps } from "@washingtonpost/wpds-input-text";
+import type { InputTextProps } from "../input-text";
const NAME = "InputPassword";
@@ -39,10 +39,7 @@ interface InputPasswordProps
*
* @extends InputText
*/
-export const InputPassword = React.forwardRef<
- HTMLInputElement,
- InputPasswordProps
->(
+export const InputPassword = forwardRef(
(
{
label = "Password",
@@ -52,7 +49,7 @@ export const InputPassword = React.forwardRef<
},
ref
) => {
- const [isHidden, setIsHidden] = React.useState(true);
+ const [isHidden, setIsHidden] = useState(true);
function handleButtonIconClick() {
setIsHidden((prevHidden) => !prevHidden);
diff --git a/ui/input-password/src/index.ts b/packages/kit/src/input-password/index.ts
similarity index 100%
rename from ui/input-password/src/index.ts
rename to packages/kit/src/input-password/index.ts
diff --git a/ui/input-password/src/play.stories.tsx b/packages/kit/src/input-password/play.stories.tsx
similarity index 57%
rename from ui/input-password/src/play.stories.tsx
rename to packages/kit/src/input-password/play.stories.tsx
index 155948709..98db6430e 100644
--- a/ui/input-password/src/play.stories.tsx
+++ b/packages/kit/src/input-password/play.stories.tsx
@@ -1,23 +1,19 @@
-import * as React from "react";
+import React from "react";
import { screen, userEvent } from "@storybook/testing-library";
import { expect } from "@storybook/jest";
import { InputPassword as Component } from "./";
-import { styled, theme } from "@washingtonpost/wpds-theme";
-import type { ComponentMeta, ComponentStory } from "@storybook/react";
+import { styled, theme } from "../theme";
+import type { Meta, StoryFn } from "@storybook/react";
export default {
title: "InputPassword",
component: Component,
-} as ComponentMeta;
+} as Meta;
-const Template: ComponentStory = (args) => (
-
-);
-
-export const InputPassword = Template.bind({});
-
-InputPassword.parameters = {
- chromatic: { disableSnapshot: true },
+export const InputPassword = {
+ parameters: {
+ chromatic: { disableSnapshot: true },
+ },
};
const Column = styled("div", {
@@ -76,33 +72,38 @@ const ChromaticTemplate = () => (
);
-export const Chromatic = ChromaticTemplate.bind({});
+export const Chromatic = {
+ render: ChromaticTemplate,
+};
-const InteractionsTemplate: ComponentStory = () => (
+const InteractionsTemplate: StoryFn = () => (
);
-export const Interactions = InteractionsTemplate.bind({});
-Interactions.parameters = {
- chromatic: { disableSnapshot: true },
+export const Interactions = {
+ render: InteractionsTemplate,
+
+ parameters: {
+ chromatic: { disableSnapshot: true },
+ },
+
+ play: async () => {
+ // radix Label needs a tick to associate labels with inputs
+ await sleep(0);
+ const input = screen.getByLabelText("Password");
+ await userEvent.type(input, "123456", {
+ delay: 100,
+ });
+ const toggle = screen.getByRole("button");
+ await userEvent.click(toggle);
+ await expect(input).toHaveAttribute("type", "text");
+ await sleep(500);
+ await userEvent.click(toggle);
+ await expect(input).toHaveAttribute("type", "password");
+ },
};
// Function to emulate pausing between interactions
function sleep(ms) {
return new Promise((resolve) => setTimeout(resolve, ms));
}
-
-Interactions.play = async () => {
- // radix Label needs a tick to associate labels with inputs
- await sleep(0);
- const input = screen.getByLabelText("Password");
- await userEvent.type(input, "123456", {
- delay: 100,
- });
- const toggle = screen.getByRole("button");
- await userEvent.click(toggle);
- await expect(input).toHaveAttribute("type", "text");
- await sleep(500);
- await userEvent.click(toggle);
- await expect(input).toHaveAttribute("type", "password");
-};
diff --git a/ui/input-search/src/InputSearch.tsx b/packages/kit/src/input-search/InputSearch.tsx
similarity index 100%
rename from ui/input-search/src/InputSearch.tsx
rename to packages/kit/src/input-search/InputSearch.tsx
diff --git a/ui/input-search/src/InputSearchEmptyState.test.tsx b/packages/kit/src/input-search/InputSearchEmptyState.test.tsx
similarity index 91%
rename from ui/input-search/src/InputSearchEmptyState.test.tsx
rename to packages/kit/src/input-search/InputSearchEmptyState.test.tsx
index 9c9fe7fae..6d8e91968 100644
--- a/ui/input-search/src/InputSearchEmptyState.test.tsx
+++ b/packages/kit/src/input-search/InputSearchEmptyState.test.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { render, screen } from "@testing-library/react";
import { InputSearchEmptyState } from "./InputSearchEmptyState";
diff --git a/ui/input-search/src/InputSearchEmptyState.tsx b/packages/kit/src/input-search/InputSearchEmptyState.tsx
similarity index 80%
rename from ui/input-search/src/InputSearchEmptyState.tsx
rename to packages/kit/src/input-search/InputSearchEmptyState.tsx
index 11a0c6bef..a0460bebd 100644
--- a/ui/input-search/src/InputSearchEmptyState.tsx
+++ b/packages/kit/src/input-search/InputSearchEmptyState.tsx
@@ -1,10 +1,10 @@
-import * as React from "react";
+import React from "react";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import type * as WPDS from "../theme";
-import { styled, theme } from "@washingtonpost/wpds-theme";
+import { styled, theme } from "../theme";
import { Search } from "@washingtonpost/wpds-assets";
-import { Icon } from "@washingtonpost/wpds-icon";
+import { Icon } from "../icon";
import { InputSearchOtherState } from "./InputSearchOtherState";
diff --git a/ui/input-search/src/InputSearchInput.test.tsx b/packages/kit/src/input-search/InputSearchInput.test.tsx
similarity index 96%
rename from ui/input-search/src/InputSearchInput.test.tsx
rename to packages/kit/src/input-search/InputSearchInput.test.tsx
index aa5682911..33197530e 100644
--- a/ui/input-search/src/InputSearchInput.test.tsx
+++ b/packages/kit/src/input-search/InputSearchInput.test.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { render, screen } from "@testing-library/react";
import { InputSearchInput } from "./InputSearchInput";
import { InputSearchRoot } from "./InputSearchRoot";
diff --git a/ui/input-search/src/InputSearchInput.tsx b/packages/kit/src/input-search/InputSearchInput.tsx
similarity index 86%
rename from ui/input-search/src/InputSearchInput.tsx
rename to packages/kit/src/input-search/InputSearchInput.tsx
index 10b8ffd2c..6d5a07988 100644
--- a/ui/input-search/src/InputSearchInput.tsx
+++ b/packages/kit/src/input-search/InputSearchInput.tsx
@@ -1,10 +1,10 @@
-import * as React from "react";
+import React from "react";
import { ComboboxInput } from "@reach/combobox";
-import { InputText } from "@washingtonpost/wpds-input-text";
-import { InputLabel } from "@washingtonpost/wpds-input-label";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import { InputText } from "../input-text";
+import { InputLabel } from "../input-label";
+import type * as WPDS from "../theme";
import { InputSearchContext } from "./InputSearchRoot";
diff --git a/ui/input-search/src/InputSearchItemText.test.tsx b/packages/kit/src/input-search/InputSearchItemText.test.tsx
similarity index 96%
rename from ui/input-search/src/InputSearchItemText.test.tsx
rename to packages/kit/src/input-search/InputSearchItemText.test.tsx
index 3e510bc9d..4e0982e19 100644
--- a/ui/input-search/src/InputSearchItemText.test.tsx
+++ b/packages/kit/src/input-search/InputSearchItemText.test.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { render, screen } from "@testing-library/react";
import { InputSearchItemText } from "./InputSearchItemText";
import { InputSearchRoot } from "./InputSearchRoot";
diff --git a/ui/input-search/src/InputSearchItemText.tsx b/packages/kit/src/input-search/InputSearchItemText.tsx
similarity index 84%
rename from ui/input-search/src/InputSearchItemText.tsx
rename to packages/kit/src/input-search/InputSearchItemText.tsx
index 99a3cedfa..2b4179f9c 100644
--- a/ui/input-search/src/InputSearchItemText.tsx
+++ b/packages/kit/src/input-search/InputSearchItemText.tsx
@@ -1,6 +1,6 @@
-import * as React from "react";
+import React from "react";
import { ComboboxOptionText } from "@reach/combobox";
-import { styled } from "@washingtonpost/wpds-theme";
+import { styled } from "../theme";
const StyledItemText = styled(ComboboxOptionText, {});
diff --git a/ui/input-search/src/InputSearchList.test.tsx b/packages/kit/src/input-search/InputSearchList.test.tsx
similarity index 93%
rename from ui/input-search/src/InputSearchList.test.tsx
rename to packages/kit/src/input-search/InputSearchList.test.tsx
index a6bae46ce..47945a9b4 100644
--- a/ui/input-search/src/InputSearchList.test.tsx
+++ b/packages/kit/src/input-search/InputSearchList.test.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { render, screen } from "@testing-library/react";
import { InputSearchList } from "./InputSearchList";
import { InputSearchRoot } from "./InputSearchRoot";
diff --git a/ui/input-search/src/InputSearchList.tsx b/packages/kit/src/input-search/InputSearchList.tsx
similarity index 94%
rename from ui/input-search/src/InputSearchList.tsx
rename to packages/kit/src/input-search/InputSearchList.tsx
index 81b2d1710..e3347a7cf 100644
--- a/ui/input-search/src/InputSearchList.tsx
+++ b/packages/kit/src/input-search/InputSearchList.tsx
@@ -1,6 +1,6 @@
-import * as React from "react";
+import React from "react";
import { ComboboxList, useComboboxContext } from "@reach/combobox";
-import { styled } from "@washingtonpost/wpds-theme";
+import { styled } from "../theme";
const StyledList = styled(ComboboxList, {
marginBlock: 0,
diff --git a/ui/input-search/src/InputSearchListHeading.test.tsx b/packages/kit/src/input-search/InputSearchListHeading.test.tsx
similarity index 91%
rename from ui/input-search/src/InputSearchListHeading.test.tsx
rename to packages/kit/src/input-search/InputSearchListHeading.test.tsx
index f98ad1125..a33a94481 100644
--- a/ui/input-search/src/InputSearchListHeading.test.tsx
+++ b/packages/kit/src/input-search/InputSearchListHeading.test.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { render, screen } from "@testing-library/react";
import { InputSearchListHeading } from "./InputSearchListHeading";
diff --git a/ui/input-search/src/InputSearchListHeading.tsx b/packages/kit/src/input-search/InputSearchListHeading.tsx
similarity index 81%
rename from ui/input-search/src/InputSearchListHeading.tsx
rename to packages/kit/src/input-search/InputSearchListHeading.tsx
index c0e7accff..46fedcf4f 100644
--- a/ui/input-search/src/InputSearchListHeading.tsx
+++ b/packages/kit/src/input-search/InputSearchListHeading.tsx
@@ -1,7 +1,7 @@
-import * as React from "react";
+import React from "react";
-import type * as WPDS from "@washingtonpost/wpds-theme";
-import { styled, theme } from "@washingtonpost/wpds-theme";
+import type * as WPDS from "../theme";
+import { styled, theme } from "../theme";
export type InputSearchListHeadingProps = {
/** Any React node may be used as a child */
diff --git a/ui/input-search/src/InputSearchListItem.test.tsx b/packages/kit/src/input-search/InputSearchListItem.test.tsx
similarity index 95%
rename from ui/input-search/src/InputSearchListItem.test.tsx
rename to packages/kit/src/input-search/InputSearchListItem.test.tsx
index c2ff268a9..0ffbec33c 100644
--- a/ui/input-search/src/InputSearchListItem.test.tsx
+++ b/packages/kit/src/input-search/InputSearchListItem.test.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { render, screen } from "@testing-library/react";
import { InputSearchListItem } from "./InputSearchListItem";
import { InputSearchRoot } from "./InputSearchRoot";
diff --git a/ui/input-search/src/InputSearchListItem.tsx b/packages/kit/src/input-search/InputSearchListItem.tsx
similarity index 90%
rename from ui/input-search/src/InputSearchListItem.tsx
rename to packages/kit/src/input-search/InputSearchListItem.tsx
index a7bea66b5..4ac95fb47 100644
--- a/ui/input-search/src/InputSearchListItem.tsx
+++ b/packages/kit/src/input-search/InputSearchListItem.tsx
@@ -1,6 +1,6 @@
-import * as React from "react";
+import React from "react";
import { ComboboxOption } from "@reach/combobox";
-import { styled, theme } from "@washingtonpost/wpds-theme";
+import { styled, theme } from "../theme";
const StyledListItem = styled(ComboboxOption, {
color: theme.colors.primary,
diff --git a/ui/input-search/src/InputSearchLoadingState.test.tsx b/packages/kit/src/input-search/InputSearchLoadingState.test.tsx
similarity index 91%
rename from ui/input-search/src/InputSearchLoadingState.test.tsx
rename to packages/kit/src/input-search/InputSearchLoadingState.test.tsx
index fbbdd9491..600cbdae6 100644
--- a/ui/input-search/src/InputSearchLoadingState.test.tsx
+++ b/packages/kit/src/input-search/InputSearchLoadingState.test.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { render, screen } from "@testing-library/react";
import { InputSearchLoadingState } from "./InputSearchLoadingState";
diff --git a/ui/input-search/src/InputSearchLoadingState.tsx b/packages/kit/src/input-search/InputSearchLoadingState.tsx
similarity index 78%
rename from ui/input-search/src/InputSearchLoadingState.tsx
rename to packages/kit/src/input-search/InputSearchLoadingState.tsx
index 0be4e1e08..6d0730220 100644
--- a/ui/input-search/src/InputSearchLoadingState.tsx
+++ b/packages/kit/src/input-search/InputSearchLoadingState.tsx
@@ -1,10 +1,9 @@
-import * as React from "react";
+import React from "react";
+import { styled, theme, keyframes } from "../theme";
-import { styled, theme, keyframes } from "@washingtonpost/wpds-theme";
-
-import { Icon } from "@washingtonpost/wpds-icon";
+import { Icon } from "../icon";
import { Loading } from "@washingtonpost/wpds-assets";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import type * as WPDS from "../theme";
import { InputSearchOtherState } from "./InputSearchOtherState";
diff --git a/ui/input-search/src/InputSearchOtherState.test.tsx b/packages/kit/src/input-search/InputSearchOtherState.test.tsx
similarity index 85%
rename from ui/input-search/src/InputSearchOtherState.test.tsx
rename to packages/kit/src/input-search/InputSearchOtherState.test.tsx
index 9f4e808d8..4d2ee65e2 100644
--- a/ui/input-search/src/InputSearchOtherState.test.tsx
+++ b/packages/kit/src/input-search/InputSearchOtherState.test.tsx
@@ -1,7 +1,6 @@
-import * as React from "react";
import { render, screen } from "@testing-library/react";
import { InputSearchOtherState } from "./InputSearchOtherState";
-import { Icon } from "@washingtonpost/wpds-icon";
+import { Icon } from "../icon";
import { Settings } from "@washingtonpost/wpds-assets";
describe("InputSearchOtherState", () => {
diff --git a/ui/input-search/src/InputSearchOtherState.tsx b/packages/kit/src/input-search/InputSearchOtherState.tsx
similarity index 89%
rename from ui/input-search/src/InputSearchOtherState.tsx
rename to packages/kit/src/input-search/InputSearchOtherState.tsx
index 2e0dcd353..c2b796f81 100644
--- a/ui/input-search/src/InputSearchOtherState.tsx
+++ b/packages/kit/src/input-search/InputSearchOtherState.tsx
@@ -1,8 +1,8 @@
-import * as React from "react";
+import React from "react";
-import { styled, theme } from "@washingtonpost/wpds-theme";
+import { styled, theme } from "../theme";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import type * as WPDS from "../theme";
export type InputSearchOtherStateProps = {
/** Any React node may be used as a child to allow for formatting */
diff --git a/ui/input-search/src/InputSearchPopover.test.tsx b/packages/kit/src/input-search/InputSearchPopover.test.tsx
similarity index 94%
rename from ui/input-search/src/InputSearchPopover.test.tsx
rename to packages/kit/src/input-search/InputSearchPopover.test.tsx
index 70647b335..c2b907caf 100644
--- a/ui/input-search/src/InputSearchPopover.test.tsx
+++ b/packages/kit/src/input-search/InputSearchPopover.test.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { render, screen } from "@testing-library/react";
import { InputSearchPopover } from "./InputSearchPopover";
import { InputSearchRoot } from "./InputSearchRoot";
diff --git a/ui/input-search/src/InputSearchPopover.tsx b/packages/kit/src/input-search/InputSearchPopover.tsx
similarity index 93%
rename from ui/input-search/src/InputSearchPopover.tsx
rename to packages/kit/src/input-search/InputSearchPopover.tsx
index 08c9fb427..70b020898 100644
--- a/ui/input-search/src/InputSearchPopover.tsx
+++ b/packages/kit/src/input-search/InputSearchPopover.tsx
@@ -1,7 +1,7 @@
-import * as React from "react";
+import React from "react";
import { ComboboxPopover } from "@reach/combobox";
import { positionMatchWidth } from "@reach/popover";
-import { styled, theme } from "@washingtonpost/wpds-theme";
+import { styled, theme } from "../theme";
import { InputSearchContext } from "./InputSearchRoot";
const Background = styled("div", {
diff --git a/ui/input-search/src/InputSearchRoot.test.tsx b/packages/kit/src/input-search/InputSearchRoot.test.tsx
similarity index 86%
rename from ui/input-search/src/InputSearchRoot.test.tsx
rename to packages/kit/src/input-search/InputSearchRoot.test.tsx
index 087c9e78a..3454ed671 100644
--- a/ui/input-search/src/InputSearchRoot.test.tsx
+++ b/packages/kit/src/input-search/InputSearchRoot.test.tsx
@@ -1,10 +1,10 @@
-import * as React from "react";
+import { useContext } from "react";
import { render, screen } from "@testing-library/react";
import { InputSearchRoot, InputSearchContext } from "./InputSearchRoot";
describe("InputSearchRoot", () => {
const TestComponent = () => {
- const { rootRect } = React.useContext(InputSearchContext);
+ const { rootRect } = useContext(InputSearchContext);
return {rootRect && rootRect.top}
;
};
diff --git a/ui/input-search/src/InputSearchRoot.tsx b/packages/kit/src/input-search/InputSearchRoot.tsx
similarity index 96%
rename from ui/input-search/src/InputSearchRoot.tsx
rename to packages/kit/src/input-search/InputSearchRoot.tsx
index 37bb5081c..fb2e9248e 100644
--- a/ui/input-search/src/InputSearchRoot.tsx
+++ b/packages/kit/src/input-search/InputSearchRoot.tsx
@@ -1,6 +1,6 @@
-import * as React from "react";
+import React from "react";
import { Combobox } from "@reach/combobox";
-import { styled, theme } from "@washingtonpost/wpds-theme";
+import { styled, theme } from "../theme";
type InputSearchContextProps = {
term: string;
diff --git a/ui/input-search/src/cities.ts b/packages/kit/src/input-search/cities.ts
similarity index 100%
rename from ui/input-search/src/cities.ts
rename to packages/kit/src/input-search/cities.ts
diff --git a/ui/input-search/src/index.ts b/packages/kit/src/input-search/index.ts
similarity index 100%
rename from ui/input-search/src/index.ts
rename to packages/kit/src/input-search/index.ts
diff --git a/ui/input-search/src/play.stories.tsx b/packages/kit/src/input-search/play.stories.tsx
similarity index 75%
rename from ui/input-search/src/play.stories.tsx
rename to packages/kit/src/input-search/play.stories.tsx
index cddaafbf7..2aa3edf82 100644
--- a/ui/input-search/src/play.stories.tsx
+++ b/packages/kit/src/input-search/play.stories.tsx
@@ -1,12 +1,12 @@
-import * as React from "react";
+import React, { useMemo, useState, useEffect } from "react";
import { screen, userEvent } from "@storybook/testing-library";
import { expect } from "@storybook/jest";
-import { Box } from "@washingtonpost/wpds-box";
+import { Box } from "../box";
import { matchSorter } from "match-sorter";
import { InputSearch } from "./";
import { cities } from "./cities";
-import type { ComponentStory } from "@storybook/react";
+import type { StoryFn } from "@storybook/react";
export default {
title: "InputSearch",
@@ -23,7 +23,7 @@ export default {
};
const useCityMatch = (term: string) => {
- return React.useMemo(
+ return useMemo(
() =>
term.trim() === ""
? null
@@ -34,8 +34,8 @@ const useCityMatch = (term: string) => {
);
};
-const Template: ComponentStory = (args) => {
- const [term, setTerm] = React.useState("");
+const Template: StoryFn = (args) => {
+ const [term, setTerm] = useState("");
const results: { city: string; state: string }[] | null = useCityMatch(term);
@@ -74,14 +74,14 @@ const Template: ComponentStory = (args) => {
);
};
-export const Play = Template.bind({});
+export const Play = {
+ render: Template,
+ args: {},
+ name: "InputSearch",
-Play.args = {};
-
-Play.storyName = "InputSearch";
-
-Play.parameters = {
- chromatic: { disableSnapshot: true },
+ parameters: {
+ chromatic: { disableSnapshot: true },
+ },
};
const fetchCities = (value) => {
@@ -99,13 +99,13 @@ const fetchCities = (value) => {
);
};
-const AsyncTemplate: ComponentStory = (args) => {
- const [searchTerm, setSearchTerm] = React.useState("");
- const [results, setResults] = React.useState<
+const AsyncTemplate: StoryFn = (args) => {
+ const [searchTerm, setSearchTerm] = useState("");
+ const [results, setResults] = useState<
{ city: string; state: string }[] | undefined
>();
- React.useEffect(() => {
+ useEffect(() => {
if (searchTerm === "") {
setResults(undefined);
} else {
@@ -149,15 +149,16 @@ const AsyncTemplate: ComponentStory = (args) => {
);
};
-export const Async = AsyncTemplate.bind({});
+export const Async = {
+ render: AsyncTemplate,
+ args: {},
-Async.args = {};
-
-Async.parameters = {
- chromatic: { disableSnapshot: true },
+ parameters: {
+ chromatic: { disableSnapshot: true },
+ },
};
-const GroupingTemplate: ComponentStory = (args) => {
+const GroupingTemplate: StoryFn = (args) => {
return (
@@ -180,15 +181,16 @@ const GroupingTemplate: ComponentStory = (args) => {
);
};
-export const Grouping = GroupingTemplate.bind({});
-
-Grouping.args = {};
+export const Grouping = {
+ render: GroupingTemplate,
+ args: {},
-Grouping.parameters = {
- chromatic: { disableSnapshot: true },
+ parameters: {
+ chromatic: { disableSnapshot: true },
+ },
};
-const ScrollTemplate: ComponentStory = (args) => {
+const ScrollTemplate: StoryFn = (args) => {
return (
@@ -207,15 +209,16 @@ const ScrollTemplate: ComponentStory = (args) => {
);
};
-export const Scroll = ScrollTemplate.bind({});
-
-Scroll.args = {};
+export const Scroll = {
+ render: ScrollTemplate,
+ args: {},
-Scroll.parameters = {
- chromatic: { disableSnapshot: true },
+ parameters: {
+ chromatic: { disableSnapshot: true },
+ },
};
-const InteractionsTemplate: ComponentStory = () => (
+const InteractionsTemplate: StoryFn = () => (
@@ -232,20 +235,15 @@ const InteractionsTemplate: ComponentStory = () => (
);
-export const Interactions = InteractionsTemplate.bind({});
-
-// Function to emulate pausing between interactions
-function sleep(ms) {
- return new Promise((resolve) => setTimeout(resolve, ms));
-}
-
-Interactions.play = async () => {
- // radix Label needs a tick to associate labels with inputs
- await sleep(0);
- const input = screen.getByLabelText("Search");
- await userEvent.type(input, "app", {
- delay: 100,
- });
- await userEvent.keyboard("[ArrowDown]");
- await expect(input).toHaveDisplayValue("Apple");
+export const Interactions = {
+ render: InteractionsTemplate,
+
+ play: async () => {
+ const input = await screen.findByLabelText("Search");
+ await userEvent.type(input, "app", {
+ delay: 100,
+ });
+ await userEvent.keyboard("[ArrowDown]");
+ await expect(input).toHaveDisplayValue("Apple");
+ },
};
diff --git a/ui/input-shared/src/InputShared.tsx b/packages/kit/src/input-shared/InputShared.tsx
similarity index 98%
rename from ui/input-shared/src/InputShared.tsx
rename to packages/kit/src/input-shared/InputShared.tsx
index db680cb65..0e6632faa 100644
--- a/ui/input-shared/src/InputShared.tsx
+++ b/packages/kit/src/input-shared/InputShared.tsx
@@ -1,5 +1,5 @@
import * as React from "react";
-import { css, theme, globalCss } from "@washingtonpost/wpds-theme";
+import { css, theme, globalCss } from "../theme";
export const FloatingLabelStyles = {
fontSize: theme.fontSizes["075"],
diff --git a/ui/input-shared/src/index.ts b/packages/kit/src/input-shared/index.ts
similarity index 100%
rename from ui/input-shared/src/index.ts
rename to packages/kit/src/input-shared/index.ts
diff --git a/ui/input-text/src/InputText.tsx b/packages/kit/src/input-text/InputText.tsx
similarity index 90%
rename from ui/input-text/src/InputText.tsx
rename to packages/kit/src/input-text/InputText.tsx
index bd3012563..717e9608f 100644
--- a/ui/input-text/src/InputText.tsx
+++ b/packages/kit/src/input-text/InputText.tsx
@@ -1,18 +1,19 @@
-import * as React from "react";
-import { useEffect, useState } from "react";
+import React, { useEffect, useState } from "react";
+
import { nanoid } from "nanoid";
-import { theme, styled } from "@washingtonpost/wpds-theme";
-import { Button } from "@washingtonpost/wpds-button";
-import { Divider } from "@washingtonpost/wpds-divider";
-import { Icon } from "@washingtonpost/wpds-icon";
+
+import { theme, styled } from "../theme";
+import { Button } from "../button";
+import { Divider } from "../divider";
+import { Icon } from "../icon";
import {
useFloating,
unstyledInputStyles,
globalInputAutoFillTriggerAnimations,
-} from "@washingtonpost/wpds-input-shared";
-import { ErrorMessage } from "@washingtonpost/wpds-error-message";
-import { HelperText } from "@washingtonpost/wpds-helper-text";
-import { VisuallyHidden } from "@washingtonpost/wpds-visually-hidden";
+} from "../input-shared";
+import { ErrorMessage } from "../error-message";
+import { HelperText } from "../helper-text";
+import { VisuallyHidden } from "../visually-hidden";
import {
Search,
Globe,
@@ -22,7 +23,7 @@ import {
} from "@washingtonpost/wpds-assets";
import { TextInputLabel } from "./TextInputLabel";
import { StyledContainer } from "./StyledContainer";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import type * as WPDS from "../theme";
const NAME = "InputText";
@@ -54,8 +55,15 @@ const ButtonIcon = styled(Button, {
marginInlineEnd: theme.space["050"],
});
+const ButtonClose = styled(Button, {
+ "&.override": {
+ border: "none",
+ borderRadius: theme.radii["012"],
+ },
+});
+
const ButtonDivider = styled(Divider, {
- "&[data-orientation=vertical]": { height: theme.sizes["150"] },
+ "&[data-orientation=vertical].override": { height: theme.sizes["150"] },
marginInline: theme.sizes["025"],
});
@@ -141,10 +149,10 @@ export const InputText = React.forwardRef(
const [errorId, setErrorId] = useState();
const [isAutofilled, setIsAutofilled] = useState(false);
const internalRef = React.useRef(null);
-
+ const rootId = nanoid();
useEffect(() => {
- setHelperId(`wpds-input-helper-${nanoid(6)}`);
- setErrorId(`wpds-input-error-${nanoid(6)}`);
+ setHelperId(`wpds-input-helper-${rootId}`);
+ setErrorId(`wpds-input-error-${rootId}`);
}, []);
//takes into account ref that might be passed into the component
@@ -326,18 +334,11 @@ export const InputText = React.forwardRef(
{isFloating && type === "search" && internalRef.current?.value && (
<>
- {
event.preventDefault();
}}
@@ -348,8 +349,8 @@ export const InputText = React.forwardRef(
-
-
+
+
>
)}
{child && icon === "right" && (
diff --git a/ui/input-text/src/StyledContainer.tsx b/packages/kit/src/input-text/StyledContainer.tsx
similarity index 87%
rename from ui/input-text/src/StyledContainer.tsx
rename to packages/kit/src/input-text/StyledContainer.tsx
index 6a978adf9..7f4c90ff4 100644
--- a/ui/input-text/src/StyledContainer.tsx
+++ b/packages/kit/src/input-text/StyledContainer.tsx
@@ -1,12 +1,12 @@
-import * as React from "react";
-import { theme, styled } from "@washingtonpost/wpds-theme";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import React from "react";
+import { theme, styled } from "../theme";
+import type * as WPDS from "../theme";
import {
sharedInputStyles,
sharedInputVariants,
FloatingLabelStyles,
-} from "@washingtonpost/wpds-input-shared";
+} from "../input-shared";
import { TextInputLabel } from "./TextInputLabel";
diff --git a/ui/input-text/src/TextInputLabel.tsx b/packages/kit/src/input-text/TextInputLabel.tsx
similarity index 65%
rename from ui/input-text/src/TextInputLabel.tsx
rename to packages/kit/src/input-text/TextInputLabel.tsx
index ffe7ba9ff..b186d08e7 100644
--- a/ui/input-text/src/TextInputLabel.tsx
+++ b/packages/kit/src/input-text/TextInputLabel.tsx
@@ -1,6 +1,6 @@
-import { styled, theme } from "@washingtonpost/wpds-theme";
-import { InputLabel } from "@washingtonpost/wpds-input-label";
-import { FloatingLabelStyles } from "@washingtonpost/wpds-input-shared";
+import { styled, theme } from "../theme";
+import { InputLabel } from "../input-label";
+import { FloatingLabelStyles } from "../input-shared";
export const TextInputLabel = styled(InputLabel, {
insetBlockStart: "0",
diff --git a/ui/input-text/src/index.ts b/packages/kit/src/input-text/index.ts
similarity index 100%
rename from ui/input-text/src/index.ts
rename to packages/kit/src/input-text/index.ts
diff --git a/ui/input-text/src/play.stories.tsx b/packages/kit/src/input-text/play.stories.tsx
similarity index 58%
rename from ui/input-text/src/play.stories.tsx
rename to packages/kit/src/input-text/play.stories.tsx
index 567d28298..c14e4fa47 100644
--- a/ui/input-text/src/play.stories.tsx
+++ b/packages/kit/src/input-text/play.stories.tsx
@@ -1,14 +1,14 @@
-import * as React from "react";
+import React, { useState } from "react";
import { screen, userEvent } from "@storybook/testing-library";
import { expect, jest } from "@storybook/jest";
-import type { ComponentMeta, ComponentStory } from "@storybook/react";
+import type { Meta, StoryFn } from "@storybook/react";
-import { Icon } from "@washingtonpost/wpds-icon";
-import { Button } from "@washingtonpost/wpds-button";
+import { Icon } from "../icon";
+import { Button } from "../button";
import Asset from "@washingtonpost/wpds-assets/asset/settings";
-import { VisuallyHidden } from "@washingtonpost/wpds-visually-hidden";
-import { styled, theme } from "@washingtonpost/wpds-theme";
+import { VisuallyHidden } from "../visually-hidden";
+import { styled, theme } from "../theme";
import { InputText as Component } from "./";
@@ -38,21 +38,24 @@ export default {
},
},
},
-} as ComponentMeta;
-
-const Template: ComponentStory = (args) => (
-
-);
+ args: {
+ label: "Label",
+ type: "text",
+ icon: "left",
+ onButtonIconClick: jest.fn(),
+ },
+} as Meta;
-export const InputText = Template.bind({});
-InputText.parameters = {
- chromatic: { disableSnapshot: true },
+export const InputText = {
+ parameters: {
+ chromatic: { disableSnapshot: true },
+ },
};
-export const AutoFocus = Template.bind({});
-
-AutoFocus.args = {
- autoFocus: true,
+export const AutoFocus = {
+ args: {
+ autoFocus: true,
+ },
};
const SynchContainer = styled("div", {
@@ -62,8 +65,8 @@ const SynchContainer = styled("div", {
});
const SynchTemplate = () => {
- const [val1, setVal1] = React.useState("Value");
- const [val2, setVal2] = React.useState("");
+ const [val1, setVal1] = useState("Value");
+ const [val2, setVal2] = useState("");
return (
@@ -89,9 +92,8 @@ const SynchTemplate = () => {
);
};
-export const InputSynch = SynchTemplate.bind({});
-InputText.parameters = {
- chromatic: { disableSnapshot: true },
+export const InputSynch = {
+ render: SynchTemplate,
};
const Column = styled("div", {
@@ -202,11 +204,13 @@ const ChromaticTemplate = () => (
);
-export const Chromatic = ChromaticTemplate.bind({});
+export const Chromatic = {
+ render: ChromaticTemplate,
+};
-const FormTemplate: ComponentStory = (args) => {
- const [iconClicked, setIconClicked] = React.useState(false);
- const [submitClicked, setSubmitClicked] = React.useState(false);
+const FormTemplate: StoryFn = (args) => {
+ const [iconClicked, setIconClicked] = useState(false);
+ const [submitClicked, setSubmitClicked] = useState(false);
return (
@@ -233,37 +237,39 @@ const FormTemplate: ComponentStory
= (args) => {
);
};
-export const SearchTypeInForm = FormTemplate.bind({});
+export const SearchTypeInForm = {
+ render: FormTemplate,
-SearchTypeInForm.args = {
- buttonIconType: "button",
-};
+ args: {
+ buttonIconType: "button",
+ },
-SearchTypeInForm.parameters = {
- chromatic: { disableSnapshot: true },
-};
+ parameters: {
+ chromatic: { disableSnapshot: true },
+ },
-SearchTypeInForm.argTypes = {
- buttonIconText: { table: { disable: true } },
- disabled: { table: { disable: true } },
- error: { table: { disable: true } },
- label: { table: { disable: true } },
- icon: { table: { disable: true } },
- name: { table: { disable: true } },
- id: { table: { disable: true } },
- placeholder: { table: { disable: true } },
- required: { table: { disable: true } },
- success: { table: { disable: true } },
- value: { table: { disable: true } },
- defaultValue: { table: { disable: true } },
- type: { table: { disable: true } },
- css: { table: { disable: true } },
- errorMessage: { table: { disable: true } },
- helperText: { table: { disable: true } },
- children: { table: { disable: true } },
+ argTypes: {
+ buttonIconText: { table: { disable: true } },
+ disabled: { table: { disable: true } },
+ error: { table: { disable: true } },
+ label: { table: { disable: true } },
+ icon: { table: { disable: true } },
+ name: { table: { disable: true } },
+ id: { table: { disable: true } },
+ placeholder: { table: { disable: true } },
+ required: { table: { disable: true } },
+ success: { table: { disable: true } },
+ value: { table: { disable: true } },
+ defaultValue: { table: { disable: true } },
+ type: { table: { disable: true } },
+ css: { table: { disable: true } },
+ errorMessage: { table: { disable: true } },
+ helperText: { table: { disable: true } },
+ children: { table: { disable: true } },
+ },
};
-const InteractionsTemplate: ComponentStory = (args) => (
+const InteractionsTemplate: StoryFn = (args) => (
@@ -284,9 +290,32 @@ const InteractionsTemplate: ComponentStory = (args) => (
);
-export const Interactions = InteractionsTemplate.bind({});
-Interactions.parameters = {
- chromatic: { disableSnapshot: true },
+export const Interactions = {
+ render: InteractionsTemplate,
+
+ parameters: {
+ chromatic: { disableSnapshot: true },
+ },
+
+ play: async ({ args }) => {
+ // radix Label needs a tick to associate labels with inputs
+ await sleep(0);
+ const label1 = screen.getAllByText("Field 1")[0];
+ await expect(label1).toHaveStyle("font-size: 16px");
+ await userEvent.type(screen.getByLabelText("Field 1"), "user text", {
+ delay: 100,
+ });
+ await expect(label1).toHaveStyle("font-size: 12px");
+ await userEvent.tab();
+ await sleep(250);
+ const label2 = screen.getAllByText("Field 2")[0];
+ await expect(label2).toHaveStyle("font-size: 12px");
+ await userEvent.tab();
+ await sleep(250);
+ await expect(label2).toHaveStyle("font-size: 16px");
+ await userEvent.click(screen.getAllByRole("button")[0]);
+ await expect(args.onButtonIconClick).toHaveBeenCalled();
+ },
};
// Function to emulate pausing between interactions
@@ -294,41 +323,25 @@ function sleep(ms) {
return new Promise((resolve) => setTimeout(resolve, ms));
}
-Interactions.play = async ({ args }) => {
- // radix Label needs a tick to associate labels with inputs
- await sleep(0);
- const label1 = screen.getAllByText("Field 1")[0];
- await expect(label1).toHaveStyle("font-size: 16px");
- await userEvent.type(screen.getByLabelText("Field 1"), "user text", {
- delay: 100,
- });
- await expect(label1).toHaveStyle("font-size: 12px");
- await userEvent.tab();
- await sleep(250);
- const label2 = screen.getAllByText("Field 2")[0];
- await expect(label2).toHaveStyle("font-size: 12px");
- await userEvent.tab();
- await sleep(250);
- await expect(label2).toHaveStyle("font-size: 16px");
- await userEvent.click(screen.getAllByRole("button")[0]);
- await expect(args.onButtonIconClick).toHaveBeenCalled();
-};
+export const TypeSearch = {
+ args: {
+ type: "search",
+ },
-export const TypeSearch = Template.bind({});
-TypeSearch.args = {
- type: "search",
-};
-TypeSearch.parameters = {
- chromatic: { disableSnapshot: true },
+ parameters: {
+ chromatic: { disableSnapshot: true },
+ },
};
-export const AutoFilledTypeText = Template.bind({});
-AutoFilledTypeText.args = {
- type: "text",
- name: "my-name",
- autoComplete: "given-name",
- id: "my-name",
-};
-AutoFilledTypeText.parameters = {
- chromatic: { disableSnapshot: true },
+export const AutoFilledTypeText = {
+ args: {
+ type: "text",
+ name: "my-name",
+ autoComplete: "given-name",
+ id: "my-name",
+ },
+
+ parameters: {
+ chromatic: { disableSnapshot: true },
+ },
};
diff --git a/ui/input-textarea/src/InputTextarea.tsx b/packages/kit/src/input-textarea/InputTextarea.tsx
similarity index 91%
rename from ui/input-textarea/src/InputTextarea.tsx
rename to packages/kit/src/input-textarea/InputTextarea.tsx
index 323ac88f4..bd11137b4 100644
--- a/ui/input-textarea/src/InputTextarea.tsx
+++ b/packages/kit/src/input-textarea/InputTextarea.tsx
@@ -1,18 +1,19 @@
-import * as React from "react";
-import { useEffect, useState } from "react";
+import React, { useEffect, useState } from "react";
+
import { nanoid } from "nanoid";
-import { theme, css, styled } from "@washingtonpost/wpds-theme";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+
+import { theme, css, styled } from "../theme";
+import type * as WPDS from "../theme";
import {
sharedInputStyles,
sharedInputVariants,
useFloating,
globalInputAutoFillTriggerAnimations,
FloatingLabelStyles,
-} from "@washingtonpost/wpds-input-shared";
-import { InputLabel } from "@washingtonpost/wpds-input-label";
-import { ErrorMessage } from "@washingtonpost/wpds-error-message";
-import { HelperText } from "@washingtonpost/wpds-helper-text";
+} from "../input-shared";
+import { InputLabel } from "../input-label";
+import { ErrorMessage } from "../error-message";
+import { HelperText } from "../helper-text";
const NAME = "InputTextarea";
@@ -67,6 +68,8 @@ export interface InputTextareaProps
WPDS.VariantProps,
"isInvalid" | "isDisabled"
> {
+ /** children */
+ children?: React.ReactNode;
/** Override CSS */
css?: WPDS.CSS;
/** The initial input element value for uncontrolled components */
@@ -132,9 +135,10 @@ export const InputTextarea = React.forwardRef<
const internalRef = React.useRef(null);
+ const rootId = nanoid();
useEffect(() => {
- setHelperId(`wpds-input-helper-${nanoid(6)}`);
- setErrorId(`wpds-input-error-${nanoid(6)}`);
+ setHelperId(`wpds-input-helper-${rootId}`);
+ setErrorId(`wpds-input-error-${rootId}`);
}, []);
//takes into account ref that might be passed into the component
diff --git a/ui/input-textarea/src/index.ts b/packages/kit/src/input-textarea/index.ts
similarity index 100%
rename from ui/input-textarea/src/index.ts
rename to packages/kit/src/input-textarea/index.ts
diff --git a/packages/kit/src/input-textarea/play.stories.tsx b/packages/kit/src/input-textarea/play.stories.tsx
new file mode 100644
index 000000000..a111ed423
--- /dev/null
+++ b/packages/kit/src/input-textarea/play.stories.tsx
@@ -0,0 +1,33 @@
+import { InputTextarea as Component } from "./";
+import type { Meta, StoryFn } from "@storybook/react";
+
+export default {
+ title: "InputTextarea",
+ component: Component,
+} as Meta;
+
+export const Play = {
+ name: "InputTextarea",
+
+ args: {
+ canResize: false,
+ name: "text-area-1",
+ id: "text-area-1",
+ label: "Label",
+ },
+
+ argTypes: {
+ helperText: { control: "text" },
+ },
+};
+
+export const Error = {
+ args: {
+ canResize: false,
+ name: "text-area-2",
+ id: "text-area-2",
+ label: "Label",
+ error: true,
+ errorMessage: "Error message",
+ },
+};
diff --git a/ui/navigation-menu/src/NavigationMenu.tsx b/packages/kit/src/navigation-menu/NavigationMenu.tsx
similarity index 100%
rename from ui/navigation-menu/src/NavigationMenu.tsx
rename to packages/kit/src/navigation-menu/NavigationMenu.tsx
diff --git a/ui/navigation-menu/src/NavigationMenuContent.test.tsx b/packages/kit/src/navigation-menu/NavigationMenuContent.test.tsx
similarity index 99%
rename from ui/navigation-menu/src/NavigationMenuContent.test.tsx
rename to packages/kit/src/navigation-menu/NavigationMenuContent.test.tsx
index bd6f23cf6..43eef47c9 100644
--- a/ui/navigation-menu/src/NavigationMenuContent.test.tsx
+++ b/packages/kit/src/navigation-menu/NavigationMenuContent.test.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { render, screen, waitFor } from "@testing-library/react";
import userEvent from "@testing-library/user-event";
import { NavigationMenuRoot } from "./NavigationMenuRoot";
diff --git a/ui/navigation-menu/src/NavigationMenuContent.tsx b/packages/kit/src/navigation-menu/NavigationMenuContent.tsx
similarity index 97%
rename from ui/navigation-menu/src/NavigationMenuContent.tsx
rename to packages/kit/src/navigation-menu/NavigationMenuContent.tsx
index 38da3b042..582b37724 100644
--- a/ui/navigation-menu/src/NavigationMenuContent.tsx
+++ b/packages/kit/src/navigation-menu/NavigationMenuContent.tsx
@@ -1,12 +1,12 @@
-import * as React from "react";
+import React from "react";
import { createPortal } from "react-dom";
import * as NavigationMenuPrimitive from "@radix-ui/react-navigation-menu";
import { CSSTransition } from "react-transition-group";
import { usePopper } from "react-popper";
import maxSize from "popper-max-size-modifier";
-import { styled, theme } from "@washingtonpost/wpds-theme";
+import { styled, theme } from "../theme";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import type * as WPDS from "../theme";
import type { Modifier } from "@popperjs/core";
const NAME = "NavigationMenuContent";
diff --git a/ui/navigation-menu/src/NavigationMenuItem.test.tsx b/packages/kit/src/navigation-menu/NavigationMenuItem.test.tsx
similarity index 97%
rename from ui/navigation-menu/src/NavigationMenuItem.test.tsx
rename to packages/kit/src/navigation-menu/NavigationMenuItem.test.tsx
index 11a2dc70b..f599c6626 100644
--- a/ui/navigation-menu/src/NavigationMenuItem.test.tsx
+++ b/packages/kit/src/navigation-menu/NavigationMenuItem.test.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { render, screen } from "@testing-library/react";
import { NavigationMenuRoot } from "./NavigationMenuRoot";
import { NavigationMenuList } from "./NavigationMenuList";
diff --git a/ui/navigation-menu/src/NavigationMenuItem.tsx b/packages/kit/src/navigation-menu/NavigationMenuItem.tsx
similarity index 93%
rename from ui/navigation-menu/src/NavigationMenuItem.tsx
rename to packages/kit/src/navigation-menu/NavigationMenuItem.tsx
index 4b0a89dfc..a12f5f79d 100644
--- a/ui/navigation-menu/src/NavigationMenuItem.tsx
+++ b/packages/kit/src/navigation-menu/NavigationMenuItem.tsx
@@ -1,9 +1,9 @@
-import * as React from "react";
+import React from "react";
import * as NavigationMenuPrimitive from "@radix-ui/react-navigation-menu";
import { NavigationMenuTrigger } from "./NavigationMenuTrigger";
import { NavigationMenuContent } from "./NavigationMenuContent";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import type * as WPDS from "../theme";
const NAME = "NavigationMenuItem";
diff --git a/ui/navigation-menu/src/NavigationMenuLink.test.tsx b/packages/kit/src/navigation-menu/NavigationMenuLink.test.tsx
similarity index 97%
rename from ui/navigation-menu/src/NavigationMenuLink.test.tsx
rename to packages/kit/src/navigation-menu/NavigationMenuLink.test.tsx
index ea2d1fe3b..20e6cde36 100644
--- a/ui/navigation-menu/src/NavigationMenuLink.test.tsx
+++ b/packages/kit/src/navigation-menu/NavigationMenuLink.test.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { render, screen } from "@testing-library/react";
import { NavigationMenuRoot } from "./NavigationMenuRoot";
import { NavigationMenuList } from "./NavigationMenuList";
diff --git a/ui/navigation-menu/src/NavigationMenuLink.tsx b/packages/kit/src/navigation-menu/NavigationMenuLink.tsx
similarity index 90%
rename from ui/navigation-menu/src/NavigationMenuLink.tsx
rename to packages/kit/src/navigation-menu/NavigationMenuLink.tsx
index 1ae5b54b1..8d4dbd817 100644
--- a/ui/navigation-menu/src/NavigationMenuLink.tsx
+++ b/packages/kit/src/navigation-menu/NavigationMenuLink.tsx
@@ -1,8 +1,8 @@
-import * as React from "react";
+import React from "react";
import * as NavigationMenuPrimitive from "@radix-ui/react-navigation-menu";
-import { styled, theme } from "@washingtonpost/wpds-theme";
+import { styled, theme } from "../theme";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import type * as WPDS from "../theme";
const NAME = "NavigationMenuLink";
diff --git a/ui/navigation-menu/src/NavigationMenuList.test.tsx b/packages/kit/src/navigation-menu/NavigationMenuList.test.tsx
similarity index 93%
rename from ui/navigation-menu/src/NavigationMenuList.test.tsx
rename to packages/kit/src/navigation-menu/NavigationMenuList.test.tsx
index e4bb8bcef..ff51c57f4 100644
--- a/ui/navigation-menu/src/NavigationMenuList.test.tsx
+++ b/packages/kit/src/navigation-menu/NavigationMenuList.test.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { render, screen } from "@testing-library/react";
import { NavigationMenuRoot } from "./NavigationMenuRoot";
import { NavigationMenuList } from "./NavigationMenuList";
diff --git a/ui/navigation-menu/src/NavigationMenuList.tsx b/packages/kit/src/navigation-menu/NavigationMenuList.tsx
similarity index 86%
rename from ui/navigation-menu/src/NavigationMenuList.tsx
rename to packages/kit/src/navigation-menu/NavigationMenuList.tsx
index 4ba122f3e..8e9003fa1 100644
--- a/ui/navigation-menu/src/NavigationMenuList.tsx
+++ b/packages/kit/src/navigation-menu/NavigationMenuList.tsx
@@ -1,8 +1,8 @@
-import * as React from "react";
+import React from "react";
import * as NavigationMenuPrimitive from "@radix-ui/react-navigation-menu";
-import { styled } from "@washingtonpost/wpds-theme";
+import { styled } from "../theme";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import type * as WPDS from "../theme";
const NAME = "NavigationMenuList";
diff --git a/ui/navigation-menu/src/NavigationMenuRoot.test.tsx b/packages/kit/src/navigation-menu/NavigationMenuRoot.test.tsx
similarity index 92%
rename from ui/navigation-menu/src/NavigationMenuRoot.test.tsx
rename to packages/kit/src/navigation-menu/NavigationMenuRoot.test.tsx
index 4bed7bb69..d514dd100 100644
--- a/ui/navigation-menu/src/NavigationMenuRoot.test.tsx
+++ b/packages/kit/src/navigation-menu/NavigationMenuRoot.test.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { render, screen } from "@testing-library/react";
import { NavigationMenuRoot } from "./NavigationMenuRoot";
diff --git a/ui/navigation-menu/src/NavigationMenuRoot.tsx b/packages/kit/src/navigation-menu/NavigationMenuRoot.tsx
similarity index 88%
rename from ui/navigation-menu/src/NavigationMenuRoot.tsx
rename to packages/kit/src/navigation-menu/NavigationMenuRoot.tsx
index 674b0a836..26bfeca00 100644
--- a/ui/navigation-menu/src/NavigationMenuRoot.tsx
+++ b/packages/kit/src/navigation-menu/NavigationMenuRoot.tsx
@@ -1,6 +1,6 @@
-import * as React from "react";
+import React from "react";
import * as NavigationMenuPrimitive from "@radix-ui/react-navigation-menu";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import type * as WPDS from "../theme";
const NAME = "NavigationMenuRoot";
diff --git a/ui/navigation-menu/src/NavigationMenuSub.test.tsx b/packages/kit/src/navigation-menu/NavigationMenuSub.test.tsx
similarity index 95%
rename from ui/navigation-menu/src/NavigationMenuSub.test.tsx
rename to packages/kit/src/navigation-menu/NavigationMenuSub.test.tsx
index c6295cb57..49b210867 100644
--- a/ui/navigation-menu/src/NavigationMenuSub.test.tsx
+++ b/packages/kit/src/navigation-menu/NavigationMenuSub.test.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { render, screen } from "@testing-library/react";
import { NavigationMenuRoot } from "./NavigationMenuRoot";
import { NavigationMenuList } from "./NavigationMenuList";
diff --git a/ui/navigation-menu/src/NavigationMenuSub.tsx b/packages/kit/src/navigation-menu/NavigationMenuSub.tsx
similarity index 88%
rename from ui/navigation-menu/src/NavigationMenuSub.tsx
rename to packages/kit/src/navigation-menu/NavigationMenuSub.tsx
index 7ed763e00..388addf99 100644
--- a/ui/navigation-menu/src/NavigationMenuSub.tsx
+++ b/packages/kit/src/navigation-menu/NavigationMenuSub.tsx
@@ -1,6 +1,6 @@
-import * as React from "react";
+import React from "react";
import * as NavigationMenuPrimitive from "@radix-ui/react-navigation-menu";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import type * as WPDS from "../theme";
const NAME = "NavigationMenuSub";
diff --git a/ui/navigation-menu/src/NavigationMenuTrigger.test.tsx b/packages/kit/src/navigation-menu/NavigationMenuTrigger.test.tsx
similarity index 97%
rename from ui/navigation-menu/src/NavigationMenuTrigger.test.tsx
rename to packages/kit/src/navigation-menu/NavigationMenuTrigger.test.tsx
index d3c6c6368..5951a7ced 100644
--- a/ui/navigation-menu/src/NavigationMenuTrigger.test.tsx
+++ b/packages/kit/src/navigation-menu/NavigationMenuTrigger.test.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { render, screen } from "@testing-library/react";
import { NavigationMenuRoot } from "./NavigationMenuRoot";
import { NavigationMenuList } from "./NavigationMenuList";
diff --git a/ui/navigation-menu/src/NavigationMenuTrigger.tsx b/packages/kit/src/navigation-menu/NavigationMenuTrigger.tsx
similarity index 89%
rename from ui/navigation-menu/src/NavigationMenuTrigger.tsx
rename to packages/kit/src/navigation-menu/NavigationMenuTrigger.tsx
index 1713d662e..a63568dee 100644
--- a/ui/navigation-menu/src/NavigationMenuTrigger.tsx
+++ b/packages/kit/src/navigation-menu/NavigationMenuTrigger.tsx
@@ -1,8 +1,8 @@
-import * as React from "react";
+import React from "react";
import * as NavigationMenuPrimitive from "@radix-ui/react-navigation-menu";
-import { styled, theme } from "@washingtonpost/wpds-theme";
+import { styled, theme } from "../theme";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import type * as WPDS from "../theme";
const NAME = "NavigationMenuTrigger";
diff --git a/ui/navigation-menu/src/index.ts b/packages/kit/src/navigation-menu/index.ts
similarity index 100%
rename from ui/navigation-menu/src/index.ts
rename to packages/kit/src/navigation-menu/index.ts
diff --git a/ui/navigation-menu/src/play.stories.tsx b/packages/kit/src/navigation-menu/play.stories.tsx
similarity index 82%
rename from ui/navigation-menu/src/play.stories.tsx
rename to packages/kit/src/navigation-menu/play.stories.tsx
index 93f03e9b8..5d69eeaca 100644
--- a/ui/navigation-menu/src/play.stories.tsx
+++ b/packages/kit/src/navigation-menu/play.stories.tsx
@@ -1,14 +1,14 @@
-import * as React from "react";
+import React from "react";
import { userEvent, screen } from "@storybook/testing-library";
import { expect } from "@storybook/jest";
-import { NavigationMenu } from "./";
-import { Button } from "@washingtonpost/wpds-button";
-import { Icon } from "@washingtonpost/wpds-icon";
-import { theme } from "@washingtonpost/wpds-theme";
+import { NavigationMenu } from ".";
+import { Button } from "../button";
+import { Icon } from "../icon";
+import { theme } from "../theme";
import { ChevronRight, ChevronDown, Menu } from "@washingtonpost/wpds-assets";
import NextLink from "next/link";
-import type { ComponentMeta, ComponentStory } from "@storybook/react";
+import type { Meta, StoryFn } from "@storybook/react";
import states from "./states.json";
@@ -23,9 +23,9 @@ export default {
Content: NavigationMenu.Content,
Sub: NavigationMenu.Sub,
},
-} as ComponentMeta;
+} as Meta;
-const Template: ComponentStory = (args) => {
+const Template: StoryFn = (args) => {
console.log(args);
return (
@@ -46,7 +46,9 @@ const Template: ComponentStory = (args) => {
Apples
- Bananas
+
+ Bananas
+
Oranges
@@ -63,17 +65,17 @@ const Template: ComponentStory = (args) => {
);
};
-export const Default = Template.bind({});
+export const Default = {
+ render: Template,
+};
-const UseNextLinkTemplate: ComponentStory = (
- args
-) => {
+const UseNextLinkTemplate: StoryFn = (args) => {
console.log(args);
return (
-
+
Next Link
@@ -82,10 +84,12 @@ const UseNextLinkTemplate: ComponentStory = (
);
};
-export const UseNextLink = UseNextLinkTemplate.bind({});
+export const UseNextLink = {
+ render: UseNextLinkTemplate,
+};
// eslint-disable-next-line @typescript-eslint/no-explicit-any
-const SideAlignTemplate: ComponentStory = (args) => {
+const SideAlignTemplate: StoryFn = (args) => {
console.log("args", args);
return (
@@ -123,27 +127,27 @@ const SideAlignTemplate: ComponentStory = (args) => {
);
};
-export const SideAlign = SideAlignTemplate.bind({});
+export const SideAlign = {
+ render: SideAlignTemplate,
-SideAlign.argTypes = {
- side: {
- options: ["top", "bottom", "left", "right"],
- control: { type: "select" },
- },
- align: {
- options: ["start", "center", "end"],
- control: { type: "select" },
+ argTypes: {
+ side: {
+ options: ["top", "bottom", "left", "right"],
+ control: { type: "select" },
+ },
+ align: {
+ options: ["start", "center", "end"],
+ control: { type: "select" },
+ },
},
-};
-SideAlign.args = {
- side: "bottom",
- align: "start",
+ args: {
+ side: "bottom",
+ align: "start",
+ },
};
-const HorizontalTemplate: ComponentStory = (
- args
-) => {
+const HorizontalTemplate: StoryFn = (args) => {
return (
@@ -200,9 +204,11 @@ const HorizontalTemplate: ComponentStory = (
);
};
-export const Horizontal = HorizontalTemplate.bind({});
+export const Horizontal = {
+ render: HorizontalTemplate,
+};
-const VerticalTemplate: ComponentStory = (args) => {
+const VerticalTemplate: StoryFn = (args) => {
const subsections = [
{
text: "The Post's View",
@@ -262,10 +268,12 @@ const VerticalTemplate: ComponentStory = (args) => {
);
};
-export const Vertical = VerticalTemplate.bind({});
+export const Vertical = {
+ render: VerticalTemplate,
+};
// eslint-disable-next-line @typescript-eslint/no-explicit-any
-const InteractionsTemplate: ComponentStory = () => (
+const InteractionsTemplate: StoryFn = () => (
@@ -300,23 +308,26 @@ const InteractionsTemplate: ComponentStory = () => (
);
-export const Interactions = InteractionsTemplate.bind({});
-Interactions.parameters = {
- chromatic: { disableSnapshot: true },
+export const Interactions = {
+ render: InteractionsTemplate,
+
+ parameters: {
+ chromatic: { disableSnapshot: true },
+ },
+
+ play: async () => {
+ userEvent.tab();
+ userEvent.keyboard("{Enter}");
+ await sleep(350);
+ const content = screen.getByText("Apples");
+ await expect(content).toBeVisible();
+ userEvent.keyboard("{Escape}");
+ await sleep(350);
+ await expect(content).not.toBeVisible();
+ },
};
// Function to emulate pausing between interactions
function sleep(ms) {
return new Promise((resolve) => setTimeout(resolve, ms));
}
-
-Interactions.play = async () => {
- userEvent.tab();
- userEvent.keyboard("{Enter}");
- await sleep(350);
- const content = screen.getByText("Apples");
- await expect(content).toBeVisible();
- userEvent.keyboard("{Escape}");
- await sleep(350);
- await expect(content).not.toBeVisible();
-};
diff --git a/ui/navigation-menu/src/states.json b/packages/kit/src/navigation-menu/states.json
similarity index 100%
rename from ui/navigation-menu/src/states.json
rename to packages/kit/src/navigation-menu/states.json
diff --git a/ui/pagination-dots/src/PaginationDots.tsx b/packages/kit/src/pagination-dots/PaginationDots.tsx
similarity index 97%
rename from ui/pagination-dots/src/PaginationDots.tsx
rename to packages/kit/src/pagination-dots/PaginationDots.tsx
index 5819e1539..b59d43832 100644
--- a/ui/pagination-dots/src/PaginationDots.tsx
+++ b/packages/kit/src/pagination-dots/PaginationDots.tsx
@@ -1,6 +1,6 @@
-import * as React from "react";
-import type * as WPDS from "@washingtonpost/wpds-theme";
-import { theme, styled } from "@washingtonpost/wpds-theme";
+import React from "react";
+import type * as WPDS from "../theme";
+import { theme, styled } from "../theme";
const NAME = "PaginationDots";
const ACTIVECOLOR = "primary";
diff --git a/ui/pagination-dots/src/index.ts b/packages/kit/src/pagination-dots/index.ts
similarity index 100%
rename from ui/pagination-dots/src/index.ts
rename to packages/kit/src/pagination-dots/index.ts
diff --git a/ui/pagination-dots/src/play.stories.tsx b/packages/kit/src/pagination-dots/play.stories.tsx
similarity index 56%
rename from ui/pagination-dots/src/play.stories.tsx
rename to packages/kit/src/pagination-dots/play.stories.tsx
index f7f4ecce8..ddae48940 100644
--- a/ui/pagination-dots/src/play.stories.tsx
+++ b/packages/kit/src/pagination-dots/play.stories.tsx
@@ -1,12 +1,12 @@
-import * as React from "react";
+import React, { useMemo, useState, useEffect } from "react";
import { PaginationDots as Component } from "./";
-import { theme, styled } from "@washingtonpost/wpds-theme";
-import { Button } from "@washingtonpost/wpds-button";
-import { InputText } from "@washingtonpost/wpds-ui-kit";
+import { theme, styled } from "../theme";
+import { Button } from "../button";
+import { InputText } from "../input-text";
import { within, userEvent } from "@storybook/testing-library";
import { expect } from "@storybook/jest";
-import type { ComponentMeta, ComponentStory } from "@storybook/react";
+import type { Meta, StoryFn } from "@storybook/react";
const Stack = styled("section", {
display: "flex",
@@ -26,7 +26,7 @@ const HStack = styled("section", {
export default {
title: "PaginationDots",
component: Component,
-} as ComponentMeta;
+} as Meta;
const DefaultArgs = {
amount: 6,
@@ -40,21 +40,23 @@ const Label = styled("h3", {
textAlign: "center",
});
-export const PaginationDots = (args) => (
-
- Pagination Dots
-
-
-);
+export const PaginationDots = {
+ render: (args) => (
+
+ Pagination Dots
+
+
+ ),
-PaginationDots.args = { ...DefaultArgs };
+ args: { ...DefaultArgs },
+};
-const Template: ComponentStory = (args, context) => {
- const id = React.useMemo(() => `${Math.random()}-amount`.slice(2), []);
- const [amount, setAmount] = React.useState("5");
- const [index, setIndex] = React.useState(1);
+const Template: StoryFn = (args, context) => {
+ const id = useMemo(() => `${Math.random()}-amount`.slice(2), []);
+ const [amount, setAmount] = useState("5");
+ const [index, setIndex] = useState(1);
- React.useEffect(() => setAmount(amount), [amount]);
+ useEffect(() => setAmount(amount), [amount]);
return (
@@ -106,54 +108,69 @@ const Template: ComponentStory = (args, context) => {
);
};
-export const WithControls = Template.bind({});
+export const WithControls = {
+ render: Template,
+};
+
// Function to emulate pausing between interactions
const sleep = (ms) => {
return new Promise((resolve) => setTimeout(resolve, ms));
};
-export const Interactions = Template.bind({});
-Interactions.play = async ({ canvasElement }) => {
- const canvas = within(canvasElement);
- const paginationDots = canvas.getByLabelText("light-pagination");
-
- // change amount of dots
- userEvent.type(canvas.getByTestId("light-input-text"), "{backspace}6");
- await sleep(500);
- // check incrementing index changes ariaValueNow
- userEvent.click(canvas.getByTestId("light-inc-btn"));
- let ariaValueNow = paginationDots.getAttribute("aria-valuenow");
- await sleep(500);
- expect(ariaValueNow).toBe("2");
- await sleep(500);
-
- // traverse all dots
- for (let i = 0; i < 9; i++) {
- const btn = i < 4 ? "light-inc-btn" : "light-dec-btn";
- userEvent.click(canvas.getByTestId(btn));
+export const Interactions = {
+ render: Template,
+
+ play: async ({ canvasElement }) => {
+ const canvas = within(canvasElement);
+ const paginationDots = canvas.getByLabelText("light-pagination");
+
+ // change amount of dots
+ await userEvent.type(
+ canvas.getByTestId("light-input-text"),
+ "{backspace}6"
+ );
await sleep(500);
- }
-
- // test ariaValueMax change on amount change
- userEvent.type(canvas.getByTestId("light-input-text"), "{backspace}12");
- await sleep(500);
- let ariaValueMax = paginationDots.getAttribute("aria-valuemax");
- expect(ariaValueMax).toBe("12");
-
- // test dots never go below 0
- userEvent.type(
- canvas.getByTestId("light-input-text"),
- "{backspace}{backspace}0"
- );
- await sleep(500);
- ariaValueMax = paginationDots.getAttribute("aria-valuemax");
- ariaValueNow = paginationDots.getAttribute("aria-valuenow");
- expect(ariaValueMax).toBe("1");
- // expect(ariaValueNow).toBe("1");
-
- // tests a large number of dots doesn't modify other elements
- userEvent.type(canvas.getByTestId("light-input-text"), "{backspace}50");
- await sleep(500);
+ // check incrementing index changes ariaValueNow
+ await userEvent.click(canvas.getByTestId("light-inc-btn"));
+ let ariaValueNow = paginationDots.getAttribute("aria-valuenow");
+ await sleep(500);
+ expect(ariaValueNow).toBe("2");
+ await sleep(500);
+
+ // traverse all dots
+ for (let i = 0; i < 9; i++) {
+ const btn = i < 4 ? "light-inc-btn" : "light-dec-btn";
+ await userEvent.click(canvas.getByTestId(btn));
+ await sleep(500);
+ }
+
+ // test ariaValueMax change on amount change
+ await userEvent.type(
+ canvas.getByTestId("light-input-text"),
+ "{backspace}12"
+ );
+ await sleep(500);
+ let ariaValueMax = paginationDots.getAttribute("aria-valuemax");
+ expect(ariaValueMax).toBe("12");
+
+ // test dots never go below 0
+ await userEvent.type(
+ canvas.getByTestId("light-input-text"),
+ "{backspace}{backspace}0"
+ );
+ await sleep(500);
+ ariaValueMax = paginationDots.getAttribute("aria-valuemax");
+ ariaValueNow = paginationDots.getAttribute("aria-valuenow");
+ expect(ariaValueMax).toBe("1");
+ // expect(ariaValueNow).toBe("1");
+
+ // tests a large number of dots doesn't modify other elements
+ await userEvent.type(
+ canvas.getByTestId("light-input-text"),
+ "{backspace}50"
+ );
+ await sleep(500);
+ },
};
export const Chromatic = () => (
diff --git a/ui/popover/src/Popover.tsx b/packages/kit/src/popover/Popover.tsx
similarity index 100%
rename from ui/popover/src/Popover.tsx
rename to packages/kit/src/popover/Popover.tsx
diff --git a/ui/popover/src/PopoverAnchor.test.tsx b/packages/kit/src/popover/PopoverAnchor.test.tsx
similarity index 93%
rename from ui/popover/src/PopoverAnchor.test.tsx
rename to packages/kit/src/popover/PopoverAnchor.test.tsx
index 587b68ee8..418ec8b66 100644
--- a/ui/popover/src/PopoverAnchor.test.tsx
+++ b/packages/kit/src/popover/PopoverAnchor.test.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { render, screen } from "@testing-library/react";
import { PopoverRoot } from "./PopoverRoot";
import { PopoverAnchor } from "./PopoverAnchor";
diff --git a/ui/popover/src/PopoverAnchor.tsx b/packages/kit/src/popover/PopoverAnchor.tsx
similarity index 93%
rename from ui/popover/src/PopoverAnchor.tsx
rename to packages/kit/src/popover/PopoverAnchor.tsx
index 6edd2ea88..c4226d838 100644
--- a/ui/popover/src/PopoverAnchor.tsx
+++ b/packages/kit/src/popover/PopoverAnchor.tsx
@@ -1,4 +1,4 @@
-import * as React from "react";
+import React from "react";
import * as PopoverPrimitive from "@radix-ui/react-popover";
import type { PopoverAnchorProps as RadixPopoverAnchorProps } from "@radix-ui/react-popover";
diff --git a/ui/popover/src/PopoverClose.test.tsx b/packages/kit/src/popover/PopoverClose.test.tsx
similarity index 95%
rename from ui/popover/src/PopoverClose.test.tsx
rename to packages/kit/src/popover/PopoverClose.test.tsx
index 97d5f562d..e2a511c3e 100644
--- a/ui/popover/src/PopoverClose.test.tsx
+++ b/packages/kit/src/popover/PopoverClose.test.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { render, screen } from "@testing-library/react";
import { PopoverRoot } from "./PopoverRoot";
import { PopoverClose } from "./PopoverClose";
diff --git a/packages/kit/src/popover/PopoverClose.tsx b/packages/kit/src/popover/PopoverClose.tsx
new file mode 100644
index 000000000..a8c5573f7
--- /dev/null
+++ b/packages/kit/src/popover/PopoverClose.tsx
@@ -0,0 +1,43 @@
+import React, { forwardRef } from "react";
+import * as PopoverPrimitive from "@radix-ui/react-popover";
+import { styled, theme } from "../theme";
+import { Button } from "../button";
+import { Icon } from "../icon";
+import { Close } from "@washingtonpost/wpds-assets";
+
+import type * as WPDS from "../theme";
+import type { PopoverCloseProps as RadixPopoverCloseProps } from "@radix-ui/react-popover";
+
+const NAME = "PopoverClose";
+
+const StyledButton = styled(Button, {
+ position: "absolute",
+ top: theme.space["025"],
+ right: theme.space["025"],
+ "&&": {
+ border: "none",
+ },
+});
+
+export type PopoverCloseProps = {
+ /** Override CSS */
+ css?: WPDS.CSS;
+} & RadixPopoverCloseProps;
+
+export const PopoverClose = forwardRef(
+ ({ children, asChild, ...props }, ref) => (
+
+ {asChild ? (
+ children
+ ) : (
+
+
+
+
+
+ )}
+
+ )
+);
+
+PopoverClose.displayName = NAME;
diff --git a/ui/popover/src/PopoverContent.test.tsx b/packages/kit/src/popover/PopoverContent.test.tsx
similarity index 93%
rename from ui/popover/src/PopoverContent.test.tsx
rename to packages/kit/src/popover/PopoverContent.test.tsx
index f6b7e661e..ed091096b 100644
--- a/ui/popover/src/PopoverContent.test.tsx
+++ b/packages/kit/src/popover/PopoverContent.test.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { render, screen } from "@testing-library/react";
import { PopoverRoot } from "./PopoverRoot";
import { PopoverContent } from "./PopoverContent";
@@ -30,7 +29,7 @@ describe("PopoverContent", () => {
});
// eslint-disable-next-line testing-library/no-node-access
expect(screen.getByRole("dialog").parentElement).toHaveStyle(
- "transform: translate3d(0, -200%, 0)"
+ "transform: translate(0, -200%)"
);
});
});
diff --git a/ui/popover/src/PopoverContent.tsx b/packages/kit/src/popover/PopoverContent.tsx
similarity index 90%
rename from ui/popover/src/PopoverContent.tsx
rename to packages/kit/src/popover/PopoverContent.tsx
index ffe2ddc93..30764e8f7 100644
--- a/ui/popover/src/PopoverContent.tsx
+++ b/packages/kit/src/popover/PopoverContent.tsx
@@ -1,10 +1,10 @@
-import * as React from "react";
-import { styled, theme, keyframes } from "@washingtonpost/wpds-theme";
+import React, { forwardRef } from "react";
+import { styled, theme, keyframes } from "../theme";
import * as PopoverPrimitive from "@radix-ui/react-popover";
import type { Token } from "@stitches/react/types/theme";
-import * as Tokens from "@washingtonpost/wpds-theme/src/tokens";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import * as Tokens from "../theme/tokens";
+import type * as WPDS from "../theme";
import type { PopoverContentProps as RadixPopoverContentProps } from "@radix-ui/react-popover";
const NAME = "PopoverContent";
@@ -97,10 +97,7 @@ export type PopoverContentProps = {
} & WPDS.VariantProps &
Omit;
-export const PopoverContent = React.forwardRef<
- HTMLDivElement,
- PopoverContentProps
->(
+export const PopoverContent = forwardRef(
(
{
children,
diff --git a/ui/popover/src/PopoverPortal.test.tsx b/packages/kit/src/popover/PopoverPortal.test.tsx
similarity index 94%
rename from ui/popover/src/PopoverPortal.test.tsx
rename to packages/kit/src/popover/PopoverPortal.test.tsx
index 2190a5642..ffa75ecea 100644
--- a/ui/popover/src/PopoverPortal.test.tsx
+++ b/packages/kit/src/popover/PopoverPortal.test.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { render, screen } from "@testing-library/react";
import { PopoverRoot } from "./PopoverRoot";
import { PopoverPortal } from "./PopoverPortal";
diff --git a/ui/popover/src/PopoverPortal.tsx b/packages/kit/src/popover/PopoverPortal.tsx
similarity index 93%
rename from ui/popover/src/PopoverPortal.tsx
rename to packages/kit/src/popover/PopoverPortal.tsx
index ff18b2a3c..48c73fdce 100644
--- a/ui/popover/src/PopoverPortal.tsx
+++ b/packages/kit/src/popover/PopoverPortal.tsx
@@ -1,4 +1,4 @@
-import * as React from "react";
+import React from "react";
import * as PopoverPrimitive from "@radix-ui/react-popover";
import type { PopoverPortalProps as RadixPopoverPortalProps } from "@radix-ui/react-popover";
diff --git a/ui/popover/src/PopoverRoot.test.tsx b/packages/kit/src/popover/PopoverRoot.test.tsx
similarity index 90%
rename from ui/popover/src/PopoverRoot.test.tsx
rename to packages/kit/src/popover/PopoverRoot.test.tsx
index e1ac8eb23..caee3af68 100644
--- a/ui/popover/src/PopoverRoot.test.tsx
+++ b/packages/kit/src/popover/PopoverRoot.test.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { render, screen } from "@testing-library/react";
import { PopoverRoot } from "./PopoverRoot";
diff --git a/ui/popover/src/PopoverRoot.tsx b/packages/kit/src/popover/PopoverRoot.tsx
similarity index 92%
rename from ui/popover/src/PopoverRoot.tsx
rename to packages/kit/src/popover/PopoverRoot.tsx
index 0ca3f1eaf..fb20f9bb9 100644
--- a/ui/popover/src/PopoverRoot.tsx
+++ b/packages/kit/src/popover/PopoverRoot.tsx
@@ -1,4 +1,4 @@
-import * as React from "react";
+import React from "react";
import * as PopoverPrimitive from "@radix-ui/react-popover";
import type { PopoverProps as RadixPopoverRootProps } from "@radix-ui/react-popover";
diff --git a/ui/popover/src/PopoverTrigger.test.tsx b/packages/kit/src/popover/PopoverTrigger.test.tsx
similarity index 95%
rename from ui/popover/src/PopoverTrigger.test.tsx
rename to packages/kit/src/popover/PopoverTrigger.test.tsx
index 3ada55c71..a5e3f5154 100644
--- a/ui/popover/src/PopoverTrigger.test.tsx
+++ b/packages/kit/src/popover/PopoverTrigger.test.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { render, screen } from "@testing-library/react";
import { PopoverRoot } from "./PopoverRoot";
import { PopoverTrigger } from "./PopoverTrigger";
diff --git a/ui/popover/src/PopoverTrigger.tsx b/packages/kit/src/popover/PopoverTrigger.tsx
similarity index 75%
rename from ui/popover/src/PopoverTrigger.tsx
rename to packages/kit/src/popover/PopoverTrigger.tsx
index 04bab1713..38ac98100 100644
--- a/ui/popover/src/PopoverTrigger.tsx
+++ b/packages/kit/src/popover/PopoverTrigger.tsx
@@ -1,8 +1,8 @@
-import * as React from "react";
+import React, { forwardRef } from "react";
import * as PopoverPrimitive from "@radix-ui/react-popover";
-import { Button } from "@washingtonpost/wpds-button";
+import { Button } from "../button";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import type * as WPDS from "../theme";
import type { PopoverTriggerProps as RadixPopoverTriggerProps } from "@radix-ui/react-popover";
const NAME = "PopoverTrigger";
@@ -12,7 +12,7 @@ export type PopoverTriggerProps = {
css?: WPDS.CSS;
} & RadixPopoverTriggerProps;
-export const PopoverTrigger = React.forwardRef<
+export const PopoverTrigger = forwardRef<
HTMLButtonElement,
PopoverTriggerProps
>(({ children, asChild, ...props }, ref) => {
diff --git a/ui/popover/src/index.ts b/packages/kit/src/popover/index.ts
similarity index 100%
rename from ui/popover/src/index.ts
rename to packages/kit/src/popover/index.ts
diff --git a/ui/popover/src/play.stories.tsx b/packages/kit/src/popover/play.stories.tsx
similarity index 79%
rename from ui/popover/src/play.stories.tsx
rename to packages/kit/src/popover/play.stories.tsx
index 347114109..f52510746 100644
--- a/ui/popover/src/play.stories.tsx
+++ b/packages/kit/src/popover/play.stories.tsx
@@ -1,14 +1,14 @@
/* eslint-disable testing-library/no-node-access */
-import * as React from "react";
+import React from "react";
import { userEvent, within } from "@storybook/testing-library";
import { expect } from "@storybook/jest";
-import * as Tokens from "@washingtonpost/wpds-theme/src/tokens";
+import * as Tokens from "../theme/tokens";
import * as PopoverPrimitive from "@radix-ui/react-popover";
import { Popover } from "./";
-import { styled, theme, globalCss } from "@washingtonpost/wpds-theme";
+import { styled, theme, globalCss } from "../theme";
import { ChevronRight } from "@washingtonpost/wpds-assets";
-import type { ComponentMeta, ComponentStory } from "@storybook/react";
+import type { Meta, StoryFn } from "@storybook/react";
export default {
title: "Popover",
@@ -19,10 +19,13 @@ export default {
Trigger: Popover.Trigger,
Anchor: Popover.Anchor,
},
-} as ComponentMeta;
+ parameters: {
+ chromatic: { delay: 300 },
+ },
+} as Meta;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
-const Template: ComponentStory = (args) => {
+const Template: StoryFn = (args) => {
const triggerRef = React.useRef(null);
const [parentElement, setParentElement] = React.useState();
@@ -41,35 +44,37 @@ const Template: ComponentStory = (args) => {
);
};
-export const Default = Template.bind({});
-
-Default.args = {
- children:
- "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Diam non eget consequat pretium.",
- density: "default",
- sideOffset: "050",
- side: "bottom",
- align: "center",
-};
+export const Default = {
+ render: Template,
-Default.argTypes = {
- density: {
- control: "select",
- options: ["default", "compact"],
+ args: {
+ children:
+ "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Diam non eget consequat pretium.",
+ density: "default",
+ sideOffset: "050",
+ side: "bottom",
+ align: "center",
},
- sideOffset: {
- options: Object.keys(Tokens.sizes),
- mapping: theme.sizes,
- control: "select",
+
+ argTypes: {
+ density: {
+ control: "select",
+ options: ["default", "compact"],
+ },
+ sideOffset: {
+ options: Object.keys(Tokens.sizes),
+ mapping: theme.sizes,
+ control: "select",
+ },
},
-};
-Default.parameters = {
- chromatic: { disableSnapshot: true },
+ parameters: {
+ chromatic: { disableSnapshot: true },
+ },
};
// eslint-disable-next-line @typescript-eslint/no-explicit-any
-const AnchorTemplate: ComponentStory = (args) => {
+const AnchorTemplate: StoryFn = (args) => {
const triggerRef = React.useRef(null);
const [parentElement, setParentElement] = React.useState();
React.useEffect(() => {
@@ -97,15 +102,19 @@ const AnchorTemplate: ComponentStory = (args) => {
);
};
-export const Anchor = AnchorTemplate.bind({});
-Anchor.args = {
- children:
- "Anchors allow for Popups to be triggered and positioned independently",
+export const Anchor = {
+ render: AnchorTemplate,
+
+ args: {
+ children:
+ "Anchors allow for Popups to be triggered and positioned independently",
+ },
+
+ parameters: { chromatic: { disableSnapshot: true } },
};
-Anchor.parameters = { chromatic: { disableSnapshot: true } };
// eslint-disable-next-line @typescript-eslint/no-explicit-any
-const CloseButtonTemplate: ComponentStory = (args) => {
+const CloseButtonTemplate: StoryFn = (args) => {
const triggerRef = React.useRef(null);
const [parentElement, setParentElement] = React.useState();
React.useEffect(() => {
@@ -132,11 +141,15 @@ const CloseButtonTemplate: ComponentStory = (args) => {
);
};
-export const CloseButton = CloseButtonTemplate.bind({});
-CloseButton.args = {
- children: "An optional close button may be included",
+export const CloseButton = {
+ render: CloseButtonTemplate,
+
+ args: {
+ children: "An optional close button may be included",
+ },
+
+ parameters: { chromatic: { disableSnapshot: true } },
};
-CloseButton.parameters = { chromatic: { disableSnapshot: true } };
const SideMenu = styled("menu", {
backgroundColor: theme.colors.gray40,
@@ -203,7 +216,7 @@ const Arrow = () => {
};
// eslint-disable-next-line @typescript-eslint/no-explicit-any
-const MenuTemplate: ComponentStory = () => {
+const MenuTemplate: StoryFn = () => {
const [menuOpen, setMenuOpen] = React.useState(false);
return (
@@ -261,11 +274,13 @@ const MenuTemplate: ComponentStory
= () => {
);
};
-export const Menu = MenuTemplate.bind({});
-Menu.parameters = { chromatic: { disableSnapshot: true } };
+export const Menu = {
+ render: MenuTemplate,
+ parameters: { chromatic: { disableSnapshot: true } },
+};
// eslint-disable-next-line @typescript-eslint/no-explicit-any
-const FullPopover: ComponentStory = ({ side, align }) => (
+const FullPopover: StoryFn = ({ side, align }) => (
= ({ side, align }) => (
);
// eslint-disable-next-line @typescript-eslint/no-explicit-any
-const ChromaticTemplate: ComponentStory = () => {
+const ChromaticTemplate: StoryFn = () => {
const side = ["bottom", "top", "right", "left"];
const align = ["start", "center", "end"];
@@ -351,10 +366,13 @@ const ChromaticTemplate: ComponentStory = () => {
);
};
-export const Chromatic = ChromaticTemplate.bind({});
-Chromatic.parameters = {
- docs: { disable: true },
- chromatic: { delay: 1000 },
+export const Chromatic = {
+ render: ChromaticTemplate,
+
+ parameters: {
+ docs: { disable: true },
+ chromatic: { delay: 1000 },
+ },
};
const ecGlobalCss = globalCss({
@@ -367,7 +385,7 @@ const ecGlobalCss = globalCss({
});
// eslint-disable-next-line @typescript-eslint/no-explicit-any
-const EdgeAndCornerCasesTemplate: ComponentStory = () => {
+const EdgeAndCornerCasesTemplate: StoryFn = () => {
ecGlobalCss();
return (
= () => {
);
};
-export const EdgeAndCornerCases = EdgeAndCornerCasesTemplate.bind({});
-EdgeAndCornerCases.parameters = {
- docs: { disable: true },
- chromatic: { delay: 3000 },
+export const EdgeAndCornerCases = {
+ render: EdgeAndCornerCasesTemplate,
+
+ parameters: {
+ docs: { disable: true },
+ chromatic: { delay: 3000 },
+ },
};
// eslint-disable-next-line @typescript-eslint/no-explicit-any
-const InteractionsTemplate: ComponentStory
= () => (
+const InteractionsTemplate: StoryFn = () => (
Trigger
Popover Content
);
-export const Interactions = InteractionsTemplate.bind({});
-Interactions.parameters = {
- chromatic: { disableSnapshot: true },
+export const Interactions = {
+ render: InteractionsTemplate,
+
+ parameters: {
+ chromatic: { disableSnapshot: true },
+ },
+
+ play: async ({ canvasElement }) => {
+ const canvas = within(canvasElement);
+
+ const trigger = canvas.getByRole("button");
+ await userEvent.click(trigger);
+ await sleep(500);
+ const content = canvas.getByRole("dialog");
+ await expect(content).toBeVisible();
+ await userEvent.click(document.body);
+ await sleep(500);
+ await expect(content).not.toBeInTheDocument();
+ },
};
// Function to emulate pausing between interactions
function sleep(ms) {
return new Promise((resolve) => setTimeout(resolve, ms));
}
-
-Interactions.play = async ({ canvasElement }) => {
- const canvas = within(canvasElement);
-
- const trigger = canvas.getByRole("button");
- await userEvent.click(trigger);
- await sleep(500);
- const content = canvas.getByRole("dialog");
- await expect(content).toBeVisible();
- await userEvent.click(document.body);
- await sleep(500);
- await expect(content).not.toBeInTheDocument();
-};
diff --git a/ui/radio-group/src/RadioButton.tsx b/packages/kit/src/radio-group/RadioButton.tsx
similarity index 95%
rename from ui/radio-group/src/RadioButton.tsx
rename to packages/kit/src/radio-group/RadioButton.tsx
index e984ba011..083d6b496 100644
--- a/ui/radio-group/src/RadioButton.tsx
+++ b/packages/kit/src/radio-group/RadioButton.tsx
@@ -1,8 +1,8 @@
-import * as React from "react";
+import React from "react";
import * as RadioGroupPrimitive from "@radix-ui/react-radio-group";
-import * as Theme from "@washingtonpost/wpds-theme";
-import type * as WPDS from "@washingtonpost/wpds-theme";
-import { InputLabel } from "@washingtonpost/wpds-input-label";
+import * as Theme from "../theme";
+import type * as WPDS from "../theme";
+import { InputLabel } from "../input-label";
const NAME = "RadioButton";
diff --git a/ui/radio-group/src/RadioGroup.tsx b/packages/kit/src/radio-group/RadioGroup.tsx
similarity index 90%
rename from ui/radio-group/src/RadioGroup.tsx
rename to packages/kit/src/radio-group/RadioGroup.tsx
index 80d45cf95..b78ca772c 100644
--- a/ui/radio-group/src/RadioGroup.tsx
+++ b/packages/kit/src/radio-group/RadioGroup.tsx
@@ -1,11 +1,13 @@
-import * as React from "react";
+import React from "react";
+
import { nanoid } from "nanoid";
import * as RadioGroupPrimitive from "@radix-ui/react-radio-group";
import type { RadioGroupProps as RadioGroupRootProps } from "@radix-ui/react-radio-group";
-import * as Theme from "@washingtonpost/wpds-theme";
-import type * as WPDS from "@washingtonpost/wpds-theme";
-import { Fieldset } from "@washingtonpost/wpds-fieldset";
-import { ErrorMessage } from "@washingtonpost/wpds-error-message";
+
+import * as Theme from "../theme";
+import type * as WPDS from "../theme";
+import { Fieldset } from "../fieldset";
+import { ErrorMessage } from "../error-message";
const NAME = "RadioGroup";
@@ -86,8 +88,9 @@ export const RadioGroup = React.forwardRef<
) => {
const [errorId, setErrorId] = React.useState();
+ const id = nanoid();
React.useEffect(() => {
- setErrorId(`wpds-input-error-${nanoid(6)}`);
+ setErrorId(`wpds-input-error-${id}`);
}, [setErrorId]);
return (
diff --git a/ui/radio-group/src/index.ts b/packages/kit/src/radio-group/index.ts
similarity index 100%
rename from ui/radio-group/src/index.ts
rename to packages/kit/src/radio-group/index.ts
diff --git a/ui/radio-group/src/play.stories.tsx b/packages/kit/src/radio-group/play.stories.tsx
similarity index 73%
rename from ui/radio-group/src/play.stories.tsx
rename to packages/kit/src/radio-group/play.stories.tsx
index a0dff98cf..ef7a31a4d 100644
--- a/ui/radio-group/src/play.stories.tsx
+++ b/packages/kit/src/radio-group/play.stories.tsx
@@ -1,19 +1,19 @@
-import * as React from "react";
+import React, { useState } from "react";
import { screen, userEvent } from "@storybook/testing-library";
import { expect } from "@storybook/jest";
import { RadioGroup as Component, RadioButton } from "./";
-import { styled, css, theme } from "@washingtonpost/wpds-theme";
-import { Box } from "../../box";
+import { styled, css, theme } from "../theme";
+import { Box } from "../box";
-import type { ComponentMeta, ComponentStory } from "@storybook/react";
+import type { Meta, StoryFn } from "@storybook/react";
export default {
title: "RadioGroup",
component: Component,
subcomponents: { RadioButton },
-} as ComponentMeta;
+} as Meta;
-const Template: ComponentStory = (args) => (
+const Template: StoryFn = (args) => (
@@ -22,24 +22,26 @@ const Template: ComponentStory = (args) => (
);
-export const RadioGroup = Template.bind({});
+export const RadioGroup = {
+ render: Template,
-RadioGroup.args = {
- legend: "Select an option",
- name: "my-value",
-};
+ args: {
+ legend: "Select an option",
+ name: "my-value",
+ },
-RadioGroup.argTypes = {
- errorMessage: {
- control: "text",
+ argTypes: {
+ errorMessage: {
+ control: "text",
+ },
},
-};
-RadioGroup.parameters = {
- chromatic: { disableSnapshot: true },
+ parameters: {
+ chromatic: { disableSnapshot: true },
+ },
};
-const WrapTemplate: ComponentStory = (args) => (
+const WrapTemplate: StoryFn = (args) => (
= (args) => (
);
-export const WrapOptions = WrapTemplate.bind({});
+export const WrapOptions = {
+ render: WrapTemplate,
-WrapOptions.args = {
- legend: "Select an option",
- name: "my-value",
- orientation: "horizontal",
-};
+ args: {
+ legend: "Select an option",
+ name: "my-value",
+ orientation: "horizontal",
+ },
-WrapOptions.parameters = {
- chromatic: { disableSnapshot: true },
+ parameters: {
+ chromatic: { disableSnapshot: true },
+ },
};
-const OverflowTemplate: ComponentStory = () => (
+const OverflowTemplate: StoryFn = () => (
= () => (
);
-export const Overflow = OverflowTemplate.bind({});
-Overflow.parameters = {
- chromatic: { disableSnapshot: true },
+export const Overflow = {
+ render: OverflowTemplate,
+
+ parameters: {
+ chromatic: { disableSnapshot: true },
+ },
};
-const ControlledTemplate: ComponentStory = () => {
- const [value, setValue] = React.useState("opt1");
+const ControlledTemplate: StoryFn = () => {
+ const [value, setValue] = useState("opt1");
function handleValueChange(val) {
setValue(val);
}
@@ -106,9 +113,12 @@ const ControlledTemplate: ComponentStory = () => {
);
};
-export const Controlled = ControlledTemplate.bind({});
-Controlled.parameters = {
- chromatic: { disableSnapshot: true },
+export const Controlled = {
+ render: ControlledTemplate,
+
+ parameters: {
+ chromatic: { disableSnapshot: true },
+ },
};
const Column = styled("div", {
@@ -132,7 +142,7 @@ const Heading = styled("h2", {
marginBlock: 0,
});
-const ChromaticTemplate: ComponentStory = () => (
+const ChromaticTemplate: StoryFn = () => (
Variants
@@ -206,33 +216,38 @@ const ChromaticTemplate: ComponentStory = () => (
);
-export const Chromatic = ChromaticTemplate.bind({});
-Chromatic.args = {};
+export const Chromatic = {
+ render: ChromaticTemplate,
+ args: {},
+};
-const InteractionsTemplate: ComponentStory = () => (
+const InteractionsTemplate: StoryFn = () => (
);
-export const Interactions = InteractionsTemplate.bind({});
-Interactions.parameters = {
- chromatic: { disableSnapshot: true },
+export const Interactions = {
+ render: InteractionsTemplate,
+
+ parameters: {
+ chromatic: { disableSnapshot: true },
+ },
+
+ play: async () => {
+ const input1 = screen.getByLabelText("Option 1");
+ const input2 = screen.getByLabelText("Option 2");
+ await userEvent.click(input1);
+ await expect(input1).toBeChecked();
+ await userEvent.keyboard("[ArrowDown]");
+ await sleep(0);
+ await userEvent.keyboard(" ");
+ await expect(input2).toBeChecked();
+ },
};
// Function to emulate pausing between interactions
function sleep(ms) {
return new Promise((resolve) => setTimeout(resolve, ms));
}
-
-Interactions.play = async () => {
- const input1 = screen.getByLabelText("Option 1");
- const input2 = screen.getByLabelText("Option 2");
- await userEvent.click(input1);
- await expect(input1).toBeChecked();
- await userEvent.keyboard("[ArrowDown]");
- await sleep(0);
- await userEvent.keyboard(" ");
- await expect(input2).toBeChecked();
-};
diff --git a/ui/scrim/src/Scrim.test.tsx b/packages/kit/src/scrim/Scrim.test.tsx
similarity index 95%
rename from ui/scrim/src/Scrim.test.tsx
rename to packages/kit/src/scrim/Scrim.test.tsx
index e8782a2d6..59e6933df 100644
--- a/ui/scrim/src/Scrim.test.tsx
+++ b/packages/kit/src/scrim/Scrim.test.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { render, screen } from "@testing-library/react";
import { Scrim } from "./Scrim";
diff --git a/ui/scrim/src/Scrim.tsx b/packages/kit/src/scrim/Scrim.tsx
similarity index 93%
rename from ui/scrim/src/Scrim.tsx
rename to packages/kit/src/scrim/Scrim.tsx
index b0f5c8f5c..418bf95de 100644
--- a/ui/scrim/src/Scrim.tsx
+++ b/packages/kit/src/scrim/Scrim.tsx
@@ -1,7 +1,7 @@
-import * as React from "react";
+import React from "react";
import { CSSTransition } from "react-transition-group";
-import { styled, theme, css as wpCSS } from "@washingtonpost/wpds-theme";
-import type * as WPDS from "@washingtonpost/wpds-theme";
+import { styled, theme, css as wpCSS } from "../theme";
+import type * as WPDS from "../theme";
import type { Token } from "@stitches/react/types/theme";
import type { StandardLonghandProperties } from "@stitches/react/types/css";
diff --git a/ui/scrim/src/index.ts b/packages/kit/src/scrim/index.ts
similarity index 100%
rename from ui/scrim/src/index.ts
rename to packages/kit/src/scrim/index.ts
diff --git a/ui/scrim/src/play.stories.tsx b/packages/kit/src/scrim/play.stories.tsx
similarity index 79%
rename from ui/scrim/src/play.stories.tsx
rename to packages/kit/src/scrim/play.stories.tsx
index 3b646903b..b0ccc7361 100644
--- a/ui/scrim/src/play.stories.tsx
+++ b/packages/kit/src/scrim/play.stories.tsx
@@ -1,17 +1,17 @@
-import * as React from "react";
-import { Box } from "@washingtonpost/wpds-box";
-import { theme } from "@washingtonpost/wpds-theme";
+import React, { useState } from "react";
+import { Box } from "../box";
+import { theme } from "../theme";
import { Scrim as Component } from "./";
-import type { ComponentMeta, ComponentStory } from "@storybook/react";
+import type { Meta, StoryFn } from "@storybook/react";
export default {
title: "Scrim",
component: Component,
-} as ComponentMeta;
+} as Meta;
-const Template: ComponentStory