From 1689800e136e0e99208a7d10d8748842a26f0e12 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 22 Jan 2025 15:34:08 -0500 Subject: [PATCH] chore(deps-dev): bump vitest from 2.1.8 to 3.0.3 (#3981) * chore(deps-dev): bump vitest from 2.1.8 to 3.0.3 Bumps [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) from 2.1.8 to 3.0.3. - [Release notes](https://github.com/vitest-dev/vitest/releases) - [Commits](https://github.com/vitest-dev/vitest/commits/v3.0.3/packages/vitest) --- updated-dependencies: - dependency-name: vitest dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] * refactor(date): improve date parsing and handling in dateFromString function * ci: update yarn.lock --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Olivier Savignac <1275666+sircharlo@users.noreply.github.com> --- package.json | 2 +- src/utils/__tests__/date.test.ts | 10 +- src/utils/date.ts | 52 +- yarn.lock | 882 ++++++++++++++----------------- 4 files changed, 453 insertions(+), 493 deletions(-) diff --git a/package.json b/package.json index dc381d1ca..24901c14c 100644 --- a/package.json +++ b/package.json @@ -113,7 +113,7 @@ "prettier": "^3.4.2", "typescript": "~5.6.3", "vitepress": "^1.6.3", - "vitest": "^2.1.8", + "vitest": "^3.0.3", "vue-tsc": "^2.2.0" }, "browserslist": [ diff --git a/src/utils/__tests__/date.test.ts b/src/utils/__tests__/date.test.ts index d8b44cbc2..3f578fcc9 100644 --- a/src/utils/__tests__/date.test.ts +++ b/src/utils/__tests__/date.test.ts @@ -90,11 +90,11 @@ describe('getSpecificWeekday', () => { const monday = getSpecificWeekday(date, 0); expect(monday.getDay()).toBe(1); - const wednessday = getSpecificWeekday(date, 3); - expect(wednessday.getDay()).toBe(4); + const wed = getSpecificWeekday(date, 3); + expect(wed.getDay()).toBe(4); - const sunday = getSpecificWeekday(date, 6); - expect(sunday.getDay()).toBe(0); + const sun = getSpecificWeekday(date, 6); + expect(sun.getDay()).toBe(0); }); }); @@ -122,7 +122,7 @@ describe('dateFromString', () => { }); it('should reset the time to 00:00:00', () => { - const date = dateFromString(new Date().toISOString()); + const date = dateFromString(new Date()); expect(date.getHours()).toBe(0); expect(date.getMinutes()).toBe(0); expect(date.getSeconds()).toBe(0); diff --git a/src/utils/date.ts b/src/utils/date.ts index cbadc1fb3..384a77a1d 100644 --- a/src/utils/date.ts +++ b/src/utils/date.ts @@ -11,14 +11,54 @@ import { capitalize, pad } from 'src/utils/general'; */ export const dateFromString = (lookupDate?: Date | string | undefined) => { try { - const date = lookupDate ? new Date(lookupDate) : new Date(); - date.setHours(0, 0, 0, 0); - return date; + let date: Date; + + if (!lookupDate) { + // If no input, default to today's date + date = new Date(); + } else if (lookupDate instanceof Date) { + // If it's already a Date object + date = new Date(lookupDate); + } else if (typeof lookupDate === 'string') { + // Handle ISO strings or other formats + if (!isNaN(Date.parse(lookupDate))) { + const isISO = lookupDate.includes('T'); + if (isISO) { + date = new Date(lookupDate); // Parse ISO string directly + } else { + // Normalize separators for yyyy/mm/dd and yyyy.mm.dd + const normalizedDate = lookupDate.replace(/[.\-/]/g, '-'); + const [year, month, day] = normalizedDate.split('-').map(Number); + + if ( + typeof year === 'number' && + typeof month === 'number' && + typeof day === 'number' && + !isNaN(year) && + !isNaN(month) && + !isNaN(day) + ) { + date = new Date(year, month - 1, day); // Create local date + } else { + throw new Error('Invalid date format'); + } + } + } else { + throw new Error('Unsupported date format'); + } + } else { + throw new Error('Unsupported input type'); + } + + // Return the date with time set to midnight + return new Date(date.getFullYear(), date.getMonth(), date.getDate()); } catch (error) { errorCatcher(error); - const date = new Date(); - date.setHours(0, 0, 0, 0); - return date; + + // Fallback: return today's date set to midnight + const fallbackDate = new Date(); + fallbackDate.setHours(0, 0, 0, 0); + return fallbackDate; } }; diff --git a/yarn.lock b/yarn.lock index 320ce61b5..85ccfd87a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -55,145 +55,145 @@ __metadata: languageName: node linkType: hard -"@algolia/client-abtesting@npm:5.19.0": - version: 5.19.0 - resolution: "@algolia/client-abtesting@npm:5.19.0" +"@algolia/client-abtesting@npm:5.20.0": + version: 5.20.0 + resolution: "@algolia/client-abtesting@npm:5.20.0" dependencies: - "@algolia/client-common": "npm:5.19.0" - "@algolia/requester-browser-xhr": "npm:5.19.0" - "@algolia/requester-fetch": "npm:5.19.0" - "@algolia/requester-node-http": "npm:5.19.0" - checksum: 10c0/20cbd9c0308b7ae10904ad85983ac4132b1bf23b96d90eee66c9c46b204216639f24d01bd06623627b2eede8b164c4408b16f758d5aad43d65ca3cda98c3377e + "@algolia/client-common": "npm:5.20.0" + "@algolia/requester-browser-xhr": "npm:5.20.0" + "@algolia/requester-fetch": "npm:5.20.0" + "@algolia/requester-node-http": "npm:5.20.0" + checksum: 10c0/9c374efbb79d9ec322f92618d70183aad90f1e386e8df2f82c776af7011f2ddc0feafdb1639edfd40a4a12394e44f442016bca2e125a20d52e6227d7fbb23646 languageName: node linkType: hard -"@algolia/client-analytics@npm:5.19.0": - version: 5.19.0 - resolution: "@algolia/client-analytics@npm:5.19.0" +"@algolia/client-analytics@npm:5.20.0": + version: 5.20.0 + resolution: "@algolia/client-analytics@npm:5.20.0" dependencies: - "@algolia/client-common": "npm:5.19.0" - "@algolia/requester-browser-xhr": "npm:5.19.0" - "@algolia/requester-fetch": "npm:5.19.0" - "@algolia/requester-node-http": "npm:5.19.0" - checksum: 10c0/3570d404d5a8a132f6cbd969ad3d63b0cb6dcc4bc01f875b27a1ff9206ad1aa6242f3fc663d78ea23a7281edf7ebf0f3c511c83d3fe6b152c61ca10af1dd675b + "@algolia/client-common": "npm:5.20.0" + "@algolia/requester-browser-xhr": "npm:5.20.0" + "@algolia/requester-fetch": "npm:5.20.0" + "@algolia/requester-node-http": "npm:5.20.0" + checksum: 10c0/c3cc9b0eea8af6f22a4598decd1be9d3df3f4aabc7301abed38e7f3dec078827b69de38893e93c0cc2c1d0d07af03d536577c967270cb5328aeb9af2ee8eb807 languageName: node linkType: hard -"@algolia/client-common@npm:5.19.0": - version: 5.19.0 - resolution: "@algolia/client-common@npm:5.19.0" - checksum: 10c0/a021e9f0164bc2404039bebbc96a99e7217840c0b7a1e0b4e579e39d8f41296c1c875342d778e7591ebae5e018db92fc76567b0a1cfb79bded4da8ccb9c64c31 +"@algolia/client-common@npm:5.20.0": + version: 5.20.0 + resolution: "@algolia/client-common@npm:5.20.0" + checksum: 10c0/c1288c7a3f3366c48b31a4810223d9ca17878a9da656f89dda5e8348e3ec5dc82d538bfd6ad8c203e1aa28d191ef93b10cdad90ad3a96dddd7772ffc4f26ad4e languageName: node linkType: hard -"@algolia/client-insights@npm:5.19.0": - version: 5.19.0 - resolution: "@algolia/client-insights@npm:5.19.0" +"@algolia/client-insights@npm:5.20.0": + version: 5.20.0 + resolution: "@algolia/client-insights@npm:5.20.0" dependencies: - "@algolia/client-common": "npm:5.19.0" - "@algolia/requester-browser-xhr": "npm:5.19.0" - "@algolia/requester-fetch": "npm:5.19.0" - "@algolia/requester-node-http": "npm:5.19.0" - checksum: 10c0/18ff5822c5b4ea92ee737797c06a09d5260b661dc9e55cbe566b3bdb1dea88172b9fbee6f8baa3a9ff2ebe3546ecf09919f309c053cb73cc40c6f1fc84f02a03 + "@algolia/client-common": "npm:5.20.0" + "@algolia/requester-browser-xhr": "npm:5.20.0" + "@algolia/requester-fetch": "npm:5.20.0" + "@algolia/requester-node-http": "npm:5.20.0" + checksum: 10c0/79a4353464ce1480b446a704c2bf95db33911fce1c6975dea26bfd2cf68ca50dfaf6e5643fc11dfda8b2d3f4a7e921a615372ce61b4b781fff8c961b96a0f992 languageName: node linkType: hard -"@algolia/client-personalization@npm:5.19.0": - version: 5.19.0 - resolution: "@algolia/client-personalization@npm:5.19.0" +"@algolia/client-personalization@npm:5.20.0": + version: 5.20.0 + resolution: "@algolia/client-personalization@npm:5.20.0" dependencies: - "@algolia/client-common": "npm:5.19.0" - "@algolia/requester-browser-xhr": "npm:5.19.0" - "@algolia/requester-fetch": "npm:5.19.0" - "@algolia/requester-node-http": "npm:5.19.0" - checksum: 10c0/8a05dd9e5ee55f03a05619847cac5b14022cca74799f6a928906741ae88f16b7105c325bbde820873caed8bc24ae63114ec4b4d852694a95258ad09a8214e976 + "@algolia/client-common": "npm:5.20.0" + "@algolia/requester-browser-xhr": "npm:5.20.0" + "@algolia/requester-fetch": "npm:5.20.0" + "@algolia/requester-node-http": "npm:5.20.0" + checksum: 10c0/c7fbea1e3f7023c8687f21da25421187478440a16816ffaf3c0191b922ebfba23122d145cc270860f5e5a2f90157db8f0579330c2652a41280e907cd1c50c016 languageName: node linkType: hard -"@algolia/client-query-suggestions@npm:5.19.0": - version: 5.19.0 - resolution: "@algolia/client-query-suggestions@npm:5.19.0" +"@algolia/client-query-suggestions@npm:5.20.0": + version: 5.20.0 + resolution: "@algolia/client-query-suggestions@npm:5.20.0" dependencies: - "@algolia/client-common": "npm:5.19.0" - "@algolia/requester-browser-xhr": "npm:5.19.0" - "@algolia/requester-fetch": "npm:5.19.0" - "@algolia/requester-node-http": "npm:5.19.0" - checksum: 10c0/44e4b86db56395a1d8a2691ee3f67676c6ab32d7236d371cf24ad3c842c05a14ce629f4c8cb9c229f995f406d2410b8e048f14d7eb049fad8ac9b408835ab09e + "@algolia/client-common": "npm:5.20.0" + "@algolia/requester-browser-xhr": "npm:5.20.0" + "@algolia/requester-fetch": "npm:5.20.0" + "@algolia/requester-node-http": "npm:5.20.0" + checksum: 10c0/ffaadf1b1df25fe2006daafd4d5cef97897b17a944d4263df8ff892195f5ba9fb4cf51c33f6672c41d1fe593e2ed032fa28f586dc6a14abcec64c77ce3f38b63 languageName: node linkType: hard -"@algolia/client-search@npm:5.19.0": - version: 5.19.0 - resolution: "@algolia/client-search@npm:5.19.0" +"@algolia/client-search@npm:5.20.0": + version: 5.20.0 + resolution: "@algolia/client-search@npm:5.20.0" dependencies: - "@algolia/client-common": "npm:5.19.0" - "@algolia/requester-browser-xhr": "npm:5.19.0" - "@algolia/requester-fetch": "npm:5.19.0" - "@algolia/requester-node-http": "npm:5.19.0" - checksum: 10c0/1c669bc5ed9800e47a21d9a2530cdcbf7b4f79e9b203195d371e205143d22a58382697657a01ea1529a721e5a7e91f190218870b294f8dff83b41c55ac5b8cb0 + "@algolia/client-common": "npm:5.20.0" + "@algolia/requester-browser-xhr": "npm:5.20.0" + "@algolia/requester-fetch": "npm:5.20.0" + "@algolia/requester-node-http": "npm:5.20.0" + checksum: 10c0/2d62718f3b054a3dbee6f4b07a51eef5102c41b336e7d7768afe26889dc1852b92c0f9c747d1b44a9b921eb8daef7dfe2b2087f44a3177d21fe7d7080c83f9fe languageName: node linkType: hard -"@algolia/ingestion@npm:1.19.0": - version: 1.19.0 - resolution: "@algolia/ingestion@npm:1.19.0" +"@algolia/ingestion@npm:1.20.0": + version: 1.20.0 + resolution: "@algolia/ingestion@npm:1.20.0" dependencies: - "@algolia/client-common": "npm:5.19.0" - "@algolia/requester-browser-xhr": "npm:5.19.0" - "@algolia/requester-fetch": "npm:5.19.0" - "@algolia/requester-node-http": "npm:5.19.0" - checksum: 10c0/696c38d9946620f38ca8c7f13336d7905f69ed0c01aba1e612af99edb58ac06e34518fe73f79ae6394d8330123ea539535aaa59c873f9f50c9230ffb1c35b1ef + "@algolia/client-common": "npm:5.20.0" + "@algolia/requester-browser-xhr": "npm:5.20.0" + "@algolia/requester-fetch": "npm:5.20.0" + "@algolia/requester-node-http": "npm:5.20.0" + checksum: 10c0/be77d56c378e9196c817b66afd922a4a812d4cb0fa0f8b7c09c8eca219f1262212e02f948d54e5ae460aea2a08dcc67f1968a1fcfdf18a1f0fd5267e8b1881d9 languageName: node linkType: hard -"@algolia/monitoring@npm:1.19.0": - version: 1.19.0 - resolution: "@algolia/monitoring@npm:1.19.0" +"@algolia/monitoring@npm:1.20.0": + version: 1.20.0 + resolution: "@algolia/monitoring@npm:1.20.0" dependencies: - "@algolia/client-common": "npm:5.19.0" - "@algolia/requester-browser-xhr": "npm:5.19.0" - "@algolia/requester-fetch": "npm:5.19.0" - "@algolia/requester-node-http": "npm:5.19.0" - checksum: 10c0/fe1dac5374ffb02ca931475d22d8f65e79468af8fe07e8aee5b17acac16a9383dfa99f7719ec2bb7b37fc46d3bb6cd22a5367aee2b3f16ed9e4f979edf11507f + "@algolia/client-common": "npm:5.20.0" + "@algolia/requester-browser-xhr": "npm:5.20.0" + "@algolia/requester-fetch": "npm:5.20.0" + "@algolia/requester-node-http": "npm:5.20.0" + checksum: 10c0/0b2f9d899e2662fe0e6eb0c45fb3cc46c546951603f1ea52f9adc8d2dd4296f7010e93b2b2e0b94c1f51a2e1edc887eeb054db76c6b6f417fa123d4f1c674bdd languageName: node linkType: hard -"@algolia/recommend@npm:5.19.0": - version: 5.19.0 - resolution: "@algolia/recommend@npm:5.19.0" +"@algolia/recommend@npm:5.20.0": + version: 5.20.0 + resolution: "@algolia/recommend@npm:5.20.0" dependencies: - "@algolia/client-common": "npm:5.19.0" - "@algolia/requester-browser-xhr": "npm:5.19.0" - "@algolia/requester-fetch": "npm:5.19.0" - "@algolia/requester-node-http": "npm:5.19.0" - checksum: 10c0/4b9a788179108aba21a3ba0083f3cb67550b2ce677a49d8e4c4030dcfc38a425a6efbb161b7d1bd058dce38b1d3224de40a765a8404ccaf28ace1d6ac147858f + "@algolia/client-common": "npm:5.20.0" + "@algolia/requester-browser-xhr": "npm:5.20.0" + "@algolia/requester-fetch": "npm:5.20.0" + "@algolia/requester-node-http": "npm:5.20.0" + checksum: 10c0/ce62228b630864ed0faf78c0f3b5fbca5ef38e9c07ec6e492d7d36b948418ec87b82869d78740c980f5d0bbfbff37f15f394bfffd0571fdfb8a0973915b200cb languageName: node linkType: hard -"@algolia/requester-browser-xhr@npm:5.19.0": - version: 5.19.0 - resolution: "@algolia/requester-browser-xhr@npm:5.19.0" +"@algolia/requester-browser-xhr@npm:5.20.0": + version: 5.20.0 + resolution: "@algolia/requester-browser-xhr@npm:5.20.0" dependencies: - "@algolia/client-common": "npm:5.19.0" - checksum: 10c0/0a95116492050e25589de032dc05ac8a39aef51e4b9d3fe89432bb76559fd7231585e6f2b8484152b2e882390d8d1ba3a8f339016524871d5831a7c49890056f + "@algolia/client-common": "npm:5.20.0" + checksum: 10c0/80ae38016d682404468c8c8f3765fef468dc9f83095366f8531f48982400c1e2d7c55f95b331c23d44563cbf38afcf71c29a59c65dee5ca503a6b2a8386b2eea languageName: node linkType: hard -"@algolia/requester-fetch@npm:5.19.0": - version: 5.19.0 - resolution: "@algolia/requester-fetch@npm:5.19.0" +"@algolia/requester-fetch@npm:5.20.0": + version: 5.20.0 + resolution: "@algolia/requester-fetch@npm:5.20.0" dependencies: - "@algolia/client-common": "npm:5.19.0" - checksum: 10c0/a44ea3c4dc61df415e90c124910be6c4d0db5312a54c30da5b31ff678ce41b533dc28e0d5bb97f1495cb444f04eb93b68e3c5db93288d91e4870a4b32e82d254 + "@algolia/client-common": "npm:5.20.0" + checksum: 10c0/8d9118088a39be10ba362fd37963c41a62dfe480ef42dfa17a32438c1278041074be12d2c459de0c0a1575452f64edb64856e8f47a4bba9b732cf1fe60ad0f92 languageName: node linkType: hard -"@algolia/requester-node-http@npm:5.19.0": - version: 5.19.0 - resolution: "@algolia/requester-node-http@npm:5.19.0" +"@algolia/requester-node-http@npm:5.20.0": + version: 5.20.0 + resolution: "@algolia/requester-node-http@npm:5.20.0" dependencies: - "@algolia/client-common": "npm:5.19.0" - checksum: 10c0/f3db9de53a2f5df2fd2b809db3cde450e0ec3e8722b46b93c513c90ba64920ea538c97ace9d968c57ac0193bdcd0ce5998bb94eca061b6203baabc7676658043 + "@algolia/client-common": "npm:5.20.0" + checksum: 10c0/f1e2277c675d866e143ddb4c5b2eae69cd8af62194489e802cae25152854afdad03d2ce59d354b6a57952857b460962a65909ed5dfd4164db833690dbedcf7c7 languageName: node linkType: hard @@ -2137,42 +2137,43 @@ __metadata: linkType: hard "@nuxt/kit@npm:^3.14.1592": - version: 3.15.1 - resolution: "@nuxt/kit@npm:3.15.1" + version: 3.15.2 + resolution: "@nuxt/kit@npm:3.15.2" dependencies: - "@nuxt/schema": "npm:3.15.1" + "@nuxt/schema": "npm:3.15.2" c12: "npm:^2.0.1" - consola: "npm:^3.3.3" + consola: "npm:^3.4.0" defu: "npm:^6.1.4" destr: "npm:^2.0.3" globby: "npm:^14.0.2" - ignore: "npm:^7.0.0" + ignore: "npm:^7.0.3" jiti: "npm:^2.4.2" klona: "npm:^2.0.6" knitwork: "npm:^1.2.0" - mlly: "npm:^1.7.3" + mlly: "npm:^1.7.4" ohash: "npm:^1.1.4" - pathe: "npm:^2.0.0" - pkg-types: "npm:^1.3.0" + pathe: "npm:^2.0.1" + pkg-types: "npm:^1.3.1" scule: "npm:^1.3.0" semver: "npm:^7.6.3" + std-env: "npm:^3.8.0" ufo: "npm:^1.5.4" unctx: "npm:^2.4.1" - unimport: "npm:^3.14.5" + unimport: "npm:^3.14.6" untyped: "npm:^1.5.2" - checksum: 10c0/bf8890d9521995614c3a73e9c33aa8c2edfc07c8142d8144eba06b793b354a111314b9f51ceaa141dc1489fd1cd8f0a80050bffaf869b65ccfb5750dd74665d7 + checksum: 10c0/f77f6f27baf27fac53c94d5077c6301b1b37941a6cac42d4a4a1303761f273bc8534ab5be754dd7853ac29b15b6e470d6742fb8b246ae8e8f3b0e6a9fe3a2005 languageName: node linkType: hard -"@nuxt/schema@npm:3.15.1": - version: 3.15.1 - resolution: "@nuxt/schema@npm:3.15.1" +"@nuxt/schema@npm:3.15.2": + version: 3.15.2 + resolution: "@nuxt/schema@npm:3.15.2" dependencies: - consola: "npm:^3.3.3" + consola: "npm:^3.4.0" defu: "npm:^6.1.4" - pathe: "npm:^2.0.0" + pathe: "npm:^2.0.1" std-env: "npm:^3.8.0" - checksum: 10c0/9f7a3733cee5c963c09dc6a94e410068483800f0890a40ecb97e399623409927bd041a09ac3fb0bdddb633413b0f4f6f261d9d7a291d5022ae1e61ece1be0253 + checksum: 10c0/f180edbafa19947d8a3da5e19899b0ef8dfa3d7c7b828a035208b345458cba0dacdf6aee549b21ff26404ec3738905b3b0fdd8168bc1525c9b39630599f4d59a languageName: node linkType: hard @@ -2912,135 +2913,135 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-android-arm-eabi@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-android-arm-eabi@npm:4.30.1" +"@rollup/rollup-android-arm-eabi@npm:4.31.0": + version: 4.31.0 + resolution: "@rollup/rollup-android-arm-eabi@npm:4.31.0" conditions: os=android & cpu=arm languageName: node linkType: hard -"@rollup/rollup-android-arm64@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-android-arm64@npm:4.30.1" +"@rollup/rollup-android-arm64@npm:4.31.0": + version: 4.31.0 + resolution: "@rollup/rollup-android-arm64@npm:4.31.0" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-darwin-arm64@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-darwin-arm64@npm:4.30.1" +"@rollup/rollup-darwin-arm64@npm:4.31.0": + version: 4.31.0 + resolution: "@rollup/rollup-darwin-arm64@npm:4.31.0" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-darwin-x64@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-darwin-x64@npm:4.30.1" +"@rollup/rollup-darwin-x64@npm:4.31.0": + version: 4.31.0 + resolution: "@rollup/rollup-darwin-x64@npm:4.31.0" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@rollup/rollup-freebsd-arm64@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-freebsd-arm64@npm:4.30.1" +"@rollup/rollup-freebsd-arm64@npm:4.31.0": + version: 4.31.0 + resolution: "@rollup/rollup-freebsd-arm64@npm:4.31.0" conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-freebsd-x64@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-freebsd-x64@npm:4.30.1" +"@rollup/rollup-freebsd-x64@npm:4.31.0": + version: 4.31.0 + resolution: "@rollup/rollup-freebsd-x64@npm:4.31.0" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@rollup/rollup-linux-arm-gnueabihf@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.30.1" +"@rollup/rollup-linux-arm-gnueabihf@npm:4.31.0": + version: 4.31.0 + resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.31.0" conditions: os=linux & cpu=arm & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-arm-musleabihf@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.30.1" +"@rollup/rollup-linux-arm-musleabihf@npm:4.31.0": + version: 4.31.0 + resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.31.0" conditions: os=linux & cpu=arm & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-arm64-gnu@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.30.1" +"@rollup/rollup-linux-arm64-gnu@npm:4.31.0": + version: 4.31.0 + resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.31.0" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-arm64-musl@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-linux-arm64-musl@npm:4.30.1" +"@rollup/rollup-linux-arm64-musl@npm:4.31.0": + version: 4.31.0 + resolution: "@rollup/rollup-linux-arm64-musl@npm:4.31.0" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-loongarch64-gnu@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.30.1" +"@rollup/rollup-linux-loongarch64-gnu@npm:4.31.0": + version: 4.31.0 + resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.31.0" conditions: os=linux & cpu=loong64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-powerpc64le-gnu@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.30.1" +"@rollup/rollup-linux-powerpc64le-gnu@npm:4.31.0": + version: 4.31.0 + resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.31.0" conditions: os=linux & cpu=ppc64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-riscv64-gnu@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.30.1" +"@rollup/rollup-linux-riscv64-gnu@npm:4.31.0": + version: 4.31.0 + resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.31.0" conditions: os=linux & cpu=riscv64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-s390x-gnu@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.30.1" +"@rollup/rollup-linux-s390x-gnu@npm:4.31.0": + version: 4.31.0 + resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.31.0" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-x64-gnu@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-linux-x64-gnu@npm:4.30.1" +"@rollup/rollup-linux-x64-gnu@npm:4.31.0": + version: 4.31.0 + resolution: "@rollup/rollup-linux-x64-gnu@npm:4.31.0" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-x64-musl@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-linux-x64-musl@npm:4.30.1" +"@rollup/rollup-linux-x64-musl@npm:4.31.0": + version: 4.31.0 + resolution: "@rollup/rollup-linux-x64-musl@npm:4.31.0" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-win32-arm64-msvc@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.30.1" +"@rollup/rollup-win32-arm64-msvc@npm:4.31.0": + version: 4.31.0 + resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.31.0" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-win32-ia32-msvc@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.30.1" +"@rollup/rollup-win32-ia32-msvc@npm:4.31.0": + version: 4.31.0 + resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.31.0" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@rollup/rollup-win32-x64-msvc@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-win32-x64-msvc@npm:4.30.1" +"@rollup/rollup-win32-x64-msvc@npm:4.31.0": + version: 4.31.0 + resolution: "@rollup/rollup-win32-x64-msvc@npm:4.31.0" conditions: os=win32 & cpu=x64 languageName: node linkType: hard @@ -3807,9 +3808,9 @@ __metadata: linkType: hard "@types/ms@npm:*": - version: 0.7.34 - resolution: "@types/ms@npm:0.7.34" - checksum: 10c0/ac80bd90012116ceb2d188fde62d96830ca847823e8ca71255616bc73991aa7d9f057b8bfab79e8ee44ffefb031ddd1bcce63ea82f9e66f7c31ec02d2d823ccc + version: 2.1.0 + resolution: "@types/ms@npm:2.1.0" + checksum: 10c0/5ce692ffe1549e1b827d99ef8ff71187457e0eb44adbae38fdf7b9a74bae8d20642ee963c14516db1d35fa2652e65f47680fdf679dcbde52bbfadd021f497225 languageName: node linkType: hard @@ -3832,11 +3833,11 @@ __metadata: linkType: hard "@types/node@npm:*": - version: 22.10.6 - resolution: "@types/node@npm:22.10.6" + version: 22.10.7 + resolution: "@types/node@npm:22.10.7" dependencies: undici-types: "npm:~6.20.0" - checksum: 10c0/8b67affc211e5f9c74f7949cda04ca669721e50b83d71b8772a7bed7a4a3c41d663b3a794413f618e763ca6c5da8c234c25ffebcb0737983fc3e7415818ab9a7 + checksum: 10c0/c941b4689dfc4044b64a5f601306cbcb0c7210be853ba378a5dd44137898c45accedd796ee002ad9407024cac7ecaf5049304951cb1d80ce3d7cebbbae56f20e languageName: node linkType: hard @@ -4033,15 +4034,15 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/eslint-plugin@npm:8.20.0": - version: 8.20.0 - resolution: "@typescript-eslint/eslint-plugin@npm:8.20.0" +"@typescript-eslint/eslint-plugin@npm:8.21.0": + version: 8.21.0 + resolution: "@typescript-eslint/eslint-plugin@npm:8.21.0" dependencies: "@eslint-community/regexpp": "npm:^4.10.0" - "@typescript-eslint/scope-manager": "npm:8.20.0" - "@typescript-eslint/type-utils": "npm:8.20.0" - "@typescript-eslint/utils": "npm:8.20.0" - "@typescript-eslint/visitor-keys": "npm:8.20.0" + "@typescript-eslint/scope-manager": "npm:8.21.0" + "@typescript-eslint/type-utils": "npm:8.21.0" + "@typescript-eslint/utils": "npm:8.21.0" + "@typescript-eslint/visitor-keys": "npm:8.21.0" graphemer: "npm:^1.4.0" ignore: "npm:^5.3.1" natural-compare: "npm:^1.4.0" @@ -4050,37 +4051,27 @@ __metadata: "@typescript-eslint/parser": ^8.0.0 || ^8.0.0-alpha.0 eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <5.8.0" - checksum: 10c0/c68d0dc5419db93c38eea8adecac19e27f8b023d015a944ffded112d584e87fa7fe512070a6a1085899cab2e12e1c8db276e10412b74bf639ca6b04052bbfedc + checksum: 10c0/4601d21ec35b9fa5cfc1ad0330733ab40d6c6822c7fc15c3584a16f678c9a72e077a1725a950823fe0f499a15f3981795b1ea5d1e7a1be5c7b8296ea9ae6327c languageName: node linkType: hard -"@typescript-eslint/parser@npm:8.20.0": - version: 8.20.0 - resolution: "@typescript-eslint/parser@npm:8.20.0" +"@typescript-eslint/parser@npm:8.21.0": + version: 8.21.0 + resolution: "@typescript-eslint/parser@npm:8.21.0" dependencies: - "@typescript-eslint/scope-manager": "npm:8.20.0" - "@typescript-eslint/types": "npm:8.20.0" - "@typescript-eslint/typescript-estree": "npm:8.20.0" - "@typescript-eslint/visitor-keys": "npm:8.20.0" + "@typescript-eslint/scope-manager": "npm:8.21.0" + "@typescript-eslint/types": "npm:8.21.0" + "@typescript-eslint/typescript-estree": "npm:8.21.0" + "@typescript-eslint/visitor-keys": "npm:8.21.0" debug: "npm:^4.3.4" peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <5.8.0" - checksum: 10c0/fff4a86be27f603ad8d6f7dd9758c46b04a254828f0c6d8a34869c1cf30b5828b60a1dc088f72680a7b65cc5fc696848df4605de19e59a18467306d7ca56c11d + checksum: 10c0/aadebd50ca7aa2d61ad85d890c0d7010f2c293ec4d50a7833ef9674f232f0bc7118faa93a898771fbea50f02d542d687cf3569421b23f72fe6fed6895d5506fc languageName: node linkType: hard -"@typescript-eslint/scope-manager@npm:8.20.0, @typescript-eslint/scope-manager@npm:^8.13.0": - version: 8.20.0 - resolution: "@typescript-eslint/scope-manager@npm:8.20.0" - dependencies: - "@typescript-eslint/types": "npm:8.20.0" - "@typescript-eslint/visitor-keys": "npm:8.20.0" - checksum: 10c0/a8074768d06c863169294116624a45c19377ff0b8635ad5fa4ae673b43cf704d1b9b79384ceef0ff0abb78b107d345cd90fe5572354daf6ad773fe462ee71e6a - languageName: node - linkType: hard - -"@typescript-eslint/scope-manager@npm:8.21.0": +"@typescript-eslint/scope-manager@npm:8.21.0, @typescript-eslint/scope-manager@npm:^8.13.0": version: 8.21.0 resolution: "@typescript-eslint/scope-manager@npm:8.21.0" dependencies: @@ -4090,25 +4081,18 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/type-utils@npm:8.20.0": - version: 8.20.0 - resolution: "@typescript-eslint/type-utils@npm:8.20.0" +"@typescript-eslint/type-utils@npm:8.21.0": + version: 8.21.0 + resolution: "@typescript-eslint/type-utils@npm:8.21.0" dependencies: - "@typescript-eslint/typescript-estree": "npm:8.20.0" - "@typescript-eslint/utils": "npm:8.20.0" + "@typescript-eslint/typescript-estree": "npm:8.21.0" + "@typescript-eslint/utils": "npm:8.21.0" debug: "npm:^4.3.4" ts-api-utils: "npm:^2.0.0" peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <5.8.0" - checksum: 10c0/7d46143f26ec606b71d20f0f5535b16abba2ba7a5a2daecd2584ddb61d1284dd8404f34265cc1fdfd541068b24b0211f7ad94801c94e4c60869d9f26bf3c0b9b - languageName: node - linkType: hard - -"@typescript-eslint/types@npm:8.20.0": - version: 8.20.0 - resolution: "@typescript-eslint/types@npm:8.20.0" - checksum: 10c0/21292d4ca089897015d2bf5ab99909a7b362902f63f4ba10696676823b50d00c7b4cd093b4b43fba01d12bc3feca3852d2c28528c06d8e45446b7477887dbee7 + checksum: 10c0/617f5dfe83fd9a7c722b27fa4e7f0c84f29baa94f75a4e8e5ccfd5b0a373437f65724e21b9642870fb0960f204b1a7f516a038200a12f8118f21b1bf86315bf3 languageName: node linkType: hard @@ -4119,25 +4103,7 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:8.20.0, @typescript-eslint/typescript-estree@npm:^8.13.0": - version: 8.20.0 - resolution: "@typescript-eslint/typescript-estree@npm:8.20.0" - dependencies: - "@typescript-eslint/types": "npm:8.20.0" - "@typescript-eslint/visitor-keys": "npm:8.20.0" - debug: "npm:^4.3.4" - fast-glob: "npm:^3.3.2" - is-glob: "npm:^4.0.3" - minimatch: "npm:^9.0.4" - semver: "npm:^7.6.0" - ts-api-utils: "npm:^2.0.0" - peerDependencies: - typescript: ">=4.8.4 <5.8.0" - checksum: 10c0/54a2c1da7d1c5f7e865b941e8a3c98eb4b5f56ed8741664a84065173bde9602cdb8866b0984b26816d6af885c1528311c11e7286e869ed424483b74366514cbd - languageName: node - linkType: hard - -"@typescript-eslint/typescript-estree@npm:8.21.0": +"@typescript-eslint/typescript-estree@npm:8.21.0, @typescript-eslint/typescript-estree@npm:^8.13.0": version: 8.21.0 resolution: "@typescript-eslint/typescript-estree@npm:8.21.0" dependencies: @@ -4155,22 +4121,7 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/utils@npm:8.20.0, @typescript-eslint/utils@npm:^8.20.0": - version: 8.20.0 - resolution: "@typescript-eslint/utils@npm:8.20.0" - dependencies: - "@eslint-community/eslint-utils": "npm:^4.4.0" - "@typescript-eslint/scope-manager": "npm:8.20.0" - "@typescript-eslint/types": "npm:8.20.0" - "@typescript-eslint/typescript-estree": "npm:8.20.0" - peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: ">=4.8.4 <5.8.0" - checksum: 10c0/dd36c3b22a2adde1e1462aed0c8b4720f61859b4ebb0c3ef935a786a6b1cb0ec21eb0689f5a8debe8db26d97ebb979bab68d6f8fe7b0098e6200a485cfe2991b - languageName: node - linkType: hard - -"@typescript-eslint/utils@npm:^8.21.0": +"@typescript-eslint/utils@npm:8.21.0, @typescript-eslint/utils@npm:^8.20.0, @typescript-eslint/utils@npm:^8.21.0": version: 8.21.0 resolution: "@typescript-eslint/utils@npm:8.21.0" dependencies: @@ -4185,16 +4136,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/visitor-keys@npm:8.20.0": - version: 8.20.0 - resolution: "@typescript-eslint/visitor-keys@npm:8.20.0" - dependencies: - "@typescript-eslint/types": "npm:8.20.0" - eslint-visitor-keys: "npm:^4.2.0" - checksum: 10c0/e95d8b2685e8beb6637bf2e9d06e4177a400d3a2b142ba749944690f969ee3186b750082fd9bf34ada82acf1c5dd5970201dfd97619029c8ecca85fb4b50dbd8 - languageName: node - linkType: hard - "@typescript-eslint/visitor-keys@npm:8.21.0": version: 8.21.0 resolution: "@typescript-eslint/visitor-keys@npm:8.21.0" @@ -4222,84 +4163,84 @@ __metadata: languageName: node linkType: hard -"@vitest/expect@npm:2.1.8": - version: 2.1.8 - resolution: "@vitest/expect@npm:2.1.8" +"@vitest/expect@npm:3.0.3": + version: 3.0.3 + resolution: "@vitest/expect@npm:3.0.3" dependencies: - "@vitest/spy": "npm:2.1.8" - "@vitest/utils": "npm:2.1.8" + "@vitest/spy": "npm:3.0.3" + "@vitest/utils": "npm:3.0.3" chai: "npm:^5.1.2" - tinyrainbow: "npm:^1.2.0" - checksum: 10c0/6fbf4abc2360efe4d3671d3425f8bb6012fe2dd932a88720d8b793030b766ba260494822c721d3fc497afe52373515c7e150635a95c25f6e1b567f86155c5408 + tinyrainbow: "npm:^2.0.0" + checksum: 10c0/880e3ef66c89bd274c1265751801108eef0f135314577c17f95cf49e9aa5cf56e71465cb17fa7cba57ce51b6d3007c69bf0cdcd7c5584182b0fbc6e24063c528 languageName: node linkType: hard -"@vitest/mocker@npm:2.1.8": - version: 2.1.8 - resolution: "@vitest/mocker@npm:2.1.8" +"@vitest/mocker@npm:3.0.3": + version: 3.0.3 + resolution: "@vitest/mocker@npm:3.0.3" dependencies: - "@vitest/spy": "npm:2.1.8" + "@vitest/spy": "npm:3.0.3" estree-walker: "npm:^3.0.3" - magic-string: "npm:^0.30.12" + magic-string: "npm:^0.30.17" peerDependencies: msw: ^2.4.9 - vite: ^5.0.0 + vite: ^5.0.0 || ^6.0.0 peerDependenciesMeta: msw: optional: true vite: optional: true - checksum: 10c0/b4113ed8a57c0f60101d02e1b1769357a346ecd55ded499eab384d52106fd4b12d51e9aaa6db98f47de0d56662477be0ed8d46d6dfa84c235f9e1b234709814e + checksum: 10c0/e7fc870251e624a840a0367a933d4d474e8d356518e8656318260bd4255aa15d106d60e209f1d2e452fe788c83647ef7f713d41ade511a2003f7d35556e860e9 languageName: node linkType: hard -"@vitest/pretty-format@npm:2.1.8, @vitest/pretty-format@npm:^2.1.8": - version: 2.1.8 - resolution: "@vitest/pretty-format@npm:2.1.8" +"@vitest/pretty-format@npm:3.0.3, @vitest/pretty-format@npm:^3.0.3": + version: 3.0.3 + resolution: "@vitest/pretty-format@npm:3.0.3" dependencies: - tinyrainbow: "npm:^1.2.0" - checksum: 10c0/1dc5c9b1c7c7e78e46a2a16033b6b20be05958bbebc5a5b78f29e32718c80252034804fccd23f34db6b3583239db47e68fc5a8e41942c54b8047cc3b4133a052 + tinyrainbow: "npm:^2.0.0" + checksum: 10c0/f69a95bda27dc5428fffc42e99188d08107b862093b066989b601d15e5a37e065f1c978d3fd6cb4713b2537104ecb3d29916598c92a86ee76f6dda684c8612df languageName: node linkType: hard -"@vitest/runner@npm:2.1.8": - version: 2.1.8 - resolution: "@vitest/runner@npm:2.1.8" +"@vitest/runner@npm:3.0.3": + version: 3.0.3 + resolution: "@vitest/runner@npm:3.0.3" dependencies: - "@vitest/utils": "npm:2.1.8" - pathe: "npm:^1.1.2" - checksum: 10c0/d0826a71494adeafc8c6478257f584d11655145c83e2d8f94c17301d7059c7463ad768a69379e394c50838a7435abcc9255a6b7d8894f5ee06b153e314683a75 + "@vitest/utils": "npm:3.0.3" + pathe: "npm:^2.0.1" + checksum: 10c0/43d49e0d9eb1f73314b867e4cd42cffd0818441e6e6ca7b14fc429ef9de11a863800cf88d624897f02d1ec3469fd2ece1f56bb04d13765b6a5573e5a52904f1a languageName: node linkType: hard -"@vitest/snapshot@npm:2.1.8": - version: 2.1.8 - resolution: "@vitest/snapshot@npm:2.1.8" +"@vitest/snapshot@npm:3.0.3": + version: 3.0.3 + resolution: "@vitest/snapshot@npm:3.0.3" dependencies: - "@vitest/pretty-format": "npm:2.1.8" - magic-string: "npm:^0.30.12" - pathe: "npm:^1.1.2" - checksum: 10c0/8d7a77a52e128630ea737ee0a0fe746d1d325cac5848326861dbf042844da4d5c1a5145539ae0ed1a3f0b0363506e98d86f2679fadf114ec4b987f1eb616867b + "@vitest/pretty-format": "npm:3.0.3" + magic-string: "npm:^0.30.17" + pathe: "npm:^2.0.1" + checksum: 10c0/aaf967bcbf650e7052025370a148e468890b33c1a240e22301ab81964333f6604a2539f1340d584cda71f1540babb31da5c46f3c022156efdcb76a34416cd72d languageName: node linkType: hard -"@vitest/spy@npm:2.1.8": - version: 2.1.8 - resolution: "@vitest/spy@npm:2.1.8" +"@vitest/spy@npm:3.0.3": + version: 3.0.3 + resolution: "@vitest/spy@npm:3.0.3" dependencies: tinyspy: "npm:^3.0.2" - checksum: 10c0/9740f10772ede004ea7f9ffb8a6c3011341d75d9d7f2d4d181b123a701c4691e942f38cf1700684a3bb5eea3c78addf753fd8cdf78c51d8eadc3bada6fadf8f2 + checksum: 10c0/3ab28c5c1320cfcf46ce37feaa27bccf5796f22d3da4393da230cfee36549d2e4f028f62e564333e27ec03cb19ab69cfec725ef3e66bb8bc0e6c9e57aa65615c languageName: node linkType: hard -"@vitest/utils@npm:2.1.8": - version: 2.1.8 - resolution: "@vitest/utils@npm:2.1.8" +"@vitest/utils@npm:3.0.3": + version: 3.0.3 + resolution: "@vitest/utils@npm:3.0.3" dependencies: - "@vitest/pretty-format": "npm:2.1.8" + "@vitest/pretty-format": "npm:3.0.3" loupe: "npm:^3.1.2" - tinyrainbow: "npm:^1.2.0" - checksum: 10c0/d4a29ecd8f6c24c790e4c009f313a044d89e664e331bc9c3cfb57fe1380fb1d2999706dbbfc291f067d6c489602e76d00435309fbc906197c0d01f831ca17d64 + tinyrainbow: "npm:^2.0.0" + checksum: 10c0/ce34f1d845d916fbc6d2855286bd231bbd556775ec83b0929885af262663ec7b199f41de0867476fe317967df95b44c26ec30b7fc01eeafce138f9eba5c31ecd languageName: node linkType: hard @@ -4543,7 +4484,7 @@ __metadata: languageName: node linkType: hard -"@vueuse/core@npm:12.5.0, @vueuse/core@npm:^12.5.0": +"@vueuse/core@npm:12.5.0, @vueuse/core@npm:^12.4.0, @vueuse/core@npm:^12.5.0": version: 12.5.0 resolution: "@vueuse/core@npm:12.5.0" dependencies: @@ -4555,18 +4496,6 @@ __metadata: languageName: node linkType: hard -"@vueuse/core@npm:^12.4.0": - version: 12.4.0 - resolution: "@vueuse/core@npm:12.4.0" - dependencies: - "@types/web-bluetooth": "npm:^0.0.20" - "@vueuse/metadata": "npm:12.4.0" - "@vueuse/shared": "npm:12.4.0" - vue: "npm:^3.5.13" - checksum: 10c0/21d37cc7ca9e358d356ee6f2dc5bd5f1c9431e6c930ab56f27bcd751daf0567b4d85c449f7c8e1ee13a087fbdcb949ad3b35862e3d888729f1e2003f519587ad - languageName: node - linkType: hard - "@vueuse/integrations@npm:^12.4.0": version: 12.5.0 resolution: "@vueuse/integrations@npm:12.5.0" @@ -4616,13 +4545,6 @@ __metadata: languageName: node linkType: hard -"@vueuse/metadata@npm:12.4.0": - version: 12.4.0 - resolution: "@vueuse/metadata@npm:12.4.0" - checksum: 10c0/3254243391c9cf467ab65f75bb74d84e592c517a85e3215bf810aeb3fa242bf7b3866db9a92d80218354243109c40c6e7155dc510cc8b4282d1df37816f1a8e3 - languageName: node - linkType: hard - "@vueuse/metadata@npm:12.5.0": version: 12.5.0 resolution: "@vueuse/metadata@npm:12.5.0" @@ -4642,15 +4564,6 @@ __metadata: languageName: node linkType: hard -"@vueuse/shared@npm:12.4.0": - version: 12.4.0 - resolution: "@vueuse/shared@npm:12.4.0" - dependencies: - vue: "npm:^3.5.13" - checksum: 10c0/0e34bd94c9aee2240b45f33d952878dedb30f82348d05987e9dd99929a8d8984a753c5f9f2ed2e757bd29189b04119340c7c8ebfa812ceb86347809683ba6071 - languageName: node - linkType: hard - "@vueuse/shared@npm:12.5.0": version: 12.5.0 resolution: "@vueuse/shared@npm:12.5.0" @@ -4688,6 +4601,13 @@ __metadata: languageName: node linkType: hard +"abbrev@npm:^3.0.0": + version: 3.0.0 + resolution: "abbrev@npm:3.0.0" + checksum: 10c0/049704186396f571650eb7b22ed3627b77a5aedf98bb83caf2eac81ca2a3e25e795394b0464cfb2d6076df3db6a5312139eac5b6a126ca296ac53c5008069c28 + languageName: node + linkType: hard + "abort-controller@npm:^3.0.0": version: 3.0.0 resolution: "abort-controller@npm:3.0.0" @@ -4801,23 +4721,23 @@ __metadata: linkType: hard "algoliasearch@npm:^5.14.2": - version: 5.19.0 - resolution: "algoliasearch@npm:5.19.0" - dependencies: - "@algolia/client-abtesting": "npm:5.19.0" - "@algolia/client-analytics": "npm:5.19.0" - "@algolia/client-common": "npm:5.19.0" - "@algolia/client-insights": "npm:5.19.0" - "@algolia/client-personalization": "npm:5.19.0" - "@algolia/client-query-suggestions": "npm:5.19.0" - "@algolia/client-search": "npm:5.19.0" - "@algolia/ingestion": "npm:1.19.0" - "@algolia/monitoring": "npm:1.19.0" - "@algolia/recommend": "npm:5.19.0" - "@algolia/requester-browser-xhr": "npm:5.19.0" - "@algolia/requester-fetch": "npm:5.19.0" - "@algolia/requester-node-http": "npm:5.19.0" - checksum: 10c0/81ac2370e2b45c4e595d85f111546f5b75b8b56947a5c352dbaf4b3c50a212d7ab128576cf2ee72ab369b054103325e417bf8f3fcad56f17aa7a6607f7cbf86b + version: 5.20.0 + resolution: "algoliasearch@npm:5.20.0" + dependencies: + "@algolia/client-abtesting": "npm:5.20.0" + "@algolia/client-analytics": "npm:5.20.0" + "@algolia/client-common": "npm:5.20.0" + "@algolia/client-insights": "npm:5.20.0" + "@algolia/client-personalization": "npm:5.20.0" + "@algolia/client-query-suggestions": "npm:5.20.0" + "@algolia/client-search": "npm:5.20.0" + "@algolia/ingestion": "npm:1.20.0" + "@algolia/monitoring": "npm:1.20.0" + "@algolia/recommend": "npm:5.20.0" + "@algolia/requester-browser-xhr": "npm:5.20.0" + "@algolia/requester-fetch": "npm:5.20.0" + "@algolia/requester-node-http": "npm:5.20.0" + checksum: 10c0/34bbe5ea83b62ea7604fd50ef61d9225cfa1bf5b1bf064500c46dddbebad922d38dfb7fd7c531591ada113879ed81c3896912a561012b9e1c1b1ae3ec68b6edf languageName: node linkType: hard @@ -5975,9 +5895,9 @@ __metadata: linkType: hard "caniuse-lite@npm:^1.0.30001646, caniuse-lite@npm:^1.0.30001688": - version: 1.0.30001692 - resolution: "caniuse-lite@npm:1.0.30001692" - checksum: 10c0/fca5105561ea12f3de593f3b0f062af82f7d07519e8dbcb97f34e7fd23349bcef1b1622a9a6cd2164d98e3d2f20059ef7e271edae46567aef88caf4c16c7708a + version: 1.0.30001695 + resolution: "caniuse-lite@npm:1.0.30001695" + checksum: 10c0/acf90a767051fdd8083711b3ff9f07a28149c55e394115d8f874f149aa4f130e6bc50cea1dd94fe03035b9ebbe13b64f446518a6d2e19f72650962bdff44b2c5 languageName: node linkType: hard @@ -6562,7 +6482,7 @@ __metadata: languageName: node linkType: hard -"consola@npm:^3.2.3, consola@npm:^3.3.3": +"consola@npm:^3.2.3, consola@npm:^3.4.0": version: 3.4.0 resolution: "consola@npm:3.4.0" checksum: 10c0/bc7f7ad46514375109a80f3ae8330097eb1e5d89232a24eb830f3ac383e22036a62c53d33561cd73d7cda4b3691fba85e3dcf35229ef7721b324aae291ceb40c @@ -6855,7 +6775,7 @@ __metadata: languageName: node linkType: hard -"debug@npm:4, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4, debug@npm:^4.3.5, debug@npm:^4.3.7, debug@npm:^4.4.0, debug@npm:~4.4.0": +"debug@npm:4, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4, debug@npm:^4.3.5, debug@npm:^4.4.0, debug@npm:~4.4.0": version: 4.4.0 resolution: "debug@npm:4.4.0" dependencies: @@ -7479,9 +7399,9 @@ __metadata: linkType: hard "electron-to-chromium@npm:^1.5.73": - version: 1.5.82 - resolution: "electron-to-chromium@npm:1.5.82" - checksum: 10c0/0d495077406adf4701c2b14d63a10e03128fbff0ca960c3c4132ef9b3ef36378f90618d8ca9f9f909270414b5e90b3912b65d10ea7f33418ea2e429d83593196 + version: 1.5.84 + resolution: "electron-to-chromium@npm:1.5.84" + checksum: 10c0/8362d556360eba420ea3475a7878c8fa8507a42c4ebfbf44108f6acc4edbe30a1cde79e95613bdc9ae6e7d73bf1776347cf7f615c1a220f63e34a0fa029568e0 languageName: node linkType: hard @@ -7502,15 +7422,15 @@ __metadata: linkType: hard "electron@npm:^34.0.0": - version: 34.0.0 - resolution: "electron@npm:34.0.0" + version: 34.0.1 + resolution: "electron@npm:34.0.1" dependencies: "@electron/get": "npm:^2.0.0" "@types/node": "npm:^20.9.0" extract-zip: "npm:^2.0.1" bin: electron: cli.js - checksum: 10c0/7d5c4465038fa5570864d0ee2b73673471baa7335ec8b4ea66ac56c8dcdc13075b213336282aa74592d5c70262dd388b2256ba6a08301604ae15b91653e06419 + checksum: 10c0/0a63edd57633edac8e4f4d1310dbb82ac01287f1f9113a18cef310dfef7f266ef8be98eda7d01890e23b37d03f36811bbac0fe5c4e0a27c9f3719ba3b7841f83 languageName: node linkType: hard @@ -7694,7 +7614,7 @@ __metadata: languageName: node linkType: hard -"es-module-lexer@npm:^1.5.4": +"es-module-lexer@npm:^1.6.0": version: 1.6.0 resolution: "es-module-lexer@npm:1.6.0" checksum: 10c0/667309454411c0b95c476025929881e71400d74a746ffa1ff4cb450bd87f8e33e8eef7854d68e401895039ac0bac64e7809acbebb6253e055dd49ea9e3ea9212 @@ -8551,14 +8471,14 @@ __metadata: linkType: hard "fdir@npm:^6.4.2": - version: 6.4.2 - resolution: "fdir@npm:6.4.2" + version: 6.4.3 + resolution: "fdir@npm:6.4.3" peerDependencies: picomatch: ^3 || ^4 peerDependenciesMeta: picomatch: optional: true - checksum: 10c0/34829886f34a3ca4170eca7c7180ec4de51a3abb4d380344063c0ae2e289b11d2ba8b724afee974598c83027fea363ff598caf2b51bc4e6b1e0d8b80cc530573 + checksum: 10c0/d13c10120e9625adf21d8d80481586200759928c19405a816b77dd28eaeb80e7c59c5def3e2941508045eb06d34eb47fad865ccc8bf98e6ab988bb0ed160fb6f languageName: node linkType: hard @@ -9962,7 +9882,7 @@ __metadata: languageName: node linkType: hard -"ignore@npm:^7.0.0": +"ignore@npm:^7.0.3": version: 7.0.3 resolution: "ignore@npm:7.0.3" checksum: 10c0/8e21637513cbcd888a4873d34d5c651a2e24b3c4c9a6b159335a26bed348c3c386c51d6fab23577f59140e1b226323138fbd50e63882d4568fd12aa6c822029e @@ -11443,7 +11363,7 @@ __metadata: languageName: node linkType: hard -"magic-string@npm:^0.30.11, magic-string@npm:^0.30.12, magic-string@npm:^0.30.17, magic-string@npm:^0.30.3": +"magic-string@npm:^0.30.11, magic-string@npm:^0.30.17, magic-string@npm:^0.30.3": version: 0.30.17 resolution: "magic-string@npm:0.30.17" dependencies: @@ -11666,7 +11586,7 @@ __metadata: typescript: "npm:~5.6.3" upath: "npm:^2.0.1" vitepress: "npm:^1.6.3" - vitest: "npm:^2.1.8" + vitest: "npm:^3.0.3" vue: "npm:^3.5.13" vue-i18n: "npm:^11.0.1" vue-router: "npm:^4.5.0" @@ -12272,10 +12192,10 @@ __metadata: languageName: node linkType: hard -"napi-build-utils@npm:^1.0.1": - version: 1.0.2 - resolution: "napi-build-utils@npm:1.0.2" - checksum: 10c0/37fd2cd0ff2ad20073ce78d83fd718a740d568b225924e753ae51cb69d68f330c80544d487e5e5bd18e28702ed2ca469c2424ad948becd1862c1b0209542b2e9 +"napi-build-utils@npm:^2.0.0": + version: 2.0.0 + resolution: "napi-build-utils@npm:2.0.0" + checksum: 10c0/5833aaeb5cc5c173da47a102efa4680a95842c13e0d9cc70428bd3ee8d96bb2172f8860d2811799b5daa5cbeda779933601492a2028a6a5351c6d0fcf6de83db languageName: node linkType: hard @@ -12341,11 +12261,11 @@ __metadata: linkType: hard "node-abi@npm:^3.3.0, node-abi@npm:^3.45.0": - version: 3.72.0 - resolution: "node-abi@npm:3.72.0" + version: 3.73.0 + resolution: "node-abi@npm:3.73.0" dependencies: semver: "npm:^7.3.5" - checksum: 10c0/a7f362a788f0d50998ede10d9f70d53c2b228bf96a5609a5c229097cf33463fb6a7006f7dc3d8e6c4ccfc4ddb47bd3c2c2d2114c478571d8bc243f60b72b71b5 + checksum: 10c0/4cd237f2507f80048310f381198a07387b11cbaab7dfac61ccc40cdc83f2296c647df02b5ddfead9f40b845c696f0ce75fdaa01973d3f3f0686151e4f96d2c8c languageName: node linkType: hard @@ -12377,9 +12297,9 @@ __metadata: linkType: hard "node-fetch-native@npm:^1.6.3": - version: 1.6.4 - resolution: "node-fetch-native@npm:1.6.4" - checksum: 10c0/78334dc6def5d1d95cfe87b33ac76c4833592c5eb84779ad2b0c23c689f9dd5d1cfc827035ada72d6b8b218f717798968c5a99aeff0a1a8bf06657e80592f9c3 + version: 1.6.6 + resolution: "node-fetch-native@npm:1.6.6" + checksum: 10c0/8c12dab0e640d8bc126a03d604af9cf3fc1b87f2cda5af0c71601079d5ed835c1dc149c7042b61c83f252a382e1cf1e541788f4c9e8e6c089af77497190f5dc3 languageName: node linkType: hard @@ -12485,13 +12405,13 @@ __metadata: linkType: hard "nopt@npm:^8.0.0": - version: 8.0.0 - resolution: "nopt@npm:8.0.0" + version: 8.1.0 + resolution: "nopt@npm:8.1.0" dependencies: - abbrev: "npm:^2.0.0" + abbrev: "npm:^3.0.0" bin: nopt: bin/nopt.js - checksum: 10c0/19cb986f79abaca2d0f0b560021da7b32ee6fcc3de48f3eaeb0c324d36755c17754f886a754c091f01f740c17caf7d6aea8237b7fbaf39f476ae5e30a249f18f + checksum: 10c0/62e9ea70c7a3eb91d162d2c706b6606c041e4e7b547cbbb48f8b3695af457dd6479904d7ace600856bf923dd8d1ed0696f06195c8c20f02ac87c1da0e1d315ef languageName: node linkType: hard @@ -13329,10 +13249,10 @@ __metadata: languageName: node linkType: hard -"pathe@npm:^2.0.0, pathe@npm:^2.0.1": - version: 2.0.1 - resolution: "pathe@npm:2.0.1" - checksum: 10c0/902139a0beddcdc4396f59bf94315a2a228f01666348cd0b4274d9d0aab31325c390a883a6707b9149a9ec39a7a6fe4846e7d11de83be9c596a33daa850a37ef +"pathe@npm:^2.0.1": + version: 2.0.2 + resolution: "pathe@npm:2.0.2" + checksum: 10c0/21fce96ca9cebf037b075de8e5cc4ac6aa1009bce57946a72695f47ded84cf4b29f03bed721ea0f6e39b69eb1a0620bcee1f72eca46086765214a2965399b83a languageName: node linkType: hard @@ -13595,7 +13515,7 @@ __metadata: languageName: node linkType: hard -"pkg-types@npm:^1.2.0, pkg-types@npm:^1.3.0": +"pkg-types@npm:^1.2.0, pkg-types@npm:^1.3.0, pkg-types@npm:^1.3.1": version: 1.3.1 resolution: "pkg-types@npm:1.3.1" dependencies: @@ -13779,15 +13699,15 @@ __metadata: linkType: hard "prebuild-install@npm:^7.1.1": - version: 7.1.2 - resolution: "prebuild-install@npm:7.1.2" + version: 7.1.3 + resolution: "prebuild-install@npm:7.1.3" dependencies: detect-libc: "npm:^2.0.0" expand-template: "npm:^2.0.3" github-from-package: "npm:0.0.0" minimist: "npm:^1.2.3" mkdirp-classic: "npm:^0.5.3" - napi-build-utils: "npm:^1.0.1" + napi-build-utils: "npm:^2.0.0" node-abi: "npm:^3.3.0" pump: "npm:^3.0.0" rc: "npm:^1.2.7" @@ -13796,7 +13716,7 @@ __metadata: tunnel-agent: "npm:^0.6.0" bin: prebuild-install: bin.js - checksum: 10c0/e64868ba9ef2068fd7264f5b03e5298a901e02a450acdb1f56258d88c09dea601eefdb3d1dfdff8513fdd230a92961712be0676192626a3b4d01ba154d48bdd3 + checksum: 10c0/25919a42b52734606a4036ab492d37cfe8b601273d8dfb1fa3c84e141a0a475e7bad3ab848c741d2f810cef892fcf6059b8c7fe5b29f98d30e0c29ad009bedff languageName: node linkType: hard @@ -14566,28 +14486,28 @@ __metadata: linkType: hard "rollup@npm:^4.20.0, rollup@npm:^4.23.0": - version: 4.30.1 - resolution: "rollup@npm:4.30.1" - dependencies: - "@rollup/rollup-android-arm-eabi": "npm:4.30.1" - "@rollup/rollup-android-arm64": "npm:4.30.1" - "@rollup/rollup-darwin-arm64": "npm:4.30.1" - "@rollup/rollup-darwin-x64": "npm:4.30.1" - "@rollup/rollup-freebsd-arm64": "npm:4.30.1" - "@rollup/rollup-freebsd-x64": "npm:4.30.1" - "@rollup/rollup-linux-arm-gnueabihf": "npm:4.30.1" - "@rollup/rollup-linux-arm-musleabihf": "npm:4.30.1" - "@rollup/rollup-linux-arm64-gnu": "npm:4.30.1" - "@rollup/rollup-linux-arm64-musl": "npm:4.30.1" - "@rollup/rollup-linux-loongarch64-gnu": "npm:4.30.1" - "@rollup/rollup-linux-powerpc64le-gnu": "npm:4.30.1" - "@rollup/rollup-linux-riscv64-gnu": "npm:4.30.1" - "@rollup/rollup-linux-s390x-gnu": "npm:4.30.1" - "@rollup/rollup-linux-x64-gnu": "npm:4.30.1" - "@rollup/rollup-linux-x64-musl": "npm:4.30.1" - "@rollup/rollup-win32-arm64-msvc": "npm:4.30.1" - "@rollup/rollup-win32-ia32-msvc": "npm:4.30.1" - "@rollup/rollup-win32-x64-msvc": "npm:4.30.1" + version: 4.31.0 + resolution: "rollup@npm:4.31.0" + dependencies: + "@rollup/rollup-android-arm-eabi": "npm:4.31.0" + "@rollup/rollup-android-arm64": "npm:4.31.0" + "@rollup/rollup-darwin-arm64": "npm:4.31.0" + "@rollup/rollup-darwin-x64": "npm:4.31.0" + "@rollup/rollup-freebsd-arm64": "npm:4.31.0" + "@rollup/rollup-freebsd-x64": "npm:4.31.0" + "@rollup/rollup-linux-arm-gnueabihf": "npm:4.31.0" + "@rollup/rollup-linux-arm-musleabihf": "npm:4.31.0" + "@rollup/rollup-linux-arm64-gnu": "npm:4.31.0" + "@rollup/rollup-linux-arm64-musl": "npm:4.31.0" + "@rollup/rollup-linux-loongarch64-gnu": "npm:4.31.0" + "@rollup/rollup-linux-powerpc64le-gnu": "npm:4.31.0" + "@rollup/rollup-linux-riscv64-gnu": "npm:4.31.0" + "@rollup/rollup-linux-s390x-gnu": "npm:4.31.0" + "@rollup/rollup-linux-x64-gnu": "npm:4.31.0" + "@rollup/rollup-linux-x64-musl": "npm:4.31.0" + "@rollup/rollup-win32-arm64-msvc": "npm:4.31.0" + "@rollup/rollup-win32-ia32-msvc": "npm:4.31.0" + "@rollup/rollup-win32-x64-msvc": "npm:4.31.0" "@types/estree": "npm:1.0.6" fsevents: "npm:~2.3.2" dependenciesMeta: @@ -14633,7 +14553,7 @@ __metadata: optional: true bin: rollup: dist/bin/rollup - checksum: 10c0/a318c57e2ca9741e1503bcd75483949c6e83edd72234a468010a3098a34248f523e44f7ad4fde90dc5c2da56abc1b78ac42a9329e1dbd708682728adbd8df7cc + checksum: 10c0/0d6da45098af14c678e78be887fefefbf5a97fef6277c5a1c24ca722537bb3a02e695c6fcad8880218d8fbef8a7a17d865786afd99bb6e70409fad73844ca8cf languageName: node linkType: hard @@ -16381,7 +16301,7 @@ __metadata: languageName: node linkType: hard -"tinyexec@npm:^0.3.1": +"tinyexec@npm:^0.3.2": version: 0.3.2 resolution: "tinyexec@npm:0.3.2" checksum: 10c0/3efbf791a911be0bf0821eab37a3445c2ba07acc1522b1fa84ae1e55f10425076f1290f680286345ed919549ad67527d07281f1c19d584df3b74326909eb1f90 @@ -16398,17 +16318,17 @@ __metadata: languageName: node linkType: hard -"tinypool@npm:^1.0.1": +"tinypool@npm:^1.0.2": version: 1.0.2 resolution: "tinypool@npm:1.0.2" checksum: 10c0/31ac184c0ff1cf9a074741254fe9ea6de95026749eb2b8ec6fd2b9d8ca94abdccda731f8e102e7f32e72ed3b36d32c6975fd5f5523df3f1b6de6c3d8dfd95e63 languageName: node linkType: hard -"tinyrainbow@npm:^1.2.0": - version: 1.2.0 - resolution: "tinyrainbow@npm:1.2.0" - checksum: 10c0/7f78a4b997e5ba0f5ecb75e7ed786f30bab9063716e7dff24dd84013fb338802e43d176cb21ed12480561f5649a82184cf31efb296601a29d38145b1cdb4c192 +"tinyrainbow@npm:^2.0.0": + version: 2.0.0 + resolution: "tinyrainbow@npm:2.0.0" + checksum: 10c0/c83c52bef4e0ae7fb8ec6a722f70b5b6fa8d8be1c85792e829f56c0e1be94ab70b293c032dc5048d4d37cfe678f1f5babb04bdc65fd123098800148ca989184f languageName: node linkType: hard @@ -16723,9 +16643,9 @@ __metadata: linkType: hard "type-fest@npm:^4.18.2, type-fest@npm:^4.21.0, type-fest@npm:^4.26.1": - version: 4.32.0 - resolution: "type-fest@npm:4.32.0" - checksum: 10c0/e2e877055487d109eba99afc58211db4a480837ff7b243c7de0b3e2ac29fdce55ab55e201c64cb1a8b2aeffce7e8f60ae3ce3a2f7e6fb68261d62743e54288ba + version: 4.33.0 + resolution: "type-fest@npm:4.33.0" + checksum: 10c0/20015eea353605e08e3f4b967291b225fa4e7c43361de44f39b88131715e41877458af80da59c8f17e40c0e3842298996f0651219dc9823e35c7e46ecbc8a44f languageName: node linkType: hard @@ -16793,16 +16713,16 @@ __metadata: linkType: hard "typescript-eslint@npm:^8.20.0": - version: 8.20.0 - resolution: "typescript-eslint@npm:8.20.0" + version: 8.21.0 + resolution: "typescript-eslint@npm:8.21.0" dependencies: - "@typescript-eslint/eslint-plugin": "npm:8.20.0" - "@typescript-eslint/parser": "npm:8.20.0" - "@typescript-eslint/utils": "npm:8.20.0" + "@typescript-eslint/eslint-plugin": "npm:8.21.0" + "@typescript-eslint/parser": "npm:8.21.0" + "@typescript-eslint/utils": "npm:8.21.0" peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <5.8.0" - checksum: 10c0/049e0fa000657232c0fe26a062ef6a9cd16c5a58c814a74ac45971554c8b6bc67355821a66229f9537e819939a2ab065e7fcba9a70cd95c8283630dc58ac0144 + checksum: 10c0/44e5c341ad7f0b41dce3b4ca7a4c0a399ebe51a5323d930750db1e308367b4813a620f4c2332a5774a1dccd0047ebbaf993a8b7effd67389e9069b29b5701520 languageName: node linkType: hard @@ -16922,7 +16842,7 @@ __metadata: languageName: node linkType: hard -"unimport@npm:^3.14.5": +"unimport@npm:^3.14.6": version: 3.14.6 resolution: "unimport@npm:3.14.6" dependencies: @@ -17368,18 +17288,18 @@ __metadata: languageName: node linkType: hard -"vite-node@npm:2.1.8": - version: 2.1.8 - resolution: "vite-node@npm:2.1.8" +"vite-node@npm:3.0.3": + version: 3.0.3 + resolution: "vite-node@npm:3.0.3" dependencies: cac: "npm:^6.7.14" - debug: "npm:^4.3.7" - es-module-lexer: "npm:^1.5.4" - pathe: "npm:^1.1.2" - vite: "npm:^5.0.0" + debug: "npm:^4.4.0" + es-module-lexer: "npm:^1.6.0" + pathe: "npm:^2.0.1" + vite: "npm:^5.0.0 || ^6.0.0" bin: vite-node: vite-node.mjs - checksum: 10c0/cb28027a7425ba29780e216164c07d36a4ff9eb60d83afcad3bc222fd5a5f3e36030071c819edd6d910940f502d49e52f7564743617bc1c5875485b0952c72d5 + checksum: 10c0/f436cd8ae7b37039585d9cd0b00da144558d6ffcbd1810ec62bde353f17a8da7bc2427ec2678dec04d4360ed80805ba525573a2490c7f2edd147262eb2de7067 languageName: node linkType: hard @@ -17399,29 +17319,34 @@ __metadata: languageName: node linkType: hard -"vite@npm:^5.0.0, vite@npm:^5.4.14": - version: 5.4.14 - resolution: "vite@npm:5.4.14" +"vite@npm:^5.0.0 || ^6.0.0, vite@npm:^6.0.7": + version: 6.0.11 + resolution: "vite@npm:6.0.11" dependencies: - esbuild: "npm:^0.21.3" + esbuild: "npm:^0.24.2" fsevents: "npm:~2.3.3" - postcss: "npm:^8.4.43" - rollup: "npm:^4.20.0" + postcss: "npm:^8.4.49" + rollup: "npm:^4.23.0" peerDependencies: - "@types/node": ^18.0.0 || >=20.0.0 + "@types/node": ^18.0.0 || ^20.0.0 || >=22.0.0 + jiti: ">=1.21.0" less: "*" lightningcss: ^1.21.0 sass: "*" sass-embedded: "*" stylus: "*" sugarss: "*" - terser: ^5.4.0 + terser: ^5.16.0 + tsx: ^4.8.1 + yaml: ^2.4.2 dependenciesMeta: fsevents: optional: true peerDependenciesMeta: "@types/node": optional: true + jiti: + optional: true less: optional: true lightningcss: @@ -17436,40 +17361,39 @@ __metadata: optional: true terser: optional: true + tsx: + optional: true + yaml: + optional: true bin: vite: bin/vite.js - checksum: 10c0/8842933bd70ca6a98489a0bb9c8464bec373de00f9a97c8c7a4e64b24d15c88bfaa8c1acb38a68c3e5eb49072ffbccb146842c2d4edcdd036a9802964cffe3d1 + checksum: 10c0/a0537f9bf8d6ded740646a4aa44b8dbf442d3005e75f7b27e981ef6011f22d4759f5eb643a393c0ffb8d21e2f50fb5f774d3a53108fb96a10b0f83697e8efe84 languageName: node linkType: hard -"vite@npm:^6.0.7": - version: 6.0.7 - resolution: "vite@npm:6.0.7" +"vite@npm:^5.4.14": + version: 5.4.14 + resolution: "vite@npm:5.4.14" dependencies: - esbuild: "npm:^0.24.2" + esbuild: "npm:^0.21.3" fsevents: "npm:~2.3.3" - postcss: "npm:^8.4.49" - rollup: "npm:^4.23.0" + postcss: "npm:^8.4.43" + rollup: "npm:^4.20.0" peerDependencies: - "@types/node": ^18.0.0 || ^20.0.0 || >=22.0.0 - jiti: ">=1.21.0" + "@types/node": ^18.0.0 || >=20.0.0 less: "*" lightningcss: ^1.21.0 sass: "*" sass-embedded: "*" stylus: "*" sugarss: "*" - terser: ^5.16.0 - tsx: ^4.8.1 - yaml: ^2.4.2 + terser: ^5.4.0 dependenciesMeta: fsevents: optional: true peerDependenciesMeta: "@types/node": optional: true - jiti: - optional: true less: optional: true lightningcss: @@ -17484,13 +17408,9 @@ __metadata: optional: true terser: optional: true - tsx: - optional: true - yaml: - optional: true bin: vite: bin/vite.js - checksum: 10c0/ae81047b4290a7206b9394a39a782d509e9610462e7946422ba22d5bc615b5a322c07e33d7bf9dd0b3312ec3f5c63353b725913d1519324bfdf539b4f1e03f52 + checksum: 10c0/8842933bd70ca6a98489a0bb9c8464bec373de00f9a97c8c7a4e64b24d15c88bfaa8c1acb38a68c3e5eb49072ffbccb146842c2d4edcdd036a9802964cffe3d1 languageName: node linkType: hard @@ -17530,35 +17450,35 @@ __metadata: languageName: node linkType: hard -"vitest@npm:^2.1.8": - version: 2.1.8 - resolution: "vitest@npm:2.1.8" - dependencies: - "@vitest/expect": "npm:2.1.8" - "@vitest/mocker": "npm:2.1.8" - "@vitest/pretty-format": "npm:^2.1.8" - "@vitest/runner": "npm:2.1.8" - "@vitest/snapshot": "npm:2.1.8" - "@vitest/spy": "npm:2.1.8" - "@vitest/utils": "npm:2.1.8" +"vitest@npm:^3.0.3": + version: 3.0.3 + resolution: "vitest@npm:3.0.3" + dependencies: + "@vitest/expect": "npm:3.0.3" + "@vitest/mocker": "npm:3.0.3" + "@vitest/pretty-format": "npm:^3.0.3" + "@vitest/runner": "npm:3.0.3" + "@vitest/snapshot": "npm:3.0.3" + "@vitest/spy": "npm:3.0.3" + "@vitest/utils": "npm:3.0.3" chai: "npm:^5.1.2" - debug: "npm:^4.3.7" + debug: "npm:^4.4.0" expect-type: "npm:^1.1.0" - magic-string: "npm:^0.30.12" - pathe: "npm:^1.1.2" + magic-string: "npm:^0.30.17" + pathe: "npm:^2.0.1" std-env: "npm:^3.8.0" tinybench: "npm:^2.9.0" - tinyexec: "npm:^0.3.1" - tinypool: "npm:^1.0.1" - tinyrainbow: "npm:^1.2.0" - vite: "npm:^5.0.0" - vite-node: "npm:2.1.8" + tinyexec: "npm:^0.3.2" + tinypool: "npm:^1.0.2" + tinyrainbow: "npm:^2.0.0" + vite: "npm:^5.0.0 || ^6.0.0" + vite-node: "npm:3.0.3" why-is-node-running: "npm:^2.3.0" peerDependencies: "@edge-runtime/vm": "*" - "@types/node": ^18.0.0 || >=20.0.0 - "@vitest/browser": 2.1.8 - "@vitest/ui": 2.1.8 + "@types/node": ^18.0.0 || ^20.0.0 || >=22.0.0 + "@vitest/browser": 3.0.3 + "@vitest/ui": 3.0.3 happy-dom: "*" jsdom: "*" peerDependenciesMeta: @@ -17576,7 +17496,7 @@ __metadata: optional: true bin: vitest: vitest.mjs - checksum: 10c0/e70631bad5662d6c60c5cf836a4baf58b890db6654fef1f608fe6a86aa49a2b9f078aac74b719d4d3c87c5c781968cc73590a7935277b48f3d8b6fb9c5b4d276 + checksum: 10c0/5d8c1ea39677e93c206767c109c5a6564fac1f2f73c146fbcba64761118807a6c3569522e0efba7feefa058a72f8d0b3abdbb1b8326fef276e88e315b34d6656 languageName: node linkType: hard