diff --git a/integrations/react-cra4/.eslintrc.cjs b/integrations/react-cra4/.eslintrc.cjs
deleted file mode 100644
index cb40aee1b4..0000000000
--- a/integrations/react-cra4/.eslintrc.cjs
+++ /dev/null
@@ -1,9 +0,0 @@
-/** @type {import('eslint').Linter.Config} */
-module.exports = {
- extends: ['plugin:react/jsx-runtime', 'plugin:react-hooks/recommended'],
- settings: {
- react: {
- version: 'detect',
- },
- },
-}
diff --git a/integrations/react-cra4/.gitignore b/integrations/react-cra4/.gitignore
deleted file mode 100644
index 4d29575de8..0000000000
--- a/integrations/react-cra4/.gitignore
+++ /dev/null
@@ -1,23 +0,0 @@
-# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
-
-# dependencies
-/node_modules
-/.pnp
-.pnp.js
-
-# testing
-/coverage
-
-# production
-/build
-
-# misc
-.DS_Store
-.env.local
-.env.development.local
-.env.test.local
-.env.production.local
-
-npm-debug.log*
-yarn-debug.log*
-yarn-error.log*
diff --git a/integrations/react-cra4/package.json b/integrations/react-cra4/package.json
deleted file mode 100644
index a0f4bf9177..0000000000
--- a/integrations/react-cra4/package.json
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- "name": "react-cra4",
- "private": true,
- "scripts": {
- "build": "cross-env DISABLE_ESLINT_PLUGIN=true SKIP_PREFLIGHT_CHECK=true NODE_OPTIONS=--openssl-legacy-provider react-scripts build"
- },
- "dependencies": {
- "@tanstack/react-query": "workspace:*",
- "@tanstack/react-query-devtools": "workspace:*",
- "react": "19.0.0-rc-4c2e457c7c-20240522",
- "react-dom": "19.0.0-rc-4c2e457c7c-20240522",
- "react-scripts": "4.0.3"
- },
- "devDependencies": {
- "cross-env": "^7.0.3"
- },
- "browserslist": {
- "production": [
- ">0.2%",
- "not dead",
- "not op_mini all"
- ],
- "development": [
- "last 1 chrome version",
- "last 1 firefox version",
- "last 1 safari version"
- ]
- }
-}
diff --git a/integrations/react-cra4/src/react-app-env.d.ts b/integrations/react-cra4/src/react-app-env.d.ts
deleted file mode 100644
index 6431bc5fc6..0000000000
--- a/integrations/react-cra4/src/react-app-env.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-///
diff --git a/integrations/react-cra4/tsconfig.json b/integrations/react-cra4/tsconfig.json
deleted file mode 100644
index ca2f77f62a..0000000000
--- a/integrations/react-cra4/tsconfig.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "compilerOptions": {
- "target": "ES2020",
- "lib": ["dom", "dom.iterable", "esnext"],
- "allowJs": true,
- "skipLibCheck": true,
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true,
- "strict": true,
- "forceConsistentCasingInFileNames": true,
- "noFallthroughCasesInSwitch": true,
- "module": "esnext",
- "moduleResolution": "node",
- "resolveJsonModule": true,
- "isolatedModules": true,
- "noEmit": true,
- "jsx": "react-jsx"
- },
- "include": ["src", ".eslintrc.cjs"]
-}
diff --git a/integrations/react-webpack-4/package.json b/integrations/react-webpack-4/package.json
new file mode 100644
index 0000000000..925f157c0d
--- /dev/null
+++ b/integrations/react-webpack-4/package.json
@@ -0,0 +1,23 @@
+{
+ "name": "react-webpack-4",
+ "private": true,
+ "scripts": {
+ "build": "cross-env NODE_OPTIONS=--openssl-legacy-provider webpack --mode production"
+ },
+ "dependencies": {
+ "@babel/core": "^7.26.0",
+ "@babel/preset-env": "^7.26.0",
+ "@babel/preset-react": "^7.25.9",
+ "@tanstack/react-query": "workspace:*",
+ "@tanstack/react-query-devtools": "workspace:*",
+ "babel-loader": "^8.3.0",
+ "html-webpack-plugin": "^4.5.2",
+ "react": "19.0.0-rc-4c2e457c7c-20240522",
+ "react-dom": "19.0.0-rc-4c2e457c7c-20240522",
+ "webpack": "^4.44.2",
+ "webpack-cli": "^4.10.0"
+ },
+ "devDependencies": {
+ "cross-env": "^7.0.3"
+ }
+}
diff --git a/integrations/react-cra4/public/index.html b/integrations/react-webpack-4/public/index.html
similarity index 73%
rename from integrations/react-cra4/public/index.html
rename to integrations/react-webpack-4/public/index.html
index 0187fadcf0..890247a239 100644
--- a/integrations/react-cra4/public/index.html
+++ b/integrations/react-webpack-4/public/index.html
@@ -1,8 +1,8 @@
-
- React App
+
+ react-webpack-4
diff --git a/integrations/react-cra4/src/App.jsx b/integrations/react-webpack-4/src/App.js
similarity index 100%
rename from integrations/react-cra4/src/App.jsx
rename to integrations/react-webpack-4/src/App.js
diff --git a/integrations/react-cra4/src/index.jsx b/integrations/react-webpack-4/src/index.js
similarity index 100%
rename from integrations/react-cra4/src/index.jsx
rename to integrations/react-webpack-4/src/index.js
diff --git a/integrations/react-webpack-4/webpack.config.js b/integrations/react-webpack-4/webpack.config.js
new file mode 100644
index 0000000000..2bd2128348
--- /dev/null
+++ b/integrations/react-webpack-4/webpack.config.js
@@ -0,0 +1,24 @@
+const HtmlWebPackPlugin = require('html-webpack-plugin')
+
+const htmlPlugin = new HtmlWebPackPlugin({
+ template: './public/index.html',
+ filename: './index.html',
+})
+
+module.exports = {
+ module: {
+ rules: [
+ {
+ test: /\.(?:js|mjs|cjs|jsx)$/,
+ exclude: /node_modules/,
+ use: {
+ loader: 'babel-loader',
+ options: {
+ presets: ['@babel/preset-env', '@babel/preset-react'],
+ },
+ },
+ },
+ ],
+ },
+ plugins: [htmlPlugin],
+}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 1abdbc2259..1b396b7aaf 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -211,7 +211,7 @@ importers:
devDependencies:
'@angular-devkit/build-angular':
specifier: ^17.3.8
- version: 17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(@types/express@4.17.21)(@types/node@22.7.4)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.93.0(esbuild@0.21.5)))(ng-packagr@17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3)
+ version: 17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(@types/express@4.17.21)(@types/node@22.7.4)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.93.0(esbuild@0.21.5)))(ng-packagr@17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(tailwindcss@3.4.7)(tslib@2.7.0)(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3)
'@angular/cli':
specifier: ^17.3.8
version: 17.3.8(chokidar@3.6.0)
@@ -254,7 +254,7 @@ importers:
devDependencies:
'@angular-devkit/build-angular':
specifier: ^17.3.8
- version: 17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(@types/express@4.17.21)(@types/node@22.7.4)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.93.0(esbuild@0.21.5)))(ng-packagr@17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3)
+ version: 17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(@types/express@4.17.21)(@types/node@22.7.4)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.93.0(esbuild@0.21.5)))(ng-packagr@17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(tailwindcss@3.4.7)(tslib@2.7.0)(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3)
'@angular/cli':
specifier: ^17.3.8
version: 17.3.8(chokidar@3.6.0)
@@ -297,7 +297,7 @@ importers:
devDependencies:
'@angular-devkit/build-angular':
specifier: ^17.3.8
- version: 17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(@types/express@4.17.21)(@types/node@22.7.4)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.93.0(esbuild@0.21.5)))(ng-packagr@17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3)
+ version: 17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(@types/express@4.17.21)(@types/node@22.7.4)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.93.0(esbuild@0.21.5)))(ng-packagr@17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(tailwindcss@3.4.7)(tslib@2.7.0)(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3)
'@angular/cli':
specifier: ^17.3.8
version: 17.3.8(chokidar@3.6.0)
@@ -343,7 +343,7 @@ importers:
devDependencies:
'@angular-devkit/build-angular':
specifier: ^17.3.8
- version: 17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(@types/express@4.17.21)(@types/node@22.7.4)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.93.0(esbuild@0.21.5)))(ng-packagr@17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3)
+ version: 17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(@types/express@4.17.21)(@types/node@22.7.4)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.93.0(esbuild@0.21.5)))(ng-packagr@17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(tailwindcss@3.4.7)(tslib@2.7.0)(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3)
'@angular/cli':
specifier: ^17.3.8
version: 17.3.8(chokidar@3.6.0)
@@ -389,7 +389,7 @@ importers:
devDependencies:
'@angular-devkit/build-angular':
specifier: ^17.3.8
- version: 17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(@types/express@4.17.21)(@types/node@22.7.4)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.93.0(esbuild@0.21.5)))(ng-packagr@17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3)
+ version: 17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(@types/express@4.17.21)(@types/node@22.7.4)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.93.0(esbuild@0.21.5)))(ng-packagr@17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(tailwindcss@3.4.7)(tslib@2.7.0)(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3)
'@angular/cli':
specifier: ^17.3.8
version: 17.3.8(chokidar@3.6.0)
@@ -435,7 +435,7 @@ importers:
devDependencies:
'@angular-devkit/build-angular':
specifier: ^17.3.8
- version: 17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(@types/express@4.17.21)(@types/node@22.7.4)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.93.0(esbuild@0.21.5)))(ng-packagr@17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3)
+ version: 17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(@types/express@4.17.21)(@types/node@22.7.4)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.93.0(esbuild@0.21.5)))(ng-packagr@17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(tailwindcss@3.4.7)(tslib@2.7.0)(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3)
'@angular/cli':
specifier: ^17.3.8
version: 17.3.8(chokidar@3.6.0)
@@ -478,7 +478,7 @@ importers:
devDependencies:
'@angular-devkit/build-angular':
specifier: ^17.3.8
- version: 17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(@types/express@4.17.21)(@types/node@22.7.4)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.93.0(esbuild@0.21.5)))(ng-packagr@17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3)
+ version: 17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(@types/express@4.17.21)(@types/node@22.7.4)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.93.0(esbuild@0.21.5)))(ng-packagr@17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(tailwindcss@3.4.7)(tslib@2.7.0)(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3)
'@angular/cli':
specifier: ^17.3.8
version: 17.3.8(chokidar@3.6.0)
@@ -996,13 +996,13 @@ importers:
dependencies:
'@react-native-community/netinfo':
specifier: ^11.3.2
- version: 11.3.2(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))
+ version: 11.3.2(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))
'@react-navigation/native':
specifier: ^6.1.18
- version: 6.1.18(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)
+ version: 6.1.18(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)
'@react-navigation/stack':
specifier: ^6.4.1
- version: 6.4.1(hz73ogopnnbu7tdkoevhdncb4q)
+ version: 6.4.1(z4okqs3etojtcdqoipgakagj2y)
'@tanstack/react-query':
specifier: ^5.61.0
version: link:../../../packages/react-query
@@ -1011,10 +1011,10 @@ importers:
version: link:../../../packages/react-query-devtools
expo:
specifier: ^51.0.22
- version: 51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)
+ version: 51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)
expo-constants:
specifier: ^16.0.2
- version: 16.0.2(expo@51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13))
+ version: 16.0.2(expo@51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13))
expo-status-bar:
specifier: ^1.12.1
version: 1.12.1
@@ -1023,22 +1023,22 @@ importers:
version: 19.0.0-rc-4c2e457c7c-20240522
react-native:
specifier: ^0.74.3
- version: 0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1)
+ version: 0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1)
react-native-gesture-handler:
specifier: ^2.17.1
- version: 2.18.0(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)
+ version: 2.18.0(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)
react-native-paper:
specifier: ^5.12.5
- version: 5.12.5(react-native-safe-area-context@4.10.8(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522))(react-native-vector-icons@10.1.0)(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)
+ version: 5.12.5(react-native-safe-area-context@4.10.8(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522))(react-native-vector-icons@10.1.0)(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)
react-native-reanimated:
specifier: ^3.14.0
- version: 3.14.0(@babel/core@7.25.2)(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)
+ version: 3.14.0(@babel/core@7.25.2)(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)
react-native-safe-area-context:
specifier: ^4.10.8
- version: 4.10.8(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)
+ version: 4.10.8(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)
react-native-screens:
specifier: ^3.32.0
- version: 3.33.0(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)
+ version: 3.33.0(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)
react-native-web:
specifier: ^0.19.12
version: 0.19.12(encoding@0.1.13)(react-dom@19.0.0-rc-4c2e457c7c-20240522(react@19.0.0-rc-4c2e457c7c-20240522))(react@19.0.0-rc-4c2e457c7c-20240522)
@@ -1294,7 +1294,7 @@ importers:
version: 5.1.0(astro@4.12.3(@types/node@22.7.4)(less@4.2.0)(sass@1.77.8)(terser@5.31.3)(typescript@5.3.3))(tailwindcss@3.4.7)
'@astrojs/vercel':
specifier: ^7.7.2
- version: 7.7.2(astro@4.12.3(@types/node@22.7.4)(less@4.2.0)(sass@1.77.8)(terser@5.31.3)(typescript@5.3.3))(encoding@0.1.13)(next@14.2.5(@babel/core@7.25.2)(react-dom@19.0.0-rc-4c2e457c7c-20240522(react@19.0.0-rc-4c2e457c7c-20240522))(react@18.3.1)(sass@1.77.8))(react@18.3.1)
+ version: 7.7.2(astro@4.12.3(@types/node@22.7.4)(less@4.2.0)(sass@1.77.8)(terser@5.31.3)(typescript@5.3.3))(encoding@0.1.13)(next@14.2.5(@babel/core@7.25.2)(react-dom@19.0.0-rc-4c2e457c7c-20240522(react@18.3.1))(react@18.3.1)(sass@1.77.8))(react@18.3.1)
'@tanstack/solid-query':
specifier: ^5.60.6
version: link:../../../packages/solid-query
@@ -1815,7 +1815,7 @@ importers:
devDependencies:
'@angular-devkit/build-angular':
specifier: ^17.3.8
- version: 17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(@types/express@4.17.21)(@types/node@22.7.4)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.93.0(esbuild@0.21.5)))(ng-packagr@17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3)
+ version: 17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(@types/express@4.17.21)(@types/node@22.7.4)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.93.0(esbuild@0.21.5)))(ng-packagr@17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(tailwindcss@3.4.7)(tslib@2.7.0)(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3)
'@angular/cli':
specifier: ^17.3.8
version: 17.3.8(chokidar@3.6.0)
@@ -1826,28 +1826,6 @@ importers:
specifier: 5.3.3
version: 5.3.3
- integrations/react-cra4:
- dependencies:
- '@tanstack/react-query':
- specifier: workspace:*
- version: link:../../packages/react-query
- '@tanstack/react-query-devtools':
- specifier: workspace:*
- version: link:../../packages/react-query-devtools
- react:
- specifier: 19.0.0-rc-4c2e457c7c-20240522
- version: 19.0.0-rc-4c2e457c7c-20240522
- react-dom:
- specifier: 19.0.0-rc-4c2e457c7c-20240522
- version: 19.0.0-rc-4c2e457c7c-20240522(react@19.0.0-rc-4c2e457c7c-20240522)
- react-scripts:
- specifier: 4.0.3
- version: 4.0.3(@types/webpack@4.41.38)(eslint@9.9.1(jiti@1.21.6))(react@19.0.0-rc-4c2e457c7c-20240522)(sass@1.77.8)(sockjs-client@1.6.1)(typescript@5.4.2)(vue-template-compiler@2.7.16)
- devDependencies:
- cross-env:
- specifier: ^7.0.3
- version: 7.0.3
-
integrations/react-cra5:
dependencies:
'@tanstack/react-query':
@@ -1953,6 +1931,46 @@ importers:
specifier: ^5.3.5
version: 5.4.8(@types/node@22.7.4)(less@4.2.0)(sass@1.77.8)(terser@5.31.3)
+ integrations/react-webpack-4:
+ dependencies:
+ '@babel/core':
+ specifier: ^7.26.0
+ version: 7.26.0
+ '@babel/preset-env':
+ specifier: ^7.26.0
+ version: 7.26.0(@babel/core@7.26.0)
+ '@babel/preset-react':
+ specifier: ^7.25.9
+ version: 7.25.9(@babel/core@7.26.0)
+ '@tanstack/react-query':
+ specifier: workspace:*
+ version: link:../../packages/react-query
+ '@tanstack/react-query-devtools':
+ specifier: workspace:*
+ version: link:../../packages/react-query-devtools
+ babel-loader:
+ specifier: ^8.3.0
+ version: 8.3.0(@babel/core@7.26.0)(webpack@4.44.2)
+ html-webpack-plugin:
+ specifier: ^4.5.2
+ version: 4.5.2(webpack@4.44.2)
+ react:
+ specifier: 19.0.0-rc-4c2e457c7c-20240522
+ version: 19.0.0-rc-4c2e457c7c-20240522
+ react-dom:
+ specifier: 19.0.0-rc-4c2e457c7c-20240522
+ version: 19.0.0-rc-4c2e457c7c-20240522(react@19.0.0-rc-4c2e457c7c-20240522)
+ webpack:
+ specifier: ^4.44.2
+ version: 4.44.2(webpack-cli@4.10.0)
+ webpack-cli:
+ specifier: ^4.10.0
+ version: 4.10.0(webpack@4.44.2)
+ devDependencies:
+ cross-env:
+ specifier: ^7.0.3
+ version: 7.0.3
+
integrations/solid-vite:
dependencies:
'@tanstack/solid-query':
@@ -2022,7 +2040,7 @@ importers:
devDependencies:
'@analogjs/vite-plugin-angular':
specifier: ^1.6.4
- version: 1.6.4(@angular-devkit/build-angular@17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(@types/express@4.17.21)(@types/node@22.7.4)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.93.0(esbuild@0.19.12)))(ng-packagr@17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3))(@ngtools/webpack@17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(typescript@5.3.3)(webpack@5.93.0(esbuild@0.19.12)))
+ version: 1.6.4(@angular-devkit/build-angular@17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(@types/express@4.17.21)(@types/node@22.7.4)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.93.0(esbuild@0.19.12)))(ng-packagr@17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(tailwindcss@3.4.7)(tslib@2.7.0)(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3))(@ngtools/webpack@17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(typescript@5.3.3)(webpack@5.93.0(esbuild@0.19.12)))
'@angular/core':
specifier: ^17.3.12
version: 17.3.12(rxjs@7.8.1)(zone.js@0.14.8)
@@ -2056,7 +2074,7 @@ importers:
devDependencies:
'@analogjs/vite-plugin-angular':
specifier: ^1.6.4
- version: 1.6.4(@angular-devkit/build-angular@17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(@types/express@4.17.21)(@types/node@22.7.4)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.93.0(esbuild@0.21.5)))(ng-packagr@17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3))(@ngtools/webpack@17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(typescript@5.3.3)(webpack@5.93.0(esbuild@0.21.5)))
+ version: 1.6.4(@angular-devkit/build-angular@17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(@types/express@4.17.21)(@types/node@22.7.4)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.93.0(esbuild@0.21.5)))(ng-packagr@17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(tailwindcss@3.4.7)(tslib@2.7.0)(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3))(@ngtools/webpack@17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(typescript@5.3.3)(webpack@5.93.0(esbuild@0.21.5)))
'@angular/compiler':
specifier: ^17.3.12
version: 17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8))
@@ -2120,7 +2138,7 @@ importers:
version: 0.11.11
jscodeshift:
specifier: 17.0.0
- version: 17.0.0(@babel/preset-env@7.25.3(@babel/core@7.25.2))
+ version: 17.0.0(@babel/preset-env@7.26.0(@babel/core@7.26.0))
packages/query-core: {}
@@ -2731,12 +2749,16 @@ packages:
resolution: {integrity: sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==}
engines: {node: '>=6.9.0'}
+ '@babel/code-frame@7.26.2':
+ resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
+ engines: {node: '>=6.9.0'}
+
'@babel/compat-data@7.25.2':
resolution: {integrity: sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.12.3':
- resolution: {integrity: sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==}
+ '@babel/compat-data@7.26.2':
+ resolution: {integrity: sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==}
engines: {node: '>=6.9.0'}
'@babel/core@7.23.9':
@@ -2751,6 +2773,10 @@ packages:
resolution: {integrity: sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==}
engines: {node: '>=6.9.0'}
+ '@babel/core@7.26.0':
+ resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==}
+ engines: {node: '>=6.9.0'}
+
'@babel/generator@7.23.6':
resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==}
engines: {node: '>=6.9.0'}
@@ -2759,6 +2785,10 @@ packages:
resolution: {integrity: sha512-5Dqpl5fyV9pIAD62yK9P7fcA768uVPUyrQmqpqstHWgMma4feF1x/oFysBCVZLY5wJ2GkMUCdsNDnGZrPoR6rA==}
engines: {node: '>=6.9.0'}
+ '@babel/generator@7.26.2':
+ resolution: {integrity: sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-annotate-as-pure@7.22.5':
resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
engines: {node: '>=6.9.0'}
@@ -2767,26 +2797,50 @@ packages:
resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-annotate-as-pure@7.25.9':
+ resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-builder-binary-assignment-operator-visitor@7.24.7':
resolution: {integrity: sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-builder-binary-assignment-operator-visitor@7.25.9':
+ resolution: {integrity: sha512-C47lC7LIDCnz0h4vai/tpNOI95tCd5ZT3iBt/DBH5lXKHZsyNQv18yf1wIIg2ntiQNgmAvA+DgZ82iW8Qdym8g==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-compilation-targets@7.25.2':
resolution: {integrity: sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-compilation-targets@7.25.9':
+ resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-create-class-features-plugin@7.25.0':
resolution: {integrity: sha512-GYM6BxeQsETc9mnct+nIIpf63SAyzvyYN7UB/IlTyd+MBg06afFGp0mIeUqGyWgS2mxad6vqbMrHVlaL3m70sQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-create-class-features-plugin@7.25.9':
+ resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/helper-create-regexp-features-plugin@7.25.2':
resolution: {integrity: sha512-+wqVGP+DFmqwFD3EH6TMTfUNeqDehV3E/dl+Sd54eaXqm17tEUNbEIn4sVivVowbvUpOtIGxdo3GoXyDH9N/9g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-create-regexp-features-plugin@7.25.9':
+ resolution: {integrity: sha512-ORPNZ3h6ZRkOyAa/SaHU+XsLZr0UQzRwuDQ0cczIA17nAzZ+85G5cVkOJIj7QavLZGSe8QXUmNFxSZzjcZF9bw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/helper-define-polyfill-provider@0.5.0':
resolution: {integrity: sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q==}
peerDependencies:
@@ -2805,6 +2859,10 @@ packages:
resolution: {integrity: sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-member-expression-to-functions@7.25.9':
+ resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-module-imports@7.18.6':
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
engines: {node: '>=6.9.0'}
@@ -2813,40 +2871,78 @@ packages:
resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-module-imports@7.25.9':
+ resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-module-transforms@7.25.2':
resolution: {integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-module-transforms@7.26.0':
+ resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/helper-optimise-call-expression@7.24.7':
resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-optimise-call-expression@7.25.9':
+ resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-plugin-utils@7.25.7':
resolution: {integrity: sha512-eaPZai0PiqCi09pPs3pAFfl/zYgGaE6IdXtYvmf0qlcDTd3WCtO7JWCcRd64e0EQrcYgiHibEZnOGsSY4QSgaw==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-plugin-utils@7.25.9':
+ resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-remap-async-to-generator@7.25.0':
resolution: {integrity: sha512-NhavI2eWEIz/H9dbrG0TuOicDhNexze43i5z7lEqwYm0WEZVTwnPpA0EafUTP7+6/W79HWIP2cTe3Z5NiSTVpw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-remap-async-to-generator@7.25.9':
+ resolution: {integrity: sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/helper-replace-supers@7.25.0':
resolution: {integrity: sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-replace-supers@7.25.9':
+ resolution: {integrity: sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/helper-simple-access@7.24.7':
resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-simple-access@7.25.9':
+ resolution: {integrity: sha512-c6WHXuiaRsJTyHYLJV75t9IqsmTbItYfdj99PnzYGQZkYKvan5/2jKJ7gu31J3/BJ/A18grImSPModuyG/Eo0Q==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-skip-transparent-expression-wrappers@7.24.7':
resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
+ resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-split-export-declaration@7.22.6':
resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
engines: {node: '>=6.9.0'}
@@ -2855,22 +2951,42 @@ packages:
resolution: {integrity: sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-string-parser@7.25.9':
+ resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-validator-identifier@7.25.7':
resolution: {integrity: sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-validator-identifier@7.25.9':
+ resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-validator-option@7.24.8':
resolution: {integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-validator-option@7.25.9':
+ resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-wrap-function@7.25.0':
resolution: {integrity: sha512-s6Q1ebqutSiZnEjaofc/UKDyC4SbzV5n5SrA2Gq8UawLycr3i04f1dX4OzoQVnexm6aOCh37SQNYlJ/8Ku+PMQ==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-wrap-function@7.25.9':
+ resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helpers@7.25.0':
resolution: {integrity: sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==}
engines: {node: '>=6.9.0'}
+ '@babel/helpers@7.26.0':
+ resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/highlight@7.25.7':
resolution: {integrity: sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==}
engines: {node: '>=6.9.0'}
@@ -2880,14 +2996,19 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.3':
- resolution: {integrity: sha512-wUrcsxZg6rqBXG05HG1FPYgsP6EvwF4WpBbxIpWIIYnH8wG0gzx3yZY3dtEHas4sTAOGkbTsc9EGPxwff8lRoA==}
+ '@babel/parser@7.26.2':
+ resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9':
+ resolution: {integrity: sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.0':
- resolution: {integrity: sha512-Bm4bH2qsX880b/3ziJ8KD711LT7z4u8CFudmjqle65AZj/HNUFhEf90dqYv6O86buWvSBmeQDjv0Tn2aF/bIBA==}
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9':
+ resolution: {integrity: sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -2898,18 +3019,36 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9':
+ resolution: {integrity: sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7':
resolution: {integrity: sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9':
+ resolution: {integrity: sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.13.0
+
'@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.0':
resolution: {integrity: sha512-tggFrk1AIShG/RUQbEwt2Tr/E+ObkfwrPjR6BjbRvsx24+PSjK8zrq0GWPNCjo8qpRx4DuJzlcvWJqlm+0h3kw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9':
+ resolution: {integrity: sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/plugin-proposal-async-generator-functions@7.20.7':
resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
engines: {node: '>=6.9.0'}
@@ -3048,12 +3187,24 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-syntax-import-assertions@7.26.0':
+ resolution: {integrity: sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-syntax-import-attributes@7.25.7':
resolution: {integrity: sha512-AqVo+dguCgmpi/3mYBdu9lkngOBlQ2w2vnNpa6gfiCxQZLzV4ZbhsXitJ2Yblkoe1VQwtHSaNmIaGll/26YWRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-syntax-import-attributes@7.26.0':
+ resolution: {integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-syntax-import-meta@7.10.4':
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
@@ -3070,6 +3221,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-syntax-jsx@7.25.9':
+ resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-syntax-logical-assignment-operators@7.10.4':
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
@@ -3130,6 +3287,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-arrow-functions@7.25.9':
+ resolution: {integrity: sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-async-generator-functions@7.23.9':
resolution: {integrity: sha512-8Q3veQEDGe14dTYuwagbRtwxQDnytyg1JFu4/HwEMETeofocrB0U0ejBJIXoeG/t2oXZ8kzCyI0ZZfbT80VFNQ==}
engines: {node: '>=6.9.0'}
@@ -3142,6 +3305,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-async-generator-functions@7.25.9':
+ resolution: {integrity: sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-async-to-generator@7.23.3':
resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==}
engines: {node: '>=6.9.0'}
@@ -3154,62 +3323,122 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-async-to-generator@7.25.9':
+ resolution: {integrity: sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-block-scoped-functions@7.24.7':
resolution: {integrity: sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-block-scoped-functions@7.25.9':
+ resolution: {integrity: sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-block-scoping@7.25.0':
resolution: {integrity: sha512-yBQjYoOjXlFv9nlXb3f1casSHOZkWr29NX+zChVanLg5Nc157CrbEX9D7hxxtTpuFy7Q0YzmmWfJxzvps4kXrQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-block-scoping@7.25.9':
+ resolution: {integrity: sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-class-properties@7.24.7':
resolution: {integrity: sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-class-properties@7.25.9':
+ resolution: {integrity: sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-class-static-block@7.24.7':
resolution: {integrity: sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
+ '@babel/plugin-transform-class-static-block@7.26.0':
+ resolution: {integrity: sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.12.0
+
'@babel/plugin-transform-classes@7.25.0':
resolution: {integrity: sha512-xyi6qjr/fYU304fiRwFbekzkqVJZ6A7hOjWZd+89FVcBqPV3S9Wuozz82xdpLspckeaafntbzglaW4pqpzvtSw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-classes@7.25.9':
+ resolution: {integrity: sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-computed-properties@7.24.7':
resolution: {integrity: sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-computed-properties@7.25.9':
+ resolution: {integrity: sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-destructuring@7.24.8':
resolution: {integrity: sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-destructuring@7.25.9':
+ resolution: {integrity: sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-dotall-regex@7.24.7':
resolution: {integrity: sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-dotall-regex@7.25.9':
+ resolution: {integrity: sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-duplicate-keys@7.24.7':
resolution: {integrity: sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.0':
- resolution: {integrity: sha512-YLpb4LlYSc3sCUa35un84poXoraOiQucUTTu8X1j18JV+gNa8E0nyUf/CjZ171IRGr4jEguF+vzJU66QZhn29g==}
+ '@babel/plugin-transform-duplicate-keys@7.25.9':
+ resolution: {integrity: sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9':
+ resolution: {integrity: sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -3220,18 +3449,36 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-dynamic-import@7.25.9':
+ resolution: {integrity: sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-exponentiation-operator@7.24.7':
resolution: {integrity: sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-exponentiation-operator@7.25.9':
+ resolution: {integrity: sha512-KRhdhlVk2nObA5AYa7QMgTMTVJdfHprfpAk4DjZVtllqRg9qarilstTKEhpVjyt+Npi8ThRyiV8176Am3CodPA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-export-namespace-from@7.24.7':
resolution: {integrity: sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-export-namespace-from@7.25.9':
+ resolution: {integrity: sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-flow-strip-types@7.25.2':
resolution: {integrity: sha512-InBZ0O8tew5V0K6cHcQ+wgxlrjOw1W4wDXLkOTjLRD8GYhTSkxTVBtdy3MMtvYBrbAWa1Qm3hNoTc1620Yj+Mg==}
engines: {node: '>=6.9.0'}
@@ -3244,132 +3491,264 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-for-of@7.25.9':
+ resolution: {integrity: sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-function-name@7.25.1':
resolution: {integrity: sha512-TVVJVdW9RKMNgJJlLtHsKDTydjZAbwIsn6ySBPQaEAUU5+gVvlJt/9nRmqVbsV/IBanRjzWoaAQKLoamWVOUuA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-function-name@7.25.9':
+ resolution: {integrity: sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-json-strings@7.24.7':
resolution: {integrity: sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-json-strings@7.25.9':
+ resolution: {integrity: sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-literals@7.25.2':
resolution: {integrity: sha512-HQI+HcTbm9ur3Z2DkO+jgESMAMcYLuN/A7NRw9juzxAezN9AvqvUTnpKP/9kkYANz6u7dFlAyOu44ejuGySlfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-literals@7.25.9':
+ resolution: {integrity: sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-logical-assignment-operators@7.24.7':
resolution: {integrity: sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-logical-assignment-operators@7.25.9':
+ resolution: {integrity: sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-member-expression-literals@7.24.7':
resolution: {integrity: sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-member-expression-literals@7.25.9':
+ resolution: {integrity: sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-modules-amd@7.24.7':
resolution: {integrity: sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-modules-amd@7.25.9':
+ resolution: {integrity: sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-modules-commonjs@7.24.8':
resolution: {integrity: sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-modules-commonjs@7.25.9':
+ resolution: {integrity: sha512-dwh2Ol1jWwL2MgkCzUSOvfmKElqQcuswAZypBSUsScMXvgdT8Ekq5YA6TtqpTVWH+4903NmboMuH1o9i8Rxlyg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-modules-systemjs@7.25.0':
resolution: {integrity: sha512-YPJfjQPDXxyQWg/0+jHKj1llnY5f/R6a0p/vP4lPymxLu7Lvl4k2WMitqi08yxwQcCVUUdG9LCUj4TNEgAp3Jw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-modules-systemjs@7.25.9':
+ resolution: {integrity: sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-modules-umd@7.24.7':
resolution: {integrity: sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-modules-umd@7.25.9':
+ resolution: {integrity: sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-named-capturing-groups-regex@7.24.7':
resolution: {integrity: sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/plugin-transform-named-capturing-groups-regex@7.25.9':
+ resolution: {integrity: sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/plugin-transform-new-target@7.24.7':
resolution: {integrity: sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-new-target@7.25.9':
+ resolution: {integrity: sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-nullish-coalescing-operator@7.24.7':
resolution: {integrity: sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-nullish-coalescing-operator@7.25.9':
+ resolution: {integrity: sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-numeric-separator@7.24.7':
resolution: {integrity: sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-numeric-separator@7.25.9':
+ resolution: {integrity: sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-object-rest-spread@7.24.7':
resolution: {integrity: sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-object-rest-spread@7.25.9':
+ resolution: {integrity: sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-object-super@7.24.7':
resolution: {integrity: sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-object-super@7.25.9':
+ resolution: {integrity: sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-optional-catch-binding@7.24.7':
resolution: {integrity: sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-optional-catch-binding@7.25.9':
+ resolution: {integrity: sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-optional-chaining@7.24.8':
resolution: {integrity: sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-optional-chaining@7.25.9':
+ resolution: {integrity: sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-parameters@7.24.7':
resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-parameters@7.25.9':
+ resolution: {integrity: sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-private-methods@7.24.7':
resolution: {integrity: sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-private-methods@7.25.9':
+ resolution: {integrity: sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-private-property-in-object@7.24.7':
resolution: {integrity: sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-private-property-in-object@7.25.9':
+ resolution: {integrity: sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-property-literals@7.24.7':
resolution: {integrity: sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-property-literals@7.25.9':
+ resolution: {integrity: sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-react-constant-elements@7.25.1':
resolution: {integrity: sha512-SLV/giH/V4SmloZ6Dt40HjTGTAIkxn33TVIHxNGNvo8ezMhrxBkzisj4op1KZYPIOHFLqhv60OHvX+YRu4xbmQ==}
engines: {node: '>=6.9.0'}
@@ -3382,8 +3761,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-development@7.24.7':
- resolution: {integrity: sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==}
+ '@babel/plugin-transform-react-display-name@7.25.9':
+ resolution: {integrity: sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-react-jsx-development@7.25.9':
+ resolution: {integrity: sha512-9mj6rm7XVYs4mdLIpbZnHOYdpW42uoiBCTVowg7sP1thUOiANgMb4UtpRivR0pp5iL+ocvUv7X4mZgFRpJEzGw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -3406,8 +3791,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-pure-annotations@7.24.7':
- resolution: {integrity: sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA==}
+ '@babel/plugin-transform-react-jsx@7.25.9':
+ resolution: {integrity: sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-react-pure-annotations@7.25.9':
+ resolution: {integrity: sha512-KQ/Takk3T8Qzj5TppkS1be588lkbTp5uj7w6a0LeQaTMSckU/wK0oJ/pih+T690tkgI5jfmg2TqDJvd41Sj1Cg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -3418,12 +3809,30 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-regenerator@7.25.9':
+ resolution: {integrity: sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-regexp-modifiers@7.26.0':
+ resolution: {integrity: sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/plugin-transform-reserved-words@7.24.7':
resolution: {integrity: sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-reserved-words@7.25.9':
+ resolution: {integrity: sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-runtime@7.24.0':
resolution: {integrity: sha512-zc0GA5IitLKJrSfXlXmp8KDqLrnGECK7YRfQBmEKg1NmBOQ7e+KuclBEKJgzifQeUYLdNiAw4B4bjyvzWVLiSA==}
engines: {node: '>=6.9.0'}
@@ -3442,30 +3851,60 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-shorthand-properties@7.25.9':
+ resolution: {integrity: sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-spread@7.24.7':
resolution: {integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-spread@7.25.9':
+ resolution: {integrity: sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-sticky-regex@7.24.7':
resolution: {integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-sticky-regex@7.25.9':
+ resolution: {integrity: sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-template-literals@7.24.7':
resolution: {integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-template-literals@7.25.9':
+ resolution: {integrity: sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-typeof-symbol@7.24.8':
resolution: {integrity: sha512-adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-typeof-symbol@7.25.9':
+ resolution: {integrity: sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-typescript@7.25.2':
resolution: {integrity: sha512-lBwRvjSmqiMYe/pS0+1gggjJleUJi7NzjvQ1Fkqtt69hBa/0t1YuW/MLQMAPixfwaQOHUXsd6jeU3Z+vdGv3+A==}
engines: {node: '>=6.9.0'}
@@ -3478,32 +3917,56 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-unicode-escapes@7.25.9':
+ resolution: {integrity: sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-unicode-property-regex@7.24.7':
resolution: {integrity: sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-unicode-property-regex@7.25.9':
+ resolution: {integrity: sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-unicode-regex@7.24.7':
resolution: {integrity: sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-unicode-regex@7.25.9':
+ resolution: {integrity: sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-unicode-sets-regex@7.24.7':
resolution: {integrity: sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/plugin-transform-unicode-sets-regex@7.25.9':
+ resolution: {integrity: sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/preset-env@7.24.0':
resolution: {integrity: sha512-ZxPEzV9IgvGn73iK0E6VB9/95Nd7aMFpbE0l8KQFDG70cOV9IxRP7Y2FUPmlK0v6ImlLqYX50iuZ3ZTVhOF2lA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/preset-env@7.25.3':
- resolution: {integrity: sha512-QsYW7UeAaXvLPX9tdVliMJE7MD7M6MLYVTovRTIwhoYQVFHR1rM4wO8wqAezYi3/BpSD+NzVCZ69R6smWiIi8g==}
+ '@babel/preset-env@7.26.0':
+ resolution: {integrity: sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -3519,8 +3982,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
- '@babel/preset-react@7.24.7':
- resolution: {integrity: sha512-AAH4lEkpmzFWrGVlHaxJB7RLH21uPQ9+He+eFLWHmF9IuFQVugz8eAsamaW0DXRrTfco5zj1wWtpdcXJUOfsag==}
+ '@babel/preset-react@7.25.9':
+ resolution: {integrity: sha512-D3to0uSPiWE7rBrdIICCd0tJSIGpLaaGptna2+w7Pft5xMqLpA1sz99DK5TZ1TjGbdQ/VI1eCSZ06dv3lT4JOw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -3556,14 +4019,26 @@ packages:
resolution: {integrity: sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==}
engines: {node: '>=6.9.0'}
+ '@babel/template@7.25.9':
+ resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
+ engines: {node: '>=6.9.0'}
+
'@babel/traverse@7.25.7':
resolution: {integrity: sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==}
engines: {node: '>=6.9.0'}
+ '@babel/traverse@7.25.9':
+ resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/types@7.25.7':
resolution: {integrity: sha512-vwIVdXG+j+FOpkwqHRcBgHLYNL7XMkufrlaFvL9o6Ai9sJn9+PdyIL5qa0XzTZw084c+u9LOls53eoZWP/W5WQ==}
engines: {node: '>=6.9.0'}
+ '@babel/types@7.26.0':
+ resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==}
+ engines: {node: '>=6.9.0'}
+
'@bundled-es-modules/cookie@2.0.0':
resolution: {integrity: sha512-Or6YHg/kamKHpxULAdSqhGqnWFneIXu1NKvvfBBzKGwpVsYuFIQ5aBPHDnnoR3ghW1nvSkALd+EF9iMtY7Vjxw==}
@@ -3800,13 +4275,6 @@ packages:
resolution: {integrity: sha512-YmWW+B/2XQcCynLpiAQF77Bitm5Cynw3/BICZkbdveKjJkUzEmXB+U2qWuwXOyU8xUYuwkP63YM8McnI567rUA==}
engines: {node: '>=18.0'}
- '@csstools/convert-colors@1.4.0':
- resolution: {integrity: sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==}
- engines: {node: '>=4.0.0'}
-
- '@csstools/normalize.css@10.1.0':
- resolution: {integrity: sha512-ij4wRiunFfaJxjB0BdrYHIH8FxBJpOwNPhhAcunlmPdXudL1WQV1qoP9un6JsEBAgQH+7UXyyjh0g7jTxXK6tg==}
-
'@csstools/normalize.css@12.1.1':
resolution: {integrity: sha512-YAYeJ+Xqh7fUou1d1j9XHl44BmsuThiTr4iNrgCQ3J27IbhXsxXDGZ1cXv8Qvs99d4rBbLiSKy3+WZiet32PcQ==}
@@ -4692,37 +5160,14 @@ packages:
'@floating-ui/utils@0.2.5':
resolution: {integrity: sha512-sTcG+QZ6fdEUObICavU+aB3Mp8HY4n14wYHdxK4fXjPmv3PXZZeY5RaguJmGyeH/CJQhX3fqKUtS4qc1LoHwhQ==}
- '@gar/promisify@1.1.3':
- resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==}
-
'@graphql-typed-document-node/core@3.2.0':
resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- '@hapi/address@2.1.4':
- resolution: {integrity: sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ==}
- deprecated: Moved to 'npm install @sideway/address'
-
- '@hapi/bourne@1.3.2':
- resolution: {integrity: sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA==}
- deprecated: This version has been deprecated and is no longer supported or maintained
-
- '@hapi/hoek@8.5.1':
- resolution: {integrity: sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow==}
- deprecated: This version has been deprecated and is no longer supported or maintained
-
'@hapi/hoek@9.3.0':
resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==}
- '@hapi/joi@15.1.1':
- resolution: {integrity: sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ==}
- deprecated: Switch to 'npm install joi'
-
- '@hapi/topo@3.1.6':
- resolution: {integrity: sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==}
- deprecated: This version has been deprecated and is no longer supported or maintained
-
'@hapi/topo@5.1.0':
resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==}
@@ -5230,9 +5675,6 @@ packages:
resolution: {integrity: sha512-OrcNPXdpSl9UX7qPVRWbmWMCSXrcDa2M9DvrbOTj7ao1S4PlqVFYv9/yLKMkrJKZ/V5A/kDBC690or307i26Og==}
engines: {node: ^16.14.0 || >=18.0.0}
- '@npmcli/fs@1.1.1':
- resolution: {integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==}
-
'@npmcli/fs@3.1.1':
resolution: {integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
@@ -5246,11 +5688,6 @@ packages:
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
hasBin: true
- '@npmcli/move-file@1.1.2':
- resolution: {integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==}
- engines: {node: '>=10'}
- deprecated: This functionality has been moved to @npmcli/fs
-
'@npmcli/node-gyp@3.0.0':
resolution: {integrity: sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
@@ -5440,32 +5877,6 @@ packages:
resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==}
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
- '@pmmmwh/react-refresh-webpack-plugin@0.4.3':
- resolution: {integrity: sha512-br5Qwvh8D2OQqSXpd1g/xqXKnK0r+Jz6qVKBbWmpUcrbGOxUrf39V5oZ1876084CGn18uMdR5uvPqBv9UqtBjQ==}
- engines: {node: '>= 10.x'}
- peerDependencies:
- '@types/webpack': 4.x
- react-refresh: '>=0.8.3 <0.10.0'
- sockjs-client: ^1.4.0
- type-fest: ^0.13.1
- webpack: '>=4.43.0 <6.0.0'
- webpack-dev-server: 3.x
- webpack-hot-middleware: 2.x
- webpack-plugin-serve: 0.x || 1.x
- peerDependenciesMeta:
- '@types/webpack':
- optional: true
- sockjs-client:
- optional: true
- type-fest:
- optional: true
- webpack-dev-server:
- optional: true
- webpack-hot-middleware:
- optional: true
- webpack-plugin-serve:
- optional: true
-
'@pmmmwh/react-refresh-webpack-plugin@0.5.15':
resolution: {integrity: sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ==}
engines: {node: '>= 10.13'}
@@ -5730,12 +6141,6 @@ packages:
rollup:
optional: true
- '@rollup/plugin-node-resolve@7.1.3':
- resolution: {integrity: sha512-RxtSL3XmdTAE2byxekYLnx+98kEUOrPHF/KRVjLH+DEIHy6kjIw7YINQzn+NXiH/NTrQLAwYs0GWB+csWygA9Q==}
- engines: {node: '>= 8.0.0'}
- peerDependencies:
- rollup: ^1.20.0||^2.0.0
-
'@rollup/plugin-replace@2.4.2':
resolution: {integrity: sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==}
peerDependencies:
@@ -6044,9 +6449,6 @@ packages:
peerDependencies:
eslint: ^9.9.1
- '@surma/rollup-plugin-off-main-thread@1.4.2':
- resolution: {integrity: sha512-yBMPqmd1yEJo/280PAMkychuaALyQ9Lkb5q1ck3mjJrFuEobIfhnQ4J3mbvBoISmR3SWMWV+cGB/I0lCQee79A==}
-
'@surma/rollup-plugin-off-main-thread@2.2.3':
resolution: {integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==}
@@ -6272,9 +6674,6 @@ packages:
'@types/eslint-scope@3.7.7':
resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==}
- '@types/eslint@7.29.0':
- resolution: {integrity: sha512-VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==}
-
'@types/eslint@8.56.11':
resolution: {integrity: sha512-sVBpJMf7UPo/wGecYOpk2aQya2VUGeHhe38WG7/mN5FufNSubf5VT9Uh9Uyp8/eLJpu1/tuhJ/qTo4mhSB4V4Q==}
@@ -6296,9 +6695,6 @@ packages:
'@types/express@4.17.21':
resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==}
- '@types/glob@7.2.0':
- resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
-
'@types/hammerjs@2.0.45':
resolution: {integrity: sha512-qkcUlZmX6c4J8q45taBKTL3p+LbITgyx7qhlPYOdOHZB7B31K0mXbP5YA7i7SgDeEGuI9MnumiKPEMrxg8j3KQ==}
@@ -6341,9 +6737,6 @@ packages:
'@types/mime@1.3.5':
resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==}
- '@types/minimatch@5.1.2':
- resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==}
-
'@types/ms@0.7.34':
resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==}
@@ -6383,9 +6776,6 @@ packages:
'@types/react-transition-group@4.4.11':
resolution: {integrity: sha512-RM05tAniPZ5DZPzzNFP+DmrcOdD0efDUxMy3145oljWSl3x9ZV5vhme98gTxFrj2lhXvmGNnUiuDyJgY9IKkNA==}
- '@types/resolve@0.0.8':
- resolution: {integrity: sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==}
-
'@types/resolve@1.17.1':
resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==}
@@ -6819,6 +7209,26 @@ packages:
'@webassemblyjs/wast-printer@1.9.0':
resolution: {integrity: sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==}
+ '@webpack-cli/configtest@1.2.0':
+ resolution: {integrity: sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==}
+ peerDependencies:
+ webpack: 4.x.x || 5.x.x
+ webpack-cli: 4.x.x
+
+ '@webpack-cli/info@1.5.0':
+ resolution: {integrity: sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==}
+ peerDependencies:
+ webpack-cli: 4.x.x
+
+ '@webpack-cli/serve@1.7.0':
+ resolution: {integrity: sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==}
+ peerDependencies:
+ webpack-cli: 4.x.x
+ webpack-dev-server: '*'
+ peerDependenciesMeta:
+ webpack-dev-server:
+ optional: true
+
'@xmldom/xmldom@0.7.13':
resolution: {integrity: sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g==}
engines: {node: '>=10.0.0'}
@@ -6896,28 +7306,15 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
- acorn@7.4.1:
- resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
- engines: {node: '>=0.4.0'}
- hasBin: true
-
acorn@8.12.1:
resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
engines: {node: '>=0.4.0'}
hasBin: true
- address@1.1.2:
- resolution: {integrity: sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==}
- engines: {node: '>= 0.12.0'}
-
address@1.2.2:
resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==}
engines: {node: '>= 10.0.0'}
- adjust-sourcemap-loader@3.0.0:
- resolution: {integrity: sha512-YBrGyT2/uVQ/c6Rr+t6ZJXniY03YtHGMJQYal368burRGYKqhx9qGTWqcBU5s1CwYY9E/ri63RYyG1IacMZtqw==}
- engines: {node: '>=8.9'}
-
adjust-sourcemap-loader@4.0.0:
resolution: {integrity: sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==}
engines: {node: '>=8.9'}
@@ -6992,19 +7389,12 @@ packages:
alge@0.8.1:
resolution: {integrity: sha512-kiV9nTt+XIauAXsowVygDxMZLplZxDWt0W8plE/nB32/V2ziM/P/TxDbSVK7FYIUt2Xo16h3/htDh199LNPCKQ==}
- alphanum-sort@1.0.2:
- resolution: {integrity: sha512-0FcBfdcmaumGPQ0qPn7Q5qTgz/ooXgIyp1rf8ik5bGX8mpE2YHjC0P/eyQvxu1GURYQgq9ozf2mteQ5ZD9YiyQ==}
-
anser@1.4.10:
resolution: {integrity: sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==}
ansi-align@3.0.1:
resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==}
- ansi-colors@3.2.4:
- resolution: {integrity: sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==}
- engines: {node: '>=6'}
-
ansi-colors@4.1.3:
resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
engines: {node: '>=6'}
@@ -7025,11 +7415,6 @@ packages:
engines: {'0': node >= 0.8.0}
hasBin: true
- ansi-html@0.0.7:
- resolution: {integrity: sha512-JoAxEa1DfP9m2xfB/y2r/aKcwXNlltr4+0QSBC4TrLfcxyvepX2Pv0t/xpgGV5bGsDzCYV8SzjWgyCW0T9yYbA==}
- engines: {'0': node >= 0.8.0}
- hasBin: true
-
ansi-html@0.0.9:
resolution: {integrity: sha512-ozbS3LuenHVxNRh/wdnN16QapUHzauqSomAl1jwwJRRsGwFwtj644lIhxfWu0Fy0acCij2+AEgHvjscq3dlVXg==}
engines: {'0': node >= 0.8.0}
@@ -7125,9 +7510,6 @@ packages:
resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==}
engines: {node: '>= 0.4'}
- arity-n@1.0.4:
- resolution: {integrity: sha512-fExL2kFDC1Q2DUOx3whE/9KoN66IzkY4b4zUHUBFM1ojEYjZZYDcUW3bek/ufGionX9giIKDC5redH2IlGqcQQ==}
-
arr-diff@4.0.0:
resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==}
engines: {node: '>=0.10.0'}
@@ -7151,9 +7533,6 @@ packages:
array-flatten@1.1.1:
resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
- array-flatten@2.1.2:
- resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==}
-
array-ify@1.0.0:
resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==}
@@ -7167,18 +7546,10 @@ packages:
array-timsort@1.0.3:
resolution: {integrity: sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==}
- array-union@1.0.2:
- resolution: {integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==}
- engines: {node: '>=0.10.0'}
-
array-union@2.1.0:
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
engines: {node: '>=8'}
- array-uniq@1.0.3:
- resolution: {integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==}
- engines: {node: '>=0.10.0'}
-
array-unique@0.3.2:
resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==}
engines: {node: '>=0.10.0'}
@@ -7191,10 +7562,6 @@ packages:
resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==}
engines: {node: '>= 0.4'}
- arrify@2.0.1:
- resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==}
- engines: {node: '>=8'}
-
arrify@3.0.0:
resolution: {integrity: sha512-tLkvA81vQG/XqE2mjDkGQHoOINtMHtysSnemrmoGe6PydDPMRbVugqyk4A6V/WDWEfm3l+0d8anA9r8cv/5Jaw==}
engines: {node: '>=12'}
@@ -7250,9 +7617,6 @@ packages:
async-sema@3.1.1:
resolution: {integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==}
- async@2.6.4:
- resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==}
-
async@3.2.5:
resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==}
@@ -7282,10 +7646,6 @@ packages:
peerDependencies:
postcss: ^8.1.0
- autoprefixer@9.8.8:
- resolution: {integrity: sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==}
- hasBin: true
-
available-typed-arrays@1.0.7:
resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
engines: {node: '>= 0.4'}
@@ -7305,17 +7665,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- babel-extract-comments@1.0.0:
- resolution: {integrity: sha512-qWWzi4TlddohA91bFwgt6zO/J0X+io7Qp184Fw0m2JYRSTZnJbFR8+07KmzudHCZgOiKRCrjhylwv9Xd8gfhVQ==}
- engines: {node: '>=4'}
-
- babel-loader@8.1.0:
- resolution: {integrity: sha512-7q7nC1tYOrqvUrN3LQK4GwSk/TQorZSOlO9C+RZDZpODgyN4ZlCqE5q9cDsyWOliN+aU9B4JX01xK9eJXowJLw==}
- engines: {node: '>= 6.9'}
- peerDependencies:
- '@babel/core': ^7.0.0
- webpack: '>=2'
-
babel-loader@8.3.0:
resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==}
engines: {node: '>= 8.9'}
@@ -7361,6 +7710,11 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ babel-plugin-polyfill-corejs3@0.10.6:
+ resolution: {integrity: sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+
babel-plugin-polyfill-corejs3@0.9.0:
resolution: {integrity: sha512-7nZPG1uzK2Ymhy/NbaOWTg3uibM2BmGASS4vHS4szRZAIR8R6GwA/xAujpdrXU5iyklrimWnLWU+BLF9suPTqg==}
peerDependencies:
@@ -7382,15 +7736,9 @@ packages:
babel-plugin-react-native-web@0.19.12:
resolution: {integrity: sha512-eYZ4+P6jNcB37lObWIg0pUbi7+3PKoU1Oie2j0C8UF3cXyXoR74tO2NBjI/FORb2LJyItJZEAmjU5pSaJYEL1w==}
- babel-plugin-syntax-object-rest-spread@6.13.0:
- resolution: {integrity: sha512-C4Aq+GaAj83pRQ0EFgTvw5YO6T3Qz2KGrNRwIj9mSoNHVvdZY4KO2uA6HNtNXCw993iSZnckY1aLW8nOi8i4+w==}
-
babel-plugin-transform-flow-enums@0.0.2:
resolution: {integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==}
- babel-plugin-transform-object-rest-spread@6.26.0:
- resolution: {integrity: sha512-ocgA9VJvyxwt+qJB0ncxV8kb/CjfTcECUY4tQ5VT7nP6Aohzobm8CDFaQ5FHdvZQzLmf0sgDxB8iRXZXxwZcyA==}
-
babel-plugin-transform-react-remove-prop-types@0.4.24:
resolution: {integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==}
@@ -7405,13 +7753,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- babel-runtime@6.26.0:
- resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==}
-
- babylon@6.18.0:
- resolution: {integrity: sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==}
- hasBin: true
-
bail@2.0.2:
resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==}
@@ -7482,9 +7823,6 @@ packages:
bonjour-service@1.2.1:
resolution: {integrity: sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==}
- bonjour@3.5.0:
- resolution: {integrity: sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==}
-
boolbase@1.0.0:
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
@@ -7549,13 +7887,13 @@ packages:
browserify-zlib@0.2.0:
resolution: {integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==}
- browserslist@4.14.2:
- resolution: {integrity: sha512-HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw==}
+ browserslist@4.23.2:
+ resolution: {integrity: sha512-qkqSyistMYdxAcw+CzbZwlBy8AGmS/eEWs+sEV5TnLRGDOL+C5M2EnH6tlZyg0YoAxGJAFKh61En9BR941GnHA==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
- browserslist@4.23.2:
- resolution: {integrity: sha512-qkqSyistMYdxAcw+CzbZwlBy8AGmS/eEWs+sEV5TnLRGDOL+C5M2EnH6tlZyg0YoAxGJAFKh61En9BR941GnHA==}
+ browserslist@4.24.2:
+ resolution: {integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
@@ -7578,9 +7916,6 @@ packages:
buffer-from@1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
- buffer-indexof@1.1.1:
- resolution: {integrity: sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==}
-
buffer-xor@1.0.3:
resolution: {integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==}
@@ -7640,10 +7975,6 @@ packages:
cacache@12.0.4:
resolution: {integrity: sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==}
- cacache@15.3.0:
- resolution: {integrity: sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==}
- engines: {node: '>= 10'}
-
cacache@18.0.4:
resolution: {integrity: sha512-B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ==}
engines: {node: ^16.14.0 || >=18.0.0}
@@ -7697,14 +8028,13 @@ packages:
caniuse-lite@1.0.30001645:
resolution: {integrity: sha512-GFtY2+qt91kzyMk6j48dJcwJVq5uTkk71XxE3RtScx7XWRLsO7bU44LOFkOZYR8w9YMS0UhPSYpN/6rAMImmLw==}
+ caniuse-lite@1.0.30001683:
+ resolution: {integrity: sha512-iqmNnThZ0n70mNwvxpEC2nBJ037ZHZUoBI5Gorh1Mw6IlEAZujEoU1tXA628iZfzm7R9FvFzxbfdgml82a3k8Q==}
+
cardinal@2.1.1:
resolution: {integrity: sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==}
hasBin: true
- case-sensitive-paths-webpack-plugin@2.3.0:
- resolution: {integrity: sha512-/4YgnZS8y1UXXmC02xD5rRrBEu6T5ub+mQHLNRj0fzTRbgdBYhsNo2V5EqwgqrExjxsjtF/OpAKAMkKsxbD5XQ==}
- engines: {node: '>=4'}
-
case-sensitive-paths-webpack-plugin@2.4.0:
resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==}
engines: {node: '>=4'}
@@ -7861,9 +8191,6 @@ packages:
resolution: {integrity: sha512-5mOlNS0mhX0707P2I0aZ2V/cmHUEO/fL7VFLqszkhUsxt7RwnmrInf/eEQKlf5GzvYeHIjT+Ov1HRfNmymlG0w==}
engines: {node: '>=18'}
- cliui@5.0.0:
- resolution: {integrity: sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==}
-
cliui@6.0.0:
resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==}
@@ -8017,9 +8344,6 @@ packages:
component-type@1.2.2:
resolution: {integrity: sha512-99VUHREHiN5cLeHm3YLq312p6v+HUEcwtLCAtelvUDI6+SH5g5Cr85oNR2S1o6ywzL0ykMbuwLzM2ANocjEOIA==}
- compose-function@3.0.3:
- resolution: {integrity: sha512-xzhzTJ5eC+gmIzvZq+C3kCJHsp9os6tJkrigDRZclyGtOKINbZtE8n1Tzmeh32jW+BUDPbvZpibwvJHBLGMVwg==}
-
compress-commons@6.0.2:
resolution: {integrity: sha512-6FqVXeETqWPoGcfzrXb37E50NP0LXT8kAMu5ooZayhWWdgEY4lBEEcbQNXtkuKQsGduxiIcI4gOTsxTmuq/bSg==}
engines: {node: '>= 14'}
@@ -8045,10 +8369,6 @@ packages:
confbox@0.1.7:
resolution: {integrity: sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==}
- connect-history-api-fallback@1.6.0:
- resolution: {integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==}
- engines: {node: '>=0.8'}
-
connect-history-api-fallback@2.0.0:
resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==}
engines: {node: '>=0.8'}
@@ -8090,9 +8410,6 @@ packages:
convert-source-map@0.3.5:
resolution: {integrity: sha512-+4nRk0k3oEpwUB7/CalD7xE2z4VmtEnnq0GO2IPTkrooTrAhEsWvuLF5iWP1dXrwluki/azwXV1ve7gtYuPldg==}
- convert-source-map@1.7.0:
- resolution: {integrity: sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==}
-
convert-source-map@1.9.0:
resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
@@ -8137,13 +8454,12 @@ packages:
core-js-compat@3.37.1:
resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==}
+ core-js-compat@3.39.0:
+ resolution: {integrity: sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==}
+
core-js-pure@3.37.1:
resolution: {integrity: sha512-J/r5JTHSmzTxbiYYrzXg9w1VpqrYt+gexenBE9pugeyhwPZTAEJddyiReJWsLO6uNQ8xJZFbod6XC7KKwatCiA==}
- core-js@2.6.12:
- resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==}
- deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.
-
core-js@3.37.1:
resolution: {integrity: sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw==}
@@ -8279,11 +8595,6 @@ packages:
resolution: {integrity: sha512-rZMbaEBGoyy4/zxKECaMyVyGLbuUxYmZ5jlEgiA3xPtEdWwJ4iWRTo5G6dWbQsXoxPYdAXXZ0/q0GQ2y6Jt0kw==}
engines: {node: '>=18'}
- css-blank-pseudo@0.1.4:
- resolution: {integrity: sha512-LHz35Hr83dnFeipc7oqFDmsjHdljj3TQtxGGiNWSOsTLIAubSm4TEz8qCaKFpk7idaQ1GfWscF4E6mgpBysA1w==}
- engines: {node: '>=6.0.0'}
- hasBin: true
-
css-blank-pseudo@3.0.3:
resolution: {integrity: sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==}
engines: {node: ^12 || ^14 || >=16}
@@ -8291,24 +8602,12 @@ packages:
peerDependencies:
postcss: ^8.4
- css-color-names@0.0.4:
- resolution: {integrity: sha512-zj5D7X1U2h2zsXOAM8EyUREBnnts6H+Jm+d1M2DbiQQcUtnqgQsMrdo8JW9R80YFUmIdBZeMu5wvYM7hcgWP/Q==}
-
- css-declaration-sorter@4.0.1:
- resolution: {integrity: sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==}
- engines: {node: '>4'}
-
css-declaration-sorter@6.4.1:
resolution: {integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==}
engines: {node: ^10 || ^12 || >=14}
peerDependencies:
postcss: ^8.0.9
- css-has-pseudo@0.10.0:
- resolution: {integrity: sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ==}
- engines: {node: '>=6.0.0'}
- hasBin: true
-
css-has-pseudo@3.0.4:
resolution: {integrity: sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==}
engines: {node: ^12 || ^14 || >=16}
@@ -8319,12 +8618,6 @@ packages:
css-in-js-utils@3.1.0:
resolution: {integrity: sha512-fJAcud6B3rRu+KHYk+Bwf+WFL2MDCJJ1XG9x137tJQ0xYxor7XziQtuGFbWNdqrvF4Tk26O3H73nfVqXt/fW1A==}
- css-loader@4.3.0:
- resolution: {integrity: sha512-rdezjCjScIrsL8BSYszgT4s476IcNKt6yX69t0pHjJVnPUTDpn4WfIpDQTN3wCJvUvfsz/mFjuGOekf3PY3NUg==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- webpack: ^4.27.0 || ^5.0.0
-
css-loader@6.10.0:
resolution: {integrity: sha512-LTSA/jWbwdMlk+rhmElbDR2vbtQoTBPr7fkJE+mxrHj+7ru0hUmHafDRzWIjIHTwpitWVaqY2/UWGRca3yUgRw==}
engines: {node: '>= 12.13.0'}
@@ -8368,11 +8661,6 @@ packages:
esbuild:
optional: true
- css-prefers-color-scheme@3.1.1:
- resolution: {integrity: sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg==}
- engines: {node: '>=6.0.0'}
- hasBin: true
-
css-prefers-color-scheme@6.0.3:
resolution: {integrity: sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==}
engines: {node: ^12 || ^14 || >=16}
@@ -8421,58 +8709,26 @@ packages:
css@2.2.4:
resolution: {integrity: sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==}
- cssdb@4.4.0:
- resolution: {integrity: sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ==}
-
cssdb@7.11.2:
resolution: {integrity: sha512-lhQ32TFkc1X4eTefGfYPvgovRSzIMofHkigfH8nWtyRL4XJLsRhJFreRvEgKzept7x1rjBuy3J/MurXLaFxW/A==}
- cssesc@2.0.0:
- resolution: {integrity: sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==}
- engines: {node: '>=4'}
- hasBin: true
-
cssesc@3.0.0:
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
engines: {node: '>=4'}
hasBin: true
- cssnano-preset-default@4.0.8:
- resolution: {integrity: sha512-LdAyHuq+VRyeVREFmuxUZR1TXjQm8QQU/ktoo/x7bz+SdOge1YKc5eMN6pRW7YWBmyq59CqYba1dJ5cUukEjLQ==}
- engines: {node: '>=6.9.0'}
-
cssnano-preset-default@5.2.14:
resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
- cssnano-util-get-arguments@4.0.0:
- resolution: {integrity: sha512-6RIcwmV3/cBMG8Aj5gucQRsJb4vv4I4rn6YjPbVWd5+Pn/fuG+YseGvXGk00XLkoZkaj31QOD7vMUpNPC4FIuw==}
- engines: {node: '>=6.9.0'}
-
- cssnano-util-get-match@4.0.0:
- resolution: {integrity: sha512-JPMZ1TSMRUPVIqEalIBNoBtAYbi8okvcFns4O0YIhcdGebeYZK7dMyHJiQ6GqNBA9kE0Hym4Aqym5rPdsV/4Cw==}
- engines: {node: '>=6.9.0'}
-
- cssnano-util-raw-cache@4.0.1:
- resolution: {integrity: sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==}
- engines: {node: '>=6.9.0'}
-
- cssnano-util-same-parent@4.0.1:
- resolution: {integrity: sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==}
- engines: {node: '>=6.9.0'}
-
cssnano-utils@3.1.0:
resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
- cssnano@4.1.11:
- resolution: {integrity: sha512-6gZm2htn7xIPJOHY824ERgj8cNPgPxyCSnkXc4v7YvNW+TdVfzgngHcEhy/8D11kUWRUMbke+tC+AUcUsnMz2g==}
- engines: {node: '>=6.9.0'}
-
cssnano@5.1.15:
resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -8496,10 +8752,6 @@ packages:
cyclist@1.0.2:
resolution: {integrity: sha512-0sVXIohTfLqVIW3kb/0n6IiWF3Ifj5nm2XaSrLq2DI6fKIGa2fYAZdk917rUneaeLVpYfFcyXE2ft0fe3remsA==}
- d@1.0.2:
- resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==}
- engines: {node: '>=0.12'}
-
dag-map@1.0.2:
resolution: {integrity: sha512-+LSAiGFwQ9dRnRdOeaj7g47ZFJcOUPukAP8J3A3fuZ1g9Y44BG+P1sgApjLXTQPOzC4+7S9Wr8kXsfpINM4jpw==}
@@ -8588,10 +8840,6 @@ packages:
resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==}
engines: {node: '>=6'}
- deep-equal@1.1.2:
- resolution: {integrity: sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==}
- engines: {node: '>= 0.4'}
-
deep-extend@0.6.0:
resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
engines: {node: '>=4.0.0'}
@@ -8657,10 +8905,6 @@ packages:
defu@6.1.4:
resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
- del@4.1.1:
- resolution: {integrity: sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==}
- engines: {node: '>=6'}
-
del@6.1.1:
resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==}
engines: {node: '>=10'}
@@ -8757,19 +9001,10 @@ packages:
dlv@1.1.3:
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
- dns-equal@1.0.0:
- resolution: {integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==}
-
- dns-packet@1.3.4:
- resolution: {integrity: sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==}
-
dns-packet@5.6.1:
resolution: {integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==}
engines: {node: '>=6'}
- dns-txt@2.0.2:
- resolution: {integrity: sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ==}
-
doctrine@3.0.0:
resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
engines: {node: '>=6.0.0'}
@@ -8848,10 +9083,6 @@ packages:
resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==}
engines: {node: '>=12'}
- dotenv@8.2.0:
- resolution: {integrity: sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==}
- engines: {node: '>=8'}
-
dset@3.1.3:
resolution: {integrity: sha512-20TuZZHCEZ2O71q9/+8BwKwZ0QtD9D8ObhrihJPr+vLLYlSuAU3/zL4cSlgbfeoGHTjCSJBa7NGcrF9/Bx/WJQ==}
engines: {node: '>=4'}
@@ -8871,10 +9102,6 @@ packages:
ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- ejs@2.7.4:
- resolution: {integrity: sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==}
- engines: {node: '>=0.10.0'}
-
ejs@3.1.10:
resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==}
engines: {node: '>=0.10.0'}
@@ -8883,6 +9110,9 @@ packages:
electron-to-chromium@1.5.4:
resolution: {integrity: sha512-orzA81VqLyIGUEA77YkVA1D+N+nNfl2isJVjjmOyrlxuooZ19ynb+dOlaDTqd/idKRS9lDCSBmtzM+kyCsMnkA==}
+ electron-to-chromium@1.5.64:
+ resolution: {integrity: sha512-IXEuxU+5ClW2IGEYFC2T7szbyVgehupCWQe5GNh+H065CD6U6IFN0s4KeAMFGNmQolRU4IV7zGBWSYMmZ8uuqQ==}
+
elliptic@6.5.6:
resolution: {integrity: sha512-mpzdtpeCLuS3BmE3pO3Cpp5bbjlOPY2Q0PgoF+Od1XZrHLYI28Xe3ossCmYCQt11FQKEYd9+PF8jymTvtWJSHQ==}
@@ -8892,9 +9122,6 @@ packages:
emoji-regex@10.3.0:
resolution: {integrity: sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==}
- emoji-regex@7.0.3:
- resolution: {integrity: sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==}
-
emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
@@ -9007,17 +9234,6 @@ packages:
resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
engines: {node: '>= 0.4'}
- es5-ext@0.10.64:
- resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==}
- engines: {node: '>=0.10'}
-
- es6-iterator@2.0.3:
- resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==}
-
- es6-symbol@3.1.4:
- resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==}
- engines: {node: '>=0.12'}
-
esbuild-plugin-file-path-extensions@2.1.2:
resolution: {integrity: sha512-c9ncPyXg2ykUFBZ3HwErs39EN0jdJHHMb2un/fAYHR41ZgnsHMXM1FlG8W3MV+NXRi64dFSybS9FZcaHO0Ge5Q==}
engines: {node: '>=v14.0.0', npm: '>=7.0.0'}
@@ -9236,13 +9452,6 @@ packages:
resolution: {integrity: sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- eslint-webpack-plugin@2.7.0:
- resolution: {integrity: sha512-bNaVVUvU4srexGhVcayn/F4pJAz19CWBkKoMx7aSQ4wtTbZQCnG5O9LHCE42mM+JSKOUp7n6vd5CIwzj7lOVGA==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- eslint: ^9.9.1
- webpack: ^4.0.0 || ^5.0.0
-
eslint-webpack-plugin@3.2.0:
resolution: {integrity: sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==}
engines: {node: '>= 12.13.0'}
@@ -9263,10 +9472,6 @@ packages:
esm-env@1.0.0:
resolution: {integrity: sha512-Cf6VksWPsTuW01vU9Mk/3vRue91Zevka5SjyNf3nEpokFRuqt/KjUQoGAwq9qMmhpLTHmXzSIrFRw8zxWzmFBA==}
- esniff@2.0.1:
- resolution: {integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==}
- engines: {node: '>=0.10'}
-
espree@10.1.0:
resolution: {integrity: sha512-M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -9301,9 +9506,6 @@ packages:
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
engines: {node: '>=4.0'}
- estree-walker@0.6.1:
- resolution: {integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==}
-
estree-walker@1.0.1:
resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==}
@@ -9321,9 +9523,6 @@ packages:
resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
engines: {node: '>= 0.6'}
- event-emitter@0.3.5:
- resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==}
-
event-target-shim@5.0.1:
resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
engines: {node: '>=6'}
@@ -9422,9 +9621,6 @@ packages:
resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==}
engines: {node: '>= 0.10.0'}
- ext@1.7.0:
- resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==}
-
extend-shallow@2.0.1:
resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==}
engines: {node: '>=0.10.0'}
@@ -9474,6 +9670,10 @@ packages:
resolution: {integrity: sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==}
hasBin: true
+ fastest-levenshtein@1.0.16:
+ resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==}
+ engines: {node: '>= 4.9.1'}
+
fastq@1.17.1:
resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
@@ -9519,12 +9719,6 @@ packages:
resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
engines: {node: '>=16.0.0'}
- file-loader@6.1.1:
- resolution: {integrity: sha512-Klt8C4BjWSXYQAfhpYYkG4qHNTna4toMHEbWrI5IuVoxbU6uiDKeKAP99R8mmbJi3lvewn/jQBOgU4+NS3tDQw==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- webpack: ^4.0.0 || ^5.0.0
-
file-loader@6.2.0:
resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==}
engines: {node: '>= 10.13.0'}
@@ -9537,10 +9731,6 @@ packages:
filelist@1.0.4:
resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==}
- filesize@6.1.0:
- resolution: {integrity: sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==}
- engines: {node: '>= 0.4.0'}
-
filesize@8.0.7:
resolution: {integrity: sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==}
engines: {node: '>= 0.4.0'}
@@ -9629,10 +9819,6 @@ packages:
flatted@3.3.1:
resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
- flatten@1.0.3:
- resolution: {integrity: sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==}
- deprecated: flatten is deprecated in favor of utility frameworks such as lodash.
-
flattie@1.1.1:
resolution: {integrity: sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==}
engines: {node: '>=8'}
@@ -9678,20 +9864,6 @@ packages:
resolution: {integrity: sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==}
engines: {node: '>=14'}
- fork-ts-checker-webpack-plugin@4.1.6:
- resolution: {integrity: sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==}
- engines: {node: '>=6.11.5', yarn: '>=1.0.0'}
- peerDependencies:
- eslint: ^9.9.1
- typescript: '>= 2.7'
- vue-template-compiler: '*'
- webpack: '>= 4'
- peerDependenciesMeta:
- eslint:
- optional: true
- vue-template-compiler:
- optional: true
-
fork-ts-checker-webpack-plugin@6.5.3:
resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==}
engines: {node: '>=10', yarn: '>=1.0.0'}
@@ -9963,10 +10135,6 @@ packages:
globalyzer@0.1.0:
resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==}
- globby@11.0.1:
- resolution: {integrity: sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==}
- engines: {node: '>=10'}
-
globby@11.1.0:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
engines: {node: '>=10'}
@@ -9979,10 +10147,6 @@ packages:
resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==}
engines: {node: '>=18'}
- globby@6.1.0:
- resolution: {integrity: sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==}
- engines: {node: '>=0.10.0'}
-
globrex@0.1.2:
resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
@@ -10034,10 +10198,6 @@ packages:
resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==}
engines: {node: '>=6.0'}
- gzip-size@5.1.1:
- resolution: {integrity: sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==}
- engines: {node: '>=6'}
-
gzip-size@6.0.0:
resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==}
engines: {node: '>=10'}
@@ -10107,10 +10267,6 @@ packages:
resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==}
engines: {node: '>=0.10.0'}
- has@1.0.4:
- resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==}
- engines: {node: '>= 0.4.0'}
-
hash-base@3.0.4:
resolution: {integrity: sha512-EeeoJKjTyt868liAlVmcv2ZsUfGHlE3Q+BICOXcZiwN3osr5Q/zFGYmTJpoIzuaSTAwndFy+GqhEwlU4L3j4Ow==}
engines: {node: '>=4'}
@@ -10179,9 +10335,6 @@ packages:
resolution: {integrity: sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==}
engines: {node: '>=8'}
- hex-color-regex@1.1.0:
- resolution: {integrity: sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==}
-
history@5.3.0:
resolution: {integrity: sha512-ZqaKwjjrAYUYfLG+htGaIIZ4nioX2L70ZUMIFysS3xvBsSG4x/n1V6TXV3N8ZYNuFGlDirFg32T7B6WOUPDYcQ==}
@@ -10213,19 +10366,10 @@ packages:
hpack.js@2.1.6:
resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==}
- hsl-regex@1.0.0:
- resolution: {integrity: sha512-M5ezZw4LzXbBKMruP+BNANf0k+19hDQMgpzBIYnya//Al+fjNct9Wf3b1WedLqdEs2hKBvxq/jh+DsHJLj0F9A==}
-
- hsla-regex@1.0.0:
- resolution: {integrity: sha512-7Wn5GMLuHBjZCb2bTmnDOycho0p/7UVaAeqXZGbHrBCl6Yd/xDhQJAXe6Ga9AXJH2I5zY1dEdYw2u1UptnSBJA==}
-
html-encoding-sniffer@4.0.0:
resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==}
engines: {node: '>=18'}
- html-entities@1.4.0:
- resolution: {integrity: sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==}
-
html-entities@2.3.3:
resolution: {integrity: sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==}
@@ -10254,8 +10398,8 @@ packages:
html-void-elements@3.0.0:
resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==}
- html-webpack-plugin@4.5.0:
- resolution: {integrity: sha512-MouoXEYSjTzCrjIxWwg8gxL5fE2X2WZJLmBYXlaJhQUH5K/b5OrqmV7T4dB7iu0xkmJ6JlUuV6fFVtnqbPopZw==}
+ html-webpack-plugin@4.5.2:
+ resolution: {integrity: sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==}
engines: {node: '>=6.9'}
peerDependencies:
webpack: ^4.0.0 || ^5.0.0
@@ -10299,10 +10443,6 @@ packages:
resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}
engines: {node: '>= 14'}
- http-proxy-middleware@0.19.1:
- resolution: {integrity: sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==}
- engines: {node: '>=4.0.0'}
-
http-proxy-middleware@2.0.6:
resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==}
engines: {node: '>=12.0.0'}
@@ -10361,10 +10501,6 @@ packages:
resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
engines: {node: '>=0.10.0'}
- icss-utils@4.1.1:
- resolution: {integrity: sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==}
- engines: {node: '>= 6'}
-
icss-utils@5.1.0:
resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
engines: {node: ^10 || ^12 || >= 14}
@@ -10412,19 +10548,12 @@ packages:
immediate@3.0.6:
resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==}
- immer@8.0.1:
- resolution: {integrity: sha512-aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA==}
-
immer@9.0.21:
resolution: {integrity: sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==}
immutable@4.3.7:
resolution: {integrity: sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==}
- import-cwd@2.1.0:
- resolution: {integrity: sha512-Ew5AZzJQFqrOV5BTW3EIoHAnoie1LojZLXKcCQ/yTRyVZosBhK1x1ViYjHGf5pAFOq8ZyChZp6m/fSN7pJyZtg==}
- engines: {node: '>=4'}
-
import-fresh@2.0.0:
resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==}
engines: {node: '>=4'}
@@ -10433,17 +10562,13 @@ packages:
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
engines: {node: '>=6'}
- import-from@2.1.0:
- resolution: {integrity: sha512-0vdnLL2wSGnhlRmzHJAg5JHjt1l2vYhzJ7tNLGbeVg0fse56tpGaH0uzH+r9Slej+BSXXEHvBKDEnVSLLE9/+w==}
- engines: {node: '>=4'}
-
import-lazy@4.0.0:
resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==}
engines: {node: '>=8'}
- import-local@2.0.0:
- resolution: {integrity: sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==}
- engines: {node: '>=6'}
+ import-local@3.2.0:
+ resolution: {integrity: sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==}
+ engines: {node: '>=8'}
hasBin: true
import-meta-resolve@4.1.0:
@@ -10461,9 +10586,6 @@ packages:
resolution: {integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==}
engines: {node: '>=12'}
- indexes-of@1.0.1:
- resolution: {integrity: sha512-bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA==}
-
infer-owner@1.0.4:
resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==}
@@ -10510,6 +10632,10 @@ packages:
resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
engines: {node: '>= 0.4'}
+ interpret@2.2.0:
+ resolution: {integrity: sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==}
+ engines: {node: '>= 0.10'}
+
interpret@3.1.1:
resolution: {integrity: sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==}
engines: {node: '>=10.13.0'}
@@ -10529,9 +10655,6 @@ packages:
resolution: {integrity: sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==}
engines: {node: '>=4'}
- ip@1.1.9:
- resolution: {integrity: sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ==}
-
ipaddr.js@1.9.1:
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
engines: {node: '>= 0.10'}
@@ -10543,14 +10666,6 @@ packages:
iron-webcrypto@1.2.1:
resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==}
- is-absolute-url@2.1.0:
- resolution: {integrity: sha512-vOx7VprsKyllwjSkLV79NIhpyLfr3jAp7VaTCMXOJHu4m0Ew1CZ2fcjASwmV1jI3BWuWHB013M48eyeldk9gYg==}
- engines: {node: '>=0.10.0'}
-
- is-absolute-url@3.0.3:
- resolution: {integrity: sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==}
- engines: {node: '>=8'}
-
is-absolute@1.0.0:
resolution: {integrity: sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==}
engines: {node: '>=0.10.0'}
@@ -10559,10 +10674,6 @@ packages:
resolution: {integrity: sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==}
engines: {node: '>= 0.10'}
- is-arguments@1.1.1:
- resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
- engines: {node: '>= 0.4'}
-
is-array-buffer@3.0.4:
resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==}
engines: {node: '>= 0.4'}
@@ -10599,9 +10710,6 @@ packages:
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
engines: {node: '>= 0.4'}
- is-color-stop@1.1.0:
- resolution: {integrity: sha512-H1U8Vz0cfXNujrJzEcvvwMDW9Ra+biSYA3ThdQvAnMLJkEHQXn6bWzLkxHtVYJ+Sdbx0b6finn3jZiaVe7MAHA==}
-
is-core-module@2.15.1:
resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==}
engines: {node: '>= 0.4'}
@@ -10742,22 +10850,10 @@ packages:
resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==}
engines: {node: '>=6'}
- is-path-in-cwd@2.1.0:
- resolution: {integrity: sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==}
- engines: {node: '>=6'}
-
- is-path-inside@2.1.0:
- resolution: {integrity: sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==}
- engines: {node: '>=6'}
-
is-path-inside@3.0.3:
resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
engines: {node: '>=8'}
- is-plain-obj@1.1.0:
- resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==}
- engines: {node: '>=0.10.0'}
-
is-plain-obj@3.0.0:
resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==}
engines: {node: '>=10'}
@@ -10795,9 +10891,6 @@ packages:
resolution: {integrity: sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==}
engines: {node: '>=0.10.0'}
- is-resolvable@1.1.0:
- resolution: {integrity: sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==}
-
is-root@2.1.0:
resolution: {integrity: sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==}
engines: {node: '>=6'}
@@ -10965,10 +11058,6 @@ packages:
resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- jest-worker@24.9.0:
- resolution: {integrity: sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==}
- engines: {node: '>= 6'}
-
jest-worker@26.6.2:
resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==}
engines: {node: '>= 10.13.0'}
@@ -11175,9 +11264,6 @@ packages:
keyv@4.5.4:
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
- killable@1.0.1:
- resolution: {integrity: sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==}
-
kind-of@3.2.2:
resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==}
engines: {node: '>=0.10.0'}
@@ -11219,9 +11305,6 @@ packages:
kolorist@1.8.0:
resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
- last-call-webpack-plugin@3.0.0:
- resolution: {integrity: sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==}
-
launch-editor@2.8.0:
resolution: {integrity: sha512-vJranOAJrI/llyWGRQqiDM+adrw+k83fvmmx3+nV47g3+36xM15jE+zyZ6Ffel02+xSvuM0b2GDRosXZkbb6wA==}
@@ -11365,10 +11448,6 @@ packages:
resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==}
engines: {node: '>=4.0.0'}
- loader-utils@2.0.0:
- resolution: {integrity: sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==}
- engines: {node: '>=8.9.0'}
-
loader-utils@2.0.4:
resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==}
engines: {node: '>=8.9.0'}
@@ -11407,9 +11486,6 @@ packages:
resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- lodash._reinterpolate@3.0.0:
- resolution: {integrity: sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==}
-
lodash.camelcase@4.3.0:
resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==}
@@ -11437,12 +11513,6 @@ packages:
lodash.sortby@4.7.0:
resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==}
- lodash.template@4.5.0:
- resolution: {integrity: sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==}
-
- lodash.templatesettings@4.2.0:
- resolution: {integrity: sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==}
-
lodash.throttle@4.1.1:
resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==}
@@ -11468,10 +11538,6 @@ packages:
resolution: {integrity: sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ==}
hasBin: true
- loglevel@1.9.1:
- resolution: {integrity: sha512-hP3I3kCrDIMuRwAwHltphhDM1r8i55H33GgqjXbrisuJhF4kRhW1dNuxsRklp4bXl8DSdLaNLuiL4A/LWRfxvg==}
- engines: {node: '>= 0.6.0'}
-
longest-streak@3.1.0:
resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
@@ -11744,9 +11810,6 @@ packages:
engines: {node: '>=18'}
hasBin: true
- microevent.ts@0.1.1:
- resolution: {integrity: sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==}
-
micromark-core-commonmark@2.0.1:
resolution: {integrity: sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==}
@@ -11891,12 +11954,6 @@ packages:
resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
engines: {node: '>=4'}
- mini-css-extract-plugin@0.11.3:
- resolution: {integrity: sha512-n9BA8LonkOkW1/zn+IbLPQmovsL0wMb9yx75fMJQZf2X1Zoec9yTZtyMePcyu19wPkmFbzZZA6fLTotpFhQsOA==}
- engines: {node: '>= 6.9.0'}
- peerDependencies:
- webpack: ^4.4.0 || ^5.0.0
-
mini-css-extract-plugin@2.8.1:
resolution: {integrity: sha512-/1HDlyFRxWIZPI1ZpgqlZ8jMw/1Dp/dl3P0L1jtZ+zVcHqwPhGwaJwKL00WVgfnBy6PWCde9W65or7IIETImuA==}
engines: {node: '>= 12.13.0'}
@@ -11919,9 +11976,6 @@ packages:
resolution: {integrity: sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==}
engines: {node: 20 || >=22}
- minimatch@3.0.4:
- resolution: {integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==}
-
minimatch@3.0.8:
resolution: {integrity: sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==}
@@ -11943,10 +11997,6 @@ packages:
minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
- minipass-collect@1.0.2:
- resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==}
- engines: {node: '>= 8'}
-
minipass-collect@2.0.1:
resolution: {integrity: sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==}
engines: {node: '>=16 || 14 >=14.17'}
@@ -12042,13 +12092,6 @@ packages:
muggle-string@0.4.1:
resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
- multicast-dns-service-types@1.1.0:
- resolution: {integrity: sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==}
-
- multicast-dns@6.2.3:
- resolution: {integrity: sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==}
- hasBin: true
-
multicast-dns@7.2.5:
resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==}
hasBin: true
@@ -12076,9 +12119,6 @@ packages:
resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==}
engines: {node: '>=0.10.0'}
- native-url@0.2.6:
- resolution: {integrity: sha512-k4bDC87WtgrdD362gZz6zoiXQrl40kYlBmpfmSjwRO1VU0V5ccwJTlxuE72F6m3V0vc1xOf6n3UCP9QyerRqmA==}
-
natural-compare@1.4.0:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
@@ -12104,9 +12144,6 @@ packages:
nested-error-stacks@2.1.1:
resolution: {integrity: sha512-9iN1ka/9zmX1ZvLV9ewJYEk9h7RyRRtqdK0woXcqohu8EWIerfPUjYJPg0ULy0UqP7cslmdGc8xKDJcojlKiaw==}
- next-tick@1.1.0:
- resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==}
-
next@14.2.5:
resolution: {integrity: sha512-0f8aRfBVL+mpzfBjYfQuLWh2WyAwtJXCRfkPF4UJ5qd2YwrHczsrSzXU4tRMV0OAxR8ZJZWPFn6uhSC56UTsLA==}
engines: {node: '>=18.17.0'}
@@ -12215,10 +12252,6 @@ packages:
encoding:
optional: true
- node-forge@0.10.0:
- resolution: {integrity: sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==}
- engines: {node: '>= 6.0.0'}
-
node-forge@1.3.1:
resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==}
engines: {node: '>= 6.13.0'}
@@ -12241,9 +12274,6 @@ packages:
node-machine-id@1.1.12:
resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==}
- node-releases@1.1.77:
- resolution: {integrity: sha512-rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ==}
-
node-releases@2.0.18:
resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
@@ -12277,14 +12307,6 @@ packages:
resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
engines: {node: '>=0.10.0'}
- normalize-url@1.9.1:
- resolution: {integrity: sha512-A48My/mtCklowHBlI8Fq2jFWK4tX4lJ5E6ytFsSOq1fzpvT0SQSgKhSg7lN5c2uYFOrUAOQp6zhhJnpp1eMloQ==}
- engines: {node: '>=4'}
-
- normalize-url@3.3.0:
- resolution: {integrity: sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==}
- engines: {node: '>=6'}
-
normalize-url@6.1.0:
resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==}
engines: {node: '>=10'}
@@ -12358,9 +12380,6 @@ packages:
nullthrows@1.1.1:
resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==}
- num2fraction@1.2.2:
- resolution: {integrity: sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==}
-
nwsapi@2.2.13:
resolution: {integrity: sha512-cTGB9ptp9dY9A5VbMSe7fQBcl/tt22Vcqdq8+eN93rblOuE0aCFu4aZ2vMwct/2t+lFnosm8RkQW1I0Omb1UtQ==}
@@ -12401,10 +12420,6 @@ packages:
resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==}
engines: {node: '>= 0.4'}
- object-is@1.1.6:
- resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==}
- engines: {node: '>= 0.4'}
-
object-keys@1.1.1:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
engines: {node: '>= 0.4'}
@@ -12425,10 +12440,6 @@ packages:
resolution: {integrity: sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==}
engines: {node: '>=0.10.0'}
- object.entries@1.1.8:
- resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==}
- engines: {node: '>= 0.4'}
-
object.getownpropertydescriptors@2.1.8:
resolution: {integrity: sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==}
engines: {node: '>= 0.8'}
@@ -12501,15 +12512,6 @@ packages:
resolution: {integrity: sha512-c/hfooPx+RBIOPM09GSxABOZhYPblDoyaGhqBkD/59vtpN21jEuWKDlM0KYTvqJVlSYjKs0tBcIdeXKChlSPtw==}
hasBin: true
- opn@5.5.0:
- resolution: {integrity: sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==}
- engines: {node: '>=4'}
-
- optimize-css-assets-webpack-plugin@5.0.4:
- resolution: {integrity: sha512-wqd6FdI2a5/FdoiCNNkEvLeA//lHHfG24Ln2Xm2qqdIk4aOlsR18jwpyOihqQ8849W3qu2DX8fOYxpvTMj+93A==}
- peerDependencies:
- webpack: ^4.0.0
-
optionator@0.8.3:
resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==}
engines: {node: '>= 0.8.0'}
@@ -12596,10 +12598,6 @@ packages:
resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- p-map@2.1.0:
- resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==}
- engines: {node: '>=6'}
-
p-map@4.0.0:
resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
engines: {node: '>=10'}
@@ -12620,10 +12618,6 @@ packages:
resolution: {integrity: sha512-NXzu9aQJTAzbBqOt2hwsR63ea7yvxJc0PwN/zobNAudYfb1B7R08SzB4TsLeSbUCuG467NhnoT0oO6w1qRO+BA==}
engines: {node: '>=18'}
- p-retry@3.0.1:
- resolution: {integrity: sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==}
- engines: {node: '>=6'}
-
p-retry@4.6.2:
resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==}
engines: {node: '>=8'}
@@ -12756,9 +12750,6 @@ packages:
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
engines: {node: '>=0.10.0'}
- path-is-inside@1.0.2:
- resolution: {integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==}
-
path-key@2.0.1:
resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==}
engines: {node: '>=4'}
@@ -12850,14 +12841,6 @@ packages:
resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
engines: {node: '>=6'}
- pinkie-promise@2.0.1:
- resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==}
- engines: {node: '>=0.10.0'}
-
- pinkie@2.0.4:
- resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==}
- engines: {node: '>=0.10.0'}
-
pirates@4.0.6:
resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
engines: {node: '>= 6'}
@@ -12895,14 +12878,6 @@ packages:
resolution: {integrity: sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==}
engines: {node: '>=4.0.0'}
- pnp-webpack-plugin@1.6.4:
- resolution: {integrity: sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==}
- engines: {node: '>=6'}
-
- portfinder@1.0.32:
- resolution: {integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==}
- engines: {node: '>= 0.12.0'}
-
posix-character-classes@0.1.1:
resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==}
engines: {node: '>=0.10.0'}
@@ -12911,21 +12886,12 @@ packages:
resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
engines: {node: '>= 0.4'}
- postcss-attribute-case-insensitive@4.0.2:
- resolution: {integrity: sha512-clkFxk/9pcdb4Vkn0hAHq3YnxBQ2p0CGD1dy24jN+reBck+EWxMbxSUqN4Yj7t0w8csl87K6p0gxBe1utkJsYA==}
-
postcss-attribute-case-insensitive@5.0.2:
resolution: {integrity: sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
- postcss-browser-comments@3.0.0:
- resolution: {integrity: sha512-qfVjLfq7HFd2e0HW4s1dvU8X080OZdG46fFbIBFjW7US7YPDcWfRvdElvwMJr2LI6hMmD+7LnH2HcmXTs+uOig==}
- engines: {node: '>=8.0.0'}
- peerDependencies:
- browserslist: ^4
-
postcss-browser-comments@4.0.0:
resolution: {integrity: sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==}
engines: {node: '>=8'}
@@ -12933,9 +12899,6 @@ packages:
browserslist: '>=4'
postcss: '>=8'
- postcss-calc@7.0.5:
- resolution: {integrity: sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==}
-
postcss-calc@8.2.4:
resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==}
peerDependencies:
@@ -12947,68 +12910,36 @@ packages:
peerDependencies:
postcss: ^8.4.6
- postcss-color-functional-notation@2.0.1:
- resolution: {integrity: sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g==}
- engines: {node: '>=6.0.0'}
-
postcss-color-functional-notation@4.2.4:
resolution: {integrity: sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
- postcss-color-gray@5.0.0:
- resolution: {integrity: sha512-q6BuRnAGKM/ZRpfDascZlIZPjvwsRye7UDNalqVz3s7GDxMtqPY6+Q871liNxsonUw8oC61OG+PSaysYpl1bnw==}
- engines: {node: '>=6.0.0'}
-
- postcss-color-hex-alpha@5.0.3:
- resolution: {integrity: sha512-PF4GDel8q3kkreVXKLAGNpHKilXsZ6xuu+mOQMHWHLPNyjiUBOr75sp5ZKJfmv1MCus5/DWUGcK9hm6qHEnXYw==}
- engines: {node: '>=6.0.0'}
-
postcss-color-hex-alpha@8.0.4:
resolution: {integrity: sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.4
- postcss-color-mod-function@3.0.3:
- resolution: {integrity: sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ==}
- engines: {node: '>=6.0.0'}
-
- postcss-color-rebeccapurple@4.0.1:
- resolution: {integrity: sha512-aAe3OhkS6qJXBbqzvZth2Au4V3KieR5sRQ4ptb2b2O8wgvB3SJBsdG+jsn2BZbbwekDG8nTfcCNKcSfe/lEy8g==}
- engines: {node: '>=6.0.0'}
-
postcss-color-rebeccapurple@7.1.1:
resolution: {integrity: sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
- postcss-colormin@4.0.3:
- resolution: {integrity: sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==}
- engines: {node: '>=6.9.0'}
-
postcss-colormin@5.3.1:
resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
- postcss-convert-values@4.0.1:
- resolution: {integrity: sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==}
- engines: {node: '>=6.9.0'}
-
postcss-convert-values@5.1.3:
resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
- postcss-custom-media@7.0.8:
- resolution: {integrity: sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg==}
- engines: {node: '>=6.0.0'}
-
postcss-custom-media@8.0.2:
resolution: {integrity: sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==}
engines: {node: ^12 || ^14 || >=16}
@@ -13021,140 +12952,82 @@ packages:
peerDependencies:
postcss: ^8.2
- postcss-custom-properties@8.0.11:
- resolution: {integrity: sha512-nm+o0eLdYqdnJ5abAJeXp4CEU1c1k+eB2yMCvhgzsds/e0umabFrN6HoTy/8Q4K5ilxERdl/JD1LO5ANoYBeMA==}
- engines: {node: '>=6.0.0'}
-
- postcss-custom-selectors@5.1.2:
- resolution: {integrity: sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w==}
- engines: {node: '>=6.0.0'}
-
postcss-custom-selectors@6.0.3:
resolution: {integrity: sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.3
- postcss-dir-pseudo-class@5.0.0:
- resolution: {integrity: sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw==}
- engines: {node: '>=4.0.0'}
-
postcss-dir-pseudo-class@6.0.5:
resolution: {integrity: sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
- postcss-discard-comments@4.0.2:
- resolution: {integrity: sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==}
- engines: {node: '>=6.9.0'}
-
postcss-discard-comments@5.1.2:
resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
- postcss-discard-duplicates@4.0.2:
- resolution: {integrity: sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==}
- engines: {node: '>=6.9.0'}
-
postcss-discard-duplicates@5.1.0:
resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
- postcss-discard-empty@4.0.1:
- resolution: {integrity: sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==}
- engines: {node: '>=6.9.0'}
-
postcss-discard-empty@5.1.1:
resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
- postcss-discard-overridden@4.0.1:
- resolution: {integrity: sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==}
- engines: {node: '>=6.9.0'}
-
postcss-discard-overridden@5.1.0:
resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
- postcss-double-position-gradients@1.0.0:
- resolution: {integrity: sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA==}
- engines: {node: '>=6.0.0'}
-
postcss-double-position-gradients@3.1.2:
resolution: {integrity: sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
- postcss-env-function@2.0.2:
- resolution: {integrity: sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw==}
- engines: {node: '>=6.0.0'}
-
postcss-env-function@4.0.6:
resolution: {integrity: sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.4
- postcss-flexbugs-fixes@4.2.1:
- resolution: {integrity: sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==}
-
postcss-flexbugs-fixes@5.0.2:
resolution: {integrity: sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==}
peerDependencies:
postcss: ^8.1.4
- postcss-focus-visible@4.0.0:
- resolution: {integrity: sha512-Z5CkWBw0+idJHSV6+Bgf2peDOFf/x4o+vX/pwcNYrWpXFrSfTkQ3JQ1ojrq9yS+upnAlNRHeg8uEwFTgorjI8g==}
- engines: {node: '>=6.0.0'}
-
postcss-focus-visible@6.0.4:
resolution: {integrity: sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.4
- postcss-focus-within@3.0.0:
- resolution: {integrity: sha512-W0APui8jQeBKbCGZudW37EeMCjDeVxKgiYfIIEo8Bdh5SpB9sxds/Iq8SEuzS0Q4YFOlG7EPFulbbxujpkrV2w==}
- engines: {node: '>=6.0.0'}
-
postcss-focus-within@5.0.4:
resolution: {integrity: sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.4
- postcss-font-variant@4.0.1:
- resolution: {integrity: sha512-I3ADQSTNtLTTd8uxZhtSOrTCQ9G4qUVKPjHiDk0bV75QSxXjVWiJVJ2VLdspGUi9fbW9BcjKJoRvxAH1pckqmA==}
-
postcss-font-variant@5.0.0:
resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==}
peerDependencies:
postcss: ^8.1.0
- postcss-gap-properties@2.0.0:
- resolution: {integrity: sha512-QZSqDaMgXCHuHTEzMsS2KfVDOq7ZFiknSpkrPJY6jmxbugUPTuSzs/vuE5I3zv0WAS+3vhrlqhijiprnuQfzmg==}
- engines: {node: '>=6.0.0'}
-
postcss-gap-properties@3.0.5:
resolution: {integrity: sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
- postcss-image-set-function@3.0.1:
- resolution: {integrity: sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw==}
- engines: {node: '>=6.0.0'}
-
postcss-image-set-function@4.0.7:
resolution: {integrity: sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==}
engines: {node: ^12 || ^14 || >=16}
@@ -13167,9 +13040,6 @@ packages:
peerDependencies:
postcss: ^8.0.0
- postcss-initial@3.0.4:
- resolution: {integrity: sha512-3RLn6DIpMsK1l5UUy9jxQvoDeUN4gP939tDcKUHD/kM8SGSKbFAnvkpFpj3Bhtz3HGk1jWY5ZNWX6mPta5M9fg==}
-
postcss-initial@4.0.1:
resolution: {integrity: sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==}
peerDependencies:
@@ -13181,20 +13051,12 @@ packages:
peerDependencies:
postcss: ^8.4.21
- postcss-lab-function@2.0.1:
- resolution: {integrity: sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg==}
- engines: {node: '>=6.0.0'}
-
postcss-lab-function@4.2.1:
resolution: {integrity: sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
- postcss-load-config@2.1.2:
- resolution: {integrity: sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==}
- engines: {node: '>= 4'}
-
postcss-load-config@3.1.4:
resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
engines: {node: '>= 10'}
@@ -13219,10 +13081,6 @@ packages:
ts-node:
optional: true
- postcss-loader@3.0.0:
- resolution: {integrity: sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==}
- engines: {node: '>= 6'}
-
postcss-loader@6.2.1:
resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==}
engines: {node: '>= 12.13.0'}
@@ -13243,20 +13101,12 @@ packages:
webpack:
optional: true
- postcss-logical@3.0.0:
- resolution: {integrity: sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA==}
- engines: {node: '>=6.0.0'}
-
postcss-logical@5.0.4:
resolution: {integrity: sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.4
- postcss-media-minmax@4.0.0:
- resolution: {integrity: sha512-fo9moya6qyxsjbFAYl97qKO9gyre3qvbMnkOZeZwlsW6XYFsvs2DMGDlchVLfAd8LHPZDxivu/+qW2SMQeTHBw==}
- engines: {node: '>=6.0.0'}
-
postcss-media-minmax@5.0.0:
resolution: {integrity: sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==}
engines: {node: '>=10.0.0'}
@@ -13266,99 +13116,60 @@ packages:
postcss-media-query-parser@0.2.3:
resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==}
- postcss-merge-longhand@4.0.11:
- resolution: {integrity: sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==}
- engines: {node: '>=6.9.0'}
-
postcss-merge-longhand@5.1.7:
resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
- postcss-merge-rules@4.0.3:
- resolution: {integrity: sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==}
- engines: {node: '>=6.9.0'}
-
postcss-merge-rules@5.1.4:
resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
- postcss-minify-font-values@4.0.2:
- resolution: {integrity: sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==}
- engines: {node: '>=6.9.0'}
-
postcss-minify-font-values@5.1.0:
resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
- postcss-minify-gradients@4.0.2:
- resolution: {integrity: sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==}
- engines: {node: '>=6.9.0'}
-
postcss-minify-gradients@5.1.1:
resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
- postcss-minify-params@4.0.2:
- resolution: {integrity: sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==}
- engines: {node: '>=6.9.0'}
-
postcss-minify-params@5.1.4:
resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
- postcss-minify-selectors@4.0.2:
- resolution: {integrity: sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==}
- engines: {node: '>=6.9.0'}
-
postcss-minify-selectors@5.2.1:
resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
- postcss-modules-extract-imports@2.0.0:
- resolution: {integrity: sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==}
- engines: {node: '>= 6'}
-
postcss-modules-extract-imports@3.1.0:
resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
- postcss-modules-local-by-default@3.0.3:
- resolution: {integrity: sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==}
- engines: {node: '>= 6'}
-
postcss-modules-local-by-default@4.0.5:
resolution: {integrity: sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
- postcss-modules-scope@2.2.0:
- resolution: {integrity: sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==}
- engines: {node: '>= 6'}
-
postcss-modules-scope@3.2.0:
resolution: {integrity: sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
- postcss-modules-values@3.0.0:
- resolution: {integrity: sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==}
-
postcss-modules-values@4.0.0:
resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==}
engines: {node: ^10 || ^12 || >= 14}
@@ -13377,94 +13188,54 @@ packages:
peerDependencies:
postcss: ^8.2
- postcss-nesting@7.0.1:
- resolution: {integrity: sha512-FrorPb0H3nuVq0Sff7W2rnc3SmIcruVC6YwpcS+k687VxyxO33iE1amna7wHuRVzM8vfiYofXSBHNAZ3QhLvYg==}
- engines: {node: '>=6.0.0'}
-
- postcss-normalize-charset@4.0.1:
- resolution: {integrity: sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==}
- engines: {node: '>=6.9.0'}
-
postcss-normalize-charset@5.1.0:
resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
- postcss-normalize-display-values@4.0.2:
- resolution: {integrity: sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==}
- engines: {node: '>=6.9.0'}
-
postcss-normalize-display-values@5.1.0:
resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
- postcss-normalize-positions@4.0.2:
- resolution: {integrity: sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==}
- engines: {node: '>=6.9.0'}
-
postcss-normalize-positions@5.1.1:
resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
- postcss-normalize-repeat-style@4.0.2:
- resolution: {integrity: sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==}
- engines: {node: '>=6.9.0'}
-
postcss-normalize-repeat-style@5.1.1:
resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
- postcss-normalize-string@4.0.2:
- resolution: {integrity: sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==}
- engines: {node: '>=6.9.0'}
-
postcss-normalize-string@5.1.0:
resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
- postcss-normalize-timing-functions@4.0.2:
- resolution: {integrity: sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==}
- engines: {node: '>=6.9.0'}
-
postcss-normalize-timing-functions@5.1.0:
resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
- postcss-normalize-unicode@4.0.1:
- resolution: {integrity: sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==}
- engines: {node: '>=6.9.0'}
-
postcss-normalize-unicode@5.1.1:
resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
- postcss-normalize-url@4.0.1:
- resolution: {integrity: sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==}
- engines: {node: '>=6.9.0'}
-
postcss-normalize-url@5.1.0:
resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
- postcss-normalize-whitespace@4.0.2:
- resolution: {integrity: sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==}
- engines: {node: '>=6.9.0'}
-
postcss-normalize-whitespace@5.1.1:
resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -13478,106 +13249,64 @@ packages:
browserslist: '>= 4'
postcss: '>= 8'
- postcss-normalize@8.0.1:
- resolution: {integrity: sha512-rt9JMS/m9FHIRroDDBGSMsyW1c0fkvOJPy62ggxSHUldJO7B195TqFMqIf+lY5ezpDcYOV4j86aUp3/XbxzCCQ==}
- engines: {node: '>=8.0.0'}
-
postcss-opacity-percentage@1.1.3:
resolution: {integrity: sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
- postcss-ordered-values@4.1.2:
- resolution: {integrity: sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==}
- engines: {node: '>=6.9.0'}
-
postcss-ordered-values@5.1.3:
resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
- postcss-overflow-shorthand@2.0.0:
- resolution: {integrity: sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g==}
- engines: {node: '>=6.0.0'}
-
postcss-overflow-shorthand@3.0.4:
resolution: {integrity: sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
- postcss-page-break@2.0.0:
- resolution: {integrity: sha512-tkpTSrLpfLfD9HvgOlJuigLuk39wVTbbd8RKcy8/ugV2bNBUW3xU+AIqyxhDrQr1VUj1RmyJrBn1YWrqUm9zAQ==}
-
postcss-page-break@3.0.4:
resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==}
peerDependencies:
postcss: ^8
- postcss-place@4.0.1:
- resolution: {integrity: sha512-Zb6byCSLkgRKLODj/5mQugyuj9bvAAw9LqJJjgwz5cYryGeXfFZfSXoP1UfveccFmeq0b/2xxwcTEVScnqGxBg==}
- engines: {node: '>=6.0.0'}
-
postcss-place@7.0.5:
resolution: {integrity: sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
- postcss-preset-env@6.7.0:
- resolution: {integrity: sha512-eU4/K5xzSFwUFJ8hTdTQzo2RBLbDVt83QZrAvI07TULOkmyQlnYlpwep+2yIK+K+0KlZO4BvFcleOCCcUtwchg==}
- engines: {node: '>=6.0.0'}
-
postcss-preset-env@7.8.3:
resolution: {integrity: sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
- postcss-pseudo-class-any-link@6.0.0:
- resolution: {integrity: sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew==}
- engines: {node: '>=6.0.0'}
-
postcss-pseudo-class-any-link@7.1.6:
resolution: {integrity: sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
- postcss-reduce-initial@4.0.3:
- resolution: {integrity: sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==}
- engines: {node: '>=6.9.0'}
-
postcss-reduce-initial@5.1.2:
resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
- postcss-reduce-transforms@4.0.2:
- resolution: {integrity: sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==}
- engines: {node: '>=6.9.0'}
-
postcss-reduce-transforms@5.1.0:
resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
- postcss-replace-overflow-wrap@3.0.0:
- resolution: {integrity: sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw==}
-
postcss-replace-overflow-wrap@4.0.0:
resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==}
peerDependencies:
postcss: ^8.0.3
- postcss-safe-parser@5.0.2:
- resolution: {integrity: sha512-jDUfCPJbKOABhwpUKcqCVbbXiloe/QXMcbJ6Iipf3sDIihEzTqRCeMBfRaOHxhBuTYqtASrI1KJWxzztZU4qUQ==}
- engines: {node: '>=10.0'}
-
postcss-safe-parser@6.0.0:
resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==}
engines: {node: '>=12.0'}
@@ -13590,64 +13319,31 @@ packages:
peerDependencies:
postcss: ^8.4.29
- postcss-selector-matches@4.0.0:
- resolution: {integrity: sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww==}
-
- postcss-selector-not@4.0.1:
- resolution: {integrity: sha512-YolvBgInEK5/79C+bdFMyzqTg6pkYqDbzZIST/PDMqa/o3qtXenD05apBG2jLgT0/BQ77d4U2UK12jWpilqMAQ==}
-
postcss-selector-not@6.0.1:
resolution: {integrity: sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
- postcss-selector-parser@3.1.2:
- resolution: {integrity: sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==}
- engines: {node: '>=8'}
-
- postcss-selector-parser@5.0.0:
- resolution: {integrity: sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==}
- engines: {node: '>=4'}
-
postcss-selector-parser@6.1.1:
resolution: {integrity: sha512-b4dlw/9V8A71rLIDsSwVmak9z2DuBUB7CA1/wSdelNEzqsjoSPeADTWNO09lpH49Diy3/JIZ2bSPB1dI3LJCHg==}
engines: {node: '>=4'}
- postcss-svgo@4.0.3:
- resolution: {integrity: sha512-NoRbrcMWTtUghzuKSoIm6XV+sJdvZ7GZSc3wdBN0W19FTtp2ko8NqLsgoh/m9CzNhU3KLPvQmjIwtaNFkaFTvw==}
- engines: {node: '>=6.9.0'}
-
postcss-svgo@5.1.0:
resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
- postcss-unique-selectors@4.0.1:
- resolution: {integrity: sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==}
- engines: {node: '>=6.9.0'}
-
postcss-unique-selectors@5.1.1:
resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
- postcss-value-parser@3.3.1:
- resolution: {integrity: sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==}
-
postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- postcss-values-parser@2.0.1:
- resolution: {integrity: sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg==}
- engines: {node: '>=6.14.4'}
-
- postcss@7.0.36:
- resolution: {integrity: sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==}
- engines: {node: '>=6.0.0'}
-
postcss@7.0.39:
resolution: {integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==}
engines: {node: '>=6.0.0'}
@@ -13676,10 +13372,6 @@ packages:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
- prepend-http@1.0.4:
- resolution: {integrity: sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg==}
- engines: {node: '>=0.10.0'}
-
prettier-plugin-svelte@3.2.6:
resolution: {integrity: sha512-Y1XWLw7vXUQQZmgv1JAEiLcErqUniAF2wO7QJsw8BVMvpLET2dI5WpEIEJx1r11iHVdSMzQxivyfrH9On9t2IQ==}
peerDependencies:
@@ -13767,10 +13459,6 @@ packages:
promise@8.3.0:
resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==}
- prompts@2.4.0:
- resolution: {integrity: sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==}
- engines: {node: '>= 6'}
-
prompts@2.4.2:
resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
engines: {node: '>= 6'}
@@ -13845,10 +13533,6 @@ packages:
resolution: {integrity: sha512-AWJm14H1vVaO/iNZ4/hO+HyaTehuy9nRqVdkTqlJt0HWvBiBIEXFmb4C0DGeYo3Xes9rrEW+TxHsaigCbN5ICQ==}
engines: {node: '>=0.6'}
- query-string@4.3.4:
- resolution: {integrity: sha512-O2XLNDBIg1DnTOa+2XrIwSiXEV8h2KImXUnjhhn2+UsvZ+Es2uyd5CCRTNQlDGbzUQOW3aYCBx9rVA6dzsiY7Q==}
- engines: {node: '>=0.10.0'}
-
query-string@7.1.3:
resolution: {integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==}
engines: {node: '>=6'}
@@ -13901,24 +13585,10 @@ packages:
resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
hasBin: true
- react-app-polyfill@2.0.0:
- resolution: {integrity: sha512-0sF4ny9v/B7s6aoehwze9vJNWcmCemAUYBVasscVr92+UYiEqDXOxfKjXN685mDaMRNF3WdhHQs76oTODMocFA==}
- engines: {node: '>=10'}
-
react-app-polyfill@3.0.0:
resolution: {integrity: sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==}
engines: {node: '>=14'}
- react-dev-utils@11.0.4:
- resolution: {integrity: sha512-dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A==}
- engines: {node: '>=10'}
- peerDependencies:
- typescript: '>=2.7'
- webpack: '>=4'
- peerDependenciesMeta:
- typescript:
- optional: true
-
react-dev-utils@12.0.1:
resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==}
engines: {node: '>=14'}
@@ -14043,10 +13713,6 @@ packages:
resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==}
engines: {node: '>=0.10.0'}
- react-refresh@0.8.3:
- resolution: {integrity: sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg==}
- engines: {node: '>=0.10.0'}
-
react-router-dom@6.25.1:
resolution: {integrity: sha512-0tUDpbFvk35iv+N89dWNrJp+afLgd+y4VtorJZuOCXK0kkCWjEvb3vTJM++SYvMEpbVwXKf3FjeVveVEb6JpDQ==}
engines: {node: '>=14.0.0'}
@@ -14060,18 +13726,6 @@ packages:
peerDependencies:
react: '>=16.8'
- react-scripts@4.0.3:
- resolution: {integrity: sha512-S5eO4vjUzUisvkIPB7jVsKtuH2HhWcASREYWHAQ1FP5HyCv3xgn+wpILAEWkmy+A+tTNbSZClhxjT3qz6g4L1A==}
- engines: {node: ^10.12.0 || >=12.0.0}
- hasBin: true
- peerDependencies:
- eslint: ^9.9.1
- react: '>= 16'
- typescript: ^3.2.1 || ^4
- peerDependenciesMeta:
- typescript:
- optional: true
-
react-scripts@5.0.1:
resolution: {integrity: sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==}
engines: {node: '>=14.0.0'}
@@ -14156,14 +13810,14 @@ packages:
resolution: {integrity: sha512-Hx/BGIbwj+Des3+xy5uAtAbdCyqK9y9wbBcDFDYanLS9JnMqf7OeF87HQwUimE87OEc72mr6tkKUKMBBL+hF9Q==}
engines: {node: '>= 4'}
+ rechoir@0.7.1:
+ resolution: {integrity: sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==}
+ engines: {node: '>= 0.10'}
+
rechoir@0.8.0:
resolution: {integrity: sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==}
engines: {node: '>= 10.13.0'}
- recursive-readdir@2.2.2:
- resolution: {integrity: sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==}
- engines: {node: '>=0.10.0'}
-
recursive-readdir@2.2.3:
resolution: {integrity: sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==}
engines: {node: '>=6.0.0'}
@@ -14190,12 +13844,13 @@ packages:
resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==}
engines: {node: '>=4'}
+ regenerate-unicode-properties@10.2.0:
+ resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==}
+ engines: {node: '>=4'}
+
regenerate@1.4.2:
resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
- regenerator-runtime@0.11.1:
- resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==}
-
regenerator-runtime@0.13.11:
resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
@@ -14220,6 +13875,17 @@ packages:
resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
engines: {node: '>=4'}
+ regexpu-core@6.2.0:
+ resolution: {integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==}
+ engines: {node: '>=4'}
+
+ regjsgen@0.8.0:
+ resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==}
+
+ regjsparser@0.12.0:
+ resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==}
+ hasBin: true
+
regjsparser@0.9.1:
resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
hasBin: true
@@ -14303,9 +13969,9 @@ packages:
requires-port@1.0.0:
resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
- resolve-cwd@2.0.0:
- resolution: {integrity: sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg==}
- engines: {node: '>=4'}
+ resolve-cwd@3.0.0:
+ resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==}
+ engines: {node: '>=8'}
resolve-dir@1.0.1:
resolution: {integrity: sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==}
@@ -14326,10 +13992,6 @@ packages:
resolve-pkg-maps@1.0.0:
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
- resolve-url-loader@3.1.5:
- resolution: {integrity: sha512-mgFMCmrV/tA4738EsFmPFE5/MaqSgUMe8LK971kVEKA/RrNVb7+VqFsg/qmKyythf34eyq476qIobP/gfFBGSQ==}
- engines: {node: '>=6.0.0'}
-
resolve-url-loader@4.0.0:
resolution: {integrity: sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA==}
engines: {node: '>=8.9'}
@@ -14354,9 +14016,6 @@ packages:
resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==}
engines: {node: '>=10'}
- resolve@1.18.1:
- resolution: {integrity: sha512-lDfCPaMKfOJXjy0dPayzPdF1phampNWr3qFCjAu+rw/qbQmr5jWH5xN2hwh9QKfw9E5v4hwV7A+jrCmL8yjjqA==}
-
resolve@1.22.8:
resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
hasBin: true
@@ -14410,12 +14069,6 @@ packages:
rework@1.0.1:
resolution: {integrity: sha512-eEjL8FdkdsxApd0yWVZgBGzfCQiT8yqSc2H1p4jpZpQdtz7ohETiDMoje5PlM8I9WgkqkreVxFUKYOiJdVWDXw==}
- rgb-regex@1.0.1:
- resolution: {integrity: sha512-gDK5mkALDFER2YLqH6imYvK6g02gpNGM4ILDZ472EwWfXZnC2ZEpoB2ECXTyOVUKuk/bPJZMzwQPBYICzP+D3w==}
-
- rgba-regex@1.0.0:
- resolution: {integrity: sha512-zgn5OjNQXLUTdq8m17KdaicF6w89TZs8ZU8y0AYENIU6wG8GG6LLm0yLSiPY8DmaYmHdgRW8rnApjoT0fQRfMg==}
-
rimraf@2.4.5:
resolution: {integrity: sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==}
deprecated: Rimraf versions prior to v4 are no longer supported
@@ -14443,24 +14096,11 @@ packages:
ripemd160@2.0.2:
resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==}
- rollup-plugin-babel@4.4.0:
- resolution: {integrity: sha512-Lek/TYp1+7g7I+uMfJnnSJ7YWoD58ajo6Oarhlex7lvUce+RCKRuGRSgztDO3/MF/PuGKmUL5iTHKf208UNszw==}
- deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-babel.
- peerDependencies:
- '@babel/core': 7 || ^7.0.0-rc.2
- rollup: '>=0.60.0 <3'
-
rollup-plugin-preserve-directives@0.4.0:
resolution: {integrity: sha512-gx4nBxYm5BysmEQS+e2tAMrtFxrGvk+Pe5ppafRibQi0zlW7VYAbEGk6IKDw9sJGPdFWgVTE0o4BU4cdG0Fylg==}
peerDependencies:
rollup: 2.x || 3.x || 4.x
- rollup-plugin-terser@5.3.1:
- resolution: {integrity: sha512-1pkwkervMJQGFYvM9nscrUoncPwiKR/K+bHdjv6PFgRo3cgPHoRT83y2Aa3GvINj4539S15t/tpFPb775TDs6w==}
- deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser
- peerDependencies:
- rollup: '>=0.66.0 <3'
-
rollup-plugin-terser@7.0.2:
resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==}
deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser
@@ -14477,13 +14117,6 @@ packages:
rollup:
optional: true
- rollup-pluginutils@2.8.2:
- resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==}
-
- rollup@1.32.1:
- resolution: {integrity: sha512-/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A==}
- hasBin: true
-
rollup@2.79.2:
resolution: {integrity: sha512-fS6iqSPZDs3dr/y7Od6y5nha8dW1YnbgtsyotCVvoFGKbERG++CVRFv1meyGDE1SNItQA8BrnCw7ScdAhRJ3XQ==}
engines: {node: '>=10.0.0'}
@@ -14551,28 +14184,9 @@ packages:
safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- sanitize.css@10.0.0:
- resolution: {integrity: sha512-vTxrZz4dX5W86M6oVWVdOVe72ZiPs41Oi7Z6Km4W5Turyz28mrXSJhhEBZoRtzJWIv3833WKVwLSDWWkEfupMg==}
-
sanitize.css@13.0.0:
resolution: {integrity: sha512-ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA==}
- sass-loader@10.5.2:
- resolution: {integrity: sha512-vMUoSNOUKJILHpcNCCyD23X34gve1TS7Rjd9uXHeKqhvBG39x6XbswFDtpbTElj6XdMFezoWhkh5vtKudf2cgQ==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- fibers: '>= 3.1.0'
- node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
- sass: ^1.3.0
- webpack: ^4.36.0 || ^5.0.0
- peerDependenciesMeta:
- fibers:
- optional: true
- node-sass:
- optional: true
- sass:
- optional: true
-
sass-loader@12.6.0:
resolution: {integrity: sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==}
engines: {node: '>= 12.13.0'}
@@ -14672,9 +14286,6 @@ packages:
select-hose@2.0.0:
resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==}
- selfsigned@1.10.14:
- resolution: {integrity: sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==}
-
selfsigned@2.4.1:
resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==}
engines: {node: '>=10'}
@@ -14687,11 +14298,6 @@ packages:
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
- semver@7.3.2:
- resolution: {integrity: sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==}
- engines: {node: '>=10'}
- hasBin: true
-
semver@7.5.4:
resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==}
engines: {node: '>=10'}
@@ -14718,9 +14324,6 @@ packages:
serialize-javascript@4.0.0:
resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==}
- serialize-javascript@5.0.1:
- resolution: {integrity: sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==}
-
serialize-javascript@6.0.2:
resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
@@ -14806,9 +14409,6 @@ packages:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- shell-quote@1.7.2:
- resolution: {integrity: sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==}
-
shell-quote@1.8.1:
resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==}
@@ -14993,10 +14593,6 @@ packages:
sort-by@1.2.0:
resolution: {integrity: sha512-aRyW65r3xMnf4nxJRluCg0H/woJpksU1dQxRtXYzau30sNBOmf5HACpDd9MZDhKh7ALQ5FgSOfMPwZEtUmMqcg==}
- sort-keys@1.1.2:
- resolution: {integrity: sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==}
- engines: {node: '>=0.10.0'}
-
source-list-map@2.0.1:
resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==}
@@ -15100,10 +14696,6 @@ packages:
ssri@6.0.2:
resolution: {integrity: sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==}
- ssri@8.0.1:
- resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==}
- engines: {node: '>= 8'}
-
stable-hash@0.0.4:
resolution: {integrity: sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==}
@@ -15176,10 +14768,6 @@ packages:
strict-event-emitter@0.5.1:
resolution: {integrity: sha512-vMgjE/GGEPEFnhFub6pa4FmJBRBVOLpIII2hvCZ8Kzb7K0hlHo7mQv6xYrBvCL2LtAIBwFUK8wvuJgTVSQ5MFQ==}
- strict-uri-encode@1.1.0:
- resolution: {integrity: sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==}
- engines: {node: '>=0.10.0'}
-
strict-uri-encode@2.0.0:
resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==}
engines: {node: '>=4'}
@@ -15195,10 +14783,6 @@ packages:
string-ts@2.2.0:
resolution: {integrity: sha512-VTP0LLZo4Jp9Gz5IiDVMS9WyLx/3IeYh0PXUn0NdPqusUFNgkHPWiEdbB9TU2Iv3myUskraD5WtYEdHUrQEIlQ==}
- string-width@3.1.0:
- resolution: {integrity: sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==}
- engines: {node: '>=6'}
-
string-width@4.2.3:
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
engines: {node: '>=8'}
@@ -15247,10 +14831,6 @@ packages:
resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==}
engines: {node: '>=6'}
- strip-ansi@6.0.0:
- resolution: {integrity: sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==}
- engines: {node: '>=8'}
-
strip-ansi@6.0.1:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
@@ -15267,10 +14847,6 @@ packages:
resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
engines: {node: '>=4'}
- strip-comments@1.0.2:
- resolution: {integrity: sha512-kL97alc47hoyIQSV165tTt9rG5dn4w1dNnBhOQ3bOU1Nc1hel09jnXANaHJ7vzHLd4Ju8kseDGzlev96pghLFw==}
- engines: {node: '>=4'}
-
strip-comments@2.0.1:
resolution: {integrity: sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==}
engines: {node: '>=10'}
@@ -15317,12 +14893,6 @@ packages:
structured-headers@0.4.1:
resolution: {integrity: sha512-0MP/Cxx5SzeeZ10p/bZI0S6MpgD+yxAhi1BOQ34jgnMXsCq3j1t6tQnZu+KdlL7dvJTLT3g9xN8tl10TqgFMcg==}
- style-loader@1.3.0:
- resolution: {integrity: sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==}
- engines: {node: '>= 8.9.0'}
- peerDependencies:
- webpack: ^4.0.0 || ^5.0.0
-
style-loader@3.3.4:
resolution: {integrity: sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==}
engines: {node: '>= 12.13.0'}
@@ -15355,10 +14925,6 @@ packages:
babel-plugin-macros:
optional: true
- stylehacks@4.0.3:
- resolution: {integrity: sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==}
- engines: {node: '>=6.9.0'}
-
stylehacks@5.1.1:
resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -15401,10 +14967,6 @@ packages:
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
engines: {node: '>=4'}
- supports-color@6.1.0:
- resolution: {integrity: sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==}
- engines: {node: '>=6'}
-
supports-color@7.2.0:
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
engines: {node: '>=8'}
@@ -15559,12 +15121,6 @@ packages:
peerDependencies:
webpack: ^4.0.0
- terser-webpack-plugin@4.2.3:
- resolution: {integrity: sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- webpack: ^4.0.0 || ^5.0.0
-
terser-webpack-plugin@5.3.10:
resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==}
engines: {node: '>= 10.13.0'}
@@ -15637,9 +15193,6 @@ packages:
resolution: {integrity: sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==}
engines: {node: '>=0.6.0'}
- timsort@0.3.0:
- resolution: {integrity: sha512-qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A==}
-
tiny-glob@0.2.9:
resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==}
@@ -15764,15 +15317,6 @@ packages:
ts-pattern@5.3.1:
resolution: {integrity: sha512-1RUMKa8jYQdNfmnK4jyzBK3/PS/tnjcZ1CW0v1vWDeYe5RBklc/nquw03MEoB66hVBm4BnlCfmOqDVxHyT1DpA==}
- ts-pnp@1.2.0:
- resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==}
- engines: {node: '>=6'}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
-
ts-toolbelt@9.6.0:
resolution: {integrity: sha512-nsZd8ZeNUzukXPlJmTBwUAuABDe/9qtVDelJeT/qW0ow3ZS3BsQJtNkan1802aM9Uf68/Y8ljw86Hu0h5IUW3w==}
@@ -15879,9 +15423,6 @@ packages:
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
engines: {node: '>= 0.6'}
- type@2.7.3:
- resolution: {integrity: sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==}
-
typed-array-buffer@1.0.2:
resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==}
engines: {node: '>= 0.4'}
@@ -16066,12 +15607,6 @@ packages:
resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==}
engines: {node: '>=0.10.0'}
- uniq@1.0.1:
- resolution: {integrity: sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA==}
-
- uniqs@2.0.0:
- resolution: {integrity: sha512-mZdDpf3vBV5Efh29kMw5tXoup/buMgxLzOt/XKFKcVmi+15ManNQWr6HfZ2aiZTYlYixbdNJ0KFmIZIv52tHSQ==}
-
unique-filename@1.1.1:
resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==}
@@ -16220,6 +15755,12 @@ packages:
peerDependencies:
browserslist: '>= 4.21.0'
+ update-browserslist-db@1.1.1:
+ resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==}
+ hasBin: true
+ peerDependencies:
+ browserslist: '>= 4.21.0'
+
uqr@0.1.2:
resolution: {integrity: sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==}
@@ -16233,16 +15774,6 @@ packages:
url-join@4.0.0:
resolution: {integrity: sha512-EGXjXJZhIHiQMK2pQukuFcL303nskqIRzWvPvV5O8miOfwoUb9G+a/Cld60kUyeaybEI94wvVClT10DtfeAExA==}
- url-loader@4.1.1:
- resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- file-loader: '*'
- webpack: ^4.0.0 || ^5.0.0
- peerDependenciesMeta:
- file-loader:
- optional: true
-
url-parse@1.5.10:
resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
@@ -16294,11 +15825,6 @@ packages:
resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
engines: {node: '>= 0.4.0'}
- uuid@3.4.0:
- resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==}
- deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.
- hasBin: true
-
uuid@7.0.3:
resolution: {integrity: sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==}
hasBin: true
@@ -16331,9 +15857,6 @@ packages:
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
engines: {node: '>= 0.8'}
- vendors@1.0.4:
- resolution: {integrity: sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==}
-
vfile-location@5.0.3:
resolution: {integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==}
@@ -16668,11 +16191,25 @@ packages:
resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
engines: {node: '>=12'}
- webpack-dev-middleware@3.7.3:
- resolution: {integrity: sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==}
- engines: {node: '>= 6'}
+ webpack-cli@4.10.0:
+ resolution: {integrity: sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==}
+ engines: {node: '>=10.13.0'}
+ hasBin: true
peerDependencies:
- webpack: ^4.0.0 || ^5.0.0
+ '@webpack-cli/generators': '*'
+ '@webpack-cli/migrate': '*'
+ webpack: 4.x.x || 5.x.x
+ webpack-bundle-analyzer: '*'
+ webpack-dev-server: '*'
+ peerDependenciesMeta:
+ '@webpack-cli/generators':
+ optional: true
+ '@webpack-cli/migrate':
+ optional: true
+ webpack-bundle-analyzer:
+ optional: true
+ webpack-dev-server:
+ optional: true
webpack-dev-middleware@5.3.4:
resolution: {integrity: sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==}
@@ -16689,17 +16226,6 @@ packages:
webpack:
optional: true
- webpack-dev-server@3.11.1:
- resolution: {integrity: sha512-u4R3mRzZkbxQVa+MBWi2uVpB5W59H3ekZAJsQlKUTdl7Elcah2EhygTPLmeFXybQkf9i2+L0kn7ik9SnXa6ihQ==}
- engines: {node: '>= 6.11.5'}
- hasBin: true
- peerDependencies:
- webpack: ^4.0.0 || ^5.0.0
- webpack-cli: '*'
- peerDependenciesMeta:
- webpack-cli:
- optional: true
-
webpack-dev-server@4.15.1:
resolution: {integrity: sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==}
engines: {node: '>= 12.13.0'}
@@ -16726,16 +16252,6 @@ packages:
webpack-cli:
optional: true
- webpack-log@2.0.0:
- resolution: {integrity: sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==}
- engines: {node: '>= 6'}
-
- webpack-manifest-plugin@2.2.0:
- resolution: {integrity: sha512-9S6YyKKKh/Oz/eryM1RyLVDVmy3NSPV0JXMRhZ18fJsq+AwGxUY34X54VNwkzYcEmEkDwNxuEOboCZEebJXBAQ==}
- engines: {node: '>=6.11.5'}
- peerDependencies:
- webpack: 2 || 3 || 4
-
webpack-manifest-plugin@4.1.1:
resolution: {integrity: sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow==}
engines: {node: '>=12.22.0'}
@@ -16890,126 +16406,66 @@ packages:
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
engines: {node: '>=0.10.0'}
- workbox-background-sync@5.1.4:
- resolution: {integrity: sha512-AH6x5pYq4vwQvfRDWH+vfOePfPIYQ00nCEB7dJRU1e0n9+9HMRyvI63FlDvtFT2AvXVRsXvUt7DNMEToyJLpSA==}
-
workbox-background-sync@6.6.0:
resolution: {integrity: sha512-jkf4ZdgOJxC9u2vztxLuPT/UjlH7m/nWRQ/MgGL0v8BJHoZdVGJd18Kck+a0e55wGXdqyHO+4IQTk0685g4MUw==}
- workbox-broadcast-update@5.1.4:
- resolution: {integrity: sha512-HTyTWkqXvHRuqY73XrwvXPud/FN6x3ROzkfFPsRjtw/kGZuZkPzfeH531qdUGfhtwjmtO/ZzXcWErqVzJNdXaA==}
-
workbox-broadcast-update@6.6.0:
resolution: {integrity: sha512-nm+v6QmrIFaB/yokJmQ/93qIJ7n72NICxIwQwe5xsZiV2aI93MGGyEyzOzDPVz5THEr5rC3FJSsO3346cId64Q==}
- workbox-build@5.1.4:
- resolution: {integrity: sha512-xUcZn6SYU8usjOlfLb9Y2/f86Gdo+fy1fXgH8tJHjxgpo53VVsqRX0lUDw8/JuyzNmXuo8vXX14pXX2oIm9Bow==}
- engines: {node: '>=8.0.0'}
-
workbox-build@6.6.0:
resolution: {integrity: sha512-Tjf+gBwOTuGyZwMz2Nk/B13Fuyeo0Q84W++bebbVsfr9iLkDSo6j6PST8tET9HYA58mlRXwlMGpyWO8ETJiXdQ==}
engines: {node: '>=10.0.0'}
- workbox-cacheable-response@5.1.4:
- resolution: {integrity: sha512-0bfvMZs0Of1S5cdswfQK0BXt6ulU5kVD4lwer2CeI+03czHprXR3V4Y8lPTooamn7eHP8Iywi5QjyAMjw0qauA==}
-
workbox-cacheable-response@6.6.0:
resolution: {integrity: sha512-JfhJUSQDwsF1Xv3EV1vWzSsCOZn4mQ38bWEBR3LdvOxSPgB65gAM6cS2CX8rkkKHRgiLrN7Wxoyu+TuH67kHrw==}
deprecated: workbox-background-sync@6.6.0
- workbox-core@5.1.4:
- resolution: {integrity: sha512-+4iRQan/1D8I81nR2L5vcbaaFskZC2CL17TLbvWVzQ4qiF/ytOGF6XeV54pVxAvKUtkLANhk8TyIUMtiMw2oDg==}
-
workbox-core@6.6.0:
resolution: {integrity: sha512-GDtFRF7Yg3DD859PMbPAYPeJyg5gJYXuBQAC+wyrWuuXgpfoOrIQIvFRZnQ7+czTIQjIr1DhLEGFzZanAT/3bQ==}
- workbox-expiration@5.1.4:
- resolution: {integrity: sha512-oDO/5iC65h2Eq7jctAv858W2+CeRW5e0jZBMNRXpzp0ZPvuT6GblUiHnAsC5W5lANs1QS9atVOm4ifrBiYY7AQ==}
-
workbox-expiration@6.6.0:
resolution: {integrity: sha512-baplYXcDHbe8vAo7GYvyAmlS4f6998Jff513L4XvlzAOxcl8F620O91guoJ5EOf5qeXG4cGdNZHkkVAPouFCpw==}
- workbox-google-analytics@5.1.4:
- resolution: {integrity: sha512-0IFhKoEVrreHpKgcOoddV+oIaVXBFKXUzJVBI+nb0bxmcwYuZMdteBTp8AEDJacENtc9xbR0wa9RDCnYsCDLjA==}
- deprecated: It is not compatible with newer versions of GA starting with v4, as long as you are using GAv3 it should be ok, but the package is not longer being maintained
-
workbox-google-analytics@6.6.0:
resolution: {integrity: sha512-p4DJa6OldXWd6M9zRl0H6vB9lkrmqYFkRQ2xEiNdBFp9U0LhsGO7hsBscVEyH9H2/3eZZt8c97NB2FD9U2NJ+Q==}
deprecated: It is not compatible with newer versions of GA starting with v4, as long as you are using GAv3 it should be ok, but the package is not longer being maintained
- workbox-navigation-preload@5.1.4:
- resolution: {integrity: sha512-Wf03osvK0wTflAfKXba//QmWC5BIaIZARU03JIhAEO2wSB2BDROWI8Q/zmianf54kdV7e1eLaIEZhth4K4MyfQ==}
-
workbox-navigation-preload@6.6.0:
resolution: {integrity: sha512-utNEWG+uOfXdaZmvhshrh7KzhDu/1iMHyQOV6Aqup8Mm78D286ugu5k9MFD9SzBT5TcwgwSORVvInaXWbvKz9Q==}
- workbox-precaching@5.1.4:
- resolution: {integrity: sha512-gCIFrBXmVQLFwvAzuGLCmkUYGVhBb7D1k/IL7pUJUO5xacjLcFUaLnnsoVepBGAiKw34HU1y/YuqvTKim9qAZA==}
-
workbox-precaching@6.6.0:
resolution: {integrity: sha512-eYu/7MqtRZN1IDttl/UQcSZFkHP7dnvr/X3Vn6Iw6OsPMruQHiVjjomDFCNtd8k2RdjLs0xiz9nq+t3YVBcWPw==}
- workbox-range-requests@5.1.4:
- resolution: {integrity: sha512-1HSujLjgTeoxHrMR2muDW2dKdxqCGMc1KbeyGcmjZZAizJTFwu7CWLDmLv6O1ceWYrhfuLFJO+umYMddk2XMhw==}
-
workbox-range-requests@6.6.0:
resolution: {integrity: sha512-V3aICz5fLGq5DpSYEU8LxeXvsT//mRWzKrfBOIxzIdQnV/Wj7R+LyJVTczi4CQ4NwKhAaBVaSujI1cEjXW+hTw==}
workbox-recipes@6.6.0:
resolution: {integrity: sha512-TFi3kTgYw73t5tg73yPVqQC8QQjxJSeqjXRO4ouE/CeypmP2O/xqmB/ZFBBQazLTPxILUQ0b8aeh0IuxVn9a6A==}
- workbox-routing@5.1.4:
- resolution: {integrity: sha512-8ljknRfqE1vEQtnMtzfksL+UXO822jJlHTIR7+BtJuxQ17+WPZfsHqvk1ynR/v0EHik4x2+826Hkwpgh4GKDCw==}
-
workbox-routing@6.6.0:
resolution: {integrity: sha512-x8gdN7VDBiLC03izAZRfU+WKUXJnbqt6PG9Uh0XuPRzJPpZGLKce/FkOX95dWHRpOHWLEq8RXzjW0O+POSkKvw==}
- workbox-strategies@5.1.4:
- resolution: {integrity: sha512-VVS57LpaJTdjW3RgZvPwX0NlhNmscR7OQ9bP+N/34cYMDzXLyA6kqWffP6QKXSkca1OFo/v6v7hW7zrrguo6EA==}
-
workbox-strategies@6.6.0:
resolution: {integrity: sha512-eC07XGuINAKUWDnZeIPdRdVja4JQtTuc35TZ8SwMb1ztjp7Ddq2CJ4yqLvWzFWGlYI7CG/YGqaETntTxBGdKgQ==}
- workbox-streams@5.1.4:
- resolution: {integrity: sha512-xU8yuF1hI/XcVhJUAfbQLa1guQUhdLMPQJkdT0kn6HP5CwiPOGiXnSFq80rAG4b1kJUChQQIGPrq439FQUNVrw==}
-
workbox-streams@6.6.0:
resolution: {integrity: sha512-rfMJLVvwuED09CnH1RnIep7L9+mj4ufkTyDPVaXPKlhi9+0czCu+SJggWCIFbPpJaAZmp2iyVGLqS3RUmY3fxg==}
- workbox-sw@5.1.4:
- resolution: {integrity: sha512-9xKnKw95aXwSNc8kk8gki4HU0g0W6KXu+xks7wFuC7h0sembFnTrKtckqZxbSod41TDaGh+gWUA5IRXrL0ECRA==}
-
workbox-sw@6.6.0:
resolution: {integrity: sha512-R2IkwDokbtHUE4Kus8pKO5+VkPHD2oqTgl+XJwh4zbF1HyjAbgNmK/FneZHVU7p03XUt9ICfuGDYISWG9qV/CQ==}
- workbox-webpack-plugin@5.1.4:
- resolution: {integrity: sha512-PZafF4HpugZndqISi3rZ4ZK4A4DxO8rAqt2FwRptgsDx7NF8TVKP86/huHquUsRjMGQllsNdn4FNl8CD/UvKmQ==}
- engines: {node: '>=8.0.0'}
- peerDependencies:
- webpack: ^4.0.0
-
workbox-webpack-plugin@6.6.0:
resolution: {integrity: sha512-xNZIZHalboZU66Wa7x1YkjIqEy1gTR+zPM+kjrYJzqN7iurYZBctBLISyScjhkJKYuRrZUP0iqViZTh8rS0+3A==}
engines: {node: '>=10.0.0'}
peerDependencies:
webpack: ^4.4.0 || ^5.9.0
- workbox-window@5.1.4:
- resolution: {integrity: sha512-vXQtgTeMCUq/4pBWMfQX8Ee7N2wVC4Q7XYFqLnfbXJ2hqew/cU1uMTD2KqGEgEpE4/30luxIxgE+LkIa8glBYw==}
-
workbox-window@6.6.0:
resolution: {integrity: sha512-L4N9+vka17d16geaJXXRjENLFldvkWy7JyGxElRD0JvBxvFEd8LOhr+uXCcar/NzAmIBRv9EZ+M+Qr4mOoBITw==}
worker-farm@1.7.0:
resolution: {integrity: sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==}
- worker-rpc@0.1.1:
- resolution: {integrity: sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==}
-
- wrap-ansi@5.1.0:
- resolution: {integrity: sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==}
- engines: {node: '>=6'}
-
wrap-ansi@6.2.0:
resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
engines: {node: '>=8'}
@@ -17131,9 +16587,6 @@ packages:
engines: {node: '>= 14'}
hasBin: true
- yargs-parser@13.1.2:
- resolution: {integrity: sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==}
-
yargs-parser@18.1.3:
resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==}
engines: {node: '>=6'}
@@ -17146,9 +16599,6 @@ packages:
resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
engines: {node: '>=12'}
- yargs@13.3.2:
- resolution: {integrity: sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==}
-
yargs@15.4.1:
resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==}
engines: {node: '>=8'}
@@ -17224,15 +16674,15 @@ snapshots:
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
- '@analogjs/vite-plugin-angular@1.6.4(@angular-devkit/build-angular@17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(@types/express@4.17.21)(@types/node@22.7.4)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.93.0(esbuild@0.19.12)))(ng-packagr@17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3))(@ngtools/webpack@17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(typescript@5.3.3)(webpack@5.93.0(esbuild@0.19.12)))':
+ '@analogjs/vite-plugin-angular@1.6.4(@angular-devkit/build-angular@17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(@types/express@4.17.21)(@types/node@22.7.4)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.93.0(esbuild@0.19.12)))(ng-packagr@17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(tailwindcss@3.4.7)(tslib@2.7.0)(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3))(@ngtools/webpack@17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(typescript@5.3.3)(webpack@5.93.0(esbuild@0.19.12)))':
dependencies:
- '@angular-devkit/build-angular': 17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(@types/express@4.17.21)(@types/node@22.7.4)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.93.0(esbuild@0.19.12)))(ng-packagr@17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3)
+ '@angular-devkit/build-angular': 17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(@types/express@4.17.21)(@types/node@22.7.4)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.93.0(esbuild@0.19.12)))(ng-packagr@17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(tailwindcss@3.4.7)(tslib@2.7.0)(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3)
'@ngtools/webpack': 17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(typescript@5.3.3)(webpack@5.93.0(esbuild@0.19.12))
ts-morph: 21.0.1
- '@analogjs/vite-plugin-angular@1.6.4(@angular-devkit/build-angular@17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(@types/express@4.17.21)(@types/node@22.7.4)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.93.0(esbuild@0.21.5)))(ng-packagr@17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3))(@ngtools/webpack@17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(typescript@5.3.3)(webpack@5.93.0(esbuild@0.21.5)))':
+ '@analogjs/vite-plugin-angular@1.6.4(@angular-devkit/build-angular@17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(@types/express@4.17.21)(@types/node@22.7.4)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.93.0(esbuild@0.21.5)))(ng-packagr@17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(tailwindcss@3.4.7)(tslib@2.7.0)(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3))(@ngtools/webpack@17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(typescript@5.3.3)(webpack@5.93.0(esbuild@0.21.5)))':
dependencies:
- '@angular-devkit/build-angular': 17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(@types/express@4.17.21)(@types/node@22.7.4)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.93.0(esbuild@0.21.5)))(ng-packagr@17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3)
+ '@angular-devkit/build-angular': 17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(@types/express@4.17.21)(@types/node@22.7.4)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.93.0(esbuild@0.21.5)))(ng-packagr@17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(tailwindcss@3.4.7)(tslib@2.7.0)(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3)
'@ngtools/webpack': 17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(typescript@5.3.3)(webpack@5.93.0(esbuild@0.21.5))
ts-morph: 21.0.1
@@ -17335,7 +16785,7 @@ snapshots:
- utf-8-validate
- webpack-cli
- '@angular-devkit/build-angular@17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(@types/express@4.17.21)(@types/node@22.7.4)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.93.0(esbuild@0.19.12)))(ng-packagr@17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3)':
+ '@angular-devkit/build-angular@17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(@types/express@4.17.21)(@types/node@22.7.4)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.93.0(esbuild@0.19.12)))(ng-packagr@17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(tailwindcss@3.4.7)(tslib@2.7.0)(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3)':
dependencies:
'@ampproject/remapping': 2.3.0
'@angular-devkit/architect': 0.1703.8(chokidar@3.6.0)
@@ -17425,7 +16875,7 @@ snapshots:
- utf-8-validate
- webpack-cli
- '@angular-devkit/build-angular@17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(@types/express@4.17.21)(@types/node@22.7.4)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.93.0(esbuild@0.21.5)))(ng-packagr@17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3)':
+ '@angular-devkit/build-angular@17.3.8(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(@types/express@4.17.21)(@types/node@22.7.4)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.93.0(esbuild@0.21.5)))(ng-packagr@17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.8)))(typescript@5.3.3))(tailwindcss@3.4.7)(tslib@2.7.0)(typescript@5.3.3))(tailwindcss@3.4.7)(typescript@5.3.3)':
dependencies:
'@ampproject/remapping': 2.3.0
'@angular-devkit/architect': 0.1703.8(chokidar@3.6.0)
@@ -17735,7 +17185,7 @@ snapshots:
'@astrojs/node@8.3.2(astro@4.12.3(@types/node@22.7.4)(less@4.2.0)(sass@1.77.8)(terser@5.31.3)(typescript@5.3.3))':
dependencies:
astro: 4.12.3(@types/node@22.7.4)(less@4.2.0)(sass@1.77.8)(terser@5.31.3)(typescript@5.3.3)
- send: 0.18.0(supports-color@6.1.0)
+ send: 0.18.0
server-destroy: 1.0.1
transitivePeerDependencies:
- supports-color
@@ -17766,7 +17216,7 @@ snapshots:
'@astrojs/telemetry@3.1.0':
dependencies:
ci-info: 4.0.0
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
dlv: 1.1.3
dset: 3.1.3
is-docker: 3.0.0
@@ -17775,10 +17225,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@astrojs/vercel@7.7.2(astro@4.12.3(@types/node@22.7.4)(less@4.2.0)(sass@1.77.8)(terser@5.31.3)(typescript@5.3.3))(encoding@0.1.13)(next@14.2.5(@babel/core@7.25.2)(react-dom@19.0.0-rc-4c2e457c7c-20240522(react@19.0.0-rc-4c2e457c7c-20240522))(react@18.3.1)(sass@1.77.8))(react@18.3.1)':
+ '@astrojs/vercel@7.7.2(astro@4.12.3(@types/node@22.7.4)(less@4.2.0)(sass@1.77.8)(terser@5.31.3)(typescript@5.3.3))(encoding@0.1.13)(next@14.2.5(@babel/core@7.25.2)(react-dom@19.0.0-rc-4c2e457c7c-20240522(react@18.3.1))(react@18.3.1)(sass@1.77.8))(react@18.3.1)':
dependencies:
'@astrojs/internal-helpers': 0.4.1
- '@vercel/analytics': 1.3.1(next@14.2.5(@babel/core@7.25.2)(react-dom@19.0.0-rc-4c2e457c7c-20240522(react@19.0.0-rc-4c2e457c7c-20240522))(react@18.3.1)(sass@1.77.8))(react@18.3.1)
+ '@vercel/analytics': 1.3.1(next@14.2.5(@babel/core@7.25.2)(react-dom@19.0.0-rc-4c2e457c7c-20240522(react@18.3.1))(react@18.3.1)(sass@1.77.8))(react@18.3.1)
'@vercel/edge': 1.1.2
'@vercel/nft': 0.27.3(encoding@0.1.13)
astro: 4.12.3(@types/node@22.7.4)(less@4.2.0)(sass@1.77.8)(terser@5.31.3)(typescript@5.3.3)
@@ -17801,28 +17251,15 @@ snapshots:
'@babel/highlight': 7.25.7
picocolors: 1.1.0
+ '@babel/code-frame@7.26.2':
+ dependencies:
+ '@babel/helper-validator-identifier': 7.25.9
+ js-tokens: 4.0.0
+ picocolors: 1.1.0
+
'@babel/compat-data@7.25.2': {}
- '@babel/core@7.12.3':
- dependencies:
- '@babel/code-frame': 7.25.7
- '@babel/generator': 7.25.7
- '@babel/helper-module-transforms': 7.25.2(@babel/core@7.12.3)
- '@babel/helpers': 7.25.0
- '@babel/parser': 7.25.7
- '@babel/template': 7.25.7
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.7
- convert-source-map: 1.9.0
- debug: 4.3.7(supports-color@6.1.0)
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- lodash: 4.17.21
- resolve: 1.22.8
- semver: 5.7.2
- source-map: 0.5.7
- transitivePeerDependencies:
- - supports-color
+ '@babel/compat-data@7.26.2': {}
'@babel/core@7.23.9':
dependencies:
@@ -17837,7 +17274,7 @@ snapshots:
'@babel/traverse': 7.25.7
'@babel/types': 7.25.7
convert-source-map: 2.0.0
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
@@ -17857,7 +17294,7 @@ snapshots:
'@babel/traverse': 7.25.7
'@babel/types': 7.25.7
convert-source-map: 2.0.0
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
@@ -17877,7 +17314,27 @@ snapshots:
'@babel/traverse': 7.25.7
'@babel/types': 7.25.7
convert-source-map: 2.0.0
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/core@7.26.0':
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.2
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helpers': 7.26.0
+ '@babel/parser': 7.26.2
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ convert-source-map: 2.0.0
+ debug: 4.3.7
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
@@ -17898,6 +17355,14 @@ snapshots:
'@jridgewell/trace-mapping': 0.3.25
jsesc: 3.0.2
+ '@babel/generator@7.26.2':
+ dependencies:
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
+ '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/trace-mapping': 0.3.25
+ jsesc: 3.0.2
+
'@babel/helper-annotate-as-pure@7.22.5':
dependencies:
'@babel/types': 7.25.7
@@ -17906,6 +17371,10 @@ snapshots:
dependencies:
'@babel/types': 7.25.7
+ '@babel/helper-annotate-as-pure@7.25.9':
+ dependencies:
+ '@babel/types': 7.26.0
+
'@babel/helper-builder-binary-assignment-operator-visitor@7.24.7':
dependencies:
'@babel/traverse': 7.25.7
@@ -17913,6 +17382,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-builder-binary-assignment-operator-visitor@7.25.9':
+ dependencies:
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-compilation-targets@7.25.2':
dependencies:
'@babel/compat-data': 7.25.2
@@ -17921,6 +17397,14 @@ snapshots:
lru-cache: 5.1.1
semver: 6.3.1
+ '@babel/helper-compilation-targets@7.25.9':
+ dependencies:
+ '@babel/compat-data': 7.26.2
+ '@babel/helper-validator-option': 7.25.9
+ browserslist: 4.24.2
+ lru-cache: 5.1.1
+ semver: 6.3.1
+
'@babel/helper-create-class-features-plugin@7.25.0(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
@@ -17947,6 +17431,45 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-create-class-features-plugin@7.25.0(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.24.8
+ '@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/helper-replace-supers': 7.25.0(@babel/core@7.26.0)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/traverse': 7.25.7
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-member-expression-to-functions': 7.25.9
+ '@babel/helper-optimise-call-expression': 7.25.9
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.25.2)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/traverse': 7.25.9
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-member-expression-to-functions': 7.25.9
+ '@babel/helper-optimise-call-expression': 7.25.9
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/traverse': 7.25.9
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-create-regexp-features-plugin@7.25.2(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
@@ -17961,12 +17484,33 @@ snapshots:
regexpu-core: 5.3.2
semver: 6.3.1
+ '@babel/helper-create-regexp-features-plugin@7.25.2(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.24.7
+ regexpu-core: 5.3.2
+ semver: 6.3.1
+
+ '@babel/helper-create-regexp-features-plugin@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-annotate-as-pure': 7.25.9
+ regexpu-core: 6.2.0
+ semver: 6.3.1
+
+ '@babel/helper-create-regexp-features-plugin@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ regexpu-core: 6.2.0
+ semver: 6.3.1
+
'@babel/helper-define-polyfill-provider@0.5.0(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-compilation-targets': 7.25.2
'@babel/helper-plugin-utils': 7.25.7
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
lodash.debounce: 4.0.8
resolve: 1.22.8
transitivePeerDependencies:
@@ -17975,9 +17519,9 @@ snapshots:
'@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
- debug: 4.3.7(supports-color@6.1.0)
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ debug: 4.3.7
lodash.debounce: 4.0.8
resolve: 1.22.8
transitivePeerDependencies:
@@ -17986,9 +17530,20 @@ snapshots:
'@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
- debug: 4.3.7(supports-color@6.1.0)
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ debug: 4.3.7
+ lodash.debounce: 4.0.8
+ resolve: 1.22.8
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ debug: 4.3.7
lodash.debounce: 4.0.8
resolve: 1.22.8
transitivePeerDependencies:
@@ -18005,6 +17560,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-member-expression-to-functions@7.25.9':
+ dependencies:
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-module-imports@7.18.6':
dependencies:
'@babel/types': 7.25.7
@@ -18016,13 +17578,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.25.2(@babel/core@7.12.3)':
+ '@babel/helper-module-imports@7.25.9':
dependencies:
- '@babel/core': 7.12.3
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-simple-access': 7.24.7
- '@babel/helper-validator-identifier': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
@@ -18056,12 +17615,46 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-module-transforms@7.25.2(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-simple-access': 7.24.7
+ '@babel/helper-validator-identifier': 7.25.7
+ '@babel/traverse': 7.25.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-module-transforms@7.26.0(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-optimise-call-expression@7.24.7':
dependencies:
'@babel/types': 7.25.7
+ '@babel/helper-optimise-call-expression@7.25.9':
+ dependencies:
+ '@babel/types': 7.26.0
+
'@babel/helper-plugin-utils@7.25.7': {}
+ '@babel/helper-plugin-utils@7.25.9': {}
+
'@babel/helper-remap-async-to-generator@7.25.0(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
@@ -18080,6 +17673,24 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-wrap-function': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-wrap-function': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-replace-supers@7.25.0(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
@@ -18098,6 +17709,33 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-replace-supers@7.25.0(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-member-expression-to-functions': 7.24.8
+ '@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/traverse': 7.25.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-replace-supers@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-member-expression-to-functions': 7.25.9
+ '@babel/helper-optimise-call-expression': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-replace-supers@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-member-expression-to-functions': 7.25.9
+ '@babel/helper-optimise-call-expression': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-simple-access@7.24.7':
dependencies:
'@babel/traverse': 7.25.7
@@ -18105,6 +17743,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-simple-access@7.25.9':
+ dependencies:
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-skip-transparent-expression-wrappers@7.24.7':
dependencies:
'@babel/traverse': 7.25.7
@@ -18112,16 +17757,29 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
+ dependencies:
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-split-export-declaration@7.22.6':
dependencies:
'@babel/types': 7.25.7
'@babel/helper-string-parser@7.25.7': {}
+ '@babel/helper-string-parser@7.25.9': {}
+
'@babel/helper-validator-identifier@7.25.7': {}
+ '@babel/helper-validator-identifier@7.25.9': {}
+
'@babel/helper-validator-option@7.24.8': {}
+ '@babel/helper-validator-option@7.25.9': {}
+
'@babel/helper-wrap-function@7.25.0':
dependencies:
'@babel/template': 7.25.7
@@ -18130,11 +17788,24 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-wrap-function@7.25.9':
+ dependencies:
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helpers@7.25.0':
dependencies:
'@babel/template': 7.25.7
'@babel/types': 7.25.7
+ '@babel/helpers@7.26.0':
+ dependencies:
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.0
+
'@babel/highlight@7.25.7':
dependencies:
'@babel/helper-validator-identifier': 7.25.7
@@ -18146,28 +17817,50 @@ snapshots:
dependencies:
'@babel/types': 7.25.7
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.3(@babel/core@7.25.2)':
+ '@babel/parser@7.26.2':
+ dependencies:
+ '@babel/types': 7.26.0
+
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.0(@babel/core@7.25.2)':
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.0(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.0(@babel/core@7.25.2)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.24.0)':
dependencies:
@@ -18178,12 +17871,21 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.25.2)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
@@ -18195,11 +17897,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.0(@babel/core@7.25.2)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
@@ -18221,6 +17931,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.25.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.7
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-proposal-decorators@7.24.7(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
@@ -18230,6 +17948,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-proposal-decorators@7.24.7(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.25.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-decorators': 7.24.7(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-proposal-export-default-from@7.24.7(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
@@ -18248,12 +17975,24 @@ snapshots:
'@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.0)
+
'@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.2)
+ '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.0)
+
'@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.25.2)':
dependencies:
'@babel/compat-data': 7.25.2
@@ -18278,10 +18017,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.25.2)':
+ '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-class-features-plugin': 7.25.0(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.25.0(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
@@ -18294,13 +18042,17 @@ snapshots:
dependencies:
'@babel/core': 7.25.2
- '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.25.2)':
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
+
+ '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
'@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.25.0(@babel/core@7.25.2)
+ '@babel/helper-create-class-features-plugin': 7.25.0(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.2)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
@@ -18319,24 +18071,19 @@ snapshots:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
-
'@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-decorators@7.24.7(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-decorators@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-decorators@7.24.7(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.0)':
@@ -18369,34 +18116,44 @@ snapshots:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-flow@7.24.7(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-import-attributes@7.25.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-import-attributes@7.25.7(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.0)':
+ '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.0)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.0)':
@@ -18404,16 +18161,26 @@ snapshots:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
'@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
@@ -18434,6 +18201,11 @@ snapshots:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
@@ -18444,6 +18216,11 @@ snapshots:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
@@ -18474,6 +18251,11 @@ snapshots:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
@@ -18484,19 +18266,24 @@ snapshots:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-typescript@7.25.7(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-typescript@7.25.7(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-typescript@7.25.7(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.0)':
@@ -18511,6 +18298,12 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
@@ -18521,6 +18314,16 @@ snapshots:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
'@babel/plugin-transform-async-generator-functions@7.23.9(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
@@ -18541,13 +18344,21 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-generator-functions@7.25.0(@babel/core@7.25.2)':
+ '@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.2)
- '@babel/traverse': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.25.2)
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0)
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
@@ -18578,15 +18389,38 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.25.2)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-block-scoped-functions@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-block-scoped-functions@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-block-scoping@7.25.0(@babel/core@7.24.0)':
dependencies:
@@ -18598,6 +18432,16 @@ snapshots:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
'@babel/plugin-transform-class-properties@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
@@ -18606,14 +18450,30 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-properties@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-class-properties@7.24.7(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-class-features-plugin': 7.25.0(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.25.0(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
@@ -18623,12 +18483,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-create-class-features-plugin': 7.25.0(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.2)
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
@@ -18656,6 +18523,30 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-classes@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.25.2)
+ '@babel/traverse': 7.25.9
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
+ '@babel/traverse': 7.25.9
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
@@ -18668,6 +18559,18 @@ snapshots:
'@babel/helper-plugin-utils': 7.25.7
'@babel/template': 7.25.7
+ '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/template': 7.25.9
+
+ '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/template': 7.25.9
+
'@babel/plugin-transform-destructuring@7.24.8(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
@@ -18678,33 +18581,60 @@ snapshots:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
'@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.24.0)
'@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.0(@babel/core@7.25.2)':
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.24.0)':
dependencies:
@@ -18712,11 +18642,15 @@ snapshots:
'@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.0)
- '@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.24.0)':
dependencies:
@@ -18726,11 +18660,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-exponentiation-operator@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-exponentiation-operator@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
@@ -18746,12 +18688,28 @@ snapshots:
'@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
'@babel/plugin-transform-flow-strip-types@7.25.2(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-flow-strip-types@7.25.2(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.26.0)
+
'@babel/plugin-transform-for-of@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
@@ -18760,11 +18718,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-for-of@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-for-of@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
transitivePeerDependencies:
- supports-color
@@ -18786,17 +18752,39 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.0)
- '@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-literals@7.25.2(@babel/core@7.24.0)':
dependencies:
@@ -18808,27 +18796,46 @@ snapshots:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-literals@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
'@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.0)
- '@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.24.0)':
dependencies:
@@ -18838,11 +18845,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
@@ -18864,6 +18879,33 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-simple-access': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-modules-commonjs@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-simple-access': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-modules-commonjs@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-simple-access': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-modules-systemjs@7.25.0(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
@@ -18874,13 +18916,23 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-systemjs@7.25.0(@babel/core@7.25.2)':
+ '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-validator-identifier': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
@@ -18892,11 +18944,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
@@ -18912,15 +18972,32 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+
'@babel/plugin-transform-new-target@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-new-target@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.24.0)':
dependencies:
@@ -18934,17 +19011,37 @@ snapshots:
'@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.0)
+
+ '@babel/plugin-transform-nullish-coalescing-operator@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-nullish-coalescing-operator@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
'@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.0)
- '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.24.0)':
dependencies:
@@ -18962,6 +19059,20 @@ snapshots:
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.2)
'@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.25.2)
+
+ '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0)
+
'@babel/plugin-transform-object-super@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
@@ -18970,11 +19081,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-object-super@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-replace-supers': 7.25.0(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.25.2)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
@@ -18984,11 +19103,15 @@ snapshots:
'@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.0)
- '@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-optional-chaining@7.24.8(@babel/core@7.24.0)':
dependencies:
@@ -19008,6 +19131,31 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-optional-chaining@7.24.8(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-parameters@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
@@ -19018,6 +19166,16 @@ snapshots:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
'@babel/plugin-transform-private-methods@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
@@ -19034,6 +19192,30 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-private-methods@7.24.7(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.25.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
@@ -19054,19 +19236,42 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-react-constant-elements@7.25.1(@babel/core@7.25.2)':
+ '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-react-constant-elements@7.25.1(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-react-display-name@7.24.7(@babel/core@7.25.2)':
@@ -19074,10 +19279,32 @@ snapshots:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-react-jsx-development@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-react-display-name@7.24.7(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.7
+
+ '@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/plugin-transform-react-jsx': 7.25.2(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-react-jsx-development@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.25.2)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-react-jsx-development@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
@@ -19102,11 +19329,39 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-react-pure-annotations@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.25.2)
+ '@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-react-pure-annotations@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-react-pure-annotations@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.24.0)':
dependencies:
@@ -19114,21 +19369,44 @@ snapshots:
'@babel/helper-plugin-utils': 7.25.7
regenerator-transform: 0.15.2
- '@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
regenerator-transform: 0.15.2
+ '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ regenerator-transform: 0.15.2
+
+ '@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+
'@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-runtime@7.24.0(@babel/core@7.24.0)':
dependencies:
@@ -19154,6 +19432,18 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-runtime@7.24.7(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.26.0)
+ babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.26.0)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.26.0)
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
@@ -19164,6 +19454,16 @@ snapshots:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
'@babel/plugin-transform-spread@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
@@ -19180,6 +19480,22 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-spread@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
@@ -19190,6 +19506,16 @@ snapshots:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
'@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
@@ -19200,15 +19526,30 @@ snapshots:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
'@babel/plugin-transform-typeof-symbol@7.24.8(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-typeof-symbol@7.24.8(@babel/core@7.25.2)':
+ '@babel/plugin-transform-typeof-symbol@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-typeof-symbol@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-typescript@7.25.2(@babel/core@7.25.2)':
dependencies:
@@ -19221,15 +19562,31 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-typescript@7.25.2(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.25.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-syntax-typescript': 7.25.7(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.24.0)':
dependencies:
@@ -19237,11 +19594,17 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.24.0)
'@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.24.0)':
dependencies:
@@ -19255,17 +19618,35 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+
'@babel/plugin-transform-unicode-sets-regex@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.24.0)
'@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-unicode-sets-regex@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/preset-env@7.24.0(@babel/core@7.24.0)':
dependencies:
@@ -19353,125 +19734,205 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/preset-env@7.25.3(@babel/core@7.25.2)':
+ '@babel/preset-env@7.26.0(@babel/core@7.25.2)':
dependencies:
- '@babel/compat-data': 7.25.2
+ '@babel/compat-data': 7.26.2
'@babel/core': 7.25.2
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-validator-option': 7.24.8
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.3(@babel/core@7.25.2)
- '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.0(@babel/core@7.25.2)
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-option': 7.25.9
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.25.2)
'@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.2)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.2)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.25.2)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.2)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-syntax-import-attributes': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.2)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.2)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.2)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.2)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.25.2)
+ '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.25.2)
+ '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.25.2)
'@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.25.2)
- '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-async-generator-functions': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-block-scoping': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-transform-class-properties': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-class-static-block': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-classes': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-destructuring': 7.24.8(@babel/core@7.25.2)
- '@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-duplicate-keys': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-transform-dynamic-import': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-exponentiation-operator': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-function-name': 7.25.1(@babel/core@7.25.2)
- '@babel/plugin-transform-json-strings': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-literals': 7.25.2(@babel/core@7.25.2)
- '@babel/plugin-transform-logical-assignment-operators': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.25.2)
- '@babel/plugin-transform-modules-systemjs': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-transform-modules-umd': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-new-target': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-object-super': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-optional-catch-binding': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.25.2)
- '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-private-methods': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-property-literals': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-regenerator': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-reserved-words': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-typeof-symbol': 7.24.8(@babel/core@7.25.2)
- '@babel/plugin-transform-unicode-escapes': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-unicode-property-regex': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-unicode-sets-regex': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-async-generator-functions': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-block-scoped-functions': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.25.2)
+ '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-exponentiation-operator': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-commonjs': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-regexp-modifiers': 7.26.0(@babel/core@7.25.2)
+ '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-typeof-symbol': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.25.2)
'@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.25.2)
babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.2)
- babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.25.2)
+ babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.2)
babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.2)
- core-js-compat: 3.37.1
+ core-js-compat: 3.39.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/preset-flow@7.24.7(@babel/core@7.25.2)':
+ '@babel/preset-env@7.26.0(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/compat-data': 7.26.2
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-option': 7.25.9
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.0)
+ '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-async-generator-functions': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-block-scoped-functions': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-exponentiation-operator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-commonjs': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-regexp-modifiers': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-typeof-symbol': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.0)
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.26.0)
+ babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.0)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.26.0)
+ core-js-compat: 3.39.0
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/preset-flow@7.24.7(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.7
'@babel/helper-validator-option': 7.24.8
- '@babel/plugin-transform-flow-strip-types': 7.25.2(@babel/core@7.25.2)
+ '@babel/plugin-transform-flow-strip-types': 7.25.2(@babel/core@7.26.0)
'@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/types': 7.25.7
esutils: 2.0.3
'@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/types': 7.25.7
+ esutils: 2.0.3
+
+ '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/types': 7.25.7
esutils: 2.0.3
- '@babel/preset-react@7.24.7(@babel/core@7.25.2)':
+ '@babel/preset-react@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-validator-option': 7.24.8
- '@babel/plugin-transform-react-display-name': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-react-jsx': 7.25.2(@babel/core@7.25.2)
- '@babel/plugin-transform-react-jsx-development': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-react-pure-annotations': 7.24.7(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-option': 7.25.9
+ '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-react-jsx-development': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-react-pure-annotations': 7.25.9(@babel/core@7.25.2)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/preset-react@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-option': 7.25.9
+ '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-react-jsx-development': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-react-pure-annotations': 7.25.9(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
@@ -19486,9 +19947,20 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/register@7.24.6(@babel/core@7.25.2)':
+ '@babel/preset-typescript@7.24.7(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-validator-option': 7.24.8
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.26.0)
+ '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/register@7.24.6(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
clone-deep: 4.0.1
find-cache-dir: 2.1.0
make-dir: 2.1.0
@@ -19515,6 +19987,12 @@ snapshots:
'@babel/parser': 7.25.7
'@babel/types': 7.25.7
+ '@babel/template@7.25.9':
+ dependencies:
+ '@babel/code-frame': 7.26.2
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
+
'@babel/traverse@7.25.7':
dependencies:
'@babel/code-frame': 7.25.7
@@ -19522,7 +20000,19 @@ snapshots:
'@babel/parser': 7.25.7
'@babel/template': 7.25.7
'@babel/types': 7.25.7
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/traverse@7.25.9':
+ dependencies:
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.2
+ '@babel/parser': 7.26.2
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.0
+ debug: 4.3.7
globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -19533,6 +20023,11 @@ snapshots:
'@babel/helper-validator-identifier': 7.25.7
to-fast-properties: 2.0.0
+ '@babel/types@7.26.0':
+ dependencies:
+ '@babel/helper-string-parser': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+
'@bundled-es-modules/cookie@2.0.0':
dependencies:
cookie: 0.5.0
@@ -19766,10 +20261,6 @@ snapshots:
'@cspell/url@8.14.2': {}
- '@csstools/convert-colors@1.4.0': {}
-
- '@csstools/normalize.css@10.1.0': {}
-
'@csstools/normalize.css@12.1.1': {}
'@csstools/postcss-cascade-layers@1.1.1(postcss@8.4.47)':
@@ -20381,7 +20872,7 @@ snapshots:
'@eslint/config-array@0.18.0':
dependencies:
'@eslint/object-schema': 2.1.4
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
@@ -20389,7 +20880,7 @@ snapshots:
'@eslint/eslintrc@3.1.0':
dependencies:
ajv: 6.12.6
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
espree: 10.1.0
globals: 14.0.0
ignore: 5.3.2
@@ -20441,7 +20932,7 @@ snapshots:
chalk: 4.1.2
ci-info: 3.9.0
connect: 3.7.0
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
env-editor: 0.4.2
fast-glob: 3.3.2
find-yarn-workspace-root: 2.0.0
@@ -20477,7 +20968,7 @@ snapshots:
resolve-from: 5.0.0
resolve.exports: 2.0.2
semver: 7.6.3
- send: 0.18.0(supports-color@6.1.0)
+ send: 0.18.0
slugify: 1.6.6
source-map-support: 0.5.21
stacktrace-parser: 0.1.10
@@ -20509,7 +21000,7 @@ snapshots:
'@expo/plist': 0.1.3
'@expo/sdk-runtime-versions': 1.0.0
chalk: 4.1.2
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
find-up: 5.0.0
getenv: 1.0.0
glob: 7.1.6
@@ -20544,7 +21035,7 @@ snapshots:
dependencies:
application-config-path: 0.1.1
command-exists: 1.2.9
- debug: 3.2.7(supports-color@6.1.0)
+ debug: 3.2.7
eol: 0.9.1
get-port: 3.2.0
glob: 7.2.3
@@ -20561,7 +21052,7 @@ snapshots:
'@expo/env@0.3.0':
dependencies:
chalk: 4.1.2
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
dotenv: 16.4.5
dotenv-expand: 11.0.6
getenv: 1.0.0
@@ -20591,7 +21082,7 @@ snapshots:
'@expo/metro-config@0.18.10':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@babel/generator': 7.25.7
'@babel/parser': 7.25.7
'@babel/types': 7.25.7
@@ -20600,7 +21091,7 @@ snapshots:
'@expo/json-file': 8.3.3
'@expo/spawn-async': 1.7.2
chalk: 4.1.2
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
find-yarn-workspace-root: 2.0.0
fs-extra: 9.1.0
getenv: 1.0.0
@@ -20646,7 +21137,7 @@ snapshots:
'@expo/image-utils': 0.5.1(encoding@0.1.13)
'@expo/json-file': 8.3.3
'@react-native/normalize-colors': 0.74.85
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
expo-modules-autolinking: 1.11.1
fs-extra: 9.1.0
resolve-from: 5.0.0
@@ -20698,8 +21189,6 @@ snapshots:
'@floating-ui/utils@0.2.5': {}
- '@gar/promisify@1.1.3': {}
-
'@graphql-typed-document-node/core@3.2.0(graphql@15.8.0)':
dependencies:
graphql: 15.8.0
@@ -20708,25 +21197,8 @@ snapshots:
dependencies:
graphql: 16.9.0
- '@hapi/address@2.1.4': {}
-
- '@hapi/bourne@1.3.2': {}
-
- '@hapi/hoek@8.5.1': {}
-
'@hapi/hoek@9.3.0': {}
- '@hapi/joi@15.1.1':
- dependencies:
- '@hapi/address': 2.1.4
- '@hapi/bourne': 1.3.2
- '@hapi/hoek': 8.5.1
- '@hapi/topo': 3.1.6
-
- '@hapi/topo@3.1.6':
- dependencies:
- '@hapi/hoek': 8.5.1
-
'@hapi/topo@5.1.0':
dependencies:
'@hapi/hoek': 9.3.0
@@ -20960,7 +21432,7 @@ snapshots:
'@kwsites/file-exists@1.1.1':
dependencies:
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
@@ -21288,11 +21760,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@npmcli/fs@1.1.1':
- dependencies:
- '@gar/promisify': 1.1.3
- semver: 7.6.3
-
'@npmcli/fs@3.1.1':
dependencies:
semver: 7.6.3
@@ -21316,11 +21783,6 @@ snapshots:
npm-bundled: 3.0.1
npm-normalize-package-bin: 3.0.1
- '@npmcli/move-file@1.1.2':
- dependencies:
- mkdirp: 1.0.4
- rimraf: 3.0.2
-
'@npmcli/node-gyp@3.0.0': {}
'@npmcli/package-json@5.2.0':
@@ -21471,21 +21933,6 @@ snapshots:
'@pkgr/core@0.1.1': {}
- '@pmmmwh/react-refresh-webpack-plugin@0.4.3(@types/webpack@4.41.38)(react-refresh@0.8.3)(sockjs-client@1.6.1)(webpack-dev-server@3.11.1(webpack@4.44.2))(webpack@4.44.2)':
- dependencies:
- ansi-html: 0.0.7
- error-stack-parser: 2.1.4
- html-entities: 1.4.0
- native-url: 0.2.6
- react-refresh: 0.8.3
- schema-utils: 2.7.1
- source-map: 0.7.4
- webpack: 4.44.2
- optionalDependencies:
- '@types/webpack': 4.41.38
- sockjs-client: 1.6.1(supports-color@6.1.0)
- webpack-dev-server: 3.11.1(webpack@4.44.2)
-
'@pmmmwh/react-refresh-webpack-plugin@0.5.15(@types/webpack@4.41.38)(react-refresh@0.11.0)(sockjs-client@1.6.1)(type-fest@4.23.0)(webpack-dev-server@4.15.2(webpack@5.93.0(esbuild@0.21.5)))(webpack@5.93.0(esbuild@0.21.5))':
dependencies:
ansi-html: 0.0.9
@@ -21499,7 +21946,7 @@ snapshots:
webpack: 5.93.0(esbuild@0.21.5)
optionalDependencies:
'@types/webpack': 4.41.38
- sockjs-client: 1.6.1(supports-color@6.1.0)
+ sockjs-client: 1.6.1
type-fest: 4.23.0
webpack-dev-server: 4.15.2(webpack@5.93.0(esbuild@0.21.5))
@@ -21529,7 +21976,7 @@ snapshots:
'@react-native-community/cli-debugger-ui@13.6.9':
dependencies:
- serve-static: 1.15.0(supports-color@6.1.0)
+ serve-static: 1.15.0
transitivePeerDependencies:
- supports-color
@@ -21596,12 +22043,12 @@ snapshots:
dependencies:
'@react-native-community/cli-debugger-ui': 13.6.9
'@react-native-community/cli-tools': 13.6.9(encoding@0.1.13)
- compression: 1.7.4(supports-color@6.1.0)
+ compression: 1.7.4
connect: 3.7.0
errorhandler: 1.5.1
nocache: 3.0.4
pretty-format: 26.6.2
- serve-static: 1.15.0(supports-color@6.1.0)
+ serve-static: 1.15.0
ws: 6.2.3
transitivePeerDependencies:
- bufferutil
@@ -21654,27 +22101,27 @@ snapshots:
- supports-color
- utf-8-validate
- '@react-native-community/netinfo@11.3.2(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))':
+ '@react-native-community/netinfo@11.3.2(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))':
dependencies:
- react-native: 0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1)
+ react-native: 0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1)
'@react-native/assets-registry@0.74.86': {}
- '@react-native/babel-plugin-codegen@0.74.85(@babel/preset-env@7.25.3(@babel/core@7.25.2))':
+ '@react-native/babel-plugin-codegen@0.74.85(@babel/preset-env@7.26.0(@babel/core@7.25.2))':
dependencies:
- '@react-native/codegen': 0.74.85(@babel/preset-env@7.25.3(@babel/core@7.25.2))
+ '@react-native/codegen': 0.74.85(@babel/preset-env@7.26.0(@babel/core@7.25.2))
transitivePeerDependencies:
- '@babel/preset-env'
- supports-color
- '@react-native/babel-plugin-codegen@0.74.86(@babel/preset-env@7.25.3(@babel/core@7.25.2))':
+ '@react-native/babel-plugin-codegen@0.74.86(@babel/preset-env@7.26.0(@babel/core@7.25.2))':
dependencies:
- '@react-native/codegen': 0.74.86(@babel/preset-env@7.25.3(@babel/core@7.25.2))
+ '@react-native/codegen': 0.74.86(@babel/preset-env@7.26.0(@babel/core@7.25.2))
transitivePeerDependencies:
- '@babel/preset-env'
- supports-color
- '@react-native/babel-preset@0.74.85(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))':
+ '@react-native/babel-preset@0.74.85(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))':
dependencies:
'@babel/core': 7.25.2
'@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.25.2)
@@ -21716,14 +22163,14 @@ snapshots:
'@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.25.2)
'@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.25.2)
'@babel/template': 7.25.7
- '@react-native/babel-plugin-codegen': 0.74.85(@babel/preset-env@7.25.3(@babel/core@7.25.2))
+ '@react-native/babel-plugin-codegen': 0.74.85(@babel/preset-env@7.26.0(@babel/core@7.25.2))
babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.25.2)
react-refresh: 0.14.2
transitivePeerDependencies:
- '@babel/preset-env'
- supports-color
- '@react-native/babel-preset@0.74.86(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))':
+ '@react-native/babel-preset@0.74.86(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))':
dependencies:
'@babel/core': 7.25.2
'@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.25.2)
@@ -21765,45 +22212,45 @@ snapshots:
'@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.25.2)
'@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.25.2)
'@babel/template': 7.25.7
- '@react-native/babel-plugin-codegen': 0.74.86(@babel/preset-env@7.25.3(@babel/core@7.25.2))
+ '@react-native/babel-plugin-codegen': 0.74.86(@babel/preset-env@7.26.0(@babel/core@7.25.2))
babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.25.2)
react-refresh: 0.14.2
transitivePeerDependencies:
- '@babel/preset-env'
- supports-color
- '@react-native/codegen@0.74.85(@babel/preset-env@7.25.3(@babel/core@7.25.2))':
+ '@react-native/codegen@0.74.85(@babel/preset-env@7.26.0(@babel/core@7.25.2))':
dependencies:
'@babel/parser': 7.25.7
- '@babel/preset-env': 7.25.3(@babel/core@7.25.2)
+ '@babel/preset-env': 7.26.0(@babel/core@7.25.2)
glob: 7.2.3
hermes-parser: 0.19.1
invariant: 2.2.4
- jscodeshift: 0.14.0(@babel/preset-env@7.25.3(@babel/core@7.25.2))
+ jscodeshift: 0.14.0(@babel/preset-env@7.26.0(@babel/core@7.25.2))
mkdirp: 0.5.6
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
- '@react-native/codegen@0.74.86(@babel/preset-env@7.25.3(@babel/core@7.25.2))':
+ '@react-native/codegen@0.74.86(@babel/preset-env@7.26.0(@babel/core@7.25.2))':
dependencies:
'@babel/parser': 7.25.7
- '@babel/preset-env': 7.25.3(@babel/core@7.25.2)
+ '@babel/preset-env': 7.26.0(@babel/core@7.25.2)
glob: 7.2.3
hermes-parser: 0.19.1
invariant: 2.2.4
- jscodeshift: 0.14.0(@babel/preset-env@7.25.3(@babel/core@7.25.2))
+ jscodeshift: 0.14.0(@babel/preset-env@7.26.0(@babel/core@7.25.2))
mkdirp: 0.5.6
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
- '@react-native/community-cli-plugin@0.74.86(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)':
+ '@react-native/community-cli-plugin@0.74.86(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)':
dependencies:
'@react-native-community/cli-server-api': 13.6.9(encoding@0.1.13)
'@react-native-community/cli-tools': 13.6.9(encoding@0.1.13)
'@react-native/dev-middleware': 0.74.86(encoding@0.1.13)
- '@react-native/metro-babel-transformer': 0.74.86(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))
+ '@react-native/metro-babel-transformer': 0.74.86(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))
chalk: 4.1.2
execa: 5.1.1
metro: 0.80.9(encoding@0.1.13)
@@ -21831,12 +22278,12 @@ snapshots:
'@rnx-kit/chromium-edge-launcher': 1.0.0
chrome-launcher: 0.15.2
connect: 3.7.0
- debug: 2.6.9(supports-color@6.1.0)
+ debug: 2.6.9
node-fetch: 2.7.0(encoding@0.1.13)
nullthrows: 1.1.1
open: 7.4.2
selfsigned: 2.4.1
- serve-static: 1.15.0(supports-color@6.1.0)
+ serve-static: 1.15.0
temp-dir: 2.0.0
ws: 6.2.3
transitivePeerDependencies:
@@ -21852,12 +22299,12 @@ snapshots:
'@rnx-kit/chromium-edge-launcher': 1.0.0
chrome-launcher: 0.15.2
connect: 3.7.0
- debug: 2.6.9(supports-color@6.1.0)
+ debug: 2.6.9
node-fetch: 2.7.0(encoding@0.1.13)
nullthrows: 1.1.1
open: 7.4.2
selfsigned: 2.4.1
- serve-static: 1.15.0(supports-color@6.1.0)
+ serve-static: 1.15.0
temp-dir: 2.0.0
ws: 6.2.3
transitivePeerDependencies:
@@ -21870,10 +22317,10 @@ snapshots:
'@react-native/js-polyfills@0.74.86': {}
- '@react-native/metro-babel-transformer@0.74.86(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))':
+ '@react-native/metro-babel-transformer@0.74.86(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))':
dependencies:
'@babel/core': 7.25.2
- '@react-native/babel-preset': 0.74.86(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))
+ '@react-native/babel-preset': 0.74.86(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))
hermes-parser: 0.19.1
nullthrows: 1.1.1
transitivePeerDependencies:
@@ -21884,12 +22331,12 @@ snapshots:
'@react-native/normalize-colors@0.74.86': {}
- '@react-native/virtualized-lists@0.74.86(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1)':
+ '@react-native/virtualized-lists@0.74.86(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1)':
dependencies:
invariant: 2.2.4
nullthrows: 1.1.1
react: 19.0.0-rc-4c2e457c7c-20240522
- react-native: 0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1)
+ react-native: 0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1)
optionalDependencies:
'@types/react': types-react@19.0.0-rc.1
@@ -21903,36 +22350,36 @@ snapshots:
react-is: 16.13.1
use-latest-callback: 0.2.1(react@19.0.0-rc-4c2e457c7c-20240522)
- '@react-navigation/elements@1.3.31(@react-navigation/native@6.1.18(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522))(react-native-safe-area-context@4.10.8(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522))(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)':
+ '@react-navigation/elements@1.3.31(@react-navigation/native@6.1.18(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522))(react-native-safe-area-context@4.10.8(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522))(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)':
dependencies:
- '@react-navigation/native': 6.1.18(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)
+ '@react-navigation/native': 6.1.18(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)
react: 19.0.0-rc-4c2e457c7c-20240522
- react-native: 0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1)
- react-native-safe-area-context: 4.10.8(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)
+ react-native: 0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1)
+ react-native-safe-area-context: 4.10.8(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)
- '@react-navigation/native@6.1.18(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)':
+ '@react-navigation/native@6.1.18(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)':
dependencies:
'@react-navigation/core': 6.4.17(react@19.0.0-rc-4c2e457c7c-20240522)
escape-string-regexp: 4.0.0
fast-deep-equal: 3.1.3
nanoid: 3.3.7
react: 19.0.0-rc-4c2e457c7c-20240522
- react-native: 0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1)
+ react-native: 0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1)
'@react-navigation/routers@6.1.9':
dependencies:
nanoid: 3.3.7
- '@react-navigation/stack@6.4.1(hz73ogopnnbu7tdkoevhdncb4q)':
+ '@react-navigation/stack@6.4.1(z4okqs3etojtcdqoipgakagj2y)':
dependencies:
- '@react-navigation/elements': 1.3.31(@react-navigation/native@6.1.18(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522))(react-native-safe-area-context@4.10.8(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522))(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)
- '@react-navigation/native': 6.1.18(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)
+ '@react-navigation/elements': 1.3.31(@react-navigation/native@6.1.18(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522))(react-native-safe-area-context@4.10.8(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522))(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)
+ '@react-navigation/native': 6.1.18(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)
color: 4.2.3
react: 19.0.0-rc-4c2e457c7c-20240522
- react-native: 0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1)
- react-native-gesture-handler: 2.18.0(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)
- react-native-safe-area-context: 4.10.8(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)
- react-native-screens: 3.33.0(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)
+ react-native: 0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1)
+ react-native-gesture-handler: 2.18.0(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)
+ react-native-safe-area-context: 4.10.8(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)
+ react-native-screens: 3.33.0(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)
warn-once: 0.1.1
'@remix-run/router@1.18.0': {}
@@ -21954,9 +22401,9 @@ snapshots:
optionalDependencies:
rollup: 4.24.0
- '@rollup/plugin-babel@5.3.1(@babel/core@7.25.2)(@types/babel__core@7.20.5)(rollup@2.79.2)':
+ '@rollup/plugin-babel@5.3.1(@babel/core@7.26.0)(@types/babel__core@7.20.5)(rollup@2.79.2)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@babel/helper-module-imports': 7.24.7
'@rollup/pluginutils': 3.1.0(rollup@2.79.2)
rollup: 2.79.2
@@ -22011,21 +22458,6 @@ snapshots:
optionalDependencies:
rollup: 4.24.0
- '@rollup/plugin-node-resolve@7.1.3(rollup@1.32.1)':
- dependencies:
- '@rollup/pluginutils': 3.1.0(rollup@1.32.1)
- '@types/resolve': 0.0.8
- builtin-modules: 3.3.0
- is-module: 1.0.0
- resolve: 1.22.8
- rollup: 1.32.1
-
- '@rollup/plugin-replace@2.4.2(rollup@1.32.1)':
- dependencies:
- '@rollup/pluginutils': 3.1.0(rollup@1.32.1)
- magic-string: 0.25.9
- rollup: 1.32.1
-
'@rollup/plugin-replace@2.4.2(rollup@2.79.2)':
dependencies:
'@rollup/pluginutils': 3.1.0(rollup@2.79.2)
@@ -22047,13 +22479,6 @@ snapshots:
optionalDependencies:
rollup: 4.24.0
- '@rollup/pluginutils@3.1.0(rollup@1.32.1)':
- dependencies:
- '@types/estree': 0.0.39
- estree-walker: 1.0.1
- picomatch: 2.3.1
- rollup: 1.32.1
-
'@rollup/pluginutils@3.1.0(rollup@2.79.2)':
dependencies:
'@types/estree': 0.0.39
@@ -22385,11 +22810,6 @@ snapshots:
eslint-visitor-keys: 4.0.0
espree: 10.1.0
- '@surma/rollup-plugin-off-main-thread@1.4.2':
- dependencies:
- ejs: 2.7.4
- magic-string: 0.25.9
-
'@surma/rollup-plugin-off-main-thread@2.2.3':
dependencies:
ejs: 3.1.10
@@ -22434,7 +22854,7 @@ snapshots:
'@sveltejs/vite-plugin-svelte-inspector@2.1.0(@sveltejs/vite-plugin-svelte@3.1.1(svelte@4.2.19)(vite@5.4.8(@types/node@22.7.4)(less@4.2.0)(sass@1.77.8)(terser@5.31.3)))(svelte@4.2.19)(vite@5.4.8(@types/node@22.7.4)(less@4.2.0)(sass@1.77.8)(terser@5.31.3))':
dependencies:
'@sveltejs/vite-plugin-svelte': 3.1.1(svelte@4.2.19)(vite@5.4.8(@types/node@22.7.4)(less@4.2.0)(sass@1.77.8)(terser@5.31.3))
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
svelte: 4.2.19
vite: 5.4.8(@types/node@22.7.4)(less@4.2.0)(sass@1.77.8)(terser@5.31.3)
transitivePeerDependencies:
@@ -22443,7 +22863,7 @@ snapshots:
'@sveltejs/vite-plugin-svelte@3.1.1(svelte@4.2.19)(vite@5.4.8(@types/node@22.7.4)(less@4.2.0)(sass@1.77.8)(terser@5.31.3))':
dependencies:
'@sveltejs/vite-plugin-svelte-inspector': 2.1.0(@sveltejs/vite-plugin-svelte@3.1.1(svelte@4.2.19)(vite@5.4.8(@types/node@22.7.4)(less@4.2.0)(sass@1.77.8)(terser@5.31.3)))(svelte@4.2.19)(vite@5.4.8(@types/node@22.7.4)(less@4.2.0)(sass@1.77.8)(terser@5.31.3))
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
deepmerge: 4.3.1
kleur: 4.1.5
magic-string: 0.30.11
@@ -22495,7 +22915,7 @@ snapshots:
'@svgr/plugin-jsx@5.5.0':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@svgr/babel-preset': 5.5.0
'@svgr/hast-util-to-babel-ast': 5.5.0
svg-parser: 2.0.4
@@ -22510,10 +22930,10 @@ snapshots:
'@svgr/webpack@5.5.0':
dependencies:
- '@babel/core': 7.25.2
- '@babel/plugin-transform-react-constant-elements': 7.25.1(@babel/core@7.25.2)
- '@babel/preset-env': 7.25.3(@babel/core@7.25.2)
- '@babel/preset-react': 7.24.7(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@babel/plugin-transform-react-constant-elements': 7.25.1(@babel/core@7.26.0)
+ '@babel/preset-env': 7.26.0(@babel/core@7.26.0)
+ '@babel/preset-react': 7.25.9(@babel/core@7.26.0)
'@svgr/core': 5.5.0
'@svgr/plugin-jsx': 5.5.0
'@svgr/plugin-svgo': 5.5.0
@@ -22704,11 +23124,6 @@ snapshots:
'@types/eslint': 9.6.1
'@types/estree': 1.0.6
- '@types/eslint@7.29.0':
- dependencies:
- '@types/estree': 1.0.6
- '@types/json-schema': 7.0.15
-
'@types/eslint@8.56.11':
dependencies:
'@types/estree': 1.0.6
@@ -22740,11 +23155,6 @@ snapshots:
'@types/qs': 6.9.15
'@types/serve-static': 1.15.7
- '@types/glob@7.2.0':
- dependencies:
- '@types/minimatch': 5.1.2
- '@types/node': 20.14.13
-
'@types/hammerjs@2.0.45': {}
'@types/hast@3.0.4':
@@ -22788,8 +23198,6 @@ snapshots:
'@types/mime@1.3.5': {}
- '@types/minimatch@5.1.2': {}
-
'@types/ms@0.7.34': {}
'@types/mute-stream@0.0.4':
@@ -22830,10 +23238,6 @@ snapshots:
dependencies:
'@types/react': types-react@19.0.0-rc.1
- '@types/resolve@0.0.8':
- dependencies:
- '@types/node': 20.14.13
-
'@types/resolve@1.17.1':
dependencies:
'@types/node': 20.14.13
@@ -22936,7 +23340,7 @@ snapshots:
'@typescript-eslint/types': 8.3.0
'@typescript-eslint/typescript-estree': 8.3.0(typescript@5.3.3)
'@typescript-eslint/visitor-keys': 8.3.0
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
eslint: 9.9.1(jiti@1.21.6)
optionalDependencies:
typescript: 5.3.3
@@ -22965,7 +23369,7 @@ snapshots:
dependencies:
'@typescript-eslint/typescript-estree': 8.3.0(typescript@5.3.3)
'@typescript-eslint/utils': 8.3.0(eslint@9.9.1(jiti@1.21.6))(typescript@5.3.3)
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
ts-api-utils: 1.3.0(typescript@5.3.3)
optionalDependencies:
typescript: 5.3.3
@@ -22979,7 +23383,7 @@ snapshots:
dependencies:
'@typescript-eslint/types': 8.3.0
'@typescript-eslint/visitor-keys': 8.3.0
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
fast-glob: 3.3.2
is-glob: 4.0.3
minimatch: 9.0.5
@@ -22994,7 +23398,7 @@ snapshots:
dependencies:
'@typescript-eslint/types': 8.3.0
'@typescript-eslint/visitor-keys': 8.3.0
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
fast-glob: 3.3.2
is-glob: 4.0.3
minimatch: 9.0.5
@@ -23046,11 +23450,11 @@ snapshots:
graphql: 15.8.0
wonka: 4.0.15
- '@vercel/analytics@1.3.1(next@14.2.5(@babel/core@7.25.2)(react-dom@19.0.0-rc-4c2e457c7c-20240522(react@19.0.0-rc-4c2e457c7c-20240522))(react@18.3.1)(sass@1.77.8))(react@18.3.1)':
+ '@vercel/analytics@1.3.1(next@14.2.5(@babel/core@7.25.2)(react-dom@19.0.0-rc-4c2e457c7c-20240522(react@18.3.1))(react@18.3.1)(sass@1.77.8))(react@18.3.1)':
dependencies:
server-only: 0.0.1
optionalDependencies:
- next: 14.2.5(@babel/core@7.25.2)(react-dom@19.0.0-rc-4c2e457c7c-20240522(react@19.0.0-rc-4c2e457c7c-20240522))(react@18.3.1)(sass@1.77.8)
+ next: 14.2.5(@babel/core@7.25.2)(react-dom@19.0.0-rc-4c2e457c7c-20240522(react@18.3.1))(react@18.3.1)(sass@1.77.8)
react: 18.3.1
'@vercel/edge@1.1.2': {}
@@ -23176,7 +23580,7 @@ snapshots:
'@vitest/coverage-istanbul@2.0.5(vitest@2.0.5(@types/node@20.14.13)(jsdom@25.0.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.3))':
dependencies:
'@istanbuljs/schema': 0.1.3
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
istanbul-lib-coverage: 3.2.2
istanbul-lib-instrument: 6.0.3
istanbul-lib-report: 3.0.1
@@ -23570,6 +23974,20 @@ snapshots:
'@webassemblyjs/wast-parser': 1.9.0
'@xtuc/long': 4.2.2
+ '@webpack-cli/configtest@1.2.0(webpack-cli@4.10.0)(webpack@4.44.2)':
+ dependencies:
+ webpack: 4.44.2(webpack-cli@4.10.0)
+ webpack-cli: 4.10.0(webpack@4.44.2)
+
+ '@webpack-cli/info@1.5.0(webpack-cli@4.10.0)':
+ dependencies:
+ envinfo: 7.13.0
+ webpack-cli: 4.10.0(webpack@4.44.2)
+
+ '@webpack-cli/serve@1.7.0(webpack-cli@4.10.0)':
+ dependencies:
+ webpack-cli: 4.10.0(webpack@4.44.2)
+
'@xmldom/xmldom@0.7.13': {}
'@xmldom/xmldom@0.8.10': {}
@@ -23631,19 +24049,10 @@ snapshots:
acorn@6.4.2: {}
- acorn@7.4.1: {}
-
acorn@8.12.1: {}
- address@1.1.2: {}
-
address@1.2.2: {}
- adjust-sourcemap-loader@3.0.0:
- dependencies:
- loader-utils: 2.0.4
- regex-parser: 2.3.0
-
adjust-sourcemap-loader@4.0.0:
dependencies:
loader-utils: 2.0.4
@@ -23651,13 +24060,13 @@ snapshots:
agent-base@6.0.2:
dependencies:
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
agent-base@7.1.1:
dependencies:
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
@@ -23735,16 +24144,12 @@ snapshots:
ts-toolbelt: 9.6.0
zod: 3.23.8
- alphanum-sort@1.0.2: {}
-
anser@1.4.10: {}
ansi-align@3.0.1:
dependencies:
string-width: 4.2.3
- ansi-colors@3.2.4: {}
-
ansi-colors@4.1.3: {}
ansi-escapes@4.3.2:
@@ -23761,8 +24166,6 @@ snapshots:
ansi-html-community@0.0.8: {}
- ansi-html@0.0.7: {}
-
ansi-html@0.0.9: {}
ansi-regex@2.1.1: {}
@@ -23789,12 +24192,13 @@ snapshots:
any-promise@1.3.0: {}
- anymatch@2.0.0(supports-color@6.1.0):
+ anymatch@2.0.0:
dependencies:
- micromatch: 3.1.10(supports-color@6.1.0)
+ micromatch: 3.1.10
normalize-path: 2.1.1
transitivePeerDependencies:
- supports-color
+ optional: true
anymatch@3.1.3:
dependencies:
@@ -23850,8 +24254,6 @@ snapshots:
aria-query@5.3.2: {}
- arity-n@1.0.4: {}
-
arr-diff@4.0.0: {}
arr-flatten@1.1.0: {}
@@ -23867,8 +24269,6 @@ snapshots:
array-flatten@1.1.1: {}
- array-flatten@2.1.2: {}
-
array-ify@1.0.0: {}
array-iterate@2.0.1: {}
@@ -23877,14 +24277,8 @@ snapshots:
array-timsort@1.0.3: {}
- array-union@1.0.2:
- dependencies:
- array-uniq: 1.0.3
-
array-union@2.1.0: {}
- array-uniq@1.0.3: {}
-
array-unique@0.3.2: {}
array.prototype.reduce@1.0.7:
@@ -23908,8 +24302,6 @@ snapshots:
is-array-buffer: 3.0.4
is-shared-array-buffer: 1.0.3
- arrify@2.0.1: {}
-
arrify@3.0.0: {}
asap@2.0.6: {}
@@ -23969,7 +24361,7 @@ snapshots:
common-ancestor-path: 1.0.1
cookie: 0.6.0
cssesc: 3.0.0
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
deterministic-object-hash: 2.0.2
devalue: 5.0.0
diff: 5.2.0
@@ -24023,16 +24415,13 @@ snapshots:
- terser
- typescript
- async-each@1.0.6: {}
+ async-each@1.0.6:
+ optional: true
async-limiter@1.0.1: {}
async-sema@3.1.1: {}
- async@2.6.4:
- dependencies:
- lodash: 4.17.21
-
async@3.2.5: {}
asynckit@0.4.0: {}
@@ -24061,23 +24450,13 @@ snapshots:
postcss: 8.4.47
postcss-value-parser: 4.2.0
- autoprefixer@9.8.8:
- dependencies:
- browserslist: 4.23.2
- caniuse-lite: 1.0.30001645
- normalize-range: 0.1.2
- num2fraction: 1.2.2
- picocolors: 0.2.1
- postcss: 7.0.39
- postcss-value-parser: 4.2.0
-
available-typed-arrays@1.0.7:
dependencies:
possible-typed-array-names: 1.0.0
axios@1.7.2:
dependencies:
- follow-redirects: 1.15.6(debug@4.3.7(supports-color@6.1.0))
+ follow-redirects: 1.15.6
form-data: 4.0.0
proxy-from-env: 1.1.0
transitivePeerDependencies:
@@ -24087,23 +24466,9 @@ snapshots:
b4a@1.6.6: {}
- babel-core@7.0.0-bridge.0(@babel/core@7.25.2):
- dependencies:
- '@babel/core': 7.25.2
-
- babel-extract-comments@1.0.0:
+ babel-core@7.0.0-bridge.0(@babel/core@7.26.0):
dependencies:
- babylon: 6.18.0
-
- babel-loader@8.1.0(@babel/core@7.12.3)(webpack@4.44.2):
- dependencies:
- '@babel/core': 7.12.3
- find-cache-dir: 2.1.0
- loader-utils: 1.4.2
- mkdirp: 0.5.6
- pify: 4.0.1
- schema-utils: 2.7.1
- webpack: 4.44.2
+ '@babel/core': 7.26.0
babel-loader@8.3.0(@babel/core@7.25.2)(webpack@5.93.0(esbuild@0.21.5)):
dependencies:
@@ -24114,6 +24479,15 @@ snapshots:
schema-utils: 2.7.1
webpack: 5.93.0(esbuild@0.21.5)
+ babel-loader@8.3.0(@babel/core@7.26.0)(webpack@4.44.2):
+ dependencies:
+ '@babel/core': 7.26.0
+ find-cache-dir: 3.3.2
+ loader-utils: 2.0.4
+ make-dir: 3.1.0
+ schema-utils: 2.7.1
+ webpack: 4.44.2(webpack-cli@4.10.0)
+
babel-loader@9.1.3(@babel/core@7.24.0)(webpack@5.90.3(esbuild@0.20.1)):
dependencies:
'@babel/core': 7.24.0
@@ -24142,23 +24516,28 @@ snapshots:
html-entities: 2.3.3
validate-html-nesting: 1.2.2
+ babel-plugin-jsx-dom-expressions@0.38.1(@babel/core@7.26.0):
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.18.6
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.26.0)
+ '@babel/types': 7.25.7
+ html-entities: 2.3.3
+ validate-html-nesting: 1.2.2
+
babel-plugin-macros@3.1.0:
dependencies:
'@babel/runtime': 7.25.0
cosmiconfig: 7.1.0
resolve: 1.22.8
- babel-plugin-named-asset-import@0.3.8(@babel/core@7.12.3):
- dependencies:
- '@babel/core': 7.12.3
-
babel-plugin-named-asset-import@0.3.8(@babel/core@7.25.2):
dependencies:
'@babel/core': 7.25.2
babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.0):
dependencies:
- '@babel/compat-data': 7.25.2
+ '@babel/compat-data': 7.26.2
'@babel/core': 7.24.0
'@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.0)
semver: 6.3.1
@@ -24167,13 +24546,22 @@ snapshots:
babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.25.2):
dependencies:
- '@babel/compat-data': 7.25.2
+ '@babel/compat-data': 7.26.2
'@babel/core': 7.25.2
'@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.2)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
+ babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.26.0):
+ dependencies:
+ '@babel/compat-data': 7.26.2
+ '@babel/core': 7.26.0
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.0)
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.25.2):
dependencies:
'@babel/core': 7.25.2
@@ -24182,6 +24570,30 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.26.0):
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.0)
+ core-js-compat: 3.37.1
+ transitivePeerDependencies:
+ - supports-color
+
+ babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.25.2):
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.2)
+ core-js-compat: 3.39.0
+ transitivePeerDependencies:
+ - supports-color
+
+ babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.26.0):
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.0)
+ core-js-compat: 3.39.0
+ transitivePeerDependencies:
+ - supports-color
+
babel-plugin-polyfill-corejs3@0.9.0(@babel/core@7.24.0):
dependencies:
'@babel/core': 7.24.0
@@ -24204,34 +24616,34 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.26.0):
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
+
babel-plugin-react-compiler@0.0.0: {}
babel-plugin-react-native-web@0.19.12: {}
- babel-plugin-syntax-object-rest-spread@6.13.0: {}
-
babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.25.2):
dependencies:
'@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.25.2)
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-transform-object-rest-spread@6.26.0:
- dependencies:
- babel-plugin-syntax-object-rest-spread: 6.13.0
- babel-runtime: 6.26.0
-
babel-plugin-transform-react-remove-prop-types@0.4.24: {}
- babel-preset-expo@11.0.12(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2)):
+ babel-preset-expo@11.0.12(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2)):
dependencies:
'@babel/plugin-proposal-decorators': 7.24.7(@babel/core@7.25.2)
'@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.25.2)
'@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.25.2)
'@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.25.2)
- '@babel/preset-react': 7.24.7(@babel/core@7.25.2)
+ '@babel/preset-react': 7.25.9(@babel/core@7.25.2)
'@babel/preset-typescript': 7.24.7(@babel/core@7.25.2)
- '@react-native/babel-preset': 0.74.85(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))
+ '@react-native/babel-preset': 0.74.85(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))
babel-plugin-react-compiler: 0.0.0
babel-plugin-react-native-web: 0.19.12
react-refresh: 0.14.2
@@ -24242,20 +24654,20 @@ snapshots:
babel-preset-react-app@10.0.1:
dependencies:
- '@babel/core': 7.25.2
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.25.2)
- '@babel/plugin-proposal-decorators': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.25.2)
- '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.25.2)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.25.2)
- '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.25.2)
- '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.25.2)
- '@babel/plugin-transform-flow-strip-types': 7.25.2(@babel/core@7.25.2)
- '@babel/plugin-transform-react-display-name': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-runtime': 7.24.7(@babel/core@7.25.2)
- '@babel/preset-env': 7.25.3(@babel/core@7.25.2)
- '@babel/preset-react': 7.24.7(@babel/core@7.25.2)
- '@babel/preset-typescript': 7.24.7(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.26.0)
+ '@babel/plugin-proposal-decorators': 7.24.7(@babel/core@7.26.0)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.26.0)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.26.0)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.26.0)
+ '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.26.0)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.26.0)
+ '@babel/plugin-transform-flow-strip-types': 7.25.2(@babel/core@7.26.0)
+ '@babel/plugin-transform-react-display-name': 7.24.7(@babel/core@7.26.0)
+ '@babel/plugin-transform-runtime': 7.24.7(@babel/core@7.26.0)
+ '@babel/preset-env': 7.26.0(@babel/core@7.26.0)
+ '@babel/preset-react': 7.25.9(@babel/core@7.26.0)
+ '@babel/preset-typescript': 7.24.7(@babel/core@7.26.0)
'@babel/runtime': 7.25.0
babel-plugin-macros: 3.1.0
babel-plugin-transform-react-remove-prop-types: 0.4.24
@@ -24267,12 +24679,10 @@ snapshots:
'@babel/core': 7.25.2
babel-plugin-jsx-dom-expressions: 0.38.1(@babel/core@7.25.2)
- babel-runtime@6.26.0:
+ babel-preset-solid@1.8.19(@babel/core@7.26.0):
dependencies:
- core-js: 2.6.12
- regenerator-runtime: 0.11.1
-
- babylon@6.18.0: {}
+ '@babel/core': 7.26.0
+ babel-plugin-jsx-dom-expressions: 0.38.1(@babel/core@7.26.0)
bail@2.0.2: {}
@@ -24313,7 +24723,8 @@ snapshots:
big.js@5.2.2: {}
- binary-extensions@1.13.1: {}
+ binary-extensions@1.13.1:
+ optional: true
binary-extensions@2.3.0: {}
@@ -24335,11 +24746,11 @@ snapshots:
bn.js@5.2.1: {}
- body-parser@1.20.2(supports-color@6.1.0):
+ body-parser@1.20.2:
dependencies:
bytes: 3.1.2
content-type: 1.0.5
- debug: 2.6.9(supports-color@6.1.0)
+ debug: 2.6.9
depd: 2.0.0
destroy: 1.2.0
http-errors: 2.0.0
@@ -24357,15 +24768,6 @@ snapshots:
fast-deep-equal: 3.1.3
multicast-dns: 7.2.5
- bonjour@3.5.0:
- dependencies:
- array-flatten: 2.1.2
- deep-equal: 1.1.2
- dns-equal: 1.0.0
- dns-txt: 2.0.2
- multicast-dns: 6.2.3
- multicast-dns-service-types: 1.1.0
-
boolbase@1.0.0: {}
boxen@7.1.1:
@@ -24408,7 +24810,7 @@ snapshots:
dependencies:
balanced-match: 1.0.2
- braces@2.3.2(supports-color@6.1.0):
+ braces@2.3.2:
dependencies:
arr-flatten: 1.1.0
array-unique: 0.3.2
@@ -24416,7 +24818,7 @@ snapshots:
fill-range: 4.0.0
isobject: 3.0.1
repeat-element: 1.1.4
- snapdragon: 0.8.2(supports-color@6.1.0)
+ snapdragon: 0.8.2
snapdragon-node: 2.1.1
split-string: 3.1.0
to-regex: 3.0.2
@@ -24480,13 +24882,6 @@ snapshots:
dependencies:
pako: 1.0.11
- browserslist@4.14.2:
- dependencies:
- caniuse-lite: 1.0.30001645
- electron-to-chromium: 1.5.4
- escalade: 3.2.0
- node-releases: 1.1.77
-
browserslist@4.23.2:
dependencies:
caniuse-lite: 1.0.30001645
@@ -24494,6 +24889,13 @@ snapshots:
node-releases: 2.0.18
update-browserslist-db: 1.1.0(browserslist@4.23.2)
+ browserslist@4.24.2:
+ dependencies:
+ caniuse-lite: 1.0.30001683
+ electron-to-chromium: 1.5.64
+ node-releases: 2.0.18
+ update-browserslist-db: 1.1.1(browserslist@4.24.2)
+
bser@2.1.1:
dependencies:
node-int64: 0.4.0
@@ -24511,8 +24913,6 @@ snapshots:
buffer-from@1.1.2: {}
- buffer-indexof@1.1.1: {}
-
buffer-xor@1.0.3: {}
buffer@4.9.2:
@@ -24591,29 +24991,6 @@ snapshots:
unique-filename: 1.1.1
y18n: 4.0.3
- cacache@15.3.0:
- dependencies:
- '@npmcli/fs': 1.1.1
- '@npmcli/move-file': 1.1.2
- chownr: 2.0.0
- fs-minipass: 2.1.0
- glob: 7.2.3
- infer-owner: 1.0.4
- lru-cache: 6.0.0
- minipass: 3.3.6
- minipass-collect: 1.0.2
- minipass-flush: 1.0.5
- minipass-pipeline: 1.2.4
- mkdirp: 1.0.4
- p-map: 4.0.0
- promise-inflight: 1.0.1(bluebird@3.7.2)
- rimraf: 3.0.2
- ssri: 8.0.1
- tar: 6.2.1
- unique-filename: 1.1.1
- transitivePeerDependencies:
- - bluebird
-
cacache@18.0.4:
dependencies:
'@npmcli/fs': 3.1.1
@@ -24683,13 +25060,13 @@ snapshots:
caniuse-lite@1.0.30001645: {}
+ caniuse-lite@1.0.30001683: {}
+
cardinal@2.1.1:
dependencies:
ansicolors: 0.3.2
redeyed: 2.1.1
- case-sensitive-paths-webpack-plugin@2.3.0: {}
-
case-sensitive-paths-webpack-plugin@2.4.0: {}
ccount@2.0.1: {}
@@ -24736,23 +25113,24 @@ snapshots:
check-types@11.2.3: {}
- chokidar@2.1.8(supports-color@6.1.0):
+ chokidar@2.1.8:
dependencies:
- anymatch: 2.0.0(supports-color@6.1.0)
+ anymatch: 2.0.0
async-each: 1.0.6
- braces: 2.3.2(supports-color@6.1.0)
+ braces: 2.3.2
glob-parent: 3.1.0
inherits: 2.0.4
is-binary-path: 1.0.1
is-glob: 4.0.3
normalize-path: 3.0.0
path-is-absolute: 1.0.1
- readdirp: 2.2.1(supports-color@6.1.0)
+ readdirp: 2.2.1
upath: 1.2.0
optionalDependencies:
fsevents: 1.2.13
transitivePeerDependencies:
- supports-color
+ optional: true
chokidar@3.6.0:
dependencies:
@@ -24856,12 +25234,6 @@ snapshots:
is-wsl: 3.1.0
is64bit: 2.0.0
- cliui@5.0.0:
- dependencies:
- string-width: 3.1.0
- strip-ansi: 5.2.0
- wrap-ansi: 5.1.0
-
cliui@6.0.0:
dependencies:
string-width: 4.2.3
@@ -25003,10 +25375,6 @@ snapshots:
component-type@1.2.2: {}
- compose-function@3.0.3:
- dependencies:
- arity-n: 1.0.4
-
compress-commons@6.0.2:
dependencies:
crc-32: 1.2.2
@@ -25019,12 +25387,12 @@ snapshots:
dependencies:
mime-db: 1.53.0
- compression@1.7.4(supports-color@6.1.0):
+ compression@1.7.4:
dependencies:
accepts: 1.3.8
bytes: 3.0.0
compressible: 2.0.18
- debug: 2.6.9(supports-color@6.1.0)
+ debug: 2.6.9
on-headers: 1.0.2
safe-buffer: 5.1.2
vary: 1.1.2
@@ -25044,13 +25412,11 @@ snapshots:
confbox@0.1.7: {}
- connect-history-api-fallback@1.6.0: {}
-
connect-history-api-fallback@2.0.0: {}
connect@3.7.0:
dependencies:
- debug: 2.6.9(supports-color@6.1.0)
+ debug: 2.6.9
finalhandler: 1.1.2
parseurl: 1.3.3
utils-merge: 1.0.1
@@ -25082,11 +25448,8 @@ snapshots:
meow: 12.1.1
split2: 4.2.0
- convert-source-map@0.3.5: {}
-
- convert-source-map@1.7.0:
- dependencies:
- safe-buffer: 5.1.2
+ convert-source-map@0.3.5:
+ optional: true
convert-source-map@1.9.0: {}
@@ -25133,9 +25496,11 @@ snapshots:
dependencies:
browserslist: 4.23.2
- core-js-pure@3.37.1: {}
+ core-js-compat@3.39.0:
+ dependencies:
+ browserslist: 4.24.2
- core-js@2.6.12: {}
+ core-js-pure@3.37.1: {}
core-js@3.37.1: {}
@@ -25349,31 +25714,15 @@ snapshots:
'@cspell/cspell-types': 8.14.2
gensequence: 7.0.0
- css-blank-pseudo@0.1.4:
- dependencies:
- postcss: 7.0.39
-
css-blank-pseudo@3.0.3(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-selector-parser: 6.1.1
- css-color-names@0.0.4: {}
-
- css-declaration-sorter@4.0.1:
- dependencies:
- postcss: 7.0.39
- timsort: 0.3.0
-
css-declaration-sorter@6.4.1(postcss@8.4.47):
dependencies:
postcss: 8.4.47
- css-has-pseudo@0.10.0:
- dependencies:
- postcss: 7.0.39
- postcss-selector-parser: 5.0.0
-
css-has-pseudo@3.0.4(postcss@8.4.47):
dependencies:
postcss: 8.4.47
@@ -25383,22 +25732,6 @@ snapshots:
dependencies:
hyphenate-style-name: 1.1.0
- css-loader@4.3.0(webpack@4.44.2):
- dependencies:
- camelcase: 6.3.0
- cssesc: 3.0.0
- icss-utils: 4.1.1
- loader-utils: 2.0.4
- postcss: 7.0.39
- postcss-modules-extract-imports: 2.0.0
- postcss-modules-local-by-default: 3.0.3
- postcss-modules-scope: 2.2.0
- postcss-modules-values: 3.0.0
- postcss-value-parser: 4.2.0
- schema-utils: 2.7.1
- semver: 7.6.3
- webpack: 4.44.2
-
css-loader@6.10.0(webpack@5.90.3(esbuild@0.20.1)):
dependencies:
icss-utils: 5.1.0(postcss@8.4.47)
@@ -25437,10 +25770,6 @@ snapshots:
optionalDependencies:
esbuild: 0.21.5
- css-prefers-color-scheme@3.1.1:
- dependencies:
- postcss: 7.0.39
-
css-prefers-color-scheme@6.0.3(postcss@8.4.47):
dependencies:
postcss: 8.4.47
@@ -25502,48 +25831,12 @@ snapshots:
source-map: 0.6.1
source-map-resolve: 0.5.3
urix: 0.1.0
-
- cssdb@4.4.0: {}
+ optional: true
cssdb@7.11.2: {}
- cssesc@2.0.0: {}
-
cssesc@3.0.0: {}
- cssnano-preset-default@4.0.8:
- dependencies:
- css-declaration-sorter: 4.0.1
- cssnano-util-raw-cache: 4.0.1
- postcss: 7.0.39
- postcss-calc: 7.0.5
- postcss-colormin: 4.0.3
- postcss-convert-values: 4.0.1
- postcss-discard-comments: 4.0.2
- postcss-discard-duplicates: 4.0.2
- postcss-discard-empty: 4.0.1
- postcss-discard-overridden: 4.0.1
- postcss-merge-longhand: 4.0.11
- postcss-merge-rules: 4.0.3
- postcss-minify-font-values: 4.0.2
- postcss-minify-gradients: 4.0.2
- postcss-minify-params: 4.0.2
- postcss-minify-selectors: 4.0.2
- postcss-normalize-charset: 4.0.1
- postcss-normalize-display-values: 4.0.2
- postcss-normalize-positions: 4.0.2
- postcss-normalize-repeat-style: 4.0.2
- postcss-normalize-string: 4.0.2
- postcss-normalize-timing-functions: 4.0.2
- postcss-normalize-unicode: 4.0.1
- postcss-normalize-url: 4.0.1
- postcss-normalize-whitespace: 4.0.2
- postcss-ordered-values: 4.1.2
- postcss-reduce-initial: 4.0.3
- postcss-reduce-transforms: 4.0.2
- postcss-svgo: 4.0.3
- postcss-unique-selectors: 4.0.1
-
cssnano-preset-default@5.2.14(postcss@8.4.47):
dependencies:
css-declaration-sorter: 6.4.1(postcss@8.4.47)
@@ -25577,27 +25870,10 @@ snapshots:
postcss-svgo: 5.1.0(postcss@8.4.47)
postcss-unique-selectors: 5.1.1(postcss@8.4.47)
- cssnano-util-get-arguments@4.0.0: {}
-
- cssnano-util-get-match@4.0.0: {}
-
- cssnano-util-raw-cache@4.0.1:
- dependencies:
- postcss: 7.0.39
-
- cssnano-util-same-parent@4.0.1: {}
-
cssnano-utils@3.1.0(postcss@8.4.47):
dependencies:
postcss: 8.4.47
- cssnano@4.1.11:
- dependencies:
- cosmiconfig: 5.2.1
- cssnano-preset-default: 4.0.8
- is-resolvable: 1.1.0
- postcss: 7.0.39
-
cssnano@5.1.15(postcss@8.4.47):
dependencies:
cssnano-preset-default: 5.2.14(postcss@8.4.47)
@@ -25623,11 +25899,6 @@ snapshots:
cyclist@1.0.2: {}
- d@1.0.2:
- dependencies:
- es5-ext: 0.10.64
- type: 2.7.3
-
dag-map@1.0.2: {}
data-urls@5.0.0:
@@ -25664,23 +25935,17 @@ snapshots:
de-indent@1.0.2: {}
- debug@2.6.9(supports-color@6.1.0):
+ debug@2.6.9:
dependencies:
ms: 2.0.0
- optionalDependencies:
- supports-color: 6.1.0
- debug@3.2.7(supports-color@6.1.0):
+ debug@3.2.7:
dependencies:
ms: 2.1.3
- optionalDependencies:
- supports-color: 6.1.0
- debug@4.3.7(supports-color@6.1.0):
+ debug@4.3.7:
dependencies:
ms: 2.1.3
- optionalDependencies:
- supports-color: 6.1.0
decamelize@1.2.0: {}
@@ -25696,15 +25961,6 @@ snapshots:
deep-eql@5.0.2: {}
- deep-equal@1.1.2:
- dependencies:
- is-arguments: 1.1.1
- is-date-object: 1.0.5
- is-regex: 1.1.4
- object-is: 1.1.6
- object-keys: 1.1.1
- regexp.prototype.flags: 1.5.3
-
deep-extend@0.6.0: {}
deep-is@0.1.4: {}
@@ -25769,16 +26025,6 @@ snapshots:
defu@6.1.4: {}
- del@4.1.1:
- dependencies:
- '@types/glob': 7.2.0
- globby: 6.1.0
- is-path-cwd: 2.2.0
- is-path-in-cwd: 2.1.0
- p-map: 2.1.0
- pify: 4.0.1
- rimraf: 2.7.1
-
del@6.1.1:
dependencies:
globby: 11.1.0
@@ -25827,7 +26073,7 @@ snapshots:
detect-port-alt@1.1.6:
dependencies:
address: 1.2.2
- debug: 2.6.9(supports-color@6.1.0)
+ debug: 2.6.9
transitivePeerDependencies:
- supports-color
@@ -25859,21 +26105,10 @@ snapshots:
dlv@1.1.3: {}
- dns-equal@1.0.0: {}
-
- dns-packet@1.3.4:
- dependencies:
- ip: 1.1.9
- safe-buffer: 5.2.1
-
dns-packet@5.6.1:
dependencies:
'@leichtgewicht/ip-codec': 2.0.5
- dns-txt@2.0.2:
- dependencies:
- buffer-indexof: 1.1.1
-
doctrine@3.0.0:
dependencies:
esutils: 2.0.3
@@ -25962,8 +26197,6 @@ snapshots:
dotenv@16.4.5: {}
- dotenv@8.2.0: {}
-
dset@3.1.3: {}
duplexer@0.1.2: {}
@@ -25985,14 +26218,14 @@ snapshots:
ee-first@1.1.1: {}
- ejs@2.7.4: {}
-
ejs@3.1.10:
dependencies:
jake: 10.9.2
electron-to-chromium@1.5.4: {}
+ electron-to-chromium@1.5.64: {}
+
elliptic@6.5.6:
dependencies:
bn.js: 4.12.0
@@ -26010,8 +26243,6 @@ snapshots:
emoji-regex@10.3.0: {}
- emoji-regex@7.0.3: {}
-
emoji-regex@8.0.0: {}
emoji-regex@9.2.2: {}
@@ -26156,31 +26387,13 @@ snapshots:
is-date-object: 1.0.5
is-symbol: 1.0.4
- es5-ext@0.10.64:
- dependencies:
- es6-iterator: 2.0.3
- es6-symbol: 3.1.4
- esniff: 2.0.1
- next-tick: 1.1.0
-
- es6-iterator@2.0.3:
- dependencies:
- d: 1.0.2
- es5-ext: 0.10.64
- es6-symbol: 3.1.4
-
- es6-symbol@3.1.4:
- dependencies:
- d: 1.0.2
- ext: 1.7.0
-
esbuild-plugin-file-path-extensions@2.1.2: {}
esbuild-plugin-solid@0.5.0(esbuild@0.21.5)(solid-js@1.8.19):
dependencies:
- '@babel/core': 7.25.2
- '@babel/preset-typescript': 7.24.7(@babel/core@7.25.2)
- babel-preset-solid: 1.8.19(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@babel/preset-typescript': 7.24.7(@babel/core@7.26.0)
+ babel-preset-solid: 1.8.19(@babel/core@7.26.0)
esbuild: 0.21.5
solid-js: 1.8.19
transitivePeerDependencies:
@@ -26188,7 +26401,7 @@ snapshots:
esbuild-register@3.6.0(esbuild@0.21.5):
dependencies:
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
esbuild: 0.21.5
transitivePeerDependencies:
- supports-color
@@ -26331,7 +26544,7 @@ snapshots:
eslint-import-resolver-node@0.3.9:
dependencies:
- debug: 3.2.7(supports-color@6.1.0)
+ debug: 3.2.7
is-core-module: 2.15.1
resolve: 1.22.8
transitivePeerDependencies:
@@ -26348,7 +26561,7 @@ snapshots:
dependencies:
'@typescript-eslint/typescript-estree': 8.3.0(typescript@5.3.3)
'@typescript-eslint/utils': 8.3.0(eslint@9.9.1(jiti@1.21.6))(typescript@5.3.3)
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
doctrine: 3.0.0
eslint: 9.9.1(jiti@1.21.6)
eslint-import-resolver-node: 0.3.9
@@ -26367,7 +26580,7 @@ snapshots:
'@es-joy/jsdoccomment': 0.48.0
are-docs-informative: 0.0.2
comment-parser: 1.4.1
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
escape-string-regexp: 4.0.0
eslint: 9.9.1(jiti@1.21.6)
espree: 10.1.0
@@ -26393,9 +26606,9 @@ snapshots:
eslint-plugin-react-compiler@0.0.0-experimental-f8a5409-20240829(eslint@9.9.1(jiti@1.21.6)):
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@babel/parser': 7.25.7
- '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.25.2)
+ '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.26.0)
eslint: 9.9.1(jiti@1.21.6)
hermes-parser: 0.20.1
zod: 3.23.8
@@ -26584,17 +26797,6 @@ snapshots:
eslint-visitor-keys@4.0.0: {}
- eslint-webpack-plugin@2.7.0(eslint@9.9.1(jiti@1.21.6))(webpack@4.44.2):
- dependencies:
- '@types/eslint': 7.29.0
- arrify: 2.0.1
- eslint: 9.9.1(jiti@1.21.6)
- jest-worker: 27.5.1
- micromatch: 4.0.8
- normalize-path: 3.0.0
- schema-utils: 3.3.0
- webpack: 4.44.2
-
eslint-webpack-plugin@3.2.0(eslint@9.9.1(jiti@1.21.6))(webpack@5.93.0(esbuild@0.21.5)):
dependencies:
'@types/eslint': 8.56.11
@@ -26618,7 +26820,7 @@ snapshots:
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.3
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
escape-string-regexp: 4.0.0
eslint-scope: 8.0.2
eslint-visitor-keys: 4.0.0
@@ -26648,13 +26850,6 @@ snapshots:
esm-env@1.0.0: {}
- esniff@2.0.1:
- dependencies:
- d: 1.0.2
- es5-ext: 0.10.64
- event-emitter: 0.3.5
- type: 2.7.3
-
espree@10.1.0:
dependencies:
acorn: 8.12.1
@@ -26683,8 +26878,6 @@ snapshots:
estraverse@5.3.0: {}
- estree-walker@0.6.1: {}
-
estree-walker@1.0.1: {}
estree-walker@2.0.2: {}
@@ -26697,11 +26890,6 @@ snapshots:
etag@1.8.1: {}
- event-emitter@0.3.5:
- dependencies:
- d: 1.0.2
- es5-ext: 0.10.64
-
event-target-shim@5.0.1: {}
eventemitter3@4.0.7: {}
@@ -26710,7 +26898,8 @@ snapshots:
events@3.3.0: {}
- eventsource@2.0.2: {}
+ eventsource@2.0.2:
+ optional: true
evp_bytestokey@1.0.3:
dependencies:
@@ -26775,14 +26964,14 @@ snapshots:
signal-exit: 4.1.0
strip-final-newline: 3.0.0
- expand-brackets@2.1.4(supports-color@6.1.0):
+ expand-brackets@2.1.4:
dependencies:
- debug: 2.6.9(supports-color@6.1.0)
+ debug: 2.6.9
define-property: 0.2.5
extend-shallow: 2.0.1
posix-character-classes: 0.1.1
regex-not: 1.0.2
- snapdragon: 0.8.2(supports-color@6.1.0)
+ snapdragon: 0.8.2
to-regex: 3.0.2
transitivePeerDependencies:
- supports-color
@@ -26791,35 +26980,35 @@ snapshots:
dependencies:
homedir-polyfill: 1.0.3
- expo-asset@10.0.10(expo@51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)):
+ expo-asset@10.0.10(expo@51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)):
dependencies:
- expo: 51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)
- expo-constants: 16.0.2(expo@51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13))
+ expo: 51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)
+ expo-constants: 16.0.2(expo@51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13))
invariant: 2.2.4
md5-file: 3.2.3
transitivePeerDependencies:
- supports-color
- expo-constants@16.0.2(expo@51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)):
+ expo-constants@16.0.2(expo@51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)):
dependencies:
'@expo/config': 9.0.3
'@expo/env': 0.3.0
- expo: 51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)
+ expo: 51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)
transitivePeerDependencies:
- supports-color
- expo-file-system@17.0.1(expo@51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)):
+ expo-file-system@17.0.1(expo@51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)):
dependencies:
- expo: 51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)
+ expo: 51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)
- expo-font@12.0.9(expo@51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)):
+ expo-font@12.0.9(expo@51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)):
dependencies:
- expo: 51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)
+ expo: 51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)
fontfaceobserver: 2.3.0
- expo-keep-awake@13.0.2(expo@51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)):
+ expo-keep-awake@13.0.2(expo@51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)):
dependencies:
- expo: 51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)
+ expo: 51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)
expo-modules-autolinking@1.11.1:
dependencies:
@@ -26835,7 +27024,7 @@ snapshots:
expo-status-bar@1.12.1: {}
- expo@51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13):
+ expo@51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13):
dependencies:
'@babel/runtime': 7.25.0
'@expo/cli': 0.18.26(encoding@0.1.13)(expo-modules-autolinking@1.11.1)
@@ -26843,11 +27032,11 @@ snapshots:
'@expo/config-plugins': 8.0.8
'@expo/metro-config': 0.18.10
'@expo/vector-icons': 14.0.2
- babel-preset-expo: 11.0.12(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))
- expo-asset: 10.0.10(expo@51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13))
- expo-file-system: 17.0.1(expo@51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13))
- expo-font: 12.0.9(expo@51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13))
- expo-keep-awake: 13.0.2(expo@51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13))
+ babel-preset-expo: 11.0.12(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))
+ expo-asset: 10.0.10(expo@51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13))
+ expo-file-system: 17.0.1(expo@51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13))
+ expo-font: 12.0.9(expo@51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13))
+ expo-keep-awake: 13.0.2(expo@51.0.24(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13))
expo-modules-autolinking: 1.11.1
expo-modules-core: 1.12.20
fbemitter: 3.0.0(encoding@0.1.13)
@@ -26862,21 +27051,21 @@ snapshots:
exponential-backoff@3.1.1: {}
- express@4.19.2(supports-color@6.1.0):
+ express@4.19.2:
dependencies:
accepts: 1.3.8
array-flatten: 1.1.1
- body-parser: 1.20.2(supports-color@6.1.0)
+ body-parser: 1.20.2
content-disposition: 0.5.4
content-type: 1.0.5
cookie: 0.6.0
cookie-signature: 1.0.6
- debug: 2.6.9(supports-color@6.1.0)
+ debug: 2.6.9
depd: 2.0.0
encodeurl: 1.0.2
escape-html: 1.0.3
etag: 1.8.1
- finalhandler: 1.2.0(supports-color@6.1.0)
+ finalhandler: 1.2.0
fresh: 0.5.2
http-errors: 2.0.0
merge-descriptors: 1.0.1
@@ -26888,8 +27077,8 @@ snapshots:
qs: 6.11.0
range-parser: 1.2.1
safe-buffer: 5.2.1
- send: 0.18.0(supports-color@6.1.0)
- serve-static: 1.15.0(supports-color@6.1.0)
+ send: 0.18.0
+ serve-static: 1.15.0
setprototypeof: 1.2.0
statuses: 2.0.1
type-is: 1.6.18
@@ -26898,10 +27087,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- ext@1.7.0:
- dependencies:
- type: 2.7.3
-
extend-shallow@2.0.1:
dependencies:
is-extendable: 0.1.1
@@ -26919,15 +27104,15 @@ snapshots:
iconv-lite: 0.4.24
tmp: 0.0.33
- extglob@2.0.4(supports-color@6.1.0):
+ extglob@2.0.4:
dependencies:
array-unique: 0.3.2
define-property: 1.0.0
- expand-brackets: 2.1.4(supports-color@6.1.0)
+ expand-brackets: 2.1.4
extend-shallow: 2.0.1
fragment-cache: 0.2.1
regex-not: 1.0.2
- snapdragon: 0.8.2(supports-color@6.1.0)
+ snapdragon: 0.8.2
to-regex: 3.0.2
transitivePeerDependencies:
- supports-color
@@ -26958,6 +27143,8 @@ snapshots:
dependencies:
strnum: 1.0.5
+ fastest-levenshtein@1.0.16: {}
+
fastq@1.17.1:
dependencies:
reusify: 1.0.4
@@ -27008,12 +27195,6 @@ snapshots:
dependencies:
flat-cache: 4.0.1
- file-loader@6.1.1(webpack@4.44.2):
- dependencies:
- loader-utils: 2.0.4
- schema-utils: 3.3.0
- webpack: 4.44.2
-
file-loader@6.2.0(webpack@5.93.0(esbuild@0.21.5)):
dependencies:
loader-utils: 2.0.4
@@ -27026,8 +27207,6 @@ snapshots:
dependencies:
minimatch: 5.1.6
- filesize@6.1.0: {}
-
filesize@8.0.7: {}
fill-range@4.0.0:
@@ -27045,7 +27224,7 @@ snapshots:
finalhandler@1.1.2:
dependencies:
- debug: 2.6.9(supports-color@6.1.0)
+ debug: 2.6.9
encodeurl: 1.0.2
escape-html: 1.0.3
on-finished: 2.3.0
@@ -27055,9 +27234,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- finalhandler@1.2.0(supports-color@6.1.0):
+ finalhandler@1.2.0:
dependencies:
- debug: 2.6.9(supports-color@6.1.0)
+ debug: 2.6.9
encodeurl: 1.0.2
escape-html: 1.0.3
on-finished: 2.4.1
@@ -27142,8 +27321,6 @@ snapshots:
flatted@3.3.1: {}
- flatten@1.0.3: {}
-
flattie@1.1.1: {}
flow-enums-runtime@0.0.6: {}
@@ -27155,9 +27332,7 @@ snapshots:
inherits: 2.0.4
readable-stream: 2.3.8
- follow-redirects@1.15.6(debug@4.3.7(supports-color@6.1.0)):
- optionalDependencies:
- debug: 4.3.7(supports-color@6.1.0)
+ follow-redirects@1.15.6: {}
font-awesome@4.7.0: {}
@@ -27178,23 +27353,6 @@ snapshots:
cross-spawn: 7.0.3
signal-exit: 4.1.0
- fork-ts-checker-webpack-plugin@4.1.6(eslint@9.9.1(jiti@1.21.6))(typescript@5.4.2)(vue-template-compiler@2.7.16)(webpack@4.44.2):
- dependencies:
- '@babel/code-frame': 7.25.7
- chalk: 2.4.2
- micromatch: 3.1.10(supports-color@6.1.0)
- minimatch: 3.1.2
- semver: 5.7.2
- tapable: 1.1.3
- typescript: 5.4.2
- webpack: 4.44.2
- worker-rpc: 0.1.1
- optionalDependencies:
- eslint: 9.9.1(jiti@1.21.6)
- vue-template-compiler: 2.7.16
- transitivePeerDependencies:
- - supports-color
-
fork-ts-checker-webpack-plugin@6.5.3(eslint@9.9.1(jiti@1.21.6))(typescript@5.4.2)(vue-template-compiler@2.7.16)(webpack@5.93.0(esbuild@0.21.5)):
dependencies:
'@babel/code-frame': 7.25.7
@@ -27407,6 +27565,7 @@ snapshots:
dependencies:
is-glob: 3.1.0
path-dirname: 1.0.2
+ optional: true
glob-parent@5.1.2:
dependencies:
@@ -27507,15 +27666,6 @@ snapshots:
globalyzer@0.1.0: {}
- globby@11.0.1:
- dependencies:
- array-union: 2.1.0
- dir-glob: 3.0.1
- fast-glob: 3.3.2
- ignore: 5.3.2
- merge2: 1.4.1
- slash: 3.0.0
-
globby@11.1.0:
dependencies:
array-union: 2.1.0
@@ -27542,14 +27692,6 @@ snapshots:
slash: 5.1.0
unicorn-magic: 0.1.0
- globby@6.1.0:
- dependencies:
- array-union: 1.0.2
- glob: 7.2.3
- object-assign: 4.1.1
- pify: 2.3.0
- pinkie-promise: 2.0.1
-
globrex@0.1.2: {}
goober@2.1.14(csstype@3.1.3):
@@ -27587,11 +27729,6 @@ snapshots:
section-matter: 1.0.0
strip-bom-string: 1.0.0
- gzip-size@5.1.1:
- dependencies:
- duplexer: 0.1.2
- pify: 4.0.1
-
gzip-size@6.0.0:
dependencies:
duplexer: 0.1.2
@@ -27675,8 +27812,6 @@ snapshots:
is-number: 3.0.0
kind-of: 4.0.0
- has@1.0.4: {}
-
hash-base@3.0.4:
dependencies:
inherits: 2.0.4
@@ -27805,8 +27940,6 @@ snapshots:
dependencies:
source-map: 0.7.4
- hex-color-regex@1.1.0: {}
-
history@5.3.0:
dependencies:
'@babel/runtime': 7.25.0
@@ -27844,16 +27977,10 @@ snapshots:
readable-stream: 2.3.8
wbuf: 1.7.3
- hsl-regex@1.0.0: {}
-
- hsla-regex@1.0.0: {}
-
html-encoding-sniffer@4.0.0:
dependencies:
whatwg-encoding: 3.1.1
- html-entities@1.4.0: {}
-
html-entities@2.3.3: {}
html-entities@2.5.2: {}
@@ -27886,7 +28013,7 @@ snapshots:
html-void-elements@3.0.0: {}
- html-webpack-plugin@4.5.0(webpack@4.44.2):
+ html-webpack-plugin@4.5.2(webpack@4.44.2):
dependencies:
'@types/html-minifier-terser': 5.1.2
'@types/tapable': 1.0.12
@@ -27897,7 +28024,7 @@ snapshots:
pretty-error: 2.1.2
tapable: 1.1.3
util.promisify: 1.0.0
- webpack: 4.44.2
+ webpack: 4.44.2(webpack-cli@4.10.0)
html-webpack-plugin@5.6.0(webpack@5.90.3(esbuild@0.20.1)):
dependencies:
@@ -27969,24 +28096,14 @@ snapshots:
http-proxy-agent@7.0.2:
dependencies:
agent-base: 7.1.1
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
- http-proxy-middleware@0.19.1(debug@4.3.7(supports-color@6.1.0))(supports-color@6.1.0):
- dependencies:
- http-proxy: 1.18.1(debug@4.3.7(supports-color@6.1.0))
- is-glob: 4.0.3
- lodash: 4.17.21
- micromatch: 3.1.10(supports-color@6.1.0)
- transitivePeerDependencies:
- - debug
- - supports-color
-
http-proxy-middleware@2.0.6(@types/express@4.17.21):
dependencies:
'@types/http-proxy': 1.17.14
- http-proxy: 1.18.1(debug@4.3.7(supports-color@6.1.0))
+ http-proxy: 1.18.1
is-glob: 4.0.3
is-plain-obj: 3.0.0
micromatch: 4.0.8
@@ -27995,10 +28112,10 @@ snapshots:
transitivePeerDependencies:
- debug
- http-proxy@1.18.1(debug@4.3.7(supports-color@6.1.0)):
+ http-proxy@1.18.1:
dependencies:
eventemitter3: 4.0.7
- follow-redirects: 1.15.6(debug@4.3.7(supports-color@6.1.0))
+ follow-redirects: 1.15.6
requires-port: 1.0.0
transitivePeerDependencies:
- debug
@@ -28010,21 +28127,21 @@ snapshots:
https-proxy-agent@5.0.1:
dependencies:
agent-base: 6.0.2
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
https-proxy-agent@7.0.4:
dependencies:
agent-base: 7.1.1
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
https-proxy-agent@7.0.5:
dependencies:
agent-base: 7.1.1
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
@@ -28046,10 +28163,6 @@ snapshots:
dependencies:
safer-buffer: 2.1.2
- icss-utils@4.1.1:
- dependencies:
- postcss: 7.0.39
-
icss-utils@5.1.0(postcss@8.4.47):
dependencies:
postcss: 8.4.47
@@ -28085,16 +28198,10 @@ snapshots:
immediate@3.0.6: {}
- immer@8.0.1: {}
-
immer@9.0.21: {}
immutable@4.3.7: {}
- import-cwd@2.1.0:
- dependencies:
- import-from: 2.1.0
-
import-fresh@2.0.0:
dependencies:
caller-path: 2.0.0
@@ -28105,16 +28212,12 @@ snapshots:
parent-module: 1.0.1
resolve-from: 4.0.0
- import-from@2.1.0:
- dependencies:
- resolve-from: 3.0.0
-
import-lazy@4.0.0: {}
- import-local@2.0.0:
+ import-local@3.2.0:
dependencies:
- pkg-dir: 3.0.0
- resolve-cwd: 2.0.0
+ pkg-dir: 4.2.0
+ resolve-cwd: 3.0.0
import-meta-resolve@4.1.0: {}
@@ -28124,8 +28227,6 @@ snapshots:
indent-string@5.0.0: {}
- indexes-of@1.0.1: {}
-
infer-owner@1.0.4: {}
inflight@1.0.6:
@@ -28184,6 +28285,8 @@ snapshots:
hasown: 2.0.2
side-channel: 1.0.6
+ interpret@2.2.0: {}
+
interpret@3.1.1: {}
invariant@2.2.4:
@@ -28194,7 +28297,7 @@ snapshots:
dependencies:
'@ioredis/commands': 1.2.0
cluster-key-slot: 1.1.2
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
denque: 2.1.0
lodash.defaults: 4.2.0
lodash.isarguments: 3.1.0
@@ -28211,18 +28314,12 @@ snapshots:
ip-regex@2.1.0: {}
- ip@1.1.9: {}
-
ipaddr.js@1.9.1: {}
ipaddr.js@2.2.0: {}
iron-webcrypto@1.2.1: {}
- is-absolute-url@2.1.0: {}
-
- is-absolute-url@3.0.3: {}
-
is-absolute@1.0.0:
dependencies:
is-relative: 1.0.0
@@ -28232,11 +28329,6 @@ snapshots:
dependencies:
hasown: 2.0.2
- is-arguments@1.1.1:
- dependencies:
- call-bind: 1.0.7
- has-tostringtag: 1.0.2
-
is-array-buffer@3.0.4:
dependencies:
call-bind: 1.0.7
@@ -28253,6 +28345,7 @@ snapshots:
is-binary-path@1.0.1:
dependencies:
binary-extensions: 1.13.1
+ optional: true
is-binary-path@2.1.0:
dependencies:
@@ -28271,15 +28364,6 @@ snapshots:
is-callable@1.2.7: {}
- is-color-stop@1.1.0:
- dependencies:
- css-color-names: 0.0.4
- hex-color-regex: 1.1.0
- hsl-regex: 1.0.0
- hsla-regex: 1.0.0
- rgb-regex: 1.0.1
- rgba-regex: 1.0.0
-
is-core-module@2.15.1:
dependencies:
hasown: 2.0.2
@@ -28338,6 +28422,7 @@ snapshots:
is-glob@3.1.0:
dependencies:
is-extglob: 2.1.1
+ optional: true
is-glob@4.0.3:
dependencies:
@@ -28391,18 +28476,8 @@ snapshots:
is-path-cwd@2.2.0: {}
- is-path-in-cwd@2.1.0:
- dependencies:
- is-path-inside: 2.1.0
-
- is-path-inside@2.1.0:
- dependencies:
- path-is-inside: 1.0.2
-
is-path-inside@3.0.3: {}
- is-plain-obj@1.1.0: {}
-
is-plain-obj@3.0.0: {}
is-plain-obj@4.1.0: {}
@@ -28434,8 +28509,6 @@ snapshots:
dependencies:
is-unc-path: 1.0.0
- is-resolvable@1.1.0: {}
-
is-root@2.1.0: {}
is-shared-array-buffer@1.0.3:
@@ -28520,7 +28593,7 @@ snapshots:
istanbul-lib-instrument@5.2.1:
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@babel/parser': 7.25.7
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
@@ -28530,7 +28603,7 @@ snapshots:
istanbul-lib-instrument@6.0.3:
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@babel/parser': 7.25.7
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
@@ -28547,7 +28620,7 @@ snapshots:
istanbul-lib-source-maps@5.0.6:
dependencies:
'@jridgewell/trace-mapping': 0.3.25
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
istanbul-lib-coverage: 3.2.2
transitivePeerDependencies:
- supports-color
@@ -28624,11 +28697,6 @@ snapshots:
leven: 3.1.0
pretty-format: 29.7.0
- jest-worker@24.9.0:
- dependencies:
- merge-stream: 2.0.0
- supports-color: 6.1.0
-
jest-worker@26.6.2:
dependencies:
'@types/node': 20.14.13
@@ -28693,19 +28761,19 @@ snapshots:
jsc-safe-url@0.2.4: {}
- jscodeshift@0.14.0(@babel/preset-env@7.25.3(@babel/core@7.25.2)):
+ jscodeshift@0.14.0(@babel/preset-env@7.26.0(@babel/core@7.25.2)):
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@babel/parser': 7.25.7
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.25.2)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.25.2)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.25.2)
- '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.25.2)
- '@babel/preset-env': 7.25.3(@babel/core@7.25.2)
- '@babel/preset-flow': 7.24.7(@babel/core@7.25.2)
- '@babel/preset-typescript': 7.24.7(@babel/core@7.25.2)
- '@babel/register': 7.24.6(@babel/core@7.25.2)
- babel-core: 7.0.0-bridge.0(@babel/core@7.25.2)
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.26.0)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.26.0)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.26.0)
+ '@babel/preset-env': 7.26.0(@babel/core@7.25.2)
+ '@babel/preset-flow': 7.24.7(@babel/core@7.26.0)
+ '@babel/preset-typescript': 7.24.7(@babel/core@7.26.0)
+ '@babel/register': 7.24.6(@babel/core@7.26.0)
+ babel-core: 7.0.0-bridge.0(@babel/core@7.26.0)
chalk: 4.1.2
flow-parser: 0.242.1
graceful-fs: 4.2.11
@@ -28718,18 +28786,18 @@ snapshots:
transitivePeerDependencies:
- supports-color
- jscodeshift@17.0.0(@babel/preset-env@7.25.3(@babel/core@7.25.2)):
+ jscodeshift@17.0.0(@babel/preset-env@7.26.0(@babel/core@7.26.0)):
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@babel/parser': 7.25.7
- '@babel/plugin-transform-class-properties': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.25.2)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.25.2)
- '@babel/plugin-transform-private-methods': 7.24.7(@babel/core@7.25.2)
- '@babel/preset-flow': 7.24.7(@babel/core@7.25.2)
- '@babel/preset-typescript': 7.24.7(@babel/core@7.25.2)
- '@babel/register': 7.24.6(@babel/core@7.25.2)
+ '@babel/plugin-transform-class-properties': 7.24.7(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.26.0)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.26.0)
+ '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.26.0)
+ '@babel/plugin-transform-private-methods': 7.24.7(@babel/core@7.26.0)
+ '@babel/preset-flow': 7.24.7(@babel/core@7.26.0)
+ '@babel/preset-typescript': 7.24.7(@babel/core@7.26.0)
+ '@babel/register': 7.24.6(@babel/core@7.26.0)
flow-parser: 0.242.1
graceful-fs: 4.2.11
micromatch: 4.0.8
@@ -28739,7 +28807,7 @@ snapshots:
temp: 0.9.4
write-file-atomic: 5.0.1
optionalDependencies:
- '@babel/preset-env': 7.25.3(@babel/core@7.25.2)
+ '@babel/preset-env': 7.26.0(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
@@ -28897,8 +28965,6 @@ snapshots:
dependencies:
json-buffer: 3.0.1
- killable@1.0.1: {}
-
kind-of@3.2.2:
dependencies:
is-buffer: 1.1.6
@@ -28942,11 +29008,6 @@ snapshots:
kolorist@1.8.0: {}
- last-call-webpack-plugin@3.0.0:
- dependencies:
- lodash: 4.17.21
- webpack-sources: 1.4.3
-
launch-editor@2.8.0:
dependencies:
picocolors: 1.1.0
@@ -29010,7 +29071,7 @@ snapshots:
lighthouse-logger@1.4.2:
dependencies:
- debug: 2.6.9(supports-color@6.1.0)
+ debug: 2.6.9
marky: 1.2.5
transitivePeerDependencies:
- supports-color
@@ -29106,12 +29167,6 @@ snapshots:
emojis-list: 3.0.0
json5: 1.0.2
- loader-utils@2.0.0:
- dependencies:
- big.js: 5.2.2
- emojis-list: 3.0.0
- json5: 2.2.3
-
loader-utils@2.0.4:
dependencies:
big.js: 5.2.2
@@ -29150,8 +29205,6 @@ snapshots:
dependencies:
p-locate: 6.0.0
- lodash._reinterpolate@3.0.0: {}
-
lodash.camelcase@4.3.0: {}
lodash.debounce@4.0.8: {}
@@ -29170,15 +29223,6 @@ snapshots:
lodash.sortby@4.7.0: {}
- lodash.template@4.5.0:
- dependencies:
- lodash._reinterpolate: 3.0.0
- lodash.templatesettings: 4.2.0
-
- lodash.templatesettings@4.2.0:
- dependencies:
- lodash._reinterpolate: 3.0.0
-
lodash.throttle@4.1.1: {}
lodash.uniq@4.5.0: {}
@@ -29205,8 +29249,6 @@ snapshots:
dayjs: 1.11.12
yargs: 15.4.1
- loglevel@1.9.1: {}
-
longest-streak@3.1.0: {}
loose-envify@1.4.0:
@@ -29523,7 +29565,7 @@ snapshots:
metro-babel-transformer@0.80.9:
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
hermes-parser: 0.20.1
nullthrows: 1.1.1
transitivePeerDependencies:
@@ -29559,7 +29601,7 @@ snapshots:
metro-file-map@0.80.9:
dependencies:
anymatch: 3.1.3
- debug: 2.6.9(supports-color@6.1.0)
+ debug: 2.6.9
fb-watchman: 2.0.2
graceful-fs: 4.2.11
invariant: 2.2.4
@@ -29609,7 +29651,7 @@ snapshots:
metro-transform-plugins@0.80.9:
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@babel/generator': 7.25.7
'@babel/template': 7.25.7
'@babel/traverse': 7.25.7
@@ -29619,7 +29661,7 @@ snapshots:
metro-transform-worker@0.80.9(encoding@0.1.13):
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@babel/generator': 7.25.7
'@babel/parser': 7.25.7
'@babel/types': 7.25.7
@@ -29640,7 +29682,7 @@ snapshots:
metro@0.80.9(encoding@0.1.13):
dependencies:
'@babel/code-frame': 7.25.7
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@babel/generator': 7.25.7
'@babel/parser': 7.25.7
'@babel/template': 7.25.7
@@ -29650,7 +29692,7 @@ snapshots:
chalk: 4.1.2
ci-info: 2.0.0
connect: 3.7.0
- debug: 2.6.9(supports-color@6.1.0)
+ debug: 2.6.9
denodeify: 1.2.1
error-stack-parser: 2.1.4
graceful-fs: 4.2.11
@@ -29688,8 +29730,6 @@ snapshots:
- supports-color
- utf-8-validate
- microevent.ts@0.1.1: {}
-
micromark-core-commonmark@2.0.1:
dependencies:
decode-named-character-reference: 1.0.2
@@ -29862,7 +29902,7 @@ snapshots:
micromark@4.0.0:
dependencies:
'@types/debug': 4.1.12
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
decode-named-character-reference: 1.0.2
devlop: 1.1.0
micromark-core-commonmark: 2.0.1
@@ -29881,20 +29921,20 @@ snapshots:
transitivePeerDependencies:
- supports-color
- micromatch@3.1.10(supports-color@6.1.0):
+ micromatch@3.1.10:
dependencies:
arr-diff: 4.0.0
array-unique: 0.3.2
- braces: 2.3.2(supports-color@6.1.0)
+ braces: 2.3.2
define-property: 2.0.2
extend-shallow: 3.0.2
- extglob: 2.0.4(supports-color@6.1.0)
+ extglob: 2.0.4
fragment-cache: 0.2.1
kind-of: 6.0.3
- nanomatch: 1.2.13(supports-color@6.1.0)
+ nanomatch: 1.2.13
object.pick: 1.3.0
regex-not: 1.0.2
- snapdragon: 0.8.2(supports-color@6.1.0)
+ snapdragon: 0.8.2
to-regex: 3.0.2
transitivePeerDependencies:
- supports-color
@@ -29933,14 +29973,6 @@ snapshots:
min-indent@1.0.1: {}
- mini-css-extract-plugin@0.11.3(webpack@4.44.2):
- dependencies:
- loader-utils: 1.4.2
- normalize-url: 1.9.1
- schema-utils: 1.0.0
- webpack: 4.44.2
- webpack-sources: 1.4.3
-
mini-css-extract-plugin@2.8.1(webpack@5.90.3(esbuild@0.20.1)):
dependencies:
schema-utils: 4.2.0
@@ -29961,10 +29993,6 @@ snapshots:
dependencies:
brace-expansion: 2.0.1
- minimatch@3.0.4:
- dependencies:
- brace-expansion: 1.1.11
-
minimatch@3.0.8:
dependencies:
brace-expansion: 1.1.11
@@ -29987,10 +30015,6 @@ snapshots:
minimist@1.2.8: {}
- minipass-collect@1.0.2:
- dependencies:
- minipass: 3.3.6
-
minipass-collect@2.0.1:
dependencies:
minipass: 7.1.2
@@ -30107,13 +30131,6 @@ snapshots:
muggle-string@0.4.1: {}
- multicast-dns-service-types@1.1.0: {}
-
- multicast-dns@6.2.3:
- dependencies:
- dns-packet: 1.3.4
- thunky: 1.1.0
-
multicast-dns@7.2.5:
dependencies:
dns-packet: 5.6.1
@@ -30139,7 +30156,7 @@ snapshots:
nanoid@3.3.7: {}
- nanomatch@1.2.13(supports-color@6.1.0):
+ nanomatch@1.2.13:
dependencies:
arr-diff: 4.0.0
array-unique: 0.3.2
@@ -30150,15 +30167,11 @@ snapshots:
kind-of: 6.0.3
object.pick: 1.3.0
regex-not: 1.0.2
- snapdragon: 0.8.2(supports-color@6.1.0)
+ snapdragon: 0.8.2
to-regex: 3.0.2
transitivePeerDependencies:
- supports-color
- native-url@0.2.6:
- dependencies:
- querystring: 0.2.1
-
natural-compare@1.4.0: {}
ncp@2.0.0:
@@ -30178,9 +30191,7 @@ snapshots:
nested-error-stacks@2.1.1: {}
- next-tick@1.1.0: {}
-
- next@14.2.5(@babel/core@7.25.2)(react-dom@19.0.0-rc-4c2e457c7c-20240522(react@19.0.0-rc-4c2e457c7c-20240522))(react@18.3.1)(sass@1.77.8):
+ next@14.2.5(@babel/core@7.25.2)(react-dom@19.0.0-rc-4c2e457c7c-20240522(react@18.3.1))(react@18.3.1)(sass@1.77.8):
dependencies:
'@next/env': 14.2.5
'@swc/helpers': 0.5.5
@@ -30189,7 +30200,7 @@ snapshots:
graceful-fs: 4.2.11
postcss: 8.4.31
react: 18.3.1
- react-dom: 19.0.0-rc-4c2e457c7c-20240522(react@19.0.0-rc-4c2e457c7c-20240522)
+ react-dom: 19.0.0-rc-4c2e457c7c-20240522(react@18.3.1)
styled-jsx: 5.1.1(@babel/core@7.25.2)(react@18.3.1)
optionalDependencies:
'@next/swc-darwin-arm64': 14.2.5
@@ -30387,7 +30398,7 @@ snapshots:
scule: 1.3.0
semver: 7.6.3
serve-placeholder: 2.0.2
- serve-static: 1.15.0(supports-color@6.1.0)
+ serve-static: 1.15.0
std-env: 3.7.0
ufo: 1.5.4
uncrypto: 0.1.3
@@ -30454,8 +30465,6 @@ snapshots:
optionalDependencies:
encoding: 0.1.13
- node-forge@0.10.0: {}
-
node-forge@1.3.1: {}
node-gyp-build@4.8.1: {}
@@ -30505,8 +30514,6 @@ snapshots:
node-machine-id@1.1.12: {}
- node-releases@1.1.77: {}
-
node-releases@2.0.18: {}
node-stream-zip@1.15.0: {}
@@ -30528,20 +30535,12 @@ snapshots:
normalize-path@2.1.1:
dependencies:
remove-trailing-separator: 1.1.0
+ optional: true
normalize-path@3.0.0: {}
normalize-range@0.1.2: {}
- normalize-url@1.9.1:
- dependencies:
- object-assign: 4.1.1
- prepend-http: 1.0.4
- query-string: 4.3.4
- sort-keys: 1.1.2
-
- normalize-url@3.3.0: {}
-
normalize-url@6.1.0: {}
npm-bundled@2.0.1:
@@ -30634,8 +30633,6 @@ snapshots:
nullthrows@1.1.1: {}
- num2fraction@1.2.2: {}
-
nwsapi@2.2.13: {}
nx@19.5.4:
@@ -30712,11 +30709,6 @@ snapshots:
object-inspect@1.13.2: {}
- object-is@1.1.6:
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
-
object-keys@1.1.1: {}
object-path@0.6.0: {}
@@ -30739,12 +30731,6 @@ snapshots:
for-own: 1.0.0
isobject: 3.0.1
- object.entries@1.1.8:
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-object-atoms: 1.0.0
-
object.getownpropertydescriptors@2.1.8:
dependencies:
array.prototype.reduce: 1.0.7
@@ -30834,16 +30820,6 @@ snapshots:
undici: 5.28.4
yargs-parser: 21.1.1
- opn@5.5.0:
- dependencies:
- is-wsl: 1.1.0
-
- optimize-css-assets-webpack-plugin@5.0.4(webpack@4.44.2):
- dependencies:
- cssnano: 4.1.11
- last-call-webpack-plugin: 3.0.0
- webpack: 4.44.2
-
optionator@0.8.3:
dependencies:
deep-is: 0.1.4
@@ -30961,8 +30937,6 @@ snapshots:
dependencies:
p-limit: 4.0.0
- p-map@2.1.0: {}
-
p-map@4.0.0:
dependencies:
aggregate-error: 3.1.0
@@ -30983,10 +30957,6 @@ snapshots:
eventemitter3: 5.0.1
p-timeout: 6.1.2
- p-retry@3.0.1:
- dependencies:
- retry: 0.12.0
-
p-retry@4.6.2:
dependencies:
'@types/retry': 0.12.0
@@ -31132,7 +31102,8 @@ snapshots:
path-browserify@1.0.1: {}
- path-dirname@1.0.2: {}
+ path-dirname@1.0.2:
+ optional: true
path-exists@3.0.0: {}
@@ -31142,8 +31113,6 @@ snapshots:
path-is-absolute@1.0.1: {}
- path-is-inside@1.0.2: {}
-
path-key@2.0.1: {}
path-key@3.1.1: {}
@@ -31209,12 +31178,6 @@ snapshots:
pify@4.0.1: {}
- pinkie-promise@2.0.1:
- dependencies:
- pinkie: 2.0.4
-
- pinkie@2.0.4: {}
-
pirates@4.0.6: {}
piscina@4.4.0:
@@ -31256,50 +31219,20 @@ snapshots:
pngjs@3.4.0: {}
- pnp-webpack-plugin@1.6.4(typescript@5.4.2):
- dependencies:
- ts-pnp: 1.2.0(typescript@5.4.2)
- transitivePeerDependencies:
- - typescript
-
- portfinder@1.0.32(supports-color@6.1.0):
- dependencies:
- async: 2.6.4
- debug: 3.2.7(supports-color@6.1.0)
- mkdirp: 0.5.6
- transitivePeerDependencies:
- - supports-color
-
posix-character-classes@0.1.1: {}
possible-typed-array-names@1.0.0: {}
- postcss-attribute-case-insensitive@4.0.2:
- dependencies:
- postcss: 7.0.39
- postcss-selector-parser: 6.1.1
-
postcss-attribute-case-insensitive@5.0.2(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-selector-parser: 6.1.1
- postcss-browser-comments@3.0.0(browserslist@4.23.2):
- dependencies:
- browserslist: 4.23.2
- postcss: 7.0.39
-
postcss-browser-comments@4.0.0(browserslist@4.23.2)(postcss@8.4.47):
dependencies:
browserslist: 4.23.2
postcss: 8.4.47
- postcss-calc@7.0.5:
- dependencies:
- postcss: 7.0.39
- postcss-selector-parser: 6.1.1
- postcss-value-parser: 4.2.0
-
postcss-calc@8.2.4(postcss@8.4.47):
dependencies:
postcss: 8.4.47
@@ -31311,56 +31244,21 @@ snapshots:
postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-color-functional-notation@2.0.1:
- dependencies:
- postcss: 7.0.39
- postcss-values-parser: 2.0.1
-
postcss-color-functional-notation@4.2.4(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-color-gray@5.0.0:
- dependencies:
- '@csstools/convert-colors': 1.4.0
- postcss: 7.0.39
- postcss-values-parser: 2.0.1
-
- postcss-color-hex-alpha@5.0.3:
- dependencies:
- postcss: 7.0.39
- postcss-values-parser: 2.0.1
-
postcss-color-hex-alpha@8.0.4(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-color-mod-function@3.0.3:
- dependencies:
- '@csstools/convert-colors': 1.4.0
- postcss: 7.0.39
- postcss-values-parser: 2.0.1
-
- postcss-color-rebeccapurple@4.0.1:
- dependencies:
- postcss: 7.0.39
- postcss-values-parser: 2.0.1
-
postcss-color-rebeccapurple@7.1.1(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-colormin@4.0.3:
- dependencies:
- browserslist: 4.23.2
- color: 3.2.1
- has: 1.0.4
- postcss: 7.0.39
- postcss-value-parser: 3.3.1
-
postcss-colormin@5.3.1(postcss@8.4.47):
dependencies:
browserslist: 4.23.2
@@ -31369,21 +31267,12 @@ snapshots:
postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-convert-values@4.0.1:
- dependencies:
- postcss: 7.0.39
- postcss-value-parser: 3.3.1
-
postcss-convert-values@5.1.3(postcss@8.4.47):
dependencies:
browserslist: 4.23.2
postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-custom-media@7.0.8:
- dependencies:
- postcss: 7.0.39
-
postcss-custom-media@8.0.2(postcss@8.4.47):
dependencies:
postcss: 8.4.47
@@ -31394,131 +31283,65 @@ snapshots:
postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-custom-properties@8.0.11:
- dependencies:
- postcss: 7.0.39
- postcss-values-parser: 2.0.1
-
- postcss-custom-selectors@5.1.2:
- dependencies:
- postcss: 7.0.39
- postcss-selector-parser: 5.0.0
-
postcss-custom-selectors@6.0.3(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-selector-parser: 6.1.1
- postcss-dir-pseudo-class@5.0.0:
- dependencies:
- postcss: 7.0.39
- postcss-selector-parser: 5.0.0
-
postcss-dir-pseudo-class@6.0.5(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-selector-parser: 6.1.1
- postcss-discard-comments@4.0.2:
- dependencies:
- postcss: 7.0.39
-
postcss-discard-comments@5.1.2(postcss@8.4.47):
dependencies:
postcss: 8.4.47
- postcss-discard-duplicates@4.0.2:
- dependencies:
- postcss: 7.0.39
-
postcss-discard-duplicates@5.1.0(postcss@8.4.47):
dependencies:
postcss: 8.4.47
- postcss-discard-empty@4.0.1:
- dependencies:
- postcss: 7.0.39
-
postcss-discard-empty@5.1.1(postcss@8.4.47):
dependencies:
postcss: 8.4.47
- postcss-discard-overridden@4.0.1:
- dependencies:
- postcss: 7.0.39
-
postcss-discard-overridden@5.1.0(postcss@8.4.47):
dependencies:
postcss: 8.4.47
- postcss-double-position-gradients@1.0.0:
- dependencies:
- postcss: 7.0.39
- postcss-values-parser: 2.0.1
-
postcss-double-position-gradients@3.1.2(postcss@8.4.47):
dependencies:
'@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.47)
postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-env-function@2.0.2:
- dependencies:
- postcss: 7.0.39
- postcss-values-parser: 2.0.1
-
postcss-env-function@4.0.6(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-flexbugs-fixes@4.2.1:
- dependencies:
- postcss: 7.0.39
-
postcss-flexbugs-fixes@5.0.2(postcss@8.4.47):
dependencies:
postcss: 8.4.47
- postcss-focus-visible@4.0.0:
- dependencies:
- postcss: 7.0.39
-
postcss-focus-visible@6.0.4(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-selector-parser: 6.1.1
- postcss-focus-within@3.0.0:
- dependencies:
- postcss: 7.0.39
-
postcss-focus-within@5.0.4(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-selector-parser: 6.1.1
- postcss-font-variant@4.0.1:
- dependencies:
- postcss: 7.0.39
-
postcss-font-variant@5.0.0(postcss@8.4.47):
dependencies:
postcss: 8.4.47
- postcss-gap-properties@2.0.0:
- dependencies:
- postcss: 7.0.39
-
postcss-gap-properties@3.0.5(postcss@8.4.47):
dependencies:
postcss: 8.4.47
- postcss-image-set-function@3.0.1:
- dependencies:
- postcss: 7.0.39
- postcss-values-parser: 2.0.1
-
postcss-image-set-function@4.0.7(postcss@8.4.47):
dependencies:
postcss: 8.4.47
@@ -31531,10 +31354,6 @@ snapshots:
read-cache: 1.0.0
resolve: 1.22.8
- postcss-initial@3.0.4:
- dependencies:
- postcss: 7.0.39
-
postcss-initial@4.0.1(postcss@8.4.47):
dependencies:
postcss: 8.4.47
@@ -31544,23 +31363,12 @@ snapshots:
camelcase-css: 2.0.1
postcss: 8.4.47
- postcss-lab-function@2.0.1:
- dependencies:
- '@csstools/convert-colors': 1.4.0
- postcss: 7.0.39
- postcss-values-parser: 2.0.1
-
postcss-lab-function@4.2.1(postcss@8.4.47):
dependencies:
'@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.47)
postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-load-config@2.1.2:
- dependencies:
- cosmiconfig: 5.2.1
- import-cwd: 2.1.0
-
postcss-load-config@3.1.4(postcss@8.4.47):
dependencies:
lilconfig: 2.1.0
@@ -31575,13 +31383,6 @@ snapshots:
optionalDependencies:
postcss: 8.4.47
- postcss-loader@3.0.0:
- dependencies:
- loader-utils: 1.4.2
- postcss: 7.0.39
- postcss-load-config: 2.1.2
- schema-utils: 1.0.0
-
postcss-loader@6.2.1(postcss@8.4.47)(webpack@5.93.0(esbuild@0.21.5)):
dependencies:
cosmiconfig: 7.1.0
@@ -31601,46 +31402,22 @@ snapshots:
transitivePeerDependencies:
- typescript
- postcss-logical@3.0.0:
- dependencies:
- postcss: 7.0.39
-
postcss-logical@5.0.4(postcss@8.4.47):
dependencies:
postcss: 8.4.47
- postcss-media-minmax@4.0.0:
- dependencies:
- postcss: 7.0.39
-
postcss-media-minmax@5.0.0(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-media-query-parser@0.2.3: {}
- postcss-merge-longhand@4.0.11:
- dependencies:
- css-color-names: 0.0.4
- postcss: 7.0.39
- postcss-value-parser: 3.3.1
- stylehacks: 4.0.3
-
postcss-merge-longhand@5.1.7(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-value-parser: 4.2.0
stylehacks: 5.1.1(postcss@8.4.47)
- postcss-merge-rules@4.0.3:
- dependencies:
- browserslist: 4.23.2
- caniuse-api: 3.0.0
- cssnano-util-same-parent: 4.0.1
- postcss: 7.0.39
- postcss-selector-parser: 3.1.2
- vendors: 1.0.4
-
postcss-merge-rules@5.1.4(postcss@8.4.47):
dependencies:
browserslist: 4.23.2
@@ -31649,23 +31426,11 @@ snapshots:
postcss: 8.4.47
postcss-selector-parser: 6.1.1
- postcss-minify-font-values@4.0.2:
- dependencies:
- postcss: 7.0.39
- postcss-value-parser: 3.3.1
-
postcss-minify-font-values@5.1.0(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-minify-gradients@4.0.2:
- dependencies:
- cssnano-util-get-arguments: 4.0.0
- is-color-stop: 1.1.0
- postcss: 7.0.39
- postcss-value-parser: 3.3.1
-
postcss-minify-gradients@5.1.1(postcss@8.4.47):
dependencies:
colord: 2.9.3
@@ -31673,15 +31438,6 @@ snapshots:
postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-minify-params@4.0.2:
- dependencies:
- alphanum-sort: 1.0.2
- browserslist: 4.23.2
- cssnano-util-get-arguments: 4.0.0
- postcss: 7.0.39
- postcss-value-parser: 3.3.1
- uniqs: 2.0.0
-
postcss-minify-params@5.1.4(postcss@8.4.47):
dependencies:
browserslist: 4.23.2
@@ -31689,33 +31445,15 @@ snapshots:
postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-minify-selectors@4.0.2:
- dependencies:
- alphanum-sort: 1.0.2
- has: 1.0.4
- postcss: 7.0.39
- postcss-selector-parser: 3.1.2
-
postcss-minify-selectors@5.2.1(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-selector-parser: 6.1.1
- postcss-modules-extract-imports@2.0.0:
- dependencies:
- postcss: 7.0.39
-
postcss-modules-extract-imports@3.1.0(postcss@8.4.47):
dependencies:
postcss: 8.4.47
- postcss-modules-local-by-default@3.0.3:
- dependencies:
- icss-utils: 4.1.1
- postcss: 7.0.39
- postcss-selector-parser: 6.1.1
- postcss-value-parser: 4.2.0
-
postcss-modules-local-by-default@4.0.5(postcss@8.4.47):
dependencies:
icss-utils: 5.1.0(postcss@8.4.47)
@@ -31723,21 +31461,11 @@ snapshots:
postcss-selector-parser: 6.1.1
postcss-value-parser: 4.2.0
- postcss-modules-scope@2.2.0:
- dependencies:
- postcss: 7.0.39
- postcss-selector-parser: 6.1.1
-
postcss-modules-scope@3.2.0(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-selector-parser: 6.1.1
- postcss-modules-values@3.0.0:
- dependencies:
- icss-utils: 4.1.1
- postcss: 7.0.39
-
postcss-modules-values@4.0.0(postcss@8.4.47):
dependencies:
icss-utils: 5.1.0(postcss@8.4.47)
@@ -31754,105 +31482,47 @@ snapshots:
postcss: 8.4.47
postcss-selector-parser: 6.1.1
- postcss-nesting@7.0.1:
- dependencies:
- postcss: 7.0.39
-
- postcss-normalize-charset@4.0.1:
- dependencies:
- postcss: 7.0.39
-
postcss-normalize-charset@5.1.0(postcss@8.4.47):
dependencies:
postcss: 8.4.47
- postcss-normalize-display-values@4.0.2:
- dependencies:
- cssnano-util-get-match: 4.0.0
- postcss: 7.0.39
- postcss-value-parser: 3.3.1
-
postcss-normalize-display-values@5.1.0(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-normalize-positions@4.0.2:
- dependencies:
- cssnano-util-get-arguments: 4.0.0
- has: 1.0.4
- postcss: 7.0.39
- postcss-value-parser: 3.3.1
-
postcss-normalize-positions@5.1.1(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-normalize-repeat-style@4.0.2:
- dependencies:
- cssnano-util-get-arguments: 4.0.0
- cssnano-util-get-match: 4.0.0
- postcss: 7.0.39
- postcss-value-parser: 3.3.1
-
postcss-normalize-repeat-style@5.1.1(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-normalize-string@4.0.2:
- dependencies:
- has: 1.0.4
- postcss: 7.0.39
- postcss-value-parser: 3.3.1
-
postcss-normalize-string@5.1.0(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-normalize-timing-functions@4.0.2:
- dependencies:
- cssnano-util-get-match: 4.0.0
- postcss: 7.0.39
- postcss-value-parser: 3.3.1
-
postcss-normalize-timing-functions@5.1.0(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-normalize-unicode@4.0.1:
- dependencies:
- browserslist: 4.23.2
- postcss: 7.0.39
- postcss-value-parser: 3.3.1
-
postcss-normalize-unicode@5.1.1(postcss@8.4.47):
dependencies:
browserslist: 4.23.2
postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-normalize-url@4.0.1:
- dependencies:
- is-absolute-url: 2.1.0
- normalize-url: 3.3.0
- postcss: 7.0.39
- postcss-value-parser: 3.3.1
-
postcss-normalize-url@5.1.0(postcss@8.4.47):
dependencies:
normalize-url: 6.1.0
postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-normalize-whitespace@4.0.2:
- dependencies:
- postcss: 7.0.39
- postcss-value-parser: 3.3.1
-
postcss-normalize-whitespace@5.1.1(postcss@8.4.47):
dependencies:
postcss: 8.4.47
@@ -31866,97 +31536,30 @@ snapshots:
postcss-browser-comments: 4.0.0(browserslist@4.23.2)(postcss@8.4.47)
sanitize.css: 13.0.0
- postcss-normalize@8.0.1:
- dependencies:
- '@csstools/normalize.css': 10.1.0
- browserslist: 4.23.2
- postcss: 7.0.39
- postcss-browser-comments: 3.0.0(browserslist@4.23.2)
- sanitize.css: 10.0.0
-
postcss-opacity-percentage@1.1.3(postcss@8.4.47):
dependencies:
postcss: 8.4.47
- postcss-ordered-values@4.1.2:
- dependencies:
- cssnano-util-get-arguments: 4.0.0
- postcss: 7.0.39
- postcss-value-parser: 3.3.1
-
postcss-ordered-values@5.1.3(postcss@8.4.47):
dependencies:
cssnano-utils: 3.1.0(postcss@8.4.47)
postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-overflow-shorthand@2.0.0:
- dependencies:
- postcss: 7.0.39
-
postcss-overflow-shorthand@3.0.4(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-page-break@2.0.0:
- dependencies:
- postcss: 7.0.39
-
postcss-page-break@3.0.4(postcss@8.4.47):
dependencies:
postcss: 8.4.47
- postcss-place@4.0.1:
- dependencies:
- postcss: 7.0.39
- postcss-values-parser: 2.0.1
-
postcss-place@7.0.5(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-preset-env@6.7.0:
- dependencies:
- autoprefixer: 9.8.8
- browserslist: 4.23.2
- caniuse-lite: 1.0.30001645
- css-blank-pseudo: 0.1.4
- css-has-pseudo: 0.10.0
- css-prefers-color-scheme: 3.1.1
- cssdb: 4.4.0
- postcss: 7.0.39
- postcss-attribute-case-insensitive: 4.0.2
- postcss-color-functional-notation: 2.0.1
- postcss-color-gray: 5.0.0
- postcss-color-hex-alpha: 5.0.3
- postcss-color-mod-function: 3.0.3
- postcss-color-rebeccapurple: 4.0.1
- postcss-custom-media: 7.0.8
- postcss-custom-properties: 8.0.11
- postcss-custom-selectors: 5.1.2
- postcss-dir-pseudo-class: 5.0.0
- postcss-double-position-gradients: 1.0.0
- postcss-env-function: 2.0.2
- postcss-focus-visible: 4.0.0
- postcss-focus-within: 3.0.0
- postcss-font-variant: 4.0.1
- postcss-gap-properties: 2.0.0
- postcss-image-set-function: 3.0.1
- postcss-initial: 3.0.4
- postcss-lab-function: 2.0.1
- postcss-logical: 3.0.0
- postcss-media-minmax: 4.0.0
- postcss-nesting: 7.0.1
- postcss-overflow-shorthand: 2.0.0
- postcss-page-break: 2.0.0
- postcss-place: 4.0.1
- postcss-pseudo-class-any-link: 6.0.0
- postcss-replace-overflow-wrap: 3.0.0
- postcss-selector-matches: 4.0.0
- postcss-selector-not: 4.0.1
-
postcss-preset-env@7.8.3(postcss@8.4.47):
dependencies:
'@csstools/postcss-cascade-layers': 1.1.1(postcss@8.4.47)
@@ -32010,53 +31613,26 @@ snapshots:
postcss-selector-not: 6.0.1(postcss@8.4.47)
postcss-value-parser: 4.2.0
- postcss-pseudo-class-any-link@6.0.0:
- dependencies:
- postcss: 7.0.39
- postcss-selector-parser: 5.0.0
-
postcss-pseudo-class-any-link@7.1.6(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-selector-parser: 6.1.1
- postcss-reduce-initial@4.0.3:
- dependencies:
- browserslist: 4.23.2
- caniuse-api: 3.0.0
- has: 1.0.4
- postcss: 7.0.39
-
postcss-reduce-initial@5.1.2(postcss@8.4.47):
dependencies:
browserslist: 4.23.2
caniuse-api: 3.0.0
postcss: 8.4.47
- postcss-reduce-transforms@4.0.2:
- dependencies:
- cssnano-util-get-match: 4.0.0
- has: 1.0.4
- postcss: 7.0.39
- postcss-value-parser: 3.3.1
-
postcss-reduce-transforms@5.1.0(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-replace-overflow-wrap@3.0.0:
- dependencies:
- postcss: 7.0.39
-
postcss-replace-overflow-wrap@4.0.0(postcss@8.4.47):
dependencies:
postcss: 8.4.47
- postcss-safe-parser@5.0.2:
- dependencies:
- postcss: 8.4.47
-
postcss-safe-parser@6.0.0(postcss@8.4.47):
dependencies:
postcss: 8.4.47
@@ -32065,77 +31641,29 @@ snapshots:
dependencies:
postcss: 8.4.47
- postcss-selector-matches@4.0.0:
- dependencies:
- balanced-match: 1.0.2
- postcss: 7.0.39
-
- postcss-selector-not@4.0.1:
- dependencies:
- balanced-match: 1.0.2
- postcss: 7.0.39
-
postcss-selector-not@6.0.1(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-selector-parser: 6.1.1
- postcss-selector-parser@3.1.2:
- dependencies:
- dot-prop: 5.3.0
- indexes-of: 1.0.1
- uniq: 1.0.1
-
- postcss-selector-parser@5.0.0:
- dependencies:
- cssesc: 2.0.0
- indexes-of: 1.0.1
- uniq: 1.0.1
-
postcss-selector-parser@6.1.1:
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
- postcss-svgo@4.0.3:
- dependencies:
- postcss: 7.0.39
- postcss-value-parser: 3.3.1
- svgo: 1.3.2
-
postcss-svgo@5.1.0(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-value-parser: 4.2.0
svgo: 2.8.0
- postcss-unique-selectors@4.0.1:
- dependencies:
- alphanum-sort: 1.0.2
- postcss: 7.0.39
- uniqs: 2.0.0
-
postcss-unique-selectors@5.1.1(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-selector-parser: 6.1.1
- postcss-value-parser@3.3.1: {}
-
postcss-value-parser@4.2.0: {}
- postcss-values-parser@2.0.1:
- dependencies:
- flatten: 1.0.3
- indexes-of: 1.0.1
- uniq: 1.0.1
-
- postcss@7.0.36:
- dependencies:
- chalk: 2.4.2
- source-map: 0.6.1
- supports-color: 6.1.0
-
postcss@7.0.39:
dependencies:
picocolors: 0.2.1
@@ -32169,8 +31697,6 @@ snapshots:
prelude-ls@1.2.1: {}
- prepend-http@1.0.4: {}
-
prettier-plugin-svelte@3.2.6(prettier@3.3.3)(svelte@4.2.19):
dependencies:
prettier: 3.3.3
@@ -32247,11 +31773,6 @@ snapshots:
dependencies:
asap: 2.0.6
- prompts@2.4.0:
- dependencies:
- kleur: 3.0.3
- sisteransi: 1.0.5
-
prompts@2.4.2:
dependencies:
kleur: 3.0.3
@@ -32327,11 +31848,6 @@ snapshots:
dependencies:
side-channel: 1.0.6
- query-string@4.3.4:
- dependencies:
- object-assign: 4.1.1
- strict-uri-encode: 1.1.0
-
query-string@7.1.3:
dependencies:
decode-uri-component: 0.2.2
@@ -32389,15 +31905,6 @@ snapshots:
minimist: 1.2.8
strip-json-comments: 2.0.1
- react-app-polyfill@2.0.0:
- dependencies:
- core-js: 3.37.1
- object-assign: 4.1.1
- promise: 8.3.0
- raf: 3.4.1
- regenerator-runtime: 0.13.11
- whatwg-fetch: 3.6.20
-
react-app-polyfill@3.0.0:
dependencies:
core-js: 3.37.1
@@ -32407,40 +31914,6 @@ snapshots:
regenerator-runtime: 0.13.11
whatwg-fetch: 3.6.20
- react-dev-utils@11.0.4(eslint@9.9.1(jiti@1.21.6))(typescript@5.4.2)(vue-template-compiler@2.7.16)(webpack@4.44.2):
- dependencies:
- '@babel/code-frame': 7.10.4
- address: 1.1.2
- browserslist: 4.14.2
- chalk: 2.4.2
- cross-spawn: 7.0.3
- detect-port-alt: 1.1.6
- escape-string-regexp: 2.0.0
- filesize: 6.1.0
- find-up: 4.1.0
- fork-ts-checker-webpack-plugin: 4.1.6(eslint@9.9.1(jiti@1.21.6))(typescript@5.4.2)(vue-template-compiler@2.7.16)(webpack@4.44.2)
- global-modules: 2.0.0
- globby: 11.0.1
- gzip-size: 5.1.1
- immer: 8.0.1
- is-root: 2.1.0
- loader-utils: 2.0.0
- open: 7.4.2
- pkg-up: 3.1.0
- prompts: 2.4.0
- react-error-overlay: 6.0.11
- recursive-readdir: 2.2.2
- shell-quote: 1.7.2
- strip-ansi: 6.0.0
- text-table: 0.2.0
- webpack: 4.44.2
- optionalDependencies:
- typescript: 5.4.2
- transitivePeerDependencies:
- - eslint
- - supports-color
- - vue-template-compiler
-
react-dev-utils@12.0.1(eslint@9.9.1(jiti@1.21.6))(typescript@5.4.2)(vue-template-compiler@2.7.16)(webpack@5.93.0(esbuild@0.21.5)):
dependencies:
'@babel/code-frame': 7.25.7
@@ -32489,6 +31962,12 @@ snapshots:
react: 18.3.1
scheduler: 0.23.2
+ react-dom@19.0.0-rc-4c2e457c7c-20240522(react@18.3.1):
+ dependencies:
+ react: 18.3.1
+ scheduler: 0.25.0-rc-4c2e457c7c-20240522
+ optional: true
+
react-dom@19.0.0-rc-4c2e457c7c-20240522(react@19.0.0-rc-4c2e457c7c-20240522):
dependencies:
react: 19.0.0-rc-4c2e457c7c-20240522
@@ -32525,26 +32004,26 @@ snapshots:
react-is@18.3.1: {}
- react-native-gesture-handler@2.18.0(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522):
+ react-native-gesture-handler@2.18.0(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522):
dependencies:
'@egjs/hammerjs': 2.0.17
hoist-non-react-statics: 3.3.2
invariant: 2.2.4
prop-types: 15.8.1
react: 19.0.0-rc-4c2e457c7c-20240522
- react-native: 0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1)
+ react-native: 0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1)
- react-native-paper@5.12.5(react-native-safe-area-context@4.10.8(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522))(react-native-vector-icons@10.1.0)(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522):
+ react-native-paper@5.12.5(react-native-safe-area-context@4.10.8(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522))(react-native-vector-icons@10.1.0)(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522):
dependencies:
'@callstack/react-theme-provider': 3.0.9(react@19.0.0-rc-4c2e457c7c-20240522)
color: 3.2.1
react: 19.0.0-rc-4c2e457c7c-20240522
- react-native: 0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1)
- react-native-safe-area-context: 4.10.8(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)
+ react-native: 0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1)
+ react-native-safe-area-context: 4.10.8(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)
react-native-vector-icons: 10.1.0
use-latest-callback: 0.1.11(react@19.0.0-rc-4c2e457c7c-20240522)
- react-native-reanimated@3.14.0(@babel/core@7.25.2)(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522):
+ react-native-reanimated@3.14.0(@babel/core@7.25.2)(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522):
dependencies:
'@babel/core': 7.25.2
'@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.25.2)
@@ -32556,20 +32035,20 @@ snapshots:
convert-source-map: 2.0.0
invariant: 2.2.4
react: 19.0.0-rc-4c2e457c7c-20240522
- react-native: 0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1)
+ react-native: 0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1)
transitivePeerDependencies:
- supports-color
- react-native-safe-area-context@4.10.8(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522):
+ react-native-safe-area-context@4.10.8(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522):
dependencies:
react: 19.0.0-rc-4c2e457c7c-20240522
- react-native: 0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1)
+ react-native: 0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1)
- react-native-screens@3.33.0(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522):
+ react-native-screens@3.33.0(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522):
dependencies:
react: 19.0.0-rc-4c2e457c7c-20240522
react-freeze: 1.0.4(react@19.0.0-rc-4c2e457c7c-20240522)
- react-native: 0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1)
+ react-native: 0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1)
warn-once: 0.1.1
react-native-vector-icons@10.1.0:
@@ -32592,19 +32071,19 @@ snapshots:
transitivePeerDependencies:
- encoding
- react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1):
+ react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1):
dependencies:
'@jest/create-cache-key-function': 29.7.0
'@react-native-community/cli': 13.6.9(encoding@0.1.13)
'@react-native-community/cli-platform-android': 13.6.9(encoding@0.1.13)
'@react-native-community/cli-platform-ios': 13.6.9(encoding@0.1.13)
'@react-native/assets-registry': 0.74.86
- '@react-native/codegen': 0.74.86(@babel/preset-env@7.25.3(@babel/core@7.25.2))
- '@react-native/community-cli-plugin': 0.74.86(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)
+ '@react-native/codegen': 0.74.86(@babel/preset-env@7.26.0(@babel/core@7.25.2))
+ '@react-native/community-cli-plugin': 0.74.86(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)
'@react-native/gradle-plugin': 0.74.86
'@react-native/js-polyfills': 0.74.86
'@react-native/normalize-colors': 0.74.86
- '@react-native/virtualized-lists': 0.74.86(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1)
+ '@react-native/virtualized-lists': 0.74.86(react-native@0.74.4(@babel/core@7.25.2)(@babel/preset-env@7.26.0(@babel/core@7.25.2))(encoding@0.1.13)(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1))(react@19.0.0-rc-4c2e457c7c-20240522)(types-react@19.0.0-rc.1)
abort-controller: 3.0.0
anser: 1.4.10
ansi-regex: 5.0.1
@@ -32646,8 +32125,6 @@ snapshots:
react-refresh@0.14.2: {}
- react-refresh@0.8.3: {}
-
react-router-dom@6.25.1(react-dom@19.0.0-rc-4c2e457c7c-20240522(react@19.0.0-rc-4c2e457c7c-20240522))(react@19.0.0-rc-4c2e457c7c-20240522):
dependencies:
'@remix-run/router': 1.18.0
@@ -32660,71 +32137,6 @@ snapshots:
'@remix-run/router': 1.18.0
react: 19.0.0-rc-4c2e457c7c-20240522
- react-scripts@4.0.3(@types/webpack@4.41.38)(eslint@9.9.1(jiti@1.21.6))(react@19.0.0-rc-4c2e457c7c-20240522)(sass@1.77.8)(sockjs-client@1.6.1)(typescript@5.4.2)(vue-template-compiler@2.7.16):
- dependencies:
- '@babel/core': 7.12.3
- '@pmmmwh/react-refresh-webpack-plugin': 0.4.3(@types/webpack@4.41.38)(react-refresh@0.8.3)(sockjs-client@1.6.1)(webpack-dev-server@3.11.1(webpack@4.44.2))(webpack@4.44.2)
- '@svgr/webpack': 5.5.0
- babel-loader: 8.1.0(@babel/core@7.12.3)(webpack@4.44.2)
- babel-plugin-named-asset-import: 0.3.8(@babel/core@7.12.3)
- babel-preset-react-app: 10.0.1
- bfj: 7.1.0
- camelcase: 6.3.0
- case-sensitive-paths-webpack-plugin: 2.3.0
- css-loader: 4.3.0(webpack@4.44.2)
- dotenv: 8.2.0
- dotenv-expand: 5.1.0
- eslint: 9.9.1(jiti@1.21.6)
- eslint-webpack-plugin: 2.7.0(eslint@9.9.1(jiti@1.21.6))(webpack@4.44.2)
- file-loader: 6.1.1(webpack@4.44.2)
- fs-extra: 9.1.0
- html-webpack-plugin: 4.5.0(webpack@4.44.2)
- identity-obj-proxy: 3.0.0
- mini-css-extract-plugin: 0.11.3(webpack@4.44.2)
- optimize-css-assets-webpack-plugin: 5.0.4(webpack@4.44.2)
- pnp-webpack-plugin: 1.6.4(typescript@5.4.2)
- postcss-flexbugs-fixes: 4.2.1
- postcss-loader: 3.0.0
- postcss-normalize: 8.0.1
- postcss-preset-env: 6.7.0
- postcss-safe-parser: 5.0.2
- prompts: 2.4.0
- react: 19.0.0-rc-4c2e457c7c-20240522
- react-app-polyfill: 2.0.0
- react-dev-utils: 11.0.4(eslint@9.9.1(jiti@1.21.6))(typescript@5.4.2)(vue-template-compiler@2.7.16)(webpack@4.44.2)
- react-refresh: 0.8.3
- resolve: 1.18.1
- resolve-url-loader: 3.1.5
- sass-loader: 10.5.2(sass@1.77.8)(webpack@4.44.2)
- semver: 7.3.2
- style-loader: 1.3.0(webpack@4.44.2)
- terser-webpack-plugin: 4.2.3(webpack@4.44.2)
- ts-pnp: 1.2.0(typescript@5.4.2)
- url-loader: 4.1.1(file-loader@6.1.1(webpack@4.44.2))(webpack@4.44.2)
- webpack: 4.44.2
- webpack-dev-server: 3.11.1(webpack@4.44.2)
- webpack-manifest-plugin: 2.2.0(webpack@4.44.2)
- workbox-webpack-plugin: 5.1.4(webpack@4.44.2)
- optionalDependencies:
- fsevents: 2.3.3
- typescript: 5.4.2
- transitivePeerDependencies:
- - '@types/webpack'
- - bluebird
- - bufferutil
- - fibers
- - node-sass
- - sass
- - sockjs-client
- - supports-color
- - type-fest
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
- - webpack-command
- - webpack-hot-middleware
- - webpack-plugin-serve
-
react-scripts@5.0.1(@types/babel__core@7.20.5)(@types/webpack@4.41.38)(esbuild@0.21.5)(eslint@9.9.1(jiti@1.21.6))(react@19.0.0-rc-4c2e457c7c-20240522)(rework-visit@1.0.0)(rework@1.0.1)(sass@1.77.8)(sockjs-client@1.6.1)(type-fest@4.23.0)(typescript@5.4.2)(vue-template-compiler@2.7.16):
dependencies:
'@babel/core': 7.25.2
@@ -32866,13 +32278,14 @@ snapshots:
dependencies:
minimatch: 5.1.6
- readdirp@2.2.1(supports-color@6.1.0):
+ readdirp@2.2.1:
dependencies:
graceful-fs: 4.2.11
- micromatch: 3.1.10(supports-color@6.1.0)
+ micromatch: 3.1.10
readable-stream: 2.3.8
transitivePeerDependencies:
- supports-color
+ optional: true
readdirp@3.6.0:
dependencies:
@@ -32904,13 +32317,13 @@ snapshots:
tiny-invariant: 1.3.3
tslib: 2.7.0
- rechoir@0.8.0:
+ rechoir@0.7.1:
dependencies:
resolve: 1.22.8
- recursive-readdir@2.2.2:
+ rechoir@0.8.0:
dependencies:
- minimatch: 3.0.4
+ resolve: 1.22.8
recursive-readdir@2.2.3:
dependencies:
@@ -32937,9 +32350,11 @@ snapshots:
dependencies:
regenerate: 1.4.2
- regenerate@1.4.2: {}
+ regenerate-unicode-properties@10.2.0:
+ dependencies:
+ regenerate: 1.4.2
- regenerator-runtime@0.11.1: {}
+ regenerate@1.4.2: {}
regenerator-runtime@0.13.11: {}
@@ -32972,6 +32387,21 @@ snapshots:
unicode-match-property-ecmascript: 2.0.0
unicode-match-property-value-ecmascript: 2.1.0
+ regexpu-core@6.2.0:
+ dependencies:
+ regenerate: 1.4.2
+ regenerate-unicode-properties: 10.2.0
+ regjsgen: 0.8.0
+ regjsparser: 0.12.0
+ unicode-match-property-ecmascript: 2.0.0
+ unicode-match-property-value-ecmascript: 2.1.0
+
+ regjsgen@0.8.0: {}
+
+ regjsparser@0.12.0:
+ dependencies:
+ jsesc: 3.0.2
+
regjsparser@0.9.1:
dependencies:
jsesc: 0.5.0
@@ -33048,7 +32478,8 @@ snapshots:
remove-accents@0.5.0: {}
- remove-trailing-separator@1.1.0: {}
+ remove-trailing-separator@1.1.0:
+ optional: true
remove-trailing-slash@0.1.1: {}
@@ -33088,9 +32519,9 @@ snapshots:
requires-port@1.0.0: {}
- resolve-cwd@2.0.0:
+ resolve-cwd@3.0.0:
dependencies:
- resolve-from: 3.0.0
+ resolve-from: 5.0.0
resolve-dir@1.0.1:
dependencies:
@@ -33105,19 +32536,6 @@ snapshots:
resolve-pkg-maps@1.0.0: {}
- resolve-url-loader@3.1.5:
- dependencies:
- adjust-sourcemap-loader: 3.0.0
- camelcase: 5.3.1
- compose-function: 3.0.3
- convert-source-map: 1.7.0
- es6-iterator: 2.0.3
- loader-utils: 1.4.2
- postcss: 7.0.36
- rework: 1.0.1
- rework-visit: 1.0.0
- source-map: 0.6.1
-
resolve-url-loader@4.0.0(rework-visit@1.0.0)(rework@1.0.1):
dependencies:
adjust-sourcemap-loader: 4.0.0
@@ -33141,11 +32559,6 @@ snapshots:
resolve.exports@2.0.2: {}
- resolve@1.18.1:
- dependencies:
- is-core-module: 2.15.1
- path-parse: 1.0.7
-
resolve@1.22.8:
dependencies:
is-core-module: 2.15.1
@@ -33204,16 +32617,14 @@ snapshots:
reusify@1.0.4: {}
- rework-visit@1.0.0: {}
+ rework-visit@1.0.0:
+ optional: true
rework@1.0.1:
dependencies:
convert-source-map: 0.3.5
css: 2.2.4
-
- rgb-regex@1.0.1: {}
-
- rgba-regex@1.0.0: {}
+ optional: true
rimraf@2.4.5:
dependencies:
@@ -33241,30 +32652,12 @@ snapshots:
hash-base: 3.1.0
inherits: 2.0.4
- rollup-plugin-babel@4.4.0(@babel/core@7.25.2)(rollup@1.32.1):
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-module-imports': 7.24.7
- rollup: 1.32.1
- rollup-pluginutils: 2.8.2
- transitivePeerDependencies:
- - supports-color
-
rollup-plugin-preserve-directives@0.4.0(rollup@4.24.0):
dependencies:
'@rollup/pluginutils': 5.1.0(rollup@4.24.0)
magic-string: 0.30.11
rollup: 4.24.0
- rollup-plugin-terser@5.3.1(rollup@1.32.1):
- dependencies:
- '@babel/code-frame': 7.25.7
- jest-worker: 24.9.0
- rollup: 1.32.1
- rollup-pluginutils: 2.8.2
- serialize-javascript: 4.0.0
- terser: 4.8.1
-
rollup-plugin-terser@7.0.2(rollup@2.79.2):
dependencies:
'@babel/code-frame': 7.25.7
@@ -33282,16 +32675,6 @@ snapshots:
optionalDependencies:
rollup: 4.24.0
- rollup-pluginutils@2.8.2:
- dependencies:
- estree-walker: 0.6.1
-
- rollup@1.32.1:
- dependencies:
- '@types/estree': 1.0.6
- '@types/node': 20.14.13
- acorn: 7.4.1
-
rollup@2.79.2:
optionalDependencies:
fsevents: 2.3.3
@@ -33379,21 +32762,8 @@ snapshots:
safer-buffer@2.1.2: {}
- sanitize.css@10.0.0: {}
-
sanitize.css@13.0.0: {}
- sass-loader@10.5.2(sass@1.77.8)(webpack@4.44.2):
- dependencies:
- klona: 2.0.6
- loader-utils: 2.0.4
- neo-async: 2.6.2
- schema-utils: 3.3.0
- semver: 7.6.3
- webpack: 4.44.2
- optionalDependencies:
- sass: 1.77.8
-
sass-loader@12.6.0(sass@1.77.8)(webpack@5.93.0(esbuild@0.21.5)):
dependencies:
klona: 2.0.6
@@ -33480,10 +32850,6 @@ snapshots:
select-hose@2.0.0: {}
- selfsigned@1.10.14:
- dependencies:
- node-forge: 0.10.0
-
selfsigned@2.4.1:
dependencies:
'@types/node-forge': 1.3.11
@@ -33493,8 +32859,6 @@ snapshots:
semver@6.3.1: {}
- semver@7.3.2: {}
-
semver@7.5.4:
dependencies:
lru-cache: 6.0.0
@@ -33505,9 +32869,9 @@ snapshots:
semver@7.6.3: {}
- send@0.18.0(supports-color@6.1.0):
+ send@0.18.0:
dependencies:
- debug: 2.6.9(supports-color@6.1.0)
+ debug: 2.6.9
depd: 2.0.0
destroy: 1.2.0
encodeurl: 1.0.2
@@ -33529,10 +32893,6 @@ snapshots:
dependencies:
randombytes: 2.1.0
- serialize-javascript@5.0.1:
- dependencies:
- randombytes: 2.1.0
-
serialize-javascript@6.0.2:
dependencies:
randombytes: 2.1.0
@@ -33543,11 +32903,11 @@ snapshots:
seroval@1.1.1: {}
- serve-index@1.9.1(supports-color@6.1.0):
+ serve-index@1.9.1:
dependencies:
accepts: 1.3.8
batch: 0.6.1
- debug: 2.6.9(supports-color@6.1.0)
+ debug: 2.6.9
escape-html: 1.0.3
http-errors: 1.6.3
mime-types: 2.1.35
@@ -33559,12 +32919,12 @@ snapshots:
dependencies:
defu: 6.1.4
- serve-static@1.15.0(supports-color@6.1.0):
+ serve-static@1.15.0:
dependencies:
encodeurl: 1.0.2
escape-html: 1.0.3
parseurl: 1.3.3
- send: 0.18.0(supports-color@6.1.0)
+ send: 0.18.0
transitivePeerDependencies:
- supports-color
@@ -33653,8 +33013,6 @@ snapshots:
shebang-regex@3.0.0: {}
- shell-quote@1.7.2: {}
-
shell-quote@1.8.1: {}
sherif-darwin-arm64@1.0.0:
@@ -33725,7 +33083,7 @@ snapshots:
dependencies:
'@kwsites/file-exists': 1.1.1
'@kwsites/promise-deferred': 1.1.1
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
@@ -33783,10 +33141,10 @@ snapshots:
dependencies:
kind-of: 3.2.2
- snapdragon@0.8.2(supports-color@6.1.0):
+ snapdragon@0.8.2:
dependencies:
base: 0.11.2
- debug: 2.6.9(supports-color@6.1.0)
+ debug: 2.6.9
define-property: 0.2.5
extend-shallow: 2.0.1
map-cache: 0.2.2
@@ -33796,15 +33154,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
- sockjs-client@1.6.1(supports-color@6.1.0):
+ sockjs-client@1.6.1:
dependencies:
- debug: 3.2.7(supports-color@6.1.0)
+ debug: 3.2.7
eventsource: 2.0.2
faye-websocket: 0.11.4
inherits: 2.0.4
url-parse: 1.5.10
transitivePeerDependencies:
- supports-color
+ optional: true
sockjs@0.3.24:
dependencies:
@@ -33815,7 +33174,7 @@ snapshots:
socks-proxy-agent@8.0.4:
dependencies:
agent-base: 7.1.1
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
socks: 2.8.3
transitivePeerDependencies:
- supports-color
@@ -33864,10 +33223,6 @@ snapshots:
dependencies:
object-path: 0.6.0
- sort-keys@1.1.2:
- dependencies:
- is-plain-obj: 1.1.0
-
source-list-map@2.0.1: {}
source-map-js@1.2.1: {}
@@ -33933,9 +33288,9 @@ snapshots:
spdx-license-ids@3.0.18: {}
- spdy-transport@3.0.0(supports-color@6.1.0):
+ spdy-transport@3.0.0:
dependencies:
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
detect-node: 2.1.0
hpack.js: 2.1.6
obuf: 1.1.2
@@ -33944,13 +33299,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- spdy@4.0.2(supports-color@6.1.0):
+ spdy@4.0.2:
dependencies:
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
handle-thing: 2.0.1
http-deceiver: 1.2.7
select-hose: 2.0.0
- spdy-transport: 3.0.0(supports-color@6.1.0)
+ spdy-transport: 3.0.0
transitivePeerDependencies:
- supports-color
@@ -33978,10 +33333,6 @@ snapshots:
dependencies:
figgy-pudding: 3.5.2
- ssri@8.0.1:
- dependencies:
- minipass: 3.3.6
-
stable-hash@0.0.4: {}
stable@0.1.8: {}
@@ -34051,8 +33402,6 @@ snapshots:
strict-event-emitter@0.5.1: {}
- strict-uri-encode@1.1.0: {}
-
strict-uri-encode@2.0.0: {}
string-argv@0.3.2: {}
@@ -34063,12 +33412,6 @@ snapshots:
string-ts@2.2.0: {}
- string-width@3.1.0:
- dependencies:
- emoji-regex: 7.0.3
- is-fullwidth-code-point: 2.0.0
- strip-ansi: 5.2.0
-
string-width@4.2.3:
dependencies:
emoji-regex: 8.0.0
@@ -34148,10 +33491,6 @@ snapshots:
dependencies:
ansi-regex: 4.1.1
- strip-ansi@6.0.0:
- dependencies:
- ansi-regex: 5.0.1
-
strip-ansi@6.0.1:
dependencies:
ansi-regex: 5.0.1
@@ -34164,11 +33503,6 @@ snapshots:
strip-bom@3.0.0: {}
- strip-comments@1.0.2:
- dependencies:
- babel-extract-comments: 1.0.0
- babel-plugin-transform-object-rest-spread: 6.26.0
-
strip-comments@2.0.1: {}
strip-eof@1.0.0: {}
@@ -34201,12 +33535,6 @@ snapshots:
structured-headers@0.4.1: {}
- style-loader@1.3.0(webpack@4.44.2):
- dependencies:
- loader-utils: 2.0.4
- schema-utils: 2.7.1
- webpack: 4.44.2
-
style-loader@3.3.4(webpack@5.93.0(esbuild@0.21.5)):
dependencies:
webpack: 5.93.0(esbuild@0.21.5)
@@ -34228,12 +33556,6 @@ snapshots:
client-only: 0.0.1
react: 19.0.0-rc-4c2e457c7c-20240522
- stylehacks@4.0.3:
- dependencies:
- browserslist: 4.23.2
- postcss: 7.0.39
- postcss-selector-parser: 3.1.2
-
stylehacks@5.1.1(postcss@8.4.47):
dependencies:
browserslist: 4.23.2
@@ -34280,10 +33602,6 @@ snapshots:
dependencies:
has-flag: 3.0.0
- supports-color@6.1.0:
- dependencies:
- has-flag: 3.0.0
-
supports-color@7.2.0:
dependencies:
has-flag: 4.0.0
@@ -34514,25 +33832,10 @@ snapshots:
serialize-javascript: 4.0.0
source-map: 0.6.1
terser: 4.8.1
- webpack: 4.44.2
+ webpack: 4.44.2(webpack-cli@4.10.0)
webpack-sources: 1.4.3
worker-farm: 1.7.0
- terser-webpack-plugin@4.2.3(webpack@4.44.2):
- dependencies:
- cacache: 15.3.0
- find-cache-dir: 3.3.2
- jest-worker: 26.6.2
- p-limit: 3.1.0
- schema-utils: 3.3.0
- serialize-javascript: 5.0.1
- source-map: 0.6.1
- terser: 5.31.3
- webpack: 4.44.2
- webpack-sources: 1.4.3
- transitivePeerDependencies:
- - bluebird
-
terser-webpack-plugin@5.3.10(esbuild@0.19.12)(webpack@5.93.0(esbuild@0.19.12)):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
@@ -34630,8 +33933,6 @@ snapshots:
dependencies:
setimmediate: 1.0.5
- timsort@0.3.0: {}
-
tiny-glob@0.2.9:
dependencies:
globalyzer: 0.1.0
@@ -34742,10 +34043,6 @@ snapshots:
ts-pattern@5.3.1: {}
- ts-pnp@1.2.0(typescript@5.4.2):
- optionalDependencies:
- typescript: 5.4.2
-
ts-toolbelt@9.6.0: {}
tsconfck@3.1.1(typescript@5.3.3):
@@ -34776,7 +34073,7 @@ snapshots:
bundle-require: 4.2.1(esbuild@0.19.12)
cac: 6.7.14
chokidar: 3.6.0
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
esbuild: 0.19.12
execa: 5.1.1
globby: 11.1.0
@@ -34800,7 +34097,7 @@ snapshots:
bundle-require: 4.2.1(esbuild@0.19.12)
cac: 6.7.14
chokidar: 3.6.0
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
esbuild: 0.19.12
execa: 5.1.1
globby: 11.1.0
@@ -34824,7 +34121,7 @@ snapshots:
bundle-require: 4.2.1(esbuild@0.19.12)
cac: 6.7.14
chokidar: 3.6.0
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
esbuild: 0.19.12
execa: 5.1.1
globby: 11.1.0
@@ -34848,7 +34145,7 @@ snapshots:
tuf-js@2.2.1:
dependencies:
'@tufjs/models': 2.0.1
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
make-fetch-happen: 13.0.1
transitivePeerDependencies:
- supports-color
@@ -34886,8 +34183,6 @@ snapshots:
media-typer: 0.3.0
mime-types: 2.1.35
- type@2.7.3: {}
-
typed-array-buffer@1.0.2:
dependencies:
call-bind: 1.0.7
@@ -35088,10 +34383,6 @@ snapshots:
is-extendable: 0.1.1
set-value: 2.0.1
- uniq@1.0.1: {}
-
- uniqs@2.0.0: {}
-
unique-filename@1.1.1:
dependencies:
unique-slug: 2.0.2
@@ -35227,6 +34518,12 @@ snapshots:
escalade: 3.2.0
picocolors: 1.1.0
+ update-browserslist-db@1.1.1(browserslist@4.24.2):
+ dependencies:
+ browserslist: 4.24.2
+ escalade: 3.2.0
+ picocolors: 1.1.0
+
uqr@0.1.2: {}
uri-js@4.4.1:
@@ -35237,15 +34534,6 @@ snapshots:
url-join@4.0.0: {}
- url-loader@4.1.1(file-loader@6.1.1(webpack@4.44.2))(webpack@4.44.2):
- dependencies:
- loader-utils: 2.0.4
- mime-types: 2.1.35
- schema-utils: 3.3.0
- webpack: 4.44.2
- optionalDependencies:
- file-loader: 6.1.1(webpack@4.44.2)
-
url-parse@1.5.10:
dependencies:
querystringify: 2.2.0
@@ -35298,8 +34586,6 @@ snapshots:
utils-merge@1.0.1: {}
- uuid@3.4.0: {}
-
uuid@7.0.3: {}
uuid@8.3.2: {}
@@ -35323,8 +34609,6 @@ snapshots:
vary@1.1.2: {}
- vendors@1.0.4: {}
-
vfile-location@5.0.3:
dependencies:
'@types/unist': 3.0.2
@@ -35361,7 +34645,7 @@ snapshots:
get-port-please: 3.1.2
h3: 1.11.1
hookable: 5.5.3
- http-proxy: 1.18.1(debug@4.3.7(supports-color@6.1.0))
+ http-proxy: 1.18.1
micromatch: 4.0.8
nitropack: 2.9.7(idb-keyval@6.2.1)(magicast@0.3.4)
node-fetch-native: 1.6.4
@@ -35370,7 +34654,7 @@ snapshots:
radix3: 1.1.2
resolve: 1.22.8
serve-placeholder: 2.0.2
- serve-static: 1.15.0(supports-color@6.1.0)
+ serve-static: 1.15.0
ufo: 1.5.4
unctx: 2.3.1
unenv: 1.10.0
@@ -35412,7 +34696,7 @@ snapshots:
vite-node@2.0.5(@types/node@20.14.13)(less@4.2.0)(sass@1.77.8)(terser@5.31.3):
dependencies:
cac: 6.7.14
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
pathe: 1.1.2
tinyrainbow: 1.2.0
vite: 5.4.8(@types/node@20.14.13)(less@4.2.0)(sass@1.77.8)(terser@5.31.3)
@@ -35430,7 +34714,7 @@ snapshots:
vite-node@2.0.5(@types/node@22.7.4)(less@4.2.0)(sass@1.77.8)(terser@5.31.3):
dependencies:
cac: 6.7.14
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
pathe: 1.1.2
tinyrainbow: 1.2.0
vite: 5.4.8(@types/node@22.7.4)(less@4.2.0)(sass@1.77.8)(terser@5.31.3)
@@ -35453,7 +34737,7 @@ snapshots:
'@volar/typescript': 2.4.1
'@vue/language-core': 2.0.29(typescript@5.3.3)
compare-versions: 6.1.1
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
kolorist: 1.8.0
local-pkg: 0.5.0
magic-string: 0.30.11
@@ -35474,7 +34758,7 @@ snapshots:
dependencies:
'@antfu/utils': 0.7.10
'@rollup/pluginutils': 5.1.0(rollup@4.24.0)
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
error-stack-parser-es: 0.1.5
fs-extra: 11.2.0
open: 9.1.0
@@ -35502,7 +34786,7 @@ snapshots:
vite-tsconfig-paths@5.0.1(typescript@5.3.3)(vite@5.4.8(@types/node@20.14.13)(less@4.2.0)(sass@1.77.8)(terser@5.31.3)):
dependencies:
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
globrex: 0.1.2
tsconfck: 3.1.1(typescript@5.3.3)
optionalDependencies:
@@ -35561,7 +34845,7 @@ snapshots:
'@vitest/spy': 2.0.5
'@vitest/utils': 2.0.5
chai: 5.1.1
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
execa: 8.0.1
magic-string: 0.30.11
pathe: 1.1.2
@@ -35595,7 +34879,7 @@ snapshots:
'@vitest/spy': 2.0.5
'@vitest/utils': 2.0.5
chai: 5.1.1
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
execa: 8.0.1
magic-string: 0.30.11
pathe: 1.1.2
@@ -35716,7 +35000,7 @@ snapshots:
vue-eslint-parser@9.4.3(eslint@9.9.1(jiti@1.21.6)):
dependencies:
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.3.7
eslint: 9.9.1(jiti@1.21.6)
eslint-scope: 7.2.2
eslint-visitor-keys: 3.4.3
@@ -35786,7 +35070,7 @@ snapshots:
watchpack-chokidar2@2.0.1:
dependencies:
- chokidar: 2.1.8(supports-color@6.1.0)
+ chokidar: 2.1.8
transitivePeerDependencies:
- supports-color
optional: true
@@ -35831,14 +35115,21 @@ snapshots:
webidl-conversions@7.0.0: {}
- webpack-dev-middleware@3.7.3(webpack@4.44.2):
+ webpack-cli@4.10.0(webpack@4.44.2):
dependencies:
- memory-fs: 0.4.1
- mime: 2.6.0
- mkdirp: 0.5.6
- range-parser: 1.2.1
- webpack: 4.44.2
- webpack-log: 2.0.0
+ '@discoveryjs/json-ext': 0.5.7
+ '@webpack-cli/configtest': 1.2.0(webpack-cli@4.10.0)(webpack@4.44.2)
+ '@webpack-cli/info': 1.5.0(webpack-cli@4.10.0)
+ '@webpack-cli/serve': 1.7.0(webpack-cli@4.10.0)
+ colorette: 2.0.20
+ commander: 7.2.0
+ cross-spawn: 7.0.3
+ fastest-levenshtein: 1.0.16
+ import-local: 3.2.0
+ interpret: 2.2.0
+ rechoir: 0.7.1
+ webpack: 4.44.2(webpack-cli@4.10.0)
+ webpack-merge: 5.10.0
webpack-dev-middleware@5.3.4(webpack@5.90.3(esbuild@0.20.1)):
dependencies:
@@ -35868,46 +35159,6 @@ snapshots:
optionalDependencies:
webpack: 5.90.3(esbuild@0.21.5)
- webpack-dev-server@3.11.1(webpack@4.44.2):
- dependencies:
- ansi-html: 0.0.7
- bonjour: 3.5.0
- chokidar: 2.1.8(supports-color@6.1.0)
- compression: 1.7.4(supports-color@6.1.0)
- connect-history-api-fallback: 1.6.0
- debug: 4.3.7(supports-color@6.1.0)
- del: 4.1.1
- express: 4.19.2(supports-color@6.1.0)
- html-entities: 1.4.0
- http-proxy-middleware: 0.19.1(debug@4.3.7(supports-color@6.1.0))(supports-color@6.1.0)
- import-local: 2.0.0
- internal-ip: 4.3.0
- ip: 1.1.9
- is-absolute-url: 3.0.3
- killable: 1.0.1
- loglevel: 1.9.1
- opn: 5.5.0
- p-retry: 3.0.1
- portfinder: 1.0.32(supports-color@6.1.0)
- schema-utils: 1.0.0
- selfsigned: 1.10.14
- semver: 6.3.1
- serve-index: 1.9.1(supports-color@6.1.0)
- sockjs: 0.3.24
- sockjs-client: 1.6.1(supports-color@6.1.0)
- spdy: 4.0.2(supports-color@6.1.0)
- strip-ansi: 3.0.1
- supports-color: 6.1.0
- url: 0.11.4
- webpack: 4.44.2
- webpack-dev-middleware: 3.7.3(webpack@4.44.2)
- webpack-log: 2.0.0
- ws: 6.2.3
- yargs: 13.3.2
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
-
webpack-dev-server@4.15.1(webpack@5.90.3(esbuild@0.20.1)):
dependencies:
'@types/bonjour': 3.5.13
@@ -35921,10 +35172,10 @@ snapshots:
bonjour-service: 1.2.1
chokidar: 3.6.0
colorette: 2.0.20
- compression: 1.7.4(supports-color@6.1.0)
+ compression: 1.7.4
connect-history-api-fallback: 2.0.0
default-gateway: 6.0.3
- express: 4.19.2(supports-color@6.1.0)
+ express: 4.19.2
graceful-fs: 4.2.11
html-entities: 2.5.2
http-proxy-middleware: 2.0.6(@types/express@4.17.21)
@@ -35935,9 +35186,9 @@ snapshots:
rimraf: 3.0.2
schema-utils: 4.2.0
selfsigned: 2.4.1
- serve-index: 1.9.1(supports-color@6.1.0)
+ serve-index: 1.9.1
sockjs: 0.3.24
- spdy: 4.0.2(supports-color@6.1.0)
+ spdy: 4.0.2
webpack-dev-middleware: 5.3.4(webpack@5.90.3(esbuild@0.20.1))
ws: 8.18.0
optionalDependencies:
@@ -35961,10 +35212,10 @@ snapshots:
bonjour-service: 1.2.1
chokidar: 3.6.0
colorette: 2.0.20
- compression: 1.7.4(supports-color@6.1.0)
+ compression: 1.7.4
connect-history-api-fallback: 2.0.0
default-gateway: 6.0.3
- express: 4.19.2(supports-color@6.1.0)
+ express: 4.19.2
graceful-fs: 4.2.11
html-entities: 2.5.2
http-proxy-middleware: 2.0.6(@types/express@4.17.21)
@@ -35975,9 +35226,9 @@ snapshots:
rimraf: 3.0.2
schema-utils: 4.2.0
selfsigned: 2.4.1
- serve-index: 1.9.1(supports-color@6.1.0)
+ serve-index: 1.9.1
sockjs: 0.3.24
- spdy: 4.0.2(supports-color@6.1.0)
+ spdy: 4.0.2
webpack-dev-middleware: 5.3.4(webpack@5.93.0(esbuild@0.21.5))
ws: 8.18.0
optionalDependencies:
@@ -35988,19 +35239,6 @@ snapshots:
- supports-color
- utf-8-validate
- webpack-log@2.0.0:
- dependencies:
- ansi-colors: 3.2.4
- uuid: 3.4.0
-
- webpack-manifest-plugin@2.2.0(webpack@4.44.2):
- dependencies:
- fs-extra: 7.0.1
- lodash: 4.17.21
- object.entries: 1.1.8
- tapable: 1.1.3
- webpack: 4.44.2
-
webpack-manifest-plugin@4.1.1(webpack@5.93.0(esbuild@0.21.5)):
dependencies:
tapable: 2.2.1
@@ -36048,7 +35286,7 @@ snapshots:
webpack-virtual-modules@0.6.2: {}
- webpack@4.44.2:
+ webpack@4.44.2(webpack-cli@4.10.0):
dependencies:
'@webassemblyjs/ast': 1.9.0
'@webassemblyjs/helper-module-context': 1.9.0
@@ -36064,7 +35302,7 @@ snapshots:
loader-runner: 2.4.0
loader-utils: 1.4.2
memory-fs: 0.4.1
- micromatch: 3.1.10(supports-color@6.1.0)
+ micromatch: 3.1.10
mkdirp: 0.5.6
neo-async: 2.6.2
node-libs-browser: 2.2.1
@@ -36073,6 +35311,8 @@ snapshots:
terser-webpack-plugin: 1.4.6(webpack@4.44.2)
watchpack: 1.7.5
webpack-sources: 1.4.3
+ optionalDependencies:
+ webpack-cli: 4.10.0(webpack@4.44.2)
transitivePeerDependencies:
- supports-color
@@ -36262,71 +35502,22 @@ snapshots:
word-wrap@1.2.5: {}
- workbox-background-sync@5.1.4:
- dependencies:
- workbox-core: 5.1.4
-
workbox-background-sync@6.6.0:
dependencies:
idb: 7.1.1
workbox-core: 6.6.0
- workbox-broadcast-update@5.1.4:
- dependencies:
- workbox-core: 5.1.4
-
workbox-broadcast-update@6.6.0:
dependencies:
workbox-core: 6.6.0
- workbox-build@5.1.4:
- dependencies:
- '@babel/core': 7.25.2
- '@babel/preset-env': 7.25.3(@babel/core@7.25.2)
- '@babel/runtime': 7.25.0
- '@hapi/joi': 15.1.1
- '@rollup/plugin-node-resolve': 7.1.3(rollup@1.32.1)
- '@rollup/plugin-replace': 2.4.2(rollup@1.32.1)
- '@surma/rollup-plugin-off-main-thread': 1.4.2
- common-tags: 1.8.2
- fast-json-stable-stringify: 2.1.0
- fs-extra: 8.1.0
- glob: 7.2.3
- lodash.template: 4.5.0
- pretty-bytes: 5.6.0
- rollup: 1.32.1
- rollup-plugin-babel: 4.4.0(@babel/core@7.25.2)(rollup@1.32.1)
- rollup-plugin-terser: 5.3.1(rollup@1.32.1)
- source-map: 0.7.4
- source-map-url: 0.4.1
- stringify-object: 3.3.0
- strip-comments: 1.0.2
- tempy: 0.3.0
- upath: 1.2.0
- workbox-background-sync: 5.1.4
- workbox-broadcast-update: 5.1.4
- workbox-cacheable-response: 5.1.4
- workbox-core: 5.1.4
- workbox-expiration: 5.1.4
- workbox-google-analytics: 5.1.4
- workbox-navigation-preload: 5.1.4
- workbox-precaching: 5.1.4
- workbox-range-requests: 5.1.4
- workbox-routing: 5.1.4
- workbox-strategies: 5.1.4
- workbox-streams: 5.1.4
- workbox-sw: 5.1.4
- workbox-window: 5.1.4
- transitivePeerDependencies:
- - supports-color
-
workbox-build@6.6.0(@types/babel__core@7.20.5):
dependencies:
'@apideck/better-ajv-errors': 0.3.6(ajv@8.17.1)
- '@babel/core': 7.25.2
- '@babel/preset-env': 7.25.3(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@babel/preset-env': 7.26.0(@babel/core@7.26.0)
'@babel/runtime': 7.25.0
- '@rollup/plugin-babel': 5.3.1(@babel/core@7.25.2)(@types/babel__core@7.20.5)(rollup@2.79.2)
+ '@rollup/plugin-babel': 5.3.1(@babel/core@7.26.0)(@types/babel__core@7.20.5)(rollup@2.79.2)
'@rollup/plugin-node-resolve': 11.2.1(rollup@2.79.2)
'@rollup/plugin-replace': 2.4.2(rollup@2.79.2)
'@surma/rollup-plugin-off-main-thread': 2.2.3
@@ -36363,34 +35554,17 @@ snapshots:
- '@types/babel__core'
- supports-color
- workbox-cacheable-response@5.1.4:
- dependencies:
- workbox-core: 5.1.4
-
workbox-cacheable-response@6.6.0:
dependencies:
workbox-core: 6.6.0
- workbox-core@5.1.4: {}
-
workbox-core@6.6.0: {}
- workbox-expiration@5.1.4:
- dependencies:
- workbox-core: 5.1.4
-
workbox-expiration@6.6.0:
dependencies:
idb: 7.1.1
workbox-core: 6.6.0
- workbox-google-analytics@5.1.4:
- dependencies:
- workbox-background-sync: 5.1.4
- workbox-core: 5.1.4
- workbox-routing: 5.1.4
- workbox-strategies: 5.1.4
-
workbox-google-analytics@6.6.0:
dependencies:
workbox-background-sync: 6.6.0
@@ -36398,28 +35572,16 @@ snapshots:
workbox-routing: 6.6.0
workbox-strategies: 6.6.0
- workbox-navigation-preload@5.1.4:
- dependencies:
- workbox-core: 5.1.4
-
workbox-navigation-preload@6.6.0:
dependencies:
workbox-core: 6.6.0
- workbox-precaching@5.1.4:
- dependencies:
- workbox-core: 5.1.4
-
workbox-precaching@6.6.0:
dependencies:
workbox-core: 6.6.0
workbox-routing: 6.6.0
workbox-strategies: 6.6.0
- workbox-range-requests@5.1.4:
- dependencies:
- workbox-core: 5.1.4
-
workbox-range-requests@6.6.0:
dependencies:
workbox-core: 6.6.0
@@ -36433,49 +35595,21 @@ snapshots:
workbox-routing: 6.6.0
workbox-strategies: 6.6.0
- workbox-routing@5.1.4:
- dependencies:
- workbox-core: 5.1.4
-
workbox-routing@6.6.0:
dependencies:
workbox-core: 6.6.0
- workbox-strategies@5.1.4:
- dependencies:
- workbox-core: 5.1.4
- workbox-routing: 5.1.4
-
workbox-strategies@6.6.0:
dependencies:
workbox-core: 6.6.0
- workbox-streams@5.1.4:
- dependencies:
- workbox-core: 5.1.4
- workbox-routing: 5.1.4
-
workbox-streams@6.6.0:
dependencies:
workbox-core: 6.6.0
workbox-routing: 6.6.0
- workbox-sw@5.1.4: {}
-
workbox-sw@6.6.0: {}
- workbox-webpack-plugin@5.1.4(webpack@4.44.2):
- dependencies:
- '@babel/runtime': 7.25.0
- fast-json-stable-stringify: 2.1.0
- source-map-url: 0.4.1
- upath: 1.2.0
- webpack: 4.44.2
- webpack-sources: 1.4.3
- workbox-build: 5.1.4
- transitivePeerDependencies:
- - supports-color
-
workbox-webpack-plugin@6.6.0(@types/babel__core@7.20.5)(webpack@5.93.0(esbuild@0.21.5)):
dependencies:
fast-json-stable-stringify: 2.1.0
@@ -36488,10 +35622,6 @@ snapshots:
- '@types/babel__core'
- supports-color
- workbox-window@5.1.4:
- dependencies:
- workbox-core: 5.1.4
-
workbox-window@6.6.0:
dependencies:
'@types/trusted-types': 2.0.7
@@ -36501,16 +35631,6 @@ snapshots:
dependencies:
errno: 0.1.8
- worker-rpc@0.1.1:
- dependencies:
- microevent.ts: 0.1.1
-
- wrap-ansi@5.1.0:
- dependencies:
- ansi-styles: 3.2.1
- string-width: 3.1.0
- strip-ansi: 5.2.0
-
wrap-ansi@6.2.0:
dependencies:
ansi-styles: 4.3.0
@@ -36590,11 +35710,6 @@ snapshots:
yaml@2.5.0: {}
- yargs-parser@13.1.2:
- dependencies:
- camelcase: 5.3.1
- decamelize: 1.2.0
-
yargs-parser@18.1.3:
dependencies:
camelcase: 5.3.1
@@ -36604,19 +35719,6 @@ snapshots:
yargs-parser@21.1.1: {}
- yargs@13.3.2:
- dependencies:
- cliui: 5.0.0
- find-up: 3.0.0
- get-caller-file: 2.0.5
- require-directory: 2.1.1
- require-main-filename: 2.0.0
- set-blocking: 2.0.0
- string-width: 3.1.0
- which-module: 2.0.1
- y18n: 4.0.3
- yargs-parser: 13.1.2
-
yargs@15.4.1:
dependencies:
cliui: 6.0.0