diff --git a/.eslintrc.js b/.eslintrc.js
index 7d33ff27..46c3e31c 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -23,6 +23,7 @@ module.exports = {
'plugin:vue/vue3-recommended',
'@vue/airbnb',
'plugin:vue/vue3-essential',
+ "prettier"
],
rules: {
diff --git a/.prettierrc b/.prettierrc
deleted file mode 100644
index 001d551b..00000000
--- a/.prettierrc
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "printWidth": 120,
- "singleQuote": true
-}
diff --git a/.prettierrc.json b/.prettierrc.json
new file mode 100644
index 00000000..1bec453f
--- /dev/null
+++ b/.prettierrc.json
@@ -0,0 +1,6 @@
+{
+ "printWidth": 120,
+ "singleQuote": true,
+ "trailingComma": "es5",
+ "tabWidth": 2
+}
diff --git a/cypress.config.js b/cypress.config.js
index 692ccc2f..6910da55 100644
--- a/cypress.config.js
+++ b/cypress.config.js
@@ -4,7 +4,9 @@ module.exports = defineConfig({
fixturesFolder: 'tests/e2e/fixtures',
screenshotsFolder: 'tests/e2e/screenshots',
videosFolder: 'tests/e2e/videos',
-
+ experimentalMemoryManagement: true,
+ experimentalStudio: true,
+ experimentalInteractiveRunEvents: true,
e2e: {
// We've imported your old cypress plugins here.
// You may want to clean this up later by importing these.
@@ -13,12 +15,17 @@ module.exports = defineConfig({
},
specPattern: 'tests/e2e/specs/**/*.cy.{js,jsx,ts,tsx}',
supportFile: 'tests/e2e/support/index.js',
- },
+ experimentalStudio: true,
+ experimentalInteractiveRunEvents: true,
+ },
component: {
devServer: {
framework: 'vue',
bundler: 'vite',
},
+ experimentalMemoryManagement: true,
+ // experimentalStudio: true,
+ experimentalInteractiveRunEvents: true,
},
});
diff --git a/index.html b/index.html
index fb313ecd..1f42e7a6 100644
--- a/index.html
+++ b/index.html
@@ -2,6 +2,13 @@
+
+
+
@@ -14,6 +21,10 @@
+
+
+
We're sorry but QuestLists doesn't work properly without JavaScript enabled. Please enable it to continue.
diff --git a/jest.config.js b/jest.config.cjs
similarity index 64%
rename from jest.config.js
rename to jest.config.cjs
index 7f5b6d1e..775ef7c1 100644
--- a/jest.config.js
+++ b/jest.config.cjs
@@ -1,21 +1,22 @@
module.exports = {
- preset: '@vue/cli-plugin-unit-jest',
+ // preset: '@vue/cli-plugin-unit-jest',
// some says to put it inside package.json
// testEnvironment: '/tests/firebaseWorkaround.js',
- moduleFileExtensions: ['js', 'json', 'vue'],
+ moduleFileExtensions: ['js', 'ts', 'json', 'vue'],
moduleNameMapper: {
'^@/(.*)$': '/src/$1',
},
+
modulePaths: [
'/src',
'/node_modules',
],
transform: {
- '^.+\\.js$': 'babel-jest',
- '^.+\\.vue$': 'vue-jest',
+ '^.+\\.ts$': 'ts-jest',
+ '^.+\\.vue$': '@vue/vue3-jest',
},
collectCoverage: false,
- collectCoverageFrom: ['**/*.{js,vue}', '!**/node_modules/**'],
+ collectCoverageFrom: ['**/*.{js,vue,ts}', '!**/node_modules/**'],
setupFiles: ['tests/setupJest.js'],
snapshotSerializers: ['jest-serializer-vue'],
};
diff --git a/package.json b/package.json
index 1220bd47..6a4f1c69 100644
--- a/package.json
+++ b/package.json
@@ -1,13 +1,18 @@
{
"name": "questlistsfb",
"version": "0.1.0",
+ "license": "MIT",
+ "main": "src/main.js",
"private": true,
"scripts": {
"serve": "vite --mode development",
"build": "vite build --mode production",
"test:unit": "vue-cli-service test:unit --mode=development",
"test:e2e": "vue-cli-service test:e2e",
- "lint": "vue-cli-service lint",
+ "lint": "eslint --ext .js,.vue --ignore-path .gitignore src",
+ "lint:fix": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
+ "format": "prettier --ignore-path .gitignore --check .",
+ "format:save": "prettier --ignore-path .gitignore --write .",
"build-storybook": "build-storybook",
"ci": "CI=true firebase emulators:exec --only firestore,auth 'CI=true yarn test:e2e --headless && yarn test:unit'",
"ci:e2e": "firebase emulators:exec --only firestore,auth 'yarn test:e2e --headless --mode=development'",
@@ -15,7 +20,7 @@
"ci:unit": "firebase emulators:exec --only firestore,auth 'yarn test:unit --detectOpenHandles --forceExit'",
"container": "yarn fb:emulate; yarn serve",
"dev": "firebase emulators:exec --only firestore,auth --ui 'pnpm serve'",
- "fb:cypress": "firebase emulators:exec --only firestore,auth 'npx cypress open'",
+ "fb:cypress": "firebase emulators:exec --only firestore,auth 'pnpm cypress open'",
"fb:deploy": "firebase deploy",
"fb:dev": "firebase emulators:exec --only firestore,auth --ui --import tests/data 'pnpm serve --open'",
"fb:dev:clean": "firebase emulators:exec --only firestore,auth 'yarn serve --open'",
@@ -51,11 +56,11 @@
"slugify": "^1.6.6",
"storybook": "^7.0.2",
"vite-plugin-pwa": "^0.14.7",
- "vue": "^3.2.47",
+ "vue": "^3.3.1",
"vue-i18n": "^9.2.2",
"vue-instantsearch": "^4.8.9",
"vue-router": "^4.1.6",
- "vuetify": "^3.1.13",
+ "vuetify": "^3.3.5",
"vuex": "^4.1.0",
"webpack": "^5.78.0",
"yorkie": "^2.0.0"
@@ -73,22 +78,22 @@
"@vue/test-utils": "^2.3.2",
"@vue/vue3-jest": "^29.2.3",
"css-loader": "^6.7.3",
- "cypress": "^12.9.0",
+ "cypress": "^12.10.0",
"cypress-dotenv": "^2.0.0",
"eslint": "^8.37.0",
+ "eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.10.0",
"eslint-plugin-vuejs-accessibility": "^2.1.0",
"firebase-admin": "^11.6.0",
"firebase-functions": "^4.2.1",
- "firebase-tools": "^11.25.3",
+ "firebase-tools": "^12.4.2",
"flush-promises": "^1.0.2",
"jest-environment-node": "^29.5.0",
+ "ts-jest": "^29.1.0",
"vite": "^4.2.1",
"vite-plugin-vuetify": "^1.0.2",
- "vitest": "^0.29.8",
- "vue-cli-plugin-vuetify": "~2.5.8"
- },
- "license": "MIT"
+ "vitest": "^0.29.8"
+ }
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index eb989cd4..c9534d5b 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -3,7 +3,7 @@ lockfileVersion: '6.0'
dependencies:
'@firebase/auth':
specifier: ^0.22.0
- version: 0.22.0(@firebase/app@0.9.7)
+ version: 0.22.0(@firebase/app@0.9.13)
'@mdi/font':
specifier: ^7.2.96
version: 7.2.96
@@ -36,7 +36,7 @@ dependencies:
version: 2.3.0
postcss-preset-env:
specifier: ^8.3.0
- version: 8.3.0(postcss@8.4.21)
+ version: 8.3.0(postcss@8.4.24)
register-service-worker:
specifier: ^1.7.2
version: 1.7.2
@@ -54,25 +54,25 @@ dependencies:
version: 7.0.2
vite-plugin-pwa:
specifier: ^0.14.7
- version: 0.14.7(vite@4.2.1)(workbox-build@6.5.4)(workbox-window@6.5.4)
+ version: 0.14.7(vite@4.2.1)(workbox-build@6.6.0)(workbox-window@6.6.0)
vue:
- specifier: ^3.2.47
- version: 3.2.47
+ specifier: ^3.3.1
+ version: 3.3.1
vue-i18n:
specifier: ^9.2.2
- version: 9.2.2(vue@3.2.47)
+ version: 9.2.2(vue@3.3.1)
vue-instantsearch:
specifier: ^4.8.9
- version: 4.8.9(@vue/server-renderer@3.2.47)(algoliasearch@4.17.0)(vue@3.2.47)
+ version: 4.8.9(@vue/server-renderer@3.3.4)(algoliasearch@4.17.0)(vue@3.3.1)
vue-router:
specifier: ^4.1.6
- version: 4.1.6(vue@3.2.47)
+ version: 4.1.6(vue@3.3.1)
vuetify:
- specifier: ^3.1.13
- version: 3.1.13(vite-plugin-vuetify@1.0.2)(vue-i18n@9.2.2)(vue@3.2.47)
+ specifier: ^3.3.5
+ version: 3.3.5(typescript@5.1.6)(vite-plugin-vuetify@1.0.2)(vue-i18n@9.2.2)(vue@3.3.1)
vuex:
specifier: ^4.1.0
- version: 4.1.0(vue@3.2.47)
+ version: 4.1.0(vue@3.3.1)
webpack:
specifier: ^5.78.0
version: 5.78.0(esbuild@0.17.15)
@@ -101,31 +101,34 @@ devDependencies:
version: 7.0.2(react-dom@18.2.0)(react@18.2.0)
'@storybook/vue3':
specifier: ^7.0.2
- version: 7.0.2(vue@3.2.47)
+ version: 7.0.2(vue@3.3.1)
'@vitejs/plugin-vue':
specifier: ^4.1.0
- version: 4.1.0(vite@4.2.1)(vue@3.2.47)
+ version: 4.1.0(vite@4.2.1)(vue@3.3.1)
'@vue/eslint-config-airbnb':
specifier: ^7.0.0
version: 7.0.0(eslint-plugin-vue@9.10.0)(eslint@8.37.0)
'@vue/test-utils':
specifier: ^2.3.2
- version: 2.3.2(vue@3.2.47)
+ version: 2.3.2(vue@3.3.1)
'@vue/vue3-jest':
specifier: ^29.2.3
- version: 29.2.3(@babel/core@7.21.4)(babel-jest@29.5.0)(jest@29.5.0)(vue@3.2.47)
+ version: 29.2.3(@babel/core@7.22.6)(babel-jest@29.6.0)(jest@29.5.0)(typescript@5.1.6)(vue@3.3.1)
css-loader:
specifier: ^6.7.3
version: 6.7.3(webpack@5.78.0)
cypress:
- specifier: ^12.9.0
- version: 12.9.0
+ specifier: ^12.10.0
+ version: 12.10.0
cypress-dotenv:
specifier: ^2.0.0
- version: 2.0.0(cypress@12.9.0)(dotenv@16.0.3)
+ version: 2.0.0(cypress@12.10.0)(dotenv@16.0.3)
eslint:
specifier: ^8.37.0
version: 8.37.0
+ eslint-config-prettier:
+ specifier: ^8.8.0
+ version: 8.8.0(eslint@8.37.0)
eslint-plugin-import:
specifier: ^2.27.5
version: 2.27.5(eslint@8.37.0)
@@ -145,26 +148,26 @@ devDependencies:
specifier: ^4.2.1
version: 4.2.1(firebase-admin@11.6.0)
firebase-tools:
- specifier: ^11.25.3
- version: 11.25.3
+ specifier: ^12.4.2
+ version: 12.4.2
flush-promises:
specifier: ^1.0.2
version: 1.0.2
jest-environment-node:
specifier: ^29.5.0
version: 29.5.0
+ ts-jest:
+ specifier: ^29.1.0
+ version: 29.1.0(@babel/core@7.22.6)(babel-jest@29.6.0)(esbuild@0.17.15)(jest@29.5.0)(typescript@5.1.6)
vite:
specifier: ^4.2.1
version: 4.2.1(@types/node@18.15.11)(sass@1.61.0)
vite-plugin-vuetify:
specifier: ^1.0.2
- version: 1.0.2(vite@4.2.1)(vue@3.2.47)(vuetify@3.1.13)
+ version: 1.0.2(vite@4.2.1)(vue@3.3.1)(vuetify@3.3.5)
vitest:
specifier: ^0.29.8
version: 0.29.8(sass@1.61.0)
- vue-cli-plugin-vuetify:
- specifier: ~2.5.8
- version: 2.5.8(vue@3.2.47)(webpack@5.78.0)
packages:
@@ -296,7 +299,7 @@ packages:
resolution: {integrity: sha512-r1w81DpR+KyRWd3f+rk6TNqMgedmAxZP5v5KWlXQWlgMUUtyEJch0DKEci1SorPMiSeM8XPl7MZ3miJ60JIpQg==}
dependencies:
'@jsdevtools/ono': 7.1.3
- '@types/json-schema': 7.0.11
+ '@types/json-schema': 7.0.12
call-me-maybe: 1.0.2
js-yaml: 4.1.0
dev: true
@@ -314,10 +317,20 @@ packages:
dependencies:
'@babel/highlight': 7.18.6
+ /@babel/code-frame@7.22.5:
+ resolution: {integrity: sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/highlight': 7.22.5
+
/@babel/compat-data@7.21.4:
resolution: {integrity: sha512-/DYyDpeCfaVinT40FPGdkkb+lYSKvsVuMjDAG7jPOWWiM1ibOaB9CXJAlc4d1QpP/U2q2P9jbrSlClKSErd55g==}
engines: {node: '>=6.9.0'}
+ /@babel/compat-data@7.22.6:
+ resolution: {integrity: sha512-29tfsWTq2Ftu7MXmimyC0C5FDZv5DYxOZkh3XD3+QW4V/BYuv/LyEsjj3c0hqedEaDt6DBfDvexMKU8YevdqFg==}
+ engines: {node: '>=6.9.0'}
+
/@babel/core@7.21.4:
resolution: {integrity: sha512-qt/YV149Jman/6AfmlxJ04LMIu8bMoyl3RB91yTFrxQmgbrSvQMy7cI8Q62FHx1t8wJ8B5fu0UDoLwHAhUo1QA==}
engines: {node: '>=6.9.0'}
@@ -328,10 +341,10 @@ packages:
'@babel/helper-compilation-targets': 7.21.4(@babel/core@7.21.4)
'@babel/helper-module-transforms': 7.21.2
'@babel/helpers': 7.21.0
- '@babel/parser': 7.21.4
+ '@babel/parser': 7.22.6
'@babel/template': 7.20.7
'@babel/traverse': 7.21.4
- '@babel/types': 7.21.4
+ '@babel/types': 7.22.5
convert-source-map: 1.9.0
debug: 4.3.4(supports-color@8.1.1)
gensync: 1.0.0-beta.2
@@ -340,11 +353,42 @@ packages:
transitivePeerDependencies:
- supports-color
+ /@babel/core@7.22.6:
+ resolution: {integrity: sha512-HPIyDa6n+HKw5dEuway3vVAhBboYCtREBMp+IWeseZy6TFtzn6MHkCH2KKYUOC/vKKwgSMHQW4htBOrmuRPXfw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@ampproject/remapping': 2.2.1
+ '@babel/code-frame': 7.22.5
+ '@babel/generator': 7.22.5
+ '@babel/helper-compilation-targets': 7.22.6(@babel/core@7.22.6)
+ '@babel/helper-module-transforms': 7.22.5
+ '@babel/helpers': 7.22.6
+ '@babel/parser': 7.22.6
+ '@babel/template': 7.22.5
+ '@babel/traverse': 7.22.6
+ '@babel/types': 7.22.5
+ '@nicolo-ribaudo/semver-v6': 6.3.3
+ convert-source-map: 1.9.0
+ debug: 4.3.4(supports-color@8.1.1)
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ transitivePeerDependencies:
+ - supports-color
+
/@babel/generator@7.21.4:
resolution: {integrity: sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.4
+ '@babel/types': 7.22.5
+ '@jridgewell/gen-mapping': 0.3.3
+ '@jridgewell/trace-mapping': 0.3.18
+ jsesc: 2.5.2
+
+ /@babel/generator@7.22.5:
+ resolution: {integrity: sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.22.5
'@jridgewell/gen-mapping': 0.3.3
'@jridgewell/trace-mapping': 0.3.18
jsesc: 2.5.2
@@ -353,14 +397,28 @@ packages:
resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.4
+ '@babel/types': 7.22.5
+
+ /@babel/helper-annotate-as-pure@7.22.5:
+ resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.22.5
+ dev: false
/@babel/helper-builder-binary-assignment-operator-visitor@7.18.9:
resolution: {integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-explode-assignable-expression': 7.18.6
- '@babel/types': 7.21.4
+ '@babel/types': 7.22.5
+ dev: false
+
+ /@babel/helper-builder-binary-assignment-operator-visitor@7.22.5:
+ resolution: {integrity: sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.22.5
dev: false
/@babel/helper-compilation-targets@7.21.4(@babel/core@7.21.4):
@@ -376,6 +434,33 @@ packages:
lru-cache: 5.1.1
semver: 6.3.0
+ /@babel/helper-compilation-targets@7.21.4(@babel/core@7.22.6):
+ resolution: {integrity: sha512-Fa0tTuOXZ1iL8IeDFUWCzjZcn+sJGd9RZdH9esYVjEejGmzf+FFYQpMi/kZUk2kPy/q1H3/GPw7np8qar/stfg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/compat-data': 7.21.4
+ '@babel/core': 7.22.6
+ '@babel/helper-validator-option': 7.21.0
+ browserslist: 4.21.5
+ lru-cache: 5.1.1
+ semver: 6.3.0
+ dev: false
+
+ /@babel/helper-compilation-targets@7.22.6(@babel/core@7.22.6):
+ resolution: {integrity: sha512-534sYEqWD9VfUm3IPn2SLcH4Q3P86XL+QvqdC7ZsFrzyyPF3T4XGiVghF6PTYNdWg6pXuoqXxNQAhbYeEInTzA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/compat-data': 7.22.6
+ '@babel/core': 7.22.6
+ '@babel/helper-validator-option': 7.22.5
+ '@nicolo-ribaudo/semver-v6': 6.3.3
+ browserslist: 4.21.9
+ lru-cache: 5.1.1
+
/@babel/helper-create-class-features-plugin@7.21.4(@babel/core@7.21.4):
resolution: {integrity: sha512-46QrX2CQlaFRF4TkwfTt6nJD7IHq8539cCL7SDpqWSDeJKY1xylKKY5F/33mJhLZ3mFvKv2gGrVS6NkyF6qs+Q==}
engines: {node: '>=6.9.0'}
@@ -395,24 +480,75 @@ packages:
- supports-color
dev: false
- /@babel/helper-create-regexp-features-plugin@7.21.4(@babel/core@7.21.4):
+ /@babel/helper-create-class-features-plugin@7.21.4(@babel/core@7.22.6):
+ resolution: {integrity: sha512-46QrX2CQlaFRF4TkwfTt6nJD7IHq8539cCL7SDpqWSDeJKY1xylKKY5F/33mJhLZ3mFvKv2gGrVS6NkyF6qs+Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@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
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/helper-create-class-features-plugin@7.22.6(@babel/core@7.22.6):
+ resolution: {integrity: sha512-iwdzgtSiBxF6ni6mzVnZCF3xt5qE6cEA0J7nFt8QOAWZ0zjCFceEgpn3vtb2V7WFR6QzP2jmIFOHMTRo7eNJjQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-environment-visitor': 7.22.5
+ '@babel/helper-function-name': 7.22.5
+ '@babel/helper-member-expression-to-functions': 7.22.5
+ '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/helper-replace-supers': 7.22.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ '@nicolo-ribaudo/semver-v6': 6.3.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/helper-create-regexp-features-plugin@7.21.4(@babel/core@7.22.6):
resolution: {integrity: sha512-M00OuhU+0GyZ5iBBN9czjugzWrEq2vDpf/zCYHxxf93ul/Q5rv+a5h+/+0WnI1AebHNVtl5bFV0qsJoH23DbfA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-annotate-as-pure': 7.18.6
regexpu-core: 5.3.2
dev: false
- /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.21.4):
+ /@babel/helper-create-regexp-features-plugin@7.22.6(@babel/core@7.22.6):
+ resolution: {integrity: sha512-nBookhLKxAWo/TUCmhnaEJyLz2dekjQvv5SRpE9epWQBcpedWLKt8aZdsuT9XV5ovzR3fENLjRXVT0GsSlGGhA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@nicolo-ribaudo/semver-v6': 6.3.3
+ regexpu-core: 5.3.2
+ dev: false
+
+ /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.22.6):
resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
peerDependencies:
'@babel/core': ^7.4.0-0
dependencies:
- '@babel/core': 7.21.4
- '@babel/helper-compilation-targets': 7.21.4(@babel/core@7.21.4)
+ '@babel/core': 7.22.6
+ '@babel/helper-compilation-targets': 7.21.4(@babel/core@7.22.6)
'@babel/helper-plugin-utils': 7.20.2
debug: 4.3.4(supports-color@8.1.1)
lodash.debounce: 4.0.8
@@ -422,15 +558,34 @@ packages:
- supports-color
dev: false
+ /@babel/helper-define-polyfill-provider@0.4.1(@babel/core@7.22.6):
+ resolution: {integrity: sha512-kX4oXixDxG197yhX+J3Wp+NpL2wuCFjWQAr6yX2jtCnflK9ulMI51ULFGIrWiX1jGfvAxdHp+XQCcP2bZGPs9A==}
+ peerDependencies:
+ '@babel/core': ^7.4.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-compilation-targets': 7.22.6(@babel/core@7.22.6)
+ '@babel/helper-plugin-utils': 7.22.5
+ debug: 4.3.4(supports-color@8.1.1)
+ lodash.debounce: 4.0.8
+ resolve: 1.22.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/@babel/helper-environment-visitor@7.18.9:
resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==}
engines: {node: '>=6.9.0'}
+ /@babel/helper-environment-visitor@7.22.5:
+ resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==}
+ engines: {node: '>=6.9.0'}
+
/@babel/helper-explode-assignable-expression@7.18.6:
resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.4
+ '@babel/types': 7.22.5
dev: false
/@babel/helper-function-name@7.21.0:
@@ -438,26 +593,52 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.20.7
- '@babel/types': 7.21.4
+ '@babel/types': 7.22.5
+
+ /@babel/helper-function-name@7.22.5:
+ resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/template': 7.22.5
+ '@babel/types': 7.22.5
/@babel/helper-hoist-variables@7.18.6:
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.4
+ '@babel/types': 7.22.5
+
+ /@babel/helper-hoist-variables@7.22.5:
+ resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.22.5
/@babel/helper-member-expression-to-functions@7.21.0:
resolution: {integrity: sha512-Muu8cdZwNN6mRRNG6lAYErJ5X3bRevgYR2O8wN0yn7jJSnGDu6eG59RfT29JHxGUovyfrh6Pj0XzmR7drNVL3Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.4
+ '@babel/types': 7.22.5
+ dev: false
+
+ /@babel/helper-member-expression-to-functions@7.22.5:
+ resolution: {integrity: sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.22.5
dev: false
/@babel/helper-module-imports@7.21.4:
resolution: {integrity: sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.4
+ '@babel/types': 7.22.5
+
+ /@babel/helper-module-imports@7.22.5:
+ resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.22.5
/@babel/helper-module-transforms@7.21.2:
resolution: {integrity: sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==}
@@ -467,10 +648,25 @@ packages:
'@babel/helper-module-imports': 7.21.4
'@babel/helper-simple-access': 7.20.2
'@babel/helper-split-export-declaration': 7.18.6
- '@babel/helper-validator-identifier': 7.19.1
+ '@babel/helper-validator-identifier': 7.22.5
'@babel/template': 7.20.7
'@babel/traverse': 7.21.4
- '@babel/types': 7.21.4
+ '@babel/types': 7.22.5
+ transitivePeerDependencies:
+ - supports-color
+
+ /@babel/helper-module-transforms@7.22.5:
+ resolution: {integrity: sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-environment-visitor': 7.22.5
+ '@babel/helper-module-imports': 7.22.5
+ '@babel/helper-simple-access': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/helper-validator-identifier': 7.22.5
+ '@babel/template': 7.22.5
+ '@babel/traverse': 7.22.6
+ '@babel/types': 7.22.5
transitivePeerDependencies:
- supports-color
@@ -478,24 +674,51 @@ packages:
resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.4
+ '@babel/types': 7.22.5
+ dev: false
+
+ /@babel/helper-optimise-call-expression@7.22.5:
+ resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.22.5
dev: false
/@babel/helper-plugin-utils@7.20.2:
resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==}
engines: {node: '>=6.9.0'}
- /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.21.4):
+ /@babel/helper-plugin-utils@7.22.5:
+ resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==}
+ engines: {node: '>=6.9.0'}
+ dev: false
+
+ /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.22.6):
resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-wrap-function': 7.20.5
- '@babel/types': 7.21.4
+ '@babel/types': 7.22.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/helper-remap-async-to-generator@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-environment-visitor': 7.22.5
+ '@babel/helper-wrap-function': 7.22.5
+ '@babel/types': 7.22.5
transitivePeerDependencies:
- supports-color
dev: false
@@ -509,7 +732,21 @@ packages:
'@babel/helper-optimise-call-expression': 7.18.6
'@babel/template': 7.20.7
'@babel/traverse': 7.21.4
- '@babel/types': 7.21.4
+ '@babel/types': 7.22.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/helper-replace-supers@7.22.5:
+ resolution: {integrity: sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-environment-visitor': 7.22.5
+ '@babel/helper-member-expression-to-functions': 7.22.5
+ '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/template': 7.22.5
+ '@babel/traverse': 7.22.6
+ '@babel/types': 7.22.5
transitivePeerDependencies:
- supports-color
dev: false
@@ -518,33 +755,56 @@ packages:
resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.4
+ '@babel/types': 7.22.5
+
+ /@babel/helper-simple-access@7.22.5:
+ resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.22.5
/@babel/helper-skip-transparent-expression-wrappers@7.20.0:
resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.4
+ '@babel/types': 7.22.5
+ dev: false
+
+ /@babel/helper-skip-transparent-expression-wrappers@7.22.5:
+ resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.22.5
dev: false
/@babel/helper-split-export-declaration@7.18.6:
resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.4
+ '@babel/types': 7.22.5
+
+ /@babel/helper-split-export-declaration@7.22.6:
+ resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.22.5
- /@babel/helper-string-parser@7.19.4:
- resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==}
+ /@babel/helper-string-parser@7.22.5:
+ resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==}
engines: {node: '>=6.9.0'}
- /@babel/helper-validator-identifier@7.19.1:
- resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==}
+ /@babel/helper-validator-identifier@7.22.5:
+ resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==}
engines: {node: '>=6.9.0'}
/@babel/helper-validator-option@7.21.0:
resolution: {integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==}
engines: {node: '>=6.9.0'}
+ /@babel/helper-validator-option@7.22.5:
+ resolution: {integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==}
+ engines: {node: '>=6.9.0'}
+
/@babel/helper-wrap-function@7.20.5:
resolution: {integrity: sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==}
engines: {node: '>=6.9.0'}
@@ -552,7 +812,19 @@ packages:
'@babel/helper-function-name': 7.21.0
'@babel/template': 7.20.7
'@babel/traverse': 7.21.4
- '@babel/types': 7.21.4
+ '@babel/types': 7.22.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/helper-wrap-function@7.22.5:
+ resolution: {integrity: sha512-bYqLIBSEshYcYQyfks8ewYA8S30yaGSeRslcvKMvoUk6HHPySbxHq9YRi6ghhzEU+yhQv9bP/jXnygkStOcqZw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-function-name': 7.22.5
+ '@babel/template': 7.22.5
+ '@babel/traverse': 7.22.6
+ '@babel/types': 7.22.5
transitivePeerDependencies:
- supports-color
dev: false
@@ -563,7 +835,17 @@ packages:
dependencies:
'@babel/template': 7.20.7
'@babel/traverse': 7.21.4
- '@babel/types': 7.21.4
+ '@babel/types': 7.22.5
+ transitivePeerDependencies:
+ - supports-color
+
+ /@babel/helpers@7.22.6:
+ resolution: {integrity: sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/template': 7.22.5
+ '@babel/traverse': 7.22.6
+ '@babel/types': 7.22.5
transitivePeerDependencies:
- supports-color
@@ -571,50 +853,87 @@ packages:
resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-validator-identifier': 7.19.1
+ '@babel/helper-validator-identifier': 7.22.5
+ chalk: 2.4.2
+ js-tokens: 4.0.0
+
+ /@babel/highlight@7.22.5:
+ resolution: {integrity: sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-validator-identifier': 7.22.5
chalk: 2.4.2
js-tokens: 4.0.0
- /@babel/parser@7.21.4:
- resolution: {integrity: sha512-alVJj7k7zIxqBZ7BTRhz0IqJFxW1VJbm6N8JbcYhQ186df9ZBPbZBmWSqAMXwHGsCJdYks7z/voa3ibiS5bCIw==}
+ /@babel/parser@7.21.9:
+ resolution: {integrity: sha512-q5PNg/Bi1OpGgx5jYlvWZwAorZepEudDMCLtj967aeS7WMont7dUZI46M2XwcIQqvUlMxWfdLFu4S/qSxeUu5g==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+ dependencies:
+ '@babel/types': 7.21.5
+
+ /@babel/parser@7.22.6:
+ resolution: {integrity: sha512-EIQu22vNkceq3LbjAq7knDf/UmtI2qbcNI8GRBlijez6TpQLvSodJPYfydQmNA5buwkxxxa/PVI44jjYZ+/cLw==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
- '@babel/types': 7.21.4
+ '@babel/types': 7.22.5
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.21.4):
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.22.6):
resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7(@babel/core@7.21.4):
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7(@babel/core@7.22.6):
resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.4)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.6)
+ dev: false
+
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.13.0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/plugin-transform-optional-chaining': 7.22.6(@babel/core@7.22.6)
dev: false
- /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.21.4):
+ /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.22.6):
resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.21.4)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.4)
+ '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.22.6)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.6)
transitivePeerDependencies:
- supports-color
dev: false
@@ -626,68 +945,81 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.4
- '@babel/helper-create-class-features-plugin': 7.21.4(@babel/core@7.21.4)
+ '@babel/helper-create-class-features-plugin': 7.21.4(@babel/core@7.22.6)
+ '@babel/helper-plugin-utils': 7.20.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.22.6):
+ resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-create-class-features-plugin': 7.21.4(@babel/core@7.22.6)
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.21.4):
+ /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.22.6):
resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
- '@babel/core': 7.21.4
- '@babel/helper-create-class-features-plugin': 7.21.4(@babel/core@7.21.4)
+ '@babel/core': 7.22.6
+ '@babel/helper-create-class-features-plugin': 7.21.4(@babel/core@7.22.6)
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.21.4)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.6)
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.21.4):
+ /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.22.6):
resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.4)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.6)
dev: false
- /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.21.4):
+ /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.22.6):
resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.21.4)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.6)
dev: false
- /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.21.4):
+ /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.22.6):
resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.4)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.6)
dev: false
- /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.21.4):
+ /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.22.6):
resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.4)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.6)
dev: false
/@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.21.4):
@@ -698,43 +1030,54 @@ packages:
dependencies:
'@babel/core': 7.21.4
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.4)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.6)
+ dev: false
+
+ /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.22.6):
+ resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.6)
dev: false
- /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.21.4):
+ /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.22.6):
resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.4)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.6)
dev: false
- /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.21.4):
+ /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.22.6):
resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.21.4
- '@babel/core': 7.21.4
- '@babel/helper-compilation-targets': 7.21.4(@babel/core@7.21.4)
+ '@babel/core': 7.22.6
+ '@babel/helper-compilation-targets': 7.21.4(@babel/core@7.22.6)
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.4)
- '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.21.4)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.6)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.6)
dev: false
- /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.21.4):
+ /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.22.6):
resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.4)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.6)
dev: false
/@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.21.4):
@@ -746,45 +1089,66 @@ packages:
'@babel/core': 7.21.4
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.4)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.6)
+ dev: false
+
+ /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.22.6):
+ resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.6)
dev: false
- /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.21.4):
+ /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.22.6):
resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
- '@babel/helper-create-class-features-plugin': 7.21.4(@babel/core@7.21.4)
+ '@babel/core': 7.22.6
+ '@babel/helper-create-class-features-plugin': 7.21.4(@babel/core@7.22.6)
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-proposal-private-property-in-object@7.21.0(@babel/core@7.21.4):
+ /@babel/plugin-proposal-private-property-in-object@7.21.0(@babel/core@7.22.6):
resolution: {integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.21.4(@babel/core@7.21.4)
+ '@babel/helper-create-class-features-plugin': 7.21.4(@babel/core@7.22.6)
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.21.4)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.6)
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.21.4):
+ /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.6):
+ resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ dev: false
+
+ /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.22.6):
resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
engines: {node: '>=4'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
- '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.21.4)
+ '@babel/core': 7.22.6
+ '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.22.6)
'@babel/helper-plugin-utils': 7.20.2
dev: false
@@ -796,47 +1160,72 @@ packages:
'@babel/core': 7.21.4
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.21.4):
- resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.6):
+ resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.21.4):
- resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
+ /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.21.4):
+ resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.4
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.21.4):
- resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.22.6):
+ resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-plugin-utils': 7.20.2
- dev: false
+ dev: true
- /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.21.4):
- resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.21.4):
+ resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.4
'@babel/helper-plugin-utils': 7.20.2
+
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.6):
+ resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.20.2
+
+ /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.20.2
+ dev: false
+
+ /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.6):
+ resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.21.4):
+ /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.6):
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-plugin-utils': 7.20.2
dev: false
@@ -850,16 +1239,36 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.21.4):
+ /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.22.6):
resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-plugin-utils': 7.20.2
dev: false
+ /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
/@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.21.4):
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
@@ -868,6 +1277,14 @@ packages:
'@babel/core': 7.21.4
'@babel/helper-plugin-utils': 7.20.2
+ /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.6):
+ resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.20.2
+
/@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.21.4):
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
@@ -876,6 +1293,14 @@ packages:
'@babel/core': 7.21.4
'@babel/helper-plugin-utils': 7.20.2
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.6):
+ resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.20.2
+
/@babel/plugin-syntax-jsx@7.21.4(@babel/core@7.21.4):
resolution: {integrity: sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==}
engines: {node: '>=6.9.0'}
@@ -893,6 +1318,14 @@ packages:
'@babel/core': 7.21.4
'@babel/helper-plugin-utils': 7.20.2
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.6):
+ resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.20.2
+
/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.21.4):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
@@ -901,6 +1334,14 @@ packages:
'@babel/core': 7.21.4
'@babel/helper-plugin-utils': 7.20.2
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.6):
+ resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.20.2
+
/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.21.4):
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
@@ -909,6 +1350,14 @@ packages:
'@babel/core': 7.21.4
'@babel/helper-plugin-utils': 7.20.2
+ /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.6):
+ resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.20.2
+
/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.21.4):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
@@ -917,6 +1366,14 @@ packages:
'@babel/core': 7.21.4
'@babel/helper-plugin-utils': 7.20.2
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.6):
+ resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.20.2
+
/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.21.4):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
@@ -925,6 +1382,14 @@ packages:
'@babel/core': 7.21.4
'@babel/helper-plugin-utils': 7.20.2
+ /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.6):
+ resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.20.2
+
/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.21.4):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
@@ -933,13 +1398,21 @@ packages:
'@babel/core': 7.21.4
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.21.4):
+ /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.6):
+ resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.20.2
+
+ /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.6):
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-plugin-utils': 7.20.2
dev: false
@@ -952,6 +1425,15 @@ packages:
'@babel/core': 7.21.4
'@babel/helper-plugin-utils': 7.20.2
+ /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.20.2
+
/@babel/plugin-syntax-typescript@7.21.4(@babel/core@7.21.4):
resolution: {integrity: sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==}
engines: {node: '>=6.9.0'}
@@ -961,59 +1443,156 @@ packages:
'@babel/core': 7.21.4
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-arrow-functions@7.20.7(@babel/core@7.21.4):
+ /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.22.6):
+ resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-create-regexp-features-plugin': 7.22.6(@babel/core@7.22.6)
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-arrow-functions@7.20.7(@babel/core@7.22.6):
resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.21.4):
+ /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-async-generator-functions@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-gGOEvFzm3fWoyD5uZq7vVTD57pPJ3PczPUD/xCFGjzBpUosnklmXyKnGQbbbGs1NPNPskFex0j93yKbHt0cHyg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-environment-visitor': 7.22.5
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-remap-async-to-generator': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.6)
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.22.6):
resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-module-imports': 7.21.4
'@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.21.4)
+ '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.22.6)
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-module-imports': 7.22.5
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-remap-async-to-generator': 7.22.5(@babel/core@7.22.6)
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.21.4):
+ /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.22.6):
resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.21.4):
+ /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.22.6):
resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-classes@7.21.0(@babel/core@7.21.4):
+ /@babel/plugin-transform-block-scoping@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-create-class-features-plugin': 7.22.6(@babel/core@7.22.6)
+ '@babel/helper-plugin-utils': 7.22.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-class-static-block@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.12.0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-create-class-features-plugin': 7.22.6(@babel/core@7.22.6)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.6)
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-classes@7.21.0(@babel/core@7.22.6):
resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-compilation-targets': 7.21.4(@babel/core@7.21.4)
+ '@babel/helper-compilation-targets': 7.21.4(@babel/core@7.22.6)
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-function-name': 7.21.0
'@babel/helper-optimise-call-expression': 7.18.6
@@ -1025,59 +1604,154 @@ packages:
- supports-color
dev: false
- /@babel/plugin-transform-computed-properties@7.20.7(@babel/core@7.21.4):
+ /@babel/plugin-transform-classes@7.22.6(@babel/core@7.22.6):
+ resolution: {integrity: sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-compilation-targets': 7.22.6(@babel/core@7.22.6)
+ '@babel/helper-environment-visitor': 7.22.5
+ '@babel/helper-function-name': 7.22.5
+ '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-replace-supers': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-computed-properties@7.20.7(@babel/core@7.22.6):
resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-plugin-utils': 7.20.2
'@babel/template': 7.20.7
dev: false
- /@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.21.4):
+ /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/template': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.22.6):
resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.21.4):
+ /@babel/plugin-transform-destructuring@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.22.6):
resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
- '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.21.4)
+ '@babel/core': 7.22.6
+ '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.22.6)
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.21.4):
+ /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-create-regexp-features-plugin': 7.22.6(@babel/core@7.22.6)
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.22.6):
resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.21.4):
+ /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-dynamic-import@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.6)
+ dev: false
+
+ /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.22.6):
resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.20.2
dev: false
+ /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.5
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-export-namespace-from@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.6)
+ dev: false
+
/@babel/plugin-transform-flow-strip-types@7.21.0(@babel/core@7.21.4):
resolution: {integrity: sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==}
engines: {node: '>=6.9.0'}
@@ -1089,61 +1763,138 @@ packages:
'@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.21.4)
dev: false
- /@babel/plugin-transform-for-of@7.21.0(@babel/core@7.21.4):
+ /@babel/plugin-transform-for-of@7.21.0(@babel/core@7.22.6):
resolution: {integrity: sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.21.4):
+ /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.22.6):
resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
- '@babel/helper-compilation-targets': 7.21.4(@babel/core@7.21.4)
+ '@babel/core': 7.22.6
+ '@babel/helper-compilation-targets': 7.21.4(@babel/core@7.22.6)
'@babel/helper-function-name': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-literals@7.18.9(@babel/core@7.21.4):
+ /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-compilation-targets': 7.22.6(@babel/core@7.22.6)
+ '@babel/helper-function-name': 7.22.5
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-json-strings@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.6)
+ dev: false
+
+ /@babel/plugin-transform-literals@7.18.9(@babel/core@7.22.6):
resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.21.4):
+ /@babel/plugin-transform-literals@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-logical-assignment-operators@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.6)
+ dev: false
+
+ /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.22.6):
resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.21.4):
+ /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.22.6):
resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
dev: false
+ /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-module-transforms': 7.22.5
+ '@babel/helper-plugin-utils': 7.22.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.21.4):
resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==}
engines: {node: '>=6.9.0'}
@@ -1156,173 +1907,442 @@ packages:
'@babel/helper-simple-access': 7.20.2
transitivePeerDependencies:
- supports-color
+ dev: false
- /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.21.4):
+ /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.22.6):
+ resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-module-transforms': 7.21.2
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-simple-access': 7.20.2
+ transitivePeerDependencies:
+ - supports-color
+
+ /@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-module-transforms': 7.22.5
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-simple-access': 7.22.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.22.6):
resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-hoist-variables': 7.18.6
'@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-validator-identifier': 7.19.1
+ '@babel/helper-validator-identifier': 7.22.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-modules-systemjs@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-hoist-variables': 7.22.5
+ '@babel/helper-module-transforms': 7.22.5
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-validator-identifier': 7.22.5
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.21.4):
+ /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.22.6):
resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.21.4):
+ /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-module-transforms': 7.22.5
+ '@babel/helper-plugin-utils': 7.22.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.22.6):
resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.22.6)
+ '@babel/helper-plugin-utils': 7.20.2
+ dev: false
+
+ /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-create-regexp-features-plugin': 7.22.6(@babel/core@7.22.6)
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.22.6):
+ resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.20.2
+ dev: false
+
+ /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-nullish-coalescing-operator@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.6)
+ dev: false
+
+ /@babel/plugin-transform-numeric-separator@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.6)
+ dev: false
+
+ /@babel/plugin-transform-object-rest-spread@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/compat-data': 7.22.6
+ '@babel/core': 7.22.6
+ '@babel/helper-compilation-targets': 7.22.6(@babel/core@7.22.6)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.6)
+ '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.6)
+ dev: false
+
+ /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.22.6):
+ resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-replace-supers': 7.20.7
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-replace-supers': 7.22.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-optional-catch-binding@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.6)
+ dev: false
+
+ /@babel/plugin-transform-optional-chaining@7.22.6(@babel/core@7.22.6):
+ resolution: {integrity: sha512-Vd5HiWml0mDVtcLHIoEU5sw6HOUW/Zk0acLs/SAeuLzkGNOPc9DB4nkUajemhCmTIz3eiaKREZn2hQQqF79YTg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.6)
+ dev: false
+
+ /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.22.6):
+ resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.20.2
+ dev: false
+
+ /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-create-class-features-plugin': 7.22.6(@babel/core@7.22.6)
+ '@babel/helper-plugin-utils': 7.22.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-private-property-in-object@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-create-class-features-plugin': 7.22.6(@babel/core@7.22.6)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.6)
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.22.6):
+ resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.20.2
+ dev: false
+
+ /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-react-jsx@7.21.0(@babel/core@7.21.4):
+ resolution: {integrity: sha512-6OAWljMvQrZjR2DaNhVfRz6dkCAVV+ymcLUmaf8bccGOHn2v5rHJK3tTpij0BuhdYWP4LLaqj5lwcdlpAAPuvg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.4
- '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.21.4)
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-module-imports': 7.21.4
'@babel/helper-plugin-utils': 7.20.2
+ '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.21.4)
+ '@babel/types': 7.22.5
+ dev: true
+
+ /@babel/plugin-transform-regenerator@7.20.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.20.2
+ regenerator-transform: 0.15.1
+ dev: false
+
+ /@babel/plugin-transform-regenerator@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.22.5
+ regenerator-transform: 0.15.1
dev: false
- /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.21.4):
- resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
+ /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.22.6):
+ resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.21.4):
- resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
+ /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-replace-supers': 7.20.7
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.21.4):
- resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==}
+ /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.22.6):
+ resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.21.4):
- resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
+ /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-react-jsx@7.21.0(@babel/core@7.21.4):
- resolution: {integrity: sha512-6OAWljMvQrZjR2DaNhVfRz6dkCAVV+ymcLUmaf8bccGOHn2v5rHJK3tTpij0BuhdYWP4LLaqj5lwcdlpAAPuvg==}
+ /@babel/plugin-transform-spread@7.20.7(@babel/core@7.22.6):
+ resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-module-imports': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.21.4)
- '@babel/types': 7.21.4
- dev: true
+ '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
+ dev: false
- /@babel/plugin-transform-regenerator@7.20.5(@babel/core@7.21.4):
- resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==}
+ /@babel/plugin-transform-spread@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
- '@babel/helper-plugin-utils': 7.20.2
- regenerator-transform: 0.15.1
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
dev: false
- /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.21.4):
- resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
+ /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.22.6):
+ resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.21.4):
- resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
+ /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-spread@7.20.7(@babel/core@7.21.4):
- resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==}
+ /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.22.6):
+ resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
dev: false
- /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.21.4):
- resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
+ /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.21.4):
- resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
+ /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.22.6):
+ resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.21.4):
- resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
+ /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.22.5
dev: false
/@babel/plugin-transform-typescript@7.21.3(@babel/core@7.21.4):
@@ -1340,27 +2360,70 @@ packages:
- supports-color
dev: false
- /@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.21.4):
+ /@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.22.6):
resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.21.4):
+ /@babel/plugin-transform-unicode-escapes@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-create-regexp-features-plugin': 7.22.6(@babel/core@7.22.6)
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.22.6):
resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
- '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.21.4)
+ '@babel/core': 7.22.6
+ '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.22.6)
'@babel/helper-plugin-utils': 7.20.2
dev: false
+ /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-create-regexp-features-plugin': 7.22.6(@babel/core@7.22.6)
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.22.6):
+ resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-create-regexp-features-plugin': 7.22.6(@babel/core@7.22.6)
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
/@babel/preset-env@7.21.4(@babel/core@7.21.4):
resolution: {integrity: sha512-2W57zHs2yDLm6GD5ZpvNn71lZ0B/iypSdIeq25OurDKji6AdzV07qp4s3n1/x5BqtiGaTrPN3nerlSCaC5qNTw==}
engines: {node: '>=6.9.0'}
@@ -1369,84 +2432,261 @@ packages:
dependencies:
'@babel/compat-data': 7.21.4
'@babel/core': 7.21.4
- '@babel/helper-compilation-targets': 7.21.4(@babel/core@7.21.4)
+ '@babel/helper-compilation-targets': 7.21.4(@babel/core@7.22.6)
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-validator-option': 7.21.0
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.21.4)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.21.4)
- '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.21.4)
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.4)
- '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.21.4)
- '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.21.4)
- '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.21.4)
- '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.21.4)
- '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.21.4)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.21.4)
- '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.21.4)
- '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.21.4)
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.21.4)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.4)
- '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.21.4)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.21.4)
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.4)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.4)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.21.4)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.21.4)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.4)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.21.4)
- '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.21.4)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.4)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.4)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.4)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.4)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.4)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.4)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.4)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.21.4)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.21.4)
- '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.21.4)
- '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.21.4)
- '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.21.4)
- '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.21.4)
- '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.21.4)
- '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.21.4)
- '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.21.4)
- '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.21.4)
- '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.21.4)
- '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.21.4)
- '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.21.4)
- '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.21.4)
- '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.21.4)
- '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.21.4)
- '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.21.4)
- '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.21.4)
- '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.21.4)
- '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.21.4)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.21.4)
- '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.21.4)
- '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.21.4)
- '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.21.4)
- '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.21.4)
- '@babel/plugin-transform-regenerator': 7.20.5(@babel/core@7.21.4)
- '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.21.4)
- '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.21.4)
- '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.21.4)
- '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.21.4)
- '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.21.4)
- '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.21.4)
- '@babel/plugin-transform-unicode-escapes': 7.18.10(@babel/core@7.21.4)
- '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.21.4)
- '@babel/preset-modules': 0.1.5(@babel/core@7.21.4)
- '@babel/types': 7.21.4
- babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.4)
- babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.4)
- babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.4)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.22.6)
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.22.6)
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.22.6)
+ '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.22.6)
+ '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.22.6)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.6)
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.6)
+ '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.22.6)
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.6)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.6)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.6)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.6)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.6)
+ '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.22.6)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.6)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.6)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.6)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.6)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.6)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.6)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.6)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.6)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.22.6)
+ '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.22.6)
+ '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.22.6)
+ '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.22.6)
+ '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.22.6)
+ '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.22.6)
+ '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.22.6)
+ '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.22.6)
+ '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.22.6)
+ '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.22.6)
+ '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.22.6)
+ '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.22.6)
+ '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.22.6)
+ '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.6)
+ '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-transform-regenerator': 7.20.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.6)
+ '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.6)
+ '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.22.6)
+ '@babel/plugin-transform-unicode-escapes': 7.18.10(@babel/core@7.22.6)
+ '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.22.6)
+ '@babel/preset-modules': 0.1.5(@babel/core@7.22.6)
+ '@babel/types': 7.22.5
+ babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.22.6)
+ babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.22.6)
+ babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.22.6)
+ core-js-compat: 3.30.0
+ semver: 6.3.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/preset-env@7.21.4(@babel/core@7.22.6):
+ resolution: {integrity: sha512-2W57zHs2yDLm6GD5ZpvNn71lZ0B/iypSdIeq25OurDKji6AdzV07qp4s3n1/x5BqtiGaTrPN3nerlSCaC5qNTw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/compat-data': 7.21.4
+ '@babel/core': 7.22.6
+ '@babel/helper-compilation-targets': 7.21.4(@babel/core@7.22.6)
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-validator-option': 7.21.0
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.22.6)
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.22.6)
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.22.6)
+ '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.22.6)
+ '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.22.6)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.6)
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.6)
+ '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.22.6)
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.6)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.6)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.6)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.6)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.6)
+ '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.22.6)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.6)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.6)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.6)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.6)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.6)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.6)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.6)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.6)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.22.6)
+ '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.22.6)
+ '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.22.6)
+ '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.22.6)
+ '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.22.6)
+ '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.22.6)
+ '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.22.6)
+ '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.22.6)
+ '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.22.6)
+ '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.22.6)
+ '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.22.6)
+ '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.22.6)
+ '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.22.6)
+ '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.6)
+ '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-transform-regenerator': 7.20.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.6)
+ '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.6)
+ '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.22.6)
+ '@babel/plugin-transform-unicode-escapes': 7.18.10(@babel/core@7.22.6)
+ '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.22.6)
+ '@babel/preset-modules': 0.1.5(@babel/core@7.22.6)
+ '@babel/types': 7.22.5
+ babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.22.6)
+ babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.22.6)
+ babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.22.6)
core-js-compat: 3.30.0
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: false
+ /@babel/preset-env@7.22.6(@babel/core@7.22.6):
+ resolution: {integrity: sha512-IHr0AXHGk8oh8HYSs45Mxuv6iySUBwDTIzJSnXN7PURqHdxJVQlCoXmKJgyvSS9bcNf9NVRVE35z+LkCvGmi6w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/compat-data': 7.22.6
+ '@babel/core': 7.22.6
+ '@babel/helper-compilation-targets': 7.22.6(@babel/core@7.22.6)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-validator-option': 7.22.5
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.6)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.6)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.6)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.6)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.6)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.6)
+ '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.6)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.6)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.6)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.6)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.6)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.6)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.6)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.6)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.6)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.6)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-async-generator-functions': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-class-static-block': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.22.6)
+ '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-dynamic-import': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-export-namespace-from': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-json-strings': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-logical-assignment-operators': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-numeric-separator': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-object-rest-spread': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-optional-catch-binding': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-optional-chaining': 7.22.6(@babel/core@7.22.6)
+ '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-private-property-in-object': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-regenerator': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-unicode-escapes': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.22.6)
+ '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.22.6)
+ '@babel/preset-modules': 0.1.5(@babel/core@7.22.6)
+ '@babel/types': 7.22.5
+ '@nicolo-ribaudo/semver-v6': 6.3.3
+ babel-plugin-polyfill-corejs2: 0.4.4(@babel/core@7.22.6)
+ babel-plugin-polyfill-corejs3: 0.8.2(@babel/core@7.22.6)
+ babel-plugin-polyfill-regenerator: 0.5.1(@babel/core@7.22.6)
+ core-js-compat: 3.31.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/@babel/preset-flow@7.21.4(@babel/core@7.21.4):
resolution: {integrity: sha512-F24cSq4DIBmhq4OzK3dE63NHagb27OPE3eWR+HLekt4Z3Y5MzIIUGF3LlLgV0gN8vzbDViSY7HnrReNVCJXTeA==}
engines: {node: '>=6.9.0'}
@@ -1459,16 +2699,16 @@ packages:
'@babel/plugin-transform-flow-strip-types': 7.21.0(@babel/core@7.21.4)
dev: false
- /@babel/preset-modules@0.1.5(@babel/core@7.21.4):
+ /@babel/preset-modules@0.1.5(@babel/core@7.22.6):
resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.6
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.4)
- '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.21.4)
- '@babel/types': 7.21.4
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.22.6)
+ '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.22.6)
+ '@babel/types': 7.22.5
esutils: 2.0.3
dev: false
@@ -1512,13 +2752,28 @@ packages:
dependencies:
regenerator-runtime: 0.13.11
+ /@babel/runtime@7.22.6:
+ resolution: {integrity: sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ regenerator-runtime: 0.13.11
+ dev: false
+
/@babel/template@7.20.7:
resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.21.4
- '@babel/parser': 7.21.4
- '@babel/types': 7.21.4
+ '@babel/parser': 7.22.6
+ '@babel/types': 7.22.5
+
+ /@babel/template@7.22.5:
+ resolution: {integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/code-frame': 7.22.5
+ '@babel/parser': 7.22.6
+ '@babel/types': 7.22.5
/@babel/traverse@7.21.4:
resolution: {integrity: sha512-eyKrRHKdyZxqDm+fV1iqL9UAHMoIg0nDaGqfIOd8rKH17m5snv7Gn4qgjBoFfLz9APvjFU/ICT00NVCv1Epp8Q==}
@@ -1530,19 +2785,44 @@ packages:
'@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.4
- '@babel/types': 7.21.4
+ '@babel/parser': 7.22.6
+ '@babel/types': 7.22.5
+ debug: 4.3.4(supports-color@8.1.1)
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+
+ /@babel/traverse@7.22.6:
+ resolution: {integrity: sha512-53CijMvKlLIDlOTrdWiHileRddlIiwUIyCKqYa7lYnnPldXCG5dUSN38uT0cA6i7rHWNKJLH0VU/Kxdr1GzB3w==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/code-frame': 7.22.5
+ '@babel/generator': 7.22.5
+ '@babel/helper-environment-visitor': 7.22.5
+ '@babel/helper-function-name': 7.22.5
+ '@babel/helper-hoist-variables': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/parser': 7.22.6
+ '@babel/types': 7.22.5
debug: 4.3.4(supports-color@8.1.1)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- /@babel/types@7.21.4:
- resolution: {integrity: sha512-rU2oY501qDxE8Pyo7i/Orqma4ziCOrby0/9mvbDUGEfvZjb279Nk9k19e2fiCxHbRRpY2ZyrgW1eq22mvmOIzA==}
+ /@babel/types@7.21.5:
+ resolution: {integrity: sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-string-parser': 7.19.4
- '@babel/helper-validator-identifier': 7.19.1
+ '@babel/helper-string-parser': 7.22.5
+ '@babel/helper-validator-identifier': 7.22.5
+ to-fast-properties: 2.0.0
+
+ /@babel/types@7.22.5:
+ resolution: {integrity: sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-string-parser': 7.22.5
+ '@babel/helper-validator-identifier': 7.22.5
to-fast-properties: 2.0.0
/@bcoe/v8-coverage@0.2.3:
@@ -1622,18 +2902,18 @@ packages:
'@csstools/css-tokenizer': 2.1.0
dev: false
- /@csstools/postcss-cascade-layers@3.0.1(postcss@8.4.21):
+ /@csstools/postcss-cascade-layers@3.0.1(postcss@8.4.24):
resolution: {integrity: sha512-dD8W98dOYNOH/yX4V4HXOhfCOnvVAg8TtsL+qCGNoKXuq5z2C/d026wGWgySgC8cajXXo/wNezS31Glj5GcqrA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
'@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.11)
- postcss: 8.4.21
+ postcss: 8.4.24
postcss-selector-parser: 6.0.11
dev: false
- /@csstools/postcss-color-function@2.2.0(postcss@8.4.21):
+ /@csstools/postcss-color-function@2.2.0(postcss@8.4.24):
resolution: {integrity: sha512-4z3k3p35Gmv4ZDX79OytvhwYx6Hz+y3hitikw2F+XG1yhSjalXoMCV04atgLjc/ThLg+Hwnp1pxhQ2G07UHknQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -1642,11 +2922,11 @@ packages:
'@csstools/css-color-parser': 1.1.0(@csstools/css-parser-algorithms@2.1.0)(@csstools/css-tokenizer@2.1.0)
'@csstools/css-parser-algorithms': 2.1.0(@csstools/css-tokenizer@2.1.0)
'@csstools/css-tokenizer': 2.1.0
- '@csstools/postcss-progressive-custom-properties': 2.1.1(postcss@8.4.21)
- postcss: 8.4.21
+ '@csstools/postcss-progressive-custom-properties': 2.1.1(postcss@8.4.24)
+ postcss: 8.4.24
dev: false
- /@csstools/postcss-color-mix-function@1.0.0(postcss@8.4.21):
+ /@csstools/postcss-color-mix-function@1.0.0(postcss@8.4.24):
resolution: {integrity: sha512-JuI8SKpE/XIpfmvALcxvk6flaq36KCJwqQgZ958Jz189r1diQZADq+7xFmjcv+B0vHQ4nSa92gGExtzOZ1iiUg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -1655,21 +2935,21 @@ packages:
'@csstools/css-color-parser': 1.1.0(@csstools/css-parser-algorithms@2.1.0)(@csstools/css-tokenizer@2.1.0)
'@csstools/css-parser-algorithms': 2.1.0(@csstools/css-tokenizer@2.1.0)
'@csstools/css-tokenizer': 2.1.0
- '@csstools/postcss-progressive-custom-properties': 2.1.1(postcss@8.4.21)
- postcss: 8.4.21
+ '@csstools/postcss-progressive-custom-properties': 2.1.1(postcss@8.4.24)
+ postcss: 8.4.24
dev: false
- /@csstools/postcss-font-format-keywords@2.0.2(postcss@8.4.21):
+ /@csstools/postcss-font-format-keywords@2.0.2(postcss@8.4.24):
resolution: {integrity: sha512-iKYZlIs6JsNT7NKyRjyIyezTCHLh4L4BBB3F5Nx7Dc4Z/QmBgX+YJFuUSar8IM6KclGiAUFGomXFdYxAwJydlA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.24
postcss-value-parser: 4.2.0
dev: false
- /@csstools/postcss-gradients-interpolation-method@3.0.1(postcss@8.4.21):
+ /@csstools/postcss-gradients-interpolation-method@3.0.1(postcss@8.4.24):
resolution: {integrity: sha512-sCfFSzL5HRb/GhrGuTEi8IRrxp2bUeKakyXvuXzuBBxL0L2X8kZAljQwkuRkd0W/wIWTsQG/E72REb5XMmRfrA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -1678,11 +2958,11 @@ packages:
'@csstools/css-color-parser': 1.1.0(@csstools/css-parser-algorithms@2.1.0)(@csstools/css-tokenizer@2.1.0)
'@csstools/css-parser-algorithms': 2.1.0(@csstools/css-tokenizer@2.1.0)
'@csstools/css-tokenizer': 2.1.0
- '@csstools/postcss-progressive-custom-properties': 2.1.1(postcss@8.4.21)
- postcss: 8.4.21
+ '@csstools/postcss-progressive-custom-properties': 2.1.1(postcss@8.4.24)
+ postcss: 8.4.24
dev: false
- /@csstools/postcss-hwb-function@2.2.0(postcss@8.4.21):
+ /@csstools/postcss-hwb-function@2.2.0(postcss@8.4.24):
resolution: {integrity: sha512-7gDPKacr3KhonzEyj4dzAEcetFJbN+JVPZXtANpf9SAVUHDUK+cCw7367uRlXnCeAoTdmRAyBk3agg2+snFxAw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -1691,61 +2971,61 @@ packages:
'@csstools/css-color-parser': 1.1.0(@csstools/css-parser-algorithms@2.1.0)(@csstools/css-tokenizer@2.1.0)
'@csstools/css-parser-algorithms': 2.1.0(@csstools/css-tokenizer@2.1.0)
'@csstools/css-tokenizer': 2.1.0
- postcss: 8.4.21
+ postcss: 8.4.24
dev: false
- /@csstools/postcss-ic-unit@2.0.2(postcss@8.4.21):
+ /@csstools/postcss-ic-unit@2.0.2(postcss@8.4.24):
resolution: {integrity: sha512-N84qGTJkfLTPj2qOG5P4CIqGjpZBbjOEMKMn+UjO5wlb9lcBTfBsxCF0lQsFdWJUzBHYFOz19dL66v71WF3Pig==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/postcss-progressive-custom-properties': 2.1.1(postcss@8.4.21)
- postcss: 8.4.21
+ '@csstools/postcss-progressive-custom-properties': 2.1.1(postcss@8.4.24)
+ postcss: 8.4.24
postcss-value-parser: 4.2.0
dev: false
- /@csstools/postcss-is-pseudo-class@3.1.1(postcss@8.4.21):
+ /@csstools/postcss-is-pseudo-class@3.1.1(postcss@8.4.24):
resolution: {integrity: sha512-hhiacuby4YdUnnxfCYCRMBIobyJImozf0u+gHSbQ/tNOdwvmrZtVROvgW7zmfYuRkHVDNZJWZslq2v5jOU+j/A==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
'@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.11)
- postcss: 8.4.21
+ postcss: 8.4.24
postcss-selector-parser: 6.0.11
dev: false
- /@csstools/postcss-logical-float-and-clear@1.0.1(postcss@8.4.21):
+ /@csstools/postcss-logical-float-and-clear@1.0.1(postcss@8.4.24):
resolution: {integrity: sha512-eO9z2sMLddvlfFEW5Fxbjyd03zaO7cJafDurK4rCqyRt9P7aaWwha0LcSzoROlcZrw1NBV2JAp2vMKfPMQO1xw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.24
dev: false
- /@csstools/postcss-logical-resize@1.0.1(postcss@8.4.21):
+ /@csstools/postcss-logical-resize@1.0.1(postcss@8.4.24):
resolution: {integrity: sha512-x1ge74eCSvpBkDDWppl+7FuD2dL68WP+wwP2qvdUcKY17vJksz+XoE1ZRV38uJgS6FNUwC0AxrPW5gy3MxsDHQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.24
postcss-value-parser: 4.2.0
dev: false
- /@csstools/postcss-logical-viewport-units@1.0.2(postcss@8.4.21):
+ /@csstools/postcss-logical-viewport-units@1.0.2(postcss@8.4.24):
resolution: {integrity: sha512-nnKFywBqRMYjv5jyjSplD/nbAnboUEGFfdxKw1o34Y1nvycgqjQavhKkmxbORxroBBIDwC5y6SfgENcPPUcOxQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
'@csstools/css-tokenizer': 2.1.0
- postcss: 8.4.21
+ postcss: 8.4.24
dev: false
- /@csstools/postcss-media-minmax@1.0.0(postcss@8.4.21):
+ /@csstools/postcss-media-minmax@1.0.0(postcss@8.4.24):
resolution: {integrity: sha512-qXHZ0QVDszKf4SsLazOEzFl+m+IkhHOigqMy/gHNIzAtqB3XeBQUa+dTi1ROmQBDH1HXktGwy+tafFBg9UoaxA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -1755,10 +3035,10 @@ packages:
'@csstools/css-parser-algorithms': 2.1.0(@csstools/css-tokenizer@2.1.0)
'@csstools/css-tokenizer': 2.1.0
'@csstools/media-query-list-parser': 2.0.2(@csstools/css-parser-algorithms@2.1.0)(@csstools/css-tokenizer@2.1.0)
- postcss: 8.4.21
+ postcss: 8.4.24
dev: false
- /@csstools/postcss-media-queries-aspect-ratio-number-values@1.0.1(postcss@8.4.21):
+ /@csstools/postcss-media-queries-aspect-ratio-number-values@1.0.1(postcss@8.4.24):
resolution: {integrity: sha512-V9yQqXdje6OfqDf6EL5iGOpi6N0OEczwYK83rql9UapQwFEryXlAehR5AqH8QqLYb6+y31wUXK6vMxCp0920Zg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -1767,30 +3047,30 @@ packages:
'@csstools/css-parser-algorithms': 2.1.0(@csstools/css-tokenizer@2.1.0)
'@csstools/css-tokenizer': 2.1.0
'@csstools/media-query-list-parser': 2.0.2(@csstools/css-parser-algorithms@2.1.0)(@csstools/css-tokenizer@2.1.0)
- postcss: 8.4.21
+ postcss: 8.4.24
dev: false
- /@csstools/postcss-nested-calc@2.0.2(postcss@8.4.21):
+ /@csstools/postcss-nested-calc@2.0.2(postcss@8.4.24):
resolution: {integrity: sha512-jbwrP8rN4e7LNaRcpx3xpMUjhtt34I9OV+zgbcsYAAk6k1+3kODXJBf95/JMYWhu9g1oif7r06QVUgfWsKxCFw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.24
postcss-value-parser: 4.2.0
dev: false
- /@csstools/postcss-normalize-display-values@2.0.1(postcss@8.4.21):
+ /@csstools/postcss-normalize-display-values@2.0.1(postcss@8.4.24):
resolution: {integrity: sha512-TQT5g3JQ5gPXC239YuRK8jFceXF9d25ZvBkyjzBGGoW5st5sPXFVQS8OjYb9IJ/K3CdfK4528y483cgS2DJR/w==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.24
postcss-value-parser: 4.2.0
dev: false
- /@csstools/postcss-oklab-function@2.2.0(postcss@8.4.21):
+ /@csstools/postcss-oklab-function@2.2.0(postcss@8.4.24):
resolution: {integrity: sha512-5QMtgn9IWpeTbbt8DwLvr41CQRJef2fKhznTFQI1Og/v3zr/uKYu+aSKZEEaoZnO9OophM4YJnkVJne3CqvJDQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -1799,31 +3079,31 @@ packages:
'@csstools/css-color-parser': 1.1.0(@csstools/css-parser-algorithms@2.1.0)(@csstools/css-tokenizer@2.1.0)
'@csstools/css-parser-algorithms': 2.1.0(@csstools/css-tokenizer@2.1.0)
'@csstools/css-tokenizer': 2.1.0
- '@csstools/postcss-progressive-custom-properties': 2.1.1(postcss@8.4.21)
- postcss: 8.4.21
+ '@csstools/postcss-progressive-custom-properties': 2.1.1(postcss@8.4.24)
+ postcss: 8.4.24
dev: false
- /@csstools/postcss-progressive-custom-properties@2.1.1(postcss@8.4.21):
+ /@csstools/postcss-progressive-custom-properties@2.1.1(postcss@8.4.24):
resolution: {integrity: sha512-6p8eO5+j+9hn4h2Klr9dbmya0GIb9SRrnPaCxqR1muVlV1waAZq6YkmlApEwXrox9qxggSwGZD5TnLRIY9f7WA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.24
postcss-value-parser: 4.2.0
dev: false
- /@csstools/postcss-scope-pseudo-class@2.0.2(postcss@8.4.21):
+ /@csstools/postcss-scope-pseudo-class@2.0.2(postcss@8.4.24):
resolution: {integrity: sha512-6Pvo4uexUCXt+Hz5iUtemQAcIuCYnL+ePs1khFR6/xPgC92aQLJ0zGHonWoewiBE+I++4gXK3pr+R1rlOFHe5w==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.24
postcss-selector-parser: 6.0.11
dev: false
- /@csstools/postcss-stepped-value-functions@2.1.0(postcss@8.4.21):
+ /@csstools/postcss-stepped-value-functions@2.1.0(postcss@8.4.24):
resolution: {integrity: sha512-CkEo9BF8fQeMoXW3biXjlgTLY7PA4UFihn6leq7hPoRzIguLUI0WZIVgsITGXfX8LXmkhCSTjXO2DLYu/LUixQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -1832,21 +3112,21 @@ packages:
'@csstools/css-calc': 1.0.1(@csstools/css-parser-algorithms@2.1.0)(@csstools/css-tokenizer@2.1.0)
'@csstools/css-parser-algorithms': 2.1.0(@csstools/css-tokenizer@2.1.0)
'@csstools/css-tokenizer': 2.1.0
- postcss: 8.4.21
+ postcss: 8.4.24
dev: false
- /@csstools/postcss-text-decoration-shorthand@2.2.2(postcss@8.4.21):
+ /@csstools/postcss-text-decoration-shorthand@2.2.2(postcss@8.4.24):
resolution: {integrity: sha512-aR9l/V7p0SkdrIyBysqlQWIbGXeGC7U4ccBAIlWMpVpG/MsGhxs1JvdBpjim4UDF3U+1VmF+MbvZFb7dL+d7XA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
'@csstools/color-helpers': 1.0.0
- postcss: 8.4.21
+ postcss: 8.4.24
postcss-value-parser: 4.2.0
dev: false
- /@csstools/postcss-trigonometric-functions@2.1.0(postcss@8.4.21):
+ /@csstools/postcss-trigonometric-functions@2.1.0(postcss@8.4.24):
resolution: {integrity: sha512-Ly7YczO+QdnByYeGqlppJoA2Tb2vsFfj5gSrszPTXJ+/4g3nnEZnG0VSeTK/WA8y7fzyL/qVNkkdEeOnruNWFQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -1855,16 +3135,16 @@ packages:
'@csstools/css-calc': 1.0.1(@csstools/css-parser-algorithms@2.1.0)(@csstools/css-tokenizer@2.1.0)
'@csstools/css-parser-algorithms': 2.1.0(@csstools/css-tokenizer@2.1.0)
'@csstools/css-tokenizer': 2.1.0
- postcss: 8.4.21
+ postcss: 8.4.24
dev: false
- /@csstools/postcss-unset-value@2.0.1(postcss@8.4.21):
+ /@csstools/postcss-unset-value@2.0.1(postcss@8.4.24):
resolution: {integrity: sha512-oJ9Xl29/yU8U7/pnMJRqAZd4YXNCfGEdcP4ywREuqm/xMqcgDNDppYRoCGDt40aaZQIEKBS79LytUDN/DHf0Ew==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.24
dev: false
/@csstools/selector-specificity@2.2.0(postcss-selector-parser@6.0.11):
@@ -2164,7 +3444,7 @@ packages:
'@firebase/app-compat': 0.2.7
'@firebase/component': 0.6.4
'@firebase/util': 1.9.3
- tslib: 2.5.0
+ tslib: 2.6.0
transitivePeerDependencies:
- '@firebase/app'
dev: false
@@ -2183,7 +3463,7 @@ packages:
'@firebase/installations': 0.6.4(@firebase/app@0.9.7)
'@firebase/logger': 0.4.0
'@firebase/util': 1.9.3
- tslib: 2.5.0
+ tslib: 2.6.0
dev: false
/@firebase/app-check-compat@0.3.4(@firebase/app-compat@0.2.7)(@firebase/app@0.9.7):
@@ -2197,7 +3477,7 @@ packages:
'@firebase/component': 0.6.4
'@firebase/logger': 0.4.0
'@firebase/util': 1.9.3
- tslib: 2.5.0
+ tslib: 2.6.0
transitivePeerDependencies:
- '@firebase/app'
dev: false
@@ -2219,7 +3499,7 @@ packages:
'@firebase/component': 0.6.4
'@firebase/logger': 0.4.0
'@firebase/util': 1.9.3
- tslib: 2.5.0
+ tslib: 2.6.0
dev: false
/@firebase/app-compat@0.2.7:
@@ -2229,12 +3509,22 @@ packages:
'@firebase/component': 0.6.4
'@firebase/logger': 0.4.0
'@firebase/util': 1.9.3
- tslib: 2.5.0
+ tslib: 2.6.0
dev: false
/@firebase/app-types@0.9.0:
resolution: {integrity: sha512-AeweANOIo0Mb8GiYm3xhTEBVCmPwTYAu9Hcd2qSkLuga/6+j9b1Jskl5bpiSQWy9eJ/j5pavxj6eYogmnuzm+Q==}
+ /@firebase/app@0.9.13:
+ resolution: {integrity: sha512-GfiI1JxJ7ecluEmDjPzseRXk/PX31hS7+tjgBopL7XjB2hLUdR+0FTMXy2Q3/hXezypDvU6or7gVFizDESrkXw==}
+ dependencies:
+ '@firebase/component': 0.6.4
+ '@firebase/logger': 0.4.0
+ '@firebase/util': 1.9.3
+ idb: 7.1.1
+ tslib: 2.6.0
+ dev: false
+
/@firebase/app@0.9.7:
resolution: {integrity: sha512-ADnRXaW4XQF11QYYhZQEJEtOGnmLkGl2FCixCxPighLrmJmGwCZrzSFtwITd8w/EU3dRYaU5Og37VfnY+gKxGw==}
dependencies:
@@ -2242,7 +3532,7 @@ packages:
'@firebase/logger': 0.4.0
'@firebase/util': 1.9.3
idb: 7.0.1
- tslib: 2.5.0
+ tslib: 2.6.0
dev: false
/@firebase/auth-compat@0.3.7(@firebase/app-compat@0.2.7)(@firebase/app-types@0.9.0)(@firebase/app@0.9.7):
@@ -2256,7 +3546,7 @@ packages:
'@firebase/component': 0.6.4
'@firebase/util': 1.9.3
node-fetch: 2.6.7
- tslib: 2.5.0
+ tslib: 2.6.0
transitivePeerDependencies:
- '@firebase/app'
- '@firebase/app-types'
@@ -2276,6 +3566,21 @@ packages:
'@firebase/util': 1.9.3
dev: false
+ /@firebase/auth@0.22.0(@firebase/app@0.9.13):
+ resolution: {integrity: sha512-4PiaDJEhJ7FNo48WG0TAlqHiCuRBXxUow2q+0emh+PhmM0cLT1UdqK1EuWWGc5CY+ztNQZUh+Yzeh+nv9tZL0w==}
+ peerDependencies:
+ '@firebase/app': 0.x
+ dependencies:
+ '@firebase/app': 0.9.13
+ '@firebase/component': 0.6.4
+ '@firebase/logger': 0.4.0
+ '@firebase/util': 1.9.3
+ node-fetch: 2.6.7
+ tslib: 2.5.0
+ transitivePeerDependencies:
+ - encoding
+ dev: false
+
/@firebase/auth@0.22.0(@firebase/app@0.9.7):
resolution: {integrity: sha512-4PiaDJEhJ7FNo48WG0TAlqHiCuRBXxUow2q+0emh+PhmM0cLT1UdqK1EuWWGc5CY+ztNQZUh+Yzeh+nv9tZL0w==}
peerDependencies:
@@ -2305,7 +3610,7 @@ packages:
'@firebase/database-types': 0.10.4
'@firebase/logger': 0.4.0
'@firebase/util': 1.9.3
- tslib: 2.5.0
+ tslib: 2.6.0
/@firebase/database-types@0.10.4:
resolution: {integrity: sha512-dPySn0vJ/89ZeBac70T+2tWWPiJXWbmRygYv0smT5TfE3hDrQ09eKMF3Y+vMlTdrMWq7mUdYW5REWPSGH4kAZQ==}
@@ -2321,7 +3626,7 @@ packages:
'@firebase/logger': 0.4.0
'@firebase/util': 1.9.3
faye-websocket: 0.11.4
- tslib: 2.5.0
+ tslib: 2.6.0
/@firebase/firestore-compat@0.3.6(@firebase/app-compat@0.2.7)(@firebase/app-types@0.9.0)(@firebase/app@0.9.7):
resolution: {integrity: sha512-svS8oV0nwTyoHW5mslFV0gRb3FLpRQGjz2F7nc5imnPUTjSJmAfXECtgs5HG5MSJM/laSimfAeGuQVh5FM1AEw==}
@@ -2333,7 +3638,7 @@ packages:
'@firebase/firestore': 3.10.0(@firebase/app@0.9.7)
'@firebase/firestore-types': 2.5.1(@firebase/app-types@0.9.0)(@firebase/util@1.9.3)
'@firebase/util': 1.9.3
- tslib: 2.5.0
+ tslib: 2.6.0
transitivePeerDependencies:
- '@firebase/app'
- '@firebase/app-types'
@@ -2364,7 +3669,7 @@ packages:
'@grpc/grpc-js': 1.7.3
'@grpc/proto-loader': 0.6.13
node-fetch: 2.6.7
- tslib: 2.5.0
+ tslib: 2.6.0
transitivePeerDependencies:
- encoding
dev: false
@@ -2379,7 +3684,7 @@ packages:
'@firebase/functions': 0.9.4(@firebase/app@0.9.7)
'@firebase/functions-types': 0.6.0
'@firebase/util': 1.9.3
- tslib: 2.5.0
+ tslib: 2.6.0
transitivePeerDependencies:
- '@firebase/app'
- encoding
@@ -2401,7 +3706,7 @@ packages:
'@firebase/messaging-interop-types': 0.2.0
'@firebase/util': 1.9.3
node-fetch: 2.6.7
- tslib: 2.5.0
+ tslib: 2.6.0
transitivePeerDependencies:
- encoding
dev: false
@@ -2416,7 +3721,7 @@ packages:
'@firebase/installations': 0.6.4(@firebase/app@0.9.7)
'@firebase/installations-types': 0.5.0(@firebase/app-types@0.9.0)
'@firebase/util': 1.9.3
- tslib: 2.5.0
+ tslib: 2.6.0
transitivePeerDependencies:
- '@firebase/app'
- '@firebase/app-types'
@@ -2439,7 +3744,7 @@ packages:
'@firebase/component': 0.6.4
'@firebase/util': 1.9.3
idb: 7.0.1
- tslib: 2.5.0
+ tslib: 2.6.0
dev: false
/@firebase/logger@0.4.0:
@@ -2456,7 +3761,7 @@ packages:
'@firebase/component': 0.6.4
'@firebase/messaging': 0.12.4(@firebase/app@0.9.7)
'@firebase/util': 1.9.3
- tslib: 2.5.0
+ tslib: 2.6.0
transitivePeerDependencies:
- '@firebase/app'
dev: false
@@ -2476,7 +3781,7 @@ packages:
'@firebase/messaging-interop-types': 0.2.0
'@firebase/util': 1.9.3
idb: 7.0.1
- tslib: 2.5.0
+ tslib: 2.6.0
dev: false
/@firebase/performance-compat@0.2.4(@firebase/app-compat@0.2.7)(@firebase/app@0.9.7):
@@ -2490,7 +3795,7 @@ packages:
'@firebase/performance': 0.6.4(@firebase/app@0.9.7)
'@firebase/performance-types': 0.2.0
'@firebase/util': 1.9.3
- tslib: 2.5.0
+ tslib: 2.6.0
transitivePeerDependencies:
- '@firebase/app'
dev: false
@@ -2509,7 +3814,7 @@ packages:
'@firebase/installations': 0.6.4(@firebase/app@0.9.7)
'@firebase/logger': 0.4.0
'@firebase/util': 1.9.3
- tslib: 2.5.0
+ tslib: 2.6.0
dev: false
/@firebase/remote-config-compat@0.2.4(@firebase/app-compat@0.2.7)(@firebase/app@0.9.7):
@@ -2523,7 +3828,7 @@ packages:
'@firebase/remote-config': 0.4.4(@firebase/app@0.9.7)
'@firebase/remote-config-types': 0.3.0
'@firebase/util': 1.9.3
- tslib: 2.5.0
+ tslib: 2.6.0
transitivePeerDependencies:
- '@firebase/app'
dev: false
@@ -2542,7 +3847,7 @@ packages:
'@firebase/installations': 0.6.4(@firebase/app@0.9.7)
'@firebase/logger': 0.4.0
'@firebase/util': 1.9.3
- tslib: 2.5.0
+ tslib: 2.6.0
dev: false
/@firebase/storage-compat@0.3.2(@firebase/app-compat@0.2.7)(@firebase/app-types@0.9.0)(@firebase/app@0.9.7):
@@ -2555,7 +3860,7 @@ packages:
'@firebase/storage': 0.11.2(@firebase/app@0.9.7)
'@firebase/storage-types': 0.8.0(@firebase/app-types@0.9.0)(@firebase/util@1.9.3)
'@firebase/util': 1.9.3
- tslib: 2.5.0
+ tslib: 2.6.0
transitivePeerDependencies:
- '@firebase/app'
- '@firebase/app-types'
@@ -2581,7 +3886,7 @@ packages:
'@firebase/component': 0.6.4
'@firebase/util': 1.9.3
node-fetch: 2.6.7
- tslib: 2.5.0
+ tslib: 2.6.0
transitivePeerDependencies:
- encoding
dev: false
@@ -2595,20 +3900,15 @@ packages:
resolution: {integrity: sha512-BpiZLBWdLFw+qFel9p3Zs1jD6QmH7Ii4aTDu6+vx8ShdidChZUXqDhYJly4ZjSgQh54miXbBgBrk0S+jTIh/Qg==}
dev: false
- /@gar/promisify@1.1.3:
- resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==}
- dev: true
- optional: true
-
- /@google-cloud/firestore@6.5.0:
- resolution: {integrity: sha512-U0QwG6pEQxO5c0v0eUylswozmuvlvz7iXSW+I18jzqR2hAFrUq2Weu1wm3NaH8wGD4ZL7W9Be4cMHG5CYU8LuQ==}
+ /@google-cloud/firestore@6.6.1:
+ resolution: {integrity: sha512-Z41j2h0mrgBH9qNIVmbRLqGKc6XmdJtWipeKwdnGa/bPTP1gn2SGTrYyWnpfsLMEtzKSYieHPSkAFp5kduF2RA==}
engines: {node: '>=12.0.0'}
requiresBuild: true
dependencies:
fast-deep-equal: 3.1.3
functional-red-black-tree: 1.0.1
google-gax: 3.6.0
- protobufjs: 7.2.3
+ protobufjs: 7.2.4
transitivePeerDependencies:
- encoding
- supports-color
@@ -2653,8 +3953,8 @@ packages:
dev: true
optional: true
- /@google-cloud/pubsub@3.4.1:
- resolution: {integrity: sha512-6sTJAFQYeUeAEyBiz2hMvEku3fUvFwNHKrkHjM3w6hcnN37xCH60NDlnZvGuT2rRXG24QBq6Fx3Pe/3nkaybUQ==}
+ /@google-cloud/pubsub@3.7.1:
+ resolution: {integrity: sha512-J6jzgIubq1sAMafnSF2wGnOn1qkNd0l0Y5ChG33rU27/iDXmxKabaiY/dvFndX3v57TE/QcB9uQt5A6Pek+WrA==}
engines: {node: '>=12.0.0'}
dependencies:
'@google-cloud/paginator': 4.0.1
@@ -2667,9 +3967,9 @@ packages:
'@types/long': 4.0.2
arrify: 2.0.1
extend: 3.0.2
- google-auth-library: 8.7.0
+ google-auth-library: 8.9.0
google-gax: 3.6.0
- heap-js: 2.2.0
+ heap-js: 2.3.0
is-stream-ended: 0.1.4
lodash.snakecase: 4.1.1
p-defer: 3.0.0
@@ -2678,8 +3978,8 @@ packages:
- supports-color
dev: true
- /@google-cloud/storage@6.9.5:
- resolution: {integrity: sha512-fcLsDA8YKcGuqvhk0XTjJGVpG9dzs5Em8IcUjSjspYvERuHYqMy9CMChWapSjv3Lyw//exa3mv4nUxPlV93BnA==}
+ /@google-cloud/storage@6.11.0:
+ resolution: {integrity: sha512-p5VX5K2zLTrMXlKdS1CiQNkKpygyn7CBFm5ZvfhVj6+7QUsjWvYx9YDMkYXdarZ6JDt4cxiu451y9QUIH82ZTw==}
engines: {node: '>=12'}
requiresBuild: true
dependencies:
@@ -2692,8 +3992,8 @@ packages:
duplexify: 4.1.2
ent: 2.2.0
extend: 3.0.2
- gaxios: 5.1.0
- google-auth-library: 8.7.0
+ gaxios: 5.1.2
+ google-auth-library: 8.9.0
mime: 3.0.0
mime-types: 2.1.35
p-limit: 3.1.0
@@ -2710,16 +4010,16 @@ packages:
resolution: {integrity: sha512-H9l79u4kJ2PVSxUNA08HMYAnUBLj9v6KjYQ7SQ71hOZcEXhShE/y5iQCesP8+6/Ik/7i2O0a10bPquIcYfufog==}
engines: {node: ^8.13.0 || >=10.10.0}
dependencies:
- '@grpc/proto-loader': 0.7.6
- '@types/node': 18.15.11
+ '@grpc/proto-loader': 0.7.7
+ '@types/node': 20.3.3
dev: false
- /@grpc/grpc-js@1.8.13:
- resolution: {integrity: sha512-iY3jsdfbc0ARoCLFvbvUB8optgyb0r1XLPb142u+QtgBcKJYkCIFt3Fd/881KqjLYWjsBJF57N3b8Eop9NDfUA==}
+ /@grpc/grpc-js@1.8.17:
+ resolution: {integrity: sha512-DGuSbtMFbaRsyffMf+VEkVu8HkSXEUfO3UyGJNtqxW9ABdtTIA+2UXAJpwbJS+xfQxuwqLUeELmL6FuZkOqPxw==}
engines: {node: ^8.13.0 || >=10.10.0}
dependencies:
- '@grpc/proto-loader': 0.7.6
- '@types/node': 18.15.11
+ '@grpc/proto-loader': 0.7.7
+ '@types/node': 20.3.3
dev: true
/@grpc/proto-loader@0.6.13:
@@ -2734,8 +4034,8 @@ packages:
yargs: 16.2.0
dev: false
- /@grpc/proto-loader@0.7.6:
- resolution: {integrity: sha512-QyAXR8Hyh7uMDmveWxDSUcJr9NAWaZ2I6IXgAYvQmfflwouTM+rArE2eEaCtLlRqO81j7pRLCt81IefUei6Zbw==}
+ /@grpc/proto-loader@0.7.7:
+ resolution: {integrity: sha512-1TIeXOi8TuSCQprPItwoMymZXxWT0CPxUhkrkeCUH+D8U7QDwQ6b7SUz2MaLuWM2llT+J/TVFLmQI5KtML3BhQ==}
engines: {node: '>=6'}
hasBin: true
dependencies:
@@ -2743,7 +4043,7 @@ packages:
lodash.camelcase: 4.3.0
long: 4.0.0
protobufjs: 7.2.3
- yargs: 16.2.0
+ yargs: 17.7.2
/@humanwhocodes/config-array@0.11.8:
resolution: {integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==}
@@ -2798,6 +4098,19 @@ packages:
'@intlify/core-base': 9.2.2
'@intlify/shared': 9.2.2
+ /@isaacs/cliui@8.0.2:
+ resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
+ engines: {node: '>=12'}
+ dependencies:
+ string-width: 5.1.2
+ string-width-cjs: /string-width@4.2.3
+ strip-ansi: 7.1.0
+ strip-ansi-cjs: /strip-ansi@6.0.1
+ wrap-ansi: 8.1.0
+ wrap-ansi-cjs: /wrap-ansi@7.0.0
+ dev: true
+ optional: true
+
/@istanbuljs/load-nyc-config@1.1.0:
resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==}
engines: {node: '>=8'}
@@ -2817,7 +4130,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.5.0
- '@types/node': 18.15.11
+ '@types/node': 20.3.3
chalk: 4.1.2
jest-message-util: 29.5.0
jest-util: 29.5.0
@@ -2837,14 +4150,14 @@ packages:
'@jest/test-result': 29.5.0
'@jest/transform': 29.5.0
'@jest/types': 29.5.0
- '@types/node': 18.15.11
+ '@types/node': 20.3.3
ansi-escapes: 4.3.2
chalk: 4.1.2
ci-info: 3.8.0
exit: 0.1.2
graceful-fs: 4.2.11
jest-changed-files: 29.5.0
- jest-config: 29.5.0(@types/node@18.15.11)
+ jest-config: 29.5.0(@types/node@20.3.3)
jest-haste-map: 29.5.0
jest-message-util: 29.5.0
jest-regex-util: 29.4.3
@@ -2925,7 +4238,7 @@ packages:
'@jest/transform': 29.5.0
'@jest/types': 29.5.0
'@jridgewell/trace-mapping': 0.3.18
- '@types/node': 18.15.11
+ '@types/node': 20.3.3
chalk: 4.1.2
collect-v8-coverage: 1.0.1
exit: 0.1.2
@@ -2952,6 +4265,13 @@ packages:
dependencies:
'@sinclair/typebox': 0.25.24
+ /@jest/schemas@29.6.0:
+ resolution: {integrity: sha512-rxLjXyJBTL4LQeJW3aKo0M/+GkCOXsO+8i9Iu7eDb6KwtP65ayoDsitrdPBtujxQ88k4wI2FNYfa6TOGwSn6cQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ dependencies:
+ '@sinclair/typebox': 0.27.8
+ dev: true
+
/@jest/source-map@29.4.3:
resolution: {integrity: sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -3000,6 +4320,29 @@ packages:
transitivePeerDependencies:
- supports-color
+ /@jest/transform@29.6.0:
+ resolution: {integrity: sha512-bhP/KxPo3e322FJ0nKAcb6WVK76ZYyQd1lWygJzoSqP8SYMSLdxHqP4wnPTI4WvbB8PKPDV30y5y7Tya4RHOBA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ dependencies:
+ '@babel/core': 7.22.6
+ '@jest/types': 29.6.0
+ '@jridgewell/trace-mapping': 0.3.18
+ babel-plugin-istanbul: 6.1.1
+ chalk: 4.1.2
+ convert-source-map: 2.0.0
+ fast-json-stable-stringify: 2.1.0
+ graceful-fs: 4.2.11
+ jest-haste-map: 29.6.0
+ jest-regex-util: 29.4.3
+ jest-util: 29.6.0
+ micromatch: 4.0.5
+ pirates: 4.0.6
+ slash: 3.0.0
+ write-file-atomic: 4.0.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/@jest/types@29.5.0:
resolution: {integrity: sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -3011,6 +4354,18 @@ packages:
'@types/yargs': 17.0.24
chalk: 4.1.2
+ /@jest/types@29.6.0:
+ resolution: {integrity: sha512-8XCgL9JhqbJTFnMRjEAO+TuW251+MoMd5BSzLiE3vvzpQ8RlBxy8NoyNkDhs3K3OL3HeVinlOl9or5p7GTeOLg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ dependencies:
+ '@jest/schemas': 29.6.0
+ '@types/istanbul-lib-coverage': 2.0.4
+ '@types/istanbul-reports': 3.0.1
+ '@types/node': 20.3.3
+ '@types/yargs': 17.0.24
+ chalk: 4.1.2
+ dev: true
+
/@jridgewell/gen-mapping@0.3.3:
resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==}
engines: {node: '>=6.0.0'}
@@ -3033,6 +4388,13 @@ packages:
'@jridgewell/gen-mapping': 0.3.3
'@jridgewell/trace-mapping': 0.3.18
+ /@jridgewell/source-map@0.3.5:
+ resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==}
+ dependencies:
+ '@jridgewell/gen-mapping': 0.3.3
+ '@jridgewell/trace-mapping': 0.3.18
+ dev: false
+
/@jridgewell/sourcemap-codec@1.4.14:
resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
@@ -3086,6 +4448,10 @@ packages:
tar-fs: 2.1.1
dev: false
+ /@nicolo-ribaudo/semver-v6@6.3.3:
+ resolution: {integrity: sha512-3Yc1fUTs69MG/uZbJlLSI3JISMn2UV2rg+1D/vROUqZyh3l6iYHCs7GMp+M40ZD7yOdDbYjJcU1oTJhrc+dGKg==}
+ hasBin: true
+
/@nodelib/fs.scandir@2.1.5:
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
@@ -3101,25 +4467,14 @@ packages:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
dependencies:
- '@nodelib/fs.scandir': 2.1.5
- fastq: 1.15.0
-
- /@npmcli/fs@2.1.2:
- resolution: {integrity: sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
- dependencies:
- '@gar/promisify': 1.1.3
- semver: 7.3.8
- dev: true
- optional: true
+ '@nodelib/fs.scandir': 2.1.5
+ fastq: 1.15.0
- /@npmcli/move-file@2.0.1:
- resolution: {integrity: sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
- deprecated: This functionality has been moved to @npmcli/fs
+ /@npmcli/fs@3.1.0:
+ resolution: {integrity: sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dependencies:
- mkdirp: 1.0.4
- rimraf: 3.0.2
+ semver: 7.5.3
dev: true
optional: true
@@ -3133,6 +4488,13 @@ packages:
engines: {node: '>=8.12.0'}
dev: true
+ /@pkgjs/parseargs@0.11.0:
+ resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
+ engines: {node: '>=14'}
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@pnpm/config.env-replace@1.1.0:
resolution: {integrity: sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==}
engines: {node: '>=12.22.0'}
@@ -3145,8 +4507,8 @@ packages:
graceful-fs: 4.2.10
dev: true
- /@pnpm/npm-conf@2.1.1:
- resolution: {integrity: sha512-yfRcuupmxxeDOSxvw4g+wFCrGiPD0L32f5WMzqMXp7Rl93EOCdFiDcaSNnZ10Up9GdNqkj70UTa8hfhPFphaZA==}
+ /@pnpm/npm-conf@2.2.2:
+ resolution: {integrity: sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==}
engines: {node: '>=12'}
dependencies:
'@pnpm/config.env-replace': 1.1.0
@@ -3187,7 +4549,7 @@ packages:
/@protobufjs/utf8@1.1.0:
resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==}
- /@rollup/plugin-babel@5.3.1(@babel/core@7.21.4)(rollup@2.79.1):
+ /@rollup/plugin-babel@5.3.1(@babel/core@7.22.6)(rollup@2.79.1):
resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==}
engines: {node: '>= 10.0.0'}
peerDependencies:
@@ -3198,8 +4560,8 @@ packages:
'@types/babel__core':
optional: true
dependencies:
- '@babel/core': 7.21.4
- '@babel/helper-module-imports': 7.21.4
+ '@babel/core': 7.22.6
+ '@babel/helper-module-imports': 7.22.5
'@rollup/pluginutils': 3.1.0(rollup@2.79.1)
rollup: 2.79.1
dev: false
@@ -3273,6 +4635,10 @@ packages:
/@sinclair/typebox@0.25.24:
resolution: {integrity: sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==}
+ /@sinclair/typebox@0.27.8:
+ resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
+ dev: true
+
/@sinonjs/commons@2.0.0:
resolution: {integrity: sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg==}
dependencies:
@@ -3669,7 +5035,7 @@ packages:
hasBin: true
dependencies:
'@babel/core': 7.21.4
- '@babel/preset-env': 7.21.4(@babel/core@7.21.4)
+ '@babel/preset-env': 7.21.4(@babel/core@7.22.6)
'@ndelangen/get-tarball': 3.0.7
'@storybook/codemod': 7.0.2
'@storybook/core-common': 7.0.2
@@ -3699,7 +5065,7 @@ packages:
prompts: 2.4.2
puppeteer-core: 2.1.1
read-pkg-up: 7.0.1
- semver: 7.3.8
+ semver: 7.5.3
shelljs: 0.8.5
simple-update-notifier: 1.1.0
strip-json-comments: 3.1.1
@@ -3723,7 +5089,7 @@ packages:
dependencies:
'@babel/core': 7.21.4
'@babel/preset-env': 7.21.4(@babel/core@7.21.4)
- '@babel/types': 7.21.4
+ '@babel/types': 7.21.5
'@storybook/csf': 0.1.0
'@storybook/csf-tools': 7.0.2
'@storybook/node-logger': 7.0.2
@@ -3768,7 +5134,7 @@ packages:
dependencies:
'@storybook/node-logger': 7.0.2
'@storybook/types': 7.0.2
- '@types/node': 16.18.23
+ '@types/node': 16.18.38
'@types/pretty-hrtime': 1.0.1
chalk: 4.1.2
esbuild: 0.17.15
@@ -3809,7 +5175,7 @@ packages:
'@storybook/telemetry': 7.0.2
'@storybook/types': 7.0.2
'@types/detect-port': 1.3.2
- '@types/node': 16.18.23
+ '@types/node': 16.18.38
'@types/node-fetch': 2.6.3
'@types/pretty-hrtime': 1.0.1
'@types/semver': 7.3.13
@@ -3824,12 +5190,12 @@ packages:
globby: 11.1.0
ip: 2.0.0
lodash: 4.17.21
- node-fetch: 2.6.9
+ node-fetch: 2.6.12
open: 8.4.2
pretty-hrtime: 1.0.3
prompts: 2.4.2
read-pkg-up: 7.0.1
- semver: 7.3.8
+ semver: 7.5.3
serve-favicon: 2.5.0
telejson: 7.1.0
ts-dedent: 2.2.0
@@ -3856,9 +5222,9 @@ packages:
resolution: {integrity: sha512-sOp355yQSpYiMqNSopmFYWZkPPRJdGgy4tpxGGLxpOZMygK3j1wQ/WQtl2Z0h61KP0S0dl6hrs0pHQz3A/eVrw==}
dependencies:
'@babel/generator': 7.21.4
- '@babel/parser': 7.21.4
+ '@babel/parser': 7.21.9
'@babel/traverse': 7.21.4
- '@babel/types': 7.21.4
+ '@babel/types': 7.21.5
'@storybook/csf': 0.1.0
'@storybook/types': 7.0.2
fs-extra: 11.1.1
@@ -3975,7 +5341,7 @@ packages:
dependencies:
'@storybook/client-logger': 7.0.2
memoizerific: 1.11.3
- qs: 6.11.1
+ qs: 6.11.2
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
@@ -4019,7 +5385,7 @@ packages:
'@types/express': 4.17.17
file-system-cache: 2.0.2
- /@storybook/vue3@7.0.2(vue@3.2.47):
+ /@storybook/vue3@7.0.2(vue@3.3.1):
resolution: {integrity: sha512-0KDwhDYg9TQTB9awEcm8IeBMkxD6ZQFHuSHfE7TEWSx83H9pGb6CkVkAgjZlmfMiSY6gI160G4mJt2/tgTxbiA==}
engines: {node: '>=16.0.0'}
peerDependencies:
@@ -4032,7 +5398,7 @@ packages:
'@storybook/types': 7.0.2
ts-dedent: 2.2.0
type-fest: 2.19.0
- vue: 3.2.47
+ vue: 3.3.1
transitivePeerDependencies:
- supports-color
dev: true
@@ -4060,33 +5426,49 @@ packages:
/@types/babel__core@7.20.0:
resolution: {integrity: sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==}
dependencies:
- '@babel/parser': 7.21.4
- '@babel/types': 7.21.4
+ '@babel/parser': 7.22.6
+ '@babel/types': 7.22.5
'@types/babel__generator': 7.6.4
'@types/babel__template': 7.4.1
'@types/babel__traverse': 7.18.3
+ /@types/babel__core@7.20.1:
+ resolution: {integrity: sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==}
+ dependencies:
+ '@babel/parser': 7.22.6
+ '@babel/types': 7.22.5
+ '@types/babel__generator': 7.6.4
+ '@types/babel__template': 7.4.1
+ '@types/babel__traverse': 7.20.1
+ dev: true
+
/@types/babel__generator@7.6.4:
resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==}
dependencies:
- '@babel/types': 7.21.4
+ '@babel/types': 7.22.5
/@types/babel__template@7.4.1:
resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==}
dependencies:
- '@babel/parser': 7.21.4
- '@babel/types': 7.21.4
+ '@babel/parser': 7.22.6
+ '@babel/types': 7.22.5
/@types/babel__traverse@7.18.3:
resolution: {integrity: sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==}
dependencies:
- '@babel/types': 7.21.4
+ '@babel/types': 7.22.5
+
+ /@types/babel__traverse@7.20.1:
+ resolution: {integrity: sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==}
+ dependencies:
+ '@babel/types': 7.22.5
+ dev: true
/@types/body-parser@1.19.2:
resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==}
dependencies:
'@types/connect': 3.4.35
- '@types/node': 18.15.11
+ '@types/node': 20.3.3
/@types/chai-subset@1.3.3:
resolution: {integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==}
@@ -4101,12 +5483,12 @@ packages:
/@types/connect@3.4.35:
resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==}
dependencies:
- '@types/node': 18.15.11
+ '@types/node': 20.3.3
/@types/cors@2.8.13:
resolution: {integrity: sha512-RG8AStHlUiV5ysZQKq97copd2UmVYw3/pRMLefISZ3S1hK104Cwm7iLQ3fTKx+lsUH2CE8FlLaYeEA2LSeqYUA==}
dependencies:
- '@types/node': 18.15.11
+ '@types/node': 20.3.3
dev: true
/@types/detect-port@1.3.2:
@@ -4124,7 +5506,7 @@ packages:
/@types/duplexify@3.6.1:
resolution: {integrity: sha512-n0zoEj/fMdMOvqbHxmqnza/kXyoGgJmEpsXjpP+gEqE1Ye4yNqc7xWipKnUoMpWhMuzJQSfK2gMrwlElly7OGQ==}
dependencies:
- '@types/node': 18.15.11
+ '@types/node': 20.3.3
dev: true
/@types/ejs@3.1.2:
@@ -4141,7 +5523,7 @@ packages:
resolution: {integrity: sha512-Piet7dG2JBuDIfohBngQ3rCt7MgO9xCO4xIMKxBThCq5PNRB91IjlJ10eJVwfoNtvTErmxLzwBZ7rHZtbOMmFQ==}
dependencies:
'@types/estree': 0.0.51
- '@types/json-schema': 7.0.11
+ '@types/json-schema': 7.0.12
/@types/estree@0.0.39:
resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==}
@@ -4157,7 +5539,7 @@ packages:
/@types/express-serve-static-core@4.17.33:
resolution: {integrity: sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==}
dependencies:
- '@types/node': 18.15.11
+ '@types/node': 20.3.3
'@types/qs': 6.9.7
'@types/range-parser': 1.2.4
@@ -4185,7 +5567,7 @@ packages:
resolution: {integrity: sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==}
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 16.18.23
+ '@types/node': 20.3.3
/@types/google.maps@3.52.5:
resolution: {integrity: sha512-nhFo5xLsWnjr2zuL0V5khlpo2pPFXJzYdnuIt3hLBGgcvMkLfRqKP8TdKrjh0gUuWfm55Iex+3XU1v+oAyu1jw==}
@@ -4194,7 +5576,7 @@ packages:
/@types/graceful-fs@4.1.6:
resolution: {integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==}
dependencies:
- '@types/node': 18.15.11
+ '@types/node': 20.3.3
/@types/hogan.js@3.0.1:
resolution: {integrity: sha512-D03i/2OY7kGyMq9wdQ7oD8roE49z/ZCZThe/nbahtvuqCNZY9T2MfedOWyeBdbEpY2W8Gnh/dyJLdFtUCOkYbg==}
@@ -4213,8 +5595,8 @@ packages:
dependencies:
'@types/istanbul-lib-report': 3.0.0
- /@types/json-schema@7.0.11:
- resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==}
+ /@types/json-schema@7.0.12:
+ resolution: {integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==}
/@types/json5@0.0.29:
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
@@ -4265,7 +5647,7 @@ packages:
/@types/node-fetch@2.6.3:
resolution: {integrity: sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w==}
dependencies:
- '@types/node': 16.18.23
+ '@types/node': 16.18.38
form-data: 3.0.1
dev: false
@@ -4273,12 +5655,15 @@ packages:
resolution: {integrity: sha512-xefu+RBie4xWlK8hwAzGh3npDz/4VhF6icY/shU+zv/1fNn+ZVG7T7CRwe9LId9sAYRPxI+59QBPuKL3WpyGRg==}
dev: true
- /@types/node@16.18.23:
- resolution: {integrity: sha512-XAMpaw1s1+6zM+jn2tmw8MyaRDIJfXxqmIQIS0HfoGYPuf7dUWeiUKopwq13KFX9lEp1+THGtlaaYx39Nxr58g==}
+ /@types/node@16.18.38:
+ resolution: {integrity: sha512-6sfo1qTulpVbkxECP+AVrHV9OoJqhzCsfTNp5NIG+enM4HyM3HvZCO798WShIXBN0+QtDIcutJCjsVYnQP5rIQ==}
/@types/node@18.15.11:
resolution: {integrity: sha512-E5Kwq2n4SbMzQOn6wnmBjuK9ouqlURrcZDVfbo9ftDDTFt3nk7ZKK4GMOzoYgnpQJKcxwQw+lGaBvvlMo0qN/Q==}
+ /@types/node@20.3.3:
+ resolution: {integrity: sha512-wheIYdr4NYML61AjC8MKj/2jrR/kDQri/CIpVoZwldwhnIrD/j9jIU5bJ8yBKuB2VhpFV7Ab6G2XkBjv9r9Zzw==}
+
/@types/normalize-package-data@2.4.1:
resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==}
dev: false
@@ -4313,14 +5698,14 @@ packages:
/@types/resolve@1.17.1:
resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==}
dependencies:
- '@types/node': 18.15.11
+ '@types/node': 20.3.3
dev: false
/@types/rimraf@3.0.2:
resolution: {integrity: sha512-F3OznnSLAUxFrCEu/L5PY8+ny8DtcFRjx7fZZ9bycvXRi3KPTRS9HOitGZwvPg0juRhXFWIeKX58cnX5YqLohQ==}
dependencies:
'@types/glob': 8.1.0
- '@types/node': 18.15.11
+ '@types/node': 20.3.3
dev: true
/@types/scheduler@0.16.3:
@@ -4335,7 +5720,7 @@ packages:
resolution: {integrity: sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==}
dependencies:
'@types/mime': 3.0.1
- '@types/node': 18.15.11
+ '@types/node': 20.3.3
/@types/sinonjs__fake-timers@8.1.1:
resolution: {integrity: sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==}
@@ -4384,7 +5769,7 @@ packages:
dev: true
optional: true
- /@vitejs/plugin-vue@4.1.0(vite@4.2.1)(vue@3.2.47):
+ /@vitejs/plugin-vue@4.1.0(vite@4.2.1)(vue@3.3.1):
resolution: {integrity: sha512-++9JOAFdcXI3lyer9UKUV4rfoQ3T1RN8yDqoCLar86s0xQct5yblxAE+yWgRnU5/0FOlVCpTZpYSBV/bGWrSrQ==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
@@ -4392,7 +5777,7 @@ packages:
vue: ^3.2.25
dependencies:
vite: 4.2.1(@types/node@18.15.11)(sass@1.61.0)
- vue: 3.2.47
+ vue: 3.3.1
dev: true
/@vitest/expect@0.29.8:
@@ -4426,39 +5811,59 @@ packages:
pretty-format: 27.5.1
dev: true
- /@vue/compiler-core@3.2.47:
- resolution: {integrity: sha512-p4D7FDnQb7+YJmO2iPEv0SQNeNzcbHdGByJDsT4lynf63AFkOTFN07HsiRSvjGo0QrxR/o3d0hUyNCUnBU2Tig==}
+ /@vue/compiler-core@3.3.1:
+ resolution: {integrity: sha512-5le1qYSBgLWg2jdLrbydlhnPJkkzMw46UrRUvTnOKlfg6pThtm9ohhqBhNPHbr0RcM1MCbK5WZe/3Ghz0SZjpQ==}
dependencies:
- '@babel/parser': 7.21.4
- '@vue/shared': 3.2.47
+ '@babel/parser': 7.22.6
+ '@vue/shared': 3.3.1
estree-walker: 2.0.2
- source-map: 0.6.1
+ source-map-js: 1.0.2
+
+ /@vue/compiler-core@3.3.4:
+ resolution: {integrity: sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==}
+ dependencies:
+ '@babel/parser': 7.22.6
+ '@vue/shared': 3.3.4
+ estree-walker: 2.0.2
+ source-map-js: 1.0.2
+
+ /@vue/compiler-dom@3.3.1:
+ resolution: {integrity: sha512-VmgIsoLivCft3+oNc5KM7b9wd0nZxP/g2qilMwi1hJyGA624KWnNKHn4hzBQs4FpzydUVpNy+TWVT8KiRCh3MQ==}
+ dependencies:
+ '@vue/compiler-core': 3.3.1
+ '@vue/shared': 3.3.1
- /@vue/compiler-dom@3.2.47:
- resolution: {integrity: sha512-dBBnEHEPoftUiS03a4ggEig74J2YBZ2UIeyfpcRM2tavgMWo4bsEfgCGsu+uJIL/vax9S+JztH8NmQerUo7shQ==}
+ /@vue/compiler-dom@3.3.4:
+ resolution: {integrity: sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==}
dependencies:
- '@vue/compiler-core': 3.2.47
- '@vue/shared': 3.2.47
+ '@vue/compiler-core': 3.3.4
+ '@vue/shared': 3.3.4
- /@vue/compiler-sfc@3.2.47:
- resolution: {integrity: sha512-rog05W+2IFfxjMcFw10tM9+f7i/+FFpZJJ5XHX72NP9eC2uRD+42M3pYcQqDXVYoj74kHMSEdQ/WmCjt8JFksQ==}
+ /@vue/compiler-sfc@3.3.1:
+ resolution: {integrity: sha512-G+FPwBbXSLaA4+Ry5/bdD9Oda+sRslQcE9o6JSZaougRiT4OjVL0vtkbQHPrGRTULZV28OcrAjRfSZOSB0OTXQ==}
dependencies:
- '@babel/parser': 7.21.4
- '@vue/compiler-core': 3.2.47
- '@vue/compiler-dom': 3.2.47
- '@vue/compiler-ssr': 3.2.47
- '@vue/reactivity-transform': 3.2.47
- '@vue/shared': 3.2.47
+ '@babel/parser': 7.22.6
+ '@vue/compiler-core': 3.3.1
+ '@vue/compiler-dom': 3.3.1
+ '@vue/compiler-ssr': 3.3.1
+ '@vue/reactivity-transform': 3.3.1
+ '@vue/shared': 3.3.1
estree-walker: 2.0.2
- magic-string: 0.25.9
- postcss: 8.4.21
- source-map: 0.6.1
+ magic-string: 0.30.0
+ postcss: 8.4.23
+ source-map-js: 1.0.2
+
+ /@vue/compiler-ssr@3.3.1:
+ resolution: {integrity: sha512-QOQWGNCWuSeyKx4KvWSJlnIMGg+/2oCHgkFUYo7aJ+9Uaaz45yRgKQ+FNigy50NYBQIhpXn2e4OSR8GXh4knrQ==}
+ dependencies:
+ '@vue/compiler-dom': 3.3.1
+ '@vue/shared': 3.3.1
- /@vue/compiler-ssr@3.2.47:
- resolution: {integrity: sha512-wVXC+gszhulcMD8wpxMsqSOpvDZ6xKXSVWkf50Guf/S+28hTAXPDYRTbLQ3EDkOP5Xz/+SY37YiwDquKbJOgZw==}
+ /@vue/compiler-ssr@3.3.4:
+ resolution: {integrity: sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==}
dependencies:
- '@vue/compiler-dom': 3.2.47
- '@vue/shared': 3.2.47
+ '@vue/compiler-dom': 3.3.4
+ '@vue/shared': 3.3.4
/@vue/devtools-api@6.5.0:
resolution: {integrity: sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q==}
@@ -4486,58 +5891,70 @@ packages:
- supports-color
dev: true
- /@vue/reactivity-transform@3.2.47:
- resolution: {integrity: sha512-m8lGXw8rdnPVVIdIFhf0LeQ/ixyHkH5plYuS83yop5n7ggVJU+z5v0zecwEnX7fa7HNLBhh2qngJJkxpwEEmYA==}
+ /@vue/reactivity-transform@3.3.1:
+ resolution: {integrity: sha512-MkOrJauAGH4MNdxGW/PmrDegMyOGX0wGIdKUZJRBXOTpotDONg7/TPJe2QeGeBCow/5v9iOqZOWCfvmOWIaDMg==}
dependencies:
- '@babel/parser': 7.21.4
- '@vue/compiler-core': 3.2.47
- '@vue/shared': 3.2.47
+ '@babel/parser': 7.22.6
+ '@vue/compiler-core': 3.3.1
+ '@vue/shared': 3.3.1
estree-walker: 2.0.2
- magic-string: 0.25.9
+ magic-string: 0.30.0
- /@vue/reactivity@3.2.47:
- resolution: {integrity: sha512-7khqQ/75oyyg+N/e+iwV6lpy1f5wq759NdlS1fpAhFXa8VeAIKGgk2E/C4VF59lx5b+Ezs5fpp/5WsRYXQiKxQ==}
+ /@vue/reactivity@3.3.1:
+ resolution: {integrity: sha512-zCfmazOtyUdC1NS/EPiSYJ4RqojqmTAviJyBbyVvY8zAv5NhK44Yfw0E1tt+m5vz0ZO1ptI9jDKBr3MWIEkpgw==}
dependencies:
- '@vue/shared': 3.2.47
+ '@vue/shared': 3.3.1
- /@vue/runtime-core@3.2.47:
- resolution: {integrity: sha512-RZxbLQIRB/K0ev0K9FXhNbBzT32H9iRtYbaXb0ZIz2usLms/D55dJR2t6cIEUn6vyhS3ALNvNthI+Q95C+NOpA==}
+ /@vue/runtime-core@3.3.1:
+ resolution: {integrity: sha512-Ljb37LYafhQqKIasc0r32Cva8gIh6VeSMjlwO6V03tCjHd18gmjP0F4UD+8/a59sGTysAgA8Rb9lIC2DVxRz2Q==}
dependencies:
- '@vue/reactivity': 3.2.47
- '@vue/shared': 3.2.47
+ '@vue/reactivity': 3.3.1
+ '@vue/shared': 3.3.1
- /@vue/runtime-dom@3.2.47:
- resolution: {integrity: sha512-ArXrFTjS6TsDei4qwNvgrdmHtD930KgSKGhS5M+j8QxXrDJYLqYw4RRcDy1bz1m1wMmb6j+zGLifdVHtkXA7gA==}
+ /@vue/runtime-dom@3.3.1:
+ resolution: {integrity: sha512-NBjYbQPtMklb7lsJsM2Juv5Ygry6mvZP7PdH1GZqrzfLkvlplQT3qCtQMd/sib6yiy8t9m/Y4hVU7X9nzb9Oeg==}
+ dependencies:
+ '@vue/runtime-core': 3.3.1
+ '@vue/shared': 3.3.1
+ csstype: 3.1.2
+
+ /@vue/server-renderer@3.3.1(vue@3.3.1):
+ resolution: {integrity: sha512-sod8ggOwbkQXw3lBjfzrbdxRS9lw/lNHoMaXghHawNYowf+4WoaLWD5ouz6fPZadUqNKAsqK95p8DYb1vcVfPA==}
+ peerDependencies:
+ vue: 3.3.1
dependencies:
- '@vue/runtime-core': 3.2.47
- '@vue/shared': 3.2.47
- csstype: 2.6.21
+ '@vue/compiler-ssr': 3.3.1
+ '@vue/shared': 3.3.1
+ vue: 3.3.1
- /@vue/server-renderer@3.2.47(vue@3.2.47):
- resolution: {integrity: sha512-dN9gc1i8EvmP9RCzvneONXsKfBRgqFeFZLurmHOveL7oH6HiFXJw5OGu294n1nHc/HMgTy6LulU/tv5/A7f/LA==}
+ /@vue/server-renderer@3.3.4(vue@3.3.1):
+ resolution: {integrity: sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ==}
peerDependencies:
- vue: 3.2.47
+ vue: 3.3.4
dependencies:
- '@vue/compiler-ssr': 3.2.47
- '@vue/shared': 3.2.47
- vue: 3.2.47
+ '@vue/compiler-ssr': 3.3.4
+ '@vue/shared': 3.3.4
+ vue: 3.3.1
- /@vue/shared@3.2.47:
- resolution: {integrity: sha512-BHGyyGN3Q97EZx0taMQ+OLNuZcW3d37ZEVmEAyeoA9ERdGvm9Irc/0Fua8SNyOtV1w6BS4q25wbMzJujO9HIfQ==}
+ /@vue/shared@3.3.1:
+ resolution: {integrity: sha512-ybDBtQ+479HL/bkeIOIAwgpeAEACzztkvulJLbK3JMFuTOv4qDivmV3AIsR8RHYJ+RD9tQxcHWBsX4GqEcYrfw==}
- /@vue/test-utils@2.3.2(vue@3.2.47):
+ /@vue/shared@3.3.4:
+ resolution: {integrity: sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==}
+
+ /@vue/test-utils@2.3.2(vue@3.3.1):
resolution: {integrity: sha512-hJnVaYhbrIm0yBS0+e1Y0Sj85cMyAi+PAbK4JHqMRUZ6S622Goa+G7QzkRSyvCteG8wop7tipuEbHoZo26wsSA==}
peerDependencies:
vue: ^3.0.1
dependencies:
js-beautify: 1.14.6
- vue: 3.2.47
+ vue: 3.3.1
optionalDependencies:
- '@vue/compiler-dom': 3.2.47
- '@vue/server-renderer': 3.2.47(vue@3.2.47)
+ '@vue/compiler-dom': 3.3.4
+ '@vue/server-renderer': 3.3.4(vue@3.3.1)
dev: true
- /@vue/vue3-jest@29.2.3(@babel/core@7.21.4)(babel-jest@29.5.0)(jest@29.5.0)(vue@3.2.47):
+ /@vue/vue3-jest@29.2.3(@babel/core@7.22.6)(babel-jest@29.6.0)(jest@29.5.0)(typescript@5.1.6)(vue@3.3.1):
resolution: {integrity: sha512-wbit0rGgy9ARUBtc5dZ6PGCrxazCPs5pZ6ycB0qYMoEPmkRj8lIVUfJmTz03ryIAeVQOcTKnEWdcqgrTErl3vg==}
engines: {node: '>10'}
peerDependencies:
@@ -4550,21 +5967,22 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.21.4
- '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.21.4)
- babel-jest: 29.5.0(@babel/core@7.21.4)
+ '@babel/core': 7.22.6
+ '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.22.6)
+ babel-jest: 29.6.0(@babel/core@7.22.6)
chalk: 2.4.2
convert-source-map: 1.9.0
css-tree: 2.3.1
jest: 29.5.0
source-map: 0.5.6
tsconfig: 7.0.0
- vue: 3.2.47
+ typescript: 5.1.6
+ vue: 3.3.1
transitivePeerDependencies:
- supports-color
dev: true
- /@vuetify/loader-shared@1.7.1(vue@3.2.47)(vuetify@3.1.13):
+ /@vuetify/loader-shared@1.7.1(vue@3.3.1)(vuetify@3.3.5):
resolution: {integrity: sha512-kLUvuAed6RCvkeeTNJzuy14pqnkur8lTuner7v7pNE/kVhPR97TuyXwBSBMR1cJeiLiOfu6SF5XlCYbXByEx1g==}
peerDependencies:
vue: ^3.0.0
@@ -4572,8 +5990,8 @@ packages:
dependencies:
find-cache-dir: 3.3.2
upath: 2.0.1
- vue: 3.2.47
- vuetify: 3.1.13(vite-plugin-vuetify@1.0.2)(vue-i18n@9.2.2)(vue@3.2.47)
+ vue: 3.3.1
+ vuetify: 3.3.5(typescript@5.1.6)(vite-plugin-vuetify@1.0.2)(vue-i18n@9.2.2)(vue@3.3.1)
/@webassemblyjs/ast@1.11.1:
resolution: {integrity: sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==}
@@ -4679,7 +6097,7 @@ packages:
esbuild: '>=0.10.0'
dependencies:
esbuild: 0.17.15
- tslib: 2.5.0
+ tslib: 2.6.0
dev: false
/abbrev@1.1.1:
@@ -4706,6 +6124,14 @@ packages:
dependencies:
acorn: 8.8.2
+ /acorn-jsx@5.3.2(acorn@8.10.0):
+ resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
+ peerDependencies:
+ acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
+ dependencies:
+ acorn: 8.10.0
+ dev: true
+
/acorn-jsx@5.3.2(acorn@8.8.2):
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
@@ -4719,6 +6145,11 @@ packages:
engines: {node: '>=0.4.0'}
dev: true
+ /acorn@8.10.0:
+ resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+
/acorn@8.8.2:
resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==}
engines: {node: '>=0.4.0'}
@@ -4839,11 +6270,11 @@ packages:
dependencies:
type-fest: 0.21.3
- /ansi-escapes@5.0.0:
- resolution: {integrity: sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==}
- engines: {node: '>=12'}
+ /ansi-escapes@6.2.0:
+ resolution: {integrity: sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==}
+ engines: {node: '>=14.16'}
dependencies:
- type-fest: 1.4.0
+ type-fest: 3.12.0
dev: true
/ansi-regex@5.0.1:
@@ -4977,7 +6408,7 @@ packages:
call-bind: 1.0.2
define-properties: 1.2.0
es-abstract: 1.21.2
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.2.1
is-string: 1.0.7
dev: true
@@ -5013,7 +6444,7 @@ packages:
define-properties: 1.2.0
es-abstract: 1.21.2
es-shim-unscopables: 1.0.0
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.2.1
dev: true
/arrify@2.0.1:
@@ -5056,21 +6487,21 @@ packages:
resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==}
engines: {node: '>=4'}
dependencies:
- tslib: 2.5.0
+ tslib: 2.6.0
dev: true
/ast-types@0.15.2:
resolution: {integrity: sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==}
engines: {node: '>=4'}
dependencies:
- tslib: 2.5.0
+ tslib: 2.6.0
dev: false
/ast-types@0.16.1:
resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==}
engines: {node: '>=4'}
dependencies:
- tslib: 2.5.0
+ tslib: 2.6.0
/astral-regex@2.0.0:
resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
@@ -5108,7 +6539,7 @@ packages:
resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==}
engines: {node: '>= 4.0.0'}
- /autoprefixer@10.4.14(postcss@8.4.21):
+ /autoprefixer@10.4.14(postcss@8.4.24):
resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
@@ -5120,7 +6551,7 @@ packages:
fraction.js: 4.2.0
normalize-range: 0.1.2
picocolors: 1.0.0
- postcss: 8.4.21
+ postcss: 8.4.24
postcss-value-parser: 4.2.0
dev: false
@@ -5172,6 +6603,24 @@ packages:
transitivePeerDependencies:
- supports-color
+ /babel-jest@29.6.0(@babel/core@7.22.6):
+ resolution: {integrity: sha512-Jj8Bq2yKsk11XLk06Nm8SdvYkAcecH+GuhxB8DnK5SncjHnJ88TQjSnGgE7jpajpnSvz9DZ6X8hXrDkD/6/TPQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ peerDependencies:
+ '@babel/core': ^7.8.0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@jest/transform': 29.6.0
+ '@types/babel__core': 7.20.1
+ babel-plugin-istanbul: 6.1.1
+ babel-preset-jest: 29.5.0(@babel/core@7.22.6)
+ chalk: 4.1.2
+ graceful-fs: 4.2.11
+ slash: 3.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/babel-plugin-istanbul@6.1.1:
resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==}
engines: {node: '>=8'}
@@ -5189,42 +6638,78 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@babel/template': 7.20.7
- '@babel/types': 7.21.4
+ '@babel/types': 7.22.5
'@types/babel__core': 7.20.0
'@types/babel__traverse': 7.18.3
- /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.21.4):
+ /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.22.6):
resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.21.4
- '@babel/core': 7.21.4
- '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.4)
+ '@babel/core': 7.22.6
+ '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.22.6)
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: false
- /babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.21.4):
+ /babel-plugin-polyfill-corejs2@0.4.4(@babel/core@7.22.6):
+ resolution: {integrity: sha512-9WeK9snM1BfxB38goUEv2FLnA6ja07UMfazFHzCXUb3NyDZAwfXvQiURQ6guTTMeHcOsdknULm1PDhs4uWtKyA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/compat-data': 7.22.6
+ '@babel/core': 7.22.6
+ '@babel/helper-define-polyfill-provider': 0.4.1(@babel/core@7.22.6)
+ '@nicolo-ribaudo/semver-v6': 6.3.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.22.6):
resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
- '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.4)
+ '@babel/core': 7.22.6
+ '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.22.6)
core-js-compat: 3.30.0
transitivePeerDependencies:
- supports-color
dev: false
- /babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.21.4):
+ /babel-plugin-polyfill-corejs3@0.8.2(@babel/core@7.22.6):
+ resolution: {integrity: sha512-Cid+Jv1BrY9ReW9lIfNlNpsI53N+FN7gE+f73zLAUbr9C52W4gKLWSByx47pfDJsEysojKArqOtOKZSVIIUTuQ==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-define-polyfill-provider': 0.4.1(@babel/core@7.22.6)
+ core-js-compat: 3.31.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.22.6):
resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
- '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.4)
+ '@babel/core': 7.22.6
+ '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.22.6)
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /babel-plugin-polyfill-regenerator@0.5.1(@babel/core@7.22.6):
+ resolution: {integrity: sha512-L8OyySuI6OSQ5hFy9O+7zFjyr4WhAfRjLIOkhQGYl+emwJkd/S4XXT1JpfrgR1jrQ1NcGiOh+yAdGlF8pnC3Jw==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/helper-define-polyfill-provider': 0.4.1(@babel/core@7.22.6)
transitivePeerDependencies:
- supports-color
dev: false
@@ -5248,6 +6733,26 @@ packages:
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.4)
'@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.21.4)
+ /babel-preset-current-node-syntax@1.0.1(@babel/core@7.22.6):
+ resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.22.6
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.6)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.22.6)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.6)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.6)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.6)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.6)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.6)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.6)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.6)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.6)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.6)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.6)
+ dev: true
+
/babel-preset-jest@29.5.0(@babel/core@7.21.4):
resolution: {integrity: sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -5258,6 +6763,17 @@ packages:
babel-plugin-jest-hoist: 29.5.0
babel-preset-current-node-syntax: 1.0.1(@babel/core@7.21.4)
+ /babel-preset-jest@29.5.0(@babel/core@7.22.6):
+ resolution: {integrity: sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.22.6
+ babel-plugin-jest-hoist: 29.5.0
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.6)
+ dev: true
+
/balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
@@ -5291,10 +6807,7 @@ packages:
/big-integer@1.6.51:
resolution: {integrity: sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==}
engines: {node: '>=0.6'}
-
- /big.js@5.2.2:
- resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
- dev: true
+ dev: false
/bignumber.js@9.1.1:
resolution: {integrity: sha512-pHm4LsMJ6lzgNGVfZHjMoO8sdoRhOzOH4MLmY65Jg70bpxCKu5iOHNJyfF6OyvYw7t8Fpf35RuzUyqnQsj8Vig==}
@@ -5304,13 +6817,6 @@ packages:
resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
engines: {node: '>=8'}
- /binary@0.3.0:
- resolution: {integrity: sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==}
- dependencies:
- buffers: 0.1.1
- chainsaw: 0.1.0
- dev: true
-
/bl@4.1.0:
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
dependencies:
@@ -5322,10 +6828,6 @@ packages:
resolution: {integrity: sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==}
dev: true
- /bluebird@3.4.7:
- resolution: {integrity: sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==}
- dev: true
-
/bluebird@3.7.2:
resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==}
dev: true
@@ -5430,6 +6932,23 @@ packages:
node-releases: 2.0.10
update-browserslist-db: 1.0.10(browserslist@4.21.5)
+ /browserslist@4.21.9:
+ resolution: {integrity: sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==}
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
+ hasBin: true
+ dependencies:
+ caniuse-lite: 1.0.30001512
+ electron-to-chromium: 1.4.450
+ node-releases: 2.0.12
+ update-browserslist-db: 1.0.11(browserslist@4.21.9)
+
+ /bs-logger@0.2.6:
+ resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==}
+ engines: {node: '>= 6'}
+ dependencies:
+ fast-json-stable-stringify: 2.1.0
+ dev: true
+
/bser@2.1.1:
resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
dependencies:
@@ -5445,22 +6964,12 @@ packages:
/buffer-from@1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
- /buffer-indexof-polyfill@1.0.2:
- resolution: {integrity: sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==}
- engines: {node: '>=0.10'}
- dev: true
-
/buffer@5.7.1:
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
dependencies:
base64-js: 1.5.1
ieee754: 1.2.1
- /buffers@0.1.1:
- resolution: {integrity: sha512-9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ==}
- engines: {node: '>=0.2.0'}
- dev: true
-
/builtin-modules@3.3.0:
resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==}
engines: {node: '>=6'}
@@ -5479,30 +6988,22 @@ packages:
engines: {node: '>=8'}
dev: true
- /cacache@16.1.3:
- resolution: {integrity: sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
+ /cacache@17.1.3:
+ resolution: {integrity: sha512-jAdjGxmPxZh0IipMdR7fK/4sDSrHMLUV0+GvVUsjwyGNKHsh79kW/otg+GkbXwl6Uzvy9wsvHOX4nUoWldeZMg==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dependencies:
- '@npmcli/fs': 2.1.2
- '@npmcli/move-file': 2.0.1
- chownr: 2.0.0
- fs-minipass: 2.1.0
- glob: 8.1.0
- infer-owner: 1.0.4
+ '@npmcli/fs': 3.1.0
+ fs-minipass: 3.0.2
+ glob: 10.3.1
lru-cache: 7.18.3
- minipass: 3.3.6
+ minipass: 5.0.0
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.1
- tar: 6.1.13
- unique-filename: 2.0.1
- transitivePeerDependencies:
- - bluebird
+ ssri: 10.0.4
+ tar: 6.1.15
+ unique-filename: 3.0.0
dev: true
optional: true
@@ -5515,7 +7016,7 @@ packages:
resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
dependencies:
function-bind: 1.1.1
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.2.1
/call-me-maybe@1.0.2:
resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==}
@@ -5536,6 +7037,9 @@ packages:
/caniuse-lite@1.0.30001474:
resolution: {integrity: sha512-iaIZ8gVrWfemh5DG3T9/YqarVZoYf0r188IjaGwx68j4Pf0SGY6CQkmJUIE+NZHkkecQGohzXmBGEwWDr9aM3Q==}
+ /caniuse-lite@1.0.30001512:
+ resolution: {integrity: sha512-2S9nK0G/mE+jasCUsMPlARhRCts1ebcp2Ji8Y8PWi4NDE1iRdLCnEPHkEfeBrGC45L4isBx5ur3IQ6yTE2mRZw==}
+
/cardinal@2.1.1:
resolution: {integrity: sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==}
hasBin: true
@@ -5568,12 +7072,6 @@ packages:
type-detect: 4.0.8
dev: true
- /chainsaw@0.1.0:
- resolution: {integrity: sha512-75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ==}
- dependencies:
- traverse: 0.3.9
- dev: true
-
/chalk@2.4.2:
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
engines: {node: '>=4'}
@@ -5589,8 +7087,8 @@ packages:
ansi-styles: 4.3.0
supports-color: 7.2.0
- /chalk@5.2.0:
- resolution: {integrity: sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==}
+ /chalk@5.3.0:
+ resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==}
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
dev: true
@@ -5678,8 +7176,8 @@ packages:
restore-cursor: 3.1.0
dev: true
- /cli-spinners@2.8.0:
- resolution: {integrity: sha512-/eG5sJcvEIwxcdYM86k5tPwn0MUzkX5YY3eImTGpJOZgVe4SdTMY14vQpcxgBzJ0wXwAYrS8E+c3uHeK4JNyzQ==}
+ /cli-spinners@2.9.0:
+ resolution: {integrity: sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g==}
engines: {node: '>=6'}
dev: true
@@ -5725,6 +7223,7 @@ packages:
string-width: 4.2.3
strip-ansi: 6.0.1
wrap-ansi: 7.0.0
+ dev: false
/cliui@8.0.1:
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
@@ -5790,8 +7289,8 @@ packages:
color-string: 1.9.1
dev: true
- /colorette@2.0.19:
- resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==}
+ /colorette@2.0.20:
+ resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
/colors@1.0.3:
resolution: {integrity: sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==}
@@ -5811,8 +7310,8 @@ packages:
dependencies:
delayed-stream: 1.0.0
- /commander@10.0.0:
- resolution: {integrity: sha512-zS5PnTI22FIRM6ylNW8G4Ap0IEOyk62fhLSD0+uHRT9McRCLGpkVNvao4bjimpK/GShynyQkFFxHhwMcETmduA==}
+ /commander@10.0.1:
+ resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==}
engines: {node: '>=14'}
dev: true
@@ -5824,15 +7323,9 @@ packages:
engines: {node: '>= 6'}
dev: true
- /commander@5.1.0:
- resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==}
- engines: {node: '>= 6'}
- dev: true
-
/commander@6.2.1:
resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==}
engines: {node: '>= 6'}
- dev: false
/common-tags@1.8.2:
resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==}
@@ -5959,6 +7452,12 @@ packages:
browserslist: 4.21.5
dev: false
+ /core-js-compat@3.31.0:
+ resolution: {integrity: sha512-hM7YCu1cU6Opx7MXNu0NuumM0ezNeAeRKadixyiQELWY3vT3De9S4J5ZBMraWV2vZnrE1Cirl0GtFtDtMUXzPw==}
+ dependencies:
+ browserslist: 4.21.9
+ dev: false
+
/core-js@3.30.0:
resolution: {integrity: sha512-hQotSSARoNh1mYPi9O2YaWeiq/cEB95kOrFb4NCrO4RIFt1qqNpKsaE+vy/L3oiqvND5cThqXzUU3r9F7Efztg==}
requiresBuild: true
@@ -6036,24 +7535,24 @@ packages:
resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==}
engines: {node: '>=8'}
- /css-blank-pseudo@5.0.2(postcss@8.4.21):
+ /css-blank-pseudo@5.0.2(postcss@8.4.24):
resolution: {integrity: sha512-aCU4AZ7uEcVSUzagTlA9pHciz7aWPKA/YzrEkpdSopJ2pvhIxiQ5sYeMz1/KByxlIo4XBdvMNJAVKMg/GRnhfw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.24
postcss-selector-parser: 6.0.11
dev: false
- /css-has-pseudo@5.0.2(postcss@8.4.21):
+ /css-has-pseudo@5.0.2(postcss@8.4.24):
resolution: {integrity: sha512-q+U+4QdwwB7T9VEW/LyO6CFrLAeLqOykC5mDqJXc7aKZAhDbq7BvGT13VGJe+IwBfdN2o3Xdw2kJ5IxwV1Sc9Q==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
'@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.11)
- postcss: 8.4.21
+ postcss: 8.4.24
postcss-selector-parser: 6.0.11
postcss-value-parser: 4.2.0
dev: false
@@ -6075,13 +7574,13 @@ packages:
webpack: 5.78.0(esbuild@0.17.15)
dev: true
- /css-prefers-color-scheme@8.0.2(postcss@8.4.21):
+ /css-prefers-color-scheme@8.0.2(postcss@8.4.24):
resolution: {integrity: sha512-OvFghizHJ45x7nsJJUSYLyQNTzsCU8yWjxAc/nhPQg1pbs18LMoET8N3kOweFDPy0JV0OSXN2iqRFhPBHYOeMA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.24
dev: false
/css-tree@2.3.1:
@@ -6101,18 +7600,14 @@ packages:
engines: {node: '>=4'}
hasBin: true
- /csstype@2.6.21:
- resolution: {integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==}
-
/csstype@3.1.2:
resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==}
- dev: true
- /csv-parse@5.3.6:
- resolution: {integrity: sha512-WI330GjCuEioK/ii8HM2YE/eV+ynpeLvU+RXw4R8bRU8R0laK5zO3fDsc4gH8s472e3Ga38rbIjCAiQh+tEHkw==}
+ /csv-parse@5.4.0:
+ resolution: {integrity: sha512-JiQosUWiOFgp4hQn0an+SBoV9IKdqzhROM0iiN4LB7UpfJBlsSJlWl9nq4zGgxgMAzHJ6V4t29VAVD+3+2NJAg==}
dev: true
- /cypress-dotenv@2.0.0(cypress@12.9.0)(dotenv@16.0.3):
+ /cypress-dotenv@2.0.0(cypress@12.10.0)(dotenv@16.0.3):
resolution: {integrity: sha512-MHCkWuTU51n/Q6LT2FgjNVZx/OmnrP3Jve7TUGZvSbjgGOpBOVZTbm3tomjvn+2S6HhloRXSAOmT5fY9pvWkpQ==}
engines: {node: '>=10.x'}
peerDependencies:
@@ -6120,7 +7615,7 @@ packages:
dotenv: '>= 10.x'
dependencies:
camelcase: 6.3.0
- cypress: 12.9.0
+ cypress: 12.10.0
dotenv: 16.0.3
dotenv-parse-variables: 2.0.0
lodash.clonedeep: 4.5.0
@@ -6128,8 +7623,8 @@ packages:
- supports-color
dev: true
- /cypress@12.9.0:
- resolution: {integrity: sha512-Ofe09LbHKgSqX89Iy1xen2WvpgbvNxDzsWx3mgU1mfILouELeXYGwIib3ItCwoRrRifoQwcBFmY54Vs0zw7QCg==}
+ /cypress@12.10.0:
+ resolution: {integrity: sha512-Y0wPc221xKKW1/4iAFCphkrG2jNR4MjOne3iGn4mcuCaE7Y5EtXL83N8BzRsAht7GYfWVjJ/UeTqEdDKHz39HQ==}
engines: {node: ^14.0.0 || ^16.0.0 || >=18.0.0}
hasBin: true
requiresBuild: true
@@ -6148,7 +7643,7 @@ packages:
check-more-types: 2.24.0
cli-cursor: 3.1.0
cli-table3: 0.6.3
- commander: 5.1.0
+ commander: 6.2.1
common-tags: 1.8.2
dayjs: 1.11.7
debug: 4.3.4(supports-color@8.1.1)
@@ -6259,7 +7754,7 @@ packages:
dependencies:
call-bind: 1.0.2
es-get-iterator: 1.1.3
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.2.1
is-arguments: 1.1.1
is-array-buffer: 3.0.2
is-date-object: 1.0.5
@@ -6323,14 +7818,14 @@ packages:
resolution: {integrity: sha512-+uO4+qr7msjNNWKYPHqN/3+Dx3NFkmIzayk2L1MyZQlvgZb/J1A0fo410dpKrN2SnqFjt8n4JL8fDJE0wIgjFQ==}
dev: false
- /degenerator@3.0.3:
- resolution: {integrity: sha512-FTq/qYMeBJACu1gHcXJvzsRBTK6aw5zWCYbEnIOyamOt5UJufWJRQ5XfDb6OuayfJWvmWAHgcZyt43vm/hbj7g==}
+ /degenerator@3.0.4:
+ resolution: {integrity: sha512-Z66uPeBfHZAHVmue3HPfyKu2Q0rC2cRxbTOsvmU/po5fvvcx27W4mIu9n0PUlQih4oUYvcG1BsbtVv8x7KDOSw==}
engines: {node: '>= 6'}
dependencies:
ast-types: 0.13.4
escodegen: 1.14.3
esprima: 4.0.1
- vm2: 3.9.15
+ vm2: 3.9.19
dev: true
/del@6.1.1:
@@ -6447,12 +7942,6 @@ packages:
resolution: {integrity: sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==}
engines: {node: '>=12'}
- /duplexer2@0.1.4:
- resolution: {integrity: sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==}
- dependencies:
- readable-stream: 2.3.8
- dev: true
-
/duplexify@3.7.1:
resolution: {integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==}
dependencies:
@@ -6511,6 +8000,9 @@ packages:
/electron-to-chromium@1.4.355:
resolution: {integrity: sha512-056hxzEE4l667YeOccgjhRr5fTiwZ6EIJ4FpzGps4k3YcS8iAhiaBYUBrv5E2LDQJsussscv9EEUwAYKnv+ZKg==}
+ /electron-to-chromium@1.4.450:
+ resolution: {integrity: sha512-BLG5HxSELlrMx7dJ2s+8SFlsCtJp37Zpk2VAxyC6CZtbc+9AJeZHfYHbrlSgdXp6saQ8StMqOTEDaBKgA7u1sw==}
+
/emittery@0.13.1:
resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==}
engines: {node: '>=12'}
@@ -6526,11 +8018,6 @@ packages:
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
dev: true
- /emojis-list@3.0.0:
- resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==}
- engines: {node: '>= 4'}
- dev: true
-
/enabled@2.0.0:
resolution: {integrity: sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==}
dev: true
@@ -6607,7 +8094,7 @@ packages:
es-set-tostringtag: 2.0.1
es-to-primitive: 1.2.1
function.prototype.name: 1.1.5
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.2.1
get-symbol-description: 1.0.0
globalthis: 1.0.3
gopd: 1.0.1
@@ -6640,7 +8127,7 @@ packages:
resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==}
dependencies:
call-bind: 1.0.2
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.2.1
has-symbols: 1.0.3
is-arguments: 1.1.1
is-map: 2.0.2
@@ -6657,7 +8144,7 @@ packages:
resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==}
engines: {node: '>= 0.4'}
dependencies:
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.2.1
has: 1.0.3
has-tostringtag: 1.0.0
@@ -6774,6 +8261,15 @@ packages:
semver: 6.3.0
dev: true
+ /eslint-config-prettier@8.8.0(eslint@8.37.0):
+ resolution: {integrity: sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==}
+ hasBin: true
+ peerDependencies:
+ eslint: '>=7.0.0'
+ dependencies:
+ eslint: 8.37.0
+ dev: true
+
/eslint-import-resolver-custom-alias@1.3.0(eslint-plugin-import@2.27.5):
resolution: {integrity: sha512-9rrpduF6/SZHFXrJgjeA+edJek6xulplYfo/UJvLPrY38O9UY00rAq76dHRnZ289yftc5NIfx3THi0IILRQ3dg==}
peerDependencies:
@@ -6976,6 +8472,11 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
+ /eslint-visitor-keys@3.4.1:
+ resolution: {integrity: sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dev: true
+
/eslint@8.37.0:
resolution: {integrity: sha512-NU3Ps9nI05GUoVMxcZx1J8CNR6xOvUT4jAUMH5+z8lpp3aEdPVCImKw6PWG4PY+Vfkpr+jvMpxs/qoE7wq0sPw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -7034,6 +8535,15 @@ packages:
eslint-visitor-keys: 3.4.0
dev: true
+ /espree@9.6.0:
+ resolution: {integrity: sha512-1FH/IiruXZ84tpUlm0aCUEwMl2Ho5ilqVh0VvQXw+byAz/4SAciyHLlfmL5WYqsvD38oymdUwBss0LtK8m4s/A==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dependencies:
+ acorn: 8.10.0
+ acorn-jsx: 5.3.2(acorn@8.10.0)
+ eslint-visitor-keys: 3.4.1
+ dev: true
+
/esprima@4.0.1:
resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
engines: {node: '>=4'}
@@ -7168,9 +8678,9 @@ packages:
openapi3-ts: 3.2.0
promise-breaker: 6.0.0
pump: 3.0.0
- qs: 6.11.1
+ qs: 6.11.2
raw-body: 2.5.2
- semver: 7.3.8
+ semver: 7.5.3
transitivePeerDependencies:
- supports-color
dev: true
@@ -7189,6 +8699,11 @@ packages:
jest-message-util: 29.5.0
jest-util: 29.5.0
+ /exponential-backoff@3.1.1:
+ resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==}
+ dev: true
+ optional: true
+
/express@4.18.2:
resolution: {integrity: sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==}
engines: {node: '>= 0.10.0'}
@@ -7460,8 +8975,8 @@ packages:
node-forge: 1.3.1
uuid: 9.0.0
optionalDependencies:
- '@google-cloud/firestore': 6.5.0
- '@google-cloud/storage': 6.9.5
+ '@google-cloud/firestore': 6.6.1
+ '@google-cloud/storage': 6.11.0
transitivePeerDependencies:
- encoding
- supports-color
@@ -7485,12 +9000,12 @@ packages:
- supports-color
dev: true
- /firebase-tools@11.25.3:
- resolution: {integrity: sha512-gcM7O9mjhDs8UjtAJjHxUuSX2ZHufXJU7+GheXTlZVA+Uj5RRoAt6AU/FmtcqQtfhr2TNwADebgiVFzVlkLoUg==}
- engines: {node: ^14.18.0 || >=16.4.0}
+ /firebase-tools@12.4.2:
+ resolution: {integrity: sha512-4oYbIq+htEi/sXRV1RN8Q/3r27+/VMcOw1G795KMEXgFluw9adWEegbobKyOMqN7VKF+M0jMeFUiGbWwlNUv8w==}
+ engines: {node: '>=16.13.0 || >=18.0.0'}
hasBin: true
dependencies:
- '@google-cloud/pubsub': 3.4.1
+ '@google-cloud/pubsub': 3.7.1
abort-controller: 3.0.0
ajv: 6.12.6
archiver: 5.3.1
@@ -7499,13 +9014,13 @@ packages:
chokidar: 3.5.3
cjson: 0.3.3
cli-table: 0.3.11
- colorette: 2.0.19
+ colorette: 2.0.20
commander: 4.1.1
configstore: 5.0.1
cors: 2.8.5
cross-env: 5.2.1
cross-spawn: 7.0.3
- csv-parse: 5.3.6
+ csv-parse: 5.4.0
exegesis: 4.1.1
exegesis-express: 4.0.0
express: 4.18.2
@@ -7521,11 +9036,11 @@ packages:
libsodium-wrappers: 0.7.11
lodash: 4.17.21
marked: 4.3.0
- marked-terminal: 5.1.1(marked@4.3.0)
+ marked-terminal: 5.2.0(marked@4.3.0)
mime: 2.6.0
minimatch: 3.1.2
morgan: 1.10.0
- node-fetch: 2.6.9
+ node-fetch: 2.6.12
open: 6.4.0
ora: 5.4.1
p-limit: 3.1.0
@@ -7537,22 +9052,20 @@ packages:
rimraf: 3.0.2
semver: 5.7.1
stream-chain: 2.2.5
- stream-json: 1.7.5
+ stream-json: 1.8.0
strip-ansi: 6.0.1
superstatic: 9.0.3
- tar: 6.1.13
+ tar: 6.1.15
tcp-port-used: 1.0.2
tmp: 0.2.1
triple-beam: 1.3.0
universal-analytics: 0.5.3
- unzipper: 0.10.11
update-notifier-cjs: 5.1.6
uuid: 8.3.2
- winston: 3.8.2
+ winston: 3.9.0
winston-transport: 4.5.0
ws: 7.5.9
transitivePeerDependencies:
- - bluebird
- bufferutil
- encoding
- supports-color
@@ -7622,6 +9135,15 @@ packages:
dependencies:
is-callable: 1.2.7
+ /foreground-child@3.1.1:
+ resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==}
+ engines: {node: '>=14'}
+ dependencies:
+ cross-spawn: 7.0.3
+ signal-exit: 4.0.2
+ dev: true
+ optional: true
+
/forever-agent@0.6.1:
resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==}
dev: true
@@ -7709,6 +9231,14 @@ packages:
dependencies:
minipass: 3.3.6
+ /fs-minipass@3.0.2:
+ resolution: {integrity: sha512-2GAfyfoaCDRrM6jaOS3UsBts8yJ55VioXdWcOL7dK9zdAuKT71+WBA4ifnNYqVjYv+4SsPxjK0JT4yIIn4cA/g==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ dependencies:
+ minipass: 5.0.0
+ dev: true
+ optional: true
+
/fs.realpath@1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
@@ -7719,16 +9249,6 @@ packages:
requiresBuild: true
optional: true
- /fstream@1.0.12:
- resolution: {integrity: sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==}
- engines: {node: '>=0.6'}
- dependencies:
- graceful-fs: 4.2.11
- inherits: 2.0.4
- mkdirp: 0.5.6
- rimraf: 2.7.1
- dev: true
-
/ftp@0.3.10:
resolution: {integrity: sha512-faFVML1aBx2UoDStmLwv2Wptt4vw5x03xxX172nhA5Y5HBshW5JweqQ2W4xL4dezQTG8inJsuYcpPHHU3X5OTQ==}
engines: {node: '>=0.8.0'}
@@ -7794,20 +9314,20 @@ packages:
extend: 3.0.2
https-proxy-agent: 5.0.1
is-stream: 2.0.1
- node-fetch: 2.6.9
+ node-fetch: 2.6.12
transitivePeerDependencies:
- encoding
- supports-color
dev: true
- /gaxios@5.1.0:
- resolution: {integrity: sha512-aezGIjb+/VfsJtIcHGcBSerNEDdfdHeMros+RbYbGpmonKWQCOVOes0LVZhn1lDtIgq55qq0HaxymIoae3Fl/A==}
+ /gaxios@5.1.2:
+ resolution: {integrity: sha512-mPyw3qQq6qoHWTe27CrzhSj7XYKVStTGrpP92a91FfogBWOd9BMW8GT5yS5WhEYGw02AgB1fVQVSAO+JKiQP0w==}
engines: {node: '>=12'}
dependencies:
extend: 3.0.2
https-proxy-agent: 5.0.1
is-stream: 2.0.1
- node-fetch: 2.6.9
+ node-fetch: 2.6.12
transitivePeerDependencies:
- encoding
- supports-color
@@ -7824,11 +9344,11 @@ packages:
- supports-color
dev: true
- /gcp-metadata@5.2.0:
- resolution: {integrity: sha512-aFhhvvNycky2QyhG+dcfEdHBF0FRbYcf39s6WNHUDysKSrbJ5vuFbjydxBcmewtXeV248GP8dWT3ByPNxsyHCw==}
+ /gcp-metadata@5.3.0:
+ resolution: {integrity: sha512-FNTkdNEnBdlqF2oatizolQqNANMrcqJt6AAYt99B3y1aLLC8Hc5IOBb+ZnnzllodEEf6xMBp6wRcBbc16fa65w==}
engines: {node: '>=12'}
dependencies:
- gaxios: 5.1.0
+ gaxios: 5.1.2
json-bigint: 1.0.0
transitivePeerDependencies:
- encoding
@@ -7847,11 +9367,12 @@ packages:
resolution: {integrity: sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==}
dev: true
- /get-intrinsic@1.2.0:
- resolution: {integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==}
+ /get-intrinsic@1.2.1:
+ resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==}
dependencies:
function-bind: 1.1.1
has: 1.0.3
+ has-proto: 1.0.1
has-symbols: 1.0.3
/get-npm-tarball-url@2.0.3:
@@ -7893,7 +9414,7 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.2.1
/get-uri@3.0.2:
resolution: {integrity: sha512-+5s0SJbGoyiJTZZ2JTpFPLMPSch72KEqGOTvQsBqg0RBWvwhWUSYZFAtz3TPW0GXJuLBJPts1E241iHg+VRfhg==}
@@ -7925,13 +9446,13 @@ packages:
resolution: {integrity: sha512-HsLoS07HiQ5oqvObOI+Qb2tyZH4Gj5nYGfF9qQcZNrPw+uEFhdXtgJr01aO2pWadGHucajYDLxxbtQkm97ON2A==}
hasBin: true
dependencies:
- colorette: 2.0.19
+ colorette: 2.0.20
defu: 6.1.2
https-proxy-agent: 5.0.1
mri: 1.2.0
node-fetch-native: 1.1.0
pathe: 1.1.0
- tar: 6.1.13
+ tar: 6.1.15
transitivePeerDependencies:
- supports-color
dev: false
@@ -7977,6 +9498,19 @@ packages:
/glob-to-regexp@0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
+ /glob@10.3.1:
+ resolution: {integrity: sha512-9BKYcEeIs7QwlCYs+Y3GBvqAMISufUS0i2ELd11zpZjxI5V9iyRj0HgzB5/cLf2NY4vcYBTYzJ7GIui7j/4DOw==}
+ engines: {node: '>=16 || 14 >=14.17'}
+ hasBin: true
+ dependencies:
+ foreground-child: 3.1.1
+ jackspeak: 2.2.1
+ minimatch: 9.0.2
+ minipass: 5.0.0
+ path-scurry: 1.10.0
+ dev: true
+ optional: true
+
/glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
dependencies:
@@ -8051,16 +9585,16 @@ packages:
- supports-color
dev: true
- /google-auth-library@8.7.0:
- resolution: {integrity: sha512-1M0NG5VDIvJZEnstHbRdckLZESoJwguinwN8Dhae0j2ZKIQFIV63zxm6Fo6nM4xkgqUr2bbMtV5Dgo+Hy6oo0Q==}
+ /google-auth-library@8.9.0:
+ resolution: {integrity: sha512-f7aQCJODJFmYWN6PeNKzgvy9LI2tYmXnzpNDHEjG5sDNPgGb2FXQyTBnXeSH+PAtpKESFD+LmHw3Ox3mN7e1Fg==}
engines: {node: '>=12'}
dependencies:
arrify: 2.0.1
base64-js: 1.5.1
ecdsa-sig-formatter: 1.0.11
fast-text-encoding: 1.0.6
- gaxios: 5.1.0
- gcp-metadata: 5.2.0
+ gaxios: 5.1.2
+ gcp-metadata: 5.3.0
gtoken: 6.1.2
jws: 4.0.0
lru-cache: 6.0.0
@@ -8074,18 +9608,18 @@ packages:
engines: {node: '>=12'}
hasBin: true
dependencies:
- '@grpc/grpc-js': 1.8.13
- '@grpc/proto-loader': 0.7.6
+ '@grpc/grpc-js': 1.8.17
+ '@grpc/proto-loader': 0.7.7
'@types/long': 4.0.2
'@types/rimraf': 3.0.2
abort-controller: 3.0.0
duplexify: 4.1.2
fast-text-encoding: 1.0.6
- google-auth-library: 8.7.0
+ google-auth-library: 8.9.0
is-stream-ended: 0.1.4
- node-fetch: 2.6.9
+ node-fetch: 2.6.12
object-hash: 3.0.0
- proto3-json-serializer: 1.1.0
+ proto3-json-serializer: 1.1.1
protobufjs: 7.2.3
protobufjs-cli: 1.1.1(protobufjs@7.2.3)
retry-request: 5.0.2
@@ -8113,7 +9647,7 @@ packages:
/gopd@1.0.1:
resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
dependencies:
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.2.1
/graceful-fs@4.2.10:
resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==}
@@ -8142,7 +9676,7 @@ packages:
resolution: {integrity: sha512-4ccGpzz7YAr7lxrT2neugmXQ3hP9ho2gcaityLVkiUecAiwiy60Ii8gRbZeOsXV19fYaRjgBSshs8kXw+NKCPQ==}
engines: {node: '>=12.0.0'}
dependencies:
- gaxios: 5.1.0
+ gaxios: 5.1.2
google-p12-pem: 4.0.1
jws: 4.0.0
transitivePeerDependencies:
@@ -8202,7 +9736,7 @@ packages:
/has-property-descriptors@1.0.0:
resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==}
dependencies:
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.2.1
/has-proto@1.0.1:
resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
@@ -8232,8 +9766,8 @@ packages:
dependencies:
function-bind: 1.1.1
- /heap-js@2.2.0:
- resolution: {integrity: sha512-G3uM72G9F/zo9Hph/T7m4ZZVlVu5bx2f5CiCS78TBHz2mNIXnB5KRdEEYssXZJ7ldLDqID29bZ1D5ezCKQD2Zw==}
+ /heap-js@2.3.0:
+ resolution: {integrity: sha512-E5303mzwQ+4j/n2J0rDvEPBN7GKjhis10oHiYOgjxsmxYgqG++hz9NyLLOXttzH8as/DyiBHYpUrJTZWYaMo8Q==}
engines: {node: '>=10.0.0'}
dev: true
@@ -8420,11 +9954,6 @@ packages:
resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
engines: {node: '>=8'}
- /infer-owner@1.0.4:
- resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==}
- dev: true
- optional: true
-
/inflight@1.0.6:
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
dependencies:
@@ -8456,15 +9985,15 @@ packages:
mute-stream: 0.0.8
ora: 5.4.1
run-async: 2.4.1
- rxjs: 7.8.0
+ rxjs: 7.8.1
string-width: 4.2.3
strip-ansi: 6.0.1
through: 2.3.8
wrap-ansi: 7.0.0
dev: true
- /install-artifact-from-github@1.3.2:
- resolution: {integrity: sha512-yCFcLvqk0yQdxx0uJz4t9Z3adDMLAYrcGYv546uRXCSvxE+GqNYhhz/KmrGcUKGI/gVLR9n/e/zM9jX/+ASMJQ==}
+ /install-artifact-from-github@1.3.3:
+ resolution: {integrity: sha512-x79SL0d8WOi1ZjXSTUqqs0GPQZ92YArJAN9O46wgU9wdH2U9ecyyhB9YGDbPe2OLV4ptmt6AZYRQZ2GydQZosQ==}
hasBin: true
dev: true
optional: true
@@ -8494,13 +10023,14 @@ packages:
resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==}
engines: {node: '>= 0.4'}
dependencies:
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.2.1
has: 1.0.3
side-channel: 1.0.4
/interpret@1.4.0:
resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==}
engines: {node: '>= 0.10'}
+ dev: false
/ip-regex@4.3.0:
resolution: {integrity: sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q==}
@@ -8534,7 +10064,7 @@ packages:
resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==}
dependencies:
call-bind: 1.0.2
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.2.1
is-typed-array: 1.1.10
/is-arrayish@0.2.1:
@@ -8822,7 +10352,7 @@ packages:
resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==}
dependencies:
call-bind: 1.0.2
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.2.1
dev: true
/is-whitespace@0.3.0:
@@ -8877,7 +10407,7 @@ packages:
/isomorphic-fetch@3.0.0:
resolution: {integrity: sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==}
dependencies:
- node-fetch: 2.6.9
+ node-fetch: 2.6.12
whatwg-fetch: 3.6.2
transitivePeerDependencies:
- encoding
@@ -8886,7 +10416,7 @@ packages:
/isomorphic-unfetch@3.1.0:
resolution: {integrity: sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==}
dependencies:
- node-fetch: 2.6.9
+ node-fetch: 2.6.12
unfetch: 4.2.0
transitivePeerDependencies:
- encoding
@@ -8905,7 +10435,7 @@ packages:
engines: {node: '>=8'}
dependencies:
'@babel/core': 7.21.4
- '@babel/parser': 7.21.4
+ '@babel/parser': 7.22.6
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.0
semver: 6.3.0
@@ -8937,6 +10467,16 @@ packages:
html-escaper: 2.0.2
istanbul-lib-report: 3.0.0
+ /jackspeak@2.2.1:
+ resolution: {integrity: sha512-MXbxovZ/Pm42f6cDIDkl3xpwv1AGwObKwfmjs2nQePiy85tP3fatofl3FC1aBsOtP/6fq5SbtgHwWcMsLP+bDw==}
+ engines: {node: '>=14'}
+ dependencies:
+ '@isaacs/cliui': 8.0.2
+ optionalDependencies:
+ '@pkgjs/parseargs': 0.11.0
+ dev: true
+ optional: true
+
/jake@10.8.5:
resolution: {integrity: sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==}
engines: {node: '>=10'}
@@ -8963,7 +10503,7 @@ packages:
'@jest/expect': 29.5.0
'@jest/test-result': 29.5.0
'@jest/types': 29.5.0
- '@types/node': 18.15.11
+ '@types/node': 20.3.3
chalk: 4.1.2
co: 4.6.0
dedent: 0.7.0
@@ -8999,17 +10539,17 @@ packages:
exit: 0.1.2
graceful-fs: 4.2.11
import-local: 3.1.0
- jest-config: 29.5.0(@types/node@18.15.11)
+ jest-config: 29.5.0(@types/node@20.3.3)
jest-util: 29.5.0
jest-validate: 29.5.0
prompts: 2.4.2
- yargs: 17.7.1
+ yargs: 17.7.2
transitivePeerDependencies:
- '@types/node'
- supports-color
- ts-node
- /jest-config@29.5.0(@types/node@18.15.11):
+ /jest-config@29.5.0(@types/node@20.3.3):
resolution: {integrity: sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
@@ -9024,7 +10564,7 @@ packages:
'@babel/core': 7.21.4
'@jest/test-sequencer': 29.5.0
'@jest/types': 29.5.0
- '@types/node': 18.15.11
+ '@types/node': 20.3.3
babel-jest: 29.5.0(@babel/core@7.21.4)
chalk: 4.1.2
ci-info: 3.8.0
@@ -9091,19 +10631,38 @@ packages:
resolution: {integrity: sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/types': 29.5.0
+ '@jest/types': 29.5.0
+ '@types/graceful-fs': 4.1.6
+ '@types/node': 20.3.3
+ anymatch: 3.1.3
+ fb-watchman: 2.0.2
+ graceful-fs: 4.2.11
+ jest-regex-util: 29.4.3
+ jest-util: 29.5.0
+ jest-worker: 29.5.0
+ micromatch: 4.0.5
+ walker: 1.0.8
+ optionalDependencies:
+ fsevents: 2.3.2
+
+ /jest-haste-map@29.6.0:
+ resolution: {integrity: sha512-dY1DKufptj7hcJSuhpqlYPGcnN3XjlOy/g0jinpRTMsbb40ivZHiuIPzeminOZkrek8C+oDxC54ILGO3vMLojg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ dependencies:
+ '@jest/types': 29.6.0
'@types/graceful-fs': 4.1.6
- '@types/node': 18.15.11
+ '@types/node': 20.3.3
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
jest-regex-util: 29.4.3
- jest-util: 29.5.0
- jest-worker: 29.5.0
+ jest-util: 29.6.0
+ jest-worker: 29.6.0
micromatch: 4.0.5
walker: 1.0.8
optionalDependencies:
fsevents: 2.3.2
+ dev: true
/jest-leak-detector@29.5.0:
resolution: {integrity: sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow==}
@@ -9190,7 +10749,7 @@ packages:
'@jest/test-result': 29.5.0
'@jest/transform': 29.5.0
'@jest/types': 29.5.0
- '@types/node': 18.15.11
+ '@types/node': 20.3.3
chalk: 4.1.2
emittery: 0.13.1
graceful-fs: 4.2.11
@@ -9220,7 +10779,7 @@ packages:
'@jest/test-result': 29.5.0
'@jest/transform': 29.5.0
'@jest/types': 29.5.0
- '@types/node': 18.15.11
+ '@types/node': 20.3.3
chalk: 4.1.2
cjs-module-lexer: 1.2.2
collect-v8-coverage: 1.0.1
@@ -9253,7 +10812,7 @@ packages:
'@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.21.4)
'@babel/plugin-syntax-typescript': 7.21.4(@babel/core@7.21.4)
'@babel/traverse': 7.21.4
- '@babel/types': 7.21.4
+ '@babel/types': 7.22.5
'@jest/expect-utils': 29.5.0
'@jest/transform': 29.5.0
'@jest/types': 29.5.0
@@ -9270,7 +10829,7 @@ packages:
jest-util: 29.5.0
natural-compare: 1.4.0
pretty-format: 29.5.0
- semver: 7.3.8
+ semver: 7.5.3
transitivePeerDependencies:
- supports-color
@@ -9285,6 +10844,18 @@ packages:
graceful-fs: 4.2.11
picomatch: 2.3.1
+ /jest-util@29.6.0:
+ resolution: {integrity: sha512-S0USx9YwcvEm4pQ5suisVm/RVxBmi0GFR7ocJhIeaCuW5AXnAnffXbaVKvIFodyZNOc9ygzVtTxmBf40HsHXaA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ dependencies:
+ '@jest/types': 29.6.0
+ '@types/node': 20.3.3
+ chalk: 4.1.2
+ ci-info: 3.8.0
+ graceful-fs: 4.2.11
+ picomatch: 2.3.1
+ dev: true
+
/jest-validate@29.5.0:
resolution: {integrity: sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -9302,7 +10873,7 @@ packages:
dependencies:
'@jest/test-result': 29.5.0
'@jest/types': 29.5.0
- '@types/node': 18.15.11
+ '@types/node': 20.3.3
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.13.1
@@ -9313,7 +10884,7 @@ packages:
resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 18.15.11
+ '@types/node': 20.3.3
merge-stream: 2.0.0
supports-color: 7.2.0
dev: false
@@ -9322,7 +10893,7 @@ packages:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 18.15.11
+ '@types/node': 20.3.3
merge-stream: 2.0.0
supports-color: 8.1.1
@@ -9330,11 +10901,21 @@ packages:
resolution: {integrity: sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@types/node': 18.15.11
+ '@types/node': 20.3.3
jest-util: 29.5.0
merge-stream: 2.0.0
supports-color: 8.1.1
+ /jest-worker@29.6.0:
+ resolution: {integrity: sha512-oiQHH1SnKmZIwwPnpOrXTq4kHBk3lKGY/07DpnH0sAu+x7J8rXlbLDROZsU6vy9GwB0hPiZeZpu6YlJ48QoKcA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ dependencies:
+ '@types/node': 20.3.3
+ jest-util: 29.6.0
+ merge-stream: 2.0.0
+ supports-color: 8.1.1
+ dev: true
+
/jest@29.5.0:
resolution: {integrity: sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -9430,7 +11011,7 @@ packages:
'@babel/preset-env': ^7.1.6
dependencies:
'@babel/core': 7.21.4
- '@babel/parser': 7.21.4
+ '@babel/parser': 7.22.6
'@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.4)
'@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.21.4)
'@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.4)
@@ -9458,7 +11039,7 @@ packages:
engines: {node: '>=12.0.0'}
hasBin: true
dependencies:
- '@babel/parser': 7.21.4
+ '@babel/parser': 7.22.6
'@jsdoc/salty': 0.2.5
'@types/markdown-it': 12.2.3
bluebird: 3.7.2
@@ -9562,7 +11143,7 @@ packages:
jws: 3.2.2
lodash: 4.17.21
ms: 2.1.3
- semver: 7.3.8
+ semver: 7.5.3
dev: true
/jsprim@1.4.2:
@@ -9736,10 +11317,6 @@ packages:
uc.micro: 1.0.6
dev: true
- /listenercount@1.0.1:
- resolution: {integrity: sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==}
- dev: true
-
/listr2@3.14.0(enquirer@2.3.6):
resolution: {integrity: sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==}
engines: {node: '>=10.0.0'}
@@ -9750,12 +11327,12 @@ packages:
optional: true
dependencies:
cli-truncate: 2.1.0
- colorette: 2.0.19
+ colorette: 2.0.20
enquirer: 2.3.6
log-update: 4.0.0
p-map: 4.0.0
rfdc: 1.3.0
- rxjs: 7.8.0
+ rxjs: 7.8.1
through: 2.3.8
wrap-ansi: 7.0.0
dev: true
@@ -9764,15 +11341,6 @@ packages:
resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
engines: {node: '>=6.11.5'}
- /loader-utils@2.0.4:
- resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==}
- engines: {node: '>=8.9.0'}
- dependencies:
- big.js: 5.2.2
- emojis-list: 3.0.0
- json5: 2.2.3
- dev: true
-
/local-pkg@0.4.3:
resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==}
engines: {node: '>=14'}
@@ -9835,6 +11403,10 @@ packages:
resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==}
dev: true
+ /lodash.memoize@4.1.2:
+ resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
+ dev: true
+
/lodash.merge@4.6.2:
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
dev: true
@@ -9890,8 +11462,8 @@ packages:
/long@4.0.0:
resolution: {integrity: sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==}
- /long@5.2.1:
- resolution: {integrity: sha512-GKSNGeNAtw8IryjjkhZxuKB3JzlcLTwjtiQCHKvqQet81I93kXslhDQruGI/QsddO83mcDToBVy7GqGS/zYf/A==}
+ /long@5.2.3:
+ resolution: {integrity: sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==}
/loose-envify@1.4.0:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
@@ -9906,6 +11478,12 @@ packages:
get-func-name: 2.0.0
dev: true
+ /lru-cache@10.0.0:
+ resolution: {integrity: sha512-svTf/fzsKHffP42sujkO/Rjs37BCIsQVRCeNYIm9WN8rgT7ffoUnRtZCqU+6BqcSBdv8gwJeTz8knJpgACeQMw==}
+ engines: {node: 14 || >=16.14}
+ dev: true
+ optional: true
+
/lru-cache@4.0.2:
resolution: {integrity: sha512-uQw9OqphAGiZhkuPlpFGmdTU2tEuhxTourM/19qGJrxBPHAr/f8BT1a0i/lOclESnGatdJG/UCkP9kZB/Lh1iw==}
dependencies:
@@ -9947,6 +11525,7 @@ packages:
resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==}
dependencies:
sourcemap-codec: 1.4.8
+ dev: false
/magic-string@0.27.0:
resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==}
@@ -9955,6 +11534,12 @@ packages:
'@jridgewell/sourcemap-codec': 1.4.15
dev: false
+ /magic-string@0.30.0:
+ resolution: {integrity: sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==}
+ engines: {node: '>=12'}
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.4.15
+
/make-dir@2.1.0:
resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
engines: {node: '>=6'}
@@ -9969,28 +11554,30 @@ packages:
dependencies:
semver: 6.3.0
- /make-fetch-happen@10.2.1:
- resolution: {integrity: sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
+ /make-error@1.3.6:
+ resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
+ dev: true
+
+ /make-fetch-happen@11.1.1:
+ resolution: {integrity: sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dependencies:
agentkeepalive: 4.3.0
- cacache: 16.1.3
+ cacache: 17.1.3
http-cache-semantics: 4.1.1
http-proxy-agent: 5.0.0
https-proxy-agent: 5.0.1
is-lambda: 1.0.1
lru-cache: 7.18.3
- minipass: 3.3.6
- minipass-collect: 1.0.2
- minipass-fetch: 2.1.2
+ minipass: 5.0.0
+ minipass-fetch: 3.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.1
+ ssri: 10.0.4
transitivePeerDependencies:
- - bluebird
- supports-color
dev: true
optional: true
@@ -10033,15 +11620,15 @@ packages:
react: 18.2.0
dev: true
- /marked-terminal@5.1.1(marked@4.3.0):
- resolution: {integrity: sha512-+cKTOx9P4l7HwINYhzbrBSyzgxO2HaHKGZGuB1orZsMIgXYaJyfidT81VXRdpelW/PcHEWxywscePVgI/oUF6g==}
+ /marked-terminal@5.2.0(marked@4.3.0):
+ resolution: {integrity: sha512-Piv6yNwAQXGFjZSaiNljyNFw7jKDdGrw70FSbtxEyldLsyeuV5ZHm/1wW++kWbrOF1VPnUgYOhB2oLL0ZpnekA==}
engines: {node: '>=14.13.1 || >=16.0.0'}
peerDependencies:
- marked: ^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0
+ marked: ^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0
dependencies:
- ansi-escapes: 5.0.0
+ ansi-escapes: 6.2.0
cardinal: 2.1.1
- chalk: 5.2.0
+ chalk: 5.3.0
cli-table3: 0.6.3
marked: 4.3.0
node-emoji: 1.11.0
@@ -10164,6 +11751,14 @@ packages:
brace-expansion: 2.0.1
dev: true
+ /minimatch@9.0.2:
+ resolution: {integrity: sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==}
+ engines: {node: '>=16 || 14 >=14.17'}
+ dependencies:
+ brace-expansion: 2.0.1
+ dev: true
+ optional: true
+
/minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
@@ -10175,11 +11770,11 @@ packages:
dev: true
optional: true
- /minipass-fetch@2.1.2:
- resolution: {integrity: sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
+ /minipass-fetch@3.0.3:
+ resolution: {integrity: sha512-n5ITsTkDqYkYJZjcRWzZt9qnZKCT7nKCosJhHoj7S7zD+BP4jVbWs+odsniw5TA3E0sLomhTKOKjF86wf11PuQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dependencies:
- minipass: 3.3.6
+ minipass: 5.0.0
minipass-sized: 1.0.3
minizlib: 2.1.2
optionalDependencies:
@@ -10217,8 +11812,8 @@ packages:
dependencies:
yallist: 4.0.0
- /minipass@4.2.5:
- resolution: {integrity: sha512-+yQl7SX3bIT83Lhb4BVorMAHVuqsskxRdlmO9kTpyukp8vsm2Sn/fUOV9xlnG8/a5JsypJzap21lz/y3FBMJ8Q==}
+ /minipass@5.0.0:
+ resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
engines: {node: '>=8'}
/minizlib@2.1.2:
@@ -10342,6 +11937,17 @@ packages:
resolution: {integrity: sha512-nl5goFCig93JZ9FIV8GHT9xpNqXbxQUzkOmKIMKmncsBH9jhg7qKex8hirpymkBFmNQ114chEEG5lS4wgK2I+Q==}
dev: false
+ /node-fetch@2.6.12:
+ resolution: {integrity: sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g==}
+ engines: {node: 4.x || >=6.0.0}
+ peerDependencies:
+ encoding: ^0.1.0
+ peerDependenciesMeta:
+ encoding:
+ optional: true
+ dependencies:
+ whatwg-url: 5.0.0
+
/node-fetch@2.6.7:
resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==}
engines: {node: 4.x || >=6.0.0}
@@ -10364,29 +11970,30 @@ packages:
optional: true
dependencies:
whatwg-url: 5.0.0
+ dev: true
/node-forge@1.3.1:
resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==}
engines: {node: '>= 6.13.0'}
dev: true
- /node-gyp@9.3.1:
- resolution: {integrity: sha512-4Q16ZCqq3g8awk6UplT7AuxQ35XN4R/yf/+wSAwcBUAjg7l58RTactWaP8fIDTi0FzI7YcVLujwExakZlfWkXg==}
+ /node-gyp@9.4.0:
+ resolution: {integrity: sha512-dMXsYP6gc9rRbejLXmTbVRYjAHw7ppswsKyMxuxJxxOHzluIO1rGp9TOQgjFJ+2MCqcOcQTOPB/8Xwhr+7s4Eg==}
engines: {node: ^12.13 || ^14.13 || >=16}
hasBin: true
dependencies:
env-paths: 2.2.1
+ exponential-backoff: 3.1.1
glob: 7.2.3
graceful-fs: 4.2.11
- make-fetch-happen: 10.2.1
+ make-fetch-happen: 11.1.1
nopt: 6.0.0
npmlog: 6.0.2
rimraf: 3.0.2
- semver: 7.3.8
- tar: 6.1.13
+ semver: 7.5.3
+ tar: 6.1.15
which: 2.0.2
transitivePeerDependencies:
- - bluebird
- supports-color
dev: true
optional: true
@@ -10397,6 +12004,9 @@ packages:
/node-releases@2.0.10:
resolution: {integrity: sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==}
+ /node-releases@2.0.12:
+ resolution: {integrity: sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==}
+
/nopt@1.0.10:
resolution: {integrity: sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==}
hasBin: true
@@ -10472,17 +12082,6 @@ packages:
boolbase: 1.0.0
dev: true
- /null-loader@4.0.1(webpack@5.78.0):
- resolution: {integrity: sha512-pxqVbi4U6N26lq+LmgIbB5XATP0VdZKOG25DhHi8btMmJJefGArFyDg1yc4U3hWCJbMqSrw0qyrz1UQX+qYXqg==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- webpack: ^4.0.0 || ^5.0.0
- dependencies:
- loader-utils: 2.0.4
- schema-utils: 3.1.1
- webpack: 5.78.0(esbuild@0.17.15)
- dev: true
-
/oauth-sign@0.9.0:
resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==}
dev: true
@@ -10614,7 +12213,7 @@ packages:
/openapi3-ts@3.2.0:
resolution: {integrity: sha512-/ykNWRV5Qs0Nwq7Pc0nJ78fgILvOT/60OxEmB3v7yQ8a8Bwcm43D4diaYazG/KBn6czA+52XYy931WFLMCUeSg==}
dependencies:
- yaml: 2.2.1
+ yaml: 2.3.1
dev: true
/optionator@0.8.3:
@@ -10648,7 +12247,7 @@ packages:
bl: 4.1.0
chalk: 4.1.2
cli-cursor: 3.1.0
- cli-spinners: 2.8.0
+ cli-spinners: 2.9.0
is-interactive: 1.0.0
is-unicode-supported: 0.1.0
log-symbols: 4.1.0
@@ -10744,7 +12343,7 @@ packages:
resolution: {integrity: sha512-cy7u00ko2KVgBAjuhevqpPeHIkCIqPe1v24cydhWjmeuzaBfmUWFCZJ1iAh5TuVzVZoUzXIW7K8sMYOZ84uZ9Q==}
engines: {node: '>= 8'}
dependencies:
- degenerator: 3.0.3
+ degenerator: 3.0.4
ip: 1.1.8
netmask: 2.0.2
dev: true
@@ -10797,6 +12396,15 @@ packages:
/path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
+ /path-scurry@1.10.0:
+ resolution: {integrity: sha512-tZFEaRQbMLjwrsmidsGJ6wDMv0iazJWk6SfIKnY4Xru8auXgmJkOBa5DUbYFcFD2Rzk2+KDlIiF0GVXNCbgC7g==}
+ engines: {node: '>=16 || 14 >=14.17'}
+ dependencies:
+ lru-cache: 10.0.0
+ minipass: 5.0.0
+ dev: true
+ optional: true
+
/path-to-regexp@0.1.7:
resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
@@ -10854,6 +12462,11 @@ packages:
resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==}
engines: {node: '>= 6'}
+ /pirates@4.0.6:
+ resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
+ engines: {node: '>= 6'}
+ dev: true
+
/pkg-dir@3.0.0:
resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==}
engines: {node: '>=6'}
@@ -10899,57 +12512,57 @@ packages:
- supports-color
dev: true
- /postcss-attribute-case-insensitive@6.0.2(postcss@8.4.21):
+ /postcss-attribute-case-insensitive@6.0.2(postcss@8.4.24):
resolution: {integrity: sha512-IRuCwwAAQbgaLhxQdQcIIK0dCVXg3XDUnzgKD8iwdiYdwU4rMWRWyl/W9/0nA4ihVpq5pyALiHB2veBJ0292pw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.24
postcss-selector-parser: 6.0.11
dev: false
- /postcss-clamp@4.1.0(postcss@8.4.21):
+ /postcss-clamp@4.1.0(postcss@8.4.24):
resolution: {integrity: sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==}
engines: {node: '>=7.6.0'}
peerDependencies:
postcss: ^8.4.6
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.24
postcss-value-parser: 4.2.0
dev: false
- /postcss-color-functional-notation@5.0.2(postcss@8.4.21):
+ /postcss-color-functional-notation@5.0.2(postcss@8.4.24):
resolution: {integrity: sha512-M6ygxWOyd6eWf3sd1Lv8xi4SeF4iBPfJvkfMU4ITh8ExJc1qhbvh/U8Cv/uOvBgUVOMDdScvCdlg8+hREQzs7w==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.24
postcss-value-parser: 4.2.0
dev: false
- /postcss-color-hex-alpha@9.0.2(postcss@8.4.21):
+ /postcss-color-hex-alpha@9.0.2(postcss@8.4.24):
resolution: {integrity: sha512-SfPjgr//VQ/DOCf80STIAsdAs7sbIbxATvVmd+Ec7JvR8onz9pjawhq3BJM3Pie40EE3TyB0P6hft16D33Nlyg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.24
postcss-value-parser: 4.2.0
dev: false
- /postcss-color-rebeccapurple@8.0.2(postcss@8.4.21):
+ /postcss-color-rebeccapurple@8.0.2(postcss@8.4.24):
resolution: {integrity: sha512-xWf/JmAxVoB5bltHpXk+uGRoGFwu4WDAR7210el+iyvTdqiKpDhtcT8N3edXMoVJY0WHFMrKMUieql/wRNiXkw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.24
postcss-value-parser: 4.2.0
dev: false
- /postcss-custom-media@9.1.2(postcss@8.4.21):
+ /postcss-custom-media@9.1.2(postcss@8.4.24):
resolution: {integrity: sha512-osM9g4UKq4XKimAC7RAXroqi3BXpxfwTswAJQiZdrBjWGFGEyxQrY5H2eDWI8F+MEvEUfYDxA8scqi3QWROCSw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -10959,10 +12572,10 @@ packages:
'@csstools/css-parser-algorithms': 2.1.0(@csstools/css-tokenizer@2.1.0)
'@csstools/css-tokenizer': 2.1.0
'@csstools/media-query-list-parser': 2.0.2(@csstools/css-parser-algorithms@2.1.0)(@csstools/css-tokenizer@2.1.0)
- postcss: 8.4.21
+ postcss: 8.4.24
dev: false
- /postcss-custom-properties@13.1.4(postcss@8.4.21):
+ /postcss-custom-properties@13.1.4(postcss@8.4.24):
resolution: {integrity: sha512-iSAdaZrM3KMec8cOSzeTUNXPYDlhqsMJHpt62yrjwG6nAnMtRHPk5JdMzGosBJtqEahDolvD5LNbcq+EZ78o5g==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -10971,11 +12584,11 @@ packages:
'@csstools/cascade-layer-name-parser': 1.0.1(@csstools/css-parser-algorithms@2.1.0)(@csstools/css-tokenizer@2.1.0)
'@csstools/css-parser-algorithms': 2.1.0(@csstools/css-tokenizer@2.1.0)
'@csstools/css-tokenizer': 2.1.0
- postcss: 8.4.21
+ postcss: 8.4.24
postcss-value-parser: 4.2.0
dev: false
- /postcss-custom-selectors@7.1.2(postcss@8.4.21):
+ /postcss-custom-selectors@7.1.2(postcss@8.4.24):
resolution: {integrity: sha512-jX7VlE3jrgfBIOfxiGNRFq81xUoHSZhvxhQurzE7ZFRv+bUmMwB7/XnA0nNlts2CwNtbXm4Ozy0ZAYKHlCRmBQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -10984,87 +12597,87 @@ packages:
'@csstools/cascade-layer-name-parser': 1.0.1(@csstools/css-parser-algorithms@2.1.0)(@csstools/css-tokenizer@2.1.0)
'@csstools/css-parser-algorithms': 2.1.0(@csstools/css-tokenizer@2.1.0)
'@csstools/css-tokenizer': 2.1.0
- postcss: 8.4.21
+ postcss: 8.4.24
postcss-selector-parser: 6.0.11
dev: false
- /postcss-dir-pseudo-class@7.0.2(postcss@8.4.21):
+ /postcss-dir-pseudo-class@7.0.2(postcss@8.4.24):
resolution: {integrity: sha512-cMnslilYxBf9k3qejnovrUONZx1rXeUZJw06fgIUBzABJe3D2LiLL5WAER7Imt3nrkaIgG05XZBztueLEf5P8w==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.24
postcss-selector-parser: 6.0.11
dev: false
- /postcss-double-position-gradients@4.0.2(postcss@8.4.21):
+ /postcss-double-position-gradients@4.0.2(postcss@8.4.24):
resolution: {integrity: sha512-GXL1RmFREDK4Q9aYvI2RhVrA6a6qqSMQQ5ke8gSH1xgV6exsqbcJpIumC7AOgooH6/WIG3/K/T8xxAiVHy/tJg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/postcss-progressive-custom-properties': 2.1.1(postcss@8.4.21)
- postcss: 8.4.21
+ '@csstools/postcss-progressive-custom-properties': 2.1.1(postcss@8.4.24)
+ postcss: 8.4.24
postcss-value-parser: 4.2.0
dev: false
- /postcss-focus-visible@8.0.2(postcss@8.4.21):
+ /postcss-focus-visible@8.0.2(postcss@8.4.24):
resolution: {integrity: sha512-f/Vd+EC/GaKElknU59esVcRYr/Y3t1ZAQyL4u2xSOgkDy4bMCmG7VP5cGvj3+BTLNE9ETfEuz2nnt4qkZwTTeA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.24
postcss-selector-parser: 6.0.11
dev: false
- /postcss-focus-within@7.0.2(postcss@8.4.21):
+ /postcss-focus-within@7.0.2(postcss@8.4.24):
resolution: {integrity: sha512-AHAJ89UQBcqBvFgQJE9XasGuwMNkKsGj4D/f9Uk60jFmEBHpAL14DrnSk3Rj+SwZTr/WUG+mh+Rvf8fid/346w==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.24
postcss-selector-parser: 6.0.11
dev: false
- /postcss-font-variant@5.0.0(postcss@8.4.21):
+ /postcss-font-variant@5.0.0(postcss@8.4.24):
resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.24
dev: false
- /postcss-gap-properties@4.0.1(postcss@8.4.21):
+ /postcss-gap-properties@4.0.1(postcss@8.4.24):
resolution: {integrity: sha512-V5OuQGw4lBumPlwHWk/PRfMKjaq/LTGR4WDTemIMCaMevArVfCCA9wBJiL1VjDAd+rzuCIlkRoRvDsSiAaZ4Fg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.24
dev: false
- /postcss-image-set-function@5.0.2(postcss@8.4.21):
+ /postcss-image-set-function@5.0.2(postcss@8.4.24):
resolution: {integrity: sha512-Sszjwo0ubETX0Fi5MvpYzsONwrsjeabjMoc5YqHvURFItXgIu3HdCjcVuVKGMPGzKRhgaknmdM5uVWInWPJmeg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.24
postcss-value-parser: 4.2.0
dev: false
- /postcss-initial@4.0.1(postcss@8.4.21):
+ /postcss-initial@4.0.1(postcss@8.4.24):
resolution: {integrity: sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==}
peerDependencies:
postcss: ^8.0.0
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.24
dev: false
- /postcss-lab-function@5.2.0(postcss@8.4.21):
+ /postcss-lab-function@5.2.0(postcss@8.4.24):
resolution: {integrity: sha512-ie/k0xFCib22LV56jZoygLuWfM4J4migb89QnEXOjORGh6UwsDVSPW/x+P2MYS+AKFfZ5Npcu5HYEzYcezAAag==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -11073,17 +12686,17 @@ packages:
'@csstools/css-color-parser': 1.1.0(@csstools/css-parser-algorithms@2.1.0)(@csstools/css-tokenizer@2.1.0)
'@csstools/css-parser-algorithms': 2.1.0(@csstools/css-tokenizer@2.1.0)
'@csstools/css-tokenizer': 2.1.0
- '@csstools/postcss-progressive-custom-properties': 2.1.1(postcss@8.4.21)
- postcss: 8.4.21
+ '@csstools/postcss-progressive-custom-properties': 2.1.1(postcss@8.4.24)
+ postcss: 8.4.24
dev: false
- /postcss-logical@6.1.0(postcss@8.4.21):
+ /postcss-logical@6.1.0(postcss@8.4.24):
resolution: {integrity: sha512-qb1+LpClhYjxac8SfOcWotnY3unKZesDqIOm+jnGt8rTl7xaIWpE2bPGZHxflOip1E/4ETo79qlJyRL3yrHn1g==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.24
postcss-value-parser: 4.2.0
dev: false
@@ -11128,143 +12741,143 @@ packages:
postcss: 8.4.21
dev: true
- /postcss-nesting@11.2.2(postcss@8.4.21):
+ /postcss-nesting@11.2.2(postcss@8.4.24):
resolution: {integrity: sha512-aOTiUniAB1bcPE6GGiynWRa6PZFPhOTAm5q3q5cem6QeSijIHHkWr6gs65ukCZMXeak8yXeZVbBJET3VM+HlhA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
'@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.11)
- postcss: 8.4.21
+ postcss: 8.4.24
postcss-selector-parser: 6.0.11
dev: false
- /postcss-opacity-percentage@2.0.0(postcss@8.4.21):
+ /postcss-opacity-percentage@2.0.0(postcss@8.4.24):
resolution: {integrity: sha512-lyDrCOtntq5Y1JZpBFzIWm2wG9kbEdujpNt4NLannF+J9c8CgFIzPa80YQfdza+Y+yFfzbYj/rfoOsYsooUWTQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.2
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.24
dev: false
- /postcss-overflow-shorthand@4.0.1(postcss@8.4.21):
+ /postcss-overflow-shorthand@4.0.1(postcss@8.4.24):
resolution: {integrity: sha512-HQZ0qi/9iSYHW4w3ogNqVNr2J49DHJAl7r8O2p0Meip38jsdnRPgiDW7r/LlLrrMBMe3KHkvNtAV2UmRVxzLIg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.24
postcss-value-parser: 4.2.0
dev: false
- /postcss-page-break@3.0.4(postcss@8.4.21):
+ /postcss-page-break@3.0.4(postcss@8.4.24):
resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==}
peerDependencies:
postcss: ^8
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.24
dev: false
- /postcss-place@8.0.1(postcss@8.4.21):
+ /postcss-place@8.0.1(postcss@8.4.24):
resolution: {integrity: sha512-Ow2LedN8sL4pq8ubukO77phSVt4QyCm35ZGCYXKvRFayAwcpgB0sjNJglDoTuRdUL32q/ZC1VkPBo0AOEr4Uiw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.24
postcss-value-parser: 4.2.0
dev: false
- /postcss-preset-env@8.3.0(postcss@8.4.21):
+ /postcss-preset-env@8.3.0(postcss@8.4.24):
resolution: {integrity: sha512-VFc/bhwRo37RoTVzCTCKDJLw0lwsqLRCTc7dkJkfs9S7XXfTbk7QkhbMWHd2L+iZsAsE5yqdSRBZ41/Q828TbA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/postcss-cascade-layers': 3.0.1(postcss@8.4.21)
- '@csstools/postcss-color-function': 2.2.0(postcss@8.4.21)
- '@csstools/postcss-color-mix-function': 1.0.0(postcss@8.4.21)
- '@csstools/postcss-font-format-keywords': 2.0.2(postcss@8.4.21)
- '@csstools/postcss-gradients-interpolation-method': 3.0.1(postcss@8.4.21)
- '@csstools/postcss-hwb-function': 2.2.0(postcss@8.4.21)
- '@csstools/postcss-ic-unit': 2.0.2(postcss@8.4.21)
- '@csstools/postcss-is-pseudo-class': 3.1.1(postcss@8.4.21)
- '@csstools/postcss-logical-float-and-clear': 1.0.1(postcss@8.4.21)
- '@csstools/postcss-logical-resize': 1.0.1(postcss@8.4.21)
- '@csstools/postcss-logical-viewport-units': 1.0.2(postcss@8.4.21)
- '@csstools/postcss-media-minmax': 1.0.0(postcss@8.4.21)
- '@csstools/postcss-media-queries-aspect-ratio-number-values': 1.0.1(postcss@8.4.21)
- '@csstools/postcss-nested-calc': 2.0.2(postcss@8.4.21)
- '@csstools/postcss-normalize-display-values': 2.0.1(postcss@8.4.21)
- '@csstools/postcss-oklab-function': 2.2.0(postcss@8.4.21)
- '@csstools/postcss-progressive-custom-properties': 2.1.1(postcss@8.4.21)
- '@csstools/postcss-scope-pseudo-class': 2.0.2(postcss@8.4.21)
- '@csstools/postcss-stepped-value-functions': 2.1.0(postcss@8.4.21)
- '@csstools/postcss-text-decoration-shorthand': 2.2.2(postcss@8.4.21)
- '@csstools/postcss-trigonometric-functions': 2.1.0(postcss@8.4.21)
- '@csstools/postcss-unset-value': 2.0.1(postcss@8.4.21)
- autoprefixer: 10.4.14(postcss@8.4.21)
+ '@csstools/postcss-cascade-layers': 3.0.1(postcss@8.4.24)
+ '@csstools/postcss-color-function': 2.2.0(postcss@8.4.24)
+ '@csstools/postcss-color-mix-function': 1.0.0(postcss@8.4.24)
+ '@csstools/postcss-font-format-keywords': 2.0.2(postcss@8.4.24)
+ '@csstools/postcss-gradients-interpolation-method': 3.0.1(postcss@8.4.24)
+ '@csstools/postcss-hwb-function': 2.2.0(postcss@8.4.24)
+ '@csstools/postcss-ic-unit': 2.0.2(postcss@8.4.24)
+ '@csstools/postcss-is-pseudo-class': 3.1.1(postcss@8.4.24)
+ '@csstools/postcss-logical-float-and-clear': 1.0.1(postcss@8.4.24)
+ '@csstools/postcss-logical-resize': 1.0.1(postcss@8.4.24)
+ '@csstools/postcss-logical-viewport-units': 1.0.2(postcss@8.4.24)
+ '@csstools/postcss-media-minmax': 1.0.0(postcss@8.4.24)
+ '@csstools/postcss-media-queries-aspect-ratio-number-values': 1.0.1(postcss@8.4.24)
+ '@csstools/postcss-nested-calc': 2.0.2(postcss@8.4.24)
+ '@csstools/postcss-normalize-display-values': 2.0.1(postcss@8.4.24)
+ '@csstools/postcss-oklab-function': 2.2.0(postcss@8.4.24)
+ '@csstools/postcss-progressive-custom-properties': 2.1.1(postcss@8.4.24)
+ '@csstools/postcss-scope-pseudo-class': 2.0.2(postcss@8.4.24)
+ '@csstools/postcss-stepped-value-functions': 2.1.0(postcss@8.4.24)
+ '@csstools/postcss-text-decoration-shorthand': 2.2.2(postcss@8.4.24)
+ '@csstools/postcss-trigonometric-functions': 2.1.0(postcss@8.4.24)
+ '@csstools/postcss-unset-value': 2.0.1(postcss@8.4.24)
+ autoprefixer: 10.4.14(postcss@8.4.24)
browserslist: 4.21.5
- css-blank-pseudo: 5.0.2(postcss@8.4.21)
- css-has-pseudo: 5.0.2(postcss@8.4.21)
- css-prefers-color-scheme: 8.0.2(postcss@8.4.21)
+ css-blank-pseudo: 5.0.2(postcss@8.4.24)
+ css-has-pseudo: 5.0.2(postcss@8.4.24)
+ css-prefers-color-scheme: 8.0.2(postcss@8.4.24)
cssdb: 7.5.3
- postcss: 8.4.21
- postcss-attribute-case-insensitive: 6.0.2(postcss@8.4.21)
- postcss-clamp: 4.1.0(postcss@8.4.21)
- postcss-color-functional-notation: 5.0.2(postcss@8.4.21)
- postcss-color-hex-alpha: 9.0.2(postcss@8.4.21)
- postcss-color-rebeccapurple: 8.0.2(postcss@8.4.21)
- postcss-custom-media: 9.1.2(postcss@8.4.21)
- postcss-custom-properties: 13.1.4(postcss@8.4.21)
- postcss-custom-selectors: 7.1.2(postcss@8.4.21)
- postcss-dir-pseudo-class: 7.0.2(postcss@8.4.21)
- postcss-double-position-gradients: 4.0.2(postcss@8.4.21)
- postcss-focus-visible: 8.0.2(postcss@8.4.21)
- postcss-focus-within: 7.0.2(postcss@8.4.21)
- postcss-font-variant: 5.0.0(postcss@8.4.21)
- postcss-gap-properties: 4.0.1(postcss@8.4.21)
- postcss-image-set-function: 5.0.2(postcss@8.4.21)
- postcss-initial: 4.0.1(postcss@8.4.21)
- postcss-lab-function: 5.2.0(postcss@8.4.21)
- postcss-logical: 6.1.0(postcss@8.4.21)
- postcss-nesting: 11.2.2(postcss@8.4.21)
- postcss-opacity-percentage: 2.0.0(postcss@8.4.21)
- postcss-overflow-shorthand: 4.0.1(postcss@8.4.21)
- postcss-page-break: 3.0.4(postcss@8.4.21)
- postcss-place: 8.0.1(postcss@8.4.21)
- postcss-pseudo-class-any-link: 8.0.2(postcss@8.4.21)
- postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.21)
- postcss-selector-not: 7.0.1(postcss@8.4.21)
+ postcss: 8.4.24
+ postcss-attribute-case-insensitive: 6.0.2(postcss@8.4.24)
+ postcss-clamp: 4.1.0(postcss@8.4.24)
+ postcss-color-functional-notation: 5.0.2(postcss@8.4.24)
+ postcss-color-hex-alpha: 9.0.2(postcss@8.4.24)
+ postcss-color-rebeccapurple: 8.0.2(postcss@8.4.24)
+ postcss-custom-media: 9.1.2(postcss@8.4.24)
+ postcss-custom-properties: 13.1.4(postcss@8.4.24)
+ postcss-custom-selectors: 7.1.2(postcss@8.4.24)
+ postcss-dir-pseudo-class: 7.0.2(postcss@8.4.24)
+ postcss-double-position-gradients: 4.0.2(postcss@8.4.24)
+ postcss-focus-visible: 8.0.2(postcss@8.4.24)
+ postcss-focus-within: 7.0.2(postcss@8.4.24)
+ postcss-font-variant: 5.0.0(postcss@8.4.24)
+ postcss-gap-properties: 4.0.1(postcss@8.4.24)
+ postcss-image-set-function: 5.0.2(postcss@8.4.24)
+ postcss-initial: 4.0.1(postcss@8.4.24)
+ postcss-lab-function: 5.2.0(postcss@8.4.24)
+ postcss-logical: 6.1.0(postcss@8.4.24)
+ postcss-nesting: 11.2.2(postcss@8.4.24)
+ postcss-opacity-percentage: 2.0.0(postcss@8.4.24)
+ postcss-overflow-shorthand: 4.0.1(postcss@8.4.24)
+ postcss-page-break: 3.0.4(postcss@8.4.24)
+ postcss-place: 8.0.1(postcss@8.4.24)
+ postcss-pseudo-class-any-link: 8.0.2(postcss@8.4.24)
+ postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.24)
+ postcss-selector-not: 7.0.1(postcss@8.4.24)
postcss-value-parser: 4.2.0
dev: false
- /postcss-pseudo-class-any-link@8.0.2(postcss@8.4.21):
+ /postcss-pseudo-class-any-link@8.0.2(postcss@8.4.24):
resolution: {integrity: sha512-FYTIuRE07jZ2CW8POvctRgArQJ43yxhr5vLmImdKUvjFCkR09kh8pIdlCwdx/jbFm7MiW4QP58L4oOUv3grQYA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.24
postcss-selector-parser: 6.0.11
dev: false
- /postcss-replace-overflow-wrap@4.0.0(postcss@8.4.21):
+ /postcss-replace-overflow-wrap@4.0.0(postcss@8.4.24):
resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==}
peerDependencies:
postcss: ^8.0.3
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.24
dev: false
- /postcss-selector-not@7.0.1(postcss@8.4.21):
+ /postcss-selector-not@7.0.1(postcss@8.4.24):
resolution: {integrity: sha512-1zT5C27b/zeJhchN7fP0kBr16Cc61mu7Si9uWWLoA3Px/D9tIJPKchJCkUH3tPO5D0pCFmGeApAv8XpXBQJ8SQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.24
postcss-selector-parser: 6.0.11
dev: false
@@ -11286,6 +12899,23 @@ packages:
picocolors: 1.0.0
source-map-js: 1.0.2
+ /postcss@8.4.23:
+ resolution: {integrity: sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==}
+ engines: {node: ^10 || ^12 || >=14}
+ dependencies:
+ nanoid: 3.3.6
+ picocolors: 1.0.0
+ source-map-js: 1.0.2
+
+ /postcss@8.4.24:
+ resolution: {integrity: sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==}
+ engines: {node: ^10 || ^12 || >=14}
+ dependencies:
+ nanoid: 3.3.6
+ picocolors: 1.0.0
+ source-map-js: 1.0.2
+ dev: false
+
/preact@10.13.2:
resolution: {integrity: sha512-q44QFLhOhty2Bd0Y46fnYW0gD/cbVM9dUVtNTDKPcdXSMA7jfY+Jpd6rk3GB0lcQss0z5s/6CmVP0Z/hV+g6pw==}
dev: false
@@ -11361,16 +12991,6 @@ packages:
resolution: {integrity: sha512-BthzO9yTPswGf7etOBiHCVuugs2N01/Q/94dIPls48z2zCmrnDptUUZzfIb+41xq0MnYZ/BzmOd6ikDR4ibNZA==}
dev: true
- /promise-inflight@1.0.1:
- resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==}
- peerDependencies:
- bluebird: '*'
- peerDependenciesMeta:
- bluebird:
- optional: true
- dev: true
- optional: true
-
/promise-retry@2.0.1:
resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==}
engines: {node: '>=10'}
@@ -11398,8 +13018,8 @@ packages:
/proto-list@1.2.4:
resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==}
- /proto3-json-serializer@1.1.0:
- resolution: {integrity: sha512-SjXwUWe/vANGs/mJJTbw5++7U67nwsymg7qsoPtw6GiXqw3kUy8ByojrlEdVE2efxAdKreX8WkDafxvYW95ZQg==}
+ /proto3-json-serializer@1.1.1:
+ resolution: {integrity: sha512-AwAuY4g9nxx0u52DnSMkqqgyLHaW/XaPLtaAo3y/ZCfeaQB/g4YDH4kb8Wc/mWzWvu0YjOznVnfn373MVZZrgw==}
engines: {node: '>=12.0.0'}
dependencies:
protobufjs: 7.2.3
@@ -11414,13 +13034,13 @@ packages:
dependencies:
chalk: 4.1.2
escodegen: 1.14.3
- espree: 9.5.1
+ espree: 9.6.0
estraverse: 5.3.0
glob: 8.1.0
jsdoc: 4.0.2
minimist: 1.2.8
protobufjs: 7.2.3
- semver: 7.3.8
+ semver: 7.5.3
tmp: 0.2.1
uglify-js: 3.17.4
dev: true
@@ -11441,7 +13061,7 @@ packages:
'@protobufjs/pool': 1.1.0
'@protobufjs/utf8': 1.1.0
'@types/long': 4.0.2
- '@types/node': 18.15.11
+ '@types/node': 20.3.3
long: 4.0.0
dev: false
@@ -11449,6 +13069,24 @@ packages:
resolution: {integrity: sha512-TtpvOqwB5Gdz/PQmOjgsrGH1nHjAQVCN7JG4A6r1sXRWESL5rNMAiRcBQlCAdKxZcAbstExQePYG8xof/JVRgg==}
engines: {node: '>=12.0.0'}
requiresBuild: true
+ dependencies:
+ '@protobufjs/aspromise': 1.1.2
+ '@protobufjs/base64': 1.1.2
+ '@protobufjs/codegen': 2.0.4
+ '@protobufjs/eventemitter': 1.1.0
+ '@protobufjs/fetch': 1.1.0
+ '@protobufjs/float': 1.0.2
+ '@protobufjs/inquire': 1.1.0
+ '@protobufjs/path': 1.1.2
+ '@protobufjs/pool': 1.1.0
+ '@protobufjs/utf8': 1.1.0
+ '@types/node': 20.3.3
+ long: 5.2.3
+
+ /protobufjs@7.2.4:
+ resolution: {integrity: sha512-AT+RJgD2sH8phPmCf7OUZR8xGdcJRga4+1cOaXJ64hvcSkVhNcRHOwIxUatPH15+nj59WAGTDv3LSGZPEQbJaQ==}
+ engines: {node: '>=12.0.0'}
+ requiresBuild: true
dependencies:
'@protobufjs/aspromise': 1.1.2
'@protobufjs/base64': 1.1.2
@@ -11461,7 +13099,9 @@ packages:
'@protobufjs/pool': 1.1.0
'@protobufjs/utf8': 1.1.0
'@types/node': 18.15.11
- long: 5.2.1
+ long: 5.2.3
+ dev: true
+ optional: true
/proxy-addr@2.0.7:
resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
@@ -11578,6 +13218,13 @@ packages:
dependencies:
side-channel: 1.0.4
+ /qs@6.11.2:
+ resolution: {integrity: sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==}
+ engines: {node: '>=0.6'}
+ dependencies:
+ side-channel: 1.0.4
+ dev: true
+
/qs@6.5.3:
resolution: {integrity: sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==}
engines: {node: '>=0.6'}
@@ -11632,15 +13279,14 @@ packages:
strip-json-comments: 2.0.1
dev: true
- /re2@1.18.0:
- resolution: {integrity: sha512-MoCYZlJ9YUgksND9asyNF2/x532daXU/ARp1UeJbQ5flMY6ryKNEhrWt85aw3YluzOJlC3vXpGgK2a1jb0b4GA==}
+ /re2@1.19.1:
+ resolution: {integrity: sha512-pML2LZvGdjESWAsufwlFwF+TBauIx7ItgcPIL0KiiZ9GrJ5OU3aJEc/EZvygB32nhjrRxe6QQFbie79QhT7gVA==}
requiresBuild: true
dependencies:
- install-artifact-from-github: 1.3.2
+ install-artifact-from-github: 1.3.3
nan: 2.17.0
- node-gyp: 9.3.1
+ node-gyp: 9.4.0
transitivePeerDependencies:
- - bluebird
- supports-color
dev: true
optional: true
@@ -11768,7 +13414,7 @@ packages:
ast-types: 0.15.2
esprima: 4.0.1
source-map: 0.6.1
- tslib: 2.5.0
+ tslib: 2.6.0
dev: false
/recast@0.23.1:
@@ -11779,13 +13425,14 @@ packages:
ast-types: 0.16.1
esprima: 4.0.1
source-map: 0.6.1
- tslib: 2.5.0
+ tslib: 2.6.0
/rechoir@0.6.2:
resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==}
engines: {node: '>= 0.10'}
dependencies:
resolve: 1.22.2
+ dev: false
/redeyed@2.1.1:
resolution: {integrity: sha512-FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ==}
@@ -11841,7 +13488,7 @@ packages:
resolution: {integrity: sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==}
engines: {node: '>=14'}
dependencies:
- '@pnpm/npm-conf': 2.1.1
+ '@pnpm/npm-conf': 2.2.2
dev: true
/registry-url@5.1.0:
@@ -12008,6 +13655,7 @@ packages:
hasBin: true
dependencies:
glob: 7.2.3
+ dev: false
/rimraf@3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
@@ -12025,11 +13673,11 @@ packages:
peerDependencies:
rollup: ^2.0.0
dependencies:
- '@babel/code-frame': 7.21.4
+ '@babel/code-frame': 7.22.5
jest-worker: 26.6.2
rollup: 2.79.1
serialize-javascript: 4.0.0
- terser: 5.16.8
+ terser: 5.18.2
dev: false
/rollup@2.79.1:
@@ -12072,10 +13720,10 @@ packages:
dependencies:
queue-microtask: 1.2.3
- /rxjs@7.8.0:
- resolution: {integrity: sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==}
+ /rxjs@7.8.1:
+ resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
dependencies:
- tslib: 2.5.0
+ tslib: 2.6.0
dev: true
/safe-buffer@5.1.1:
@@ -12092,7 +13740,7 @@ packages:
resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==}
dependencies:
call-bind: 1.0.2
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.2.1
is-regex: 1.1.4
/safe-stable-stringify@2.4.3:
@@ -12122,7 +13770,7 @@ packages:
resolution: {integrity: sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/json-schema': 7.0.11
+ '@types/json-schema': 7.0.12
ajv: 6.12.6
ajv-keywords: 3.5.2(ajv@6.12.6)
@@ -12157,6 +13805,14 @@ packages:
hasBin: true
dependencies:
lru-cache: 6.0.0
+ dev: true
+
+ /semver@7.5.3:
+ resolution: {integrity: sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==}
+ engines: {node: '>=10'}
+ hasBin: true
+ dependencies:
+ lru-cache: 6.0.0
/send@0.18.0:
resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
@@ -12214,10 +13870,6 @@ packages:
/set-blocking@2.0.0:
resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
- /setimmediate@1.0.5:
- resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
- dev: true
-
/setprototypeof@1.2.0:
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
@@ -12256,12 +13908,13 @@ packages:
glob: 7.2.3
interpret: 1.4.0
rechoir: 0.6.2
+ dev: false
/side-channel@1.0.4:
resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
dependencies:
call-bind: 1.0.2
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.2.1
object-inspect: 1.12.3
/siginfo@2.0.0:
@@ -12274,6 +13927,12 @@ packages:
/signal-exit@3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
+ /signal-exit@4.0.2:
+ resolution: {integrity: sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==}
+ engines: {node: '>=14'}
+ dev: true
+ optional: true
+
/simple-swizzle@0.2.2:
resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
dependencies:
@@ -12396,6 +14055,7 @@ packages:
/sourcemap-codec@1.4.8:
resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==}
deprecated: Please use @jridgewell/sourcemap-codec instead
+ dev: false
/space-separated-tokens@1.1.5:
resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==}
@@ -12442,11 +14102,11 @@ packages:
tweetnacl: 0.14.5
dev: true
- /ssri@9.0.1:
- resolution: {integrity: sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
+ /ssri@10.0.4:
+ resolution: {integrity: sha512-12+IR2CB2C28MMAw0Ncqwj5QbTcs0nGIhgJzYWzDkb21vWmfNI83KS4f3Ci6GI98WreIfG7o9UXp3C0qbpA8nQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dependencies:
- minipass: 3.3.6
+ minipass: 5.0.0
dev: true
optional: true
@@ -12511,8 +14171,8 @@ packages:
dev: true
optional: true
- /stream-json@1.7.5:
- resolution: {integrity: sha512-NSkoVduGakxZ8a+pTPUlcGEeAGQpWL9rKJhOFCV+J/QtdQUEU5vtBgVg6eJXn8JB8RZvpbJWZGvXkhz70MLWoA==}
+ /stream-json@1.8.0:
+ resolution: {integrity: sha512-HZfXngYHUAr1exT4fxlbc1IOce1RYxp2ldeaf97LYCOPSoOqY/1Psp7iGvpb+6JIOgkra9zDYnPX01hGAHzEPw==}
dependencies:
stream-chain: 2.2.5
dev: true
@@ -12541,7 +14201,7 @@ packages:
dependencies:
eastasianwidth: 0.2.0
emoji-regex: 9.2.2
- strip-ansi: 7.0.1
+ strip-ansi: 7.1.0
dev: true
/string.prototype.matchall@4.0.8:
@@ -12550,7 +14210,7 @@ packages:
call-bind: 1.0.2
define-properties: 1.2.0
es-abstract: 1.21.2
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.2.1
has-symbols: 1.0.3
internal-slot: 1.0.5
regexp.prototype.flags: 1.4.3
@@ -12607,8 +14267,8 @@ packages:
dependencies:
ansi-regex: 5.0.1
- /strip-ansi@7.0.1:
- resolution: {integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==}
+ /strip-ansi@7.1.0:
+ resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
engines: {node: '>=12'}
dependencies:
ansi-regex: 6.0.1
@@ -12668,7 +14328,7 @@ packages:
hasBin: true
dependencies:
basic-auth-connect: 1.0.0
- commander: 10.0.0
+ commander: 10.0.1
compression: 1.7.4
connect: 3.7.0
destroy: 1.2.0
@@ -12686,9 +14346,8 @@ packages:
router: 1.3.8
update-notifier-cjs: 5.1.6
optionalDependencies:
- re2: 1.18.0
+ re2: 1.19.1
transitivePeerDependencies:
- - bluebird
- encoding
- supports-color
dev: true
@@ -12749,13 +14408,13 @@ packages:
inherits: 2.0.4
readable-stream: 3.6.2
- /tar@6.1.13:
- resolution: {integrity: sha512-jdIBIN6LTIe2jqzay/2vtYLlBHa3JF42ot3h1dW8Q0PaAG4v8rm0cvpVePtau5C6OKXGGcgO9q2AMNSWxiLqKw==}
+ /tar@6.1.15:
+ resolution: {integrity: sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A==}
engines: {node: '>=10'}
dependencies:
chownr: 2.0.0
fs-minipass: 2.1.0
- minipass: 4.2.5
+ minipass: 5.0.0
minizlib: 2.1.2
mkdirp: 1.0.4
yallist: 4.0.0
@@ -12775,7 +14434,7 @@ packages:
dependencies:
http-proxy-agent: 5.0.0
https-proxy-agent: 5.0.1
- node-fetch: 2.6.9
+ node-fetch: 2.6.12
stream-events: 1.0.5
uuid: 9.0.0
transitivePeerDependencies:
@@ -12856,6 +14515,17 @@ packages:
commander: 2.20.3
source-map-support: 0.5.21
+ /terser@5.18.2:
+ resolution: {integrity: sha512-Ah19JS86ypbJzTzvUCX7KOsEIhDaRONungA4aYBjEP3JZRf4ocuDzTg4QWZnPn9DEMiMYGJPiSOy7aykoCc70w==}
+ engines: {node: '>=10'}
+ hasBin: true
+ dependencies:
+ '@jridgewell/source-map': 0.3.5
+ acorn: 8.10.0
+ commander: 2.20.3
+ source-map-support: 0.5.21
+ dev: false
+
/test-exclude@6.0.0:
resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
engines: {node: '>=8'}
@@ -12959,10 +14629,6 @@ packages:
punycode: 2.3.0
dev: false
- /traverse@0.3.9:
- resolution: {integrity: sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ==}
- dev: true
-
/triple-beam@1.3.0:
resolution: {integrity: sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==}
dev: true
@@ -12971,6 +14637,42 @@ packages:
resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==}
engines: {node: '>=6.10'}
+ /ts-jest@29.1.0(@babel/core@7.22.6)(babel-jest@29.6.0)(esbuild@0.17.15)(jest@29.5.0)(typescript@5.1.6):
+ resolution: {integrity: sha512-ZhNr7Z4PcYa+JjMl62ir+zPiNJfXJN6E8hSLnaUKhOgqcn8vb3e537cpkd0FuAfRK3sR1LSqM1MOhliXNgOFPA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ hasBin: true
+ peerDependencies:
+ '@babel/core': '>=7.0.0-beta.0 <8'
+ '@jest/types': ^29.0.0
+ babel-jest: ^29.0.0
+ esbuild: '*'
+ jest: ^29.0.0
+ typescript: '>=4.3 <6'
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ '@jest/types':
+ optional: true
+ babel-jest:
+ optional: true
+ esbuild:
+ optional: true
+ dependencies:
+ '@babel/core': 7.22.6
+ babel-jest: 29.6.0(@babel/core@7.22.6)
+ bs-logger: 0.2.6
+ esbuild: 0.17.15
+ fast-json-stable-stringify: 2.1.0
+ jest: 29.5.0
+ jest-util: 29.5.0
+ json5: 2.2.3
+ lodash.memoize: 4.1.2
+ make-error: 1.3.6
+ semver: 7.3.8
+ typescript: 5.1.6
+ yargs-parser: 21.1.1
+ dev: true
+
/tsconfig-paths@3.14.2:
resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==}
dependencies:
@@ -12992,6 +14694,9 @@ packages:
/tslib@2.5.0:
resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==}
+ /tslib@2.6.0:
+ resolution: {integrity: sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==}
+
/tunnel-agent@0.6.0:
resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
dependencies:
@@ -13043,15 +14748,15 @@ packages:
engines: {node: '>=8'}
dev: false
- /type-fest@1.4.0:
- resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==}
- engines: {node: '>=10'}
- dev: true
-
/type-fest@2.19.0:
resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==}
engines: {node: '>=12.20'}
+ /type-fest@3.12.0:
+ resolution: {integrity: sha512-qj9wWsnFvVEMUDbESiilKeXeHL7FwwiFcogfhfyjmvT968RXSvnl23f1JOClTHYItsi7o501C/7qVllscUP3oA==}
+ engines: {node: '>=14.16'}
+ dev: true
+
/type-is@1.6.18:
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
engines: {node: '>= 0.6'}
@@ -13076,6 +14781,11 @@ packages:
resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
dev: false
+ /typescript@5.1.6:
+ resolution: {integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==}
+ engines: {node: '>=14.17'}
+ hasBin: true
+
/uc.micro@1.0.6:
resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==}
dev: true
@@ -13129,17 +14839,17 @@ packages:
engines: {node: '>=4'}
dev: false
- /unique-filename@2.0.1:
- resolution: {integrity: sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
+ /unique-filename@3.0.0:
+ resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dependencies:
- unique-slug: 3.0.0
+ unique-slug: 4.0.0
dev: true
optional: true
- /unique-slug@3.0.0:
- resolution: {integrity: sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
+ /unique-slug@4.0.0:
+ resolution: {integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dependencies:
imurmurhash: 0.1.4
dev: true
@@ -13196,7 +14906,7 @@ packages:
/unplugin@0.10.2:
resolution: {integrity: sha512-6rk7GUa4ICYjae5PrAllvcDeuT8pA9+j5J5EkxbMFaV+SalHhxZ7X2dohMzu6C3XzsMT+6jwR/+pwPNR3uK9MA==}
dependencies:
- acorn: 8.8.2
+ acorn: 8.10.0
chokidar: 3.5.3
webpack-sources: 3.2.3
webpack-virtual-modules: 0.4.6
@@ -13206,21 +14916,6 @@ packages:
resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==}
engines: {node: '>=8'}
- /unzipper@0.10.11:
- resolution: {integrity: sha512-+BrAq2oFqWod5IESRjL3S8baohbevGcVA+teAIOYWM3pDVdseogqbzhhvvmiyQrUNKFUnDMtELW3X8ykbyDCJw==}
- dependencies:
- big-integer: 1.6.51
- binary: 0.3.0
- bluebird: 3.4.7
- buffer-indexof-polyfill: 1.0.2
- duplexer2: 0.1.4
- fstream: 1.0.12
- graceful-fs: 4.2.11
- listenercount: 1.0.1
- readable-stream: 2.3.8
- setimmediate: 1.0.5
- dev: true
-
/upath@1.2.0:
resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==}
engines: {node: '>=4'}
@@ -13240,6 +14935,16 @@ packages:
escalade: 3.1.1
picocolors: 1.0.0
+ /update-browserslist-db@1.0.11(browserslist@4.21.9):
+ resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==}
+ hasBin: true
+ peerDependencies:
+ browserslist: '>= 4.21.0'
+ dependencies:
+ browserslist: 4.21.9
+ escalade: 3.1.1
+ picocolors: 1.0.0
+
/update-notifier-cjs@5.1.6:
resolution: {integrity: sha512-wgxdSBWv3x/YpMzsWz5G4p4ec7JWD0HCl8W6bmNB6E5Gwo+1ym5oN4hiXpLf0mPySVEJEIsYlkshnplkg2OP9A==}
engines: {node: '>=14'}
@@ -13257,7 +14962,7 @@ packages:
pupa: 2.1.1
registry-auth-token: 5.0.2
registry-url: 5.1.0
- semver: 7.3.8
+ semver: 7.5.3
semver-diff: 3.1.1
xdg-basedir: 4.0.0
transitivePeerDependencies:
@@ -13373,7 +15078,7 @@ packages:
- terser
dev: true
- /vite-plugin-pwa@0.14.7(vite@4.2.1)(workbox-build@6.5.4)(workbox-window@6.5.4):
+ /vite-plugin-pwa@0.14.7(vite@4.2.1)(workbox-build@6.6.0)(workbox-window@6.6.0):
resolution: {integrity: sha512-dNJaf0fYOWncmjxv9HiSa2xrSjipjff7IkYE5oIUJ2x5HKu3cXgA8LRgzOwTc5MhwyFYRSU0xyN0Phbx3NsQYw==}
peerDependencies:
vite: ^3.1.0 || ^4.0.0
@@ -13386,24 +15091,24 @@ packages:
pretty-bytes: 6.1.0
rollup: 3.20.2
vite: 4.2.1(@types/node@18.15.11)(sass@1.61.0)
- workbox-build: 6.5.4
- workbox-window: 6.5.4
+ workbox-build: 6.6.0
+ workbox-window: 6.6.0
transitivePeerDependencies:
- supports-color
dev: false
- /vite-plugin-vuetify@1.0.2(vite@4.2.1)(vue@3.2.47)(vuetify@3.1.13):
+ /vite-plugin-vuetify@1.0.2(vite@4.2.1)(vue@3.3.1)(vuetify@3.3.5):
resolution: {integrity: sha512-MubIcKD33O8wtgQXlbEXE7ccTEpHZ8nPpe77y9Wy3my2MWw/PgehP9VqTp92BLqr0R1dSL970Lynvisx3UxBFw==}
engines: {node: '>=12'}
peerDependencies:
vite: ^2.7.0 || ^3.0.0 || ^4.0.0
vuetify: ^3.0.0-beta.4
dependencies:
- '@vuetify/loader-shared': 1.7.1(vue@3.2.47)(vuetify@3.1.13)
+ '@vuetify/loader-shared': 1.7.1(vue@3.3.1)(vuetify@3.3.5)
debug: 4.3.4(supports-color@8.1.1)
upath: 2.0.1
vite: 4.2.1(@types/node@18.15.11)(sass@1.61.0)
- vuetify: 3.1.13(vite-plugin-vuetify@1.0.2)(vue-i18n@9.2.2)(vue@3.2.47)
+ vuetify: 3.3.5(typescript@5.1.6)(vite-plugin-vuetify@1.0.2)(vue-i18n@9.2.2)(vue@3.3.1)
transitivePeerDependencies:
- supports-color
- vue
@@ -13506,35 +15211,15 @@ packages:
- terser
dev: true
- /vm2@3.9.15:
- resolution: {integrity: sha512-XqNqknHGw2avJo13gbIwLNZUumvrSHc9mLqoadFZTpo3KaNEJoe1I0lqTFhRXmXD7WkLyG01aaraXdXT0pa4ag==}
+ /vm2@3.9.19:
+ resolution: {integrity: sha512-J637XF0DHDMV57R6JyVsTak7nIL8gy5KH4r1HiwWLf/4GBbb5MKL5y7LpmF4A8E2nR6XmzpmMFQ7V7ppPTmUQg==}
engines: {node: '>=6.0'}
hasBin: true
dependencies:
- acorn: 8.8.2
+ acorn: 8.10.0
acorn-walk: 8.2.0
dev: true
- /vue-cli-plugin-vuetify@2.5.8(vue@3.2.47)(webpack@5.78.0):
- resolution: {integrity: sha512-uqi0/URJETJBbWlQHD1l0pnY7JN8Ytu+AL1fw50HFlGByPa8/xx+mq19GkFXA9FcwFT01IqEc/TkxMPugchomg==}
- peerDependencies:
- sass-loader: '*'
- vue: '*'
- vuetify-loader: '*'
- webpack: ^4.0.0 || ^5.0.0
- peerDependenciesMeta:
- sass-loader:
- optional: true
- vuetify-loader:
- optional: true
- dependencies:
- null-loader: 4.0.1(webpack@5.78.0)
- semver: 7.3.8
- shelljs: 0.8.5
- vue: 3.2.47
- webpack: 5.78.0(esbuild@0.17.15)
- dev: true
-
/vue-eslint-parser@9.1.1(eslint@8.37.0):
resolution: {integrity: sha512-C2aI/r85Q6tYcz4dpgvrs4wH/MqVrRAVIdpYedrxnATDHHkb+TroeRcDpKWGZCx/OcECMWfz7tVwQ8e+Opy6rA==}
engines: {node: ^14.17.0 || >=16.0.0}
@@ -13548,12 +15233,12 @@ packages:
espree: 9.5.1
esquery: 1.5.0
lodash: 4.17.21
- semver: 7.3.8
+ semver: 7.5.3
transitivePeerDependencies:
- supports-color
dev: true
- /vue-i18n@9.2.2(vue@3.2.47):
+ /vue-i18n@9.2.2(vue@3.3.1):
resolution: {integrity: sha512-yswpwtj89rTBhegUAv9Mu37LNznyu3NpyLQmozF3i1hYOhwpG8RjcjIFIIfnu+2MDZJGSZPXaKWvnQA71Yv9TQ==}
engines: {node: '>= 14'}
peerDependencies:
@@ -13563,9 +15248,9 @@ packages:
'@intlify/shared': 9.2.2
'@intlify/vue-devtools': 9.2.2
'@vue/devtools-api': 6.5.0
- vue: 3.2.47
+ vue: 3.3.1
- /vue-instantsearch@4.8.9(@vue/server-renderer@3.2.47)(algoliasearch@4.17.0)(vue@3.2.47):
+ /vue-instantsearch@4.8.9(@vue/server-renderer@3.3.4)(algoliasearch@4.17.0)(vue@3.3.1):
resolution: {integrity: sha512-TAapsZqtBZI0+UPe/kJv3vsoaE6VoFgHGdn50LGaeZdgLw5yQcCrestyAEPpBCfOW7I6InnapkflNK+5qI4GLA==}
peerDependencies:
'@vue/server-renderer': ^3.1.2
@@ -13578,40 +15263,43 @@ packages:
vue-server-renderer:
optional: true
dependencies:
- '@vue/server-renderer': 3.2.47(vue@3.2.47)
+ '@vue/server-renderer': 3.3.4(vue@3.3.1)
algoliasearch: 4.17.0
instantsearch.js: 4.54.0(algoliasearch@4.17.0)
mitt: 2.1.0
- vue: 3.2.47
+ vue: 3.3.1
dev: false
- /vue-router@4.1.6(vue@3.2.47):
+ /vue-router@4.1.6(vue@3.3.1):
resolution: {integrity: sha512-DYWYwsG6xNPmLq/FmZn8Ip+qrhFEzA14EI12MsMgVxvHFDYvlr4NXpVF5hrRH1wVcDP8fGi5F4rxuJSl8/r+EQ==}
peerDependencies:
vue: ^3.2.0
dependencies:
'@vue/devtools-api': 6.5.0
- vue: 3.2.47
+ vue: 3.3.1
dev: false
- /vue@3.2.47:
- resolution: {integrity: sha512-60188y/9Dc9WVrAZeUVSDxRQOZ+z+y5nO2ts9jWXSTkMvayiWxCWOWtBQoYjLeccfXkiiPZWAHcV+WTPhkqJHQ==}
+ /vue@3.3.1:
+ resolution: {integrity: sha512-3Rwy4I5idbPVSDZu6I+fFh6tdDSZbauImCTqLxE7y0LpHtiDvPeY01OI7RkFPbva1nk4hoO0sv/NzosH2h60sg==}
dependencies:
- '@vue/compiler-dom': 3.2.47
- '@vue/compiler-sfc': 3.2.47
- '@vue/runtime-dom': 3.2.47
- '@vue/server-renderer': 3.2.47(vue@3.2.47)
- '@vue/shared': 3.2.47
+ '@vue/compiler-dom': 3.3.1
+ '@vue/compiler-sfc': 3.3.1
+ '@vue/runtime-dom': 3.3.1
+ '@vue/server-renderer': 3.3.1(vue@3.3.1)
+ '@vue/shared': 3.3.1
- /vuetify@3.1.13(vite-plugin-vuetify@1.0.2)(vue-i18n@9.2.2)(vue@3.2.47):
- resolution: {integrity: sha512-mC2UvWqS3Ne/aZ6Q+79kiL36xSe5jGxm0KWWq2e4SRxuqIE14IbyzqfXvU0bEqns0dHU5dOiKCMM9jHZFDLKgQ==}
+ /vuetify@3.3.5(typescript@5.1.6)(vite-plugin-vuetify@1.0.2)(vue-i18n@9.2.2)(vue@3.3.1):
+ resolution: {integrity: sha512-vkfPgPmKfSJa+jq6Ov+CTg7L1t2jLPKa7Slef9OrVHcLqg+gLuIj0z4PJE6E9HjFTUbgZShShOGxps52REJRIA==}
engines: {node: ^12.20 || >=14.13}
peerDependencies:
+ typescript: '>=4.7'
vite-plugin-vuetify: ^1.0.0-alpha.12
vue: ^3.2.0
vue-i18n: ^9.0.0
webpack-plugin-vuetify: ^2.0.0-alpha.11
peerDependenciesMeta:
+ typescript:
+ optional: true
vite-plugin-vuetify:
optional: true
vue-i18n:
@@ -13619,17 +15307,18 @@ packages:
webpack-plugin-vuetify:
optional: true
dependencies:
- vite-plugin-vuetify: 1.0.2(vite@4.2.1)(vue@3.2.47)(vuetify@3.1.13)
- vue: 3.2.47
- vue-i18n: 9.2.2(vue@3.2.47)
+ typescript: 5.1.6
+ vite-plugin-vuetify: 1.0.2(vite@4.2.1)(vue@3.3.1)(vuetify@3.3.5)
+ vue: 3.3.1
+ vue-i18n: 9.2.2(vue@3.3.1)
- /vuex@4.1.0(vue@3.2.47):
+ /vuex@4.1.0(vue@3.3.1):
resolution: {integrity: sha512-hmV6UerDrPcgbSy9ORAtNXDr9M4wlNP4pEFKye4ujJF8oqgFFuxDCdOLS3eNoRTtq5O3hoBDh9Doj1bQMYHRbQ==}
peerDependencies:
vue: ^3.2.0
dependencies:
'@vue/devtools-api': 6.5.0
- vue: 3.2.47
+ vue: 3.3.1
dev: false
/walker@1.0.8:
@@ -13805,8 +15494,8 @@ packages:
triple-beam: 1.3.0
dev: true
- /winston@3.8.2:
- resolution: {integrity: sha512-MsE1gRx1m5jdTTO9Ld/vND4krP2To+lgDoMEHGGa4HIlAUyXJtfc7CxQcGXVyz2IBpw5hbFkj2b/AtUdQwyRew==}
+ /winston@3.9.0:
+ resolution: {integrity: sha512-jW51iW/X95BCW6MMtZWr2jKQBP4hV5bIDq9QrIjfDk6Q9QuxvTKEAlpUNAzP+HYHFFCeENhph16s0zEunu4uuQ==}
engines: {node: '>= 12.0.0'}
dependencies:
'@colors/colors': 1.5.0
@@ -13830,28 +15519,28 @@ packages:
/wordwrap@1.0.0:
resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==}
- /workbox-background-sync@6.5.4:
- resolution: {integrity: sha512-0r4INQZMyPky/lj4Ou98qxcThrETucOde+7mRGJl13MPJugQNKeZQOdIJe/1AchOP23cTqHcN/YVpD6r8E6I8g==}
+ /workbox-background-sync@6.6.0:
+ resolution: {integrity: sha512-jkf4ZdgOJxC9u2vztxLuPT/UjlH7m/nWRQ/MgGL0v8BJHoZdVGJd18Kck+a0e55wGXdqyHO+4IQTk0685g4MUw==}
dependencies:
idb: 7.1.1
- workbox-core: 6.5.4
+ workbox-core: 6.6.0
dev: false
- /workbox-broadcast-update@6.5.4:
- resolution: {integrity: sha512-I/lBERoH1u3zyBosnpPEtcAVe5lwykx9Yg1k6f8/BGEPGaMMgZrwVrqL1uA9QZ1NGGFoyE6t9i7lBjOlDhFEEw==}
+ /workbox-broadcast-update@6.6.0:
+ resolution: {integrity: sha512-nm+v6QmrIFaB/yokJmQ/93qIJ7n72NICxIwQwe5xsZiV2aI93MGGyEyzOzDPVz5THEr5rC3FJSsO3346cId64Q==}
dependencies:
- workbox-core: 6.5.4
+ workbox-core: 6.6.0
dev: false
- /workbox-build@6.5.4:
- resolution: {integrity: sha512-kgRevLXEYvUW9WS4XoziYqZ8Q9j/2ziJYEtTrjdz5/L/cTUa2XfyMP2i7c3p34lgqJ03+mTiz13SdFef2POwbA==}
+ /workbox-build@6.6.0:
+ resolution: {integrity: sha512-Tjf+gBwOTuGyZwMz2Nk/B13Fuyeo0Q84W++bebbVsfr9iLkDSo6j6PST8tET9HYA58mlRXwlMGpyWO8ETJiXdQ==}
engines: {node: '>=10.0.0'}
dependencies:
'@apideck/better-ajv-errors': 0.3.6(ajv@8.12.0)
- '@babel/core': 7.21.4
- '@babel/preset-env': 7.21.4(@babel/core@7.21.4)
- '@babel/runtime': 7.21.0
- '@rollup/plugin-babel': 5.3.1(@babel/core@7.21.4)(rollup@2.79.1)
+ '@babel/core': 7.22.6
+ '@babel/preset-env': 7.22.6(@babel/core@7.22.6)
+ '@babel/runtime': 7.22.6
+ '@rollup/plugin-babel': 5.3.1(@babel/core@7.22.6)(rollup@2.79.1)
'@rollup/plugin-node-resolve': 11.2.1(rollup@2.79.1)
'@rollup/plugin-replace': 2.4.2(rollup@2.79.1)
'@surma/rollup-plugin-off-main-thread': 2.2.3
@@ -13869,111 +15558,112 @@ packages:
strip-comments: 2.0.1
tempy: 0.6.0
upath: 1.2.0
- workbox-background-sync: 6.5.4
- workbox-broadcast-update: 6.5.4
- workbox-cacheable-response: 6.5.4
- workbox-core: 6.5.4
- workbox-expiration: 6.5.4
- workbox-google-analytics: 6.5.4
- workbox-navigation-preload: 6.5.4
- workbox-precaching: 6.5.4
- workbox-range-requests: 6.5.4
- workbox-recipes: 6.5.4
- workbox-routing: 6.5.4
- workbox-strategies: 6.5.4
- workbox-streams: 6.5.4
- workbox-sw: 6.5.4
- workbox-window: 6.5.4
+ workbox-background-sync: 6.6.0
+ workbox-broadcast-update: 6.6.0
+ workbox-cacheable-response: 6.6.0
+ workbox-core: 6.6.0
+ workbox-expiration: 6.6.0
+ workbox-google-analytics: 6.6.0
+ workbox-navigation-preload: 6.6.0
+ workbox-precaching: 6.6.0
+ workbox-range-requests: 6.6.0
+ workbox-recipes: 6.6.0
+ workbox-routing: 6.6.0
+ workbox-strategies: 6.6.0
+ workbox-streams: 6.6.0
+ workbox-sw: 6.6.0
+ workbox-window: 6.6.0
transitivePeerDependencies:
- '@types/babel__core'
- supports-color
dev: false
- /workbox-cacheable-response@6.5.4:
- resolution: {integrity: sha512-DCR9uD0Fqj8oB2TSWQEm1hbFs/85hXXoayVwFKLVuIuxwJaihBsLsp4y7J9bvZbqtPJ1KlCkmYVGQKrBU4KAug==}
+ /workbox-cacheable-response@6.6.0:
+ resolution: {integrity: sha512-JfhJUSQDwsF1Xv3EV1vWzSsCOZn4mQ38bWEBR3LdvOxSPgB65gAM6cS2CX8rkkKHRgiLrN7Wxoyu+TuH67kHrw==}
+ deprecated: workbox-background-sync@6.6.0
dependencies:
- workbox-core: 6.5.4
+ workbox-core: 6.6.0
dev: false
- /workbox-core@6.5.4:
- resolution: {integrity: sha512-OXYb+m9wZm8GrORlV2vBbE5EC1FKu71GGp0H4rjmxmF4/HLbMCoTFws87M3dFwgpmg0v00K++PImpNQ6J5NQ6Q==}
+ /workbox-core@6.6.0:
+ resolution: {integrity: sha512-GDtFRF7Yg3DD859PMbPAYPeJyg5gJYXuBQAC+wyrWuuXgpfoOrIQIvFRZnQ7+czTIQjIr1DhLEGFzZanAT/3bQ==}
dev: false
- /workbox-expiration@6.5.4:
- resolution: {integrity: sha512-jUP5qPOpH1nXtjGGh1fRBa1wJL2QlIb5mGpct3NzepjGG2uFFBn4iiEBiI9GUmfAFR2ApuRhDydjcRmYXddiEQ==}
+ /workbox-expiration@6.6.0:
+ resolution: {integrity: sha512-baplYXcDHbe8vAo7GYvyAmlS4f6998Jff513L4XvlzAOxcl8F620O91guoJ5EOf5qeXG4cGdNZHkkVAPouFCpw==}
dependencies:
idb: 7.1.1
- workbox-core: 6.5.4
+ workbox-core: 6.6.0
dev: false
- /workbox-google-analytics@6.5.4:
- resolution: {integrity: sha512-8AU1WuaXsD49249Wq0B2zn4a/vvFfHkpcFfqAFHNHwln3jK9QUYmzdkKXGIZl9wyKNP+RRX30vcgcyWMcZ9VAg==}
+ /workbox-google-analytics@6.6.0:
+ resolution: {integrity: sha512-p4DJa6OldXWd6M9zRl0H6vB9lkrmqYFkRQ2xEiNdBFp9U0LhsGO7hsBscVEyH9H2/3eZZt8c97NB2FD9U2NJ+Q==}
dependencies:
- workbox-background-sync: 6.5.4
- workbox-core: 6.5.4
- workbox-routing: 6.5.4
- workbox-strategies: 6.5.4
+ workbox-background-sync: 6.6.0
+ workbox-core: 6.6.0
+ workbox-routing: 6.6.0
+ workbox-strategies: 6.6.0
dev: false
- /workbox-navigation-preload@6.5.4:
- resolution: {integrity: sha512-IIwf80eO3cr8h6XSQJF+Hxj26rg2RPFVUmJLUlM0+A2GzB4HFbQyKkrgD5y2d84g2IbJzP4B4j5dPBRzamHrng==}
+ /workbox-navigation-preload@6.6.0:
+ resolution: {integrity: sha512-utNEWG+uOfXdaZmvhshrh7KzhDu/1iMHyQOV6Aqup8Mm78D286ugu5k9MFD9SzBT5TcwgwSORVvInaXWbvKz9Q==}
dependencies:
- workbox-core: 6.5.4
+ workbox-core: 6.6.0
dev: false
- /workbox-precaching@6.5.4:
- resolution: {integrity: sha512-hSMezMsW6btKnxHB4bFy2Qfwey/8SYdGWvVIKFaUm8vJ4E53JAY+U2JwLTRD8wbLWoP6OVUdFlXsTdKu9yoLTg==}
+ /workbox-precaching@6.6.0:
+ resolution: {integrity: sha512-eYu/7MqtRZN1IDttl/UQcSZFkHP7dnvr/X3Vn6Iw6OsPMruQHiVjjomDFCNtd8k2RdjLs0xiz9nq+t3YVBcWPw==}
dependencies:
- workbox-core: 6.5.4
- workbox-routing: 6.5.4
- workbox-strategies: 6.5.4
+ workbox-core: 6.6.0
+ workbox-routing: 6.6.0
+ workbox-strategies: 6.6.0
dev: false
- /workbox-range-requests@6.5.4:
- resolution: {integrity: sha512-Je2qR1NXCFC8xVJ/Lux6saH6IrQGhMpDrPXWZWWS8n/RD+WZfKa6dSZwU+/QksfEadJEr/NfY+aP/CXFFK5JFg==}
+ /workbox-range-requests@6.6.0:
+ resolution: {integrity: sha512-V3aICz5fLGq5DpSYEU8LxeXvsT//mRWzKrfBOIxzIdQnV/Wj7R+LyJVTczi4CQ4NwKhAaBVaSujI1cEjXW+hTw==}
dependencies:
- workbox-core: 6.5.4
+ workbox-core: 6.6.0
dev: false
- /workbox-recipes@6.5.4:
- resolution: {integrity: sha512-QZNO8Ez708NNwzLNEXTG4QYSKQ1ochzEtRLGaq+mr2PyoEIC1xFW7MrWxrONUxBFOByksds9Z4//lKAX8tHyUA==}
+ /workbox-recipes@6.6.0:
+ resolution: {integrity: sha512-TFi3kTgYw73t5tg73yPVqQC8QQjxJSeqjXRO4ouE/CeypmP2O/xqmB/ZFBBQazLTPxILUQ0b8aeh0IuxVn9a6A==}
dependencies:
- workbox-cacheable-response: 6.5.4
- workbox-core: 6.5.4
- workbox-expiration: 6.5.4
- workbox-precaching: 6.5.4
- workbox-routing: 6.5.4
- workbox-strategies: 6.5.4
+ workbox-cacheable-response: 6.6.0
+ workbox-core: 6.6.0
+ workbox-expiration: 6.6.0
+ workbox-precaching: 6.6.0
+ workbox-routing: 6.6.0
+ workbox-strategies: 6.6.0
dev: false
- /workbox-routing@6.5.4:
- resolution: {integrity: sha512-apQswLsbrrOsBUWtr9Lf80F+P1sHnQdYodRo32SjiByYi36IDyL2r7BH1lJtFX8fwNHDa1QOVY74WKLLS6o5Pg==}
+ /workbox-routing@6.6.0:
+ resolution: {integrity: sha512-x8gdN7VDBiLC03izAZRfU+WKUXJnbqt6PG9Uh0XuPRzJPpZGLKce/FkOX95dWHRpOHWLEq8RXzjW0O+POSkKvw==}
dependencies:
- workbox-core: 6.5.4
+ workbox-core: 6.6.0
dev: false
- /workbox-strategies@6.5.4:
- resolution: {integrity: sha512-DEtsxhx0LIYWkJBTQolRxG4EI0setTJkqR4m7r4YpBdxtWJH1Mbg01Cj8ZjNOO8etqfA3IZaOPHUxCs8cBsKLw==}
+ /workbox-strategies@6.6.0:
+ resolution: {integrity: sha512-eC07XGuINAKUWDnZeIPdRdVja4JQtTuc35TZ8SwMb1ztjp7Ddq2CJ4yqLvWzFWGlYI7CG/YGqaETntTxBGdKgQ==}
dependencies:
- workbox-core: 6.5.4
+ workbox-core: 6.6.0
dev: false
- /workbox-streams@6.5.4:
- resolution: {integrity: sha512-FXKVh87d2RFXkliAIheBojBELIPnWbQdyDvsH3t74Cwhg0fDheL1T8BqSM86hZvC0ZESLsznSYWw+Va+KVbUzg==}
+ /workbox-streams@6.6.0:
+ resolution: {integrity: sha512-rfMJLVvwuED09CnH1RnIep7L9+mj4ufkTyDPVaXPKlhi9+0czCu+SJggWCIFbPpJaAZmp2iyVGLqS3RUmY3fxg==}
dependencies:
- workbox-core: 6.5.4
- workbox-routing: 6.5.4
+ workbox-core: 6.6.0
+ workbox-routing: 6.6.0
dev: false
- /workbox-sw@6.5.4:
- resolution: {integrity: sha512-vo2RQo7DILVRoH5LjGqw3nphavEjK4Qk+FenXeUsknKn14eCNedHOXWbmnvP4ipKhlE35pvJ4yl4YYf6YsJArA==}
+ /workbox-sw@6.6.0:
+ resolution: {integrity: sha512-R2IkwDokbtHUE4Kus8pKO5+VkPHD2oqTgl+XJwh4zbF1HyjAbgNmK/FneZHVU7p03XUt9ICfuGDYISWG9qV/CQ==}
dev: false
- /workbox-window@6.5.4:
- resolution: {integrity: sha512-HnLZJDwYBE+hpG25AQBO8RUWBJRaCsI9ksQJEp3aCOFCaG5kqaToAYXFRAHxzRluM2cQbGzdQF5rjKPWPA1fug==}
+ /workbox-window@6.6.0:
+ resolution: {integrity: sha512-L4N9+vka17d16geaJXXRjENLFldvkWy7JyGxElRD0JvBxvFEd8LOhr+uXCcar/NzAmIBRv9EZ+M+Qr4mOoBITw==}
dependencies:
'@types/trusted-types': 2.0.3
- workbox-core: 6.5.4
+ workbox-core: 6.6.0
dev: false
/wrap-ansi@6.2.0:
@@ -13993,6 +15683,16 @@ packages:
string-width: 4.2.3
strip-ansi: 6.0.1
+ /wrap-ansi@8.1.0:
+ resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
+ engines: {node: '>=12'}
+ dependencies:
+ ansi-styles: 6.2.1
+ string-width: 5.1.2
+ strip-ansi: 7.1.0
+ dev: true
+ optional: true
+
/wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
@@ -14096,14 +15796,15 @@ packages:
/yallist@4.0.0:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
- /yaml@2.2.1:
- resolution: {integrity: sha512-e0WHiYql7+9wr4cWMx3TVQrNwejKaEe7/rHNmQmqRjazfOP5W8PB6Jpebb5o6fIapbz9o9+2ipcaTM2ZwDI6lw==}
+ /yaml@2.3.1:
+ resolution: {integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==}
engines: {node: '>= 14'}
dev: true
/yargs-parser@20.2.9:
resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
engines: {node: '>=10'}
+ dev: false
/yargs-parser@21.1.1:
resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
@@ -14120,9 +15821,10 @@ packages:
string-width: 4.2.3
y18n: 5.0.8
yargs-parser: 20.2.9
+ dev: false
- /yargs@17.7.1:
- resolution: {integrity: sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==}
+ /yargs@17.7.2:
+ resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
engines: {node: '>=12'}
dependencies:
cliui: 8.0.1
diff --git a/src/algolia.js b/src/algolia.js
index 405465ff..6f52d68e 100644
--- a/src/algolia.js
+++ b/src/algolia.js
@@ -1,5 +1,5 @@
import algoliasearch from 'algoliasearch';
-
+import {getDoc} from 'firebase/firestore';
const options = {};
if (import.meta.env.VITE_APP_ALGOLIA_HOST) {
options.hosts = [{ url: import.meta.env.VITE_APP_ALGOLIA_HOST }];
@@ -18,10 +18,21 @@ algoliaIndex.setSettings({
],
});
+
+async function updateListInAlgolia(listData) {
+ const stateGroupDoc = await getDoc(listData?.stateGroup);
+ algoliaIndex.partialUpdateObject(
+ { ...listData, stateGroup: stateGroupDoc?.data() || listData.newStateGroup, objectID: listData.id },
+ { createIfNotExists: true }
+ );
+}
+
+
export default algoliaIndex;
export {
algolia,
algoliaIndexName,
algoliaSuggestionIndexName,
algoliaIndex,
+ updateListInAlgolia,
};
diff --git a/src/components/DependencyEditor.vue b/src/components/DependencyEditor.vue
new file mode 100644
index 00000000..152eb66e
--- /dev/null
+++ b/src/components/DependencyEditor.vue
@@ -0,0 +1,142 @@
+
+
+
+
+
+
+
+
This list will only show if the dependency above are met. The format is
+ "<list_name>"."<item_name>" <operator> "<value>"
.
+ Quotes are not optional, but can be single or double-quotes.
+
+
+
+
+
+
diff --git a/src/components/ListItem.vue b/src/components/ListItem.vue
index 196b44c9..bec03e38 100644
--- a/src/components/ListItem.vue
+++ b/src/components/ListItem.vue
@@ -85,8 +85,6 @@ import {
* @property {boolean} isActive
* @property {boolean} isNewItem
* @property {string} title
- * @property {boolean} currentStateIdx
- * @property {boolean} currentStateValue
* @property {boolean} subListSlug
* @property {boolean} subListPath
* @property {boolean} subList
@@ -148,15 +146,17 @@ export default {
cycleIcon() {
if (this.isNewItem) return;
this.activate();
- let nextIdx = (this.modelValue?.currentStateIdx || 0) + 1;
- if (nextIdx > this.states.length - 1) nextIdx = 0;
- this.updateData({
- currentStateIdx: nextIdx,
- currentStateValue: this.states[nextIdx]?.value
- });
+ let nextOrdinal = (parseInt(this.modelValue?.state.order || 0, 10)) + 1;
+ const highestOrder = this.states.reduce((highest, state) => {
+ if (state.order > highest) return state.order;
+ return highest;
+ }, 0);
+ if (nextOrdinal > highestOrder) nextOrdinal = 0;
+ this.updateData({ state: this.states[nextOrdinal] });
},
updateData(data) {
- this.$emit('update:modelValue', {...this.modelValue, ...data, isNewItem: false});
+ const newData = {...this.modelValue, ...data, isNewItem: false}
+ this.$emit('update:modelValue', newData);
},
saveItem({to}) {
this.$emit('update', {...this.modelValue, skipUpdate: !!to})
@@ -185,28 +185,15 @@ export default {
return true;
},
currentColor() {
- return this.states[this.modelValue?.currentStateIdx || 0]?.color;
+ return this.modelValue?.state?.color || this.states?.[0]?.color
},
-
icon() {
if (this.isNewItem) return 'mdi-plus';
- let firstStateIndex = 0;
- if (!this.modelValue.currentStateValue) {
- let currentOrder = this.states[0].order;
- this.states.forEach((state, index) => {
- if(state.order > currentOrder) return;
- currentOrder = state.order;
- firstStateIndex = index;
- });
- }
- let currentStateIdx = this.states.findIndex((state) => state.value === (this.modelValue.currentStateValue || this.states[firstStateIndex].value) );
- if (currentStateIdx < 0) {
- return 'mdi-help-box';
- }
- return this.states[currentStateIdx || 0]?.icon;
+ if (this.modelValue.state.icon) return this.modelValue.state.icon;
+ return 'mdi-help-box';
},
iconTitle() {
- return this.states[this.modelValue?.currentStateIdx || 0]?.text;
+ return this.modelValue?.state?.text;
},
placeholder() {
return this.isNewItem ? 'New Item' : '';
diff --git a/src/components/ListPreferences.vue b/src/components/ListPreferences.vue
index 83fcc5d7..fa8bab43 100644
--- a/src/components/ListPreferences.vue
+++ b/src/components/ListPreferences.vue
@@ -76,6 +76,7 @@ export default {
description: this.list.description,
color: this.list.color,
explicitContent: false,
+ dependency: this.list?.dependency,
},
newStateGroup: null,
deletedValues: [],
@@ -95,6 +96,7 @@ export default {
description: newValue.description,
color: newValue.color,
explicitContent: newValue.explicitContent,
+ dependency: newValue?.dependency,
};
},
},
@@ -104,6 +106,7 @@ export default {
description: this.list.description,
color: this.list.color,
explicitContent: this.list.explicitContent,
+ dependency: this.list?.dependency,
};
},
methods: {
diff --git a/src/components/MDIIconChooser.vue b/src/components/MDIIconChooser.vue
index 90b49abe..c688247b 100644
--- a/src/components/MDIIconChooser.vue
+++ b/src/components/MDIIconChooser.vue
@@ -47,6 +47,7 @@ export default {
loading: false,
iconItems: [],
search: null,
+ currentQueryString: null,
};
},
props: {
@@ -74,21 +75,36 @@ export default {
},
querySelections(queryString) {
this.loading = true;
-
+ this.currentQueryString = queryString;
if (!queryString || queryString.length < 2) {
this.iconItems = [];
this.loading = false;
return;
}
- this.iconItems = this.iconInfo
+ const batchSize = 400;
+ const iconFinderPromises = [];
+ let batchStart = 0;
+ let promiseIndex = 0;
+ while(batchStart < this.iconInfo.length) {
+ batchStart = iconFinderPromises.length * batchSize;
+ iconFinderPromises.push(this.findIcon(queryString, batchStart, batchSize, promiseIndex++));
+ }
+ Promise.all(iconFinderPromises).then((lists) => {
+ this.iconItems = [].concat(...lists).slice(0, 25); // vuetify is slow to assemble the UI, so we need to limit the number of items
+ this.loading = false;
+ })
+ },
+ async findIcon(queryString, batchStart, batchSize, batchNum) {
+ const queryRegex = new RegExp(queryString, 'i');
+ return this.iconInfo.slice(batchStart, batchStart + batchSize)
.filter(
(icon) => {
if (icon.deprecated) return false;
- return icon?.title.toLowerCase().includes(queryString.toLowerCase())
- || (icon?.aliases || []).join(', ').toLowerCase().includes(queryString.toLowerCase());
+ if (queryRegex.test(icon.title)) return true;
+ if (queryRegex.test((icon?.aliases || []).join(', '))) return true;
+ return false;
}
)
- this.loading = false;
},
},
mounted() {
diff --git a/src/components/StatesEditor.vue b/src/components/StatesEditor.vue
index e462770b..78df76f4 100644
--- a/src/components/StatesEditor.vue
+++ b/src/components/StatesEditor.vue
@@ -239,7 +239,9 @@ export default {
updateItem(index, state) {
if(state.text === '' && state.icon === 'mdi-plus') return;
this.states = this.updateThisState(index, state);
- this.$emit('list:updated', { ...this.stateGroupObject, ...this.updatedStateGroup });
+ const newObject = { ...this.stateGroupObject, ...this.updatedStateGroup };
+ // newObject.states = [...newObject.states]; // reassign these to get rid of the proxy which interferes with firebase
+ this.$emit('list:updated', newObject);
},
updateThisState(index, state) {
const states = [...(this.updatedStateGroup.states.length > 0 ? this.updatedStateGroup.states : this.states)];
diff --git a/src/components/preferences/ListMetadataPreferences.vue b/src/components/preferences/ListMetadataPreferences.vue
index 02cbc573..9825846d 100644
--- a/src/components/preferences/ListMetadataPreferences.vue
+++ b/src/components/preferences/ListMetadataPreferences.vue
@@ -51,6 +51,9 @@
+
+
+
import CustomColorPicker from '../CustomColorPicker.vue';
import ColorInput from '../ColorInput.vue';
+import DependencyEditor from '../DependencyEditor.vue';
export default {
// TODO: make this component Validatable vis composition
components: {
CustomColorPicker,
- ColorInput
+ ColorInput,
+ DependencyEditor,
},
props: {
explicitContent: {
@@ -120,6 +125,11 @@ export default {
type: Boolean,
default: false,
},
+ dependency: {
+ description: 'The equation to use to show this list.',
+ type: String,
+ default: '',
+ },
},
watch: {
diff --git a/src/dependency.js b/src/dependency.js
new file mode 100644
index 00000000..7505de3d
--- /dev/null
+++ b/src/dependency.js
@@ -0,0 +1,74 @@
+
+import { getUserListStates } from './firebase';
+
+function findNextAutocomplete(equation) {
+ const equations = equation.split(/\band\b|\bor\b/i); // Split by 'and' or 'or'
+ const lastEquation = equations.at(-1);
+ const [item, stateValue] = lastEquation.split(/==|!=|in|<|<=|>|>=/ig);
+ console.log({item, stateValue});
+ const [listName, itemName] = item.split('.');
+ if(stateValue) return stateValue;
+ if(itemName) return itemName;
+ if(listName) return listName;
+ return equation;
+}
+
+/**
+ *
+ * @param {string} equation
+ * @returns {boolean}
+ */
+export async function getValueForDependency(equation) {
+ // TODO: implement this correctly
+ const equations = equation.split(/\band\b|\bor\b/i); // Split by 'and' or 'or'
+ const values = await Promise.all(equations.map(equation => getEquationValue(equation)));
+ return values.every(v => v);
+}
+
+// console.log(getValueForDependency('"list name"."list item" == "new" and "list 2"."item 2" != "old" or "list 3"."item 3" in [list 4, item 4]'));
+
+async function getEquationValue(equation) {
+ const operator = equation.match(/==|!=|\bin\b|<|<=|>|>=/ig)[0];
+ const [item, stateValue] = equation.split(operator);
+ const [listName, itemName] = item.split('.');
+
+ const arrayMatches = stateValue.match(/\[(?.*)\]/)
+ let stateValueList = arrayMatches?.groups?.list;
+
+ const listValues = await getUserListStates(listName.match(/['"](?.*)['"]/).groups.list);
+
+ const unquotedItemName = itemName.match(/['"](?.*)['"]/).groups.name;
+ const savedState = Object.entries(listValues).filter(([key, item]) => item.title === unquotedItemName)[0][1];
+
+ if (!savedState) return false;
+
+ const unquotedStateValue = stateValue.match(/['"](?.*)['"]/).groups.name;
+
+ switch (operator) {
+ case '==' : return savedState.state_name == unquotedStateValue || savedState.value == unquotedStateValue;
+ case '!=' : return savedState.state_name != unquotedStateValue || savedState.value != unquotedStateValue;
+ case '<' : return savedState.state_name < unquotedStateValue || savedState.value < unquotedStateValue;
+ case '>' : return savedState.state_name > unquotedStateValue || savedState.value > unquotedStateValue;
+ case '<=' : return savedState.state_name <= unquotedStateValue || savedState.value <= unquotedStateValue;
+ case '>=' : return savedState.state_name >= unquotedStateValue || savedState.value >= unquotedStateValue;
+ case 'in' : return stateValueList.includes(savedState.state_name) || stateValueList.includes(savedState.value);
+ default: return false;
+ }
+
+ return savedState && item.value == statevalue;
+}
+
+
+// // the equation in .
+
+// // test the list name
+// console.log(findNextAutocomplete("my_list"));
+// // test the list name, in quotes
+// console.log(findNextAutocomplete("'my list'"));
+// // test the list item
+// console.log(findNextAutocomplete("'my list'.'list_item'"));
+// // test the list item value (state)
+// console.log(findNextAutocomplete("'my list'.'list_item' == 'new'")); // should return 'new'
+
+// console.log(findNextAutocomplete("'my list'.'list_item' == 'new' and 'list 2'.'item 2' != 'old'")); // should return 'old'
+
diff --git a/src/firebase.js b/src/firebase.js
index c0b620fd..106c3f8a 100644
--- a/src/firebase.js
+++ b/src/firebase.js
@@ -3,7 +3,7 @@ import {
connectAuthEmulator,
GoogleAuthProvider,
FacebookAuthProvider,
-} from 'firebase/auth';
+} from '@firebase/auth';
import { initializeApp } from 'firebase/app';
import { initializeAppCheck, ReCaptchaV3Provider } from 'firebase/app-check';
import {
@@ -13,6 +13,7 @@ import {
addDoc,
getDocs,
getDoc,
+ or,
query,
where,
limit,
@@ -83,7 +84,6 @@ const globalPreferences = collection(db, 'globalPreferences');
const listsCollection = collection(db, 'lists');
const stateGroupsCollection = collection(db, 'stateGroups');
const usersCollection = collection(db, 'users');
-const userStatesCollection = collection(db, 'userListItemStates');
const googleOAuthLogin = new GoogleAuthProvider();
const facebookOAuthLogin = new FacebookAuthProvider();
@@ -94,7 +94,6 @@ function sanitizeDoc(doc) {
if(name && val) return {...sanitizedDoc, [name]: val};
return sanitizedDoc;
}, {});
-
}
async function computeSubListPath(subListRef, routePath) {
@@ -139,7 +138,6 @@ async function getRecentlyUsedLists() {
const querySnapshot = await getDocs(q);
const docs = [];
querySnapshot.forEach((ss) => docs.push(ss.data()));
- console.info('recent:', docs);
return docs;
}
@@ -153,7 +151,7 @@ async function updateUserItemStates(list, items) {
title: list.title,
slug: list.slug,
updated: serverTimestamp(),
- [itemIdx]: { value: state.value, title: item.title },
+ [itemIdx]: { value: state.value, state_name: state.text || '', title: item.title },
};
}, {});
const userStatesRef = doc(userDocument, 'states', list.id);
@@ -212,12 +210,13 @@ async function saveListItems(fbListId, listItems) {
listItems.forEach((listItem) => {
const sanitizedListItem = { ...listItem };
const listItemProps = Object.keys(listItem);
- if (listItemProps.includes('isNewItem')) {
- delete sanitizedListItem.isNewItem;
- }
+ if (listItemProps.includes('isNewItem')) delete sanitizedListItem.isNewItem;
if (listItemProps.includes('subList') && !sanitizedListItem.subList) {
delete sanitizedListItem.subList;
}
+ // TODO: this cleans up old data. remove after 01/01/2024
+ if (listItemProps.includes('currentStateIdx')) delete sanitizedListItem.currentStateIdx;
+ if (listItemProps.includes('currentStateValue')) delete sanitizedListItem.currentStateValue;
sanitizedItems.push(sanitizedListItem);
});
const docRef = doc(listItemsCollection, docID);
@@ -247,7 +246,7 @@ async function getListStates(fbList) {
const fbStatesDoc = await getDoc(fbList.stateGroup);
if (!fbStatesDoc) return [];
const statesDoc = fbStatesDoc.data();
- return statesDoc.states.sort((a,b) => a.order < b.order);
+ return statesDoc.states //.sort((a,b) => a.order < b.order);
}
async function ensureSlugUniqueness(title) {
@@ -281,6 +280,29 @@ async function getUserPreferences() {
console.warn("User Prefs don't exist: ", auth.currentUser?.uid, userDocument?.path);
return {};
}
+async function getUserListStates(listNameOrSlug) {
+ if (!auth.currentUser) return {};
+ const currentUserStatesCollection = collection(db, `users/${auth.currentUser?.uid}/states`);
+ const matchingStates = await getDocs(
+ query(
+ currentUserStatesCollection,
+ or(
+ where('title', '==', listNameOrSlug),
+ where('slug', '==', listNameOrSlug)
+ )
+ )
+ );
+ if (matchingStates.empty) {
+ console.warn("User States don't exist: ", auth.currentUser?.uid, matchingStates?.path);
+ return {};
+ }
+ const matchingStateData = []
+ matchingStates.forEach((state) => matchingStateData.push({...state.data(), id: state.id}));
+ if (matchingStates.size == 1) return matchingStateData[0];
+
+ return matchingStateData.filter((state) => state.slug === listNameOrSlug);
+}
+
async function createStateGroup(stateGroupData, defaultStateGroup) {
// TODO: check for groups that have the current values and use that one instead.
const defaultStateData = {}; //defaultStateGroup.states[0];
@@ -292,8 +314,7 @@ async function createStateGroup(stateGroupData, defaultStateGroup) {
(stateGroupData?.states || stateGroupData)?.map((stateBody) => ({ ...defaultStateData, ...stateBody }))
|| defaultStateGroup.states,
};
-
- const stateGroupRef = await addDoc(stateGroupsCollection, newStateGroupData);
+ const stateGroupRef = await addDoc(stateGroupsCollection, cleanObject(newStateGroupData));
return stateGroupRef;
}
async function updateStateGroup(stateGroupRef, newStateGroupData) {
@@ -325,6 +346,18 @@ async function createSubList(listItem, path, defaultStateGroup) {
}
+function cleanObject(obj, shallow = false) {
+ if(Array.isArray(obj)) return shallow ? obj : obj.map((item) => cleanObject(item));
+ if(typeof(obj) !== 'object') return obj;
+ return Object.entries(obj).reduce((res, [k, v]) => {
+ const newObj = {...res};
+ if (v) newObj[k] = shallow ? v : cleanObject(v) ;
+ return newObj;
+ }, {});
+
+}
+
+
async function createList(payload, defaultStateGroup) {
const defaultPayload = {
title: 'New List',
@@ -337,11 +370,8 @@ async function createList(payload, defaultStateGroup) {
let newPayload = { ...defaultPayload, ...payload };
newPayload.slug = await ensureSlugUniqueness(payload.title || defaultPayload.title);
newPayload.stateGroup = await createStateGroup(newPayload.newStateGroup, defaultStateGroup);
- newPayload = Object.entries(newPayload).reduce((newObj, [k, v]) => {
- if (k === 'newStateGroup') return newObj;
- if (v) newObj[k] = v; // eslint-disable-line no-param-reassign
- return newObj;
- }, {});
+ newPayload = cleanObject(newPayload, true);
+ if(Object.hasOwnProperty.call(newPayload, 'newStateGroup')) delete newPayload['newStateGroup'];
const subListDocRef = await addDoc(listsCollection, newPayload);
return {...(await getDoc(subListDocRef)).data(), id: subListDocRef.id};
}
@@ -408,6 +438,7 @@ export {
getOrderedCollectionAsList,
getRecentlyUsedLists,
getStateGroup,
+ getUserListStates,
getUserPreferences,
globalPreferences,
googleOAuthLogin,
@@ -420,5 +451,4 @@ export {
stateGroupsCollection,
updateUserItemStates,
usersCollection,
- userStatesCollection,
};
diff --git a/src/store/index.js b/src/store/index.js
index 8886f5b1..76230327 100644
--- a/src/store/index.js
+++ b/src/store/index.js
@@ -19,13 +19,13 @@ import {
createUserWithEmailAndPassword,
updateProfile,
sendEmailVerification,
-} from 'firebase/auth';
+} from '@firebase/auth';
import router from '../router';
import { getAvatarForUser, setCookie, getCookie } from '../util';
import {
reactToPrefsChange,
auth,
- createList,
+ createList as createListInFirebase,
createStateGroup,
googleOAuthLogin,
facebookOAuthLogin,
@@ -35,7 +35,7 @@ import {
getRecentlyUsedLists,
} from '../firebase';
-import { algoliaIndex } from '../algolia';
+import { algoliaIndex, updateListInAlgolia } from '../algolia';
const defaultState = {
currentUser: {
@@ -237,16 +237,14 @@ const store = createStore({
const stateGroupRef = createStateGroup(stateGroupData);
commit('addState', stateGroupRef);
},
- async createList({ state }, listData) {
+ async createList({ state, dispatch }, listData) {
let createdDocData = null;
try {
- createdDocData = await createList(listData, state.globalPreferences.defaultStateGroup);
+ createdDocData = await createListInFirebase(listData, state.globalPreferences.defaultStateGroup);
} catch (err) {
console.error(err);
}
- algoliaIndex.saveObject(
- { ...createdDocData, objectID: createdDocData.id },
- );
+ updateListInAlgolia(createdDocData);
router.push(`/Lists/${createdDocData.slug}`);
},
updateUserInfo({ commit }, payload) {
diff --git a/src/views/QuestList.vue b/src/views/QuestList.vue
index 84e780d1..4f506c27 100644
--- a/src/views/QuestList.vue
+++ b/src/views/QuestList.vue
@@ -46,6 +46,7 @@
@update:list="updateListPreferences"
/>
+ Active: {{ dependencyResolved }}
i.title) };
+ updateListInAlgolia(obj);
},
delItem(index) {
const items = this.listItems.filter((_itm, idx) => idx !== index);
diff --git a/tests/setupJest.js b/tests/setupJest.js
index 1c7b5de3..7fd91b2c 100644
--- a/tests/setupJest.js
+++ b/tests/setupJest.js
@@ -1,12 +1,12 @@
-import Vue from 'vue';
-import Vuetify from 'vuetify';
+// import Vue from 'vue';
+// import Vuetify from 'vuetify';
-Vue.use(Vuetify);
+// Vue.use(Vuetify);
-process.on('unhandledRejection', () => {
- // XXX: console.log('REJECTION', reason);
-});
+// process.on('unhandledRejection', () => {
+// // XXX: console.log('REJECTION', reason);
+// });
-export default async () => {
- // XXX: toHaveBeenWarnedInit();
-};
+// export default async () => {
+// // XXX: toHaveBeenWarnedInit();
+// };