diff --git a/packages/kit/package.json b/packages/kit/package.json
index cfb160fbf6..580b2a209d 100644
--- a/packages/kit/package.json
+++ b/packages/kit/package.json
@@ -43,7 +43,7 @@
"@types/lodash-es": "4.17.7",
"@types/semver": "7.5.0",
"lodash-es": "4.17.21",
- "nitropack": "2.4.1",
+ "nitropack": "2.5.1",
"unbuild": "latest",
"vite": "4.3.9",
"vitest": "0.32.2",
diff --git a/packages/nuxt/package.json b/packages/nuxt/package.json
index db46a54d3f..69b5a9f3a8 100644
--- a/packages/nuxt/package.json
+++ b/packages/nuxt/package.json
@@ -80,7 +80,7 @@
"local-pkg": "^0.4.3",
"magic-string": "^0.30.0",
"mlly": "^1.4.0",
- "nitropack": "^2.4.1",
+ "nitropack": "^2.5.1",
"nuxi": "workspace:../nuxi",
"nypm": "^0.2.1",
"ofetch": "^1.1.1",
diff --git a/packages/nuxt/src/app/components/nuxt-error-page.vue b/packages/nuxt/src/app/components/nuxt-error-page.vue
index f3ef0cc974..0976b1a2f3 100644
--- a/packages/nuxt/src/app/components/nuxt-error-page.vue
+++ b/packages/nuxt/src/app/components/nuxt-error-page.vue
@@ -11,10 +11,10 @@ const props = defineProps({
// Deliberately prevent reactive update when error is cleared
// eslint-disable-next-line vue/no-setup-props-destructure
-const { error } = props
+const _error = props.error
// TODO: extract to a separate utility
-const stacktrace = (error.stack || '')
+const stacktrace = (_error.stack || '')
.split('\n')
.splice(1)
.map((line) => {
@@ -31,12 +31,12 @@ const stacktrace = (error.stack || '')
}).map(i => `${i.text}`).join('\n')
// Error page props
-const statusCode = Number(error.statusCode || 500)
+const statusCode = Number(_error.statusCode || 500)
const is404 = statusCode === 404
-const statusMessage = error.statusMessage ?? (is404 ? 'Page Not Found' : 'Internal Server Error')
-const description = error.message || error.toString()
-const stack = process.dev && !is404 ? error.description || `
${stacktrace}
` : undefined
+const statusMessage = _error.statusMessage ?? (is404 ? 'Page Not Found' : 'Internal Server Error')
+const description = _error.message || _error.toString()
+const stack = process.dev && !is404 ? _error.description || `${stacktrace}
` : undefined
// TODO: Investigate side-effect issue with imports
const _Error404 = defineAsyncComponent(() => import('@nuxt/ui-templates/templates/error-404.vue').then(r => r.default || r))
diff --git a/packages/nuxt/src/core/runtime/nitro/paths.ts b/packages/nuxt/src/core/runtime/nitro/paths.ts
index 3f809114bf..42c75389fd 100644
--- a/packages/nuxt/src/core/runtime/nitro/paths.ts
+++ b/packages/nuxt/src/core/runtime/nitro/paths.ts
@@ -6,14 +6,14 @@ export function baseURL (): string {
}
export function buildAssetsDir (): string {
- return useRuntimeConfig().app.buildAssetsDir
+ return useRuntimeConfig().app.buildAssetsDir as string
}
export function buildAssetsURL (...path: string[]): string {
- return joinURL(publicAssetsURL(), useRuntimeConfig().app.buildAssetsDir, ...path)
+ return joinURL(publicAssetsURL(), buildAssetsDir(), ...path)
}
export function publicAssetsURL (...path: string[]): string {
- const publicBase = useRuntimeConfig().app.cdnURL || useRuntimeConfig().app.baseURL
+ const publicBase = useRuntimeConfig().app.cdnURL as string || useRuntimeConfig().app.baseURL
return path.length ? joinURL(publicBase, ...path) : publicBase
}
diff --git a/packages/nuxt/types.d.ts b/packages/nuxt/types.d.ts
index 8e35544a40..bdeea95879 100644
--- a/packages/nuxt/types.d.ts
+++ b/packages/nuxt/types.d.ts
@@ -1,7 +1,7 @@
///
export * from './dist/index'
-import type { SchemaDefinition } from 'nuxt/schema'
+import type { SchemaDefinition, RuntimeConfig } from 'nuxt/schema'
import type { NuxtIslandContext, NuxtIslandResponse, NuxtRenderHTMLContext } from './dist/core/runtime/nitro/renderer'
declare global {
@@ -10,6 +10,8 @@ declare global {
}
declare module 'nitropack' {
+ interface NitroRuntimeConfigApp extends RuntimeConfig['app'] {}
+ interface NitroRuntimeConfig extends RuntimeConfig {}
interface NitroRouteConfig {
ssr?: boolean
experimentalNoScripts?: boolean
diff --git a/packages/schema/package.json b/packages/schema/package.json
index 1ec6484e3a..dee21b1dc0 100644
--- a/packages/schema/package.json
+++ b/packages/schema/package.json
@@ -36,7 +36,7 @@
"esbuild-loader": "3.0.1",
"h3": "1.7.0",
"ignore": "5.2.4",
- "nitropack": "2.4.1",
+ "nitropack": "2.5.1",
"unbuild": "latest",
"unctx": "2.3.1",
"vite": "4.3.9",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 1a685da2c8..b6eb7deafb 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -61,10 +61,10 @@ importers:
version: 8.43.0
eslint-import-resolver-typescript:
specifier: 3.5.5
- version: 3.5.5(@typescript-eslint/parser@5.54.1)(eslint-plugin-import@2.27.5)(eslint@8.43.0)
+ version: 3.5.5(@typescript-eslint/parser@5.59.9)(eslint-plugin-import@2.27.5)(eslint@8.43.0)
eslint-plugin-import:
specifier: 2.27.5
- version: 2.27.5(@typescript-eslint/parser@5.54.1)(eslint-import-resolver-typescript@3.5.5)(eslint@8.43.0)
+ version: 2.27.5(@typescript-eslint/parser@5.59.9)(eslint-import-resolver-typescript@3.5.5)(eslint@8.43.0)
eslint-plugin-jsdoc:
specifier: 41.1.2
version: 41.1.2(eslint@8.43.0)
@@ -184,7 +184,7 @@ importers:
version: 2.3.1
unimport:
specifier: ^3.0.8
- version: 3.0.8(rollup@3.21.8)
+ version: 3.0.8(rollup@3.25.1)
untyped:
specifier: ^1.3.2
version: 1.3.2
@@ -202,8 +202,8 @@ importers:
specifier: 4.17.21
version: 4.17.21
nitropack:
- specifier: 2.4.1
- version: 2.4.1
+ specifier: 2.5.1
+ version: 2.5.1
unbuild:
specifier: latest
version: 1.2.1
@@ -407,8 +407,8 @@ importers:
specifier: ^1.4.0
version: 1.4.0
nitropack:
- specifier: ^2.4.1
- version: 2.4.1
+ specifier: ^2.5.1
+ version: 2.5.1
nuxi:
specifier: workspace:*
version: link:../nuxi
@@ -453,13 +453,13 @@ importers:
version: 1.5.1
unimport:
specifier: ^3.0.8
- version: 3.0.8(rollup@3.21.8)
+ version: 3.0.8(rollup@3.25.1)
unplugin:
specifier: ^1.3.1
version: 1.3.1
unplugin-vue-router:
specifier: ^0.6.4
- version: 0.6.4(rollup@3.21.8)(vue-router@4.2.2)(vue@3.3.4)
+ version: 0.6.4(rollup@3.25.1)(vue-router@4.2.2)(vue@3.3.4)
untyped:
specifier: ^1.3.2
version: 1.3.2
@@ -529,7 +529,7 @@ importers:
version: 1.1.2
unimport:
specifier: ^3.0.8
- version: 3.0.8(rollup@3.21.8)
+ version: 3.0.8(rollup@3.25.1)
untyped:
specifier: ^1.3.2
version: 1.3.2
@@ -565,8 +565,8 @@ importers:
specifier: 5.2.4
version: 5.2.4
nitropack:
- specifier: 2.4.1
- version: 2.4.1
+ specifier: 2.5.1
+ version: 2.5.1
unbuild:
specifier: latest
version: 1.2.1
@@ -645,7 +645,7 @@ importers:
version: link:../kit
'@rollup/plugin-replace':
specifier: ^5.0.2
- version: 5.0.2(rollup@3.21.8)
+ version: 5.0.2(rollup@3.25.1)
'@vitejs/plugin-vue':
specifier: ^4.2.3
version: 4.2.3(vite@4.3.9)(vue@3.3.4)
@@ -720,7 +720,7 @@ importers:
version: 10.1.3(postcss@8.4.24)
rollup-plugin-visualizer:
specifier: ^5.9.2
- version: 5.9.2(rollup@3.21.8)
+ version: 5.9.2(rollup@3.25.1)
std-env:
specifier: ^3.3.3
version: 3.3.3
@@ -996,37 +996,37 @@ packages:
tunnel: 0.0.6
dev: true
- /@ampproject/remapping@2.2.0:
- resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==}
+ /@ampproject/remapping@2.2.1:
+ resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
engines: {node: '>=6.0.0'}
dependencies:
- '@jridgewell/gen-mapping': 0.1.1
+ '@jridgewell/gen-mapping': 0.3.3
'@jridgewell/trace-mapping': 0.3.18
- /@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.5:
+ resolution: {integrity: sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==}
engines: {node: '>=6.9.0'}
- /@babel/core@7.21.4:
- resolution: {integrity: sha512-qt/YV149Jman/6AfmlxJ04LMIu8bMoyl3RB91yTFrxQmgbrSvQMy7cI8Q62FHx1t8wJ8B5fu0UDoLwHAhUo1QA==}
+ /@babel/core@7.22.5:
+ resolution: {integrity: sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@ampproject/remapping': 2.2.0
- '@babel/code-frame': 7.21.4
- '@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.21.4
- '@babel/template': 7.20.7
- '@babel/traverse': 7.21.4
- '@babel/types': 7.21.5
+ '@ampproject/remapping': 2.2.1
+ '@babel/code-frame': 7.22.5
+ '@babel/generator': 7.22.5
+ '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.22.5)
+ '@babel/helper-module-transforms': 7.22.5
+ '@babel/helpers': 7.22.5
+ '@babel/parser': 7.22.5
+ '@babel/template': 7.22.5
+ '@babel/traverse': 7.22.5
+ '@babel/types': 7.22.5
convert-source-map: 1.9.0
debug: 4.3.4
gensync: 1.0.0-beta.2
@@ -1035,12 +1035,12 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/generator@7.21.4:
- resolution: {integrity: sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA==}
+ /@babel/generator@7.22.5:
+ resolution: {integrity: sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.5
- '@jridgewell/gen-mapping': 0.3.2
+ '@babel/types': 7.22.5
+ '@jridgewell/gen-mapping': 0.3.3
'@jridgewell/trace-mapping': 0.3.18
jsesc: 2.5.2
@@ -1048,80 +1048,80 @@ packages:
resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.5
+ '@babel/types': 7.22.5
- /@babel/helper-compilation-targets@7.21.4(@babel/core@7.21.4):
- resolution: {integrity: sha512-Fa0tTuOXZ1iL8IeDFUWCzjZcn+sJGd9RZdH9esYVjEejGmzf+FFYQpMi/kZUk2kPy/q1H3/GPw7np8qar/stfg==}
+ /@babel/helper-compilation-targets@7.22.5(@babel/core@7.22.5):
+ resolution: {integrity: sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/compat-data': 7.21.4
- '@babel/core': 7.21.4
- '@babel/helper-validator-option': 7.21.0
- browserslist: 4.21.5
+ '@babel/compat-data': 7.22.5
+ '@babel/core': 7.22.5
+ '@babel/helper-validator-option': 7.22.5
+ browserslist: 4.21.8
lru-cache: 5.1.1
semver: 6.3.0
- /@babel/helper-create-class-features-plugin@7.21.0(@babel/core@7.21.4):
+ /@babel/helper-create-class-features-plugin@7.21.0(@babel/core@7.22.5):
resolution: {integrity: sha512-Q8wNiMIdwsv5la5SPxNYzzkPnjgC0Sy0i7jLkVOCdllu/xcVNkr3TeZzbHBJrj+XXRqzX5uCyCoV9eu6xUG7KQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.5
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.21.0
+ '@babel/helper-environment-visitor': 7.22.5
+ '@babel/helper-function-name': 7.22.5
'@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/helper-split-export-declaration': 7.22.5
transitivePeerDependencies:
- supports-color
- /@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.21.5
+ '@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.21.5
+ '@babel/types': 7.22.5
/@babel/helper-member-expression-to-functions@7.21.0:
resolution: {integrity: sha512-Muu8cdZwNN6mRRNG6lAYErJ5X3bRevgYR2O8wN0yn7jJSnGDu6eG59RfT29JHxGUovyfrh6Pj0XzmR7drNVL3Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.5
+ '@babel/types': 7.22.5
- /@babel/helper-module-imports@7.18.6:
- resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
+ /@babel/helper-module-imports@7.22.5:
+ resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.5
+ '@babel/types': 7.22.5
- /@babel/helper-module-transforms@7.21.2:
- resolution: {integrity: sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==}
+ /@babel/helper-module-transforms@7.22.5:
+ resolution: {integrity: sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-module-imports': 7.18.6
- '@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.21.5
+ '@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.5
+ '@babel/helper-validator-identifier': 7.22.5
+ '@babel/template': 7.22.5
+ '@babel/traverse': 7.22.5
+ '@babel/types': 7.22.5
transitivePeerDependencies:
- supports-color
@@ -1129,7 +1129,7 @@ packages:
resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.5
+ '@babel/types': 7.22.5
/@babel/helper-plugin-utils@7.20.2:
resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==}
@@ -1139,207 +1139,207 @@ packages:
resolution: {integrity: sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-environment-visitor': 7.18.9
+ '@babel/helper-environment-visitor': 7.22.5
'@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.21.5
+ '@babel/template': 7.22.5
+ '@babel/traverse': 7.22.5
+ '@babel/types': 7.22.5
transitivePeerDependencies:
- supports-color
- /@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.21.5
+ '@babel/types': 7.22.5
/@babel/helper-skip-transparent-expression-wrappers@7.20.0:
resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.5
+ '@babel/types': 7.22.5
- /@babel/helper-split-export-declaration@7.18.6:
- resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
+ /@babel/helper-split-export-declaration@7.22.5:
+ resolution: {integrity: sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.5
+ '@babel/types': 7.22.5
- /@babel/helper-string-parser@7.21.5:
- resolution: {integrity: sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w==}
+ /@babel/helper-string-parser@7.22.5:
+ resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==}
engines: {node: '>=6.9.0'}
- /@babel/helper-validator-identifier@7.19.1:
- resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==}
+ /@babel/helper-validator-identifier@7.22.5:
+ resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==}
engines: {node: '>=6.9.0'}
- /@babel/helper-validator-option@7.21.0:
- resolution: {integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==}
+ /@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==}
+ /@babel/helpers@7.22.5:
+ resolution: {integrity: sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/template': 7.20.7
- '@babel/traverse': 7.21.4
- '@babel/types': 7.21.5
+ '@babel/template': 7.22.5
+ '@babel/traverse': 7.22.5
+ '@babel/types': 7.22.5
transitivePeerDependencies:
- supports-color
- /@babel/highlight@7.18.6:
- resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
+ /@babel/highlight@7.22.5:
+ resolution: {integrity: sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-validator-identifier': 7.19.1
+ '@babel/helper-validator-identifier': 7.22.5
chalk: 2.4.2
js-tokens: 4.0.0
- /@babel/parser@7.21.4:
- resolution: {integrity: sha512-alVJj7k7zIxqBZ7BTRhz0IqJFxW1VJbm6N8JbcYhQ186df9ZBPbZBmWSqAMXwHGsCJdYks7z/voa3ibiS5bCIw==}
+ /@babel/parser@7.22.5:
+ resolution: {integrity: sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
- '@babel/types': 7.21.5
+ '@babel/types': 7.22.5
- /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.21.4):
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.5):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.5
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.21.4):
+ /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.22.5):
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.5
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.21.4):
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.5):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.5
'@babel/helper-plugin-utils': 7.20.2
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.5):
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.5
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.21.4):
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.5):
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.5
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.21.4):
+ /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.22.5):
resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.5
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.21.4):
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.5):
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.5
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.21.4):
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.5):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.5
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.21.4):
+ /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.5):
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.5
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.21.4):
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.5):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.5
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.21.4):
+ /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.5):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.5
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.21.4):
+ /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.5):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.5
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.21.4):
+ /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.5):
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.5
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-typescript@7.20.0(@babel/core@7.21.4):
+ /@babel/plugin-syntax-typescript@7.20.0(@babel/core@7.22.5):
resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.5
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-typescript@7.21.0(@babel/core@7.21.4):
+ /@babel/plugin-transform-typescript@7.21.0(@babel/core@7.22.5):
resolution: {integrity: sha512-xo///XTPp3mDzTtrqXoBlK9eiAYW3wv9JXglcn/u1bi60RW11dEUxIgA8cbnDhutS1zacjMRmAwxE0gMklLnZg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.4
- '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.4)
+ '@babel/core': 7.22.5
+ '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.22.5)
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.21.4)
+ '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.22.5)
transitivePeerDependencies:
- supports-color
@@ -1347,37 +1347,37 @@ packages:
resolution: {integrity: sha512-c8feJERTAHlBEvihQUWrnUMLg2GzrwSnE76WDyN3fRJWju10pHeRy8r3wniIq0q7zPLhHd71PQtFVsn1H+Qscw==}
engines: {node: '>=6.9.0'}
- /@babel/template@7.20.7:
- resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==}
+ /@babel/template@7.22.5:
+ resolution: {integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/code-frame': 7.21.4
- '@babel/parser': 7.21.4
- '@babel/types': 7.21.5
+ '@babel/code-frame': 7.22.5
+ '@babel/parser': 7.22.5
+ '@babel/types': 7.22.5
- /@babel/traverse@7.21.4:
- resolution: {integrity: sha512-eyKrRHKdyZxqDm+fV1iqL9UAHMoIg0nDaGqfIOd8rKH17m5snv7Gn4qgjBoFfLz9APvjFU/ICT00NVCv1Epp8Q==}
+ /@babel/traverse@7.22.5:
+ resolution: {integrity: sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ==}
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.21.4
- '@babel/types': 7.21.5
+ '@babel/code-frame': 7.22.5
+ '@babel/generator': 7.22.5
+ '@babel/helper-environment-visitor': 7.22.5
+ '@babel/helper-function-name': 7.22.5
+ '@babel/helper-hoist-variables': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.5
+ '@babel/parser': 7.22.5
+ '@babel/types': 7.22.5
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- /@babel/types@7.21.5:
- resolution: {integrity: sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q==}
+ /@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:
@@ -1390,9 +1390,9 @@ packages:
engines: {node: '>=10.0.0'}
dev: false
- /@es-joy/jsdoccomment@0.37.0:
- resolution: {integrity: sha512-hjK0wnsPCYLlF+HHB4R/RbUjOWeLW2SlarB67+Do5WsKILOkmIZvvPJFbtWSmbypxcjpoECLAMzoao0D4Bg5ZQ==}
- engines: {node: ^14 || ^16 || ^17 || ^18 || ^19}
+ /@es-joy/jsdoccomment@0.37.1:
+ resolution: {integrity: sha512-5vxWJ1gEkEF0yRd0O+uK6dHJf7adrxwQSX8PuRiPfFSAbNLnY0ZJfXaZucoz14Jj2N11xn2DnlEPwWRpYpvRjg==}
+ engines: {node: ^14 || ^16 || ^17 || ^18 || ^19 || ^20}
dependencies:
comment-parser: 1.3.1
esquery: 1.5.0
@@ -1413,7 +1413,6 @@ packages:
cpu: [arm64]
os: [android]
requiresBuild: true
- dev: false
optional: true
/@esbuild/android-arm@0.17.19:
@@ -1430,7 +1429,6 @@ packages:
cpu: [arm]
os: [android]
requiresBuild: true
- dev: false
optional: true
/@esbuild/android-x64@0.17.19:
@@ -1447,7 +1445,6 @@ packages:
cpu: [x64]
os: [android]
requiresBuild: true
- dev: false
optional: true
/@esbuild/darwin-arm64@0.17.19:
@@ -1464,7 +1461,6 @@ packages:
cpu: [arm64]
os: [darwin]
requiresBuild: true
- dev: false
optional: true
/@esbuild/darwin-x64@0.17.19:
@@ -1481,7 +1477,6 @@ packages:
cpu: [x64]
os: [darwin]
requiresBuild: true
- dev: false
optional: true
/@esbuild/freebsd-arm64@0.17.19:
@@ -1498,7 +1493,6 @@ packages:
cpu: [arm64]
os: [freebsd]
requiresBuild: true
- dev: false
optional: true
/@esbuild/freebsd-x64@0.17.19:
@@ -1515,7 +1509,6 @@ packages:
cpu: [x64]
os: [freebsd]
requiresBuild: true
- dev: false
optional: true
/@esbuild/linux-arm64@0.17.19:
@@ -1532,7 +1525,6 @@ packages:
cpu: [arm64]
os: [linux]
requiresBuild: true
- dev: false
optional: true
/@esbuild/linux-arm@0.17.19:
@@ -1549,7 +1541,6 @@ packages:
cpu: [arm]
os: [linux]
requiresBuild: true
- dev: false
optional: true
/@esbuild/linux-ia32@0.17.19:
@@ -1566,7 +1557,6 @@ packages:
cpu: [ia32]
os: [linux]
requiresBuild: true
- dev: false
optional: true
/@esbuild/linux-loong64@0.17.19:
@@ -1583,7 +1573,6 @@ packages:
cpu: [loong64]
os: [linux]
requiresBuild: true
- dev: false
optional: true
/@esbuild/linux-mips64el@0.17.19:
@@ -1600,7 +1589,6 @@ packages:
cpu: [mips64el]
os: [linux]
requiresBuild: true
- dev: false
optional: true
/@esbuild/linux-ppc64@0.17.19:
@@ -1617,7 +1605,6 @@ packages:
cpu: [ppc64]
os: [linux]
requiresBuild: true
- dev: false
optional: true
/@esbuild/linux-riscv64@0.17.19:
@@ -1634,7 +1621,6 @@ packages:
cpu: [riscv64]
os: [linux]
requiresBuild: true
- dev: false
optional: true
/@esbuild/linux-s390x@0.17.19:
@@ -1651,7 +1637,6 @@ packages:
cpu: [s390x]
os: [linux]
requiresBuild: true
- dev: false
optional: true
/@esbuild/linux-x64@0.17.19:
@@ -1668,7 +1653,6 @@ packages:
cpu: [x64]
os: [linux]
requiresBuild: true
- dev: false
optional: true
/@esbuild/netbsd-x64@0.17.19:
@@ -1685,7 +1669,6 @@ packages:
cpu: [x64]
os: [netbsd]
requiresBuild: true
- dev: false
optional: true
/@esbuild/openbsd-x64@0.17.19:
@@ -1702,7 +1685,6 @@ packages:
cpu: [x64]
os: [openbsd]
requiresBuild: true
- dev: false
optional: true
/@esbuild/sunos-x64@0.17.19:
@@ -1719,7 +1701,6 @@ packages:
cpu: [x64]
os: [sunos]
requiresBuild: true
- dev: false
optional: true
/@esbuild/win32-arm64@0.17.19:
@@ -1736,7 +1717,6 @@ packages:
cpu: [arm64]
os: [win32]
requiresBuild: true
- dev: false
optional: true
/@esbuild/win32-ia32@0.17.19:
@@ -1753,7 +1733,6 @@ packages:
cpu: [ia32]
os: [win32]
requiresBuild: true
- dev: false
optional: true
/@esbuild/win32-x64@0.17.19:
@@ -1770,11 +1749,10 @@ packages:
cpu: [x64]
os: [win32]
requiresBuild: true
- dev: false
optional: true
- /@eslint-community/eslint-utils@4.2.0(eslint@8.43.0):
- resolution: {integrity: sha512-gB8T4H4DEfX2IV9zGDJPOBgP1e/DbfCPDTtEqUMckpvzS1OYtva8JdFYBqMwYk7xAQ429WGF/UPqn8uQ//h2vQ==}
+ /@eslint-community/eslint-utils@4.4.0(eslint@8.43.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
@@ -1782,8 +1760,8 @@ packages:
eslint: 8.43.0
eslint-visitor-keys: 3.4.1
- /@eslint-community/regexpp@4.4.0:
- resolution: {integrity: sha512-A9983Q0LnDGdLPjxyXQ00sbV+K+O+ko2Dr+CZigbHWtX9pNfxlaBkMR8X1CztI73zuEyEBXTVjx7CE+/VSwDiQ==}
+ /@eslint-community/regexpp@4.5.1:
+ resolution: {integrity: sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
/@eslint/eslintrc@2.0.3:
@@ -1826,6 +1804,18 @@ 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.0.1
+ strip-ansi-cjs: /strip-ansi@6.0.1
+ wrap-ansi: 8.1.0
+ wrap-ansi-cjs: /wrap-ansi@7.0.0
+ dev: true
+
/@istanbuljs/load-nyc-config@1.1.0:
resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==}
engines: {node: '>=8'}
@@ -1903,14 +1893,14 @@ packages:
resolution: {integrity: sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.5
'@jest/types': 29.5.0
'@jridgewell/trace-mapping': 0.3.18
babel-plugin-istanbul: 6.1.1
chalk: 4.1.2
convert-source-map: 2.0.0
fast-json-stable-stringify: 2.1.0
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-haste-map: 29.5.0
jest-regex-util: 29.4.3
jest-util: 29.5.0
@@ -1933,19 +1923,12 @@ packages:
'@types/yargs': 17.0.22
chalk: 4.1.2
- /@jridgewell/gen-mapping@0.1.1:
- resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==}
+ /@jridgewell/gen-mapping@0.3.3:
+ resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==}
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/set-array': 1.1.2
- '@jridgewell/sourcemap-codec': 1.4.14
-
- /@jridgewell/gen-mapping@0.3.2:
- resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==}
- engines: {node: '>=6.0.0'}
- dependencies:
- '@jridgewell/set-array': 1.1.2
- '@jridgewell/sourcemap-codec': 1.4.14
+ '@jridgewell/sourcemap-codec': 1.4.15
'@jridgewell/trace-mapping': 0.3.18
/@jridgewell/resolve-uri@3.1.0:
@@ -1956,15 +1939,18 @@ packages:
resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
engines: {node: '>=6.0.0'}
- /@jridgewell/source-map@0.3.2:
- resolution: {integrity: sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==}
+ /@jridgewell/source-map@0.3.3:
+ resolution: {integrity: sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg==}
dependencies:
- '@jridgewell/gen-mapping': 0.3.2
+ '@jridgewell/gen-mapping': 0.3.3
'@jridgewell/trace-mapping': 0.3.18
/@jridgewell/sourcemap-codec@1.4.14:
resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
+ /@jridgewell/sourcemap-codec@1.4.15:
+ resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
+
/@jridgewell/trace-mapping@0.3.18:
resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==}
dependencies:
@@ -1983,7 +1969,7 @@ packages:
npmlog: 5.0.1
rimraf: 3.0.2
semver: 7.5.2
- tar: 6.1.13
+ tar: 6.1.15
transitivePeerDependencies:
- encoding
- supports-color
@@ -2063,13 +2049,13 @@ packages:
peerDependencies:
eslint: ^8.23.0
dependencies:
- '@nuxtjs/eslint-config': 12.0.0(@typescript-eslint/parser@5.54.1)(eslint-import-resolver-typescript@3.5.5)(eslint@8.43.0)
- '@typescript-eslint/eslint-plugin': 5.54.1(@typescript-eslint/parser@5.54.1)(eslint@8.43.0)(typescript@5.0.4)
- '@typescript-eslint/parser': 5.54.1(eslint@8.43.0)(typescript@5.0.4)
+ '@nuxtjs/eslint-config': 12.0.0(@typescript-eslint/parser@5.59.9)(eslint-import-resolver-typescript@3.5.5)(eslint@8.43.0)
+ '@typescript-eslint/eslint-plugin': 5.59.9(@typescript-eslint/parser@5.59.9)(eslint@8.43.0)(typescript@5.0.4)
+ '@typescript-eslint/parser': 5.59.9(eslint@8.43.0)(typescript@5.0.4)
eslint: 8.43.0
- eslint-import-resolver-typescript: 3.5.5(@typescript-eslint/parser@5.54.1)(eslint-plugin-import@2.27.5)(eslint@8.43.0)
- eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.54.1)(eslint-import-resolver-typescript@3.5.5)(eslint@8.43.0)
- eslint-plugin-vue: 9.9.0(eslint@8.43.0)
+ eslint-import-resolver-typescript: 3.5.5(@typescript-eslint/parser@5.59.9)(eslint-plugin-import@2.27.5)(eslint@8.43.0)
+ eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.59.9)(eslint-import-resolver-typescript@3.5.5)(eslint@8.43.0)
+ eslint-plugin-vue: 9.14.0(eslint@8.43.0)
transitivePeerDependencies:
- eslint-import-resolver-node
- eslint-import-resolver-webpack
@@ -2077,19 +2063,19 @@ packages:
- typescript
dev: true
- /@nuxtjs/eslint-config@12.0.0(@typescript-eslint/parser@5.54.1)(eslint-import-resolver-typescript@3.5.5)(eslint@8.43.0):
+ /@nuxtjs/eslint-config@12.0.0(@typescript-eslint/parser@5.59.9)(eslint-import-resolver-typescript@3.5.5)(eslint@8.43.0):
resolution: {integrity: sha512-ewenelo75x0eYEUK+9EBXjc/OopQCvdkmYmlZuoHq5kub/vtiRpyZ/autppwokpHUq8tiVyl2ejMakoiHiDTrg==}
peerDependencies:
eslint: ^8.23.0
dependencies:
eslint: 8.43.0
- eslint-config-standard: 17.0.0(eslint-plugin-import@2.27.5)(eslint-plugin-n@15.6.1)(eslint-plugin-promise@6.1.1)(eslint@8.43.0)
- eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.54.1)(eslint-import-resolver-typescript@3.5.5)(eslint@8.43.0)
- eslint-plugin-n: 15.6.1(eslint@8.43.0)
+ eslint-config-standard: 17.0.0(eslint-plugin-import@2.27.5)(eslint-plugin-n@15.7.0)(eslint-plugin-promise@6.1.1)(eslint@8.43.0)
+ eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.59.9)(eslint-import-resolver-typescript@3.5.5)(eslint@8.43.0)
+ eslint-plugin-n: 15.7.0(eslint@8.43.0)
eslint-plugin-node: 11.1.0(eslint@8.43.0)
eslint-plugin-promise: 6.1.1(eslint@8.43.0)
eslint-plugin-unicorn: 44.0.2(eslint@8.43.0)
- eslint-plugin-vue: 9.9.0(eslint@8.43.0)
+ eslint-plugin-vue: 9.14.0(eslint@8.43.0)
local-pkg: 0.4.3
transitivePeerDependencies:
- '@typescript-eslint/parser'
@@ -2116,23 +2102,23 @@ packages:
dev: true
optional: true
- /@pkgr/utils@2.3.1:
- resolution: {integrity: sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==}
+ /@pkgr/utils@2.4.0:
+ resolution: {integrity: sha512-2OCURAmRtdlL8iUDTypMrrxfwe8frXTeXaxGsVOaYtc/wrUyk8Z/0OBetM7cdlsy7ZFWlMX72VogKeh+A4Xcjw==}
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
dependencies:
cross-spawn: 7.0.3
+ fast-glob: 3.2.12
is-glob: 4.0.3
- open: 8.4.2
+ open: 9.1.0
picocolors: 1.0.0
- tiny-glob: 0.2.9
- tslib: 2.5.0
+ tslib: 2.5.3
dev: true
/@polka/url@1.0.0-next.21:
resolution: {integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==}
dev: false
- /@rollup/plugin-alias@5.0.0(rollup@3.21.8):
+ /@rollup/plugin-alias@5.0.0(rollup@3.25.1):
resolution: {integrity: sha512-l9hY5chSCjuFRPsnRm16twWBiSApl2uYFLsepQYwtBuAxNMQ/1dJqADld40P0Jkqm65GRTLy/AC6hnpVebtLsA==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -2141,10 +2127,10 @@ packages:
rollup:
optional: true
dependencies:
- rollup: 3.21.8
+ rollup: 3.25.1
slash: 4.0.0
- /@rollup/plugin-commonjs@24.1.0(rollup@3.21.8):
+ /@rollup/plugin-commonjs@24.1.0(rollup@3.25.1):
resolution: {integrity: sha512-eSL45hjhCWI0jCCXcNtLVqM5N1JlBGvlFfY0m6oOYnLCJ6N0qEXoZql4sY2MOUArzhH4SA/qBpTxvvZp2Sc+DQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -2153,15 +2139,33 @@ packages:
rollup:
optional: true
dependencies:
- '@rollup/pluginutils': 5.0.2(rollup@3.21.8)
+ '@rollup/pluginutils': 5.0.2(rollup@3.25.1)
commondir: 1.0.1
estree-walker: 2.0.2
glob: 8.1.0
is-reference: 1.2.1
magic-string: 0.30.0
- rollup: 3.21.8
+ rollup: 3.25.1
+ dev: true
- /@rollup/plugin-inject@5.0.3(rollup@3.21.8):
+ /@rollup/plugin-commonjs@25.0.2(rollup@3.25.1):
+ resolution: {integrity: sha512-NGTwaJxIO0klMs+WSFFtBP7b9TdTJ3K76HZkewT8/+yHzMiUGVQgaPtLQxNVYIgT5F7lxkEyVID+yS3K7bhCow==}
+ 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.25.1)
+ commondir: 1.0.1
+ estree-walker: 2.0.2
+ glob: 8.1.0
+ is-reference: 1.2.1
+ magic-string: 0.30.0
+ rollup: 3.25.1
+
+ /@rollup/plugin-inject@5.0.3(rollup@3.25.1):
resolution: {integrity: sha512-411QlbL+z2yXpRWFXSmw/teQRMkXcAAC8aYTemc15gwJRpvEVDQwoe+N/HTFD8RFG8+88Bme9DK2V9CVm7hJdA==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -2170,12 +2174,12 @@ packages:
rollup:
optional: true
dependencies:
- '@rollup/pluginutils': 5.0.2(rollup@3.21.8)
+ '@rollup/pluginutils': 5.0.2(rollup@3.25.1)
estree-walker: 2.0.2
magic-string: 0.30.0
- rollup: 3.21.8
+ rollup: 3.25.1
- /@rollup/plugin-json@6.0.0(rollup@3.21.8):
+ /@rollup/plugin-json@6.0.0(rollup@3.25.1):
resolution: {integrity: sha512-i/4C5Jrdr1XUarRhVu27EEwjt4GObltD7c+MkCIpO2QIbojw8MUs+CCTqOphQi3Qtg1FLmYt+l+6YeoIf51J7w==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -2184,11 +2188,11 @@ packages:
rollup:
optional: true
dependencies:
- '@rollup/pluginutils': 5.0.2(rollup@3.21.8)
- rollup: 3.21.8
+ '@rollup/pluginutils': 5.0.2(rollup@3.25.1)
+ rollup: 3.25.1
- /@rollup/plugin-node-resolve@15.0.2(rollup@3.21.8):
- resolution: {integrity: sha512-Y35fRGUjC3FaurG722uhUuG8YHOJRJQbI6/CkbRkdPotSpDj9NtIN85z1zrcyDcCQIW4qp5mgG72U+gJ0TAFEg==}
+ /@rollup/plugin-node-resolve@15.1.0(rollup@3.25.1):
+ resolution: {integrity: sha512-xeZHCgsiZ9pzYVgAo9580eCGqwh/XCEUM9q6iQfGNocjgkufHAqC3exA+45URvhiYV8sBF9RlBai650eNs7AsA==}
engines: {node: '>=14.0.0'}
peerDependencies:
rollup: ^2.78.0||^3.0.0
@@ -2196,15 +2200,15 @@ packages:
rollup:
optional: true
dependencies:
- '@rollup/pluginutils': 5.0.2(rollup@3.21.8)
+ '@rollup/pluginutils': 5.0.2(rollup@3.25.1)
'@types/resolve': 1.20.2
deepmerge: 4.3.0
is-builtin-module: 3.2.1
is-module: 1.0.0
- resolve: 1.22.1
- rollup: 3.21.8
+ resolve: 1.22.2
+ rollup: 3.25.1
- /@rollup/plugin-replace@5.0.2(rollup@3.21.8):
+ /@rollup/plugin-replace@5.0.2(rollup@3.25.1):
resolution: {integrity: sha512-M9YXNekv/C/iHHK+cvORzfRYfPbq0RDD8r0G+bMiTXjNGKulPnCT9O3Ss46WfhI6ZOCgApOP7xAdmCQJ+U2LAA==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -2213,12 +2217,12 @@ packages:
rollup:
optional: true
dependencies:
- '@rollup/pluginutils': 5.0.2(rollup@3.21.8)
+ '@rollup/pluginutils': 5.0.2(rollup@3.25.1)
magic-string: 0.30.0
- rollup: 3.21.8
+ rollup: 3.25.1
- /@rollup/plugin-terser@0.4.2(rollup@3.21.8):
- resolution: {integrity: sha512-jfUVQ4MxzIB0mz8QhDA1xiLT+pTF3WEWXeIqcwhoF84WhLWscPpxjJgjYMyAq0Po4UXqw2D9C64tD0gRDzJzfA==}
+ /@rollup/plugin-terser@0.4.3(rollup@3.25.1):
+ resolution: {integrity: sha512-EF0oejTMtkyhrkwCdg0HJ0IpkcaVg1MMSf2olHb2Jp+1mnLM04OhjpJWGma4HobiDTF0WCyViWuvadyE9ch2XA==}
engines: {node: '>=14.0.0'}
peerDependencies:
rollup: ^2.x || ^3.x
@@ -2226,12 +2230,12 @@ packages:
rollup:
optional: true
dependencies:
- rollup: 3.21.8
+ rollup: 3.25.1
serialize-javascript: 6.0.1
- smob: 0.0.6
- terser: 5.16.6
+ smob: 1.1.1
+ terser: 5.18.1
- /@rollup/plugin-wasm@6.1.3(rollup@3.21.8):
+ /@rollup/plugin-wasm@6.1.3(rollup@3.25.1):
resolution: {integrity: sha512-7ItTTeyauE6lwdDtQWceEHZ9+txbi4RRy0mYPFn9BW7rD7YdgBDu7HTHsLtHrRzJc313RM/1m6GKgV3np/aEaw==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -2240,7 +2244,7 @@ packages:
rollup:
optional: true
dependencies:
- rollup: 3.21.8
+ rollup: 3.25.1
/@rollup/pluginutils@4.2.1:
resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
@@ -2249,7 +2253,7 @@ packages:
estree-walker: 2.0.2
picomatch: 2.3.1
- /@rollup/pluginutils@5.0.2(rollup@3.21.8):
+ /@rollup/pluginutils@5.0.2(rollup@3.25.1):
resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -2261,7 +2265,7 @@ packages:
'@types/estree': 1.0.1
estree-walker: 2.0.2
picomatch: 2.3.1
- rollup: 3.21.8
+ rollup: 3.25.1
/@sinclair/typebox@0.25.24:
resolution: {integrity: sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==}
@@ -2286,7 +2290,7 @@ packages:
/@types/babel__traverse@7.18.3:
resolution: {integrity: sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==}
dependencies:
- '@babel/types': 7.21.5
+ '@babel/types': 7.22.5
dev: true
/@types/chai-subset@1.3.3:
@@ -2525,8 +2529,8 @@ packages:
dependencies:
'@types/yargs-parser': 21.0.0
- /@typescript-eslint/eslint-plugin@5.54.1(@typescript-eslint/parser@5.54.1)(eslint@8.43.0)(typescript@5.0.4):
- resolution: {integrity: sha512-a2RQAkosH3d3ZIV08s3DcL/mcGc2M/UC528VkPULFxR9VnVPT8pBu0IyBAJJmVsCmhVfwQX1v6q+QGnmSe1bew==}
+ /@typescript-eslint/eslint-plugin@5.59.9(@typescript-eslint/parser@5.59.9)(eslint@8.43.0)(typescript@5.0.4):
+ resolution: {integrity: sha512-4uQIBq1ffXd2YvF7MAvehWKW3zVv/w+mSfRAu+8cKbfj3nwzyqJLNcZJpQ/WZ1HLbJDiowwmQ6NO+63nCA+fqA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
'@typescript-eslint/parser': ^5.0.0
@@ -2536,16 +2540,16 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.54.1(eslint@8.43.0)(typescript@5.0.4)
- '@typescript-eslint/scope-manager': 5.54.1
- '@typescript-eslint/type-utils': 5.54.1(eslint@8.43.0)(typescript@5.0.4)
- '@typescript-eslint/utils': 5.54.1(eslint@8.43.0)(typescript@5.0.4)
+ '@eslint-community/regexpp': 4.5.1
+ '@typescript-eslint/parser': 5.59.9(eslint@8.43.0)(typescript@5.0.4)
+ '@typescript-eslint/scope-manager': 5.59.9
+ '@typescript-eslint/type-utils': 5.59.9(eslint@8.43.0)(typescript@5.0.4)
+ '@typescript-eslint/utils': 5.59.9(eslint@8.43.0)(typescript@5.0.4)
debug: 4.3.4
eslint: 8.43.0
grapheme-splitter: 1.0.4
ignore: 5.2.4
natural-compare-lite: 1.4.0
- regexpp: 3.2.0
semver: 7.5.2
tsutils: 3.21.0(typescript@5.0.4)
typescript: 5.0.4
@@ -2553,8 +2557,8 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/parser@5.54.1(eslint@8.43.0)(typescript@5.0.4):
- resolution: {integrity: sha512-8zaIXJp/nG9Ff9vQNh7TI+C3nA6q6iIsGJ4B4L6MhZ7mHnTMR4YP5vp2xydmFXIy8rpyIVbNAG44871LMt6ujg==}
+ /@typescript-eslint/parser@5.59.9(eslint@8.43.0)(typescript@5.0.4):
+ resolution: {integrity: sha512-FsPkRvBtcLQ/eVK1ivDiNYBjn3TGJdXy2fhXX+rc7czWl4ARwnpArwbihSOHI2Peg9WbtGHrbThfBUkZZGTtvQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
@@ -2563,9 +2567,9 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 5.54.1
- '@typescript-eslint/types': 5.54.1
- '@typescript-eslint/typescript-estree': 5.54.1(typescript@5.0.4)
+ '@typescript-eslint/scope-manager': 5.59.9
+ '@typescript-eslint/types': 5.59.9
+ '@typescript-eslint/typescript-estree': 5.59.9(typescript@5.0.4)
debug: 4.3.4
eslint: 8.43.0
typescript: 5.0.4
@@ -2573,16 +2577,16 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/scope-manager@5.54.1:
- resolution: {integrity: sha512-zWKuGliXxvuxyM71UA/EcPxaviw39dB2504LqAmFDjmkpO8qNLHcmzlh6pbHs1h/7YQ9bnsO8CCcYCSA8sykUg==}
+ /@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}
dependencies:
- '@typescript-eslint/types': 5.54.1
- '@typescript-eslint/visitor-keys': 5.54.1
+ '@typescript-eslint/types': 5.59.9
+ '@typescript-eslint/visitor-keys': 5.59.9
dev: true
- /@typescript-eslint/type-utils@5.54.1(eslint@8.43.0)(typescript@5.0.4):
- resolution: {integrity: sha512-WREHsTz0GqVYLIbzIZYbmUUr95DKEKIXZNH57W3s+4bVnuF1TKe2jH8ZNH8rO1CeMY3U4j4UQeqPNkHMiGem3g==}
+ /@typescript-eslint/type-utils@5.59.9(eslint@8.43.0)(typescript@5.0.4):
+ resolution: {integrity: sha512-ksEsT0/mEHg9e3qZu98AlSrONAQtrSTljL3ow9CGej8eRo7pe+yaC/mvTjptp23Xo/xIf2mLZKC6KPv4Sji26Q==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '*'
@@ -2591,8 +2595,8 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 5.54.1(typescript@5.0.4)
- '@typescript-eslint/utils': 5.54.1(eslint@8.43.0)(typescript@5.0.4)
+ '@typescript-eslint/typescript-estree': 5.59.9(typescript@5.0.4)
+ '@typescript-eslint/utils': 5.59.9(eslint@8.43.0)(typescript@5.0.4)
debug: 4.3.4
eslint: 8.43.0
tsutils: 3.21.0(typescript@5.0.4)
@@ -2601,8 +2605,8 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/types@5.54.1:
- resolution: {integrity: sha512-G9+1vVazrfAfbtmCapJX8jRo2E4MDXxgm/IMOF4oGh3kq7XuK3JRkOg6y2Qu1VsTRmWETyTkWt1wxy7X7/yLkw==}
+ /@typescript-eslint/types@5.59.9:
+ resolution: {integrity: sha512-uW8H5NRgTVneSVTfiCVffBb8AbwWSKg7qcA4Ot3JI3MPCJGsB4Db4BhvAODIIYE5mNj7Q+VJkK7JxmRhk2Lyjw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
@@ -2611,8 +2615,8 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: false
- /@typescript-eslint/typescript-estree@5.54.1(typescript@5.0.4):
- resolution: {integrity: sha512-bjK5t+S6ffHnVwA0qRPTZrxKSaFYocwFIkZx5k7pvWfsB1I57pO/0M0Skatzzw1sCkjJ83AfGTL0oFIFiDX3bg==}
+ /@typescript-eslint/typescript-estree@5.59.9(typescript@5.0.4):
+ resolution: {integrity: sha512-pmM0/VQ7kUhd1QyIxgS+aRvMgw+ZljB3eDb+jYyp6d2bC0mQWLzUDF+DLwCTkQ3tlNyVsvZRXjFyV0LkU/aXjA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
typescript: '*'
@@ -2620,8 +2624,8 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 5.54.1
- '@typescript-eslint/visitor-keys': 5.54.1
+ '@typescript-eslint/types': 5.59.9
+ '@typescript-eslint/visitor-keys': 5.59.9
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
@@ -2653,31 +2657,31 @@ packages:
- supports-color
dev: false
- /@typescript-eslint/utils@5.54.1(eslint@8.43.0)(typescript@5.0.4):
- resolution: {integrity: sha512-IY5dyQM8XD1zfDe5X8jegX6r2EVU5o/WJnLu/znLPWCBF7KNGC+adacXnt5jEYS9JixDcoccI6CvE4RCjHMzCQ==}
+ /@typescript-eslint/utils@5.59.9(eslint@8.43.0)(typescript@5.0.4):
+ resolution: {integrity: sha512-1PuMYsju/38I5Ggblaeb98TOoUvjhRvLpLa1DoTOFaLWqaXl/1iQ1eGurTXgBY58NUdtfTXKP5xBq7q9NDaLKg==}
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.43.0)
'@types/json-schema': 7.0.11
'@types/semver': 7.5.0
- '@typescript-eslint/scope-manager': 5.54.1
- '@typescript-eslint/types': 5.54.1
- '@typescript-eslint/typescript-estree': 5.54.1(typescript@5.0.4)
+ '@typescript-eslint/scope-manager': 5.59.9
+ '@typescript-eslint/types': 5.59.9
+ '@typescript-eslint/typescript-estree': 5.59.9(typescript@5.0.4)
eslint: 8.43.0
eslint-scope: 5.1.1
- eslint-utils: 3.0.0(eslint@8.43.0)
semver: 7.5.2
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /@typescript-eslint/visitor-keys@5.54.1:
- resolution: {integrity: sha512-q8iSoHTgwCfgcRJ2l2x+xCbu8nBlRAlsQ33k24Adj8eoVBE0f8dUeI+bAa8F84Mv05UGbAx57g2zrRsYIooqQg==}
+ /@typescript-eslint/visitor-keys@5.59.9:
+ resolution: {integrity: sha512-bT7s0td97KMaLwpEBckbzj/YohnvXtqbe2XgqNvTl6RJVakY5mvENOTPvw5u66nljfZxthESpDozs86U+oLY8Q==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/types': 5.54.1
+ '@typescript-eslint/types': 5.59.9
eslint-visitor-keys: 3.4.1
dev: true
@@ -2739,7 +2743,7 @@ packages:
bindings: 1.5.0
estree-walker: 2.0.2
glob: 7.2.3
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
micromatch: 4.0.5
node-gyp-build: 4.6.0
resolve-from: 5.0.0
@@ -2754,9 +2758,9 @@ packages:
vite: ^4.0.0
vue: ^3.0.0
dependencies:
- '@babel/core': 7.21.4
- '@babel/plugin-transform-typescript': 7.21.0(@babel/core@7.21.4)
- '@vue/babel-plugin-jsx': 1.1.1(@babel/core@7.21.4)
+ '@babel/core': 7.22.5
+ '@babel/plugin-transform-typescript': 7.21.0(@babel/core@7.22.5)
+ '@vue/babel-plugin-jsx': 1.1.1(@babel/core@7.22.5)
vite: 4.3.9(@types/node@18.16.18)
vue: 3.3.4
transitivePeerDependencies:
@@ -2826,7 +2830,7 @@ packages:
dependencies:
'@volar/language-core': 1.7.8
- /@vue-macros/common@1.3.1(rollup@3.21.8)(vue@3.3.4):
+ /@vue-macros/common@1.3.1(rollup@3.25.1)(vue@3.3.4):
resolution: {integrity: sha512-Lc5aP/8HNJD1XrnvpeNuWcCf82bZdR3auN/chA1b/1rKZgSnmQkH9f33tKO9qLwXSy+u4hpCi8Rw+oUuF1KCeg==}
engines: {node: '>=14.19.0'}
peerDependencies:
@@ -2835,8 +2839,8 @@ packages:
vue:
optional: true
dependencies:
- '@babel/types': 7.21.5
- '@rollup/pluginutils': 5.0.2(rollup@3.21.8)
+ '@babel/types': 7.22.5
+ '@rollup/pluginutils': 5.0.2(rollup@3.25.1)
'@vue/compiler-sfc': 3.3.4
local-pkg: 0.4.3
magic-string-ast: 0.1.2
@@ -2848,14 +2852,14 @@ packages:
/@vue/babel-helper-vue-transform-on@1.0.2:
resolution: {integrity: sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==}
- /@vue/babel-plugin-jsx@1.1.1(@babel/core@7.21.4):
+ /@vue/babel-plugin-jsx@1.1.1(@babel/core@7.22.5):
resolution: {integrity: sha512-j2uVfZjnB5+zkcbc/zsOc0fSNGCMMjaEXP52wdwdIfn0qjFfEYpYZBFKFg+HHnQeJCVrjOeO0YxgaL7DMrym9w==}
dependencies:
- '@babel/helper-module-imports': 7.18.6
- '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.21.4)
- '@babel/template': 7.20.7
- '@babel/traverse': 7.21.4
- '@babel/types': 7.21.5
+ '@babel/helper-module-imports': 7.22.5
+ '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.22.5)
+ '@babel/template': 7.22.5
+ '@babel/traverse': 7.22.5
+ '@babel/types': 7.22.5
'@vue/babel-helper-vue-transform-on': 1.0.2
camelcase: 6.3.0
html-tags: 3.2.0
@@ -2867,7 +2871,7 @@ packages:
/@vue/compiler-core@3.3.4:
resolution: {integrity: sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==}
dependencies:
- '@babel/parser': 7.21.4
+ '@babel/parser': 7.22.5
'@vue/shared': 3.3.4
estree-walker: 2.0.2
source-map-js: 1.0.2
@@ -2881,7 +2885,7 @@ packages:
/@vue/compiler-sfc@3.3.4:
resolution: {integrity: sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==}
dependencies:
- '@babel/parser': 7.21.4
+ '@babel/parser': 7.22.5
'@vue/compiler-core': 3.3.4
'@vue/compiler-dom': 3.3.4
'@vue/compiler-ssr': 3.3.4
@@ -2914,7 +2918,7 @@ packages:
'@vue/compiler-dom': 3.3.4
'@vue/reactivity': 3.3.4
'@vue/shared': 3.3.4
- minimatch: 9.0.0
+ minimatch: 9.0.1
muggle-string: 0.3.1
typescript: 5.0.4
vue-template-compiler: 2.7.14
@@ -2922,7 +2926,7 @@ packages:
/@vue/reactivity-transform@3.3.4:
resolution: {integrity: sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==}
dependencies:
- '@babel/parser': 7.21.4
+ '@babel/parser': 7.22.5
'@vue/compiler-core': 3.3.4
'@vue/shared': 3.3.4
estree-walker: 2.0.2
@@ -3217,7 +3221,7 @@ packages:
engines: {node: '>= 6'}
dependencies:
glob: 7.2.3
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
lazystream: 1.0.1
lodash.defaults: 4.2.0
lodash.difference: 4.5.0
@@ -3274,7 +3278,7 @@ packages:
call-bind: 1.0.2
define-properties: 1.2.0
es-abstract: 1.21.2
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.2.1
is-string: 1.0.7
dev: true
@@ -3318,8 +3322,8 @@ packages:
resolution: {integrity: sha512-Ro3nmapMxi/remlJdzFH0tiA7A59KDbxVoLlKWaLDrPELiftb9b8w+CCyWRM+sXZH5KHRAgv8feedW6mihvCHA==}
engines: {node: '>=14.19.0'}
dependencies:
- '@babel/parser': 7.21.4
- '@babel/types': 7.21.5
+ '@babel/parser': 7.22.5
+ '@babel/types': 7.22.5
dev: false
/async-sema@3.1.1:
@@ -3335,8 +3339,8 @@ packages:
peerDependencies:
postcss: ^8.1.0
dependencies:
- browserslist: 4.21.5
- caniuse-lite: 1.0.30001465
+ browserslist: 4.21.8
+ caniuse-lite: 1.0.30001503
fraction.js: 4.2.0
normalize-range: 0.1.2
picocolors: 1.0.0
@@ -3362,31 +3366,31 @@ packages:
- supports-color
dev: true
- /babel-preset-current-node-syntax@1.0.1(@babel/core@7.21.4):
+ /babel-preset-current-node-syntax@1.0.1(@babel/core@7.22.5):
resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.21.4
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.4)
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.21.4)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.21.4)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.21.4)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.4)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.4)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.4)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.4)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.4)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.4)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.4)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.21.4)
+ '@babel/core': 7.22.5
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.5)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.22.5)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.5)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.5)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.5)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.5)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.5)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.5)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.5)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.5)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.5)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.5)
dev: true
/babel-walk@3.0.0-canary-5:
resolution: {integrity: sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw==}
engines: {node: '>= 10.0.0'}
dependencies:
- '@babel/types': 7.21.5
+ '@babel/types': 7.22.5
dev: false
/balanced-match@1.0.2:
@@ -3457,15 +3461,15 @@ packages:
dependencies:
fill-range: 7.0.1
- /browserslist@4.21.5:
- resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==}
+ /browserslist@4.21.8:
+ resolution: {integrity: sha512-j+7xYe+v+q2Id9qbBeCI8WX5NmZSRe8es1+0xntD/+gaWXznP8tFEkv5IgSaHf5dS1YwVMbX/4W6m937mj+wQw==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001465
- electron-to-chromium: 1.4.328
- node-releases: 2.0.10
- update-browserslist-db: 1.0.10(browserslist@4.21.5)
+ caniuse-lite: 1.0.30001503
+ electron-to-chromium: 1.4.430
+ node-releases: 2.0.12
+ update-browserslist-db: 1.0.11(browserslist@4.21.8)
/bser@2.1.1:
resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
@@ -3539,7 +3543,7 @@ packages:
resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
dependencies:
function-bind: 1.1.1
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.2.1
/callsites@3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
@@ -3557,14 +3561,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.30001465
+ browserslist: 4.21.8
+ caniuse-lite: 1.0.30001503
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
dev: false
- /caniuse-lite@1.0.30001465:
- resolution: {integrity: sha512-HvjgL3MYAJjceTDCcjRnQGjwUz/5qec9n7JPOzUursUoOTIsYCSDOb1l7RsnZE8mjbxG78zVRCKfrBXyvChBag==}
+ /caniuse-lite@1.0.30001503:
+ resolution: {integrity: sha512-Sf9NiF+wZxPfzv8Z3iS0rXM1Do+iOy2Lxvib38glFX+08TCYYYGR5fRJXk4d77C4AYwhUjgYgMsMudbh2TqCKw==}
/case-police@0.6.1:
resolution: {integrity: sha512-tOgkG3HhtzNVHU+HVHqbpVJ3CICPDihtlgoM2C4dx0RLeo6qcNVeBgiYJN5Bln+stxKrnKrw89CFgqYQDqwZQg==}
@@ -3620,7 +3624,7 @@ packages:
pkg-types: 1.0.3
scule: 1.0.0
semver: 7.5.2
- yaml: 2.2.2
+ yaml: 2.3.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -3646,7 +3650,7 @@ packages:
css-what: 6.1.0
domelementtype: 2.3.0
domhandler: 5.0.3
- domutils: 3.0.1
+ domutils: 3.1.0
dev: true
/cheerio@1.0.0-rc.12:
@@ -3656,7 +3660,7 @@ packages:
cheerio-select: 2.1.0
dom-serializer: 2.0.0
domhandler: 5.0.3
- domutils: 3.0.1
+ domutils: 3.1.0
htmlparser2: 8.0.2
parse5: 7.1.2
parse5-htmlparser2-tree-adapter: 7.0.0
@@ -3811,7 +3815,7 @@ packages:
dependencies:
date-time: 3.1.0
esutils: 2.0.3
- fast-diff: 1.2.0
+ fast-diff: 1.3.0
js-string-escape: 1.0.1
lodash: 4.17.21
md5-hex: 3.0.1
@@ -3832,8 +3836,8 @@ packages:
/constantinople@4.0.1:
resolution: {integrity: sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw==}
dependencies:
- '@babel/parser': 7.21.4
- '@babel/types': 7.21.5
+ '@babel/parser': 7.22.5
+ '@babel/types': 7.22.5
dev: false
/convert-gitmoji@0.1.3:
@@ -3963,7 +3967,7 @@ packages:
boolbase: 1.0.0
css-what: 6.1.0
domhandler: 5.0.3
- domutils: 3.0.1
+ domutils: 3.1.0
nth-check: 2.1.1
/css-tree@2.2.1:
@@ -4236,7 +4240,7 @@ packages:
dependencies:
domelementtype: 2.3.0
domhandler: 5.0.3
- entities: 4.4.0
+ entities: 4.5.0
/domelementtype@2.3.0:
resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
@@ -4247,8 +4251,8 @@ packages:
dependencies:
domelementtype: 2.3.0
- /domutils@3.0.1:
- resolution: {integrity: sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==}
+ /domutils@3.1.0:
+ resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==}
dependencies:
dom-serializer: 2.0.0
domelementtype: 2.3.0
@@ -4273,8 +4277,8 @@ packages:
/ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- /electron-to-chromium@1.4.328:
- resolution: {integrity: sha512-DE9tTy2PNmy1v55AZAO542ui+MLC2cvINMK4P2LXGsJdput/ThVG9t+QGecPuAZZSgC8XoI+Jh9M1OG9IoNSCw==}
+ /electron-to-chromium@1.4.430:
+ resolution: {integrity: sha512-FytjTbGwz///F+ToZ5XSeXbbSaXalsVRXsz2mHityI5gfxft7ieW3HqFLkU5V1aIrY42aflICqbmFoDxW10etg==}
/emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
@@ -4299,7 +4303,7 @@ packages:
resolution: {integrity: sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==}
engines: {node: '>=6.9.0'}
dependencies:
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
memory-fs: 0.5.0
tapable: 1.1.3
dev: false
@@ -4308,7 +4312,7 @@ packages:
resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==}
engines: {node: '>=10.13.0'}
dependencies:
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
tapable: 2.2.1
/entities@3.0.1:
@@ -4316,8 +4320,8 @@ packages:
engines: {node: '>=0.12'}
dev: true
- /entities@4.4.0:
- resolution: {integrity: sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==}
+ /entities@4.5.0:
+ resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
engines: {node: '>=0.12'}
/errno@0.1.8:
@@ -4348,7 +4352,7 @@ packages:
es-set-tostringtag: 2.0.1
es-to-primitive: 1.2.1
function.prototype.name: 1.1.5
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.2.1
get-symbol-description: 1.0.0
globalthis: 1.0.3
gopd: 1.0.1
@@ -4368,7 +4372,7 @@ packages:
object-inspect: 1.12.3
object-keys: 1.1.1
object.assign: 4.1.4
- regexp.prototype.flags: 1.4.3
+ regexp.prototype.flags: 1.5.0
safe-regex-test: 1.0.0
string.prototype.trim: 1.2.7
string.prototype.trimend: 1.0.6
@@ -4385,7 +4389,7 @@ packages:
resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==}
engines: {node: '>= 0.4'}
dependencies:
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.2.1
has: 1.0.3
has-tostringtag: 1.0.0
dev: true
@@ -4473,7 +4477,6 @@ packages:
'@esbuild/win32-arm64': 0.18.6
'@esbuild/win32-ia32': 0.18.6
'@esbuild/win32-x64': 0.18.6
- dev: false
/escalade@3.1.1:
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
@@ -4499,7 +4502,7 @@ packages:
resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
engines: {node: '>=12'}
- /eslint-config-standard@17.0.0(eslint-plugin-import@2.27.5)(eslint-plugin-n@15.6.1)(eslint-plugin-promise@6.1.1)(eslint@8.43.0):
+ /eslint-config-standard@17.0.0(eslint-plugin-import@2.27.5)(eslint-plugin-n@15.7.0)(eslint-plugin-promise@6.1.1)(eslint@8.43.0):
resolution: {integrity: sha512-/2ks1GKyqSOkH7JFvXJicu0iMpoojkwB+f5Du/1SC0PtBL+s8v30k9njRZ21pm2drKYm2342jFnGWzttxPmZVg==}
peerDependencies:
eslint: ^8.0.1
@@ -4508,8 +4511,8 @@ packages:
eslint-plugin-promise: ^6.0.0
dependencies:
eslint: 8.43.0
- eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.54.1)(eslint-import-resolver-typescript@3.5.5)(eslint@8.43.0)
- eslint-plugin-n: 15.6.1(eslint@8.43.0)
+ eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.59.9)(eslint-import-resolver-typescript@3.5.5)(eslint@8.43.0)
+ eslint-plugin-n: 15.7.0(eslint@8.43.0)
eslint-plugin-promise: 6.1.1(eslint@8.43.0)
dev: true
@@ -4517,13 +4520,13 @@ packages:
resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==}
dependencies:
debug: 3.2.7
- is-core-module: 2.11.0
- resolve: 1.22.1
+ is-core-module: 2.12.1
+ resolve: 1.22.2
transitivePeerDependencies:
- supports-color
dev: true
- /eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@5.54.1)(eslint-plugin-import@2.27.5)(eslint@8.43.0):
+ /eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@5.59.9)(eslint-plugin-import@2.27.5)(eslint@8.43.0):
resolution: {integrity: sha512-TdJqPHs2lW5J9Zpe17DZNQuDnox4xo2o+0tE7Pggain9Rbc19ik8kFtXdxZ250FVx2kF4vlt2RSf4qlUpG7bhw==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
@@ -4533,11 +4536,11 @@ packages:
debug: 4.3.4
enhanced-resolve: 5.15.0
eslint: 8.43.0
- eslint-module-utils: 2.7.4(@typescript-eslint/parser@5.54.1)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.5)(eslint@8.43.0)
- eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.54.1)(eslint-import-resolver-typescript@3.5.5)(eslint@8.43.0)
+ eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.59.9)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.5)(eslint@8.43.0)
+ eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.59.9)(eslint-import-resolver-typescript@3.5.5)(eslint@8.43.0)
get-tsconfig: 4.5.0
globby: 13.2.0
- is-core-module: 2.11.0
+ is-core-module: 2.12.1
is-glob: 4.0.3
synckit: 0.8.5
transitivePeerDependencies:
@@ -4547,8 +4550,8 @@ packages:
- supports-color
dev: true
- /eslint-module-utils@2.7.4(@typescript-eslint/parser@5.54.1)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.5)(eslint@8.43.0):
- resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==}
+ /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.59.9)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.5)(eslint@8.43.0):
+ resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
@@ -4568,11 +4571,11 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.54.1(eslint@8.43.0)(typescript@5.0.4)
+ '@typescript-eslint/parser': 5.59.9(eslint@8.43.0)(typescript@5.0.4)
debug: 3.2.7
eslint: 8.43.0
eslint-import-resolver-node: 0.3.7
- eslint-import-resolver-typescript: 3.5.5(@typescript-eslint/parser@5.54.1)(eslint-plugin-import@2.27.5)(eslint@8.43.0)
+ eslint-import-resolver-typescript: 3.5.5(@typescript-eslint/parser@5.59.9)(eslint-plugin-import@2.27.5)(eslint@8.43.0)
transitivePeerDependencies:
- supports-color
dev: true
@@ -4599,7 +4602,7 @@ packages:
regexpp: 3.2.0
dev: true
- /eslint-plugin-import@2.27.5(@typescript-eslint/parser@5.54.1)(eslint-import-resolver-typescript@3.5.5)(eslint@8.43.0):
+ /eslint-plugin-import@2.27.5(@typescript-eslint/parser@5.59.9)(eslint-import-resolver-typescript@3.5.5)(eslint@8.43.0):
resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==}
engines: {node: '>=4'}
peerDependencies:
@@ -4609,7 +4612,7 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 5.54.1(eslint@8.43.0)(typescript@5.0.4)
+ '@typescript-eslint/parser': 5.59.9(eslint@8.43.0)(typescript@5.0.4)
array-includes: 3.1.6
array.prototype.flat: 1.3.1
array.prototype.flatmap: 1.3.1
@@ -4617,13 +4620,13 @@ packages:
doctrine: 2.1.0
eslint: 8.43.0
eslint-import-resolver-node: 0.3.7
- eslint-module-utils: 2.7.4(@typescript-eslint/parser@5.54.1)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.5)(eslint@8.43.0)
+ eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.59.9)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.5)(eslint@8.43.0)
has: 1.0.3
- is-core-module: 2.11.0
+ is-core-module: 2.12.1
is-glob: 4.0.3
minimatch: 3.1.2
object.values: 1.1.6
- resolve: 1.22.1
+ resolve: 1.22.2
semver: 6.3.0
tsconfig-paths: 3.14.2
transitivePeerDependencies:
@@ -4638,7 +4641,7 @@ packages:
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
dependencies:
- '@es-joy/jsdoccomment': 0.37.0
+ '@es-joy/jsdoccomment': 0.37.1
are-docs-informative: 0.0.2
comment-parser: 1.3.1
debug: 4.3.4
@@ -4651,8 +4654,8 @@ packages:
- supports-color
dev: true
- /eslint-plugin-n@15.6.1(eslint@8.43.0):
- resolution: {integrity: sha512-R9xw9OtCRxxaxaszTQmQAlPgM+RdGjaL1akWuY/Fv9fRAi8Wj4CUKc6iYVG8QNRjRuo8/BqVYIpfqberJUEacA==}
+ /eslint-plugin-n@15.7.0(eslint@8.43.0):
+ resolution: {integrity: sha512-jDex9s7D/Qial8AGVIHq4W7NswpUD5DPDL2RH8Lzd9EloWUuvUkHfv4FRLMipH5q2UtyurorBkPeNi1wVWNh3Q==}
engines: {node: '>=12.22.0'}
peerDependencies:
eslint: '>=7.0.0'
@@ -4662,9 +4665,9 @@ packages:
eslint-plugin-es: 4.1.0(eslint@8.43.0)
eslint-utils: 3.0.0(eslint@8.43.0)
ignore: 5.2.4
- is-core-module: 2.11.0
+ is-core-module: 2.12.1
minimatch: 3.1.2
- resolve: 1.22.1
+ resolve: 1.22.2
semver: 7.5.2
dev: true
@@ -4684,7 +4687,7 @@ packages:
eslint-utils: 2.1.0
ignore: 5.2.4
minimatch: 3.1.2
- resolve: 1.22.1
+ resolve: 1.22.2
semver: 6.3.0
dev: true
@@ -4703,7 +4706,7 @@ packages:
peerDependencies:
eslint: '>=8.23.1'
dependencies:
- '@babel/helper-validator-identifier': 7.19.1
+ '@babel/helper-validator-identifier': 7.22.5
ci-info: 3.8.0
clean-regexp: 1.0.0
eslint: 8.43.0
@@ -4714,23 +4717,23 @@ packages:
lodash: 4.17.21
pluralize: 8.0.0
read-pkg-up: 7.0.1
- regexp-tree: 0.1.24
+ regexp-tree: 0.1.27
safe-regex: 2.1.1
semver: 7.5.2
strip-indent: 3.0.0
dev: true
- /eslint-plugin-vue@9.9.0(eslint@8.43.0):
- resolution: {integrity: sha512-YbubS7eK0J7DCf0U2LxvVP7LMfs6rC6UltihIgval3azO3gyDwEGVgsCMe1TmDiEkl6GdMKfRpaME6QxIYtzDQ==}
+ /eslint-plugin-vue@9.14.0(eslint@8.43.0):
+ resolution: {integrity: sha512-4O7EuiqPGVQA1wYCzLvCzsBTv9JIPHLHhrf0k55DLzbwtmJbSw2TKS0G/l7pOwi9RWMSkjIT7ftChU5gZpgnJw==}
engines: {node: ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.2.0 || ^7.0.0 || ^8.0.0
dependencies:
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.43.0)
eslint: 8.43.0
- eslint-utils: 3.0.0(eslint@8.43.0)
natural-compare: 1.4.0
nth-check: 2.1.1
- postcss-selector-parser: 6.0.11
+ postcss-selector-parser: 6.0.13
semver: 7.5.2
vue-eslint-parser: 9.3.1(eslint@8.43.0)
xml-name-validator: 4.0.0
@@ -4788,8 +4791,8 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
hasBin: true
dependencies:
- '@eslint-community/eslint-utils': 4.2.0(eslint@8.43.0)
- '@eslint-community/regexpp': 4.4.0
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.43.0)
+ '@eslint-community/regexpp': 4.5.1
'@eslint/eslintrc': 2.0.3
'@eslint/js': 8.43.0
'@humanwhocodes/config-array': 0.11.10
@@ -4907,7 +4910,7 @@ packages:
dependencies:
cross-spawn: 7.0.3
get-stream: 6.0.1
- human-signals: 4.3.0
+ human-signals: 4.3.1
is-stream: 3.0.0
merge-stream: 2.0.0
npm-run-path: 5.1.0
@@ -4946,8 +4949,8 @@ packages:
/fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
- /fast-diff@1.2.0:
- resolution: {integrity: sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==}
+ /fast-diff@1.3.0:
+ resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==}
dev: true
/fast-glob@3.2.12:
@@ -5066,7 +5069,7 @@ packages:
engines: {node: '>=14'}
dependencies:
cross-spawn: 7.0.3
- signal-exit: 4.0.1
+ signal-exit: 4.0.2
dev: true
/fork-ts-checker-webpack-plugin@8.0.0(typescript@5.0.4)(webpack@5.87.0):
@@ -5076,7 +5079,7 @@ packages:
typescript: '>3.6.0'
webpack: ^5.11.0
dependencies:
- '@babel/code-frame': 7.21.4
+ '@babel/code-frame': 7.22.5
chalk: 4.1.2
chokidar: 3.5.3
cosmiconfig: 7.1.0
@@ -5113,7 +5116,7 @@ packages:
resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
engines: {node: '>=12'}
dependencies:
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jsonfile: 6.1.0
universalify: 2.0.0
@@ -5121,7 +5124,7 @@ packages:
resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==}
engines: {node: '>=14.14'}
dependencies:
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jsonfile: 6.1.0
universalify: 2.0.0
@@ -5188,11 +5191,12 @@ packages:
resolution: {integrity: sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==}
dev: true
- /get-intrinsic@1.2.0:
- resolution: {integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==}
+ /get-intrinsic@1.2.1:
+ resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==}
dependencies:
function-bind: 1.1.1
has: 1.0.3
+ has-proto: 1.0.1
has-symbols: 1.0.3
/get-package-type@0.1.0:
@@ -5217,7 +5221,7 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.2.1
dev: true
/get-tsconfig@4.5.0:
@@ -5233,7 +5237,7 @@ packages:
mri: 1.2.0
node-fetch-native: 1.2.0
pathe: 1.1.1
- tar: 6.1.13
+ tar: 6.1.15
transitivePeerDependencies:
- supports-color
@@ -5267,16 +5271,16 @@ packages:
/glob-to-regexp@0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
- /glob@10.2.5:
- resolution: {integrity: sha512-Gj+dFYPZ5hc5dazjXzB0iHg2jKWJZYMjITXYPBRQ/xc2Buw7H0BINknRTwURJ6IC6MEFpYbLvtgVb3qD+DwyuA==}
+ /glob@10.2.6:
+ resolution: {integrity: sha512-U/rnDpXJGF414QQQZv5uVsabTVxMSwzS5CH0p3DRCIV6ownl4f7PzGnkGmvlum2wB+9RlJWJZ6ACU1INnBqiPA==}
engines: {node: '>=16 || 14 >=14.17'}
hasBin: true
dependencies:
foreground-child: 3.1.1
- jackspeak: 2.1.1
- minimatch: 9.0.0
- minipass: 5.0.0
- path-scurry: 1.7.0
+ jackspeak: 2.2.1
+ minimatch: 9.0.1
+ minipass: 6.0.2
+ path-scurry: 1.9.2
dev: true
/glob@7.2.3:
@@ -5327,10 +5331,6 @@ packages:
define-properties: 1.2.0
dev: true
- /globalyzer@0.1.0:
- resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==}
- dev: true
-
/globby@11.1.0:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
engines: {node: '>=10'}
@@ -5352,18 +5352,14 @@ packages:
merge2: 1.4.1
slash: 4.0.0
- /globrex@0.1.2:
- resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
- dev: true
-
/gopd@1.0.1:
resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
dependencies:
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.2.1
dev: true
- /graceful-fs@4.2.10:
- resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==}
+ /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==}
@@ -5411,13 +5407,12 @@ packages:
/has-property-descriptors@1.0.0:
resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==}
dependencies:
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.2.1
dev: true
/has-proto@1.0.1:
resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
engines: {node: '>= 0.4'}
- dev: true
/has-symbols@1.0.3:
resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
@@ -5465,8 +5460,8 @@ packages:
dependencies:
domelementtype: 2.3.0
domhandler: 5.0.3
- domutils: 3.0.1
- entities: 4.4.0
+ domutils: 3.1.0
+ entities: 4.5.0
dev: true
/http-errors@2.0.0:
@@ -5479,6 +5474,14 @@ packages:
statuses: 2.0.1
toidentifier: 1.0.1
+ /http-graceful-shutdown@3.1.13:
+ resolution: {integrity: sha512-Ci5LRufQ8AtrQ1U26AevS8QoMXDOhnAHCJI3eZu1com7mZGHxREmw3dNj85ftpQokQCvak8nI2pnFS8zyM1M+Q==}
+ engines: {node: '>=4.0.0'}
+ dependencies:
+ debug: 4.3.4
+ transitivePeerDependencies:
+ - supports-color
+
/http-proxy@1.18.1:
resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==}
engines: {node: '>=8.0.0'}
@@ -5506,8 +5509,8 @@ packages:
resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
engines: {node: '>=10.17.0'}
- /human-signals@4.3.0:
- resolution: {integrity: sha512-zyzVyMjpGBX2+6cDVZeFPCdtOtdsxOeseRhB9tkQ6xXmGUNrcnBzdEKPy3VPNYz+4gy1oukVOXcrJCunSyc6QQ==}
+ /human-signals@4.3.1:
+ resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==}
engines: {node: '>=14.18.0'}
/iconv-lite@0.4.24:
@@ -5593,7 +5596,7 @@ packages:
resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==}
engines: {node: '>= 0.4'}
dependencies:
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.2.1
has: 1.0.3
side-channel: 1.0.4
dev: true
@@ -5625,7 +5628,7 @@ packages:
resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==}
dependencies:
call-bind: 1.0.2
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.2.1
is-typed-array: 1.1.10
dev: true
@@ -5663,8 +5666,8 @@ packages:
engines: {node: '>= 0.4'}
dev: true
- /is-core-module@2.11.0:
- resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==}
+ /is-core-module@2.12.1:
+ resolution: {integrity: sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==}
dependencies:
has: 1.0.3
@@ -5839,8 +5842,8 @@ packages:
resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
engines: {node: '>=8'}
dependencies:
- '@babel/core': 7.21.4
- '@babel/parser': 7.21.4
+ '@babel/core': 7.22.5
+ '@babel/parser': 7.22.5
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.0
semver: 6.3.0
@@ -5848,11 +5851,11 @@ packages:
- supports-color
dev: true
- /jackspeak@2.1.1:
- resolution: {integrity: sha512-juf9stUEwUaILepraGOWIJTLwg48bUnBmRqd2ln2Os1sW987zeoj/hzhbvRB95oMuS2ZTpjULmdwHNX4rzZIZw==}
+ /jackspeak@2.2.1:
+ resolution: {integrity: sha512-MXbxovZ/Pm42f6cDIDkl3xpwv1AGwObKwfmjs2nQePiy85tP3fatofl3FC1aBsOtP/6fq5SbtgHwWcMsLP+bDw==}
engines: {node: '>=14'}
dependencies:
- cliui: 8.0.1
+ '@isaacs/cliui': 8.0.2
optionalDependencies:
'@pkgjs/parseargs': 0.11.0
dev: true
@@ -5881,7 +5884,7 @@ packages:
'@types/node': 18.16.18
anymatch: 3.1.3
fb-watchman: 2.0.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-regex-util: 29.4.3
jest-util: 29.5.0
jest-worker: 29.5.0
@@ -5905,11 +5908,11 @@ packages:
resolution: {integrity: sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/code-frame': 7.21.4
+ '@babel/code-frame': 7.22.5
'@jest/types': 29.5.0
'@types/stack-utils': 2.0.1
chalk: 4.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
micromatch: 4.0.5
pretty-format: 29.5.0
slash: 3.0.0
@@ -5934,21 +5937,21 @@ packages:
resolution: {integrity: sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/core': 7.21.4
- '@babel/generator': 7.21.4
- '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.21.4)
- '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.21.4)
- '@babel/traverse': 7.21.4
- '@babel/types': 7.21.5
+ '@babel/core': 7.22.5
+ '@babel/generator': 7.22.5
+ '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.22.5)
+ '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.22.5)
+ '@babel/traverse': 7.22.5
+ '@babel/types': 7.22.5
'@jest/expect-utils': 29.5.0
'@jest/transform': 29.5.0
'@jest/types': 29.5.0
'@types/babel__traverse': 7.18.3
'@types/prettier': 2.7.2
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.21.4)
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.5)
chalk: 4.1.2
expect: 29.5.0
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-diff: 29.5.0
jest-get-type: 29.4.3
jest-matcher-utils: 29.5.0
@@ -5969,7 +5972,7 @@ packages:
'@types/node': 18.16.18
chalk: 4.1.2
ci-info: 3.8.0
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
picomatch: 2.3.1
/jest-worker@27.5.1:
@@ -6061,7 +6064,7 @@ packages:
dependencies:
universalify: 2.0.0
optionalDependencies:
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
/jstransformer@1.0.0:
resolution: {integrity: sha512-C9YK3Rf8q6VAPDCCU9fnqo3mAfOH6vUGnMcP4AQAYIEpWtfGLpwOTmZ+igtdK5y+VvI2n3CyYSzy4Qh34eq24A==}
@@ -6214,6 +6217,10 @@ packages:
get-func-name: 2.0.0
dev: true
+ /lru-cache@10.0.0:
+ resolution: {integrity: sha512-svTf/fzsKHffP42sujkO/Rjs37BCIsQVRCeNYIm9WN8rgT7ffoUnRtZCqU+6BqcSBdv8gwJeTz8knJpgACeQMw==}
+ engines: {node: 14 || >=16.14}
+
/lru-cache@5.1.1:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
dependencies:
@@ -6225,9 +6232,10 @@ packages:
dependencies:
yallist: 4.0.0
- /lru-cache@9.1.1:
- resolution: {integrity: sha512-65/Jky17UwSb0BuB9V+MyDpsOtXKmYwzhyl+cOa9XUiI4uV2Ouy/2voFP3+al0BjZbJgMBD8FojMpAf+Z+qn4A==}
+ /lru-cache@9.1.2:
+ resolution: {integrity: sha512-ERJq3FOzJTxBbFjZ7iDs+NiK4VI9Wz+RdrrAB8dio1oV+YvdPzUEE4QNiT2VD51DkIbCYRUUzCRkssXCHqSnKQ==}
engines: {node: 14 || >=16.14}
+ dev: true
/magic-string-ast@0.1.2:
resolution: {integrity: sha512-P53AZrzq7hclCU6HWj88xNZHmP15DKjMmK/vBytO1qnpYP3ul4IEZlyCE0aU3JRnmgWmZPmoTKj4Bls7v0pMyA==}
@@ -6240,7 +6248,7 @@ packages:
resolution: {integrity: sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==}
engines: {node: '>=12'}
dependencies:
- '@jridgewell/sourcemap-codec': 1.4.14
+ '@jridgewell/sourcemap-codec': 1.4.15
/make-dir@3.1.0:
resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
@@ -6402,8 +6410,8 @@ packages:
dependencies:
brace-expansion: 2.0.1
- /minimatch@9.0.0:
- resolution: {integrity: sha512-0jJj8AvgKqWN05mrwuqi8QYKx1WmYSUoKSxu5Qhs9prezTz10sxAHGNZe9J9cqIJzta8DWsleh2KaVaLl6Ru2w==}
+ /minimatch@9.0.1:
+ resolution: {integrity: sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==}
engines: {node: '>=16 || 14 >=14.17'}
dependencies:
brace-expansion: 2.0.1
@@ -6417,13 +6425,13 @@ packages:
dependencies:
yallist: 4.0.0
- /minipass@4.2.5:
- resolution: {integrity: sha512-+yQl7SX3bIT83Lhb4BVorMAHVuqsskxRdlmO9kTpyukp8vsm2Sn/fUOV9xlnG8/a5JsypJzap21lz/y3FBMJ8Q==}
- engines: {node: '>=8'}
-
/minipass@5.0.0:
resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
engines: {node: '>=8'}
+
+ /minipass@6.0.2:
+ resolution: {integrity: sha512-MzWSV5nYVT7mVyWCwn2o7JH13w2TBRmmSqSRCKzTw+lmft9X4z+3wjvs06Tzijo5z4W/kahUCDpRXTF+ZrmF/w==}
+ engines: {node: '>=16 || 14 >=14.17'}
dev: true
/minizlib@2.1.2:
@@ -6514,22 +6522,22 @@ packages:
/neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
- /nitropack@2.4.1:
- resolution: {integrity: sha512-CJzt5e5E8BKreTW+iqqGSFLPc1Yblcg2fiit8L6JtpCDl3aE9/rHGsv/w9oLV4FtsoC2qjTD2qoeCGp80mHw5Q==}
+ /nitropack@2.5.1:
+ resolution: {integrity: sha512-RKq++lLrs7m/hlkEkYezL119Lu7LzseaDh/6UzmXqYD8/fx896Bou4CJpe775iHiHDzASiCmVKtlkBJxSiRi5w==}
engines: {node: ^14.16.0 || ^16.11.0 || >=17.0.0}
hasBin: true
dependencies:
'@cloudflare/kv-asset-handler': 0.3.0
'@netlify/functions': 1.6.0
- '@rollup/plugin-alias': 5.0.0(rollup@3.21.8)
- '@rollup/plugin-commonjs': 24.1.0(rollup@3.21.8)
- '@rollup/plugin-inject': 5.0.3(rollup@3.21.8)
- '@rollup/plugin-json': 6.0.0(rollup@3.21.8)
- '@rollup/plugin-node-resolve': 15.0.2(rollup@3.21.8)
- '@rollup/plugin-replace': 5.0.2(rollup@3.21.8)
- '@rollup/plugin-terser': 0.4.2(rollup@3.21.8)
- '@rollup/plugin-wasm': 6.1.3(rollup@3.21.8)
- '@rollup/pluginutils': 5.0.2(rollup@3.21.8)
+ '@rollup/plugin-alias': 5.0.0(rollup@3.25.1)
+ '@rollup/plugin-commonjs': 25.0.2(rollup@3.25.1)
+ '@rollup/plugin-inject': 5.0.3(rollup@3.25.1)
+ '@rollup/plugin-json': 6.0.0(rollup@3.25.1)
+ '@rollup/plugin-node-resolve': 15.1.0(rollup@3.25.1)
+ '@rollup/plugin-replace': 5.0.2(rollup@3.25.1)
+ '@rollup/plugin-terser': 0.4.3(rollup@3.25.1)
+ '@rollup/plugin-wasm': 6.1.3(rollup@3.25.1)
+ '@rollup/pluginutils': 5.0.2(rollup@3.25.1)
'@types/http-proxy': 1.17.11
'@vercel/nft': 0.22.6
archiver: 5.3.1
@@ -6540,9 +6548,9 @@ packages:
consola: 3.1.0
cookie-es: 1.0.0
defu: 6.1.2
- destr: 1.2.2
+ destr: 2.0.0
dot-prop: 7.2.0
- esbuild: 0.17.19
+ esbuild: 0.18.6
escape-string-regexp: 5.0.0
etag: 1.8.1
fs-extra: 11.1.1
@@ -6550,26 +6558,28 @@ packages:
gzip-size: 7.0.0
h3: 1.7.0
hookable: 5.5.3
+ http-graceful-shutdown: 3.1.13
http-proxy: 1.18.1
is-primitive: 3.0.1
jiti: 1.18.2
klona: 2.0.6
knitwork: 1.0.0
listhen: 1.0.4
+ magic-string: 0.30.0
mime: 3.0.0
mlly: 1.4.0
mri: 1.2.0
node-fetch-native: 1.2.0
ofetch: 1.1.1
ohash: 1.1.2
- openapi-typescript: 6.2.4
+ openapi-typescript: 6.2.8
pathe: 1.1.1
perfect-debounce: 1.0.0
pkg-types: 1.0.3
pretty-bytes: 6.1.0
radix3: 1.0.1
- rollup: 3.21.8
- rollup-plugin-visualizer: 5.9.2(rollup@3.21.8)
+ rollup: 3.25.1
+ rollup-plugin-visualizer: 5.9.2(rollup@3.25.1)
scule: 1.0.0
semver: 7.5.2
serve-placeholder: 2.0.1
@@ -6577,9 +6587,10 @@ packages:
source-map-support: 0.5.21
std-env: 3.3.3
ufo: 1.1.2
+ uncrypto: 0.1.3
unenv: 1.5.1
- unimport: 3.0.8(rollup@3.21.8)
- unstorage: 1.6.0
+ unimport: 3.0.8(rollup@3.25.1)
+ unstorage: 1.7.0
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -6640,8 +6651,8 @@ packages:
resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
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==}
@@ -6654,7 +6665,7 @@ packages:
resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
dependencies:
hosted-git-info: 2.8.9
- resolve: 1.22.1
+ resolve: 1.22.2
semver: 5.7.1
validate-npm-package-license: 3.0.4
dev: true
@@ -6783,15 +6794,15 @@ packages:
is-wsl: 2.2.0
dev: true
- /openapi-typescript@6.2.4:
- resolution: {integrity: sha512-P/VK7oJ3TnIS67o1UzuS1pMnry4mzNzeQG0ZjLdPGT04mN9FeeTgHw1bN6MiANFN0tO6BcRavSL5tUFAh6iiwg==}
+ /openapi-typescript@6.2.8:
+ resolution: {integrity: sha512-yA+y5MHiu6cjmtsGfNLavzVuvGCKzjL3H+exgHDPK6bnp6ZVFibtAiafenNSRDWL0x+7Sw/VPv5SbaqiPLW46w==}
hasBin: true
dependencies:
ansi-colors: 4.1.3
fast-glob: 3.2.12
js-yaml: 4.1.0
supports-color: 9.3.1
- undici: 5.22.0
+ undici: 5.22.1
yargs-parser: 21.1.1
/opener@1.5.2:
@@ -6883,7 +6894,7 @@ packages:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
dependencies:
- '@babel/code-frame': 7.21.4
+ '@babel/code-frame': 7.22.5
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
@@ -6908,7 +6919,7 @@ packages:
/parse5@7.1.2:
resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==}
dependencies:
- entities: 4.4.0
+ entities: 4.5.0
dev: true
/parseurl@1.3.3:
@@ -6934,12 +6945,12 @@ packages:
/path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
- /path-scurry@1.7.0:
- resolution: {integrity: sha512-UkZUeDjczjYRE495+9thsgcVgsaCPkaw80slmfVFgllxY+IO8ubTsOpFVjDPROBqJdHfVPUFRHPBV/WciOVfWg==}
+ /path-scurry@1.9.2:
+ resolution: {integrity: sha512-qSDLy2aGFPm8i4rsbHd4MNyTcrzHFsLQykrtbuGRknZZCBBVXSv2tSCDN2Cg6Rt/GFRw8GoW9y9Ecw5rIPG1sg==}
engines: {node: '>=16 || 14 >=14.17'}
dependencies:
- lru-cache: 9.1.1
- minipass: 5.0.0
+ lru-cache: 9.1.2
+ minipass: 6.0.2
dev: true
/path-type@4.0.0:
@@ -7012,7 +7023,7 @@ packages:
postcss: ^8.2.2
dependencies:
postcss: 8.4.24
- postcss-selector-parser: 6.0.11
+ postcss-selector-parser: 6.0.13
postcss-value-parser: 4.2.0
dev: false
@@ -7022,7 +7033,7 @@ packages:
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.5
+ browserslist: 4.21.8
caniuse-api: 3.0.0
colord: 2.9.3
postcss: 8.4.24
@@ -7035,7 +7046,7 @@ packages:
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.5
+ browserslist: 4.21.8
postcss: 8.4.24
postcss-value-parser: 4.2.0
dev: false
@@ -7091,7 +7102,7 @@ packages:
postcss: 8.4.24
postcss-value-parser: 4.2.0
read-cache: 1.0.0
- resolve: 1.22.1
+ resolve: 1.22.2
dev: false
/postcss-loader@7.3.3(postcss@8.4.24)(webpack@5.87.0):
@@ -7125,11 +7136,11 @@ packages:
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.5
+ browserslist: 4.21.8
caniuse-api: 3.0.0
cssnano-utils: 4.0.0(postcss@8.4.24)
postcss: 8.4.24
- postcss-selector-parser: 6.0.11
+ postcss-selector-parser: 6.0.13
dev: false
/postcss-minify-font-values@6.0.0(postcss@8.4.24):
@@ -7160,7 +7171,7 @@ packages:
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.5
+ browserslist: 4.21.8
cssnano-utils: 4.0.0(postcss@8.4.24)
postcss: 8.4.24
postcss-value-parser: 4.2.0
@@ -7173,7 +7184,7 @@ packages:
postcss: ^8.2.15
dependencies:
postcss: 8.4.24
- postcss-selector-parser: 6.0.11
+ postcss-selector-parser: 6.0.13
dev: false
/postcss-modules-extract-imports@3.0.0(postcss@8.4.24):
@@ -7193,7 +7204,7 @@ packages:
dependencies:
icss-utils: 5.1.0(postcss@8.4.24)
postcss: 8.4.24
- postcss-selector-parser: 6.0.11
+ postcss-selector-parser: 6.0.13
postcss-value-parser: 4.2.0
dev: false
@@ -7204,7 +7215,7 @@ packages:
postcss: ^8.1.0
dependencies:
postcss: 8.4.24
- postcss-selector-parser: 6.0.11
+ postcss-selector-parser: 6.0.13
dev: false
/postcss-modules-values@4.0.0(postcss@8.4.24):
@@ -7282,7 +7293,7 @@ packages:
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.5
+ browserslist: 4.21.8
postcss: 8.4.24
postcss-value-parser: 4.2.0
dev: false
@@ -7324,7 +7335,7 @@ packages:
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.5
+ browserslist: 4.21.8
caniuse-api: 3.0.0
postcss: 8.4.24
dev: false
@@ -7339,8 +7350,8 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-selector-parser@6.0.11:
- resolution: {integrity: sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==}
+ /postcss-selector-parser@6.0.13:
+ resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==}
engines: {node: '>=4'}
dependencies:
cssesc: 3.0.0
@@ -7364,7 +7375,7 @@ packages:
postcss: ^8.2.15
dependencies:
postcss: 8.4.24
- postcss-selector-parser: 6.0.11
+ postcss-selector-parser: 6.0.13
dev: false
/postcss-url@10.1.3(postcss@8.4.24):
@@ -7479,7 +7490,7 @@ packages:
jstransformer: 1.0.0
pug-error: 2.0.0
pug-walk: 2.0.0
- resolve: 1.22.1
+ resolve: 1.22.2
dev: false
/pug-lexer@5.0.1:
@@ -7646,13 +7657,13 @@ packages:
dependencies:
redis-errors: 1.2.0
- /regexp-tree@0.1.24:
- resolution: {integrity: sha512-s2aEVuLhvnVJW6s/iPgEGK6R+/xngd2jNQ+xy4bXNDKxZKJH6jpPHY6kVeVv1IeLCHgswRj+Kl3ELaDjG6V1iw==}
+ /regexp-tree@0.1.27:
+ resolution: {integrity: sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==}
hasBin: true
dev: true
- /regexp.prototype.flags@1.4.3:
- resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==}
+ /regexp.prototype.flags@1.5.0:
+ resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
@@ -7685,11 +7696,11 @@ packages:
resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
engines: {node: '>=8'}
- /resolve@1.22.1:
- resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==}
+ /resolve@1.22.2:
+ resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==}
hasBin: true
dependencies:
- is-core-module: 2.11.0
+ is-core-module: 2.12.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
@@ -7715,10 +7726,10 @@ packages:
engines: {node: '>=14'}
hasBin: true
dependencies:
- glob: 10.2.5
+ glob: 10.2.6
dev: true
- /rollup-plugin-dts@5.3.0(rollup@3.21.8)(typescript@5.0.4):
+ /rollup-plugin-dts@5.3.0(rollup@3.25.1)(typescript@5.0.4):
resolution: {integrity: sha512-8FXp0ZkyZj1iU5klkIJYLjIq/YZSwBoERu33QBDxm/1yw5UU4txrEtcmMkrq+ZiKu3Q4qvPCNqc3ovX6rjqzbQ==}
engines: {node: '>=v14'}
peerDependencies:
@@ -7726,13 +7737,13 @@ packages:
typescript: ^4.1 || ^5.0
dependencies:
magic-string: 0.30.0
- rollup: 3.21.8
+ rollup: 3.25.1
typescript: 5.0.4
optionalDependencies:
- '@babel/code-frame': 7.21.4
+ '@babel/code-frame': 7.22.5
dev: true
- /rollup-plugin-visualizer@5.9.2(rollup@3.21.8):
+ /rollup-plugin-visualizer@5.9.2(rollup@3.25.1):
resolution: {integrity: sha512-waHktD5mlWrYFrhOLbti4YgQCn1uR24nYsNuXxg7LkPH8KdTXVWR9DNY1WU0QqokyMixVXJS4J04HNrVTMP01A==}
engines: {node: '>=14'}
hasBin: true
@@ -7744,12 +7755,12 @@ packages:
dependencies:
open: 8.4.2
picomatch: 2.3.1
- rollup: 3.21.8
+ rollup: 3.25.1
source-map: 0.7.4
yargs: 17.7.1
- /rollup@3.21.8:
- resolution: {integrity: sha512-SSFV2T2fWtQ/vvBip85u2Nr0GNKireabH9d7nXswBg+XSH+jbVDSYptRAEbCEsquhs503rpPA9POYAp0/Jhasw==}
+ /rollup@3.25.1:
+ resolution: {integrity: sha512-tywOR+rwIt5m2ZAWSe5AIJcTat8vGlnPFAv15ycCrw33t6iFsXZ6mzHVFh2psSjxQPmI+xgzMZZizUAukBI4aQ==}
engines: {node: '>=14.18.0', npm: '>=8.0.0'}
hasBin: true
optionalDependencies:
@@ -7784,7 +7795,7 @@ packages:
/rxjs@7.8.0:
resolution: {integrity: sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==}
dependencies:
- tslib: 2.5.0
+ tslib: 2.5.3
/safe-buffer@5.1.2:
resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
@@ -7796,14 +7807,14 @@ packages:
resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==}
dependencies:
call-bind: 1.0.2
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.2.1
is-regex: 1.1.4
dev: true
/safe-regex@2.1.1:
resolution: {integrity: sha512-rx+x8AMzKb5Q5lQ95Zoi6ZbJqwCLkqi3XuJXp5P3rT8OEc6sZCJG5AE5dU3lsgRr/F4Bs31jSlVN+j5KrsGu9A==}
dependencies:
- regexp-tree: 0.1.24
+ regexp-tree: 0.1.27
dev: true
/safer-buffer@2.1.2:
@@ -7917,7 +7928,7 @@ packages:
resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
dependencies:
call-bind: 1.0.2
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.2.1
object-inspect: 1.12.3
dev: true
@@ -7928,8 +7939,8 @@ packages:
/signal-exit@3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
- /signal-exit@4.0.1:
- resolution: {integrity: sha512-uUWsN4aOxJAS8KOuf3QMyFtgm1pkb6I+KRZbRF/ghdf5T7sM+B1lLLzPDxswUjkmHyxQAVzEgG35E3NzDM9GVw==}
+ /signal-exit@4.0.2:
+ resolution: {integrity: sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==}
engines: {node: '>=14'}
dev: true
@@ -7954,8 +7965,8 @@ packages:
resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==}
engines: {node: '>=12'}
- /smob@0.0.6:
- resolution: {integrity: sha512-V21+XeNni+tTyiST1MHsa84AQhT1aFZipzPpOFAVB8DkHzwJyjjAmt9bgwnuZiZWnIbMo2duE29wybxv/7HWUw==}
+ /smob@1.1.1:
+ resolution: {integrity: sha512-i5aqEBPnDv9d77+NDxfjROtywxzNdAVNyaOr+RsLhM28Ts+Ar7luIp/Q+SBYa6wv/7BBcOpEkrhtDxsl2WA9Jg==}
/source-list-map@2.0.1:
resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==}
@@ -8131,9 +8142,9 @@ packages:
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.5
+ browserslist: 4.21.8
postcss: 8.4.24
- postcss-selector-parser: 6.0.11
+ postcss-selector-parser: 6.0.13
dev: false
/supports-color@5.5.0:
@@ -8182,8 +8193,8 @@ packages:
resolution: {integrity: sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==}
engines: {node: ^14.18.0 || >=16.0.0}
dependencies:
- '@pkgr/utils': 2.3.1
- tslib: 2.5.0
+ '@pkgr/utils': 2.4.0
+ tslib: 2.5.3
dev: true
/tapable@1.1.3:
@@ -8205,13 +8216,13 @@ packages:
inherits: 2.0.4
readable-stream: 3.6.2
- /tar@6.1.13:
- resolution: {integrity: sha512-jdIBIN6LTIe2jqzay/2vtYLlBHa3JF42ot3h1dW8Q0PaAG4v8rm0cvpVePtau5C6OKXGGcgO9q2AMNSWxiLqKw==}
+ /tar@6.1.15:
+ resolution: {integrity: sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A==}
engines: {node: '>=10'}
dependencies:
chownr: 2.0.0
fs-minipass: 2.1.0
- minipass: 4.2.5
+ minipass: 5.0.0
minizlib: 2.1.2
mkdirp: 1.0.4
yallist: 4.0.0
@@ -8236,15 +8247,15 @@ packages:
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.1
- terser: 5.16.6
+ terser: 5.18.1
webpack: 5.87.0
- /terser@5.16.6:
- resolution: {integrity: sha512-IBZ+ZQIA9sMaXmRZCUMDjNH0D5AQQfdn4WUjHL0+1lF4TP1IHRJbrhb6fNaXWikrYQTSkb7SLxkeXAiy1p7mbg==}
+ /terser@5.18.1:
+ resolution: {integrity: sha512-j1n0Ao919h/Ai5r43VAnfV/7azUYW43GPxK7qSATzrsERfW7+y2QW9Cp9ufnRF5CQUWbnLSo7UJokSWCqg4tsQ==}
engines: {node: '>=10'}
hasBin: true
dependencies:
- '@jridgewell/source-map': 0.3.2
+ '@jridgewell/source-map': 0.3.3
acorn: 8.9.0
commander: 2.20.3
source-map-support: 0.5.21
@@ -8277,13 +8288,6 @@ packages:
engines: {node: '>=4'}
dev: true
- /tiny-glob@0.2.9:
- resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==}
- dependencies:
- globalyzer: 0.1.0
- globrex: 0.1.2
- dev: true
-
/tiny-invariant@1.3.1:
resolution: {integrity: sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==}
dev: false
@@ -8355,8 +8359,8 @@ packages:
/tslib@1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
- /tslib@2.5.0:
- resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==}
+ /tslib@2.5.3:
+ resolution: {integrity: sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==}
/tsutils@3.21.0(typescript@5.0.4):
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
@@ -8447,12 +8451,12 @@ packages:
resolution: {integrity: sha512-J4efk69Aye43tWcBPCsLK7TIRppGrEN4pAlDzRKo3HSE6MgTSTBxSEuE3ccx7ixc62JvGQ/CoFXYqqF2AHozow==}
hasBin: true
dependencies:
- '@rollup/plugin-alias': 5.0.0(rollup@3.21.8)
- '@rollup/plugin-commonjs': 24.1.0(rollup@3.21.8)
- '@rollup/plugin-json': 6.0.0(rollup@3.21.8)
- '@rollup/plugin-node-resolve': 15.0.2(rollup@3.21.8)
- '@rollup/plugin-replace': 5.0.2(rollup@3.21.8)
- '@rollup/pluginutils': 5.0.2(rollup@3.21.8)
+ '@rollup/plugin-alias': 5.0.0(rollup@3.25.1)
+ '@rollup/plugin-commonjs': 24.1.0(rollup@3.25.1)
+ '@rollup/plugin-json': 6.0.0(rollup@3.25.1)
+ '@rollup/plugin-node-resolve': 15.1.0(rollup@3.25.1)
+ '@rollup/plugin-replace': 5.0.2(rollup@3.25.1)
+ '@rollup/pluginutils': 5.0.2(rollup@3.25.1)
chalk: 5.2.0
consola: 3.1.0
defu: 6.1.2
@@ -8467,8 +8471,8 @@ packages:
pathe: 1.1.1
pkg-types: 1.0.3
pretty-bytes: 6.1.0
- rollup: 3.21.8
- rollup-plugin-dts: 5.3.0(rollup@3.21.8)(typescript@5.0.4)
+ rollup: 3.25.1
+ rollup-plugin-dts: 5.3.0(rollup@3.25.1)(typescript@5.0.4)
scule: 1.0.0
typescript: 5.0.4
untyped: 1.3.2
@@ -8488,8 +8492,8 @@ packages:
magic-string: 0.30.0
unplugin: 1.3.1
- /undici@5.22.0:
- resolution: {integrity: sha512-fR9RXCc+6Dxav4P9VV/sp5w3eFiSdOjJYsbtWfd4s5L5C4ogyuVpdKIVHeW0vV1MloM65/f7W45nR9ZxwVdyiA==}
+ /undici@5.22.1:
+ resolution: {integrity: sha512-Ji2IJhFXZY0x/0tVBXeQwgPlLWw13GVzpsWPQ3rV50IFMMof2I55PZZxtm4P6iNq+L5znYN9nSTAq0ZyE6lSJw==}
engines: {node: '>=14.0'}
dependencies:
busboy: 1.6.0
@@ -8512,10 +8516,10 @@ packages:
hookable: 5.5.3
dev: false
- /unimport@3.0.8(rollup@3.21.8):
+ /unimport@3.0.8(rollup@3.25.1):
resolution: {integrity: sha512-AOt6xj3QMwqcTZRPB+NhFkyVEjCKnpTVoPm5x6424zz2NYYtCfym2bpJofzPHIJKPNIh5ko2/t2q46ZIMgdmbw==}
dependencies:
- '@rollup/pluginutils': 5.0.2(rollup@3.21.8)
+ '@rollup/pluginutils': 5.0.2(rollup@3.25.1)
escape-string-regexp: 5.0.0
fast-glob: 3.2.12
local-pkg: 0.4.3
@@ -8533,7 +8537,7 @@ packages:
resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==}
engines: {node: '>= 10.0.0'}
- /unplugin-vue-router@0.6.4(rollup@3.21.8)(vue-router@4.2.2)(vue@3.3.4):
+ /unplugin-vue-router@0.6.4(rollup@3.25.1)(vue-router@4.2.2)(vue@3.3.4):
resolution: {integrity: sha512-9THVhhtbVFxbsIibjK59oPwMI1UCxRWRPX7azSkTUABsxovlOXJys5SJx0kd/0oKIqNJuYgkRfAgPuO77SqCOg==}
peerDependencies:
vue-router: ^4.1.0
@@ -8541,9 +8545,9 @@ packages:
vue-router:
optional: true
dependencies:
- '@babel/types': 7.21.5
- '@rollup/pluginutils': 5.0.2(rollup@3.21.8)
- '@vue-macros/common': 1.3.1(rollup@3.21.8)(vue@3.3.4)
+ '@babel/types': 7.22.5
+ '@rollup/pluginutils': 5.0.2(rollup@3.25.1)
+ '@vue-macros/common': 1.3.1(rollup@3.25.1)(vue@3.3.4)
ast-walker-scope: 0.4.1
chokidar: 3.5.3
fast-glob: 3.2.12
@@ -8554,7 +8558,7 @@ packages:
scule: 1.0.0
unplugin: 1.3.1
vue-router: 4.2.2(vue@3.3.4)
- yaml: 2.2.2
+ yaml: 2.3.0
transitivePeerDependencies:
- rollup
- vue
@@ -8568,18 +8572,18 @@ packages:
webpack-sources: 3.2.3
webpack-virtual-modules: 0.5.0
- /unstorage@1.6.0:
- resolution: {integrity: sha512-lWRPiW7WlIybZL96xt7V07P5y129CAc+sveSTR9SA/OeduOisOH7zWFNj6WqULLPetA5qP2PeTjNjpTUqyLh0w==}
+ /unstorage@1.7.0:
+ resolution: {integrity: sha512-f78UtR4HyUGWuET35iNPdKMvCh9YPQpC7WvkGpP6XiLlolT/9wjyAICYN9AMD/tlB8ZdOqWQHZn+j7mXcTSO4w==}
peerDependencies:
'@azure/app-configuration': ^1.4.1
'@azure/cosmos': ^3.17.3
'@azure/data-tables': ^13.2.2
- '@azure/identity': ^3.1.4
+ '@azure/identity': ^3.2.2
'@azure/keyvault-secrets': ^4.7.0
'@azure/storage-blob': ^12.14.0
'@planetscale/database': ^1.7.0
- '@upstash/redis': ^1.20.5
- '@vercel/kv': ^0.1.1
+ '@upstash/redis': ^1.20.6
+ '@vercel/kv': ^0.2.1
peerDependenciesMeta:
'@azure/app-configuration':
optional: true
@@ -8602,11 +8606,11 @@ packages:
dependencies:
anymatch: 3.1.3
chokidar: 3.5.3
- destr: 1.2.2
+ destr: 2.0.0
h3: 1.7.0
ioredis: 5.3.2
listhen: 1.0.4
- lru-cache: 9.1.1
+ lru-cache: 10.0.0
mri: 1.2.0
node-fetch-native: 1.2.0
ofetch: 1.1.1
@@ -8623,9 +8627,9 @@ packages:
resolution: {integrity: sha512-z219Z65rOGD6jXIvIhpZFfwWdqQckB8sdZec2NO+TkcH1Bph7gL0hwLzRJs1KsOo4Jz4mF9guBXhsEnyEBGVfw==}
hasBin: true
dependencies:
- '@babel/core': 7.21.4
+ '@babel/core': 7.22.5
'@babel/standalone': 7.21.3
- '@babel/types': 7.21.5
+ '@babel/types': 7.22.5
defu: 6.1.2
jiti: 1.18.2
mri: 1.2.0
@@ -8633,13 +8637,13 @@ packages:
transitivePeerDependencies:
- supports-color
- /update-browserslist-db@1.0.10(browserslist@4.21.5):
- resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==}
+ /update-browserslist-db@1.0.11(browserslist@4.21.8):
+ resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
dependencies:
- browserslist: 4.21.5
+ browserslist: 4.21.8
escalade: 3.1.1
picocolors: 1.0.0
@@ -8731,7 +8735,7 @@ 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
@@ -8782,7 +8786,7 @@ packages:
'@types/node': 18.16.18
esbuild: 0.17.19
postcss: 8.4.24
- rollup: 3.21.8
+ rollup: 3.25.1
optionalDependencies:
fsevents: 2.3.2
@@ -8987,7 +8991,7 @@ packages:
engines: {node: '>=10.13.0'}
dependencies:
glob-to-regexp: 0.4.1
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
/wcwidth@1.0.1:
resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
@@ -9076,14 +9080,14 @@ packages:
'@webassemblyjs/wasm-parser': 1.11.5
acorn: 8.9.0
acorn-import-assertions: 1.9.0(acorn@8.9.0)
- browserslist: 4.21.5
+ browserslist: 4.21.8
chrome-trace-event: 1.0.3
enhanced-resolve: 5.15.0
es-module-lexer: 1.2.1
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
json-parse-even-better-errors: 2.3.1
loader-runner: 4.3.0
mime-types: 2.1.35
@@ -9169,8 +9173,8 @@ packages:
resolution: {integrity: sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w==}
engines: {node: '>= 10.0.0'}
dependencies:
- '@babel/parser': 7.21.4
- '@babel/types': 7.21.5
+ '@babel/parser': 7.22.5
+ '@babel/types': 7.22.5
assert-never: 1.2.1
babel-walk: 3.0.0-canary-5
dev: false
@@ -9245,9 +9249,9 @@ packages:
engines: {node: '>= 6'}
dev: false
- /yaml@2.2.2:
- resolution: {integrity: sha512-CBKFWExMn46Foo4cldiChEzn7S7SRV+wqiluAb6xmueD/fGyRHIhX8m14vVGgeFWjN540nKCNVj6P21eQjgTuA==}
- engines: {node: '>= 14'}
+ /yaml@2.3.0:
+ resolution: {integrity: sha512-8/1wgzdKc7bc9E6my5wZjmdavHLvO/QOmLG1FBugblEvY4IXrLjlViIOmL24HthU042lWTDRO90Fz1Yp66UnMw==}
+ engines: {node: '>= 14', npm: '>= 7'}
/yargs-parser@21.1.1:
resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
diff --git a/test/bundle.test.ts b/test/bundle.test.ts
index aff6a08bec..571b5a39a6 100644
--- a/test/bundle.test.ts
+++ b/test/bundle.test.ts
@@ -35,10 +35,10 @@ describe.skipIf(process.env.SKIP_BUNDLE_SIZE === 'true' || process.env.ECOSYSTEM
it('default server bundle size', async () => {
stats.server = await analyzeSizes(['**/*.mjs', '!node_modules'], serverDir)
- expect.soft(roundToKilobytes(stats.server.totalBytes)).toMatchInlineSnapshot('"62.2k"')
+ expect.soft(roundToKilobytes(stats.server.totalBytes)).toMatchInlineSnapshot('"63.9k"')
const modules = await analyzeSizes('node_modules/**/*', serverDir)
- expect.soft(roundToKilobytes(modules.totalBytes)).toMatchInlineSnapshot('"2297k"')
+ expect.soft(roundToKilobytes(modules.totalBytes)).toMatchInlineSnapshot('"2328k"')
const packages = modules.files
.filter(m => m.endsWith('package.json'))
@@ -59,30 +59,32 @@ describe.skipIf(process.env.SKIP_BUNDLE_SIZE === 'true' || process.env.ECOSYSTEM
"@vue/server-renderer",
"@vue/shared",
"cookie-es",
+ "debug",
"defu",
"destr",
"devalue",
"estree-walker",
"h3",
- "h3/node_modules/destr",
+ "has-flag",
"hookable",
+ "http-graceful-shutdown",
"iron-webcrypto",
"klona",
+ "ms",
"node-fetch-native",
"ofetch",
- "ofetch/node_modules/destr",
"ohash",
"pathe",
"radix3",
"scule",
"source-map-js",
+ "supports-color",
"ufo",
"uncrypto",
"unctx",
"unenv",
"unhead",
"unstorage",
- "unstorage/node_modules/destr",
"vue",
"vue-bundle-renderer",
]