From d20c6541e55b8ee340d494795f0c7d0b9f08faa5 Mon Sep 17 00:00:00 2001 From: kazuya kawaguchi Date: Fri, 7 Jul 2023 16:31:16 +0900 Subject: [PATCH] fix: integrate vue-i18n jit compilation (#2199) * fix: integrate vue-i18n jit compilation * fix: basic implementation * fix: sourcemap warnings * upgrade vue-i18n * updates formating and linting * upgrade playwright * fix: wrong tests * upgrade unplugin-vue-i18n --- .eslintrc.cjs | 7 +- .prettierrc.cjs => .prettierrc.mjs | 2 +- .vscode/settings.json | 6 +- CHANGELOG.md | 15 - CONTRIBUTING.md | 2 +- README.md | 3 +- TODO.md | 9 +- docs/content/1.getting-started/1.setup.md | 10 - docs/content/3.options/6.misc.md | 4 +- package.json | 65 +- playground/nuxt.config.ts | 4 +- pnpm-lock.yaml | 3039 ++++++++++------- specs/fixtures/precompile/app.vue | 10 - specs/fixtures/precompile/i18n.config.ts | 5 - specs/fixtures/precompile/nuxt.config.ts | 6 - specs/fixtures/precompile/package.json | 14 - .../precompile/server/api/[locale].ts | 24 - specs/lang_switcher.spec.ts | 4 +- specs/lazy_load/basic.spec.ts | 2 +- specs/lazy_load/precompile.spec.ts | 123 - specs/utils/README.md | 2 - src/bundler.ts | 16 +- src/constants.ts | 6 +- src/gen.ts | 11 +- src/module.ts | 74 +- src/options.d.ts | 4 - src/runtime/internal.ts | 107 - src/runtime/server/dynamic.ts | 138 - src/runtime/server/precompile.ts | 133 - src/transform/dynamic.ts | 62 +- src/transform/macros.ts | 2 +- src/transform/proxy.ts | 70 +- src/types.ts | 4 +- src/utils.ts | 36 - test/__snapshots__/gen.test.ts.snap | 50 +- 35 files changed, 1890 insertions(+), 2179 deletions(-) rename .prettierrc.cjs => .prettierrc.mjs (86%) delete mode 100644 specs/fixtures/precompile/app.vue delete mode 100644 specs/fixtures/precompile/i18n.config.ts delete mode 100644 specs/fixtures/precompile/nuxt.config.ts delete mode 100644 specs/fixtures/precompile/package.json delete mode 100644 specs/fixtures/precompile/server/api/[locale].ts delete mode 100644 specs/lazy_load/precompile.spec.ts delete mode 100644 src/runtime/server/dynamic.ts delete mode 100644 src/runtime/server/precompile.ts diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 80936191e..bff788b3e 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -3,12 +3,7 @@ module.exports = { env: { node: true }, - extends: [ - 'plugin:@typescript-eslint/recommended', - 'plugin:@typescript-eslint/eslint-recommended', - 'plugin:prettier/recommended', - 'prettier' - ], + extends: ['plugin:@typescript-eslint/recommended', 'plugin:@typescript-eslint/eslint-recommended', 'prettier'], plugins: ['@typescript-eslint'], parserOptions: { parser: '@typescript-eslint/parser', diff --git a/.prettierrc.cjs b/.prettierrc.mjs similarity index 86% rename from .prettierrc.cjs rename to .prettierrc.mjs index 3903959bb..eff1ad4df 100644 --- a/.prettierrc.cjs +++ b/.prettierrc.mjs @@ -1,4 +1,4 @@ -module.exports = { +export default { semi: false, singleQuote: true, printWidth: 120, diff --git a/.vscode/settings.json b/.vscode/settings.json index f88c60502..6a7b6ad82 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,10 +2,10 @@ "files.associations": { "*.json": "jsonc" }, - "[typescript]": { - "editor.defaultFormatter": "esbenp.prettier-vscode" - }, + "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.formatOnSave": true, + "editor.formatOnPaste": true, + "editor.formatOnType": true, "editor.codeActionsOnSave": { "source.fixAll.eslint": true }, diff --git a/CHANGELOG.md b/CHANGELOG.md index 515d9fbde..c571de301 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,7 +14,6 @@ This changelog is generated by [GitHub Releases](https://github.com/nuxt-modules #####     [View changes on GitHub](https://github.com/nuxt-modules/i18n/compare/v8.0.0-beta.11...v8.0.0-beta.12) - # v8.0.0-beta.11 (2023-04-13T11:10:28Z) This changelog is generated by [GitHub Releases](https://github.com/nuxt-modules/i18n/releases/tag/v8.0.0-beta.11) @@ -48,7 +47,6 @@ This changelog is generated by [GitHub Releases](https://github.com/nuxt-modules #####     [View changes on GitHub](https://github.com/nuxt-modules/i18n/compare/v8.0.0-beta.10...v8.0.0-beta.11) - # v8.0.0-beta.10 (2023-02-22T15:09:36Z) This changelog is generated by [GitHub Releases](https://github.com/nuxt-modules/i18n/releases/tag/v8.0.0-beta.10) @@ -68,7 +66,6 @@ This changelog is generated by [GitHub Releases](https://github.com/nuxt-modules #####     [View changes on GitHub](https://github.com/nuxt-modules/i18n/compare/v8.0.0-beta.9...v8.0.0-beta.10) - # v8.0.0-beta.9 (2023-01-27T03:32:07Z) This changelog is generated by [GitHub Releases](https://github.com/nuxt-modules/i18n/releases/tag/v8.0.0-beta.9) @@ -83,12 +80,10 @@ This changelog is generated by [GitHub Releases](https://github.com/nuxt-modules #####     [View changes on GitHub](https://github.com/nuxt-modules/i18n/compare/v8.0.0-beta.8...v8.0.0-beta.9) - # v8.0.0-beta.8 (2023-01-21T13:46:45Z) This changelog is generated by [GitHub Releases](https://github.com/nuxt-modules/i18n/releases/tag/v8.0.0-beta.8) - ### ๐Ÿšจ Breaking Changes - Injection fields completion for nuxt app instance and page meta - by **kazuya kawaguchi** in https://github.com/nuxt-modules/i18n/issues/1711 [(8e682)](https://github.com/nuxt-modules/i18n/commit/8e682a6) @@ -113,7 +108,6 @@ This changelog is generated by [GitHub Releases](https://github.com/nuxt-modules ##### [View changes on GitHub](https://github.com/nuxt-modules/i18n/compare/v8.0.0-beta.7...v8.0.0-beta.8) - # v8.0.0-beta.7 (2022-12-08T01:11:15Z) This changelog is generated by [GitHub Releases](https://github.com/nuxt-modules/i18n/releases/tag/v8.0.0-beta.7) @@ -130,7 +124,6 @@ This changelog is generated by [GitHub Releases](https://github.com/nuxt-modules #####     [View changes on GitHub](https://github.com/nuxt-modules/i18n/compare/v8.0.0-beta.6...v8.0.0-beta.7) - # v8.0.0-beta.6 (2022-11-29T05:24:25Z) This changelog is generated by [GitHub Releases](https://github.com/nuxt-community/i18n-module/releases/tag/v8.0.0-beta.6) @@ -141,7 +134,6 @@ This changelog is generated by [GitHub Releases](https://github.com/nuxt-communi #####     [View changes on GitHub](https://github.com/nuxt-community/i18n-module/compare/v8.0.0-beta.5...v8.0.0-beta.6) - # v8.0.0-beta.5 (2022-11-28T08:40:36Z) This changelog is generated by [GitHub Releases](https://github.com/nuxt-community/i18n-module/releases/tag/v8.0.0-beta.5) @@ -164,7 +156,6 @@ This changelog is generated by [GitHub Releases](https://github.com/nuxt-communi #####     [View changes on GitHub](https://github.com/nuxt-community/i18n-module/compare/v8.0.0-beta.4...v8.0.0-beta.5) - # v8.0.0-beta.4 (2022-11-12T09:00:57Z) This changelog is generated by [GitHub Releases](https://github.com/nuxt-community/i18n-module/releases/tag/v8.0.0-beta.4) @@ -186,7 +177,6 @@ This changelog is generated by [GitHub Releases](https://github.com/nuxt-communi #####     [View changes on GitHub](https://github.com/nuxt-community/i18n-module/compare/v8.0.0-beta.3...v8.0.0-beta.4) - # v8.0.0-beta.3 (2022-10-31T17:00:44Z) This changelog is generated by [GitHub Releases](https://github.com/nuxt-community/i18n-module/releases/tag/v8.0.0-beta.3) @@ -205,7 +195,6 @@ This changelog is generated by [GitHub Releases](https://github.com/nuxt-communi #####     [View changes on GitHub](https://github.com/nuxt-community/i18n-module/compare/v8.0.0-beta.2...v8.0.0-beta.3) - # v8.0.0-beta.2 (2022-10-26T14:50:23Z) This changelog is generated by [GitHub Releases](https://github.com/nuxt-community/i18n-module/releases/tag/v8.0.0-beta.2) @@ -218,7 +207,6 @@ This changelog is generated by [GitHub Releases](https://github.com/nuxt-communi #####     [View changes on GitHub](https://github.com/nuxt-community/i18n-module/compare/v8.0.0-beta.1...v8.0.0-beta.2) - # v8.0.0-beta.1 (2022-10-20T11:05:51Z) This changelog is generated by [GitHub Releases](https://github.com/nuxt-community/i18n-module/releases/tag/v8.0.0-beta.1) @@ -243,7 +231,6 @@ This changelog is generated by [GitHub Releases](https://github.com/nuxt-communi #####     [View changes on GitHub](https://github.com/nuxt-community/i18n-module/compare/v8.0.0-alpha.3...v8.0.0-beta.1) - # v8.0.0-alpha.3 (2022-10-10T01:47:49Z) This changelog is generated by [GitHub Releases](https://github.com/nuxt-community/i18n-module/releases/tag/v8.0.0-alpha.3) @@ -258,7 +245,6 @@ This changelog is generated by [GitHub Releases](https://github.com/nuxt-communi #####     [View changes on GitHub](https://github.com/nuxt-community/i18n-module/compare/v8.0.0-alpha.2...v8.0.0-alpha.3) - # v8.0.0-alpha.2 (2022-09-28T08:47:05Z) This changelog is generated by [GitHub Releases](https://github.com/nuxt-community/i18n-module/releases/tag/v8.0.0-alpha.2) @@ -281,7 +267,6 @@ This changelog is generated by [GitHub Releases](https://github.com/nuxt-communi #####     [View changes on GitHub](https://github.com/nuxt-community/i18n-module/compare/v8.0.0-alpha.1...v8.0.0-alpha.2) - ## 8.0.0-alpha.1 (2022-09-03) This release is for Nuxt3. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7f15ca78d..cd95fa83e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -57,4 +57,4 @@ pnpm docs:dev > Please make sure all languages are in sync. If you don't speak a particular language, insert english text in place. - Commit and push your changes -- Once you're done, submit that shiny PR! \ No newline at end of file +- Once you're done, submit that shiny PR! diff --git a/README.md b/README.md index 996332bcc..dc5e266dd 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ npm install @nuxtjs/i18n@next --save-dev # Using yarn yarn add --dev @nuxtjs/i18n@next -# Using pnpm +# Using pnpm pnpm install --shamefully-hoist -D @nuxtjs/i18n@next ``` @@ -72,6 +72,7 @@ pnpm install --shamefully-hoist -D @nuxtjs/i18n@next Keep in mind that not all features are currently supported yet and some things might be broken. ## ๐Ÿ”— Links + - ๐Ÿ“˜ [Documentation for v8](https://v8.i18n.nuxtjs.org/) - ๐Ÿ“˜ [Documentation for v7](https://i18n.nuxtjs.org/) - ๐Ÿ”– [Release notes](./CHANGELOG.md) diff --git a/TODO.md b/TODO.md index ad95eed2a..f7e50c9ef 100644 --- a/TODO.md +++ b/TODO.md @@ -1,10 +1,11 @@ # TODO + - For Official release - [ ] remove `i18n:extends-messages` hook logic - [ ] remove `parsePage` option logic - - [ ] update `@intlify/**` and vue-i18-* pkgs for latest version + - [ ] update `@intlify/**` and vue-i18-\* pkgs for latest version - Refactoring - - [ ] module alias, langs option, etc should be resolved with `createResolver` - - [ ] resolve i18n options of nuxt.config with `useRuntimeConfig`, not `i18n.options.mjs` + - [ ] module alias, langs option, etc should be resolved with `createResolver` + - [ ] resolve i18n options of nuxt.config with `useRuntimeConfig`, not `i18n.options.mjs` - [ ] pass `vueI18n` option as config and pass it to vue-i18n in runtime context. - - [ ] request nuxt sergment parser from `@nuxt/kit` API and use it. \ No newline at end of file + - [ ] request nuxt sergment parser from `@nuxt/kit` API and use it. diff --git a/docs/content/1.getting-started/1.setup.md b/docs/content/1.getting-started/1.setup.md index 34c9f334e..6dc716109 100644 --- a/docs/content/1.getting-started/1.setup.md +++ b/docs/content/1.getting-started/1.setup.md @@ -28,16 +28,6 @@ pnpm add @nuxtjs/i18n@next --save-dev ``` :: -## `package.json` - -Then, you need to add `"type": "module"` to `package.json` of your nuxt project. - -::alert{type="info"} -This is necessary because nitro prerender is used for the dynamic import of nuxt i18n config and i18n resources on the Node runtime, on nuxt build. -:: - -## `nuxt.config.ts` - Then, add `@nuxtjs/i18n` to the `modules` section in your `nuxt.config`. You can use either of the following ways to specify the module options: ```ts {}[nuxt.config.ts] diff --git a/docs/content/3.options/6.misc.md b/docs/content/3.options/6.misc.md index a40fa14a3..68ffc7314 100644 --- a/docs/content/3.options/6.misc.md +++ b/docs/content/3.options/6.misc.md @@ -22,12 +22,12 @@ Supported properties: - `jsTsFormatResource` (default: `false`) - Allow the format `js` and `ts` for locale messages in lazy load translation. -## `precompile` +## `compilation` - type: `object` - default: `{ strictMessage: true, escapeHtml: false }` -Configure flags that sets the behavior precompilation of locale messages. +Configure flags that sets the behavior compilation of locale messages. Supported properties: diff --git a/package.json b/package.json index 69a17ba5c..bbef3012b 100644 --- a/package.json +++ b/package.json @@ -56,7 +56,7 @@ "docs:generate": "nuxi generate docs", "docs:preview": "nuxi preview docs", "fix": "run-p lint:fix format:fix", - "format": "prettier --config .prettierrc.cjs --ignore-path .prettierignore --list-different '**/*.{js,json,html}'", + "format": "prettier --config .prettierrc.mjs --ignore-path .prettierignore --list-different '**/*.{js,json,html,md}'", "format:fix": "pnpm format --write", "lint": "eslint --cache --ext .js,.ts,.vue,.json .", "lint:fix": "pnpm lint --fix", @@ -74,62 +74,61 @@ } }, "dependencies": { - "@intlify/bundle-utils": "^5.5.0", - "@intlify/shared": "9.3.0-beta.17", - "@intlify/unplugin-vue-i18n": "^0.10.0", + "@intlify/bundle-utils": "^7.0.1", + "@intlify/shared": "9.3.0-beta.22", + "@intlify/unplugin-vue-i18n": "^0.12.1", "@mizchi/sucrase": "^4.1.0", "@nuxt/kit": "^3.4.1", - "@vue/compiler-sfc": "^3.2.47", + "@vue/compiler-sfc": "^3.3.4", "cookie-es": "^0.5.0", "debug": "^4.3.4", "defu": "^6.1.2", "estree-walker": "^3.0.3", "is-https": "^4.0.0", - "js-cookie": "^3.0.1", + "js-cookie": "^3.0.5", "knitwork": "^1.0.0", "magic-string": "^0.27.0", - "mlly": "^1.2.0", - "pathe": "^1.1.0", - "pkg-types": "^1.0.2", - "ufo": "^1.1.0", - "unplugin": "^1.3.1", + "mlly": "^1.4.0", + "pathe": "^1.1.1", + "pkg-types": "^1.0.3", + "ufo": "^1.1.2", + "unplugin": "^1.3.2", "unstorage": "^1.5.0", - "vue-i18n": "9.3.0-beta.19", + "vue-i18n": "9.3.0-beta.22", "vue-i18n-routing": "^0.13.0" }, "devDependencies": { - "@babel/parser": "^7.21.4", - "@babel/plugin-syntax-import-assertions": "^7.20.0", - "@babel/types": "^7.21.4", + "@babel/parser": "^7.22.7", + "@babel/plugin-syntax-import-assertions": "^7.22.5", + "@babel/types": "^7.22.5", "@nuxt/module-builder": "latest", "@nuxt/schema": "^3.4.1", - "@types/debug": "^4.1.7", + "@types/debug": "^4.1.8", "@types/js-cookie": "^3.0.3", - "@types/rimraf": "^3", - "@typescript-eslint/eslint-plugin": "^5.58.0", - "@typescript-eslint/parser": "^5.58.0", - "bumpp": "^9.1.0", - "changelogithub": "^0.12.7", + "@types/rimraf": "^3.0.2", + "@typescript-eslint/eslint-plugin": "^5.61.0", + "@typescript-eslint/parser": "^5.61.0", + "bumpp": "^9.1.1", + "changelogithub": "^0.12.12", "debug": "^4.3.4", - "eslint": "^8.38.0", + "eslint": "^8.44.0", "eslint-config-prettier": "^8.8.0", - "eslint-plugin-prettier": "^4.2.1", "execa": "^7.1.1", "get-port-please": "^3.0.1", "gh-changelogen": "^0.2.8", - "jiti": "^1.18.2", - "jsdom": "^21.1.1", - "lint-staged": "^13.2.1", + "jiti": "^1.19.1", + "jsdom": "^21.1.2", + "lint-staged": "^13.2.3", "npm-run-all": "^4.1.5", "nuxt": "^3.4.1", - "ofetch": "^1.0.1", - "playwright": "^1.32.3", - "prettier": "^2.8.7", + "ofetch": "^1.1.1", + "playwright": "^1.35.1", + "prettier": "^3.0.0", "rimraf": "^4.4.1", - "ts-essentials": "^9.3.1", - "typescript": "^5.1.3", - "vitest": "^0.30.1", - "vue": "^3.2.47", + "ts-essentials": "^9.3.2", + "typescript": "^5.1.6", + "vitest": "^0.32.4", + "vue": "^3.3.4", "yorkie": "^2.0.0" }, "gitHooks": { diff --git a/playground/nuxt.config.ts b/playground/nuxt.config.ts index 1406cf46a..5b16a8734 100644 --- a/playground/nuxt.config.ts +++ b/playground/nuxt.config.ts @@ -20,7 +20,7 @@ export default defineNuxtConfig({ experimental: { jsTsFormatResource: true }, - precompile: { + compilation: { strictMessage: false, escapeHtml: true }, @@ -110,7 +110,7 @@ export default defineNuxtConfig({ experimental: { jsTsFormatResource: true }, - precompile: { + compilation: { strictMessage: false, escapeHtml: true }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 49723e15a..b6ac837b8 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -10,23 +10,23 @@ importers: .: dependencies: '@intlify/bundle-utils': - specifier: ^5.5.0 - version: 5.5.0(vue-i18n@9.3.0-beta.19) + specifier: ^7.0.1 + version: 7.0.1(vue-i18n@9.3.0-beta.22) '@intlify/shared': - specifier: 9.3.0-beta.17 - version: 9.3.0-beta.17 + specifier: 9.3.0-beta.22 + version: 9.3.0-beta.22 '@intlify/unplugin-vue-i18n': - specifier: ^0.10.0 - version: 0.10.0(rollup@3.20.7)(vue-i18n@9.3.0-beta.19) + specifier: ^0.12.1 + version: 0.12.1(rollup@3.26.2)(vue-i18n@9.3.0-beta.22) '@mizchi/sucrase': specifier: ^4.1.0 version: 4.1.0 '@nuxt/kit': specifier: ^3.4.1 - version: 3.4.1(rollup@3.20.7) + version: 3.4.1(rollup@3.26.2) '@vue/compiler-sfc': - specifier: ^3.2.47 - version: 3.2.47 + specifier: ^3.3.4 + version: 3.3.4 cookie-es: specifier: ^0.5.0 version: 0.5.0 @@ -43,8 +43,8 @@ importers: specifier: ^4.0.0 version: 4.0.0 js-cookie: - specifier: ^3.0.1 - version: 3.0.1 + specifier: ^3.0.5 + version: 3.0.5 knitwork: specifier: ^1.0.0 version: 1.0.0 @@ -52,75 +52,72 @@ importers: specifier: ^0.27.0 version: 0.27.0 mlly: - specifier: ^1.2.0 - version: 1.2.0 + specifier: ^1.4.0 + version: 1.4.0 pathe: - specifier: ^1.1.0 - version: 1.1.0 + specifier: ^1.1.1 + version: 1.1.1 pkg-types: - specifier: ^1.0.2 - version: 1.0.2 + specifier: ^1.0.3 + version: 1.0.3 ufo: - specifier: ^1.1.0 - version: 1.1.0 + specifier: ^1.1.2 + version: 1.1.2 unplugin: - specifier: ^1.3.1 - version: 1.3.1 + specifier: ^1.3.2 + version: 1.3.2 unstorage: specifier: ^1.5.0 version: 1.5.0 vue-i18n: - specifier: 9.3.0-beta.19 - version: 9.3.0-beta.19(vue@3.2.47) + specifier: 9.3.0-beta.22 + version: 9.3.0-beta.22(vue@3.3.4) vue-i18n-routing: specifier: ^0.13.0 - version: 0.13.0(vue-i18n@9.3.0-beta.19)(vue@3.2.47) + version: 0.13.0(vue-i18n@9.3.0-beta.22)(vue@3.3.4) devDependencies: '@babel/parser': - specifier: ^7.21.4 - version: 7.21.4 + specifier: ^7.22.7 + version: 7.22.7 '@babel/plugin-syntax-import-assertions': - specifier: ^7.20.0 - version: 7.20.0(@babel/core@7.21.4) + specifier: ^7.22.5 + version: 7.22.5(@babel/core@7.22.8) '@babel/types': - specifier: ^7.21.4 - version: 7.21.4 + specifier: ^7.22.5 + version: 7.22.5 '@nuxt/module-builder': specifier: latest - version: 0.4.0(@nuxt/kit@3.4.1)(nuxi@3.5.2) + version: 0.4.0(@nuxt/kit@3.4.1)(nuxi@3.6.2) '@nuxt/schema': specifier: ^3.4.1 - version: 3.4.1(rollup@3.20.7) + version: 3.4.1(rollup@3.26.2) '@types/debug': - specifier: ^4.1.7 - version: 4.1.7 + specifier: ^4.1.8 + version: 4.1.8 '@types/js-cookie': specifier: ^3.0.3 version: 3.0.3 '@types/rimraf': - specifier: ^3 - version: 3.0.0 + specifier: ^3.0.2 + version: 3.0.2 '@typescript-eslint/eslint-plugin': - specifier: ^5.58.0 - version: 5.58.0(@typescript-eslint/parser@5.58.0)(eslint@8.38.0)(typescript@5.1.3) + specifier: ^5.61.0 + version: 5.61.0(@typescript-eslint/parser@5.61.0)(eslint@8.44.0)(typescript@5.1.6) '@typescript-eslint/parser': - specifier: ^5.58.0 - version: 5.58.0(eslint@8.38.0)(typescript@5.1.3) + specifier: ^5.61.0 + version: 5.61.0(eslint@8.44.0)(typescript@5.1.6) bumpp: - specifier: ^9.1.0 - version: 9.1.0 + specifier: ^9.1.1 + version: 9.1.1 changelogithub: - specifier: ^0.12.7 - version: 0.12.7 + specifier: ^0.12.12 + version: 0.12.12 eslint: - specifier: ^8.38.0 - version: 8.38.0 + specifier: ^8.44.0 + version: 8.44.0 eslint-config-prettier: specifier: ^8.8.0 - version: 8.8.0(eslint@8.38.0) - eslint-plugin-prettier: - specifier: ^4.2.1 - version: 4.2.1(eslint-config-prettier@8.8.0)(eslint@8.38.0)(prettier@2.8.7) + version: 8.8.0(eslint@8.44.0) execa: specifier: ^7.1.1 version: 7.1.1 @@ -131,44 +128,44 @@ importers: specifier: ^0.2.8 version: 0.2.8 jiti: - specifier: ^1.18.2 - version: 1.18.2 + specifier: ^1.19.1 + version: 1.19.1 jsdom: - specifier: ^21.1.1 - version: 21.1.1 + specifier: ^21.1.2 + version: 21.1.2 lint-staged: - specifier: ^13.2.1 - version: 13.2.1 + specifier: ^13.2.3 + version: 13.2.3 npm-run-all: specifier: ^4.1.5 version: 4.1.5 nuxt: specifier: ^3.4.1 - version: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) + version: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) ofetch: - specifier: ^1.0.1 - version: 1.0.1 + specifier: ^1.1.1 + version: 1.1.1 playwright: - specifier: ^1.32.3 - version: 1.32.3 + specifier: ^1.35.1 + version: 1.35.1 prettier: - specifier: ^2.8.7 - version: 2.8.7 + specifier: ^3.0.0 + version: 3.0.0 rimraf: specifier: ^4.4.1 version: 4.4.1 ts-essentials: - specifier: ^9.3.1 - version: 9.3.1(typescript@5.1.3) + specifier: ^9.3.2 + version: 9.3.2(typescript@5.1.6) typescript: - specifier: ^5.1.3 - version: 5.1.3 + specifier: ^5.1.6 + version: 5.1.6 vitest: - specifier: ^0.30.1 - version: 0.30.1(jsdom@21.1.1)(playwright@1.32.3) + specifier: ^0.32.4 + version: 0.32.4(jsdom@21.1.2)(playwright@1.35.1) vue: - specifier: ^3.2.47 - version: 3.2.47 + specifier: ^3.3.4 + version: 3.3.4 yorkie: specifier: ^2.0.0 version: 2.0.0 @@ -177,22 +174,22 @@ importers: devDependencies: '@nuxt-themes/docus': specifier: 1.10.1 - version: 1.10.1(nuxt@3.4.1)(postcss@8.4.23)(rollup@3.20.7)(vue-component-type-helpers@1.3.12)(vue@3.2.47) + version: 1.10.1(nuxt@3.4.1)(postcss@8.4.25)(rollup@3.26.2)(vue-component-type-helpers@1.3.12)(vue@3.3.4) nuxt: specifier: ^3.4.1 - version: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) + version: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) playground: devDependencies: '@nuxt/devtools': specifier: npm:@nuxt/devtools-edge@latest - version: /@nuxt/devtools-edge@0.2.5-27994283.f736291(nuxt@3.4.1)(rollup@3.20.7)(vite@4.2.2) + version: /@nuxt/devtools-edge@0.2.5-27991385.f13be91(nuxt@3.4.1)(rollup@3.26.2)(vite@4.2.2) '@nuxtjs/i18n': specifier: link:.. version: link:.. nuxt: specifier: ^3.4.1 - version: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) + version: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) specs/fixtures/base_url: devDependencies: @@ -201,7 +198,7 @@ importers: version: link:../../.. nuxt: specifier: ^3.4.1 - version: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) + version: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) specs/fixtures/base_url_runtime: devDependencies: @@ -210,7 +207,7 @@ importers: version: link:../../.. nuxt: specifier: ^3.4.1 - version: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) + version: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) specs/fixtures/basic: devDependencies: @@ -219,7 +216,7 @@ importers: version: link:../../.. nuxt: specifier: ^3.4.1 - version: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) + version: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) specs/fixtures/basic_layer: devDependencies: @@ -228,7 +225,7 @@ importers: version: link:../../.. nuxt: specifier: ^3.4.1 - version: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) + version: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) specs/fixtures/basic_pages: devDependencies: @@ -237,7 +234,7 @@ importers: version: link:../../.. nuxt: specifier: ^3.4.1 - version: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) + version: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) specs/fixtures/basic_usage: devDependencies: @@ -246,7 +243,7 @@ importers: version: link:../../.. nuxt: specifier: ^3.4.1 - version: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) + version: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) specs/fixtures/component: devDependencies: @@ -255,7 +252,7 @@ importers: version: link:../../.. nuxt: specifier: ^3.4.1 - version: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) + version: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) specs/fixtures/custom_route_paths_component: devDependencies: @@ -264,7 +261,7 @@ importers: version: link:../../.. nuxt: specifier: ^3.4.1 - version: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) + version: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) specs/fixtures/custom_route_paths_module_configration: devDependencies: @@ -273,7 +270,7 @@ importers: version: link:../../.. nuxt: specifier: ^3.4.1 - version: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) + version: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) specs/fixtures/different_domains: devDependencies: @@ -282,7 +279,7 @@ importers: version: link:../../.. nuxt: specifier: ^3.4.1 - version: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) + version: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) specs/fixtures/domain: devDependencies: @@ -291,7 +288,7 @@ importers: version: link:../../.. nuxt: specifier: ^3.4.1 - version: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) + version: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) specs/fixtures/extend_messages: devDependencies: @@ -300,7 +297,7 @@ importers: version: link:../../.. nuxt: specifier: ^3.4.1 - version: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) + version: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) specs/fixtures/fallback: devDependencies: @@ -309,7 +306,7 @@ importers: version: link:../../.. nuxt: specifier: ^3.4.1 - version: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) + version: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) specs/fixtures/head: devDependencies: @@ -318,7 +315,7 @@ importers: version: link:../../.. nuxt: specifier: ^3.4.1 - version: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) + version: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) specs/fixtures/ignore_disable_component: devDependencies: @@ -327,7 +324,7 @@ importers: version: link:../../.. nuxt: specifier: ^3.4.1 - version: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) + version: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) specs/fixtures/ignore_disable_module_configration: devDependencies: @@ -336,7 +333,7 @@ importers: version: link:../../.. nuxt: specifier: ^3.4.1 - version: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) + version: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) specs/fixtures/ignore_pick_component: devDependencies: @@ -345,7 +342,7 @@ importers: version: link:../../.. nuxt: specifier: ^3.4.1 - version: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) + version: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) specs/fixtures/ignore_pick_module_configration: devDependencies: @@ -354,7 +351,7 @@ importers: version: link:../../.. nuxt: specifier: ^3.4.1 - version: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) + version: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) specs/fixtures/lazy: devDependencies: @@ -363,7 +360,7 @@ importers: version: link:../../.. nuxt: specifier: ^3.4.1 - version: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) + version: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) specs/fixtures/meta_component: devDependencies: @@ -372,16 +369,7 @@ importers: version: link:../../.. nuxt: specifier: ^3.4.1 - version: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) - - specs/fixtures/precompile: - devDependencies: - '@nuxtjs/i18n': - specifier: link:../../.. - version: link:../../.. - nuxt: - specifier: ^3.4.1 - version: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) + version: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) specs/fixtures/routing_no_prefix: devDependencies: @@ -390,7 +378,7 @@ importers: version: link:../../.. nuxt: specifier: ^3.4.1 - version: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) + version: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) specs/fixtures/routing_prefix: devDependencies: @@ -399,7 +387,7 @@ importers: version: link:../../.. nuxt: specifier: ^3.4.1 - version: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) + version: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) specs/fixtures/routing_prefix_and_default: devDependencies: @@ -408,7 +396,7 @@ importers: version: link:../../.. nuxt: specifier: ^3.4.1 - version: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) + version: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) specs/fixtures/routing_prefix_except_default: devDependencies: @@ -417,7 +405,7 @@ importers: version: link:../../.. nuxt: specifier: ^3.4.1 - version: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) + version: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) specs/fixtures/routing_root_redirect: devDependencies: @@ -426,7 +414,7 @@ importers: version: link:../../.. nuxt: specifier: ^3.4.1 - version: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) + version: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) specs/fixtures/runtime_hook: devDependencies: @@ -435,7 +423,7 @@ importers: version: link:../../.. nuxt: specifier: ^3.4.1 - version: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) + version: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) specs/fixtures/switcher: devDependencies: @@ -444,7 +432,7 @@ importers: version: link:../../.. nuxt: specifier: ^3.4.1 - version: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) + version: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) specs/fixtures/use_head: devDependencies: @@ -453,7 +441,7 @@ importers: version: link:../../.. nuxt: specifier: ^3.4.1 - version: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) + version: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) specs/fixtures/vue_i18n_options: devDependencies: @@ -462,10 +450,15 @@ importers: version: link:../../.. nuxt: specifier: ^3.4.1 - version: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) + version: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) packages: + /@aashutoshrathi/word-wrap@1.2.6: + resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} + engines: {node: '>=0.10.0'} + dev: true + /@ampproject/remapping@2.2.1: resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} engines: {node: '>=6.0.0'} @@ -473,18 +466,18 @@ packages: '@jridgewell/gen-mapping': 0.3.3 '@jridgewell/trace-mapping': 0.3.18 - /@antfu/utils@0.7.2: - resolution: {integrity: sha512-vy9fM3pIxZmX07dL+VX1aZe7ynZ+YyB0jY+jE6r3hOK6GNY2t6W8rzpFC4tgpbXUYABkFQwgJq2XYXlxbXAI0g==} + /@antfu/utils@0.7.5: + resolution: {integrity: sha512-dlR6LdS+0SzOAPx/TPRhnoi7hE251OVeT2Snw0RguNbBSbjUHdWr0l3vcUUDg26rEysT89kCbtw1lVorBXLLCg==} dev: true - /@babel/code-frame@7.21.4: - resolution: {integrity: sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==} + /@babel/code-frame@7.22.5: + resolution: {integrity: sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/highlight': 7.18.6 + '@babel/highlight': 7.22.5 - /@babel/compat-data@7.21.4: - resolution: {integrity: sha512-/DYyDpeCfaVinT40FPGdkkb+lYSKvsVuMjDAG7jPOWWiM1ibOaB9CXJAlc4d1QpP/U2q2P9jbrSlClKSErd55g==} + /@babel/compat-data@7.22.6: + resolution: {integrity: sha512-29tfsWTq2Ftu7MXmimyC0C5FDZv5DYxOZkh3XD3+QW4V/BYuv/LyEsjj3c0hqedEaDt6DBfDvexMKU8YevdqFg==} engines: {node: '>=6.9.0'} /@babel/core@7.21.4: @@ -492,15 +485,15 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.1 - '@babel/code-frame': 7.21.4 + '@babel/code-frame': 7.22.5 '@babel/generator': 7.21.4 '@babel/helper-compilation-targets': 7.21.4(@babel/core@7.21.4) '@babel/helper-module-transforms': 7.21.2 '@babel/helpers': 7.21.0 - '@babel/parser': 7.22.4 + '@babel/parser': 7.22.7 '@babel/template': 7.20.7 '@babel/traverse': 7.21.4 - '@babel/types': 7.22.4 + '@babel/types': 7.22.5 convert-source-map: 1.9.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -509,20 +502,52 @@ packages: transitivePeerDependencies: - supports-color + /@babel/core@7.22.8: + resolution: {integrity: sha512-75+KxFB4CZqYRXjx4NlR4J7yGvKumBuZTmV4NV6v09dVXXkuYVYLT68N6HCzLvfJ+fWCxQsntNzKwwIXL4bHnw==} + engines: {node: '>=6.9.0'} + dependencies: + '@ampproject/remapping': 2.2.1 + '@babel/code-frame': 7.22.5 + '@babel/generator': 7.22.7 + '@babel/helper-compilation-targets': 7.22.6(@babel/core@7.22.8) + '@babel/helper-module-transforms': 7.22.5 + '@babel/helpers': 7.22.6 + '@babel/parser': 7.22.7 + '@babel/template': 7.22.5 + '@babel/traverse': 7.22.8 + '@babel/types': 7.22.5 + '@nicolo-ribaudo/semver-v6': 6.3.3 + convert-source-map: 1.9.0 + debug: 4.3.4 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/generator@7.21.4: resolution: {integrity: sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.4 + '@babel/types': 7.22.5 '@jridgewell/gen-mapping': 0.3.3 '@jridgewell/trace-mapping': 0.3.18 jsesc: 2.5.2 - /@babel/helper-annotate-as-pure@7.18.6: - resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} + /@babel/generator@7.22.7: + resolution: {integrity: sha512-p+jPjMG+SI8yvIaxGgeW24u7q9+5+TGpZh8/CuB7RhBKd7RCy8FayNEFNNKrNK/eUcY/4ExQqLmyrvBXKsIcwQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.4 + '@babel/types': 7.22.5 + '@jridgewell/gen-mapping': 0.3.3 + '@jridgewell/trace-mapping': 0.3.18 + jsesc: 2.5.2 + + /@babel/helper-annotate-as-pure@7.22.5: + resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.22.5 dev: true /@babel/helper-compilation-targets@7.21.4(@babel/core@7.21.4): @@ -531,220 +556,251 @@ packages: peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.21.4 + '@babel/compat-data': 7.22.6 '@babel/core': 7.21.4 - '@babel/helper-validator-option': 7.21.0 - browserslist: 4.21.5 + '@babel/helper-validator-option': 7.22.5 + browserslist: 4.21.9 lru-cache: 5.1.1 semver: 6.3.0 - /@babel/helper-create-class-features-plugin@7.21.4(@babel/core@7.21.4): - resolution: {integrity: sha512-46QrX2CQlaFRF4TkwfTt6nJD7IHq8539cCL7SDpqWSDeJKY1xylKKY5F/33mJhLZ3mFvKv2gGrVS6NkyF6qs+Q==} + /@babel/helper-compilation-targets@7.22.6(@babel/core@7.22.8): + resolution: {integrity: sha512-534sYEqWD9VfUm3IPn2SLcH4Q3P86XL+QvqdC7ZsFrzyyPF3T4XGiVghF6PTYNdWg6pXuoqXxNQAhbYeEInTzA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.21.4 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.21.0 - '@babel/helper-member-expression-to-functions': 7.21.0 - '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/helper-replace-supers': 7.20.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - '@babel/helper-split-export-declaration': 7.18.6 + '@babel/compat-data': 7.22.6 + '@babel/core': 7.22.8 + '@babel/helper-validator-option': 7.22.5 + '@nicolo-ribaudo/semver-v6': 6.3.3 + browserslist: 4.21.9 + lru-cache: 5.1.1 + dev: true + + /@babel/helper-create-class-features-plugin@7.22.6(@babel/core@7.22.8): + resolution: {integrity: sha512-iwdzgtSiBxF6ni6mzVnZCF3xt5qE6cEA0J7nFt8QOAWZ0zjCFceEgpn3vtb2V7WFR6QzP2jmIFOHMTRo7eNJjQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.22.8 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-function-name': 7.22.5 + '@babel/helper-member-expression-to-functions': 7.22.5 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-replace-supers': 7.22.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@nicolo-ribaudo/semver-v6': 6.3.3 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-environment-visitor@7.18.9: - resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==} + /@babel/helper-environment-visitor@7.22.5: + resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==} engines: {node: '>=6.9.0'} - /@babel/helper-function-name@7.21.0: - resolution: {integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==} + /@babel/helper-function-name@7.22.5: + resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.20.7 - '@babel/types': 7.22.4 + '@babel/template': 7.22.5 + '@babel/types': 7.22.5 - /@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.22.4 + '@babel/types': 7.22.5 - /@babel/helper-member-expression-to-functions@7.21.0: - resolution: {integrity: sha512-Muu8cdZwNN6mRRNG6lAYErJ5X3bRevgYR2O8wN0yn7jJSnGDu6eG59RfT29JHxGUovyfrh6Pj0XzmR7drNVL3Q==} + /@babel/helper-member-expression-to-functions@7.22.5: + resolution: {integrity: sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.4 + '@babel/types': 7.22.5 dev: true - /@babel/helper-module-imports@7.21.4: - resolution: {integrity: sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==} + /@babel/helper-module-imports@7.22.5: + resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.4 + '@babel/types': 7.22.5 /@babel/helper-module-transforms@7.21.2: resolution: {integrity: sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-module-imports': 7.21.4 - '@babel/helper-simple-access': 7.20.2 - '@babel/helper-split-export-declaration': 7.18.6 - '@babel/helper-validator-identifier': 7.19.1 - '@babel/template': 7.20.7 - '@babel/traverse': 7.21.4 - '@babel/types': 7.22.4 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-module-imports': 7.22.5 + '@babel/helper-simple-access': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/helper-validator-identifier': 7.22.5 + '@babel/template': 7.22.5 + '@babel/traverse': 7.22.8 + '@babel/types': 7.22.5 transitivePeerDependencies: - supports-color - /@babel/helper-optimise-call-expression@7.18.6: - resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==} + /@babel/helper-module-transforms@7.22.5: + resolution: {integrity: sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.4 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-module-imports': 7.22.5 + '@babel/helper-simple-access': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/helper-validator-identifier': 7.22.5 + '@babel/template': 7.22.5 + '@babel/traverse': 7.22.8 + '@babel/types': 7.22.5 + transitivePeerDependencies: + - supports-color dev: true - /@babel/helper-plugin-utils@7.20.2: - resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==} + /@babel/helper-optimise-call-expression@7.22.5: + resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.22.5 dev: true - /@babel/helper-replace-supers@7.20.7: - resolution: {integrity: sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==} + /@babel/helper-plugin-utils@7.22.5: + resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/helper-replace-supers@7.22.5: + resolution: {integrity: sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-member-expression-to-functions': 7.21.0 - '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/template': 7.20.7 - '@babel/traverse': 7.21.4 - '@babel/types': 7.22.4 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-member-expression-to-functions': 7.22.5 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/template': 7.22.5 + '@babel/traverse': 7.22.8 + '@babel/types': 7.22.5 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-simple-access@7.20.2: - resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==} + /@babel/helper-simple-access@7.22.5: + resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.4 + '@babel/types': 7.22.5 - /@babel/helper-skip-transparent-expression-wrappers@7.20.0: - resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==} + /@babel/helper-skip-transparent-expression-wrappers@7.22.5: + resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.4 + '@babel/types': 7.22.5 dev: true - /@babel/helper-split-export-declaration@7.18.6: - resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} + /@babel/helper-split-export-declaration@7.22.6: + resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.4 + '@babel/types': 7.22.5 - /@babel/helper-string-parser@7.19.4: - resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==} + /@babel/helper-string-parser@7.22.5: + resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==} engines: {node: '>=6.9.0'} - /@babel/helper-string-parser@7.21.5: - resolution: {integrity: sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w==} + /@babel/helper-validator-identifier@7.22.5: + resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-identifier@7.19.1: - resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==} - engines: {node: '>=6.9.0'} - - /@babel/helper-validator-option@7.21.0: - resolution: {integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==} + /@babel/helper-validator-option@7.22.5: + resolution: {integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==} engines: {node: '>=6.9.0'} /@babel/helpers@7.21.0: resolution: {integrity: sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.20.7 - '@babel/traverse': 7.21.4 - '@babel/types': 7.22.4 + '@babel/template': 7.22.5 + '@babel/traverse': 7.22.8 + '@babel/types': 7.22.5 transitivePeerDependencies: - supports-color - /@babel/highlight@7.18.6: - resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} + /@babel/helpers@7.22.6: + resolution: {integrity: sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-validator-identifier': 7.19.1 - chalk: 2.4.2 - js-tokens: 4.0.0 + '@babel/template': 7.22.5 + '@babel/traverse': 7.22.8 + '@babel/types': 7.22.5 + transitivePeerDependencies: + - supports-color + dev: true - /@babel/parser@7.21.4: - resolution: {integrity: sha512-alVJj7k7zIxqBZ7BTRhz0IqJFxW1VJbm6N8JbcYhQ186df9ZBPbZBmWSqAMXwHGsCJdYks7z/voa3ibiS5bCIw==} - engines: {node: '>=6.0.0'} - hasBin: true + /@babel/highlight@7.22.5: + resolution: {integrity: sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==} + engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.21.4 + '@babel/helper-validator-identifier': 7.22.5 + chalk: 2.4.2 + js-tokens: 4.0.0 - /@babel/parser@7.22.4: - resolution: {integrity: sha512-VLLsx06XkEYqBtE5YGPwfSGwfrjnyPP5oiGty3S8pQLFDFLaS8VwWSIxkTXpcvr5zeYLE6+MBNl2npl/YnfofA==} + /@babel/parser@7.22.7: + resolution: {integrity: sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.22.4 + '@babel/types': 7.22.5 - /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.21.4): - resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} + /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.22.8): + resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/core': 7.22.8 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.21.4): + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.8): resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/core': 7.22.8 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-jsx@7.21.4(@babel/core@7.21.4): - resolution: {integrity: sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==} + /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.8): + resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/core': 7.22.8 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-typescript@7.21.4(@babel/core@7.21.4): - resolution: {integrity: sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==} + /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.22.8): + resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/core': 7.22.8 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-typescript@7.21.3(@babel/core@7.21.4): - resolution: {integrity: sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw==} + /@babel/plugin-transform-typescript@7.22.5(@babel/core@7.22.8): + resolution: {integrity: sha512-SMubA9S7Cb5sGSFFUlqxyClTA9zWJ8qGQrppNUm05LtFuN1ELRFNndkix4zUJrC9F+YivWwa1dHMSyo0e0N9dA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.4 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-create-class-features-plugin': 7.21.4(@babel/core@7.21.4) - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-typescript': 7.21.4(@babel/core@7.21.4) + '@babel/core': 7.22.8 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.22.6(@babel/core@7.22.8) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.8) transitivePeerDependencies: - supports-color dev: true @@ -757,41 +813,58 @@ packages: resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.21.4 - '@babel/parser': 7.22.4 - '@babel/types': 7.22.4 + '@babel/code-frame': 7.22.5 + '@babel/parser': 7.22.7 + '@babel/types': 7.22.5 + + /@babel/template@7.22.5: + resolution: {integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.22.5 + '@babel/parser': 7.22.7 + '@babel/types': 7.22.5 /@babel/traverse@7.21.4: resolution: {integrity: sha512-eyKrRHKdyZxqDm+fV1iqL9UAHMoIg0nDaGqfIOd8rKH17m5snv7Gn4qgjBoFfLz9APvjFU/ICT00NVCv1Epp8Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.21.4 - '@babel/generator': 7.21.4 - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.21.0 - '@babel/helper-hoist-variables': 7.18.6 - '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.22.4 - '@babel/types': 7.22.4 + '@babel/code-frame': 7.22.5 + '@babel/generator': 7.22.7 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-function-name': 7.22.5 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/parser': 7.22.7 + '@babel/types': 7.22.5 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color - /@babel/types@7.21.4: - resolution: {integrity: sha512-rU2oY501qDxE8Pyo7i/Orqma4ziCOrby0/9mvbDUGEfvZjb279Nk9k19e2fiCxHbRRpY2ZyrgW1eq22mvmOIzA==} + /@babel/traverse@7.22.8: + resolution: {integrity: sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-string-parser': 7.19.4 - '@babel/helper-validator-identifier': 7.19.1 - to-fast-properties: 2.0.0 + '@babel/code-frame': 7.22.5 + '@babel/generator': 7.22.7 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-function-name': 7.22.5 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/parser': 7.22.7 + '@babel/types': 7.22.5 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color - /@babel/types@7.22.4: - resolution: {integrity: sha512-Tx9x3UBHTTsMSW85WB2kphxYQVvrZ/t1FxD88IpSgIjiUJlCm9z+xWIDwyo1vffTwSqteqyznB8ZE9vYYk16zA==} + /@babel/types@7.22.5: + resolution: {integrity: sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-string-parser': 7.21.5 - '@babel/helper-validator-identifier': 7.19.1 + '@babel/helper-string-parser': 7.22.5 + '@babel/helper-validator-identifier': 7.22.5 to-fast-properties: 2.0.0 /@cloudflare/kv-asset-handler@0.3.0: @@ -829,13 +902,13 @@ packages: resolution: {integrity: sha512-BDXFbYOJzT/NBEtp71cvsrGPwGAMGRB/349rwKuoxNSiKjPraNNnlK6MIIabViCjqZugu6j+xeMDlEkWdHHJSg==} dependencies: '@esbuild-kit/core-utils': 3.1.0 - get-tsconfig: 4.5.0 + get-tsconfig: 4.6.2 dev: true /@esbuild-kit/core-utils@3.1.0: resolution: {integrity: sha512-Uuk8RpCg/7fdHSceR1M6XbSZFSuMrxcePFuGgyvsBn+u339dk5OeL4jv2EojwTN2st/unJGsVm4qHWjWNmJ/tw==} dependencies: - esbuild: 0.17.18 + esbuild: 0.17.19 source-map-support: 0.5.21 dev: true @@ -843,7 +916,7 @@ packages: resolution: {integrity: sha512-Qwfvj/qoPbClxCRNuac1Du01r9gvNOT+pMYtJDapfB1eoGN1YlJ1BixLyL9WVENRx5RXgNLdfYdx/CuswlGhMw==} dependencies: '@esbuild-kit/core-utils': 3.1.0 - get-tsconfig: 4.5.0 + get-tsconfig: 4.6.2 dev: true /@esbuild/android-arm64@0.17.18: @@ -855,6 +928,15 @@ packages: dev: true optional: true + /@esbuild/android-arm64@0.17.19: + resolution: {integrity: sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + requiresBuild: true + dev: true + optional: true + /@esbuild/android-arm@0.17.18: resolution: {integrity: sha512-EmwL+vUBZJ7mhFCs5lA4ZimpUH3WMAoqvOIYhVQwdIgSpHC8ImHdsRyhHAVxpDYUSm0lWvd63z0XH1IlImS2Qw==} engines: {node: '>=12'} @@ -864,6 +946,15 @@ packages: dev: true optional: true + /@esbuild/android-arm@0.17.19: + resolution: {integrity: sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + requiresBuild: true + dev: true + optional: true + /@esbuild/android-x64@0.17.18: resolution: {integrity: sha512-x+0efYNBF3NPW2Xc5bFOSFW7tTXdAcpfEg2nXmxegm4mJuVeS+i109m/7HMiOQ6M12aVGGFlqJX3RhNdYM2lWg==} engines: {node: '>=12'} @@ -873,6 +964,15 @@ packages: dev: true optional: true + /@esbuild/android-x64@0.17.19: + resolution: {integrity: sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + requiresBuild: true + dev: true + optional: true + /@esbuild/darwin-arm64@0.17.18: resolution: {integrity: sha512-6tY+djEAdF48M1ONWnQb1C+6LiXrKjmqjzPNPWXhu/GzOHTHX2nh8Mo2ZAmBFg0kIodHhciEgUBtcYCAIjGbjQ==} engines: {node: '>=12'} @@ -882,6 +982,15 @@ packages: dev: true optional: true + /@esbuild/darwin-arm64@0.17.19: + resolution: {integrity: sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + /@esbuild/darwin-x64@0.17.18: resolution: {integrity: sha512-Qq84ykvLvya3dO49wVC9FFCNUfSrQJLbxhoQk/TE1r6MjHo3sFF2tlJCwMjhkBVq3/ahUisj7+EpRSz0/+8+9A==} engines: {node: '>=12'} @@ -891,6 +1000,15 @@ packages: dev: true optional: true + /@esbuild/darwin-x64@0.17.19: + resolution: {integrity: sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + /@esbuild/freebsd-arm64@0.17.18: resolution: {integrity: sha512-fw/ZfxfAzuHfaQeMDhbzxp9mc+mHn1Y94VDHFHjGvt2Uxl10mT4CDavHm+/L9KG441t1QdABqkVYwakMUeyLRA==} engines: {node: '>=12'} @@ -900,6 +1018,15 @@ packages: dev: true optional: true + /@esbuild/freebsd-arm64@0.17.19: + resolution: {integrity: sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + /@esbuild/freebsd-x64@0.17.18: resolution: {integrity: sha512-FQFbRtTaEi8ZBi/A6kxOC0V0E9B/97vPdYjY9NdawyLd4Qk5VD5g2pbWN2VR1c0xhzcJm74HWpObPszWC+qTew==} engines: {node: '>=12'} @@ -909,6 +1036,15 @@ packages: dev: true optional: true + /@esbuild/freebsd-x64@0.17.19: + resolution: {integrity: sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + /@esbuild/linux-arm64@0.17.18: resolution: {integrity: sha512-R7pZvQZFOY2sxUG8P6A21eq6q+eBv7JPQYIybHVf1XkQYC+lT7nDBdC7wWKTrbvMXKRaGudp/dzZCwL/863mZQ==} engines: {node: '>=12'} @@ -918,6 +1054,15 @@ packages: dev: true optional: true + /@esbuild/linux-arm64@0.17.19: + resolution: {integrity: sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@esbuild/linux-arm@0.17.18: resolution: {integrity: sha512-jW+UCM40LzHcouIaqv3e/oRs0JM76JfhHjCavPxMUti7VAPh8CaGSlS7cmyrdpzSk7A+8f0hiedHqr/LMnfijg==} engines: {node: '>=12'} @@ -927,6 +1072,15 @@ packages: dev: true optional: true + /@esbuild/linux-arm@0.17.19: + resolution: {integrity: sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@esbuild/linux-ia32@0.17.18: resolution: {integrity: sha512-ygIMc3I7wxgXIxk6j3V00VlABIjq260i967Cp9BNAk5pOOpIXmd1RFQJQX9Io7KRsthDrQYrtcx7QCof4o3ZoQ==} engines: {node: '>=12'} @@ -936,6 +1090,15 @@ packages: dev: true optional: true + /@esbuild/linux-ia32@0.17.19: + resolution: {integrity: sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@esbuild/linux-loong64@0.17.18: resolution: {integrity: sha512-bvPG+MyFs5ZlwYclCG1D744oHk1Pv7j8psF5TfYx7otCVmcJsEXgFEhQkbhNW8otDHL1a2KDINW20cfCgnzgMQ==} engines: {node: '>=12'} @@ -945,6 +1108,15 @@ packages: dev: true optional: true + /@esbuild/linux-loong64@0.17.19: + resolution: {integrity: sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@esbuild/linux-mips64el@0.17.18: resolution: {integrity: sha512-oVqckATOAGuiUOa6wr8TXaVPSa+6IwVJrGidmNZS1cZVx0HqkTMkqFGD2HIx9H1RvOwFeWYdaYbdY6B89KUMxA==} engines: {node: '>=12'} @@ -954,6 +1126,15 @@ packages: dev: true optional: true + /@esbuild/linux-mips64el@0.17.19: + resolution: {integrity: sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@esbuild/linux-ppc64@0.17.18: resolution: {integrity: sha512-3dLlQO+b/LnQNxgH4l9rqa2/IwRJVN9u/bK63FhOPB4xqiRqlQAU0qDU3JJuf0BmaH0yytTBdoSBHrb2jqc5qQ==} engines: {node: '>=12'} @@ -963,6 +1144,15 @@ packages: dev: true optional: true + /@esbuild/linux-ppc64@0.17.19: + resolution: {integrity: sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@esbuild/linux-riscv64@0.17.18: resolution: {integrity: sha512-/x7leOyDPjZV3TcsdfrSI107zItVnsX1q2nho7hbbQoKnmoeUWjs+08rKKt4AUXju7+3aRZSsKrJtaRmsdL1xA==} engines: {node: '>=12'} @@ -972,6 +1162,15 @@ packages: dev: true optional: true + /@esbuild/linux-riscv64@0.17.19: + resolution: {integrity: sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@esbuild/linux-s390x@0.17.18: resolution: {integrity: sha512-cX0I8Q9xQkL/6F5zWdYmVf5JSQt+ZfZD2bJudZrWD+4mnUvoZ3TDDXtDX2mUaq6upMFv9FlfIh4Gfun0tbGzuw==} engines: {node: '>=12'} @@ -981,6 +1180,15 @@ packages: dev: true optional: true + /@esbuild/linux-s390x@0.17.19: + resolution: {integrity: sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@esbuild/linux-x64@0.17.18: resolution: {integrity: sha512-66RmRsPlYy4jFl0vG80GcNRdirx4nVWAzJmXkevgphP1qf4dsLQCpSKGM3DUQCojwU1hnepI63gNZdrr02wHUA==} engines: {node: '>=12'} @@ -990,6 +1198,15 @@ packages: dev: true optional: true + /@esbuild/linux-x64@0.17.19: + resolution: {integrity: sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@esbuild/netbsd-x64@0.17.18: resolution: {integrity: sha512-95IRY7mI2yrkLlTLb1gpDxdC5WLC5mZDi+kA9dmM5XAGxCME0F8i4bYH4jZreaJ6lIZ0B8hTrweqG1fUyW7jbg==} engines: {node: '>=12'} @@ -999,6 +1216,15 @@ packages: dev: true optional: true + /@esbuild/netbsd-x64@0.17.19: + resolution: {integrity: sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + requiresBuild: true + dev: true + optional: true + /@esbuild/openbsd-x64@0.17.18: resolution: {integrity: sha512-WevVOgcng+8hSZ4Q3BKL3n1xTv5H6Nb53cBrtzzEjDbbnOmucEVcZeGCsCOi9bAOcDYEeBZbD2SJNBxlfP3qiA==} engines: {node: '>=12'} @@ -1008,6 +1234,15 @@ packages: dev: true optional: true + /@esbuild/openbsd-x64@0.17.19: + resolution: {integrity: sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + requiresBuild: true + dev: true + optional: true + /@esbuild/sunos-x64@0.17.18: resolution: {integrity: sha512-Rzf4QfQagnwhQXVBS3BYUlxmEbcV7MY+BH5vfDZekU5eYpcffHSyjU8T0xucKVuOcdCsMo+Ur5wmgQJH2GfNrg==} engines: {node: '>=12'} @@ -1017,6 +1252,15 @@ packages: dev: true optional: true + /@esbuild/sunos-x64@0.17.19: + resolution: {integrity: sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + requiresBuild: true + dev: true + optional: true + /@esbuild/win32-arm64@0.17.18: resolution: {integrity: sha512-Kb3Ko/KKaWhjeAm2YoT/cNZaHaD1Yk/pa3FTsmqo9uFh1D1Rfco7BBLIPdDOozrObj2sahslFuAQGvWbgWldAg==} engines: {node: '>=12'} @@ -1026,6 +1270,15 @@ packages: dev: true optional: true + /@esbuild/win32-arm64@0.17.19: + resolution: {integrity: sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + /@esbuild/win32-ia32@0.17.18: resolution: {integrity: sha512-0/xUMIdkVHwkvxfbd5+lfG7mHOf2FRrxNbPiKWg9C4fFrB8H0guClmaM3BFiRUYrznVoyxTIyC/Ou2B7QQSwmw==} engines: {node: '>=12'} @@ -1035,6 +1288,15 @@ packages: dev: true optional: true + /@esbuild/win32-ia32@0.17.19: + resolution: {integrity: sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true + optional: true + /@esbuild/win32-x64@0.17.18: resolution: {integrity: sha512-qU25Ma1I3NqTSHJUOKi9sAH1/Mzuvlke0ioMJRthLXKm7JiSKVwFghlGbDLOO2sARECGhja4xYfRAZNPAkooYg==} engines: {node: '>=12'} @@ -1044,14 +1306,23 @@ packages: dev: true optional: true - /@eslint-community/eslint-utils@4.4.0(eslint@8.38.0): + /@esbuild/win32-x64@0.17.19: + resolution: {integrity: sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@eslint-community/eslint-utils@4.4.0(eslint@8.44.0): resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 dependencies: - eslint: 8.38.0 - eslint-visitor-keys: 3.4.0 + eslint: 8.44.0 + eslint-visitor-keys: 3.4.1 dev: true /@eslint-community/regexpp@4.5.0: @@ -1059,13 +1330,13 @@ packages: engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} dev: true - /@eslint/eslintrc@2.0.2: - resolution: {integrity: sha512-3W4f5tDUra+pA+FzgugqL2pRimUTDJWKr7BINqOpkZrC0uYI0NIc0/JFgBROCU07HR6GieA5m3/rsPIhDmCXTQ==} + /@eslint/eslintrc@2.1.0: + resolution: {integrity: sha512-Lj7DECXqIVCqnqjjHMPna4vn6GJcMgul/wuS0je9OZ9gsL0zzDpKPVtcG1HaDVc+9y+qgXneTeUMbCqXJNpH1A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 debug: 4.3.4 - espree: 9.5.1 + espree: 9.6.0 globals: 13.20.0 ignore: 5.2.4 import-fresh: 3.3.0 @@ -1076,17 +1347,13 @@ packages: - supports-color dev: true - /@eslint/js@8.38.0: - resolution: {integrity: sha512-IoD2MfUnOV58ghIHCiil01PcohxjbYR/qCxsoC+xNgUwh1EY8jOOrYmu3d3a71+tJJ23uscEV4X2HJWMsPJu4g==} + /@eslint/js@8.44.0: + resolution: {integrity: sha512-Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@gar/promisify@1.1.3: - resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} - dev: true - - /@humanwhocodes/config-array@0.11.8: - resolution: {integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==} + /@humanwhocodes/config-array@0.11.10: + resolution: {integrity: sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==} engines: {node: '>=10.10.0'} dependencies: '@humanwhocodes/object-schema': 1.2.1 @@ -1109,18 +1376,18 @@ packages: resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==} dev: true - /@iconify/vue@4.1.1(vue@3.2.47): + /@iconify/vue@4.1.1(vue@3.3.4): resolution: {integrity: sha512-RL85Bm/DAe8y6rT6pux7D2FJSiUEM/TPfyK7GrbAOfTSwrhvwJW+S5yijdGcmtXouA8MtuH9C7l4hiSE4mLMjg==} peerDependencies: vue: '>=3' dependencies: '@iconify/types': 2.0.0 - vue: 3.2.47 + vue: 3.3.4 dev: true - /@intlify/bundle-utils@5.5.0(vue-i18n@9.3.0-beta.19): - resolution: {integrity: sha512-k5xe8oAoPXiH6unXvyyyCRbq+LtLn1tSi/6r5f6mF+MsX7mcOMtgYbyAQINsjFrf7EDu5Pg4BY00VWSt8bI9XQ==} - engines: {node: '>= 12'} + /@intlify/bundle-utils@7.0.1(vue-i18n@9.3.0-beta.22): + resolution: {integrity: sha512-D7XrFOR8hbKnukGCWFrbz1IJsTQy8VgZ0TIOTQTSQ/bGhRmpyaLMQs44lJqP782mAR0AbumLlF56+oXpZqWuzQ==} + engines: {node: '>= 14.16'} peerDependencies: petite-vue-i18n: '*' vue-i18n: '*' @@ -1130,63 +1397,64 @@ packages: vue-i18n: optional: true dependencies: - '@intlify/message-compiler': 9.3.0-beta.17 - '@intlify/shared': 9.3.0-beta.17 + '@intlify/message-compiler': 9.3.0-beta.20 + '@intlify/shared': 9.3.0-beta.20 acorn: 8.8.2 escodegen: 2.0.0 estree-walker: 2.0.2 jsonc-eslint-parser: 1.4.1 magic-string: 0.30.0 - source-map: 0.6.1 - vue-i18n: 9.3.0-beta.19(vue@3.2.47) + mlly: 1.4.0 + source-map-js: 1.0.2 + vue-i18n: 9.3.0-beta.22(vue@3.3.4) yaml-eslint-parser: 0.3.2 dev: false - /@intlify/core-base@9.3.0-beta.19: - resolution: {integrity: sha512-mlpVZ1w6ZwnP9QZAs+RzGuFMCuYjZPboX3hX7JzhV49vUcsLj0R4667cmcLpPZzXJguIy/zaqbIyoUvLV8HONQ==} + /@intlify/core-base@9.3.0-beta.22: + resolution: {integrity: sha512-Mf+jyneuQxNW7pqLErIzorYrLjWGEGoPDVFrKVQNahdUDnXL/QA0CpvcAltX+Xdmgep+cVMrGD6x99hIF1BfQA==} engines: {node: '>= 16'} dependencies: - '@intlify/devtools-if': 9.3.0-beta.19 - '@intlify/message-compiler': 9.3.0-beta.19 - '@intlify/shared': 9.3.0-beta.19 - '@intlify/vue-devtools': 9.3.0-beta.19 + '@intlify/devtools-if': 9.3.0-beta.22 + '@intlify/message-compiler': 9.3.0-beta.22 + '@intlify/shared': 9.3.0-beta.22 + '@intlify/vue-devtools': 9.3.0-beta.22 dev: false - /@intlify/devtools-if@9.3.0-beta.19: - resolution: {integrity: sha512-L4NyqMcuQURejKy9XX0m/2kb37f56NAUvbiXKRx96pahSBclY6T+E0TrKXup0Hx6T0qY55QYGRwyVLeHXIHAMA==} + /@intlify/devtools-if@9.3.0-beta.22: + resolution: {integrity: sha512-9HPcF1wFaH/D++SqUCNQMWBtg+2v2+BLRxuwzgR9d9UGv7iRLZFPtxt51S4epCQdyg3z6GruTRzTJhThUgzTAA==} engines: {node: '>= 16'} dependencies: - '@intlify/shared': 9.3.0-beta.19 + '@intlify/shared': 9.3.0-beta.22 dev: false - /@intlify/message-compiler@9.3.0-beta.17: - resolution: {integrity: sha512-i7hvVIRk1Ax2uKa9xLRJCT57to08OhFMhFXXjWN07rmx5pWQYQ23MfX1xgggv9drnWTNhqEiD+u4EJeHoS5+Ww==} - engines: {node: '>= 14'} + /@intlify/message-compiler@9.3.0-beta.20: + resolution: {integrity: sha512-hwqQXyTnDzAVZ300SU31jO0+3OJbpOdfVU6iBkrmNpS7t2HRnVACo0EwcEXzJa++4EVDreqz5OeqJbt+PeSGGA==} + engines: {node: '>= 16'} dependencies: - '@intlify/shared': 9.3.0-beta.17 - source-map: 0.6.1 + '@intlify/shared': 9.3.0-beta.20 + source-map-js: 1.0.2 dev: false - /@intlify/message-compiler@9.3.0-beta.19: - resolution: {integrity: sha512-5RBn5tMOsWh5FqM65IfEJvfpRS8R0lHEUVNDa2rNc9Y7oGEI7swezlbFqU9Kc5FyHy5Kx2jHtdgFIipDwnIYFQ==} + /@intlify/message-compiler@9.3.0-beta.22: + resolution: {integrity: sha512-6X5h2v+RRixdB8qC4QZJpao4/sAP7l1nULK17/m0HuZZcTwWhjXvfSft88UCPHCTSj8rQp8Syr7ksKVhgIteKw==} engines: {node: '>= 16'} dependencies: - '@intlify/shared': 9.3.0-beta.19 - source-map: 0.6.1 + '@intlify/shared': 9.3.0-beta.22 + source-map-js: 1.0.2 dev: false - /@intlify/shared@9.3.0-beta.17: - resolution: {integrity: sha512-mscf7RQsUTOil35jTij4KGW1RC9SWQjYScwLxP53Ns6g24iEd5HN7ksbt9O6FvTmlQuX77u+MXpBdfJsGqizLQ==} - engines: {node: '>= 14'} + /@intlify/shared@9.3.0-beta.20: + resolution: {integrity: sha512-RucSPqh8O9FFxlYUysQTerSw0b9HIRpyoN1Zjogpm0qLiHK+lBNSa5sh1nCJ4wSsNcjphzgpLQCyR60GZlRV8g==} + engines: {node: '>= 16'} dev: false - /@intlify/shared@9.3.0-beta.19: - resolution: {integrity: sha512-+lhQggrLvlQ/O5OmIYAc9gadcYXMoaDi0Doef+X/f6TLZFr9PTMjOpBWmpwNNHi026e54jckntUn6GzqDtIN4w==} + /@intlify/shared@9.3.0-beta.22: + resolution: {integrity: sha512-GS+OHgYcHaq7a+zC1dlVvEHUYHVPKPC/tV3OmFyKJ2Lm7qAFmX29MQn9WOG4WtUme86tPp5LRFz6mYL5VQUJqQ==} engines: {node: '>= 16'} dev: false - /@intlify/unplugin-vue-i18n@0.10.0(rollup@3.20.7)(vue-i18n@9.3.0-beta.19): - resolution: {integrity: sha512-Sf8fe26/d8rBNcg+zBSb7RA1uyhrG9zhIM+CRX6lqcznMDjLRr/1tuVaJ9E6xqJkzjfPgRzNcCqwMt6rpNkL7Q==} + /@intlify/unplugin-vue-i18n@0.12.1(rollup@3.26.2)(vue-i18n@9.3.0-beta.22): + resolution: {integrity: sha512-gdWRdlOWC8x/OyvVk5qnGnvScMj+PRZaTB4LBf24l7X1dhGYVrQVt2dAZt97tSpEwRRxy4vBaL/qBqKN4kkaRw==} engines: {node: '>= 14.16'} peerDependencies: petite-vue-i18n: '*' @@ -1200,33 +1468,33 @@ packages: vue-i18n-bridge: optional: true dependencies: - '@intlify/bundle-utils': 5.5.0(vue-i18n@9.3.0-beta.19) - '@intlify/shared': 9.3.0-beta.17 - '@rollup/pluginutils': 5.0.2(rollup@3.20.7) - '@vue/compiler-sfc': 3.2.47 + '@intlify/bundle-utils': 7.0.1(vue-i18n@9.3.0-beta.22) + '@intlify/shared': 9.3.0-beta.20 + '@rollup/pluginutils': 5.0.2(rollup@3.26.2) + '@vue/compiler-sfc': 3.3.4 debug: 4.3.4 - fast-glob: 3.2.12 + fast-glob: 3.3.0 js-yaml: 4.1.0 json5: 2.2.3 - pathe: 1.1.0 + pathe: 1.1.1 picocolors: 1.0.0 - source-map: 0.6.1 - unplugin: 1.3.1 - vue-i18n: 9.3.0-beta.19(vue@3.2.47) + source-map-js: 1.0.2 + unplugin: 1.3.2 + vue-i18n: 9.3.0-beta.22(vue@3.3.4) transitivePeerDependencies: - rollup - supports-color dev: false - /@intlify/vue-devtools@9.3.0-beta.19: - resolution: {integrity: sha512-7yz8sUbovPUIf8sCX3+sMdw/xEyeHKBCc7Agxcxv54PiQz3zwsVl0hC1X+JXUy46FiPsMEoFfY8O27xOFLupaw==} + /@intlify/vue-devtools@9.3.0-beta.22: + resolution: {integrity: sha512-Qd0kKXsWe1DagjdebFgpbSYe2eWi1rs6fROg8pTbCSqyvOMqsscxMu+Tl+MiXYrZxkfXisR0BefONO7Zpi8UbQ==} engines: {node: '>= 16'} dependencies: - '@intlify/core-base': 9.3.0-beta.19 - '@intlify/shared': 9.3.0-beta.19 + '@intlify/core-base': 9.3.0-beta.22 + '@intlify/shared': 9.3.0-beta.22 dev: false - /@intlify/vue-i18n-bridge@0.8.0(vue-i18n@9.3.0-beta.19): + /@intlify/vue-i18n-bridge@0.8.0(vue-i18n@9.3.0-beta.22): resolution: {integrity: sha512-wQ18fSccm9QaWpUW2vq2QHvojgKIog7s+UMj9LeY3pUV3yD9bU4YZI+1PTNoX3tOA+BE71gQyqVGox/TVQKP6Q==} engines: {node: '>= 12'} hasBin: true @@ -1243,10 +1511,10 @@ packages: vue-i18n-bridge: optional: true dependencies: - vue-i18n: 9.3.0-beta.19(vue@3.2.47) + vue-i18n: 9.3.0-beta.22(vue@3.3.4) dev: false - /@intlify/vue-router-bridge@0.8.0(vue@3.2.47): + /@intlify/vue-router-bridge@0.8.0(vue@3.3.4): resolution: {integrity: sha512-CNxOgvyQcRhtGmRrksicL+HGjDijXtz+J/x04C/RslZ74CFdZkxjCe8MABkeD3xr+ry8G8tCm2nV2hLjZbynQw==} engines: {node: '>= 12'} hasBin: true @@ -1260,7 +1528,7 @@ packages: vue-router: optional: true dependencies: - vue-demi: 0.13.11(vue@3.2.47) + vue-demi: 0.13.11(vue@3.3.4) transitivePeerDependencies: - vue dev: false @@ -1268,6 +1536,25 @@ packages: /@ioredis/commands@1.2.0: resolution: {integrity: sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==} + /@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.0: + resolution: {integrity: sha512-rxLjXyJBTL4LQeJW3aKo0M/+GkCOXsO+8i9Iu7eDb6KwtP65ayoDsitrdPBtujxQ88k4wI2FNYfa6TOGwSn6cQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@sinclair/typebox': 0.27.8 + dev: true + /@jridgewell/gen-mapping@0.3.3: resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} engines: {node: '>=6.0.0'} @@ -1324,8 +1611,8 @@ packages: nopt: 5.0.0 npmlog: 5.0.1 rimraf: 3.0.2 - semver: 7.5.1 - tar: 6.1.13 + semver: 7.5.3 + tar: 6.1.15 transitivePeerDependencies: - encoding - supports-color @@ -1345,6 +1632,11 @@ packages: is-promise: 4.0.0 dev: true + /@nicolo-ribaudo/semver-v6@6.3.3: + resolution: {integrity: sha512-3Yc1fUTs69MG/uZbJlLSI3JISMn2UV2rg+1D/vROUqZyh3l6iYHCs7GMp+M40ZD7yOdDbYjJcU1oTJhrc+dGKg==} + hasBin: true + dev: true + /@nodelib/fs.scandir@2.1.5: resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} engines: {node: '>= 8'} @@ -1363,23 +1655,15 @@ packages: '@nodelib/fs.scandir': 2.1.5 fastq: 1.15.0 - /@npmcli/fs@2.1.2: - resolution: {integrity: sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - dependencies: - '@gar/promisify': 1.1.3 - semver: 7.5.1 - dev: true - /@npmcli/fs@3.1.0: resolution: {integrity: sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - semver: 7.5.1 + semver: 7.5.3 dev: true - /@npmcli/git@4.0.4: - resolution: {integrity: sha512-5yZghx+u5M47LghaybLCkdSyFzV/w4OuH12d96HO389Ik9CDsLaDZJVynSGGVJOLn6gy/k7Dz5XYcplM3uxXRg==} + /@npmcli/git@4.1.0: + resolution: {integrity: sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: '@npmcli/promise-spawn': 6.0.2 @@ -1388,7 +1672,7 @@ packages: proc-log: 3.0.0 promise-inflight: 1.0.1 promise-retry: 2.0.1 - semver: 7.5.1 + semver: 7.5.3 which: 3.0.1 transitivePeerDependencies: - bluebird @@ -1400,16 +1684,7 @@ packages: hasBin: true dependencies: npm-bundled: 3.0.0 - npm-normalize-package-bin: 3.0.0 - dev: true - - /@npmcli/move-file@2.0.1: - resolution: {integrity: sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - deprecated: This functionality has been moved to @npmcli/fs - dependencies: - mkdirp: 1.0.4 - rimraf: 3.0.2 + npm-normalize-package-bin: 3.0.1 dev: true /@npmcli/node-gyp@3.0.0: @@ -1424,29 +1699,28 @@ packages: which: 3.0.1 dev: true - /@npmcli/run-script@6.0.0: - resolution: {integrity: sha512-ql+AbRur1TeOdl1FY+RAwGW9fcr4ZwiVKabdvm93mujGREVuVLbdkXRJDrkTXSdCjaxYydr1wlA2v67jxWG5BQ==} + /@npmcli/run-script@6.0.2: + resolution: {integrity: sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: '@npmcli/node-gyp': 3.0.0 '@npmcli/promise-spawn': 6.0.2 - node-gyp: 9.3.1 + node-gyp: 9.4.0 read-package-json-fast: 3.0.2 which: 3.0.1 transitivePeerDependencies: - - bluebird - supports-color dev: true - /@nuxt-themes/docus@1.10.1(nuxt@3.4.1)(postcss@8.4.23)(rollup@3.20.7)(vue-component-type-helpers@1.3.12)(vue@3.2.47): + /@nuxt-themes/docus@1.10.1(nuxt@3.4.1)(postcss@8.4.25)(rollup@3.26.2)(vue-component-type-helpers@1.3.12)(vue@3.3.4): resolution: {integrity: sha512-VW+KFjeSPKfxOvBo2IItTap8niFyqmSxrCJqwVqZVYWS5xZVW8MlK97mOGJsDJMd2OrjmDKhciDfTr8ZmxpPAw==} dependencies: - '@nuxt-themes/elements': 0.9.4(postcss@8.4.23)(rollup@3.20.7)(vue@3.2.47) - '@nuxt-themes/tokens': 1.9.1(postcss@8.4.23)(rollup@3.20.7)(vue@3.2.47) - '@nuxt-themes/typography': 0.11.0(postcss@8.4.23)(rollup@3.20.7)(vue@3.2.47) - '@nuxt/content': 2.6.0(rollup@3.20.7) - '@nuxthq/studio': 0.9.5(rollup@3.20.7)(vue-component-type-helpers@1.3.12) - '@vueuse/nuxt': 9.13.0(nuxt@3.4.1)(rollup@3.20.7)(vue@3.2.47) + '@nuxt-themes/elements': 0.9.4(postcss@8.4.25)(rollup@3.26.2)(vue@3.3.4) + '@nuxt-themes/tokens': 1.9.1(postcss@8.4.25)(rollup@3.26.2)(vue@3.3.4) + '@nuxt-themes/typography': 0.11.0(postcss@8.4.25)(rollup@3.26.2)(vue@3.3.4) + '@nuxt/content': 2.6.0(rollup@3.26.2) + '@nuxthq/studio': 0.9.5(rollup@3.26.2)(vue-component-type-helpers@1.3.12) + '@vueuse/nuxt': 9.13.0(nuxt@3.4.1)(rollup@3.26.2)(vue@3.3.4) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -1467,11 +1741,11 @@ packages: - vue-component-type-helpers dev: true - /@nuxt-themes/elements@0.9.4(postcss@8.4.23)(rollup@3.20.7)(vue@3.2.47): + /@nuxt-themes/elements@0.9.4(postcss@8.4.25)(rollup@3.26.2)(vue@3.3.4): resolution: {integrity: sha512-d7XgHc/gjMpre26+N76APL1vlnQHiZTOk61GC4I/ZYQuioSfoKuoIP+Ixrr0QgM22j4MRBtAaBnDAg1wRJrDCQ==} dependencies: - '@nuxt-themes/tokens': 1.9.1(postcss@8.4.23)(rollup@3.20.7)(vue@3.2.47) - '@vueuse/core': 9.13.0(vue@3.2.47) + '@nuxt-themes/tokens': 1.9.1(postcss@8.4.25)(rollup@3.26.2)(vue@3.3.4) + '@vueuse/core': 9.13.0(vue@3.3.4) transitivePeerDependencies: - '@vue/composition-api' - postcss @@ -1481,12 +1755,12 @@ packages: - vue dev: true - /@nuxt-themes/tokens@1.9.1(postcss@8.4.23)(rollup@3.20.7)(vue@3.2.47): + /@nuxt-themes/tokens@1.9.1(postcss@8.4.25)(rollup@3.26.2)(vue@3.3.4): resolution: {integrity: sha512-5C28kfRvKnTX8Tux+xwyaf+2pxKgQ53dC9l6C33sZwRRyfUJulGDZCFjKbuNq4iqVwdGvkFSQBYBYjFAv6t75g==} dependencies: - '@nuxtjs/color-mode': 3.2.0(rollup@3.20.7) - '@vueuse/core': 9.13.0(vue@3.2.47) - pinceau: 0.18.9(postcss@8.4.23) + '@nuxtjs/color-mode': 3.2.0(rollup@3.26.2) + '@vueuse/core': 9.13.0(vue@3.3.4) + pinceau: 0.18.9(postcss@8.4.25) transitivePeerDependencies: - '@vue/composition-api' - postcss @@ -1496,13 +1770,13 @@ packages: - vue dev: true - /@nuxt-themes/typography@0.11.0(postcss@8.4.23)(rollup@3.20.7)(vue@3.2.47): + /@nuxt-themes/typography@0.11.0(postcss@8.4.25)(rollup@3.26.2)(vue@3.3.4): resolution: {integrity: sha512-TqyvD7sDWnqGmL00VtuI7JdmNTPL5/g957HCAWNzcNp+S20uJjW/FXSdkM76d4JSVDHvBqw7Wer3RsqVhqvA4w==} dependencies: - '@nuxtjs/color-mode': 3.2.0(rollup@3.20.7) - nuxt-config-schema: 0.4.6(rollup@3.20.7) - nuxt-icon: 0.3.3(rollup@3.20.7)(vue@3.2.47) - pinceau: 0.18.9(postcss@8.4.23) + '@nuxtjs/color-mode': 3.2.0(rollup@3.26.2) + nuxt-config-schema: 0.4.6(rollup@3.26.2) + nuxt-icon: 0.3.3(rollup@3.26.2)(vue@3.3.4) + pinceau: 0.18.9(postcss@8.4.25) ufo: 1.1.2 transitivePeerDependencies: - postcss @@ -1512,11 +1786,11 @@ packages: - vue dev: true - /@nuxt/content@2.6.0(rollup@3.20.7): + /@nuxt/content@2.6.0(rollup@3.26.2): resolution: {integrity: sha512-iwZ5NY6m2MNBAFaRp5OSjRdd+vk/XFbBqN0wtmpFtcoYHyzpUxy2fU38KWnXXmgP7Vi4mFOJ8SExZnL0cdlEtQ==} dependencies: - '@nuxt/kit': 3.4.1(rollup@3.20.7) - consola: 3.1.0 + '@nuxt/kit': 3.4.1(rollup@3.26.2) + consola: 3.2.3 defu: 6.1.2 destr: 1.2.2 detab: 3.0.2 @@ -1526,7 +1800,7 @@ packages: mdast-util-to-hast: 12.3.0 mdurl: 1.0.1 ohash: 1.1.2 - pathe: 1.1.0 + pathe: 1.1.1 property-information: 6.2.0 rehype-external-links: 2.0.1 rehype-raw: 6.1.1 @@ -1568,33 +1842,33 @@ packages: resolution: {integrity: sha512-YBI/6o2EBz02tdEJRBK8xkt3zvOFOWlLBf7WKYGBsSYSRtjjgrqPe2skp6VLLmKx5WbHHDNcW+6oACaurxGzeA==} dev: true - /@nuxt/devtools-edge@0.2.5-27994283.f736291(nuxt@3.4.1)(rollup@3.20.7)(vite@4.2.2): - resolution: {integrity: sha512-MxHAwtKKvUpUR7pUURRbNiT1QqGOSkD6HIyU+Rs8/tbNyD+Fb15rvpfh/HdR2aQmG/3wDFqBiXIrIckacFcVpg==} + /@nuxt/devtools-edge@0.2.5-27991385.f13be91(nuxt@3.4.1)(rollup@3.26.2)(vite@4.2.2): + resolution: {integrity: sha512-+BJYCiKq8EK0oF4PoRzpudQQd6UkNyKnIcvLXKmU2Wf4HntAQrfkeoR3DwAGnQu8acwk/UX9K0YwoatvbH7irw==} hasBin: true peerDependencies: nuxt: ^3.3.1 vite: '*' dependencies: - '@nuxt/devtools-kit': /@nuxt/devtools-kit-edge@0.2.5-27994283.f736291(nuxt@3.4.1)(rollup@3.20.7)(vite@4.2.2) - '@nuxt/kit': 3.5.2(rollup@3.20.7) - birpc: 0.2.11 - consola: 3.1.0 + '@nuxt/devtools-kit': /@nuxt/devtools-kit-edge@0.2.5-27991385.f13be91(nuxt@3.4.1)(rollup@3.26.2)(vite@4.2.2) + '@nuxt/kit': 3.6.2(rollup@3.26.2) + birpc: 0.2.12 + consola: 3.2.3 execa: 7.1.1 - fast-glob: 3.2.12 - h3: 1.6.6 + fast-glob: 3.3.0 + h3: 1.7.1 hookable: 5.5.3 image-meta: 0.1.1 is-installed-globally: 0.4.0 launch-editor: 2.6.0 local-pkg: 0.4.3 - nuxt: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) + nuxt: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) pacote: 15.2.0 - pathe: 1.1.0 + pathe: 1.1.1 pkg-types: 1.0.3 - rc9: 2.1.0 - unimport: 3.0.7(rollup@3.20.7) - vite: 4.2.2(@types/node@18.16.0) - vite-plugin-inspect: 0.7.28(rollup@3.20.7)(vite@4.2.2) + rc9: 2.1.1 + unimport: 3.0.14(rollup@3.26.2) + vite: 4.2.2(@types/node@18.16.19) + vite-plugin-inspect: 0.7.32(rollup@3.26.2)(vite@4.2.2) vite-plugin-vue-inspector: 3.4.2(vite@4.2.2) transitivePeerDependencies: - bluebird @@ -1602,95 +1876,121 @@ packages: - supports-color dev: true - /@nuxt/devtools-kit-edge@0.2.5-27994283.f736291(nuxt@3.4.1)(rollup@3.20.7)(vite@4.2.2): - resolution: {integrity: sha512-9mRimi9Qcx7hQ4Zff2lYJVWRzRLNhv+Xl/5YeH8KYbVxWcy3Qud2hC3GTmEQrXBIGlMenaDXAUU5FRx3dVtlCQ==} + /@nuxt/devtools-kit-edge@0.2.5-27991385.f13be91(nuxt@3.4.1)(rollup@3.26.2)(vite@4.2.2): + resolution: {integrity: sha512-vkvi226v1um9ZpNGWjNJ55PP3le6TPZbsdIZvpTQaT57ua0RbNqoUPxKj0MhObtPJAud6F1SVo6s4JVMNjVemg==} peerDependencies: nuxt: ^3.3.1 vite: '*' dependencies: - '@nuxt/kit': 3.5.2(rollup@3.20.7) - '@nuxt/schema': 3.5.2(rollup@3.20.7) + '@nuxt/kit': 3.6.2(rollup@3.26.2) + '@nuxt/schema': 3.6.2(rollup@3.26.2) execa: 7.1.1 - nuxt: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) - vite: 4.2.2(@types/node@18.16.0) + nuxt: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) + vite: 4.2.2(@types/node@18.16.19) transitivePeerDependencies: - rollup - supports-color dev: true - /@nuxt/kit@3.4.1(rollup@3.20.7): + /@nuxt/kit@3.4.1(rollup@3.26.2): resolution: {integrity: sha512-VeH26umZW6Rf4F1QX9nTIuTBp6HeL/MgmKY3+FgQiLD07afgFTLUJZohVE5xU7hb66zCnYvwKxa3JpjXFJZrhQ==} engines: {node: ^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0} dependencies: - '@nuxt/schema': 3.4.1(rollup@3.20.7) + '@nuxt/schema': 3.4.1(rollup@3.26.2) c12: 1.4.1 consola: 3.1.0 defu: 6.1.2 globby: 13.1.4 hash-sum: 2.0.0 ignore: 5.2.4 - jiti: 1.18.2 + jiti: 1.19.1 knitwork: 1.0.0 lodash.template: 4.5.0 - mlly: 1.3.0 - pathe: 1.1.0 + mlly: 1.4.0 + pathe: 1.1.1 pkg-types: 1.0.3 scule: 1.0.0 - semver: 7.5.1 + semver: 7.5.3 unctx: 2.3.1 - unimport: 3.0.7(rollup@3.20.7) + unimport: 3.0.7(rollup@3.26.2) untyped: 1.3.2 transitivePeerDependencies: - rollup - supports-color - /@nuxt/kit@3.5.2(rollup@3.20.7): + /@nuxt/kit@3.5.2(rollup@3.26.2): resolution: {integrity: sha512-DwmJFJbzbg5T/Qcf5ruiHBfWuLIasTakIeifKS+pqS+VhZDoUW0O7jHm6jESQ5reAbde+L+IH6bXN/y07ivkRA==} engines: {node: ^14.18.0 || >=16.10.0} dependencies: - '@nuxt/schema': 3.5.2(rollup@3.20.7) - c12: 1.4.1 - consola: 3.1.0 + '@nuxt/schema': 3.5.2(rollup@3.26.2) + c12: 1.4.2 + consola: 3.2.3 defu: 6.1.2 - globby: 13.1.4 + globby: 13.2.1 hash-sum: 2.0.0 ignore: 5.2.4 - jiti: 1.18.2 + jiti: 1.19.1 knitwork: 1.0.0 lodash.template: 4.5.0 - mlly: 1.3.0 - pathe: 1.1.0 + mlly: 1.4.0 + pathe: 1.1.1 pkg-types: 1.0.3 scule: 1.0.0 - semver: 7.5.1 + semver: 7.5.3 unctx: 2.3.1 - unimport: 3.0.7(rollup@3.20.7) + unimport: 3.0.14(rollup@3.26.2) + untyped: 1.3.2 + transitivePeerDependencies: + - rollup + - supports-color + dev: true + + /@nuxt/kit@3.6.2(rollup@3.26.2): + resolution: {integrity: sha512-X1WN76izsILva6TvQVTfJCHG7TXCwsB6jsxZKcU3qSog26jer5dildDb5ZmKL3e+IFD6BwK4ShO/py8VZcT6OA==} + engines: {node: ^14.18.0 || >=16.10.0} + dependencies: + '@nuxt/schema': 3.6.2(rollup@3.26.2) + c12: 1.4.2 + consola: 3.2.3 + defu: 6.1.2 + globby: 13.2.2 + hash-sum: 2.0.0 + ignore: 5.2.4 + jiti: 1.19.1 + knitwork: 1.0.0 + mlly: 1.4.0 + pathe: 1.1.1 + pkg-types: 1.0.3 + scule: 1.0.0 + semver: 7.5.3 + unctx: 2.3.1 + unimport: 3.0.14(rollup@3.26.2) untyped: 1.3.2 transitivePeerDependencies: - rollup - supports-color dev: true - /@nuxt/module-builder@0.4.0(@nuxt/kit@3.4.1)(nuxi@3.5.2): + /@nuxt/module-builder@0.4.0(@nuxt/kit@3.4.1)(nuxi@3.6.2): resolution: {integrity: sha512-B+UAYgFV1Hkc2ZcD7GaiKZ3SNHhyxFlXzZoBWTc9ulE0Z/+rq6RTa9fNm13BZyGhVhDCl5FN/wF/yYa1O/D2iw==} hasBin: true peerDependencies: '@nuxt/kit': ^3.5.0 nuxi: ^3.5.0 dependencies: - '@nuxt/kit': 3.4.1(rollup@3.20.7) - consola: 3.1.0 - mlly: 1.3.0 + '@nuxt/kit': 3.4.1(rollup@3.26.2) + consola: 3.2.3 + mlly: 1.4.0 mri: 1.2.0 - nuxi: 3.5.2 - pathe: 1.1.0 + nuxi: 3.6.2 + pathe: 1.1.1 unbuild: 1.2.1 transitivePeerDependencies: - sass - supports-color dev: true - /@nuxt/schema@3.4.1(rollup@3.20.7): + /@nuxt/schema@3.4.1(rollup@3.26.2): resolution: {integrity: sha512-xhPh9JfVKXRQVfdUT6BKieDTCljBjbIGgGCQnxplVi4FUTWRKUXR7MFwsobr5D9AJpeE0mg5/kRRh5gUX37vAQ==} engines: {node: ^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0} dependencies: @@ -1698,42 +1998,60 @@ packages: create-require: 1.1.1 defu: 6.1.2 hookable: 5.5.3 - jiti: 1.18.2 - pathe: 1.1.0 - pkg-types: 1.0.2 + jiti: 1.19.1 + pathe: 1.1.1 + pkg-types: 1.0.3 postcss-import-resolver: 2.0.0 scule: 1.0.0 std-env: 3.3.2 - ufo: 1.1.1 - unimport: 3.0.6(rollup@3.20.7) + ufo: 1.1.2 + unimport: 3.0.6(rollup@3.26.2) untyped: 1.3.2 transitivePeerDependencies: - rollup - supports-color - /@nuxt/schema@3.5.2(rollup@3.20.7): + /@nuxt/schema@3.5.2(rollup@3.26.2): resolution: {integrity: sha512-7u7NZ1TgSdjdOkLaFhv8iP+Lr9whqemMuLDALpnR+HJGC/Mm8ep+yECgCwIT/h1bM/nogZyGWO0xjOIdtzqlUA==} engines: {node: ^14.18.0 || >=16.10.0} dependencies: defu: 6.1.2 hookable: 5.5.3 - pathe: 1.1.0 + pathe: 1.1.1 pkg-types: 1.0.3 postcss-import-resolver: 2.0.0 std-env: 3.3.3 ufo: 1.1.2 - unimport: 3.0.7(rollup@3.20.7) + unimport: 3.0.14(rollup@3.26.2) + untyped: 1.3.2 + transitivePeerDependencies: + - rollup + - supports-color + dev: true + + /@nuxt/schema@3.6.2(rollup@3.26.2): + resolution: {integrity: sha512-wxb1/C5ozly5IwX0IRjVGml1n2KjZrTKsf6lTk3fdjUpW105kAvYX4j66PDOdBRE4vCwCsgaHJfWpUSeNBxbuA==} + engines: {node: ^14.18.0 || >=16.10.0} + dependencies: + defu: 6.1.2 + hookable: 5.5.3 + pathe: 1.1.1 + pkg-types: 1.0.3 + postcss-import-resolver: 2.0.0 + std-env: 3.3.3 + ufo: 1.1.2 + unimport: 3.0.14(rollup@3.26.2) untyped: 1.3.2 transitivePeerDependencies: - rollup - supports-color dev: true - /@nuxt/telemetry@2.2.0(rollup@3.20.7): + /@nuxt/telemetry@2.2.0(rollup@3.26.2): resolution: {integrity: sha512-Z2UmPkBy5WjxvHKuUcl1X6vKWnIyWSP+9UGde1F+MzzZxYgAQybFud1uL2B3KCowxZdoqT1hd2WklV7EtyCwrQ==} hasBin: true dependencies: - '@nuxt/kit': 3.5.2(rollup@3.20.7) + '@nuxt/kit': 3.5.2(rollup@3.26.2) chalk: 5.2.0 ci-info: 3.8.0 consola: 3.1.0 @@ -1745,11 +2063,11 @@ packages: git-url-parse: 13.1.0 inquirer: 9.1.5 is-docker: 3.0.0 - jiti: 1.18.2 + jiti: 1.19.1 mri: 1.2.0 nanoid: 4.0.2 node-fetch: 3.3.1 - ofetch: 1.0.1 + ofetch: 1.1.1 parse-git-config: 3.0.0 rc9: 2.1.0 std-env: 3.3.3 @@ -1762,16 +2080,16 @@ packages: resolution: {integrity: sha512-PjVETP7+iZXAs5Q8O4ivl4t6qjWZMZqwiTVogUXHoHGZZcw7GZW3u3tzfYfE1HbzyYJfr236IXqQ02MeR8Fz2w==} dev: true - /@nuxt/vite-builder@3.4.1(@types/node@18.16.0)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3)(vue@3.2.47): + /@nuxt/vite-builder@3.4.1(@types/node@18.16.19)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6)(vue@3.3.4): resolution: {integrity: sha512-qqS+hUv91z58vLNEorP4xfyvo/uoteTCYaMouyRZzqnJhrE/G82x2SqdzfADEhKpNHUkGWhpc37uuejrM+y6qw==} engines: {node: ^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0} peerDependencies: vue: ^3.2.47 dependencies: - '@nuxt/kit': 3.4.1(rollup@3.20.7) - '@rollup/plugin-replace': 5.0.2(rollup@3.20.7) - '@vitejs/plugin-vue': 4.1.0(vite@4.2.2)(vue@3.2.47) - '@vitejs/plugin-vue-jsx': 3.0.1(vite@4.2.2)(vue@3.2.47) + '@nuxt/kit': 3.4.1(rollup@3.26.2) + '@rollup/plugin-replace': 5.0.2(rollup@3.26.2) + '@vitejs/plugin-vue': 4.1.0(vite@4.2.2)(vue@3.3.4) + '@vitejs/plugin-vue-jsx': 3.0.1(vite@4.2.2)(vue@3.3.4) autoprefixer: 10.4.14(postcss@8.4.23) chokidar: 3.5.3 clear: 0.1.0 @@ -1786,23 +2104,23 @@ packages: h3: 1.6.6 knitwork: 1.0.0 magic-string: 0.30.0 - mlly: 1.3.0 + mlly: 1.4.0 ohash: 1.1.2 - pathe: 1.1.0 + pathe: 1.1.1 perfect-debounce: 0.1.3 pkg-types: 1.0.3 postcss: 8.4.23 postcss-import: 15.1.0(postcss@8.4.23) postcss-url: 10.1.3(postcss@8.4.23) - rollup-plugin-visualizer: 5.9.0(rollup@3.20.7) + rollup-plugin-visualizer: 5.9.0(rollup@3.26.2) std-env: 3.3.3 strip-literal: 1.0.1 ufo: 1.1.2 - unplugin: 1.3.1 - vite: 4.2.2(@types/node@18.16.0) - vite-node: 0.30.1(@types/node@18.16.0) - vite-plugin-checker: 0.5.6(eslint@8.38.0)(typescript@5.1.3)(vite@4.2.2) - vue: 3.2.47 + unplugin: 1.3.2 + vite: 4.2.2(@types/node@18.16.19) + vite-node: 0.30.1(@types/node@18.16.19) + vite-plugin-checker: 0.5.6(eslint@8.44.0)(typescript@5.1.6)(vite@4.2.2) + vue: 3.3.4 vue-bundle-renderer: 1.0.3 transitivePeerDependencies: - '@types/node' @@ -1823,13 +2141,13 @@ packages: - vue-tsc dev: true - /@nuxthq/studio@0.9.5(rollup@3.20.7)(vue-component-type-helpers@1.3.12): + /@nuxthq/studio@0.9.5(rollup@3.26.2)(vue-component-type-helpers@1.3.12): resolution: {integrity: sha512-EgAvLregOANyaohTObt1RBnUZV6lFlO2fBgaO/nWCI8c1EDeS6DsrMIePEgKgAGiEsVt/cTPn0lvhgafw7woGQ==} dependencies: - '@nuxt/kit': 3.5.2(rollup@3.20.7) + '@nuxt/kit': 3.6.2(rollup@3.26.2) defu: 6.1.2 - nuxt-component-meta: 0.5.1(rollup@3.20.7)(vue-component-type-helpers@1.3.12) - nuxt-config-schema: 0.4.6(rollup@3.20.7) + nuxt-component-meta: 0.5.1(rollup@3.26.2)(vue-component-type-helpers@1.3.12) + nuxt-config-schema: 0.4.6(rollup@3.26.2) socket.io-client: 4.6.1 ufo: 1.1.2 transitivePeerDependencies: @@ -1840,17 +2158,24 @@ packages: - vue-component-type-helpers dev: true - /@nuxtjs/color-mode@3.2.0(rollup@3.20.7): + /@nuxtjs/color-mode@3.2.0(rollup@3.26.2): resolution: {integrity: sha512-isDR01yfadopiHQ/VEVUpyNSPrk5PCjUHS4t1qYRZwuRGefU4s9Iaxf6H9nmr1QFzoMgTm+3T0r/54jLwtpZbA==} dependencies: - '@nuxt/kit': 3.5.2(rollup@3.20.7) + '@nuxt/kit': 3.6.2(rollup@3.26.2) lodash.template: 4.5.0 - pathe: 1.1.0 + pathe: 1.1.1 transitivePeerDependencies: - rollup - supports-color dev: true + /@pkgjs/parseargs@0.11.0: + resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} + engines: {node: '>=14'} + requiresBuild: true + dev: true + optional: true + /@polka/url@1.0.0-next.21: resolution: {integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==} dev: true @@ -1865,10 +2190,41 @@ packages: optional: true dependencies: rollup: 3.20.7 - slash: 4.0.0 + slash: 4.0.0 + dev: true + + /@rollup/plugin-alias@5.0.0(rollup@3.26.2): + resolution: {integrity: sha512-l9hY5chSCjuFRPsnRm16twWBiSApl2uYFLsepQYwtBuAxNMQ/1dJqADld40P0Jkqm65GRTLy/AC6hnpVebtLsA==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0 + peerDependenciesMeta: + rollup: + optional: true + dependencies: + rollup: 3.26.2 + slash: 4.0.0 + dev: true + + /@rollup/plugin-commonjs@24.1.0(rollup@3.20.7): + resolution: {integrity: sha512-eSL45hjhCWI0jCCXcNtLVqM5N1JlBGvlFfY0m6oOYnLCJ6N0qEXoZql4sY2MOUArzhH4SA/qBpTxvvZp2Sc+DQ==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^2.68.0||^3.0.0 + peerDependenciesMeta: + rollup: + optional: true + dependencies: + '@rollup/pluginutils': 5.0.2(rollup@3.20.7) + commondir: 1.0.1 + estree-walker: 2.0.2 + glob: 8.1.0 + is-reference: 1.2.1 + magic-string: 0.27.0 + rollup: 3.20.7 dev: true - /@rollup/plugin-commonjs@24.1.0(rollup@3.20.7): + /@rollup/plugin-commonjs@24.1.0(rollup@3.26.2): resolution: {integrity: sha512-eSL45hjhCWI0jCCXcNtLVqM5N1JlBGvlFfY0m6oOYnLCJ6N0qEXoZql4sY2MOUArzhH4SA/qBpTxvvZp2Sc+DQ==} engines: {node: '>=14.0.0'} peerDependencies: @@ -1877,13 +2233,13 @@ packages: rollup: optional: true dependencies: - '@rollup/pluginutils': 5.0.2(rollup@3.20.7) + '@rollup/pluginutils': 5.0.2(rollup@3.26.2) commondir: 1.0.1 estree-walker: 2.0.2 glob: 8.1.0 is-reference: 1.2.1 magic-string: 0.27.0 - rollup: 3.20.7 + rollup: 3.26.2 dev: true /@rollup/plugin-inject@5.0.3(rollup@3.20.7): @@ -1914,6 +2270,19 @@ packages: rollup: 3.20.7 dev: true + /@rollup/plugin-json@6.0.0(rollup@3.26.2): + resolution: {integrity: sha512-i/4C5Jrdr1XUarRhVu27EEwjt4GObltD7c+MkCIpO2QIbojw8MUs+CCTqOphQi3Qtg1FLmYt+l+6YeoIf51J7w==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0 + peerDependenciesMeta: + rollup: + optional: true + dependencies: + '@rollup/pluginutils': 5.0.2(rollup@3.26.2) + rollup: 3.26.2 + dev: true + /@rollup/plugin-node-resolve@15.0.2(rollup@3.20.7): resolution: {integrity: sha512-Y35fRGUjC3FaurG722uhUuG8YHOJRJQbI6/CkbRkdPotSpDj9NtIN85z1zrcyDcCQIW4qp5mgG72U+gJ0TAFEg==} engines: {node: '>=14.0.0'} @@ -1932,6 +2301,24 @@ packages: rollup: 3.20.7 dev: true + /@rollup/plugin-node-resolve@15.1.0(rollup@3.26.2): + resolution: {integrity: sha512-xeZHCgsiZ9pzYVgAo9580eCGqwh/XCEUM9q6iQfGNocjgkufHAqC3exA+45URvhiYV8sBF9RlBai650eNs7AsA==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^2.78.0||^3.0.0 + peerDependenciesMeta: + rollup: + optional: true + dependencies: + '@rollup/pluginutils': 5.0.2(rollup@3.26.2) + '@types/resolve': 1.20.2 + deepmerge: 4.3.1 + is-builtin-module: 3.2.1 + is-module: 1.0.0 + resolve: 1.22.2 + rollup: 3.26.2 + dev: true + /@rollup/plugin-replace@5.0.2(rollup@3.20.7): resolution: {integrity: sha512-M9YXNekv/C/iHHK+cvORzfRYfPbq0RDD8r0G+bMiTXjNGKulPnCT9O3Ss46WfhI6ZOCgApOP7xAdmCQJ+U2LAA==} engines: {node: '>=14.0.0'} @@ -1946,6 +2333,20 @@ packages: rollup: 3.20.7 dev: true + /@rollup/plugin-replace@5.0.2(rollup@3.26.2): + resolution: {integrity: sha512-M9YXNekv/C/iHHK+cvORzfRYfPbq0RDD8r0G+bMiTXjNGKulPnCT9O3Ss46WfhI6ZOCgApOP7xAdmCQJ+U2LAA==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0 + peerDependenciesMeta: + rollup: + optional: true + dependencies: + '@rollup/pluginutils': 5.0.2(rollup@3.26.2) + magic-string: 0.27.0 + rollup: 3.26.2 + dev: true + /@rollup/plugin-terser@0.4.1(rollup@3.20.7): resolution: {integrity: sha512-aKS32sw5a7hy+fEXVy+5T95aDIwjpGHCTv833HXVtyKMDoVS7pBr5K3L9hEQoNqbJFjfANPrNpIXlTQ7is00eA==} engines: {node: '>=14.0.0'} @@ -1994,12 +2395,41 @@ packages: estree-walker: 2.0.2 picomatch: 2.3.1 rollup: 3.20.7 + dev: true + + /@rollup/pluginutils@5.0.2(rollup@3.26.2): + resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0 + peerDependenciesMeta: + rollup: + optional: true + dependencies: + '@types/estree': 1.0.1 + estree-walker: 2.0.2 + picomatch: 2.3.1 + rollup: 3.26.2 /@sigstore/protobuf-specs@0.1.0: resolution: {integrity: sha512-a31EnjuIDSX8IXBUib3cYLDRlPMU36AWX4xS8ysLaNu4ZzUesDiPt83pgrW2X1YLMe5L2HbDyaKK5BrL4cNKaQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dev: true + /@sigstore/tuf@1.0.2: + resolution: {integrity: sha512-vjwcYePJzM01Ha6oWWZ9gNcdIgnzyFxfqfWzph483DPJTH8Tb7f7bQRRll3CYVkyH56j0AgcPAcl6Vg95DPF+Q==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + '@sigstore/protobuf-specs': 0.1.0 + tuf-js: 1.1.7 + transitivePeerDependencies: + - supports-color + dev: true + + /@sinclair/typebox@0.27.8: + resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} + dev: true + /@socket.io/component-emitter@3.1.0: resolution: {integrity: sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==} dev: true @@ -2019,26 +2449,26 @@ packages: engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dev: true - /@tufjs/models@1.0.3: - resolution: {integrity: sha512-mkFEqqRisi13DmR5pX4x+Zk97EiU8djTtpNW1GeuX410y/raAsq/T3ZCjwoRIZ8/cIBfW0olK/sywlAiWevDVw==} + /@tufjs/models@1.0.4: + resolution: {integrity: sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: '@tufjs/canonical-json': 1.0.0 - minimatch: 7.4.6 + minimatch: 9.0.3 dev: true /@types/chai-subset@1.3.3: resolution: {integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==} dependencies: - '@types/chai': 4.3.4 + '@types/chai': 4.3.5 dev: true - /@types/chai@4.3.4: - resolution: {integrity: sha512-KnRanxnpfpjUTqTCXslZSEdLfXExwgNxYPdiO2WGUj8+HDjFi8R3k5RVKPeSCzLjCcshCAtVO2QBbVuAV4kTnw==} + /@types/chai@4.3.5: + resolution: {integrity: sha512-mEo1sAde+UCE6b2hxn332f1g1E8WfYRu6p5SvTKr2ZKC1f7gFJXk4h5PyGP9Dt6gCaG8y8XhwnXWC6Iy2cmBng==} dev: true - /@types/debug@4.1.7: - resolution: {integrity: sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==} + /@types/debug@4.1.8: + resolution: {integrity: sha512-/vPO1EPOs306Cvhwv7KfVfYvOJqA/S/AXjaHQiJboCZzcNDb+TIJFN9/2C9DZ//ijSKWioNyUxD792QmDJ+HKQ==} dependencies: '@types/ms': 0.7.31 dev: true @@ -2063,8 +2493,8 @@ packages: resolution: {integrity: sha512-Xe7IImK09HP1sv2M/aI+48a20VX+TdRJucfq4vfRVy6nWN8PYPOEnlMRSgxJAgYQIXJVL8dZ4/ilAM7dWNaOww==} dev: true - /@types/json-schema@7.0.11: - resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==} + /@types/json-schema@7.0.12: + resolution: {integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==} dev: true /@types/mdast@3.0.11: @@ -2085,6 +2515,10 @@ packages: resolution: {integrity: sha512-BsAaKhB+7X+H4GnSjGhJG9Qi8Tw+inU9nJDwmD5CgOmBLEI6ArdhikpLX7DjbjDRDTbqZzU2LSQNZg8WGPiSZQ==} dev: true + /@types/node@18.16.19: + resolution: {integrity: sha512-IXl7o+R9iti9eBW4Wg2hx1xQDig183jj7YLn8F7udNceyfkbn1ZxmzZXuak20gR40D7pIkIY1kYGx5VIGbaHKA==} + dev: true + /@types/parse5@6.0.3: resolution: {integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==} dev: true @@ -2093,15 +2527,15 @@ packages: resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} dev: true - /@types/rimraf@3.0.0: - resolution: {integrity: sha512-7WhJ0MdpFgYQPXlF4Dx+DhgvlPCfz/x5mHaeDQAKhcenvQP1KCpLQ18JklAqeGMYSAT2PxLpzd0g2/HE7fj7hQ==} + /@types/rimraf@3.0.2: + resolution: {integrity: sha512-F3OznnSLAUxFrCEu/L5PY8+ny8DtcFRjx7fZZ9bycvXRi3KPTRS9HOitGZwvPg0juRhXFWIeKX58cnX5YqLohQ==} dependencies: '@types/glob': 8.1.0 '@types/node': 18.16.0 dev: true - /@types/semver@7.3.13: - resolution: {integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==} + /@types/semver@7.5.0: + resolution: {integrity: sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==} dev: true /@types/unist@2.0.6: @@ -2112,8 +2546,8 @@ packages: resolution: {integrity: sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==} dev: true - /@typescript-eslint/eslint-plugin@5.58.0(@typescript-eslint/parser@5.58.0)(eslint@8.38.0)(typescript@5.1.3): - resolution: {integrity: sha512-vxHvLhH0qgBd3/tW6/VccptSfc8FxPQIkmNTVLWcCOVqSBvqpnKkBTYrhcGlXfSnd78azwe+PsjYFj0X34/njA==} + /@typescript-eslint/eslint-plugin@5.61.0(@typescript-eslint/parser@5.61.0)(eslint@8.44.0)(typescript@5.1.6): + resolution: {integrity: sha512-A5l/eUAug103qtkwccSCxn8ZRwT+7RXWkFECdA4Cvl1dOlDUgTpAOfSEElZn2uSUxhdDpnCdetrf0jvU4qrL+g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/parser': ^5.0.0 @@ -2124,24 +2558,24 @@ packages: optional: true dependencies: '@eslint-community/regexpp': 4.5.0 - '@typescript-eslint/parser': 5.58.0(eslint@8.38.0)(typescript@5.1.3) - '@typescript-eslint/scope-manager': 5.58.0 - '@typescript-eslint/type-utils': 5.58.0(eslint@8.38.0)(typescript@5.1.3) - '@typescript-eslint/utils': 5.58.0(eslint@8.38.0)(typescript@5.1.3) + '@typescript-eslint/parser': 5.61.0(eslint@8.44.0)(typescript@5.1.6) + '@typescript-eslint/scope-manager': 5.61.0 + '@typescript-eslint/type-utils': 5.61.0(eslint@8.44.0)(typescript@5.1.6) + '@typescript-eslint/utils': 5.61.0(eslint@8.44.0)(typescript@5.1.6) debug: 4.3.4 - eslint: 8.38.0 - grapheme-splitter: 1.0.4 + eslint: 8.44.0 + graphemer: 1.4.0 ignore: 5.2.4 natural-compare-lite: 1.4.0 semver: 7.5.0 - tsutils: 3.21.0(typescript@5.1.3) - typescript: 5.1.3 + tsutils: 3.21.0(typescript@5.1.6) + typescript: 5.1.6 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser@5.58.0(eslint@8.38.0)(typescript@5.1.3): - resolution: {integrity: sha512-ixaM3gRtlfrKzP8N6lRhBbjTow1t6ztfBvQNGuRM8qH1bjFFXIJ35XY+FC0RRBKn3C6cT+7VW1y8tNm7DwPHDQ==} + /@typescript-eslint/parser@5.61.0(eslint@8.44.0)(typescript@5.1.6): + resolution: {integrity: sha512-yGr4Sgyh8uO6fSi9hw3jAFXNBHbCtKKFMdX2IkT3ZqpKmtAq3lHS4ixB/COFuAIJpwl9/AqF7j72ZDWYKmIfvg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -2150,26 +2584,26 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 5.58.0 - '@typescript-eslint/types': 5.58.0 - '@typescript-eslint/typescript-estree': 5.58.0(typescript@5.1.3) + '@typescript-eslint/scope-manager': 5.61.0 + '@typescript-eslint/types': 5.61.0 + '@typescript-eslint/typescript-estree': 5.61.0(typescript@5.1.6) debug: 4.3.4 - eslint: 8.38.0 - typescript: 5.1.3 + eslint: 8.44.0 + typescript: 5.1.6 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/scope-manager@5.58.0: - resolution: {integrity: sha512-b+w8ypN5CFvrXWQb9Ow9T4/6LC2MikNf1viLkYTiTbkQl46CnR69w7lajz1icW0TBsYmlpg+mRzFJ4LEJ8X9NA==} + /@typescript-eslint/scope-manager@5.61.0: + resolution: {integrity: sha512-W8VoMjoSg7f7nqAROEmTt6LoBpn81AegP7uKhhW5KzYlehs8VV0ZW0fIDVbcZRcaP3aPSW+JZFua+ysQN+m/Nw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.58.0 - '@typescript-eslint/visitor-keys': 5.58.0 + '@typescript-eslint/types': 5.61.0 + '@typescript-eslint/visitor-keys': 5.61.0 dev: true - /@typescript-eslint/type-utils@5.58.0(eslint@8.38.0)(typescript@5.1.3): - resolution: {integrity: sha512-FF5vP/SKAFJ+LmR9PENql7fQVVgGDOS+dq3j+cKl9iW/9VuZC/8CFmzIP0DLKXfWKpRHawJiG70rVH+xZZbp8w==} + /@typescript-eslint/type-utils@5.61.0(eslint@8.44.0)(typescript@5.1.6): + resolution: {integrity: sha512-kk8u//r+oVK2Aj3ph/26XdH0pbAkC2RiSjUYhKD+PExemG4XSjpGFeyZ/QM8lBOa7O8aGOU+/yEbMJgQv/DnCg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -2178,23 +2612,23 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 5.58.0(typescript@5.1.3) - '@typescript-eslint/utils': 5.58.0(eslint@8.38.0)(typescript@5.1.3) + '@typescript-eslint/typescript-estree': 5.61.0(typescript@5.1.6) + '@typescript-eslint/utils': 5.61.0(eslint@8.44.0)(typescript@5.1.6) debug: 4.3.4 - eslint: 8.38.0 - tsutils: 3.21.0(typescript@5.1.3) - typescript: 5.1.3 + eslint: 8.44.0 + tsutils: 3.21.0(typescript@5.1.6) + typescript: 5.1.6 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/types@5.58.0: - resolution: {integrity: sha512-JYV4eITHPzVQMnHZcYJXl2ZloC7thuUHrcUmxtzvItyKPvQ50kb9QXBkgNAt90OYMqwaodQh2kHutWZl1fc+1g==} + /@typescript-eslint/types@5.61.0: + resolution: {integrity: sha512-ldyueo58KjngXpzloHUog/h9REmHl59G1b3a5Sng1GfBo14BkS3ZbMEb3693gnP1k//97lh7bKsp6/V/0v1veQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/typescript-estree@5.58.0(typescript@5.1.3): - resolution: {integrity: sha512-cRACvGTodA+UxnYM2uwA2KCwRL7VAzo45syNysqlMyNyjw0Z35Icc9ihPJZjIYuA5bXJYiJ2YGUB59BqlOZT1Q==} + /@typescript-eslint/typescript-estree@5.61.0(typescript@5.1.6): + resolution: {integrity: sha512-Fud90PxONnnLZ36oR5ClJBLTLfU4pIWBmnvGwTbEa2cXIqj70AEDEmOmpkFComjBZ/037ueKrOdHuYmSFVD7Rw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: typescript: '*' @@ -2202,31 +2636,31 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 5.58.0 - '@typescript-eslint/visitor-keys': 5.58.0 + '@typescript-eslint/types': 5.61.0 + '@typescript-eslint/visitor-keys': 5.61.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 - semver: 7.5.1 - tsutils: 3.21.0(typescript@5.1.3) - typescript: 5.1.3 + semver: 7.5.3 + tsutils: 3.21.0(typescript@5.1.6) + typescript: 5.1.6 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/utils@5.58.0(eslint@8.38.0)(typescript@5.1.3): - resolution: {integrity: sha512-gAmLOTFXMXOC+zP1fsqm3VceKSBQJNzV385Ok3+yzlavNHZoedajjS4UyS21gabJYcobuigQPs/z71A9MdJFqQ==} + /@typescript-eslint/utils@5.61.0(eslint@8.44.0)(typescript@5.1.6): + resolution: {integrity: sha512-mV6O+6VgQmVE6+xzlA91xifndPW9ElFW8vbSF0xCT/czPXVhwDewKila1jOyRwa9AE19zKnrr7Cg5S3pJVrTWQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.38.0) - '@types/json-schema': 7.0.11 - '@types/semver': 7.3.13 - '@typescript-eslint/scope-manager': 5.58.0 - '@typescript-eslint/types': 5.58.0 - '@typescript-eslint/typescript-estree': 5.58.0(typescript@5.1.3) - eslint: 8.38.0 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.44.0) + '@types/json-schema': 7.0.12 + '@types/semver': 7.5.0 + '@typescript-eslint/scope-manager': 5.61.0 + '@typescript-eslint/types': 5.61.0 + '@typescript-eslint/typescript-estree': 5.61.0(typescript@5.1.6) + eslint: 8.44.0 eslint-scope: 5.1.1 semver: 7.5.0 transitivePeerDependencies: @@ -2234,12 +2668,12 @@ packages: - typescript dev: true - /@typescript-eslint/visitor-keys@5.58.0: - resolution: {integrity: sha512-/fBraTlPj0jwdyTwLyrRTxv/3lnU2H96pNTVM6z3esTWLtA5MZ9ghSMJ7Rb+TtUAdtEw9EyJzJ0EydIMKxQ9gA==} + /@typescript-eslint/visitor-keys@5.61.0: + resolution: {integrity: sha512-50XQ5VdbWrX06mQXhy93WywSFZZGsv3EOjq+lqp6WC2t+j3mb6A9xYVdrRxafvK88vg9k9u+CT4l6D8PEatjKg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.58.0 - eslint-visitor-keys: 3.4.0 + '@typescript-eslint/types': 5.61.0 + eslint-visitor-keys: 3.4.1 dev: true /@unhead/dom@1.1.26: @@ -2269,7 +2703,7 @@ packages: '@unhead/shared': 1.1.26 dev: true - /@unhead/vue@1.1.26(vue@3.2.47): + /@unhead/vue@1.1.26(vue@3.3.4): resolution: {integrity: sha512-UpxQ0KGmOoiN+Dg19zto5KTcnGV5chBmgiVJTDqUF4BPfr24vRrR65sZGdMoNV7weuD3AD/K0osk2ru+vXxRrA==} peerDependencies: vue: '>=2.7 || >=3' @@ -2278,7 +2712,7 @@ packages: '@unhead/shared': 1.1.26 hookable: 5.5.3 unhead: 1.1.26 - vue: 3.2.47 + vue: 3.3.4 dev: true /@unocss/reset@0.50.8: @@ -2292,7 +2726,7 @@ packages: dependencies: '@mapbox/node-pre-gyp': 1.0.10 '@rollup/pluginutils': 4.2.1 - acorn: 8.8.2 + acorn: 8.9.0 async-sema: 3.1.1 bindings: 1.5.0 estree-walker: 2.0.2 @@ -2306,70 +2740,69 @@ packages: - supports-color dev: true - /@vitejs/plugin-vue-jsx@3.0.1(vite@4.2.2)(vue@3.2.47): + /@vitejs/plugin-vue-jsx@3.0.1(vite@4.2.2)(vue@3.3.4): resolution: {integrity: sha512-+Jb7ggL48FSPS1uhPnJbJwWa9Sr90vQ+d0InW+AhBM22n+cfuYqJZDckBc+W3QSHe1WDvewMZfa4wZOtk5pRgw==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: vite: ^4.0.0 vue: ^3.0.0 dependencies: - '@babel/core': 7.21.4 - '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.21.4) - '@vue/babel-plugin-jsx': 1.1.1(@babel/core@7.21.4) - vite: 4.2.2(@types/node@18.16.0) - vue: 3.2.47 + '@babel/core': 7.22.8 + '@babel/plugin-transform-typescript': 7.22.5(@babel/core@7.22.8) + '@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.22.8) + vite: 4.2.2(@types/node@18.16.19) + vue: 3.3.4 transitivePeerDependencies: - supports-color dev: true - /@vitejs/plugin-vue@4.1.0(vite@4.2.2)(vue@3.2.47): + /@vitejs/plugin-vue@4.1.0(vite@4.2.2)(vue@3.3.4): resolution: {integrity: sha512-++9JOAFdcXI3lyer9UKUV4rfoQ3T1RN8yDqoCLar86s0xQct5yblxAE+yWgRnU5/0FOlVCpTZpYSBV/bGWrSrQ==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: vite: ^4.0.0 vue: ^3.2.25 dependencies: - vite: 4.2.2(@types/node@18.16.0) - vue: 3.2.47 + vite: 4.2.2(@types/node@18.16.19) + vue: 3.3.4 dev: true - /@vitest/expect@0.30.1: - resolution: {integrity: sha512-c3kbEtN8XXJSeN81iDGq29bUzSjQhjES2WR3aColsS4lPGbivwLtas4DNUe0jD9gg/FYGIteqOenfU95EFituw==} + /@vitest/expect@0.32.4: + resolution: {integrity: sha512-m7EPUqmGIwIeoU763N+ivkFjTzbaBn0n9evsTOcde03ugy2avPs3kZbYmw3DkcH1j5mxhMhdamJkLQ6dM1bk/A==} dependencies: - '@vitest/spy': 0.30.1 - '@vitest/utils': 0.30.1 + '@vitest/spy': 0.32.4 + '@vitest/utils': 0.32.4 chai: 4.3.7 dev: true - /@vitest/runner@0.30.1: - resolution: {integrity: sha512-W62kT/8i0TF1UBCNMRtRMOBWJKRnNyv9RrjIgdUryEe0wNpGZvvwPDLuzYdxvgSckzjp54DSpv1xUbv4BQ0qVA==} + /@vitest/runner@0.32.4: + resolution: {integrity: sha512-cHOVCkiRazobgdKLnczmz2oaKK9GJOw6ZyRcaPdssO1ej+wzHVIkWiCiNacb3TTYPdzMddYkCgMjZ4r8C0JFCw==} dependencies: - '@vitest/utils': 0.30.1 - concordance: 5.0.4 + '@vitest/utils': 0.32.4 p-limit: 4.0.0 - pathe: 1.1.0 + pathe: 1.1.1 dev: true - /@vitest/snapshot@0.30.1: - resolution: {integrity: sha512-fJZqKrE99zo27uoZA/azgWyWbFvM1rw2APS05yB0JaLwUIg9aUtvvnBf4q7JWhEcAHmSwbrxKFgyBUga6tq9Tw==} + /@vitest/snapshot@0.32.4: + resolution: {integrity: sha512-IRpyqn9t14uqsFlVI2d7DFMImGMs1Q9218of40bdQQgMePwVdmix33yMNnebXcTzDU5eiV3eUsoxxH5v0x/IQA==} dependencies: - magic-string: 0.30.0 - pathe: 1.1.0 - pretty-format: 27.5.1 + magic-string: 0.30.1 + pathe: 1.1.1 + pretty-format: 29.6.0 dev: true - /@vitest/spy@0.30.1: - resolution: {integrity: sha512-YfJeIf37GvTZe04ZKxzJfnNNuNSmTEGnla2OdL60C8od16f3zOfv9q9K0nNii0NfjDJRt/CVN/POuY5/zTS+BA==} + /@vitest/spy@0.32.4: + resolution: {integrity: sha512-oA7rCOqVOOpE6rEoXuCOADX7Lla1LIa4hljI2MSccbpec54q+oifhziZIJXxlE/CvI2E+ElhBHzVu0VEvJGQKQ==} dependencies: - tinyspy: 2.1.0 + tinyspy: 2.1.1 dev: true - /@vitest/utils@0.30.1: - resolution: {integrity: sha512-/c8Xv2zUVc+rnNt84QF0Y0zkfxnaGhp87K2dYJMLtLOIckPzuxLVzAtFCicGFdB4NeBHNzTRr1tNn7rCtQcWFA==} + /@vitest/utils@0.32.4: + resolution: {integrity: sha512-Gwnl8dhd1uJ+HXrYyV0eRqfmk9ek1ASE/LWfTCuWMw+d07ogHqp4hEAV28NiecimK6UY9DpSEPh+pXBA5gtTBg==} dependencies: - concordance: 5.0.4 + diff-sequences: 29.4.3 loupe: 2.3.6 - pretty-format: 27.5.1 + pretty-format: 29.6.0 dev: true /@volar/language-core@1.4.1: @@ -2389,119 +2822,131 @@ packages: dependencies: '@volar/language-core': 1.4.1 '@volar/source-map': 1.4.1 - '@vue/compiler-dom': 3.2.47 - '@vue/compiler-sfc': 3.2.47 - '@vue/reactivity': 3.2.47 - '@vue/shared': 3.2.47 - minimatch: 9.0.0 + '@vue/compiler-dom': 3.3.4 + '@vue/compiler-sfc': 3.3.4 + '@vue/reactivity': 3.3.4 + '@vue/shared': 3.3.4 + minimatch: 9.0.2 muggle-string: 0.2.2 vue-template-compiler: 2.7.14 dev: true - /@vue/babel-helper-vue-transform-on@1.0.2: - resolution: {integrity: sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==} + /@vue/babel-helper-vue-transform-on@1.1.5: + resolution: {integrity: sha512-SgUymFpMoAyWeYWLAY+MkCK3QEROsiUnfaw5zxOVD/M64KQs8D/4oK6Q5omVA2hnvEOE0SCkH2TZxs/jnnUj7w==} dev: true - /@vue/babel-plugin-jsx@1.1.1(@babel/core@7.21.4): - resolution: {integrity: sha512-j2uVfZjnB5+zkcbc/zsOc0fSNGCMMjaEXP52wdwdIfn0qjFfEYpYZBFKFg+HHnQeJCVrjOeO0YxgaL7DMrym9w==} + /@vue/babel-plugin-jsx@1.1.5(@babel/core@7.22.8): + resolution: {integrity: sha512-nKs1/Bg9U1n3qSWnsHhCVQtAzI6aQXqua8j/bZrau8ywT1ilXQbK4FwEJGmU8fV7tcpuFvWmmN7TMmV1OBma1g==} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-module-imports': 7.21.4 - '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.21.4) - '@babel/template': 7.20.7 - '@babel/traverse': 7.21.4 - '@babel/types': 7.22.4 - '@vue/babel-helper-vue-transform-on': 1.0.2 + '@babel/core': 7.22.8 + '@babel/helper-module-imports': 7.22.5 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.8) + '@babel/template': 7.22.5 + '@babel/traverse': 7.22.8 + '@babel/types': 7.22.5 + '@vue/babel-helper-vue-transform-on': 1.1.5 camelcase: 6.3.0 html-tags: 3.3.1 svg-tags: 1.0.0 transitivePeerDependencies: - - '@babel/core' - supports-color dev: true - /@vue/compiler-core@3.2.47: - resolution: {integrity: sha512-p4D7FDnQb7+YJmO2iPEv0SQNeNzcbHdGByJDsT4lynf63AFkOTFN07HsiRSvjGo0QrxR/o3d0hUyNCUnBU2Tig==} + /@vue/compiler-core@3.3.4: + resolution: {integrity: sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==} dependencies: - '@babel/parser': 7.22.4 - '@vue/shared': 3.2.47 + '@babel/parser': 7.22.7 + '@vue/shared': 3.3.4 estree-walker: 2.0.2 - source-map: 0.6.1 + source-map-js: 1.0.2 - /@vue/compiler-dom@3.2.47: - resolution: {integrity: sha512-dBBnEHEPoftUiS03a4ggEig74J2YBZ2UIeyfpcRM2tavgMWo4bsEfgCGsu+uJIL/vax9S+JztH8NmQerUo7shQ==} + /@vue/compiler-dom@3.3.4: + resolution: {integrity: sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==} dependencies: - '@vue/compiler-core': 3.2.47 - '@vue/shared': 3.2.47 + '@vue/compiler-core': 3.3.4 + '@vue/shared': 3.3.4 - /@vue/compiler-sfc@3.2.47: - resolution: {integrity: sha512-rog05W+2IFfxjMcFw10tM9+f7i/+FFpZJJ5XHX72NP9eC2uRD+42M3pYcQqDXVYoj74kHMSEdQ/WmCjt8JFksQ==} + /@vue/compiler-sfc@3.3.4: + resolution: {integrity: sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==} dependencies: - '@babel/parser': 7.21.4 - '@vue/compiler-core': 3.2.47 - '@vue/compiler-dom': 3.2.47 - '@vue/compiler-ssr': 3.2.47 - '@vue/reactivity-transform': 3.2.47 - '@vue/shared': 3.2.47 + '@babel/parser': 7.22.7 + '@vue/compiler-core': 3.3.4 + '@vue/compiler-dom': 3.3.4 + '@vue/compiler-ssr': 3.3.4 + '@vue/reactivity-transform': 3.3.4 + '@vue/shared': 3.3.4 estree-walker: 2.0.2 - magic-string: 0.25.9 + magic-string: 0.30.1 postcss: 8.4.23 - source-map: 0.6.1 + source-map-js: 1.0.2 - /@vue/compiler-ssr@3.2.47: - resolution: {integrity: sha512-wVXC+gszhulcMD8wpxMsqSOpvDZ6xKXSVWkf50Guf/S+28hTAXPDYRTbLQ3EDkOP5Xz/+SY37YiwDquKbJOgZw==} + /@vue/compiler-ssr@3.3.4: + resolution: {integrity: sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==} dependencies: - '@vue/compiler-dom': 3.2.47 - '@vue/shared': 3.2.47 + '@vue/compiler-dom': 3.3.4 + '@vue/shared': 3.3.4 /@vue/devtools-api@6.5.0: resolution: {integrity: sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q==} - /@vue/reactivity-transform@3.2.47: - resolution: {integrity: sha512-m8lGXw8rdnPVVIdIFhf0LeQ/ixyHkH5plYuS83yop5n7ggVJU+z5v0zecwEnX7fa7HNLBhh2qngJJkxpwEEmYA==} + /@vue/reactivity-transform@3.3.4: + resolution: {integrity: sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==} dependencies: - '@babel/parser': 7.22.4 - '@vue/compiler-core': 3.2.47 - '@vue/shared': 3.2.47 + '@babel/parser': 7.22.7 + '@vue/compiler-core': 3.3.4 + '@vue/shared': 3.3.4 estree-walker: 2.0.2 - magic-string: 0.25.9 + magic-string: 0.30.1 /@vue/reactivity@3.2.47: resolution: {integrity: sha512-7khqQ/75oyyg+N/e+iwV6lpy1f5wq759NdlS1fpAhFXa8VeAIKGgk2E/C4VF59lx5b+Ezs5fpp/5WsRYXQiKxQ==} dependencies: '@vue/shared': 3.2.47 + dev: true - /@vue/runtime-core@3.2.47: - resolution: {integrity: sha512-RZxbLQIRB/K0ev0K9FXhNbBzT32H9iRtYbaXb0ZIz2usLms/D55dJR2t6cIEUn6vyhS3ALNvNthI+Q95C+NOpA==} + /@vue/reactivity@3.3.4: + resolution: {integrity: sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ==} dependencies: - '@vue/reactivity': 3.2.47 - '@vue/shared': 3.2.47 + '@vue/shared': 3.3.4 - /@vue/runtime-dom@3.2.47: - resolution: {integrity: sha512-ArXrFTjS6TsDei4qwNvgrdmHtD930KgSKGhS5M+j8QxXrDJYLqYw4RRcDy1bz1m1wMmb6j+zGLifdVHtkXA7gA==} + /@vue/runtime-core@3.3.4: + resolution: {integrity: sha512-R+bqxMN6pWO7zGI4OMlmvePOdP2c93GsHFM/siJI7O2nxFRzj55pLwkpCedEY+bTMgp5miZ8CxfIZo3S+gFqvA==} dependencies: - '@vue/runtime-core': 3.2.47 - '@vue/shared': 3.2.47 - csstype: 2.6.21 + '@vue/reactivity': 3.3.4 + '@vue/shared': 3.3.4 + + /@vue/runtime-dom@3.3.4: + resolution: {integrity: sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ==} + dependencies: + '@vue/runtime-core': 3.3.4 + '@vue/shared': 3.3.4 + csstype: 3.1.2 - /@vue/server-renderer@3.2.47(vue@3.2.47): - resolution: {integrity: sha512-dN9gc1i8EvmP9RCzvneONXsKfBRgqFeFZLurmHOveL7oH6HiFXJw5OGu294n1nHc/HMgTy6LulU/tv5/A7f/LA==} + /@vue/server-renderer@3.3.4(vue@3.3.4): + resolution: {integrity: sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ==} peerDependencies: - vue: 3.2.47 + vue: 3.3.4 dependencies: - '@vue/compiler-ssr': 3.2.47 - '@vue/shared': 3.2.47 - vue: 3.2.47 + '@vue/compiler-ssr': 3.3.4 + '@vue/shared': 3.3.4 + vue: 3.3.4 /@vue/shared@3.2.47: resolution: {integrity: sha512-BHGyyGN3Q97EZx0taMQ+OLNuZcW3d37ZEVmEAyeoA9ERdGvm9Irc/0Fua8SNyOtV1w6BS4q25wbMzJujO9HIfQ==} + dev: true + + /@vue/shared@3.3.4: + resolution: {integrity: sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==} - /@vueuse/core@9.13.0(vue@3.2.47): + /@vueuse/core@9.13.0(vue@3.3.4): resolution: {integrity: sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==} dependencies: '@types/web-bluetooth': 0.0.16 '@vueuse/metadata': 9.13.0 - '@vueuse/shared': 9.13.0(vue@3.2.47) - vue-demi: 0.14.0(vue@3.2.47) + '@vueuse/shared': 9.13.0(vue@3.3.4) + vue-demi: 0.14.0(vue@3.3.4) transitivePeerDependencies: - '@vue/composition-api' - vue @@ -2511,17 +2956,17 @@ packages: resolution: {integrity: sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==} dev: true - /@vueuse/nuxt@9.13.0(nuxt@3.4.1)(rollup@3.20.7)(vue@3.2.47): + /@vueuse/nuxt@9.13.0(nuxt@3.4.1)(rollup@3.26.2)(vue@3.3.4): resolution: {integrity: sha512-JunH/w6nFIwCyaZ0s+pfrYFMfBzGfhkwmFPz7ogHFmb71Ty/5HINrYOAOZCXpN44X6QH6FiJq/wuLLdvYzqFUw==} peerDependencies: nuxt: ^3.0.0 dependencies: - '@nuxt/kit': 3.5.2(rollup@3.20.7) - '@vueuse/core': 9.13.0(vue@3.2.47) + '@nuxt/kit': 3.6.2(rollup@3.26.2) + '@vueuse/core': 9.13.0(vue@3.3.4) '@vueuse/metadata': 9.13.0 local-pkg: 0.4.3 - nuxt: 3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3) - vue-demi: 0.14.0(vue@3.2.47) + nuxt: 3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6) + vue-demi: 0.14.0(vue@3.3.4) transitivePeerDependencies: - '@vue/composition-api' - rollup @@ -2529,10 +2974,10 @@ packages: - vue dev: true - /@vueuse/shared@9.13.0(vue@3.2.47): + /@vueuse/shared@9.13.0(vue@3.3.4): resolution: {integrity: sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==} dependencies: - vue-demi: 0.14.0(vue@3.2.47) + vue-demi: 0.14.0(vue@3.3.4) transitivePeerDependencies: - '@vue/composition-api' - vue @@ -2549,7 +2994,7 @@ packages: /acorn-globals@7.0.1: resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} dependencies: - acorn: 8.8.2 + acorn: 8.9.0 acorn-walk: 8.2.0 dev: true @@ -2561,12 +3006,12 @@ packages: acorn: 7.4.1 dev: false - /acorn-jsx@5.3.2(acorn@8.8.2): + /acorn-jsx@5.3.2(acorn@8.9.0): resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - acorn: 8.8.2 + acorn: 8.9.0 dev: true /acorn-walk@8.2.0: @@ -2585,6 +3030,11 @@ packages: engines: {node: '>=0.4.0'} hasBin: true + /acorn@8.9.0: + resolution: {integrity: sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==} + engines: {node: '>=0.4.0'} + hasBin: true + /agent-base@6.0.2: resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} engines: {node: '>= 6.0.0'} @@ -2786,8 +3236,8 @@ packages: peerDependencies: postcss: ^8.1.0 dependencies: - browserslist: 4.21.5 - caniuse-lite: 1.0.30001481 + browserslist: 4.21.9 + caniuse-lite: 1.0.30001512 fraction.js: 4.2.0 normalize-range: 0.1.2 picocolors: 1.0.0 @@ -2827,8 +3277,8 @@ packages: file-uri-to-path: 1.0.0 dev: true - /birpc@0.2.11: - resolution: {integrity: sha512-OcUm84SBHRsmvSQhOLZRt5Awmw8WVknVcMDMaPE8GPwYxzc4mGE0EIytkWXayPjheGvm7s/Ci1wQZGwk7YPU6A==} + /birpc@0.2.12: + resolution: {integrity: sha512-6Wz9FXuJ/FE4gDH+IGQhrYdalAvAQU1Yrtcu1UlMk3+9mMXxIRXiL+MxUcGokso42s+Fy+YoUXGLOdOs0siV3A==} dev: true /bl@4.1.0: @@ -2847,10 +3297,6 @@ packages: readable-stream: 3.6.2 dev: true - /blueimp-md5@2.19.0: - resolution: {integrity: sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==} - dev: true - /boolbase@1.0.0: resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} dev: true @@ -2881,15 +3327,15 @@ packages: dependencies: fill-range: 7.0.1 - /browserslist@4.21.5: - resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==} + /browserslist@4.21.9: + resolution: {integrity: sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001481 - electron-to-chromium: 1.4.369 - node-releases: 2.0.10 - update-browserslist-db: 1.0.11(browserslist@4.21.5) + caniuse-lite: 1.0.30001512 + electron-to-chromium: 1.4.450 + node-releases: 2.0.12 + update-browserslist-db: 1.0.11(browserslist@4.21.9) /buffer-crc32@0.2.13: resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} @@ -2921,11 +3367,11 @@ packages: /builtins@5.0.1: resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==} dependencies: - semver: 7.5.1 + semver: 7.5.3 dev: true - /bumpp@9.1.0: - resolution: {integrity: sha512-m3+YD8uoa0VttG+RV4oKr3lK60gkUn1yPDaBTFwT7xrdJUsy7Jm0VYgx457HI3VPAOX8szLmy1x2y1QcvB+M8Q==} + /bumpp@9.1.1: + resolution: {integrity: sha512-T7/2QmRNhHRkH2+HgDs/xk4keom3nlCjwQn6kHdz0I0dQMVrs+YMOH5HyuhV0R3tha/tTYP030RG9uQKpQ9CRg==} engines: {node: '>=10'} hasBin: true dependencies: @@ -2934,7 +3380,7 @@ packages: cac: 6.7.14 fast-glob: 3.2.12 prompts: 2.4.2 - semver: 7.5.0 + semver: 7.5.3 transitivePeerDependencies: - supports-color dev: true @@ -2957,9 +3403,9 @@ packages: resolution: {integrity: sha512-wJL0/knDbqM/3moLb+8Xd+w3JdkggkIIhiNBkxZ1mWlskKC/vajb85wM3UPg/D9nK6RbI1NgaVTg6AeXBVbknA==} dependencies: defu: 6.1.2 - dotenv: 16.0.3 + dotenv: 16.3.1 gittar: 0.1.1 - jiti: 1.18.2 + jiti: 1.19.1 mlly: 0.5.17 pathe: 0.3.9 pkg-types: 0.3.6 @@ -2973,66 +3419,55 @@ packages: defu: 6.1.2 dotenv: 16.0.3 giget: 1.1.2 - jiti: 1.18.2 - mlly: 1.3.0 + jiti: 1.19.1 + mlly: 1.4.0 ohash: 1.1.2 - pathe: 1.1.0 + pathe: 1.1.1 perfect-debounce: 0.1.3 pkg-types: 1.0.3 - rc9: 2.1.0 + rc9: 2.1.1 + transitivePeerDependencies: + - supports-color + + /c12@1.4.2: + resolution: {integrity: sha512-3IP/MuamSVRVw8W8+CHWAz9gKN4gd+voF2zm/Ln6D25C2RhytEZ1ABbC8MjKr4BR9rhoV1JQ7jJA158LDiTkLg==} + dependencies: + chokidar: 3.5.3 + defu: 6.1.2 + dotenv: 16.3.1 + giget: 1.1.2 + jiti: 1.19.1 + mlly: 1.4.0 + ohash: 1.1.2 + pathe: 1.1.1 + perfect-debounce: 1.0.0 + pkg-types: 1.0.3 + rc9: 2.1.1 transitivePeerDependencies: - supports-color + dev: true /cac@6.7.14: resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} engines: {node: '>=8'} dev: true - /cacache@16.1.3: - resolution: {integrity: sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - dependencies: - '@npmcli/fs': 2.1.2 - '@npmcli/move-file': 2.0.1 - chownr: 2.0.0 - fs-minipass: 2.1.0 - glob: 8.1.0 - infer-owner: 1.0.4 - lru-cache: 7.18.3 - minipass: 3.3.6 - minipass-collect: 1.0.2 - minipass-flush: 1.0.5 - minipass-pipeline: 1.2.4 - mkdirp: 1.0.4 - p-map: 4.0.0 - promise-inflight: 1.0.1 - rimraf: 3.0.2 - ssri: 9.0.1 - tar: 6.1.13 - unique-filename: 2.0.1 - transitivePeerDependencies: - - bluebird - dev: true - - /cacache@17.0.5: - resolution: {integrity: sha512-Y/PRQevNSsjAPWykl9aeGz8Pr+OI6BYM9fYDNMvOkuUiG9IhG4LEmaYrZZZvioMUEQ+cBCxT0v8wrnCURccyKA==} + /cacache@17.1.3: + resolution: {integrity: sha512-jAdjGxmPxZh0IipMdR7fK/4sDSrHMLUV0+GvVUsjwyGNKHsh79kW/otg+GkbXwl6Uzvy9wsvHOX4nUoWldeZMg==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: '@npmcli/fs': 3.1.0 - fs-minipass: 3.0.1 - glob: 9.3.5 + fs-minipass: 3.0.2 + glob: 10.3.1 lru-cache: 7.18.3 - minipass: 4.2.8 + minipass: 5.0.0 minipass-collect: 1.0.2 minipass-flush: 1.0.5 minipass-pipeline: 1.2.4 p-map: 4.0.0 - promise-inflight: 1.0.1 - ssri: 10.0.3 - tar: 6.1.13 + ssri: 10.0.4 + tar: 6.1.15 unique-filename: 3.0.0 - transitivePeerDependencies: - - bluebird dev: true /call-bind@1.0.2: @@ -3066,14 +3501,14 @@ packages: /caniuse-api@3.0.0: resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} dependencies: - browserslist: 4.21.5 - caniuse-lite: 1.0.30001481 + browserslist: 4.21.9 + caniuse-lite: 1.0.30001512 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 dev: true - /caniuse-lite@1.0.30001481: - resolution: {integrity: sha512-KCqHwRnaa1InZBtqXzP98LPg0ajCVujMKjqKDhZEthIpAsJl/YEIa3YvXjGXPVqzZVguccuu7ga9KOE1J9rKPQ==} + /caniuse-lite@1.0.30001512: + resolution: {integrity: sha512-2S9nK0G/mE+jasCUsMPlARhRCts1ebcp2Ji8Y8PWi4NDE1iRdLCnEPHkEfeBrGC45L4isBx5ur3IQ6yTE2mRZw==} /capital-case@1.0.4: resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} @@ -3121,6 +3556,11 @@ packages: engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} dev: true + /chalk@5.3.0: + resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + dev: true + /change-case@4.1.2: resolution: {integrity: sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==} dependencies: @@ -3143,27 +3583,27 @@ packages: hasBin: true dependencies: c12: 0.2.13 - consola: 3.1.0 + consola: 3.2.3 convert-gitmoji: 0.1.3 execa: 6.1.0 mri: 1.2.0 node-fetch-native: 0.1.8 pkg-types: 0.3.6 scule: 0.3.2 - semver: 7.5.1 + semver: 7.5.3 dev: true - /changelogithub@0.12.7: - resolution: {integrity: sha512-wrpZDZV52lv4VH2bdGjLzXqyS2cH/u1Pmrb9/hrYPLFJPu9ZrpxqoLy6jd0f/YSVLVD9oCu5SPr6raN3bqFmAQ==} + /changelogithub@0.12.12: + resolution: {integrity: sha512-SVfanrfyzFb77/qN6f/4b68iQ19ITVCPu5oaeppnRqh+1EiDIkp87oGWZyopqx3DrCyuTeB4RrWfr8xarlFA6Q==} engines: {node: '>=12.0.0'} hasBin: true dependencies: - '@antfu/utils': 0.7.2 + '@antfu/utils': 0.7.5 c12: 1.4.1 cac: 6.7.14 changelogen: 0.4.0 convert-gitmoji: 0.1.3 - execa: 6.1.0 + execa: 7.1.1 kolorist: 1.8.0 ohmyfetch: 0.4.21 transitivePeerDependencies: @@ -3383,23 +3823,14 @@ packages: resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} dev: true - /concordance@5.0.4: - resolution: {integrity: sha512-OAcsnTEYu1ARJqWVGwf4zh4JDfHZEaSNlNccFmt8YjB2l/n19/PF2viLINHc57vO4FKIAFl2FWASIGZZWZ2Kxw==} - engines: {node: '>=10.18.0 <11 || >=12.14.0 <13 || >=14'} - dependencies: - date-time: 3.1.0 - esutils: 2.0.3 - fast-diff: 1.2.0 - js-string-escape: 1.0.1 - lodash: 4.17.21 - md5-hex: 3.0.1 - semver: 7.5.1 - well-known-symbols: 2.0.0 - dev: true - /consola@3.1.0: resolution: {integrity: sha512-rrrJE6rP0qzl/Srg+C9x/AE5Kxfux7reVm1Wh0wCjuXvih6DqZgqDZe8auTD28fzJ9TF0mHlSDrPpWlujQRo1Q==} + /consola@3.2.3: + resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==} + engines: {node: ^14.18.0 || >=16.10.0} + dev: true + /console-control-strings@1.1.0: resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} dev: true @@ -3590,12 +4021,8 @@ packages: rrweb-cssom: 0.6.0 dev: true - /csstype@2.6.21: - resolution: {integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==} - /csstype@3.1.2: resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==} - dev: true /cuint@0.2.2: resolution: {integrity: sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==} @@ -3615,13 +4042,6 @@ packages: whatwg-url: 12.0.1 dev: true - /date-time@3.1.0: - resolution: {integrity: sha512-uqCUKXE5q1PNBXjPqvwhwJf9SwMoAHBgWJ6DcrnS5o+W2JOiIILl0JEdVD8SGujrNS02GGxgwAg2PN2zONgtjg==} - engines: {node: '>=6'} - dependencies: - time-zone: 1.0.0 - dev: true - /de-indent@1.0.2: resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==} dev: true @@ -3744,6 +4164,9 @@ packages: /destr@1.2.2: resolution: {integrity: sha512-lrbCJwD9saUQrqUfXvl6qoM+QN3W7tLV5pAOs+OqOmopCCz/JkE05MHedJR1xfk4IAnZuJXPVuN5+7jNA2ZCiA==} + /destr@2.0.0: + resolution: {integrity: sha512-FJ9RDpf3GicEBvzI3jxc2XhHzbqD8p4ANw/1kPsFBfTvP1b7Gn/Lg1vO7R9J4IVgoMbyUmFrFGZafJ1hPZpvlg==} + /destroy@1.2.0: resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} @@ -3762,6 +4185,11 @@ packages: resolution: {integrity: sha512-n94yQo4LI3w7erwf84mhRUkUJfhLoCZiLyoOZ/QFsDbcWNZePrLwbQpvZBUG2TNxwV3VjCKPxkiiQA6pe3TrTA==} dev: true + /diff-sequences@29.4.3: + resolution: {integrity: sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dev: true + /diff@5.1.0: resolution: {integrity: sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==} engines: {node: '>=0.3.1'} @@ -3832,6 +4260,11 @@ packages: resolution: {integrity: sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==} engines: {node: '>=12'} + /dotenv@16.3.1: + resolution: {integrity: sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==} + engines: {node: '>=12'} + dev: true + /duplexer@0.1.2: resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} dev: true @@ -3844,8 +4277,8 @@ packages: resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} dev: true - /electron-to-chromium@1.4.369: - resolution: {integrity: sha512-LfxbHXdA/S+qyoTEA4EbhxGjrxx7WK2h6yb5K2v0UCOufUKX+VZaHbl3svlzZfv9sGseym/g3Ne4DpsgRULmqg==} + /electron-to-chromium@1.4.450: + resolution: {integrity: sha512-BLG5HxSELlrMx7dJ2s+8SFlsCtJp37Zpk2VAxyC6CZtbc+9AJeZHfYHbrlSgdXp6saQ8StMqOTEDaBKgA7u1sw==} /emoji-regex@8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} @@ -4031,6 +4464,36 @@ packages: '@esbuild/win32-x64': 0.17.18 dev: true + /esbuild@0.17.19: + resolution: {integrity: sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==} + engines: {node: '>=12'} + hasBin: true + requiresBuild: true + optionalDependencies: + '@esbuild/android-arm': 0.17.19 + '@esbuild/android-arm64': 0.17.19 + '@esbuild/android-x64': 0.17.19 + '@esbuild/darwin-arm64': 0.17.19 + '@esbuild/darwin-x64': 0.17.19 + '@esbuild/freebsd-arm64': 0.17.19 + '@esbuild/freebsd-x64': 0.17.19 + '@esbuild/linux-arm': 0.17.19 + '@esbuild/linux-arm64': 0.17.19 + '@esbuild/linux-ia32': 0.17.19 + '@esbuild/linux-loong64': 0.17.19 + '@esbuild/linux-mips64el': 0.17.19 + '@esbuild/linux-ppc64': 0.17.19 + '@esbuild/linux-riscv64': 0.17.19 + '@esbuild/linux-s390x': 0.17.19 + '@esbuild/linux-x64': 0.17.19 + '@esbuild/netbsd-x64': 0.17.19 + '@esbuild/openbsd-x64': 0.17.19 + '@esbuild/sunos-x64': 0.17.19 + '@esbuild/win32-arm64': 0.17.19 + '@esbuild/win32-ia32': 0.17.19 + '@esbuild/win32-x64': 0.17.19 + dev: true + /escalade@3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} engines: {node: '>=6'} @@ -4064,30 +4527,13 @@ packages: optionalDependencies: source-map: 0.6.1 - /eslint-config-prettier@8.8.0(eslint@8.38.0): + /eslint-config-prettier@8.8.0(eslint@8.44.0): resolution: {integrity: sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==} hasBin: true peerDependencies: eslint: '>=7.0.0' dependencies: - eslint: 8.38.0 - dev: true - - /eslint-plugin-prettier@4.2.1(eslint-config-prettier@8.8.0)(eslint@8.38.0)(prettier@2.8.7): - resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==} - engines: {node: '>=12.0.0'} - peerDependencies: - eslint: '>=7.28.0' - eslint-config-prettier: '*' - prettier: '>=2.0.0' - peerDependenciesMeta: - eslint-config-prettier: - optional: true - dependencies: - eslint: 8.38.0 - eslint-config-prettier: 8.8.0(eslint@8.38.0) - prettier: 2.8.7 - prettier-linter-helpers: 1.0.0 + eslint: 8.44.0 dev: true /eslint-scope@5.1.1: @@ -4118,21 +4564,21 @@ packages: engines: {node: '>=4'} dev: false - /eslint-visitor-keys@3.4.0: - resolution: {integrity: sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==} + /eslint-visitor-keys@3.4.1: + resolution: {integrity: sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /eslint@8.38.0: - resolution: {integrity: sha512-pIdsD2jwlUGf/U38Jv97t8lq6HpaU/G9NKbYmpWpZGw3LdTNhZLbJePqxOXGB5+JEKfOPU/XLxYxFh03nr1KTg==} + /eslint@8.44.0: + resolution: {integrity: sha512-0wpHoUbDUHgNCyvFB5aXLiQVfK9B0at6gUvzy83k4kAsQ/u769TQDX6iKC+aO4upIHO9WSaA3QoXYQDHbNwf1A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.38.0) + '@eslint-community/eslint-utils': 4.4.0(eslint@8.44.0) '@eslint-community/regexpp': 4.5.0 - '@eslint/eslintrc': 2.0.2 - '@eslint/js': 8.38.0 - '@humanwhocodes/config-array': 0.11.8 + '@eslint/eslintrc': 2.1.0 + '@eslint/js': 8.44.0 + '@humanwhocodes/config-array': 0.11.10 '@humanwhocodes/module-importer': 1.0.1 '@nodelib/fs.walk': 1.2.8 ajv: 6.12.6 @@ -4142,8 +4588,8 @@ packages: doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.2.0 - eslint-visitor-keys: 3.4.0 - espree: 9.5.1 + eslint-visitor-keys: 3.4.1 + espree: 9.6.0 esquery: 1.5.0 esutils: 2.0.3 fast-deep-equal: 3.1.3 @@ -4151,20 +4597,19 @@ packages: find-up: 5.0.0 glob-parent: 6.0.2 globals: 13.20.0 - grapheme-splitter: 1.0.4 + graphemer: 1.4.0 ignore: 5.2.4 import-fresh: 3.3.0 imurmurhash: 0.1.4 is-glob: 4.0.3 is-path-inside: 3.0.3 - js-sdsl: 4.4.0 js-yaml: 4.1.0 json-stable-stringify-without-jsonify: 1.0.1 levn: 0.4.1 lodash.merge: 4.6.2 minimatch: 3.1.2 natural-compare: 1.4.0 - optionator: 0.9.1 + optionator: 0.9.3 strip-ansi: 6.0.1 strip-json-comments: 3.1.1 text-table: 0.2.0 @@ -4176,7 +4621,7 @@ packages: resolution: {integrity: sha512-6slSBEV1lMKcX13DBifvnDFpNno5WXhw4j/ff7RI0y51BZiDqEe5dNhhjhIQ3iCOQuzsm2MbVzmwqbN78BBhPg==} hasBin: true dependencies: - tsx: 3.12.6 + tsx: 3.12.7 dev: true /espree@6.2.1: @@ -4188,13 +4633,13 @@ packages: eslint-visitor-keys: 1.3.0 dev: false - /espree@9.5.1: - resolution: {integrity: sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg==} + /espree@9.6.0: + resolution: {integrity: sha512-1FH/IiruXZ84tpUlm0aCUEwMl2Ho5ilqVh0VvQXw+byAz/4SAciyHLlfmL5WYqsvD38oymdUwBss0LtK8m4s/A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - acorn: 8.8.2 - acorn-jsx: 5.3.2(acorn@8.8.2) - eslint-visitor-keys: 3.4.0 + acorn: 8.9.0 + acorn-jsx: 5.3.2(acorn@8.9.0) + eslint-visitor-keys: 3.4.1 dev: true /esprima@4.0.1: @@ -4303,6 +4748,10 @@ packages: strip-final-newline: 3.0.0 dev: true + /exponential-backoff@3.1.1: + resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==} + dev: true + /extend@3.0.2: resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} dev: true @@ -4320,8 +4769,8 @@ packages: resolution: {integrity: sha512-MAU9ci3XdpqOX1aoIoyL2DMzW97P8LYeJxIUkfXhOfsrkH4KLHFaYDwKN0B2l6tqedVJWiTIJtWmxmZfa05vOQ==} dependencies: enhanced-resolve: 5.13.0 - mlly: 1.3.0 - pathe: 1.1.0 + mlly: 1.4.0 + pathe: 1.1.1 ufo: 1.1.2 dev: true @@ -4329,10 +4778,6 @@ packages: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} dev: true - /fast-diff@1.2.0: - resolution: {integrity: sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==} - dev: true - /fast-glob@3.2.12: resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==} engines: {node: '>=8.6.0'} @@ -4343,6 +4788,16 @@ packages: merge2: 1.4.1 micromatch: 4.0.5 + /fast-glob@3.3.0: + resolution: {integrity: sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==} + engines: {node: '>=8.6.0'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.5 + /fast-json-stable-stringify@2.1.0: resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} dev: true @@ -4430,6 +4885,14 @@ packages: is-callable: 1.2.7 dev: true + /foreground-child@3.1.1: + resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} + engines: {node: '>=14'} + dependencies: + cross-spawn: 7.0.3 + signal-exit: 4.0.2 + dev: true + /form-data@4.0.0: resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} engines: {node: '>= 6'} @@ -4489,11 +4952,11 @@ packages: dependencies: minipass: 3.3.6 - /fs-minipass@3.0.1: - resolution: {integrity: sha512-MhaJDcFRTuLidHrIttu0RDGyyXs/IYHVmlcxfLAEFIWjc1vdLAkdwT7Ace2u7DbitWC0toKMl5eJZRYNVreIMw==} + /fs-minipass@3.0.2: + resolution: {integrity: sha512-2GAfyfoaCDRrM6jaOS3UsBts8yJ55VioXdWcOL7dK9zdAuKT71+WBA4ifnNYqVjYv+4SsPxjK0JT4yIIn4cA/g==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - minipass: 4.2.8 + minipass: 5.0.0 dev: true /fs.realpath@1.0.0: @@ -4595,8 +5058,10 @@ packages: get-intrinsic: 1.2.0 dev: true - /get-tsconfig@4.5.0: - resolution: {integrity: sha512-MjhiaIWCJ1sAU4pIQ5i5OfOuHHxVo1oYeNsWTON7jxYkod8pHocXeh+SSbmu5OZZZK73B6cbJ2XADzXehLyovQ==} + /get-tsconfig@4.6.2: + resolution: {integrity: sha512-E5XrT4CbbXcXWy+1jChlZmrmCwd5KGx502kDCXJJ7y898TtWW9FwoG5HfOLVRKmlmDGkWN2HM9Ho+/Y8F0sJDg==} + dependencies: + resolve-pkg-maps: 1.0.0 dev: true /gh-changelogen@0.2.8: @@ -4618,9 +5083,9 @@ packages: defu: 6.1.2 https-proxy-agent: 5.0.1 mri: 1.2.0 - node-fetch-native: 1.1.0 - pathe: 1.1.0 - tar: 6.1.13 + node-fetch-native: 1.2.0 + pathe: 1.1.1 + tar: 6.1.15 transitivePeerDependencies: - supports-color @@ -4667,6 +5132,18 @@ packages: is-glob: 4.0.3 dev: true + /glob@10.3.1: + resolution: {integrity: sha512-9BKYcEeIs7QwlCYs+Y3GBvqAMISufUS0i2ELd11zpZjxI5V9iyRj0HgzB5/cLf2NY4vcYBTYzJ7GIui7j/4DOw==} + engines: {node: '>=16 || 14 >=14.17'} + hasBin: true + dependencies: + foreground-child: 3.1.1 + jackspeak: 2.2.1 + minimatch: 9.0.3 + minipass: 5.0.0 + path-scurry: 1.10.0 + dev: true + /glob@7.2.3: resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} dependencies: @@ -4730,7 +5207,7 @@ packages: dependencies: array-union: 2.1.0 dir-glob: 3.0.1 - fast-glob: 3.2.12 + fast-glob: 3.3.0 ignore: 5.2.4 merge2: 1.4.1 slash: 3.0.0 @@ -4746,6 +5223,28 @@ packages: merge2: 1.4.1 slash: 4.0.0 + /globby@13.2.1: + resolution: {integrity: sha512-DPCBxctI7dN4EeIqjW2KGqgdcUMbrhJ9AzON+PlxCtvppWhubTLD4+a0GFxiym14ZvacUydTPjLPc2DlKz7EIg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + dir-glob: 3.0.1 + fast-glob: 3.3.0 + ignore: 5.2.4 + merge2: 1.4.1 + slash: 4.0.0 + dev: true + + /globby@13.2.2: + resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + dir-glob: 3.0.1 + fast-glob: 3.3.0 + ignore: 5.2.4 + merge2: 1.4.1 + slash: 4.0.0 + dev: true + /gopd@1.0.1: resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} dependencies: @@ -4755,8 +5254,8 @@ packages: /graceful-fs@4.2.11: resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} - /grapheme-splitter@1.0.4: - resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} + /graphemer@1.4.0: + resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} dev: true /gzip-size@7.0.0: @@ -4777,6 +5276,18 @@ packages: ufo: 1.1.2 uncrypto: 0.1.2 + /h3@1.7.1: + resolution: {integrity: sha512-A9V2NEDNHet7v1gCg7CMwerSigLi0SRbhTy7C3lGb0N4YKIpPmLDjedTUopqp4dnn7COHfqUjjaz3zbtz4QduA==} + dependencies: + cookie-es: 1.0.0 + defu: 6.1.2 + destr: 2.0.0 + iron-webcrypto: 0.7.1 + radix3: 1.0.1 + ufo: 1.1.2 + uncrypto: 0.1.3 + dev: true + /has-bigints@1.0.2: resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} dev: true @@ -5035,11 +5546,11 @@ packages: resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} dev: true - /ignore-walk@6.0.2: - resolution: {integrity: sha512-ezmQ1Dg2b3jVZh2Dh+ar6Eu2MqNSTkyb32HU2MAQQQX9tKM3q/UQ/9lf03lQ5hW+fOeoMnwxwkleZ0xcNp0/qg==} + /ignore-walk@6.0.3: + resolution: {integrity: sha512-C7FfFoTA+bI10qfeydT8aZbvr91vAEU+2W5BZUlzPec47oNb07SsOfwYrtxuvOYdUApPP/Qlh4DtAO51Ekk2QA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - minimatch: 7.4.6 + minimatch: 9.0.3 dev: true /ignore@5.2.4: @@ -5069,10 +5580,6 @@ packages: engines: {node: '>=8'} dev: true - /infer-owner@1.0.4: - resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==} - dev: true - /inflight@1.0.6: resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} dependencies: @@ -5097,7 +5604,7 @@ packages: engines: {node: '>=14.18.0'} dependencies: ansi-escapes: 6.1.0 - chalk: 5.2.0 + chalk: 5.3.0 cli-cursor: 4.0.0 cli-width: 4.0.0 external-editor: 3.1.0 @@ -5149,6 +5656,10 @@ packages: /iron-webcrypto@0.7.0: resolution: {integrity: sha512-WkX32iTcwd79ZsWRPP5wq1Jq6XXfPwO783ZiUBY8uMw4/AByx5WvBmxvYGnpVt6AOVJ0F41Qo420r8lIneT9Wg==} + /iron-webcrypto@0.7.1: + resolution: {integrity: sha512-K/UmlEhPCPXEHV5hAtH5C0tI5JnFuOrv4yO/j7ODPl3HaiiHBLbOLTde+ieUaAyfCATe4LoAnclyF+hmSCOVmQ==} + dev: true + /is-absolute-url@4.0.1: resolution: {integrity: sha512-/51/TKE88Lmm7Gc4/8btclNXWS+g50wXhYJq8HWIBAGUBnoAdRu1aXeh364t/O7wXDAcTJDP8PNuNKWUDWie+A==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} @@ -5229,8 +5740,8 @@ packages: ci-info: 1.6.0 dev: true - /is-core-module@2.12.0: - resolution: {integrity: sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==} + /is-core-module@2.12.1: + resolution: {integrity: sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==} dependencies: has: 1.0.3 dev: true @@ -5456,24 +5967,24 @@ packages: /isexe@2.0.0: resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} - /jiti@1.18.2: - resolution: {integrity: sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==} + /jackspeak@2.2.1: + resolution: {integrity: sha512-MXbxovZ/Pm42f6cDIDkl3xpwv1AGwObKwfmjs2nQePiy85tP3fatofl3FC1aBsOtP/6fq5SbtgHwWcMsLP+bDw==} + engines: {node: '>=14'} + dependencies: + '@isaacs/cliui': 8.0.2 + optionalDependencies: + '@pkgjs/parseargs': 0.11.0 + dev: true + + /jiti@1.19.1: + resolution: {integrity: sha512-oVhqoRDaBXf7sjkll95LHVS6Myyyb1zaunVwk4Z0+WPSW4gjS0pl01zYKHScTuyEhQsFxV5L4DR5r+YqSyqyyg==} hasBin: true - /js-cookie@3.0.1: - resolution: {integrity: sha512-+0rgsUXZu4ncpPxRL+lNEptWMOWl9etvPHc/koSRp6MPwpRYAhmk0dUG00J4bxVV3r9uUzfo24wW0knS07SKSw==} - engines: {node: '>=12'} + /js-cookie@3.0.5: + resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==} + engines: {node: '>=14'} dev: false - /js-sdsl@4.4.0: - resolution: {integrity: sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg==} - dev: true - - /js-string-escape@1.0.1: - resolution: {integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==} - engines: {node: '>= 0.8'} - dev: true - /js-tokens@4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} @@ -5483,8 +5994,8 @@ packages: dependencies: argparse: 2.0.1 - /jsdom@21.1.1: - resolution: {integrity: sha512-Jjgdmw48RKcdAIQyUD1UdBh2ecH7VqwaXPN3ehoZN6MqgVbMn+lRm1aAT1AsdJRAJpwfa4IpwgzySn61h2qu3w==} + /jsdom@21.1.2: + resolution: {integrity: sha512-sCpFmK2jv+1sjff4u7fzft+pUh2KSUbUrEHYHyfSIbGTIcmnjyp83qg6qLwdJ/I3LpTXx33ACxeRL7Lsyc6lGQ==} engines: {node: '>=14'} peerDependencies: canvas: ^2.5.0 @@ -5638,8 +6149,8 @@ packages: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} dev: false - /lint-staged@13.2.1: - resolution: {integrity: sha512-8gfzinVXoPfga5Dz/ZOn8I2GOhf81Wvs+KwbEXQn/oWZAvCVS2PivrXfVbFJc93zD16uC0neS47RXHIjXKYZQw==} + /lint-staged@13.2.3: + resolution: {integrity: sha512-zVVEXLuQIhr1Y7R7YAWx4TZLdvuzk7DnmrsTNL0fax6Z3jrpFcas+vKbzxhhvp6TA55m1SQuWkpzI1qbfDZbAg==} engines: {node: ^14.13.1 || >=16.0.0} hasBin: true dependencies: @@ -5655,7 +6166,7 @@ packages: object-inspect: 1.12.3 pidtree: 0.6.0 string-argv: 0.3.1 - yaml: 2.2.1 + yaml: 2.3.1 transitivePeerDependencies: - enquirer - supports-color @@ -5776,7 +6287,7 @@ packages: resolution: {integrity: sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==} engines: {node: '>=12'} dependencies: - chalk: 5.2.0 + chalk: 5.3.0 is-unicode-supported: 1.3.0 dev: true @@ -5806,6 +6317,11 @@ packages: tslib: 2.5.0 dev: true + /lru-cache@10.0.0: + resolution: {integrity: sha512-svTf/fzsKHffP42sujkO/Rjs37BCIsQVRCeNYIm9WN8rgT7ffoUnRtZCqU+6BqcSBdv8gwJeTz8knJpgACeQMw==} + engines: {node: 14 || >=16.14} + dev: true + /lru-cache@4.1.5: resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} dependencies: @@ -5833,10 +6349,10 @@ packages: resolution: {integrity: sha512-65/Jky17UwSb0BuB9V+MyDpsOtXKmYwzhyl+cOa9XUiI4uV2Ouy/2voFP3+al0BjZbJgMBD8FojMpAf+Z+qn4A==} engines: {node: 14 || >=16.14} - /magic-string@0.25.9: - resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} - dependencies: - sourcemap-codec: 1.4.8 + /lru-cache@9.1.2: + resolution: {integrity: sha512-ERJq3FOzJTxBbFjZ7iDs+NiK4VI9Wz+RdrrAB8dio1oV+YvdPzUEE4QNiT2VD51DkIbCYRUUzCRkssXCHqSnKQ==} + engines: {node: 14 || >=16.14} + dev: true /magic-string@0.27.0: resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==} @@ -5850,6 +6366,12 @@ packages: dependencies: '@jridgewell/sourcemap-codec': 1.4.15 + /magic-string@0.30.1: + resolution: {integrity: sha512-mbVKXPmS0z0G4XqFDCTllmDQ6coZzn94aMlb0o/A4HEHJCKcanlDZwYJgwnkmgD3jyWhUgj9VsPrfd972yPffA==} + engines: {node: '>=12'} + dependencies: + '@jridgewell/sourcemap-codec': 1.4.15 + /make-dir@3.1.0: resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} engines: {node: '>=8'} @@ -5857,52 +6379,26 @@ packages: semver: 6.3.0 dev: true - /make-fetch-happen@10.2.1: - resolution: {integrity: sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - dependencies: - agentkeepalive: 4.3.0 - cacache: 16.1.3 - http-cache-semantics: 4.1.1 - http-proxy-agent: 5.0.0 - https-proxy-agent: 5.0.1 - is-lambda: 1.0.1 - lru-cache: 7.18.3 - minipass: 3.3.6 - minipass-collect: 1.0.2 - minipass-fetch: 2.1.2 - minipass-flush: 1.0.5 - minipass-pipeline: 1.2.4 - negotiator: 0.6.3 - promise-retry: 2.0.1 - socks-proxy-agent: 7.0.0 - ssri: 9.0.1 - transitivePeerDependencies: - - bluebird - - supports-color - dev: true - - /make-fetch-happen@11.1.0: - resolution: {integrity: sha512-7ChuOzCb1LzdQZrTy0ky6RsCoMYeM+Fh4cY0+4zsJVhNcH5Q3OJojLY1mGkD0xAhWB29lskECVb6ZopofwjldA==} + /make-fetch-happen@11.1.1: + resolution: {integrity: sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: agentkeepalive: 4.3.0 - cacache: 17.0.5 + cacache: 17.1.3 http-cache-semantics: 4.1.1 http-proxy-agent: 5.0.0 https-proxy-agent: 5.0.1 is-lambda: 1.0.1 lru-cache: 7.18.3 - minipass: 4.2.8 - minipass-fetch: 3.0.2 + minipass: 5.0.0 + minipass-fetch: 3.0.3 minipass-flush: 1.0.5 minipass-pipeline: 1.2.4 negotiator: 0.6.3 promise-retry: 2.0.1 socks-proxy-agent: 7.0.0 - ssri: 10.0.3 + ssri: 10.0.4 transitivePeerDependencies: - - bluebird - supports-color dev: true @@ -5910,13 +6406,6 @@ packages: resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==} dev: true - /md5-hex@3.0.1: - resolution: {integrity: sha512-BUiRtTtV39LIJwinWBjqVsU9xhdnz7/i889V859IBFpuqGAj6LuOvHv5XLbgZ2R7ptJoJaEcxkv88/h25T7Ciw==} - engines: {node: '>=8'} - dependencies: - blueimp-md5: 2.19.0 - dev: true - /mdast-squeeze-paragraphs@5.2.1: resolution: {integrity: sha512-npINYQrt0E5AvSvM7ZxIIyrG/7DX+g8jKWcJMudrcjI+b1eNOKbbu+wTo6cKvy5IzH159IPfpWoRVH7kwEmnug==} dependencies: @@ -6314,7 +6803,7 @@ packages: /micromark@3.1.0: resolution: {integrity: sha512-6Mj0yHLdUZjHnOPgr5xfWIMqMWS12zDN6iws9SLuSz76W8jTtAv24MN4/CL7gJrl5vtxGInkkqDv/JIoRsQOvA==} dependencies: - '@types/debug': 4.1.7 + '@types/debug': 4.1.8 debug: 4.3.4 decode-named-character-reference: 1.0.2 micromark-core-commonmark: 1.0.6 @@ -6400,22 +6889,22 @@ packages: brace-expansion: 2.0.1 dev: true - /minimatch@7.4.6: - resolution: {integrity: sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==} - engines: {node: '>=10'} + /minimatch@8.0.4: + resolution: {integrity: sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==} + engines: {node: '>=16 || 14 >=14.17'} dependencies: brace-expansion: 2.0.1 dev: true - /minimatch@8.0.4: - resolution: {integrity: sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==} + /minimatch@9.0.2: + resolution: {integrity: sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==} engines: {node: '>=16 || 14 >=14.17'} dependencies: brace-expansion: 2.0.1 dev: true - /minimatch@9.0.0: - resolution: {integrity: sha512-0jJj8AvgKqWN05mrwuqi8QYKx1WmYSUoKSxu5Qhs9prezTz10sxAHGNZe9J9cqIJzta8DWsleh2KaVaLl6Ru2w==} + /minimatch@9.0.3: + resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} engines: {node: '>=16 || 14 >=14.17'} dependencies: brace-expansion: 2.0.1 @@ -6432,22 +6921,11 @@ packages: minipass: 3.3.6 dev: true - /minipass-fetch@2.1.2: - resolution: {integrity: sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - dependencies: - minipass: 3.3.6 - minipass-sized: 1.0.3 - minizlib: 2.1.2 - optionalDependencies: - encoding: 0.1.13 - dev: true - - /minipass-fetch@3.0.2: - resolution: {integrity: sha512-/ZpF1CQaWYqjbhfFgKNt3azxztEpc/JUPuMkqOgrnMQqcU8CbE409AUdJYTIWryl3PP5CBaTJZT71N49MXP/YA==} + /minipass-fetch@3.0.3: + resolution: {integrity: sha512-n5ITsTkDqYkYJZjcRWzZt9qnZKCT7nKCosJhHoj7S7zD+BP4jVbWs+odsniw5TA3E0sLomhTKOKjF86wf11PuQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - minipass: 4.2.8 + minipass: 5.0.0 minipass-sized: 1.0.3 minizlib: 2.1.2 optionalDependencies: @@ -6498,11 +6976,11 @@ packages: /minipass@4.2.8: resolution: {integrity: sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==} engines: {node: '>=8'} + dev: true /minipass@5.0.0: resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} engines: {node: '>=8'} - dev: true /minizlib@1.3.3: resolution: {integrity: sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==} @@ -6529,7 +7007,7 @@ packages: engines: {node: '>=10'} hasBin: true - /mkdist@1.2.0(typescript@5.1.3): + /mkdist@1.2.0(typescript@5.1.6): resolution: {integrity: sha512-UTqu/bXmIk/+VKNVgufAeMyjUcNy1dn9Bl7wL1zZlCKVrpDgj/VllmZBeh3ZCC/2HWqUrt6frNFTKt9TRZbNvQ==} hasBin: true peerDependencies: @@ -6542,38 +7020,30 @@ packages: optional: true dependencies: defu: 6.1.2 - esbuild: 0.17.18 + esbuild: 0.17.19 fs-extra: 11.1.1 - globby: 13.1.4 - jiti: 1.18.2 - mlly: 1.3.0 + globby: 13.2.2 + jiti: 1.19.1 + mlly: 1.4.0 mri: 1.2.0 - pathe: 1.1.0 - typescript: 5.1.3 + pathe: 1.1.1 + typescript: 5.1.6 dev: true /mlly@0.5.17: resolution: {integrity: sha512-Rn+ai4G+CQXptDFSRNnChEgNr+xAEauYhwRvpPl/UHStTlgkIftplgJRsA2OXPuoUn86K4XAjB26+x5CEvVb6A==} dependencies: - acorn: 8.8.2 - pathe: 1.1.0 + acorn: 8.9.0 + pathe: 1.1.1 pkg-types: 1.0.3 ufo: 1.1.2 dev: true - /mlly@1.2.0: - resolution: {integrity: sha512-+c7A3CV0KGdKcylsI6khWyts/CYrGTrRVo4R/I7u/cUsy0Conxa6LUhiEzVKIw14lc2L5aiO4+SeVe4TeGRKww==} - dependencies: - acorn: 8.8.2 - pathe: 1.1.0 - pkg-types: 1.0.2 - ufo: 1.1.1 - - /mlly@1.3.0: - resolution: {integrity: sha512-HT5mcgIQKkOrZecOjOX3DJorTikWXwsBfpcr/MGBkhfWcjiqvnaL/9ppxvIUXfjT6xt4DVIAsN9fMUz1ev4bIw==} + /mlly@1.4.0: + resolution: {integrity: sha512-ua8PAThnTwpprIaU47EPeZ/bPUVp2QYBbWMphUQpVdBI3Lgqzm5KZQ45Agm3YJedHXaIHl6pBGabaLSUPPSptg==} dependencies: - acorn: 8.8.2 - pathe: 1.1.0 + acorn: 8.9.0 + pathe: 1.1.1 pkg-types: 1.0.3 ufo: 1.1.2 @@ -6670,17 +7140,17 @@ packages: hookable: 5.5.3 http-proxy: 1.18.1(debug@4.3.4) is-primitive: 3.0.1 - jiti: 1.18.2 + jiti: 1.19.1 klona: 2.0.6 knitwork: 1.0.0 listhen: 1.0.4 mime: 3.0.0 - mlly: 1.3.0 + mlly: 1.4.0 mri: 1.2.0 - node-fetch-native: 1.1.0 - ofetch: 1.0.1 + node-fetch-native: 1.2.0 + ofetch: 1.1.1 ohash: 1.1.2 - pathe: 1.1.0 + pathe: 1.1.1 perfect-debounce: 0.1.3 pkg-types: 1.0.3 pretty-bytes: 6.1.0 @@ -6688,7 +7158,7 @@ packages: rollup: 3.20.7 rollup-plugin-visualizer: 5.9.0(rollup@3.20.7) scule: 1.0.0 - semver: 7.5.1 + semver: 7.5.3 serve-placeholder: 2.0.1 serve-static: 1.15.0 source-map-support: 0.5.21 @@ -6735,6 +7205,9 @@ packages: /node-fetch-native@1.1.0: resolution: {integrity: sha512-nl5goFCig93JZ9FIV8GHT9xpNqXbxQUzkOmKIMKmncsBH9jhg7qKex8hirpymkBFmNQ114chEEG5lS4wgK2I+Q==} + /node-fetch-native@1.2.0: + resolution: {integrity: sha512-5IAMBTl9p6PaAjYCnMv5FmqIF6GcZnawAVnzaCG0rX2aYZJ4CxEkZNtVPuTRug7fL7wyM5BQYTlAzcyMPi6oTQ==} + /node-fetch@2.6.9: resolution: {integrity: sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==} engines: {node: 4.x || >=6.0.0} @@ -6765,28 +7238,28 @@ packages: hasBin: true dev: true - /node-gyp@9.3.1: - resolution: {integrity: sha512-4Q16ZCqq3g8awk6UplT7AuxQ35XN4R/yf/+wSAwcBUAjg7l58RTactWaP8fIDTi0FzI7YcVLujwExakZlfWkXg==} + /node-gyp@9.4.0: + resolution: {integrity: sha512-dMXsYP6gc9rRbejLXmTbVRYjAHw7ppswsKyMxuxJxxOHzluIO1rGp9TOQgjFJ+2MCqcOcQTOPB/8Xwhr+7s4Eg==} engines: {node: ^12.13 || ^14.13 || >=16} hasBin: true dependencies: env-paths: 2.2.1 + exponential-backoff: 3.1.1 glob: 7.2.3 graceful-fs: 4.2.11 - make-fetch-happen: 10.2.1 + make-fetch-happen: 11.1.1 nopt: 6.0.0 npmlog: 6.0.2 rimraf: 3.0.2 - semver: 7.5.1 - tar: 6.1.13 + semver: 7.5.3 + tar: 6.1.15 which: 2.0.2 transitivePeerDependencies: - - bluebird - supports-color dev: true - /node-releases@2.0.10: - resolution: {integrity: sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==} + /node-releases@2.0.12: + resolution: {integrity: sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==} /nopt@5.0.0: resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==} @@ -6818,8 +7291,8 @@ packages: engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: hosted-git-info: 6.1.1 - is-core-module: 2.12.0 - semver: 7.5.1 + is-core-module: 2.12.1 + semver: 7.5.3 validate-npm-package-license: 3.0.4 dev: true @@ -6841,18 +7314,18 @@ packages: resolution: {integrity: sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - npm-normalize-package-bin: 3.0.0 + npm-normalize-package-bin: 3.0.1 dev: true /npm-install-checks@6.1.1: resolution: {integrity: sha512-dH3GmQL4vsPtld59cOn8uY0iOqRmqKvV+DLGwNXV/Q7MDgD2QfOADWd/mFXcIE5LVhYYGjA3baz6W9JneqnuCw==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - semver: 7.5.1 + semver: 7.5.3 dev: true - /npm-normalize-package-bin@3.0.0: - resolution: {integrity: sha512-g+DPQSkusnk7HYXr75NtzkIP4+N81i3RPsGFidF3DzHd9MT9wWngmqoeg/fnHFz5MNdtG4w03s+QnhewSLTT2Q==} + /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 @@ -6862,7 +7335,7 @@ packages: dependencies: hosted-git-info: 6.1.1 proc-log: 3.0.0 - semver: 7.5.1 + semver: 7.5.3 validate-npm-package-name: 5.0.0 dev: true @@ -6870,7 +7343,7 @@ packages: resolution: {integrity: sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - ignore-walk: 6.0.2 + ignore-walk: 6.0.3 dev: true /npm-pick-manifest@8.0.1: @@ -6878,24 +7351,23 @@ packages: engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: npm-install-checks: 6.1.1 - npm-normalize-package-bin: 3.0.0 + npm-normalize-package-bin: 3.0.1 npm-package-arg: 10.1.0 - semver: 7.5.1 + semver: 7.5.3 dev: true - /npm-registry-fetch@14.0.4: - resolution: {integrity: sha512-pMS2DRkwg+M44ct65zrN/Cr9IHK1+n6weuefAo6Er4lc+/8YBCU0Czq04H3ZiSigluh7pb2rMM5JpgcytctB+Q==} + /npm-registry-fetch@14.0.5: + resolution: {integrity: sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - make-fetch-happen: 11.1.0 - minipass: 4.2.8 - minipass-fetch: 3.0.2 + make-fetch-happen: 11.1.1 + minipass: 5.0.0 + minipass-fetch: 3.0.3 minipass-json-stream: 1.0.1 minizlib: 2.1.2 npm-package-arg: 10.1.0 proc-log: 3.0.0 transitivePeerDependencies: - - bluebird - supports-color dev: true @@ -6968,53 +7440,53 @@ packages: fsevents: 2.3.2 dev: true - /nuxi@3.5.2: - resolution: {integrity: sha512-6zkgQpMbv74vITFiu9TGe8UXsBOCxEy3Nw1/wYjRBH0p1gGLl0/rxubAeSpXw3NHQzRHTt75fYgWEGOfzPWOXQ==} + /nuxi@3.6.2: + resolution: {integrity: sha512-1aRoq8QPXP+VIZZy4S/ZpJ0xx9j1DmOM3hWDfX40clAQCY4YX+NNAOKY4WzXFwU4t38xl+9wY5PE124VHWli2w==} engines: {node: ^14.18.0 || >=16.10.0} hasBin: true optionalDependencies: fsevents: 2.3.2 dev: true - /nuxt-component-meta@0.5.1(rollup@3.20.7)(vue-component-type-helpers@1.3.12): + /nuxt-component-meta@0.5.1(rollup@3.26.2)(vue-component-type-helpers@1.3.12): resolution: {integrity: sha512-vwx5wySyVX+QbFrNb3wLYNMPlADho8E66MO45d5i5fTlEkmhopVpQ9YXwlAvM3pLCPjupxG3R3D5rKpLDeitkw==} dependencies: - '@nuxt/kit': 3.5.2(rollup@3.20.7) + '@nuxt/kit': 3.6.2(rollup@3.26.2) scule: 1.0.0 - typescript: 5.1.3 - vue-component-meta: 1.4.4(typescript@5.1.3)(vue-component-type-helpers@1.3.12) + typescript: 5.1.6 + vue-component-meta: 1.4.4(typescript@5.1.6)(vue-component-type-helpers@1.3.12) transitivePeerDependencies: - rollup - supports-color - vue-component-type-helpers dev: true - /nuxt-config-schema@0.4.6(rollup@3.20.7): + /nuxt-config-schema@0.4.6(rollup@3.26.2): resolution: {integrity: sha512-kHLWJFynj5QrxVZ1MjY2xmDaTSN1BCMLGExA+hMMLoCb3wn9TJlDVqnE/nSdUJPMRkNn/NQ5WP9NLA9vlAXRUw==} dependencies: - '@nuxt/kit': 3.5.2(rollup@3.20.7) + '@nuxt/kit': 3.6.2(rollup@3.26.2) defu: 6.1.2 - jiti: 1.18.2 - pathe: 1.1.0 + jiti: 1.19.1 + pathe: 1.1.1 untyped: 1.3.2 transitivePeerDependencies: - rollup - supports-color dev: true - /nuxt-icon@0.3.3(rollup@3.20.7)(vue@3.2.47): + /nuxt-icon@0.3.3(rollup@3.26.2)(vue@3.3.4): resolution: {integrity: sha512-KdhJAigBGTP8/YIFZ3orwetk40AgLq6VQ5HRYuDLmv5hiDptor9Ro+WIdZggHw7nciRxZvDdQkEwi9B5G/jrkQ==} dependencies: - '@iconify/vue': 4.1.1(vue@3.2.47) - '@nuxt/kit': 3.5.2(rollup@3.20.7) - nuxt-config-schema: 0.4.6(rollup@3.20.7) + '@iconify/vue': 4.1.1(vue@3.3.4) + '@nuxt/kit': 3.6.2(rollup@3.26.2) + nuxt-config-schema: 0.4.6(rollup@3.26.2) transitivePeerDependencies: - rollup - supports-color - vue dev: true - /nuxt@3.4.1(@types/node@18.16.0)(debug@4.3.4)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3): + /nuxt@3.4.1(@types/node@18.16.19)(debug@4.3.4)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6): resolution: {integrity: sha512-wKT5iZebO1D7QtAN1fDNNsjaTFbAC5pO4kWzw2qX2OOg2SWP/k42sCfxbcz/JkLL4FJVwpya+9OD9/2MwEdt1g==} engines: {node: ^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0} hasBin: true @@ -7022,14 +7494,14 @@ packages: '@types/node': ^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 dependencies: '@nuxt/devalue': 2.0.0 - '@nuxt/kit': 3.4.1(rollup@3.20.7) - '@nuxt/schema': 3.4.1(rollup@3.20.7) - '@nuxt/telemetry': 2.2.0(rollup@3.20.7) + '@nuxt/kit': 3.4.1(rollup@3.26.2) + '@nuxt/schema': 3.4.1(rollup@3.26.2) + '@nuxt/telemetry': 2.2.0(rollup@3.26.2) '@nuxt/ui-templates': 1.1.1 - '@nuxt/vite-builder': 3.4.1(@types/node@18.16.0)(eslint@8.38.0)(rollup@3.20.7)(typescript@5.1.3)(vue@3.2.47) - '@types/node': 18.16.0 + '@nuxt/vite-builder': 3.4.1(@types/node@18.16.19)(eslint@8.44.0)(rollup@3.26.2)(typescript@5.1.6)(vue@3.3.4) + '@types/node': 18.16.19 '@unhead/ssr': 1.1.26 - '@unhead/vue': 1.1.26(vue@3.2.47) + '@unhead/vue': 1.1.26(vue@3.3.4) '@vue/reactivity': 3.2.47 '@vue/shared': 3.2.47 chokidar: 3.5.3 @@ -7044,17 +7516,17 @@ packages: h3: 1.6.6 hash-sum: 2.0.0 hookable: 5.5.3 - jiti: 1.18.2 + jiti: 1.19.1 knitwork: 1.0.0 local-pkg: 0.4.3 magic-string: 0.30.0 - mlly: 1.3.0 + mlly: 1.4.0 nitropack: 2.3.3(debug@4.3.4) nuxi: 3.4.1 nypm: 0.2.0 - ofetch: 1.0.1 + ofetch: 1.1.1 ohash: 1.1.2 - pathe: 1.1.0 + pathe: 1.1.1 perfect-debounce: 0.1.3 prompts: 2.4.2 scule: 1.0.0 @@ -7062,13 +7534,13 @@ packages: ufo: 1.1.2 unctx: 2.3.1 unenv: 1.4.1 - unimport: 3.0.7(rollup@3.20.7) - unplugin: 1.3.1 + unimport: 3.0.7(rollup@3.26.2) + unplugin: 1.3.2 untyped: 1.3.2 - vue: 3.2.47 + vue: 3.3.4 vue-bundle-renderer: 1.0.3 vue-devtools-stub: 0.1.0 - vue-router: 4.1.6(vue@3.2.47) + vue-router: 4.1.6(vue@3.3.4) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -7139,12 +7611,12 @@ packages: object-keys: 1.1.1 dev: true - /ofetch@1.0.1: - resolution: {integrity: sha512-icBz2JYfEpt+wZz1FRoGcrMigjNKjzvufE26m9+yUiacRQRHwnNlGRPiDnW4op7WX/MR6aniwS8xw8jyVelF2g==} + /ofetch@1.1.1: + resolution: {integrity: sha512-SSMoktrp9SNLi20BWfB/BnnKcL0RDigXThD/mZBeQxkIRv1xrd9183MtLdsqRYLYSqW0eTr5t8w8MqjNhvoOQQ==} dependencies: - destr: 1.2.2 - node-fetch-native: 1.1.0 - ufo: 1.1.1 + destr: 2.0.0 + node-fetch-native: 1.2.0 + ufo: 1.1.2 /ohash@1.1.2: resolution: {integrity: sha512-9CIOSq5945rI045GFtcO3uudyOkYVY1nyfFxVQp+9BRgslr8jPNiSSrsFGg/BNTUFOLqx0P5tng6G32brIPw0w==} @@ -7214,30 +7686,30 @@ packages: type-check: 0.3.2 word-wrap: 1.2.3 - /optionator@0.9.1: - resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} + /optionator@0.9.3: + resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} engines: {node: '>= 0.8.0'} dependencies: + '@aashutoshrathi/word-wrap': 1.2.6 deep-is: 0.1.4 fast-levenshtein: 2.0.6 levn: 0.4.1 prelude-ls: 1.2.1 type-check: 0.4.0 - word-wrap: 1.2.3 dev: true /ora@6.3.0: resolution: {integrity: sha512-1/D8uRFY0ay2kgBpmAwmSA404w4OoPVhHMqRqtjvrcK/dnzcEZxMJ+V4DUbyICu8IIVRclHcOf5wlD1tMY4GUQ==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: - chalk: 5.2.0 + chalk: 5.3.0 cli-cursor: 4.0.0 cli-spinners: 2.8.0 is-interactive: 2.0.0 is-unicode-supported: 1.3.0 log-symbols: 5.1.0 stdin-discarder: 0.1.0 - strip-ansi: 7.0.1 + strip-ansi: 7.1.0 wcwidth: 1.0.1 dev: true @@ -7284,24 +7756,24 @@ packages: engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} hasBin: true dependencies: - '@npmcli/git': 4.0.4 + '@npmcli/git': 4.1.0 '@npmcli/installed-package-contents': 2.0.2 '@npmcli/promise-spawn': 6.0.2 - '@npmcli/run-script': 6.0.0 - cacache: 17.0.5 - fs-minipass: 3.0.1 + '@npmcli/run-script': 6.0.2 + cacache: 17.1.3 + fs-minipass: 3.0.2 minipass: 5.0.0 npm-package-arg: 10.1.0 npm-packlist: 7.0.4 npm-pick-manifest: 8.0.1 - npm-registry-fetch: 14.0.4 + npm-registry-fetch: 14.0.5 proc-log: 3.0.0 promise-retry: 2.0.1 - read-package-json: 6.0.1 + read-package-json: 6.0.4 read-package-json-fast: 3.0.2 - sigstore: 1.3.2 - ssri: 10.0.3 - tar: 6.1.13 + sigstore: 1.7.0 + ssri: 10.0.4 + tar: 6.1.15 transitivePeerDependencies: - bluebird - supports-color @@ -7311,7 +7783,7 @@ packages: resolution: {integrity: sha512-SZfJe/y9fbpeXZU+Kf7cSG2G7rnGP50hUYzCvcWyhp7hYzA3YXGthpkGfv6NSt0oo6QbcRyKwycg/6dpG5p8aw==} deprecated: Please migrate to https://github.com/unjs/magicast dependencies: - '@babel/parser': 7.22.4 + '@babel/parser': 7.22.7 '@types/estree': 1.0.1 recast: 0.22.0 dev: true @@ -7428,11 +7900,19 @@ packages: resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} dev: true + /path-scurry@1.10.0: + resolution: {integrity: sha512-tZFEaRQbMLjwrsmidsGJ6wDMv0iazJWk6SfIKnY4Xru8auXgmJkOBa5DUbYFcFD2Rzk2+KDlIiF0GVXNCbgC7g==} + engines: {node: '>=16 || 14 >=14.17'} + dependencies: + lru-cache: 10.0.0 + minipass: 5.0.0 + dev: true + /path-scurry@1.7.0: resolution: {integrity: sha512-UkZUeDjczjYRE495+9thsgcVgsaCPkaw80slmfVFgllxY+IO8ubTsOpFVjDPROBqJdHfVPUFRHPBV/WciOVfWg==} engines: {node: '>=16 || 14 >=14.17'} dependencies: - lru-cache: 9.1.1 + lru-cache: 9.1.2 minipass: 5.0.0 dev: true @@ -7451,8 +7931,8 @@ packages: resolution: {integrity: sha512-6Y6s0vT112P3jD8dGfuS6r+lpa0qqNrLyHPOwvXMnyNTQaYiwgau2DP3aNDsR13xqtGj7rrPo+jFUATpU6/s+g==} dev: true - /pathe@1.1.0: - resolution: {integrity: sha512-ODbEPR0KKHqECXW1GoxdDb+AZvULmXjVPy4rt+pGo2+TnjJTIPJQSVS6N63n8T2Ip+syHhbn52OewKicV0373w==} + /pathe@1.1.1: + resolution: {integrity: sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==} /pathval@1.1.1: resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} @@ -7461,6 +7941,10 @@ packages: /perfect-debounce@0.1.3: resolution: {integrity: sha512-NOT9AcKiDGpnV/HBhI22Str++XWcErO/bALvHCuhv33owZW/CjH8KAFLZDCmu3727sihe0wTxpDhyGc6M8qacQ==} + /perfect-debounce@1.0.0: + resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==} + dev: true + /picocolors@1.0.0: resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} @@ -7490,29 +7974,29 @@ packages: engines: {node: '>=4'} dev: true - /pinceau@0.18.9(postcss@8.4.23): + /pinceau@0.18.9(postcss@8.4.25): resolution: {integrity: sha512-GJ+l8a5Y+7PP/diwuajJhd2QONTIFkk2YXjrVTh7QKC3sMQEphpLH6ZJfXSeeSonQ0/BnhrrMi9a5e14mmqXug==} dependencies: '@unocss/reset': 0.50.8 '@volar/vue-language-core': 1.4.4 - acorn: 8.8.2 + acorn: 8.9.0 chroma-js: 2.4.2 - consola: 3.1.0 + consola: 3.2.3 csstype: 3.1.2 defu: 6.1.2 - magic-string: 0.30.0 + magic-string: 0.30.1 nanoid: 4.0.2 ohash: 1.1.2 paneer: 0.1.0 - pathe: 1.1.0 - postcss-custom-properties: 13.1.4(postcss@8.4.23) - postcss-dark-theme-class: 0.7.3(postcss@8.4.23) - postcss-nested: 6.0.1(postcss@8.4.23) + pathe: 1.1.1 + postcss-custom-properties: 13.1.4(postcss@8.4.25) + postcss-dark-theme-class: 0.7.3(postcss@8.4.25) + postcss-nested: 6.0.1(postcss@8.4.25) recast: 0.22.0 scule: 1.0.0 style-dictionary-esm: 1.3.7 unbuild: 1.2.1 - unplugin: 1.3.1 + unplugin: 1.3.2 transitivePeerDependencies: - postcss - sass @@ -7527,33 +8011,26 @@ packages: pathe: 0.3.9 dev: true - /pkg-types@1.0.2: - resolution: {integrity: sha512-hM58GKXOcj8WTqUXnsQyJYXdeAPbythQgEF3nTcEo+nkD49chjQ9IKm/QJy9xf6JakXptz86h7ecP2024rrLaQ==} - dependencies: - jsonc-parser: 3.2.0 - mlly: 1.2.0 - pathe: 1.1.0 - /pkg-types@1.0.3: resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==} dependencies: jsonc-parser: 3.2.0 - mlly: 1.3.0 - pathe: 1.1.0 + mlly: 1.4.0 + pathe: 1.1.1 - /playwright-core@1.32.3: - resolution: {integrity: sha512-SB+cdrnu74ZIn5Ogh/8278ngEh9NEEV0vR4sJFmK04h2iZpybfbqBY0bX6+BLYWVdV12JLLI+JEFtSnYgR+mWg==} - engines: {node: '>=14'} + /playwright-core@1.35.1: + resolution: {integrity: sha512-pNXb6CQ7OqmGDRspEjlxE49w+4YtR6a3X6mT1hZXeJHWmsEz7SunmvZeiG/+y1yyMZdHnnn73WKYdtV1er0Xyg==} + engines: {node: '>=16'} hasBin: true dev: true - /playwright@1.32.3: - resolution: {integrity: sha512-h/ylpgoj6l/EjkfUDyx8cdOlfzC96itPpPe8BXacFkqpw/YsuxkpPyVbzEq4jw+bAJh5FLgh31Ljg2cR6HV3uw==} - engines: {node: '>=14'} + /playwright@1.35.1: + resolution: {integrity: sha512-NbwBeGJLu5m7VGM0+xtlmLAH9VUfWwYOhUi/lSEDyGg46r1CA9RWlvoc5yywxR9AzQb0mOCm7bWtOXV7/w43ZA==} + engines: {node: '>=16'} hasBin: true requiresBuild: true dependencies: - playwright-core: 1.32.3 + playwright-core: 1.35.1 dev: true /postcss-calc@8.2.4(postcss@8.4.23): @@ -7572,7 +8049,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.5 + browserslist: 4.21.9 caniuse-api: 3.0.0 colord: 2.9.3 postcss: 8.4.23 @@ -7585,12 +8062,12 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.5 + browserslist: 4.21.9 postcss: 8.4.23 postcss-value-parser: 4.2.0 dev: true - /postcss-custom-properties@13.1.4(postcss@8.4.23): + /postcss-custom-properties@13.1.4(postcss@8.4.25): resolution: {integrity: sha512-iSAdaZrM3KMec8cOSzeTUNXPYDlhqsMJHpt62yrjwG6nAnMtRHPk5JdMzGosBJtqEahDolvD5LNbcq+EZ78o5g==} engines: {node: ^14 || ^16 || >=18} peerDependencies: @@ -7599,17 +8076,17 @@ packages: '@csstools/cascade-layer-name-parser': 1.0.2(@csstools/css-parser-algorithms@2.1.1)(@csstools/css-tokenizer@2.1.1) '@csstools/css-parser-algorithms': 2.1.1(@csstools/css-tokenizer@2.1.1) '@csstools/css-tokenizer': 2.1.1 - postcss: 8.4.23 + postcss: 8.4.25 postcss-value-parser: 4.2.0 dev: true - /postcss-dark-theme-class@0.7.3(postcss@8.4.23): + /postcss-dark-theme-class@0.7.3(postcss@8.4.25): resolution: {integrity: sha512-M9vtfh8ORzQsVdT9BWb+xpEDAzC7nHBn7wVc988/JkEVLPupKcUnV0jw7RZ8sSj0ovpqN1POf6PLdt19JCHfhQ==} engines: {node: '>=12.0'} peerDependencies: postcss: ^8.2.14 dependencies: - postcss: 8.4.23 + postcss: 8.4.25 dev: true /postcss-discard-comments@6.0.0(postcss@8.4.23): @@ -7682,7 +8159,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.5 + browserslist: 4.21.9 caniuse-api: 3.0.0 cssnano-utils: 4.0.0(postcss@8.4.23) postcss: 8.4.23 @@ -7717,7 +8194,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.5 + browserslist: 4.21.9 cssnano-utils: 4.0.0(postcss@8.4.23) postcss: 8.4.23 postcss-value-parser: 4.2.0 @@ -7733,13 +8210,13 @@ packages: postcss-selector-parser: 6.0.11 dev: true - /postcss-nested@6.0.1(postcss@8.4.23): + /postcss-nested@6.0.1(postcss@8.4.25): resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==} engines: {node: '>=12.0'} peerDependencies: postcss: ^8.2.14 dependencies: - postcss: 8.4.23 + postcss: 8.4.25 postcss-selector-parser: 6.0.11 dev: true @@ -7808,7 +8285,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.5 + browserslist: 4.21.9 postcss: 8.4.23 postcss-value-parser: 4.2.0 dev: true @@ -7850,7 +8327,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.5 + browserslist: 4.21.9 caniuse-api: 3.0.0 postcss: 8.4.23 dev: true @@ -7919,6 +8396,24 @@ packages: picocolors: 1.0.0 source-map-js: 1.0.2 + /postcss@8.4.24: + resolution: {integrity: sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==} + engines: {node: ^10 || ^12 || >=14} + dependencies: + nanoid: 3.3.6 + picocolors: 1.0.0 + source-map-js: 1.0.2 + dev: true + + /postcss@8.4.25: + resolution: {integrity: sha512-7taJ/8t2av0Z+sQEvNzCkpDynl0tX3uJMCODi6nT3PfASC7dYCWV9aQ+uiCf+KBD4SEFcu+GvJdGdwzQ6OSjCw==} + engines: {node: ^10 || ^12 || >=14} + dependencies: + nanoid: 3.3.6 + picocolors: 1.0.0 + source-map-js: 1.0.2 + dev: true + /prelude-ls@1.1.2: resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==} engines: {node: '>= 0.8.0'} @@ -7928,16 +8423,9 @@ packages: engines: {node: '>= 0.8.0'} dev: true - /prettier-linter-helpers@1.0.0: - resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} - engines: {node: '>=6.0.0'} - dependencies: - fast-diff: 1.2.0 - dev: true - - /prettier@2.8.7: - resolution: {integrity: sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw==} - engines: {node: '>=10.13.0'} + /prettier@3.0.0: + resolution: {integrity: sha512-zBf5eHpwHOGPC47h0zrPyNn+eAEIdEzfywMoYn2XPi0P44Zp0tSq64rq0xAREh4auw2cJZHo9QUob+NqCQky4g==} + engines: {node: '>=14'} hasBin: true dev: true @@ -7946,13 +8434,13 @@ packages: engines: {node: ^14.13.1 || >=16.0.0} dev: true - /pretty-format@27.5.1: - resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /pretty-format@29.6.0: + resolution: {integrity: sha512-XH+D4n7Ey0iSR6PdAnBs99cWMZdGsdKrR33iUHQNr79w1szKTCIZDVdXuccAsHVwDBp0XeWPfNEoaxP9EZgRmQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - ansi-regex: 5.0.1 + '@jest/schemas': 29.6.0 ansi-styles: 5.2.0 - react-is: 17.0.2 + react-is: 18.2.0 dev: true /proc-log@3.0.0: @@ -8047,9 +8535,17 @@ packages: defu: 6.1.2 destr: 1.2.2 flat: 5.0.2 + dev: true + + /rc9@2.1.1: + resolution: {integrity: sha512-lNeOl38Ws0eNxpO3+wD1I9rkHGQyj1NU1jlzv4go2CtEnEQEUfqnIvZG7W+bC/aXdJ27n5x/yUjb6RoT9tko+Q==} + dependencies: + defu: 6.1.2 + destr: 2.0.0 + flat: 5.0.2 - /react-is@17.0.2: - resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} + /react-is@18.2.0: + resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} dev: true /read-cache@1.0.0: @@ -8063,17 +8559,17 @@ packages: engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: json-parse-even-better-errors: 3.0.0 - npm-normalize-package-bin: 3.0.0 + npm-normalize-package-bin: 3.0.1 dev: true - /read-package-json@6.0.1: - resolution: {integrity: sha512-AaHqXxfAVa+fNL07x8iAghfKOds/XXsu7zoouIVsbm7PEbQ3nMWXlvjcbrNLjElnUHWQtAo4QEa0RXuvD4XlpA==} + /read-package-json@6.0.4: + resolution: {integrity: sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - glob: 9.3.5 + glob: 10.3.1 json-parse-even-better-errors: 3.0.0 normalize-package-data: 5.0.0 - npm-normalize-package-bin: 3.0.0 + npm-normalize-package-bin: 3.0.1 dev: true /read-pkg@3.0.0: @@ -8282,11 +8778,15 @@ packages: engines: {node: '>=8'} dev: true + /resolve-pkg-maps@1.0.0: + resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} + dev: true + /resolve@1.22.2: resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==} hasBin: true dependencies: - is-core-module: 2.12.0 + is-core-module: 2.12.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 dev: true @@ -8335,18 +8835,18 @@ packages: glob: 9.3.5 dev: true - /rollup-plugin-dts@5.3.0(rollup@3.20.7)(typescript@5.1.3): + /rollup-plugin-dts@5.3.0(rollup@3.26.2)(typescript@5.1.6): resolution: {integrity: sha512-8FXp0ZkyZj1iU5klkIJYLjIq/YZSwBoERu33QBDxm/1yw5UU4txrEtcmMkrq+ZiKu3Q4qvPCNqc3ovX6rjqzbQ==} engines: {node: '>=v14'} peerDependencies: rollup: ^3.0.0 typescript: ^4.1 || ^5.0 dependencies: - magic-string: 0.30.0 - rollup: 3.20.7 - typescript: 5.1.3 + magic-string: 0.30.1 + rollup: 3.26.2 + typescript: 5.1.6 optionalDependencies: - '@babel/code-frame': 7.21.4 + '@babel/code-frame': 7.22.5 dev: true /rollup-plugin-visualizer@5.9.0(rollup@3.20.7): @@ -8366,12 +8866,37 @@ packages: yargs: 17.7.1 dev: true + /rollup-plugin-visualizer@5.9.0(rollup@3.26.2): + resolution: {integrity: sha512-bbDOv47+Bw4C/cgs0czZqfm8L82xOZssk4ayZjG40y9zbXclNk7YikrZTDao6p7+HDiGxrN0b65SgZiVm9k1Cg==} + engines: {node: '>=14'} + hasBin: true + peerDependencies: + rollup: 2.x || 3.x + peerDependenciesMeta: + rollup: + optional: true + dependencies: + open: 8.4.2 + picomatch: 2.3.1 + rollup: 3.26.2 + source-map: 0.7.4 + yargs: 17.7.1 + dev: true + /rollup@3.20.7: resolution: {integrity: sha512-P7E2zezKSLhWnTz46XxjSmInrbOCiul1yf+kJccMxT56vxjHwCbDfoLbiqFgu+WQoo9ij2PkraYaBstgB2prBA==} engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true optionalDependencies: fsevents: 2.3.2 + dev: true + + /rollup@3.26.2: + resolution: {integrity: sha512-6umBIGVz93er97pMgQO08LuH3m6PUb3jlDUUGFsNJB6VgTCUaDFpupf5JfU30529m/UKOgmiX+uY6Sx8cOYpLA==} + engines: {node: '>=14.18.0', npm: '>=8.0.0'} + hasBin: true + optionalDependencies: + fsevents: 2.3.2 /rrweb-cssom@0.6.0: resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==} @@ -8457,8 +8982,8 @@ packages: lru-cache: 6.0.0 dev: true - /semver@7.5.1: - resolution: {integrity: sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==} + /semver@7.5.3: + resolution: {integrity: sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==} engines: {node: '>=10'} hasBin: true dependencies: @@ -8570,16 +9095,20 @@ packages: /signal-exit@3.0.7: resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} - /sigstore@1.3.2: - resolution: {integrity: sha512-0KT1DjpVB11FK15ep7BIsZQV6j1jBm4SnXIInbBCRvql6II39IKONOMO+j036sGsArU/+2xqa1NDJwJkic0neA==} + /signal-exit@4.0.2: + resolution: {integrity: sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==} + engines: {node: '>=14'} + dev: true + + /sigstore@1.7.0: + resolution: {integrity: sha512-KP7QULhWdlu3hlp+jw2EvgWKlOGOY9McLj/jrchLjHNlNPK0KWIwF919cbmOp6QiKXLmPijR2qH/5KYWlbtG9Q==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} hasBin: true dependencies: '@sigstore/protobuf-specs': 0.1.0 - make-fetch-happen: 11.1.0 - tuf-js: 1.1.4 + '@sigstore/tuf': 1.0.2 + make-fetch-happen: 11.1.1 transitivePeerDependencies: - - bluebird - supports-color dev: true @@ -8715,10 +9244,6 @@ packages: engines: {node: '>= 8'} dev: true - /sourcemap-codec@1.4.8: - resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} - deprecated: Please use @jridgewell/sourcemap-codec instead - /space-separated-tokens@2.0.2: resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} dev: true @@ -8745,18 +9270,11 @@ packages: resolution: {integrity: sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==} dev: true - /ssri@10.0.3: - resolution: {integrity: sha512-lJtX/BFPI/VEtxZmLfeh7pzisIs6micwZ3eruD3+ds9aPsXKlYpwDS2Q7omD6WC42WO9+bnUSzlMmfv8uK8meg==} + /ssri@10.0.4: + resolution: {integrity: sha512-12+IR2CB2C28MMAw0Ncqwj5QbTcs0nGIhgJzYWzDkb21vWmfNI83KS4f3Ci6GI98WreIfG7o9UXp3C0qbpA8nQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - minipass: 4.2.8 - dev: true - - /ssri@9.0.1: - resolution: {integrity: sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - dependencies: - minipass: 3.3.6 + minipass: 5.0.0 dev: true /stackback@0.0.2: @@ -8879,6 +9397,13 @@ packages: ansi-regex: 6.0.1 dev: true + /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'} @@ -8911,7 +9436,7 @@ packages: /strip-literal@1.0.1: resolution: {integrity: sha512-QZTsipNpa2Ppr6v1AmJHESqJ3Uz247MUS0OjrnnZjFAvEoWqxuyFuXn2xLgMtRnijJShAa1HL0gtJyUs7u7n3Q==} dependencies: - acorn: 8.8.2 + acorn: 8.9.0 /style-dictionary-esm@1.3.7: resolution: {integrity: sha512-xO2o8sKGera0SMLCLtix1dPvgD2ZyX2VohZ09cGRRuXBb8HQObqhgDQw4dLW+qJy4gj7r4Mdhz9J1rS2p50xDw==} @@ -8921,9 +9446,9 @@ packages: chalk: 4.1.2 change-case: 4.1.2 commander: 10.0.1 - consola: 3.1.0 + consola: 3.2.3 glob: 8.1.0 - jiti: 1.18.2 + jiti: 1.19.1 json5: 2.2.3 jsonc-parser: 3.2.0 lodash.template: 4.5.0 @@ -8936,7 +9461,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.5 + browserslist: 4.21.9 postcss: 8.4.23 postcss-selector-parser: 6.0.11 dev: true @@ -9013,13 +9538,13 @@ packages: yallist: 3.1.1 dev: true - /tar@6.1.13: - resolution: {integrity: sha512-jdIBIN6LTIe2jqzay/2vtYLlBHa3JF42ot3h1dW8Q0PaAG4v8rm0cvpVePtau5C6OKXGGcgO9q2AMNSWxiLqKw==} + /tar@6.1.15: + resolution: {integrity: sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A==} engines: {node: '>=10'} dependencies: chownr: 2.0.0 fs-minipass: 2.1.0 - minipass: 4.2.8 + minipass: 5.0.0 minizlib: 2.1.2 mkdirp: 1.0.4 yallist: 4.0.0 @@ -9030,7 +9555,7 @@ packages: hasBin: true dependencies: '@jridgewell/source-map': 0.3.3 - acorn: 8.8.2 + acorn: 8.9.0 commander: 2.20.3 source-map-support: 0.5.21 dev: true @@ -9043,30 +9568,25 @@ packages: resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} dev: true - /time-zone@1.0.0: - resolution: {integrity: sha512-TIsDdtKo6+XrPtiTm1ssmMngN1sAhyKnTO2kunQWqNPWIVvCm15Wmw4SWInwTVgJ5u/Tr04+8Ei9TNcw4x4ONA==} - engines: {node: '>=4'} - dev: true - /tiny-invariant@1.3.1: resolution: {integrity: sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==} dev: true - /tinybench@2.4.0: - resolution: {integrity: sha512-iyziEiyFxX4kyxSp+MtY1oCH/lvjH3PxFN8PGCDeqcZWAJ/i+9y+nL85w99PxVzrIvew/GSkSbDYtiGVa85Afg==} + /tinybench@2.5.0: + resolution: {integrity: sha512-kRwSG8Zx4tjF9ZiyH4bhaebu+EDz1BOx9hOigYHlUW4xxI/wKIUQUqo018UlU4ar6ATPBsaMrdbKZ+tmPdohFA==} dev: true /tinycolor2@1.6.0: resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==} dev: true - /tinypool@0.4.0: - resolution: {integrity: sha512-2ksntHOKf893wSAH4z/+JbPpi92esw8Gn9N2deXX+B0EO92hexAVI9GIZZPx7P5aYo5KULfeOSt3kMOmSOy6uA==} + /tinypool@0.5.0: + resolution: {integrity: sha512-paHQtnrlS1QZYKF/GnLoOM/DN9fqaGOFbCbxzAhwniySnzl9Ebk8w73/dd34DAhe/obUbPAOldTyYXQZxnPBPQ==} engines: {node: '>=14.0.0'} dev: true - /tinyspy@2.1.0: - resolution: {integrity: sha512-7eORpyqImoOvkQJCSkL0d0mB4NHHIFAy4b1u8PHdDa7SjGS2njzl6/lyGoZLm+eyYEtlUmFGE0rFj66SWxZgQQ==} + /tinyspy@2.1.1: + resolution: {integrity: sha512-XPJL2uSzcOyBMky6OFrusqWlzfFrXtE0hPuMgW8A2HmaqrPo4ZQHRN/V0QXN3FSjKxpsbRrFc5LI7KOwBsT1/w==} engines: {node: '>=14.0.0'} dev: true @@ -9131,12 +9651,12 @@ packages: resolution: {integrity: sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==} dev: true - /ts-essentials@9.3.1(typescript@5.1.3): - resolution: {integrity: sha512-9CChSvQMyVRo29Vb1A2jbs+LKo3d/bAf+ndSaX0T8cEiy/HChVaRN/HY5DqUryZ8hZ6uol9bEgCnGmnDbwBR9Q==} + /ts-essentials@9.3.2(typescript@5.1.6): + resolution: {integrity: sha512-JxKJzuWqH1MmH4ZFHtJzGEhkfN3QvVR3C3w+4BIoWeoY68UVVoA2Np/Bca9z0IPSErVCWhv439aT0We4Dks8kQ==} peerDependencies: typescript: '>=4.1.0' dependencies: - typescript: 5.1.3 + typescript: 5.1.6 dev: true /tslib@1.14.1: @@ -9147,18 +9667,18 @@ packages: resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==} dev: true - /tsutils@3.21.0(typescript@5.1.3): + /tsutils@3.21.0(typescript@5.1.6): resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} engines: {node: '>= 6'} peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' dependencies: tslib: 1.14.1 - typescript: 5.1.3 + typescript: 5.1.6 dev: true - /tsx@3.12.6: - resolution: {integrity: sha512-q93WgS3lBdHlPgS0h1i+87Pt6n9K/qULIMNYZo07nSeu2z5QE2CellcAZfofVXBo2tQg9av2ZcRMQ2S2i5oadQ==} + /tsx@3.12.7: + resolution: {integrity: sha512-C2Ip+jPmqKd1GWVQDvz/Eyc6QJbGfE7NrR3fx5BpEHMZsEHoIxHL1j+lKdGobr8ovEyqeNkPLSKp6SCSOt7gmw==} hasBin: true dependencies: '@esbuild-kit/cjs-loader': 2.4.2 @@ -9168,14 +9688,14 @@ packages: fsevents: 2.3.2 dev: true - /tuf-js@1.1.4: - resolution: {integrity: sha512-Lw2JRM3HTYhEtQJM2Th3aNCPbnXirtWMl065BawwmM2pX6XStH/ZO9e8T2hh0zk/HUa+1i6j+Lv6eDitKTau6A==} + /tuf-js@1.1.7: + resolution: {integrity: sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - '@tufjs/models': 1.0.3 - make-fetch-happen: 11.1.0 + '@tufjs/models': 1.0.4 + debug: 4.3.4 + make-fetch-happen: 11.1.1 transitivePeerDependencies: - - bluebird - supports-color dev: true @@ -9229,8 +9749,8 @@ packages: resolution: {integrity: sha512-OJabfkAg1WLZSqJAJ0Z6Sdt3utnbzr/jh+NAHoyWHJe8CMSy79Gm085094M9nvTPy22KzTVn5Zq5mbapCI/hPA==} dev: true - /typescript@5.1.3: - resolution: {integrity: sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==} + /typescript@5.1.6: + resolution: {integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==} engines: {node: '>=14.17'} hasBin: true dev: true @@ -9239,13 +9759,6 @@ packages: resolution: {integrity: sha512-fk6CmUgwKCfX79EzcDQQpSCMxrHstvbLswFChHS0Vump+kFkw7nJBfTZoC1j0bOGoY9I7R3n2DGek5ajbcYnOw==} dev: true - /ufo@1.1.0: - resolution: {integrity: sha512-LQc2s/ZDMaCN3QLpa+uzHUOQ7SdV0qgv3VBXOolQGXTaaZpIur6PwUclF5nN2hNkiTRcUugXd1zFOW3FLJ135Q==} - dev: false - - /ufo@1.1.1: - resolution: {integrity: sha512-MvlCc4GHrmZdAllBc0iUDowff36Q9Ndw/UzqmEKyrfSzokTd9ZCy1i+IIk5hrYKkjoYVQyNbrw7/F8XJ2rEwTg==} - /ufo@1.1.2: resolution: {integrity: sha512-TrY6DsjTQQgyS3E3dBaOXf0TpPD8u9FVrVYmKVegJuFw51n/YB9XPt+U6ydzFG5ZIN7+DIjPbNmXoBj9esYhgQ==} @@ -9262,30 +9775,30 @@ packages: resolution: {integrity: sha512-J4efk69Aye43tWcBPCsLK7TIRppGrEN4pAlDzRKo3HSE6MgTSTBxSEuE3ccx7ixc62JvGQ/CoFXYqqF2AHozow==} hasBin: true dependencies: - '@rollup/plugin-alias': 5.0.0(rollup@3.20.7) - '@rollup/plugin-commonjs': 24.1.0(rollup@3.20.7) - '@rollup/plugin-json': 6.0.0(rollup@3.20.7) - '@rollup/plugin-node-resolve': 15.0.2(rollup@3.20.7) - '@rollup/plugin-replace': 5.0.2(rollup@3.20.7) - '@rollup/pluginutils': 5.0.2(rollup@3.20.7) - chalk: 5.2.0 - consola: 3.1.0 + '@rollup/plugin-alias': 5.0.0(rollup@3.26.2) + '@rollup/plugin-commonjs': 24.1.0(rollup@3.26.2) + '@rollup/plugin-json': 6.0.0(rollup@3.26.2) + '@rollup/plugin-node-resolve': 15.1.0(rollup@3.26.2) + '@rollup/plugin-replace': 5.0.2(rollup@3.26.2) + '@rollup/pluginutils': 5.0.2(rollup@3.26.2) + chalk: 5.3.0 + consola: 3.2.3 defu: 6.1.2 - esbuild: 0.17.18 - globby: 13.1.4 + esbuild: 0.17.19 + globby: 13.2.2 hookable: 5.5.3 - jiti: 1.18.2 - magic-string: 0.30.0 - mkdist: 1.2.0(typescript@5.1.3) - mlly: 1.3.0 + jiti: 1.19.1 + magic-string: 0.30.1 + mkdist: 1.2.0(typescript@5.1.6) + mlly: 1.4.0 mri: 1.2.0 - pathe: 1.1.0 + pathe: 1.1.1 pkg-types: 1.0.3 pretty-bytes: 6.1.0 - rollup: 3.20.7 - rollup-plugin-dts: 5.3.0(rollup@3.20.7)(typescript@5.1.3) + rollup: 3.26.2 + rollup-plugin-dts: 5.3.0(rollup@3.26.2)(typescript@5.1.6) scule: 1.0.0 - typescript: 5.1.3 + typescript: 5.1.6 untyped: 1.3.2 transitivePeerDependencies: - sass @@ -9295,13 +9808,17 @@ packages: /uncrypto@0.1.2: resolution: {integrity: sha512-kuZwRKV615lEw/Xx3Iz56FKk3nOeOVGaVmw0eg+x4Mne28lCotNFbBhDW7dEBCBKyKbRQiCadEZeNAFPVC5cgw==} + /uncrypto@0.1.3: + resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==} + dev: true + /unctx@2.3.1: resolution: {integrity: sha512-PhKke8ZYauiqh3FEMVNm7ljvzQiph0Mt3GBRve03IJm7ukfaON2OBK795tLwhbyfzknuRRkW0+Ze+CQUmzOZ+A==} dependencies: - acorn: 8.8.2 + acorn: 8.9.0 estree-walker: 3.0.3 magic-string: 0.30.0 - unplugin: 1.3.1 + unplugin: 1.3.2 /undici@5.22.0: resolution: {integrity: sha512-fR9RXCc+6Dxav4P9VV/sp5w3eFiSdOjJYsbtWfd4s5L5C4ogyuVpdKIVHeW0vV1MloM65/f7W45nR9ZxwVdyiA==} @@ -9315,8 +9832,8 @@ packages: dependencies: defu: 6.1.2 mime: 3.0.0 - node-fetch-native: 1.1.0 - pathe: 1.1.0 + node-fetch-native: 1.2.0 + pathe: 1.1.1 dev: true /unhead@1.1.26: @@ -9340,20 +9857,38 @@ packages: vfile: 5.3.7 dev: true - /unimport@3.0.6(rollup@3.20.7): + /unimport@3.0.14(rollup@3.26.2): + resolution: {integrity: sha512-67Rh/sGpEuVqdHWkXaZ6NOq+I7sKt86o+DUtKeGB6dh4Hk1A8AQrzyVGg2+LaVEYotStH7HwvV9YSaRjyT7Uqg==} + dependencies: + '@rollup/pluginutils': 5.0.2(rollup@3.26.2) + escape-string-regexp: 5.0.0 + fast-glob: 3.3.0 + local-pkg: 0.4.3 + magic-string: 0.30.1 + mlly: 1.4.0 + pathe: 1.1.1 + pkg-types: 1.0.3 + scule: 1.0.0 + strip-literal: 1.0.1 + unplugin: 1.3.2 + transitivePeerDependencies: + - rollup + dev: true + + /unimport@3.0.6(rollup@3.26.2): resolution: {integrity: sha512-GYxGJ1Bri1oqx8VFDjdgooGzeK7jBk3bvhXmamTIpu3nONOcUMGwZbX7X0L5RA7OWMXpR4vzpSQP7pXUzJg1/Q==} dependencies: - '@rollup/pluginutils': 5.0.2(rollup@3.20.7) + '@rollup/pluginutils': 5.0.2(rollup@3.26.2) escape-string-regexp: 5.0.0 - fast-glob: 3.2.12 + fast-glob: 3.3.0 local-pkg: 0.4.3 magic-string: 0.30.0 - mlly: 1.3.0 - pathe: 1.1.0 + mlly: 1.4.0 + pathe: 1.1.1 pkg-types: 1.0.3 scule: 1.0.0 strip-literal: 1.0.1 - unplugin: 1.3.1 + unplugin: 1.3.2 transitivePeerDependencies: - rollup @@ -9365,21 +9900,32 @@ packages: fast-glob: 3.2.12 local-pkg: 0.4.3 magic-string: 0.30.0 - mlly: 1.3.0 - pathe: 1.1.0 + mlly: 1.4.0 + pathe: 1.1.1 pkg-types: 1.0.3 scule: 1.0.0 strip-literal: 1.0.1 - unplugin: 1.3.1 + unplugin: 1.3.2 transitivePeerDependencies: - rollup + dev: true - /unique-filename@2.0.1: - resolution: {integrity: sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + /unimport@3.0.7(rollup@3.26.2): + resolution: {integrity: sha512-2dVQUxJEGcrSZ0U4qtwJVODrlfyGcwmIOoHVqbAFFUx7kPoEN5JWr1cZFhLwoAwTmZOvqAm3YIkzv1engIQocg==} dependencies: - unique-slug: 3.0.0 - dev: true + '@rollup/pluginutils': 5.0.2(rollup@3.26.2) + escape-string-regexp: 5.0.0 + fast-glob: 3.2.12 + local-pkg: 0.4.3 + magic-string: 0.30.0 + mlly: 1.4.0 + pathe: 1.1.1 + pkg-types: 1.0.3 + scule: 1.0.0 + strip-literal: 1.0.1 + unplugin: 1.3.2 + transitivePeerDependencies: + - rollup /unique-filename@3.0.0: resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==} @@ -9388,13 +9934,6 @@ packages: unique-slug: 4.0.0 dev: true - /unique-slug@3.0.0: - resolution: {integrity: sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - dependencies: - imurmurhash: 0.1.4 - dev: true - /unique-slug@4.0.0: resolution: {integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} @@ -9455,10 +9994,10 @@ packages: engines: {node: '>= 10.0.0'} dev: true - /unplugin@1.3.1: - resolution: {integrity: sha512-h4uUTIvFBQRxUKS2Wjys6ivoeofGhxzTe2sRWlooyjHXVttcVfV/JiavNd3d4+jty0SVV0dxGw9AkY9MwiaCEw==} + /unplugin@1.3.2: + resolution: {integrity: sha512-Lh7/2SryjXe/IyWqx9K7IKwuKhuOFZEhotiBquOODsv2IVyDkI9lv/XhgfjdXf/xdbv32txmnBNnC/JVTDJlsA==} dependencies: - acorn: 8.8.2 + acorn: 8.9.0 chokidar: 3.5.3 webpack-sources: 3.2.3 webpack-virtual-modules: 0.5.0 @@ -9498,7 +10037,7 @@ packages: lru-cache: 9.1.1 mri: 1.2.0 node-fetch-native: 1.1.0 - ofetch: 1.0.1 + ofetch: 1.1.1 ufo: 1.1.2 transitivePeerDependencies: - supports-color @@ -9514,21 +10053,21 @@ packages: dependencies: '@babel/core': 7.21.4 '@babel/standalone': 7.21.4 - '@babel/types': 7.22.4 + '@babel/types': 7.22.5 defu: 6.1.2 - jiti: 1.18.2 + jiti: 1.19.1 mri: 1.2.0 scule: 1.0.0 transitivePeerDependencies: - supports-color - /update-browserslist-db@1.0.11(browserslist@4.21.5): + /update-browserslist-db@1.0.11(browserslist@4.21.9): resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' dependencies: - browserslist: 4.21.5 + browserslist: 4.21.9 escalade: 3.1.1 picocolors: 1.0.0 @@ -9618,17 +10157,38 @@ packages: vfile-message: 3.1.4 dev: true - /vite-node@0.30.1(@types/node@18.16.0): + /vite-node@0.30.1(@types/node@18.16.19): resolution: {integrity: sha512-vTikpU/J7e6LU/8iM3dzBo8ZhEiKZEKRznEMm+mJh95XhWaPrJQraT/QsT2NWmuEf+zgAoMe64PKT7hfZ1Njmg==} engines: {node: '>=v14.18.0'} hasBin: true dependencies: cac: 6.7.14 debug: 4.3.4 - mlly: 1.3.0 - pathe: 1.1.0 + mlly: 1.4.0 + pathe: 1.1.1 + picocolors: 1.0.0 + vite: 4.3.1(@types/node@18.16.19) + transitivePeerDependencies: + - '@types/node' + - less + - sass + - stylus + - sugarss + - supports-color + - terser + dev: true + + /vite-node@0.32.4(@types/node@18.16.19): + resolution: {integrity: sha512-L2gIw+dCxO0LK14QnUMoqSYpa9XRGnTTTDjW2h19Mr+GR0EFj4vx52W41gFXfMLqpA00eK4ZjOVYo1Xk//LFEw==} + engines: {node: '>=v14.18.0'} + hasBin: true + dependencies: + cac: 6.7.14 + debug: 4.3.4 + mlly: 1.4.0 + pathe: 1.1.1 picocolors: 1.0.0 - vite: 4.3.1(@types/node@18.16.0) + vite: 4.3.1(@types/node@18.16.19) transitivePeerDependencies: - '@types/node' - less @@ -9639,7 +10199,7 @@ packages: - terser dev: true - /vite-plugin-checker@0.5.6(eslint@8.38.0)(typescript@5.1.3)(vite@4.2.2): + /vite-plugin-checker@0.5.6(eslint@8.44.0)(typescript@5.1.6)(vite@4.2.2): resolution: {integrity: sha512-ftRyON0gORUHDxcDt2BErmsikKSkfvl1i2DoP6Jt2zDO9InfvM6tqO1RkXhSjkaXEhKPea6YOnhFaZxW3BzudQ==} engines: {node: '>=14.16'} peerDependencies: @@ -9670,41 +10230,41 @@ packages: vue-tsc: optional: true dependencies: - '@babel/code-frame': 7.21.4 + '@babel/code-frame': 7.22.5 ansi-escapes: 4.3.2 chalk: 4.1.2 chokidar: 3.5.3 commander: 8.3.0 - eslint: 8.38.0 - fast-glob: 3.2.12 + eslint: 8.44.0 + fast-glob: 3.3.0 fs-extra: 11.1.1 lodash.debounce: 4.0.8 lodash.pick: 4.4.0 npm-run-path: 4.0.1 strip-ansi: 6.0.1 tiny-invariant: 1.3.1 - typescript: 5.1.3 - vite: 4.2.2(@types/node@18.16.0) + typescript: 5.1.6 + vite: 4.2.2(@types/node@18.16.19) vscode-languageclient: 7.0.0 vscode-languageserver: 7.0.0 vscode-languageserver-textdocument: 1.0.8 vscode-uri: 3.0.7 dev: true - /vite-plugin-inspect@0.7.28(rollup@3.20.7)(vite@4.2.2): - resolution: {integrity: sha512-XRdQGdf+PU6eT0EoL8beUyFQfcCrHr06OyRM71IT8t7rEC9JywdsscehGHEAyFZryfaVBWAI280N63BI2N+1BA==} + /vite-plugin-inspect@0.7.32(rollup@3.26.2)(vite@4.2.2): + resolution: {integrity: sha512-TqRLHwOM3FTJPOGCCHJmub4SVVogSjZ9LSDo1Q6WeN2Zvc7HB7tr7cqYlAyStXCI90KvVnb1BRwI22+HXlghXQ==} engines: {node: '>=14'} peerDependencies: vite: ^3.1.0 || ^4.0.0 dependencies: - '@antfu/utils': 0.7.2 - '@rollup/pluginutils': 5.0.2(rollup@3.20.7) + '@antfu/utils': 0.7.5 + '@rollup/pluginutils': 5.0.2(rollup@3.26.2) debug: 4.3.4 fs-extra: 11.1.1 open: 9.1.0 picocolors: 1.0.0 sirv: 2.0.3 - vite: 4.2.2(@types/node@18.16.0) + vite: 4.2.2(@types/node@18.16.19) transitivePeerDependencies: - rollup - supports-color @@ -9715,21 +10275,21 @@ packages: peerDependencies: vite: ^3.0.0-0 || ^4.0.0-0 dependencies: - '@babel/core': 7.21.4 - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.21.4) - '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.21.4) - '@vue/babel-plugin-jsx': 1.1.1(@babel/core@7.21.4) - '@vue/compiler-dom': 3.2.47 + '@babel/core': 7.22.8 + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.8) + '@babel/plugin-transform-typescript': 7.22.5(@babel/core@7.22.8) + '@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.22.8) + '@vue/compiler-dom': 3.3.4 esno: 0.16.3 kolorist: 1.8.0 - magic-string: 0.30.0 + magic-string: 0.30.1 shell-quote: 1.8.1 - vite: 4.2.2(@types/node@18.16.0) + vite: 4.2.2(@types/node@18.16.19) transitivePeerDependencies: - supports-color dev: true - /vite@4.2.2(@types/node@18.16.0): + /vite@4.2.2(@types/node@18.16.19): resolution: {integrity: sha512-PcNtT5HeDxb3QaSqFYkEum8f5sCVe0R3WK20qxgIvNBZPXU/Obxs/+ubBMeE7nLWeCo2LDzv+8hRYSlcaSehig==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true @@ -9754,16 +10314,16 @@ packages: terser: optional: true dependencies: - '@types/node': 18.16.0 - esbuild: 0.17.18 - postcss: 8.4.23 + '@types/node': 18.16.19 + esbuild: 0.17.19 + postcss: 8.4.24 resolve: 1.22.2 - rollup: 3.20.7 + rollup: 3.26.2 optionalDependencies: fsevents: 2.3.2 dev: true - /vite@4.3.1(@types/node@18.16.0): + /vite@4.3.1(@types/node@18.16.19): resolution: {integrity: sha512-EPmfPLAI79Z/RofuMvkIS0Yr091T2ReUoXQqc5ppBX/sjFRhHKiPPF/R46cTdoci/XgeQpB23diiJxq5w30vdg==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true @@ -9788,16 +10348,16 @@ packages: terser: optional: true dependencies: - '@types/node': 18.16.0 - esbuild: 0.17.18 - postcss: 8.4.23 - rollup: 3.20.7 + '@types/node': 18.16.19 + esbuild: 0.17.19 + postcss: 8.4.24 + rollup: 3.26.2 optionalDependencies: fsevents: 2.3.2 dev: true - /vitest@0.30.1(jsdom@21.1.1)(playwright@1.32.3): - resolution: {integrity: sha512-y35WTrSTlTxfMLttgQk4rHcaDkbHQwDP++SNwPb+7H8yb13Q3cu2EixrtHzF27iZ8v0XCciSsLg00RkPAzB/aA==} + /vitest@0.32.4(jsdom@21.1.2)(playwright@1.35.1): + resolution: {integrity: sha512-3czFm8RnrsWwIzVDu/Ca48Y/M+qh3vOnF16czJm98Q/AN1y3B6PBsyV8Re91Ty5s7txKNjEhpgtGPcfdbh2MZg==} engines: {node: '>=v14.18.0'} hasBin: true peerDependencies: @@ -9827,33 +10387,31 @@ packages: webdriverio: optional: true dependencies: - '@types/chai': 4.3.4 + '@types/chai': 4.3.5 '@types/chai-subset': 1.3.3 - '@types/node': 18.16.0 - '@vitest/expect': 0.30.1 - '@vitest/runner': 0.30.1 - '@vitest/snapshot': 0.30.1 - '@vitest/spy': 0.30.1 - '@vitest/utils': 0.30.1 - acorn: 8.8.2 + '@types/node': 18.16.19 + '@vitest/expect': 0.32.4 + '@vitest/runner': 0.32.4 + '@vitest/snapshot': 0.32.4 + '@vitest/spy': 0.32.4 + '@vitest/utils': 0.32.4 + acorn: 8.9.0 acorn-walk: 8.2.0 cac: 6.7.14 chai: 4.3.7 - concordance: 5.0.4 debug: 4.3.4 - jsdom: 21.1.1 + jsdom: 21.1.2 local-pkg: 0.4.3 - magic-string: 0.30.0 - pathe: 1.1.0 + magic-string: 0.30.1 + pathe: 1.1.1 picocolors: 1.0.0 - playwright: 1.32.3 - source-map: 0.6.1 - std-env: 3.3.2 + playwright: 1.35.1 + std-env: 3.3.3 strip-literal: 1.0.1 - tinybench: 2.4.0 - tinypool: 0.4.0 - vite: 4.3.1(@types/node@18.16.0) - vite-node: 0.30.1(@types/node@18.16.0) + tinybench: 2.5.0 + tinypool: 0.5.0 + vite: 4.3.1(@types/node@18.16.19) + vite-node: 0.32.4(@types/node@18.16.19) why-is-node-running: 2.2.2 transitivePeerDependencies: - less @@ -9874,7 +10432,7 @@ packages: engines: {vscode: ^1.52.0} dependencies: minimatch: 3.1.2 - semver: 7.5.1 + semver: 7.5.3 vscode-languageserver-protocol: 3.16.0 dev: true @@ -9907,10 +10465,10 @@ packages: /vue-bundle-renderer@1.0.3: resolution: {integrity: sha512-EfjX+5TTUl70bki9hPuVp+54JiZOvFIfoWBcfXsSwLzKEiDYyHNi5iX8srnqLIv3YRnvxgbntdcG1WPq0MvffQ==} dependencies: - ufo: 1.1.1 + ufo: 1.1.2 dev: true - /vue-component-meta@1.4.4(typescript@5.1.3)(vue-component-type-helpers@1.3.12): + /vue-component-meta@1.4.4(typescript@5.1.6)(vue-component-type-helpers@1.3.12): resolution: {integrity: sha512-B58ejPcuasdnbeH44VCkJBgEMLp1oBrc21Vt8if3DZcB0V9xZPuzUTjuPMR2uMahYmiVKgPu5G4LTUSN8ZbX1w==} peerDependencies: typescript: '*' @@ -9919,7 +10477,7 @@ packages: '@volar/language-core': 1.4.1 '@volar/vue-language-core': 1.4.4 typesafe-path: 0.2.2 - typescript: 5.1.3 + typescript: 5.1.6 vue-component-type-helpers: 1.3.12 dev: true @@ -9927,7 +10485,7 @@ packages: resolution: {integrity: sha512-AuUcR/pzdQo37J9Y87cF21F8DLoeaanvb3nj1bzLIHENfKOEhLms2iPNZlaKHwjbXXh7hLvaP/kakUBmLzDbYQ==} dev: true - /vue-demi@0.13.11(vue@3.2.47): + /vue-demi@0.13.11(vue@3.3.4): resolution: {integrity: sha512-IR8HoEEGM65YY3ZJYAjMlKygDQn25D5ajNFNoKh9RSDMQtlzCxtfQjdQgv9jjK+m3377SsJXY8ysq8kLCZL25A==} engines: {node: '>=12'} hasBin: true @@ -9939,10 +10497,10 @@ packages: '@vue/composition-api': optional: true dependencies: - vue: 3.2.47 + vue: 3.3.4 dev: false - /vue-demi@0.14.0(vue@3.2.47): + /vue-demi@0.14.0(vue@3.3.4): resolution: {integrity: sha512-gt58r2ogsNQeVoQ3EhoUAvUsH9xviydl0dWJj7dabBC/2L4uBId7ujtCwDRD0JhkGsV1i0CtfLAeyYKBht9oWg==} engines: {node: '>=12'} hasBin: true @@ -9954,14 +10512,14 @@ packages: '@vue/composition-api': optional: true dependencies: - vue: 3.2.47 + vue: 3.3.4 dev: true /vue-devtools-stub@0.1.0: resolution: {integrity: sha512-RutnB7X8c5hjq39NceArgXg28WZtZpGc3+J16ljMiYnFhKvd8hITxSWQSQ5bvldxMDU6gG5mkxl1MTQLXckVSQ==} dev: true - /vue-i18n-routing@0.13.0(vue-i18n@9.3.0-beta.19)(vue@3.2.47): + /vue-i18n-routing@0.13.0(vue-i18n@9.3.0-beta.22)(vue@3.3.4): resolution: {integrity: sha512-d/WVAZKo68blFqv6BPxFrGy530+FgvXsYVMbuvaICaoFO2CUxuaszF4vPCzCPIi9T68WRzWeUMTUb7vmv2SLyQ==} engines: {node: '>= 14.6'} peerDependencies: @@ -9982,35 +10540,35 @@ packages: vue-router: optional: true dependencies: - '@intlify/shared': 9.3.0-beta.19 - '@intlify/vue-i18n-bridge': 0.8.0(vue-i18n@9.3.0-beta.19) - '@intlify/vue-router-bridge': 0.8.0(vue@3.2.47) - ufo: 1.1.0 - vue: 3.2.47 - vue-demi: 0.13.11(vue@3.2.47) - vue-i18n: 9.3.0-beta.19(vue@3.2.47) + '@intlify/shared': 9.3.0-beta.22 + '@intlify/vue-i18n-bridge': 0.8.0(vue-i18n@9.3.0-beta.22) + '@intlify/vue-router-bridge': 0.8.0(vue@3.3.4) + ufo: 1.1.2 + vue: 3.3.4 + vue-demi: 0.13.11(vue@3.3.4) + vue-i18n: 9.3.0-beta.22(vue@3.3.4) dev: false - /vue-i18n@9.3.0-beta.19(vue@3.2.47): - resolution: {integrity: sha512-1pbEcoAbxaAPuR5hODnQJ5CtIimnVD+aUVnCztuuRaOZPLP1i4FxkWVvb1lu8JIRC5pePyODZxi3yoy3PUYheA==} + /vue-i18n@9.3.0-beta.22(vue@3.3.4): + resolution: {integrity: sha512-i/MQ1x5kEXTMzmg5Cg9dnXDaTWv0S+O0ZTf8+qLWhFJDT4ERa5GLh5V+Ya748x1D+kwpStJxIW3kZGESJG7XCg==} engines: {node: '>= 16'} peerDependencies: vue: ^3.0.0 dependencies: - '@intlify/core-base': 9.3.0-beta.19 - '@intlify/shared': 9.3.0-beta.19 - '@intlify/vue-devtools': 9.3.0-beta.19 + '@intlify/core-base': 9.3.0-beta.22 + '@intlify/shared': 9.3.0-beta.22 + '@intlify/vue-devtools': 9.3.0-beta.22 '@vue/devtools-api': 6.5.0 - vue: 3.2.47 + vue: 3.3.4 dev: false - /vue-router@4.1.6(vue@3.2.47): + /vue-router@4.1.6(vue@3.3.4): resolution: {integrity: sha512-DYWYwsG6xNPmLq/FmZn8Ip+qrhFEzA14EI12MsMgVxvHFDYvlr4NXpVF5hrRH1wVcDP8fGi5F4rxuJSl8/r+EQ==} peerDependencies: vue: ^3.2.0 dependencies: '@vue/devtools-api': 6.5.0 - vue: 3.2.47 + vue: 3.3.4 dev: true /vue-template-compiler@2.7.14: @@ -10020,14 +10578,14 @@ packages: he: 1.2.0 dev: true - /vue@3.2.47: - resolution: {integrity: sha512-60188y/9Dc9WVrAZeUVSDxRQOZ+z+y5nO2ts9jWXSTkMvayiWxCWOWtBQoYjLeccfXkiiPZWAHcV+WTPhkqJHQ==} + /vue@3.3.4: + resolution: {integrity: sha512-VTyEYn3yvIeY1Py0WaYGZsXnz3y5UnGi62GjVEqvEGPl6nxbOrCXbVOTQWBEJUqAyTUk2uJ5JLVnYJ6ZzGbrSw==} dependencies: - '@vue/compiler-dom': 3.2.47 - '@vue/compiler-sfc': 3.2.47 - '@vue/runtime-dom': 3.2.47 - '@vue/server-renderer': 3.2.47(vue@3.2.47) - '@vue/shared': 3.2.47 + '@vue/compiler-dom': 3.3.4 + '@vue/compiler-sfc': 3.3.4 + '@vue/runtime-dom': 3.3.4 + '@vue/server-renderer': 3.3.4(vue@3.3.4) + '@vue/shared': 3.3.4 /w3c-xmlserializer@4.0.0: resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} @@ -10067,11 +10625,6 @@ packages: /webpack-virtual-modules@0.5.0: resolution: {integrity: sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==} - /well-known-symbols@2.0.0: - resolution: {integrity: sha512-ZMjC3ho+KXo0BfJb7JgtQ5IBuvnShdlACNkKkdsqBmYw3bPAaJfPeYUo6tLUaT5tG/Gkh7xkpBhKRQ9e7pyg9Q==} - engines: {node: '>=6'} - dev: true - /whatwg-encoding@2.0.0: resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} engines: {node: '>=12'} @@ -10186,7 +10739,7 @@ packages: dependencies: ansi-styles: 6.2.1 string-width: 5.1.2 - strip-ansi: 7.0.1 + strip-ansi: 7.1.0 dev: true /wrappy@1.0.2: @@ -10267,8 +10820,8 @@ packages: engines: {node: '>= 6'} dev: false - /yaml@2.2.1: - resolution: {integrity: sha512-e0WHiYql7+9wr4cWMx3TVQrNwejKaEe7/rHNmQmqRjazfOP5W8PB6Jpebb5o6fIapbz9o9+2ipcaTM2ZwDI6lw==} + /yaml@2.3.1: + resolution: {integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==} engines: {node: '>= 14'} dev: true diff --git a/specs/fixtures/precompile/app.vue b/specs/fixtures/precompile/app.vue deleted file mode 100644 index a6be0a1cb..000000000 --- a/specs/fixtures/precompile/app.vue +++ /dev/null @@ -1,10 +0,0 @@ - - - diff --git a/specs/fixtures/precompile/i18n.config.ts b/specs/fixtures/precompile/i18n.config.ts deleted file mode 100644 index 48ac97f9f..000000000 --- a/specs/fixtures/precompile/i18n.config.ts +++ /dev/null @@ -1,5 +0,0 @@ -export default { - legacy: false, - messages: {}, - fallbackLocale: 'en' -} diff --git a/specs/fixtures/precompile/nuxt.config.ts b/specs/fixtures/precompile/nuxt.config.ts deleted file mode 100644 index 70c3b9f9b..000000000 --- a/specs/fixtures/precompile/nuxt.config.ts +++ /dev/null @@ -1,6 +0,0 @@ -// https://nuxt.com/docs/guide/directory-structure/nuxt.config -export default defineNuxtConfig({ - modules: ['@nuxtjs/i18n'], - - i18n: {} -}) diff --git a/specs/fixtures/precompile/package.json b/specs/fixtures/precompile/package.json deleted file mode 100644 index 6e7026346..000000000 --- a/specs/fixtures/precompile/package.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "name": "nuxt3-test-server", - "private": true, - "type": "module", - "scripts": { - "dev": "nuxi dev", - "build": "nuxt build", - "start": "node .output/server/index.mjs" - }, - "devDependencies": { - "@nuxtjs/i18n": "latest", - "nuxt": "latest" - } -} diff --git a/specs/fixtures/precompile/server/api/[locale].ts b/specs/fixtures/precompile/server/api/[locale].ts deleted file mode 100644 index 8dc0d4cc4..000000000 --- a/specs/fixtures/precompile/server/api/[locale].ts +++ /dev/null @@ -1,24 +0,0 @@ -import type { LocaleMessages, DefineLocaleMessage } from 'vue-i18n' - -const locales: LocaleMessages = { - 'en-GB': { - html: 'This is the danger', - settings: { - nest: { - foo: { - bar: { - profile: 'Profile1' - } - } - } - } - } -} - -export default defineEventHandler(event => { - const locale = event.context.params?.locale - if (locale == null) { - return {} - } - return locales[locale] || {} -}) diff --git a/specs/lang_switcher.spec.ts b/specs/lang_switcher.spec.ts index 3a86134c5..4ac49fff9 100644 --- a/specs/lang_switcher.spec.ts +++ b/specs/lang_switcher.spec.ts @@ -75,15 +75,15 @@ test('wait for page transition', async () => { const page = await createPage() await page.goto(home) + expect(await getText(page, '#lang-switcher-current-locale code')).toEqual('en') + // click `fr` lang switching await page.locator('#lang-switcher-with-nuxt-link a').click() - expect(await getText(page, '#lang-switcher-current-locale code')).toEqual('en') await page.waitForTimeout(3000) expect(await getText(page, '#lang-switcher-current-locale code')).toEqual('fr') // click `en` lang switching await page.locator('#lang-switcher-with-nuxt-link a').click() - expect(await getText(page, '#lang-switcher-current-locale code')).toEqual('fr') await page.waitForTimeout(3000) expect(await getText(page, '#lang-switcher-current-locale code')).toEqual('en') }) diff --git a/specs/lazy_load/basic.spec.ts b/specs/lazy_load/basic.spec.ts index 2860a02ec..c9cb9c614 100644 --- a/specs/lazy_load/basic.spec.ts +++ b/specs/lazy_load/basic.spec.ts @@ -13,7 +13,7 @@ describe('basic', async () => { experimental: { jsTsFormatResource: true }, - precompile: { + compilation: { strictMessage: false }, defaultLocale: 'en', diff --git a/specs/lazy_load/precompile.spec.ts b/specs/lazy_load/precompile.spec.ts deleted file mode 100644 index 498b2c8c7..000000000 --- a/specs/lazy_load/precompile.spec.ts +++ /dev/null @@ -1,123 +0,0 @@ -import { test, expect, describe } from 'vitest' -import { fileURLToPath } from 'node:url' -import { setup, $fetch, fetch } from '../utils' -import { validateSyntax } from '../helper' -import { NUXT_I18N_PRECOMPILE_ENDPOINT } from '../../src/constants' - -await setup({ - rootDir: fileURLToPath(new URL(`../fixtures/precompile`, import.meta.url)), - browser: true, - // overrides - nuxtConfig: { - i18n: {} - } -}) - -describe('success', async () => { - test('locale', async () => { - const code = await $fetch(NUXT_I18N_PRECOMPILE_ENDPOINT, { - method: 'POST', - body: { - type: 'locale', - locale: 'en', - hash: '1234', - resource: { - hello: 'Hello' - } - } - }) - expect(validateSyntax(code)).toBe(true) - expect(code).toMatchSnapshot() - }) - - test('config', async () => { - const code = await $fetch(NUXT_I18N_PRECOMPILE_ENDPOINT, { - method: 'POST', - body: { - type: 'config', - hash: '1234', - resource: { - ja: { - hello: 'ใ“ใ‚“ใซใกใฏ' - } - } - } - }) - expect(validateSyntax(code)).toBe(true) - expect(code).toMatchSnapshot() - }) -}) - -describe('fail', () => { - test('no type param', async () => { - const res = await fetch(NUXT_I18N_PRECOMPILE_ENDPOINT, { - method: 'POST', - body: JSON.stringify({ - hash: '1234', - resource: { - hello: 'Hello' - } - }) - }) - expect(res.status).toBe(400) - expect(res.statusText).toBe(`require the 'type'`) - }) - - test('no configId param', async () => { - const res = await fetch(NUXT_I18N_PRECOMPILE_ENDPOINT, { - method: 'POST', - body: JSON.stringify({ - type: 'config', - resource: { - hello: 'Hello' - } - }) - }) - expect(res.status).toBe(400) - expect(res.statusText).toBe(`require the 'hash'`) - }) - - test('no locale param', async () => { - const res = await fetch(NUXT_I18N_PRECOMPILE_ENDPOINT, { - method: 'POST', - body: JSON.stringify({ - type: 'locale', - hash: '1234', - resource: { - hello: 'Hello' - } - }) - }) - expect(res.status).toBe(400) - expect(res.statusText).toBe(`require the 'locale'`) - }) - - test('no resource param', async () => { - const res = await fetch(NUXT_I18N_PRECOMPILE_ENDPOINT, { - method: 'POST', - body: JSON.stringify({ - type: 'locale', - hash: '1234', - locale: 'en' - }) - }) - expect(res.status).toBe(400) - expect(res.statusText).toBe(`require the 'resource'`) - }) - - test('include html code in resource', async () => { - const res = await fetch(NUXT_I18N_PRECOMPILE_ENDPOINT, { - method: 'POST', - body: JSON.stringify({ - type: 'locale', - hash: '1234', - locale: 'en-tag', - resource: { - hello: '' - } - }) - }) - expect(res.status).toBe(400) - expect(res.statusText).toBe(`Detected HTML in '' message.`) - }) -}) diff --git a/specs/utils/README.md b/specs/utils/README.md index 92b528531..b685a2052 100644 --- a/specs/utils/README.md +++ b/specs/utils/README.md @@ -8,12 +8,10 @@ The resolving of the `buildDir` is a bit special, un-like `nuxi` CLI. It's furth nuxt i18n module uses nitro prerender and unjs/unstorage, depends on the nuxt `buildDir` path structure regularly. - ## ๐Ÿ”จ Rquirement for e2e fixture When you need e2e test for some bug fixes and feauture, You need to **set up the fixture for your `.spec.ts`**. - ## ยฉ๏ธ License [MIT](./LICENSE) diff --git a/src/bundler.ts b/src/bundler.ts index 56a5ccd4a..ec1c708a4 100644 --- a/src/bundler.ts +++ b/src/bundler.ts @@ -11,7 +11,6 @@ import { getLayerLangPaths } from './layers' import type { Nuxt } from '@nuxt/schema' import type { PluginOptions } from '@intlify/unplugin-vue-i18n' import type { NuxtI18nOptions } from './types' -import type { PrerenderTargets } from './utils' const debug = createDebug('@nuxtjs/i18n:bundler') @@ -21,7 +20,6 @@ export async function extendBundler( nuxtOptions: Required hasLocaleFiles: boolean langPath: string | null - prerenderTargets: PrerenderTargets } ) { const { nuxtOptions, hasLocaleFiles } = options @@ -57,9 +55,6 @@ export async function extendBundler( } const dynamicOptions: ResourceDynamicPluginOptions = { - prerenderTargs: options.prerenderTargets, - ssr: nuxt.options.ssr, - dev: nuxt.options.dev, sourcemap: nuxt.options.sourcemap.server || nuxt.options.sourcemap.client } @@ -74,8 +69,9 @@ export async function extendBundler( const webpackPluginOptions: PluginOptions = { runtimeOnly: true, allowDynamic: true, - strictMessage: nuxtOptions.precompile.strictMessage, - escapeHtml: nuxtOptions.precompile.escapeHtml + jitCompilation: true, + strictMessage: nuxtOptions.compilation.strictMessage, + escapeHtml: nuxtOptions.compilation.escapeHtml } if (hasLocaleFiles && localePaths.length > 0) { @@ -94,6 +90,7 @@ export async function extendBundler( __VUE_I18N_FULL_INSTALL__: 'true', __VUE_I18N_LEGACY_API__: 'true', __INTLIFY_PROD_DEVTOOLS__: 'false', + __INTLIFY_JIT_COMPILATION__: 'true', __DEBUG__: JSON.stringify(nuxtOptions.debug) }) ) @@ -109,8 +106,9 @@ export async function extendBundler( const vitePluginOptions: PluginOptions = { runtimeOnly: true, allowDynamic: true, - strictMessage: nuxtOptions.precompile.strictMessage, - escapeHtml: nuxtOptions.precompile.escapeHtml + jitCompilation: true, + strictMessage: nuxtOptions.compilation.strictMessage, + escapeHtml: nuxtOptions.compilation.escapeHtml } if (hasLocaleFiles && localePaths.length > 0) { vitePluginOptions.include = localePaths.map(x => resolve(x, './**')) diff --git a/src/constants.ts b/src/constants.ts index 4210dcfb6..161f7a5ec 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -33,7 +33,7 @@ export const DEFAULT_OPTIONS = { experimental: { jsTsFormatResource: false }, - precompile: { + compilation: { strictMessage: true, escapeHtml: false }, @@ -70,11 +70,7 @@ export const DEFAULT_OPTIONS = { export const NUXT_I18N_LOCALE_PROXY_ID = '@nuxtjs/i18n/__locale__' as const export const NUXT_I18N_CONFIG_PROXY_ID = '@nuxtjs/i18n/__config__' as const -export const NUXT_I18N_PRECOMPILE_ENDPOINT = '/__i18n__/precompile' as const // TODO: we might use `useRuntimeConfig`? -export const NUXT_I18N_PRECOMPILED_LOCALE_KEY = 'i18n-locales' as const // TODO: we might use `useRuntimeConfig`? -export const NUXT_I18N_PRERENDERED_PATH = '/__i18n__/prerender' as const // TODO: we might use `useRuntimeConfig`? export const NUXT_I18N_TEMPLATE_OPTIONS_KEY = 'i18n.options.mjs' as const -export const NUXT_I18N_TEMPLATE_INTERNAL_KEY = 'i18n.internal.mjs' as const export const NUXT_I18N_COMPOSABLE_DEFINE_ROUTE = 'defineI18nRoute' as const export const NUXT_I18N_COMPOSABLE_DEFINE_LOCALE = 'defineI18nLocale' as const export const NUXT_I18N_COMPOSABLE_DEFINE_CONFIG = 'defineI18nConfig' as const diff --git a/src/gen.ts b/src/gen.ts index f7bc336c2..a50471b1a 100644 --- a/src/gen.ts +++ b/src/gen.ts @@ -8,10 +8,7 @@ import { NULL_HASH, NUXT_I18N_MODULE_ID, NUXT_I18N_CONFIG_PROXY_ID, - NUXT_I18N_LOCALE_PROXY_ID, - NUXT_I18N_PRECOMPILE_ENDPOINT, - NUXT_I18N_PRECOMPILED_LOCALE_KEY, - NUXT_I18N_PRERENDERED_PATH + NUXT_I18N_LOCALE_PROXY_ID } from './constants' import { genImport, genSafeVariableName, genDynamicImport } from 'knitwork' import { parse as parsePath, normalize } from 'pathe' @@ -277,10 +274,6 @@ export function generateLoaderOptions( * Generate meta info */ genCode += `export const NUXT_I18N_MODULE_ID = ${toCode(NUXT_I18N_MODULE_ID)}\n` - genCode += `export const NUXT_I18N_PRECOMPILE_ENDPOINT = ${toCode(NUXT_I18N_PRECOMPILE_ENDPOINT)}\n` - genCode += `export const NUXT_I18N_PRECOMPILED_LOCALE_KEY = ${toCode(NUXT_I18N_PRECOMPILED_LOCALE_KEY)}\n` - genCode += `export const NUXT_I18N_PRERENDERED_PATH = ${toCode(NUXT_I18N_PRERENDERED_PATH)}\n` - genCode += `export const NULL_HASH = ${toCode(NULL_HASH)}\n` genCode += `export const isSSG = ${toCode(misc.ssg)}\n` debug('generate code', genCode) @@ -350,7 +343,7 @@ function generateAdditionalMessages(value: Record, dev: boolean): s genCode += `${JSON.stringify(locale)}:[` for (const [, p] of Object.entries(messages)) { genCode += `() => Promise.resolve(${ - generateJSON(JSON.stringify(p), { type: 'bare', env: dev ? 'development' : 'production' }).code + generateJSON(JSON.stringify(p), { type: 'bare', env: dev ? 'development' : 'production', jit: true }).code }),` } genCode += `],` diff --git a/src/module.ts b/src/module.ts index 903f1812b..9256ee1a2 100644 --- a/src/module.ts +++ b/src/module.ts @@ -8,9 +8,7 @@ import { addPlugin, addTemplate, addImports, - addServerHandler, - useLogger, - addPrerenderRoutes + useLogger } from '@nuxt/kit' import { resolve, relative, isAbsolute } from 'pathe' import { defu } from 'defu' @@ -23,7 +21,6 @@ import { NUXT_I18N_MODULE_ID, DEFAULT_OPTIONS, NUXT_I18N_TEMPLATE_OPTIONS_KEY, - NUXT_I18N_PRECOMPILE_ENDPOINT, NUXT_I18N_COMPOSABLE_DEFINE_ROUTE, NUXT_I18N_COMPOSABLE_DEFINE_LOCALE, NUXT_I18N_COMPOSABLE_DEFINE_CONFIG @@ -34,9 +31,7 @@ import { resolveLocales, getPackageManagerType, mergeI18nModules, - resolveVueI18nConfigInfo, - analyzePrerenderTargets, - rm + resolveVueI18nConfigInfo } from './utils' import { distDir, runtimeDir, pkgModulesDir } from './dirs' import { applyLayerOptions, resolveLayerVueI18nConfigInfo } from './layers' @@ -111,12 +106,6 @@ export default defineNuxtModule({ // TODO: we should support more i18n module options. welcome PRs :-) }) - // for privates - nuxt.options.runtimeConfig.i18n = defu(nuxt.options.runtimeConfig.i18n, { - precompile: options.precompile, - ssr: nuxt.options.ssr - }) - /** * resolve lang directory */ @@ -284,9 +273,6 @@ export default defineNuxtModule({ references.push({ path: resolve(nuxt.options.buildDir, vueI18nTypeFilename) }) }) - const prerenderTargets = analyzePrerenderTargets(localeInfo, [vueI18nConfigPathInfo, ...layerVueI18nConfigPaths]) - debug('prerenderTargets', prerenderTargets) - /** * extend bundler */ @@ -294,57 +280,7 @@ export default defineNuxtModule({ await extendBundler(nuxt, { nuxtOptions: options as Required, hasLocaleFiles, - langPath, - prerenderTargets - }) - - /** - * extend server handlers - */ - - // for pre-compile - addServerHandler({ - method: 'post', - route: NUXT_I18N_PRECOMPILE_ENDPOINT, - handler: resolve(runtimeDir, './server/precompile') - }) - - // for prerender - addServerHandler({ - method: 'get', - route: '/__i18n__/prerender/:hash', - handler: resolve(runtimeDir, './server/dynamic') - }) - - /** - * extend prerender routes - */ - - for (const hash of prerenderTargets.keys()) { - addPrerenderRoutes(`/__i18n__/prerender/${hash}.js`) - } - - /** - * extend nitro storages - */ - - const storageKey = 'i18n' - nuxt.hook('nitro:config', nitro => { - nitro.storage = nitro.storage || {} - nitro.storage[storageKey] = { - driver: 'fs', - base: resolve(nuxt.options.buildDir, storageKey) - } - // NOTE: Maybe, there is a better way to pre-compile resources using prerender... - // nitro.bundledStorage = nitro.bundledStorage || [] - // nitro.bundledStorage.push(storageKey) - }) - - nuxt.hook('nitro:init', async () => { - // remove i18n storage for refresh - if (nuxt.options.dev) { - await rm(resolve(nuxt.options.buildDir, storageKey)) - } + langPath }) /** @@ -424,7 +360,6 @@ type MaybePromise = T | Promise type LocaleSwitch = { oldLocale: T; newLocale: T } type ModulePublicRuntimeConfig = Pick, 'baseUrl' | 'experimental'> -type ModulePrivateRuntimeConfig = Pick, 'precompile'> declare module '@nuxt/schema' { interface NuxtConfig { @@ -442,9 +377,6 @@ declare module '@nuxt/schema' { public?: { i18n?: ModulePublicRuntimeConfig } - private?: { - i18n?: ModulePrivateRuntimeConfig - } } } } diff --git a/src/options.d.ts b/src/options.d.ts index 9d6d5a712..4bb2b091d 100644 --- a/src/options.d.ts +++ b/src/options.d.ts @@ -28,10 +28,6 @@ export const nuxtI18nOptions: DeepRequired = {} export const nuxtI18nOptionsDefault: NuxtI18nOptionsDefault = {} export const nuxtI18nInternalOptions: DeepRequired = {} export const NUXT_I18N_MODULE_ID = '' -export const NUXT_I18N_PRECOMPILE_ENDPOINT = '' -export const NUXT_I18N_PRECOMPILED_LOCALE_KEY = '' -export const NUXT_I18N_PRERENDERED_PATH = '/__i18n__/prerender' -export const NULL_HASH = '00000000' as const export const isSSG = false export { diff --git a/src/runtime/internal.ts b/src/runtime/internal.ts index 719c4abd1..b10238d84 100644 --- a/src/runtime/internal.ts +++ b/src/runtime/internal.ts @@ -19,8 +19,6 @@ import { localeMessages, additionalMessages, NUXT_I18N_MODULE_ID, - NUXT_I18N_PRECOMPILE_ENDPOINT, - NULL_HASH, isSSG } from '#build/i18n.options.mjs' @@ -527,109 +525,4 @@ export function getDomainFromLocale(localeCode: Locale, locales: LocaleObject[], console.warn(formatMessage('Could not find domain name for locale ' + localeCode)) } -async function evaluateCode(raw: Blob) { - const url = URL.createObjectURL(raw) - const code = await import(/* @vite-ignore */ url).then(m => m.default || m) - URL.revokeObjectURL(url) - return code -} - -export async function precompileLocale( - locale: Locale, - messages: LocaleMessages, - hash: string = NULL_HASH -) { - const raw = await $fetch(NUXT_I18N_PRECOMPILE_ENDPOINT, { - method: 'POST', - responseType: 'blob', - body: { - locale, - type: 'locale', - hash, - resource: messages - } - }) - if (process.dev && process.client) { - /** - * NOTE: - * If code precompiled directly by dynamic import is loaded directly as well as on the server side, - * it will be routed on the server side when the request is received. - * To avoid this, use the code received by fetching the precompiled code. - */ - return evaluateCode(raw) - } else { - return await loadPrecompiledMessages(locale + '-' + hash + '.js', 'locale') - } -} - -export async function precompileConfig( - messages: I18nOptions['messages'], - hash: string = NULL_HASH -): Promise { - if (messages != null) { - const raw = await $fetch(NUXT_I18N_PRECOMPILE_ENDPOINT, { - method: 'POST', - responseType: 'blob', - body: { - type: 'config', - hash, - resource: getNeedPrecompileMessages(messages) - } - }) - let precompiledMessages: I18nOptions['messages'] - if (process.dev && process.client) { - /** - * NOTE: - * If code precompiled directly by dynamic import is loaded directly as well as on the server side, - * it will be routed on the server side when the request is received. - * To avoid this, use the code received by fetching the precompiled code. - */ - precompiledMessages = await evaluateCode(raw) - } else { - precompiledMessages = (await loadPrecompiledMessages('config-' + hash + '.js', 'config')) as NonNullable< - I18nOptions['messages'] - > - } - if (precompiledMessages != null) { - for (const [locale, message] of Object.entries(precompiledMessages)) { - deepCopy(message, messages[locale]) - } - } - } - return messages -} - -async function loadPrecompiledMessages(id: string, type: 'locale' | 'config') { - __DEBUG__ && - console.log('loadPrecompiledMessages loc ->', id, type, process.server, process.env && process.env.prerender) - - let url = '' - // prettier-ignore - if (process.server) { // for server - if (process.env.prerender) { // for prerender - url = type === 'config' ? '../../../i18n/' + id : '../../../i18n/locales/' + id - } else if (process.dev) { // for dev mode - url = type === 'config' ? '.nuxt/i18n/' + id : '.nuxt/i18n/locales/' + id - } else { - throw new Error(`'loadPrecompiledMessages' is used in invalid environment.`) - } - } else { - throw new Error(`'loadPrecompiledMessages' is used in invalid environment.`) - } - - return await import(/* @vite-ignore */ url).then(m => m.default || m) -} - -function getNeedPrecompileMessages(messages: NonNullable) { - const needPrecompileMessages: NonNullable = {} - // ignore, if messages will have function - const predicate = (src: any) => !isFunction(src) - - for (const [locale, message] of Object.entries(messages)) { - const dest = (needPrecompileMessages[locale] = {}) - deepCopy(message, dest, predicate) - } - return needPrecompileMessages -} - /* eslint-enable @typescript-eslint/no-explicit-any */ diff --git a/src/runtime/server/dynamic.ts b/src/runtime/server/dynamic.ts deleted file mode 100644 index 0b067b368..000000000 --- a/src/runtime/server/dynamic.ts +++ /dev/null @@ -1,138 +0,0 @@ -import { defineEventHandler, setResponseHeader, createError } from 'h3' -// @ts-expect-error -import { useStorage, useRuntimeConfig } from '#imports' -import { relative, join } from 'pathe' -import { isObject, isFunction } from '@intlify/shared' - -import type { I18nOptions, DefineLocaleMessage, LocaleMessages } from 'vue-i18n' -import type { PrerenderTarget } from '../../utils' - -type ResourceMapValue = Pick & { locale?: string } - -export default defineEventHandler(async event => { - const config = useRuntimeConfig() - - const hash = event.context.params?.hash - if (hash == null) { - throw createError({ statusMessage: `require the 'hash'`, statusCode: 400 }) - } - - /** - * resolve pre-comilable config or locales - */ - - const i18nMeta = await getI18nMeta(config.i18n.ssr) - const filename = getFilename(hash) - const target = i18nMeta[filename] - - /** - * import a module that can pre-compile config or locales. - */ - - const loadPath = await resolveModule(target.path, config.i18n.ssr) - const loader = await import(loadPath).then(m => m.default || m) - - /** - * pre-compile - */ - - if (target.type === 'locale') { - if (target.locale == null) { - throw createError({ statusMessage: `not found locale`, statusCode: 500 }) - } - const resource = await loader(target.locale) - const code = await precompileLocale(target.locale, filename, resource) - await setResponseHeader(event, 'content-type', 'text/javascript') - return code - } else if (target.type === 'config') { - const config = (isFunction(loader) ? await loader() : isObject(loader) ? loader : {}) as I18nOptions - const messages = (config.messages || {}) as NonNullable - const code = await precompileConfig(filename, messages) - await setResponseHeader(event, 'content-type', 'text/javascript') - return code - } else { - throw new Error('Invalid type') - } -}) - -function getFilename(hash: string) { - const [filename] = hash.split('.') // request from `xxx.js` - return filename -} - -const resourcePlace = (ssr = true) => (ssr ? 'server' : 'client') - -async function getI18nMeta(ssr = true) { - return (await useStorage().getItem(`build:dist:${resourcePlace(ssr)}:i18n-meta.json`)) as Record< - string, - ResourceMapValue - > -} - -async function resolveModule(path: string, ssr = true) { - const storage = await useStorage() - const rootMount = await storage.getMount('root') - const root = rootMount.driver.options.base - const rootRelative = relative(new URL(import.meta.url).pathname, root) - return join(rootRelative, `dist/${resourcePlace(ssr)}`, path) -} - -async function precompileLocale(locale: string, filename: string, messages: LocaleMessages) { - return await $fetch('/__i18n__/precompile', { - method: 'POST', - body: { - locale, - type: 'locale', - hash: filename, - resource: messages - } - }) -} - -async function precompileConfig(filename: string, messages: NonNullable) { - return await $fetch('/__i18n__/precompile', { - method: 'POST', - body: { - type: 'config', - hash: filename, - resource: getNeedPrecompileMessages(messages) - } - }) -} - -/** - * TODO: - * We should use externalized logic. This logic is also used in `runtime/internal.ts.` - * It's difficult make it common between runtime/client side and runtime/server side on nuxt module. - * (we know use monorepo packages...) - */ - -// eslint-disable-next-line @typescript-eslint/no-explicit-any -function deepCopy(src: Record, des: Record, predicate?: (src: any, des: any) => boolean) { - for (const key in src) { - if (isObject(src[key])) { - if (!isObject(des[key])) des[key] = {} - deepCopy(src[key], des[key], predicate) - } else { - if (predicate) { - if (predicate(src[key], des[key])) { - des[key] = src[key] - } - } else { - des[key] = src[key] - } - } - } -} - -export function getNeedPrecompileMessages(messages: NonNullable) { - const needPrecompileMessages: NonNullable = {} - // ignore, if messages will have function - const predicate = (src: any) => !isFunction(src) // eslint-disable-line @typescript-eslint/no-explicit-any - - for (const [locale, message] of Object.entries(messages)) { - const dest = (needPrecompileMessages[locale] = {}) - deepCopy(message, dest, predicate) - } - return needPrecompileMessages -} diff --git a/src/runtime/server/precompile.ts b/src/runtime/server/precompile.ts deleted file mode 100644 index 4ecc3c6f1..000000000 --- a/src/runtime/server/precompile.ts +++ /dev/null @@ -1,133 +0,0 @@ -import { defineEventHandler, readBody, setResponseHeader, createError } from 'h3' -import { generateJSON } from '@intlify/bundle-utils' -import { prefixStorage } from 'unstorage' -// @ts-ignore TODO: fix resolve -import { useStorage, useRuntimeConfig } from '#imports' - -import type { Locale } from 'vue-i18n' - -const BASE_KEY = 'i18n' as const -const CONFIG_KEY = 'config' as const -const configStorage = prefixStorage(useStorage(), BASE_KEY) - -const PRECOMPILED_LOCALE_KEY = 'i18n:locales' as const -const localeStorage = prefixStorage(useStorage(), PRECOMPILED_LOCALE_KEY) - -const resolveKey = (key: string) => `${key}.js` -const localeKey = (locale: string, hash: string) => `${locale}-${hash}` -const configKey = (hash: string) => `${CONFIG_KEY}-${hash}` - -type I18nBody = { - type: 'locale' | 'config' - locale: Locale - hash: string - resource: Record // eslint-disable-line @typescript-eslint/no-explicit-any -} - -export default defineEventHandler(async event => { - const body = await readBody<{ - type: 'locale' | 'config' - locale: Locale - hash: string - resource: Record // eslint-disable-line @typescript-eslint/no-explicit-any - }>(event) - - validate(body) - - const cacheCode = await getCacheCode(body) - if (cacheCode) { - await setResponseHeader(event, 'content-type', 'text/javascript') - return cacheCode.toString() - } - - const [code, errors] = generateCode(body) - if (errors.length > 0) { - throw createError({ statusMessage: errors.join('|'), statusCode: 400 }) - } - - await setCacheCode(code, body) - - await setResponseHeader(event, 'content-type', 'text/javascript') - return code -}) - -function validate(body: I18nBody) { - if (!body.type) { - throw createError({ statusMessage: `require the 'type'`, statusCode: 400 }) - } - - if (body.type === 'locale') { - if (!body.locale) { - throw createError({ statusMessage: `require the 'locale'`, statusCode: 400 }) - } - } - - if (!body.hash) { - throw createError({ statusMessage: `require the 'hash'`, statusCode: 400 }) - } - - if (!body.resource) { - throw createError({ statusMessage: `require the 'resource'`, statusCode: 400 }) - } -} - -async function getCacheCode({ type, locale, hash }: I18nBody) { - if (type === 'locale') { - return await localeStorage.getItem(resolveKey(localeKey(locale, hash))) - } else if (type === 'config') { - return await configStorage.getItem(resolveKey(configKey(hash))) - } else { - return null - } -} - -function generateCode(body: I18nBody): [string, string[]] { - const errors = [] as string[] - const { - i18n: { - precompile: { strictMessage, escapeHtml } - } - } = useRuntimeConfig() - const env = process.dev ? 'development' : 'production' - - let gen = '' - if (body.type === 'locale') { - const { code } = generateJSON(JSON.stringify(body.resource), { - env, - strictMessage, - escapeHtml, - onError: error => { - errors.push(error) - } - }) - gen = code - } else if (body.type === 'config') { - gen += `export default {\n` - const codes = [] as string[] - Object.keys(body.resource).reduce((codes, key) => { - const { code } = generateJSON(JSON.stringify(body.resource[key]), { - type: 'bare', - env, - strictMessage, - escapeHtml, - onError: error => { - errors.push(error) - } - }) - codes.push(` ${JSON.stringify(key)}: ${code},\n`) - return codes - }, codes) - gen += codes.join('') - gen += `}\n` - } - - return [gen, errors] -} - -async function setCacheCode(code: string, { type, locale, hash }: I18nBody) { - if (type === 'locale') { - await localeStorage.setItem(resolveKey(localeKey(locale, hash)), code) - } else if (type === 'config') { - await configStorage.setItem(resolveKey(configKey(hash)), code) - } -} diff --git a/src/transform/dynamic.ts b/src/transform/dynamic.ts index 3e0b2fae6..0ce4dccf8 100644 --- a/src/transform/dynamic.ts +++ b/src/transform/dynamic.ts @@ -1,31 +1,20 @@ import createDebug from 'debug' import { pathToFileURL } from 'node:url' -// import { parse as parsePath, resolve, relative, dirname } from 'node:path' import { createUnplugin } from 'unplugin' import { parseQuery, parseURL } from 'ufo' import MagicString from 'magic-string' import { VIRTUAL_PREFIX_HEX } from './utils' import { NUXT_I18N_COMPOSABLE_DEFINE_LOCALE, NUXT_I18N_COMPOSABLE_DEFINE_CONFIG } from '../constants' -import type { PrerenderTargets, PrerenderTarget } from '../utils' - export interface ResourceDynamicPluginOptions { - prerenderTargs: PrerenderTargets - ssr: boolean - dev?: boolean sourcemap?: boolean } -type ResourceMapValue = Pick & { ref: string; hash: string; locale?: string } - const debug = createDebug('@nuxtjs/i18n:transform:dynamic') export const ResourceDynamicPlugin = createUnplugin((options: ResourceDynamicPluginOptions) => { debug('options', options) - const resoucesMap = new Map() - // const relativeToSrcDir = (path: string) => relative(options.srcDir, path) - return { name: 'nuxtjs:i18n-resource-dynamic', enforce: 'post', @@ -39,7 +28,7 @@ export const ResourceDynamicPlugin = createUnplugin((options: ResourceDynamicPlu const { pathname, search } = parseURL(decodeURIComponent(pathToFileURL(id).href)) const query = parseQuery(search) - return /\.([c|m]?[j|t]s)$/.test(pathname) && !!query.hash && (!!query.locale || !!query.config) + return /\.([c|m]?[j|t]s)$/.test(pathname) && (!!query.locale || !!query.config) }, transform(code, id) { @@ -47,7 +36,6 @@ export const ResourceDynamicPlugin = createUnplugin((options: ResourceDynamicPlu const { pathname, search } = parseURL(decodeURIComponent(pathToFileURL(id).href)) const query = parseQuery(search) - const hash = query.hash as string const s = new MagicString(code) @@ -55,10 +43,7 @@ export const ResourceDynamicPlugin = createUnplugin((options: ResourceDynamicPlu if (s.hasChanged()) { return { code: s.toString(), - map: - options.sourcemap && !/\.([c|m]?ts)$/.test(pathname) - ? s.generateMap({ source: id, includeContent: true }) - : undefined + map: options.sourcemap && !/\.([c|m]?ts)$/.test(pathname) ? s.generateMap({ hires: true }) : null } } } @@ -70,50 +55,7 @@ export const ResourceDynamicPlugin = createUnplugin((options: ResourceDynamicPlu s.remove(match.index!, match.index! + match[0].length) } - if (!options.dev) { - const ref = this.emitFile({ - // @ts-expect-error - type: 'chunk', - id, - preserveSignature: 'strict' - }) as unknown as string - - resoucesMap.set(id, { - hash, - type: query.locale ? 'locale' : 'config', - locale: query.locale as string, - ref - }) - } - return result() - }, - - vite: { - generateBundle(outputOptions) { - /** - * NOTE: - * avoid generating i18n-meta.json for SPA mode, - * because some i18n resources doesn't bundle on server-side - */ - if (!options.ssr && outputOptions.dir?.endsWith('server')) { - return - } - - // eslint-disable-next-line @typescript-eslint/no-unused-vars - const resources = [...resoucesMap].reduce((obj, [_, { hash, type, locale, ref }]) => { - obj[hash] = { hash, type, locale, path: this.getFileName(ref) } - return obj - }, {} as Record & { path: string }>) - debug('generateBundle: resources', resources) - - this.emitFile({ - type: 'asset', - fileName: 'i18n-meta.json', - name: 'i18n-meta.json', - source: JSON.stringify(resources, null, 2) - }) - } } } }) diff --git a/src/transform/macros.ts b/src/transform/macros.ts index 5c353acc0..8d9be27df 100644 --- a/src/transform/macros.ts +++ b/src/transform/macros.ts @@ -51,7 +51,7 @@ export const TransformMacroPlugin = createUnplugin((options: TransformMacroPlugi debug('transformed: code -> ', s.toString()) return { code: s.toString(), - map: options.sourcemap ? s.generateMap({ source: id, includeContent: true }) : undefined + map: options.sourcemap ? s.generateMap({ hires: true }) : undefined } } } diff --git a/src/transform/proxy.ts b/src/transform/proxy.ts index 5cb95bddf..388136cd2 100644 --- a/src/transform/proxy.ts +++ b/src/transform/proxy.ts @@ -8,12 +8,7 @@ import MagicString from 'magic-string' import { transform as stripType } from '@mizchi/sucrase' import { getVirtualId, VIRTUAL_PREFIX_HEX } from './utils' import { toCode } from '../utils' -import { - NUXT_I18N_TEMPLATE_OPTIONS_KEY, - NUXT_I18N_TEMPLATE_INTERNAL_KEY, - NUXT_I18N_CONFIG_PROXY_ID, - NUXT_I18N_LOCALE_PROXY_ID -} from '../constants' +import { NUXT_I18N_TEMPLATE_OPTIONS_KEY, NUXT_I18N_CONFIG_PROXY_ID, NUXT_I18N_LOCALE_PROXY_ID } from '../constants' export interface ResourceProxyPluginOptions { sourcemap?: boolean @@ -71,35 +66,17 @@ export const ResourceProxyPlugin = createUnplugin((options: ResourceProxyPluginO const baseDir = dirname(query.from) debug('load (locale) ->', id, baseDir) // prettier-ignore - const code = `import { precompileLocale, formatMessage } from '#build/${NUXT_I18N_TEMPLATE_INTERNAL_KEY}' -import { NUXT_I18N_PRERENDERED_PATH } from '#build/${NUXT_I18N_TEMPLATE_OPTIONS_KEY}' -export default async function(locale) { - if (process.dev || (process.server && process.env.prerender)) { - __DEBUG__ && console.log('loadResource', locale) - const loader = await import(${toCode(withQuery(resolve(baseDir, query.target), { hash: query.hash, locale: query.locale }))}).then(m => m.default || m) - const message = await loader(locale) - return await precompileLocale(locale, message, ${toCode(query.hash)}) - } else { - __DEBUG__ && console.log('load precompiled resource', locale) - let mod = null - try { - let url = \`\${NUXT_I18N_PRERENDERED_PATH}/${query.hash}.js\` - if (process.server) { - url = \`../../../../public\${url}\` - } - mod = await import(/* @vite-ignore */ url /* webpackChunkName: ${query.hash} */).then( - m => m.default || m - ) - } catch (e) { - console.error(formatMessage(e.message)) - } - return mod || {} - } + const code = `export default async function(locale) { + __DEBUG__ && console.log('loadResource', locale) + const loader = await import(${toCode(withQuery(resolve(baseDir, query.target), { locale: query.locale }))}).then(m => m.default || m) + const message = await loader(locale) + __DEBUG__ && console.log('loaded on loadResource', message) + return message }` const s = new MagicString(code) return { code: s.toString(), - map: options.sourcemap ? s.generateMap({ source: id, includeContent: true }) : undefined + map: options.sourcemap ? s.generateMap({ hires: true }) : undefined } } } else if (pathname === NUXT_I18N_CONFIG_PROXY_ID) { @@ -107,42 +84,21 @@ export default async function(locale) { const baseDir = dirname(query.from) debug('load (config) ->', id, baseDir) // prettier-ignore - const code = `import { precompileConfig, formatMessage } from '#build/${NUXT_I18N_TEMPLATE_INTERNAL_KEY}' -import { NUXT_I18N_PRERENDERED_PATH } from '#build/${NUXT_I18N_TEMPLATE_OPTIONS_KEY}' -import { isObject, isFunction } from '@intlify/shared' + const code = `import { isObject, isFunction } from '@intlify/shared' export default async function() { - const loader = await import(${toCode(withQuery(resolve(baseDir, query.target), { hash: query.hash, config: 'true' }))}).then(m => m.default || m) + const loader = await import(${toCode(withQuery(resolve(baseDir, query.target), { config: 'true' }))}).then(m => m.default || m) const config = isFunction(loader) ? await loader() : isObject(loader) ? loader : {} __DEBUG__ && console.log('loadConfig', config) - if (process.dev || (process.server && process.env.prerender)) { - config.messages = await precompileConfig(config.messages, ${toCode(query.hash)}) - return config - } else { - __DEBUG__ && console.log('already pre-compiled vue-i18n messages') - let messages = null - try { - let url = \`\${NUXT_I18N_PRERENDERED_PATH}/${query.hash}.js\` - if (process.server) { - url = \`../../../../public\${url}\` - } - messages = await import(/* @vite-ignore */ url /* webpackChunkName: ${query.hash} */).then( - m => m.default || m - ) - } catch (e) { - console.error(formatMessage(e.message)) - } - config.messages = messages || {} - return config - } + return config }` const s = new MagicString(code) return { code: s.toString(), - map: options.sourcemap ? s.generateMap({ source: id, includeContent: true }) : undefined + map: options.sourcemap ? s.generateMap({ hires: true }) : undefined } } } @@ -169,7 +125,7 @@ export default async function() { return { code: s.toString(), - map: options.sourcemap ? s.generateMap({ source: id, includeContent: true }) : undefined + map: options.sourcemap ? s.generateMap({ hires: true }) : undefined } } } diff --git a/src/types.ts b/src/types.ts index 88834b17c..e66c1698e 100644 --- a/src/types.ts +++ b/src/types.ts @@ -59,7 +59,7 @@ export interface ExperimentalFeatures { jsTsFormatResource?: boolean } -export interface LocaleMessagePrecompileOptions { +export interface LocaleMessageCompilationOptions { strictMessage?: boolean escapeHtml?: boolean } @@ -69,7 +69,7 @@ export { I18nOptions } export type NuxtI18nOptions = { vueI18n?: string experimental?: ExperimentalFeatures - precompile?: LocaleMessagePrecompileOptions + compilation?: LocaleMessageCompilationOptions differentDomains?: boolean detectBrowserLanguage?: DetectBrowserLanguageOptions | false langDir?: string | null diff --git a/src/utils.ts b/src/utils.ts index c1435fcac..17b33cb87 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -180,10 +180,6 @@ export function readFileSync(path: string) { return _readFileSync(path, { encoding: 'utf-8' }) } -export async function rm(path: string) { - return await fs.rm(path, { recursive: true, force: true }) -} - export async function isExists(path: string) { try { await fs.access(path, FS_CONSTANTS.F_OK) @@ -219,38 +215,6 @@ export type PrerenderTarget = { path: string } -export type PrerenderTargets = ReturnType - -export function analyzePrerenderTargets(locales: LocaleInfo[], configs: VueI18nConfigPathInfo[]) { - const targets = new Map() - - // for locale files - for (const { path, hash, type, paths, hashes, types } of locales) { - if (path && hash && type === 'dynamic') { - const { ext } = parsePath(path) - EXECUTABLE_EXTENSIONS.includes(ext) && targets.set(hash, { type: 'locale', path }) - } - if (paths && hashes && types) { - paths.forEach((path, index) => { - const { ext } = parsePath(path) - EXECUTABLE_EXTENSIONS.includes(ext) && - types[index] === 'dynamic' && - targets.set(hashes[index], { type: 'locale', path }) - }) - } - } - - // for vue-i18n config files - for (const { absolute, hash } of configs) { - if (absolute && hash) { - const { ext } = parsePath(absolute) - EXECUTABLE_EXTENSIONS.includes(ext) && targets.set(hash, { type: 'config', path: absolute }) - } - } - - return targets -} - // eslint-disable-next-line @typescript-eslint/no-explicit-any export function toCode(code: any): string { if (code === null) { diff --git a/test/__snapshots__/gen.test.ts.snap b/test/__snapshots__/gen.test.ts.snap index cf4c04ea8..db0dd767e 100644 --- a/test/__snapshots__/gen.test.ts.snap +++ b/test/__snapshots__/gen.test.ts.snap @@ -20,14 +20,10 @@ export const resolveNuxtI18nOptions = async (context) => { return nuxtI18nOptions } -export const nuxtI18nOptionsDefault = Object({experimental: Object({\\"jsTsFormatResource\\":false}),precompile: Object({\\"strictMessage\\":true,\\"escapeHtml\\":false}),vueI18n: \\"\\",locales: [],defaultLocale: \\"\\",defaultDirection: \\"ltr\\",routesNameSeparator: \\"___\\",trailingSlash: false,defaultLocaleRouteNameSuffix: \\"default\\",strategy: \\"prefix_except_default\\",lazy: false,langDir: null,rootRedirect: null,detectBrowserLanguage: Object({\\"alwaysRedirect\\":false,\\"cookieCrossOrigin\\":false,\\"cookieDomain\\":null,\\"cookieKey\\":\\"i18n_redirected\\",\\"cookieSecure\\":false,\\"fallbackLocale\\":\\"\\",\\"redirectOn\\":\\"root\\",\\"useCookie\\":true}),differentDomains: false,baseUrl: \\"\\",dynamicRouteParams: false,customRoutes: \\"page\\",pages: Object({}),skipSettingLocaleOnNavigate: false,types: \\"composition\\",debug: false}) +export const nuxtI18nOptionsDefault = Object({experimental: Object({\\"jsTsFormatResource\\":false}),compilation: Object({\\"strictMessage\\":true,\\"escapeHtml\\":false}),vueI18n: \\"\\",locales: [],defaultLocale: \\"\\",defaultDirection: \\"ltr\\",routesNameSeparator: \\"___\\",trailingSlash: false,defaultLocaleRouteNameSuffix: \\"default\\",strategy: \\"prefix_except_default\\",lazy: false,langDir: null,rootRedirect: null,detectBrowserLanguage: Object({\\"alwaysRedirect\\":false,\\"cookieCrossOrigin\\":false,\\"cookieDomain\\":null,\\"cookieKey\\":\\"i18n_redirected\\",\\"cookieSecure\\":false,\\"fallbackLocale\\":\\"\\",\\"redirectOn\\":\\"root\\",\\"useCookie\\":true}),differentDomains: false,baseUrl: \\"\\",dynamicRouteParams: false,customRoutes: \\"page\\",pages: Object({}),skipSettingLocaleOnNavigate: false,types: \\"composition\\",debug: false}) export const nuxtI18nInternalOptions = Object({__normalizedLocales: [Object({\\"code\\":\\"en\\"})]}) export const NUXT_I18N_MODULE_ID = \\"@nuxtjs/i18n\\" -export const NUXT_I18N_PRECOMPILE_ENDPOINT = \\"/__i18n__/precompile\\" -export const NUXT_I18N_PRECOMPILED_LOCALE_KEY = \\"i18n-locales\\" -export const NUXT_I18N_PRERENDERED_PATH = \\"/__i18n__/prerender\\" -export const NULL_HASH = \\"00000000\\" export const isSSG = false " `; @@ -51,10 +47,6 @@ export const resolveNuxtI18nOptions = async (context) => { export const nuxtI18nInternalOptions = Object({__normalizedLocales: [Object({\\"code\\":\\"en\\"})]}) export const NUXT_I18N_MODULE_ID = \\"@nuxtjs/i18n\\" -export const NUXT_I18N_PRECOMPILE_ENDPOINT = \\"/__i18n__/precompile\\" -export const NUXT_I18N_PRECOMPILED_LOCALE_KEY = \\"i18n-locales\\" -export const NUXT_I18N_PRERENDERED_PATH = \\"/__i18n__/prerender\\" -export const NULL_HASH = \\"00000000\\" export const isSSG = false " `; @@ -78,10 +70,6 @@ export const resolveNuxtI18nOptions = async (context) => { export const nuxtI18nInternalOptions = Object({__normalizedLocales: [Object({\\"code\\":\\"en\\"})]}) export const NUXT_I18N_MODULE_ID = \\"@nuxtjs/i18n\\" -export const NUXT_I18N_PRECOMPILE_ENDPOINT = \\"/__i18n__/precompile\\" -export const NUXT_I18N_PRECOMPILED_LOCALE_KEY = \\"i18n-locales\\" -export const NUXT_I18N_PRERENDERED_PATH = \\"/__i18n__/prerender\\" -export const NULL_HASH = \\"00000000\\" export const isSSG = false " `; @@ -107,10 +95,6 @@ export const resolveNuxtI18nOptions = async (context) => { export const nuxtI18nInternalOptions = Object({__normalizedLocales: [Object({\\"code\\":\\"en\\"})]}) export const NUXT_I18N_MODULE_ID = \\"@nuxtjs/i18n\\" -export const NUXT_I18N_PRECOMPILE_ENDPOINT = \\"/__i18n__/precompile\\" -export const NUXT_I18N_PRECOMPILED_LOCALE_KEY = \\"i18n-locales\\" -export const NUXT_I18N_PRERENDERED_PATH = \\"/__i18n__/prerender\\" -export const NULL_HASH = \\"00000000\\" export const isSSG = false " `; @@ -133,14 +117,10 @@ export const resolveNuxtI18nOptions = async (context) => { return nuxtI18nOptions } -export const nuxtI18nOptionsDefault = Object({experimental: Object({\\"jsTsFormatResource\\":false}),precompile: Object({\\"strictMessage\\":true,\\"escapeHtml\\":false}),vueI18n: \\"\\",locales: [],defaultLocale: \\"\\",defaultDirection: \\"ltr\\",routesNameSeparator: \\"___\\",trailingSlash: false,defaultLocaleRouteNameSuffix: \\"default\\",strategy: \\"prefix_except_default\\",lazy: false,langDir: null,rootRedirect: null,detectBrowserLanguage: Object({\\"alwaysRedirect\\":false,\\"cookieCrossOrigin\\":false,\\"cookieDomain\\":null,\\"cookieKey\\":\\"i18n_redirected\\",\\"cookieSecure\\":false,\\"fallbackLocale\\":\\"\\",\\"redirectOn\\":\\"root\\",\\"useCookie\\":true}),differentDomains: false,baseUrl: \\"\\",dynamicRouteParams: false,customRoutes: \\"page\\",pages: Object({}),skipSettingLocaleOnNavigate: false,types: \\"composition\\",debug: false}) +export const nuxtI18nOptionsDefault = Object({experimental: Object({\\"jsTsFormatResource\\":false}),compilation: Object({\\"strictMessage\\":true,\\"escapeHtml\\":false}),vueI18n: \\"\\",locales: [],defaultLocale: \\"\\",defaultDirection: \\"ltr\\",routesNameSeparator: \\"___\\",trailingSlash: false,defaultLocaleRouteNameSuffix: \\"default\\",strategy: \\"prefix_except_default\\",lazy: false,langDir: null,rootRedirect: null,detectBrowserLanguage: Object({\\"alwaysRedirect\\":false,\\"cookieCrossOrigin\\":false,\\"cookieDomain\\":null,\\"cookieKey\\":\\"i18n_redirected\\",\\"cookieSecure\\":false,\\"fallbackLocale\\":\\"\\",\\"redirectOn\\":\\"root\\",\\"useCookie\\":true}),differentDomains: false,baseUrl: \\"\\",dynamicRouteParams: false,customRoutes: \\"page\\",pages: Object({}),skipSettingLocaleOnNavigate: false,types: \\"composition\\",debug: false}) export const nuxtI18nInternalOptions = Object({__normalizedLocales: [Object({\\"code\\":\\"en\\"})]}) export const NUXT_I18N_MODULE_ID = \\"@nuxtjs/i18n\\" -export const NUXT_I18N_PRECOMPILE_ENDPOINT = \\"/__i18n__/precompile\\" -export const NUXT_I18N_PRECOMPILED_LOCALE_KEY = \\"i18n-locales\\" -export const NUXT_I18N_PRERENDERED_PATH = \\"/__i18n__/prerender\\" -export const NULL_HASH = \\"00000000\\" export const isSSG = false " `; @@ -163,14 +143,10 @@ export const resolveNuxtI18nOptions = async (context) => { return nuxtI18nOptions } -export const nuxtI18nOptionsDefault = Object({experimental: Object({\\"jsTsFormatResource\\":false}),precompile: Object({\\"strictMessage\\":true,\\"escapeHtml\\":false}),vueI18n: \\"\\",locales: [],defaultLocale: \\"\\",defaultDirection: \\"ltr\\",routesNameSeparator: \\"___\\",trailingSlash: false,defaultLocaleRouteNameSuffix: \\"default\\",strategy: \\"prefix_except_default\\",lazy: false,langDir: null,rootRedirect: null,detectBrowserLanguage: Object({\\"alwaysRedirect\\":false,\\"cookieCrossOrigin\\":false,\\"cookieDomain\\":null,\\"cookieKey\\":\\"i18n_redirected\\",\\"cookieSecure\\":false,\\"fallbackLocale\\":\\"\\",\\"redirectOn\\":\\"root\\",\\"useCookie\\":true}),differentDomains: false,baseUrl: \\"\\",dynamicRouteParams: false,customRoutes: \\"page\\",pages: Object({}),skipSettingLocaleOnNavigate: false,types: \\"composition\\",debug: false}) +export const nuxtI18nOptionsDefault = Object({experimental: Object({\\"jsTsFormatResource\\":false}),compilation: Object({\\"strictMessage\\":true,\\"escapeHtml\\":false}),vueI18n: \\"\\",locales: [],defaultLocale: \\"\\",defaultDirection: \\"ltr\\",routesNameSeparator: \\"___\\",trailingSlash: false,defaultLocaleRouteNameSuffix: \\"default\\",strategy: \\"prefix_except_default\\",lazy: false,langDir: null,rootRedirect: null,detectBrowserLanguage: Object({\\"alwaysRedirect\\":false,\\"cookieCrossOrigin\\":false,\\"cookieDomain\\":null,\\"cookieKey\\":\\"i18n_redirected\\",\\"cookieSecure\\":false,\\"fallbackLocale\\":\\"\\",\\"redirectOn\\":\\"root\\",\\"useCookie\\":true}),differentDomains: false,baseUrl: \\"\\",dynamicRouteParams: false,customRoutes: \\"page\\",pages: Object({}),skipSettingLocaleOnNavigate: false,types: \\"composition\\",debug: false}) export const nuxtI18nInternalOptions = Object({__normalizedLocales: [Object({\\"code\\":\\"en\\"})]}) export const NUXT_I18N_MODULE_ID = \\"@nuxtjs/i18n\\" -export const NUXT_I18N_PRECOMPILE_ENDPOINT = \\"/__i18n__/precompile\\" -export const NUXT_I18N_PRECOMPILED_LOCALE_KEY = \\"i18n-locales\\" -export const NUXT_I18N_PRERENDERED_PATH = \\"/__i18n__/prerender\\" -export const NULL_HASH = \\"00000000\\" export const isSSG = false " `; @@ -188,17 +164,17 @@ export const localeMessages = { } export const additionalMessages = Object({\\"en\\":[() => Promise.resolve({ - \\"foo\\": (()=>{const fn=(ctx) => {const { normalize: _normalize } = ctx;return _normalize([\\"foo\\"])};fn.source=\\"foo\\";return fn;})(), - \\"hello\\": (()=>{const fn=(ctx) => {const { normalize: _normalize } = ctx;return _normalize([\\"hello1\\"])};fn.source=\\"hello1\\";return fn;})() + \\"foo\\": {\\"type\\":0,\\"start\\":0,\\"end\\":3,\\"loc\\":{\\"start\\":{\\"line\\":1,\\"column\\":1,\\"offset\\":0},\\"end\\":{\\"line\\":1,\\"column\\":4,\\"offset\\":3},\\"source\\":\\"foo\\"},\\"body\\":{\\"type\\":2,\\"start\\":0,\\"end\\":3,\\"loc\\":{\\"start\\":{\\"line\\":1,\\"column\\":1,\\"offset\\":0},\\"end\\":{\\"line\\":1,\\"column\\":4,\\"offset\\":3}},\\"items\\":[{\\"type\\":3,\\"start\\":0,\\"end\\":3,\\"loc\\":{\\"start\\":{\\"line\\":1,\\"column\\":1,\\"offset\\":0},\\"end\\":{\\"line\\":1,\\"column\\":4,\\"offset\\":3}},\\"value\\":\\"foo\\"}],\\"static\\":\\"foo\\"}}, + \\"hello\\": {\\"type\\":0,\\"start\\":0,\\"end\\":6,\\"loc\\":{\\"start\\":{\\"line\\":1,\\"column\\":1,\\"offset\\":0},\\"end\\":{\\"line\\":1,\\"column\\":7,\\"offset\\":6},\\"source\\":\\"hello1\\"},\\"body\\":{\\"type\\":2,\\"start\\":0,\\"end\\":6,\\"loc\\":{\\"start\\":{\\"line\\":1,\\"column\\":1,\\"offset\\":0},\\"end\\":{\\"line\\":1,\\"column\\":7,\\"offset\\":6}},\\"items\\":[{\\"type\\":3,\\"start\\":0,\\"end\\":6,\\"loc\\":{\\"start\\":{\\"line\\":1,\\"column\\":1,\\"offset\\":0},\\"end\\":{\\"line\\":1,\\"column\\":7,\\"offset\\":6}},\\"value\\":\\"hello1\\"}],\\"static\\":\\"hello1\\"}} }),() => Promise.resolve({ - \\"bar\\": (()=>{const fn=(ctx) => {const { normalize: _normalize } = ctx;return _normalize([\\"bar\\"])};fn.source=\\"bar\\";return fn;})(), - \\"hello\\": (()=>{const fn=(ctx) => {const { normalize: _normalize } = ctx;return _normalize([\\"hello2\\"])};fn.source=\\"hello2\\";return fn;})() + \\"bar\\": {\\"type\\":0,\\"start\\":0,\\"end\\":3,\\"loc\\":{\\"start\\":{\\"line\\":1,\\"column\\":1,\\"offset\\":0},\\"end\\":{\\"line\\":1,\\"column\\":4,\\"offset\\":3},\\"source\\":\\"bar\\"},\\"body\\":{\\"type\\":2,\\"start\\":0,\\"end\\":3,\\"loc\\":{\\"start\\":{\\"line\\":1,\\"column\\":1,\\"offset\\":0},\\"end\\":{\\"line\\":1,\\"column\\":4,\\"offset\\":3}},\\"items\\":[{\\"type\\":3,\\"start\\":0,\\"end\\":3,\\"loc\\":{\\"start\\":{\\"line\\":1,\\"column\\":1,\\"offset\\":0},\\"end\\":{\\"line\\":1,\\"column\\":4,\\"offset\\":3}},\\"value\\":\\"bar\\"}],\\"static\\":\\"bar\\"}}, + \\"hello\\": {\\"type\\":0,\\"start\\":0,\\"end\\":6,\\"loc\\":{\\"start\\":{\\"line\\":1,\\"column\\":1,\\"offset\\":0},\\"end\\":{\\"line\\":1,\\"column\\":7,\\"offset\\":6},\\"source\\":\\"hello2\\"},\\"body\\":{\\"type\\":2,\\"start\\":0,\\"end\\":6,\\"loc\\":{\\"start\\":{\\"line\\":1,\\"column\\":1,\\"offset\\":0},\\"end\\":{\\"line\\":1,\\"column\\":7,\\"offset\\":6}},\\"items\\":[{\\"type\\":3,\\"start\\":0,\\"end\\":6,\\"loc\\":{\\"start\\":{\\"line\\":1,\\"column\\":1,\\"offset\\":0},\\"end\\":{\\"line\\":1,\\"column\\":7,\\"offset\\":6}},\\"value\\":\\"hello2\\"}],\\"static\\":\\"hello2\\"}} }),],\\"ja\\":[() => Promise.resolve({ - \\"buz\\": (()=>{const fn=(ctx) => {const { normalize: _normalize } = ctx;return _normalize([\\"buz\\"])};fn.source=\\"buz\\";return fn;})(), - \\"hello\\": (()=>{const fn=(ctx) => {const { normalize: _normalize } = ctx;return _normalize([\\"hello3\\"])};fn.source=\\"hello3\\";return fn;})() + \\"buz\\": {\\"type\\":0,\\"start\\":0,\\"end\\":3,\\"loc\\":{\\"start\\":{\\"line\\":1,\\"column\\":1,\\"offset\\":0},\\"end\\":{\\"line\\":1,\\"column\\":4,\\"offset\\":3},\\"source\\":\\"buz\\"},\\"body\\":{\\"type\\":2,\\"start\\":0,\\"end\\":3,\\"loc\\":{\\"start\\":{\\"line\\":1,\\"column\\":1,\\"offset\\":0},\\"end\\":{\\"line\\":1,\\"column\\":4,\\"offset\\":3}},\\"items\\":[{\\"type\\":3,\\"start\\":0,\\"end\\":3,\\"loc\\":{\\"start\\":{\\"line\\":1,\\"column\\":1,\\"offset\\":0},\\"end\\":{\\"line\\":1,\\"column\\":4,\\"offset\\":3}},\\"value\\":\\"buz\\"}],\\"static\\":\\"buz\\"}}, + \\"hello\\": {\\"type\\":0,\\"start\\":0,\\"end\\":6,\\"loc\\":{\\"start\\":{\\"line\\":1,\\"column\\":1,\\"offset\\":0},\\"end\\":{\\"line\\":1,\\"column\\":7,\\"offset\\":6},\\"source\\":\\"hello3\\"},\\"body\\":{\\"type\\":2,\\"start\\":0,\\"end\\":6,\\"loc\\":{\\"start\\":{\\"line\\":1,\\"column\\":1,\\"offset\\":0},\\"end\\":{\\"line\\":1,\\"column\\":7,\\"offset\\":6}},\\"items\\":[{\\"type\\":3,\\"start\\":0,\\"end\\":6,\\"loc\\":{\\"start\\":{\\"line\\":1,\\"column\\":1,\\"offset\\":0},\\"end\\":{\\"line\\":1,\\"column\\":7,\\"offset\\":6}},\\"value\\":\\"hello3\\"}],\\"static\\":\\"hello3\\"}} }),() => Promise.resolve({ - \\"baz\\": (()=>{const fn=(ctx) => {const { normalize: _normalize } = ctx;return _normalize([\\"baz\\"])};fn.source=\\"baz\\";return fn;})(), - \\"hello\\": (()=>{const fn=(ctx) => {const { normalize: _normalize } = ctx;return _normalize([\\"hello4\\"])};fn.source=\\"hello4\\";return fn;})() + \\"baz\\": {\\"type\\":0,\\"start\\":0,\\"end\\":3,\\"loc\\":{\\"start\\":{\\"line\\":1,\\"column\\":1,\\"offset\\":0},\\"end\\":{\\"line\\":1,\\"column\\":4,\\"offset\\":3},\\"source\\":\\"baz\\"},\\"body\\":{\\"type\\":2,\\"start\\":0,\\"end\\":3,\\"loc\\":{\\"start\\":{\\"line\\":1,\\"column\\":1,\\"offset\\":0},\\"end\\":{\\"line\\":1,\\"column\\":4,\\"offset\\":3}},\\"items\\":[{\\"type\\":3,\\"start\\":0,\\"end\\":3,\\"loc\\":{\\"start\\":{\\"line\\":1,\\"column\\":1,\\"offset\\":0},\\"end\\":{\\"line\\":1,\\"column\\":4,\\"offset\\":3}},\\"value\\":\\"baz\\"}],\\"static\\":\\"baz\\"}}, + \\"hello\\": {\\"type\\":0,\\"start\\":0,\\"end\\":6,\\"loc\\":{\\"start\\":{\\"line\\":1,\\"column\\":1,\\"offset\\":0},\\"end\\":{\\"line\\":1,\\"column\\":7,\\"offset\\":6},\\"source\\":\\"hello4\\"},\\"body\\":{\\"type\\":2,\\"start\\":0,\\"end\\":6,\\"loc\\":{\\"start\\":{\\"line\\":1,\\"column\\":1,\\"offset\\":0},\\"end\\":{\\"line\\":1,\\"column\\":7,\\"offset\\":6}},\\"items\\":[{\\"type\\":3,\\"start\\":0,\\"end\\":6,\\"loc\\":{\\"start\\":{\\"line\\":1,\\"column\\":1,\\"offset\\":0},\\"end\\":{\\"line\\":1,\\"column\\":7,\\"offset\\":6}},\\"value\\":\\"hello4\\"}],\\"static\\":\\"hello4\\"}} }),],}) export const resolveNuxtI18nOptions = async (context) => { @@ -241,10 +217,6 @@ export const resolveNuxtI18nOptions = async (context) => { export const nuxtI18nInternalOptions = Object({__normalizedLocales: [Object({\\"code\\":\\"en\\"})]}) export const NUXT_I18N_MODULE_ID = \\"@nuxtjs/i18n\\" -export const NUXT_I18N_PRECOMPILE_ENDPOINT = \\"/__i18n__/precompile\\" -export const NUXT_I18N_PRECOMPILED_LOCALE_KEY = \\"i18n-locales\\" -export const NUXT_I18N_PRERENDERED_PATH = \\"/__i18n__/prerender\\" -export const NULL_HASH = \\"00000000\\" export const isSSG = false " `;