Compare commits

...
Author SHA1 Message Date
github-actions[bot]GitHubgithub-actions[bot] <github-actions[bot]@users.noreply.github.com>
880cb1972d Version Packages (#60)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2023-09-11 20:05:29 +02:00
Sasha Sorokin 979f2bdedd Add more SEO options 2023-09-11 19:59:11 +02:00
Sasha Sorokin 7cb833df1e Switch to bundler module resolution 2023-09-11 19:35:14 +02:00
Sasha SorokinandGitHub 682133f893 Add Bing verification file (#53) 2023-08-21 05:00:27 +02:00
renovate[bot]GitHubrenovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
9bff4db4c1 Update typescript-eslint monorepo to v6 (#52)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-11 03:47:58 +02:00
github-actions[bot]GitHubgithub-actions[bot] <github-actions[bot]@users.noreply.github.com>
70c4dfab73 Version Packages (#50)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2023-07-12 03:27:10 +02:00
Sasha SorokinandGitHub e1c501caad Improve alternate links generation (#49) 2023-07-12 03:25:31 +02:00
github-actions[bot] b883a37aeb Version Packages 2023-06-19 12:50:57 +00:00
Sasha Sorokin 951f36381f Add graceful fallback for unknown locales in storage 2023-06-19 14:47:00 +02:00
Sasha Sorokin ae71089e74 Use automatic locale if none returned by the storage 2023-06-19 13:58:25 +02:00
github-actions[bot]andSasha Sorokin e45e0fdde9 Version Packages 2023-06-14 12:23:31 +01:00
Sasha Sorokin db449d439a Fix missing options in the newer Nuxt versions 2023-06-14 13:15:51 +02:00
20 changed files with 713 additions and 179 deletions
@@ -12,15 +12,16 @@ Represents the VIntl module options.
**Properties**
| Property | Default | Description |
| :---------------------- | :------------------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `defaultLocale` | | A string that represents the BCP 47 code of the locale to use by default. |
| `resolveDir` | `'.'` | An optional string that represents a directory where all the imports associated with the locales are being resolved. If it's relative, then it will be resolved against the Nuxt `srcDir` directory. If this property is not set, modules will be resolved from the Nuxt `srcDir`. |
| `locales` | | An array of [`LocaleDescriptor`] objects that represent all the configured locales. |
| `storage` | | An optional string that represents either a built-in storage name (`localStorage` / `cookie`), or a node import specifier that exports a custom storage adapter as the default export. |
| `broadcastLocaleChange` | `true` | An optional boolean value that determines whether to use [`BroadcastChannel`] (if available) to synchronize the locale changes between the tabs on the same origin. |
| `hostLanguageParam` | `'hl'` | An optional name of the query parameter used to override the user language (including automatically detected one). It is used to generate SEO meta tags. Using `null` will disable them. |
| `parserless` | `{ enabled: false }` | An optional [`ParserlessOptions`] object or [`ParserlessMode`] which configures the parserless mode. |
| Property | Default | Description |
| :---------------------- | :-----: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `defaultLocale` | | A string that represents the BCP 47 code of the locale to use by default. |
| `resolveDir` | `'.'` | An optional string that represents a directory where all the imports associated with the locales are being resolved. If it's relative, then it will be resolved against the Nuxt `srcDir` directory. If this property is not set, modules will be resolved from the Nuxt `srcDir`. |
| `locales` | | An array of [`LocaleDescriptor`] objects that represent all the configured locales. |
| `storage` | | An optional string that represents either a built-in storage name (`localStorage` / `cookie`), or a node import specifier that exports a custom storage adapter as the default export. |
| `broadcastLocaleChange` | `true` | An optional boolean value that determines whether to use [`BroadcastChannel`] (if available) to synchronize the locale changes between the tabs on the same origin. |
| `hostLanguageParam` | `'hl'` | **Deprecated.** An optional name of the query parameter used to override the user language (including automatically detected one). It is used to generate SEO meta tags. Using `null` will disable them. |
| `parserless` | `<...>` | An optional [`ParserlessOptions`] object or [`ParserlessMode`] which configures the parserless mode. |
| `seo` | `<...>` | An optional [`SEOOptions`] object which configures automatic head tags to improve discoverability of other languages by search engines. |
[`BroadcastChannel`]: https://developer.mozilla.org/en-US/docs/Web/API/BroadcastChannel
[`ParserlessOptions`]: #parserlessoptions
@@ -131,9 +132,9 @@ Represents an import source for the messages file. It is similar to the [`Import
Represents options for the parserless mode.
| Property | Description |
| :-------- | :----------------------------------------------------------------------- |
| `enabled` | A `ParserlessMode` value representing the status of the parserless mode. |
| Property | Default | Description |
| :-------- | :-----: | :----------------------------------------------------------------------- |
| `enabled` | `false` | A `ParserlessMode` value representing the status of the parserless mode. |
## `ParserlessMode`
@@ -144,3 +145,19 @@ A string or boolean value representing the status of the parserless mode.
| `always` | `true` | Parserless mode is always enabled, regardless of the mode in which Nuxt is running. |
| `only-prod` | | Parserless mode is only enabled when building Nuxt app for production. |
| `never` | `false` | Parserless mode is never enabled, the parser is always present in the runtime. |
## `SEOOptions`
[`SEOOptions`]: #seooptions
Represents options for the automatic head tags.
By default VIntl will add `<link>` tags for every language to make search engines aware of other languages, you can disable this by setting `enabled` to `false`.
| Property | Default | Description |
| :-------------------------- | :-----: | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `enabled` | `true` | A boolean value representing whether VIntl should automatically add `<link>` tags to `<head>` of the site. These tags make search engines aware that your site is provided in different languages. |
| `hostLanguageParameter`: | `hl` | A string value representing the query parameter that VIntl would use to configure the language of the site. |
| `baseURL` | | **Recommended.** An optional string value representing the base URL of the site. If not set, VIntl will try to guess the URL based on inital request URL or the current `window.location`. |
| `defaultLocaleHasParameter` | `true` | A boolean value representing whether the default locale should have a host language parameter. Disabling this may make URLs of visitors cleaner, however it is not correct, because lack of host language instructs VIntl to use user's language (either the one they've used before or browser's one). |
| `xDefaultHreflang` | `true` | A boolean value representing whether the `x-default` hreflang is present. |
+4
View File
@@ -0,0 +1,4 @@
<?xml version="1.0"?>
<users>
<user>9491DAF6E17F64A987F923EC70F0BAEE</user>
</users>
+6
View File
@@ -8,6 +8,9 @@
"index.other-page": {
"message": "To the other page"
},
"index.use-automatic": {
"message": "Use automatic"
},
"language": {
"message": "Language"
},
@@ -17,6 +20,9 @@
"other-page.back": {
"message": "Go back"
},
"other-page.description": {
"message": "You must've clicked me a thousand times"
},
"other-page.title": {
"message": "Hello from the other page!"
}
+9
View File
@@ -16,6 +16,11 @@ export default defineNuxtConfig({
format: 'crowdin',
},
],
meta: {
static: {
iso: 'en',
},
},
},
{
tag: 'uk',
@@ -30,5 +35,9 @@ export default defineNuxtConfig({
storage: 'cookie',
broadcastLocaleChange: true,
parserless: 'always',
seo: {
xDefaultHreflang: false,
defaultLocaleHasParameter: false,
},
},
})
+1 -1
View File
@@ -10,7 +10,7 @@
"generate": "nuxi generate",
"preview": "nuxi preview",
"lint": "eslint --cache .",
"intl:extract": "formatjs extract \"{,components,composables,layouts,middleware,modules,pages,plugins,utils}/**/*.{vue,ts,tsx,js,jsx,mts,cts,mjs,cjs}\" --ignore '**/*.d.ts' --ignore 'node_modules' --out-file locales/en-US.json --format simple",
"intl:extract": "formatjs extract \"{,components,composables,layouts,middleware,modules,pages,plugins,utils}/**/*.{vue,ts,tsx,js,jsx,mts,cts,mjs,cjs}\" --ignore '**/*.d.ts' --ignore 'node_modules' --out-file locales/en-US.json --format crowdin",
"start": "node .output/server/index.mjs"
},
"devDependencies": {
+56 -23
View File
@@ -23,47 +23,80 @@ const messages = defineMessages({
id: 'index.other-page',
defaultMessage: 'To the other page',
},
useAutomatic: {
id: 'index.use-automatic',
defaultMessage: 'Use automatic',
},
} as const)
const vintl = useVIntl()
const { formatMessage } = vintl
const changing = ref(false)
async function changeLocale(locale: string) {
if (changing.value) return
changing.value = true
try {
await vintl.changeLocale(locale)
} catch (err) {
console.error('Error changing locale', err)
} finally {
changing.value = false
}
}
const noop = () => {}
const currentLocale = computed({
get() {
return vintl.locale
},
set() {
// ignore
set(value) {
changeLocale(value).then(noop, noop)
},
})
async function onLocaleChange(e: Event) {
await vintl.changeLocale(
(e as Event & { target: HTMLSelectElement }).target.value,
)
}
const useAutomatic = computed({
get() {
return vintl.automatic
},
set(value) {
changeLocale(value ? 'auto' : vintl.locale).then(noop, noop)
},
})
</script>
<template>
<div>
<div>
<h3>{{ formatMessage(messages.options) }}</h3>
<label for="language-select">
{{ formatMessage(messages.language) }}
</label>
<select
id="language-select"
v-model="currentLocale"
@change="onLocaleChange"
>
<option
v-for="locale in [...$nuxt.$i18n.$locales.value.keys()]"
:key="locale.tag"
:value="locale.tag"
>
{{ locale.tag }}
</option>
</select>
<div>
<label>
<input v-model="useAutomatic" type="checkbox" />
{{ formatMessage(messages.useAutomatic) }}
</label>
</div>
<div>
<label>
{{ formatMessage(messages.language) }}
<select
id="language-select"
v-model="currentLocale"
:disabled="vintl.automatic"
@change="onLocaleChange"
>
<option
v-for="locale in [...$nuxt.$i18n.$locales.value.keys()]"
:key="locale.tag"
:value="locale.tag"
>
{{ locale.tag }}
</option>
</select>
</label>
</div>
</div>
<div>
+3 -1
View File
@@ -28,7 +28,9 @@
"no-useless-constructor": "off",
"@typescript-eslint/no-useless-constructor": "warn",
"brace-style": "off",
"vue/singleline-html-element-content-newline": "off"
"vue/singleline-html-element-content-newline": "off",
"vue/max-attributes-per-line": "off",
"vue/html-self-closing": "off"
},
"parserOptions": {
"extraFileExtensions": [".vue"]
+2 -2
View File
@@ -27,8 +27,8 @@
],
"dependencies": {
"@rushstack/eslint-patch": "^1.3.0",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint-plugin-vue": "^9.14.1",
"typescript": "^5.1.3"
},
+46
View File
@@ -1,5 +1,51 @@
# @vintl/nuxt
## 1.5.0
### Minor Changes
- 979f2bd: Add more SEO options
Two options have been added to the SEO configuration:
- `defaultLocaleHasParameter` allows to disable the host language parameter for the default locale.
This is not recommended and not correct, because lack of the host language parameter instructs VIntl to use user's language (either the one they've used before or browser's one). However, it may be useful in some cases.
- `xDefaultHreflang` allows to disable the `x-default` hreflang in case it's not useful to have (e.g. you disable the automatic language detection), although this is quite rare.
## 1.4.0
### Minor Changes
- e1c501c: Improve alternate links generation
Generation of `alternate` `hreflang` links has been improved to properly use absolute URLs.
Since there's no good way to know the URL of the site, there's now also `seo.baseURL` option which allows to set site's proper domain.
`hostLanguageParam` option has been deperecated in favour of `seo.hostLanguageParameter`, which functions almost the same way, except it does not accept `null`. If you want to disable generation of such tags or handle them yourself, you can set `seo.enabled` to `false`.
See [Configuration](https://vintl-nuxt.netlify.app/introduction/configuration#seooptions) documentation page for more details.
## 1.3.0
### Minor Changes
- 951f363: Add graceful fallback for unknown locales in storage
### Patch Changes
- ae71089: Use automatic locale if none returned by the storage
Fixed a bug where automatic locale would not be restored from the storage properly on the next page reload, despite it being saved properly.
## 1.2.3
### Patch Changes
- db449d4: Fix missing options in the newer Nuxt versions
## 1.2.2
### Patch Changes
+5 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@vintl/nuxt",
"version": "1.2.2",
"version": "1.5.0",
"description": "Nuxt Module for VIntl integration",
"keywords": [
"i18n",
@@ -47,10 +47,12 @@
"@vintl-dev/eslint-config-peony": "workspace:^",
"hookable": "^5.5.3",
"prettier-plugin-jsdoc": "^0.4.2",
"typescript": "^5.1.3"
"typescript": "^5.1.3",
"vue-router": "^4.2.4"
},
"dependencies": {
"@formatjs/intl": "2.7.2",
"@formatjs/intl-localematcher": "^0.4.0",
"@nuxt/kit": "^3.5.3",
"@vintl/unplugin": "^1.2.4",
"@vintl/vintl": "^4.2.1",
@@ -61,6 +63,7 @@
"pathe": "^1.1.1",
"picocolors": "^1.0.0",
"slash": "^5.1.0",
"ufo": "^1.1.2",
"zod": "^3.21.4"
}
}
+2 -2
View File
@@ -28,9 +28,9 @@ const optionsFilePath = 'i18n/options.mjs'
type _InputModuleOptions = typeof moduleOptionsSchema
export interface InputModuleOptions extends t.input<_InputModuleOptions> {}
export interface ModuleOptions extends t.input<_InputModuleOptions> {}
export default defineNuxtModule<InputModuleOptions>({
export default defineNuxtModule<ModuleOptions>({
meta: {
name: '@vintl/nuxt',
configKey: 'vintl',
+2 -2
View File
@@ -1020,8 +1020,8 @@ export function generate(
new ExportNamedDeclaration().setDeclaration(
new VariableDeclaration('const', [
new VariableDeclarator(
new Identifier('hostLanguageParam'),
new Literal(opts.hostLanguageParam),
new Identifier('seo'),
new Literal(null).setRaw(JSON.stringify(opts.seo)),
),
]),
),
+40 -15
View File
@@ -1,11 +1,12 @@
import { useHead } from '#imports'
import type { SEOOptions } from '@vintl/nuxt-runtime/options'
import type { IntlController } from '@vintl/vintl/controller'
import { useRouter as _useRouter, useRequestURL } from 'nuxt/app'
import { joinURL } from 'ufo'
import { computed } from 'vue'
import { useRouter } from 'nuxt/app'
import type { LocationQuery, useRouter as _useRouter$type } from 'vue-router'
type LocationQuery = ReturnType<
typeof useRouter
>['currentRoute']['value']['query']
const useRouter = _useRouter as typeof _useRouter$type
// I wish there was a better way to do this T_T
function getSeachParams(query: LocationQuery) {
@@ -35,11 +36,29 @@ type LangHrefLink = {
href: string
}
export function initHead(controller: IntlController<any>, hlParam: string) {
type HeadOptions = Omit<SEOOptions, 'enabled'>
export function initHead(
controller: IntlController<any>,
options: HeadOptions,
) {
const router = useRouter()
const currentRoute = computed(() => router.currentRoute.value)
const requestURL = useRequestURL()
const normalizeURL = (url: string) => {
try {
return options.baseURL == null
? new URL(url, requestURL).toString()
: joinURL(options.baseURL, url)
} catch (err) {
console.error(`[vintl] cannot normalize url: ${String(err)}`)
return url
}
}
useHead({
htmlAttrs: {
lang: () => controller.$config.locale,
@@ -51,37 +70,43 @@ export function initHead(controller: IntlController<any>, hlParam: string) {
const query = String(getSeachParams(route.query))
const { path } = route
let defaultEntry: LangHrefLink
const hrefLangs: Map<string, LangHrefLink> = new Map()
{
if (options.xDefaultHreflang) {
const sp = new URLSearchParams(query)
sp.delete(hlParam)
defaultEntry = {
sp.delete(options.hostLanguageParameter)
hrefLangs.set('x-default', {
// key: `hreflang-default`,
rel: 'alternate',
hreflang: 'x-default',
href: withQueryParams(path, sp.toString()),
}
href: normalizeURL(withQueryParams(path, sp.toString())),
})
}
const hrefLangs: Map<string, LangHrefLink> = new Map()
for (const locale of controller.availableLocales) {
const hrefLang = locale.meta?.static?.iso ?? locale.tag
if (hrefLangs.has(hrefLang)) continue
const sp = new URLSearchParams(query)
sp.set(hlParam, locale.tag)
if (
controller.defaultLocale === locale.tag &&
!options.defaultLocaleHasParameter
) {
sp.delete(options.hostLanguageParameter)
} else {
sp.set(options.hostLanguageParameter, locale.tag)
}
hrefLangs.set(hrefLang, {
// key: `hreflang-${locale.tag}`,
rel: 'alternate',
hreflang: hrefLang,
href: withQueryParams(path, sp.toString()),
href: normalizeURL(withQueryParams(path, sp.toString())),
})
}
return [defaultEntry, ...hrefLangs.values()]
return Array.from(hrefLangs.values())
},
})
}
+17 -5
View File
@@ -3,8 +3,8 @@ import {
localeDefinitions,
storageAdapterFactory,
broadcastLocaleChange,
hostLanguageParam,
parserless,
seo as seoOptions,
} from '@vintl/nuxt-runtime/options'
import type { LocaleDescriptor, MessageValueType } from '@vintl/vintl'
import type { IntlController } from '@vintl/vintl/controller'
@@ -21,6 +21,7 @@ import { useAcceptLanguageHeader } from '@vintl/vintl/sources/header'
import { defineNuxtPlugin } from 'nuxt/app'
import { syncCaller } from './utils/hookable.js'
import { initHead } from './head.js'
import { match as matchLocales } from '@formatjs/intl-localematcher'
export default defineNuxtPlugin(async (nuxtApp) => {
const locales: LocaleDescriptor[] = Object.entries(localeDefinitions).map(
@@ -41,8 +42,8 @@ export default defineNuxtPlugin(async (nuxtApp) => {
}
}
if (hostLanguageParam != null) {
let hlLocale = nuxtApp._route.query[hostLanguageParam]
if (seoOptions.enabled) {
let hlLocale = nuxtApp._route.query[seoOptions.hostLanguageParameter]
if (Array.isArray(hlLocale)) {
hlLocale = hlLocale[0]
@@ -53,12 +54,23 @@ export default defineNuxtPlugin(async (nuxtApp) => {
}
}
if (locale != null) {
const match = matchLocales(
[locale],
locales.map(({ tag }) => tag),
'en-x-placeholder',
)
locale = match == 'en-x-placeholder' ? undefined : match
}
const plugin = createPlugin<MessageValueType>({
injectInto: [nuxtApp],
controllerOpts: {
defaultLocale,
locales,
locale,
usePreferredLocale: locale == null,
listen: {
error(event) {
nuxtApp.hooks.callHookWith(syncCaller, 'i18n:error', {
@@ -139,8 +151,8 @@ export default defineNuxtPlugin(async (nuxtApp) => {
setupBroadcasting(controller)
}
if (hostLanguageParam != null) {
nuxtApp.hook('vue:setup', () => initHead(controller, hostLanguageParam!))
if (seoOptions.enabled) {
nuxtApp.hook('vue:setup', () => initHead(controller, seoOptions))
}
await nuxtApp.callHook('i18n:ready', controller)
@@ -2,6 +2,7 @@ import { z as t } from 'zod'
import { tSwitch } from '../utils/zod-utils.js'
import { languageTagSchema } from './language-tag.js'
import { localeDescriptorSchema } from './locales.js'
import { seoOptions } from './seo.js'
const parselessModeEnumSchema = t.enum(['always', 'only-prod', 'never'])
@@ -167,6 +168,7 @@ export const moduleOptionsSchema = t
* user language. `null` to disable. If this value is `null`, the SEO tags
* generation will be disabled.
*
* @deprecated Use `seo` options instead.
* @default 'hl' // For example, ?hl=en to use English locale (if defined).
*/
hostLanguageParam: t
@@ -174,8 +176,10 @@ export const moduleOptionsSchema = t
.describe(
'Name of the host language URL parameter, used to override the default or user language.',
)
.nullable()
.default('hl'),
.optional()
.nullable(),
seo: seoOptions.optional(),
/**
* Configuration options for the parserless mode, a mode in which the parser
@@ -197,6 +201,21 @@ export const moduleOptionsSchema = t
}
}).default('only-prod'),
})
.transform((from) => {
if (from.seo === undefined) {
let hostLanguageParam = from.hostLanguageParam
if (hostLanguageParam === undefined) {
hostLanguageParam = 'hl'
}
from.seo = seoOptions.parse({
enabled: hostLanguageParam != null,
hostLanguageParameter: hostLanguageParam ?? undefined,
})
}
return from as typeof from & { seo: t.output<typeof seoOptions> }
})
.refine((value) => {
return value.locales.some((locale) => locale.tag === value.defaultLocale)
}, 'Default locale must be defined')
+45
View File
@@ -0,0 +1,45 @@
import { z as t } from 'zod'
export const seoOptions = t.object({
/** Whether CEO features are enabled. */
enabled: t.boolean().default(true),
/**
* Name of the host language URL parameter, used to override the default or
* user language.
*
* @default 'hl' // For example, ?hl=en to use English locale (if defined).
*/
hostLanguageParameter: t
.string()
.describe(
'Name of the host language URL parameter, used to override the default or user language.',
)
.optional()
.default('hl'),
/**
* Base URL at which the site will be available. This is required to generate
* absolute hreflang links. Without this, VIntl will try to guess the URL
* based on the server request URL / current `window.location`.
*/
baseURL: t
.string()
.describe(
'Base URL at which the site will be available. This is required to generate absolute hreflang links. ',
)
.optional(),
/**
* Whether to use the host language parameter for the default locale.
*
* This options helps keep URLs for your default language clean, however it is
* not correct, and is not recommended, because lack of the host language
* parameter tells VIntl to use the user locale (whether it's the one they've
* choosen before or their browser's one).
*/
defaultLocaleHasParameter: t.boolean().default(true),
/** Whether to enable `x-default` hreflang. */
xDefaultHreflang: t.boolean().default(true),
})
+4 -2
View File
@@ -1,8 +1,10 @@
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"module": "ESNext",
"moduleResolution": "nodenext",
"module": "esnext",
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"types": ["./types/nuxt"],
+1 -1
View File
@@ -3,7 +3,7 @@
"compilerOptions": {
"composite": true,
"module": "ESNext",
"module": "nodenext",
"moduleResolution": "nodenext",
"types": ["./types/nuxt"],
+33
View File
@@ -64,4 +64,37 @@ declare module '@vintl/nuxt-runtime/options' {
* descriptor.
*/
export const parserless: boolean
export interface SEOOptions {
/**
* Whether SEO features are enabled.
*
* @default true
*/
enabled: boolean
/**
* Name of the host language URL parameter, used to override the default or
* user language.
*
* @default 'hl' // For example, ?hl=en to use English locale (if defined).
*/
hostLanguageParameter: string
/**
* Base URL at which the site will be available. This is required to
* generate absolute hreflang links. Without this, VIntl must try to guess
* the URL based on the server request URL / current `window.location`.
*/
baseURL?: string
/** Whether to use the host language parameter for the default locale. */
defaultLocaleHasParameter: boolean
/** Whether to enable `x-default` hreflang. */
xDefaultHreflang: boolean
}
/** SEO options. */
export const seo: SEOOptions
}
+387 -109
View File
@@ -42,7 +42,7 @@ importers:
version: 3.5.3
nuxt:
specifier: ^3.5.3
version: 3.5.3(@types/node@20.2.5)(eslint@8.42.0)(rollup@3.23.0)(typescript@4.9.5)
version: 3.5.3(@types/node@18.16.16)(eslint@8.42.0)(rollup@3.23.0)(typescript@4.9.5)
theme-colors:
specifier: ^0.0.5
version: 0.0.5
@@ -69,7 +69,7 @@ importers:
version: 3.5.3
nuxt:
specifier: ^3.5.3
version: 3.5.3(@types/node@20.2.5)(eslint@8.42.0)(rollup@3.23.0)(typescript@4.9.5)
version: 3.5.3(@types/node@18.16.16)(eslint@8.42.0)
packages/eslint-config:
dependencies:
@@ -77,11 +77,11 @@ importers:
specifier: ^1.3.0
version: 1.3.0
'@typescript-eslint/eslint-plugin':
specifier: ^5.59.9
version: 5.59.9(@typescript-eslint/parser@5.59.9)(eslint@8.42.0)(typescript@5.1.3)
specifier: ^6.3.0
version: 6.3.0(@typescript-eslint/parser@6.3.0)(eslint@8.42.0)(typescript@5.1.3)
'@typescript-eslint/parser':
specifier: ^5.59.9
version: 5.59.9(eslint@8.42.0)(typescript@5.1.3)
specifier: ^6.3.0
version: 6.3.0(eslint@8.42.0)(typescript@5.1.3)
eslint-plugin-vue:
specifier: ^9.14.1
version: 9.14.1(eslint@8.42.0)
@@ -103,6 +103,9 @@ importers:
'@formatjs/intl':
specifier: 2.7.2
version: 2.7.2(typescript@5.1.3)
'@formatjs/intl-localematcher':
specifier: ^0.4.0
version: 0.4.0
'@nuxt/kit':
specifier: ^3.5.3
version: 3.5.3(rollup@3.23.0)
@@ -133,6 +136,9 @@ importers:
slash:
specifier: ^5.1.0
version: 5.1.0
ufo:
specifier: ^1.1.2
version: 1.1.2
zod:
specifier: ^3.21.4
version: 3.21.4
@@ -164,6 +170,9 @@ importers:
typescript:
specifier: ^5.1.3
version: 5.1.3
vue-router:
specifier: ^4.2.4
version: 4.2.4(vue@3.3.4)
packages:
@@ -1026,6 +1035,12 @@ packages:
tslib: 2.5.2
dev: false
/@formatjs/intl-localematcher@0.4.0:
resolution: {integrity: sha512-bRTd+rKomvfdS4QDlVJ6TA/Jx1F2h/TBVO5LjvhQ7QPPHp19oPNMIum7W2CMEReq/zPxpmCeB31F9+5gl/qtvw==}
dependencies:
tslib: 2.5.2
dev: false
/@formatjs/intl@2.7.2(typescript@5.1.3):
resolution: {integrity: sha512-ziiQfnXwY0/rXhtohSAmYMqDjRsihoMKdl8H2aA+FvxG9638E0XrvfBFCb+1HhimNiuqRz5fTY7F/bZtsJxsjA==}
peerDependencies:
@@ -1172,7 +1187,7 @@ packages:
nopt: 5.0.0
npmlog: 5.0.1
rimraf: 3.0.2
semver: 7.5.1
semver: 7.5.4
tar: 6.1.15
transitivePeerDependencies:
- encoding
@@ -1390,7 +1405,7 @@ packages:
pathe: 1.1.1
pkg-types: 1.0.3
scule: 1.0.0
semver: 7.5.1
semver: 7.5.4
unctx: 2.3.1
unimport: 3.0.7(rollup@3.23.0)
untyped: 1.3.2
@@ -1404,6 +1419,68 @@ packages:
- webpack-cli
dev: true
/@nuxt/kit@3.5.3:
resolution: {integrity: sha512-QzoOGqa1zjKQfg7Y50TrrFAL9DhtIpYYs10gihcM1ISPrn9ROht+VEjqsaMvT+L8JuQbNf8wDYl8qzsdWGU29Q==}
engines: {node: ^14.18.0 || >=16.10.0}
dependencies:
'@nuxt/schema': 3.5.3(rollup@3.23.0)
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
knitwork: 1.0.0
mlly: 1.3.0
pathe: 1.1.1
pkg-types: 1.0.3
scule: 1.0.0
semver: 7.5.4
unctx: 2.3.1
unimport: 3.0.7(rollup@3.23.0)
untyped: 1.3.2
webpack: 5.83.1
transitivePeerDependencies:
- '@swc/core'
- esbuild
- rollup
- supports-color
- uglify-js
- webpack-cli
dev: true
/@nuxt/kit@3.5.3(esbuild@0.17.19):
resolution: {integrity: sha512-QzoOGqa1zjKQfg7Y50TrrFAL9DhtIpYYs10gihcM1ISPrn9ROht+VEjqsaMvT+L8JuQbNf8wDYl8qzsdWGU29Q==}
engines: {node: ^14.18.0 || >=16.10.0}
dependencies:
'@nuxt/schema': 3.5.3(rollup@3.23.0)
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
knitwork: 1.0.0
mlly: 1.3.0
pathe: 1.1.1
pkg-types: 1.0.3
scule: 1.0.0
semver: 7.5.4
unctx: 2.3.1
unimport: 3.0.7(rollup@3.23.0)
untyped: 1.3.2
webpack: 5.83.1(esbuild@0.17.19)
transitivePeerDependencies:
- '@swc/core'
- esbuild
- rollup
- supports-color
- uglify-js
- webpack-cli
dev: true
/@nuxt/kit@3.5.3(esbuild@0.17.19)(rollup@3.23.0):
resolution: {integrity: sha512-QzoOGqa1zjKQfg7Y50TrrFAL9DhtIpYYs10gihcM1ISPrn9ROht+VEjqsaMvT+L8JuQbNf8wDYl8qzsdWGU29Q==}
engines: {node: ^14.18.0 || >=16.10.0}
@@ -1421,7 +1498,7 @@ packages:
pathe: 1.1.1
pkg-types: 1.0.3
scule: 1.0.0
semver: 7.5.1
semver: 7.5.4
unctx: 2.3.1
unimport: 3.0.7(rollup@3.23.0)
untyped: 1.3.2
@@ -1523,6 +1600,39 @@ packages:
- rollup
- supports-color
/@nuxt/telemetry@2.2.0:
resolution: {integrity: sha512-Z2UmPkBy5WjxvHKuUcl1X6vKWnIyWSP+9UGde1F+MzzZxYgAQybFud1uL2B3KCowxZdoqT1hd2WklV7EtyCwrQ==}
hasBin: true
dependencies:
'@nuxt/kit': 3.5.3
chalk: 5.2.0
ci-info: 3.8.0
consola: 3.1.0
create-require: 1.1.1
defu: 6.1.2
destr: 1.2.2
dotenv: 16.0.3
fs-extra: 10.1.0
git-url-parse: 13.1.0
inquirer: 9.2.6
is-docker: 3.0.0
jiti: 1.18.2
mri: 1.2.0
nanoid: 4.0.2
node-fetch: 3.3.1
ofetch: 1.0.1
parse-git-config: 3.0.0
rc9: 2.1.0
std-env: 3.3.3
transitivePeerDependencies:
- '@swc/core'
- esbuild
- rollup
- supports-color
- uglify-js
- webpack-cli
dev: true
/@nuxt/telemetry@2.2.0(rollup@3.23.0):
resolution: {integrity: sha512-Z2UmPkBy5WjxvHKuUcl1X6vKWnIyWSP+9UGde1F+MzzZxYgAQybFud1uL2B3KCowxZdoqT1hd2WklV7EtyCwrQ==}
hasBin: true
@@ -1560,7 +1670,7 @@ packages:
resolution: {integrity: sha512-PjVETP7+iZXAs5Q8O4ivl4t6qjWZMZqwiTVogUXHoHGZZcw7GZW3u3tzfYfE1HbzyYJfr236IXqQ02MeR8Fz2w==}
dev: true
/@nuxt/vite-builder@3.5.3(@types/node@20.2.5)(eslint@8.42.0)(rollup@3.23.0)(typescript@4.9.5)(vue@3.3.4):
/@nuxt/vite-builder@3.5.3(@types/node@18.16.16)(eslint@8.42.0)(rollup@3.23.0)(typescript@4.9.5)(vue@3.3.4):
resolution: {integrity: sha512-7zEKpGh3iWGRDwbWUa8eRxdLMxZtPzetelmdmXPjtYKGwUebZOcBhpeJ+VgJKOIf4OEj9E7BZS+it/Ji9UG9qw==}
engines: {node: ^14.18.0 || >=16.10.0}
peerDependencies:
@@ -1597,8 +1707,72 @@ packages:
strip-literal: 1.0.1
ufo: 1.1.2
unplugin: 1.3.1
vite: 4.3.9(@types/node@20.2.5)
vite-node: 0.31.4(@types/node@20.2.5)
vite: 4.3.9(@types/node@18.16.16)
vite-node: 0.31.4(@types/node@18.16.16)
vite-plugin-checker: 0.6.0(eslint@8.42.0)(typescript@4.9.5)(vite@4.3.9)
vue: 3.3.4
vue-bundle-renderer: 1.0.3
transitivePeerDependencies:
- '@swc/core'
- '@types/node'
- eslint
- less
- meow
- optionator
- rollup
- sass
- stylelint
- stylus
- sugarss
- supports-color
- terser
- typescript
- uglify-js
- vls
- vti
- vue-tsc
- webpack-cli
dev: true
/@nuxt/vite-builder@3.5.3(@types/node@18.16.16)(eslint@8.42.0)(vue@3.3.4):
resolution: {integrity: sha512-7zEKpGh3iWGRDwbWUa8eRxdLMxZtPzetelmdmXPjtYKGwUebZOcBhpeJ+VgJKOIf4OEj9E7BZS+it/Ji9UG9qw==}
engines: {node: ^14.18.0 || >=16.10.0}
peerDependencies:
vue: ^3.3.4
dependencies:
'@nuxt/kit': 3.5.3(esbuild@0.17.19)
'@rollup/plugin-replace': 5.0.2(rollup@3.23.0)
'@vitejs/plugin-vue': 4.2.3(vite@4.3.9)(vue@3.3.4)
'@vitejs/plugin-vue-jsx': 3.0.1(vite@4.3.9)(vue@3.3.4)
autoprefixer: 10.4.14(postcss@8.4.24)
clear: 0.1.0
consola: 3.1.0
cssnano: 6.0.1(postcss@8.4.24)
defu: 6.1.2
esbuild: 0.17.19
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
externality: 1.0.0
fs-extra: 11.1.1
get-port-please: 3.0.1
h3: 1.6.6
knitwork: 1.0.0
magic-string: 0.30.0
mlly: 1.3.0
ohash: 1.1.2
pathe: 1.1.1
perfect-debounce: 1.0.0
pkg-types: 1.0.3
postcss: 8.4.24
postcss-import: 15.1.0(postcss@8.4.24)
postcss-url: 10.1.3(postcss@8.4.24)
rollup-plugin-visualizer: 5.9.0(rollup@3.23.0)
std-env: 3.3.3
strip-literal: 1.0.1
ufo: 1.1.2
unplugin: 1.3.1
vite: 4.3.9(@types/node@18.16.16)
vite-node: 0.31.4(@types/node@18.16.16)
vite-plugin-checker: 0.6.0(eslint@8.42.0)(typescript@4.9.5)(vite@4.3.9)
vue: 3.3.4
vue-bundle-renderer: 1.0.3
@@ -1879,6 +2053,9 @@ packages:
/@types/json-schema@7.0.11:
resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==}
/@types/json-schema@7.0.12:
resolution: {integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==}
/@types/json-stable-stringify@1.0.34:
resolution: {integrity: sha512-s2cfwagOQAS8o06TcwKfr9Wx11dNGbH2E9vJz1cqV+a/LOyhWNLUNd6JSRYNzvB4d29UuJX2M0Dj9vE1T8fRXw==}
dev: false
@@ -1908,10 +2085,6 @@ packages:
/@types/node@18.16.16:
resolution: {integrity: sha512-NpaM49IGQQAUlBhHMF82QH80J08os4ZmyF9MkpCzWAGuOHqE4gTEbhzd7L3l5LmWuZ6E0OiC1FweQ4tsiW35+g==}
/@types/node@20.2.5:
resolution: {integrity: sha512-JJulVEQXmiY9Px5axXHeYGLSjhkZEnD+MDPDGbCbIAbMslkKwmygtZFy1X6s/075Yo94sf8GuSlFfPzysQrWZQ==}
dev: true
/@types/normalize-package-data@2.4.1:
resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==}
dev: true
@@ -1964,36 +2137,38 @@ packages:
grapheme-splitter: 1.0.4
ignore: 5.2.4
natural-compare-lite: 1.4.0
semver: 7.5.1
semver: 7.5.4
tsutils: 3.21.0(typescript@4.9.5)
typescript: 4.9.5
transitivePeerDependencies:
- supports-color
dev: true
/@typescript-eslint/eslint-plugin@5.59.9(@typescript-eslint/parser@5.59.9)(eslint@8.42.0)(typescript@5.1.3):
resolution: {integrity: sha512-4uQIBq1ffXd2YvF7MAvehWKW3zVv/w+mSfRAu+8cKbfj3nwzyqJLNcZJpQ/WZ1HLbJDiowwmQ6NO+63nCA+fqA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
/@typescript-eslint/eslint-plugin@6.3.0(@typescript-eslint/parser@6.3.0)(eslint@8.42.0)(typescript@5.1.3):
resolution: {integrity: sha512-IZYjYZ0ifGSLZbwMqIip/nOamFiWJ9AH+T/GYNZBWkVcyNQOFGtSMoWV7RvY4poYCMZ/4lHzNl796WOSNxmk8A==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
'@typescript-eslint/parser': ^5.0.0
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
'@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha
eslint: ^7.0.0 || ^8.0.0
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
'@eslint-community/regexpp': 4.5.1
'@typescript-eslint/parser': 5.59.9(eslint@8.42.0)(typescript@5.1.3)
'@typescript-eslint/scope-manager': 5.59.9
'@typescript-eslint/type-utils': 5.59.9(eslint@8.42.0)(typescript@5.1.3)
'@typescript-eslint/utils': 5.59.9(eslint@8.42.0)(typescript@5.1.3)
'@typescript-eslint/parser': 6.3.0(eslint@8.42.0)(typescript@5.1.3)
'@typescript-eslint/scope-manager': 6.3.0
'@typescript-eslint/type-utils': 6.3.0(eslint@8.42.0)(typescript@5.1.3)
'@typescript-eslint/utils': 6.3.0(eslint@8.42.0)(typescript@5.1.3)
'@typescript-eslint/visitor-keys': 6.3.0
debug: 4.3.4
eslint: 8.42.0
grapheme-splitter: 1.0.4
graphemer: 1.4.0
ignore: 5.2.4
natural-compare: 1.4.0
natural-compare-lite: 1.4.0
semver: 7.5.1
tsutils: 3.21.0(typescript@5.1.3)
semver: 7.5.4
ts-api-utils: 1.0.1(typescript@5.1.3)
typescript: 5.1.3
transitivePeerDependencies:
- supports-color
@@ -2019,19 +2194,20 @@ packages:
- supports-color
dev: true
/@typescript-eslint/parser@5.59.9(eslint@8.42.0)(typescript@5.1.3):
resolution: {integrity: sha512-FsPkRvBtcLQ/eVK1ivDiNYBjn3TGJdXy2fhXX+rc7czWl4ARwnpArwbihSOHI2Peg9WbtGHrbThfBUkZZGTtvQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
/@typescript-eslint/parser@6.3.0(eslint@8.42.0)(typescript@5.1.3):
resolution: {integrity: sha512-ibP+y2Gr6p0qsUkhs7InMdXrwldjxZw66wpcQq9/PzAroM45wdwyu81T+7RibNCh8oc0AgrsyCwJByncY0Ongg==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
eslint: ^7.0.0 || ^8.0.0
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
'@typescript-eslint/scope-manager': 5.59.9
'@typescript-eslint/types': 5.59.9
'@typescript-eslint/typescript-estree': 5.59.9(typescript@5.1.3)
'@typescript-eslint/scope-manager': 6.3.0
'@typescript-eslint/types': 6.3.0
'@typescript-eslint/typescript-estree': 6.3.0(typescript@5.1.3)
'@typescript-eslint/visitor-keys': 6.3.0
debug: 4.3.4
eslint: 8.42.0
typescript: 5.1.3
@@ -2047,12 +2223,12 @@ packages:
'@typescript-eslint/visitor-keys': 5.59.0
dev: true
/@typescript-eslint/scope-manager@5.59.9:
resolution: {integrity: sha512-8RA+E+w78z1+2dzvK/tGZ2cpGigBZ58VMEHDZtpE1v+LLjzrYGc8mMaTONSxKyEkz3IuXFM0IqYiGHlCsmlZxQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
/@typescript-eslint/scope-manager@6.3.0:
resolution: {integrity: sha512-WlNFgBEuGu74ahrXzgefiz/QlVb+qg8KDTpknKwR7hMH+lQygWyx0CQFoUmMn1zDkQjTBBIn75IxtWss77iBIQ==}
engines: {node: ^16.0.0 || >=18.0.0}
dependencies:
'@typescript-eslint/types': 5.59.9
'@typescript-eslint/visitor-keys': 5.59.9
'@typescript-eslint/types': 6.3.0
'@typescript-eslint/visitor-keys': 6.3.0
dev: false
/@typescript-eslint/type-utils@5.59.0(eslint@8.42.0)(typescript@4.9.5):
@@ -2075,21 +2251,21 @@ packages:
- supports-color
dev: true
/@typescript-eslint/type-utils@5.59.9(eslint@8.42.0)(typescript@5.1.3):
resolution: {integrity: sha512-ksEsT0/mEHg9e3qZu98AlSrONAQtrSTljL3ow9CGej8eRo7pe+yaC/mvTjptp23Xo/xIf2mLZKC6KPv4Sji26Q==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
/@typescript-eslint/type-utils@6.3.0(eslint@8.42.0)(typescript@5.1.3):
resolution: {integrity: sha512-7Oj+1ox1T2Yc8PKpBvOKWhoI/4rWFd1j7FA/rPE0lbBPXTKjdbtC+7Ev0SeBjEKkIhKWVeZSP+mR7y1Db1CdfQ==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: '*'
eslint: ^7.0.0 || ^8.0.0
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
'@typescript-eslint/typescript-estree': 5.59.9(typescript@5.1.3)
'@typescript-eslint/utils': 5.59.9(eslint@8.42.0)(typescript@5.1.3)
'@typescript-eslint/typescript-estree': 6.3.0(typescript@5.1.3)
'@typescript-eslint/utils': 6.3.0(eslint@8.42.0)(typescript@5.1.3)
debug: 4.3.4
eslint: 8.42.0
tsutils: 3.21.0(typescript@5.1.3)
ts-api-utils: 1.0.1(typescript@5.1.3)
typescript: 5.1.3
transitivePeerDependencies:
- supports-color
@@ -2100,9 +2276,9 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
/@typescript-eslint/types@5.59.9:
resolution: {integrity: sha512-uW8H5NRgTVneSVTfiCVffBb8AbwWSKg7qcA4Ot3JI3MPCJGsB4Db4BhvAODIIYE5mNj7Q+VJkK7JxmRhk2Lyjw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
/@typescript-eslint/types@6.3.0:
resolution: {integrity: sha512-K6TZOvfVyc7MO9j60MkRNWyFSf86IbOatTKGrpTQnzarDZPYPVy0oe3myTMq7VjhfsUAbNUW8I5s+2lZvtx1gg==}
engines: {node: ^16.0.0 || >=18.0.0}
dev: false
/@typescript-eslint/typescript-estree@5.59.0(typescript@4.9.5):
@@ -2119,29 +2295,29 @@ packages:
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
semver: 7.5.1
semver: 7.5.4
tsutils: 3.21.0(typescript@4.9.5)
typescript: 4.9.5
transitivePeerDependencies:
- supports-color
dev: true
/@typescript-eslint/typescript-estree@5.59.9(typescript@5.1.3):
resolution: {integrity: sha512-pmM0/VQ7kUhd1QyIxgS+aRvMgw+ZljB3eDb+jYyp6d2bC0mQWLzUDF+DLwCTkQ3tlNyVsvZRXjFyV0LkU/aXjA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
/@typescript-eslint/typescript-estree@6.3.0(typescript@5.1.3):
resolution: {integrity: sha512-Xh4NVDaC4eYKY4O3QGPuQNp5NxBAlEvNQYOqJquR2MePNxO11E5K3t5x4M4Mx53IZvtpW+mBxIT0s274fLUocg==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
'@typescript-eslint/types': 5.59.9
'@typescript-eslint/visitor-keys': 5.59.9
'@typescript-eslint/types': 6.3.0
'@typescript-eslint/visitor-keys': 6.3.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)
semver: 7.5.4
ts-api-utils: 1.0.1(typescript@5.1.3)
typescript: 5.1.3
transitivePeerDependencies:
- supports-color
@@ -2154,34 +2330,33 @@ packages:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.42.0)
'@types/json-schema': 7.0.11
'@types/json-schema': 7.0.12
'@types/semver': 7.5.0
'@typescript-eslint/scope-manager': 5.59.0
'@typescript-eslint/types': 5.59.0
'@typescript-eslint/typescript-estree': 5.59.0(typescript@4.9.5)
eslint: 8.42.0
eslint-scope: 5.1.1
semver: 7.5.1
semver: 7.5.4
transitivePeerDependencies:
- supports-color
- typescript
dev: true
/@typescript-eslint/utils@5.59.9(eslint@8.42.0)(typescript@5.1.3):
resolution: {integrity: sha512-1PuMYsju/38I5Ggblaeb98TOoUvjhRvLpLa1DoTOFaLWqaXl/1iQ1eGurTXgBY58NUdtfTXKP5xBq7q9NDaLKg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
/@typescript-eslint/utils@6.3.0(eslint@8.42.0)(typescript@5.1.3):
resolution: {integrity: sha512-hLLg3BZE07XHnpzglNBG8P/IXq/ZVXraEbgY7FM0Cnc1ehM8RMdn9mat3LubJ3KBeYXXPxV1nugWbQPjGeJk6Q==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
eslint: ^7.0.0 || ^8.0.0
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.42.0)
'@types/json-schema': 7.0.11
'@types/json-schema': 7.0.12
'@types/semver': 7.5.0
'@typescript-eslint/scope-manager': 5.59.9
'@typescript-eslint/types': 5.59.9
'@typescript-eslint/typescript-estree': 5.59.9(typescript@5.1.3)
'@typescript-eslint/scope-manager': 6.3.0
'@typescript-eslint/types': 6.3.0
'@typescript-eslint/typescript-estree': 6.3.0(typescript@5.1.3)
eslint: 8.42.0
eslint-scope: 5.1.1
semver: 7.5.1
semver: 7.5.4
transitivePeerDependencies:
- supports-color
- typescript
@@ -2195,11 +2370,11 @@ packages:
eslint-visitor-keys: 3.4.1
dev: true
/@typescript-eslint/visitor-keys@5.59.9:
resolution: {integrity: sha512-bT7s0td97KMaLwpEBckbzj/YohnvXtqbe2XgqNvTl6RJVakY5mvENOTPvw5u66nljfZxthESpDozs86U+oLY8Q==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
/@typescript-eslint/visitor-keys@6.3.0:
resolution: {integrity: sha512-kEhRRj7HnvaSjux1J9+7dBen15CdWmDnwrpyiHsFX6Qx2iW5LOBUgNefOFeh2PjWPlNwN8TOn6+4eBU3J/gupw==}
engines: {node: ^16.0.0 || >=18.0.0}
dependencies:
'@typescript-eslint/types': 5.59.9
'@typescript-eslint/types': 6.3.0
eslint-visitor-keys: 3.4.1
dev: false
@@ -2322,7 +2497,7 @@ packages:
'@babel/core': 7.21.8
'@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.21.8)
'@vue/babel-plugin-jsx': 1.1.1(@babel/core@7.21.8)
vite: 4.3.9(@types/node@20.2.5)
vite: 4.3.9(@types/node@18.16.16)
vue: 3.3.4
transitivePeerDependencies:
- supports-color
@@ -2335,7 +2510,7 @@ packages:
vite: ^4.0.0
vue: ^3.2.25
dependencies:
vite: 4.3.9(@types/node@20.2.5)
vite: 4.3.9(@types/node@18.16.16)
vue: 3.3.4
dev: true
@@ -2523,7 +2698,7 @@ packages:
'@vueuse/core': 10.1.2(vue@3.3.4)
'@vueuse/metadata': 10.1.2
local-pkg: 0.4.3
nuxt: 3.5.3(@types/node@20.2.5)(eslint@8.42.0)(rollup@3.23.0)(typescript@4.9.5)
nuxt: 3.5.3(@types/node@18.16.16)(eslint@8.42.0)(rollup@3.23.0)(typescript@4.9.5)
vue-demi: 0.14.5(vue@3.3.4)
transitivePeerDependencies:
- '@swc/core'
@@ -3914,7 +4089,7 @@ packages:
natural-compare: 1.4.0
nth-check: 2.1.1
postcss-selector-parser: 6.0.13
semver: 7.5.1
semver: 7.5.4
vue-eslint-parser: 9.3.0(eslint@8.42.0)
xml-name-validator: 4.0.0
transitivePeerDependencies:
@@ -4507,6 +4682,7 @@ packages:
/grapheme-splitter@1.0.4:
resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==}
dev: true
/graphemer@1.4.0:
resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
@@ -6150,7 +6326,7 @@ packages:
rollup: 3.23.0
rollup-plugin-visualizer: 5.9.0(rollup@3.23.0)
scule: 1.0.0
semver: 7.5.1
semver: 7.5.4
serve-placeholder: 2.0.1
serve-static: 1.15.0
source-map-support: 0.5.21
@@ -6340,7 +6516,7 @@ packages:
- webpack-cli
dev: true
/nuxt@3.5.3(@types/node@20.2.5)(eslint@8.42.0)(rollup@3.23.0)(typescript@4.9.5):
/nuxt@3.5.3(@types/node@18.16.16)(eslint@8.42.0):
resolution: {integrity: sha512-fG39BZ5N5ATtmx2vuxN8APQPSlSsCDpfkJ0k581gMc7eFztqrBzPncZX5w3RQLW7AiGBE2yYEfqiwC6AVODBBg==}
engines: {node: ^14.18.0 || >=16.10.0}
hasBin: true
@@ -6352,12 +6528,12 @@ packages:
optional: true
dependencies:
'@nuxt/devalue': 2.0.2
'@nuxt/kit': 3.5.3(rollup@3.23.0)
'@nuxt/kit': 3.5.3
'@nuxt/schema': 3.5.3(rollup@3.23.0)
'@nuxt/telemetry': 2.2.0(rollup@3.23.0)
'@nuxt/telemetry': 2.2.0
'@nuxt/ui-templates': 1.1.1
'@nuxt/vite-builder': 3.5.3(@types/node@20.2.5)(eslint@8.42.0)(rollup@3.23.0)(typescript@4.9.5)(vue@3.3.4)
'@types/node': 20.2.5
'@nuxt/vite-builder': 3.5.3(@types/node@18.16.16)(eslint@8.42.0)(vue@3.3.4)
'@types/node': 18.16.16
'@unhead/ssr': 1.1.27
'@unhead/vue': 1.1.27(vue@3.3.4)
'@vue/shared': 3.3.4
@@ -6396,12 +6572,107 @@ packages:
unenv: 1.5.1
unimport: 3.0.7(rollup@3.23.0)
unplugin: 1.3.1
unplugin-vue-router: 0.6.4(rollup@3.23.0)(vue-router@4.2.2)(vue@3.3.4)
unplugin-vue-router: 0.6.4(rollup@3.23.0)(vue-router@4.2.4)(vue@3.3.4)
untyped: 1.3.2
vue: 3.3.4
vue-bundle-renderer: 1.0.3
vue-devtools-stub: 0.1.0
vue-router: 4.2.2(vue@3.3.4)
vue-router: 4.2.4(vue@3.3.4)
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
- '@azure/data-tables'
- '@azure/identity'
- '@azure/keyvault-secrets'
- '@azure/storage-blob'
- '@planetscale/database'
- '@swc/core'
- '@upstash/redis'
- '@vercel/kv'
- debug
- encoding
- esbuild
- eslint
- less
- meow
- optionator
- rollup
- sass
- stylelint
- stylus
- sugarss
- supports-color
- terser
- typescript
- uglify-js
- vls
- vti
- vue-tsc
- webpack-cli
dev: true
/nuxt@3.5.3(@types/node@18.16.16)(eslint@8.42.0)(rollup@3.23.0)(typescript@4.9.5):
resolution: {integrity: sha512-fG39BZ5N5ATtmx2vuxN8APQPSlSsCDpfkJ0k581gMc7eFztqrBzPncZX5w3RQLW7AiGBE2yYEfqiwC6AVODBBg==}
engines: {node: ^14.18.0 || >=16.10.0}
hasBin: true
peerDependencies:
'@parcel/watcher': ^2.1.0
'@types/node': ^14.18.0 || >=16.10.0
peerDependenciesMeta:
'@parcel/watcher':
optional: true
dependencies:
'@nuxt/devalue': 2.0.2
'@nuxt/kit': 3.5.3(rollup@3.23.0)
'@nuxt/schema': 3.5.3(rollup@3.23.0)
'@nuxt/telemetry': 2.2.0(rollup@3.23.0)
'@nuxt/ui-templates': 1.1.1
'@nuxt/vite-builder': 3.5.3(@types/node@18.16.16)(eslint@8.42.0)(rollup@3.23.0)(typescript@4.9.5)(vue@3.3.4)
'@types/node': 18.16.16
'@unhead/ssr': 1.1.27
'@unhead/vue': 1.1.27(vue@3.3.4)
'@vue/shared': 3.3.4
c12: 1.4.1
chokidar: 3.5.3
cookie-es: 1.0.0
defu: 6.1.2
destr: 1.2.2
devalue: 4.3.2
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
fs-extra: 11.1.1
globby: 13.1.4
h3: 1.6.6
hookable: 5.5.3
jiti: 1.18.2
klona: 2.0.6
knitwork: 1.0.0
local-pkg: 0.4.3
magic-string: 0.30.0
mlly: 1.3.0
nitropack: 2.4.1
nuxi: 3.5.3
nypm: 0.2.0
ofetch: 1.0.1
ohash: 1.1.2
pathe: 1.1.1
perfect-debounce: 1.0.0
prompts: 2.4.2
scule: 1.0.0
strip-literal: 1.0.1
ufo: 1.1.2
ultrahtml: 1.2.0
uncrypto: 0.1.2
unctx: 2.3.1
unenv: 1.5.1
unimport: 3.0.7(rollup@3.23.0)
unplugin: 1.3.1
unplugin-vue-router: 0.6.4(rollup@3.23.0)(vue-router@4.2.4)(vue@3.3.4)
untyped: 1.3.2
vue: 3.3.4
vue-bundle-renderer: 1.0.3
vue-devtools-stub: 0.1.0
vue-router: 4.2.4(vue@3.3.4)
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -7631,7 +7902,7 @@ packages:
resolution: {integrity: sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==}
engines: {node: '>= 10.13.0'}
dependencies:
'@types/json-schema': 7.0.11
'@types/json-schema': 7.0.12
ajv: 6.12.6
ajv-keywords: 3.5.2(ajv@6.12.6)
@@ -7654,6 +7925,13 @@ packages:
dependencies:
lru-cache: 6.0.0
/semver@7.5.4:
resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==}
engines: {node: '>=10'}
hasBin: true
dependencies:
lru-cache: 6.0.0
/send@0.18.0:
resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
engines: {node: '>= 0.8.0'}
@@ -8233,8 +8511,18 @@ packages:
resolution: {integrity: sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==}
dev: true
/ts-api-utils@1.0.1(typescript@5.1.3):
resolution: {integrity: sha512-lC/RGlPmwdrIBFTX59wwNzqh7aR2otPNPR/5brHZm/XKFYKsfqxihXUe9pU3JI+3vGkl+vyCoNNnPhJn3aLK1A==}
engines: {node: '>=16.13.0'}
peerDependencies:
typescript: '>=4.2.0'
dependencies:
typescript: 5.1.3
dev: false
/tslib@1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
dev: true
/tslib@2.5.2:
resolution: {integrity: sha512-5svOrSA2w3iGFDs1HibEVBGbDrAY82bFQ3HZ3ixB+88nsbsWQoKqDRb5UBYAUPEzbBn6dAp5gRNXglySbx1MlA==}
@@ -8249,16 +8537,6 @@ packages:
typescript: 4.9.5
dev: true
/tsutils@3.21.0(typescript@5.1.3):
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
dev: false
/tty-table@4.2.1:
resolution: {integrity: sha512-xz0uKo+KakCQ+Dxj1D/tKn2FSyreSYWzdkL/BYhgN6oMW808g8QRMuh1atAV9fjTPbWBjfbkKQpI/5rEcnAc7g==}
engines: {node: '>=8.0.0'}
@@ -8561,7 +8839,7 @@ packages:
resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==}
engines: {node: '>= 10.0.0'}
/unplugin-vue-router@0.6.4(rollup@3.23.0)(vue-router@4.2.2)(vue@3.3.4):
/unplugin-vue-router@0.6.4(rollup@3.23.0)(vue-router@4.2.4)(vue@3.3.4):
resolution: {integrity: sha512-9THVhhtbVFxbsIibjK59oPwMI1UCxRWRPX7azSkTUABsxovlOXJys5SJx0kd/0oKIqNJuYgkRfAgPuO77SqCOg==}
peerDependencies:
vue-router: ^4.1.0
@@ -8581,7 +8859,7 @@ packages:
pathe: 1.1.1
scule: 1.0.0
unplugin: 1.3.1
vue-router: 4.2.2(vue@3.3.4)
vue-router: 4.2.4(vue@3.3.4)
yaml: 2.3.0
transitivePeerDependencies:
- rollup
@@ -8738,7 +9016,7 @@ packages:
vfile-message: 3.1.4
dev: true
/vite-node@0.31.4(@types/node@20.2.5):
/vite-node@0.31.4(@types/node@18.16.16):
resolution: {integrity: sha512-uzL377GjJtTbuc5KQxVbDu2xfU/x0wVjUtXQR2ihS21q/NK6ROr4oG0rsSkBBddZUVCwzfx22in76/0ZZHXgkQ==}
engines: {node: '>=v14.18.0'}
hasBin: true
@@ -8748,7 +9026,7 @@ packages:
mlly: 1.3.0
pathe: 1.1.1
picocolors: 1.0.0
vite: 4.3.9(@types/node@20.2.5)
vite: 4.3.9(@types/node@18.16.16)
transitivePeerDependencies:
- '@types/node'
- less
@@ -8801,18 +9079,18 @@ packages:
lodash.debounce: 4.0.8
lodash.pick: 4.4.0
npm-run-path: 4.0.1
semver: 7.5.1
semver: 7.5.4
strip-ansi: 6.0.1
tiny-invariant: 1.3.1
typescript: 4.9.5
vite: 4.3.9(@types/node@20.2.5)
vite: 4.3.9(@types/node@18.16.16)
vscode-languageclient: 7.0.0
vscode-languageserver: 7.0.0
vscode-languageserver-textdocument: 1.0.8
vscode-uri: 3.0.7
dev: true
/vite@4.3.9(@types/node@20.2.5):
/vite@4.3.9(@types/node@18.16.16):
resolution: {integrity: sha512-qsTNZjO9NoJNW7KnOrgYwczm0WctJ8m/yqYAMAK9Lxt4SoySUfS5S8ia9K7JHpa3KEeMfyF8LoJ3c5NeBJy6pg==}
engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
@@ -8837,7 +9115,7 @@ packages:
terser:
optional: true
dependencies:
'@types/node': 20.2.5
'@types/node': 18.16.16
esbuild: 0.17.19
postcss: 8.4.24
rollup: 3.23.0
@@ -8855,7 +9133,7 @@ packages:
engines: {vscode: ^1.52.0}
dependencies:
minimatch: 3.1.2
semver: 7.5.1
semver: 7.5.4
vscode-languageserver-protocol: 3.16.0
dev: true
@@ -8943,8 +9221,8 @@ packages:
transitivePeerDependencies:
- supports-color
/vue-router@4.2.2(vue@3.3.4):
resolution: {integrity: sha512-cChBPPmAflgBGmy3tBsjeoe3f3VOSG6naKyY5pjtrqLGbNEXdzCigFUHgBvp9e3ysAtFtEx7OLqcSDh/1Cq2TQ==}
/vue-router@4.2.4(vue@3.3.4):
resolution: {integrity: sha512-9PISkmaCO02OzPVOMq2w82ilty6+xJmQrarYZDkjZBfl4RvYAlt4PKnEX21oW4KTtWfa9OuO/b3qk1Od3AEdCQ==}
peerDependencies:
vue: ^3.2.0
dependencies: