From 11e06ccfef5174d4ccea202cc1dae8e57b2ad79c Mon Sep 17 00:00:00 2001 From: Aditya Sharma Date: Fri, 3 Jul 2026 17:45:12 +0530 Subject: [PATCH 1/6] chore: pnpm migration --- .github/workflows/CI.yaml | 9 +++--- .npmrc | 2 -- package.json | 59 ++++----------------------------------- pnpm-workspace.yaml | 43 ++++++++++++++++++++++++++++ 4 files changed, 53 insertions(+), 60 deletions(-) delete mode 100644 .npmrc diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index b51cb7954..fb1a91a19 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -75,7 +75,7 @@ jobs: echo "preid=${preid}" # Use yarn to bump the version for the prerelease - pnpm version prerelease --preid ${preid} --no-git-tag-version --yes --amend + pnpm version prerelease --preid ${preid} --no-git-tag-version --yes package_version=$(jq -r ".version" package.json) package=@kong/spec-renderer@"${package_version}" @@ -88,14 +88,15 @@ jobs: npm_instructions="" - pkg=$(pnpm publish --no-git-checks --access public --report-summary --tag "${tag}" | grep "+ "| sed 's/+ //') + pnpm publish --no-git-checks --access public --tag "${tag}" - if [[ -z "${pkg}" ]]; then + if [ $? -ne 0 ]; then echo "Error publishing package" exit -1 fi - npm_instructions="@$(echo ${pkg}|cut -d'@' -f2)@${tag}" + package_name=$(jq -r ".name" package.json) + npm_instructions="${package_name}@${tag}" echo "npm_instructions<> $GITHUB_OUTPUT echo -e "$npm_instructions" >> $GITHUB_OUTPUT diff --git a/.npmrc b/.npmrc deleted file mode 100644 index 73c487f3b..000000000 --- a/.npmrc +++ /dev/null @@ -1,2 +0,0 @@ -strict-peer-dependencies=false -auto-install-peers=false diff --git a/package.json b/package.json index b0119ef86..2a324c64f 100644 --- a/package.json +++ b/package.json @@ -130,60 +130,6 @@ "vue-router": "^4.6.4", "vue-tsc": "^3.2.9" }, - "pnpm": { - "onlyBuiltDependencies": [ - "@evilmartians/lefthook", - "@parcel/watcher", - "esbuild", - "vue-demi" - ], - "overrides": { - "openapi3-ts": "4.6.0", - "jsonpath-plus@<10.3.0": ">=10.4.0", - "elliptic@<=6.6.0": ">=6.6.1", - "@babel/helpers@<7.26.10": ">=7.29.2", - "cross-spawn@>=7.0.0 <7.0.5": ">=7.0.6", - "brace-expansion@>=1.0.0 <=1.1.11": ">=2.1.0", - "brace-expansion@>=2.0.0 <=2.0.1": ">=2.0.2", - "pbkdf2@<=3.1.2": ">=3.1.5", - "sha.js@<=2.4.11": ">=2.4.12", - "cipher-base@<=1.0.4": ">=1.0.7", - "glob@>=10.2.0 <10.5.0": ">=13.0.6", - "diff@>=4.0.0 <4.0.4": ">=4.0.4", - "@isaacs/brace-expansion@<=5.0.0": ">=5.0.1", - "mdast-util-to-hast@>=13.0.0 <13.2.1": ">=13.2.1", - "qs@>=6.7.0 <=6.15.1": ">=6.15.2", - "bn.js@>=5.0.0 <5.2.3": ">=5.2.3", - "bn.js@<4.12.3": ">=5.2.3", - "rollup@>=4.0.0 <4.59.0": ">=4.62.2", - "minimatch@<10.2.3": ">=10.2.5", - "ajv@<6.14.0": "^6.15.0", - "immutable@>=5.0.0 <5.1.5": ">=5.1.5", - "flatted@<=3.4.1": ">=3.4.2", - "undici@<6.24.0": ">=8.5.0", - "handlebars@>=4.0.0 <4.7.9": ">=4.7.9", - "picomatch@<2.3.2": ">=4.0.4", - "lodash-es@<=4.17.23": ">=4.18.0", - "lodash@<=4.17.23": ">=4.18.0", - "yaml@>=2.0.0 <2.8.3": ">=2.9.0", - "fast-uri@<=3.1.1": ">=3.1.2", - "uuid@<11.1.1": ">=11.1.1", - "vitest@<3.2.6": ">=3.2.6", - "brace-expansion@>=5.0.0 <5.0.6": ">=5.0.6", - "js-cookie@<=3.0.5": ">=3.0.7", - "tmp@<0.2.6": ">=0.2.6", - "esbuild@>=0.27.3 <0.28.1": ">=0.28.1", - "sanitize-html@=2.17.3": ">=2.17.4", - "ws@>=8.0.0 <8.21.0": ">=8.21.0", - "form-data@>=4.0.0 <4.0.6": ">=4.0.6", - "vite@>=7.0.0 <=7.3.4": ">=7.3.5", - "@babel/core@<=7.29.0": ">=7.29.6", - "markdown-it@<=14.1.1": ">=14.2.0", - "linkify-it@<=5.0.0": ">=5.0.1", - "js-yaml@>=4.0.0 <=4.1.1": ">=4.2.0", - "undici@>=7.0.0 <7.28.0": ">=7.28.0" - } - }, "repository": { "type": "git", "url": "git+https://github.com/Kong/spec-renderer.git" @@ -237,8 +183,13 @@ "node": ">=18.17.0" }, "volta": { +<<<<<<< HEAD "node": "24.18.0", "pnpm": "10.33.4" +======= + "node": "24.15.0", + "pnpm": "11.5.3" +>>>>>>> ccaad7d (chore: pnpm migration) }, "config": { "commitizen": { diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 148284f17..2f662696d 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -8,3 +8,46 @@ minimumReleaseAgeExclude: trustPolicy: no-downgrade # Ignore policy if published at least 12 days (17280 minutes) trustPolicyIgnoreAfter: 17280 +overrides: + openapi3-ts: 4.5.0 + jsonpath-plus@<10.3.0: '>=10.4.0' + elliptic@<=6.6.0: '>=6.6.1' + '@babel/helpers@<7.26.10': '>=7.29.2' + cross-spawn@>=7.0.0 <7.0.5: '>=7.0.6' + brace-expansion@>=1.0.0 <=1.1.11: '>=2.1.0' + brace-expansion@>=2.0.0 <=2.0.1: '>=2.0.2' + pbkdf2@<=3.1.2: '>=3.1.5' + sha.js@<=2.4.11: '>=2.4.12' + cipher-base@<=1.0.4: '>=1.0.7' + tmp@<=0.2.3: '>=0.2.5' + form-data@>=4.0.0 <4.0.4: '>=4.0.5' + js-yaml@>=4.0.0 <4.1.1: '>=4.1.1' + glob@>=10.2.0 <10.5.0: '>=13.0.6' + diff@>=4.0.0 <4.0.4: '>=4.0.4' + '@isaacs/brace-expansion@<=5.0.0': '>=5.0.1' + mdast-util-to-hast@>=13.0.0 <13.2.1: '>=13.2.1' + qs@>=6.7.0 <=6.14.1: '>=6.15.1' + markdown-it@>=13.0.0 <14.1.1: '>=14.1.1' + bn.js@>=5.0.0 <5.2.3: '>=5.2.3' + bn.js@<4.12.3: '>=5.2.3' + rollup@>=4.0.0 <4.59.0: '>=4.60.4' + minimatch@<10.2.3: '>=10.2.5' + ajv@<6.14.0: ^6.15.0 + immutable@>=5.0.0 <5.1.5: '>=5.1.5' + flatted@<=3.4.1: '>=3.4.2' + undici@<6.24.0: '>=6.25.0' + undici@>=7.0.0 <7.24.0: '>=7.25.0' + handlebars@>=4.0.0 <4.7.9: '>=4.7.9' + picomatch@>=4.0.0 <4.0.4: '>=4.0.4' + picomatch@<2.3.2: '>=2.3.2' + lodash-es@<=4.17.23: '>=4.18.0' + lodash@<=4.17.23: '>=4.18.0' + yaml@>=2.0.0 <2.8.3: '>=2.8.4' + vite@>=7.0.0 <=7.3.1: '>=7.3.3' +strictPeerDependencies: false +autoInstallPeers: false +allowBuilds: + '@evilmartians/lefthook': true + '@parcel/watcher': true + esbuild: true + vue-demi: true From c1e26f6dbb1f9188a058076afe0efc3222c898ca Mon Sep 17 00:00:00 2001 From: Aditya Sharma Date: Sat, 4 Jul 2026 02:38:37 +0530 Subject: [PATCH 2/6] chore: update lockfile --- package.json | 5 ----- 1 file changed, 5 deletions(-) diff --git a/package.json b/package.json index 2a324c64f..a3438e0ed 100644 --- a/package.json +++ b/package.json @@ -183,13 +183,8 @@ "node": ">=18.17.0" }, "volta": { -<<<<<<< HEAD "node": "24.18.0", - "pnpm": "10.33.4" -======= - "node": "24.15.0", "pnpm": "11.5.3" ->>>>>>> ccaad7d (chore: pnpm migration) }, "config": { "commitizen": { From 03c814bdbb40ce44e104ce3b5425930a1b41a656 Mon Sep 17 00:00:00 2001 From: Aditya Sharma Date: Sat, 4 Jul 2026 03:01:45 +0530 Subject: [PATCH 3/6] chore: update lock file via pnpm v11 --- pnpm-lock.yaml | 759 ++++++++++++++++++++++++++----------------------- 1 file changed, 399 insertions(+), 360 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4e905318f..82a4d002a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -5,7 +5,7 @@ settings: excludeLinksFromLockfile: false overrides: - openapi3-ts: 4.6.0 + openapi3-ts: 4.5.0 jsonpath-plus@<10.3.0: '>=10.4.0' elliptic@<=6.6.0: '>=6.6.1' '@babel/helpers@<7.26.10': '>=7.29.2' @@ -15,40 +15,31 @@ overrides: pbkdf2@<=3.1.2: '>=3.1.5' sha.js@<=2.4.11: '>=2.4.12' cipher-base@<=1.0.4: '>=1.0.7' + tmp@<=0.2.3: '>=0.2.5' + form-data@>=4.0.0 <4.0.4: '>=4.0.5' + js-yaml@>=4.0.0 <4.1.1: '>=4.1.1' glob@>=10.2.0 <10.5.0: '>=13.0.6' diff@>=4.0.0 <4.0.4: '>=4.0.4' '@isaacs/brace-expansion@<=5.0.0': '>=5.0.1' mdast-util-to-hast@>=13.0.0 <13.2.1: '>=13.2.1' - qs@>=6.7.0 <=6.15.1: '>=6.15.2' + qs@>=6.7.0 <=6.14.1: '>=6.15.1' + markdown-it@>=13.0.0 <14.1.1: '>=14.1.1' bn.js@>=5.0.0 <5.2.3: '>=5.2.3' bn.js@<4.12.3: '>=5.2.3' - rollup@>=4.0.0 <4.59.0: '>=4.62.2' + rollup@>=4.0.0 <4.59.0: '>=4.60.4' minimatch@<10.2.3: '>=10.2.5' ajv@<6.14.0: ^6.15.0 immutable@>=5.0.0 <5.1.5: '>=5.1.5' flatted@<=3.4.1: '>=3.4.2' - undici@<6.24.0: '>=8.5.0' + undici@<6.24.0: '>=6.25.0' + undici@>=7.0.0 <7.24.0: '>=7.25.0' handlebars@>=4.0.0 <4.7.9: '>=4.7.9' - picomatch@<2.3.2: '>=4.0.4' + picomatch@>=4.0.0 <4.0.4: '>=4.0.4' + picomatch@<2.3.2: '>=2.3.2' lodash-es@<=4.17.23: '>=4.18.0' lodash@<=4.17.23: '>=4.18.0' - yaml@>=2.0.0 <2.8.3: '>=2.9.0' - fast-uri@<=3.1.1: '>=3.1.2' - uuid@<11.1.1: '>=11.1.1' - vitest@<3.2.6: '>=3.2.6' - brace-expansion@>=5.0.0 <5.0.6: '>=5.0.6' - js-cookie@<=3.0.5: '>=3.0.7' - tmp@<0.2.6: '>=0.2.6' - esbuild@>=0.27.3 <0.28.1: '>=0.28.1' - sanitize-html@=2.17.3: '>=2.17.4' - ws@>=8.0.0 <8.21.0: '>=8.21.0' - form-data@>=4.0.0 <4.0.6: '>=4.0.6' - vite@>=7.0.0 <=7.3.4: '>=7.3.5' - '@babel/core@<=7.29.0': '>=7.29.6' - markdown-it@<=14.1.1: '>=14.2.0' - linkify-it@<=5.0.0: '>=5.0.1' - js-yaml@>=4.0.0 <=4.1.1: '>=4.2.0' - undici@>=7.0.0 <7.28.0: '>=7.28.0' + yaml@>=2.0.0 <2.8.3: '>=2.8.4' + vite@>=7.0.0 <=7.3.1: '>=7.3.3' importers: @@ -103,10 +94,10 @@ importers: specifier: ^4.18.1 version: 4.18.1 markdown-it: - specifier: '>=14.2.0' + specifier: ^14.1.1 version: 14.3.0 sanitize-html: - specifier: '>=2.17.4' + specifier: ^2.17.3 version: 2.17.5 shiki: specifier: ^3.23.0 @@ -165,7 +156,7 @@ importers: version: 6.0.7(vite@7.3.6(@types/node@24.13.2)(jiti@2.4.2)(sass-embedded@1.100.0)(sass@1.101.0)(yaml@2.9.0))(vue@3.5.35(typescript@5.9.3)) '@vitest/ui': specifier: ^3.2.4 - version: 3.2.4(vitest@4.1.9) + version: 3.2.4(vitest@3.2.4) '@vue/test-utils': specifier: ^2.4.10 version: 2.4.10(@vue/compiler-dom@3.5.35)(@vue/server-renderer@3.5.35(vue@3.5.35(typescript@5.9.3)))(vue@3.5.35(typescript@5.9.3)) @@ -194,8 +185,8 @@ importers: specifier: ^29.1.1 version: 29.1.1 openapi3-ts: - specifier: 4.6.0 - version: 4.6.0 + specifier: 4.5.0 + version: 4.5.0 postcss: specifier: ^8.5.15 version: 8.5.15 @@ -257,8 +248,8 @@ importers: specifier: ^8.1.2 version: 8.1.2(vite@7.3.6(@types/node@24.13.2)(jiti@2.4.2)(sass-embedded@1.100.0)(sass@1.101.0)(yaml@2.9.0))(vue@3.5.35(typescript@5.9.3)) vitest: - specifier: '>=3.2.6' - version: 4.1.9(@types/node@24.13.2)(@vitest/ui@3.2.4)(jsdom@29.1.1)(vite@7.3.6(@types/node@24.13.2)(jiti@2.4.2)(sass-embedded@1.100.0)(sass@1.101.0)(yaml@2.9.0)) + specifier: 3.2.4 + version: 3.2.4(@types/node@24.13.2)(@vitest/ui@3.2.4)(jiti@2.4.2)(jsdom@29.1.1)(sass-embedded@1.100.0)(sass@1.101.0)(yaml@2.9.0) vue: specifier: ^3.5.34 version: 3.5.35(typescript@5.9.3) @@ -318,43 +309,43 @@ packages: resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==} engines: {node: '>=6.9.0'} - '@babel/code-frame@8.0.0': - resolution: {integrity: sha512-dYYg153EyN2Ekbqw2zAsbd6/JR+9N2SEoC7YV2GyyqMM7x9bLDTjBD6XBhSMLH0wtIVyJj03jWNriQhaN+eoCw==} - engines: {node: ^22.18.0 || >=24.11.0} + '@babel/code-frame@7.29.7': + resolution: {integrity: sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==} + engines: {node: '>=6.9.0'} - '@babel/compat-data@8.0.0': - resolution: {integrity: sha512-DOjnob/cXOUgDOozCDeq/aK2p5y8dUIVdf6tNhEV1HQRd6I8aQ4f4fbtHRVEvb6lP3BGomrKHiS8ICAASSVQSw==} - engines: {node: ^22.18.0 || >=24.11.0} + '@babel/compat-data@7.29.7': + resolution: {integrity: sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==} + engines: {node: '>=6.9.0'} - '@babel/core@8.0.1': - resolution: {integrity: sha512-5FgxM4dLQpMJHSiVATk8foW263dVHQHBVpXYiimNECVWG01f4nFyEbQixeT6Mwvg7TayREJ2gpKl3o2RoMdnqw==} - engines: {node: ^22.18.0 || >=24.11.0} + '@babel/core@7.29.7': + resolution: {integrity: sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==} + engines: {node: '>=6.9.0'} '@babel/generator@7.25.6': resolution: {integrity: sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw==} engines: {node: '>=6.9.0'} - '@babel/generator@8.0.0': - resolution: {integrity: sha512-NT9NrVwJsbSV6Y2FSstWa71EETOnzrjkL5/wX3D2mYHtKM+qvqB1DvR4D0Setb/gDBsHzRICifwEWMO8CnTF6g==} - engines: {node: ^22.18.0 || >=24.11.0} + '@babel/generator@7.29.7': + resolution: {integrity: sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==} + engines: {node: '>=6.9.0'} '@babel/helper-annotate-as-pure@7.24.7': resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==} engines: {node: '>=6.9.0'} - '@babel/helper-compilation-targets@8.0.0': - resolution: {integrity: sha512-JwculLABZvyPvyLBpwU/E/IbH2uM3mnxNtIJpxnIfb24y1PrdVxK5Dqjle4DpgqpGRnwgC7G8IkzPdSXZrO1Ew==} - engines: {node: ^22.18.0 || >=24.11.0} + '@babel/helper-compilation-targets@7.29.7': + resolution: {integrity: sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==} + engines: {node: '>=6.9.0'} '@babel/helper-create-class-features-plugin@7.25.4': resolution: {integrity: sha512-ro/bFs3/84MDgDmMwbcHgDa8/E6J3QKNTk4xJJnVeFtGE+tL0K26E3pNxhYz2b67fJpt7Aphw5XcploKXuCvCQ==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '>=7.29.6' + '@babel/core': ^7.0.0 - '@babel/helper-globals@8.0.0': - resolution: {integrity: sha512-lLozHOM6sWWlxNo8CYqHy4MBZeTvHXNgVPBfPOGsjPKUzHC2Az9QwB6gxdQmpwHl6GlQtbGgS+lj5887guDiLw==} - engines: {node: ^22.18.0 || >=24.11.0} + '@babel/helper-globals@7.29.7': + resolution: {integrity: sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==} + engines: {node: '>=6.9.0'} '@babel/helper-member-expression-to-functions@7.24.8': resolution: {integrity: sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==} @@ -364,6 +355,16 @@ packages: resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==} engines: {node: '>=6.9.0'} + '@babel/helper-module-imports@7.29.7': + resolution: {integrity: sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-transforms@7.29.7': + resolution: {integrity: sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/helper-optimise-call-expression@7.24.7': resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==} engines: {node: '>=6.9.0'} @@ -376,7 +377,7 @@ packages: resolution: {integrity: sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '>=7.29.6' + '@babel/core': ^7.0.0 '@babel/helper-skip-transparent-expression-wrappers@7.24.7': resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==} @@ -390,10 +391,6 @@ packages: resolution: {integrity: sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==} engines: {node: '>=6.9.0'} - '@babel/helper-string-parser@8.0.0': - resolution: {integrity: sha512-6mJgmFFFIIO82vvoLt9XtRC7/TkzXfts1t/SpRX4IHSzMgqoPYCWesVu1udUPUWioAE/2fcG6WuI8zrkE1gwrg==} - engines: {node: ^22.18.0 || >=24.11.0} - '@babel/helper-validator-identifier@7.28.5': resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==} engines: {node: '>=6.9.0'} @@ -402,17 +399,13 @@ packages: resolution: {integrity: sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==} engines: {node: '>=6.9.0'} - '@babel/helper-validator-identifier@8.0.2': - resolution: {integrity: sha512-9Fr9QeyCAyi1BR1jKZ6uYQ24EIhQUx5ReHfQU7drOE+TPOb+w11/dsqLkMOT2U29OdCT71XajrOT8xDc1C7orA==} - engines: {node: ^22.18.0 || >=24.11.0} - - '@babel/helper-validator-option@8.0.0': - resolution: {integrity: sha512-U4Dybxh4WESWHt5XhBeExi4DrY0/DNK1aHpQbsrQXCUbFHuMweT0TpLEWKvaraV2Y6fS+ZXunsZ8zIuZIgvF2Q==} - engines: {node: ^22.18.0 || >=24.11.0} + '@babel/helper-validator-option@7.29.7': + resolution: {integrity: sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==} + engines: {node: '>=6.9.0'} - '@babel/helpers@8.0.0': - resolution: {integrity: sha512-wfbi91pM3py96oIiJEz7qIpyXDytgr9zQC1HEWwlGNVRAEmItuU/0a41ZUKu1sJGyhhOIpc4t5vk4PYzt8wpsg==} - engines: {node: ^22.18.0 || >=24.11.0} + '@babel/helpers@7.29.7': + resolution: {integrity: sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==} + engines: {node: '>=6.9.0'} '@babel/parser@7.29.2': resolution: {integrity: sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==} @@ -424,67 +417,62 @@ packages: engines: {node: '>=6.0.0'} hasBin: true - '@babel/parser@8.0.0': - resolution: {integrity: sha512-aLxAE+imI9bCcyaPrUDjBv3uSkWieifjLe0kuFOZF0zli0L6GCsTmsePnTr55adbIAgYz2zhN1vnFimCBUYcRQ==} - engines: {node: ^22.18.0 || >=24.11.0} - hasBin: true - '@babel/plugin-proposal-decorators@7.24.7': resolution: {integrity: sha512-RL9GR0pUG5Kc8BUWLNDm2T5OpYwSX15r98I0IkgmRQTXuELq/OynH8xtMTMvTJFjXbMWFVTKtYkTaYQsuAwQlQ==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '>=7.29.6' + '@babel/core': ^7.0.0-0 '@babel/plugin-syntax-decorators@7.24.7': resolution: {integrity: sha512-Ui4uLJJrRV1lb38zg1yYTmRKmiZLiftDEvZN2iq3kd9kUFU+PttmzTbAFC2ucRk/XJmtek6G23gPsuZbhrT8fQ==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '>=7.29.6' + '@babel/core': ^7.0.0-0 '@babel/plugin-syntax-import-attributes@7.25.6': resolution: {integrity: sha512-sXaDXaJN9SNLymBdlWFA+bjzBhFD617ZaFiY13dGt7TVslVvVgA6fkZOP7Ki3IGElC45lwHdOTrCtKZGVAWeLQ==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '>=7.29.6' + '@babel/core': ^7.0.0-0 '@babel/plugin-syntax-import-meta@7.10.4': resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: - '@babel/core': '>=7.29.6' + '@babel/core': ^7.0.0-0 '@babel/plugin-syntax-jsx@7.24.7': resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '>=7.29.6' + '@babel/core': ^7.0.0-0 '@babel/plugin-syntax-typescript@7.25.4': resolution: {integrity: sha512-uMOCoHVU52BsSWxPOMVv5qKRdeSlPuImUCB2dlPuBSU+W2/ROE7/Zg8F2Kepbk+8yBa68LlRKxO+xgEVWorsDg==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '>=7.29.6' + '@babel/core': ^7.0.0-0 '@babel/plugin-transform-typescript@7.25.2': resolution: {integrity: sha512-lBwRvjSmqiMYe/pS0+1gggjJleUJi7NzjvQ1Fkqtt69hBa/0t1YuW/MLQMAPixfwaQOHUXsd6jeU3Z+vdGv3+A==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '>=7.29.6' + '@babel/core': ^7.0.0-0 '@babel/template@7.28.6': resolution: {integrity: sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==} engines: {node: '>=6.9.0'} - '@babel/template@8.0.0': - resolution: {integrity: sha512-eAD0QW/AlbamBbw0FeGiwasbCVPq5ncW0HNVyLP3B9czqLyh4gvw+5JTSNt6le9+ziAU7mqDZsKTHf3jTb4chQ==} - engines: {node: ^22.18.0 || >=24.11.0} + '@babel/template@7.29.7': + resolution: {integrity: sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==} + engines: {node: '>=6.9.0'} '@babel/traverse@7.25.6': resolution: {integrity: sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ==} engines: {node: '>=6.9.0'} - '@babel/traverse@8.0.0': - resolution: {integrity: sha512-bxTj/W2VclGE6CctlfQOpxg8MPDzXArRqkOBePw8EHfebcjF7fETWSS3BriEECo+UiU/Yblq+xUtSImFu7cTbw==} - engines: {node: ^22.18.0 || >=24.11.0} + '@babel/traverse@7.29.7': + resolution: {integrity: sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw==} + engines: {node: '>=6.9.0'} '@babel/types@7.29.0': resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==} @@ -494,10 +482,6 @@ packages: resolution: {integrity: sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==} engines: {node: '>=6.9.0'} - '@babel/types@8.0.0': - resolution: {integrity: sha512-K8ponJDxBwDHigkeFqaqT5wLGl4bTlwMafR8k7b5CPxr6Ww+UG9ls8Yx6Tcpboxu97eeGVEEyKcHmEyOwN1vSw==} - engines: {node: ^22.18.0 || >=24.11.0} - '@bcoe/v8-coverage@1.0.1': resolution: {integrity: sha512-W+a0/JpU28AqH4IKtwUPcEUnUyXMDLALcn5/JLczGGT9fHE2sIby/xP/oQnx3nxkForzgzPy201RAKcB4xPAFQ==} engines: {node: '>=18'} @@ -937,6 +921,9 @@ packages: resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} engines: {node: '>=6.0.0'} + '@jridgewell/remapping@2.3.5': + resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==} + '@jridgewell/resolve-uri@3.1.2': resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} engines: {node: '>=6.0.0'} @@ -1199,7 +1186,7 @@ packages: resolution: {integrity: sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==} engines: {node: '>=14.0.0'} peerDependencies: - rollup: '>=4.62.2' + rollup: '>=4.60.4' peerDependenciesMeta: rollup: optional: true @@ -1208,7 +1195,7 @@ packages: resolution: {integrity: sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==} engines: {node: '>=14.0.0'} peerDependencies: - rollup: '>=4.62.2' + rollup: '>=4.60.4' peerDependenciesMeta: rollup: optional: true @@ -1427,9 +1414,6 @@ packages: resolution: {integrity: sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==} engines: {node: '>=18'} - '@standard-schema/spec@1.1.0': - resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==} - '@stoplight/better-ajv-errors@1.0.3': resolution: {integrity: sha512-0p9uXkuB22qGdNfy3VeEhxkU5uwvp/KrBTAbrLBURv6ilxIVwanKwjMc41lQfIVgPGcOkmLbTolfFrSsueu7zA==} engines: {node: ^12.20 || >= 14.13} @@ -1563,9 +1547,6 @@ packages: '@types/estree@1.0.9': resolution: {integrity: sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==} - '@types/gensync@1.0.5': - resolution: {integrity: sha512-MbsRCT7mTikHwKZ0X+LVUTLRrZZRLipTuXEO9qOYO+zmjMVk81axyClMROf6uoPD9MRVu46bx8zoR0Ad9q3NAg==} - '@types/hast@3.0.4': resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} @@ -1575,9 +1556,6 @@ packages: '@types/jsdom@28.0.3': resolution: {integrity: sha512-/HQ2uFoetFTXuye8vzIcHw2z6Fwi7Hi/qcgC+RoS9NCyewiqxhVGqlG+ViGB6lkax481R6dmhf1I7lIGlzJStQ==} - '@types/jsesc@2.5.1': - resolution: {integrity: sha512-9VN+6yxLOPLOav+7PwjZbxiID2bVaeq0ED4qSQmdQTdjnXJSaCVKTR58t15oqH1H5t8Ng2ZX1SabJVoN9Q34bw==} - '@types/json-schema@7.0.11': resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==} @@ -1693,17 +1671,17 @@ packages: resolution: {integrity: sha512-km+p+XdSz9Sxm5rqUbqcSfZYaAniKxWBj1KURl+Jr7UaPvvX7BmaWMdP69I5rrFDeQGyxAG7NXdc57vz+snhWg==} engines: {node: ^20.19.0 || >=22.12.0} peerDependencies: - vite: '>=7.3.5' + vite: '>=7.3.3' vue: ^3.2.25 - '@vitest/expect@4.1.9': - resolution: {integrity: sha512-vl/rYsUKcBr3SnQn166+XR5ZQcgMx3DQhFWdfli/cWpLnLUmbxZvyrJZotLFUryib+LtArYMSTJ5RbQ57ZqrlA==} + '@vitest/expect@3.2.4': + resolution: {integrity: sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==} - '@vitest/mocker@4.1.9': - resolution: {integrity: sha512-EVkXzBjrPGM+cK8/ANWgBrkUCfJfb38/EfTSO8h7pWvKkyPkpWxvR7BkD2MyItMF62C97zAEoqdpUixwR/e+Rw==} + '@vitest/mocker@3.2.4': + resolution: {integrity: sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==} peerDependencies: msw: ^2.4.9 - vite: '>=7.3.5' + vite: '>=7.3.3' peerDependenciesMeta: msw: optional: true @@ -1713,29 +1691,23 @@ packages: '@vitest/pretty-format@3.2.4': resolution: {integrity: sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==} - '@vitest/pretty-format@4.1.9': - resolution: {integrity: sha512-s0iufns3iIFitdgm+YR7g1whCAaGtXz459VS9/PqyKDEEFgYIhsHOQmXgIgDuYCt7DeQmiZT0Qe2OA2p4ZPu5A==} + '@vitest/runner@3.2.4': + resolution: {integrity: sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ==} - '@vitest/runner@4.1.9': - resolution: {integrity: sha512-KXLMDtc7oe70+3mJfGrPUWPesswH+3sTxAMAMl8DG7I8IUQT4XW718dY5ID3vPUcmlu27CcKfY4P3h3I29SLJg==} + '@vitest/snapshot@3.2.4': + resolution: {integrity: sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ==} - '@vitest/snapshot@4.1.9': - resolution: {integrity: sha512-Jc7RKGNBo8Z28WYIm0Niej4xdSPByRf6mU58VpHQkd6Zh05rlnA+twjbK5HyeIGHxrzsc3mJgS43uM0CZKzaIA==} - - '@vitest/spy@4.1.9': - resolution: {integrity: sha512-fHpsS6mIi+PiEW+vcRVOMkX1oSaPKne3VOclSFICPcGOmfKgXPU5iAah+wcNcj2xPrCCmfq99IDGf+EojhhvhA==} + '@vitest/spy@3.2.4': + resolution: {integrity: sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==} '@vitest/ui@3.2.4': resolution: {integrity: sha512-hGISOaP18plkzbWEcP/QvtRW1xDXF2+96HbEX6byqQhAUbiS5oH6/9JwW+QsQCIYON2bI6QZBF+2PvOmrRZ9wA==} peerDependencies: - vitest: '>=3.2.6' + vitest: 3.2.4 '@vitest/utils@3.2.4': resolution: {integrity: sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==} - '@vitest/utils@4.1.9': - resolution: {integrity: sha512-A51o8ymO5PpqlWNnBP9ZHPXDIpuMtTLlGSjN7la4US+LJzoUMyhwjA5QXlm39JexgwHKW4Xjs8Z2d3dLCXOeuA==} - '@volar/language-core@2.4.28': resolution: {integrity: sha512-w4qhIJ8ZSitgLAkVay6AbcnC7gP3glYM3fYwKV3srj8m494E3xtrCv6E+bWviiK/8hs6e6t1ij1s2Endql7vzQ==} @@ -1751,7 +1723,7 @@ packages: '@vue/babel-plugin-jsx@1.2.5': resolution: {integrity: sha512-zTrNmOd4939H9KsRIGmmzn3q2zvv1mjxkYZHgqHZgDrXz5B1Q3WyGEjO2f+JrmKghvl1JIRcvo63LgM1kH5zFg==} peerDependencies: - '@babel/core': '>=7.29.6' + '@babel/core': ^7.0.0-0 peerDependenciesMeta: '@babel/core': optional: true @@ -1759,7 +1731,7 @@ packages: '@vue/babel-plugin-resolve-type@1.2.5': resolution: {integrity: sha512-U/ibkQrf5sx0XXRnUZD1mo5F7PkpKyTbfXM3a3rC4YnUz6crHEz9Jg09jzzL6QYlXNto/9CePdOg/c87O4Nlfg==} peerDependencies: - '@babel/core': '>=7.29.6' + '@babel/core': ^7.0.0-0 '@vue/compiler-core@3.5.32': resolution: {integrity: sha512-4x74Tbtqnda8s/NSD6e1Dr5p1c8HdMU5RWSjMSUzb8RTcUQqevDCxVAitcLBKT+ie3o0Dl9crc/S/opJM7qBGQ==} @@ -2008,6 +1980,10 @@ packages: assert@2.1.0: resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==} + assertion-error@2.0.1: + resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} + engines: {node: '>=12'} + astral-regex@2.0.0: resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} engines: {node: '>=8'} @@ -2143,6 +2119,10 @@ packages: monocart-coverage-reports: optional: true + cac@6.7.14: + resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} + engines: {node: '>=8'} + cacheable@2.3.4: resolution: {integrity: sha512-djgxybDbw9fL/ZWMI3+CE8ZilNxcwFkVtDc1gJ+IlOSSWkSMPQabhV/XCHTQ6pwwN6aivXPZ43omTooZiX06Ew==} @@ -2176,8 +2156,8 @@ packages: ccount@2.0.1: resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} - chai@6.2.2: - resolution: {integrity: sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==} + chai@5.3.3: + resolution: {integrity: sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==} engines: {node: '>=18'} chalk@2.4.2: @@ -2209,6 +2189,10 @@ packages: resolution: {integrity: sha512-6dVyOOYjpfFcL1Y4qChrAoQLRHvj2ziyhcm0QJlhOcAhykL/k1kTUPbeo+87MNRTRdk2OIIsIXbuF3x2wi5EXg==} engines: {node: '>=4.0.0'} + check-error@2.1.3: + resolution: {integrity: sha512-PAJdDJusoxnwm1VwW07VWwUN1sl7smmC3OKggvndJFadxxDRyFJBX/ggnu/KE4kQAB7a3Dp8f/YXC1FlUprWmA==} + engines: {node: '>= 16'} + chokidar@3.6.0: resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} engines: {node: '>= 8.10.0'} @@ -2497,6 +2481,10 @@ packages: dedent@0.7.0: resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} + deep-eql@5.0.2: + resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==} + engines: {node: '>=6'} + deep-extend@0.6.0: resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} engines: {node: '>=4.0.0'} @@ -2635,10 +2623,6 @@ packages: emojilib@2.4.0: resolution: {integrity: sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==} - empathic@2.0.1: - resolution: {integrity: sha512-YGRs8knHhKHVShLkFET/rWAU8kmHbOV5LwN938RHI0pljAJ1Gf6SzXsSmRaEzcXTtOOmVqJ5+WtQPL5uigY50Q==} - engines: {node: '>=14'} - enhanced-resolve@5.24.0: resolution: {integrity: sha512-SkE2t82KlkkxQRVMVLAGKxLfORGQfrkx5dkj+vlgXRVNEdPc4eZcR+J/Fvj8C+yKSFH5L0q3NFlyufOVQnCcYQ==} engines: {node: '>=10.13.0'} @@ -2693,8 +2677,8 @@ packages: resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} engines: {node: '>= 0.4'} - es-module-lexer@2.3.0: - resolution: {integrity: sha512-KLdwQm2NvGLDkQDCGvmiQrhkd0JbMzXthwQAUgWjQuQdBLFa3eiBP5arXZyA+f8x+x7OXgud6bq2rxjGtHV2tw==} + es-module-lexer@1.7.0: + resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==} es-object-atoms@1.1.1: resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} @@ -2912,8 +2896,8 @@ packages: fast-memoize@2.5.2: resolution: {integrity: sha512-Ue0LwpDYErFbmNnZSF0UH6eImUwDmogUO1jyE+JbN2gsQz/jICm1Ve7t9QT0rNSsfJt+Hs4/S3GnsDVjL4HVrw==} - fast-uri@4.1.0: - resolution: {integrity: sha512-ZodJ2cRiLVWGi9IgPb3mbgSqM4CD3LexCHkuv0FfBXHJI1ADfucTD06m6clO2Cy5RZYsw/SiCVl/dyrFI/SYWA==} + fast-uri@3.1.3: + resolution: {integrity: sha512-i70LwGWUduXqzicKXWshooq+sWL1K3WUU5rKZNG/0i3a1OSoX3HqhH5WbWwTmqWfor4urUakGPiRQcleRZTwOg==} fastest-levenshtein@1.0.16: resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} @@ -2925,7 +2909,7 @@ packages: fdir@6.4.5: resolution: {integrity: sha512-4BG7puHpVsIYxZUbiUE3RqGloLaSSwzYie5jvasC4LWuBWzZawynvYouhjbQKw2JuIGYdm0DzIxl8iVidKlUEw==} peerDependencies: - picomatch: ^3 || ^4 + picomatch: '>=4.0.4' peerDependenciesMeta: picomatch: optional: true @@ -2934,7 +2918,7 @@ packages: resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} engines: {node: '>=12.0.0'} peerDependencies: - picomatch: ^3 || ^4 + picomatch: '>=4.0.4' peerDependenciesMeta: picomatch: optional: true @@ -3020,8 +3004,8 @@ packages: resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} engines: {node: '>=14'} - form-data@4.0.6: - resolution: {integrity: sha512-vKatAh4SlVfgbv+YtmhiRjhEMJsYpsG1Y2rMQtR+SVSbytsSD1YGzDIcrAJmdFec88u/+VoGmxnl+80gL1tRCQ==} + form-data@4.0.4: + resolution: {integrity: sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==} engines: {node: '>= 6'} form-urlencoded@6.1.6: @@ -3260,10 +3244,6 @@ packages: resolution: {integrity: sha512-iZyKG96/JwPz1N55vj2Ie2vXbhu440zfUfJvSwEqEbeLluk7NnapfGqa7LH0mOsnDxTF85Mx8/dyR6HfqcbmbQ==} engines: {node: '>=20'} - hasown@2.0.2: - resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} - engines: {node: '>= 0.4'} - hasown@2.0.4: resolution: {integrity: sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==} engines: {node: '>= 0.4'} @@ -3672,15 +3652,16 @@ packages: js-cookie@3.0.8: resolution: {integrity: sha512-yeJd4aNAdYZQjaon2bpD/Gb0B/omw7HQOsynXXcOiWVCacbBcPlgn8S/d1X6blFSaHao7ozqtW7NZW19xpCtIw==} - js-tokens@10.0.0: - resolution: {integrity: sha512-lM/UBzQmfJRo9ABXbPWemivdCW8V2G8FHaHdypQaIy523snUjog0W71ayWXTjiR+ixeMyVHN2XcpnTd/liPg/Q==} - js-tokens@4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} js-tokens@9.0.1: resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==} + js-yaml@4.3.0: + resolution: {integrity: sha512-1td788aAnnZ5qs7V2QIRl1owjtYpbKt749Y3xauqQgwIIGF/xXWz1wMTEBx5O3LK3lXLVuqXPdPxj2BoFHaW9Q==} + hasBin: true + js-yaml@5.2.1: resolution: {integrity: sha512-zfLtNfQqxVqq3uaTqSkh4x4hZw3KHobGUA0fJUj4wawW8bsQLTVqpHdXSIzidh7o+4lEW36tANuAGdaFx6Zgnw==} hasBin: true @@ -3890,6 +3871,9 @@ packages: resolution: {integrity: sha512-RPimw/7aMdv2oqRrxKwvZXcPfwBrn/JZ2xYcY9Hus/6LaS3VOAKVWKWgNLCFSiOm1ESXinjsDlidVU7JlnCN2A==} engines: {node: 20 || >=22} + lru-cache@5.1.1: + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + magic-string@0.30.21: resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==} @@ -4234,10 +4218,6 @@ packages: resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} engines: {node: '>= 0.4'} - obug@2.1.3: - resolution: {integrity: sha512-9miFgM2OFba7hB+pRgvtV84pYTBaoTHohvmIgiRt6dRIzbwEOIaNaP+dIlGs2fNFoB0SeISs0Jz5WFVRid6Xyg==} - engines: {node: '>=12.20.0'} - ohash@2.0.11: resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==} @@ -4266,8 +4246,8 @@ packages: resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} engines: {node: '>=12'} - openapi3-ts@4.6.0: - resolution: {integrity: sha512-a4sfn6L2sIShhtzJqmjGrARvxAW/3F2BJDdyRVvNF9VhAsZSh5hSyI3a9TNvmzBxXmq66nY5LNT5bQcBxYAZZg==} + openapi3-ts@4.5.0: + resolution: {integrity: sha512-jaL+HgTq2Gj5jRcfdutgRGLosCy/hT8sQf6VOy+P+g36cZOjI1iukdPnijC+4CmeRzg/jEllJUboEic2FhxhtQ==} optionator@0.9.4: resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} @@ -4425,6 +4405,10 @@ packages: pathe@2.0.3: resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} + pathval@2.0.1: + resolution: {integrity: sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==} + engines: {node: '>= 14.16'} + pause-stream@0.0.11: resolution: {integrity: sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==} @@ -4696,7 +4680,7 @@ packages: hasBin: true peerDependencies: rolldown: 1.x || ^1.0.0-beta - rollup: '>=4.62.2' + rollup: '>=4.60.4' peerDependenciesMeta: rolldown: optional: true @@ -5040,8 +5024,8 @@ packages: stackback@0.0.2: resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} - std-env@4.1.0: - resolution: {integrity: sha512-Rq7ybcX2RuC55r9oaPVEW7/xu3tj8u4GeBYHBWCychFtzMIr86A7e3PPEBPT37sHStKX3+TiX/Fr/ACmJLVlLQ==} + std-env@3.10.0: + resolution: {integrity: sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==} stream-browserify@3.0.0: resolution: {integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==} @@ -5131,6 +5115,9 @@ packages: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} engines: {node: '>=8'} + strip-literal@3.1.0: + resolution: {integrity: sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==} + style-search@0.1.0: resolution: {integrity: sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==} @@ -5289,13 +5276,12 @@ packages: tinybench@2.9.0: resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} + tinyexec@0.3.2: + resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} + tinyexec@1.0.1: resolution: {integrity: sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==} - tinyexec@1.2.4: - resolution: {integrity: sha512-SHf/r48b7vOrjve9PxJo3MN5v5yuyjHvdUcrQffT3WXMUfnGmHDVbC4k3sHJaJTgZCwpUplIaAo5ANtMyp3YHg==} - engines: {node: '>=18'} - tinyglobby@0.2.14: resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==} engines: {node: '>=12.0.0'} @@ -5308,12 +5294,16 @@ packages: resolution: {integrity: sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==} engines: {node: '>=12.0.0'} + tinypool@1.1.1: + resolution: {integrity: sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==} + engines: {node: ^18.0.0 || >=20.0.0} + tinyrainbow@2.0.0: resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==} engines: {node: '>=14.0.0'} - tinyrainbow@3.1.0: - resolution: {integrity: sha512-Bf+ILmBgretUrdJxzXM0SgXLZ3XfiaUuOj/IKQHuTXip+05Xn+uyEYdVg0kYDipTBcLrCVyUzAPz7QmArb0mmw==} + tinyspy@4.0.4: + resolution: {integrity: sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q==} engines: {node: '>=14.0.0'} tldts-core@7.0.17: @@ -5561,8 +5551,9 @@ packages: resolution: {integrity: sha512-6Z7Ma2aVEWisaL6TvBCy7P8rm2LQoPv6dJ7ecIaIixHcwfbJ0x7mWdbcwlIM5IGQxPZSFYeqRCqlOOeKoJYMkw==} engines: {node: '>= 4'} - uuid@14.0.1: - resolution: {integrity: sha512-6ZxzVpzDXDa3bJWaHilVayA+BH/1zmxCJoVgvmqJnid/gPoKHxUrS/aC/T6LGQtNHT+XHG9fXPJB4d+IrU30Ew==} + uuid@8.3.2: + resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} + deprecated: uuid@10 and below is no longer supported. For ESM codebases, update to uuid@latest. For CommonJS codebases, use uuid@11 (but be aware this version will likely be deprecated in 2028). hasBin: true v8-compile-cache-lib@3.0.1: @@ -5587,19 +5578,24 @@ packages: vite-dev-rpc@1.1.0: resolution: {integrity: sha512-pKXZlgoXGoE8sEKiKJSng4hI1sQ4wi5YT24FCrwrLt6opmkjlqPPVmiPWWJn8M8byMxRGzp1CrFuqQs4M/Z39A==} peerDependencies: - vite: '>=7.3.5' + vite: '>=7.3.3' vite-hot-client@2.1.0: resolution: {integrity: sha512-7SpgZmU7R+dDnSmvXE1mfDtnHLHQSisdySVR7lO8ceAXvM0otZeuQQ6C8LrS5d/aYyP/QZ0hI0L+dIPrm4YlFQ==} peerDependencies: - vite: '>=7.3.5' + vite: '>=7.3.3' + + vite-node@3.2.4: + resolution: {integrity: sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==} + engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} + hasBin: true vite-plugin-inspect@11.3.3: resolution: {integrity: sha512-u2eV5La99oHoYPHE6UvbwgEqKKOQGz86wMg40CCosP6q8BkB6e5xPneZfYagK4ojPJSj5anHCrnvC20DpwVdRA==} engines: {node: '>=14'} peerDependencies: '@nuxt/kit': '*' - vite: '>=7.3.5' + vite: '>=7.3.3' peerDependenciesMeta: '@nuxt/kit': optional: true @@ -5607,7 +5603,7 @@ packages: vite-plugin-node-polyfills@0.26.0: resolution: {integrity: sha512-BAe5YzJf368XGev02hDvioidx4uVH8dqEJlG73bjQSxM26/AQnGcKFomq9n3vGq5yqpSHKN4h1XQNxx9l98mBg==} peerDependencies: - vite: '>=7.3.5' + vite: '>=7.3.3' vite-plugin-replace@0.1.1: resolution: {integrity: sha512-v+okl3JNt2pf1jDYijw+WPVt6h9FWa/atTi+qnSFBqmKThLTDhlesx0r3bh+oFPmxRJmis5tNx9HtN6lGFoqWg==} @@ -5618,12 +5614,12 @@ packages: resolution: {integrity: sha512-gt5h1CNryR9Hy0tvhSbqY3j0F7aj0pGxBxWLa1lXSiZVkhdWDf0vbCOZyjh8ivFGE6FDHTGy3zkcZGlMZdVHig==} engines: {node: '>=v14.21.3'} peerDependencies: - vite: '>=7.3.5' + vite: '>=7.3.3' vite-plugin-vue-inspector@6.0.0: resolution: {integrity: sha512-OpyITJLgZNibxlrik1EmRtvXHDjLRxNPsWkGFTERZs2LgMEdG4W0WoFt5GIgp3a3jRou+eJR8U1zOBk/XQgEbw==} peerDependencies: - vite: '>=7.3.5' + vite: '>=7.3.3' vite@7.3.6: resolution: {integrity: sha512-4XP60spRGjSZFf1qYH+dJIkK2znL3zQfl9KkOV9MkkRR/3Dls0dxaBsQPTloEc5BLXWPL9vsOxopxyKoMmDueg==} @@ -5640,7 +5636,7 @@ packages: sugarss: ^5.0.0 terser: ^5.16.0 tsx: ^4.8.1 - yaml: '>=2.9.0' + yaml: '>=2.8.4' peerDependenciesMeta: '@types/node': optional: true @@ -5665,39 +5661,26 @@ packages: yaml: optional: true - vitest@4.1.9: - resolution: {integrity: sha512-nE3/LEyc0z87uHYLZebqCUOaJr2hdtuPp7BQ4BosVFnfltxgAvMG08NyrSGlPpOUWvR27c5flSmYFTNr78L9GQ==} - engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0} + vitest@3.2.4: + resolution: {integrity: sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A==} + engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} hasBin: true peerDependencies: '@edge-runtime/vm': '*' - '@opentelemetry/api': ^1.9.0 - '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0 - '@vitest/browser-playwright': 4.1.9 - '@vitest/browser-preview': 4.1.9 - '@vitest/browser-webdriverio': 4.1.9 - '@vitest/coverage-istanbul': 4.1.9 - '@vitest/coverage-v8': 4.1.9 - '@vitest/ui': 4.1.9 + '@types/debug': ^4.1.12 + '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 + '@vitest/browser': 3.2.4 + '@vitest/ui': 3.2.4 happy-dom: '*' jsdom: '*' - vite: '>=7.3.5' peerDependenciesMeta: '@edge-runtime/vm': optional: true - '@opentelemetry/api': + '@types/debug': optional: true '@types/node': optional: true - '@vitest/browser-playwright': - optional: true - '@vitest/browser-preview': - optional: true - '@vitest/browser-webdriverio': - optional: true - '@vitest/coverage-istanbul': - optional: true - '@vitest/coverage-v8': + '@vitest/browser': optional: true '@vitest/ui': optional: true @@ -5850,6 +5833,9 @@ packages: resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} engines: {node: '>=10'} + yallist@3.1.1: + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + yaml@2.9.0: resolution: {integrity: sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==} engines: {node: '>= 14.6'} @@ -5977,7 +5963,7 @@ snapshots: ajv-errors: 3.0.0(ajv@8.18.0) ajv-formats: 2.1.1 avsc: 5.7.7 - js-yaml: 5.2.1 + js-yaml: 4.3.0 jsonpath-plus: 10.4.0 node-fetch: 2.6.7 transitivePeerDependencies: @@ -5993,79 +5979,80 @@ snapshots: js-tokens: 4.0.0 picocolors: 1.1.1 - '@babel/code-frame@8.0.0': + '@babel/code-frame@7.29.7': dependencies: - '@babel/helper-validator-identifier': 8.0.2 - js-tokens: 10.0.0 + '@babel/helper-validator-identifier': 7.29.7 + js-tokens: 4.0.0 + picocolors: 1.1.1 - '@babel/compat-data@8.0.0': {} + '@babel/compat-data@7.29.7': {} - '@babel/core@8.0.1': + '@babel/core@7.29.7': dependencies: - '@babel/code-frame': 8.0.0 - '@babel/generator': 8.0.0 - '@babel/helper-compilation-targets': 8.0.0 - '@babel/helpers': 8.0.0 - '@babel/parser': 8.0.0 - '@babel/template': 8.0.0 - '@babel/traverse': 8.0.0 - '@babel/types': 8.0.0 - '@types/gensync': 1.0.5 + '@babel/code-frame': 7.29.7 + '@babel/generator': 7.29.7 + '@babel/helper-compilation-targets': 7.29.7 + '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.7) + '@babel/helpers': 7.29.7 + '@babel/parser': 7.29.7 + '@babel/template': 7.29.7 + '@babel/traverse': 7.29.7 + '@babel/types': 7.29.7 + '@jridgewell/remapping': 2.3.5 convert-source-map: 2.0.0 - empathic: 2.0.1 + debug: 4.4.3 gensync: 1.0.0-beta.2 - import-meta-resolve: 4.2.0 json5: 2.2.3 - obug: 2.1.3 - semver: 7.8.5 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color '@babel/generator@7.25.6': dependencies: - '@babel/types': 7.29.0 + '@babel/types': 7.29.7 '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 jsesc: 2.5.2 - '@babel/generator@8.0.0': + '@babel/generator@7.29.7': dependencies: - '@babel/parser': 8.0.0 - '@babel/types': 8.0.0 + '@babel/parser': 7.29.7 + '@babel/types': 7.29.7 '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 - '@types/jsesc': 2.5.1 jsesc: 3.1.0 '@babel/helper-annotate-as-pure@7.24.7': dependencies: '@babel/types': 7.29.0 - '@babel/helper-compilation-targets@8.0.0': + '@babel/helper-compilation-targets@7.29.7': dependencies: - '@babel/compat-data': 8.0.0 - '@babel/helper-validator-option': 8.0.0 + '@babel/compat-data': 7.29.7 + '@babel/helper-validator-option': 7.29.7 browserslist: 4.28.2 - lru-cache: 11.2.4 - semver: 7.8.5 + lru-cache: 5.1.1 + semver: 6.3.1 - '@babel/helper-create-class-features-plugin@7.25.4(@babel/core@8.0.1)': + '@babel/helper-create-class-features-plugin@7.25.4(@babel/core@7.29.7)': dependencies: - '@babel/core': 8.0.1 + '@babel/core': 7.29.7 '@babel/helper-annotate-as-pure': 7.24.7 '@babel/helper-member-expression-to-functions': 7.24.8 '@babel/helper-optimise-call-expression': 7.24.7 - '@babel/helper-replace-supers': 7.25.0(@babel/core@8.0.1) + '@babel/helper-replace-supers': 7.25.0(@babel/core@7.29.7) '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 '@babel/traverse': 7.25.6 semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/helper-globals@8.0.0': {} + '@babel/helper-globals@7.29.7': {} '@babel/helper-member-expression-to-functions@7.24.8': dependencies: '@babel/traverse': 7.25.6 - '@babel/types': 7.29.0 + '@babel/types': 7.29.7 transitivePeerDependencies: - supports-color @@ -6076,15 +6063,31 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/helper-module-imports@7.29.7': + dependencies: + '@babel/traverse': 7.29.7 + '@babel/types': 7.29.7 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-transforms@7.29.7(@babel/core@7.29.7)': + dependencies: + '@babel/core': 7.29.7 + '@babel/helper-module-imports': 7.29.7 + '@babel/helper-validator-identifier': 7.29.7 + '@babel/traverse': 7.29.7 + transitivePeerDependencies: + - supports-color + '@babel/helper-optimise-call-expression@7.24.7': dependencies: - '@babel/types': 7.29.0 + '@babel/types': 7.29.7 '@babel/helper-plugin-utils@7.24.8': {} - '@babel/helper-replace-supers@7.25.0(@babel/core@8.0.1)': + '@babel/helper-replace-supers@7.25.0(@babel/core@7.29.7)': dependencies: - '@babel/core': 8.0.1 + '@babel/core': 7.29.7 '@babel/helper-member-expression-to-functions': 7.24.8 '@babel/helper-optimise-call-expression': 7.24.7 '@babel/traverse': 7.25.6 @@ -6102,75 +6105,67 @@ snapshots: '@babel/helper-string-parser@7.29.7': {} - '@babel/helper-string-parser@8.0.0': {} - '@babel/helper-validator-identifier@7.28.5': {} '@babel/helper-validator-identifier@7.29.7': {} - '@babel/helper-validator-identifier@8.0.2': {} + '@babel/helper-validator-option@7.29.7': {} - '@babel/helper-validator-option@8.0.0': {} - - '@babel/helpers@8.0.0': + '@babel/helpers@7.29.7': dependencies: - '@babel/template': 8.0.0 - '@babel/types': 8.0.0 + '@babel/template': 7.29.7 + '@babel/types': 7.29.7 '@babel/parser@7.29.2': dependencies: - '@babel/types': 7.29.0 + '@babel/types': 7.29.7 '@babel/parser@7.29.7': dependencies: '@babel/types': 7.29.7 - '@babel/parser@8.0.0': - dependencies: - '@babel/types': 8.0.0 - - '@babel/plugin-proposal-decorators@7.24.7(@babel/core@8.0.1)': + '@babel/plugin-proposal-decorators@7.24.7(@babel/core@7.29.7)': dependencies: - '@babel/core': 8.0.1 - '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@8.0.1) + '@babel/core': 7.29.7 + '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.29.7) '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-syntax-decorators': 7.24.7(@babel/core@8.0.1) + '@babel/plugin-syntax-decorators': 7.24.7(@babel/core@7.29.7) transitivePeerDependencies: - supports-color - '@babel/plugin-syntax-decorators@7.24.7(@babel/core@8.0.1)': + '@babel/plugin-syntax-decorators@7.24.7(@babel/core@7.29.7)': dependencies: - '@babel/core': 8.0.1 + '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-syntax-import-attributes@7.25.6(@babel/core@8.0.1)': + '@babel/plugin-syntax-import-attributes@7.25.6(@babel/core@7.29.7)': dependencies: - '@babel/core': 8.0.1 + '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@8.0.1)': + '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.29.7)': dependencies: - '@babel/core': 8.0.1 + '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-syntax-jsx@7.24.7(@babel/core@8.0.1)': + '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.29.7)': dependencies: - '@babel/core': 8.0.1 + '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-syntax-typescript@7.25.4(@babel/core@8.0.1)': + '@babel/plugin-syntax-typescript@7.25.4(@babel/core@7.29.7)': dependencies: - '@babel/core': 8.0.1 + '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-typescript@7.25.2(@babel/core@8.0.1)': + '@babel/plugin-transform-typescript@7.25.2(@babel/core@7.29.7)': dependencies: - '@babel/core': 8.0.1 + '@babel/core': 7.29.7 '@babel/helper-annotate-as-pure': 7.24.7 - '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@8.0.1) + '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.29.7) '@babel/helper-plugin-utils': 7.24.8 '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - '@babel/plugin-syntax-typescript': 7.25.4(@babel/core@8.0.1) + '@babel/plugin-syntax-typescript': 7.25.4(@babel/core@7.29.7) transitivePeerDependencies: - supports-color @@ -6180,11 +6175,11 @@ snapshots: '@babel/parser': 7.29.2 '@babel/types': 7.29.0 - '@babel/template@8.0.0': + '@babel/template@7.29.7': dependencies: - '@babel/code-frame': 8.0.0 - '@babel/parser': 8.0.0 - '@babel/types': 8.0.0 + '@babel/code-frame': 7.29.7 + '@babel/parser': 7.29.7 + '@babel/types': 7.29.7 '@babel/traverse@7.25.6': dependencies: @@ -6198,15 +6193,17 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/traverse@8.0.0': + '@babel/traverse@7.29.7': dependencies: - '@babel/code-frame': 8.0.0 - '@babel/generator': 8.0.0 - '@babel/helper-globals': 8.0.0 - '@babel/parser': 8.0.0 - '@babel/template': 8.0.0 - '@babel/types': 8.0.0 - obug: 2.1.3 + '@babel/code-frame': 7.29.7 + '@babel/generator': 7.29.7 + '@babel/helper-globals': 7.29.7 + '@babel/parser': 7.29.7 + '@babel/template': 7.29.7 + '@babel/types': 7.29.7 + debug: 4.4.3 + transitivePeerDependencies: + - supports-color '@babel/types@7.29.0': dependencies: @@ -6218,11 +6215,6 @@ snapshots: '@babel/helper-string-parser': 7.29.7 '@babel/helper-validator-identifier': 7.29.7 - '@babel/types@8.0.0': - dependencies: - '@babel/helper-string-parser': 8.0.0 - '@babel/helper-validator-identifier': 8.0.2 - '@bcoe/v8-coverage@1.0.1': {} '@bramus/specificity@2.4.2': @@ -6629,7 +6621,12 @@ snapshots: dependencies: '@jridgewell/set-array': 1.2.1 '@jridgewell/sourcemap-codec': 1.5.5 - '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/trace-mapping': 0.3.31 + + '@jridgewell/remapping@2.3.5': + dependencies: + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 '@jridgewell/resolve-uri@3.1.2': {} @@ -7095,8 +7092,6 @@ snapshots: '@sindresorhus/merge-streams@4.0.0': {} - '@standard-schema/spec@1.1.0': {} - '@stoplight/better-ajv-errors@1.0.3(ajv@8.18.0)': dependencies: ajv: 8.18.0 @@ -7113,7 +7108,7 @@ snapshots: '@types/type-is': 1.6.6 fnv-plus: 1.3.1 lodash: 4.18.1 - openapi3-ts: 4.6.0 + openapi3-ts: 4.5.0 postman-collection: 4.5.0 tslib: 2.8.1 type-is: 1.6.18 @@ -7335,8 +7330,6 @@ snapshots: '@types/estree@1.0.9': {} - '@types/gensync@1.0.5': {} - '@types/hast@3.0.4': dependencies: '@types/unist': 3.0.3 @@ -7350,8 +7343,6 @@ snapshots: parse5: 8.0.0 undici-types: 7.25.0 - '@types/jsesc@2.5.1': {} - '@types/json-schema@7.0.11': {} '@types/json-schema@7.0.15': {} @@ -7494,18 +7485,17 @@ snapshots: vite: 7.3.6(@types/node@24.13.2)(jiti@2.4.2)(sass-embedded@1.100.0)(sass@1.101.0)(yaml@2.9.0) vue: 3.5.35(typescript@5.9.3) - '@vitest/expect@4.1.9': + '@vitest/expect@3.2.4': dependencies: - '@standard-schema/spec': 1.1.0 '@types/chai': 5.2.2 - '@vitest/spy': 4.1.9 - '@vitest/utils': 4.1.9 - chai: 6.2.2 - tinyrainbow: 3.1.0 + '@vitest/spy': 3.2.4 + '@vitest/utils': 3.2.4 + chai: 5.3.3 + tinyrainbow: 2.0.0 - '@vitest/mocker@4.1.9(vite@7.3.6(@types/node@24.13.2)(jiti@2.4.2)(sass-embedded@1.100.0)(sass@1.101.0)(yaml@2.9.0))': + '@vitest/mocker@3.2.4(vite@7.3.6(@types/node@24.13.2)(jiti@2.4.2)(sass-embedded@1.100.0)(sass@1.101.0)(yaml@2.9.0))': dependencies: - '@vitest/spy': 4.1.9 + '@vitest/spy': 3.2.4 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: @@ -7515,25 +7505,23 @@ snapshots: dependencies: tinyrainbow: 2.0.0 - '@vitest/pretty-format@4.1.9': - dependencies: - tinyrainbow: 3.1.0 - - '@vitest/runner@4.1.9': + '@vitest/runner@3.2.4': dependencies: - '@vitest/utils': 4.1.9 + '@vitest/utils': 3.2.4 pathe: 2.0.3 + strip-literal: 3.1.0 - '@vitest/snapshot@4.1.9': + '@vitest/snapshot@3.2.4': dependencies: - '@vitest/pretty-format': 4.1.9 - '@vitest/utils': 4.1.9 + '@vitest/pretty-format': 3.2.4 magic-string: 0.30.21 pathe: 2.0.3 - '@vitest/spy@4.1.9': {} + '@vitest/spy@3.2.4': + dependencies: + tinyspy: 4.0.4 - '@vitest/ui@3.2.4(vitest@4.1.9)': + '@vitest/ui@3.2.4(vitest@3.2.4)': dependencies: '@vitest/utils': 3.2.4 fflate: 0.8.2 @@ -7542,7 +7530,7 @@ snapshots: sirv: 3.0.1 tinyglobby: 0.2.14 tinyrainbow: 2.0.0 - vitest: 4.1.9(@types/node@24.13.2)(@vitest/ui@3.2.4)(jsdom@29.1.1)(vite@7.3.6(@types/node@24.13.2)(jiti@2.4.2)(sass-embedded@1.100.0)(sass@1.101.0)(yaml@2.9.0)) + vitest: 3.2.4(@types/node@24.13.2)(@vitest/ui@3.2.4)(jiti@2.4.2)(jsdom@29.1.1)(sass-embedded@1.100.0)(sass@1.101.0)(yaml@2.9.0) '@vitest/utils@3.2.4': dependencies: @@ -7550,12 +7538,6 @@ snapshots: loupe: 3.1.4 tinyrainbow: 2.0.0 - '@vitest/utils@4.1.9': - dependencies: - '@vitest/pretty-format': 4.1.9 - convert-source-map: 2.0.0 - tinyrainbow: 3.1.0 - '@volar/language-core@2.4.28': dependencies: '@volar/source-map': 2.4.28 @@ -7570,27 +7552,27 @@ snapshots: '@vue/babel-helper-vue-transform-on@1.2.5': {} - '@vue/babel-plugin-jsx@1.2.5(@babel/core@8.0.1)': + '@vue/babel-plugin-jsx@1.2.5(@babel/core@7.29.7)': dependencies: '@babel/helper-module-imports': 7.24.7 '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@8.0.1) + '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.29.7) '@babel/template': 7.28.6 '@babel/traverse': 7.25.6 '@babel/types': 7.29.0 '@vue/babel-helper-vue-transform-on': 1.2.5 - '@vue/babel-plugin-resolve-type': 1.2.5(@babel/core@8.0.1) + '@vue/babel-plugin-resolve-type': 1.2.5(@babel/core@7.29.7) html-tags: 3.3.1 svg-tags: 1.0.0 optionalDependencies: - '@babel/core': 8.0.1 + '@babel/core': 7.29.7 transitivePeerDependencies: - supports-color - '@vue/babel-plugin-resolve-type@1.2.5(@babel/core@8.0.1)': + '@vue/babel-plugin-resolve-type@1.2.5(@babel/core@7.29.7)': dependencies: '@babel/code-frame': 7.29.0 - '@babel/core': 8.0.1 + '@babel/core': 7.29.7 '@babel/helper-module-imports': 7.24.7 '@babel/helper-plugin-utils': 7.24.8 '@babel/parser': 7.29.2 @@ -7626,7 +7608,7 @@ snapshots: '@vue/compiler-sfc@3.5.32': dependencies: - '@babel/parser': 7.29.2 + '@babel/parser': 7.29.7 '@vue/compiler-core': 3.5.32 '@vue/compiler-dom': 3.5.32 '@vue/compiler-ssr': 3.5.32 @@ -7801,7 +7783,7 @@ snapshots: ajv@8.18.0: dependencies: fast-deep-equal: 3.1.3 - fast-uri: 4.1.0 + fast-uri: 3.1.3 json-schema-traverse: 1.0.0 require-from-string: 2.0.2 @@ -7888,6 +7870,8 @@ snapshots: object.assign: 4.1.5 util: 0.12.5 + assertion-error@2.0.1: {} + astral-regex@2.0.0: {} astring@1.9.0: {} @@ -8045,6 +8029,8 @@ snapshots: yargs: 17.7.2 yargs-parser: 21.1.1 + cac@6.7.14: {} + cacheable@2.3.4: dependencies: '@cacheable/memory': 2.0.8 @@ -8080,7 +8066,13 @@ snapshots: ccount@2.0.1: {} - chai@6.2.2: {} + chai@5.3.3: + dependencies: + assertion-error: 2.0.1 + check-error: 2.1.3 + deep-eql: 5.0.2 + loupe: 3.1.4 + pathval: 2.0.1 chalk@2.4.2: dependencies: @@ -8105,6 +8097,8 @@ snapshots: charset@1.0.1: {} + check-error@2.1.3: {} + chokidar@3.6.0: dependencies: anymatch: 3.1.3 @@ -8438,6 +8432,8 @@ snapshots: dedent@0.7.0: {} + deep-eql@5.0.2: {} + deep-extend@0.6.0: {} deep-is@0.1.4: {} @@ -8574,8 +8570,6 @@ snapshots: emojilib@2.4.0: {} - empathic@2.0.1: {} - enhanced-resolve@5.24.0: dependencies: graceful-fs: 4.2.11 @@ -8626,7 +8620,7 @@ snapshots: has-property-descriptors: 1.0.2 has-proto: 1.0.3 has-symbols: 1.1.0 - hasown: 2.0.2 + hasown: 2.0.4 internal-slot: 1.0.7 is-array-buffer: 3.0.4 is-callable: 1.2.7 @@ -8668,7 +8662,7 @@ snapshots: es-errors@1.3.0: {} - es-module-lexer@2.3.0: {} + es-module-lexer@1.7.0: {} es-object-atoms@1.1.1: dependencies: @@ -8679,7 +8673,7 @@ snapshots: es-errors: 1.3.0 get-intrinsic: 1.3.0 has-tostringtag: 1.0.2 - hasown: 2.0.2 + hasown: 2.0.4 es-to-primitive@1.2.1: dependencies: @@ -8975,7 +8969,7 @@ snapshots: fast-memoize@2.5.2: {} - fast-uri@4.1.0: {} + fast-uri@3.1.3: {} fastest-levenshtein@1.0.16: {} @@ -9079,7 +9073,7 @@ snapshots: cross-spawn: 7.0.6 signal-exit: 4.1.0 - form-data@4.0.6: + form-data@4.0.4: dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 @@ -9147,7 +9141,7 @@ snapshots: get-proto: 1.0.1 gopd: 1.2.0 has-symbols: 1.1.0 - hasown: 2.0.2 + hasown: 2.0.4 math-intrinsics: 1.1.0 get-own-enumerable-property-symbols@3.0.2: {} @@ -9341,10 +9335,6 @@ snapshots: dependencies: hookified: 1.15.1 - hasown@2.0.2: - dependencies: - function-bind: 1.1.2 - hasown@2.0.4: dependencies: function-bind: 1.1.2 @@ -9445,7 +9435,7 @@ snapshots: dependencies: chalk: 4.1.2 event-stream: 4.0.1 - form-data: 4.0.6 + form-data: 4.0.4 har-validator-compiled: 1.0.0 stringify-object: 3.3.0 yargs: 17.7.2 @@ -9548,7 +9538,7 @@ snapshots: internal-slot@1.0.7: dependencies: es-errors: 1.3.0 - hasown: 2.0.2 + hasown: 2.0.4 side-channel: 1.1.0 into-stream@7.0.0: @@ -9585,7 +9575,7 @@ snapshots: is-core-module@2.15.1: dependencies: - hasown: 2.0.2 + hasown: 2.0.4 is-data-view@1.0.1: dependencies: @@ -9741,12 +9731,14 @@ snapshots: js-cookie@3.0.8: {} - js-tokens@10.0.0: {} - js-tokens@4.0.0: {} js-tokens@9.0.1: {} + js-yaml@4.3.0: + dependencies: + argparse: 2.0.1 + js-yaml@5.2.1: dependencies: argparse: 2.0.1 @@ -9932,6 +9924,10 @@ snapshots: lru-cache@11.5.1: {} + lru-cache@5.1.1: + dependencies: + yallist: 3.1.1 + magic-string@0.30.21: dependencies: '@jridgewell/sourcemap-codec': 1.5.5 @@ -10160,7 +10156,7 @@ snapshots: normalize-package-data@6.0.2: dependencies: hosted-git-info: 7.0.2 - semver: 7.7.2 + semver: 7.8.5 validate-npm-package-license: 3.0.4 normalize-package-data@8.0.0: @@ -10210,8 +10206,6 @@ snapshots: has-symbols: 1.1.0 object-keys: 1.1.1 - obug@2.1.3: {} - ohash@2.0.11: {} once@1.4.0: @@ -10247,7 +10241,7 @@ snapshots: is-docker: 2.2.1 is-wsl: 2.2.0 - openapi3-ts@4.6.0: + openapi3-ts@4.5.0: dependencies: yaml: 2.9.0 @@ -10396,6 +10390,8 @@ snapshots: pathe@2.0.3: {} + pathval@2.0.1: {} + pause-stream@0.0.11: dependencies: through: 2.3.8 @@ -10497,7 +10493,7 @@ snapshots: mime-types: 2.1.35 postman-url-encoder: 3.0.5 semver: 7.6.3 - uuid: 14.0.1 + uuid: 8.3.2 postman-url-encoder@3.0.5: dependencies: @@ -10757,7 +10753,7 @@ snapshots: is-plain-object: 5.0.0 launder: 1.7.1 parse-srcset: 1.0.2 - postcss: 8.5.15 + postcss: 8.5.16 sass-embedded-all-unknown@1.100.0: dependencies: @@ -11071,7 +11067,7 @@ snapshots: stackback@0.0.2: {} - std-env@4.1.0: {} + std-env@3.10.0: {} stream-browserify@3.0.0: dependencies: @@ -11176,6 +11172,10 @@ snapshots: strip-json-comments@3.1.1: {} + strip-literal@3.1.0: + dependencies: + js-tokens: 9.0.1 + style-search@0.1.0: {} stylelint-config-html@1.1.0(postcss-html@1.8.1)(stylelint@17.8.0(typescript@5.9.3)): @@ -11367,9 +11367,9 @@ snapshots: tinybench@2.9.0: {} - tinyexec@1.0.1: {} + tinyexec@0.3.2: {} - tinyexec@1.2.4: {} + tinyexec@1.0.1: {} tinyglobby@0.2.14: dependencies: @@ -11386,9 +11386,11 @@ snapshots: fdir: 6.5.0(picomatch@4.0.4) picomatch: 4.0.4 + tinypool@1.1.1: {} + tinyrainbow@2.0.0: {} - tinyrainbow@3.1.0: {} + tinyspy@4.0.4: {} tldts-core@7.0.17: {} @@ -11632,7 +11634,7 @@ snapshots: utility-types@3.11.0: {} - uuid@14.0.1: {} + uuid@8.3.2: {} v8-compile-cache-lib@3.0.1: {} @@ -11669,6 +11671,27 @@ snapshots: dependencies: vite: 7.3.6(@types/node@24.13.2)(jiti@2.4.2)(sass-embedded@1.100.0)(sass@1.101.0)(yaml@2.9.0) + vite-node@3.2.4(@types/node@24.13.2)(jiti@2.4.2)(sass-embedded@1.100.0)(sass@1.101.0)(yaml@2.9.0): + dependencies: + cac: 6.7.14 + debug: 4.4.3 + es-module-lexer: 1.7.0 + pathe: 2.0.3 + vite: 7.3.6(@types/node@24.13.2)(jiti@2.4.2)(sass-embedded@1.100.0)(sass@1.101.0)(yaml@2.9.0) + transitivePeerDependencies: + - '@types/node' + - jiti + - less + - lightningcss + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + - tsx + - yaml + vite-plugin-inspect@11.3.3(vite@7.3.6(@types/node@24.13.2)(jiti@2.4.2)(sass-embedded@1.100.0)(sass@1.101.0)(yaml@2.9.0)): dependencies: ansis: 4.1.0 @@ -11712,12 +11735,12 @@ snapshots: vite-plugin-vue-inspector@6.0.0(vite@7.3.6(@types/node@24.13.2)(jiti@2.4.2)(sass-embedded@1.100.0)(sass@1.101.0)(yaml@2.9.0)): dependencies: - '@babel/core': 8.0.1 - '@babel/plugin-proposal-decorators': 7.24.7(@babel/core@8.0.1) - '@babel/plugin-syntax-import-attributes': 7.25.6(@babel/core@8.0.1) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@8.0.1) - '@babel/plugin-transform-typescript': 7.25.2(@babel/core@8.0.1) - '@vue/babel-plugin-jsx': 1.2.5(@babel/core@8.0.1) + '@babel/core': 7.29.7 + '@babel/plugin-proposal-decorators': 7.24.7(@babel/core@7.29.7) + '@babel/plugin-syntax-import-attributes': 7.25.6(@babel/core@7.29.7) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.29.7) + '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.29.7) + '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.29.7) '@vue/compiler-dom': 3.5.32 kolorist: 1.8.0 magic-string: 0.30.21 @@ -11741,34 +11764,48 @@ snapshots: sass-embedded: 1.100.0 yaml: 2.9.0 - vitest@4.1.9(@types/node@24.13.2)(@vitest/ui@3.2.4)(jsdom@29.1.1)(vite@7.3.6(@types/node@24.13.2)(jiti@2.4.2)(sass-embedded@1.100.0)(sass@1.101.0)(yaml@2.9.0)): + vitest@3.2.4(@types/node@24.13.2)(@vitest/ui@3.2.4)(jiti@2.4.2)(jsdom@29.1.1)(sass-embedded@1.100.0)(sass@1.101.0)(yaml@2.9.0): dependencies: - '@vitest/expect': 4.1.9 - '@vitest/mocker': 4.1.9(vite@7.3.6(@types/node@24.13.2)(jiti@2.4.2)(sass-embedded@1.100.0)(sass@1.101.0)(yaml@2.9.0)) - '@vitest/pretty-format': 4.1.9 - '@vitest/runner': 4.1.9 - '@vitest/snapshot': 4.1.9 - '@vitest/spy': 4.1.9 - '@vitest/utils': 4.1.9 - es-module-lexer: 2.3.0 + '@types/chai': 5.2.2 + '@vitest/expect': 3.2.4 + '@vitest/mocker': 3.2.4(vite@7.3.6(@types/node@24.13.2)(jiti@2.4.2)(sass-embedded@1.100.0)(sass@1.101.0)(yaml@2.9.0)) + '@vitest/pretty-format': 3.2.4 + '@vitest/runner': 3.2.4 + '@vitest/snapshot': 3.2.4 + '@vitest/spy': 3.2.4 + '@vitest/utils': 3.2.4 + chai: 5.3.3 + debug: 4.4.3 expect-type: 1.4.0 magic-string: 0.30.21 - obug: 2.1.3 pathe: 2.0.3 picomatch: 4.0.4 - std-env: 4.1.0 + std-env: 3.10.0 tinybench: 2.9.0 - tinyexec: 1.2.4 + tinyexec: 0.3.2 tinyglobby: 0.2.17 - tinyrainbow: 3.1.0 + tinypool: 1.1.1 + tinyrainbow: 2.0.0 vite: 7.3.6(@types/node@24.13.2)(jiti@2.4.2)(sass-embedded@1.100.0)(sass@1.101.0)(yaml@2.9.0) + vite-node: 3.2.4(@types/node@24.13.2)(jiti@2.4.2)(sass-embedded@1.100.0)(sass@1.101.0)(yaml@2.9.0) why-is-node-running: 2.3.0 optionalDependencies: '@types/node': 24.13.2 - '@vitest/ui': 3.2.4(vitest@4.1.9) + '@vitest/ui': 3.2.4(vitest@3.2.4) jsdom: 29.1.1 transitivePeerDependencies: + - jiti + - less + - lightningcss - msw + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + - tsx + - yaml vm-browserify@1.1.2: {} @@ -11917,6 +11954,8 @@ snapshots: y18n@5.0.8: {} + yallist@3.1.1: {} + yaml@2.9.0: {} yargs-parser@20.2.9: {} From 08eee337a8718659b8315bb5d98b5a21088dae98 Mon Sep 17 00:00:00 2001 From: Aditya Sharma Date: Sat, 4 Jul 2026 03:18:51 +0530 Subject: [PATCH 4/6] chore: audit fixes --- package.json | 2 +- pnpm-lock.yaml | 155 ++++++++++++++++++++++---------------------- pnpm-workspace.yaml | 2 +- 3 files changed, 79 insertions(+), 80 deletions(-) diff --git a/package.json b/package.json index a3438e0ed..f8079ca29 100644 --- a/package.json +++ b/package.json @@ -125,7 +125,7 @@ "vite-plugin-node-polyfills": "^0.26.0", "vite-plugin-replace": "^0.1.1", "vite-plugin-vue-devtools": "^8.1.2", - "vitest": "3.2.4", + "vitest": "3.2.6", "vue": "^3.5.34", "vue-router": "^4.6.4", "vue-tsc": "^3.2.9" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 82a4d002a..7535ec487 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -16,7 +16,6 @@ overrides: sha.js@<=2.4.11: '>=2.4.12' cipher-base@<=1.0.4: '>=1.0.7' tmp@<=0.2.3: '>=0.2.5' - form-data@>=4.0.0 <4.0.4: '>=4.0.5' js-yaml@>=4.0.0 <4.1.1: '>=4.1.1' glob@>=10.2.0 <10.5.0: '>=13.0.6' diff@>=4.0.0 <4.0.4: '>=4.0.4' @@ -40,6 +39,7 @@ overrides: lodash@<=4.17.23: '>=4.18.0' yaml@>=2.0.0 <2.8.3: '>=2.8.4' vite@>=7.0.0 <=7.3.1: '>=7.3.3' + form-data@>=4.0.0 <4.0.6: ^4.0.6 importers: @@ -156,7 +156,7 @@ importers: version: 6.0.7(vite@7.3.6(@types/node@24.13.2)(jiti@2.4.2)(sass-embedded@1.100.0)(sass@1.101.0)(yaml@2.9.0))(vue@3.5.35(typescript@5.9.3)) '@vitest/ui': specifier: ^3.2.4 - version: 3.2.4(vitest@3.2.4) + version: 3.2.4(vitest@3.2.6) '@vue/test-utils': specifier: ^2.4.10 version: 2.4.10(@vue/compiler-dom@3.5.35)(@vue/server-renderer@3.5.35(vue@3.5.35(typescript@5.9.3)))(vue@3.5.35(typescript@5.9.3)) @@ -248,8 +248,8 @@ importers: specifier: ^8.1.2 version: 8.1.2(vite@7.3.6(@types/node@24.13.2)(jiti@2.4.2)(sass-embedded@1.100.0)(sass@1.101.0)(yaml@2.9.0))(vue@3.5.35(typescript@5.9.3)) vitest: - specifier: 3.2.4 - version: 3.2.4(@types/node@24.13.2)(@vitest/ui@3.2.4)(jiti@2.4.2)(jsdom@29.1.1)(sass-embedded@1.100.0)(sass@1.101.0)(yaml@2.9.0) + specifier: 3.2.6 + version: 3.2.6(@types/node@24.13.2)(@vitest/ui@3.2.4)(jiti@2.4.2)(jsdom@29.1.1)(sass-embedded@1.100.0)(sass@1.101.0)(yaml@2.9.0) vue: specifier: ^3.5.34 version: 3.5.35(typescript@5.9.3) @@ -917,10 +917,6 @@ packages: '@jridgewell/gen-mapping@0.3.13': resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} - '@jridgewell/gen-mapping@0.3.5': - resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} - engines: {node: '>=6.0.0'} - '@jridgewell/remapping@2.3.5': resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==} @@ -928,10 +924,6 @@ packages: resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} engines: {node: '>=6.0.0'} - '@jridgewell/set-array@1.2.1': - resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} - engines: {node: '>=6.0.0'} - '@jridgewell/sourcemap-codec@1.5.0': resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} @@ -1674,11 +1666,11 @@ packages: vite: '>=7.3.3' vue: ^3.2.25 - '@vitest/expect@3.2.4': - resolution: {integrity: sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==} + '@vitest/expect@3.2.6': + resolution: {integrity: sha512-1+7q9BtaKzEmO+fmNT3kYvoNn5Y71XWAx2Q5HRim4tTVRQVRv4uJFAQ5FbK0OPUeNP/WmVCpxYxoJdvuHVjzBQ==} - '@vitest/mocker@3.2.4': - resolution: {integrity: sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==} + '@vitest/mocker@3.2.6': + resolution: {integrity: sha512-EZOrpDbkKotFAP7wPAQV1UIyoGOk4oX7ynWhBhLB7v+meMHbQhU16oPpIYGTTe4oFlhpryGpgpcZP/sin3hYuw==} peerDependencies: msw: ^2.4.9 vite: '>=7.3.3' @@ -1691,14 +1683,17 @@ packages: '@vitest/pretty-format@3.2.4': resolution: {integrity: sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==} - '@vitest/runner@3.2.4': - resolution: {integrity: sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ==} + '@vitest/pretty-format@3.2.6': + resolution: {integrity: sha512-lb7XXXzmm2h2ASzFnRvQpDo6onT1NmMJA3tkGTWiBFtRJ9lxGY3d3mm/Apt36gej2bkkOVLL/yTOtufDaFa/jA==} + + '@vitest/runner@3.2.6': + resolution: {integrity: sha512-HYcoSj1w5tcgUnzoF0HcyaAQjpA1gj9ftUJ7iSJSuipc02jW9gKkigwZbjFldAfYHA1fa8UZVRftdMY5msWM9Q==} - '@vitest/snapshot@3.2.4': - resolution: {integrity: sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ==} + '@vitest/snapshot@3.2.6': + resolution: {integrity: sha512-H+ZjNTWGpObenh0YnlBctAPnJSI20P81PL8BPzWpx54YXLLTm8hEsWawtcYLMrwvpK48hGxLLbCS+1KRXhsKhw==} - '@vitest/spy@3.2.4': - resolution: {integrity: sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==} + '@vitest/spy@3.2.6': + resolution: {integrity: sha512-oq6BbH68WzcWmwtBrU9nqLeaXTR4XwJF7FSLkKEZo4i6eoXcrxjcwSuTvWBIRUTC6VC72nXYunzqgZA+IKdtxg==} '@vitest/ui@3.2.4': resolution: {integrity: sha512-hGISOaP18plkzbWEcP/QvtRW1xDXF2+96HbEX6byqQhAUbiS5oH6/9JwW+QsQCIYON2bI6QZBF+2PvOmrRZ9wA==} @@ -1708,6 +1703,9 @@ packages: '@vitest/utils@3.2.4': resolution: {integrity: sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==} + '@vitest/utils@3.2.6': + resolution: {integrity: sha512-lI23nIs4bnT3T8NIoh+vFaz5s2/DdP0Jgt2jxwgWljvwn82cLJtyi/If+fjFyoLMGIOz0U/fKvWE0d4jsNQEfg==} + '@volar/language-core@2.4.28': resolution: {integrity: sha512-w4qhIJ8ZSitgLAkVay6AbcnC7gP3glYM3fYwKV3srj8m494E3xtrCv6E+bWviiK/8hs6e6t1ij1s2Endql7vzQ==} @@ -3004,8 +3002,8 @@ packages: resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} engines: {node: '>=14'} - form-data@4.0.4: - resolution: {integrity: sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==} + form-data@4.0.6: + resolution: {integrity: sha512-vKatAh4SlVfgbv+YtmhiRjhEMJsYpsG1Y2rMQtR+SVSbytsSD1YGzDIcrAJmdFec88u/+VoGmxnl+80gL1tRCQ==} engines: {node: '>= 6'} form-urlencoded@6.1.6: @@ -3244,6 +3242,10 @@ packages: resolution: {integrity: sha512-iZyKG96/JwPz1N55vj2Ie2vXbhu440zfUfJvSwEqEbeLluk7NnapfGqa7LH0mOsnDxTF85Mx8/dyR6HfqcbmbQ==} engines: {node: '>=20'} + hasown@2.0.2: + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + engines: {node: '>= 0.4'} + hasown@2.0.4: resolution: {integrity: sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==} engines: {node: '>= 0.4'} @@ -5286,10 +5288,6 @@ packages: resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==} engines: {node: '>=12.0.0'} - tinyglobby@0.2.15: - resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} - engines: {node: '>=12.0.0'} - tinyglobby@0.2.17: resolution: {integrity: sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==} engines: {node: '>=12.0.0'} @@ -5661,16 +5659,16 @@ packages: yaml: optional: true - vitest@3.2.4: - resolution: {integrity: sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A==} + vitest@3.2.6: + resolution: {integrity: sha512-xejya+bT/j/+R/AGa1XOfRxLmNUlLtlwjRsFUILF+xHfzElmGcmFydy2gqqIrd62ptIEfwVMofd19uNWD9L7Nw==} engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} hasBin: true peerDependencies: '@edge-runtime/vm': '*' '@types/debug': ^4.1.12 '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 - '@vitest/browser': 3.2.4 - '@vitest/ui': 3.2.4 + '@vitest/browser': 3.2.6 + '@vitest/ui': 3.2.6 happy-dom: '*' jsdom: '*' peerDependenciesMeta: @@ -6010,8 +6008,8 @@ snapshots: '@babel/generator@7.25.6': dependencies: '@babel/types': 7.29.7 - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 jsesc: 2.5.2 '@babel/generator@7.29.7': @@ -6024,7 +6022,7 @@ snapshots: '@babel/helper-annotate-as-pure@7.24.7': dependencies: - '@babel/types': 7.29.0 + '@babel/types': 7.29.7 '@babel/helper-compilation-targets@7.29.7': dependencies: @@ -6097,7 +6095,7 @@ snapshots: '@babel/helper-skip-transparent-expression-wrappers@7.24.7': dependencies: '@babel/traverse': 7.25.6 - '@babel/types': 7.29.0 + '@babel/types': 7.29.7 transitivePeerDependencies: - supports-color @@ -6617,12 +6615,6 @@ snapshots: '@jridgewell/sourcemap-codec': 1.5.5 '@jridgewell/trace-mapping': 0.3.31 - '@jridgewell/gen-mapping@0.3.5': - dependencies: - '@jridgewell/set-array': 1.2.1 - '@jridgewell/sourcemap-codec': 1.5.5 - '@jridgewell/trace-mapping': 0.3.31 - '@jridgewell/remapping@2.3.5': dependencies: '@jridgewell/gen-mapping': 0.3.13 @@ -6630,8 +6622,6 @@ snapshots: '@jridgewell/resolve-uri@3.1.2': {} - '@jridgewell/set-array@1.2.1': {} - '@jridgewell/sourcemap-codec@1.5.0': {} '@jridgewell/sourcemap-codec@1.5.5': {} @@ -7014,7 +7004,7 @@ snapshots: mime: 4.0.4 p-filter: 4.1.0 semantic-release: 25.0.3(typescript@5.9.3) - tinyglobby: 0.2.15 + tinyglobby: 0.2.17 undici: 8.6.0 url-join: 5.0.0 transitivePeerDependencies: @@ -7485,17 +7475,17 @@ snapshots: vite: 7.3.6(@types/node@24.13.2)(jiti@2.4.2)(sass-embedded@1.100.0)(sass@1.101.0)(yaml@2.9.0) vue: 3.5.35(typescript@5.9.3) - '@vitest/expect@3.2.4': + '@vitest/expect@3.2.6': dependencies: '@types/chai': 5.2.2 - '@vitest/spy': 3.2.4 - '@vitest/utils': 3.2.4 + '@vitest/spy': 3.2.6 + '@vitest/utils': 3.2.6 chai: 5.3.3 tinyrainbow: 2.0.0 - '@vitest/mocker@3.2.4(vite@7.3.6(@types/node@24.13.2)(jiti@2.4.2)(sass-embedded@1.100.0)(sass@1.101.0)(yaml@2.9.0))': + '@vitest/mocker@3.2.6(vite@7.3.6(@types/node@24.13.2)(jiti@2.4.2)(sass-embedded@1.100.0)(sass@1.101.0)(yaml@2.9.0))': dependencies: - '@vitest/spy': 3.2.4 + '@vitest/spy': 3.2.6 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: @@ -7505,23 +7495,27 @@ snapshots: dependencies: tinyrainbow: 2.0.0 - '@vitest/runner@3.2.4': + '@vitest/pretty-format@3.2.6': dependencies: - '@vitest/utils': 3.2.4 + tinyrainbow: 2.0.0 + + '@vitest/runner@3.2.6': + dependencies: + '@vitest/utils': 3.2.6 pathe: 2.0.3 strip-literal: 3.1.0 - '@vitest/snapshot@3.2.4': + '@vitest/snapshot@3.2.6': dependencies: - '@vitest/pretty-format': 3.2.4 + '@vitest/pretty-format': 3.2.6 magic-string: 0.30.21 pathe: 2.0.3 - '@vitest/spy@3.2.4': + '@vitest/spy@3.2.6': dependencies: tinyspy: 4.0.4 - '@vitest/ui@3.2.4(vitest@3.2.4)': + '@vitest/ui@3.2.4(vitest@3.2.6)': dependencies: '@vitest/utils': 3.2.4 fflate: 0.8.2 @@ -7530,7 +7524,7 @@ snapshots: sirv: 3.0.1 tinyglobby: 0.2.14 tinyrainbow: 2.0.0 - vitest: 3.2.4(@types/node@24.13.2)(@vitest/ui@3.2.4)(jiti@2.4.2)(jsdom@29.1.1)(sass-embedded@1.100.0)(sass@1.101.0)(yaml@2.9.0) + vitest: 3.2.6(@types/node@24.13.2)(@vitest/ui@3.2.4)(jiti@2.4.2)(jsdom@29.1.1)(sass-embedded@1.100.0)(sass@1.101.0)(yaml@2.9.0) '@vitest/utils@3.2.4': dependencies: @@ -7538,6 +7532,12 @@ snapshots: loupe: 3.1.4 tinyrainbow: 2.0.0 + '@vitest/utils@3.2.6': + dependencies: + '@vitest/pretty-format': 3.2.6 + loupe: 3.1.4 + tinyrainbow: 2.0.0 + '@volar/language-core@2.4.28': dependencies: '@volar/source-map': 2.4.28 @@ -8620,7 +8620,7 @@ snapshots: has-property-descriptors: 1.0.2 has-proto: 1.0.3 has-symbols: 1.1.0 - hasown: 2.0.4 + hasown: 2.0.2 internal-slot: 1.0.7 is-array-buffer: 3.0.4 is-callable: 1.2.7 @@ -8673,7 +8673,7 @@ snapshots: es-errors: 1.3.0 get-intrinsic: 1.3.0 has-tostringtag: 1.0.2 - hasown: 2.0.4 + hasown: 2.0.2 es-to-primitive@1.2.1: dependencies: @@ -9073,7 +9073,7 @@ snapshots: cross-spawn: 7.0.6 signal-exit: 4.1.0 - form-data@4.0.4: + form-data@4.0.6: dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 @@ -9141,7 +9141,7 @@ snapshots: get-proto: 1.0.1 gopd: 1.2.0 has-symbols: 1.1.0 - hasown: 2.0.4 + hasown: 2.0.2 math-intrinsics: 1.1.0 get-own-enumerable-property-symbols@3.0.2: {} @@ -9335,6 +9335,10 @@ snapshots: dependencies: hookified: 1.15.1 + hasown@2.0.2: + dependencies: + function-bind: 1.1.2 + hasown@2.0.4: dependencies: function-bind: 1.1.2 @@ -9435,7 +9439,7 @@ snapshots: dependencies: chalk: 4.1.2 event-stream: 4.0.1 - form-data: 4.0.4 + form-data: 4.0.6 har-validator-compiled: 1.0.0 stringify-object: 3.3.0 yargs: 17.7.2 @@ -9538,7 +9542,7 @@ snapshots: internal-slot@1.0.7: dependencies: es-errors: 1.3.0 - hasown: 2.0.4 + hasown: 2.0.2 side-channel: 1.1.0 into-stream@7.0.0: @@ -9575,7 +9579,7 @@ snapshots: is-core-module@2.15.1: dependencies: - hasown: 2.0.4 + hasown: 2.0.2 is-data-view@1.0.1: dependencies: @@ -11376,11 +11380,6 @@ snapshots: fdir: 6.4.5(picomatch@4.0.4) picomatch: 4.0.4 - tinyglobby@0.2.15: - dependencies: - fdir: 6.5.0(picomatch@4.0.4) - picomatch: 4.0.4 - tinyglobby@0.2.17: dependencies: fdir: 6.5.0(picomatch@4.0.4) @@ -11764,16 +11763,16 @@ snapshots: sass-embedded: 1.100.0 yaml: 2.9.0 - vitest@3.2.4(@types/node@24.13.2)(@vitest/ui@3.2.4)(jiti@2.4.2)(jsdom@29.1.1)(sass-embedded@1.100.0)(sass@1.101.0)(yaml@2.9.0): + vitest@3.2.6(@types/node@24.13.2)(@vitest/ui@3.2.4)(jiti@2.4.2)(jsdom@29.1.1)(sass-embedded@1.100.0)(sass@1.101.0)(yaml@2.9.0): dependencies: '@types/chai': 5.2.2 - '@vitest/expect': 3.2.4 - '@vitest/mocker': 3.2.4(vite@7.3.6(@types/node@24.13.2)(jiti@2.4.2)(sass-embedded@1.100.0)(sass@1.101.0)(yaml@2.9.0)) - '@vitest/pretty-format': 3.2.4 - '@vitest/runner': 3.2.4 - '@vitest/snapshot': 3.2.4 - '@vitest/spy': 3.2.4 - '@vitest/utils': 3.2.4 + '@vitest/expect': 3.2.6 + '@vitest/mocker': 3.2.6(vite@7.3.6(@types/node@24.13.2)(jiti@2.4.2)(sass-embedded@1.100.0)(sass@1.101.0)(yaml@2.9.0)) + '@vitest/pretty-format': 3.2.6 + '@vitest/runner': 3.2.6 + '@vitest/snapshot': 3.2.6 + '@vitest/spy': 3.2.6 + '@vitest/utils': 3.2.6 chai: 5.3.3 debug: 4.4.3 expect-type: 1.4.0 @@ -11791,7 +11790,7 @@ snapshots: why-is-node-running: 2.3.0 optionalDependencies: '@types/node': 24.13.2 - '@vitest/ui': 3.2.4(vitest@3.2.4) + '@vitest/ui': 3.2.4(vitest@3.2.6) jsdom: 29.1.1 transitivePeerDependencies: - jiti diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 2f662696d..3e5581edc 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -20,7 +20,6 @@ overrides: sha.js@<=2.4.11: '>=2.4.12' cipher-base@<=1.0.4: '>=1.0.7' tmp@<=0.2.3: '>=0.2.5' - form-data@>=4.0.0 <4.0.4: '>=4.0.5' js-yaml@>=4.0.0 <4.1.1: '>=4.1.1' glob@>=10.2.0 <10.5.0: '>=13.0.6' diff@>=4.0.0 <4.0.4: '>=4.0.4' @@ -44,6 +43,7 @@ overrides: lodash@<=4.17.23: '>=4.18.0' yaml@>=2.0.0 <2.8.3: '>=2.8.4' vite@>=7.0.0 <=7.3.1: '>=7.3.3' + form-data@>=4.0.0 <4.0.6: ^4.0.6 strictPeerDependencies: false autoInstallPeers: false allowBuilds: From 3c3908d6a5dac490a242a2fe1eadf01a2e32c3ee Mon Sep 17 00:00:00 2001 From: Aditya Sharma Date: Mon, 6 Jul 2026 13:29:12 +0530 Subject: [PATCH 5/6] fix: comment in CI --- .github/workflows/CI.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index fb1a91a19..878f847ee 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -74,7 +74,7 @@ jobs: tag="pr-${{ github.event.pull_request.number }}" echo "preid=${preid}" - # Use yarn to bump the version for the prerelease + # Use pnpm to bump the version for the prerelease pnpm version prerelease --preid ${preid} --no-git-tag-version --yes package_version=$(jq -r ".version" package.json) From b181bdac4081afc01904842c50949563526be5ff Mon Sep 17 00:00:00 2001 From: Aditya Sharma Date: Mon, 6 Jul 2026 14:21:10 +0530 Subject: [PATCH 6/6] chore: remove auto install peer dependencies flag --- pnpm-lock.yaml | 19 ++++++++++++------- pnpm-workspace.yaml | 1 - 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7535ec487..b0c968586 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,7 +1,7 @@ lockfileVersion: '9.0' settings: - autoInstallPeers: false + autoInstallPeers: true excludeLinksFromLockfile: false overrides: @@ -1889,6 +1889,11 @@ packages: ajv-formats@2.1.1: resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} + peerDependencies: + ajv: ^8.0.0 + peerDependenciesMeta: + ajv: + optional: true ajv@6.14.0: resolution: {integrity: sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==} @@ -5939,7 +5944,7 @@ snapshots: '@openapi-contrib/openapi-schema-to-json-schema': 3.2.0 ajv: 8.18.0 ajv-errors: 3.0.0(ajv@8.18.0) - ajv-formats: 2.1.1 + ajv-formats: 2.1.1(ajv@8.18.0) transitivePeerDependencies: - encoding @@ -5959,7 +5964,7 @@ snapshots: '@types/urijs': 1.19.25 ajv: 8.18.0 ajv-errors: 3.0.0(ajv@8.18.0) - ajv-formats: 2.1.1 + ajv-formats: 2.1.1(ajv@8.18.0) avsc: 5.7.7 js-yaml: 4.3.0 jsonpath-plus: 10.4.0 @@ -7170,7 +7175,7 @@ snapshots: '@types/json-schema': 7.0.15 ajv: 8.18.0 ajv-errors: 3.0.0(ajv@8.18.0) - ajv-formats: 2.1.1 + ajv-formats: 2.1.1(ajv@8.18.0) es-aggregate-error: 1.0.13 jsonpath-plus: 10.4.0 lodash: 4.18.1 @@ -7202,7 +7207,7 @@ snapshots: ajv: 8.18.0 ajv-draft-04: 1.0.0(ajv@8.18.0) ajv-errors: 3.0.0(ajv@8.18.0) - ajv-formats: 2.1.1 + ajv-formats: 2.1.1(ajv@8.18.0) lodash: 4.18.1 tslib: 2.8.1 transitivePeerDependencies: @@ -7769,8 +7774,8 @@ snapshots: dependencies: ajv: 8.18.0 - ajv-formats@2.1.1: - dependencies: + ajv-formats@2.1.1(ajv@8.18.0): + optionalDependencies: ajv: 8.18.0 ajv@6.14.0: diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 3e5581edc..a94755377 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -45,7 +45,6 @@ overrides: vite@>=7.0.0 <=7.3.1: '>=7.3.3' form-data@>=4.0.0 <4.0.6: ^4.0.6 strictPeerDependencies: false -autoInstallPeers: false allowBuilds: '@evilmartians/lefthook': true '@parcel/watcher': true