diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index defe4249..31ad4f37 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -28,7 +28,7 @@ jobs:
- uses: actions/checkout@v1
- uses: pnpm/action-setup@v2.0.1
with:
- version: 6
+ version: 8
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
diff --git a/.gitignore b/.gitignore
index f7999996..769cf873 100644
--- a/.gitignore
+++ b/.gitignore
@@ -106,3 +106,6 @@ dist
# TernJS port file
.tern-port
+
+# Finder (MacOS) folder config
+.DS_Store
\ No newline at end of file
diff --git a/.husky/pre-commit b/.husky/pre-commit
index 5e592735..5ee7abd8 100755
--- a/.husky/pre-commit
+++ b/.husky/pre-commit
@@ -1,4 +1 @@
-#!/bin/sh
-. "$(dirname "$0")/_/husky.sh"
-
pnpm exec lint-staged
diff --git a/.prettierignore b/.prettierignore
index 93549bcf..688151cd 100644
--- a/.prettierignore
+++ b/.prettierignore
@@ -5,3 +5,7 @@ pnpm-lock.yaml
**/*.spec.js
**/*.spec.ts
**/dist
+# https://github.com/prettier/prettier/issues/5246
+**/*.html
+
+playground
diff --git a/LICENSE b/LICENSE
index 67ac4d3c..810f525a 100644
--- a/LICENSE
+++ b/LICENSE
@@ -92,7 +92,7 @@ Repository: git+https://github.com/marvinhagemeister/kolorist.git
License: MIT
By: James Halliday
-Repository: git://github.com/substack/minimist.git
+Repository: git://github.com/minimistjs/minimist.git
> This software is released under the MIT license:
>
diff --git a/index.ts b/index.ts
index a843b143..4037901e 100755
--- a/index.ts
+++ b/index.ts
@@ -311,15 +311,54 @@ async function init() {
// Render tsconfigs
render('tsconfig/base')
+
+ // The content of the root `tsconfig.json` is a bit complicated,
+ // So here we are programmatically generating it.
+ const rootTsConfig = {
+ // It doesn't target any specific files because they are all configured in the referenced ones.
+ files: [],
+ // All templates contain at least a `.node` and a `.app` tsconfig.
+ references: [
+ {
+ path: './tsconfig.node.json'
+ },
+ {
+ path: './tsconfig.app.json'
+ }
+ ]
+ }
+
if (needsCypress) {
render('tsconfig/cypress')
+ // Cypress uses `ts-node` internally, which doesn't support solution-style tsconfig.
+ // So we have to set a dummy `compilerOptions` in the root tsconfig to make it work.
+ // I use `NodeNext` here instead of `ES2015` because that's what the actual environment is.
+ // (Cypress uses the ts-node/esm loader when `type: module` is specified in package.json.)
+ // @ts-ignore
+ rootTsConfig.compilerOptions = {
+ module: 'NodeNext'
+ }
}
if (needsCypressCT) {
render('tsconfig/cypress-ct')
+ // Cypress Component Testing needs a standalone tsconfig.
+ rootTsConfig.references.push({
+ path: './tsconfig.cypress-ct.json'
+ })
}
if (needsVitest) {
render('tsconfig/vitest')
+ // Vitest needs a standalone tsconfig.
+ rootTsConfig.references.push({
+ path: './tsconfig.vitest.json'
+ })
}
+
+ fs.writeFileSync(
+ path.resolve(root, 'tsconfig.json'),
+ JSON.stringify(rootTsConfig, null, 2) + '\n',
+ 'utf-8'
+ )
}
// Render ESLint config
diff --git a/package.json b/package.json
index a35ac1f1..97b9255c 100644
--- a/package.json
+++ b/package.json
@@ -2,6 +2,7 @@
"name": "create-vue",
"version": "2.2.0",
"description": "An easy way to start a Vue project",
+ "packageManager": "pnpm@8.15.4",
"type": "module",
"bin": {
"create-vue": "outfile.cjs"
@@ -11,10 +12,10 @@
"template"
],
"engines": {
- "node": "^14.13.1 || >=16.0.0"
+ "node": ">=v16.20.0"
},
"scripts": {
- "prepare": "husky install",
+ "prepare": "husky",
"format": "prettier --write .",
"build": "zx ./scripts/build.mjs",
"snapshot": "zx ./scripts/snapshot.mjs",
@@ -34,19 +35,21 @@
},
"homepage": "https://github.com/vuejs/create-vue#readme",
"devDependencies": {
- "@types/eslint": "^8.4.5",
- "@types/prompts": "^2.0.14",
- "@vue/tsconfig": "^0.1.3",
- "esbuild": "^0.14.49",
+ "@tsconfig/node18": "^18.2.4",
+ "@types/eslint": "^8.56.9",
+ "@types/node": "18.19.3",
+ "@types/prompts": "^2.4.9",
+ "@vue/tsconfig": "^0.5.1",
+ "esbuild": "^0.19.10",
"esbuild-plugin-license": "^1.2.2",
- "husky": "^8.0.1",
- "kolorist": "^1.5.1",
- "lint-staged": "^13.0.3",
- "minimist": "^1.2.6",
- "npm-run-all": "^4.1.5",
- "prettier": "^2.7.1",
+ "husky": "^9.0.11",
+ "kolorist": "^1.8.0",
+ "lint-staged": "^15.2.2",
+ "minimist": "^1.2.8",
+ "npm-run-all2": "^6.1.2",
+ "prettier": "^3.2.5",
"prompts": "^2.4.2",
- "zx": "^4.3.0"
+ "zx": "^7.2.3"
},
"lint-staged": {
"*.{js,ts,vue,json}": [
diff --git a/playground b/playground
index 0bbf78fb..bb803de6 160000
--- a/playground
+++ b/playground
@@ -1 +1 @@
-Subproject commit 0bbf78fbba1ce2f01319dc8a25a6f50c025140f1
+Subproject commit bb803de64a014dd357a27746d9332d4fd00a495c
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 89f34deb..fdf98dc1 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -1,2600 +1,177 @@
-lockfileVersion: 5.4
+lockfileVersion: '6.0'
+
+settings:
+ autoInstallPeers: true
+ excludeLinksFromLockfile: false
importers:
.:
- specifiers:
- '@types/eslint': ^8.4.5
- '@types/prompts': ^2.0.14
- '@vue/tsconfig': ^0.1.3
- esbuild: ^0.14.49
- esbuild-plugin-license: ^1.2.2
- husky: ^8.0.1
- kolorist: ^1.5.1
- lint-staged: ^13.0.3
- minimist: ^1.2.6
- npm-run-all: ^4.1.5
- prettier: ^2.7.1
- prompts: ^2.4.2
- zx: ^4.3.0
- devDependencies:
- '@types/eslint': 8.4.5
- '@types/prompts': 2.0.14
- '@vue/tsconfig': 0.1.3
- esbuild: 0.14.49
- esbuild-plugin-license: 1.2.2_esbuild@0.14.49
- husky: 8.0.1
- kolorist: 1.5.1
- lint-staged: 13.0.3
- minimist: 1.2.6
- npm-run-all: 4.1.5
- prettier: 2.7.1
- prompts: 2.4.2
- zx: 4.3.0
-
- playground/cypress:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- cypress: ^10.3.0
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- vite: ^3.0.2
- vue: ^2.7.7
- dependencies:
- vue: 2.7.7
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- cypress: 10.3.0
- start-server-and-test: 1.14.0
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
-
- playground/default:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- terser: ^5.14.2
- vite: ^3.0.2
- vue: ^2.7.7
- dependencies:
- vue: 2.7.7
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
-
- playground/jsx:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- terser: ^5.14.2
- vite: ^3.0.2
- vue: ^2.7.7
- dependencies:
- vue: 2.7.7
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
-
- playground/jsx-cypress:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- cypress: ^10.3.0
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- vite: ^3.0.2
- vue: ^2.7.7
- dependencies:
- vue: 2.7.7
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- cypress: 10.3.0
- start-server-and-test: 1.14.0
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
-
- playground/jsx-pinia:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- pinia: ^2.0.16
- terser: ^5.14.2
- vite: ^3.0.2
- vue: ^2.7.7
- dependencies:
- pinia: 2.0.16_vue@2.7.7
- vue: 2.7.7
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
-
- playground/jsx-pinia-cypress:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- cypress: ^10.3.0
- pinia: ^2.0.16
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- vite: ^3.0.2
- vue: ^2.7.7
- dependencies:
- pinia: 2.0.16_vue@2.7.7
- vue: 2.7.7
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- cypress: 10.3.0
- start-server-and-test: 1.14.0
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
-
- playground/jsx-pinia-vitest:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- '@vue/test-utils': ^1.3.0
- jsdom: ^20.0.0
- pinia: ^2.0.16
- terser: ^5.14.2
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-template-compiler: ^2.7.7
- dependencies:
- pinia: 2.0.16_vue@2.7.7
- vue: 2.7.7
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- jsdom: 20.0.0
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
-
- playground/jsx-pinia-vitest-cypress:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- '@vue/test-utils': ^1.3.0
- cypress: ^10.3.0
- jsdom: ^20.0.0
- pinia: ^2.0.16
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-template-compiler: ^2.7.7
- dependencies:
- pinia: 2.0.16_vue@2.7.7
- vue: 2.7.7
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- cypress: 10.3.0
- jsdom: 20.0.0
- start-server-and-test: 1.14.0
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
-
- playground/jsx-pinia-with-tests:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- '@vue/test-utils': ^1.3.0
- cypress: ^10.3.0
- jsdom: ^20.0.0
- pinia: ^2.0.16
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-template-compiler: ^2.7.7
- dependencies:
- pinia: 2.0.16_vue@2.7.7
- vue: 2.7.7
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- cypress: 10.3.0
- jsdom: 20.0.0
- start-server-and-test: 1.14.0
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
-
- playground/jsx-router:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- terser: ^5.14.2
- vite: ^3.0.2
- vue: ^2.7.7
- vue-router: ^3.5.4
- dependencies:
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
-
- playground/jsx-router-cypress:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- cypress: ^10.3.0
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- vite: ^3.0.2
- vue: ^2.7.7
- vue-router: ^3.5.4
- dependencies:
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- cypress: 10.3.0
- start-server-and-test: 1.14.0
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
-
- playground/jsx-router-pinia:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- pinia: ^2.0.16
- terser: ^5.14.2
- vite: ^3.0.2
- vue: ^2.7.7
- vue-router: ^3.5.4
- dependencies:
- pinia: 2.0.16_vue@2.7.7
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
-
- playground/jsx-router-pinia-cypress:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- cypress: ^10.3.0
- pinia: ^2.0.16
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- vite: ^3.0.2
- vue: ^2.7.7
- vue-router: ^3.5.4
- dependencies:
- pinia: 2.0.16_vue@2.7.7
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- cypress: 10.3.0
- start-server-and-test: 1.14.0
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
-
- playground/jsx-router-pinia-vitest:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- '@vue/test-utils': ^1.3.0
- jsdom: ^20.0.0
- pinia: ^2.0.16
- terser: ^5.14.2
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-router: ^3.5.4
- vue-template-compiler: ^2.7.7
- dependencies:
- pinia: 2.0.16_vue@2.7.7
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- jsdom: 20.0.0
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
-
- playground/jsx-router-pinia-vitest-cypress:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- '@vue/test-utils': ^1.3.0
- cypress: ^10.3.0
- jsdom: ^20.0.0
- pinia: ^2.0.16
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-router: ^3.5.4
- vue-template-compiler: ^2.7.7
- dependencies:
- pinia: 2.0.16_vue@2.7.7
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- cypress: 10.3.0
- jsdom: 20.0.0
- start-server-and-test: 1.14.0
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
-
- playground/jsx-router-pinia-with-tests:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- '@vue/test-utils': ^1.3.0
- cypress: ^10.3.0
- jsdom: ^20.0.0
- pinia: ^2.0.16
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-router: ^3.5.4
- vue-template-compiler: ^2.7.7
- dependencies:
- pinia: 2.0.16_vue@2.7.7
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- cypress: 10.3.0
- jsdom: 20.0.0
- start-server-and-test: 1.14.0
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
-
- playground/jsx-router-vitest:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- '@vue/test-utils': ^1.3.0
- jsdom: ^20.0.0
- terser: ^5.14.2
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-router: ^3.5.4
- vue-template-compiler: ^2.7.7
- dependencies:
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- jsdom: 20.0.0
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
-
- playground/jsx-router-vitest-cypress:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- '@vue/test-utils': ^1.3.0
- cypress: ^10.3.0
- jsdom: ^20.0.0
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-router: ^3.5.4
- vue-template-compiler: ^2.7.7
- dependencies:
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- cypress: 10.3.0
- jsdom: 20.0.0
- start-server-and-test: 1.14.0
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
-
- playground/jsx-router-with-tests:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- '@vue/test-utils': ^1.3.0
- cypress: ^10.3.0
- jsdom: ^20.0.0
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-router: ^3.5.4
- vue-template-compiler: ^2.7.7
- dependencies:
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- cypress: 10.3.0
- jsdom: 20.0.0
- start-server-and-test: 1.14.0
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
-
- playground/jsx-vitest:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- '@vue/test-utils': ^1.3.0
- jsdom: ^20.0.0
- terser: ^5.14.2
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-template-compiler: ^2.7.7
- dependencies:
- vue: 2.7.7
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- jsdom: 20.0.0
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
-
- playground/jsx-vitest-cypress:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- '@vue/test-utils': ^1.3.0
- cypress: ^10.3.0
- jsdom: ^20.0.0
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-template-compiler: ^2.7.7
- dependencies:
- vue: 2.7.7
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- cypress: 10.3.0
- jsdom: 20.0.0
- start-server-and-test: 1.14.0
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
-
- playground/jsx-with-tests:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- '@vue/test-utils': ^1.3.0
- cypress: ^10.3.0
- jsdom: ^20.0.0
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-template-compiler: ^2.7.7
- dependencies:
- vue: 2.7.7
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- cypress: 10.3.0
- jsdom: 20.0.0
- start-server-and-test: 1.14.0
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
-
- playground/pinia:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- pinia: ^2.0.16
- terser: ^5.14.2
- vite: ^3.0.2
- vue: ^2.7.7
- dependencies:
- pinia: 2.0.16_vue@2.7.7
- vue: 2.7.7
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
-
- playground/pinia-cypress:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- cypress: ^10.3.0
- pinia: ^2.0.16
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- vite: ^3.0.2
- vue: ^2.7.7
- dependencies:
- pinia: 2.0.16_vue@2.7.7
- vue: 2.7.7
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- cypress: 10.3.0
- start-server-and-test: 1.14.0
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
-
- playground/pinia-vitest:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vue/test-utils': ^1.3.0
- jsdom: ^20.0.0
- pinia: ^2.0.16
- terser: ^5.14.2
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-template-compiler: ^2.7.7
- dependencies:
- pinia: 2.0.16_vue@2.7.7
- vue: 2.7.7
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- jsdom: 20.0.0
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
-
- playground/pinia-vitest-cypress:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vue/test-utils': ^1.3.0
- cypress: ^10.3.0
- jsdom: ^20.0.0
- pinia: ^2.0.16
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-template-compiler: ^2.7.7
- dependencies:
- pinia: 2.0.16_vue@2.7.7
- vue: 2.7.7
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- cypress: 10.3.0
- jsdom: 20.0.0
- start-server-and-test: 1.14.0
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
-
- playground/pinia-with-tests:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vue/test-utils': ^1.3.0
- cypress: ^10.3.0
- jsdom: ^20.0.0
- pinia: ^2.0.16
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-template-compiler: ^2.7.7
- dependencies:
- pinia: 2.0.16_vue@2.7.7
- vue: 2.7.7
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- cypress: 10.3.0
- jsdom: 20.0.0
- start-server-and-test: 1.14.0
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
-
- playground/router:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- terser: ^5.14.2
- vite: ^3.0.2
- vue: ^2.7.7
- vue-router: ^3.5.4
- dependencies:
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
-
- playground/router-cypress:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- cypress: ^10.3.0
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- vite: ^3.0.2
- vue: ^2.7.7
- vue-router: ^3.5.4
- dependencies:
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- cypress: 10.3.0
- start-server-and-test: 1.14.0
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
-
- playground/router-pinia:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- pinia: ^2.0.16
- terser: ^5.14.2
- vite: ^3.0.2
- vue: ^2.7.7
- vue-router: ^3.5.4
- dependencies:
- pinia: 2.0.16_vue@2.7.7
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
-
- playground/router-pinia-cypress:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- cypress: ^10.3.0
- pinia: ^2.0.16
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- vite: ^3.0.2
- vue: ^2.7.7
- vue-router: ^3.5.4
- dependencies:
- pinia: 2.0.16_vue@2.7.7
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- cypress: 10.3.0
- start-server-and-test: 1.14.0
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
-
- playground/router-pinia-vitest:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vue/test-utils': ^1.3.0
- jsdom: ^20.0.0
- pinia: ^2.0.16
- terser: ^5.14.2
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-router: ^3.5.4
- vue-template-compiler: ^2.7.7
- dependencies:
- pinia: 2.0.16_vue@2.7.7
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- jsdom: 20.0.0
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
-
- playground/router-pinia-vitest-cypress:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vue/test-utils': ^1.3.0
- cypress: ^10.3.0
- jsdom: ^20.0.0
- pinia: ^2.0.16
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-router: ^3.5.4
- vue-template-compiler: ^2.7.7
- dependencies:
- pinia: 2.0.16_vue@2.7.7
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- cypress: 10.3.0
- jsdom: 20.0.0
- start-server-and-test: 1.14.0
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
-
- playground/router-pinia-with-tests:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vue/test-utils': ^1.3.0
- cypress: ^10.3.0
- jsdom: ^20.0.0
- pinia: ^2.0.16
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-router: ^3.5.4
- vue-template-compiler: ^2.7.7
- dependencies:
- pinia: 2.0.16_vue@2.7.7
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- cypress: 10.3.0
- jsdom: 20.0.0
- start-server-and-test: 1.14.0
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
-
- playground/router-vitest:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vue/test-utils': ^1.3.0
- jsdom: ^20.0.0
- terser: ^5.14.2
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-router: ^3.5.4
- vue-template-compiler: ^2.7.7
- dependencies:
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- jsdom: 20.0.0
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
-
- playground/router-vitest-cypress:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vue/test-utils': ^1.3.0
- cypress: ^10.3.0
- jsdom: ^20.0.0
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-router: ^3.5.4
- vue-template-compiler: ^2.7.7
- dependencies:
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- cypress: 10.3.0
- jsdom: 20.0.0
- start-server-and-test: 1.14.0
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
-
- playground/router-with-tests:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vue/test-utils': ^1.3.0
- cypress: ^10.3.0
- jsdom: ^20.0.0
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-router: ^3.5.4
- vue-template-compiler: ^2.7.7
- dependencies:
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- cypress: 10.3.0
- jsdom: 20.0.0
- start-server-and-test: 1.14.0
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
-
- playground/typescript:
- specifiers:
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vue/tsconfig': ^0.1.3
- npm-run-all: ^4.1.5
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vue: ^2.7.7
- vue-tsc: ^0.38.8
- dependencies:
- vue: 2.7.7
- devDependencies:
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- npm-run-all: 4.1.5
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-cypress:
- specifiers:
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vue/tsconfig': ^0.1.3
- cypress: ^10.3.0
- npm-run-all: ^4.1.5
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vue: ^2.7.7
- vue-tsc: ^0.38.8
- dependencies:
- vue: 2.7.7
- devDependencies:
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- cypress: 10.3.0
- npm-run-all: 4.1.5
- start-server-and-test: 1.14.0
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-jsx:
- specifiers:
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- '@vue/tsconfig': ^0.1.3
- npm-run-all: ^4.1.5
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vue: ^2.7.7
- vue-tsc: ^0.38.8
- dependencies:
- vue: 2.7.7
- devDependencies:
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- npm-run-all: 4.1.5
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-jsx-cypress:
- specifiers:
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- '@vue/tsconfig': ^0.1.3
- cypress: ^10.3.0
- npm-run-all: ^4.1.5
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vue: ^2.7.7
- vue-tsc: ^0.38.8
- dependencies:
- vue: 2.7.7
- devDependencies:
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- cypress: 10.3.0
- npm-run-all: 4.1.5
- start-server-and-test: 1.14.0
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-jsx-pinia:
- specifiers:
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- '@vue/tsconfig': ^0.1.3
- npm-run-all: ^4.1.5
- pinia: ^2.0.16
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vue: ^2.7.7
- vue-tsc: ^0.38.8
- dependencies:
- pinia: 2.0.16_typescript@4.7.4+vue@2.7.7
- vue: 2.7.7
- devDependencies:
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- npm-run-all: 4.1.5
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-jsx-pinia-cypress:
- specifiers:
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- '@vue/tsconfig': ^0.1.3
- cypress: ^10.3.0
- npm-run-all: ^4.1.5
- pinia: ^2.0.16
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vue: ^2.7.7
- vue-tsc: ^0.38.8
- dependencies:
- pinia: 2.0.16_typescript@4.7.4+vue@2.7.7
- vue: 2.7.7
- devDependencies:
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- cypress: 10.3.0
- npm-run-all: 4.1.5
- start-server-and-test: 1.14.0
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-jsx-pinia-vitest:
- specifiers:
- '@types/jsdom': ^16.2.14
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- '@vue/test-utils': ^1.3.0
- '@vue/tsconfig': ^0.1.3
- jsdom: ^20.0.0
- npm-run-all: ^4.1.5
- pinia: ^2.0.16
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-template-compiler: ^2.7.7
- vue-tsc: ^0.38.8
- dependencies:
- pinia: 2.0.16_typescript@4.7.4+vue@2.7.7
- vue: 2.7.7
- devDependencies:
- '@types/jsdom': 16.2.14
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- jsdom: 20.0.0
- npm-run-all: 4.1.5
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-jsx-pinia-vitest-cypress:
- specifiers:
- '@types/jsdom': ^16.2.14
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- '@vue/test-utils': ^1.3.0
- '@vue/tsconfig': ^0.1.3
- cypress: ^10.3.0
- jsdom: ^20.0.0
- npm-run-all: ^4.1.5
- pinia: ^2.0.16
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-template-compiler: ^2.7.7
- vue-tsc: ^0.38.8
- dependencies:
- pinia: 2.0.16_typescript@4.7.4+vue@2.7.7
- vue: 2.7.7
- devDependencies:
- '@types/jsdom': 16.2.14
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- cypress: 10.3.0
- jsdom: 20.0.0
- npm-run-all: 4.1.5
- start-server-and-test: 1.14.0
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-jsx-pinia-with-tests:
- specifiers:
- '@types/jsdom': ^16.2.14
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- '@vue/test-utils': ^1.3.0
- '@vue/tsconfig': ^0.1.3
- cypress: ^10.3.0
- jsdom: ^20.0.0
- npm-run-all: ^4.1.5
- pinia: ^2.0.16
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-template-compiler: ^2.7.7
- vue-tsc: ^0.38.8
- dependencies:
- pinia: 2.0.16_typescript@4.7.4+vue@2.7.7
- vue: 2.7.7
- devDependencies:
- '@types/jsdom': 16.2.14
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- cypress: 10.3.0
- jsdom: 20.0.0
- npm-run-all: 4.1.5
- start-server-and-test: 1.14.0
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-jsx-router:
- specifiers:
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- '@vue/tsconfig': ^0.1.3
- npm-run-all: ^4.1.5
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vue: ^2.7.7
- vue-router: ^3.5.4
- vue-tsc: ^0.38.8
- dependencies:
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- npm-run-all: 4.1.5
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-jsx-router-cypress:
- specifiers:
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- '@vue/tsconfig': ^0.1.3
- cypress: ^10.3.0
- npm-run-all: ^4.1.5
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vue: ^2.7.7
- vue-router: ^3.5.4
- vue-tsc: ^0.38.8
- dependencies:
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- cypress: 10.3.0
- npm-run-all: 4.1.5
- start-server-and-test: 1.14.0
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-jsx-router-pinia:
- specifiers:
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- '@vue/tsconfig': ^0.1.3
- npm-run-all: ^4.1.5
- pinia: ^2.0.16
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vue: ^2.7.7
- vue-router: ^3.5.4
- vue-tsc: ^0.38.8
- dependencies:
- pinia: 2.0.16_typescript@4.7.4+vue@2.7.7
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- npm-run-all: 4.1.5
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-jsx-router-pinia-cypress:
- specifiers:
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- '@vue/tsconfig': ^0.1.3
- cypress: ^10.3.0
- npm-run-all: ^4.1.5
- pinia: ^2.0.16
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vue: ^2.7.7
- vue-router: ^3.5.4
- vue-tsc: ^0.38.8
- dependencies:
- pinia: 2.0.16_typescript@4.7.4+vue@2.7.7
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- cypress: 10.3.0
- npm-run-all: 4.1.5
- start-server-and-test: 1.14.0
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-jsx-router-pinia-vitest:
- specifiers:
- '@types/jsdom': ^16.2.14
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- '@vue/test-utils': ^1.3.0
- '@vue/tsconfig': ^0.1.3
- jsdom: ^20.0.0
- npm-run-all: ^4.1.5
- pinia: ^2.0.16
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-router: ^3.5.4
- vue-template-compiler: ^2.7.7
- vue-tsc: ^0.38.8
- dependencies:
- pinia: 2.0.16_typescript@4.7.4+vue@2.7.7
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@types/jsdom': 16.2.14
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- jsdom: 20.0.0
- npm-run-all: 4.1.5
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-jsx-router-pinia-vitest-cypress:
- specifiers:
- '@types/jsdom': ^16.2.14
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- '@vue/test-utils': ^1.3.0
- '@vue/tsconfig': ^0.1.3
- cypress: ^10.3.0
- jsdom: ^20.0.0
- npm-run-all: ^4.1.5
- pinia: ^2.0.16
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-router: ^3.5.4
- vue-template-compiler: ^2.7.7
- vue-tsc: ^0.38.8
- dependencies:
- pinia: 2.0.16_typescript@4.7.4+vue@2.7.7
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@types/jsdom': 16.2.14
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- cypress: 10.3.0
- jsdom: 20.0.0
- npm-run-all: 4.1.5
- start-server-and-test: 1.14.0
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-jsx-router-pinia-with-tests:
- specifiers:
- '@types/jsdom': ^16.2.14
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- '@vue/test-utils': ^1.3.0
- '@vue/tsconfig': ^0.1.3
- cypress: ^10.3.0
- jsdom: ^20.0.0
- npm-run-all: ^4.1.5
- pinia: ^2.0.16
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-router: ^3.5.4
- vue-template-compiler: ^2.7.7
- vue-tsc: ^0.38.8
- dependencies:
- pinia: 2.0.16_typescript@4.7.4+vue@2.7.7
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@types/jsdom': 16.2.14
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- cypress: 10.3.0
- jsdom: 20.0.0
- npm-run-all: 4.1.5
- start-server-and-test: 1.14.0
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-jsx-router-vitest:
- specifiers:
- '@types/jsdom': ^16.2.14
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- '@vue/test-utils': ^1.3.0
- '@vue/tsconfig': ^0.1.3
- jsdom: ^20.0.0
- npm-run-all: ^4.1.5
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-router: ^3.5.4
- vue-template-compiler: ^2.7.7
- vue-tsc: ^0.38.8
- dependencies:
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@types/jsdom': 16.2.14
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- jsdom: 20.0.0
- npm-run-all: 4.1.5
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-jsx-router-vitest-cypress:
- specifiers:
- '@types/jsdom': ^16.2.14
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- '@vue/test-utils': ^1.3.0
- '@vue/tsconfig': ^0.1.3
- cypress: ^10.3.0
- jsdom: ^20.0.0
- npm-run-all: ^4.1.5
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-router: ^3.5.4
- vue-template-compiler: ^2.7.7
- vue-tsc: ^0.38.8
- dependencies:
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@types/jsdom': 16.2.14
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- cypress: 10.3.0
- jsdom: 20.0.0
- npm-run-all: 4.1.5
- start-server-and-test: 1.14.0
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-jsx-router-with-tests:
- specifiers:
- '@types/jsdom': ^16.2.14
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- '@vue/test-utils': ^1.3.0
- '@vue/tsconfig': ^0.1.3
- cypress: ^10.3.0
- jsdom: ^20.0.0
- npm-run-all: ^4.1.5
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-router: ^3.5.4
- vue-template-compiler: ^2.7.7
- vue-tsc: ^0.38.8
- dependencies:
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@types/jsdom': 16.2.14
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- cypress: 10.3.0
- jsdom: 20.0.0
- npm-run-all: 4.1.5
- start-server-and-test: 1.14.0
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-jsx-vitest:
- specifiers:
- '@types/jsdom': ^16.2.14
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- '@vue/test-utils': ^1.3.0
- '@vue/tsconfig': ^0.1.3
- jsdom: ^20.0.0
- npm-run-all: ^4.1.5
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-template-compiler: ^2.7.7
- vue-tsc: ^0.38.8
- dependencies:
- vue: 2.7.7
- devDependencies:
- '@types/jsdom': 16.2.14
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- jsdom: 20.0.0
- npm-run-all: 4.1.5
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-jsx-vitest-cypress:
- specifiers:
- '@types/jsdom': ^16.2.14
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- '@vue/test-utils': ^1.3.0
- '@vue/tsconfig': ^0.1.3
- cypress: ^10.3.0
- jsdom: ^20.0.0
- npm-run-all: ^4.1.5
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-template-compiler: ^2.7.7
- vue-tsc: ^0.38.8
- dependencies:
- vue: 2.7.7
- devDependencies:
- '@types/jsdom': 16.2.14
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- cypress: 10.3.0
- jsdom: 20.0.0
- npm-run-all: 4.1.5
- start-server-and-test: 1.14.0
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-jsx-with-tests:
- specifiers:
- '@types/jsdom': ^16.2.14
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- '@vue/test-utils': ^1.3.0
- '@vue/tsconfig': ^0.1.3
- cypress: ^10.3.0
- jsdom: ^20.0.0
- npm-run-all: ^4.1.5
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-template-compiler: ^2.7.7
- vue-tsc: ^0.38.8
- dependencies:
- vue: 2.7.7
- devDependencies:
- '@types/jsdom': 16.2.14
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- cypress: 10.3.0
- jsdom: 20.0.0
- npm-run-all: 4.1.5
- start-server-and-test: 1.14.0
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-pinia:
- specifiers:
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vue/tsconfig': ^0.1.3
- npm-run-all: ^4.1.5
- pinia: ^2.0.16
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vue: ^2.7.7
- vue-tsc: ^0.38.8
- dependencies:
- pinia: 2.0.16_typescript@4.7.4+vue@2.7.7
- vue: 2.7.7
- devDependencies:
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- npm-run-all: 4.1.5
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-pinia-cypress:
- specifiers:
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vue/tsconfig': ^0.1.3
- cypress: ^10.3.0
- npm-run-all: ^4.1.5
- pinia: ^2.0.16
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vue: ^2.7.7
- vue-tsc: ^0.38.8
- dependencies:
- pinia: 2.0.16_typescript@4.7.4+vue@2.7.7
- vue: 2.7.7
- devDependencies:
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- cypress: 10.3.0
- npm-run-all: 4.1.5
- start-server-and-test: 1.14.0
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-pinia-vitest:
- specifiers:
- '@types/jsdom': ^16.2.14
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vue/test-utils': ^1.3.0
- '@vue/tsconfig': ^0.1.3
- jsdom: ^20.0.0
- npm-run-all: ^4.1.5
- pinia: ^2.0.16
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-template-compiler: ^2.7.7
- vue-tsc: ^0.38.8
- dependencies:
- pinia: 2.0.16_typescript@4.7.4+vue@2.7.7
- vue: 2.7.7
devDependencies:
- '@types/jsdom': 16.2.14
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- jsdom: 20.0.0
- npm-run-all: 4.1.5
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-pinia-vitest-cypress:
- specifiers:
- '@types/jsdom': ^16.2.14
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vue/test-utils': ^1.3.0
- '@vue/tsconfig': ^0.1.3
- cypress: ^10.3.0
- jsdom: ^20.0.0
- npm-run-all: ^4.1.5
- pinia: ^2.0.16
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-template-compiler: ^2.7.7
- vue-tsc: ^0.38.8
- dependencies:
- pinia: 2.0.16_typescript@4.7.4+vue@2.7.7
- vue: 2.7.7
- devDependencies:
- '@types/jsdom': 16.2.14
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- cypress: 10.3.0
- jsdom: 20.0.0
- npm-run-all: 4.1.5
- start-server-and-test: 1.14.0
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-pinia-with-tests:
- specifiers:
- '@types/jsdom': ^16.2.14
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vue/test-utils': ^1.3.0
- '@vue/tsconfig': ^0.1.3
- cypress: ^10.3.0
- jsdom: ^20.0.0
- npm-run-all: ^4.1.5
- pinia: ^2.0.16
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-template-compiler: ^2.7.7
- vue-tsc: ^0.38.8
- dependencies:
- pinia: 2.0.16_typescript@4.7.4+vue@2.7.7
- vue: 2.7.7
- devDependencies:
- '@types/jsdom': 16.2.14
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- cypress: 10.3.0
- jsdom: 20.0.0
- npm-run-all: 4.1.5
- start-server-and-test: 1.14.0
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-router:
- specifiers:
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vue/tsconfig': ^0.1.3
- npm-run-all: ^4.1.5
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vue: ^2.7.7
- vue-router: ^3.5.4
- vue-tsc: ^0.38.8
- dependencies:
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- npm-run-all: 4.1.5
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-router-cypress:
- specifiers:
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vue/tsconfig': ^0.1.3
- cypress: ^10.3.0
- npm-run-all: ^4.1.5
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vue: ^2.7.7
- vue-router: ^3.5.4
- vue-tsc: ^0.38.8
- dependencies:
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- cypress: 10.3.0
- npm-run-all: 4.1.5
- start-server-and-test: 1.14.0
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-router-pinia:
- specifiers:
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vue/tsconfig': ^0.1.3
- npm-run-all: ^4.1.5
- pinia: ^2.0.16
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vue: ^2.7.7
- vue-router: ^3.5.4
- vue-tsc: ^0.38.8
- dependencies:
- pinia: 2.0.16_typescript@4.7.4+vue@2.7.7
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- npm-run-all: 4.1.5
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-router-pinia-cypress:
- specifiers:
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vue/tsconfig': ^0.1.3
- cypress: ^10.3.0
- npm-run-all: ^4.1.5
- pinia: ^2.0.16
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vue: ^2.7.7
- vue-router: ^3.5.4
- vue-tsc: ^0.38.8
- dependencies:
- pinia: 2.0.16_typescript@4.7.4+vue@2.7.7
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- cypress: 10.3.0
- npm-run-all: 4.1.5
- start-server-and-test: 1.14.0
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-router-pinia-vitest:
- specifiers:
- '@types/jsdom': ^16.2.14
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vue/test-utils': ^1.3.0
- '@vue/tsconfig': ^0.1.3
- jsdom: ^20.0.0
- npm-run-all: ^4.1.5
- pinia: ^2.0.16
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-router: ^3.5.4
- vue-template-compiler: ^2.7.7
- vue-tsc: ^0.38.8
- dependencies:
- pinia: 2.0.16_typescript@4.7.4+vue@2.7.7
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@types/jsdom': 16.2.14
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- jsdom: 20.0.0
- npm-run-all: 4.1.5
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-router-pinia-vitest-cypress:
- specifiers:
- '@types/jsdom': ^16.2.14
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vue/test-utils': ^1.3.0
- '@vue/tsconfig': ^0.1.3
- cypress: ^10.3.0
- jsdom: ^20.0.0
- npm-run-all: ^4.1.5
- pinia: ^2.0.16
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-router: ^3.5.4
- vue-template-compiler: ^2.7.7
- vue-tsc: ^0.38.8
- dependencies:
- pinia: 2.0.16_typescript@4.7.4+vue@2.7.7
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@types/jsdom': 16.2.14
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- cypress: 10.3.0
- jsdom: 20.0.0
- npm-run-all: 4.1.5
- start-server-and-test: 1.14.0
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-router-pinia-with-tests:
- specifiers:
- '@types/jsdom': ^16.2.14
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vue/test-utils': ^1.3.0
- '@vue/tsconfig': ^0.1.3
- cypress: ^10.3.0
- jsdom: ^20.0.0
- npm-run-all: ^4.1.5
- pinia: ^2.0.16
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-router: ^3.5.4
- vue-template-compiler: ^2.7.7
- vue-tsc: ^0.38.8
- dependencies:
- pinia: 2.0.16_typescript@4.7.4+vue@2.7.7
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@types/jsdom': 16.2.14
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- cypress: 10.3.0
- jsdom: 20.0.0
- npm-run-all: 4.1.5
- start-server-and-test: 1.14.0
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-router-vitest:
- specifiers:
- '@types/jsdom': ^16.2.14
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vue/test-utils': ^1.3.0
- '@vue/tsconfig': ^0.1.3
- jsdom: ^20.0.0
- npm-run-all: ^4.1.5
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-router: ^3.5.4
- vue-template-compiler: ^2.7.7
- vue-tsc: ^0.38.8
- dependencies:
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@types/jsdom': 16.2.14
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- jsdom: 20.0.0
- npm-run-all: 4.1.5
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-router-vitest-cypress:
- specifiers:
- '@types/jsdom': ^16.2.14
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vue/test-utils': ^1.3.0
- '@vue/tsconfig': ^0.1.3
- cypress: ^10.3.0
- jsdom: ^20.0.0
- npm-run-all: ^4.1.5
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-router: ^3.5.4
- vue-template-compiler: ^2.7.7
- vue-tsc: ^0.38.8
- dependencies:
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@types/jsdom': 16.2.14
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- cypress: 10.3.0
- jsdom: 20.0.0
- npm-run-all: 4.1.5
- start-server-and-test: 1.14.0
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-router-with-tests:
- specifiers:
- '@types/jsdom': ^16.2.14
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vue/test-utils': ^1.3.0
- '@vue/tsconfig': ^0.1.3
- cypress: ^10.3.0
- jsdom: ^20.0.0
- npm-run-all: ^4.1.5
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-router: ^3.5.4
- vue-template-compiler: ^2.7.7
- vue-tsc: ^0.38.8
- dependencies:
- vue: 2.7.7
- vue-router: 3.5.4
- devDependencies:
- '@types/jsdom': 16.2.14
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- cypress: 10.3.0
- jsdom: 20.0.0
- npm-run-all: 4.1.5
- start-server-and-test: 1.14.0
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-vitest:
- specifiers:
- '@types/jsdom': ^16.2.14
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vue/test-utils': ^1.3.0
- '@vue/tsconfig': ^0.1.3
- jsdom: ^20.0.0
- npm-run-all: ^4.1.5
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-template-compiler: ^2.7.7
- vue-tsc: ^0.38.8
- dependencies:
- vue: 2.7.7
- devDependencies:
- '@types/jsdom': 16.2.14
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- jsdom: 20.0.0
- npm-run-all: 4.1.5
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-vitest-cypress:
- specifiers:
- '@types/jsdom': ^16.2.14
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vue/test-utils': ^1.3.0
- '@vue/tsconfig': ^0.1.3
- cypress: ^10.3.0
- jsdom: ^20.0.0
- npm-run-all: ^4.1.5
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-template-compiler: ^2.7.7
- vue-tsc: ^0.38.8
- dependencies:
- vue: 2.7.7
- devDependencies:
- '@types/jsdom': 16.2.14
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- cypress: 10.3.0
- jsdom: 20.0.0
- npm-run-all: 4.1.5
- start-server-and-test: 1.14.0
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/typescript-with-tests:
- specifiers:
- '@types/jsdom': ^16.2.14
- '@types/node': ^16.11.45
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vue/test-utils': ^1.3.0
- '@vue/tsconfig': ^0.1.3
- cypress: ^10.3.0
- jsdom: ^20.0.0
- npm-run-all: ^4.1.5
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- typescript: ~4.7.4
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-template-compiler: ^2.7.7
- vue-tsc: ^0.38.8
- dependencies:
- vue: 2.7.7
- devDependencies:
- '@types/jsdom': 16.2.14
- '@types/node': 16.11.45
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- '@vue/tsconfig': 0.1.3_@types+node@16.11.45
- cypress: 10.3.0
- jsdom: 20.0.0
- npm-run-all: 4.1.5
- start-server-and-test: 1.14.0
- terser: 5.14.2
- typescript: 4.7.4
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
- vue-tsc: 0.38.8_typescript@4.7.4
-
- playground/vitest:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vue/test-utils': ^1.3.0
- jsdom: ^20.0.0
- terser: ^5.14.2
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-template-compiler: ^2.7.7
- dependencies:
- vue: 2.7.7
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- jsdom: 20.0.0
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
-
- playground/vitest-cypress:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vue/test-utils': ^1.3.0
- cypress: ^10.3.0
- jsdom: ^20.0.0
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-template-compiler: ^2.7.7
- dependencies:
- vue: 2.7.7
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- cypress: 10.3.0
- jsdom: 20.0.0
- start-server-and-test: 1.14.0
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
-
- playground/with-tests:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- '@vue/test-utils': ^1.3.0
- cypress: ^10.3.0
- jsdom: ^20.0.0
- start-server-and-test: ^1.14.0
- terser: ^5.14.2
- vite: ^3.0.2
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-template-compiler: ^2.7.7
- dependencies:
- vue: 2.7.7
- devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- cypress: 10.3.0
- jsdom: 20.0.0
- start-server-and-test: 1.14.0
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
- vitest: 0.18.1_jsdom@20.0.0+terser@5.14.2
- vue-template-compiler: 2.7.7
+ '@tsconfig/node18':
+ specifier: ^18.2.4
+ version: 18.2.4
+ '@types/eslint':
+ specifier: ^8.56.9
+ version: 8.56.9
+ '@types/node':
+ specifier: 18.19.3
+ version: 18.19.3
+ '@types/prompts':
+ specifier: ^2.4.9
+ version: 2.4.9
+ '@vue/tsconfig':
+ specifier: ^0.5.1
+ version: 0.5.1
+ esbuild:
+ specifier: ^0.19.10
+ version: 0.19.10
+ esbuild-plugin-license:
+ specifier: ^1.2.2
+ version: 1.2.2(esbuild@0.19.10)
+ husky:
+ specifier: ^9.0.11
+ version: 9.0.11
+ kolorist:
+ specifier: ^1.8.0
+ version: 1.8.0
+ lint-staged:
+ specifier: ^15.2.2
+ version: 15.2.2
+ minimist:
+ specifier: ^1.2.8
+ version: 1.2.8
+ npm-run-all2:
+ specifier: ^6.1.2
+ version: 6.1.2
+ prettier:
+ specifier: ^3.2.5
+ version: 3.2.5
+ prompts:
+ specifier: ^2.4.2
+ version: 2.4.2
+ zx:
+ specifier: ^7.2.3
+ version: 7.2.3
template/base:
- specifiers:
- '@vitejs/plugin-legacy': ^2.0.0
- '@vitejs/plugin-vue2': ^1.1.2
- terser: ^5.14.2
- vite: ^3.0.2
- vue: ^2.7.7
- dependencies:
- vue: 2.7.7
+ dependencies:
+ vue:
+ specifier: ^2.7.16
+ version: 2.7.16
devDependencies:
- '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.2
- '@vitejs/plugin-vue2': 1.1.2_vite@3.0.2+vue@2.7.7
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
+ '@vitejs/plugin-legacy':
+ specifier: ^5.3.2
+ version: 5.3.2(terser@5.29.1)(vite@5.1.6)
+ '@vitejs/plugin-vue2':
+ specifier: ^2.3.1
+ version: 2.3.1(vite@5.1.6)(vue@2.7.16)
+ terser:
+ specifier: ^5.29.1
+ version: 5.29.1
+ vite:
+ specifier: ^5.1.6
+ version: 5.1.6(@types/node@18.19.3)(terser@5.29.1)
template/config/cypress:
- specifiers:
- cypress: ^10.3.0
- start-server-and-test: ^1.14.0
devDependencies:
- cypress: 10.3.0
- start-server-and-test: 1.14.0
+ cypress:
+ specifier: ^13.7.0
+ version: 13.7.0
+ start-server-and-test:
+ specifier: ^2.0.3
+ version: 2.0.3
template/config/cypress-ct:
- specifiers:
- cypress: ^10.3.0
- vue: ^2.7.7
dependencies:
- vue: 2.7.7
+ vue:
+ specifier: ^2.7.16
+ version: 2.7.16
devDependencies:
- cypress: 10.3.0
+ cypress:
+ specifier: ^13.7.0
+ version: 13.7.0
template/config/jsx:
- specifiers:
- '@vitejs/plugin-vue2-jsx': ^1.0.2
- vite: ^3.0.2
- vue: ^2.7.7
dependencies:
- vue: 2.7.7
+ vue:
+ specifier: ^2.7.16
+ version: 2.7.16
devDependencies:
- '@vitejs/plugin-vue2-jsx': 1.0.2_vite@3.0.2+vue@2.7.7
- vite: 3.0.2
+ '@vitejs/plugin-vue2-jsx':
+ specifier: ^1.1.1
+ version: 1.1.1(vite@5.1.6)(vue@2.7.16)
+ vite:
+ specifier: ^5.1.6
+ version: 5.1.6(@types/node@18.19.3)(terser@5.29.1)
template/config/pinia:
- specifiers:
- pinia: ^2.0.16
- vue: ^2.7.7
dependencies:
- pinia: 2.0.16_vue@2.7.7
- vue: 2.7.7
+ pinia:
+ specifier: ^2.1.7
+ version: 2.1.7(vue@2.7.16)
+ vue:
+ specifier: ^2.7.16
+ version: 2.7.16
template/config/router:
- specifiers:
- vue-router: ^3.5.4
dependencies:
- vue-router: 3.5.4
+ vue-router:
+ specifier: ^3.6.5
+ version: 3.6.5(vue@2.7.16)
template/config/typescript:
- specifiers:
- '@types/node': ^16.11.45
- npm-run-all: ^4.1.5
- typescript: ~4.7.4
- vue-tsc: ^0.38.8
devDependencies:
- '@types/node': 16.11.45
- npm-run-all: 4.1.5
- typescript: 4.7.4
- vue-tsc: 0.38.8_typescript@4.7.4
+ '@types/node':
+ specifier: ^18.19.3
+ version: 18.19.3
+ npm-run-all2:
+ specifier: ^6.1.1
+ version: 6.1.1
+ typescript:
+ specifier: ~5.3.0
+ version: 5.3.3
+ vue-tsc:
+ specifier: ^2.0.6
+ version: 2.0.6(typescript@5.3.3)
template/config/vitest:
- specifiers:
- '@vue/test-utils': ^1.3.0
- jsdom: ^20.0.0
- vitest: ^0.18.1
- vue: ^2.7.7
- vue-template-compiler: ^2.7.7
- dependencies:
- vue: 2.7.7
+ dependencies:
+ vue:
+ specifier: ^2.7.16
+ version: 2.7.16
devDependencies:
- '@vue/test-utils': 1.3.0_bsfvtfsktrde675atkxiqnygju
- jsdom: 20.0.0
- vitest: 0.18.1_jsdom@20.0.0
- vue-template-compiler: 2.7.7
+ '@vue/test-utils':
+ specifier: ^1.3.6
+ version: 1.3.6(vue-template-compiler@2.7.16)(vue@2.7.16)
+ jsdom:
+ specifier: ^24.0.0
+ version: 24.0.0
+ vitest:
+ specifier: ^1.3.1
+ version: 1.3.1(@types/node@18.19.3)(jsdom@24.0.0)
+ vue-template-compiler:
+ specifier: ^2.7.16
+ version: 2.7.16
template/tsconfig/base:
- specifiers:
- '@vue/tsconfig': ^0.1.3
devDependencies:
- '@vue/tsconfig': 0.1.3
+ '@tsconfig/node18':
+ specifier: ^18.2.2
+ version: 18.2.2
+ '@vue/tsconfig':
+ specifier: ^0.5.1
+ version: 0.5.1
template/tsconfig/vitest:
- specifiers:
- '@types/jsdom': ^16.2.14
devDependencies:
- '@types/jsdom': 16.2.14
+ '@types/jsdom':
+ specifier: ^21.1.6
+ version: 21.1.6
packages:
- /@ampproject/remapping/2.2.0:
+ /@ampproject/remapping@2.2.0:
resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==}
engines: {node: '>=6.0.0'}
dependencies:
@@ -2602,346 +179,1647 @@ packages:
'@jridgewell/trace-mapping': 0.3.14
dev: true
- /@babel/code-frame/7.18.6:
- resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==}
+ /@babel/code-frame@7.23.5:
+ resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/highlight': 7.18.6
+ '@babel/highlight': 7.23.4
+ chalk: 2.4.2
dev: true
- /@babel/compat-data/7.18.8:
- resolution: {integrity: sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==}
+ /@babel/compat-data@7.23.5:
+ resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==}
engines: {node: '>=6.9.0'}
dev: true
- /@babel/core/7.18.9:
- resolution: {integrity: sha512-1LIb1eL8APMy91/IMW+31ckrfBM4yCoLaVzoDhZUKSM4cu1L1nIidyxkCgzPAgrC5WEz36IPEr/eSeSF9pIn+g==}
+ /@babel/core@7.23.6:
+ resolution: {integrity: sha512-FxpRyGjrMJXh7X3wGLGhNDCRiwpWEF74sKjTLDJSG5Kyvow3QZaG0Adbqzi9ZrVjTWpsX+2cxWXD71NMg93kdw==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.2.0
- '@babel/code-frame': 7.18.6
- '@babel/generator': 7.18.9
- '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.9
- '@babel/helper-module-transforms': 7.18.9
- '@babel/helpers': 7.18.9
- '@babel/parser': 7.18.9
- '@babel/template': 7.18.6
- '@babel/traverse': 7.18.9
- '@babel/types': 7.18.9
- convert-source-map: 1.8.0
- debug: 4.3.4
+ '@babel/code-frame': 7.23.5
+ '@babel/generator': 7.23.6
+ '@babel/helper-compilation-targets': 7.23.6
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.6)
+ '@babel/helpers': 7.23.6
+ '@babel/parser': 7.23.6
+ '@babel/template': 7.22.15
+ '@babel/traverse': 7.23.6
+ '@babel/types': 7.23.6
+ convert-source-map: 2.0.0
+ debug: 4.3.4(supports-color@8.1.1)
gensync: 1.0.0-beta.2
- json5: 2.2.1
- semver: 6.3.0
+ json5: 2.2.3
+ semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/generator/7.18.9:
- resolution: {integrity: sha512-wt5Naw6lJrL1/SGkipMiFxJjtyczUWTP38deiP1PO60HsBjDeKk08CGC3S8iVuvf0FmTdgKwU1KIXzSKL1G0Ug==}
+ /@babel/core@7.24.0:
+ resolution: {integrity: sha512-fQfkg0Gjkza3nf0c7/w6Xf34BW4YvzNfACRLmmb7XRLa6XHdR+K9AlJlxneFfWYf6uhOzuzZVTjF/8KfndZANw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.9
+ '@ampproject/remapping': 2.2.0
+ '@babel/code-frame': 7.23.5
+ '@babel/generator': 7.23.6
+ '@babel/helper-compilation-targets': 7.23.6
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.0)
+ '@babel/helpers': 7.24.0
+ '@babel/parser': 7.24.0
+ '@babel/template': 7.24.0
+ '@babel/traverse': 7.24.0
+ '@babel/types': 7.24.0
+ convert-source-map: 2.0.0
+ debug: 4.3.4(supports-color@8.1.1)
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/generator@7.23.6:
+ resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.23.6
'@jridgewell/gen-mapping': 0.3.2
+ '@jridgewell/trace-mapping': 0.3.20
jsesc: 2.5.2
dev: true
- /@babel/helper-annotate-as-pure/7.18.6:
- resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
+ /@babel/helper-annotate-as-pure@7.22.5:
+ resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.9
+ '@babel/types': 7.23.6
+ dev: true
+
+ /@babel/helper-builder-binary-assignment-operator-visitor@7.22.15:
+ resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.23.6
+ dev: true
+
+ /@babel/helper-compilation-targets@7.23.6:
+ resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/compat-data': 7.23.5
+ '@babel/helper-validator-option': 7.23.5
+ browserslist: 4.22.2
+ lru-cache: 5.1.1
+ semver: 6.3.1
+ dev: true
+
+ /@babel/helper-create-class-features-plugin@7.23.6(@babel/core@7.23.6):
+ resolution: {integrity: sha512-cBXU1vZni/CpGF29iTu4YRbOZt3Wat6zCoMDxRF1MayiEc4URxOj31tT65HUM0CRpMowA3HCJaAOVOUnMf96cw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-function-name': 7.23.0
+ '@babel/helper-member-expression-to-functions': 7.23.0
+ '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.6)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ semver: 6.3.1
dev: true
- /@babel/helper-compilation-targets/7.18.9_@babel+core@7.18.9:
- resolution: {integrity: sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==}
+ /@babel/helper-create-class-features-plugin@7.23.6(@babel/core@7.24.0):
+ resolution: {integrity: sha512-cBXU1vZni/CpGF29iTu4YRbOZt3Wat6zCoMDxRF1MayiEc4URxOj31tT65HUM0CRpMowA3HCJaAOVOUnMf96cw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/compat-data': 7.18.8
- '@babel/core': 7.18.9
- '@babel/helper-validator-option': 7.18.6
- browserslist: 4.21.2
- semver: 6.3.0
+ '@babel/core': 7.24.0
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-function-name': 7.23.0
+ '@babel/helper-member-expression-to-functions': 7.23.0
+ '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.24.0)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ semver: 6.3.1
dev: true
- /@babel/helper-create-class-features-plugin/7.18.9_@babel+core@7.18.9:
- resolution: {integrity: sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw==}
+ /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.0):
+ resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.18.9
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.18.9
- '@babel/helper-member-expression-to-functions': 7.18.9
- '@babel/helper-optimise-call-expression': 7.18.6
- '@babel/helper-replace-supers': 7.18.9
- '@babel/helper-split-export-declaration': 7.18.6
+ '@babel/core': 7.24.0
+ '@babel/helper-annotate-as-pure': 7.22.5
+ regexpu-core: 5.3.2
+ semver: 6.3.1
+ dev: true
+
+ /@babel/helper-define-polyfill-provider@0.5.0(@babel/core@7.24.0):
+ resolution: {integrity: sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-compilation-targets': 7.23.6
+ '@babel/helper-plugin-utils': 7.24.0
+ debug: 4.3.4(supports-color@8.1.1)
+ lodash.debounce: 4.0.8
+ resolve: 1.22.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/helper-define-polyfill-provider@0.6.1(@babel/core@7.24.0):
+ resolution: {integrity: sha512-o7SDgTJuvx5vLKD6SFvkydkSMBvahDKGiNJzG22IZYXhiqoe9efY7zocICBgzHV4IRg5wdgl2nEL/tulKIEIbA==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-compilation-targets': 7.23.6
+ '@babel/helper-plugin-utils': 7.24.0
+ debug: 4.3.4(supports-color@8.1.1)
+ lodash.debounce: 4.0.8
+ resolve: 1.22.1
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/helper-environment-visitor/7.18.9:
- resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==}
+ /@babel/helper-environment-visitor@7.22.20:
+ resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==}
engines: {node: '>=6.9.0'}
dev: true
- /@babel/helper-function-name/7.18.9:
- resolution: {integrity: sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==}
+ /@babel/helper-function-name@7.23.0:
+ resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/template': 7.18.6
- '@babel/types': 7.18.9
+ '@babel/template': 7.22.15
+ '@babel/types': 7.23.6
dev: true
- /@babel/helper-hoist-variables/7.18.6:
- resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
+ /@babel/helper-hoist-variables@7.22.5:
+ resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.9
+ '@babel/types': 7.23.6
dev: true
- /@babel/helper-member-expression-to-functions/7.18.9:
- resolution: {integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==}
+ /@babel/helper-member-expression-to-functions@7.23.0:
+ resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.9
+ '@babel/types': 7.23.6
dev: true
- /@babel/helper-module-imports/7.18.6:
- resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
+ /@babel/helper-module-imports@7.22.15:
+ resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.9
+ '@babel/types': 7.23.6
dev: true
- /@babel/helper-module-transforms/7.18.9:
- resolution: {integrity: sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==}
+ /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.6):
+ resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
dependencies:
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-module-imports': 7.18.6
- '@babel/helper-simple-access': 7.18.6
- '@babel/helper-split-export-declaration': 7.18.6
- '@babel/helper-validator-identifier': 7.18.6
- '@babel/template': 7.18.6
- '@babel/traverse': 7.18.9
- '@babel/types': 7.18.9
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.23.6
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-module-imports': 7.22.15
+ '@babel/helper-simple-access': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/helper-validator-identifier': 7.22.20
+ dev: true
+
+ /@babel/helper-module-transforms@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-module-imports': 7.22.15
+ '@babel/helper-simple-access': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/helper-validator-identifier': 7.22.20
dev: true
- /@babel/helper-optimise-call-expression/7.18.6:
- resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
+ /@babel/helper-optimise-call-expression@7.22.5:
+ resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.9
+ '@babel/types': 7.23.6
dev: true
- /@babel/helper-plugin-utils/7.18.9:
+ /@babel/helper-plugin-utils@7.18.9:
resolution: {integrity: sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==}
engines: {node: '>=6.9.0'}
dev: true
- /@babel/helper-replace-supers/7.18.9:
- resolution: {integrity: sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==}
+ /@babel/helper-plugin-utils@7.22.5:
+ resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==}
+ engines: {node: '>=6.9.0'}
+ dev: true
+
+ /@babel/helper-plugin-utils@7.24.0:
+ resolution: {integrity: sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==}
engines: {node: '>=6.9.0'}
+ dev: true
+
+ /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.0):
+ resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
dependencies:
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-member-expression-to-functions': 7.18.9
- '@babel/helper-optimise-call-expression': 7.18.6
- '@babel/traverse': 7.18.9
- '@babel/types': 7.18.9
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.24.0
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-wrap-function': 7.22.20
dev: true
- /@babel/helper-simple-access/7.18.6:
- resolution: {integrity: sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==}
+ /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.6):
+ resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
dependencies:
- '@babel/types': 7.18.9
+ '@babel/core': 7.23.6
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-member-expression-to-functions': 7.23.0
+ '@babel/helper-optimise-call-expression': 7.22.5
dev: true
- /@babel/helper-split-export-declaration/7.18.6:
- resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
+ /@babel/helper-replace-supers@7.22.20(@babel/core@7.24.0):
+ resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
dependencies:
- '@babel/types': 7.18.9
+ '@babel/core': 7.24.0
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-member-expression-to-functions': 7.23.0
+ '@babel/helper-optimise-call-expression': 7.22.5
+ dev: true
+
+ /@babel/helper-simple-access@7.22.5:
+ resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.23.6
+ dev: true
+
+ /@babel/helper-skip-transparent-expression-wrappers@7.22.5:
+ resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.23.6
+ dev: true
+
+ /@babel/helper-split-export-declaration@7.22.6:
+ resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.23.6
+ dev: true
+
+ /@babel/helper-string-parser@7.23.4:
+ resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==}
+ engines: {node: '>=6.9.0'}
dev: true
- /@babel/helper-validator-identifier/7.18.6:
+ /@babel/helper-validator-identifier@7.18.6:
resolution: {integrity: sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==}
engines: {node: '>=6.9.0'}
- /@babel/helper-validator-option/7.18.6:
- resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==}
+ /@babel/helper-validator-identifier@7.22.20:
+ resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
+ engines: {node: '>=6.9.0'}
+ dev: true
+
+ /@babel/helper-validator-option@7.23.5:
+ resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==}
+ engines: {node: '>=6.9.0'}
+ dev: true
+
+ /@babel/helper-wrap-function@7.22.20:
+ resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==}
engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-function-name': 7.23.0
+ '@babel/template': 7.22.15
+ '@babel/types': 7.23.6
dev: true
- /@babel/helpers/7.18.9:
- resolution: {integrity: sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==}
+ /@babel/helpers@7.23.6:
+ resolution: {integrity: sha512-wCfsbN4nBidDRhpDhvcKlzHWCTlgJYUUdSJfzXb2NuBssDSIjc3xcb+znA7l+zYsFljAcGM0aFkN40cR3lXiGA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/template': 7.18.6
- '@babel/traverse': 7.18.9
- '@babel/types': 7.18.9
+ '@babel/template': 7.22.15
+ '@babel/traverse': 7.23.6
+ '@babel/types': 7.23.6
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/highlight/7.18.6:
- resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
+ /@babel/helpers@7.24.0:
+ resolution: {integrity: sha512-ulDZdc0Aj5uLc5nETsa7EPx2L7rM0YJM8r7ck7U73AXi7qOV44IHHRAYZHY6iU1rr3C5N4NtTmMRUJP6kwCWeA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-validator-identifier': 7.18.6
+ '@babel/template': 7.24.0
+ '@babel/traverse': 7.24.0
+ '@babel/types': 7.24.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/highlight@7.23.4:
+ resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-validator-identifier': 7.22.20
chalk: 2.4.2
js-tokens: 4.0.0
dev: true
- /@babel/parser/7.18.9:
- resolution: {integrity: sha512-9uJveS9eY9DJ0t64YbIBZICtJy8a5QrDEVdiLCG97fVLpDTpGX7t8mMSb6OWw6Lrnjqj4O8zwjELX3dhoMgiBg==}
+ /@babel/parser@7.23.6:
+ resolution: {integrity: sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
'@babel/types': 7.18.9
- /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.18.9:
- resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
+ /@babel/parser@7.24.0:
+ resolution: {integrity: sha512-QuP/FxEAzMSjXygs8v4N9dvdXzEHN4W1oF3PxuWAtPo08UdM17u89RDMgjLn/mlc56iM0HlLmVkO/wgR+rDgHg==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+ dependencies:
+ '@babel/types': 7.24.0
+ dev: true
+
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.18.9
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.18.9:
- resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.13.0
dependencies:
- '@babel/core': 7.18.9
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.24.0)
+ dev: true
+
+ /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7(@babel/core@7.24.0):
+ resolution: {integrity: sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.18.9:
- resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==}
+ /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.0):
+ resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.9
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/core': 7.24.0
+ dev: true
+
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.0):
+ resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.0):
+ resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-transform-typescript/7.18.8_@babel+core@7.18.9:
- resolution: {integrity: sha512-p2xM8HI83UObjsZGofMV/EdYjamsDm6MoN3hXPYIT0+gxIoopE+B7rPYKAxfrz9K9PK7JafTTjqYC6qipLExYA==}
+ /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.0):
+ resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.9
- '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.9
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.18.9
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/standalone/7.18.9:
- resolution: {integrity: sha512-6E+p5azHMHcMkHzGFnA7Pqhtgfwx1cClwjMqomMHhdFupCLZDDpVQUctRGYE7p7nn7cXJZSI/L9en+tt30AP3w==}
+ /@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/template/7.18.6:
- resolution: {integrity: sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==}
+ /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/code-frame': 7.18.6
- '@babel/parser': 7.18.9
- '@babel/types': 7.18.9
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.6):
+ resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.18.9
+ dev: true
+
+ /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.0):
+ resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.18.9
+ dev: true
+
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.23.6):
+ resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.18.9
+ dev: true
+
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.0):
+ resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.0):
+ resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.0):
+ resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.0):
+ resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.6):
+ resolution: {integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.0):
+ resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-transform-async-generator-functions@7.23.9(@babel/core@7.24.0):
+ resolution: {integrity: sha512-8Q3veQEDGe14dTYuwagbRtwxQDnytyg1JFu4/HwEMETeofocrB0U0ejBJIXoeG/t2oXZ8kzCyI0ZZfbT80VFNQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.0)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.0)
+ dev: true
+
+ /@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-module-imports': 7.22.15
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.0)
+ dev: true
+
+ /@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.24.0):
+ resolution: {integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.24.0):
+ resolution: {integrity: sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.12.0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.0)
+ dev: true
+
+ /@babel/plugin-transform-classes@7.23.8(@babel/core@7.24.0):
+ resolution: {integrity: sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-compilation-targets': 7.23.6
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-function-name': 7.23.0
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.24.0)
+ '@babel/helper-split-export-declaration': 7.22.6
+ globals: 11.12.0
+ dev: true
+
+ /@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/template': 7.22.15
+ dev: true
+
+ /@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.24.0):
+ resolution: {integrity: sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.0)
+ dev: true
+
+ /@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.24.0):
+ resolution: {integrity: sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.0)
+ dev: true
+
+ /@babel/plugin-transform-for-of@7.23.6(@babel/core@7.24.0):
+ resolution: {integrity: sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ dev: true
+
+ /@babel/plugin-transform-function-name@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-compilation-targets': 7.23.6
+ '@babel/helper-function-name': 7.23.0
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.24.0):
+ resolution: {integrity: sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.0)
+ dev: true
+
+ /@babel/plugin-transform-literals@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.24.0):
+ resolution: {integrity: sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.0)
+ dev: true
+
+ /@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-simple-access': 7.22.5
+ dev: true
+
+ /@babel/plugin-transform-modules-systemjs@7.23.9(@babel/core@7.24.0):
+ resolution: {integrity: sha512-KDlPRM6sLo4o1FkiSlXoAa8edLXFsKKIda779fbLrvmeuc3itnjCtaO6RrtoaANsIJANj+Vk1zqbZIMhkCAHVw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-hoist-variables': 7.22.5
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-validator-identifier': 7.22.20
+ dev: true
+
+ /@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.0):
+ resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-transform-new-target@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.24.0):
+ resolution: {integrity: sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.0)
+ dev: true
+
+ /@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.24.0):
+ resolution: {integrity: sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.0)
+ dev: true
+
+ /@babel/plugin-transform-object-rest-spread@7.24.0(@babel/core@7.24.0):
+ resolution: {integrity: sha512-y/yKMm7buHpFFXfxVFS4Vk1ToRJDilIa6fKRioB9Vjichv58TDGXTvqV0dN7plobAmTW5eSEGXDngE+Mm+uO+w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/compat-data': 7.23.5
+ '@babel/core': 7.24.0
+ '@babel/helper-compilation-targets': 7.23.6
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.24.0)
+ dev: true
+
+ /@babel/plugin-transform-object-super@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.24.0)
+ dev: true
+
+ /@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.24.0):
+ resolution: {integrity: sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.0)
+ dev: true
+
+ /@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.24.0):
+ resolution: {integrity: sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.0)
+ dev: true
+
+ /@babel/plugin-transform-parameters@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.24.0):
+ resolution: {integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.0)
+ dev: true
+
+ /@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ regenerator-transform: 0.15.2
+ dev: true
+
+ /@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-transform-spread@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ dev: true
+
+ /@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-transform-typescript@7.23.6(@babel/core@7.23.6):
+ resolution: {integrity: sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.23.6)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.6)
+ dev: true
+
+ /@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.24.0):
+ resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/preset-env@7.24.0(@babel/core@7.24.0):
+ resolution: {integrity: sha512-ZxPEzV9IgvGn73iK0E6VB9/95Nd7aMFpbE0l8KQFDG70cOV9IxRP7Y2FUPmlK0v6ImlLqYX50iuZ3ZTVhOF2lA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/compat-data': 7.23.5
+ '@babel/core': 7.24.0
+ '@babel/helper-compilation-targets': 7.23.6
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-validator-option': 7.23.5
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.7(@babel/core@7.24.0)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.0)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.0)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.0)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.0)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.0)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.0)
+ '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.0)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.0)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.0)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.0)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.0)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.0)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.0)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.0)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.0)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.0)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.0)
+ '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-async-generator-functions': 7.23.9(@babel/core@7.24.0)
+ '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.24.0)
+ '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.24.0)
+ '@babel/plugin-transform-classes': 7.23.8(@babel/core@7.24.0)
+ '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.24.0)
+ '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.24.0)
+ '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.24.0)
+ '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.24.0)
+ '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.24.0)
+ '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-modules-systemjs': 7.23.9(@babel/core@7.24.0)
+ '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.0)
+ '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.24.0)
+ '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.24.0)
+ '@babel/plugin-transform-object-rest-spread': 7.24.0(@babel/core@7.24.0)
+ '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.24.0)
+ '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.24.0)
+ '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.24.0)
+ '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.24.0)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.0)
+ babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.0)
+ babel-plugin-polyfill-corejs3: 0.9.0(@babel/core@7.24.0)
+ babel-plugin-polyfill-regenerator: 0.5.5(@babel/core@7.24.0)
+ core-js-compat: 3.34.0
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.0):
+ resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/types': 7.23.6
+ esutils: 2.0.3
+ dev: true
+
+ /@babel/regjsgen@0.8.0:
+ resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
+ dev: true
+
+ /@babel/runtime@7.23.6:
+ resolution: {integrity: sha512-zHd0eUrf5GZoOWVCXp6koAKQTfZV07eit6bGPmJgnZdnSAvvZee6zniW2XMF7Cmc4ISOOnPy3QaSiIJGJkVEDQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ regenerator-runtime: 0.14.1
+ dev: true
+
+ /@babel/template@7.22.15:
+ resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/code-frame': 7.23.5
+ '@babel/parser': 7.23.6
+ '@babel/types': 7.23.6
+ dev: true
+
+ /@babel/template@7.24.0:
+ resolution: {integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/code-frame': 7.23.5
+ '@babel/parser': 7.24.0
+ '@babel/types': 7.24.0
+ dev: true
+
+ /@babel/traverse@7.23.6:
+ resolution: {integrity: sha512-czastdK1e8YByZqezMPFiZ8ahwVMh/ESl9vPgvgdB9AmFMGP5jfpFax74AQgl5zj4XHzqeYAg2l8PuUeRS1MgQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/code-frame': 7.23.5
+ '@babel/generator': 7.23.6
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-function-name': 7.23.0
+ '@babel/helper-hoist-variables': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/parser': 7.23.6
+ '@babel/types': 7.23.6
+ debug: 4.3.4(supports-color@8.1.1)
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/traverse@7.24.0:
+ resolution: {integrity: sha512-HfuJlI8qq3dEDmNU5ChzzpZRWq+oxCZQyMzIMEqLho+AQnhMnKQUzH6ydo3RBl/YjPCuk68Y6s0Gx0AeyULiWw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/code-frame': 7.23.5
+ '@babel/generator': 7.23.6
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-function-name': 7.23.0
+ '@babel/helper-hoist-variables': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/parser': 7.24.0
+ '@babel/types': 7.24.0
+ debug: 4.3.4(supports-color@8.1.1)
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/types@7.18.9:
+ resolution: {integrity: sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-validator-identifier': 7.18.6
+ to-fast-properties: 2.0.0
+
+ /@babel/types@7.23.6:
+ resolution: {integrity: sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-string-parser': 7.23.4
+ '@babel/helper-validator-identifier': 7.22.20
+ to-fast-properties: 2.0.0
+ dev: true
+
+ /@babel/types@7.24.0:
+ resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-string-parser': 7.23.4
+ '@babel/helper-validator-identifier': 7.22.20
+ to-fast-properties: 2.0.0
+ dev: true
+
+ /@colors/colors@1.5.0:
+ resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
+ engines: {node: '>=0.1.90'}
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@cypress/request@3.0.1:
+ resolution: {integrity: sha512-TWivJlJi8ZDx2wGOw1dbLuHJKUYX7bWySw377nlnGOW3hP9/MUKIsEdXT/YngWxVdgNCHRBmFlBipE+5/2ZZlQ==}
+ engines: {node: '>= 6'}
+ dependencies:
+ aws-sign2: 0.7.0
+ aws4: 1.11.0
+ caseless: 0.12.0
+ combined-stream: 1.0.8
+ extend: 3.0.2
+ forever-agent: 0.6.1
+ form-data: 2.3.3
+ http-signature: 1.3.6
+ is-typedarray: 1.0.0
+ isstream: 0.1.2
+ json-stringify-safe: 5.0.1
+ mime-types: 2.1.35
+ performance-now: 2.1.0
+ qs: 6.10.4
+ safe-buffer: 5.2.1
+ tough-cookie: 4.1.3
+ tunnel-agent: 0.6.0
+ uuid: 8.3.2
+ dev: true
+
+ /@cypress/xvfb@1.2.4(supports-color@8.1.1):
+ resolution: {integrity: sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==}
+ dependencies:
+ debug: 3.2.7(supports-color@8.1.1)
+ lodash.once: 4.1.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@esbuild/aix-ppc64@0.19.10:
+ resolution: {integrity: sha512-Q+mk96KJ+FZ30h9fsJl+67IjNJm3x2eX+GBWGmocAKgzp27cowCOOqSdscX80s0SpdFXZnIv/+1xD1EctFx96Q==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [aix]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/android-arm64@0.19.10:
+ resolution: {integrity: sha512-1X4CClKhDgC3by7k8aOWZeBXQX8dHT5QAMCAQDArCLaYfkppoARvh0fit3X2Qs+MXDngKcHv6XXyQCpY0hkK1Q==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/android-arm@0.19.10:
+ resolution: {integrity: sha512-7W0bK7qfkw1fc2viBfrtAEkDKHatYfHzr/jKAHNr9BvkYDXPcC6bodtm8AyLJNNuqClLNaeTLuwURt4PRT9d7w==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/android-x64@0.19.10:
+ resolution: {integrity: sha512-O/nO/g+/7NlitUxETkUv/IvADKuZXyH4BHf/g/7laqKC4i/7whLpB0gvpPc2zpF0q9Q6FXS3TS75QHac9MvVWw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/darwin-arm64@0.19.10:
+ resolution: {integrity: sha512-YSRRs2zOpwypck+6GL3wGXx2gNP7DXzetmo5pHXLrY/VIMsS59yKfjPizQ4lLt5vEI80M41gjm2BxrGZ5U+VMA==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/darwin-x64@0.19.10:
+ resolution: {integrity: sha512-alfGtT+IEICKtNE54hbvPg13xGBe4GkVxyGWtzr+yHO7HIiRJppPDhOKq3zstTcVf8msXb/t4eavW3jCDpMSmA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/freebsd-arm64@0.19.10:
+ resolution: {integrity: sha512-dMtk1wc7FSH8CCkE854GyGuNKCewlh+7heYP/sclpOG6Cectzk14qdUIY5CrKDbkA/OczXq9WesqnPl09mj5dg==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [freebsd]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/freebsd-x64@0.19.10:
+ resolution: {integrity: sha512-G5UPPspryHu1T3uX8WiOEUa6q6OlQh6gNl4CO4Iw5PS+Kg5bVggVFehzXBJY6X6RSOMS8iXDv2330VzaObm4Ag==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [freebsd]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/linux-arm64@0.19.10:
+ resolution: {integrity: sha512-QxaouHWZ+2KWEj7cGJmvTIHVALfhpGxo3WLmlYfJ+dA5fJB6lDEIg+oe/0//FuyVHuS3l79/wyBxbHr0NgtxJQ==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/linux-arm@0.19.10:
+ resolution: {integrity: sha512-j6gUW5aAaPgD416Hk9FHxn27On28H4eVI9rJ4az7oCGTFW48+LcgNDBN+9f8rKZz7EEowo889CPKyeaD0iw9Kg==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/linux-ia32@0.19.10:
+ resolution: {integrity: sha512-4ub1YwXxYjj9h1UIZs2hYbnTZBtenPw5NfXCRgEkGb0b6OJ2gpkMvDqRDYIDRjRdWSe/TBiZltm3Y3Q8SN1xNg==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/linux-loong64@0.19.10:
+ resolution: {integrity: sha512-lo3I9k+mbEKoxtoIbM0yC/MZ1i2wM0cIeOejlVdZ3D86LAcFXFRdeuZmh91QJvUTW51bOK5W2BznGNIl4+mDaA==}
+ engines: {node: '>=12'}
+ cpu: [loong64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/linux-mips64el@0.19.10:
+ resolution: {integrity: sha512-J4gH3zhHNbdZN0Bcr1QUGVNkHTdpijgx5VMxeetSk6ntdt+vR1DqGmHxQYHRmNb77tP6GVvD+K0NyO4xjd7y4A==}
+ engines: {node: '>=12'}
+ cpu: [mips64el]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/linux-ppc64@0.19.10:
+ resolution: {integrity: sha512-tgT/7u+QhV6ge8wFMzaklOY7KqiyitgT1AUHMApau32ZlvTB/+efeCtMk4eXS+uEymYK249JsoiklZN64xt6oQ==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/linux-riscv64@0.19.10:
+ resolution: {integrity: sha512-0f/spw0PfBMZBNqtKe5FLzBDGo0SKZKvMl5PHYQr3+eiSscfJ96XEknCe+JoOayybWUFQbcJTrk946i3j9uYZA==}
+ engines: {node: '>=12'}
+ cpu: [riscv64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/linux-s390x@0.19.10:
+ resolution: {integrity: sha512-pZFe0OeskMHzHa9U38g+z8Yx5FNCLFtUnJtQMpwhS+r4S566aK2ci3t4NCP4tjt6d5j5uo4h7tExZMjeKoehAA==}
+ engines: {node: '>=12'}
+ cpu: [s390x]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/linux-x64@0.19.10:
+ resolution: {integrity: sha512-SpYNEqg/6pZYoc+1zLCjVOYvxfZVZj6w0KROZ3Fje/QrM3nfvT2llI+wmKSrWuX6wmZeTapbarvuNNK/qepSgA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/netbsd-x64@0.19.10:
+ resolution: {integrity: sha512-ACbZ0vXy9zksNArWlk2c38NdKg25+L9pr/mVaj9SUq6lHZu/35nx2xnQVRGLrC1KKQqJKRIB0q8GspiHI3J80Q==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [netbsd]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/openbsd-x64@0.19.10:
+ resolution: {integrity: sha512-PxcgvjdSjtgPMiPQrM3pwSaG4kGphP+bLSb+cihuP0LYdZv1epbAIecHVl5sD3npkfYBZ0ZnOjR878I7MdJDFg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [openbsd]
+ requiresBuild: true
dev: true
+ optional: true
- /@babel/traverse/7.18.9:
- resolution: {integrity: sha512-LcPAnujXGwBgv3/WHv01pHtb2tihcyW1XuL9wd7jqh1Z8AQkTd+QVjMrMijrln0T7ED3UXLIy36P9Ao7W75rYg==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.18.6
- '@babel/generator': 7.18.9
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.18.9
- '@babel/helper-hoist-variables': 7.18.6
- '@babel/helper-split-export-declaration': 7.18.6
- '@babel/parser': 7.18.9
- '@babel/types': 7.18.9
- debug: 4.3.4
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
+ /@esbuild/sunos-x64@0.19.10:
+ resolution: {integrity: sha512-ZkIOtrRL8SEJjr+VHjmW0znkPs+oJXhlJbNwfI37rvgeMtk3sxOQevXPXjmAPZPigVTncvFqLMd+uV0IBSEzqA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [sunos]
+ requiresBuild: true
dev: true
+ optional: true
- /@babel/types/7.18.9:
- resolution: {integrity: sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-validator-identifier': 7.18.6
- to-fast-properties: 2.0.0
-
- /@colors/colors/1.5.0:
- resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
- engines: {node: '>=0.1.90'}
+ /@esbuild/win32-arm64@0.19.10:
+ resolution: {integrity: sha512-+Sa4oTDbpBfGpl3Hn3XiUe4f8TU2JF7aX8cOfqFYMMjXp6ma6NJDztl5FDG8Ezx0OjwGikIHw+iA54YLDNNVfw==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [win32]
requiresBuild: true
dev: true
optional: true
- /@cypress/request/2.88.10:
- resolution: {integrity: sha512-Zp7F+R93N0yZyG34GutyTNr+okam7s/Fzc1+i3kcqOP8vk6OuajuE9qZJ6Rs+10/1JFtXFYMdyarnU1rZuJesg==}
- engines: {node: '>= 6'}
- dependencies:
- aws-sign2: 0.7.0
- aws4: 1.11.0
- caseless: 0.12.0
- combined-stream: 1.0.8
- extend: 3.0.2
- forever-agent: 0.6.1
- form-data: 2.3.3
- http-signature: 1.3.6
- is-typedarray: 1.0.0
- isstream: 0.1.2
- json-stringify-safe: 5.0.1
- mime-types: 2.1.35
- performance-now: 2.1.0
- qs: 6.5.3
- safe-buffer: 5.2.1
- tough-cookie: 2.5.0
- tunnel-agent: 0.6.0
- uuid: 8.3.2
+ /@esbuild/win32-ia32@0.19.10:
+ resolution: {integrity: sha512-EOGVLK1oWMBXgfttJdPHDTiivYSjX6jDNaATeNOaCOFEVcfMjtbx7WVQwPSE1eIfCp/CaSF2nSrDtzc4I9f8TQ==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [win32]
+ requiresBuild: true
dev: true
+ optional: true
- /@cypress/xvfb/1.2.4_supports-color@8.1.1:
- resolution: {integrity: sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==}
- dependencies:
- debug: 3.2.7_supports-color@8.1.1
- lodash.once: 4.1.1
- transitivePeerDependencies:
- - supports-color
+ /@esbuild/win32-x64@0.19.10:
+ resolution: {integrity: sha512-whqLG6Sc70AbU73fFYvuYzaE4MNMBIlR1Y/IrUeOXFrWHxBEjjbZaQ3IXIQS8wJdAzue2GwYZCjOrgrU1oUHoA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
dev: true
+ optional: true
- /@hapi/hoek/9.3.0:
+ /@hapi/hoek@9.3.0:
resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==}
dev: true
- /@hapi/topo/5.1.0:
+ /@hapi/topo@5.1.0:
resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==}
dependencies:
'@hapi/hoek': 9.3.0
dev: true
- /@jridgewell/gen-mapping/0.1.1:
+ /@isaacs/cliui@8.0.2:
+ resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
+ engines: {node: '>=12'}
+ dependencies:
+ string-width: 5.1.2
+ string-width-cjs: /string-width@4.2.3
+ strip-ansi: 7.1.0
+ strip-ansi-cjs: /strip-ansi@6.0.1
+ wrap-ansi: 8.1.0
+ wrap-ansi-cjs: /wrap-ansi@7.0.0
+ dev: true
+
+ /@jest/schemas@29.6.3:
+ resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ dependencies:
+ '@sinclair/typebox': 0.27.8
+ dev: true
+
+ /@jridgewell/gen-mapping@0.1.1:
resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==}
engines: {node: '>=6.0.0'}
dependencies:
@@ -2949,7 +1827,7 @@ packages:
'@jridgewell/sourcemap-codec': 1.4.14
dev: true
- /@jridgewell/gen-mapping/0.3.2:
+ /@jridgewell/gen-mapping@0.3.2:
resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==}
engines: {node: '>=6.0.0'}
dependencies:
@@ -2958,35 +1836,46 @@ packages:
'@jridgewell/trace-mapping': 0.3.14
dev: true
- /@jridgewell/resolve-uri/3.1.0:
+ /@jridgewell/resolve-uri@3.1.0:
resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
engines: {node: '>=6.0.0'}
dev: true
- /@jridgewell/set-array/1.1.2:
+ /@jridgewell/set-array@1.1.2:
resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
engines: {node: '>=6.0.0'}
dev: true
- /@jridgewell/source-map/0.3.2:
- resolution: {integrity: sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==}
+ /@jridgewell/source-map@0.3.5:
+ resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==}
dependencies:
'@jridgewell/gen-mapping': 0.3.2
- '@jridgewell/trace-mapping': 0.3.14
+ '@jridgewell/trace-mapping': 0.3.20
dev: true
- /@jridgewell/sourcemap-codec/1.4.14:
+ /@jridgewell/sourcemap-codec@1.4.14:
resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
dev: true
- /@jridgewell/trace-mapping/0.3.14:
+ /@jridgewell/sourcemap-codec@1.4.15:
+ resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
+ dev: true
+
+ /@jridgewell/trace-mapping@0.3.14:
resolution: {integrity: sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ==}
dependencies:
'@jridgewell/resolve-uri': 3.1.0
'@jridgewell/sourcemap-codec': 1.4.14
dev: true
- /@nodelib/fs.scandir/2.1.5:
+ /@jridgewell/trace-mapping@0.3.20:
+ resolution: {integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==}
+ dependencies:
+ '@jridgewell/resolve-uri': 3.1.0
+ '@jridgewell/sourcemap-codec': 1.4.14
+ dev: true
+
+ /@nodelib/fs.scandir@2.1.5:
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
dependencies:
@@ -2994,12 +1883,12 @@ packages:
run-parallel: 1.2.0
dev: true
- /@nodelib/fs.stat/2.0.5:
+ /@nodelib/fs.stat@2.0.5:
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
engines: {node: '>= 8'}
dev: true
- /@nodelib/fs.walk/1.2.8:
+ /@nodelib/fs.walk@1.2.8:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
dependencies:
@@ -3007,371 +1896,509 @@ packages:
fastq: 1.13.0
dev: true
- /@rollup/pluginutils/4.2.1:
- resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
- engines: {node: '>= 8.0.0'}
+ /@one-ini/wasm@0.1.1:
+ resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==}
+ dev: true
+
+ /@pkgjs/parseargs@0.11.0:
+ resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
+ engines: {node: '>=14'}
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@rollup/pluginutils@5.1.0:
+ resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
+ peerDependenciesMeta:
+ rollup:
+ optional: true
dependencies:
+ '@types/estree': 1.0.0
estree-walker: 2.0.2
picomatch: 2.3.1
dev: true
- /@sideway/address/4.1.4:
+ /@rollup/rollup-android-arm-eabi@4.9.1:
+ resolution: {integrity: sha512-6vMdBZqtq1dVQ4CWdhFwhKZL6E4L1dV6jUjuBvsavvNJSppzi6dLBbuV+3+IyUREaj9ZFvQefnQm28v4OCXlig==}
+ cpu: [arm]
+ os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@rollup/rollup-android-arm64@4.9.1:
+ resolution: {integrity: sha512-Jto9Fl3YQ9OLsTDWtLFPtaIMSL2kwGyGoVCmPC8Gxvym9TCZm4Sie+cVeblPO66YZsYH8MhBKDMGZ2NDxuk/XQ==}
+ cpu: [arm64]
+ os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@rollup/rollup-darwin-arm64@4.9.1:
+ resolution: {integrity: sha512-LtYcLNM+bhsaKAIGwVkh5IOWhaZhjTfNOkGzGqdHvhiCUVuJDalvDxEdSnhFzAn+g23wgsycmZk1vbnaibZwwA==}
+ cpu: [arm64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@rollup/rollup-darwin-x64@4.9.1:
+ resolution: {integrity: sha512-KyP/byeXu9V+etKO6Lw3E4tW4QdcnzDG/ake031mg42lob5tN+5qfr+lkcT/SGZaH2PdW4Z1NX9GHEkZ8xV7og==}
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@rollup/rollup-linux-arm-gnueabihf@4.9.1:
+ resolution: {integrity: sha512-Yqz/Doumf3QTKplwGNrCHe/B2p9xqDghBZSlAY0/hU6ikuDVQuOUIpDP/YcmoT+447tsZTmirmjgG3znvSCR0Q==}
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@rollup/rollup-linux-arm64-gnu@4.9.1:
+ resolution: {integrity: sha512-u3XkZVvxcvlAOlQJ3UsD1rFvLWqu4Ef/Ggl40WAVCuogf4S1nJPHh5RTgqYFpCOvuGJ7H5yGHabjFKEZGExk5Q==}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@rollup/rollup-linux-arm64-musl@4.9.1:
+ resolution: {integrity: sha512-0XSYN/rfWShW+i+qjZ0phc6vZ7UWI8XWNz4E/l+6edFt+FxoEghrJHjX1EY/kcUGCnZzYYRCl31SNdfOi450Aw==}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@rollup/rollup-linux-riscv64-gnu@4.9.1:
+ resolution: {integrity: sha512-LmYIO65oZVfFt9t6cpYkbC4d5lKHLYv5B4CSHRpnANq0VZUQXGcCPXHzbCXCz4RQnx7jvlYB1ISVNCE/omz5cw==}
+ cpu: [riscv64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@rollup/rollup-linux-x64-gnu@4.9.1:
+ resolution: {integrity: sha512-kr8rEPQ6ns/Lmr/hiw8sEVj9aa07gh1/tQF2Y5HrNCCEPiCBGnBUt9tVusrcBBiJfIt1yNaXN6r1CCmpbFEDpg==}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@rollup/rollup-linux-x64-musl@4.9.1:
+ resolution: {integrity: sha512-t4QSR7gN+OEZLG0MiCgPqMWZGwmeHhsM4AkegJ0Kiy6TnJ9vZ8dEIwHw1LcZKhbHxTY32hp9eVCMdR3/I8MGRw==}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@rollup/rollup-win32-arm64-msvc@4.9.1:
+ resolution: {integrity: sha512-7XI4ZCBN34cb+BH557FJPmh0kmNz2c25SCQeT9OiFWEgf8+dL6ZwJ8f9RnUIit+j01u07Yvrsuu1rZGxJCc51g==}
+ cpu: [arm64]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@rollup/rollup-win32-ia32-msvc@4.9.1:
+ resolution: {integrity: sha512-yE5c2j1lSWOH5jp+Q0qNL3Mdhr8WuqCNVjc6BxbVfS5cAS6zRmdiw7ktb8GNpDCEUJphILY6KACoFoRtKoqNQg==}
+ cpu: [ia32]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@rollup/rollup-win32-x64-msvc@4.9.1:
+ resolution: {integrity: sha512-PyJsSsafjmIhVgaI1Zdj7m8BB8mMckFah/xbpplObyHfiXzKcI5UOUXRyOdHW7nz4DpMCuzLnF7v5IWHenCwYA==}
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@sideway/address@4.1.4:
resolution: {integrity: sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==}
dependencies:
'@hapi/hoek': 9.3.0
dev: true
- /@sideway/formula/3.0.0:
- resolution: {integrity: sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg==}
+ /@sideway/formula@3.0.1:
+ resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==}
dev: true
- /@sideway/pinpoint/2.0.0:
+ /@sideway/pinpoint@2.0.0:
resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==}
dev: true
- /@tootallnate/once/2.0.0:
- resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==}
- engines: {node: '>= 10'}
+ /@sinclair/typebox@0.27.8:
+ resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
dev: true
- /@types/chai-subset/1.3.3:
- resolution: {integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==}
- dependencies:
- '@types/chai': 4.3.1
+ /@tsconfig/node18@18.2.2:
+ resolution: {integrity: sha512-d6McJeGsuoRlwWZmVIeE8CUA27lu6jLjvv1JzqmpsytOYYbVi1tHZEnwCNVOXnj4pyLvneZlFlpXUK+X9wBWyw==}
dev: true
- /@types/chai/4.3.1:
- resolution: {integrity: sha512-/zPMqDkzSZ8t3VtxOa4KPq7uzzW978M9Tvh+j7GHKuo6k6GTLxPJ4J5gE5cjfJ26pnXst0N5Hax8Sr0T2Mi9zQ==}
+ /@tsconfig/node18@18.2.4:
+ resolution: {integrity: sha512-5xxU8vVs9/FNcvm3gE07fPbn9tl6tqGGWA9tSlwsUEkBxtRnTsNmwrV8gasZ9F/EobaSv9+nu8AxUKccw77JpQ==}
dev: true
- /@types/eslint/8.4.5:
- resolution: {integrity: sha512-dhsC09y1gpJWnK+Ff4SGvCuSnk9DaU0BJZSzOwa6GVSg65XtTugLBITDAAzRU5duGBoXBHpdR/9jHGxJjNflJQ==}
+ /@types/eslint@8.56.9:
+ resolution: {integrity: sha512-W4W3KcqzjJ0sHg2vAq9vfml6OhsJ53TcUjUqfzzZf/EChUtwspszj/S0pzMxnfRcO55/iGq47dscXw71Fxc4Zg==}
dependencies:
'@types/estree': 1.0.0
'@types/json-schema': 7.0.11
dev: true
- /@types/estree/1.0.0:
+ /@types/estree@1.0.0:
resolution: {integrity: sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==}
dev: true
- /@types/fs-extra/9.0.13:
- resolution: {integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==}
+ /@types/fs-extra@11.0.4:
+ resolution: {integrity: sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==}
dependencies:
- '@types/node': 16.11.45
+ '@types/jsonfile': 6.1.4
+ '@types/node': 18.19.3
dev: true
- /@types/jsdom/16.2.14:
- resolution: {integrity: sha512-6BAy1xXEmMuHeAJ4Fv4yXKwBDTGTOseExKE3OaHiNycdHdZw59KfYzrt0DkDluvwmik1HRt6QS7bImxUmpSy+w==}
+ /@types/jsdom@21.1.6:
+ resolution: {integrity: sha512-/7kkMsC+/kMs7gAYmmBR9P0vGTnOoLhQhyhQJSlXGI5bzTHp6xdo0TtKWQAsz6pmSAeVqKSbqeyP6hytqr9FDw==}
dependencies:
- '@types/node': 16.11.45
- '@types/parse5': 6.0.3
+ '@types/node': 18.19.3
'@types/tough-cookie': 4.0.2
+ parse5: 7.0.0
dev: true
- /@types/json-schema/7.0.11:
+ /@types/json-schema@7.0.11:
resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==}
dev: true
- /@types/minimist/1.2.2:
- resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==}
- dev: true
-
- /@types/node-fetch/2.6.2:
- resolution: {integrity: sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A==}
+ /@types/jsonfile@6.1.4:
+ resolution: {integrity: sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==}
dependencies:
- '@types/node': 16.11.45
- form-data: 3.0.1
+ '@types/node': 18.19.3
dev: true
- /@types/node/14.18.22:
- resolution: {integrity: sha512-qzaYbXVzin6EPjghf/hTdIbnVW1ErMx8rPzwRNJhlbyJhu2SyqlvjGOY/tbUt6VFyzg56lROcOeSQRInpt63Yw==}
+ /@types/minimist@1.2.2:
+ resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==}
dev: true
- /@types/node/16.11.45:
- resolution: {integrity: sha512-3rKg/L5x0rofKuuUt5zlXzOnKyIHXmIu5R8A0TuNDMF2062/AOIDBciFIjToLEJ/9F9DzkHNot+BpNsMI1OLdQ==}
+ /@types/node@18.19.3:
+ resolution: {integrity: sha512-k5fggr14DwAytoA/t8rPrIz++lXK7/DqckthCmoZOKNsEbJkId4Z//BqgApXBUGrGddrigYa1oqheo/7YmW4rg==}
+ dependencies:
+ undici-types: 5.26.5
dev: true
- /@types/node/18.0.6:
- resolution: {integrity: sha512-/xUq6H2aQm261exT6iZTMifUySEt4GR5KX8eYyY+C4MSNPqSh9oNIP7tz2GLKTlFaiBbgZNxffoR3CVRG+cljw==}
+ /@types/normalize-package-data@2.4.4:
+ resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
dev: true
- /@types/parse5/6.0.3:
- resolution: {integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==}
+ /@types/prompts@2.4.9:
+ resolution: {integrity: sha512-qTxFi6Buiu8+50/+3DGIWLHM6QuWsEKugJnnP6iv2Mc4ncxE4A/OJkjuVOA+5X0X1S/nq5VJRa8Lu+nwcvbrKA==}
+ dependencies:
+ '@types/node': 18.19.3
+ kleur: 3.0.3
dev: true
- /@types/prompts/2.0.14:
- resolution: {integrity: sha512-HZBd99fKxRWpYCErtm2/yxUZv6/PBI9J7N4TNFffl5JbrYMHBwF25DjQGTW3b3jmXq+9P6/8fCIb2ee57BFfYA==}
- dependencies:
- '@types/node': 18.0.6
+ /@types/ps-tree@1.1.6:
+ resolution: {integrity: sha512-PtrlVaOaI44/3pl3cvnlK+GxOM3re2526TJvPvh7W+keHIXdV4TE0ylpPBAcvFQCbGitaTXwL9u+RF7qtVeazQ==}
dev: true
- /@types/sinonjs__fake-timers/8.1.1:
+ /@types/sinonjs__fake-timers@8.1.1:
resolution: {integrity: sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==}
dev: true
- /@types/sizzle/2.3.3:
+ /@types/sizzle@2.3.3:
resolution: {integrity: sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==}
dev: true
- /@types/tough-cookie/4.0.2:
+ /@types/tough-cookie@4.0.2:
resolution: {integrity: sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==}
dev: true
- /@types/yauzl/2.10.0:
+ /@types/which@3.0.3:
+ resolution: {integrity: sha512-2C1+XoY0huExTbs8MQv1DuS5FS86+SEjdM9F/+GS61gg5Hqbtj8ZiDSx8MfWcyei907fIPbfPGCOrNUTnVHY1g==}
+ dev: true
+
+ /@types/yauzl@2.10.0:
resolution: {integrity: sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==}
requiresBuild: true
dependencies:
- '@types/node': 14.18.22
+ '@types/node': 18.19.3
dev: true
optional: true
- /@vitejs/plugin-legacy/2.0.0_terser@5.14.2+vite@3.0.2:
- resolution: {integrity: sha512-cuc45C4BQo2VlOsHZML4fc3MPfSjOEFeezHxr+WWlOOmi+muy1rz2snnFiePtyjVc1CYGTsnxk13cXpzQvMZaw==}
- engines: {node: '>=14.18.0'}
+ /@vitejs/plugin-legacy@5.3.2(terser@5.29.1)(vite@5.1.6):
+ resolution: {integrity: sha512-8moCOrIMaZ/Rjln0Q6GsH6s8fAt1JOI3k8nmfX4tXUxE5KAExVctSyOBk+A25GClsdSWqIk2yaUthH3KJ2X4tg==}
+ engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
terser: ^5.4.0
- vite: ^3.0.0
- dependencies:
- '@babel/standalone': 7.18.9
- core-js: 3.23.5
- magic-string: 0.26.2
- regenerator-runtime: 0.13.9
- systemjs: 6.12.1
- terser: 5.14.2
- vite: 3.0.2_terser@5.14.2
+ vite: ^5.0.0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/preset-env': 7.24.0(@babel/core@7.24.0)
+ browserslist: 4.23.0
+ browserslist-to-esbuild: 2.1.1(browserslist@4.23.0)
+ core-js: 3.36.0
+ magic-string: 0.30.8
+ regenerator-runtime: 0.14.1
+ systemjs: 6.14.3
+ terser: 5.29.1
+ vite: 5.1.6(@types/node@18.19.3)(terser@5.29.1)
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /@vitejs/plugin-vue2-jsx/1.0.2_vite@3.0.2+vue@2.7.7:
- resolution: {integrity: sha512-XcjKPz4/CsFDzrDI+wWQqNuu9h+5UhXVTg/NF2lvlXXJQNp93UdYZs3wVEX6PQgo2wGhdx66tuuYf7rwzS8DpQ==}
+ /@vitejs/plugin-vue2-jsx@1.1.1(vite@5.1.6)(vue@2.7.16):
+ resolution: {integrity: sha512-r6BjWP2aVg4/uXdjf+wMwLuk0LQEUbPTC9UcRpWMhWsfVl9n/8RhiG6pQPO9g+oab/g3fHoZ2bmJJbKuraqCsw==}
engines: {node: '>=14.18.0'}
peerDependencies:
- vite: ^2.9.13 || ^3.0.0
+ vite: ^2.9.13 || ^3.0.0 || ^4.0.0 || ^5.0.0
vue: ^2.7.0
dependencies:
- '@babel/core': 7.18.9
- '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.18.9
- '@babel/plugin-transform-typescript': 7.18.8_@babel+core@7.18.9
- '@rollup/pluginutils': 4.2.1
- '@vue/babel-preset-jsx': 1.3.0_f6tumvxmbop4zov7p4w2sghvfa
- vite: 3.0.2_terser@5.14.2
- vue: 2.7.7
+ '@babel/core': 7.23.6
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.6)
+ '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.23.6)
+ '@rollup/pluginutils': 5.1.0
+ '@vue/babel-preset-jsx': 1.4.0(@babel/core@7.23.6)(vue@2.7.16)
+ vite: 5.1.6(@types/node@18.19.3)(terser@5.29.1)
+ vue: 2.7.16
transitivePeerDependencies:
+ - rollup
- supports-color
dev: true
- /@vitejs/plugin-vue2/1.1.2_vite@3.0.2+vue@2.7.7:
- resolution: {integrity: sha512-y6OEA+2UdJ0xrEQHodq20v9r3SpS62IOHrgN92JPLvVpNkhcissu7yvD5PXMzMESyazj0XNWGsc8UQk8+mVrjQ==}
- engines: {node: '>=14.6.0'}
+ /@vitejs/plugin-vue2@2.3.1(vite@5.1.6)(vue@2.7.16):
+ resolution: {integrity: sha512-/ksaaz2SRLN11JQhLdEUhDzOn909WEk99q9t9w+N12GjQCljzv7GyvAbD/p20aBUjHkvpGOoQ+FCOkG+mjDF4A==}
+ engines: {node: ^14.18.0 || >= 16.0.0}
peerDependencies:
- vite: '>=2.5.10'
+ vite: ^3.0.0 || ^4.0.0 || ^5.0.0
vue: ^2.7.0-0
dependencies:
- vite: 3.0.2_terser@5.14.2
- vue: 2.7.7
+ vite: 5.1.6(@types/node@18.19.3)(terser@5.29.1)
+ vue: 2.7.16
+ dev: true
+
+ /@vitest/expect@1.3.1:
+ resolution: {integrity: sha512-xofQFwIzfdmLLlHa6ag0dPV8YsnKOCP1KdAeVVh34vSjN2dcUiXYCD9htu/9eM7t8Xln4v03U9HLxLpPlsXdZw==}
+ dependencies:
+ '@vitest/spy': 1.3.1
+ '@vitest/utils': 1.3.1
+ chai: 4.4.1
+ dev: true
+
+ /@vitest/runner@1.3.1:
+ resolution: {integrity: sha512-5FzF9c3jG/z5bgCnjr8j9LNq/9OxV2uEBAITOXfoe3rdZJTdO7jzThth7FXv/6b+kdY65tpRQB7WaKhNZwX+Kg==}
+ dependencies:
+ '@vitest/utils': 1.3.1
+ p-limit: 5.0.0
+ pathe: 1.1.2
+ dev: true
+
+ /@vitest/snapshot@1.3.1:
+ resolution: {integrity: sha512-EF++BZbt6RZmOlE3SuTPu/NfwBF6q4ABS37HHXzs2LUVPBLx2QoY/K0fKpRChSo8eLiuxcbCVfqKgx/dplCDuQ==}
+ dependencies:
+ magic-string: 0.30.5
+ pathe: 1.1.2
+ pretty-format: 29.7.0
dev: true
- /@volar/code-gen/0.38.8:
- resolution: {integrity: sha512-e37jd+JwNjBpWiBblsdmYMbJ9bELiuj2yZrsXv1IVKpYNSfvS92ZiYjJqVXHUwpzNeZjFG0RCd5nTpbiebwANw==}
+ /@vitest/spy@1.3.1:
+ resolution: {integrity: sha512-xAcW+S099ylC9VLU7eZfdT9myV67Nor9w9zhf0mGCYJSO+zM2839tOeROTdikOi/8Qeusffvxb/MyBSOja1Uig==}
dependencies:
- '@volar/source-map': 0.38.8
+ tinyspy: 2.2.0
dev: true
- /@volar/source-map/0.38.8:
- resolution: {integrity: sha512-JZvpjW/z2U3wq5wvwcTounPrRAZuSl4hlVKr3y7y72bKr++6W05OnX7fl/ddw39G/wLHdI2ag5+4JWsSd/EYhg==}
+ /@vitest/utils@1.3.1:
+ resolution: {integrity: sha512-d3Waie/299qqRyHTm2DjADeTaNdNSVsnwHPWrs20JMpjh6eiVq7ggggweO8rc4arhf6rRkWuHKwvxGvejUXZZQ==}
+ dependencies:
+ diff-sequences: 29.6.3
+ estree-walker: 3.0.3
+ loupe: 2.3.7
+ pretty-format: 29.7.0
+ dev: true
+
+ /@volar/language-core@2.1.2:
+ resolution: {integrity: sha512-5qsDp0Gf6fE09UWCeK7bkVn6NxMwC9OqFWQkMMkeej8h8XjyABPdRygC2RCrqDrfVdGijqlMQeXs6yRS+vfZYA==}
+ dependencies:
+ '@volar/source-map': 2.1.2
dev: true
- /@volar/vue-code-gen/0.38.8:
- resolution: {integrity: sha512-iQVNmIu1TqnqTko+l9yeylmZipZ8zNH20XZAK9+48hkv2fEQnnJn5AI2W9Zb2M5DkGMpbYiJk9Fq1vm51YY1+g==}
+ /@volar/source-map@2.1.2:
+ resolution: {integrity: sha512-yFJqsuLm1OaWrsz9E3yd3bJcYIlHqdZ8MbmIoZLrAzMYQDcoF26/INIhgziEXSdyHc8xd7rd/tJdSnUyh0gH4Q==}
dependencies:
- '@volar/code-gen': 0.38.8
- '@volar/source-map': 0.38.8
- '@vue/compiler-core': 3.2.37
- '@vue/compiler-dom': 3.2.37
- '@vue/shared': 3.2.37
+ muggle-string: 0.4.1
dev: true
- /@volar/vue-typescript/0.38.8:
- resolution: {integrity: sha512-7WeFt5piz9I6FKw2cQQCWm+75MxS6xCOGm300iu+hJORlroN2dwWbwj97pQnDGbjQbftCRplUYf0GqmhcOsanQ==}
+ /@volar/typescript@2.1.2:
+ resolution: {integrity: sha512-lhTancZqamvaLvoz0u/uth8dpudENNt2LFZOWCw9JZiX14xRFhdhfzmphiCRb7am9E6qAJSbdS/gMt1utXAoHQ==}
dependencies:
- '@volar/code-gen': 0.38.8
- '@volar/source-map': 0.38.8
- '@volar/vue-code-gen': 0.38.8
- '@vue/compiler-sfc': 3.2.37
- '@vue/reactivity': 3.2.37
+ '@volar/language-core': 2.1.2
+ path-browserify: 1.0.1
dev: true
- /@vue/babel-helper-vue-jsx-merge-props/1.2.1:
- resolution: {integrity: sha512-QOi5OW45e2R20VygMSNhyQHvpdUwQZqGPc748JLGCYEy+yp8fNFNdbNIGAgZmi9e+2JHPd6i6idRuqivyicIkA==}
+ /@vue/babel-helper-vue-jsx-merge-props@1.4.0:
+ resolution: {integrity: sha512-JkqXfCkUDp4PIlFdDQ0TdXoIejMtTHP67/pvxlgeY+u5k3LEdKuWZ3LK6xkxo52uDoABIVyRwqVkfLQJhk7VBA==}
dev: true
- /@vue/babel-plugin-transform-vue-jsx/1.2.1_@babel+core@7.18.9:
- resolution: {integrity: sha512-HJuqwACYehQwh1fNT8f4kyzqlNMpBuUK4rSiSES5D4QsYncv5fxFsLyrxFPG2ksO7t5WP+Vgix6tt6yKClwPzA==}
+ /@vue/babel-plugin-transform-vue-jsx@1.4.0(@babel/core@7.23.6):
+ resolution: {integrity: sha512-Fmastxw4MMx0vlgLS4XBX0XiBbUFzoMGeVXuMV08wyOfXdikAFqBTuYPR0tlk+XskL19EzHc39SgjrPGY23JnA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.9
- '@babel/helper-module-imports': 7.18.6
- '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.9
- '@vue/babel-helper-vue-jsx-merge-props': 1.2.1
+ '@babel/core': 7.23.6
+ '@babel/helper-module-imports': 7.22.15
+ '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.23.6)
+ '@vue/babel-helper-vue-jsx-merge-props': 1.4.0
html-tags: 2.0.0
lodash.kebabcase: 4.1.1
svg-tags: 1.0.0
dev: true
- /@vue/babel-preset-jsx/1.3.0_f6tumvxmbop4zov7p4w2sghvfa:
- resolution: {integrity: sha512-WFHjZWoUV/W0VAnEM/vi3zhdKsWrYf1TVFuxrpMQXVjhU8w8cxAUzNkmUDvf5iugCNzQssTJp9LjDPHAcmCqUw==}
+ /@vue/babel-preset-jsx@1.4.0(@babel/core@7.23.6)(vue@2.7.16):
+ resolution: {integrity: sha512-QmfRpssBOPZWL5xw7fOuHNifCQcNQC1PrOo/4fu6xlhlKJJKSA3HqX92Nvgyx8fqHZTUGMPHmFA+IDqwXlqkSA==}
peerDependencies:
'@babel/core': ^7.0.0-0
- vue: 2.x
+ vue: '*'
peerDependenciesMeta:
vue:
optional: true
dependencies:
- '@babel/core': 7.18.9
- '@vue/babel-helper-vue-jsx-merge-props': 1.2.1
- '@vue/babel-plugin-transform-vue-jsx': 1.2.1_@babel+core@7.18.9
- '@vue/babel-sugar-composition-api-inject-h': 1.3.0_@babel+core@7.18.9
- '@vue/babel-sugar-composition-api-render-instance': 1.3.0_@babel+core@7.18.9
- '@vue/babel-sugar-functional-vue': 1.2.2_@babel+core@7.18.9
- '@vue/babel-sugar-inject-h': 1.2.2_@babel+core@7.18.9
- '@vue/babel-sugar-v-model': 1.3.0_@babel+core@7.18.9
- '@vue/babel-sugar-v-on': 1.3.0_@babel+core@7.18.9
- vue: 2.7.7
+ '@babel/core': 7.23.6
+ '@vue/babel-helper-vue-jsx-merge-props': 1.4.0
+ '@vue/babel-plugin-transform-vue-jsx': 1.4.0(@babel/core@7.23.6)
+ '@vue/babel-sugar-composition-api-inject-h': 1.4.0(@babel/core@7.23.6)
+ '@vue/babel-sugar-composition-api-render-instance': 1.4.0(@babel/core@7.23.6)
+ '@vue/babel-sugar-functional-vue': 1.4.0(@babel/core@7.23.6)
+ '@vue/babel-sugar-inject-h': 1.4.0(@babel/core@7.23.6)
+ '@vue/babel-sugar-v-model': 1.4.0(@babel/core@7.23.6)
+ '@vue/babel-sugar-v-on': 1.4.0(@babel/core@7.23.6)
+ vue: 2.7.16
dev: true
- /@vue/babel-sugar-composition-api-inject-h/1.3.0_@babel+core@7.18.9:
- resolution: {integrity: sha512-pIDOutEpqbURdVw7xhgxmuDW8Tl+lTgzJZC5jdlUu0lY2+izT9kz3Umd/Tbu0U5cpCJ2Yhu87BZFBzWpS0Xemg==}
+ /@vue/babel-sugar-composition-api-inject-h@1.4.0(@babel/core@7.23.6):
+ resolution: {integrity: sha512-VQq6zEddJHctnG4w3TfmlVp5FzDavUSut/DwR0xVoe/mJKXyMcsIibL42wPntozITEoY90aBV0/1d2KjxHU52g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.9
- '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.9
+ '@babel/core': 7.23.6
+ '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.23.6)
dev: true
- /@vue/babel-sugar-composition-api-render-instance/1.3.0_@babel+core@7.18.9:
- resolution: {integrity: sha512-NYNnU2r7wkJLMV5p9Zj4pswmCs037O/N2+/Fs6SyX7aRFzXJRP1/2CZh5cIwQxWQajHXuCUd5mTb7DxoBVWyTg==}
+ /@vue/babel-sugar-composition-api-render-instance@1.4.0(@babel/core@7.23.6):
+ resolution: {integrity: sha512-6ZDAzcxvy7VcnCjNdHJ59mwK02ZFuP5CnucloidqlZwVQv5CQLijc3lGpR7MD3TWFi78J7+a8J56YxbCtHgT9Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.9
- '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.9
+ '@babel/core': 7.23.6
+ '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.23.6)
dev: true
- /@vue/babel-sugar-functional-vue/1.2.2_@babel+core@7.18.9:
- resolution: {integrity: sha512-JvbgGn1bjCLByIAU1VOoepHQ1vFsroSA/QkzdiSs657V79q6OwEWLCQtQnEXD/rLTA8rRit4rMOhFpbjRFm82w==}
+ /@vue/babel-sugar-functional-vue@1.4.0(@babel/core@7.23.6):
+ resolution: {integrity: sha512-lTEB4WUFNzYt2In6JsoF9sAYVTo84wC4e+PoZWSgM6FUtqRJz7wMylaEhSRgG71YF+wfLD6cc9nqVeXN2rwBvw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.9
- '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.9
+ '@babel/core': 7.23.6
+ '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.23.6)
dev: true
- /@vue/babel-sugar-inject-h/1.2.2_@babel+core@7.18.9:
- resolution: {integrity: sha512-y8vTo00oRkzQTgufeotjCLPAvlhnpSkcHFEp60+LJUwygGcd5Chrpn5480AQp/thrxVm8m2ifAk0LyFel9oCnw==}
+ /@vue/babel-sugar-inject-h@1.4.0(@babel/core@7.23.6):
+ resolution: {integrity: sha512-muwWrPKli77uO2fFM7eA3G1lAGnERuSz2NgAxuOLzrsTlQl8W4G+wwbM4nB6iewlKbwKRae3nL03UaF5ffAPMA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.9
- '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.9
+ '@babel/core': 7.23.6
+ '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.23.6)
dev: true
- /@vue/babel-sugar-v-model/1.3.0_@babel+core@7.18.9:
- resolution: {integrity: sha512-zcsabmdX48JmxTObn3xmrvvdbEy8oo63DphVyA3WRYGp4SEvJRpu/IvZCVPl/dXLuob2xO/QRuncqPgHvZPzpA==}
+ /@vue/babel-sugar-v-model@1.4.0(@babel/core@7.23.6):
+ resolution: {integrity: sha512-0t4HGgXb7WHYLBciZzN5s0Hzqan4Ue+p/3FdQdcaHAb7s5D9WZFGoSxEZHrR1TFVZlAPu1bejTKGeAzaaG3NCQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.9
- '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.9
- '@vue/babel-helper-vue-jsx-merge-props': 1.2.1
- '@vue/babel-plugin-transform-vue-jsx': 1.2.1_@babel+core@7.18.9
+ '@babel/core': 7.23.6
+ '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.23.6)
+ '@vue/babel-helper-vue-jsx-merge-props': 1.4.0
+ '@vue/babel-plugin-transform-vue-jsx': 1.4.0(@babel/core@7.23.6)
camelcase: 5.3.1
html-tags: 2.0.0
svg-tags: 1.0.0
dev: true
- /@vue/babel-sugar-v-on/1.3.0_@babel+core@7.18.9:
- resolution: {integrity: sha512-8VZgrS0G5bh7+Prj7oJkzg9GvhSPnuW5YT6MNaVAEy4uwxRLJ8GqHenaStfllChTao4XZ3EZkNtHB4Xbr/ePdA==}
+ /@vue/babel-sugar-v-on@1.4.0(@babel/core@7.23.6):
+ resolution: {integrity: sha512-m+zud4wKLzSKgQrWwhqRObWzmTuyzl6vOP7024lrpeJM4x2UhQtRDLgYjXAw9xBXjCwS0pP9kXjg91F9ZNo9JA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.9
- '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.9
- '@vue/babel-plugin-transform-vue-jsx': 1.2.1_@babel+core@7.18.9
+ '@babel/core': 7.23.6
+ '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.23.6)
+ '@vue/babel-plugin-transform-vue-jsx': 1.4.0(@babel/core@7.23.6)
camelcase: 5.3.1
dev: true
- /@vue/compiler-core/3.2.37:
- resolution: {integrity: sha512-81KhEjo7YAOh0vQJoSmAD68wLfYqJvoiD4ulyedzF+OEk/bk6/hx3fTNVfuzugIIaTrOx4PGx6pAiBRe5e9Zmg==}
+ /@vue/compiler-core@3.4.15:
+ resolution: {integrity: sha512-XcJQVOaxTKCnth1vCxEChteGuwG6wqnUHxAm1DO3gCz0+uXKaJNx8/digSz4dLALCy8n2lKq24jSUs8segoqIw==}
dependencies:
- '@babel/parser': 7.18.9
- '@vue/shared': 3.2.37
+ '@babel/parser': 7.23.6
+ '@vue/shared': 3.4.15
+ entities: 4.5.0
estree-walker: 2.0.2
- source-map: 0.6.1
+ source-map-js: 1.0.2
dev: true
- /@vue/compiler-dom/3.2.37:
- resolution: {integrity: sha512-yxJLH167fucHKxaqXpYk7x8z7mMEnXOw3G2q62FTkmsvNxu4FQSu5+3UMb+L7fjKa26DEzhrmCxAgFLLIzVfqQ==}
+ /@vue/compiler-dom@3.4.15:
+ resolution: {integrity: sha512-wox0aasVV74zoXyblarOM3AZQz/Z+OunYcIHe1OsGclCHt8RsRm04DObjefaI82u6XDzv+qGWZ24tIsRAIi5MQ==}
dependencies:
- '@vue/compiler-core': 3.2.37
- '@vue/shared': 3.2.37
+ '@vue/compiler-core': 3.4.15
+ '@vue/shared': 3.4.15
dev: true
- /@vue/compiler-sfc/2.7.7:
- resolution: {integrity: sha512-Ah8dIuo6ZVPHTq9+s4rBU/YpJu3vGSNyeOTCrPrVPQnkUfnT5Ig+IKBhePuQWFXguYb2TuEWrEfiiX9DZ3aJlA==}
- dependencies:
- '@babel/parser': 7.18.9
- postcss: 8.4.14
- source-map: 0.6.1
-
- /@vue/compiler-sfc/3.2.37:
- resolution: {integrity: sha512-+7i/2+9LYlpqDv+KTtWhOZH+pa8/HnX/905MdVmAcI/mPQOBwkHHIzrsEsucyOIZQYMkXUiTkmZq5am/NyXKkg==}
+ /@vue/compiler-sfc@2.7.16:
+ resolution: {integrity: sha512-KWhJ9k5nXuNtygPU7+t1rX6baZeqOYLEforUPjgNDBnLicfHCoi48H87Q8XyLZOrNNsmhuwKqtpDQWjEFe6Ekg==}
dependencies:
- '@babel/parser': 7.18.9
- '@vue/compiler-core': 3.2.37
- '@vue/compiler-dom': 3.2.37
- '@vue/compiler-ssr': 3.2.37
- '@vue/reactivity-transform': 3.2.37
- '@vue/shared': 3.2.37
- estree-walker: 2.0.2
- magic-string: 0.25.9
- postcss: 8.4.14
+ '@babel/parser': 7.23.6
+ postcss: 8.4.33
source-map: 0.6.1
- dev: true
-
- /@vue/compiler-ssr/3.2.37:
- resolution: {integrity: sha512-7mQJD7HdXxQjktmsWp/J67lThEIcxLemz1Vb5I6rYJHR5vI+lON3nPGOH3ubmbvYGt8xEUaAr1j7/tIFWiEOqw==}
- dependencies:
- '@vue/compiler-dom': 3.2.37
- '@vue/shared': 3.2.37
- dev: true
+ optionalDependencies:
+ prettier: 2.7.1
- /@vue/devtools-api/6.2.1:
- resolution: {integrity: sha512-OEgAMeQXvCoJ+1x8WyQuVZzFo0wcyCmUR3baRVLmKBo1LmYZWMlRiXlux5jd0fqVJu6PfDbOrZItVqUEzLobeQ==}
+ /@vue/devtools-api@6.6.1:
+ resolution: {integrity: sha512-LgPscpE3Vs0x96PzSSB4IGVSZXZBZHpfxs+ZA1d+VEPwHdOXowy/Y2CsvCAIFrf+ssVU1pD1jidj505EpUnfbA==}
dev: false
- /@vue/reactivity-transform/3.2.37:
- resolution: {integrity: sha512-IWopkKEb+8qpu/1eMKVeXrK0NLw9HicGviJzhJDEyfxTR9e1WtpnnbYkJWurX6WwoFP0sz10xQg8yL8lgskAZg==}
- dependencies:
- '@babel/parser': 7.18.9
- '@vue/compiler-core': 3.2.37
- '@vue/shared': 3.2.37
- estree-walker: 2.0.2
- magic-string: 0.25.9
- dev: true
-
- /@vue/reactivity/3.2.37:
- resolution: {integrity: sha512-/7WRafBOshOc6m3F7plwzPeCu/RCVv9uMpOwa/5PiY1Zz+WLVRWiy0MYKwmg19KBdGtFWsmZ4cD+LOdVPcs52A==}
+ /@vue/language-core@2.0.6(typescript@5.3.3):
+ resolution: {integrity: sha512-UzqU12tzf9XLqRO3TiWPwRNpP4fyUzE6MAfOQWQNZ4jy6a30ARRUpmODDKq6O8C4goMc2AlPqTmjOHPjHkilSg==}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
dependencies:
- '@vue/shared': 3.2.37
+ '@volar/language-core': 2.1.2
+ '@vue/compiler-dom': 3.4.15
+ '@vue/shared': 3.4.15
+ computeds: 0.0.1
+ minimatch: 9.0.3
+ path-browserify: 1.0.1
+ typescript: 5.3.3
+ vue-template-compiler: 2.7.16
dev: true
- /@vue/shared/3.2.37:
- resolution: {integrity: sha512-4rSJemR2NQIo9Klm1vabqWjD8rs/ZaJSzMxkMNeJS6lHiUjjUeYFbooN19NgFjztubEKh3WlZUeOLVdbbUWHsw==}
+ /@vue/shared@3.4.15:
+ resolution: {integrity: sha512-KzfPTxVaWfB+eGcGdbSf4CWdaXcGDqckoeXUh7SB3fZdEtzPCK2Vq9B/lRRL3yutax/LWITz+SwvgyOxz5V75g==}
dev: true
- /@vue/test-utils/1.3.0_bsfvtfsktrde675atkxiqnygju:
- resolution: {integrity: sha512-Xk2Xiyj2k5dFb8eYUKkcN9PzqZSppTlx7LaQWBbdA8tqh3jHr/KHX2/YLhNFc/xwDrgeLybqd+4ZCPJSGPIqeA==}
+ /@vue/test-utils@1.3.6(vue-template-compiler@2.7.16)(vue@2.7.16):
+ resolution: {integrity: sha512-udMmmF1ts3zwxUJEIAj5ziioR900reDrt6C9H3XpWPsLBx2lpHKoA4BTdd9HNIYbkGltWw+JjWJ+5O6QBwiyEw==}
peerDependencies:
vue: 2.x
vue-template-compiler: ^2.x
@@ -3379,72 +2406,40 @@ packages:
dom-event-types: 1.1.0
lodash: 4.17.21
pretty: 2.0.0
- vue: 2.7.7
- vue-template-compiler: 2.7.7
- dev: true
-
- /@vue/tsconfig/0.1.3:
- resolution: {integrity: sha512-kQVsh8yyWPvHpb8gIc9l/HIDiiVUy1amynLNpCy8p+FoCiZXCo6fQos5/097MmnNZc9AtseDsCrfkhqCrJ8Olg==}
- peerDependencies:
- '@types/node': '*'
- peerDependenciesMeta:
- '@types/node':
- optional: true
- dev: true
-
- /@vue/tsconfig/0.1.3_@types+node@16.11.45:
- resolution: {integrity: sha512-kQVsh8yyWPvHpb8gIc9l/HIDiiVUy1amynLNpCy8p+FoCiZXCo6fQos5/097MmnNZc9AtseDsCrfkhqCrJ8Olg==}
- peerDependencies:
- '@types/node': '*'
- peerDependenciesMeta:
- '@types/node':
- optional: true
- dependencies:
- '@types/node': 16.11.45
- dev: true
-
- /abab/2.0.6:
- resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==}
- dev: true
-
- /abbrev/1.1.1:
- resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==}
+ vue: 2.7.16
+ vue-template-compiler: 2.7.16
dev: true
- /acorn-globals/6.0.0:
- resolution: {integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==}
- dependencies:
- acorn: 7.4.1
- acorn-walk: 7.2.0
+ /@vue/tsconfig@0.5.1:
+ resolution: {integrity: sha512-VcZK7MvpjuTPx2w6blwnwZAu5/LgBUtejFOi3pPGQFXQN5Ela03FUtd2Qtg4yWGGissVL0dr6Ro1LfOFh+PCuQ==}
dev: true
- /acorn-walk/7.2.0:
- resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==}
- engines: {node: '>=0.4.0'}
+ /abbrev@2.0.0:
+ resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dev: true
- /acorn/7.4.1:
- resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
+ /acorn-walk@8.3.2:
+ resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==}
engines: {node: '>=0.4.0'}
- hasBin: true
dev: true
- /acorn/8.7.1:
- resolution: {integrity: sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==}
+ /acorn@8.11.3:
+ resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==}
engines: {node: '>=0.4.0'}
hasBin: true
dev: true
- /agent-base/6.0.2:
- resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
- engines: {node: '>= 6.0.0'}
+ /agent-base@7.1.0:
+ resolution: {integrity: sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==}
+ engines: {node: '>= 14'}
dependencies:
- debug: 4.3.4
+ debug: 4.3.4(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
dev: true
- /aggregate-error/3.1.0:
+ /aggregate-error@3.1.0:
resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
engines: {node: '>=8'}
dependencies:
@@ -3452,210 +2447,292 @@ packages:
indent-string: 4.0.0
dev: true
- /ansi-colors/4.1.3:
+ /ansi-colors@4.1.3:
resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
engines: {node: '>=6'}
dev: true
- /ansi-escapes/4.3.2:
+ /ansi-escapes@4.3.2:
resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
engines: {node: '>=8'}
dependencies:
type-fest: 0.21.3
dev: true
- /ansi-regex/5.0.1:
+ /ansi-escapes@6.2.0:
+ resolution: {integrity: sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==}
+ engines: {node: '>=14.16'}
+ dependencies:
+ type-fest: 3.13.1
+ dev: true
+
+ /ansi-regex@5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
dev: true
- /ansi-regex/6.0.1:
+ /ansi-regex@6.0.1:
resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
engines: {node: '>=12'}
dev: true
- /ansi-styles/3.2.1:
+ /ansi-styles@3.2.1:
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
engines: {node: '>=4'}
dependencies:
color-convert: 1.9.3
dev: true
- /ansi-styles/4.3.0:
+ /ansi-styles@4.3.0:
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
engines: {node: '>=8'}
dependencies:
color-convert: 2.0.1
dev: true
- /ansi-styles/6.1.0:
- resolution: {integrity: sha512-VbqNsoz55SYGczauuup0MFUyXNQviSpFTj1RQtFzmQLk18qbVSpTFFGMT293rmDaQuKCT6InmbuEyUne4mTuxQ==}
+ /ansi-styles@5.2.0:
+ resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
+ engines: {node: '>=10'}
+ dev: true
+
+ /ansi-styles@6.2.1:
+ resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
engines: {node: '>=12'}
dev: true
- /arch/2.2.0:
+ /arch@2.2.0:
resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==}
dev: true
- /array-union/3.0.1:
- resolution: {integrity: sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==}
- engines: {node: '>=12'}
+ /arg@5.0.2:
+ resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
dev: true
- /asn1/0.2.6:
+ /asn1@0.2.6:
resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==}
dependencies:
safer-buffer: 2.1.2
dev: true
- /assert-plus/1.0.0:
+ /assert-plus@1.0.0:
resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==}
engines: {node: '>=0.8'}
dev: true
- /assertion-error/1.1.0:
+ /assertion-error@1.1.0:
resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
dev: true
- /astral-regex/2.0.0:
+ /astral-regex@2.0.0:
resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
engines: {node: '>=8'}
dev: true
- /async/3.2.4:
+ /async@3.2.4:
resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==}
dev: true
- /asynckit/0.4.0:
+ /asynckit@0.4.0:
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
dev: true
- /at-least-node/1.0.0:
+ /at-least-node@1.0.0:
resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==}
engines: {node: '>= 4.0.0'}
dev: true
- /aws-sign2/0.7.0:
+ /aws-sign2@0.7.0:
resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==}
dev: true
- /aws4/1.11.0:
- resolution: {integrity: sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==}
+ /aws4@1.11.0:
+ resolution: {integrity: sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==}
+ dev: true
+
+ /axios@1.6.3(debug@4.3.4):
+ resolution: {integrity: sha512-fWyNdeawGam70jXSVlKl+SUNVcL6j6W79CuSIPfi6HnDUmSCH6gyUys/HrqHeA/wU0Az41rRgean494d0Jb+ww==}
+ dependencies:
+ follow-redirects: 1.15.1(debug@4.3.4)
+ form-data: 4.0.0
+ proxy-from-env: 1.1.0
+ transitivePeerDependencies:
+ - debug
+ dev: true
+
+ /babel-plugin-polyfill-corejs2@0.4.10(@babel/core@7.24.0):
+ resolution: {integrity: sha512-rpIuu//y5OX6jVU+a5BCn1R5RSZYWAl2Nar76iwaOdycqb6JPxediskWFMMl7stfwNJR4b7eiQvh5fB5TEQJTQ==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ dependencies:
+ '@babel/compat-data': 7.23.5
+ '@babel/core': 7.24.0
+ '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.0)
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /babel-plugin-polyfill-corejs3@0.9.0(@babel/core@7.24.0):
+ resolution: {integrity: sha512-7nZPG1uzK2Ymhy/NbaOWTg3uibM2BmGASS4vHS4szRZAIR8R6GwA/xAujpdrXU5iyklrimWnLWU+BLF9suPTqg==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.24.0)
+ core-js-compat: 3.34.0
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /axios/0.21.4_debug@4.3.2:
- resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==}
+ /babel-plugin-polyfill-regenerator@0.5.5(@babel/core@7.24.0):
+ resolution: {integrity: sha512-OJGYZlhLqBh2DDHeqAxWB1XIvr49CxiJ2gIt61/PU55CQK4Z58OzMqjDe1zwQdQk+rBYsRc+1rJmdajM3gimHg==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- follow-redirects: 1.15.1_debug@4.3.2
+ '@babel/core': 7.24.0
+ '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.24.0)
transitivePeerDependencies:
- - debug
+ - supports-color
dev: true
- /balanced-match/1.0.2:
+ /balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
dev: true
- /base64-js/1.5.1:
+ /base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
dev: true
- /bcrypt-pbkdf/1.0.2:
+ /bcrypt-pbkdf@1.0.2:
resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==}
dependencies:
tweetnacl: 0.14.5
dev: true
- /blob-util/2.0.2:
+ /blob-util@2.0.2:
resolution: {integrity: sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==}
dev: true
- /bluebird/3.7.2:
+ /bluebird@3.7.2:
resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==}
dev: true
- /brace-expansion/1.1.11:
+ /brace-expansion@1.1.11:
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
dependencies:
balanced-match: 1.0.2
concat-map: 0.0.1
dev: true
- /braces/3.0.2:
+ /brace-expansion@2.0.1:
+ resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
+ dependencies:
+ balanced-match: 1.0.2
+ dev: true
+
+ /braces@3.0.2:
resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
engines: {node: '>=8'}
dependencies:
fill-range: 7.0.1
dev: true
- /browser-process-hrtime/1.0.0:
- resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==}
+ /browserslist-to-esbuild@2.1.1(browserslist@4.23.0):
+ resolution: {integrity: sha512-KN+mty6C3e9AN8Z5dI1xeN15ExcRNeISoC3g7V0Kax/MMF9MSoYA2G7lkTTcVUFntiEjkpI0HNgqJC1NjdyNUw==}
+ engines: {node: '>=18'}
+ hasBin: true
+ peerDependencies:
+ browserslist: '*'
+ dependencies:
+ browserslist: 4.23.0
+ meow: 13.2.0
+ dev: true
+
+ /browserslist@4.22.2:
+ resolution: {integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==}
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
+ hasBin: true
+ dependencies:
+ caniuse-lite: 1.0.30001572
+ electron-to-chromium: 1.4.616
+ node-releases: 2.0.14
+ update-browserslist-db: 1.0.13(browserslist@4.22.2)
dev: true
- /browserslist/4.21.2:
- resolution: {integrity: sha512-MonuOgAtUB46uP5CezYbRaYKBNt2LxP0yX+Pmj4LkcDFGkn9Cbpi83d9sCjwQDErXsIJSzY5oKGDbgOlF/LPAA==}
+ /browserslist@4.23.0:
+ resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001367
- electron-to-chromium: 1.4.194
- node-releases: 2.0.6
- update-browserslist-db: 1.0.5_browserslist@4.21.2
+ caniuse-lite: 1.0.30001597
+ electron-to-chromium: 1.4.704
+ node-releases: 2.0.14
+ update-browserslist-db: 1.0.13(browserslist@4.23.0)
dev: true
- /buffer-crc32/0.2.13:
+ /buffer-crc32@0.2.13:
resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
dev: true
- /buffer-from/1.1.2:
+ /buffer-from@1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
dev: true
- /buffer/5.7.1:
+ /buffer@5.7.1:
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
dependencies:
base64-js: 1.5.1
ieee754: 1.2.1
dev: true
- /cachedir/2.3.0:
+ /cac@6.7.14:
+ resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
+ engines: {node: '>=8'}
+ dev: true
+
+ /cachedir@2.3.0:
resolution: {integrity: sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==}
engines: {node: '>=6'}
dev: true
- /call-bind/1.0.2:
+ /call-bind@1.0.2:
resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
dependencies:
function-bind: 1.1.1
get-intrinsic: 1.1.2
dev: true
- /camelcase/5.3.1:
+ /camelcase@5.3.1:
resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
engines: {node: '>=6'}
dev: true
- /caniuse-lite/1.0.30001367:
- resolution: {integrity: sha512-XDgbeOHfifWV3GEES2B8rtsrADx4Jf+juKX2SICJcaUhjYBO3bR96kvEIHa15VU6ohtOhBZuPGGYGbXMRn0NCw==}
+ /caniuse-lite@1.0.30001572:
+ resolution: {integrity: sha512-1Pbh5FLmn5y4+QhNyJE9j3/7dK44dGB83/ZMjv/qJk86TvDbjk0LosiZo0i0WB0Vx607qMX9jYrn1VLHCkN4rw==}
dev: true
- /caseless/0.12.0:
+ /caniuse-lite@1.0.30001597:
+ resolution: {integrity: sha512-7LjJvmQU6Sj7bL0j5b5WY/3n7utXUJvAe1lxhsHDbLmwX9mdL86Yjtr+5SRCyf8qME4M7pU2hswj0FpyBVCv9w==}
+ dev: true
+
+ /caseless@0.12.0:
resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==}
dev: true
- /chai/4.3.6:
- resolution: {integrity: sha512-bbcp3YfHCUzMOvKqsztczerVgBKSsEijCySNlHHbX3VG1nskvqjz5Rfso1gGwD6w6oOV3eI60pKuMOV5MV7p3Q==}
+ /chai@4.4.1:
+ resolution: {integrity: sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==}
engines: {node: '>=4'}
dependencies:
assertion-error: 1.1.0
- check-error: 1.0.2
- deep-eql: 3.0.1
- get-func-name: 2.0.0
- loupe: 2.3.4
+ check-error: 1.0.3
+ deep-eql: 4.1.3
+ get-func-name: 2.0.2
+ loupe: 2.3.7
pathval: 1.1.1
type-detect: 4.0.8
dev: true
- /chalk/2.4.2:
+ /chalk@2.4.2:
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
engines: {node: '>=4'}
dependencies:
@@ -3664,7 +2741,7 @@ packages:
supports-color: 5.5.0
dev: true
- /chalk/4.1.2:
+ /chalk@4.1.2:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
dependencies:
@@ -3672,32 +2749,46 @@ packages:
supports-color: 7.2.0
dev: true
- /check-error/1.0.2:
- resolution: {integrity: sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==}
+ /chalk@5.3.0:
+ resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==}
+ engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
+ dev: true
+
+ /check-error@1.0.3:
+ resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==}
+ dependencies:
+ get-func-name: 2.0.2
dev: true
- /check-more-types/2.24.0:
+ /check-more-types@2.24.0:
resolution: {integrity: sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==}
engines: {node: '>= 0.8.0'}
dev: true
- /ci-info/3.3.2:
+ /ci-info@3.3.2:
resolution: {integrity: sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==}
dev: true
- /clean-stack/2.2.0:
+ /clean-stack@2.2.0:
resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
engines: {node: '>=6'}
dev: true
- /cli-cursor/3.1.0:
+ /cli-cursor@3.1.0:
resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
engines: {node: '>=8'}
dependencies:
restore-cursor: 3.1.0
dev: true
- /cli-table3/0.6.2:
+ /cli-cursor@4.0.0:
+ resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ dependencies:
+ restore-cursor: 4.0.0
+ dev: true
+
+ /cli-table3@0.6.2:
resolution: {integrity: sha512-QyavHCaIC80cMivimWu4aWHilIpiDpfm3hGmqAmXVL1UsnbLuBSMd21hTX6VY4ZSDSM73ESLeF8TOYId3rBTbw==}
engines: {node: 10.* || >= 12.*}
dependencies:
@@ -3706,7 +2797,7 @@ packages:
'@colors/colors': 1.5.0
dev: true
- /cli-truncate/2.1.0:
+ /cli-truncate@2.1.0:
resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==}
engines: {node: '>=8'}
dependencies:
@@ -3714,70 +2805,83 @@ packages:
string-width: 4.2.3
dev: true
- /cli-truncate/3.1.0:
- resolution: {integrity: sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ /cli-truncate@4.0.0:
+ resolution: {integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==}
+ engines: {node: '>=18'}
dependencies:
slice-ansi: 5.0.0
- string-width: 5.1.2
+ string-width: 7.1.0
dev: true
- /color-convert/1.9.3:
+ /color-convert@1.9.3:
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
dependencies:
color-name: 1.1.3
dev: true
- /color-convert/2.0.1:
+ /color-convert@2.0.1:
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
engines: {node: '>=7.0.0'}
dependencies:
color-name: 1.1.4
dev: true
- /color-name/1.1.3:
+ /color-name@1.1.3:
resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
dev: true
- /color-name/1.1.4:
+ /color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
dev: true
- /colorette/2.0.19:
+ /colorette@2.0.19:
resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==}
dev: true
- /combined-stream/1.0.8:
+ /colorette@2.0.20:
+ resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
+ dev: true
+
+ /combined-stream@1.0.8:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
engines: {node: '>= 0.8'}
dependencies:
delayed-stream: 1.0.0
dev: true
- /commander/2.20.3:
- resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
+ /commander@10.0.1:
+ resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==}
+ engines: {node: '>=14'}
dev: true
- /commander/5.1.0:
- resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==}
- engines: {node: '>= 6'}
+ /commander@11.1.0:
+ resolution: {integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==}
+ engines: {node: '>=16'}
dev: true
- /commander/9.4.0:
- resolution: {integrity: sha512-sRPT+umqkz90UA8M1yqYfnHlZA7fF6nSphDtxeywPZ49ysjxDQybzk13CL+mXekDRG92skbcqCLVovuCusNmFw==}
- engines: {node: ^12.20.0 || >=14}
+ /commander@2.20.3:
+ resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
+ dev: true
+
+ /commander@6.2.1:
+ resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==}
+ engines: {node: '>= 6'}
dev: true
- /common-tags/1.8.2:
+ /common-tags@1.8.2:
resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==}
engines: {node: '>=4.0.0'}
dev: true
- /concat-map/0.0.1:
+ /computeds@0.0.1:
+ resolution: {integrity: sha512-7CEBgcMjVmitjYo5q8JTJVra6X5mQ20uTThdK+0kR7UEaDrAWEQcRiBtWJzga4eRpP6afNwwLsX2SET2JhVB1Q==}
+ dev: true
+
+ /concat-map@0.0.1:
resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=}
dev: true
- /condense-newlines/0.2.1:
+ /condense-newlines@0.2.1:
resolution: {integrity: sha512-P7X+QL9Hb9B/c8HI5BFFKmjgBu2XpQuF98WZ9XkO+dBGgk5XgwiQz7o1SmpglNWId3581UcS0SFAWfoIhMHPfg==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -3786,40 +2890,33 @@ packages:
kind-of: 3.2.2
dev: true
- /config-chain/1.1.13:
+ /config-chain@1.1.13:
resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==}
dependencies:
ini: 1.3.8
proto-list: 1.2.4
dev: true
- /convert-source-map/1.8.0:
- resolution: {integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==}
- dependencies:
- safe-buffer: 5.1.2
+ /convert-source-map@2.0.0:
+ resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
dev: true
- /core-js/3.23.5:
- resolution: {integrity: sha512-7Vh11tujtAZy82da4duVreQysIoO2EvVrur7y6IzZkH1IHPSekuDi8Vuw1+YKjkbfWLRD7Nc9ICQ/sIUDutcyg==}
- requiresBuild: true
+ /core-js-compat@3.34.0:
+ resolution: {integrity: sha512-4ZIyeNbW/Cn1wkMMDy+mvrRUxrwFNjKwbhCfQpDd+eLgYipDqp8oGFGtLmhh18EDPKA0g3VUBYOxQGGwvWLVpA==}
+ dependencies:
+ browserslist: 4.23.0
dev: true
- /core-util-is/1.0.2:
- resolution: {integrity: sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=}
+ /core-js@3.36.0:
+ resolution: {integrity: sha512-mt7+TUBbTFg5+GngsAxeKBTl5/VS0guFeJacYge9OmHb+m058UwwIm41SE9T4Den7ClatV57B6TYTuJ0CX1MAw==}
+ requiresBuild: true
dev: true
- /cross-spawn/6.0.5:
- resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==}
- engines: {node: '>=4.8'}
- dependencies:
- nice-try: 1.0.5
- path-key: 2.0.1
- semver: 5.7.1
- shebang-command: 1.2.0
- which: 1.3.1
+ /core-util-is@1.0.2:
+ resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==}
dev: true
- /cross-spawn/7.0.3:
+ /cross-spawn@7.0.3:
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
engines: {node: '>= 8'}
dependencies:
@@ -3828,33 +2925,24 @@ packages:
which: 2.0.2
dev: true
- /cssom/0.3.8:
- resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==}
- dev: true
-
- /cssom/0.5.0:
- resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==}
- dev: true
-
- /cssstyle/2.3.0:
- resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==}
- engines: {node: '>=8'}
+ /cssstyle@4.0.1:
+ resolution: {integrity: sha512-8ZYiJ3A/3OkDd093CBT/0UKDWry7ak4BdPTFP2+QEP7cmhouyq/Up709ASSj2cK02BbZiMgk7kYjZNS4QP5qrQ==}
+ engines: {node: '>=18'}
dependencies:
- cssom: 0.3.8
+ rrweb-cssom: 0.6.0
dev: true
- /csstype/3.1.0:
+ /csstype@3.1.0:
resolution: {integrity: sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==}
- /cypress/10.3.0:
- resolution: {integrity: sha512-txkQWKzvBVnWdCuKs5Xc08gjpO89W2Dom2wpZgT9zWZT5jXxqPIxqP/NC1YArtkpmp3fN5HW8aDjYBizHLUFvg==}
- engines: {node: '>=12.0.0'}
+ /cypress@13.7.0:
+ resolution: {integrity: sha512-UimjRSJJYdTlvkChcdcfywKJ6tUYuwYuk/n1uMMglrvi+ZthNhoRYcxnWgTqUtkl17fXrPAsD5XT2rcQYN1xKA==}
+ engines: {node: ^16.0.0 || ^18.0.0 || >=20.0.0}
hasBin: true
requiresBuild: true
dependencies:
- '@cypress/request': 2.88.10
- '@cypress/xvfb': 1.2.4_supports-color@8.1.1
- '@types/node': 14.18.22
+ '@cypress/request': 3.0.1
+ '@cypress/xvfb': 1.2.4(supports-color@8.1.1)
'@types/sinonjs__fake-timers': 8.1.1
'@types/sizzle': 2.3.3
arch: 2.2.0
@@ -3866,61 +2954,66 @@ packages:
check-more-types: 2.24.0
cli-cursor: 3.1.0
cli-table3: 0.6.2
- commander: 5.1.0
+ commander: 6.2.1
common-tags: 1.8.2
dayjs: 1.11.3
- debug: 4.3.4_supports-color@8.1.1
+ debug: 4.3.4(supports-color@8.1.1)
enquirer: 2.3.6
- eventemitter2: 6.4.6
+ eventemitter2: 6.4.7
execa: 4.1.0
executable: 4.1.1
- extract-zip: 2.0.1_supports-color@8.1.1
+ extract-zip: 2.0.1(supports-color@8.1.1)
figures: 3.2.0
fs-extra: 9.1.0
getos: 3.2.1
is-ci: 3.0.1
is-installed-globally: 0.4.0
lazy-ass: 1.6.0
- listr2: 3.14.0_enquirer@2.3.6
+ listr2: 3.14.0(enquirer@2.3.6)
lodash: 4.17.21
log-symbols: 4.1.0
- minimist: 1.2.6
+ minimist: 1.2.8
ospath: 1.2.2
pretty-bytes: 5.6.0
+ process: 0.11.10
proxy-from-env: 1.0.0
request-progress: 3.0.0
- semver: 7.3.7
+ semver: 7.5.4
supports-color: 8.1.1
tmp: 0.2.1
untildify: 4.0.0
yauzl: 2.10.0
dev: true
- /dashdash/1.14.1:
+ /dashdash@1.14.1:
resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==}
engines: {node: '>=0.10'}
dependencies:
assert-plus: 1.0.0
dev: true
- /data-urls/3.0.2:
- resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==}
- engines: {node: '>=12'}
+ /data-uri-to-buffer@4.0.1:
+ resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==}
+ engines: {node: '>= 12'}
+ dev: true
+
+ /data-urls@5.0.0:
+ resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==}
+ engines: {node: '>=18'}
dependencies:
- abab: 2.0.6
- whatwg-mimetype: 3.0.0
- whatwg-url: 11.0.0
+ whatwg-mimetype: 4.0.0
+ whatwg-url: 14.0.0
dev: true
- /dayjs/1.11.3:
+ /dayjs@1.11.3:
resolution: {integrity: sha512-xxwlswWOlGhzgQ4TKzASQkUhqERI3egRNqgV4ScR8wlANA/A9tZ7miXa44vTTKEq5l7vWoL5G57bG3zA+Kow0A==}
dev: true
- /de-indent/1.0.2:
+ /de-indent@1.0.2:
resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
dev: true
- /debug/3.2.7_supports-color@8.1.1:
+ /debug@3.2.7(supports-color@8.1.1):
resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
peerDependencies:
supports-color: '*'
@@ -3932,31 +3025,7 @@ packages:
supports-color: 8.1.1
dev: true
- /debug/4.3.2:
- resolution: {integrity: sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==}
- engines: {node: '>=6.0'}
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
- dependencies:
- ms: 2.1.2
- dev: true
-
- /debug/4.3.4:
- resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
- engines: {node: '>=6.0'}
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
- dependencies:
- ms: 2.1.2
- dev: true
-
- /debug/4.3.4_supports-color@8.1.1:
+ /debug@4.3.4(supports-color@8.1.1):
resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
engines: {node: '>=6.0'}
peerDependencies:
@@ -3969,411 +3038,178 @@ packages:
supports-color: 8.1.1
dev: true
- /decimal.js/10.3.1:
- resolution: {integrity: sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==}
+ /decimal.js@10.4.3:
+ resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==}
dev: true
- /deep-eql/3.0.1:
- resolution: {integrity: sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==}
- engines: {node: '>=0.12'}
+ /deep-eql@4.1.3:
+ resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==}
+ engines: {node: '>=6'}
dependencies:
type-detect: 4.0.8
dev: true
- /deep-is/0.1.4:
- resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
- dev: true
-
- /define-properties/1.1.4:
- resolution: {integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==}
- engines: {node: '>= 0.4'}
- dependencies:
- has-property-descriptors: 1.0.0
- object-keys: 1.1.1
- dev: true
-
- /delayed-stream/1.0.0:
+ /delayed-stream@1.0.0:
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
engines: {node: '>=0.4.0'}
dev: true
- /dir-glob/3.0.1:
+ /diff-sequences@29.6.3:
+ resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ dev: true
+
+ /dir-glob@3.0.1:
resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
engines: {node: '>=8'}
dependencies:
path-type: 4.0.0
dev: true
- /dom-event-types/1.1.0:
+ /dom-event-types@1.1.0:
resolution: {integrity: sha512-jNCX+uNJ3v38BKvPbpki6j5ItVlnSqVV6vDWGS6rExzCMjsc39frLjm1n91o6YaKK6AZl0wLloItW6C6mr61BQ==}
dev: true
- /domexception/4.0.0:
- resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==}
- engines: {node: '>=12'}
- dependencies:
- webidl-conversions: 7.0.0
- dev: true
-
- /duplexer/0.1.2:
+ /duplexer@0.1.2:
resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
dev: true
- /eastasianwidth/0.2.0:
+ /eastasianwidth@0.2.0:
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
dev: true
- /ecc-jsbn/0.1.2:
+ /ecc-jsbn@0.1.2:
resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==}
dependencies:
jsbn: 0.1.1
safer-buffer: 2.1.2
dev: true
- /editorconfig/0.15.3:
- resolution: {integrity: sha512-M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g==}
+ /editorconfig@1.0.4:
+ resolution: {integrity: sha512-L9Qe08KWTlqYMVvMcTIvMAdl1cDUubzRNYL+WfA4bLDMHe4nemKkpmYzkznE1FwLKu0EEmy6obgQKzMJrg4x9Q==}
+ engines: {node: '>=14'}
hasBin: true
dependencies:
- commander: 2.20.3
- lru-cache: 4.1.5
- semver: 5.7.1
- sigmund: 1.0.1
+ '@one-ini/wasm': 0.1.1
+ commander: 10.0.1
+ minimatch: 9.0.1
+ semver: 7.5.4
+ dev: true
+
+ /electron-to-chromium@1.4.616:
+ resolution: {integrity: sha512-1n7zWYh8eS0L9Uy+GskE0lkBUNK83cXTVJI0pU3mGprFsbfSdAc15VTFbo+A+Bq4pwstmL30AVcEU3Fo463lNg==}
dev: true
- /electron-to-chromium/1.4.194:
- resolution: {integrity: sha512-ola5UH0xAP1oYY0FFUsPvwtucEzCQHucXnT7PQ1zjHJMccZhCDktEugI++JUR3YuIs7Ff7afz+OVEhVAIMhLAQ==}
+ /electron-to-chromium@1.4.704:
+ resolution: {integrity: sha512-OK01+86Qvby1V6cTiowVbhp25aX4DLZnwar+NocAOXdzKAByd+jq5156bmo4kHwevWMknznW18Y/Svfk2dU91A==}
dev: true
- /emoji-regex/8.0.0:
+ /emoji-regex@10.3.0:
+ resolution: {integrity: sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==}
+ dev: true
+
+ /emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
dev: true
- /emoji-regex/9.2.2:
+ /emoji-regex@9.2.2:
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
dev: true
- /end-of-stream/1.4.4:
+ /end-of-stream@1.4.4:
resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
dependencies:
once: 1.4.0
dev: true
- /enquirer/2.3.6:
+ /enquirer@2.3.6:
resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==}
engines: {node: '>=8.6'}
dependencies:
ansi-colors: 4.1.3
dev: true
- /entities/4.3.1:
+ /entities@4.3.1:
resolution: {integrity: sha512-o4q/dYJlmyjP2zfnaWDUC6A3BQFmVTX+tZPezK7k0GLSU9QYCauscf5Y+qcEPzKL+EixVouYDgLQK5H9GrLpkg==}
engines: {node: '>=0.12'}
dev: true
- /error-ex/1.3.2:
- resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
- dependencies:
- is-arrayish: 0.2.1
- dev: true
-
- /es-abstract/1.20.1:
- resolution: {integrity: sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- es-to-primitive: 1.2.1
- function-bind: 1.1.1
- function.prototype.name: 1.1.5
- get-intrinsic: 1.1.2
- get-symbol-description: 1.0.0
- has: 1.0.3
- has-property-descriptors: 1.0.0
- has-symbols: 1.0.3
- internal-slot: 1.0.3
- is-callable: 1.2.4
- is-negative-zero: 2.0.2
- is-regex: 1.1.4
- is-shared-array-buffer: 1.0.2
- is-string: 1.0.7
- is-weakref: 1.0.2
- object-inspect: 1.12.2
- object-keys: 1.1.1
- object.assign: 4.1.2
- regexp.prototype.flags: 1.4.3
- string.prototype.trimend: 1.0.5
- string.prototype.trimstart: 1.0.5
- unbox-primitive: 1.0.2
- dev: true
-
- /es-to-primitive/1.2.1:
- resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
- engines: {node: '>= 0.4'}
- dependencies:
- is-callable: 1.2.4
- is-date-object: 1.0.5
- is-symbol: 1.0.4
- dev: true
-
- /esbuild-android-64/0.14.49:
- resolution: {integrity: sha512-vYsdOTD+yi+kquhBiFWl3tyxnj2qZJsl4tAqwhT90ktUdnyTizgle7TjNx6Ar1bN7wcwWqZ9QInfdk2WVagSww==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-android-arm64/0.14.49:
- resolution: {integrity: sha512-g2HGr/hjOXCgSsvQZ1nK4nW/ei8JUx04Li74qub9qWrStlysaVmadRyTVuW32FGIpLQyc5sUjjZopj49eGGM2g==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-darwin-64/0.14.49:
- resolution: {integrity: sha512-3rvqnBCtX9ywso5fCHixt2GBCUsogNp9DjGmvbBohh31Ces34BVzFltMSxJpacNki96+WIcX5s/vum+ckXiLYg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-darwin-arm64/0.14.49:
- resolution: {integrity: sha512-XMaqDxO846srnGlUSJnwbijV29MTKUATmOLyQSfswbK/2X5Uv28M9tTLUJcKKxzoo9lnkYPsx2o8EJcTYwCs/A==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-freebsd-64/0.14.49:
- resolution: {integrity: sha512-NJ5Q6AjV879mOHFri+5lZLTp5XsO2hQ+KSJYLbfY9DgCu8s6/Zl2prWXVANYTeCDLlrIlNNYw8y34xqyLDKOmQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-freebsd-arm64/0.14.49:
- resolution: {integrity: sha512-lFLtgXnAc3eXYqj5koPlBZvEbBSOSUbWO3gyY/0+4lBdRqELyz4bAuamHvmvHW5swJYL7kngzIZw6kdu25KGOA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-linux-32/0.14.49:
- resolution: {integrity: sha512-zTTH4gr2Kb8u4QcOpTDVn7Z8q7QEIvFl/+vHrI3cF6XOJS7iEI1FWslTo3uofB2+mn6sIJEQD9PrNZKoAAMDiA==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-linux-64/0.14.49:
- resolution: {integrity: sha512-hYmzRIDzFfLrB5c1SknkxzM8LdEUOusp6M2TnuQZJLRtxTgyPnZZVtyMeCLki0wKgYPXkFsAVhi8vzo2mBNeTg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-linux-arm/0.14.49:
- resolution: {integrity: sha512-iE3e+ZVv1Qz1Sy0gifIsarJMQ89Rpm9mtLSRtG3AH0FPgAzQ5Z5oU6vYzhc/3gSPi2UxdCOfRhw2onXuFw/0lg==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-linux-arm64/0.14.49:
- resolution: {integrity: sha512-KLQ+WpeuY+7bxukxLz5VgkAAVQxUv67Ft4DmHIPIW+2w3ObBPQhqNoeQUHxopoW/aiOn3m99NSmSV+bs4BSsdA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-linux-mips64le/0.14.49:
- resolution: {integrity: sha512-n+rGODfm8RSum5pFIqFQVQpYBw+AztL8s6o9kfx7tjfK0yIGF6tm5HlG6aRjodiiKkH2xAiIM+U4xtQVZYU4rA==}
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-linux-ppc64le/0.14.49:
- resolution: {integrity: sha512-WP9zR4HX6iCBmMFH+XHHng2LmdoIeUmBpL4aL2TR8ruzXyT4dWrJ5BSbT8iNo6THN8lod6GOmYDLq/dgZLalGw==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-linux-riscv64/0.14.49:
- resolution: {integrity: sha512-h66ORBz+Dg+1KgLvzTVQEA1LX4XBd1SK0Fgbhhw4akpG/YkN8pS6OzYI/7SGENiN6ao5hETRDSkVcvU9NRtkMQ==}
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-linux-s390x/0.14.49:
- resolution: {integrity: sha512-DhrUoFVWD+XmKO1y7e4kNCqQHPs6twz6VV6Uezl/XHYGzM60rBewBF5jlZjG0nCk5W/Xy6y1xWeopkrhFFM0sQ==}
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-netbsd-64/0.14.49:
- resolution: {integrity: sha512-BXaUwFOfCy2T+hABtiPUIpWjAeWK9P8O41gR4Pg73hpzoygVGnj0nI3YK4SJhe52ELgtdgWP/ckIkbn2XaTxjQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-openbsd-64/0.14.49:
- resolution: {integrity: sha512-lP06UQeLDGmVPw9Rg437Btu6J9/BmyhdoefnQ4gDEJTtJvKtQaUcOQrhjTq455ouZN4EHFH1h28WOJVANK41kA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-plugin-license/1.2.2_esbuild@0.14.49:
- resolution: {integrity: sha512-sqa8V1pB6wr6L8lPQ+lD73ARTfi824H/smyUd4eBwvc+yGK0ZvfupXDqgmrFpP5zu6aTj8pMlnoowuDOjKGX5A==}
- peerDependencies:
- esbuild: '*'
- dependencies:
- esbuild: 0.14.49
- dev: true
-
- /esbuild-sunos-64/0.14.49:
- resolution: {integrity: sha512-4c8Zowp+V3zIWje329BeLbGh6XI9c/rqARNaj5yPHdC61pHI9UNdDxT3rePPJeWcEZVKjkiAS6AP6kiITp7FSw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-windows-32/0.14.49:
- resolution: {integrity: sha512-q7Rb+J9yHTeKr9QTPDYkqfkEj8/kcKz9lOabDuvEXpXuIcosWCJgo5Z7h/L4r7rbtTH4a8U2FGKb6s1eeOHmJA==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
- requiresBuild: true
+ /entities@4.5.0:
+ resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
+ engines: {node: '>=0.12'}
dev: true
- optional: true
- /esbuild-windows-64/0.14.49:
- resolution: {integrity: sha512-+Cme7Ongv0UIUTniPqfTX6mJ8Deo7VXw9xN0yJEN1lQMHDppTNmKwAM3oGbD/Vqff+07K2gN0WfNkMohmG+dVw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
- requiresBuild: true
+ /error-ex@1.3.2:
+ resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
+ dependencies:
+ is-arrayish: 0.2.1
dev: true
- optional: true
- /esbuild-windows-arm64/0.14.49:
- resolution: {integrity: sha512-v+HYNAXzuANrCbbLFJ5nmO3m5y2PGZWLe3uloAkLt87aXiO2mZr3BTmacZdjwNkNEHuH3bNtN8cak+mzVjVPfA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
- requiresBuild: true
+ /esbuild-plugin-license@1.2.2(esbuild@0.19.10):
+ resolution: {integrity: sha512-sqa8V1pB6wr6L8lPQ+lD73ARTfi824H/smyUd4eBwvc+yGK0ZvfupXDqgmrFpP5zu6aTj8pMlnoowuDOjKGX5A==}
+ peerDependencies:
+ esbuild: '*'
+ dependencies:
+ esbuild: 0.19.10
dev: true
- optional: true
- /esbuild/0.14.49:
- resolution: {integrity: sha512-/TlVHhOaq7Yz8N1OJrjqM3Auzo5wjvHFLk+T8pIue+fhnhIMpfAzsG6PLVMbFveVxqD2WOp3QHei+52IMUNmCw==}
+ /esbuild@0.19.10:
+ resolution: {integrity: sha512-S1Y27QGt/snkNYrRcswgRFqZjaTG5a5xM3EQo97uNBnH505pdzSNe/HLBq1v0RO7iK/ngdbhJB6mDAp0OK+iUA==}
engines: {node: '>=12'}
hasBin: true
requiresBuild: true
optionalDependencies:
- esbuild-android-64: 0.14.49
- esbuild-android-arm64: 0.14.49
- esbuild-darwin-64: 0.14.49
- esbuild-darwin-arm64: 0.14.49
- esbuild-freebsd-64: 0.14.49
- esbuild-freebsd-arm64: 0.14.49
- esbuild-linux-32: 0.14.49
- esbuild-linux-64: 0.14.49
- esbuild-linux-arm: 0.14.49
- esbuild-linux-arm64: 0.14.49
- esbuild-linux-mips64le: 0.14.49
- esbuild-linux-ppc64le: 0.14.49
- esbuild-linux-riscv64: 0.14.49
- esbuild-linux-s390x: 0.14.49
- esbuild-netbsd-64: 0.14.49
- esbuild-openbsd-64: 0.14.49
- esbuild-sunos-64: 0.14.49
- esbuild-windows-32: 0.14.49
- esbuild-windows-64: 0.14.49
- esbuild-windows-arm64: 0.14.49
- dev: true
-
- /escalade/3.1.1:
+ '@esbuild/aix-ppc64': 0.19.10
+ '@esbuild/android-arm': 0.19.10
+ '@esbuild/android-arm64': 0.19.10
+ '@esbuild/android-x64': 0.19.10
+ '@esbuild/darwin-arm64': 0.19.10
+ '@esbuild/darwin-x64': 0.19.10
+ '@esbuild/freebsd-arm64': 0.19.10
+ '@esbuild/freebsd-x64': 0.19.10
+ '@esbuild/linux-arm': 0.19.10
+ '@esbuild/linux-arm64': 0.19.10
+ '@esbuild/linux-ia32': 0.19.10
+ '@esbuild/linux-loong64': 0.19.10
+ '@esbuild/linux-mips64el': 0.19.10
+ '@esbuild/linux-ppc64': 0.19.10
+ '@esbuild/linux-riscv64': 0.19.10
+ '@esbuild/linux-s390x': 0.19.10
+ '@esbuild/linux-x64': 0.19.10
+ '@esbuild/netbsd-x64': 0.19.10
+ '@esbuild/openbsd-x64': 0.19.10
+ '@esbuild/sunos-x64': 0.19.10
+ '@esbuild/win32-arm64': 0.19.10
+ '@esbuild/win32-ia32': 0.19.10
+ '@esbuild/win32-x64': 0.19.10
+ dev: true
+
+ /escalade@3.1.1:
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
engines: {node: '>=6'}
dev: true
- /escape-string-regexp/1.0.5:
+ /escape-string-regexp@1.0.5:
resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
engines: {node: '>=0.8.0'}
dev: true
- /escodegen/2.0.0:
- resolution: {integrity: sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==}
- engines: {node: '>=6.0'}
- hasBin: true
- dependencies:
- esprima: 4.0.1
- estraverse: 5.3.0
- esutils: 2.0.3
- optionator: 0.8.3
- optionalDependencies:
- source-map: 0.6.1
- dev: true
-
- /esprima/4.0.1:
- resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
- engines: {node: '>=4'}
- hasBin: true
- dev: true
-
- /estraverse/5.3.0:
- resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
- engines: {node: '>=4.0'}
+ /estree-walker@2.0.2:
+ resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
dev: true
- /estree-walker/2.0.2:
- resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
+ /estree-walker@3.0.3:
+ resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
+ dependencies:
+ '@types/estree': 1.0.0
dev: true
- /esutils/2.0.3:
+ /esutils@2.0.3:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
engines: {node: '>=0.10.0'}
dev: true
- /event-stream/3.3.4:
+ /event-stream@3.3.4:
resolution: {integrity: sha1-SrTJoPWlTbkzi0w02Gv86PSzVXE=}
dependencies:
duplexer: 0.1.2
@@ -4385,11 +3221,15 @@ packages:
through: 2.3.8
dev: true
- /eventemitter2/6.4.6:
- resolution: {integrity: sha512-OHqo4wbHX5VbvlbB6o6eDwhYmiTjrpWACjF8Pmof/GTD6rdBNdZFNck3xlhqOiQFGCOoq3uzHvA0cQpFHIGVAQ==}
+ /eventemitter2@6.4.7:
+ resolution: {integrity: sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==}
+ dev: true
+
+ /eventemitter3@5.0.1:
+ resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==}
dev: true
- /execa/4.1.0:
+ /execa@4.1.0:
resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==}
engines: {node: '>=10'}
dependencies:
@@ -4404,7 +3244,7 @@ packages:
strip-final-newline: 2.0.0
dev: true
- /execa/5.1.1:
+ /execa@5.1.1:
resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
engines: {node: '>=10'}
dependencies:
@@ -4419,45 +3259,45 @@ packages:
strip-final-newline: 2.0.0
dev: true
- /execa/6.1.0:
- resolution: {integrity: sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ /execa@8.0.1:
+ resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
+ engines: {node: '>=16.17'}
dependencies:
cross-spawn: 7.0.3
- get-stream: 6.0.1
- human-signals: 3.0.1
+ get-stream: 8.0.1
+ human-signals: 5.0.0
is-stream: 3.0.0
merge-stream: 2.0.0
npm-run-path: 5.1.0
onetime: 6.0.0
- signal-exit: 3.0.7
+ signal-exit: 4.1.0
strip-final-newline: 3.0.0
dev: true
- /executable/4.1.1:
+ /executable@4.1.1:
resolution: {integrity: sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==}
engines: {node: '>=4'}
dependencies:
pify: 2.3.0
dev: true
- /extend-shallow/2.0.1:
+ /extend-shallow@2.0.1:
resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==}
engines: {node: '>=0.10.0'}
dependencies:
is-extendable: 0.1.1
dev: true
- /extend/3.0.2:
+ /extend@3.0.2:
resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
dev: true
- /extract-zip/2.0.1_supports-color@8.1.1:
+ /extract-zip@2.0.1(supports-color@8.1.1):
resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==}
engines: {node: '>= 10.17.0'}
hasBin: true
dependencies:
- debug: 4.3.4_supports-color@8.1.1
+ debug: 4.3.4(supports-color@8.1.1)
get-stream: 5.2.0
yauzl: 2.10.0
optionalDependencies:
@@ -4466,13 +3306,13 @@ packages:
- supports-color
dev: true
- /extsprintf/1.3.0:
+ /extsprintf@1.3.0:
resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==}
engines: {'0': node >=0.6.0}
dev: true
- /fast-glob/3.2.11:
- resolution: {integrity: sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==}
+ /fast-glob@3.3.2:
+ resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
engines: {node: '>=8.6.0'}
dependencies:
'@nodelib/fs.stat': 2.0.5
@@ -4482,37 +3322,41 @@ packages:
micromatch: 4.0.5
dev: true
- /fast-levenshtein/2.0.6:
- resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
- dev: true
-
- /fastq/1.13.0:
+ /fastq@1.13.0:
resolution: {integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==}
dependencies:
reusify: 1.0.4
dev: true
- /fd-slicer/1.1.0:
+ /fd-slicer@1.1.0:
resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==}
dependencies:
pend: 1.2.0
dev: true
- /figures/3.2.0:
+ /fetch-blob@3.2.0:
+ resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==}
+ engines: {node: ^12.20 || >= 14.13}
+ dependencies:
+ node-domexception: 1.0.0
+ web-streams-polyfill: 3.3.2
+ dev: true
+
+ /figures@3.2.0:
resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==}
engines: {node: '>=8'}
dependencies:
escape-string-regexp: 1.0.5
dev: true
- /fill-range/7.0.1:
+ /fill-range@7.0.1:
resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
engines: {node: '>=8'}
dependencies:
to-regex-range: 5.0.1
dev: true
- /follow-redirects/1.15.1_debug@4.3.2:
+ /follow-redirects@1.15.1(debug@4.3.4):
resolution: {integrity: sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==}
engines: {node: '>=4.0'}
peerDependencies:
@@ -4521,14 +3365,22 @@ packages:
debug:
optional: true
dependencies:
- debug: 4.3.2
+ debug: 4.3.4(supports-color@8.1.1)
dev: true
- /forever-agent/0.6.1:
+ /foreground-child@3.1.1:
+ resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==}
+ engines: {node: '>=14'}
+ dependencies:
+ cross-spawn: 7.0.3
+ signal-exit: 4.1.0
+ dev: true
+
+ /forever-agent@0.6.1:
resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==}
dev: true
- /form-data/2.3.3:
+ /form-data@2.3.3:
resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==}
engines: {node: '>= 0.12'}
dependencies:
@@ -4537,8 +3389,8 @@ packages:
mime-types: 2.1.35
dev: true
- /form-data/3.0.1:
- resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==}
+ /form-data@4.0.0:
+ resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
engines: {node: '>= 6'}
dependencies:
asynckit: 0.4.0
@@ -4546,29 +3398,27 @@ packages:
mime-types: 2.1.35
dev: true
- /form-data/4.0.0:
- resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
- engines: {node: '>= 6'}
+ /formdata-polyfill@4.0.10:
+ resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==}
+ engines: {node: '>=12.20.0'}
dependencies:
- asynckit: 0.4.0
- combined-stream: 1.0.8
- mime-types: 2.1.35
+ fetch-blob: 3.2.0
dev: true
- /from/0.1.7:
+ /from@0.1.7:
resolution: {integrity: sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==}
dev: true
- /fs-extra/10.1.0:
- resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
- engines: {node: '>=12'}
+ /fs-extra@11.2.0:
+ resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}
+ engines: {node: '>=14.14'}
dependencies:
graceful-fs: 4.2.10
jsonfile: 6.1.0
universalify: 2.0.0
dev: true
- /fs-extra/9.1.0:
+ /fs-extra@9.1.0:
resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==}
engines: {node: '>=10'}
dependencies:
@@ -4578,46 +3428,42 @@ packages:
universalify: 2.0.0
dev: true
- /fs.realpath/1.0.0:
+ /fs.realpath@1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
dev: true
- /fsevents/2.3.2:
- resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
+ /fsevents@2.3.3:
+ resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
requiresBuild: true
dev: true
optional: true
- /function-bind/1.1.1:
+ /function-bind@1.1.1:
resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
dev: true
- /function.prototype.name/1.1.5:
- resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.1.4
- es-abstract: 1.20.1
- functions-have-names: 1.2.3
- dev: true
-
- /functions-have-names/1.2.3:
- resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
+ /fx@31.0.0:
+ resolution: {integrity: sha512-OoeYSPKqNKmfnH4s+rGYI0c8OZmqqOOXsUtqy0YyHqQQoQSDiDs3m3M9uXKx5OQR+jDx7/FhYqpO3kl/As/xgg==}
+ hasBin: true
dev: true
- /gensync/1.0.0-beta.2:
+ /gensync@1.0.0-beta.2:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
engines: {node: '>=6.9.0'}
dev: true
- /get-func-name/2.0.0:
- resolution: {integrity: sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==}
+ /get-east-asian-width@1.2.0:
+ resolution: {integrity: sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==}
+ engines: {node: '>=18'}
+ dev: true
+
+ /get-func-name@2.0.2:
+ resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==}
dev: true
- /get-intrinsic/1.1.2:
+ /get-intrinsic@1.1.2:
resolution: {integrity: sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==}
dependencies:
function-bind: 1.1.1
@@ -4625,46 +3471,55 @@ packages:
has-symbols: 1.0.3
dev: true
- /get-stream/5.2.0:
+ /get-stream@5.2.0:
resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==}
engines: {node: '>=8'}
dependencies:
pump: 3.0.0
dev: true
- /get-stream/6.0.1:
+ /get-stream@6.0.1:
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
engines: {node: '>=10'}
dev: true
- /get-symbol-description/1.0.0:
- resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.1.2
+ /get-stream@8.0.1:
+ resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
+ engines: {node: '>=16'}
dev: true
- /getos/3.2.1:
+ /getos@3.2.1:
resolution: {integrity: sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==}
dependencies:
async: 3.2.4
dev: true
- /getpass/0.1.7:
+ /getpass@0.1.7:
resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==}
dependencies:
assert-plus: 1.0.0
dev: true
- /glob-parent/5.1.2:
+ /glob-parent@5.1.2:
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
engines: {node: '>= 6'}
dependencies:
is-glob: 4.0.3
dev: true
- /glob/7.2.3:
+ /glob@10.3.10:
+ resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==}
+ engines: {node: '>=16 || 14 >=14.17'}
+ hasBin: true
+ dependencies:
+ foreground-child: 3.1.1
+ jackspeak: 2.3.6
+ minimatch: 9.0.3
+ minipass: 7.0.4
+ path-scurry: 1.10.1
+ dev: true
+
+ /glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
dependencies:
fs.realpath: 1.0.0
@@ -4675,106 +3530,90 @@ packages:
path-is-absolute: 1.0.1
dev: true
- /global-dirs/3.0.0:
+ /global-dirs@3.0.0:
resolution: {integrity: sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA==}
engines: {node: '>=10'}
dependencies:
ini: 2.0.0
dev: true
- /globals/11.12.0:
+ /globals@11.12.0:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
engines: {node: '>=4'}
dev: true
- /globby/12.2.0:
- resolution: {integrity: sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==}
+ /globby@13.2.2:
+ resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
- array-union: 3.0.1
dir-glob: 3.0.1
- fast-glob: 3.2.11
- ignore: 5.2.0
+ fast-glob: 3.3.2
+ ignore: 5.3.0
merge2: 1.4.1
slash: 4.0.0
dev: true
- /graceful-fs/4.2.10:
+ /graceful-fs@4.2.10:
resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==}
dev: true
- /has-bigints/1.0.2:
- resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
- dev: true
-
- /has-flag/3.0.0:
+ /has-flag@3.0.0:
resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
engines: {node: '>=4'}
dev: true
- /has-flag/4.0.0:
+ /has-flag@4.0.0:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
dev: true
- /has-property-descriptors/1.0.0:
- resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==}
- dependencies:
- get-intrinsic: 1.1.2
- dev: true
-
- /has-symbols/1.0.3:
+ /has-symbols@1.0.3:
resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
engines: {node: '>= 0.4'}
dev: true
- /has-tostringtag/1.0.0:
- resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- has-symbols: 1.0.3
- dev: true
-
- /has/1.0.3:
+ /has@1.0.3:
resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
engines: {node: '>= 0.4.0'}
dependencies:
function-bind: 1.1.1
dev: true
- /he/1.2.0:
+ /he@1.2.0:
resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
hasBin: true
dev: true
- /hosted-git-info/2.8.9:
- resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
+ /hosted-git-info@7.0.1:
+ resolution: {integrity: sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+ dependencies:
+ lru-cache: 10.1.0
dev: true
- /html-encoding-sniffer/3.0.0:
- resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==}
- engines: {node: '>=12'}
+ /html-encoding-sniffer@4.0.0:
+ resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==}
+ engines: {node: '>=18'}
dependencies:
- whatwg-encoding: 2.0.0
+ whatwg-encoding: 3.1.1
dev: true
- /html-tags/2.0.0:
+ /html-tags@2.0.0:
resolution: {integrity: sha512-+Il6N8cCo2wB/Vd3gqy/8TZhTD3QvcVeQLCnZiGkGCH3JP28IgGAY41giccp2W4R3jfyJPAP318FQTa1yU7K7g==}
engines: {node: '>=4'}
dev: true
- /http-proxy-agent/5.0.0:
- resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==}
- engines: {node: '>= 6'}
+ /http-proxy-agent@7.0.0:
+ resolution: {integrity: sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==}
+ engines: {node: '>= 14'}
dependencies:
- '@tootallnate/once': 2.0.0
- agent-base: 6.0.2
- debug: 4.3.4
+ agent-base: 7.1.0
+ debug: 4.3.4(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
dev: true
- /http-signature/1.3.6:
+ /http-signature@1.3.6:
resolution: {integrity: sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==}
engines: {node: '>=0.10'}
dependencies:
@@ -4783,162 +3622,134 @@ packages:
sshpk: 1.17.0
dev: true
- /https-proxy-agent/5.0.1:
- resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
- engines: {node: '>= 6'}
+ /https-proxy-agent@7.0.2:
+ resolution: {integrity: sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==}
+ engines: {node: '>= 14'}
dependencies:
- agent-base: 6.0.2
- debug: 4.3.4
+ agent-base: 7.1.0
+ debug: 4.3.4(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
dev: true
- /human-signals/1.1.1:
+ /human-signals@1.1.1:
resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==}
engines: {node: '>=8.12.0'}
dev: true
- /human-signals/2.1.0:
+ /human-signals@2.1.0:
resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
engines: {node: '>=10.17.0'}
dev: true
- /human-signals/3.0.1:
- resolution: {integrity: sha512-rQLskxnM/5OCldHo+wNXbpVgDn5A17CUoKX+7Sokwaknlq7CdSnphy0W39GU8dw59XiCXmFXDg4fRuckQRKewQ==}
- engines: {node: '>=12.20.0'}
+ /human-signals@5.0.0:
+ resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
+ engines: {node: '>=16.17.0'}
dev: true
- /husky/8.0.1:
- resolution: {integrity: sha512-xs7/chUH/CKdOCs7Zy0Aev9e/dKOMZf3K1Az1nar3tzlv0jfqnYtu235bstsWTmXOR0EfINrPa97yy4Lz6RiKw==}
- engines: {node: '>=14'}
+ /husky@9.0.11:
+ resolution: {integrity: sha512-AB6lFlbwwyIqMdHYhwPe+kjOC3Oc5P3nThEoW/AaO2BX3vJDjWPFxYLxokUZOo6RNX20He3AaT8sESs9NJcmEw==}
+ engines: {node: '>=18'}
hasBin: true
dev: true
- /iconv-lite/0.6.3:
+ /iconv-lite@0.6.3:
resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
engines: {node: '>=0.10.0'}
dependencies:
safer-buffer: 2.1.2
dev: true
- /ieee754/1.2.1:
+ /ieee754@1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
dev: true
- /ignore/5.2.0:
- resolution: {integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==}
+ /ignore@5.3.0:
+ resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==}
engines: {node: '>= 4'}
dev: true
- /indent-string/4.0.0:
+ /indent-string@4.0.0:
resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
engines: {node: '>=8'}
dev: true
- /inflight/1.0.6:
+ /inflight@1.0.6:
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
dependencies:
once: 1.4.0
wrappy: 1.0.2
dev: true
- /inherits/2.0.4:
+ /inherits@2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
dev: true
- /ini/1.3.8:
+ /ini@1.3.8:
resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
dev: true
- /ini/2.0.0:
+ /ini@2.0.0:
resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==}
engines: {node: '>=10'}
dev: true
- /internal-slot/1.0.3:
- resolution: {integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==}
- engines: {node: '>= 0.4'}
- dependencies:
- get-intrinsic: 1.1.2
- has: 1.0.3
- side-channel: 1.0.4
- dev: true
-
- /is-arrayish/0.2.1:
+ /is-arrayish@0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
dev: true
- /is-bigint/1.0.4:
- resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
- dependencies:
- has-bigints: 1.0.2
- dev: true
-
- /is-boolean-object/1.1.2:
- resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- has-tostringtag: 1.0.0
- dev: true
-
- /is-buffer/1.1.6:
+ /is-buffer@1.1.6:
resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==}
dev: true
- /is-callable/1.2.4:
- resolution: {integrity: sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==}
- engines: {node: '>= 0.4'}
- dev: true
-
- /is-ci/3.0.1:
+ /is-ci@3.0.1:
resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==}
hasBin: true
dependencies:
ci-info: 3.3.2
dev: true
- /is-core-module/2.9.0:
+ /is-core-module@2.9.0:
resolution: {integrity: sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==}
dependencies:
has: 1.0.3
dev: true
- /is-date-object/1.0.5:
- resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- has-tostringtag: 1.0.0
- dev: true
-
- /is-extendable/0.1.1:
+ /is-extendable@0.1.1:
resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==}
engines: {node: '>=0.10.0'}
dev: true
- /is-extglob/2.1.1:
+ /is-extglob@2.1.1:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
dev: true
- /is-fullwidth-code-point/3.0.0:
+ /is-fullwidth-code-point@3.0.0:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
engines: {node: '>=8'}
dev: true
- /is-fullwidth-code-point/4.0.0:
+ /is-fullwidth-code-point@4.0.0:
resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==}
engines: {node: '>=12'}
dev: true
- /is-glob/4.0.3:
+ /is-fullwidth-code-point@5.0.0:
+ resolution: {integrity: sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==}
+ engines: {node: '>=18'}
+ dependencies:
+ get-east-asian-width: 1.2.0
+ dev: true
+
+ /is-glob@4.0.3:
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
engines: {node: '>=0.10.0'}
dependencies:
is-extglob: 2.1.1
dev: true
- /is-installed-globally/0.4.0:
+ /is-installed-globally@0.4.0:
resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==}
engines: {node: '>=10'}
dependencies:
@@ -4946,194 +3757,165 @@ packages:
is-path-inside: 3.0.3
dev: true
- /is-negative-zero/2.0.2:
- resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==}
- engines: {node: '>= 0.4'}
- dev: true
-
- /is-number-object/1.0.7:
- resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- has-tostringtag: 1.0.0
- dev: true
-
- /is-number/7.0.0:
+ /is-number@7.0.0:
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
engines: {node: '>=0.12.0'}
dev: true
- /is-path-inside/3.0.3:
+ /is-path-inside@3.0.3:
resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
engines: {node: '>=8'}
dev: true
- /is-potential-custom-element-name/1.0.1:
+ /is-potential-custom-element-name@1.0.1:
resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
dev: true
- /is-regex/1.1.4:
- resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- has-tostringtag: 1.0.0
- dev: true
-
- /is-shared-array-buffer/1.0.2:
- resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==}
- dependencies:
- call-bind: 1.0.2
- dev: true
-
- /is-stream/2.0.1:
+ /is-stream@2.0.1:
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
engines: {node: '>=8'}
dev: true
- /is-stream/3.0.0:
+ /is-stream@3.0.0:
resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dev: true
- /is-string/1.0.7:
- resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
- engines: {node: '>= 0.4'}
- dependencies:
- has-tostringtag: 1.0.0
- dev: true
-
- /is-symbol/1.0.4:
- resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
- engines: {node: '>= 0.4'}
- dependencies:
- has-symbols: 1.0.3
- dev: true
-
- /is-typedarray/1.0.0:
+ /is-typedarray@1.0.0:
resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
dev: true
- /is-unicode-supported/0.1.0:
+ /is-unicode-supported@0.1.0:
resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
engines: {node: '>=10'}
dev: true
- /is-weakref/1.0.2:
- resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
- dependencies:
- call-bind: 1.0.2
- dev: true
-
- /is-whitespace/0.3.0:
+ /is-whitespace@0.3.0:
resolution: {integrity: sha512-RydPhl4S6JwAyj0JJjshWJEFG6hNye3pZFBRZaTUfZFwGHxzppNaNOVgQuS/E/SlhrApuMXrpnK1EEIXfdo3Dg==}
engines: {node: '>=0.10.0'}
dev: true
- /isexe/2.0.0:
+ /isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
dev: true
- /isstream/0.1.2:
+ /isstream@0.1.2:
resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==}
dev: true
- /joi/17.6.0:
- resolution: {integrity: sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw==}
+ /jackspeak@2.3.6:
+ resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==}
+ engines: {node: '>=14'}
+ dependencies:
+ '@isaacs/cliui': 8.0.2
+ optionalDependencies:
+ '@pkgjs/parseargs': 0.11.0
+ dev: true
+
+ /joi@17.11.0:
+ resolution: {integrity: sha512-NgB+lZLNoqISVy1rZocE9PZI36bL/77ie924Ri43yEvi9GUUMPeyVIr8KdFTMUlby1p0PBYMk9spIxEUQYqrJQ==}
dependencies:
'@hapi/hoek': 9.3.0
'@hapi/topo': 5.1.0
'@sideway/address': 4.1.4
- '@sideway/formula': 3.0.0
+ '@sideway/formula': 3.0.1
'@sideway/pinpoint': 2.0.0
dev: true
- /js-beautify/1.14.4:
- resolution: {integrity: sha512-+b4A9c3glceZEmxyIbxDOYB0ZJdReLvyU1077RqKsO4dZx9FUHjTOJn8VHwpg33QoucIykOiYbh7MfqBOghnrA==}
- engines: {node: '>=10'}
+ /js-beautify@1.14.11:
+ resolution: {integrity: sha512-rPogWqAfoYh1Ryqqh2agUpVfbxAhbjuN1SmU86dskQUKouRiggUTCO4+2ym9UPXllc2WAp0J+T5qxn7Um3lCdw==}
+ engines: {node: '>=14'}
hasBin: true
dependencies:
config-chain: 1.1.13
- editorconfig: 0.15.3
- glob: 7.2.3
- nopt: 5.0.0
+ editorconfig: 1.0.4
+ glob: 10.3.10
+ nopt: 7.2.0
dev: true
- /js-tokens/4.0.0:
+ /js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
dev: true
- /jsbn/0.1.1:
+ /js-tokens@8.0.3:
+ resolution: {integrity: sha512-UfJMcSJc+SEXEl9lH/VLHSZbThQyLpw1vLO1Lb+j4RWDvG3N2f7yj3PVQA3cmkTBNldJ9eFnM+xEXxHIXrYiJw==}
+ dev: true
+
+ /jsbn@0.1.1:
resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==}
dev: true
- /jsdom/20.0.0:
- resolution: {integrity: sha512-x4a6CKCgx00uCmP+QakBDFXwjAJ69IkkIWHmtmjd3wvXPcdOS44hfX2vqkOQrVrq8l9DhNNADZRXaCEWvgXtVA==}
- engines: {node: '>=14'}
+ /jsdom@24.0.0:
+ resolution: {integrity: sha512-UDS2NayCvmXSXVP6mpTj+73JnNQadZlr9N68189xib2tx5Mls7swlTNao26IoHv46BZJFvXygyRtyXd1feAk1A==}
+ engines: {node: '>=18'}
peerDependencies:
- canvas: ^2.5.0
+ canvas: ^2.11.2
peerDependenciesMeta:
canvas:
optional: true
dependencies:
- abab: 2.0.6
- acorn: 8.7.1
- acorn-globals: 6.0.0
- cssom: 0.5.0
- cssstyle: 2.3.0
- data-urls: 3.0.2
- decimal.js: 10.3.1
- domexception: 4.0.0
- escodegen: 2.0.0
+ cssstyle: 4.0.1
+ data-urls: 5.0.0
+ decimal.js: 10.4.3
form-data: 4.0.0
- html-encoding-sniffer: 3.0.0
- http-proxy-agent: 5.0.0
- https-proxy-agent: 5.0.1
+ html-encoding-sniffer: 4.0.0
+ http-proxy-agent: 7.0.0
+ https-proxy-agent: 7.0.2
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.1
- parse5: 7.0.0
+ nwsapi: 2.2.7
+ parse5: 7.1.2
+ rrweb-cssom: 0.6.0
saxes: 6.0.0
symbol-tree: 3.2.4
- tough-cookie: 4.0.0
- w3c-hr-time: 1.0.2
- w3c-xmlserializer: 3.0.0
+ tough-cookie: 4.1.3
+ w3c-xmlserializer: 5.0.0
webidl-conversions: 7.0.0
- whatwg-encoding: 2.0.0
- whatwg-mimetype: 3.0.0
- whatwg-url: 11.0.0
- ws: 8.8.1
- xml-name-validator: 4.0.0
+ whatwg-encoding: 3.1.1
+ whatwg-mimetype: 4.0.0
+ whatwg-url: 14.0.0
+ ws: 8.16.0
+ xml-name-validator: 5.0.0
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
dev: true
- /jsesc/2.5.2:
+ /jsesc@0.5.0:
+ resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
+ hasBin: true
+ dev: true
+
+ /jsesc@2.5.2:
resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
engines: {node: '>=4'}
hasBin: true
dev: true
- /json-parse-better-errors/1.0.2:
- resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==}
+ /json-parse-even-better-errors@3.0.1:
+ resolution: {integrity: sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dev: true
- /json-schema/0.4.0:
+ /json-schema@0.4.0:
resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==}
dev: true
- /json-stringify-safe/5.0.1:
+ /json-stringify-safe@5.0.1:
resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==}
dev: true
- /json5/2.2.1:
- resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==}
+ /json5@2.2.3:
+ resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
engines: {node: '>=6'}
hasBin: true
dev: true
- /jsonfile/6.1.0:
+ /jsonc-parser@3.2.1:
+ resolution: {integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==}
+ dev: true
+
+ /jsonfile@6.1.0:
resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
dependencies:
universalify: 2.0.0
@@ -5141,7 +3923,7 @@ packages:
graceful-fs: 4.2.10
dev: true
- /jsprim/2.0.2:
+ /jsprim@2.0.2:
resolution: {integrity: sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==}
engines: {'0': node >=0.6.0}
dependencies:
@@ -5151,64 +3933,57 @@ packages:
verror: 1.10.0
dev: true
- /kind-of/3.2.2:
+ /kind-of@3.2.2:
resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==}
engines: {node: '>=0.10.0'}
dependencies:
is-buffer: 1.1.6
dev: true
- /kleur/3.0.3:
+ /kleur@3.0.3:
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
engines: {node: '>=6'}
dev: true
- /kolorist/1.5.1:
- resolution: {integrity: sha512-lxpCM3HTvquGxKGzHeknB/sUjuVoUElLlfYnXZT73K8geR9jQbroGlSCFBax9/0mpGoD3kzcMLnOlGQPJJNyqQ==}
+ /kolorist@1.8.0:
+ resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
dev: true
- /lazy-ass/1.6.0:
+ /lazy-ass@1.6.0:
resolution: {integrity: sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==}
engines: {node: '> 0.8'}
dev: true
- /levn/0.3.0:
- resolution: {integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==}
- engines: {node: '>= 0.8.0'}
- dependencies:
- prelude-ls: 1.1.2
- type-check: 0.3.2
+ /lilconfig@3.0.0:
+ resolution: {integrity: sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==}
+ engines: {node: '>=14'}
dev: true
- /lilconfig/2.0.5:
- resolution: {integrity: sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==}
- engines: {node: '>=10'}
+ /lines-and-columns@2.0.4:
+ resolution: {integrity: sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dev: true
- /lint-staged/13.0.3:
- resolution: {integrity: sha512-9hmrwSCFroTSYLjflGI8Uk+GWAwMB4OlpU4bMJEAT5d/llQwtYKoim4bLOyLCuWFAhWEupE0vkIFqtw/WIsPug==}
- engines: {node: ^14.13.1 || >=16.0.0}
+ /lint-staged@15.2.2:
+ resolution: {integrity: sha512-TiTt93OPh1OZOsb5B7k96A/ATl2AjIZo+vnzFZ6oHK5FuTk63ByDtxGQpHm+kFETjEWqgkF95M8FRXKR/LEBcw==}
+ engines: {node: '>=18.12.0'}
hasBin: true
dependencies:
- cli-truncate: 3.1.0
- colorette: 2.0.19
- commander: 9.4.0
- debug: 4.3.4
- execa: 6.1.0
- lilconfig: 2.0.5
- listr2: 4.0.5
+ chalk: 5.3.0
+ commander: 11.1.0
+ debug: 4.3.4(supports-color@8.1.1)
+ execa: 8.0.1
+ lilconfig: 3.0.0
+ listr2: 8.0.1
micromatch: 4.0.5
- normalize-path: 3.0.0
- object-inspect: 1.12.2
pidtree: 0.6.0
- string-argv: 0.3.1
- yaml: 2.1.1
+ string-argv: 0.3.2
+ yaml: 2.3.4
transitivePeerDependencies:
- - enquirer
- supports-color
dev: true
- /listr2/3.14.0_enquirer@2.3.6:
+ /listr2@3.14.0(enquirer@2.3.6):
resolution: {integrity: sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==}
engines: {node: '>=10.0.0'}
peerDependencies:
@@ -5228,53 +4003,43 @@ packages:
wrap-ansi: 7.0.0
dev: true
- /listr2/4.0.5:
- resolution: {integrity: sha512-juGHV1doQdpNT3GSTs9IUN43QJb7KHdF9uqg7Vufs/tG9VTzpFphqF4pm/ICdAABGQxsyNn9CiYA3StkI6jpwA==}
- engines: {node: '>=12'}
- peerDependencies:
- enquirer: '>= 2.3.0 < 3'
- peerDependenciesMeta:
- enquirer:
- optional: true
+ /listr2@8.0.1:
+ resolution: {integrity: sha512-ovJXBXkKGfq+CwmKTjluEqFi3p4h8xvkxGQQAQan22YCgef4KZ1mKGjzfGh6PL6AW5Csw0QiQPNuQyH+6Xk3hA==}
+ engines: {node: '>=18.0.0'}
dependencies:
- cli-truncate: 2.1.0
- colorette: 2.0.19
- log-update: 4.0.0
- p-map: 4.0.0
+ cli-truncate: 4.0.0
+ colorette: 2.0.20
+ eventemitter3: 5.0.1
+ log-update: 6.0.0
rfdc: 1.3.0
- rxjs: 7.5.6
- through: 2.3.8
- wrap-ansi: 7.0.0
+ wrap-ansi: 9.0.0
dev: true
- /load-json-file/4.0.0:
- resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==}
- engines: {node: '>=4'}
+ /local-pkg@0.5.0:
+ resolution: {integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==}
+ engines: {node: '>=14'}
dependencies:
- graceful-fs: 4.2.10
- parse-json: 4.0.0
- pify: 3.0.0
- strip-bom: 3.0.0
+ mlly: 1.5.0
+ pkg-types: 1.0.3
dev: true
- /local-pkg/0.4.2:
- resolution: {integrity: sha512-mlERgSPrbxU3BP4qBqAvvwlgW4MTg78iwJdGGnv7kibKjWcJksrG3t6LB5lXI93wXRDvG4NpUgJFmTG4T6rdrg==}
- engines: {node: '>=14'}
+ /lodash.debounce@4.0.8:
+ resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
dev: true
- /lodash.kebabcase/4.1.1:
+ /lodash.kebabcase@4.1.1:
resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==}
dev: true
- /lodash.once/4.1.1:
+ /lodash.once@4.1.1:
resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==}
dev: true
- /lodash/4.17.21:
+ /lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
dev: true
- /log-symbols/4.1.0:
+ /log-symbols@4.1.0:
resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
engines: {node: '>=10'}
dependencies:
@@ -5282,7 +4047,7 @@ packages:
is-unicode-supported: 0.1.0
dev: true
- /log-update/4.0.0:
+ /log-update@4.0.0:
resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==}
engines: {node: '>=10'}
dependencies:
@@ -5292,58 +4057,79 @@ packages:
wrap-ansi: 6.2.0
dev: true
- /loupe/2.3.4:
- resolution: {integrity: sha512-OvKfgCC2Ndby6aSTREl5aCCPTNIzlDfQZvZxNUrBrihDhL3xcrYegTblhmEiCrg2kKQz4XsFIaemE5BF4ybSaQ==}
+ /log-update@6.0.0:
+ resolution: {integrity: sha512-niTvB4gqvtof056rRIrTZvjNYE4rCUzO6X/X+kYjd7WFxXeJ0NwEFnRxX6ehkvv3jTwrXnNdtAak5XYZuIyPFw==}
+ engines: {node: '>=18'}
+ dependencies:
+ ansi-escapes: 6.2.0
+ cli-cursor: 4.0.0
+ slice-ansi: 7.1.0
+ strip-ansi: 7.1.0
+ wrap-ansi: 9.0.0
+ dev: true
+
+ /loupe@2.3.7:
+ resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==}
dependencies:
- get-func-name: 2.0.0
+ get-func-name: 2.0.2
+ dev: true
+
+ /lru-cache@10.1.0:
+ resolution: {integrity: sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==}
+ engines: {node: 14 || >=16.14}
dev: true
- /lru-cache/4.1.5:
- resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==}
+ /lru-cache@5.1.1:
+ resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
dependencies:
- pseudomap: 1.0.2
- yallist: 2.1.2
+ yallist: 3.1.1
dev: true
- /lru-cache/6.0.0:
+ /lru-cache@6.0.0:
resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
engines: {node: '>=10'}
dependencies:
yallist: 4.0.0
dev: true
- /magic-string/0.25.9:
- resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==}
+ /magic-string@0.30.5:
+ resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==}
+ engines: {node: '>=12'}
dependencies:
- sourcemap-codec: 1.4.8
+ '@jridgewell/sourcemap-codec': 1.4.15
dev: true
- /magic-string/0.26.2:
- resolution: {integrity: sha512-NzzlXpclt5zAbmo6h6jNc8zl2gNRGHvmsZW4IvZhTC4W7k4OlLP+S5YLussa/r3ixNT66KOQfNORlXHSOy/X4A==}
+ /magic-string@0.30.8:
+ resolution: {integrity: sha512-ISQTe55T2ao7XtlAStud6qwYPZjE4GK1S/BeVPus4jrq6JuOnQ00YKQC581RWhR122W7msZV263KzVeLoqidyQ==}
engines: {node: '>=12'}
dependencies:
- sourcemap-codec: 1.4.8
+ '@jridgewell/sourcemap-codec': 1.4.15
dev: true
- /map-stream/0.1.0:
+ /map-stream@0.1.0:
resolution: {integrity: sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==}
dev: true
- /memorystream/0.3.1:
+ /memorystream@0.3.1:
resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==}
engines: {node: '>= 0.10.0'}
dev: true
- /merge-stream/2.0.0:
+ /meow@13.2.0:
+ resolution: {integrity: sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==}
+ engines: {node: '>=18'}
+ dev: true
+
+ /merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
dev: true
- /merge2/1.4.1:
+ /merge2@1.4.1:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
dev: true
- /micromatch/4.0.5:
+ /micromatch@4.0.5:
resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
engines: {node: '>=8.6'}
dependencies:
@@ -5351,356 +4137,396 @@ packages:
picomatch: 2.3.1
dev: true
- /mime-db/1.52.0:
+ /mime-db@1.52.0:
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
engines: {node: '>= 0.6'}
dev: true
- /mime-types/2.1.35:
+ /mime-types@2.1.35:
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
engines: {node: '>= 0.6'}
dependencies:
mime-db: 1.52.0
dev: true
- /mimic-fn/2.1.0:
+ /mimic-fn@2.1.0:
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
engines: {node: '>=6'}
dev: true
- /mimic-fn/4.0.0:
+ /mimic-fn@4.0.0:
resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
engines: {node: '>=12'}
dev: true
- /minimatch/3.1.2:
+ /minimatch@3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
dependencies:
brace-expansion: 1.1.11
dev: true
- /minimist/1.2.6:
- resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==}
+ /minimatch@9.0.1:
+ resolution: {integrity: sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==}
+ engines: {node: '>=16 || 14 >=14.17'}
+ dependencies:
+ brace-expansion: 2.0.1
+ dev: true
+
+ /minimatch@9.0.3:
+ resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
+ engines: {node: '>=16 || 14 >=14.17'}
+ dependencies:
+ brace-expansion: 2.0.1
+ dev: true
+
+ /minimist@1.2.8:
+ resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
+ dev: true
+
+ /minipass@7.0.4:
+ resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==}
+ engines: {node: '>=16 || 14 >=14.17'}
+ dev: true
+
+ /mlly@1.5.0:
+ resolution: {integrity: sha512-NPVQvAY1xr1QoVeG0cy8yUYC7FQcOx6evl/RjT1wL5FvzPnzOysoqB/jmx/DhssT2dYa8nxECLAaFI/+gVLhDQ==}
+ dependencies:
+ acorn: 8.11.3
+ pathe: 1.1.2
+ pkg-types: 1.0.3
+ ufo: 1.3.2
dev: true
- /ms/2.1.2:
+ /ms@2.1.2:
resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
dev: true
- /ms/2.1.3:
+ /ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
dev: true
- /nanoid/3.3.4:
- resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==}
+ /muggle-string@0.4.1:
+ resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
+ dev: true
+
+ /nanoid@3.3.7:
+ resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
- /nice-try/1.0.5:
- resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
+ /node-domexception@1.0.0:
+ resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
+ engines: {node: '>=10.5.0'}
dev: true
- /node-fetch/2.6.7:
- resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==}
- engines: {node: 4.x || >=6.0.0}
- peerDependencies:
- encoding: ^0.1.0
- peerDependenciesMeta:
- encoding:
- optional: true
+ /node-fetch@3.3.1:
+ resolution: {integrity: sha512-cRVc/kyto/7E5shrWca1Wsea4y6tL9iYJE5FBCius3JQfb/4P4I295PfhgbJQBLTx6lATE4z+wK0rPM4VS2uow==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
- whatwg-url: 5.0.0
+ data-uri-to-buffer: 4.0.1
+ fetch-blob: 3.2.0
+ formdata-polyfill: 4.0.10
dev: true
- /node-releases/2.0.6:
- resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==}
+ /node-releases@2.0.14:
+ resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
dev: true
- /nopt/5.0.0:
- resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==}
- engines: {node: '>=6'}
+ /nopt@7.2.0:
+ resolution: {integrity: sha512-CVDtwCdhYIvnAzFoJ6NJ6dX3oga9/HyciQDnG1vQDjSLMeKLJ4A93ZqYKDrgYSr1FBY5/hMYC+2VCi24pgpkGA==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
hasBin: true
dependencies:
- abbrev: 1.1.1
+ abbrev: 2.0.0
dev: true
- /normalize-package-data/2.5.0:
- resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
+ /normalize-package-data@6.0.0:
+ resolution: {integrity: sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==}
+ engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
- hosted-git-info: 2.8.9
- resolve: 1.22.1
- semver: 5.7.1
+ hosted-git-info: 7.0.1
+ is-core-module: 2.9.0
+ semver: 7.5.4
validate-npm-package-license: 3.0.4
dev: true
- /normalize-path/3.0.0:
- resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
- engines: {node: '>=0.10.0'}
+ /npm-normalize-package-bin@3.0.1:
+ resolution: {integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dev: true
- /npm-run-all/4.1.5:
- resolution: {integrity: sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==}
- engines: {node: '>= 4'}
+ /npm-run-all2@6.1.1:
+ resolution: {integrity: sha512-lWLbkPZ5BSdXtN8lR+0rc8caKoPdymycpZksyDEC9MOBvfdwTXZ0uVhb7bMcGeXv2/BKtfQuo6Zn3zfc8rxNXA==}
+ engines: {node: ^14.18.0 || >=16.0.0, npm: '>= 8'}
hasBin: true
dependencies:
- ansi-styles: 3.2.1
- chalk: 2.4.2
- cross-spawn: 6.0.5
+ ansi-styles: 6.2.1
+ cross-spawn: 7.0.3
memorystream: 0.3.1
- minimatch: 3.1.2
- pidtree: 0.3.1
- read-pkg: 3.0.0
+ minimatch: 9.0.3
+ pidtree: 0.6.0
+ read-pkg: 8.1.0
+ shell-quote: 1.7.3
+ dev: true
+
+ /npm-run-all2@6.1.2:
+ resolution: {integrity: sha512-WwwnS8Ft+RpXve6T2EIEVpFLSqN+ORHRvgNk3H9N62SZXjmzKoRhMFg3I17TK3oMaAEr+XFbRirWS2Fn3BCPSg==}
+ engines: {node: ^14.18.0 || >=16.0.0, npm: '>= 8'}
+ hasBin: true
+ dependencies:
+ ansi-styles: 6.2.1
+ cross-spawn: 7.0.3
+ memorystream: 0.3.1
+ minimatch: 9.0.3
+ pidtree: 0.6.0
+ read-package-json-fast: 3.0.2
shell-quote: 1.7.3
- string.prototype.padend: 3.1.3
dev: true
- /npm-run-path/4.0.1:
+ /npm-run-path@4.0.1:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
engines: {node: '>=8'}
dependencies:
path-key: 3.1.1
dev: true
- /npm-run-path/5.1.0:
+ /npm-run-path@5.1.0:
resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
path-key: 4.0.0
dev: true
- /nwsapi/2.2.1:
- resolution: {integrity: sha512-JYOWTeFoS0Z93587vRJgASD5Ut11fYl5NyihP3KrYBvMe1FRRs6RN7m20SA/16GM4P6hTnZjT+UmDOt38UeXNg==}
+ /nwsapi@2.2.7:
+ resolution: {integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==}
dev: true
- /object-inspect/1.12.2:
+ /object-inspect@1.12.2:
resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==}
dev: true
- /object-keys/1.1.1:
- resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
- engines: {node: '>= 0.4'}
- dev: true
-
- /object.assign/4.1.2:
- resolution: {integrity: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.1.4
- has-symbols: 1.0.3
- object-keys: 1.1.1
- dev: true
-
- /once/1.4.0:
+ /once@1.4.0:
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
dependencies:
wrappy: 1.0.2
dev: true
- /onetime/5.1.2:
+ /onetime@5.1.2:
resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
engines: {node: '>=6'}
dependencies:
mimic-fn: 2.1.0
dev: true
- /onetime/6.0.0:
+ /onetime@6.0.0:
resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
engines: {node: '>=12'}
dependencies:
mimic-fn: 4.0.0
dev: true
- /optionator/0.8.3:
- resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==}
- engines: {node: '>= 0.8.0'}
- dependencies:
- deep-is: 0.1.4
- fast-levenshtein: 2.0.6
- levn: 0.3.0
- prelude-ls: 1.1.2
- type-check: 0.3.2
- word-wrap: 1.2.3
+ /ospath@1.2.2:
+ resolution: {integrity: sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==}
dev: true
- /ospath/1.2.2:
- resolution: {integrity: sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==}
+ /p-limit@5.0.0:
+ resolution: {integrity: sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==}
+ engines: {node: '>=18'}
+ dependencies:
+ yocto-queue: 1.0.0
dev: true
- /p-map/4.0.0:
+ /p-map@4.0.0:
resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
engines: {node: '>=10'}
dependencies:
aggregate-error: 3.1.0
dev: true
- /parse-json/4.0.0:
- resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==}
- engines: {node: '>=4'}
+ /parse-json@7.1.1:
+ resolution: {integrity: sha512-SgOTCX/EZXtZxBE5eJ97P4yGM5n37BwRU+YMsH4vNzFqJV/oWFXXCmwFlgWUM4PrakybVOueJJ6pwHqSVhTFDw==}
+ engines: {node: '>=16'}
dependencies:
+ '@babel/code-frame': 7.23.5
error-ex: 1.3.2
- json-parse-better-errors: 1.0.2
+ json-parse-even-better-errors: 3.0.1
+ lines-and-columns: 2.0.4
+ type-fest: 3.13.1
dev: true
- /parse5/7.0.0:
+ /parse5@7.0.0:
resolution: {integrity: sha512-y/t8IXSPWTuRZqXc0ajH/UwDj4mnqLEbSttNbThcFhGrZuOyoyvNBO85PBp2jQa55wY9d07PBNjsK8ZP3K5U6g==}
dependencies:
entities: 4.3.1
dev: true
- /path-is-absolute/1.0.1:
- resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
- engines: {node: '>=0.10.0'}
+ /parse5@7.1.2:
+ resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==}
+ dependencies:
+ entities: 4.5.0
dev: true
- /path-key/2.0.1:
- resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==}
- engines: {node: '>=4'}
+ /path-browserify@1.0.1:
+ resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
+ dev: true
+
+ /path-is-absolute@1.0.1:
+ resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
+ engines: {node: '>=0.10.0'}
dev: true
- /path-key/3.1.1:
+ /path-key@3.1.1:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
engines: {node: '>=8'}
dev: true
- /path-key/4.0.0:
+ /path-key@4.0.0:
resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
engines: {node: '>=12'}
dev: true
- /path-parse/1.0.7:
+ /path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
dev: true
- /path-type/3.0.0:
- resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==}
- engines: {node: '>=4'}
+ /path-scurry@1.10.1:
+ resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==}
+ engines: {node: '>=16 || 14 >=14.17'}
dependencies:
- pify: 3.0.0
+ lru-cache: 10.1.0
+ minipass: 7.0.4
dev: true
- /path-type/4.0.0:
+ /path-type@4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
dev: true
- /pathval/1.1.1:
+ /pathe@1.1.2:
+ resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
+ dev: true
+
+ /pathval@1.1.1:
resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==}
dev: true
- /pause-stream/0.0.11:
+ /pause-stream@0.0.11:
resolution: {integrity: sha1-/lo0sMvOErWqaitAPuLnO2AvFEU=}
dependencies:
through: 2.3.8
dev: true
- /pend/1.2.0:
+ /pend@1.2.0:
resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==}
dev: true
- /performance-now/2.1.0:
+ /performance-now@2.1.0:
resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==}
dev: true
- /picocolors/1.0.0:
+ /picocolors@1.0.0:
resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
- /picomatch/2.3.1:
+ /picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
dev: true
- /pidtree/0.3.1:
- resolution: {integrity: sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==}
- engines: {node: '>=0.10'}
- hasBin: true
- dev: true
-
- /pidtree/0.6.0:
+ /pidtree@0.6.0:
resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==}
engines: {node: '>=0.10'}
hasBin: true
dev: true
- /pify/2.3.0:
+ /pify@2.3.0:
resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
engines: {node: '>=0.10.0'}
dev: true
- /pify/3.0.0:
- resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==}
- engines: {node: '>=4'}
- dev: true
-
- /pinia/2.0.16_typescript@4.7.4+vue@2.7.7:
- resolution: {integrity: sha512-9/LMVO+/epny1NBfC77vnps4g3JRezxhhoF1xLUk8mZkUIxVnwfEAIRiAX8mYBTD/KCwZqnDMqXc8w3eU0FQGg==}
+ /pinia@2.1.7(vue@2.7.16):
+ resolution: {integrity: sha512-+C2AHFtcFqjPih0zpYuvof37SFxMQ7OEG2zV9jRI12i9BOy3YQVAHwdKtyyc8pDcDyIc33WCIsZaCFWU7WWxGQ==}
peerDependencies:
'@vue/composition-api': ^1.4.0
typescript: '>=4.4.4'
- vue: ^2.6.14 || ^3.2.0
+ vue: ^2.6.14 || ^3.3.0
peerDependenciesMeta:
'@vue/composition-api':
optional: true
typescript:
optional: true
dependencies:
- '@vue/devtools-api': 6.2.1
- typescript: 4.7.4
- vue: 2.7.7
- vue-demi: 0.13.5_vue@2.7.7
+ '@vue/devtools-api': 6.6.1
+ vue: 2.7.16
+ vue-demi: 0.14.7(vue@2.7.16)
dev: false
- /pinia/2.0.16_vue@2.7.7:
- resolution: {integrity: sha512-9/LMVO+/epny1NBfC77vnps4g3JRezxhhoF1xLUk8mZkUIxVnwfEAIRiAX8mYBTD/KCwZqnDMqXc8w3eU0FQGg==}
- peerDependencies:
- '@vue/composition-api': ^1.4.0
- typescript: '>=4.4.4'
- vue: ^2.6.14 || ^3.2.0
- peerDependenciesMeta:
- '@vue/composition-api':
- optional: true
- typescript:
- optional: true
+ /pkg-types@1.0.3:
+ resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==}
dependencies:
- '@vue/devtools-api': 6.2.1
- vue: 2.7.7
- vue-demi: 0.13.5_vue@2.7.7
- dev: false
+ jsonc-parser: 3.2.1
+ mlly: 1.5.0
+ pathe: 1.1.2
+ dev: true
- /postcss/8.4.14:
- resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==}
+ /postcss@8.4.33:
+ resolution: {integrity: sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
- nanoid: 3.3.4
+ nanoid: 3.3.7
picocolors: 1.0.0
source-map-js: 1.0.2
- /prelude-ls/1.1.2:
- resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==}
- engines: {node: '>= 0.8.0'}
+ /postcss@8.4.35:
+ resolution: {integrity: sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA==}
+ engines: {node: ^10 || ^12 || >=14}
+ dependencies:
+ nanoid: 3.3.7
+ picocolors: 1.0.0
+ source-map-js: 1.0.2
dev: true
- /prettier/2.7.1:
+ /prettier@2.7.1:
resolution: {integrity: sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==}
engines: {node: '>=10.13.0'}
hasBin: true
+ requiresBuild: true
+ optional: true
+
+ /prettier@3.2.5:
+ resolution: {integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==}
+ engines: {node: '>=14'}
+ hasBin: true
dev: true
- /pretty-bytes/5.6.0:
+ /pretty-bytes@5.6.0:
resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==}
engines: {node: '>=6'}
dev: true
- /pretty/2.0.0:
+ /pretty-format@29.7.0:
+ resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ dependencies:
+ '@jest/schemas': 29.6.3
+ ansi-styles: 5.2.0
+ react-is: 18.2.0
+ dev: true
+
+ /pretty@2.0.0:
resolution: {integrity: sha512-G9xUchgTEiNpormdYBl+Pha50gOUovT18IvAe7EYMZ1/f9W/WWMPRn+xI68yXNMUk3QXHDwo/1wV/4NejVNe1w==}
engines: {node: '>=0.10.0'}
dependencies:
condense-newlines: 0.2.1
extend-shallow: 2.0.1
- js-beautify: 1.14.4
+ js-beautify: 1.14.11
+ dev: true
+
+ /process@0.11.10:
+ resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
+ engines: {node: '>= 0.6.0'}
dev: true
- /prompts/2.4.2:
+ /prompts@2.4.2:
resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
engines: {node: '>= 6'}
dependencies:
@@ -5708,15 +4534,19 @@ packages:
sisteransi: 1.0.5
dev: true
- /proto-list/1.2.4:
+ /proto-list@1.2.4:
resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==}
dev: true
- /proxy-from-env/1.0.0:
- resolution: {integrity: sha1-M8UDmPcOp+uW0h97gXYwpVeRx+4=}
+ /proxy-from-env@1.0.0:
+ resolution: {integrity: sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==}
dev: true
- /ps-tree/1.2.0:
+ /proxy-from-env@1.1.0:
+ resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
+ dev: true
+
+ /ps-tree@1.2.0:
resolution: {integrity: sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==}
engines: {node: '>= 0.10'}
hasBin: true
@@ -5724,64 +4554,115 @@ packages:
event-stream: 3.3.4
dev: true
- /pseudomap/1.0.2:
- resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==}
- dev: true
-
- /psl/1.9.0:
+ /psl@1.9.0:
resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==}
dev: true
- /pump/3.0.0:
+ /pump@3.0.0:
resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
dependencies:
end-of-stream: 1.4.4
once: 1.4.0
dev: true
- /punycode/2.1.1:
+ /punycode@2.1.1:
resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==}
engines: {node: '>=6'}
dev: true
- /qs/6.5.3:
- resolution: {integrity: sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==}
+ /punycode@2.3.1:
+ resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
+ engines: {node: '>=6'}
+ dev: true
+
+ /qs@6.10.4:
+ resolution: {integrity: sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==}
engines: {node: '>=0.6'}
+ dependencies:
+ side-channel: 1.0.4
+ dev: true
+
+ /querystringify@2.2.0:
+ resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==}
dev: true
- /queue-microtask/1.2.3:
+ /queue-microtask@1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
dev: true
- /read-pkg/3.0.0:
- resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==}
+ /react-is@18.2.0:
+ resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
+ dev: true
+
+ /read-package-json-fast@3.0.2:
+ resolution: {integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ dependencies:
+ json-parse-even-better-errors: 3.0.1
+ npm-normalize-package-bin: 3.0.1
+ dev: true
+
+ /read-pkg@8.1.0:
+ resolution: {integrity: sha512-PORM8AgzXeskHO/WEv312k9U03B8K9JSiWF/8N9sUuFjBa+9SF2u6K7VClzXwDXab51jCd8Nd36CNM+zR97ScQ==}
+ engines: {node: '>=16'}
+ dependencies:
+ '@types/normalize-package-data': 2.4.4
+ normalize-package-data: 6.0.0
+ parse-json: 7.1.1
+ type-fest: 4.10.1
+ dev: true
+
+ /regenerate-unicode-properties@10.1.1:
+ resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==}
engines: {node: '>=4'}
dependencies:
- load-json-file: 4.0.0
- normalize-package-data: 2.5.0
- path-type: 3.0.0
+ regenerate: 1.4.2
dev: true
- /regenerator-runtime/0.13.9:
- resolution: {integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==}
+ /regenerate@1.4.2:
+ resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
dev: true
- /regexp.prototype.flags/1.4.3:
- resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==}
- engines: {node: '>= 0.4'}
+ /regenerator-runtime@0.14.1:
+ resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
+ dev: true
+
+ /regenerator-transform@0.15.2:
+ resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
dependencies:
- call-bind: 1.0.2
- define-properties: 1.1.4
- functions-have-names: 1.2.3
+ '@babel/runtime': 7.23.6
+ dev: true
+
+ /regexpu-core@5.3.2:
+ resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
+ engines: {node: '>=4'}
+ dependencies:
+ '@babel/regjsgen': 0.8.0
+ regenerate: 1.4.2
+ regenerate-unicode-properties: 10.1.1
+ regjsparser: 0.9.1
+ unicode-match-property-ecmascript: 2.0.0
+ unicode-match-property-value-ecmascript: 2.1.0
+ dev: true
+
+ /regjsparser@0.9.1:
+ resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
+ hasBin: true
+ dependencies:
+ jsesc: 0.5.0
dev: true
- /request-progress/3.0.0:
+ /request-progress@3.0.0:
resolution: {integrity: sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==}
dependencies:
throttleit: 1.0.0
dev: true
- /resolve/1.22.1:
+ /requires-port@1.0.0:
+ resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
+ dev: true
+
+ /resolve@1.22.1:
resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==}
hasBin: true
dependencies:
@@ -5790,7 +4671,7 @@ packages:
supports-preserve-symlinks-flag: 1.0.0
dev: true
- /restore-cursor/3.1.0:
+ /restore-cursor@3.1.0:
resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
engines: {node: '>=8'}
dependencies:
@@ -5798,108 +4679,118 @@ packages:
signal-exit: 3.0.7
dev: true
- /reusify/1.0.4:
+ /restore-cursor@4.0.0:
+ resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ dependencies:
+ onetime: 5.1.2
+ signal-exit: 3.0.7
+ dev: true
+
+ /reusify@1.0.4:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
dev: true
- /rfdc/1.3.0:
+ /rfdc@1.3.0:
resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==}
dev: true
- /rimraf/3.0.2:
+ /rimraf@3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
hasBin: true
dependencies:
glob: 7.2.3
dev: true
- /rollup/2.77.0:
- resolution: {integrity: sha512-vL8xjY4yOQEw79DvyXLijhnhh+R/O9zpF/LEgkCebZFtb6ELeN9H3/2T0r8+mp+fFTBHZ5qGpOpW2ela2zRt3g==}
- engines: {node: '>=10.0.0'}
+ /rollup@4.9.1:
+ resolution: {integrity: sha512-pgPO9DWzLoW/vIhlSoDByCzcpX92bKEorbgXuZrqxByte3JFk2xSW2JEeAcyLc9Ru9pqcNNW+Ob7ntsk2oT/Xw==}
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
optionalDependencies:
- fsevents: 2.3.2
- dev: true
-
- /run-parallel/1.2.0:
+ '@rollup/rollup-android-arm-eabi': 4.9.1
+ '@rollup/rollup-android-arm64': 4.9.1
+ '@rollup/rollup-darwin-arm64': 4.9.1
+ '@rollup/rollup-darwin-x64': 4.9.1
+ '@rollup/rollup-linux-arm-gnueabihf': 4.9.1
+ '@rollup/rollup-linux-arm64-gnu': 4.9.1
+ '@rollup/rollup-linux-arm64-musl': 4.9.1
+ '@rollup/rollup-linux-riscv64-gnu': 4.9.1
+ '@rollup/rollup-linux-x64-gnu': 4.9.1
+ '@rollup/rollup-linux-x64-musl': 4.9.1
+ '@rollup/rollup-win32-arm64-msvc': 4.9.1
+ '@rollup/rollup-win32-ia32-msvc': 4.9.1
+ '@rollup/rollup-win32-x64-msvc': 4.9.1
+ fsevents: 2.3.3
+ dev: true
+
+ /rrweb-cssom@0.6.0:
+ resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==}
+ dev: true
+
+ /run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
dependencies:
queue-microtask: 1.2.3
dev: true
- /rxjs/7.5.6:
+ /rxjs@7.5.6:
resolution: {integrity: sha512-dnyv2/YsXhnm461G+R/Pe5bWP41Nm6LBXEYWI6eiFP4fiwx6WRI/CD0zbdVAudd9xwLEF2IDcKXLHit0FYjUzw==}
dependencies:
tslib: 2.4.0
dev: true
- /safe-buffer/5.1.2:
- resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
+ /rxjs@7.8.1:
+ resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
+ dependencies:
+ tslib: 2.4.0
dev: true
- /safe-buffer/5.2.1:
+ /safe-buffer@5.2.1:
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
dev: true
- /safer-buffer/2.1.2:
+ /safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
dev: true
- /saxes/6.0.0:
+ /saxes@6.0.0:
resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
engines: {node: '>=v12.22.7'}
dependencies:
xmlchars: 2.2.0
dev: true
- /semver/5.7.1:
- resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==}
+ /semver@6.3.1:
+ resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
dev: true
- /semver/6.3.0:
- resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
- hasBin: true
- dev: true
-
- /semver/7.3.7:
- resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==}
+ /semver@7.5.4:
+ resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==}
engines: {node: '>=10'}
hasBin: true
dependencies:
lru-cache: 6.0.0
dev: true
- /shebang-command/1.2.0:
- resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- shebang-regex: 1.0.0
- dev: true
-
- /shebang-command/2.0.0:
+ /shebang-command@2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
engines: {node: '>=8'}
dependencies:
shebang-regex: 3.0.0
dev: true
- /shebang-regex/1.0.0:
- resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==}
- engines: {node: '>=0.10.0'}
- dev: true
-
- /shebang-regex/3.0.0:
+ /shebang-regex@3.0.0:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
dev: true
- /shell-quote/1.7.3:
+ /shell-quote@1.7.3:
resolution: {integrity: sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==}
dev: true
- /side-channel/1.0.4:
+ /side-channel@1.0.4:
resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
dependencies:
call-bind: 1.0.2
@@ -5907,24 +4798,29 @@ packages:
object-inspect: 1.12.2
dev: true
- /sigmund/1.0.1:
- resolution: {integrity: sha512-fCvEXfh6NWpm+YSuY2bpXb/VIihqWA6hLsgboC+0nl71Q7N7o2eaCW8mJa/NLvQhs6jpd3VZV4UiUQlV6+lc8g==}
+ /siginfo@2.0.0:
+ resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
dev: true
- /signal-exit/3.0.7:
+ /signal-exit@3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
dev: true
- /sisteransi/1.0.5:
+ /signal-exit@4.1.0:
+ resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
+ engines: {node: '>=14'}
+ dev: true
+
+ /sisteransi@1.0.5:
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
dev: true
- /slash/4.0.0:
+ /slash@4.0.0:
resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==}
engines: {node: '>=12'}
dev: true
- /slice-ansi/3.0.0:
+ /slice-ansi@3.0.0:
resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==}
engines: {node: '>=8'}
dependencies:
@@ -5933,7 +4829,7 @@ packages:
is-fullwidth-code-point: 3.0.0
dev: true
- /slice-ansi/4.0.0:
+ /slice-ansi@4.0.0:
resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==}
engines: {node: '>=10'}
dependencies:
@@ -5942,62 +4838,66 @@ packages:
is-fullwidth-code-point: 3.0.0
dev: true
- /slice-ansi/5.0.0:
+ /slice-ansi@5.0.0:
resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==}
engines: {node: '>=12'}
dependencies:
- ansi-styles: 6.1.0
+ ansi-styles: 6.2.1
is-fullwidth-code-point: 4.0.0
dev: true
- /source-map-js/1.0.2:
+ /slice-ansi@7.1.0:
+ resolution: {integrity: sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==}
+ engines: {node: '>=18'}
+ dependencies:
+ ansi-styles: 6.2.1
+ is-fullwidth-code-point: 5.0.0
+ dev: true
+
+ /source-map-js@1.0.2:
resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
engines: {node: '>=0.10.0'}
- /source-map-support/0.5.21:
+ /source-map-support@0.5.21:
resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
dependencies:
buffer-from: 1.1.2
source-map: 0.6.1
dev: true
- /source-map/0.6.1:
+ /source-map@0.6.1:
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
engines: {node: '>=0.10.0'}
- /sourcemap-codec/1.4.8:
- resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==}
- dev: true
-
- /spdx-correct/3.1.1:
+ /spdx-correct@3.1.1:
resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==}
dependencies:
spdx-expression-parse: 3.0.1
spdx-license-ids: 3.0.11
dev: true
- /spdx-exceptions/2.3.0:
+ /spdx-exceptions@2.3.0:
resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==}
dev: true
- /spdx-expression-parse/3.0.1:
+ /spdx-expression-parse@3.0.1:
resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
dependencies:
spdx-exceptions: 2.3.0
spdx-license-ids: 3.0.11
dev: true
- /spdx-license-ids/3.0.11:
+ /spdx-license-ids@3.0.11:
resolution: {integrity: sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==}
dev: true
- /split/0.3.3:
+ /split@0.3.3:
resolution: {integrity: sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==}
dependencies:
through: 2.3.8
dev: true
- /sshpk/1.17.0:
+ /sshpk@1.17.0:
resolution: {integrity: sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==}
engines: {node: '>=0.10.0'}
hasBin: true
@@ -6013,34 +4913,43 @@ packages:
tweetnacl: 0.14.5
dev: true
- /start-server-and-test/1.14.0:
- resolution: {integrity: sha512-on5ELuxO2K0t8EmNj9MtVlFqwBMxfWOhu4U7uZD1xccVpFlOQKR93CSe0u98iQzfNxRyaNTb/CdadbNllplTsw==}
- engines: {node: '>=6'}
+ /stackback@0.0.2:
+ resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
+ dev: true
+
+ /start-server-and-test@2.0.3:
+ resolution: {integrity: sha512-QsVObjfjFZKJE6CS6bSKNwWZCKBG6975/jKRPPGFfFh+yOQglSeGXiNWjzgQNXdphcBI9nXbyso9tPfX4YAUhg==}
+ engines: {node: '>=16'}
hasBin: true
dependencies:
+ arg: 5.0.2
bluebird: 3.7.2
check-more-types: 2.24.0
- debug: 4.3.2
+ debug: 4.3.4(supports-color@8.1.1)
execa: 5.1.1
lazy-ass: 1.6.0
ps-tree: 1.2.0
- wait-on: 6.0.0_debug@4.3.2
+ wait-on: 7.2.0(debug@4.3.4)
transitivePeerDependencies:
- supports-color
dev: true
- /stream-combiner/0.0.4:
+ /std-env@3.7.0:
+ resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==}
+ dev: true
+
+ /stream-combiner@0.0.4:
resolution: {integrity: sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==}
dependencies:
duplexer: 0.1.2
dev: true
- /string-argv/0.3.1:
- resolution: {integrity: sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==}
+ /string-argv@0.3.2:
+ resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==}
engines: {node: '>=0.6.19'}
dev: true
- /string-width/4.2.3:
+ /string-width@4.2.3:
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
engines: {node: '>=8'}
dependencies:
@@ -6049,267 +4958,289 @@ packages:
strip-ansi: 6.0.1
dev: true
- /string-width/5.1.2:
+ /string-width@5.1.2:
resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
engines: {node: '>=12'}
dependencies:
eastasianwidth: 0.2.0
emoji-regex: 9.2.2
- strip-ansi: 7.0.1
- dev: true
-
- /string.prototype.padend/3.1.3:
- resolution: {integrity: sha512-jNIIeokznm8SD/TZISQsZKYu7RJyheFNt84DUPrh482GC8RVp2MKqm2O5oBRdGxbDQoXrhhWtPIWQOiy20svUg==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.1.4
- es-abstract: 1.20.1
- dev: true
-
- /string.prototype.trimend/1.0.5:
- resolution: {integrity: sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.1.4
- es-abstract: 1.20.1
+ strip-ansi: 7.1.0
dev: true
- /string.prototype.trimstart/1.0.5:
- resolution: {integrity: sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==}
+ /string-width@7.1.0:
+ resolution: {integrity: sha512-SEIJCWiX7Kg4c129n48aDRwLbFb2LJmXXFrWBG4NGaRtMQ3myKPKbwrD1BKqQn74oCoNMBVrfDEr5M9YxCsrkw==}
+ engines: {node: '>=18'}
dependencies:
- call-bind: 1.0.2
- define-properties: 1.1.4
- es-abstract: 1.20.1
+ emoji-regex: 10.3.0
+ get-east-asian-width: 1.2.0
+ strip-ansi: 7.1.0
dev: true
- /strip-ansi/6.0.1:
+ /strip-ansi@6.0.1:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
dependencies:
ansi-regex: 5.0.1
dev: true
- /strip-ansi/7.0.1:
- resolution: {integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==}
+ /strip-ansi@7.1.0:
+ resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
engines: {node: '>=12'}
dependencies:
ansi-regex: 6.0.1
dev: true
- /strip-bom/3.0.0:
- resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
- engines: {node: '>=4'}
- dev: true
-
- /strip-final-newline/2.0.0:
+ /strip-final-newline@2.0.0:
resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
engines: {node: '>=6'}
dev: true
- /strip-final-newline/3.0.0:
+ /strip-final-newline@3.0.0:
resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
engines: {node: '>=12'}
dev: true
- /supports-color/5.5.0:
+ /strip-literal@2.0.0:
+ resolution: {integrity: sha512-f9vHgsCWBq2ugHAkGMiiYY+AYG0D/cbloKKg0nhaaaSNsujdGIpVXCNsrJpCKr5M0f4aI31mr13UjY6GAuXCKA==}
+ dependencies:
+ js-tokens: 8.0.3
+ dev: true
+
+ /supports-color@5.5.0:
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
engines: {node: '>=4'}
dependencies:
has-flag: 3.0.0
dev: true
- /supports-color/7.2.0:
+ /supports-color@7.2.0:
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
engines: {node: '>=8'}
dependencies:
has-flag: 4.0.0
dev: true
- /supports-color/8.1.1:
+ /supports-color@8.1.1:
resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
engines: {node: '>=10'}
dependencies:
has-flag: 4.0.0
dev: true
- /supports-preserve-symlinks-flag/1.0.0:
+ /supports-preserve-symlinks-flag@1.0.0:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
dev: true
- /svg-tags/1.0.0:
+ /svg-tags@1.0.0:
resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==}
dev: true
- /symbol-tree/3.2.4:
+ /symbol-tree@3.2.4:
resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
dev: true
- /systemjs/6.12.1:
- resolution: {integrity: sha512-hqTN6kW+pN6/qro6G9OZ7ceDQOcYno020zBQKpZQLsJhYTDMCMNfXi/Y8duF5iW+4WWZr42ry0MMkcRGpbwG2A==}
+ /systemjs@6.14.3:
+ resolution: {integrity: sha512-hQv45irdhXudAOr8r6SVSpJSGtogdGZUbJBRKCE5nsIS7tsxxvnIHqT4IOPWj+P+HcSzeWzHlGCGpmhPDIKe+w==}
dev: true
- /terser/5.14.2:
- resolution: {integrity: sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA==}
+ /terser@5.29.1:
+ resolution: {integrity: sha512-lZQ/fyaIGxsbGxApKmoPTODIzELy3++mXhS5hOqaAWZjQtpq/hFHAc+rm29NND1rYRxRWKcjuARNwULNXa5RtQ==}
engines: {node: '>=10'}
hasBin: true
dependencies:
- '@jridgewell/source-map': 0.3.2
- acorn: 8.7.1
+ '@jridgewell/source-map': 0.3.5
+ acorn: 8.11.3
commander: 2.20.3
source-map-support: 0.5.21
dev: true
- /throttleit/1.0.0:
+ /throttleit@1.0.0:
resolution: {integrity: sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g==}
dev: true
- /through/2.3.8:
+ /through@2.3.8:
resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
dev: true
- /tinypool/0.2.4:
- resolution: {integrity: sha512-Vs3rhkUH6Qq1t5bqtb816oT+HeJTXfwt2cbPH17sWHIYKTotQIFPk3tf2fgqRrVyMDVOc1EnPgzIxfIulXVzwQ==}
+ /tinybench@2.6.0:
+ resolution: {integrity: sha512-N8hW3PG/3aOoZAN5V/NSAEDz0ZixDSSt5b/a05iqtpgfLWMSVuCo7w0k2vVvEjdrIoeGqZzweX2WlyioNIHchA==}
+ dev: true
+
+ /tinypool@0.8.2:
+ resolution: {integrity: sha512-SUszKYe5wgsxnNOVlBYO6IC+8VGWdVGZWAqUxp3UErNBtptZvWbwyUOyzNL59zigz2rCA92QiL3wvG+JDSdJdQ==}
engines: {node: '>=14.0.0'}
dev: true
- /tinyspy/1.0.0:
- resolution: {integrity: sha512-FI5B2QdODQYDRjfuLF+OrJ8bjWRMCXokQPcwKm0W3IzcbUmBNv536cQc7eXGoAuXphZwgx1DFbqImwzz08Fnhw==}
+ /tinyspy@2.2.0:
+ resolution: {integrity: sha512-d2eda04AN/cPOR89F7Xv5bK/jrQEhmcLFe6HFldoeO9AJtps+fqEnh486vnT/8y4bw38pSyxDcTCAq+Ks2aJTg==}
engines: {node: '>=14.0.0'}
dev: true
- /tmp/0.2.1:
+ /tmp@0.2.1:
resolution: {integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==}
engines: {node: '>=8.17.0'}
dependencies:
rimraf: 3.0.2
dev: true
- /to-fast-properties/2.0.0:
+ /to-fast-properties@2.0.0:
resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
engines: {node: '>=4'}
- /to-regex-range/5.0.1:
+ /to-regex-range@5.0.1:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
engines: {node: '>=8.0'}
dependencies:
is-number: 7.0.0
dev: true
- /tough-cookie/2.5.0:
- resolution: {integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==}
- engines: {node: '>=0.8'}
- dependencies:
- psl: 1.9.0
- punycode: 2.1.1
- dev: true
-
- /tough-cookie/4.0.0:
- resolution: {integrity: sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==}
+ /tough-cookie@4.1.3:
+ resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==}
engines: {node: '>=6'}
dependencies:
psl: 1.9.0
punycode: 2.1.1
- universalify: 0.1.2
- dev: true
-
- /tr46/0.0.3:
- resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
+ universalify: 0.2.0
+ url-parse: 1.5.10
dev: true
- /tr46/3.0.0:
- resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==}
- engines: {node: '>=12'}
+ /tr46@5.0.0:
+ resolution: {integrity: sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==}
+ engines: {node: '>=18'}
dependencies:
- punycode: 2.1.1
+ punycode: 2.3.1
dev: true
- /tslib/2.4.0:
+ /tslib@2.4.0:
resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==}
dev: true
- /tunnel-agent/0.6.0:
+ /tunnel-agent@0.6.0:
resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
dependencies:
safe-buffer: 5.2.1
dev: true
- /tweetnacl/0.14.5:
+ /tweetnacl@0.14.5:
resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==}
dev: true
- /type-check/0.3.2:
- resolution: {integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==}
- engines: {node: '>= 0.8.0'}
- dependencies:
- prelude-ls: 1.1.2
- dev: true
-
- /type-detect/4.0.8:
+ /type-detect@4.0.8:
resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
engines: {node: '>=4'}
dev: true
- /type-fest/0.21.3:
+ /type-fest@0.21.3:
resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
engines: {node: '>=10'}
dev: true
- /typescript/4.7.4:
- resolution: {integrity: sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==}
- engines: {node: '>=4.2.0'}
+ /type-fest@3.13.1:
+ resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==}
+ engines: {node: '>=14.16'}
+ dev: true
+
+ /type-fest@4.10.1:
+ resolution: {integrity: sha512-7ZnJYTp6uc04uYRISWtiX3DSKB/fxNQT0B5o1OUeCqiQiwF+JC9+rJiZIDrPrNCLLuTqyQmh4VdQqh/ZOkv9MQ==}
+ engines: {node: '>=16'}
+ dev: true
+
+ /typescript@5.3.3:
+ resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==}
+ engines: {node: '>=14.17'}
hasBin: true
+ dev: true
+
+ /ufo@1.3.2:
+ resolution: {integrity: sha512-o+ORpgGwaYQXgqGDwd+hkS4PuZ3QnmqMMxRuajK/a38L6fTpcE5GPIfrf+L/KemFzfUpeUQc1rRS1iDBozvnFA==}
+ dev: true
+
+ /undici-types@5.26.5:
+ resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
+ dev: true
- /unbox-primitive/1.0.2:
- resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
+ /unicode-canonical-property-names-ecmascript@2.0.0:
+ resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
+ engines: {node: '>=4'}
+ dev: true
+
+ /unicode-match-property-ecmascript@2.0.0:
+ resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
+ engines: {node: '>=4'}
dependencies:
- call-bind: 1.0.2
- has-bigints: 1.0.2
- has-symbols: 1.0.3
- which-boxed-primitive: 1.0.2
+ unicode-canonical-property-names-ecmascript: 2.0.0
+ unicode-property-aliases-ecmascript: 2.1.0
+ dev: true
+
+ /unicode-match-property-value-ecmascript@2.1.0:
+ resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==}
+ engines: {node: '>=4'}
+ dev: true
+
+ /unicode-property-aliases-ecmascript@2.1.0:
+ resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
+ engines: {node: '>=4'}
dev: true
- /universalify/0.1.2:
- resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
+ /universalify@0.2.0:
+ resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==}
engines: {node: '>= 4.0.0'}
dev: true
- /universalify/2.0.0:
+ /universalify@2.0.0:
resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==}
engines: {node: '>= 10.0.0'}
dev: true
- /untildify/4.0.0:
+ /untildify@4.0.0:
resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==}
engines: {node: '>=8'}
dev: true
- /update-browserslist-db/1.0.5_browserslist@4.21.2:
- resolution: {integrity: sha512-dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q==}
+ /update-browserslist-db@1.0.13(browserslist@4.22.2):
+ resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
+ hasBin: true
+ peerDependencies:
+ browserslist: '>= 4.21.0'
+ dependencies:
+ browserslist: 4.22.2
+ escalade: 3.1.1
+ picocolors: 1.0.0
+ dev: true
+
+ /update-browserslist-db@1.0.13(browserslist@4.23.0):
+ resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
dependencies:
- browserslist: 4.21.2
+ browserslist: 4.23.0
escalade: 3.1.1
picocolors: 1.0.0
dev: true
- /uuid/8.3.2:
+ /url-parse@1.5.10:
+ resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
+ dependencies:
+ querystringify: 2.2.0
+ requires-port: 1.0.0
+ dev: true
+
+ /uuid@8.3.2:
resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
hasBin: true
dev: true
- /validate-npm-package-license/3.0.4:
+ /validate-npm-package-license@3.0.4:
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
dependencies:
spdx-correct: 3.1.1
spdx-expression-parse: 3.0.1
dev: true
- /verror/1.10.0:
- resolution: {integrity: sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=}
+ /verror@1.10.0:
+ resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==}
engines: {'0': node >=0.6.0}
dependencies:
assert-plus: 1.0.0
@@ -6317,143 +5248,123 @@ packages:
extsprintf: 1.3.0
dev: true
- /vite/3.0.2:
- resolution: {integrity: sha512-TAqydxW/w0U5AoL5AsD9DApTvGb2iNbGs3sN4u2VdT1GFkQVUfgUldt+t08TZgi23uIauh1TUOQJALduo9GXqw==}
- engines: {node: ^14.18.0 || >=16.0.0}
+ /vite-node@1.3.1(@types/node@18.19.3):
+ resolution: {integrity: sha512-azbRrqRxlWTJEVbzInZCTchx0X69M/XPTCz4H+TLvlTcR/xH/3hkRqhOakT41fMJCMzXTu4UvegkZiEoJAWvng==}
+ engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
- peerDependencies:
- less: '*'
- sass: '*'
- stylus: '*'
- terser: ^5.4.0
- peerDependenciesMeta:
- less:
- optional: true
- sass:
- optional: true
- stylus:
- optional: true
- terser:
- optional: true
dependencies:
- esbuild: 0.14.49
- postcss: 8.4.14
- resolve: 1.22.1
- rollup: 2.77.0
- optionalDependencies:
- fsevents: 2.3.2
+ cac: 6.7.14
+ debug: 4.3.4(supports-color@8.1.1)
+ pathe: 1.1.2
+ picocolors: 1.0.0
+ vite: 5.1.6(@types/node@18.19.3)(terser@5.29.1)
+ transitivePeerDependencies:
+ - '@types/node'
+ - less
+ - lightningcss
+ - sass
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
dev: true
- /vite/3.0.2_terser@5.14.2:
- resolution: {integrity: sha512-TAqydxW/w0U5AoL5AsD9DApTvGb2iNbGs3sN4u2VdT1GFkQVUfgUldt+t08TZgi23uIauh1TUOQJALduo9GXqw==}
- engines: {node: ^14.18.0 || >=16.0.0}
+ /vite@5.1.6(@types/node@18.19.3)(terser@5.29.1):
+ resolution: {integrity: sha512-yYIAZs9nVfRJ/AiOLCA91zzhjsHUgMjB+EigzFb6W2XTLO8JixBCKCjvhKZaye+NKYHCrkv3Oh50dH9EdLU2RA==}
+ engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
+ '@types/node': ^18.0.0 || >=20.0.0
less: '*'
+ lightningcss: ^1.21.0
sass: '*'
stylus: '*'
+ sugarss: '*'
terser: ^5.4.0
peerDependenciesMeta:
+ '@types/node':
+ optional: true
less:
optional: true
+ lightningcss:
+ optional: true
sass:
optional: true
stylus:
optional: true
+ sugarss:
+ optional: true
terser:
optional: true
dependencies:
- esbuild: 0.14.49
- postcss: 8.4.14
- resolve: 1.22.1
- rollup: 2.77.0
- terser: 5.14.2
+ '@types/node': 18.19.3
+ esbuild: 0.19.10
+ postcss: 8.4.35
+ rollup: 4.9.1
+ terser: 5.29.1
optionalDependencies:
- fsevents: 2.3.2
+ fsevents: 2.3.3
dev: true
- /vitest/0.18.1_jsdom@20.0.0:
- resolution: {integrity: sha512-4F/1K/Vn4AvJwe7i2YblR02PT5vMKcw9KN4unDq2KD0YcSxX0B/6D6Qu9PJaXwVuxXMFTQ5ovd4+CQaW3bwofA==}
- engines: {node: '>=v14.16.0'}
+ /vitest@1.3.1(@types/node@18.19.3)(jsdom@24.0.0):
+ resolution: {integrity: sha512-/1QJqXs8YbCrfv/GPQ05wAZf2eakUPLPa18vkJAKE7RXOKfVHqMZZ1WlTjiwl6Gcn65M5vpNUB6EFLnEdRdEXQ==}
+ engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
'@edge-runtime/vm': '*'
- '@vitest/ui': '*'
- c8: '*'
+ '@types/node': ^18.0.0 || >=20.0.0
+ '@vitest/browser': 1.3.1
+ '@vitest/ui': 1.3.1
happy-dom: '*'
jsdom: '*'
peerDependenciesMeta:
'@edge-runtime/vm':
optional: true
- '@vitest/ui':
- optional: true
- c8:
- optional: true
- happy-dom:
- optional: true
- jsdom:
+ '@types/node':
optional: true
- dependencies:
- '@types/chai': 4.3.1
- '@types/chai-subset': 1.3.3
- '@types/node': 18.0.6
- chai: 4.3.6
- debug: 4.3.4
- jsdom: 20.0.0
- local-pkg: 0.4.2
- tinypool: 0.2.4
- tinyspy: 1.0.0
- vite: 3.0.2
- transitivePeerDependencies:
- - less
- - sass
- - stylus
- - supports-color
- - terser
- dev: true
-
- /vitest/0.18.1_jsdom@20.0.0+terser@5.14.2:
- resolution: {integrity: sha512-4F/1K/Vn4AvJwe7i2YblR02PT5vMKcw9KN4unDq2KD0YcSxX0B/6D6Qu9PJaXwVuxXMFTQ5ovd4+CQaW3bwofA==}
- engines: {node: '>=v14.16.0'}
- hasBin: true
- peerDependencies:
- '@edge-runtime/vm': '*'
- '@vitest/ui': '*'
- c8: '*'
- happy-dom: '*'
- jsdom: '*'
- peerDependenciesMeta:
- '@edge-runtime/vm':
+ '@vitest/browser':
optional: true
'@vitest/ui':
optional: true
- c8:
- optional: true
happy-dom:
optional: true
jsdom:
optional: true
dependencies:
- '@types/chai': 4.3.1
- '@types/chai-subset': 1.3.3
- '@types/node': 18.0.6
- chai: 4.3.6
- debug: 4.3.4
- jsdom: 20.0.0
- local-pkg: 0.4.2
- tinypool: 0.2.4
- tinyspy: 1.0.0
- vite: 3.0.2_terser@5.14.2
+ '@types/node': 18.19.3
+ '@vitest/expect': 1.3.1
+ '@vitest/runner': 1.3.1
+ '@vitest/snapshot': 1.3.1
+ '@vitest/spy': 1.3.1
+ '@vitest/utils': 1.3.1
+ acorn-walk: 8.3.2
+ chai: 4.4.1
+ debug: 4.3.4(supports-color@8.1.1)
+ execa: 8.0.1
+ jsdom: 24.0.0
+ local-pkg: 0.5.0
+ magic-string: 0.30.5
+ pathe: 1.1.2
+ picocolors: 1.0.0
+ std-env: 3.7.0
+ strip-literal: 2.0.0
+ tinybench: 2.6.0
+ tinypool: 0.8.2
+ vite: 5.1.6(@types/node@18.19.3)(terser@5.29.1)
+ vite-node: 1.3.1(@types/node@18.19.3)
+ why-is-node-running: 2.2.2
transitivePeerDependencies:
- less
+ - lightningcss
- sass
- stylus
+ - sugarss
- supports-color
- terser
dev: true
- /vue-demi/0.13.5_vue@2.7.7:
- resolution: {integrity: sha512-tO3K2bML3AwiHmVHeKCq6HLef2st4zBXIV5aEkoJl6HZ+gJWxWv2O8wLH8qrA3SX3lDoTDHNghLX1xZg83MXvw==}
+ /vue-demi@0.14.7(vue@2.7.16):
+ resolution: {integrity: sha512-EOG8KXDQNwkJILkx/gPcoL/7vH+hORoBaKgGe+6W7VFMvCYJfmF2dGbvgDroVnI8LU7/kTu8mbjRZGBU1z9NTA==}
engines: {node: '>=12'}
hasBin: true
requiresBuild: true
@@ -6464,130 +5375,124 @@ packages:
'@vue/composition-api':
optional: true
dependencies:
- vue: 2.7.7
+ vue: 2.7.16
dev: false
- /vue-router/3.5.4:
- resolution: {integrity: sha512-x+/DLAJZv2mcQ7glH2oV9ze8uPwcI+H+GgTgTmb5I55bCgY3+vXWIsqbYUzbBSZnwFHEJku4eoaH/x98veyymQ==}
+ /vue-router@3.6.5(vue@2.7.16):
+ resolution: {integrity: sha512-VYXZQLtjuvKxxcshuRAwjHnciqZVoXAjTjcqBTz4rKc8qih9g9pI3hbDjmqXaHdgL3v8pV6P8Z335XvHzESxLQ==}
+ peerDependencies:
+ vue: ^2
+ dependencies:
+ vue: 2.7.16
dev: false
- /vue-template-compiler/2.7.7:
- resolution: {integrity: sha512-vxOsjWhvDPyMW7QwXPecNmTNwKyXiF+j4KjBFjDxYPuY0xvqCT5o9WrapVItR/Nrh0XThfBaL19kXFSNYtbKmw==}
+ /vue-template-compiler@2.7.16:
+ resolution: {integrity: sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ==}
dependencies:
de-indent: 1.0.2
he: 1.2.0
dev: true
- /vue-tsc/0.38.8_typescript@4.7.4:
- resolution: {integrity: sha512-hhyc5SODiekcYNXG08aNg17LogR19o3i14avVejo+Fm45Dqk9Ke6rb0M19HoTKdQGfZBgqg2VUboYxmtAukWeg==}
+ /vue-tsc@2.0.6(typescript@5.3.3):
+ resolution: {integrity: sha512-kK50W4XqQL34vHRkxlRWLicrT6+F9xfgCgJ4KSmCHcytKzc1u3c94XXgI+CjmhOSxyw0krpExF7Obo7y4+0dVQ==}
hasBin: true
peerDependencies:
typescript: '*'
dependencies:
- '@volar/vue-typescript': 0.38.8
- typescript: 4.7.4
+ '@volar/typescript': 2.1.2
+ '@vue/language-core': 2.0.6(typescript@5.3.3)
+ semver: 7.5.4
+ typescript: 5.3.3
dev: true
- /vue/2.7.7:
- resolution: {integrity: sha512-osfkncsGCWqtch+YWYxbqTNQ9hl/UQ6TFRkdmK/VqAjuMpxzr5QotFsYpmJ1AB1ez2LJeIKXDmtMkXUotMOTsA==}
+ /vue@2.7.16:
+ resolution: {integrity: sha512-4gCtFXaAA3zYZdTp5s4Hl2sozuySsgz4jy1EnpBHNfpMa9dK1ZCG7viqBPCwXtmgc8nHqUsAu3G4gtmXkkY3Sw==}
dependencies:
- '@vue/compiler-sfc': 2.7.7
+ '@vue/compiler-sfc': 2.7.16
csstype: 3.1.0
- /w3c-hr-time/1.0.2:
- resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==}
- dependencies:
- browser-process-hrtime: 1.0.0
- dev: true
-
- /w3c-xmlserializer/3.0.0:
- resolution: {integrity: sha512-3WFqGEgSXIyGhOmAFtlicJNMjEps8b1MG31NCA0/vOF9+nKMUW1ckhi9cnNHmf88Rzw5V+dwIwsm2C7X8k9aQg==}
- engines: {node: '>=12'}
+ /w3c-xmlserializer@5.0.0:
+ resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
+ engines: {node: '>=18'}
dependencies:
- xml-name-validator: 4.0.0
+ xml-name-validator: 5.0.0
dev: true
- /wait-on/6.0.0_debug@4.3.2:
- resolution: {integrity: sha512-tnUJr9p5r+bEYXPUdRseolmz5XqJTTj98JgOsfBn7Oz2dxfE2g3zw1jE+Mo8lopM3j3et/Mq1yW7kKX6qw7RVw==}
- engines: {node: '>=10.0.0'}
+ /wait-on@7.2.0(debug@4.3.4):
+ resolution: {integrity: sha512-wCQcHkRazgjG5XoAq9jbTMLpNIjoSlZslrJ2+N9MxDsGEv1HnFoVjOCexL0ESva7Y9cu350j+DWADdk54s4AFQ==}
+ engines: {node: '>=12.0.0'}
hasBin: true
dependencies:
- axios: 0.21.4_debug@4.3.2
- joi: 17.6.0
+ axios: 1.6.3(debug@4.3.4)
+ joi: 17.11.0
lodash: 4.17.21
- minimist: 1.2.6
- rxjs: 7.5.6
+ minimist: 1.2.8
+ rxjs: 7.8.1
transitivePeerDependencies:
- debug
dev: true
- /webidl-conversions/3.0.1:
- resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
+ /web-streams-polyfill@3.3.2:
+ resolution: {integrity: sha512-3pRGuxRF5gpuZc0W+EpwQRmCD7gRqcDOMt688KmdlDAgAyaB1XlN0zq2njfDNm44XVdIouE7pZ6GzbdyH47uIQ==}
+ engines: {node: '>= 8'}
dev: true
- /webidl-conversions/7.0.0:
+ /webidl-conversions@7.0.0:
resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
engines: {node: '>=12'}
dev: true
- /whatwg-encoding/2.0.0:
- resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==}
- engines: {node: '>=12'}
- dependencies:
- iconv-lite: 0.6.3
- dev: true
-
- /whatwg-mimetype/3.0.0:
- resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==}
- engines: {node: '>=12'}
+ /webpod@0.0.2:
+ resolution: {integrity: sha512-cSwwQIeg8v4i3p4ajHhwgR7N6VyxAf+KYSSsY6Pd3aETE+xEU4vbitz7qQkB0I321xnhDdgtxuiSfk5r/FVtjg==}
+ hasBin: true
dev: true
- /whatwg-url/11.0.0:
- resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==}
- engines: {node: '>=12'}
+ /whatwg-encoding@3.1.1:
+ resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==}
+ engines: {node: '>=18'}
dependencies:
- tr46: 3.0.0
- webidl-conversions: 7.0.0
+ iconv-lite: 0.6.3
dev: true
- /whatwg-url/5.0.0:
- resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
- dependencies:
- tr46: 0.0.3
- webidl-conversions: 3.0.1
+ /whatwg-mimetype@4.0.0:
+ resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
+ engines: {node: '>=18'}
dev: true
- /which-boxed-primitive/1.0.2:
- resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
+ /whatwg-url@14.0.0:
+ resolution: {integrity: sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw==}
+ engines: {node: '>=18'}
dependencies:
- is-bigint: 1.0.4
- is-boolean-object: 1.1.2
- is-number-object: 1.0.7
- is-string: 1.0.7
- is-symbol: 1.0.4
+ tr46: 5.0.0
+ webidl-conversions: 7.0.0
dev: true
- /which/1.3.1:
- resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
+ /which@2.0.2:
+ resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
+ engines: {node: '>= 8'}
hasBin: true
dependencies:
isexe: 2.0.0
dev: true
- /which/2.0.2:
- resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
- engines: {node: '>= 8'}
+ /which@3.0.1:
+ resolution: {integrity: sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
hasBin: true
dependencies:
isexe: 2.0.0
dev: true
- /word-wrap/1.2.3:
- resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==}
- engines: {node: '>=0.10.0'}
+ /why-is-node-running@2.2.2:
+ resolution: {integrity: sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA==}
+ engines: {node: '>=8'}
+ hasBin: true
+ dependencies:
+ siginfo: 2.0.0
+ stackback: 0.0.2
dev: true
- /wrap-ansi/6.2.0:
+ /wrap-ansi@6.2.0:
resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
engines: {node: '>=8'}
dependencies:
@@ -6596,7 +5501,7 @@ packages:
strip-ansi: 6.0.1
dev: true
- /wrap-ansi/7.0.0:
+ /wrap-ansi@7.0.0:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
engines: {node: '>=10'}
dependencies:
@@ -6605,16 +5510,34 @@ packages:
strip-ansi: 6.0.1
dev: true
- /wrappy/1.0.2:
+ /wrap-ansi@8.1.0:
+ resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
+ engines: {node: '>=12'}
+ dependencies:
+ ansi-styles: 6.2.1
+ string-width: 5.1.2
+ strip-ansi: 7.1.0
+ dev: true
+
+ /wrap-ansi@9.0.0:
+ resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==}
+ engines: {node: '>=18'}
+ dependencies:
+ ansi-styles: 6.2.1
+ string-width: 7.1.0
+ strip-ansi: 7.1.0
+ dev: true
+
+ /wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
dev: true
- /ws/8.8.1:
- resolution: {integrity: sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA==}
+ /ws@8.16.0:
+ resolution: {integrity: sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
- utf-8-validate: ^5.0.2
+ utf-8-validate: '>=5.0.2'
peerDependenciesMeta:
bufferutil:
optional: true
@@ -6622,51 +5545,58 @@ packages:
optional: true
dev: true
- /xml-name-validator/4.0.0:
- resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}
- engines: {node: '>=12'}
+ /xml-name-validator@5.0.0:
+ resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==}
+ engines: {node: '>=18'}
dev: true
- /xmlchars/2.2.0:
+ /xmlchars@2.2.0:
resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
dev: true
- /yallist/2.1.2:
- resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==}
+ /yallist@3.1.1:
+ resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
dev: true
- /yallist/4.0.0:
+ /yallist@4.0.0:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
dev: true
- /yaml/2.1.1:
- resolution: {integrity: sha512-o96x3OPo8GjWeSLF+wOAbrPfhFOGY0W00GNaxCDv+9hkcDJEnev1yh8S7pgHF0ik6zc8sQLuL8hjHjJULZp8bw==}
+ /yaml@2.3.4:
+ resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==}
engines: {node: '>= 14'}
dev: true
- /yauzl/2.10.0:
+ /yauzl@2.10.0:
resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==}
dependencies:
buffer-crc32: 0.2.13
fd-slicer: 1.1.0
dev: true
- /zx/4.3.0:
- resolution: {integrity: sha512-KuEjpu5QFIMx0wWfzknDRhY98s7a3tWNRmYt19XNmB7AfOmz5zISA4+3Q8vlJc2qguxMn89uSxhPDCldPa3YLA==}
- engines: {node: '>= 14.13.1'}
+ /yocto-queue@1.0.0:
+ resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==}
+ engines: {node: '>=12.20'}
+ dev: true
+
+ /zx@7.2.3:
+ resolution: {integrity: sha512-QODu38nLlYXg/B/Gw7ZKiZrvPkEsjPN3LQ5JFXM7h0JvwhEdPNNl+4Ao1y4+o3CLNiDUNcwzQYZ4/Ko7kKzCMA==}
+ engines: {node: '>= 16.0.0'}
hasBin: true
dependencies:
- '@types/fs-extra': 9.0.13
+ '@types/fs-extra': 11.0.4
'@types/minimist': 1.2.2
- '@types/node': 16.11.45
- '@types/node-fetch': 2.6.2
- chalk: 4.1.2
- fs-extra: 10.1.0
- globby: 12.2.0
- minimist: 1.2.6
- node-fetch: 2.6.7
+ '@types/node': 18.19.3
+ '@types/ps-tree': 1.1.6
+ '@types/which': 3.0.3
+ chalk: 5.3.0
+ fs-extra: 11.2.0
+ fx: 31.0.0
+ globby: 13.2.2
+ minimist: 1.2.8
+ node-fetch: 3.3.1
ps-tree: 1.2.0
- which: 2.0.2
- transitivePeerDependencies:
- - encoding
+ webpod: 0.0.2
+ which: 3.0.1
+ yaml: 2.3.4
dev: true
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
index d7a06b64..735dbd81 100644
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -1,5 +1,4 @@
packages:
- - 'playground/**'
- 'template/base'
- 'template/config/**'
- 'template/tsconfig/**'
diff --git a/scripts/build.mjs b/scripts/build.mjs
index f832a89e..8ee78d88 100644
--- a/scripts/build.mjs
+++ b/scripts/build.mjs
@@ -27,6 +27,8 @@ SOFTWARE.
await esbuild.build({
bundle: true,
entryPoints: ['index.ts'],
+ // TODO: Locales
+ // external: ['locales/*'],
outfile: 'outfile.cjs',
format: 'cjs',
platform: 'node',
@@ -38,7 +40,11 @@ await esbuild.build({
setup({ onResolve, resolve }) {
onResolve({ filter: /^prompts$/, namespace: 'file' }, async ({ importer, resolveDir }) => {
// we can always use non-transpiled code since we support 14.16.0+
- const result = await resolve('prompts/lib/index.js', { importer, resolveDir })
+ const result = await resolve('prompts/lib/index.js', {
+ importer,
+ resolveDir,
+ kind: 'import-statement'
+ })
return result
})
}
diff --git a/scripts/test.mjs b/scripts/test.mjs
index a8c2eaa7..0358cb5b 100644
--- a/scripts/test.mjs
+++ b/scripts/test.mjs
@@ -1,14 +1,23 @@
#!/usr/bin/env zx
import 'zx/globals'
+/**
+ * @see https://vitest.dev/guide/features.html#watch-mode
+ */
+process.env.CI = 'true'
+
const playgroundDir = path.resolve(__dirname, '../playground/')
+cd(playgroundDir)
+console.log('Installing playground dependencies')
+await $`pnpm install`
+
for (const projectName of fs.readdirSync(playgroundDir)) {
if (projectName.includes('vitest')) {
cd(path.resolve(playgroundDir, projectName))
console.log(`Running unit tests in ${projectName}`)
- await $`pnpm test:unit`
+ await $`CI=1 pnpm test:unit`
}
if (projectName.includes('cypress')) {
@@ -37,7 +46,7 @@ for (const projectName of fs.readdirSync(playgroundDir)) {
cd(path.resolve(playgroundDir, projectName))
console.log(`Running unit tests in ${projectName}`)
- await $`pnpm test:unit`
+ await $`CI=1 pnpm test:unit`
console.log(`Building ${projectName}`)
await $`pnpm build`
diff --git a/template/base/.vscode/extensions.json b/template/base/.vscode/extensions.json
index c0a6e5a4..a7cea0b0 100644
--- a/template/base/.vscode/extensions.json
+++ b/template/base/.vscode/extensions.json
@@ -1,3 +1,3 @@
{
- "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"]
+ "recommendations": ["Vue.volar"]
}
diff --git a/template/base/package.json b/template/base/package.json
index f68978fe..b4c4dfca 100644
--- a/template/base/package.json
+++ b/template/base/package.json
@@ -1,16 +1,17 @@
{
+ "type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview --port 4173"
},
"dependencies": {
- "vue": "^2.7.7"
+ "vue": "^2.7.16"
},
"devDependencies": {
- "@vitejs/plugin-legacy": "^2.0.0",
- "@vitejs/plugin-vue2": "^1.1.2",
- "terser": "^5.14.2",
- "vite": "^3.0.2"
+ "@vitejs/plugin-legacy": "^5.3.2",
+ "@vitejs/plugin-vue2": "^2.3.1",
+ "terser": "^5.29.1",
+ "vite": "^5.1.6"
}
}
diff --git a/template/config/cypress-ct/cypress.config.js b/template/config/cypress-ct/cypress.config.js
index c3aba743..c8fac129 100644
--- a/template/config/cypress-ct/cypress.config.js
+++ b/template/config/cypress-ct/cypress.config.js
@@ -1,6 +1,6 @@
-const { defineConfig } = require('cypress')
+import { defineConfig } from 'cypress'
-module.exports = defineConfig({
+export default defineConfig({
e2e: {
specPattern: 'cypress/e2e/**/*.{cy,spec}.{js,jsx,ts,tsx}',
baseUrl: 'http://localhost:4173'
diff --git a/template/config/cypress-ct/package.json b/template/config/cypress-ct/package.json
index 89f83bbd..5550fbef 100644
--- a/template/config/cypress-ct/package.json
+++ b/template/config/cypress-ct/package.json
@@ -1,12 +1,12 @@
{
"scripts": {
"test:unit": "cypress open --component",
- "test:unit:ci": "cypress run --component --quiet --reporter spec"
+ "test:unit:ci": "cypress run --component"
},
"dependencies": {
- "vue": "^2.7.7"
+ "vue": "^2.7.16"
},
"devDependencies": {
- "cypress": "^10.3.0"
+ "cypress": "^13.7.0"
}
}
diff --git a/template/config/cypress/cypress.config.js b/template/config/cypress/cypress.config.js
index 9cf6a199..0f66080f 100644
--- a/template/config/cypress/cypress.config.js
+++ b/template/config/cypress/cypress.config.js
@@ -1,6 +1,6 @@
-const { defineConfig } = require('cypress')
+import { defineConfig } from 'cypress'
-module.exports = defineConfig({
+export default defineConfig({
e2e: {
specPattern: 'cypress/e2e/**/*.{cy,spec}.{js,jsx,ts,tsx}',
baseUrl: 'http://localhost:4173'
diff --git a/template/config/cypress/package.json b/template/config/cypress/package.json
index 1b984b20..53bb206d 100644
--- a/template/config/cypress/package.json
+++ b/template/config/cypress/package.json
@@ -1,10 +1,10 @@
{
"scripts": {
- "test:e2e": "start-server-and-test preview http://localhost:4173/ 'cypress open --e2e'",
- "test:e2e:ci": "start-server-and-test preview http://localhost:4173/ 'cypress run --e2e'"
+ "test:e2e": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'",
+ "test:e2e:ci": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'"
},
"devDependencies": {
- "cypress": "^10.3.0",
- "start-server-and-test": "^1.14.0"
+ "cypress": "^13.7.0",
+ "start-server-and-test": "^2.0.3"
}
}
diff --git a/template/config/jsx/package.json b/template/config/jsx/package.json
index e9194945..91d56fca 100644
--- a/template/config/jsx/package.json
+++ b/template/config/jsx/package.json
@@ -1,9 +1,9 @@
{
"dependencies": {
- "vue": "^2.7.7"
+ "vue": "^2.7.16"
},
"devDependencies": {
- "@vitejs/plugin-vue2-jsx": "^1.0.2",
- "vite": "^3.0.2"
+ "@vitejs/plugin-vue2-jsx": "^1.1.1",
+ "vite": "^5.1.6"
}
}
diff --git a/template/config/pinia/package.json b/template/config/pinia/package.json
index 1a96eea5..bdaf6f0f 100644
--- a/template/config/pinia/package.json
+++ b/template/config/pinia/package.json
@@ -1,6 +1,6 @@
{
"dependencies": {
- "pinia": "^2.0.16",
- "vue": "^2.7.7"
+ "pinia": "^2.1.7",
+ "vue": "^2.7.16"
}
}
diff --git a/template/config/router/package.json b/template/config/router/package.json
index b96bd7c6..8aa13ec8 100644
--- a/template/config/router/package.json
+++ b/template/config/router/package.json
@@ -1,5 +1,5 @@
{
"dependencies": {
- "vue-router": "^3.5.4"
+ "vue-router": "^3.6.5"
}
}
diff --git a/template/config/typescript/env.d.ts b/template/config/typescript/env.d.ts
index 11f02fe2..b767d349 100644
--- a/template/config/typescript/env.d.ts
+++ b/template/config/typescript/env.d.ts
@@ -1 +1,14 @@
///
+
+import type { ComponentPublicInstanceConstructor } from 'vue/types/v3-component-public-instance'
+
+/**
+ * patch for @vue/test-utils@1.x with Vue@2.7.x
+ * @see https://github.com/vuejs/vue-test-utils/issues/2087#issuecomment-1919820059
+ */
+declare module '@vue/test-utils' {
+ export function mount(
+ originalComponent: T,
+ options?: ThisTypedMountOptions
+ ): Wrapper
+}
diff --git a/template/config/typescript/package.json b/template/config/typescript/package.json
index 92fa20f0..5352cee2 100644
--- a/template/config/typescript/package.json
+++ b/template/config/typescript/package.json
@@ -1,13 +1,13 @@
{
"scripts": {
- "build": "run-p type-check build-only",
+ "build": "run-p type-check \"build-only {@}\" --",
"build-only": "vite build",
- "type-check": "vue-tsc --noEmit"
+ "type-check": "vue-tsc --build --force"
},
"devDependencies": {
- "@types/node": "^16.11.45",
- "npm-run-all": "^4.1.5",
- "typescript": "~4.7.4",
- "vue-tsc": "^0.38.8"
+ "@types/node": "^18.19.3",
+ "npm-run-all2": "^6.1.1",
+ "typescript": "~5.3.0",
+ "vue-tsc": "^2.0.6"
}
}
diff --git a/template/config/vitest/package.json b/template/config/vitest/package.json
index 8689effb..725f9abe 100644
--- a/template/config/vitest/package.json
+++ b/template/config/vitest/package.json
@@ -1,14 +1,14 @@
{
"scripts": {
- "test:unit": "vitest --environment jsdom"
+ "test:unit": "vitest"
},
"dependencies": {
- "vue": "^2.7.7"
+ "vue": "^2.7.16"
},
"devDependencies": {
- "@vue/test-utils": "^1.3.0",
- "jsdom": "^20.0.0",
- "vitest": "^0.18.1",
- "vue-template-compiler": "^2.7.7"
+ "@vue/test-utils": "^1.3.6",
+ "jsdom": "^24.0.0",
+ "vitest": "^1.3.1",
+ "vue-template-compiler": "^2.7.16"
}
}
diff --git a/template/config/vitest/vitest.config.js b/template/config/vitest/vitest.config.js
new file mode 100644
index 00000000..10067d57
--- /dev/null
+++ b/template/config/vitest/vitest.config.js
@@ -0,0 +1,14 @@
+import { fileURLToPath } from 'node:url'
+import { mergeConfig, defineConfig, configDefaults } from 'vitest/config'
+import viteConfig from './vite.config'
+
+export default mergeConfig(
+ viteConfig,
+ defineConfig({
+ test: {
+ environment: 'jsdom',
+ exclude: [...configDefaults.exclude, 'e2e/*'],
+ root: fileURLToPath(new URL('./', import.meta.url))
+ }
+ })
+)
diff --git a/template/eslint/package.json b/template/eslint/package.json
index c9fee828..c4b23298 100644
--- a/template/eslint/package.json
+++ b/template/eslint/package.json
@@ -1,11 +1,11 @@
{
"devDependencies": {
- "@rushstack/eslint-patch": "^1.1.0",
- "@vue/eslint-config-prettier": "^7.0.0",
- "@vue/eslint-config-typescript": "^11.0.0",
- "eslint": "^8.5.0",
- "eslint-plugin-cypress": "^2.12.1",
- "eslint-plugin-vue": "^9.0.0",
- "prettier": "^2.5.1"
+ "@rushstack/eslint-patch": "^1.7.2",
+ "@vue/eslint-config-prettier": "^9.0.0",
+ "@vue/eslint-config-typescript": "^12.0.0",
+ "eslint": "^8.56.0",
+ "eslint-plugin-cypress": "^2.15.1",
+ "eslint-plugin-vue": "^9.20.1",
+ "prettier": "^3.2.4"
}
}
diff --git a/template/tsconfig/base/package.json b/template/tsconfig/base/package.json
index aa3386ce..f562a3cc 100644
--- a/template/tsconfig/base/package.json
+++ b/template/tsconfig/base/package.json
@@ -1,5 +1,6 @@
{
"devDependencies": {
- "@vue/tsconfig": "^0.1.3"
+ "@tsconfig/node18": "^18.2.2",
+ "@vue/tsconfig": "^0.5.1"
}
}
diff --git a/template/tsconfig/base/tsconfig.app.json b/template/tsconfig/base/tsconfig.app.json
new file mode 100644
index 00000000..26b3ebd8
--- /dev/null
+++ b/template/tsconfig/base/tsconfig.app.json
@@ -0,0 +1,18 @@
+{
+ "extends": "@vue/tsconfig/tsconfig.dom.json",
+ "include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
+ "exclude": ["src/**/__tests__/*"],
+ "compilerOptions": {
+ "composite": true,
+ "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
+
+ "baseUrl": ".",
+ "paths": {
+ "@/*": ["./src/*"]
+ }
+ },
+ "vueCompilerOptions": {
+ // "target": 2, // For Vue version <= 2.6.14
+ "target": 2.7
+ }
+}
diff --git a/template/tsconfig/base/tsconfig.config.json b/template/tsconfig/base/tsconfig.config.json
deleted file mode 100644
index c2d3a309..00000000
--- a/template/tsconfig/base/tsconfig.config.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "extends": "@vue/tsconfig/tsconfig.node.json",
- "include": ["vite.config.*", "vitest.config.*", "cypress.config.*"],
- "compilerOptions": {
- "composite": true,
- "types": ["node"]
- }
-}
diff --git a/template/tsconfig/base/tsconfig.json b/template/tsconfig/base/tsconfig.json
deleted file mode 100644
index 8d235999..00000000
--- a/template/tsconfig/base/tsconfig.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "extends": "@vue/tsconfig/tsconfig.web.json",
- "include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
- "compilerOptions": {
- "baseUrl": ".",
- "paths": {
- "@/*": ["./src/*"]
- }
- },
-
- "references": [
- {
- "path": "./tsconfig.config.json"
- }
- ]
-}
diff --git a/template/tsconfig/base/tsconfig.node.json b/template/tsconfig/base/tsconfig.node.json
new file mode 100644
index 00000000..d2e62c13
--- /dev/null
+++ b/template/tsconfig/base/tsconfig.node.json
@@ -0,0 +1,13 @@
+{
+ "extends": "@tsconfig/node18/tsconfig.json",
+ "include": ["vite.config.*", "vitest.config.*", "cypress.config.*"],
+ "compilerOptions": {
+ "composite": true,
+ "noEmit": true,
+ "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
+
+ "module": "ESNext",
+ "moduleResolution": "Bundler",
+ "types": ["node"]
+ }
+}
diff --git a/template/tsconfig/cypress-ct/tsconfig.app.json b/template/tsconfig/cypress-ct/tsconfig.app.json
deleted file mode 100644
index cdbea1d7..00000000
--- a/template/tsconfig/cypress-ct/tsconfig.app.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "extends": "@vue/tsconfig/tsconfig.web.json",
- "include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
- "exclude": ["src/**/__tests__/*"],
- "compilerOptions": {
- "composite": true,
- "baseUrl": ".",
- "paths": {
- "@/*": ["./src/*"]
- }
- }
-}
diff --git a/template/tsconfig/cypress-ct/tsconfig.cypress-ct.json b/template/tsconfig/cypress-ct/tsconfig.cypress-ct.json
index 29cbaa47..12833b27 100644
--- a/template/tsconfig/cypress-ct/tsconfig.cypress-ct.json
+++ b/template/tsconfig/cypress-ct/tsconfig.cypress-ct.json
@@ -1,8 +1,15 @@
{
"extends": "./tsconfig.app.json",
- "include": ["env.d.ts", "src/**/*", "src/**/*.vue", "cypress/support/component.*"],
+ "include": [
+ "env.d.ts",
+ "src/**/*",
+ "src/**/*.vue",
+ "cypress/support/component.*",
+ "cypress/support/commands.ts"
+ ],
"exclude": [],
"compilerOptions": {
- "composite": true
+ "composite": true,
+ "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.cypress-ct.tsbuildinfo"
}
}
diff --git a/template/tsconfig/cypress-ct/tsconfig.json b/template/tsconfig/cypress-ct/tsconfig.json
deleted file mode 100644
index 040665bb..00000000
--- a/template/tsconfig/cypress-ct/tsconfig.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "files": [],
- "references": [
- {
- "path": "./tsconfig.config.json"
- },
- {
- "path": "./tsconfig.app.json"
- },
- {
- "path": "./tsconfig.cypress-ct.json"
- }
- ]
-}
diff --git a/template/tsconfig/cypress/cypress/e2e/tsconfig.json b/template/tsconfig/cypress/cypress/e2e/tsconfig.json
index be213aef..37748feb 100644
--- a/template/tsconfig/cypress/cypress/e2e/tsconfig.json
+++ b/template/tsconfig/cypress/cypress/e2e/tsconfig.json
@@ -1,5 +1,5 @@
{
- "extends": "@vue/tsconfig/tsconfig.web.json",
+ "extends": "@vue/tsconfig/tsconfig.dom.json",
"include": ["./**/*", "../support/**/*"],
"compilerOptions": {
"isolatedModules": false,
diff --git a/template/tsconfig/vitest/package.json b/template/tsconfig/vitest/package.json
index ec8ee29a..1aecee11 100644
--- a/template/tsconfig/vitest/package.json
+++ b/template/tsconfig/vitest/package.json
@@ -1,8 +1,5 @@
{
- "scripts": {
- "type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false"
- },
"devDependencies": {
- "@types/jsdom": "^16.2.14"
+ "@types/jsdom": "^21.1.6"
}
}
diff --git a/template/tsconfig/vitest/tsconfig.app.json b/template/tsconfig/vitest/tsconfig.app.json
deleted file mode 100644
index cdbea1d7..00000000
--- a/template/tsconfig/vitest/tsconfig.app.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "extends": "@vue/tsconfig/tsconfig.web.json",
- "include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
- "exclude": ["src/**/__tests__/*"],
- "compilerOptions": {
- "composite": true,
- "baseUrl": ".",
- "paths": {
- "@/*": ["./src/*"]
- }
- }
-}
diff --git a/template/tsconfig/vitest/tsconfig.json b/template/tsconfig/vitest/tsconfig.json
deleted file mode 100644
index 31f90037..00000000
--- a/template/tsconfig/vitest/tsconfig.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "files": [],
- "references": [
- {
- "path": "./tsconfig.config.json"
- },
- {
- "path": "./tsconfig.app.json"
- },
- {
- "path": "./tsconfig.vitest.json"
- }
- ]
-}
diff --git a/template/tsconfig/vitest/tsconfig.vitest.json b/template/tsconfig/vitest/tsconfig.vitest.json
index d080d611..571995d1 100644
--- a/template/tsconfig/vitest/tsconfig.vitest.json
+++ b/template/tsconfig/vitest/tsconfig.vitest.json
@@ -3,6 +3,8 @@
"exclude": [],
"compilerOptions": {
"composite": true,
+ "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.vitest.tsbuildinfo",
+
"lib": [],
"types": ["node", "jsdom"]
}
diff --git a/tsconfig.json b/tsconfig.json
index 3487a8e2..df3ac89a 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,7 +1,10 @@
{
- "extends": "@vue/tsconfig/tsconfig.node.json",
+ "extends": "@tsconfig/node18/tsconfig.json",
"include": ["index.ts", "utils/**/*"],
"compilerOptions": {
- "strict": false
+ "strict": false,
+ "resolveJsonModule": true,
+ "moduleResolution": "Bundler",
+ "module": "ESNext"
}
}
diff --git a/utils/renderEslint.ts b/utils/renderEslint.ts
index 3886ef7c..e183d97c 100644
--- a/utils/renderEslint.ts
+++ b/utils/renderEslint.ts
@@ -3,13 +3,13 @@ import * as path from 'node:path'
import type { Linter } from 'eslint'
-import { devDependencies as allEslintDeps } from '../template/eslint/package.json' assert { type: 'json' }
+import eslintTemplatePackage from '../template/eslint/package.json' assert { type: 'json' }
import deepMerge from './deepMerge'
import sortDependencies from './sortDependencies'
const dependencies = {}
function addEslintDependency(name) {
- dependencies[name] = allEslintDeps[name]
+ dependencies[name] = eslintTemplatePackage.devDependencies[name]
}
addEslintDependency('eslint')