fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #3688 from hey-api/renovate/tsdown-0.x

chore(deps): update dependency tsdown to v0.21.7

authored by

Lubos and committed by
GitHub
e1a74712 e19a49f2

+363 -651
+5
.changeset/polite-wombats-taste.md
··· 1 + --- 2 + "@hey-api/vite-plugin": minor 3 + --- 4 + 5 + **BREAKING**: This package is now ESM-only.
+3 -2
package.json
··· 48 48 "dev:py": "cd dev && HEYAPI_CODEGEN_ENV=development tsx watch --clear-screen=false ../packages/openapi-python/src/run.ts" 49 49 }, 50 50 "devDependencies": { 51 - "@arethetypeswrong/cli": "0.18.2", 51 + "@arethetypeswrong/core": "0.18.2", 52 52 "@changesets/cli": "2.30.0", 53 53 "@changesets/get-github-info": "0.8.0", 54 54 "@changesets/parse": "0.4.3", ··· 70 70 "husky": "9.1.7", 71 71 "lint-staged": "16.4.0", 72 72 "oxfmt": "0.41.0", 73 - "tsdown": "0.21.4", 73 + "publint": "0.3.18", 74 + "tsdown": "0.21.7", 74 75 "tsx": "4.21.0", 75 76 "turbo": "2.8.20", 76 77 "typescript": "5.9.3",
+1 -2
packages/codegen-core/package.json
··· 40 40 "./package.json": "./package.json" 41 41 }, 42 42 "scripts": { 43 - "build": "tsdown && pnpm check-exports", 44 - "check-exports": "attw --pack . --profile esm-only --ignore-rules cjs-resolves-to-esm", 43 + "build": "tsdown", 45 44 "dev": "tsdown --watch", 46 45 "prepublishOnly": "pnpm build", 47 46 "typecheck": "tsgo --noEmit"
+5 -6
packages/codegen-core/tsdown.config.ts
··· 1 1 import { defineConfig } from 'tsdown'; 2 2 3 3 export default defineConfig({ 4 - clean: true, 5 - dts: true, 6 - entry: ['src/index.ts'], 7 - format: ['esm'], 8 - minify: false, 4 + attw: { 5 + ignoreRules: ['cjs-resolves-to-esm'], 6 + profile: 'esm-only', 7 + }, 8 + publint: true, 9 9 sourcemap: true, 10 - treeshake: true, 11 10 });
+6 -20
packages/custom-client/package.json
··· 25 25 ], 26 26 "type": "module", 27 27 "sideEffects": false, 28 - "main": "./dist/index.cjs", 29 - "module": "./dist/index.mjs", 28 + "main": "./dist/index.mjs", 30 29 "types": "./dist/index.d.mts", 31 30 "exports": { 32 31 ".": { 33 - "import": { 34 - "types": "./dist/index.d.mts", 35 - "default": "./dist/index.mjs" 36 - }, 37 - "require": { 38 - "types": "./dist/index.d.cts", 39 - "default": "./dist/index.cjs" 40 - } 32 + "types": "./dist/index.d.mts", 33 + "import": "./dist/index.mjs" 41 34 }, 42 35 "./plugin": { 43 - "import": { 44 - "types": "./dist/plugin.d.mts", 45 - "default": "./dist/plugin.mjs" 46 - }, 47 - "require": { 48 - "types": "./dist/plugin.d.cts", 49 - "default": "./dist/plugin.cjs" 50 - } 36 + "types": "./dist/plugin.d.mts", 37 + "import": "./dist/plugin.mjs" 51 38 }, 52 39 "./package.json": "./package.json" 53 40 }, 54 41 "scripts": { 55 - "build": "tsdown && rollup -c && pnpm check-exports", 56 - "check-exports": "attw --profile node16 --pack .", 42 + "build": "tsdown", 57 43 "dev": "tsdown --watch", 58 44 "prepublishOnly": "pnpm build" 59 45 },
+5 -6
packages/custom-client/tsdown.config.ts
··· 1 1 import { defineConfig } from 'tsdown'; 2 2 3 3 export default defineConfig({ 4 - clean: true, 5 - dts: true, 4 + attw: { 5 + ignoreRules: ['cjs-resolves-to-esm'], 6 + profile: 'esm-only', 7 + }, 6 8 entry: ['src/index.ts', 'src/plugin.ts'], 7 - format: ['cjs', 'esm'], 8 - minify: false, 9 - shims: false, 9 + publint: true, 10 10 sourcemap: true, 11 - treeshake: true, 12 11 });
+1 -2
packages/json-schema-ref-parser/package.json
··· 43 43 "./package.json": "./package.json" 44 44 }, 45 45 "scripts": { 46 - "build": "tsdown && pnpm check-exports", 47 - "check-exports": "attw --pack . --profile esm-only --ignore-rules cjs-resolves-to-esm", 46 + "build": "tsdown", 48 47 "dev": "tsdown --watch", 49 48 "prepublishOnly": "pnpm build", 50 49 "typecheck": "tsgo --noEmit"
+5 -6
packages/json-schema-ref-parser/tsdown.config.ts
··· 1 1 import { defineConfig } from 'tsdown'; 2 2 3 3 export default defineConfig({ 4 - clean: true, 5 - dts: true, 6 - entry: ['src/index.ts'], 7 - format: ['esm'], 8 - minify: false, 4 + attw: { 5 + ignoreRules: ['cjs-resolves-to-esm'], 6 + profile: 'esm-only', 7 + }, 8 + publint: true, 9 9 sourcemap: true, 10 - treeshake: true, 11 10 });
+1 -2
packages/openapi-python/package.json
··· 52 52 "./package.json": "./package.json" 53 53 }, 54 54 "scripts": { 55 - "build": "tsdown && pnpm check-exports", 56 - "check-exports": "attw --pack . --profile esm-only --ignore-rules cjs-resolves-to-esm", 55 + "build": "tsdown", 57 56 "dev": "tsdown --watch", 58 57 "prepublishOnly": "pnpm build", 59 58 "typecheck": "tsgo --noEmit",
+5 -5
packages/openapi-python/tsdown.config.ts
··· 7 7 const __dirname = path.dirname(fileURLToPath(import.meta.url)); 8 8 9 9 export default defineConfig({ 10 - clean: true, 11 - dts: true, 10 + attw: { 11 + ignoreRules: ['cjs-resolves-to-esm'], 12 + profile: 'esm-only', 13 + }, 12 14 entry: ['./src/{index,run}.ts'], 13 - format: ['esm'], 14 - minify: false, 15 15 onSuccess: async () => { 16 16 // Copy client files to dist folder for runtime access 17 17 const pluginNames = ['client-httpx']; ··· 37 37 } 38 38 } 39 39 }, 40 + publint: true, 40 41 sourcemap: true, 41 - treeshake: true, 42 42 });
+1 -2
packages/openapi-ts/package.json
··· 62 62 "./package.json": "./package.json" 63 63 }, 64 64 "scripts": { 65 - "build": "tsdown && pnpm check-exports", 66 - "check-exports": "attw --pack . --profile esm-only --ignore-rules cjs-resolves-to-esm", 65 + "build": "tsdown", 67 66 "dev": "tsdown --watch", 68 67 "prepublishOnly": "pnpm build", 69 68 "typecheck": "tsgo --noEmit"
+5 -5
packages/openapi-ts/tsdown.config.ts
··· 14 14 }; 15 15 16 16 export default defineConfig({ 17 - clean: true, 17 + attw: { 18 + ignoreRules: ['cjs-resolves-to-esm'], 19 + profile: 'esm-only', 20 + }, 18 21 deps: { 19 22 neverBundle: [ 20 23 '@angular/common/http', ··· 27 30 'vue', 28 31 ], 29 32 }, 30 - dts: true, 31 33 entry: ['./src/{index,internal,run}.ts'], 32 - format: ['esm'], 33 - minify: false, 34 34 onSuccess: async () => { 35 35 // Copy client files to dist folder for runtime access 36 36 const pluginNames = [ ··· 65 65 } 66 66 } 67 67 }, 68 + publint: true, 68 69 sourcemap: true, 69 - treeshake: true, 70 70 });
+1 -2
packages/shared/package.json
··· 33 33 "./package.json": "./package.json" 34 34 }, 35 35 "scripts": { 36 - "build": "tsdown && pnpm check-exports", 37 - "check-exports": "attw --pack . --profile esm-only --ignore-rules cjs-resolves-to-esm", 36 + "build": "tsdown", 38 37 "dev": "tsdown --watch", 39 38 "prepublishOnly": "pnpm build", 40 39 "typecheck": "tsgo --noEmit"
+5 -6
packages/shared/tsdown.config.ts
··· 1 1 import { defineConfig } from 'tsdown'; 2 2 3 3 export default defineConfig({ 4 - clean: true, 5 - dts: true, 6 - entry: ['src/index.ts'], 7 - format: ['esm'], 8 - minify: false, 4 + attw: { 5 + ignoreRules: ['cjs-resolves-to-esm'], 6 + profile: 'esm-only', 7 + }, 8 + publint: true, 9 9 sourcemap: true, 10 - treeshake: true, 11 10 });
+80 -12
packages/vite-plugin/README.md
··· 1 1 <div align="center"> 2 - <img alt="Hey API logo" height="150" src="https://heyapi.dev/assets/.gen/logo-astronaut-300w.png" width="150"> 3 - <h1 align="center"><b>Vite Plugin</b></h1> 4 - <p align="center">🚀 Vite plugin for <code>@hey-api/openapi-ts</code> codegen.</p> 2 + <img alt="Hey API presents openapi-ts" height="214" src="https://heyapi.dev/assets/.gen/openapi-ts-hero-640w.png" width="438"> 3 + <h1><b>Vite Plugin</b></h1> 4 + <p>Vite plugin for <code>@hey-api/openapi-ts</code>.</p> 5 5 </div> 6 6 7 - ## Dashboard 7 + <p align="center"> 8 + <a href="https://www.devtrends.dev/trends?c=v1.kZIAzQaO"><img src="https://api.devtrends.dev/badge/npm/%40hey-api%2Fvite-plugin?period=month&style=flat&view=value" alt="DevTrends badge for @hey-api/vite-plugin" /></a> 9 + <a href="https://www.devtrends.dev/trends?c=v1.kZIAzQaO&v=change"><img src="https://api.devtrends.dev/badge/npm/%40hey-api%2Fvite-plugin?period=year&style=flat&view=change" alt="DevTrends badge for @hey-api/vite-plugin" /></a> 10 + <a href="https://github.com/hey-api/openapi-ts/actions?query=branch%3Amain"><img src="https://github.com/hey-api/openapi-ts/actions/workflows/ci.yml/badge.svg?event=push&branch=main" alt="CI status" /></a> 11 + <a href="https://github.com/hey-api/openapi-ts"><img src="https://img.shields.io/github/stars/hey-api/openapi-ts?style=flat&logo=github&label=GitHub&color=54C82D" alt="GitHub stars" /></a> 12 + <a href="https://github.com/hey-api/openapi-ts/blob/main/LICENSE.md"><img src="https://img.shields.io/github/license/hey-api/openapi-ts" alt="MIT License"></a> 13 + </p> 14 + 15 + <p align="center"> 16 + <a href="https://heyapi.dev">Manual</a> 17 + <span>&nbsp;•&nbsp;</span> 18 + <a href="https://github.com/hey-api/openapi-ts/issues">Issues</a> 19 + <span>&nbsp;•&nbsp;</span> 20 + <a href="https://heyapi.dev/openapi-ts/community/contributing">Contribute</a> 21 + </p> 22 + 23 + ## About 24 + 25 + [Vite](https://vite.dev) is a blazing fast frontend build tool powering the next generation of web applications. 26 + 27 + The Vite plugin integrates [`@hey-api/openapi-ts`](https://heyapi.dev/openapi-ts) into the Vite build pipeline, running automatically whenever Vite resolves its configuration – no separate script or manual step required. 28 + 29 + Part of the Hey API ecosystem. 30 + 31 + ## Features 8 32 9 - Access your projects and OpenAPI specifications in the [Hey API Platform](https://app.heyapi.dev/). 33 + - runs automatically as part of your Vite build 34 + - reads your existing configuration (or accepts inline config) 35 + - works with any Vite-based project 36 + - [sync with Hey API Registry](https://heyapi.dev/openapi-ts/integrations) for spec management 10 37 11 38 ## Contributing 12 39 ··· 14 41 15 42 Start with our [Contributing](https://heyapi.dev/openapi-ts/community/contributing) guide and release your first feature. 16 43 17 - ## Documentation 18 - 19 - Please visit our [website](https://heyapi.dev) for documentation, guides, migrating, and more. 20 - 21 44 ## Sponsors 22 45 23 - Help Hey API stay around for the long haul by becoming a [sponsor](https://github.com/sponsors/hey-api). 46 + Hey API is sponsor-funded. If you rely on Hey API in production, consider becoming a [sponsor](https://github.com/sponsors/hey-api) to accelerate the roadmap. 24 47 25 48 <h3 align="center">Gold</h3> 26 49 ··· 125 148 </tbody> 126 149 </table> 127 150 151 + ## Installation 152 + 153 + You can download `@hey-api/vite-plugin` from npm using your favorite package manager. 154 + 155 + #### npm 156 + 157 + ```sh 158 + npm add @hey-api/vite-plugin -D -E 159 + ``` 160 + 161 + #### pnpm 162 + 163 + ```sh 164 + pnpm add @hey-api/vite-plugin -D -E 165 + ``` 166 + 167 + #### yarn 168 + 169 + ```sh 170 + yarn add @hey-api/vite-plugin -D -E 171 + ``` 172 + 173 + #### bun 174 + 175 + ```sh 176 + bun add @hey-api/vite-plugin -D -E 177 + ``` 178 + 128 179 ## Usage 129 180 130 - Add to `plugins` inside your Vite configuration. 181 + Add the plugin to your `vite.config.ts`: 182 + 183 + ```ts 184 + import { heyApiPlugin } from '@hey-api/vite-plugin'; 185 + import { defineConfig } from 'vite'; 186 + 187 + export default defineConfig({ 188 + plugins: [heyApiPlugin()], 189 + }); 190 + ``` 191 + 192 + The plugin will automatically pick up your [configuration](https://heyapi.dev/openapi-ts/configuration) file. You can also pass options inline using the `config` option: 131 193 132 194 ```ts 133 195 import { heyApiPlugin } from '@hey-api/vite-plugin'; 196 + import { defineConfig } from 'vite'; 134 197 135 198 export default defineConfig({ 136 199 plugins: [ 137 200 heyApiPlugin({ 138 201 config: { 139 - // optional configuration instead of using the configuration file 202 + input: 'hey-api/backend', // sign up at app.heyapi.dev 203 + output: 'src/client', 140 204 }, 141 205 }), 142 206 ], 143 207 }); 144 208 ``` 209 + 210 + ## License 211 + 212 + Released under the [MIT License](https://github.com/hey-api/openapi-ts/blob/main/LICENSE.md).
+9 -13
packages/vite-plugin/package.json
··· 4 4 "description": "🚀 Vite plugin for `@hey-api/openapi-ts` codegen.", 5 5 "keywords": [ 6 6 "codegen", 7 + "generator", 8 + "hey-api", 9 + "heyapi", 7 10 "openapi", 8 11 "plugin", 9 12 "swagger", ··· 31 34 "README.md" 32 35 ], 33 36 "type": "module", 34 - "main": "./dist/index.cjs", 35 - "module": "./dist/index.mjs", 37 + "main": "./dist/index.mjs", 36 38 "types": "./dist/index.d.mts", 37 39 "exports": { 38 40 ".": { 39 - "import": { 40 - "types": "./dist/index.d.mts", 41 - "default": "./dist/index.mjs" 42 - }, 43 - "require": { 44 - "types": "./dist/index.d.cts", 45 - "default": "./dist/index.cjs" 46 - } 41 + "types": "./dist/index.d.mts", 42 + "import": "./dist/index.mjs" 47 43 }, 48 44 "./package.json": "./package.json" 49 45 }, 50 46 "scripts": { 51 - "build": "tsdown && pnpm check-exports", 52 - "check-exports": "attw --pack .", 47 + "build": "tsdown", 53 48 "dev": "tsdown --watch", 54 - "prepublishOnly": "pnpm build" 49 + "prepublishOnly": "pnpm build", 50 + "typecheck": "tsgo --noEmit" 55 51 }, 56 52 "devDependencies": { 57 53 "@hey-api/openapi-ts": "workspace:*",
+4 -17
packages/vite-plugin/tsdown.config.ts
··· 1 1 import { defineConfig } from 'tsdown'; 2 2 3 3 export default defineConfig({ 4 - banner(ctx) { 5 - /** 6 - * fix dynamic require in ESM 7 - * @link https://github.com/hey-api/openapi-ts/issues/1079 8 - */ 9 - if (ctx.format === 'esm') { 10 - return { 11 - js: `import { createRequire } from 'module'; const require = createRequire(import.${'meta'}.url);`, 12 - }; 13 - } 4 + attw: { 5 + ignoreRules: ['cjs-resolves-to-esm'], 6 + profile: 'esm-only', 14 7 }, 15 - clean: true, 16 - dts: true, 17 - entry: ['src/index.ts'], 18 - format: ['cjs', 'esm'], 19 - minify: false, 20 - shims: false, 8 + publint: true, 21 9 sourcemap: true, 22 - treeshake: true, 23 10 });
+221 -543
pnpm-lock.yaml
··· 13 13 14 14 .: 15 15 devDependencies: 16 - '@arethetypeswrong/cli': 16 + '@arethetypeswrong/core': 17 17 specifier: 0.18.2 18 18 version: 0.18.2 19 19 '@changesets/cli': ··· 79 79 oxfmt: 80 80 specifier: 0.41.0 81 81 version: 0.41.0 82 + publint: 83 + specifier: 0.3.18 84 + version: 0.3.18 82 85 tsdown: 83 - specifier: 0.21.4 84 - version: 0.21.4(@arethetypeswrong/core@0.18.2)(@typescript/native-preview@7.0.0-dev.20260401.1)(oxc-resolver@11.19.1)(synckit@0.11.11)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3)) 86 + specifier: 0.21.7 87 + version: 0.21.7(@arethetypeswrong/core@0.18.2)(@typescript/native-preview@7.0.0-dev.20260401.1)(oxc-resolver@11.19.1)(publint@0.3.18)(synckit@0.11.11)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3)) 85 88 tsx: 86 89 specifier: 4.21.0 87 90 version: 4.21.0 ··· 153 156 version: 2.12.14(@types/node@25.2.1)(typescript@5.9.3) 154 157 nuxt: 155 158 specifier: 3.21.0 156 - version: 3.21.0(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(@vue/compiler-sfc@3.5.27)(cac@6.7.14)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(less@4.4.2)(magicast@0.5.2)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3))(yaml@2.8.2) 159 + version: 3.21.0(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(@vue/compiler-sfc@3.5.27)(cac@6.7.14)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(less@4.4.2)(magicast@0.5.2)(optionator@0.9.4)(rolldown@1.0.0-rc.12)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3))(yaml@2.8.2) 157 160 swr: 158 161 specifier: 2.4.1 159 162 version: 2.4.1(react@19.0.0) ··· 711 714 version: link:../../packages/nuxt 712 715 nuxt: 713 716 specifier: 3.14.1592 714 - version: 3.14.1592(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(less@4.4.2)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3)) 717 + version: 3.14.1592(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(less@4.4.2)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-rc.12)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3)) 715 718 vue: 716 719 specifier: 3.5.13 717 720 version: 3.5.13(typescript@5.9.3) ··· 1156 1159 version: 5.19.9 1157 1160 svelte-check: 1158 1161 specifier: 4.1.4 1159 - version: 4.1.4(picomatch@4.0.3)(svelte@5.19.9)(typescript@5.9.3) 1162 + version: 4.1.4(picomatch@4.0.4)(svelte@5.19.9)(typescript@5.9.3) 1160 1163 typescript: 1161 1164 specifier: 5.9.3 1162 1165 version: 5.9.3 ··· 1324 1327 version: 1.8.0 1325 1328 nuxt: 1326 1329 specifier: '>=3.0.0' 1327 - version: 3.14.1592(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(less@4.4.2)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@3.29.5)(sass@1.97.1)(terser@5.44.1)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3)) 1330 + version: 3.14.1592(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(db0@0.3.2)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.7.0)(less@4.4.2)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-rc.12)(rollup@3.29.5)(sass@1.97.1)(terser@5.44.1)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3)) 1328 1331 vue: 1329 1332 specifier: '>=3.5.13' 1330 1333 version: 3.5.13(typescript@5.9.3) ··· 1462 1465 version: 1.14.3 1463 1466 nuxt: 1464 1467 specifier: 3.14.1592 1465 - version: 3.14.1592(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(db0@0.3.2)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.7.0)(less@4.4.2)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(typescript@5.9.3)(vite@5.4.19(@types/node@25.2.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1))(vue-tsc@3.2.4(typescript@5.9.3)) 1468 + version: 3.14.1592(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(less@4.4.2)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-rc.12)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3)) 1466 1469 ofetch: 1467 1470 specifier: 1.5.1 1468 1471 version: 1.5.1 ··· 1576 1579 version: 3.3.2 1577 1580 nuxt: 1578 1581 specifier: 3.14.1592 1579 - version: 3.14.1592(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(less@4.4.2)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3)) 1582 + version: 3.14.1592(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(less@4.4.2)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-rc.12)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3)) 1580 1583 ofetch: 1581 1584 specifier: 1.5.1 1582 1585 version: 1.5.1 ··· 2061 2064 '@antfu/utils@0.7.10': 2062 2065 resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==} 2063 2066 2064 - '@arethetypeswrong/cli@0.18.2': 2065 - resolution: {integrity: sha512-PcFM20JNlevEDKBg4Re29Rtv2xvjvQZzg7ENnrWFSS0PHgdP2njibVFw+dRUhNkPgNfac9iUqO0ohAXqQL4hbw==} 2066 - engines: {node: '>=20'} 2067 - hasBin: true 2068 - 2069 2067 '@arethetypeswrong/core@0.18.2': 2070 2068 resolution: {integrity: sha512-GiwTmBFOU1/+UVNqqCGzFJYfBXEytUkiI+iRZ6Qx7KmUVtLm00sYySkfe203C9QtPG11yOz1ZaMek8dT/xnlgg==} 2071 2069 engines: {node: '>=20'} ··· 2121 2119 resolution: {integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==} 2122 2120 engines: {node: '>=6.9.0'} 2123 2121 2124 - '@babel/generator@8.0.0-rc.2': 2125 - resolution: {integrity: sha512-oCQ1IKPwkzCeJzAPb7Fv8rQ9k5+1sG8mf2uoHiMInPYvkRfrDJxbTIbH51U+jstlkghus0vAi3EBvkfvEsYNLQ==} 2122 + '@babel/generator@8.0.0-rc.3': 2123 + resolution: {integrity: sha512-em37/13/nR320G4jab/nIIHZgc2Wz2y/D39lxnTyxB4/D/omPQncl/lSdlnJY1OhQcRGugTSIF2l/69o31C9dA==} 2126 2124 engines: {node: ^20.19.0 || >=22.12.0} 2127 2125 2128 2126 '@babel/helper-annotate-as-pure@7.27.3': ··· 2234 2232 resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} 2235 2233 engines: {node: '>=6.9.0'} 2236 2234 2237 - '@babel/helper-string-parser@8.0.0-rc.2': 2238 - resolution: {integrity: sha512-noLx87RwlBEMrTzncWd/FvTxoJ9+ycHNg0n8yyYydIoDsLZuxknKgWRJUqcrVkNrJ74uGyhWQzQaS3q8xfGAhQ==} 2235 + '@babel/helper-string-parser@8.0.0-rc.3': 2236 + resolution: {integrity: sha512-AmwWFx1m8G/a5cXkxLxTiWl+YEoWuoFLUCwqMlNuWO1tqAYITQAbCRPUkyBHv1VOFgfjVOqEj6L3u15J5ZCzTA==} 2239 2237 engines: {node: ^20.19.0 || >=22.12.0} 2240 2238 2241 2239 '@babel/helper-validator-identifier@7.28.5': 2242 2240 resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==} 2243 2241 engines: {node: '>=6.9.0'} 2244 2242 2245 - '@babel/helper-validator-identifier@8.0.0-rc.2': 2246 - resolution: {integrity: sha512-xExUBkuXWJjVuIbO7z6q7/BA9bgfJDEhVL0ggrggLMbg0IzCUWGT1hZGE8qUH7Il7/RD/a6cZ3AAFrrlp1LF/A==} 2243 + '@babel/helper-validator-identifier@8.0.0-rc.3': 2244 + resolution: {integrity: sha512-8AWCJ2VJJyDFlGBep5GpaaQ9AAaE/FjAcrqI7jyssYhtL7WGV0DOKpJsQqM037xDbpRLHXsY8TwU7zDma7coOw==} 2247 2245 engines: {node: ^20.19.0 || >=22.12.0} 2248 2246 2249 2247 '@babel/helper-validator-option@7.27.1': ··· 2277 2275 engines: {node: '>=6.0.0'} 2278 2276 hasBin: true 2279 2277 2280 - '@babel/parser@8.0.0-rc.2': 2281 - resolution: {integrity: sha512-29AhEtcq4x8Dp3T72qvUMZHx0OMXCj4Jy/TEReQa+KWLln524Cj1fWb3QFi0l/xSpptQBR6y9RNEXuxpFvwiUQ==} 2278 + '@babel/parser@8.0.0-rc.3': 2279 + resolution: {integrity: sha512-B20dvP3MfNc/XS5KKCHy/oyWl5IA6Cn9YjXRdDlCjNmUFrjvLXMNUfQq/QUy9fnG2gYkKKcrto2YaF9B32ToOQ==} 2282 2280 engines: {node: ^20.19.0 || >=22.12.0} 2283 2281 hasBin: true 2284 2282 ··· 2752 2750 resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==} 2753 2751 engines: {node: '>=6.9.0'} 2754 2752 2755 - '@babel/types@8.0.0-rc.2': 2756 - resolution: {integrity: sha512-91gAaWRznDwSX4E2tZ1YjBuIfnQVOFDCQ2r0Toby0gu4XEbyF623kXLMA8d4ZbCu+fINcrudkmEcwSUHgDDkNw==} 2753 + '@babel/types@8.0.0-rc.3': 2754 + resolution: {integrity: sha512-mOm5ZrYmphGfqVWoH5YYMTITb3cDXsFgmvFlvkvWDMsR9X8RFnt7a0Wb6yNIdoFsiMO9WjYLq+U/FMtqIYAF8Q==} 2757 2755 engines: {node: ^20.19.0 || >=22.12.0} 2758 2756 2759 2757 '@bcoe/v8-coverage@1.0.2': ··· 5454 5452 '@oxc-project/types@0.110.0': 5455 5453 resolution: {integrity: sha512-6Ct21OIlrEnFEJk5LT4e63pk3btsI6/TusD/GStLi7wYlGJNOl1GI9qvXAnRAxQU9zqA2Oz+UwhfTOU2rPZVow==} 5456 5454 5457 - '@oxc-project/types@0.115.0': 5458 - resolution: {integrity: sha512-4n91DKnebUS4yjUHl2g3/b2T+IUdCfmoZGhmwsovZCDaJSs+QkVAM+0AqqTxHSsHfeiMuueT75cZaZcT/m0pSw==} 5455 + '@oxc-project/types@0.122.0': 5456 + resolution: {integrity: sha512-oLAl5kBpV4w69UtFZ9xqcmTi+GENWOcPF7FCrczTiBbmC0ibXxCwyvZGbO39rCVEuLGAZM84DH0pUIyyv/YJzA==} 5459 5457 5460 5458 '@oxc-resolver/binding-android-arm-eabi@11.19.1': 5461 5459 resolution: {integrity: sha512-aUs47y+xyXHUKlbhqHUjBABjvycq6YSD7bpxSW7vplUmdzAlJ93yXY6ZR0c1o1x5A/QKbENCvs3+NlY8IpIVzg==} ··· 6019 6017 6020 6018 '@poppinss/exception@1.2.2': 6021 6019 resolution: {integrity: sha512-m7bpKCD4QMlFCjA/nKTs23fuvoVFoA83brRKmObCUNmi/9tVu8Ve3w4YQAnJu4q3Tjf5fr685HYIC/IA2zHRSg==} 6020 + 6021 + '@publint/pack@0.1.4': 6022 + resolution: {integrity: sha512-HDVTWq3H0uTXiU0eeSQntcVUTPP3GamzeXI41+x7uU9J65JgWQh3qWZHblR1i0npXfFtF+mxBiU2nJH8znxWnQ==} 6023 + engines: {node: '>=18'} 6022 6024 6023 6025 '@quansync/fs@1.0.0': 6024 6026 resolution: {integrity: sha512-4TJ3DFtlf1L5LDMaM6CanJ/0lckGNtJcMjQ1NAV6zDmA0tEHKZtxNKin8EgPaVX1YzljbxckyT2tJrpQKAtngQ==} ··· 6697 6699 cpu: [arm64] 6698 6700 os: [android] 6699 6701 6700 - '@rolldown/binding-android-arm64@1.0.0-rc.9': 6701 - resolution: {integrity: sha512-lcJL0bN5hpgJfSIz/8PIf02irmyL43P+j1pTCfbD1DbLkmGRuFIA4DD3B3ZOvGqG0XiVvRznbKtN0COQVaKUTg==} 6702 + '@rolldown/binding-android-arm64@1.0.0-rc.12': 6703 + resolution: {integrity: sha512-pv1y2Fv0JybcykuiiD3qBOBdz6RteYojRFY1d+b95WVuzx211CRh+ytI/+9iVyWQ6koTh5dawe4S/yRfOFjgaA==} 6702 6704 engines: {node: ^20.19.0 || >=22.12.0} 6703 6705 cpu: [arm64] 6704 6706 os: [android] ··· 6709 6711 cpu: [arm64] 6710 6712 os: [darwin] 6711 6713 6712 - '@rolldown/binding-darwin-arm64@1.0.0-rc.9': 6713 - resolution: {integrity: sha512-J7Zk3kLYFsLtuH6U+F4pS2sYVzac0qkjcO5QxHS7OS7yZu2LRs+IXo+uvJ/mvpyUljDJ3LROZPoQfgBIpCMhdQ==} 6714 + '@rolldown/binding-darwin-arm64@1.0.0-rc.12': 6715 + resolution: {integrity: sha512-cFYr6zTG/3PXXF3pUO+umXxt1wkRK/0AYT8lDwuqvRC+LuKYWSAQAQZjCWDQpAH172ZV6ieYrNnFzVVcnSflAg==} 6714 6716 engines: {node: ^20.19.0 || >=22.12.0} 6715 6717 cpu: [arm64] 6716 6718 os: [darwin] ··· 6721 6723 cpu: [x64] 6722 6724 os: [darwin] 6723 6725 6724 - '@rolldown/binding-darwin-x64@1.0.0-rc.9': 6725 - resolution: {integrity: sha512-iwtmmghy8nhfRGeNAIltcNXzD0QMNaaA5U/NyZc1Ia4bxrzFByNMDoppoC+hl7cDiUq5/1CnFthpT9n+UtfFyg==} 6726 + '@rolldown/binding-darwin-x64@1.0.0-rc.12': 6727 + resolution: {integrity: sha512-ZCsYknnHzeXYps0lGBz8JrF37GpE9bFVefrlmDrAQhOEi4IOIlcoU1+FwHEtyXGx2VkYAvhu7dyBf75EJQffBw==} 6726 6728 engines: {node: ^20.19.0 || >=22.12.0} 6727 6729 cpu: [x64] 6728 6730 os: [darwin] ··· 6733 6735 cpu: [x64] 6734 6736 os: [freebsd] 6735 6737 6736 - '@rolldown/binding-freebsd-x64@1.0.0-rc.9': 6737 - resolution: {integrity: sha512-DLFYI78SCiZr5VvdEplsVC2Vx53lnA4/Ga5C65iyldMVaErr86aiqCoNBLl92PXPfDtUYjUh+xFFor40ueNs4Q==} 6738 + '@rolldown/binding-freebsd-x64@1.0.0-rc.12': 6739 + resolution: {integrity: sha512-dMLeprcVsyJsKolRXyoTH3NL6qtsT0Y2xeuEA8WQJquWFXkEC4bcu1rLZZSnZRMtAqwtrF/Ib9Ddtpa/Gkge9Q==} 6738 6740 engines: {node: ^20.19.0 || >=22.12.0} 6739 6741 cpu: [x64] 6740 6742 os: [freebsd] ··· 6745 6747 cpu: [arm] 6746 6748 os: [linux] 6747 6749 6748 - '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.9': 6749 - resolution: {integrity: sha512-CsjTmTwd0Hri6iTw/DRMK7kOZ7FwAkrO4h8YWKoX/kcj833e4coqo2wzIFywtch/8Eb5enQ/lwLM7w6JX1W5RQ==} 6750 + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.12': 6751 + resolution: {integrity: sha512-YqWjAgGC/9M1lz3GR1r1rP79nMgo3mQiiA+Hfo+pvKFK1fAJ1bCi0ZQVh8noOqNacuY1qIcfyVfP6HoyBRZ85Q==} 6750 6752 engines: {node: ^20.19.0 || >=22.12.0} 6751 6753 cpu: [arm] 6752 6754 os: [linux] ··· 6758 6760 os: [linux] 6759 6761 libc: [glibc] 6760 6762 6761 - '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.9': 6762 - resolution: {integrity: sha512-2x9O2JbSPxpxMDhP9Z74mahAStibTlrBMW0520+epJH5sac7/LwZW5Bmg/E6CXuEF53JJFW509uP+lSedaUNxg==} 6763 + '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.12': 6764 + resolution: {integrity: sha512-/I5AS4cIroLpslsmzXfwbe5OmWvSsrFuEw3mwvbQ1kDxJ822hFHIx+vsN/TAzNVyepI/j/GSzrtCIwQPeKCLIg==} 6763 6765 engines: {node: ^20.19.0 || >=22.12.0} 6764 6766 cpu: [arm64] 6765 6767 os: [linux] ··· 6772 6774 os: [linux] 6773 6775 libc: [musl] 6774 6776 6775 - '@rolldown/binding-linux-arm64-musl@1.0.0-rc.9': 6776 - resolution: {integrity: sha512-JA1QRW31ogheAIRhIg9tjMfsYbglXXYGNPLdPEYrwFxdbkQCAzvpSCSHCDWNl4hTtrol8WeboCSEpjdZK8qrCg==} 6777 + '@rolldown/binding-linux-arm64-musl@1.0.0-rc.12': 6778 + resolution: {integrity: sha512-V6/wZztnBqlx5hJQqNWwFdxIKN0m38p8Jas+VoSfgH54HSj9tKTt1dZvG6JRHcjh6D7TvrJPWFGaY9UBVOaWPw==} 6777 6779 engines: {node: ^20.19.0 || >=22.12.0} 6778 6780 cpu: [arm64] 6779 6781 os: [linux] 6780 6782 libc: [musl] 6781 6783 6782 - '@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.9': 6783 - resolution: {integrity: sha512-aOKU9dJheda8Kj8Y3w9gnt9QFOO+qKPAl8SWd7JPHP+Cu0EuDAE5wokQubLzIDQWg2myXq2XhTpOVS07qqvT+w==} 6784 + '@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.12': 6785 + resolution: {integrity: sha512-AP3E9BpcUYliZCxa3w5Kwj9OtEVDYK6sVoUzy4vTOJsjPOgdaJZKFmN4oOlX0Wp0RPV2ETfmIra9x1xuayFB7g==} 6784 6786 engines: {node: ^20.19.0 || >=22.12.0} 6785 6787 cpu: [ppc64] 6786 6788 os: [linux] 6787 6789 libc: [glibc] 6788 6790 6789 - '@rolldown/binding-linux-s390x-gnu@1.0.0-rc.9': 6790 - resolution: {integrity: sha512-OalO94fqj7IWRn3VdXWty75jC5dk4C197AWEuMhIpvVv2lw9fiPhud0+bW2ctCxb3YoBZor71QHbY+9/WToadA==} 6791 + '@rolldown/binding-linux-s390x-gnu@1.0.0-rc.12': 6792 + resolution: {integrity: sha512-nWwpvUSPkoFmZo0kQazZYOrT7J5DGOJ/+QHHzjvNlooDZED8oH82Yg67HvehPPLAg5fUff7TfWFHQS8IV1n3og==} 6791 6793 engines: {node: ^20.19.0 || >=22.12.0} 6792 6794 cpu: [s390x] 6793 6795 os: [linux] ··· 6800 6802 os: [linux] 6801 6803 libc: [glibc] 6802 6804 6803 - '@rolldown/binding-linux-x64-gnu@1.0.0-rc.9': 6804 - resolution: {integrity: sha512-cVEl1vZtBsBZna3YMjGXNvnYYrOJ7RzuWvZU0ffvJUexWkukMaDuGhUXn0rjnV0ptzGVkvc+vW9Yqy6h8YX4pg==} 6805 + '@rolldown/binding-linux-x64-gnu@1.0.0-rc.12': 6806 + resolution: {integrity: sha512-RNrafz5bcwRy+O9e6P8Z/OCAJW/A+qtBczIqVYwTs14pf4iV1/+eKEjdOUta93q2TsT/FI0XYDP3TCky38LMAg==} 6805 6807 engines: {node: ^20.19.0 || >=22.12.0} 6806 6808 cpu: [x64] 6807 6809 os: [linux] ··· 6814 6816 os: [linux] 6815 6817 libc: [musl] 6816 6818 6817 - '@rolldown/binding-linux-x64-musl@1.0.0-rc.9': 6818 - resolution: {integrity: sha512-UzYnKCIIc4heAKgI4PZ3dfBGUZefGCJ1TPDuLHoCzgrMYPb5Rv6TLFuYtyM4rWyHM7hymNdsg5ik2C+UD9VDbA==} 6819 + '@rolldown/binding-linux-x64-musl@1.0.0-rc.12': 6820 + resolution: {integrity: sha512-Jpw/0iwoKWx3LJ2rc1yjFrj+T7iHZn2JDg1Yny1ma0luviFS4mhAIcd1LFNxK3EYu3DHWCps0ydXQ5i/rrJ2ig==} 6819 6821 engines: {node: ^20.19.0 || >=22.12.0} 6820 6822 cpu: [x64] 6821 6823 os: [linux] ··· 6827 6829 cpu: [arm64] 6828 6830 os: [openharmony] 6829 6831 6830 - '@rolldown/binding-openharmony-arm64@1.0.0-rc.9': 6831 - resolution: {integrity: sha512-+6zoiF+RRyf5cdlFQP7nm58mq7+/2PFaY2DNQeD4B87N36JzfF/l9mdBkkmTvSYcYPE8tMh/o3cRlsx1ldLfog==} 6832 + '@rolldown/binding-openharmony-arm64@1.0.0-rc.12': 6833 + resolution: {integrity: sha512-vRugONE4yMfVn0+7lUKdKvN4D5YusEiPilaoO2sgUWpCvrncvWgPMzK00ZFFJuiPgLwgFNP5eSiUlv2tfc+lpA==} 6832 6834 engines: {node: ^20.19.0 || >=22.12.0} 6833 6835 cpu: [arm64] 6834 6836 os: [openharmony] ··· 6838 6840 engines: {node: '>=14.0.0'} 6839 6841 cpu: [wasm32] 6840 6842 6841 - '@rolldown/binding-wasm32-wasi@1.0.0-rc.9': 6842 - resolution: {integrity: sha512-rgFN6sA/dyebil3YTlL2evvi/M+ivhfnyxec7AccTpRPccno/rPoNlqybEZQBkcbZu8Hy+eqNJCqfBR8P7Pg8g==} 6843 + '@rolldown/binding-wasm32-wasi@1.0.0-rc.12': 6844 + resolution: {integrity: sha512-ykGiLr/6kkiHc0XnBfmFJuCjr5ZYKKofkx+chJWDjitX+KsJuAmrzWhwyOMSHzPhzOHOy7u9HlFoa5MoAOJ/Zg==} 6843 6845 engines: {node: '>=14.0.0'} 6844 6846 cpu: [wasm32] 6845 6847 ··· 6849 6851 cpu: [arm64] 6850 6852 os: [win32] 6851 6853 6852 - '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.9': 6853 - resolution: {integrity: sha512-lHVNUG/8nlF1IQk1C0Ci574qKYyty2goMiPlRqkC5R+3LkXDkL5Dhx8ytbxq35m+pkHVIvIxviD+TWLdfeuadA==} 6854 + '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.12': 6855 + resolution: {integrity: sha512-5eOND4duWkwx1AzCxadcOrNeighiLwMInEADT0YM7xeEOOFcovWZCq8dadXgcRHSf3Ulh1kFo/qvzoFiCLOL1Q==} 6854 6856 engines: {node: ^20.19.0 || >=22.12.0} 6855 6857 cpu: [arm64] 6856 6858 os: [win32] ··· 6861 6863 cpu: [x64] 6862 6864 os: [win32] 6863 6865 6864 - '@rolldown/binding-win32-x64-msvc@1.0.0-rc.9': 6865 - resolution: {integrity: sha512-G0oA4+w1iY5AGi5HcDTxWsoxF509hrFIPB2rduV5aDqS9FtDg1CAfa7V34qImbjfhIcA8C+RekocJZA96EarwQ==} 6866 + '@rolldown/binding-win32-x64-msvc@1.0.0-rc.12': 6867 + resolution: {integrity: sha512-PyqoipaswDLAZtot351MLhrlrh6lcZPo2LSYE+VDxbVk24LVKAGOuE4hb8xZQmrPAuEtTZW8E6D2zc5EUZX4Lw==} 6866 6868 engines: {node: ^20.19.0 || >=22.12.0} 6867 6869 cpu: [x64] 6868 6870 os: [win32] ··· 6870 6872 '@rolldown/pluginutils@1.0.0-beta.58': 6871 6873 resolution: {integrity: sha512-qWhDs6yFGR5xDfdrwiSa3CWGIHxD597uGE/A9xGqytBjANvh4rLCTTkq7szhMV4+Ygh+PMS90KVJ8xWG/TkX4w==} 6872 6874 6875 + '@rolldown/pluginutils@1.0.0-rc.12': 6876 + resolution: {integrity: sha512-HHMwmarRKvoFsJorqYlFeFRzXZqCt2ETQlEDOb9aqssrnVBB1/+xgTGtuTrIk5vzLNX1MjMtTf7W9z3tsSbrxw==} 6877 + 6873 6878 '@rolldown/pluginutils@1.0.0-rc.2': 6874 6879 resolution: {integrity: sha512-izyXV/v+cHiRfozX62W9htOAvwMo4/bXKDrQ+vom1L1qRuexPock/7VZDAhnpHCLNejd3NJ6hiab+tO0D44Rgw==} 6875 - 6876 - '@rolldown/pluginutils@1.0.0-rc.9': 6877 - resolution: {integrity: sha512-w6oiRWgEBl04QkFZgmW+jnU1EC9b57Oihi2ot3HNWIQRqgHp5PnYDia5iZ5FF7rpa4EQdiqMDXjlqKGXBhsoXw==} 6878 6880 6879 6881 '@rollup/plugin-alias@5.1.1': 6880 6882 resolution: {integrity: sha512-PR9zDb+rOzkRb2VD+EuKB7UC41vU5DIwZ5qqCpk0KJudcWAyi8rvYOhS7+L5aZCspw1stTViLgN5v6FF1p5cgQ==} ··· 7229 7231 resolution: {integrity: sha512-mNe0Iigql08YupSOGv197YdHpPPr+EzDZmfCgMc7RPNaZTw5aLN01nBl6CHJOh3BGtnMIj83EeN4butBchc8Ag==} 7230 7232 engines: {node: ^20.17.0 || >=22.9.0} 7231 7233 7232 - '@sindresorhus/is@4.6.0': 7233 - resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} 7234 - engines: {node: '>=10'} 7235 - 7236 7234 '@sindresorhus/is@7.0.2': 7237 7235 resolution: {integrity: sha512-d9xRovfKNz1SKieM0qJdO+PQonjnnIfSNWfHYnBSJ9hkjm0ZPw6HlxscDXYstp3z+7V2GOFHc+J0CYrYTjqCJw==} 7238 7236 engines: {node: '>=18'} ··· 9154 9152 resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==} 9155 9153 engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} 9156 9154 9157 - char-regex@1.0.2: 9158 - resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} 9159 - engines: {node: '>=10'} 9160 - 9161 9155 character-entities-html4@2.1.0: 9162 9156 resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} 9163 9157 ··· 9213 9207 resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==} 9214 9208 engines: {node: '>=18'} 9215 9209 9216 - cli-highlight@2.1.11: 9217 - resolution: {integrity: sha512-9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg==} 9218 - engines: {node: '>=8.0.0', npm: '>=5.0.0'} 9219 - hasBin: true 9220 - 9221 9210 cli-spinners@3.4.0: 9222 9211 resolution: {integrity: sha512-bXfOC4QcT1tKXGorxL3wbJm6XJPDqEnij2gQ2m7ESQuE+/z9YFIWnl/5RpTiKWbMq3EVKR4fRLJGn6DVfu0mpw==} 9223 9212 engines: {node: '>=18.20'} 9224 9213 9225 - cli-table3@0.6.5: 9226 - resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==} 9227 - engines: {node: 10.* || >= 12.*} 9228 - 9229 9214 cli-truncate@5.1.1: 9230 9215 resolution: {integrity: sha512-SroPvNHxUnk+vIW/dOSfNqdy1sPEFkrTk6TUtqLCnBlo3N7TNYYkzzN7uSD6+jVjrdO4+p8nH7JzH6cIvUem6A==} 9231 9216 engines: {node: '>=20'} ··· 9987 9972 emoji-regex@9.2.2: 9988 9973 resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 9989 9974 9990 - emojilib@2.4.0: 9991 - resolution: {integrity: sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==} 9992 - 9993 9975 emojis-list@3.0.0: 9994 9976 resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} 9995 9977 engines: {node: '>= 4'} ··· 10779 10761 get-tsconfig@4.13.6: 10780 10762 resolution: {integrity: sha512-shZT/QMiSHc/YBLxxOkMtgSid5HFoauqCE3/exfsEcwg1WkeqjG+V40yBbBrsD+jW2HDXcs28xOfcbm2jI8Ddw==} 10781 10763 10764 + get-tsconfig@4.13.7: 10765 + resolution: {integrity: sha512-7tN6rFgBlMgpBML5j8typ92BKFi2sFQvIdpAqLA2beia5avZDrMs0FLZiM5etShWq5irVyGcGMEA1jcDaK7A/Q==} 10766 + 10782 10767 giget@1.2.5: 10783 10768 resolution: {integrity: sha512-r1ekGw/Bgpi3HLV3h1MRBIlSAdHoIMklpaQ3OQLFcRw9PwAj2rqigvIbg+dBUI51OxVI2jsEtDywDBjSiuf7Ug==} 10784 10769 hasBin: true ··· 10952 10937 headers-polyfill@4.0.3: 10953 10938 resolution: {integrity: sha512-IScLbePpkvO846sIwOtOTDjutRMWdXdJmXdMvk6gCBHxFO8d+QKOQedyZSxFTTFYRSmlgSTDtXqqq4pcenBXLQ==} 10954 10939 10955 - highlight.js@10.7.3: 10956 - resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==} 10957 - 10958 10940 hono@4.11.8: 10959 10941 resolution: {integrity: sha512-eVkB/CYCCei7K2WElZW9yYQFWssG0DhaDhVvr7wy5jJ22K+ck8fWW0EsLpB0sITUTvPnc97+rrbQqIr5iqiy9Q==} 10960 10942 engines: {node: '>=16.9.0'} 10961 10943 10962 10944 hookable@5.5.3: 10963 10945 resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==} 10964 - 10965 - hookable@6.0.1: 10966 - resolution: {integrity: sha512-uKGyY8BuzN/a5gvzvA+3FVWo0+wUjgtfSdnmjtrOVwQCZPHpHDH2WRO3VZSOeluYrHoDCiXFffZXs8Dj1ULWtw==} 10967 10946 10968 10947 hookable@6.1.0: 10969 10948 resolution: {integrity: sha512-ZoKZSJgu8voGK2geJS+6YtYjvIzu9AOM/KZXsBxr83uhLL++e9pEv/dlgwgy3dvHg06kTz6JOh1hk3C8Ceiymw==} ··· 11956 11935 resolution: {integrity: sha512-MqIQVVkz+uGEHi3TsHx/czcxxCbRIL7sv5K5DnYw/tI+apY54IbPefV/cmgxp6LoJSEx/TqcHdLs/298afG5QQ==} 11957 11936 engines: {node: '>=6'} 11958 11937 11959 - marked-terminal@7.3.0: 11960 - resolution: {integrity: sha512-t4rBvPsHc57uE/2nJOLmMbZCQ4tgAccAED3ngXQqW6g+TxA488JzJ+FK3lQkzBQOI1mRV/r/Kq+1ZlJ4D0owQw==} 11961 - engines: {node: '>=16.0.0'} 11962 - peerDependencies: 11963 - marked: '>=1 <16' 11964 - 11965 - marked@9.1.6: 11966 - resolution: {integrity: sha512-jcByLnIFkd5gSXZmjNvS1TlmRhCXZjIzHYlaGkPlLIekG55JDR2Z4va9tZwCiP+/RDERiNhMOFu01xd6O5ct1Q==} 11967 - engines: {node: '>= 16'} 11968 - hasBin: true 11969 - 11970 11938 math-intrinsics@1.1.0: 11971 11939 resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} 11972 11940 engines: {node: '>= 0.4'} ··· 12445 12413 engines: {node: '>=10.5.0'} 12446 12414 deprecated: Use your platform's native DOMException instead 12447 12415 12448 - node-emoji@2.2.0: 12449 - resolution: {integrity: sha512-Z3lTE9pLaJF47NyMhd4ww1yFTAP8YhYI8SleJiHzM46Fgpm5cnNzSl9XfzFNqbaz+VlJrIj3fXQ4DeN1Rjm6cw==} 12450 - engines: {node: '>=18'} 12451 - 12452 12416 node-fetch-native@1.6.7: 12453 12417 resolution: {integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==} 12454 12418 ··· 12872 12836 package-manager-detector@1.3.0: 12873 12837 resolution: {integrity: sha512-ZsEbbZORsyHuO00lY1kV3/t72yp6Ysay6Pd17ZAlNGuGwmWDLCJxFpRs0IzfXfj1o4icJOkUEioexFHzyPurSQ==} 12874 12838 12839 + package-manager-detector@1.6.0: 12840 + resolution: {integrity: sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==} 12841 + 12875 12842 packrup@0.1.2: 12876 12843 resolution: {integrity: sha512-ZcKU7zrr5GlonoS9cxxrb5HVswGnyj6jQvwFBa6p5VFw7G71VAHcUKL5wyZSU/ECtPM/9gacWxy2KFQKt1gMNA==} 12877 12844 ··· 12914 12881 parse5-html-rewriting-stream@8.0.0: 12915 12882 resolution: {integrity: sha512-wzh11mj8KKkno1pZEu+l2EVeWsuKDfR5KNWZOTsslfUX8lPDZx77m9T0kIoAVkFtD1nx6YF8oh4BnPHvxMtNMw==} 12916 12883 12917 - parse5-htmlparser2-tree-adapter@6.0.1: 12918 - resolution: {integrity: sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==} 12919 - 12920 12884 parse5-sax-parser@8.0.0: 12921 12885 resolution: {integrity: sha512-/dQ8UzHZwnrzs3EvDj6IkKrD/jIZyTlB+8XrHJvcjNgRdmWruNdN9i9RK/JtxakmlUdPwKubKPTCqvbTgzGhrw==} 12922 - 12923 - parse5@5.1.1: 12924 - resolution: {integrity: sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==} 12925 - 12926 - parse5@6.0.1: 12927 - resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} 12928 12886 12929 12887 parse5@7.3.0: 12930 12888 resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==} ··· 13021 12979 13022 12980 picomatch@4.0.3: 13023 12981 resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} 12982 + engines: {node: '>=12'} 12983 + 12984 + picomatch@4.0.4: 12985 + resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==} 13024 12986 engines: {node: '>=12'} 13025 12987 13026 12988 pidtree@0.6.0: ··· 13484 13446 prr@1.0.1: 13485 13447 resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} 13486 13448 13449 + publint@0.3.18: 13450 + resolution: {integrity: sha512-JRJFeBTrfx4qLwEuGFPk+haJOJN97KnPuK01yj+4k/Wj5BgoOK5uNsivporiqBjk2JDaslg7qJOhGRnpltGeog==} 13451 + engines: {node: '>=18'} 13452 + hasBin: true 13453 + 13487 13454 pump@3.0.3: 13488 13455 resolution: {integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==} 13489 13456 ··· 13805 13772 deprecated: Rimraf versions prior to v4 are no longer supported 13806 13773 hasBin: true 13807 13774 13808 - rolldown-plugin-dts@0.22.5: 13809 - resolution: {integrity: sha512-M/HXfM4cboo+jONx9Z0X+CUf3B5tCi7ni+kR5fUW50Fp9AlZk0oVLesibGWgCXDKFp5lpgQ9yhKoImUFjl3VZw==} 13775 + rolldown-plugin-dts@0.23.2: 13776 + resolution: {integrity: sha512-PbSqLawLgZBGcOGT3yqWBGn4cX+wh2nt5FuBGdcMHyOhoukmjbhYAl8NT9sE4U38Cm9tqLOIQeOrvzeayM0DLQ==} 13810 13777 engines: {node: '>=20.19.0'} 13811 13778 peerDependencies: 13812 13779 '@ts-macro/tsc': ^0.3.6 13813 - '@typescript/native-preview': '>=7.0.0-dev.20250601.1' 13814 - rolldown: ^1.0.0-rc.3 13815 - typescript: ^5.0.0 || ^6.0.0-beta 13780 + '@typescript/native-preview': '>=7.0.0-dev.20260325.1' 13781 + rolldown: ^1.0.0-rc.12 13782 + typescript: ^5.0.0 || ^6.0.0 13816 13783 vue-tsc: ~3.2.0 13817 13784 peerDependenciesMeta: 13818 13785 '@ts-macro/tsc': ··· 13829 13796 engines: {node: ^20.19.0 || >=22.12.0} 13830 13797 hasBin: true 13831 13798 13832 - rolldown@1.0.0-rc.9: 13833 - resolution: {integrity: sha512-9EbgWge7ZH+yqb4d2EnELAntgPTWbfL8ajiTW+SyhJEC4qhBbkCKbqFV4Ge4zmu5ziQuVbWxb/XwLZ+RIO7E8Q==} 13799 + rolldown@1.0.0-rc.12: 13800 + resolution: {integrity: sha512-yP4USLIMYrwpPHEFB5JGH1uxhcslv6/hL0OyvTuY+3qlOSJvZ7ntYnoWpehBxufkgN0cvXxppuTu5hHa/zPh+A==} 13834 13801 engines: {node: ^20.19.0 || >=22.12.0} 13835 13802 hasBin: true 13836 13803 ··· 14168 14135 sisteransi@1.0.5: 14169 14136 resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} 14170 14137 14171 - skin-tone@2.0.0: 14172 - resolution: {integrity: sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==} 14173 - engines: {node: '>=8'} 14174 - 14175 14138 slash@3.0.0: 14176 14139 resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 14177 14140 engines: {node: '>=8'} ··· 14476 14439 resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} 14477 14440 engines: {node: '>=10'} 14478 14441 14479 - supports-hyperlinks@3.2.0: 14480 - resolution: {integrity: sha512-zFObLMyZeEwzAoKCyu1B91U79K2t7ApXuQfo8OuxwXLDgcKxuwM+YvcbIhm6QWqz7mHUH1TVytR1PwVVjEuMig==} 14481 - engines: {node: '>=14.18'} 14482 - 14483 14442 supports-preserve-symlinks-flag@1.0.0: 14484 14443 resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 14485 14444 engines: {node: '>= 0.4'} ··· 14772 14731 tsconfig-paths@3.15.0: 14773 14732 resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} 14774 14733 14775 - tsdown@0.21.4: 14776 - resolution: {integrity: sha512-Q/kBi8SXkr4X6JI/NAZKZY1UuiEcbuXtIskL4tZCsgpDiEPM/2W6lC+OonNA31S+V3KsWedFvbFDBs23hvt+Aw==} 14734 + tsdown@0.21.7: 14735 + resolution: {integrity: sha512-ukKIxKQzngkWvOYJAyptudclkm4VQqbjq+9HF5K5qDO8GJsYtMh8gIRwicbnZEnvFPr6mquFwYAVZ8JKt3rY2g==} 14777 14736 engines: {node: '>=20.19.0'} 14778 14737 hasBin: true 14779 14738 peerDependencies: 14780 14739 '@arethetypeswrong/core': ^0.18.1 14781 - '@tsdown/css': 0.21.4 14782 - '@tsdown/exe': 0.21.4 14740 + '@tsdown/css': 0.21.7 14741 + '@tsdown/exe': 0.21.7 14783 14742 '@vitejs/devtools': '*' 14784 14743 publint: ^0.3.0 14785 - typescript: ^5.0.0 14744 + typescript: ^5.0.0 || ^6.0.0 14786 14745 unplugin-unused: ^0.5.0 14787 14746 peerDependenciesMeta: 14788 14747 '@arethetypeswrong/core': ··· 14981 14940 resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==} 14982 14941 engines: {node: '>=4'} 14983 14942 14984 - unicode-emoji-modifier-base@1.0.0: 14985 - resolution: {integrity: sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==} 14986 - engines: {node: '>=4'} 14987 - 14988 14943 unicode-match-property-ecmascript@2.0.0: 14989 14944 resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} 14990 14945 engines: {node: '>=4'} ··· 15120 15075 unrs-resolver@1.11.1: 15121 15076 resolution: {integrity: sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==} 15122 15077 15123 - unrun@0.2.32: 15124 - resolution: {integrity: sha512-opd3z6791rf281JdByf0RdRQrpcc7WyzqittqIXodM/5meNWdTwrVxeyzbaCp4/Rgls/um14oUaif1gomO8YGg==} 15078 + unrun@0.2.34: 15079 + resolution: {integrity: sha512-LyaghRBR++r7svhDK6tnDz2XaYHWdneBOA0jbS8wnRsHerI9MFljX4fIiTgbbNbEVzZ0C9P1OjWLLe1OqoaaEw==} 15125 15080 engines: {node: '>=20.19.0'} 15126 15081 hasBin: true 15127 15082 peerDependencies: ··· 16888 16843 16889 16844 '@antfu/utils@0.7.10': {} 16890 16845 16891 - '@arethetypeswrong/cli@0.18.2': 16892 - dependencies: 16893 - '@arethetypeswrong/core': 0.18.2 16894 - chalk: 4.1.2 16895 - cli-table3: 0.6.5 16896 - commander: 10.0.1 16897 - marked: 9.1.6 16898 - marked-terminal: 7.3.0(marked@9.1.6) 16899 - semver: 7.7.3 16900 - 16901 16846 '@arethetypeswrong/core@0.18.2': 16902 16847 dependencies: 16903 16848 '@andrewbranch/untar.js': 1.0.3 16904 16849 '@loaderkit/resolve': 1.0.4 16905 16850 cjs-module-lexer: 1.4.3 16906 16851 fflate: 0.8.2 16907 - lru-cache: 11.2.2 16852 + lru-cache: 11.2.5 16908 16853 semver: 7.7.3 16909 16854 typescript: 5.6.1-rc 16910 16855 validate-npm-package-name: 5.0.1 ··· 17025 16970 '@jridgewell/trace-mapping': 0.3.31 17026 16971 jsesc: 3.1.0 17027 16972 17028 - '@babel/generator@8.0.0-rc.2': 16973 + '@babel/generator@8.0.0-rc.3': 17029 16974 dependencies: 17030 - '@babel/parser': 8.0.0-rc.2 17031 - '@babel/types': 8.0.0-rc.2 16975 + '@babel/parser': 8.0.0-rc.3 16976 + '@babel/types': 8.0.0-rc.3 17032 16977 '@jridgewell/gen-mapping': 0.3.13 17033 16978 '@jridgewell/trace-mapping': 0.3.31 17034 16979 '@types/jsesc': 2.5.1 ··· 17243 17188 17244 17189 '@babel/helper-string-parser@7.27.1': {} 17245 17190 17246 - '@babel/helper-string-parser@8.0.0-rc.2': {} 17191 + '@babel/helper-string-parser@8.0.0-rc.3': {} 17247 17192 17248 17193 '@babel/helper-validator-identifier@7.28.5': {} 17249 17194 17250 - '@babel/helper-validator-identifier@8.0.0-rc.2': {} 17195 + '@babel/helper-validator-identifier@8.0.0-rc.3': {} 17251 17196 17252 17197 '@babel/helper-validator-option@7.27.1': {} 17253 17198 ··· 17281 17226 dependencies: 17282 17227 '@babel/types': 7.29.0 17283 17228 17284 - '@babel/parser@8.0.0-rc.2': 17229 + '@babel/parser@8.0.0-rc.3': 17285 17230 dependencies: 17286 - '@babel/types': 8.0.0-rc.2 17231 + '@babel/types': 8.0.0-rc.3 17287 17232 17288 17233 '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5(@babel/core@7.28.5)': 17289 17234 dependencies: ··· 17904 17849 '@babel/helper-string-parser': 7.27.1 17905 17850 '@babel/helper-validator-identifier': 7.28.5 17906 17851 17907 - '@babel/types@8.0.0-rc.2': 17852 + '@babel/types@8.0.0-rc.3': 17908 17853 dependencies: 17909 - '@babel/helper-string-parser': 8.0.0-rc.2 17910 - '@babel/helper-validator-identifier': 8.0.0-rc.2 17854 + '@babel/helper-string-parser': 8.0.0-rc.3 17855 + '@babel/helper-validator-identifier': 8.0.0-rc.3 17911 17856 17912 17857 '@bcoe/v8-coverage@1.0.2': {} 17913 17858 ··· 19898 19843 19899 19844 '@nuxt/devalue@2.0.2': {} 19900 19845 19901 - '@nuxt/devtools-kit@1.7.0(magicast@0.3.5)(vite@5.4.19(@types/node@25.2.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1))': 19902 - dependencies: 19903 - '@nuxt/kit': 3.21.0(magicast@0.3.5) 19904 - '@nuxt/schema': 3.16.2 19905 - execa: 7.2.0 19906 - vite: 5.4.19(@types/node@25.2.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1) 19907 - transitivePeerDependencies: 19908 - - magicast 19909 - 19910 19846 '@nuxt/devtools-kit@1.7.0(magicast@0.3.5)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))': 19911 19847 dependencies: 19912 19848 '@nuxt/kit': 3.21.0(magicast@0.3.5) ··· 20003 19939 - utf-8-validate 20004 19940 - vue 20005 19941 20006 - '@nuxt/devtools@1.7.0(rollup@4.56.0)(vite@5.4.19(@types/node@25.2.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1))(vue@3.5.25(typescript@5.9.3))': 20007 - dependencies: 20008 - '@antfu/utils': 0.7.10 20009 - '@nuxt/devtools-kit': 1.7.0(magicast@0.3.5)(vite@5.4.19(@types/node@25.2.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)) 20010 - '@nuxt/devtools-wizard': 1.7.0 20011 - '@nuxt/kit': 3.21.0(magicast@0.3.5) 20012 - '@vue/devtools-core': 7.6.8(vite@5.4.19(@types/node@25.2.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1))(vue@3.5.25(typescript@5.9.3)) 20013 - '@vue/devtools-kit': 7.6.8 20014 - birpc: 0.2.19 20015 - consola: 3.4.2 20016 - cronstrue: 2.59.0 20017 - destr: 2.0.5 20018 - error-stack-parser-es: 0.1.5 20019 - execa: 7.2.0 20020 - fast-npm-meta: 0.2.2 20021 - flatted: 3.3.3 20022 - get-port-please: 3.2.0 20023 - hookable: 5.5.3 20024 - image-meta: 0.2.1 20025 - is-installed-globally: 1.0.0 20026 - launch-editor: 2.11.1 20027 - local-pkg: 0.5.1 20028 - magicast: 0.3.5 20029 - nypm: 0.4.1 20030 - ohash: 1.1.6 20031 - pathe: 1.1.2 20032 - perfect-debounce: 1.0.0 20033 - pkg-types: 1.3.1 20034 - rc9: 2.1.2 20035 - scule: 1.3.0 20036 - semver: 7.7.3 20037 - simple-git: 3.28.0 20038 - sirv: 3.0.2 20039 - tinyglobby: 0.2.15 20040 - unimport: 3.14.6(rollup@4.56.0) 20041 - vite: 5.4.19(@types/node@25.2.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1) 20042 - vite-plugin-inspect: 0.8.9(@nuxt/kit@3.21.0(magicast@0.3.5))(rollup@4.56.0)(vite@5.4.19(@types/node@25.2.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)) 20043 - vite-plugin-vue-inspector: 5.3.2(vite@5.4.19(@types/node@25.2.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)) 20044 - which: 3.0.1 20045 - ws: 8.18.3 20046 - transitivePeerDependencies: 20047 - - bufferutil 20048 - - rollup 20049 - - supports-color 20050 - - utf-8-validate 20051 - - vue 20052 - 20053 19942 '@nuxt/devtools@1.7.0(rollup@4.56.0)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.25(typescript@5.9.3))': 20054 19943 dependencies: 20055 19944 '@antfu/utils': 0.7.10 ··· 20313 20202 - typescript 20314 20203 - vue-tsc 20315 20204 20316 - '@nuxt/nitro-server@3.21.0(@netlify/blobs@9.1.2)(db0@0.3.4)(encoding@0.1.13)(ioredis@5.9.2)(magicast@0.5.2)(nuxt@3.21.0(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(@vue/compiler-sfc@3.5.27)(cac@6.7.14)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(less@4.4.2)(magicast@0.5.2)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3))(yaml@2.8.2))(rolldown@1.0.0-rc.9)(typescript@5.9.3)': 20205 + '@nuxt/nitro-server@3.21.0(@netlify/blobs@9.1.2)(db0@0.3.4)(encoding@0.1.13)(ioredis@5.9.2)(magicast@0.5.2)(nuxt@3.21.0(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(@vue/compiler-sfc@3.5.27)(cac@6.7.14)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(less@4.4.2)(magicast@0.5.2)(optionator@0.9.4)(rolldown@1.0.0-rc.12)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3))(yaml@2.8.2))(rolldown@1.0.0-rc.12)(typescript@5.9.3)': 20317 20206 dependencies: 20318 20207 '@nuxt/devalue': 2.0.2 20319 20208 '@nuxt/kit': 3.21.0(magicast@0.5.2) ··· 20330 20219 impound: 1.0.0 20331 20220 klona: 2.0.6 20332 20221 mocked-exports: 0.1.1 20333 - nitropack: 2.13.1(@netlify/blobs@9.1.2)(encoding@0.1.13)(rolldown@1.0.0-rc.9) 20334 - nuxt: 3.21.0(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(@vue/compiler-sfc@3.5.27)(cac@6.7.14)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(less@4.4.2)(magicast@0.5.2)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3))(yaml@2.8.2) 20222 + nitropack: 2.13.1(@netlify/blobs@9.1.2)(encoding@0.1.13)(rolldown@1.0.0-rc.12) 20223 + nuxt: 3.21.0(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(@vue/compiler-sfc@3.5.27)(cac@6.7.14)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(less@4.4.2)(magicast@0.5.2)(optionator@0.9.4)(rolldown@1.0.0-rc.12)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3))(yaml@2.8.2) 20335 20224 ohash: 2.0.11 20336 20225 pathe: 2.0.3 20337 20226 pkg-types: 2.3.0 ··· 20510 20399 - typescript 20511 20400 - vite 20512 20401 20513 - '@nuxt/vite-builder@3.14.1592(@types/node@25.2.1)(eslint@9.39.2(jiti@2.6.1))(less@4.4.2)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@3.29.5)(sass@1.97.1)(terser@5.44.1)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))': 20402 + '@nuxt/vite-builder@3.14.1592(@types/node@25.2.1)(eslint@9.39.2(jiti@2.6.1))(less@4.4.2)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-rc.12)(rollup@3.29.5)(sass@1.97.1)(terser@5.44.1)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))': 20514 20403 dependencies: 20515 20404 '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@3.29.5) 20516 20405 '@rollup/plugin-replace': 6.0.2(rollup@3.29.5) ··· 20536 20425 perfect-debounce: 1.0.0 20537 20426 pkg-types: 1.3.1 20538 20427 postcss: 8.5.6 20539 - rollup-plugin-visualizer: 5.14.0(rolldown@1.0.0-rc.9)(rollup@3.29.5) 20428 + rollup-plugin-visualizer: 5.14.0(rolldown@1.0.0-rc.12)(rollup@3.29.5) 20540 20429 std-env: 3.10.0 20541 20430 strip-literal: 2.1.1 20542 20431 ufo: 1.6.1 ··· 20570 20459 - vti 20571 20460 - vue-tsc 20572 20461 20573 - '@nuxt/vite-builder@3.14.1592(@types/node@25.2.1)(eslint@9.39.2(jiti@2.6.1))(less@4.4.2)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))': 20462 + '@nuxt/vite-builder@3.14.1592(@types/node@25.2.1)(eslint@9.39.2(jiti@2.6.1))(less@4.4.2)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-rc.12)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))': 20574 20463 dependencies: 20575 20464 '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.56.0) 20576 20465 '@rollup/plugin-replace': 6.0.2(rollup@4.56.0) ··· 20596 20485 perfect-debounce: 1.0.0 20597 20486 pkg-types: 1.3.1 20598 20487 postcss: 8.5.6 20599 - rollup-plugin-visualizer: 5.14.0(rolldown@1.0.0-rc.9)(rollup@4.56.0) 20488 + rollup-plugin-visualizer: 5.14.0(rolldown@1.0.0-rc.12)(rollup@4.56.0) 20600 20489 std-env: 3.10.0 20601 20490 strip-literal: 2.1.1 20602 20491 ufo: 1.6.1 ··· 20630 20519 - vti 20631 20520 - vue-tsc 20632 20521 20633 - '@nuxt/vite-builder@3.21.0(@types/node@25.2.1)(eslint@9.39.2(jiti@2.6.1))(less@4.4.2)(magicast@0.5.2)(nuxt@3.21.0(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(@vue/compiler-sfc@3.5.27)(cac@6.7.14)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(less@4.4.2)(magicast@0.5.2)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3))(yaml@2.8.2))(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3))(vue@3.5.27(typescript@5.9.3))(yaml@2.8.2)': 20522 + '@nuxt/vite-builder@3.21.0(@types/node@25.2.1)(eslint@9.39.2(jiti@2.6.1))(less@4.4.2)(magicast@0.5.2)(nuxt@3.21.0(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(@vue/compiler-sfc@3.5.27)(cac@6.7.14)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(less@4.4.2)(magicast@0.5.2)(optionator@0.9.4)(rolldown@1.0.0-rc.12)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3))(yaml@2.8.2))(optionator@0.9.4)(rolldown@1.0.0-rc.12)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3))(vue@3.5.27(typescript@5.9.3))(yaml@2.8.2)': 20634 20523 dependencies: 20635 20524 '@nuxt/kit': 3.21.0(magicast@0.5.2) 20636 20525 '@rollup/plugin-replace': 6.0.3(rollup@4.56.0) ··· 20650 20539 magic-string: 0.30.21 20651 20540 mlly: 1.8.0 20652 20541 mocked-exports: 0.1.1 20653 - nuxt: 3.21.0(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(@vue/compiler-sfc@3.5.27)(cac@6.7.14)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(less@4.4.2)(magicast@0.5.2)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3))(yaml@2.8.2) 20542 + nuxt: 3.21.0(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(@vue/compiler-sfc@3.5.27)(cac@6.7.14)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(less@4.4.2)(magicast@0.5.2)(optionator@0.9.4)(rolldown@1.0.0-rc.12)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3))(yaml@2.8.2) 20654 20543 ohash: 2.0.11 20655 20544 pathe: 2.0.3 20656 20545 perfect-debounce: 2.0.0 20657 20546 pkg-types: 2.3.0 20658 20547 postcss: 8.5.6 20659 - rollup-plugin-visualizer: 6.0.5(rolldown@1.0.0-rc.9)(rollup@4.56.0) 20548 + rollup-plugin-visualizer: 6.0.5(rolldown@1.0.0-rc.12)(rollup@4.56.0) 20660 20549 seroval: 1.5.0 20661 20550 std-env: 3.10.0 20662 20551 ufo: 1.6.3 ··· 20667 20556 vue: 3.5.27(typescript@5.9.3) 20668 20557 vue-bundle-renderer: 2.2.0 20669 20558 optionalDependencies: 20670 - rolldown: 1.0.0-rc.9 20559 + rolldown: 1.0.0-rc.12 20671 20560 transitivePeerDependencies: 20672 20561 - '@biomejs/biome' 20673 20562 - '@types/node' ··· 20877 20766 20878 20767 '@oxc-project/types@0.110.0': {} 20879 20768 20880 - '@oxc-project/types@0.115.0': {} 20769 + '@oxc-project/types@0.122.0': {} 20881 20770 20882 20771 '@oxc-resolver/binding-android-arm-eabi@11.19.1': 20883 20772 optional: true ··· 21207 21096 supports-color: 10.2.0 21208 21097 21209 21098 '@poppinss/exception@1.2.2': {} 21099 + 21100 + '@publint/pack@0.1.4': {} 21210 21101 21211 21102 '@quansync/fs@1.0.0': 21212 21103 dependencies: ··· 21922 21813 '@rolldown/binding-android-arm64@1.0.0-beta.58': 21923 21814 optional: true 21924 21815 21925 - '@rolldown/binding-android-arm64@1.0.0-rc.9': 21816 + '@rolldown/binding-android-arm64@1.0.0-rc.12': 21926 21817 optional: true 21927 21818 21928 21819 '@rolldown/binding-darwin-arm64@1.0.0-beta.58': 21929 21820 optional: true 21930 21821 21931 - '@rolldown/binding-darwin-arm64@1.0.0-rc.9': 21822 + '@rolldown/binding-darwin-arm64@1.0.0-rc.12': 21932 21823 optional: true 21933 21824 21934 21825 '@rolldown/binding-darwin-x64@1.0.0-beta.58': 21935 21826 optional: true 21936 21827 21937 - '@rolldown/binding-darwin-x64@1.0.0-rc.9': 21828 + '@rolldown/binding-darwin-x64@1.0.0-rc.12': 21938 21829 optional: true 21939 21830 21940 21831 '@rolldown/binding-freebsd-x64@1.0.0-beta.58': 21941 21832 optional: true 21942 21833 21943 - '@rolldown/binding-freebsd-x64@1.0.0-rc.9': 21834 + '@rolldown/binding-freebsd-x64@1.0.0-rc.12': 21944 21835 optional: true 21945 21836 21946 21837 '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.58': 21947 21838 optional: true 21948 21839 21949 - '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.9': 21840 + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.12': 21950 21841 optional: true 21951 21842 21952 21843 '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.58': 21953 21844 optional: true 21954 21845 21955 - '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.9': 21846 + '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.12': 21956 21847 optional: true 21957 21848 21958 21849 '@rolldown/binding-linux-arm64-musl@1.0.0-beta.58': 21959 21850 optional: true 21960 21851 21961 - '@rolldown/binding-linux-arm64-musl@1.0.0-rc.9': 21852 + '@rolldown/binding-linux-arm64-musl@1.0.0-rc.12': 21962 21853 optional: true 21963 21854 21964 - '@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.9': 21855 + '@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.12': 21965 21856 optional: true 21966 21857 21967 - '@rolldown/binding-linux-s390x-gnu@1.0.0-rc.9': 21858 + '@rolldown/binding-linux-s390x-gnu@1.0.0-rc.12': 21968 21859 optional: true 21969 21860 21970 21861 '@rolldown/binding-linux-x64-gnu@1.0.0-beta.58': 21971 21862 optional: true 21972 21863 21973 - '@rolldown/binding-linux-x64-gnu@1.0.0-rc.9': 21864 + '@rolldown/binding-linux-x64-gnu@1.0.0-rc.12': 21974 21865 optional: true 21975 21866 21976 21867 '@rolldown/binding-linux-x64-musl@1.0.0-beta.58': 21977 21868 optional: true 21978 21869 21979 - '@rolldown/binding-linux-x64-musl@1.0.0-rc.9': 21870 + '@rolldown/binding-linux-x64-musl@1.0.0-rc.12': 21980 21871 optional: true 21981 21872 21982 21873 '@rolldown/binding-openharmony-arm64@1.0.0-beta.58': 21983 21874 optional: true 21984 21875 21985 - '@rolldown/binding-openharmony-arm64@1.0.0-rc.9': 21876 + '@rolldown/binding-openharmony-arm64@1.0.0-rc.12': 21986 21877 optional: true 21987 21878 21988 21879 '@rolldown/binding-wasm32-wasi@1.0.0-beta.58': ··· 21990 21881 '@napi-rs/wasm-runtime': 1.1.1 21991 21882 optional: true 21992 21883 21993 - '@rolldown/binding-wasm32-wasi@1.0.0-rc.9': 21884 + '@rolldown/binding-wasm32-wasi@1.0.0-rc.12': 21994 21885 dependencies: 21995 21886 '@napi-rs/wasm-runtime': 1.1.1 21996 21887 optional: true ··· 21998 21889 '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.58': 21999 21890 optional: true 22000 21891 22001 - '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.9': 21892 + '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.12': 22002 21893 optional: true 22003 21894 22004 21895 '@rolldown/binding-win32-x64-msvc@1.0.0-beta.58': 22005 21896 optional: true 22006 21897 22007 - '@rolldown/binding-win32-x64-msvc@1.0.0-rc.9': 21898 + '@rolldown/binding-win32-x64-msvc@1.0.0-rc.12': 22008 21899 optional: true 22009 21900 22010 21901 '@rolldown/pluginutils@1.0.0-beta.58': {} 22011 21902 22012 - '@rolldown/pluginutils@1.0.0-rc.2': {} 21903 + '@rolldown/pluginutils@1.0.0-rc.12': {} 22013 21904 22014 - '@rolldown/pluginutils@1.0.0-rc.9': {} 21905 + '@rolldown/pluginutils@1.0.0-rc.2': {} 22015 21906 22016 21907 '@rollup/plugin-alias@5.1.1(rollup@3.29.5)': 22017 21908 optionalDependencies: ··· 22346 22237 '@sigstore/bundle': 4.0.0 22347 22238 '@sigstore/core': 3.1.0 22348 22239 '@sigstore/protobuf-specs': 0.5.0 22349 - 22350 - '@sindresorhus/is@4.6.0': {} 22351 22240 22352 22241 '@sindresorhus/is@7.0.2': {} 22353 22242 ··· 23224 23113 23225 23114 '@unhead/vue@2.1.3(vue@3.5.27(typescript@5.9.3))': 23226 23115 dependencies: 23227 - hookable: 6.0.1 23116 + hookable: 6.1.0 23228 23117 unhead: 2.1.3 23229 23118 vue: 3.5.27(typescript@5.9.3) 23230 23119 ··· 23692 23581 dependencies: 23693 23582 '@vue/devtools-kit': 8.0.5 23694 23583 23695 - '@vue/devtools-core@7.6.8(vite@5.4.19(@types/node@25.2.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1))(vue@3.5.25(typescript@5.9.3))': 23696 - dependencies: 23697 - '@vue/devtools-kit': 7.7.7 23698 - '@vue/devtools-shared': 7.7.7 23699 - mitt: 3.0.1 23700 - nanoid: 5.1.5 23701 - pathe: 1.1.2 23702 - vite-hot-client: 0.2.4(vite@5.4.19(@types/node@25.2.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)) 23703 - vue: 3.5.25(typescript@5.9.3) 23704 - transitivePeerDependencies: 23705 - - vite 23706 - 23707 23584 '@vue/devtools-core@7.6.8(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.25(typescript@5.9.3))': 23708 23585 dependencies: 23709 23586 '@vue/devtools-kit': 7.7.7 ··· 23841 23718 alien-signals: 3.1.2 23842 23719 muggle-string: 0.4.1 23843 23720 path-browserify: 1.0.1 23844 - picomatch: 4.0.3 23721 + picomatch: 4.0.4 23845 23722 23846 23723 '@vue/reactivity@3.5.13': 23847 23724 dependencies: ··· 24345 24222 24346 24223 ast-kit@3.0.0-beta.1: 24347 24224 dependencies: 24348 - '@babel/parser': 8.0.0-rc.2 24225 + '@babel/parser': 8.0.0-rc.3 24349 24226 estree-walker: 3.0.3 24350 24227 pathe: 2.0.3 24351 24228 ··· 24742 24619 24743 24620 chalk@5.6.2: {} 24744 24621 24745 - char-regex@1.0.2: {} 24746 - 24747 24622 character-entities-html4@2.1.0: {} 24748 24623 24749 24624 character-entities-legacy@3.0.0: {} ··· 24794 24669 dependencies: 24795 24670 restore-cursor: 5.1.0 24796 24671 24797 - cli-highlight@2.1.11: 24798 - dependencies: 24799 - chalk: 4.1.2 24800 - highlight.js: 10.7.3 24801 - mz: 2.7.0 24802 - parse5: 5.1.1 24803 - parse5-htmlparser2-tree-adapter: 6.0.1 24804 - yargs: 16.2.0 24805 - 24806 24672 cli-spinners@3.4.0: {} 24807 24673 24808 - cli-table3@0.6.5: 24809 - dependencies: 24810 - string-width: 4.2.3 24811 - optionalDependencies: 24812 - '@colors/colors': 1.5.0 24813 - 24814 24674 cli-truncate@5.1.1: 24815 24675 dependencies: 24816 24676 slice-ansi: 7.1.0 ··· 25526 25386 25527 25387 emoji-regex@9.2.2: {} 25528 25388 25529 - emojilib@2.4.0: {} 25530 - 25531 25389 emojis-list@3.0.0: {} 25532 25390 25533 25391 empathic@2.0.0: {} ··· 25914 25772 eslint: 9.39.2(jiti@2.6.1) 25915 25773 eslint-import-resolver-node: 0.3.9 25916 25774 eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)) 25917 - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.2(jiti@2.6.1)) 25775 + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)) 25918 25776 eslint-plugin-jsx-a11y: 6.10.2(eslint@9.39.2(jiti@2.6.1)) 25919 25777 eslint-plugin-react: 7.37.5(eslint@9.39.2(jiti@2.6.1)) 25920 25778 eslint-plugin-react-hooks: 5.2.0(eslint@9.39.2(jiti@2.6.1)) ··· 25944 25802 tinyglobby: 0.2.15 25945 25803 unrs-resolver: 1.11.1 25946 25804 optionalDependencies: 25947 - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.2(jiti@2.6.1)) 25805 + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)) 25948 25806 transitivePeerDependencies: 25949 25807 - supports-color 25950 25808 ··· 25959 25817 transitivePeerDependencies: 25960 25818 - supports-color 25961 25819 25962 - eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.2(jiti@2.6.1)): 25820 + eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)): 25963 25821 dependencies: 25964 25822 '@rtsao/scc': 1.1.0 25965 25823 array-includes: 3.1.9 ··· 26548 26406 optionalDependencies: 26549 26407 picomatch: 4.0.3 26550 26408 26409 + fdir@6.5.0(picomatch@4.0.4): 26410 + optionalDependencies: 26411 + picomatch: 4.0.4 26412 + 26551 26413 fecha@4.2.3: {} 26552 26414 26553 26415 fetch-blob@3.2.0: ··· 26786 26648 dependencies: 26787 26649 resolve-pkg-maps: 1.0.0 26788 26650 26651 + get-tsconfig@4.13.7: 26652 + dependencies: 26653 + resolve-pkg-maps: 1.0.0 26654 + 26789 26655 giget@1.2.5: 26790 26656 dependencies: 26791 26657 citty: 0.1.6 ··· 27012 26878 27013 26879 headers-polyfill@4.0.3: {} 27014 26880 27015 - highlight.js@10.7.3: {} 27016 - 27017 26881 hono@4.11.8: {} 27018 26882 27019 26883 hookable@5.5.3: {} 27020 - 27021 - hookable@6.0.1: {} 27022 26884 27023 26885 hookable@6.1.0: {} 27024 26886 ··· 28107 27969 28108 27970 markdown-title@1.0.2: {} 28109 27971 28110 - marked-terminal@7.3.0(marked@9.1.6): 28111 - dependencies: 28112 - ansi-escapes: 7.0.0 28113 - ansi-regex: 6.2.0 28114 - chalk: 5.6.2 28115 - cli-highlight: 2.1.11 28116 - cli-table3: 0.6.5 28117 - marked: 9.1.6 28118 - node-emoji: 2.2.0 28119 - supports-hyperlinks: 3.2.0 28120 - 28121 - marked@9.1.6: {} 28122 - 28123 27972 math-intrinsics@1.1.0: {} 28124 27973 28125 27974 mdast-util-from-markdown@2.0.3: ··· 28694 28543 - '@babel/core' 28695 28544 - babel-plugin-macros 28696 28545 28697 - nitropack@2.12.4(@netlify/blobs@9.1.2)(encoding@0.1.13)(rolldown@1.0.0-rc.9): 28546 + nitropack@2.12.4(@netlify/blobs@9.1.2)(encoding@0.1.13)(rolldown@1.0.0-rc.12): 28698 28547 dependencies: 28699 28548 '@cloudflare/kv-asset-handler': 0.4.0 28700 28549 '@netlify/functions': 3.1.10(encoding@0.1.13)(rollup@4.56.0) ··· 28748 28597 pretty-bytes: 6.1.1 28749 28598 radix3: 1.1.2 28750 28599 rollup: 4.56.0 28751 - rollup-plugin-visualizer: 6.0.3(rolldown@1.0.0-rc.9)(rollup@4.56.0) 28600 + rollup-plugin-visualizer: 6.0.3(rolldown@1.0.0-rc.12)(rollup@4.56.0) 28752 28601 scule: 1.3.0 28753 28602 semver: 7.7.3 28754 28603 serve-placeholder: 2.0.2 ··· 28795 28644 - supports-color 28796 28645 - uploadthing 28797 28646 28798 - nitropack@2.13.1(@netlify/blobs@9.1.2)(encoding@0.1.13)(rolldown@1.0.0-rc.9): 28647 + nitropack@2.13.1(@netlify/blobs@9.1.2)(encoding@0.1.13)(rolldown@1.0.0-rc.12): 28799 28648 dependencies: 28800 28649 '@cloudflare/kv-asset-handler': 0.4.2 28801 28650 '@rollup/plugin-alias': 6.0.0(rollup@4.56.0) ··· 28848 28697 pretty-bytes: 7.1.0 28849 28698 radix3: 1.1.2 28850 28699 rollup: 4.56.0 28851 - rollup-plugin-visualizer: 6.0.5(rolldown@1.0.0-rc.9)(rollup@4.56.0) 28700 + rollup-plugin-visualizer: 6.0.5(rolldown@1.0.0-rc.12)(rollup@4.56.0) 28852 28701 scule: 1.3.0 28853 28702 semver: 7.7.3 28854 28703 serve-placeholder: 2.0.2 ··· 28902 28751 28903 28752 node-domexception@1.0.0: {} 28904 28753 28905 - node-emoji@2.2.0: 28906 - dependencies: 28907 - '@sindresorhus/is': 4.6.0 28908 - char-regex: 1.0.2 28909 - emojilib: 2.4.0 28910 - skin-tone: 2.0.0 28911 - 28912 28754 node-fetch-native@1.6.7: {} 28913 28755 28914 28756 node-fetch@2.7.0(encoding@0.1.13): ··· 29058 28900 29059 28901 nuxi@3.28.0: {} 29060 28902 29061 - nuxt@3.14.1592(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(db0@0.3.2)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.7.0)(less@4.4.2)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(typescript@5.9.3)(vite@5.4.19(@types/node@25.2.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1))(vue-tsc@3.2.4(typescript@5.9.3)): 29062 - dependencies: 29063 - '@nuxt/devalue': 2.0.2 29064 - '@nuxt/devtools': 1.7.0(rollup@4.56.0)(vite@5.4.19(@types/node@25.2.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1))(vue@3.5.25(typescript@5.9.3)) 29065 - '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.56.0) 29066 - '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.56.0) 29067 - '@nuxt/telemetry': 2.6.6(magicast@0.3.5) 29068 - '@nuxt/vite-builder': 3.14.1592(@types/node@25.2.1)(eslint@9.39.2(jiti@2.6.1))(less@4.4.2)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3)) 29069 - '@unhead/dom': 1.11.20 29070 - '@unhead/shared': 1.11.20 29071 - '@unhead/ssr': 1.11.20 29072 - '@unhead/vue': 1.11.20(vue@3.5.25(typescript@5.9.3)) 29073 - '@vue/shared': 3.5.25 29074 - acorn: 8.14.0 29075 - c12: 2.0.1(magicast@0.3.5) 29076 - chokidar: 4.0.3 29077 - compatx: 0.1.8 29078 - consola: 3.4.2 29079 - cookie-es: 1.2.2 29080 - defu: 6.1.4 29081 - destr: 2.0.5 29082 - devalue: 5.3.2 29083 - errx: 0.1.0 29084 - esbuild: 0.24.2 29085 - escape-string-regexp: 5.0.0 29086 - estree-walker: 3.0.3 29087 - globby: 14.1.0 29088 - h3: 1.15.4 29089 - hookable: 5.5.3 29090 - ignore: 6.0.2 29091 - impound: 0.2.2(rollup@4.56.0) 29092 - jiti: 2.6.1 29093 - klona: 2.0.6 29094 - knitwork: 1.3.0 29095 - magic-string: 0.30.21 29096 - mlly: 1.8.0 29097 - nanotar: 0.1.1 29098 - nitropack: 2.12.4(@netlify/blobs@9.1.2)(encoding@0.1.13)(rolldown@1.0.0-rc.9) 29099 - nuxi: 3.28.0 29100 - nypm: 0.3.12 29101 - ofetch: 1.5.1 29102 - ohash: 1.1.6 29103 - pathe: 1.1.2 29104 - perfect-debounce: 1.0.0 29105 - pkg-types: 1.3.1 29106 - radix3: 1.1.2 29107 - scule: 1.3.0 29108 - semver: 7.7.3 29109 - std-env: 3.10.0 29110 - strip-literal: 2.1.1 29111 - tinyglobby: 0.2.10 29112 - ufo: 1.6.1 29113 - ultrahtml: 1.6.0 29114 - uncrypto: 0.1.3 29115 - unctx: 2.4.1 29116 - unenv: 1.10.0 29117 - unhead: 1.11.20 29118 - unimport: 3.14.6(rollup@4.56.0) 29119 - unplugin: 1.16.1 29120 - unplugin-vue-router: 0.10.9(rollup@4.56.0)(vue-router@4.5.0(vue@3.5.25(typescript@5.9.3)))(vue@3.5.25(typescript@5.9.3)) 29121 - unstorage: 1.17.0(@netlify/blobs@9.1.2)(db0@0.3.2)(ioredis@5.7.0) 29122 - untyped: 1.5.2 29123 - vue: 3.5.25(typescript@5.9.3) 29124 - vue-bundle-renderer: 2.1.2 29125 - vue-devtools-stub: 0.1.0 29126 - vue-router: 4.5.0(vue@3.5.25(typescript@5.9.3)) 29127 - optionalDependencies: 29128 - '@parcel/watcher': 2.5.1 29129 - '@types/node': 25.2.1 29130 - transitivePeerDependencies: 29131 - - '@azure/app-configuration' 29132 - - '@azure/cosmos' 29133 - - '@azure/data-tables' 29134 - - '@azure/identity' 29135 - - '@azure/keyvault-secrets' 29136 - - '@azure/storage-blob' 29137 - - '@biomejs/biome' 29138 - - '@capacitor/preferences' 29139 - - '@deno/kv' 29140 - - '@electric-sql/pglite' 29141 - - '@libsql/client' 29142 - - '@netlify/blobs' 29143 - - '@planetscale/database' 29144 - - '@upstash/redis' 29145 - - '@vercel/blob' 29146 - - '@vercel/functions' 29147 - - '@vercel/kv' 29148 - - aws4fetch 29149 - - better-sqlite3 29150 - - bufferutil 29151 - - db0 29152 - - drizzle-orm 29153 - - encoding 29154 - - eslint 29155 - - idb-keyval 29156 - - ioredis 29157 - - less 29158 - - lightningcss 29159 - - magicast 29160 - - meow 29161 - - mysql2 29162 - - optionator 29163 - - rolldown 29164 - - rollup 29165 - - sass 29166 - - sass-embedded 29167 - - sqlite3 29168 - - stylelint 29169 - - stylus 29170 - - sugarss 29171 - - supports-color 29172 - - terser 29173 - - typescript 29174 - - uploadthing 29175 - - utf-8-validate 29176 - - vite 29177 - - vls 29178 - - vti 29179 - - vue-tsc 29180 - - xml2js 29181 - 29182 - nuxt@3.14.1592(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(less@4.4.2)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@3.29.5)(sass@1.97.1)(terser@5.44.1)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3)): 28903 + nuxt@3.14.1592(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(db0@0.3.2)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.7.0)(less@4.4.2)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-rc.12)(rollup@3.29.5)(sass@1.97.1)(terser@5.44.1)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3)): 29183 28904 dependencies: 29184 28905 '@nuxt/devalue': 2.0.2 29185 28906 '@nuxt/devtools': 1.7.0(rollup@3.29.5)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.25(typescript@5.9.3)) 29186 28907 '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@3.29.5) 29187 28908 '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@3.29.5) 29188 28909 '@nuxt/telemetry': 2.6.6(magicast@0.3.5) 29189 - '@nuxt/vite-builder': 3.14.1592(@types/node@25.2.1)(eslint@9.39.2(jiti@2.6.1))(less@4.4.2)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@3.29.5)(sass@1.97.1)(terser@5.44.1)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3)) 28910 + '@nuxt/vite-builder': 3.14.1592(@types/node@25.2.1)(eslint@9.39.2(jiti@2.6.1))(less@4.4.2)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-rc.12)(rollup@3.29.5)(sass@1.97.1)(terser@5.44.1)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3)) 29190 28911 '@unhead/dom': 1.11.20 29191 28912 '@unhead/shared': 1.11.20 29192 28913 '@unhead/ssr': 1.11.20 ··· 29216 28937 magic-string: 0.30.21 29217 28938 mlly: 1.8.0 29218 28939 nanotar: 0.1.1 29219 - nitropack: 2.12.4(@netlify/blobs@9.1.2)(encoding@0.1.13)(rolldown@1.0.0-rc.9) 28940 + nitropack: 2.12.4(@netlify/blobs@9.1.2)(encoding@0.1.13)(rolldown@1.0.0-rc.12) 29220 28941 nuxi: 3.28.0 29221 28942 nypm: 0.3.12 29222 28943 ofetch: 1.5.1 ··· 29239 28960 unimport: 3.14.6(rollup@3.29.5) 29240 28961 unplugin: 1.16.1 29241 28962 unplugin-vue-router: 0.10.9(rollup@3.29.5)(vue-router@4.5.0(vue@3.5.25(typescript@5.9.3)))(vue@3.5.25(typescript@5.9.3)) 29242 - unstorage: 1.17.0(@netlify/blobs@9.1.2)(db0@0.3.4)(ioredis@5.9.2) 28963 + unstorage: 1.17.0(@netlify/blobs@9.1.2)(db0@0.3.2)(ioredis@5.7.0) 29243 28964 untyped: 1.5.2 29244 28965 vue: 3.5.25(typescript@5.9.3) 29245 28966 vue-bundle-renderer: 2.1.2 29246 28967 vue-devtools-stub: 0.1.0 29247 - vue-router: 4.5.0(vue@3.5.25(typescript@5.9.3)) 28968 + vue-router: 4.5.0(vue@3.5.13(typescript@5.9.3)) 29248 28969 optionalDependencies: 29249 28970 '@parcel/watcher': 2.5.1 29250 28971 '@types/node': 25.2.1 ··· 29300 29021 - vue-tsc 29301 29022 - xml2js 29302 29023 29303 - nuxt@3.14.1592(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(less@4.4.2)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3)): 29024 + nuxt@3.14.1592(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(less@4.4.2)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-rc.12)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3)): 29304 29025 dependencies: 29305 29026 '@nuxt/devalue': 2.0.2 29306 29027 '@nuxt/devtools': 1.7.0(rollup@4.56.0)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.25(typescript@5.9.3)) 29307 29028 '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.56.0) 29308 29029 '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.56.0) 29309 29030 '@nuxt/telemetry': 2.6.6(magicast@0.3.5) 29310 - '@nuxt/vite-builder': 3.14.1592(@types/node@25.2.1)(eslint@9.39.2(jiti@2.6.1))(less@4.4.2)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3)) 29031 + '@nuxt/vite-builder': 3.14.1592(@types/node@25.2.1)(eslint@9.39.2(jiti@2.6.1))(less@4.4.2)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-rc.12)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3)) 29311 29032 '@unhead/dom': 1.11.20 29312 29033 '@unhead/shared': 1.11.20 29313 29034 '@unhead/ssr': 1.11.20 ··· 29337 29058 magic-string: 0.30.21 29338 29059 mlly: 1.8.0 29339 29060 nanotar: 0.1.1 29340 - nitropack: 2.12.4(@netlify/blobs@9.1.2)(encoding@0.1.13)(rolldown@1.0.0-rc.9) 29061 + nitropack: 2.12.4(@netlify/blobs@9.1.2)(encoding@0.1.13)(rolldown@1.0.0-rc.12) 29341 29062 nuxi: 3.28.0 29342 29063 nypm: 0.3.12 29343 29064 ofetch: 1.5.1 ··· 29421 29142 - vue-tsc 29422 29143 - xml2js 29423 29144 29424 - nuxt@3.21.0(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(@vue/compiler-sfc@3.5.27)(cac@6.7.14)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(less@4.4.2)(magicast@0.5.2)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3))(yaml@2.8.2): 29145 + nuxt@3.21.0(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(@vue/compiler-sfc@3.5.27)(cac@6.7.14)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(less@4.4.2)(magicast@0.5.2)(optionator@0.9.4)(rolldown@1.0.0-rc.12)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3))(yaml@2.8.2): 29425 29146 dependencies: 29426 29147 '@dxup/nuxt': 0.3.2(magicast@0.5.2) 29427 29148 '@nuxt/cli': 3.32.0(cac@6.7.14)(magicast@0.5.2) 29428 29149 '@nuxt/devtools': 3.1.1(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.27(typescript@5.9.3)) 29429 29150 '@nuxt/kit': 3.21.0(magicast@0.5.2) 29430 - '@nuxt/nitro-server': 3.21.0(@netlify/blobs@9.1.2)(db0@0.3.4)(encoding@0.1.13)(ioredis@5.9.2)(magicast@0.5.2)(nuxt@3.21.0(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(@vue/compiler-sfc@3.5.27)(cac@6.7.14)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(less@4.4.2)(magicast@0.5.2)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3))(yaml@2.8.2))(rolldown@1.0.0-rc.9)(typescript@5.9.3) 29151 + '@nuxt/nitro-server': 3.21.0(@netlify/blobs@9.1.2)(db0@0.3.4)(encoding@0.1.13)(ioredis@5.9.2)(magicast@0.5.2)(nuxt@3.21.0(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(@vue/compiler-sfc@3.5.27)(cac@6.7.14)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(less@4.4.2)(magicast@0.5.2)(optionator@0.9.4)(rolldown@1.0.0-rc.12)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3))(yaml@2.8.2))(rolldown@1.0.0-rc.12)(typescript@5.9.3) 29431 29152 '@nuxt/schema': 3.21.0 29432 29153 '@nuxt/telemetry': 2.6.6(magicast@0.5.2) 29433 - '@nuxt/vite-builder': 3.21.0(@types/node@25.2.1)(eslint@9.39.2(jiti@2.6.1))(less@4.4.2)(magicast@0.5.2)(nuxt@3.21.0(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(@vue/compiler-sfc@3.5.27)(cac@6.7.14)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(less@4.4.2)(magicast@0.5.2)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3))(yaml@2.8.2))(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3))(vue@3.5.27(typescript@5.9.3))(yaml@2.8.2) 29154 + '@nuxt/vite-builder': 3.21.0(@types/node@25.2.1)(eslint@9.39.2(jiti@2.6.1))(less@4.4.2)(magicast@0.5.2)(nuxt@3.21.0(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(@vue/compiler-sfc@3.5.27)(cac@6.7.14)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(less@4.4.2)(magicast@0.5.2)(optionator@0.9.4)(rolldown@1.0.0-rc.12)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3))(yaml@2.8.2))(optionator@0.9.4)(rolldown@1.0.0-rc.12)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3))(vue@3.5.27(typescript@5.9.3))(yaml@2.8.2) 29434 29155 '@unhead/vue': 2.1.3(vue@3.5.27(typescript@5.9.3)) 29435 29156 '@vue/shared': 3.5.27 29436 29157 c12: 3.3.3(magicast@0.5.2) ··· 29946 29667 29947 29668 package-manager-detector@1.3.0: {} 29948 29669 29670 + package-manager-detector@1.6.0: {} 29671 + 29949 29672 packrup@0.1.2: {} 29950 29673 29951 29674 pacote@21.0.4: ··· 30008 29731 parse5: 8.0.0 30009 29732 parse5-sax-parser: 8.0.0 30010 29733 30011 - parse5-htmlparser2-tree-adapter@6.0.1: 30012 - dependencies: 30013 - parse5: 6.0.1 30014 - 30015 29734 parse5-sax-parser@8.0.0: 30016 29735 dependencies: 30017 29736 parse5: 8.0.0 30018 29737 30019 - parse5@5.1.1: {} 30020 - 30021 - parse5@6.0.1: {} 30022 - 30023 29738 parse5@7.3.0: 30024 29739 dependencies: 30025 29740 entities: 6.0.1 ··· 30085 29800 picomatch@2.3.1: {} 30086 29801 30087 29802 picomatch@4.0.3: {} 29803 + 29804 + picomatch@4.0.4: {} 30088 29805 30089 29806 pidtree@0.6.0: {} 30090 29807 ··· 30546 30263 prr@1.0.1: 30547 30264 optional: true 30548 30265 30266 + publint@0.3.18: 30267 + dependencies: 30268 + '@publint/pack': 0.1.4 30269 + package-manager-detector: 1.6.0 30270 + picocolors: 1.1.1 30271 + sade: 1.8.1 30272 + 30549 30273 pump@3.0.3: 30550 30274 dependencies: 30551 30275 end-of-stream: 1.4.5 ··· 30887 30611 dependencies: 30888 30612 glob: 7.2.3 30889 30613 30890 - rolldown-plugin-dts@0.22.5(@typescript/native-preview@7.0.0-dev.20260401.1)(oxc-resolver@11.19.1)(rolldown@1.0.0-rc.9)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3)): 30614 + rolldown-plugin-dts@0.23.2(@typescript/native-preview@7.0.0-dev.20260401.1)(oxc-resolver@11.19.1)(rolldown@1.0.0-rc.12)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3)): 30891 30615 dependencies: 30892 - '@babel/generator': 8.0.0-rc.2 30893 - '@babel/helper-validator-identifier': 8.0.0-rc.2 30894 - '@babel/parser': 8.0.0-rc.2 30895 - '@babel/types': 8.0.0-rc.2 30616 + '@babel/generator': 8.0.0-rc.3 30617 + '@babel/helper-validator-identifier': 8.0.0-rc.3 30618 + '@babel/parser': 8.0.0-rc.3 30619 + '@babel/types': 8.0.0-rc.3 30896 30620 ast-kit: 3.0.0-beta.1 30897 30621 birpc: 4.0.0 30898 30622 dts-resolver: 2.1.3(oxc-resolver@11.19.1) 30899 - get-tsconfig: 4.13.6 30623 + get-tsconfig: 4.13.7 30900 30624 obug: 2.1.1 30901 - rolldown: 1.0.0-rc.9 30625 + picomatch: 4.0.4 30626 + rolldown: 1.0.0-rc.12 30902 30627 optionalDependencies: 30903 30628 '@typescript/native-preview': 7.0.0-dev.20260401.1 30904 30629 typescript: 5.9.3 ··· 30925 30650 '@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.58 30926 30651 '@rolldown/binding-win32-x64-msvc': 1.0.0-beta.58 30927 30652 30928 - rolldown@1.0.0-rc.9: 30653 + rolldown@1.0.0-rc.12: 30929 30654 dependencies: 30930 - '@oxc-project/types': 0.115.0 30931 - '@rolldown/pluginutils': 1.0.0-rc.9 30655 + '@oxc-project/types': 0.122.0 30656 + '@rolldown/pluginutils': 1.0.0-rc.12 30932 30657 optionalDependencies: 30933 - '@rolldown/binding-android-arm64': 1.0.0-rc.9 30934 - '@rolldown/binding-darwin-arm64': 1.0.0-rc.9 30935 - '@rolldown/binding-darwin-x64': 1.0.0-rc.9 30936 - '@rolldown/binding-freebsd-x64': 1.0.0-rc.9 30937 - '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-rc.9 30938 - '@rolldown/binding-linux-arm64-gnu': 1.0.0-rc.9 30939 - '@rolldown/binding-linux-arm64-musl': 1.0.0-rc.9 30940 - '@rolldown/binding-linux-ppc64-gnu': 1.0.0-rc.9 30941 - '@rolldown/binding-linux-s390x-gnu': 1.0.0-rc.9 30942 - '@rolldown/binding-linux-x64-gnu': 1.0.0-rc.9 30943 - '@rolldown/binding-linux-x64-musl': 1.0.0-rc.9 30944 - '@rolldown/binding-openharmony-arm64': 1.0.0-rc.9 30945 - '@rolldown/binding-wasm32-wasi': 1.0.0-rc.9 30946 - '@rolldown/binding-win32-arm64-msvc': 1.0.0-rc.9 30947 - '@rolldown/binding-win32-x64-msvc': 1.0.0-rc.9 30658 + '@rolldown/binding-android-arm64': 1.0.0-rc.12 30659 + '@rolldown/binding-darwin-arm64': 1.0.0-rc.12 30660 + '@rolldown/binding-darwin-x64': 1.0.0-rc.12 30661 + '@rolldown/binding-freebsd-x64': 1.0.0-rc.12 30662 + '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-rc.12 30663 + '@rolldown/binding-linux-arm64-gnu': 1.0.0-rc.12 30664 + '@rolldown/binding-linux-arm64-musl': 1.0.0-rc.12 30665 + '@rolldown/binding-linux-ppc64-gnu': 1.0.0-rc.12 30666 + '@rolldown/binding-linux-s390x-gnu': 1.0.0-rc.12 30667 + '@rolldown/binding-linux-x64-gnu': 1.0.0-rc.12 30668 + '@rolldown/binding-linux-x64-musl': 1.0.0-rc.12 30669 + '@rolldown/binding-openharmony-arm64': 1.0.0-rc.12 30670 + '@rolldown/binding-wasm32-wasi': 1.0.0-rc.12 30671 + '@rolldown/binding-win32-arm64-msvc': 1.0.0-rc.12 30672 + '@rolldown/binding-win32-x64-msvc': 1.0.0-rc.12 30948 30673 30949 30674 rollup-plugin-dts@6.1.1(rollup@3.29.5)(typescript@5.9.3): 30950 30675 dependencies: ··· 30962 30687 optionalDependencies: 30963 30688 '@babel/code-frame': 7.29.0 30964 30689 30965 - rollup-plugin-visualizer@5.14.0(rolldown@1.0.0-rc.9)(rollup@3.29.5): 30690 + rollup-plugin-visualizer@5.14.0(rolldown@1.0.0-rc.12)(rollup@3.29.5): 30966 30691 dependencies: 30967 30692 open: 8.4.2 30968 30693 picomatch: 4.0.3 30969 30694 source-map: 0.7.6 30970 30695 yargs: 17.7.2 30971 30696 optionalDependencies: 30972 - rolldown: 1.0.0-rc.9 30697 + rolldown: 1.0.0-rc.12 30973 30698 rollup: 3.29.5 30974 30699 30975 - rollup-plugin-visualizer@5.14.0(rolldown@1.0.0-rc.9)(rollup@4.56.0): 30700 + rollup-plugin-visualizer@5.14.0(rolldown@1.0.0-rc.12)(rollup@4.56.0): 30976 30701 dependencies: 30977 30702 open: 8.4.2 30978 30703 picomatch: 4.0.3 30979 30704 source-map: 0.7.6 30980 30705 yargs: 17.7.2 30981 30706 optionalDependencies: 30982 - rolldown: 1.0.0-rc.9 30707 + rolldown: 1.0.0-rc.12 30983 30708 rollup: 4.56.0 30984 30709 30985 - rollup-plugin-visualizer@6.0.3(rolldown@1.0.0-rc.9)(rollup@4.56.0): 30710 + rollup-plugin-visualizer@6.0.3(rolldown@1.0.0-rc.12)(rollup@4.56.0): 30986 30711 dependencies: 30987 30712 open: 8.4.2 30988 30713 picomatch: 4.0.3 30989 30714 source-map: 0.7.6 30990 30715 yargs: 17.7.2 30991 30716 optionalDependencies: 30992 - rolldown: 1.0.0-rc.9 30717 + rolldown: 1.0.0-rc.12 30993 30718 rollup: 4.56.0 30994 30719 30995 - rollup-plugin-visualizer@6.0.5(rolldown@1.0.0-rc.9)(rollup@4.56.0): 30720 + rollup-plugin-visualizer@6.0.5(rolldown@1.0.0-rc.12)(rollup@4.56.0): 30996 30721 dependencies: 30997 30722 open: 8.4.2 30998 30723 picomatch: 4.0.3 30999 30724 source-map: 0.7.6 31000 30725 yargs: 17.7.2 31001 30726 optionalDependencies: 31002 - rolldown: 1.0.0-rc.9 30727 + rolldown: 1.0.0-rc.12 31003 30728 rollup: 4.56.0 31004 30729 31005 30730 rollup@3.29.5: ··· 31437 31162 31438 31163 sisteransi@1.0.5: {} 31439 31164 31440 - skin-tone@2.0.0: 31441 - dependencies: 31442 - unicode-emoji-modifier-base: 1.0.0 31443 - 31444 31165 slash@3.0.0: {} 31445 31166 31446 31167 slash@4.0.0: {} ··· 31787 31508 dependencies: 31788 31509 has-flag: 4.0.0 31789 31510 31790 - supports-hyperlinks@3.2.0: 31791 - dependencies: 31792 - has-flag: 4.0.0 31793 - supports-color: 7.2.0 31794 - 31795 31511 supports-preserve-symlinks-flag@1.0.0: {} 31796 31512 31797 - svelte-check@4.1.4(picomatch@4.0.3)(svelte@5.19.9)(typescript@5.9.3): 31513 + svelte-check@4.1.4(picomatch@4.0.4)(svelte@5.19.9)(typescript@5.9.3): 31798 31514 dependencies: 31799 31515 '@jridgewell/trace-mapping': 0.3.30 31800 31516 chokidar: 4.0.3 31801 - fdir: 6.5.0(picomatch@4.0.3) 31517 + fdir: 6.5.0(picomatch@4.0.4) 31802 31518 picocolors: 1.1.1 31803 31519 sade: 1.8.1 31804 31520 svelte: 5.19.9 ··· 32077 31793 32078 31794 tinyglobby@0.2.15: 32079 31795 dependencies: 32080 - fdir: 6.5.0(picomatch@4.0.3) 32081 - picomatch: 4.0.3 31796 + fdir: 6.5.0(picomatch@4.0.4) 31797 + picomatch: 4.0.4 32082 31798 32083 31799 tinypool@2.1.0: {} 32084 31800 ··· 32199 31915 minimist: 1.2.8 32200 31916 strip-bom: 3.0.0 32201 31917 32202 - tsdown@0.21.4(@arethetypeswrong/core@0.18.2)(@typescript/native-preview@7.0.0-dev.20260401.1)(oxc-resolver@11.19.1)(synckit@0.11.11)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3)): 31918 + tsdown@0.21.7(@arethetypeswrong/core@0.18.2)(@typescript/native-preview@7.0.0-dev.20260401.1)(oxc-resolver@11.19.1)(publint@0.3.18)(synckit@0.11.11)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3)): 32203 31919 dependencies: 32204 31920 ansis: 4.2.0 32205 31921 cac: 7.0.0 ··· 32208 31924 hookable: 6.1.0 32209 31925 import-without-cache: 0.2.5 32210 31926 obug: 2.1.1 32211 - picomatch: 4.0.3 32212 - rolldown: 1.0.0-rc.9 32213 - rolldown-plugin-dts: 0.22.5(@typescript/native-preview@7.0.0-dev.20260401.1)(oxc-resolver@11.19.1)(rolldown@1.0.0-rc.9)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3)) 31927 + picomatch: 4.0.4 31928 + rolldown: 1.0.0-rc.12 31929 + rolldown-plugin-dts: 0.23.2(@typescript/native-preview@7.0.0-dev.20260401.1)(oxc-resolver@11.19.1)(rolldown@1.0.0-rc.12)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3)) 32214 31930 semver: 7.7.4 32215 31931 tinyexec: 1.0.4 32216 31932 tinyglobby: 0.2.15 32217 31933 tree-kill: 1.2.2 32218 31934 unconfig-core: 7.5.0 32219 - unrun: 0.2.32(synckit@0.11.11) 31935 + unrun: 0.2.34(synckit@0.11.11) 32220 31936 optionalDependencies: 32221 31937 '@arethetypeswrong/core': 0.18.2 31938 + publint: 0.3.18 32222 31939 typescript: 5.9.3 32223 31940 transitivePeerDependencies: 32224 31941 - '@ts-macro/tsc' ··· 32463 32180 32464 32181 unhead@2.1.3: 32465 32182 dependencies: 32466 - hookable: 6.0.1 32183 + hookable: 6.1.0 32467 32184 32468 32185 unicode-canonical-property-names-ecmascript@2.0.1: {} 32469 32186 32470 - unicode-emoji-modifier-base@1.0.0: {} 32471 - 32472 32187 unicode-match-property-ecmascript@2.0.0: 32473 32188 dependencies: 32474 32189 unicode-canonical-property-names-ecmascript: 2.0.1 ··· 32654 32369 unplugin: 2.0.0-beta.1 32655 32370 yaml: 2.8.2 32656 32371 optionalDependencies: 32657 - vue-router: 4.5.0(vue@3.5.25(typescript@5.9.3)) 32372 + vue-router: 4.5.0(vue@3.5.13(typescript@5.9.3)) 32658 32373 transitivePeerDependencies: 32659 32374 - rollup 32660 32375 - vue ··· 32753 32468 '@unrs/resolver-binding-win32-ia32-msvc': 1.11.1 32754 32469 '@unrs/resolver-binding-win32-x64-msvc': 1.11.1 32755 32470 32756 - unrun@0.2.32(synckit@0.11.11): 32471 + unrun@0.2.34(synckit@0.11.11): 32757 32472 dependencies: 32758 - rolldown: 1.0.0-rc.9 32473 + rolldown: 1.0.0-rc.12 32759 32474 optionalDependencies: 32760 32475 synckit: 0.11.11 32761 32476 ··· 32945 32660 birpc: 2.8.0 32946 32661 vite: 7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2) 32947 32662 vite-hot-client: 2.1.0(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 32948 - 32949 - vite-hot-client@0.2.4(vite@5.4.19(@types/node@25.2.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)): 32950 - dependencies: 32951 - vite: 5.4.19(@types/node@25.2.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1) 32952 32663 32953 32664 vite-hot-client@0.2.4(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)): 32954 32665 dependencies: ··· 33058 32769 - rollup 33059 32770 - supports-color 33060 32771 33061 - vite-plugin-inspect@0.8.9(@nuxt/kit@3.21.0(magicast@0.3.5))(rollup@4.56.0)(vite@5.4.19(@types/node@25.2.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)): 33062 - dependencies: 33063 - '@antfu/utils': 0.7.10 33064 - '@rollup/pluginutils': 5.2.0(rollup@4.56.0) 33065 - debug: 4.4.3 33066 - error-stack-parser-es: 0.1.5 33067 - fs-extra: 11.3.1 33068 - open: 10.2.0 33069 - perfect-debounce: 1.0.0 33070 - picocolors: 1.1.1 33071 - sirv: 3.0.2 33072 - vite: 5.4.19(@types/node@25.2.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1) 33073 - optionalDependencies: 33074 - '@nuxt/kit': 3.21.0(magicast@0.3.5) 33075 - transitivePeerDependencies: 33076 - - rollup 33077 - - supports-color 33078 - 33079 32772 vite-plugin-inspect@0.8.9(@nuxt/kit@3.21.0(magicast@0.3.5))(rollup@4.56.0)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)): 33080 32773 dependencies: 33081 32774 '@antfu/utils': 0.7.10 ··· 33140 32833 - '@nuxt/kit' 33141 32834 - supports-color 33142 32835 - vue 33143 - 33144 - vite-plugin-vue-inspector@5.3.2(vite@5.4.19(@types/node@25.2.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)): 33145 - dependencies: 33146 - '@babel/core': 7.28.3 33147 - '@babel/plugin-proposal-decorators': 7.28.0(@babel/core@7.28.3) 33148 - '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.3) 33149 - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.28.3) 33150 - '@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.28.3) 33151 - '@vue/babel-plugin-jsx': 1.5.0(@babel/core@7.28.3) 33152 - '@vue/compiler-dom': 3.5.25 33153 - kolorist: 1.8.0 33154 - magic-string: 0.30.21 33155 - vite: 5.4.19(@types/node@25.2.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1) 33156 - transitivePeerDependencies: 33157 - - supports-color 33158 32836 33159 32837 vite-plugin-vue-inspector@5.3.2(vite@7.3.1(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)): 33160 32838 dependencies: ··· 33509 33187 eslint-visitor-keys: 4.2.1 33510 33188 espree: 10.4.0 33511 33189 esquery: 1.6.0 33512 - semver: 7.7.3 33190 + semver: 7.7.4 33513 33191 transitivePeerDependencies: 33514 33192 - supports-color 33515 33193