diff --git a/package.json b/package.json index fa0b2bb3f..e935fdd6d 100644 --- a/package.json +++ b/package.json @@ -6,8 +6,8 @@ "packageManager": "pnpm@10.11.0", "scripts": { "prepare": "simple-git-hooks", - "build": "pnpm run -r build", - "build:packages": "pnpm --filter=\"./packages/*\" run -r build", + "build": "pnpm run build:packages && pnpm run -r build", + "build:packages": "tsdown", "preview": "pnpm run --parallel preview", "type:check": "pnpm run -r type:check && pnpm run -r type:check:test && tsc --noEmit", "test": "vitest run", @@ -44,8 +44,8 @@ "lint-staged": "^16.0.0", "msw": "^2.8.4", "simple-git-hooks": "^2.11.1", + "tsdown": "0.12.7", "typescript": "^5.8.3", - "unbuild": "^3.5.0", "vite-plugin-solid": "^2.11.6", "vitest": "^3.0.4" }, diff --git a/packages/arktype/package.json b/packages/arktype/package.json index 9275b6156..80af90e48 100644 --- a/packages/arktype/package.json +++ b/packages/arktype/package.json @@ -29,7 +29,6 @@ "dist" ], "scripts": { - "build": "unbuild", "build:watch": "pnpm run build --watch", "type:check": "tsc -b" }, diff --git a/packages/client/package.json b/packages/client/package.json index f75a56ffa..6744d13c2 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -59,7 +59,6 @@ "dist" ], "scripts": { - "build": "unbuild", "build:watch": "pnpm run build --watch", "type:check": "tsc -b" }, diff --git a/packages/client/tsdown.config.ts b/packages/client/tsdown.config.ts new file mode 100644 index 000000000..fb02211e6 --- /dev/null +++ b/packages/client/tsdown.config.ts @@ -0,0 +1,5 @@ +import { defineConfig } from 'tsdown' + +export default defineConfig({ + entry: ['./src/index.ts', './src/plugins/index.ts', './src/adapters/*/index.ts'], +}) diff --git a/packages/contract/package.json b/packages/contract/package.json index 50785d2b2..03b83e009 100644 --- a/packages/contract/package.json +++ b/packages/contract/package.json @@ -29,7 +29,6 @@ "dist" ], "scripts": { - "build": "unbuild", "build:watch": "pnpm run build --watch", "type:check": "tsc -b" }, diff --git a/packages/hey-api/package.json b/packages/hey-api/package.json index b70bfd421..e25227de5 100644 --- a/packages/hey-api/package.json +++ b/packages/hey-api/package.json @@ -30,7 +30,6 @@ "dist" ], "scripts": { - "build": "unbuild", "build:watch": "pnpm run build --watch", "type:check": "tsc -b", "prepare": "openapi-ts -i ./tests/spec.json -o ./tests/client -c @hey-api/client-fetch" diff --git a/packages/nest/package.json b/packages/nest/package.json index 2c60457bd..8e5fbb256 100644 --- a/packages/nest/package.json +++ b/packages/nest/package.json @@ -29,7 +29,6 @@ "dist" ], "scripts": { - "build": "unbuild", "build:watch": "pnpm run build --watch", "type:check": "tsc -b", "type:check:test": "tsc -p tsconfig.test.json --noEmit" diff --git a/packages/openapi-client/package.json b/packages/openapi-client/package.json index 1a73be448..985a63d13 100644 --- a/packages/openapi-client/package.json +++ b/packages/openapi-client/package.json @@ -41,7 +41,6 @@ "dist" ], "scripts": { - "build": "unbuild", "build:watch": "pnpm run build --watch", "type:check": "tsc -b" }, diff --git a/packages/openapi/package.json b/packages/openapi/package.json index ad6e47cbf..c08e53c27 100644 --- a/packages/openapi/package.json +++ b/packages/openapi/package.json @@ -59,7 +59,6 @@ "dist" ], "scripts": { - "build": "unbuild", "build:watch": "pnpm run build --watch", "type:check": "tsc -b" }, diff --git a/packages/react-query/package.json b/packages/react-query/package.json index ce6de81ce..7a2eb9342 100644 --- a/packages/react-query/package.json +++ b/packages/react-query/package.json @@ -32,7 +32,6 @@ "dist" ], "scripts": { - "build": "unbuild", "build:watch": "pnpm run build --watch", "type:check": "tsc -b" }, diff --git a/packages/react/package.json b/packages/react/package.json index 2bd370228..fabf22ab6 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -37,7 +37,6 @@ "dist" ], "scripts": { - "build": "unbuild", "build:watch": "pnpm run build --watch", "type:check": "tsc -b" }, diff --git a/packages/react/tsdown.config.ts b/packages/react/tsdown.config.ts new file mode 100644 index 000000000..f05c044df --- /dev/null +++ b/packages/react/tsdown.config.ts @@ -0,0 +1,5 @@ +import { defineConfig } from 'tsdown' + +export default defineConfig({ + entry: ['./src/index.ts', './src/hooks/index.ts'], +}) diff --git a/packages/server/package.json b/packages/server/package.json index f83a93ef5..e6744b700 100644 --- a/packages/server/package.json +++ b/packages/server/package.json @@ -89,7 +89,6 @@ "dist" ], "scripts": { - "build": "unbuild", "build:watch": "pnpm run build --watch", "type:check": "tsc -b" }, diff --git a/packages/server/tsdown.config.ts b/packages/server/tsdown.config.ts new file mode 100644 index 000000000..fb02211e6 --- /dev/null +++ b/packages/server/tsdown.config.ts @@ -0,0 +1,5 @@ +import { defineConfig } from 'tsdown' + +export default defineConfig({ + entry: ['./src/index.ts', './src/plugins/index.ts', './src/adapters/*/index.ts'], +}) diff --git a/packages/shared/package.json b/packages/shared/package.json index e020ef390..efb422352 100644 --- a/packages/shared/package.json +++ b/packages/shared/package.json @@ -29,7 +29,6 @@ "dist" ], "scripts": { - "build": "unbuild", "build:watch": "pnpm run build --watch", "type:check": "tsc -b" }, diff --git a/packages/solid-query/package.json b/packages/solid-query/package.json index 0dbb875a7..de90fda7a 100644 --- a/packages/solid-query/package.json +++ b/packages/solid-query/package.json @@ -32,7 +32,6 @@ "dist" ], "scripts": { - "build": "unbuild", "build:watch": "pnpm run build --watch", "type:check": "tsc -b" }, diff --git a/packages/standard-server-aws-lambda/package.json b/packages/standard-server-aws-lambda/package.json index 7c9b920b4..8108c9419 100644 --- a/packages/standard-server-aws-lambda/package.json +++ b/packages/standard-server-aws-lambda/package.json @@ -28,7 +28,6 @@ "dist" ], "scripts": { - "build": "unbuild", "build:watch": "pnpm run build --watch", "type:check": "tsc -b" }, diff --git a/packages/standard-server-fetch/package.json b/packages/standard-server-fetch/package.json index 236d9ec18..269fcd7d4 100644 --- a/packages/standard-server-fetch/package.json +++ b/packages/standard-server-fetch/package.json @@ -28,7 +28,6 @@ "dist" ], "scripts": { - "build": "unbuild", "build:watch": "pnpm run build --watch", "type:check": "tsc -b" }, diff --git a/packages/standard-server-node/package.json b/packages/standard-server-node/package.json index d8918017b..d7ce646bd 100644 --- a/packages/standard-server-node/package.json +++ b/packages/standard-server-node/package.json @@ -28,7 +28,6 @@ "dist" ], "scripts": { - "build": "unbuild", "build:watch": "pnpm run build --watch", "type:check": "tsc -b" }, diff --git a/packages/standard-server-peer/package.json b/packages/standard-server-peer/package.json index 7d5df8748..57dac85f9 100644 --- a/packages/standard-server-peer/package.json +++ b/packages/standard-server-peer/package.json @@ -28,7 +28,6 @@ "dist" ], "scripts": { - "build": "unbuild", "build:watch": "pnpm run build --watch", "type:check": "tsc -b" }, diff --git a/packages/standard-server/package.json b/packages/standard-server/package.json index b71b96d99..c40b1d368 100644 --- a/packages/standard-server/package.json +++ b/packages/standard-server/package.json @@ -34,7 +34,6 @@ "dist" ], "scripts": { - "build": "unbuild", "build:watch": "pnpm run build --watch", "type:check": "tsc -b" }, diff --git a/packages/standard-server/tsdown.config.ts b/packages/standard-server/tsdown.config.ts new file mode 100644 index 000000000..7752c3a61 --- /dev/null +++ b/packages/standard-server/tsdown.config.ts @@ -0,0 +1,5 @@ +import { defineConfig } from 'tsdown' + +export default defineConfig({ + entry: ['./src/index.ts', './src/batch/index.ts'], +}) diff --git a/packages/svelte-query/package.json b/packages/svelte-query/package.json index cdd8e8d36..e7849bc0d 100644 --- a/packages/svelte-query/package.json +++ b/packages/svelte-query/package.json @@ -32,7 +32,6 @@ "dist" ], "scripts": { - "build": "unbuild", "build:watch": "pnpm run build --watch", "type:check": "tsc -b" }, diff --git a/packages/tanstack-query/package.json b/packages/tanstack-query/package.json index 9f270bdfe..66622196e 100644 --- a/packages/tanstack-query/package.json +++ b/packages/tanstack-query/package.json @@ -29,7 +29,6 @@ "dist" ], "scripts": { - "build": "unbuild", "build:watch": "pnpm run build --watch", "type:check": "tsc -b" }, diff --git a/packages/valibot/package.json b/packages/valibot/package.json index bbab1e8cf..6ca8cd862 100644 --- a/packages/valibot/package.json +++ b/packages/valibot/package.json @@ -29,7 +29,6 @@ "dist" ], "scripts": { - "build": "unbuild", "build:watch": "pnpm run build --watch", "type:check": "tsc -b" }, diff --git a/packages/vue-colada/package.json b/packages/vue-colada/package.json index f72b5ea01..64a947f7c 100644 --- a/packages/vue-colada/package.json +++ b/packages/vue-colada/package.json @@ -33,7 +33,6 @@ "dist" ], "scripts": { - "build": "unbuild", "build:watch": "pnpm run build --watch", "type:check": "tsc -b" }, diff --git a/packages/vue-query/package.json b/packages/vue-query/package.json index 7162b9946..8fa84cd74 100644 --- a/packages/vue-query/package.json +++ b/packages/vue-query/package.json @@ -32,7 +32,6 @@ "dist" ], "scripts": { - "build": "unbuild", "build:watch": "pnpm run build --watch", "type:check": "tsc -b" }, diff --git a/packages/zod/package.json b/packages/zod/package.json index 95459acee..657213a27 100644 --- a/packages/zod/package.json +++ b/packages/zod/package.json @@ -35,7 +35,6 @@ "dist" ], "scripts": { - "build": "unbuild", "build:watch": "pnpm run build --watch", "type:check": "tsc -b" }, diff --git a/packages/zod/tsdown.config.ts b/packages/zod/tsdown.config.ts new file mode 100644 index 000000000..cf0a6a616 --- /dev/null +++ b/packages/zod/tsdown.config.ts @@ -0,0 +1,5 @@ +import { defineConfig } from 'tsdown' + +export default defineConfig({ + entry: ['./src/index.ts', './src/zod4/index.ts'], +}) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index cb2e368de..96abe88f6 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -62,12 +62,12 @@ importers: simple-git-hooks: specifier: ^2.11.1 version: 2.13.0 + tsdown: + specifier: 0.12.7 + version: 0.12.7(typescript@5.8.3) typescript: specifier: ^5.8.3 version: 5.8.3 - unbuild: - specifier: ^3.5.0 - version: 3.5.0(typescript@5.8.3)(vue@3.5.16(typescript@5.8.3)) vite-plugin-solid: specifier: ^2.11.6 version: 2.11.6(@testing-library/jest-dom@6.6.3)(solid-js@1.9.7)(vite@6.3.5(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0)) @@ -1056,7 +1056,7 @@ importers: version: 5.80.6(vue@3.5.16(typescript@5.8.3)) nuxt: specifier: ^3.16.2 - version: 3.17.5(@parcel/watcher@2.5.1)(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(eslint@9.28.0(jiti@2.4.2))(ioredis@5.6.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.41.0)(terser@5.39.2)(tsx@4.19.4)(typescript@5.8.3)(vite@6.3.5(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0))(xml2js@0.6.2)(yaml@2.8.0) + version: 3.17.5(@parcel/watcher@2.5.1)(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(eslint@9.28.0(jiti@2.4.2))(ioredis@5.6.1)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-beta.11-commit.f051675)(rollup@4.41.0)(terser@5.39.2)(tsx@4.19.4)(typescript@5.8.3)(vite@6.3.5(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0))(xml2js@0.6.2)(yaml@2.8.0) vue: specifier: latest version: 3.5.16(typescript@5.8.3) @@ -1089,7 +1089,7 @@ importers: version: 0.15.3(solid-js@1.9.7) '@solidjs/start': specifier: ^1.1.0 - version: 1.1.4(@testing-library/jest-dom@6.6.3)(@types/node@22.15.30)(jiti@2.4.2)(solid-js@1.9.7)(terser@5.39.2)(tsx@4.19.4)(vinxi@0.5.6(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0))(vite@6.3.5(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0))(yaml@2.8.0) + version: 1.1.4(@testing-library/jest-dom@6.6.3)(@types/node@22.15.30)(jiti@2.4.2)(solid-js@1.9.7)(terser@5.39.2)(tsx@4.19.4)(vinxi@0.5.6(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(rolldown@1.0.0-beta.11-commit.f051675)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0))(vite@6.3.5(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0))(yaml@2.8.0) '@tanstack/solid-query': specifier: ^5.80.2 version: 5.80.6(solid-js@1.9.7) @@ -1098,7 +1098,7 @@ importers: version: 1.9.7 vinxi: specifier: ^0.5.6 - version: 0.5.6(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0) + version: 0.5.6(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(rolldown@1.0.0-beta.11-commit.f051675)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0) vite-plugin-top-level-await: specifier: ^1.5.0 version: 1.5.0(rollup@4.41.1)(vite@6.3.5(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0)) @@ -1188,7 +1188,7 @@ importers: version: 1.120.16(@tanstack/react-query@5.80.6(react@19.1.0))(@tanstack/react-router@1.120.16(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@tanstack/router-core@1.120.15)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@tanstack/react-start': specifier: ^1.120.3 - version: 1.120.16(@tanstack/react-router@1.120.16(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(terser@5.39.2)(tsx@4.19.4)(vite-plugin-solid@2.11.6(@testing-library/jest-dom@6.6.3)(solid-js@1.9.7)(vite@6.3.5(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0)))(vite@6.3.5(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0))(webpack@5.99.6)(xml2js@0.6.2)(yaml@2.8.0) + version: 1.120.16(@tanstack/react-router@1.120.16(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rolldown@1.0.0-beta.11-commit.f051675)(terser@5.39.2)(tsx@4.19.4)(vite-plugin-solid@2.11.6(@testing-library/jest-dom@6.6.3)(solid-js@1.9.7)(vite@6.3.5(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0)))(vite@6.3.5(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0))(webpack@5.99.6)(xml2js@0.6.2)(yaml@2.8.0) '@types/node': specifier: ^22.15.18 version: 22.15.30 @@ -1206,7 +1206,7 @@ importers: version: 19.1.0(react@19.1.0) vinxi: specifier: ^0.5.6 - version: 0.5.6(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0) + version: 0.5.6(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(rolldown@1.0.0-beta.11-commit.f051675)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0) vite-tsconfig-paths: specifier: ^5.1.4 version: 5.1.4(typescript@5.8.3)(vite@6.3.5(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0)) @@ -1643,10 +1643,6 @@ packages: resolution: {integrity: sha512-+EzkxvLNfiUeKMgy/3luqfsCWFRXLb7U6wNQTk60tovuckwB15B191tJWvpp4HjiQWdJkCxO3Wbvc6jlk3Xb2Q==} engines: {node: '>=6.9.0'} - '@babel/types@7.27.3': - resolution: {integrity: sha512-Y1GkI4ktrtvmawoSq+4FCVHNryea6uR+qUQy0AGxLSsjCX0nVmkYQMBLHDkXZuo5hGx7eYdnIaslsdBFm7zbUw==} - engines: {node: '>=6.9.0'} - '@babel/types@7.27.6': resolution: {integrity: sha512-ETyHEk2VHHvl9b9jZP5IHPavHYk57EhanlRRuae9XCpb/j5bDCbPPMOBfCWhnl/7EDJz0jEMCi/RhccCE8r1+Q==} engines: {node: '>=6.9.0'} @@ -3624,6 +3620,10 @@ packages: cpu: [x64] os: [win32] + '@oxc-project/runtime@0.72.2': + resolution: {integrity: sha512-J2lsPDen2mFs3cOA1gIBd0wsHEhum2vTnuKIRwmj3HJJcIz/XgeNdzvgSOioIXOJgURIpcDaK05jwaDG1rhDwg==} + engines: {node: '>=6.9.0'} + '@oxc-project/types@0.72.2': resolution: {integrity: sha512-il5RF8AP85XC0CMjHF4cnVT9nT/v/ocm6qlZQpSiAR9qBbQMGkFKloBZwm7PcnOdiUX97yHgsKM7uDCCWCu3tg==} @@ -3767,9 +3767,76 @@ packages: resolution: {integrity: sha512-aQypoot0HPSJa6gDPEPTntc1GT6QINrSbgRlRhadGW2WaYqUK3tK4Bw9SBMZXhmxd3GeAlZjVcODHgiu+THY7A==} engines: {node: '>=18'} + '@quansync/fs@0.1.3': + resolution: {integrity: sha512-G0OnZbMWEs5LhDyqy2UL17vGhSVHkQIfVojMtEWVenvj0V5S84VBgy86kJIuNsGDp2p7sTKlpSIpBUWdC35OKg==} + engines: {node: '>=20.0.0'} + + '@rolldown/binding-darwin-arm64@1.0.0-beta.11-commit.f051675': + resolution: {integrity: sha512-Hlt/h+lOJ+ksC2wED2M9Hku/9CA2Hr17ENK82gNMmi3OqwcZLdZFqJDpASTli65wIOeT4p9rIUMdkfshCoJpYA==} + cpu: [arm64] + os: [darwin] + + '@rolldown/binding-darwin-x64@1.0.0-beta.11-commit.f051675': + resolution: {integrity: sha512-Bnst+HBwhW2YrNybEiNf9TJkI1myDgXmiPBVIOS0apzrLCmByzei6PilTClOpTpNFYB+UviL3Ox2gKUmcgUjGw==} + cpu: [x64] + os: [darwin] + + '@rolldown/binding-freebsd-x64@1.0.0-beta.11-commit.f051675': + resolution: {integrity: sha512-3jAxVmYDPc8vMZZOfZI1aokGB9cP6VNeU9XNCx0UJ6ShlSPK3qkAa0sWgueMhaQkgBVf8MOfGpjo47ohGd7QrA==} + cpu: [x64] + os: [freebsd] + + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.11-commit.f051675': + resolution: {integrity: sha512-TpUltUdvcsAf2WvXXD8AVc3BozvhgazJ2gJLXp4DVV2V82m26QelI373Bzx8d/4hB167EEIg4wWW/7GXB/ltoQ==} + cpu: [arm] + os: [linux] + + '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.11-commit.f051675': + resolution: {integrity: sha512-eGvHnYQSdbdhsTdjdp/+83LrN81/7X9HD6y3jg7mEmdsicxEMEIt6CsP7tvYS/jn4489jgO/6mLxW/7Vg+B8pw==} + cpu: [arm64] + os: [linux] + + '@rolldown/binding-linux-arm64-musl@1.0.0-beta.11-commit.f051675': + resolution: {integrity: sha512-0NJZWXJls83FpBRzkTbGBsXXstaQLsfodnyeOghxbnNdsjn+B4dcNPpMK5V3QDsjC0pNjDLaDdzB2jWKlZbP/Q==} + cpu: [arm64] + os: [linux] + + '@rolldown/binding-linux-x64-gnu@1.0.0-beta.11-commit.f051675': + resolution: {integrity: sha512-9vXnu27r4zgS/BHP6RCLBOrJoV2xxtLYHT68IVpSOdCkBHGpf1oOJt6blv1y5NRRJBEfAFCvj5NmwSMhETF96w==} + cpu: [x64] + os: [linux] + + '@rolldown/binding-linux-x64-musl@1.0.0-beta.11-commit.f051675': + resolution: {integrity: sha512-e6tvsZbtHt4kzl82oCajOUxwIN8uMfjhuQ0qxIVRzPekRRjKEzyH9agYPW6toN0cnHpkhPsu51tyZKJOdUl7jg==} + cpu: [x64] + os: [linux] + + '@rolldown/binding-wasm32-wasi@1.0.0-beta.11-commit.f051675': + resolution: {integrity: sha512-nBQVizPoUQiViANhWrOyihXNf2booP2iq3S396bI1tmHftdgUXWKa6yAoleJBgP0oF0idXpTPU82ciaROUcjpg==} + engines: {node: '>=14.21.3'} + cpu: [wasm32] + + '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.11-commit.f051675': + resolution: {integrity: sha512-Rey/ECXKI/UEykrKfJX3oVAPXDH2k1p2BKzYGza0z3S2X5I3sTDOeBn2I0IQgyyf7U3+DCBhYjkDFnmSePrU/A==} + cpu: [arm64] + os: [win32] + + '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.11-commit.f051675': + resolution: {integrity: sha512-LtuMKJe6iFH4iV55dy+gDwZ9v23Tfxx5cd7ZAxvhYFGoVNSvarxAgl844BvFGReERCnLTGRvo85FUR6fDHQX+A==} + cpu: [ia32] + os: [win32] + + '@rolldown/binding-win32-x64-msvc@1.0.0-beta.11-commit.f051675': + resolution: {integrity: sha512-YY8UYfBm4dbWa4psgEPPD9T9X0nAvlYu0BOsQC5vDfCwzzU7IHT4jAfetvlQq+4+M6qWHSTr6v+/WX5EmlM1WA==} + cpu: [x64] + os: [win32] + '@rolldown/pluginutils@1.0.0-beta.11': resolution: {integrity: sha512-L/gAA/hyCSuzTF1ftlzUSI/IKr2POHsv1Dd78GfqkR83KMNuswWD61JxGV2L7nRwBBBSDr6R1gCkdTmoN7W4ag==} + '@rolldown/pluginutils@1.0.0-beta.11-commit.f051675': + resolution: {integrity: sha512-TAqMYehvpauLKz7v4TZOTUQNjxa5bUQWw2+51/+Zk3ItclBxgoSWhnZ31sXjdoX6le6OXdK2vZfV3KoyW/O/GA==} + '@rolldown/pluginutils@1.0.0-beta.9': resolution: {integrity: sha512-e9MeMtVWo186sgvFFJOPGy7/d2j2mZhLJIdVW0C/xDluuOvymEATqz6zKsP0ZmXGzQtqlyjz5sC1sYQUoJG98w==} @@ -5663,6 +5730,10 @@ packages: resolution: {integrity: sha512-lvGehj1XsrIoQrD5CfPduIzQbcpuX2EPjlk/vDMDQF9U9HLRB6WwMTdighj5n52hdhh8xg9VgPTU7Q25MuJ/rw==} engines: {node: '>=16.14.0'} + ast-kit@2.1.0: + resolution: {integrity: sha512-ROM2LlXbZBZVk97crfw8PGDOBzzsJvN2uJCmwswvPUNyfH14eg90mSN3xNqsri1JS1G9cz0VzeDUhxJkTrr4Ew==} + engines: {node: '>=20.18.0'} + ast-module-types@5.0.0: resolution: {integrity: sha512-JvqziE0Wc0rXQfma0HZC/aY7URXHFuZV84fJRtP8u+lhp0JYCNd5wJzVXP45t0PH0Mej3ynlzvdyITYIu0G4LQ==} engines: {node: '>=14'} @@ -6723,6 +6794,10 @@ packages: resolution: {integrity: sha512-PJWHUb1RFevKCwaFA9RlG5tCd+FO5iRh9A8HEtkmBH2Li03iJriB6m6JIN4rGz3K3JLawI7/veA1xzRKP6ISBw==} engines: {node: '>=0.3.1'} + diff@8.0.2: + resolution: {integrity: sha512-sSuxWU5j5SR9QQji/o2qMvqRNYRDOcBTgsJ/DeCf4iSN4gW+gNMXM7wFIP+fdXZxoNiAnHUTGjCr+TSWXdRDKg==} + engines: {node: '>=0.3.1'} + dir-compare@4.2.0: resolution: {integrity: sha512-2xMCmOoMrdQIPHdsTawECdNPwlVFB9zGcz3kuhmBO6U3oU+UQjsue0i8ayLKpgBcm+hcXPMVSGUN9d+pvJ6+VQ==} @@ -6781,6 +6856,15 @@ packages: resolution: {integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==} engines: {node: '>=4'} + dts-resolver@2.1.1: + resolution: {integrity: sha512-3BiGFhB6mj5Kv+W2vdJseQUYW+SKVzAFJL6YNP6ursbrwy1fXHRotfHi3xLNxe4wZl/K8qbAFeCDjZLjzqxxRw==} + engines: {node: '>=20.18.0'} + peerDependencies: + oxc-resolver: '>=11.0.0' + peerDependenciesMeta: + oxc-resolver: + optional: true + dunder-proto@1.0.1: resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} engines: {node: '>= 0.4'} @@ -6856,6 +6940,10 @@ packages: emoji-regex@9.2.2: resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + empathic@1.1.0: + resolution: {integrity: sha512-rsPft6CK3eHtrlp9Y5ALBb+hfK+DWnA4WFebbazxjWyx8vSm3rZeoM3z9irsjcqO3PYRzlfv27XIB4tz2DV7RA==} + engines: {node: '>=14'} + enabled@2.0.0: resolution: {integrity: sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==} @@ -7463,9 +7551,6 @@ packages: engines: {node: '>=18'} hasBin: true - fix-dts-default-cjs-exports@1.0.1: - resolution: {integrity: sha512-pVIECanWFC61Hzl2+oOCtoJ3F17kglZC/6N94eRWycFgBH35hHx0Li604ZIzhseh97mf2p0cv7vVrOZGoqhlEg==} - flat-cache@4.0.1: resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} engines: {node: '>=16'} @@ -9050,27 +9135,6 @@ packages: engines: {node: '>=10'} hasBin: true - mkdist@2.3.0: - resolution: {integrity: sha512-thkRk+pHdudjdZT3FJpPZ2+pncI6mGlH/B+KBVddlZj4MrFGW41sRIv1wZawZUHU8v7cttGaj+5nx8P+dG664A==} - hasBin: true - peerDependencies: - sass: ^1.85.0 - typescript: '>=5.7.3' - vue: ^3.5.13 - vue-sfc-transformer: ^0.1.1 - vue-tsc: ^1.8.27 || ^2.0.21 - peerDependenciesMeta: - sass: - optional: true - typescript: - optional: true - vue: - optional: true - vue-sfc-transformer: - optional: true - vue-tsc: - optional: true - mlly@1.7.4: resolution: {integrity: sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==} @@ -9818,12 +9882,6 @@ packages: peerDependencies: postcss: ^8.4.32 - postcss-nested@7.0.2: - resolution: {integrity: sha512-5osppouFc0VR9/VYzYxO03VaDa3e8F23Kfd6/9qcZTUI8P58GIYlArOET2Wq0ywSl2o2PjELhYOFI4W7l5QHKw==} - engines: {node: '>=18.0'} - peerDependencies: - postcss: ^8.2.14 - postcss-normalize-charset@7.0.1: resolution: {integrity: sha512-sn413ofhSQHlZFae//m9FTOfkmiZ+YQXsbosqOWRiVQncU2BA3daX3n0VF3cG6rGLSFVc5Di/yns0dFfh8NFgQ==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} @@ -10389,12 +10447,25 @@ packages: resolution: {integrity: sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A==} engines: {node: '>=8.0'} - rollup-plugin-dts@6.2.1: - resolution: {integrity: sha512-sR3CxYUl7i2CHa0O7bA45mCrgADyAQ0tVtGSqi3yvH28M+eg1+g5d7kQ9hLvEz5dorK3XVsH5L2jwHLQf72DzA==} - engines: {node: '>=16'} + rolldown-plugin-dts@0.13.8: + resolution: {integrity: sha512-jib3ui3rgADoAXwyuCRid74yoi0ZGTLD0P/bQQXFeaVIdhh4ZXwU2RJ0eUmSFJX1fQVc+a3lfccrPEuV7vvRJg==} + engines: {node: '>=20.18.0'} peerDependencies: - rollup: ^3.29.4 || ^4 - typescript: ^4.5 || ^5.0 + '@typescript/native-preview': '>=7.0.0-dev.20250601.1' + rolldown: ^1.0.0-beta.9 + typescript: ^5.0.0 + vue-tsc: ~2.2.0 + peerDependenciesMeta: + '@typescript/native-preview': + optional: true + typescript: + optional: true + vue-tsc: + optional: true + + rolldown@1.0.0-beta.11-commit.f051675: + resolution: {integrity: sha512-g8MCVkvg2GnrrG+j+WplOTx1nAmjSwYOMSOQI0qfxf8D4NmYZqJuG3f85yWK64XXQv6pKcXZsfMkOPs9B6B52A==} + hasBin: true rollup-plugin-visualizer@5.14.0: resolution: {integrity: sha512-VlDXneTDaKsHIw8yzJAFWtrzguoJ/LnQ+lMpoVfYJ3jJF4Ihe5oYLAqLklIK/35lgUY+1yEzCkHyZ1j4A5w5fA==} @@ -11292,6 +11363,28 @@ packages: resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==} engines: {node: '>=6'} + tsdown@0.12.7: + resolution: {integrity: sha512-VJjVaqJfIQuQwtOoeuEJMOJUf3MPDrfX0X7OUNx3nq5pQeuIl3h58tmdbM1IZcu8Dn2j8NQjLh+5TXa0yPb9zg==} + engines: {node: '>=18.0.0'} + hasBin: true + peerDependencies: + '@arethetypeswrong/core': ^0.18.1 + publint: ^0.3.0 + typescript: ^5.0.0 + unplugin-lightningcss: ^0.4.0 + unplugin-unused: ^0.5.0 + peerDependenciesMeta: + '@arethetypeswrong/core': + optional: true + publint: + optional: true + typescript: + optional: true + unplugin-lightningcss: + optional: true + unplugin-unused: + optional: true + tslib@1.14.1: resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} @@ -11396,18 +11489,12 @@ packages: ultrahtml@1.6.0: resolution: {integrity: sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw==} - unbuild@3.5.0: - resolution: {integrity: sha512-DPFttsiADnHRb/K+yJ9r9jdn6JyXlsmdT0S12VFC14DFSJD+cxBnHq+v0INmqqPVPxOoUjvJFYUVIb02rWnVeA==} - hasBin: true - peerDependencies: - typescript: ^5.7.3 - peerDependenciesMeta: - typescript: - optional: true - unbzip2-stream@1.4.3: resolution: {integrity: sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==} + unconfig@7.3.2: + resolution: {integrity: sha512-nqG5NNL2wFVGZ0NA/aCFw0oJ2pxSf1lwg4Z5ill8wd7K4KX/rQbHlwbh+bjctXL5Ly1xtzHenHGOK0b+lG6JVg==} + uncrypto@0.1.3: resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==} @@ -12891,7 +12978,7 @@ snapshots: '@babel/parser': 7.27.5 '@babel/template': 7.27.2 '@babel/traverse': 7.27.4 - '@babel/types': 7.27.3 + '@babel/types': 7.27.6 convert-source-map: 2.0.0 debug: 4.4.1 gensync: 1.0.0-beta.2 @@ -12911,7 +12998,7 @@ snapshots: '@babel/generator@7.27.5': dependencies: '@babel/parser': 7.27.5 - '@babel/types': 7.27.3 + '@babel/types': 7.27.6 '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 jsesc: 3.1.0 @@ -12950,7 +13037,7 @@ snapshots: '@babel/helper-module-imports@7.18.6': dependencies: - '@babel/types': 7.27.1 + '@babel/types': 7.27.6 '@babel/helper-module-imports@7.27.1': dependencies: @@ -13013,7 +13100,7 @@ snapshots: '@babel/helpers@7.27.4': dependencies: '@babel/template': 7.27.2 - '@babel/types': 7.27.3 + '@babel/types': 7.27.6 '@babel/parser@7.27.2': dependencies: @@ -13021,7 +13108,7 @@ snapshots: '@babel/parser@7.27.5': dependencies: - '@babel/types': 7.27.3 + '@babel/types': 7.27.6 '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.27.1)': dependencies: @@ -13108,11 +13195,6 @@ snapshots: '@babel/helper-string-parser': 7.27.1 '@babel/helper-validator-identifier': 7.27.1 - '@babel/types@7.27.3': - dependencies: - '@babel/helper-string-parser': 7.27.1 - '@babel/helper-validator-identifier': 7.27.1 - '@babel/types@7.27.6': dependencies: '@babel/helper-string-parser': 7.27.1 @@ -14602,7 +14684,7 @@ snapshots: '@netlify/zip-it-and-ship-it@10.1.1(encoding@0.1.13)(rollup@4.41.0)': dependencies: - '@babel/parser': 7.27.2 + '@babel/parser': 7.27.5 '@babel/types': 7.27.1 '@netlify/binary-info': 1.0.0 '@netlify/serverless-functions-api': 1.41.1 @@ -14839,7 +14921,7 @@ snapshots: transitivePeerDependencies: - magicast - '@nuxt/vite-builder@3.17.5(@types/node@22.15.30)(eslint@9.28.0(jiti@2.4.2))(magicast@0.3.5)(optionator@0.9.4)(rollup@4.41.0)(terser@5.39.2)(tsx@4.19.4)(typescript@5.8.3)(vue@3.5.16(typescript@5.8.3))(yaml@2.8.0)': + '@nuxt/vite-builder@3.17.5(@types/node@22.15.30)(eslint@9.28.0(jiti@2.4.2))(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-beta.11-commit.f051675)(rollup@4.41.0)(terser@5.39.2)(tsx@4.19.4)(typescript@5.8.3)(vue@3.5.16(typescript@5.8.3))(yaml@2.8.0)': dependencies: '@nuxt/kit': 3.17.5(magicast@0.3.5) '@rollup/plugin-replace': 6.0.2(rollup@4.41.0) @@ -14865,7 +14947,7 @@ snapshots: perfect-debounce: 1.0.0 pkg-types: 2.1.0 postcss: 8.5.4 - rollup-plugin-visualizer: 6.0.1(rollup@4.41.0) + rollup-plugin-visualizer: 6.0.1(rolldown@1.0.0-beta.11-commit.f051675)(rollup@4.41.0) std-env: 3.9.0 ufo: 1.6.1 unenv: 2.0.0-rc.17 @@ -14957,6 +15039,8 @@ snapshots: '@oxc-parser/binding-win32-x64-msvc@0.72.2': optional: true + '@oxc-project/runtime@0.72.2': {} + '@oxc-project/types@0.72.2': {} '@paralleldrive/cuid2@2.2.2': @@ -15071,8 +15155,52 @@ snapshots: '@poppinss/exception@1.2.1': {} + '@quansync/fs@0.1.3': + dependencies: + quansync: 0.2.10 + + '@rolldown/binding-darwin-arm64@1.0.0-beta.11-commit.f051675': + optional: true + + '@rolldown/binding-darwin-x64@1.0.0-beta.11-commit.f051675': + optional: true + + '@rolldown/binding-freebsd-x64@1.0.0-beta.11-commit.f051675': + optional: true + + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.11-commit.f051675': + optional: true + + '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.11-commit.f051675': + optional: true + + '@rolldown/binding-linux-arm64-musl@1.0.0-beta.11-commit.f051675': + optional: true + + '@rolldown/binding-linux-x64-gnu@1.0.0-beta.11-commit.f051675': + optional: true + + '@rolldown/binding-linux-x64-musl@1.0.0-beta.11-commit.f051675': + optional: true + + '@rolldown/binding-wasm32-wasi@1.0.0-beta.11-commit.f051675': + dependencies: + '@napi-rs/wasm-runtime': 0.2.10 + optional: true + + '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.11-commit.f051675': + optional: true + + '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.11-commit.f051675': + optional: true + + '@rolldown/binding-win32-x64-msvc@1.0.0-beta.11-commit.f051675': + optional: true + '@rolldown/pluginutils@1.0.0-beta.11': {} + '@rolldown/pluginutils@1.0.0-beta.11-commit.f051675': {} + '@rolldown/pluginutils@1.0.0-beta.9': {} '@rollup/plugin-alias@5.1.1(rollup@4.41.0)': @@ -15444,11 +15572,11 @@ snapshots: dependencies: solid-js: 1.9.7 - '@solidjs/start@1.1.4(@testing-library/jest-dom@6.6.3)(@types/node@22.15.30)(jiti@2.4.2)(solid-js@1.9.7)(terser@5.39.2)(tsx@4.19.4)(vinxi@0.5.6(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0))(vite@6.3.5(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0))(yaml@2.8.0)': + '@solidjs/start@1.1.4(@testing-library/jest-dom@6.6.3)(@types/node@22.15.30)(jiti@2.4.2)(solid-js@1.9.7)(terser@5.39.2)(tsx@4.19.4)(vinxi@0.5.6(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(rolldown@1.0.0-beta.11-commit.f051675)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0))(vite@6.3.5(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0))(yaml@2.8.0)': dependencies: '@tanstack/server-functions-plugin': 1.119.2(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0) - '@vinxi/plugin-directives': 0.5.0(vinxi@0.5.6(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0)) - '@vinxi/server-components': 0.5.0(vinxi@0.5.6(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0)) + '@vinxi/plugin-directives': 0.5.0(vinxi@0.5.6(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(rolldown@1.0.0-beta.11-commit.f051675)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0)) + '@vinxi/server-components': 0.5.0(vinxi@0.5.6(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(rolldown@1.0.0-beta.11-commit.f051675)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0)) defu: 6.1.4 error-stack-parser: 2.1.4 html-to-image: 1.11.13 @@ -15459,7 +15587,7 @@ snapshots: source-map-js: 1.2.1 terracotta: 1.0.6(solid-js@1.9.7) tinyglobby: 0.2.13 - vinxi: 0.5.6(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0) + vinxi: 0.5.6(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(rolldown@1.0.0-beta.11-commit.f051675)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0) vite-plugin-solid: 2.11.6(@testing-library/jest-dom@6.6.3)(solid-js@1.9.7)(vite@6.3.5(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0)) transitivePeerDependencies: - '@testing-library/jest-dom' @@ -15644,7 +15772,7 @@ snapshots: '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.27.1) '@babel/template': 7.27.2 '@babel/traverse': 7.27.1 - '@babel/types': 7.27.1 + '@babel/types': 7.27.6 '@tanstack/router-utils': 1.115.0 babel-dead-code-elimination: 1.0.10 dedent: 1.6.0 @@ -15717,7 +15845,7 @@ snapshots: tiny-invariant: 1.3.3 tiny-warning: 1.0.3 - '@tanstack/react-start-client@1.120.16(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0)': + '@tanstack/react-start-client@1.120.16(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rolldown@1.0.0-beta.11-commit.f051675)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0)': dependencies: '@tanstack/react-router': 1.120.16(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@tanstack/router-core': 1.120.15 @@ -15728,7 +15856,7 @@ snapshots: react-dom: 19.1.0(react@19.1.0) tiny-invariant: 1.3.3 tiny-warning: 1.0.3 - vinxi: 0.5.6(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0) + vinxi: 0.5.6(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(rolldown@1.0.0-beta.11-commit.f051675)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -15771,7 +15899,7 @@ snapshots: - xml2js - yaml - '@tanstack/react-start-config@1.120.16(@tanstack/react-router@1.120.16(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(terser@5.39.2)(tsx@4.19.4)(vite-plugin-solid@2.11.6(@testing-library/jest-dom@6.6.3)(solid-js@1.9.7)(vite@6.3.5(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0)))(vite@6.3.5(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0))(webpack@5.99.6)(xml2js@0.6.2)(yaml@2.8.0)': + '@tanstack/react-start-config@1.120.16(@tanstack/react-router@1.120.16(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rolldown@1.0.0-beta.11-commit.f051675)(terser@5.39.2)(tsx@4.19.4)(vite-plugin-solid@2.11.6(@testing-library/jest-dom@6.6.3)(solid-js@1.9.7)(vite@6.3.5(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0)))(vite@6.3.5(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0))(webpack@5.99.6)(xml2js@0.6.2)(yaml@2.8.0)': dependencies: '@tanstack/react-start-plugin': 1.115.0(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0) '@tanstack/router-core': 1.120.15 @@ -15781,11 +15909,11 @@ snapshots: '@tanstack/start-server-functions-handler': 1.120.16 '@vitejs/plugin-react': 4.5.1(vite@6.3.5(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0)) import-meta-resolve: 4.1.0 - nitropack: 2.11.12(encoding@0.1.13)(xml2js@0.6.2) + nitropack: 2.11.12(encoding@0.1.13)(rolldown@1.0.0-beta.11-commit.f051675)(xml2js@0.6.2) ofetch: 1.4.1 react: 19.1.0 react-dom: 19.1.0(react@19.1.0) - vinxi: 0.5.3(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0) + vinxi: 0.5.3(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(rolldown@1.0.0-beta.11-commit.f051675)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0) vite: 6.3.5(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0) zod: 3.25.55 transitivePeerDependencies: @@ -15862,11 +15990,11 @@ snapshots: - tsx - yaml - '@tanstack/react-start-router-manifest@1.120.15(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0)': + '@tanstack/react-start-router-manifest@1.120.15(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(rolldown@1.0.0-beta.11-commit.f051675)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0)': dependencies: '@tanstack/router-core': 1.120.15 tiny-invariant: 1.3.3 - vinxi: 0.5.3(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0) + vinxi: 0.5.3(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(rolldown@1.0.0-beta.11-commit.f051675)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -15924,13 +16052,13 @@ snapshots: tiny-warning: 1.0.3 unctx: 2.4.1 - '@tanstack/react-start@1.120.16(@tanstack/react-router@1.120.16(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(terser@5.39.2)(tsx@4.19.4)(vite-plugin-solid@2.11.6(@testing-library/jest-dom@6.6.3)(solid-js@1.9.7)(vite@6.3.5(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0)))(vite@6.3.5(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0))(webpack@5.99.6)(xml2js@0.6.2)(yaml@2.8.0)': + '@tanstack/react-start@1.120.16(@tanstack/react-router@1.120.16(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rolldown@1.0.0-beta.11-commit.f051675)(terser@5.39.2)(tsx@4.19.4)(vite-plugin-solid@2.11.6(@testing-library/jest-dom@6.6.3)(solid-js@1.9.7)(vite@6.3.5(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0)))(vite@6.3.5(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0))(webpack@5.99.6)(xml2js@0.6.2)(yaml@2.8.0)': dependencies: - '@tanstack/react-start-client': 1.120.16(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0) - '@tanstack/react-start-config': 1.120.16(@tanstack/react-router@1.120.16(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(terser@5.39.2)(tsx@4.19.4)(vite-plugin-solid@2.11.6(@testing-library/jest-dom@6.6.3)(solid-js@1.9.7)(vite@6.3.5(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0)))(vite@6.3.5(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0))(webpack@5.99.6)(xml2js@0.6.2)(yaml@2.8.0) - '@tanstack/react-start-router-manifest': 1.120.15(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0) + '@tanstack/react-start-client': 1.120.16(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rolldown@1.0.0-beta.11-commit.f051675)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0) + '@tanstack/react-start-config': 1.120.16(@tanstack/react-router@1.120.16(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rolldown@1.0.0-beta.11-commit.f051675)(terser@5.39.2)(tsx@4.19.4)(vite-plugin-solid@2.11.6(@testing-library/jest-dom@6.6.3)(solid-js@1.9.7)(vite@6.3.5(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0)))(vite@6.3.5(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0))(webpack@5.99.6)(xml2js@0.6.2)(yaml@2.8.0) + '@tanstack/react-start-router-manifest': 1.120.15(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(rolldown@1.0.0-beta.11-commit.f051675)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0) '@tanstack/react-start-server': 1.120.16(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@tanstack/start-api-routes': 1.120.16(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0) + '@tanstack/start-api-routes': 1.120.16(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(rolldown@1.0.0-beta.11-commit.f051675)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0) '@tanstack/start-server-functions-client': 1.120.16(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0) '@tanstack/start-server-functions-handler': 1.120.16 '@tanstack/start-server-functions-server': 1.119.2(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0) @@ -16084,11 +16212,11 @@ snapshots: '@tanstack/query-core': 5.80.6 solid-js: 1.9.7 - '@tanstack/start-api-routes@1.120.16(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0)': + '@tanstack/start-api-routes@1.120.16(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(rolldown@1.0.0-beta.11-commit.f051675)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0)': dependencies: '@tanstack/router-core': 1.120.15 '@tanstack/start-server-core': 1.120.16 - vinxi: 0.5.3(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0) + vinxi: 0.5.3(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(rolldown@1.0.0-beta.11-commit.f051675)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -16798,7 +16926,7 @@ snapshots: untun: 0.1.3 uqr: 0.1.2 - '@vinxi/plugin-directives@0.5.0(vinxi@0.5.6(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0))': + '@vinxi/plugin-directives@0.5.0(vinxi@0.5.6(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(rolldown@1.0.0-beta.11-commit.f051675)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0))': dependencies: '@babel/parser': 7.27.2 acorn: 8.14.1 @@ -16809,18 +16937,18 @@ snapshots: magicast: 0.2.11 recast: 0.23.11 tslib: 2.8.1 - vinxi: 0.5.6(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0) + vinxi: 0.5.6(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(rolldown@1.0.0-beta.11-commit.f051675)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0) - '@vinxi/server-components@0.5.0(vinxi@0.5.6(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0))': + '@vinxi/server-components@0.5.0(vinxi@0.5.6(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(rolldown@1.0.0-beta.11-commit.f051675)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0))': dependencies: - '@vinxi/plugin-directives': 0.5.0(vinxi@0.5.6(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0)) + '@vinxi/plugin-directives': 0.5.0(vinxi@0.5.6(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(rolldown@1.0.0-beta.11-commit.f051675)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0)) acorn: 8.14.1 acorn-loose: 8.4.0 acorn-typescript: 1.4.13(acorn@8.14.1) astring: 1.9.0 magicast: 0.2.11 recast: 0.23.11 - vinxi: 0.5.6(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0) + vinxi: 0.5.6(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(rolldown@1.0.0-beta.11-commit.f051675)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0) '@vitejs/plugin-react@4.5.0(vite@6.3.5(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0))': dependencies: @@ -17019,7 +17147,7 @@ snapshots: '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.27.4) '@babel/template': 7.27.2 '@babel/traverse': 7.27.4 - '@babel/types': 7.27.3 + '@babel/types': 7.27.6 '@vue/babel-helper-vue-transform-on': 1.4.0 '@vue/babel-plugin-resolve-type': 1.4.0(@babel/core@7.27.4) '@vue/shared': 3.5.16 @@ -17041,7 +17169,7 @@ snapshots: '@vue/compiler-core@3.5.16': dependencies: - '@babel/parser': 7.27.2 + '@babel/parser': 7.27.5 '@vue/shared': 3.5.16 entities: 4.5.0 estree-walker: 2.0.2 @@ -17677,7 +17805,12 @@ snapshots: ast-kit@1.4.2: dependencies: - '@babel/parser': 7.27.2 + '@babel/parser': 7.27.5 + pathe: 2.0.3 + + ast-kit@2.1.0: + dependencies: + '@babel/parser': 7.27.5 pathe: 2.0.3 ast-module-types@5.0.0: {} @@ -17694,7 +17827,7 @@ snapshots: ast-walker-scope@0.6.2: dependencies: - '@babel/parser': 7.27.2 + '@babel/parser': 7.27.5 ast-kit: 1.4.2 astral-regex@2.0.0: @@ -17823,16 +17956,6 @@ snapshots: stubborn-fs: 1.2.5 when-exit: 2.1.4 - autoprefixer@10.4.21(postcss@8.5.3): - dependencies: - browserslist: 4.24.5 - caniuse-lite: 1.0.30001717 - fraction.js: 4.3.7 - normalize-range: 0.1.2 - picocolors: 1.1.1 - postcss: 8.5.3 - postcss-value-parser: 4.2.0 - autoprefixer@10.4.21(postcss@8.5.4): dependencies: browserslist: 4.24.5 @@ -17855,9 +17978,9 @@ snapshots: babel-dead-code-elimination@1.0.10: dependencies: '@babel/core': 7.27.1 - '@babel/parser': 7.27.2 + '@babel/parser': 7.27.5 '@babel/traverse': 7.27.1 - '@babel/types': 7.27.1 + '@babel/types': 7.27.6 transitivePeerDependencies: - supports-color @@ -18584,10 +18707,6 @@ snapshots: crossws@0.4.1: {} - css-declaration-sorter@7.2.0(postcss@8.5.3): - dependencies: - postcss: 8.5.3 - css-declaration-sorter@7.2.0(postcss@8.5.4): dependencies: postcss: 8.5.4 @@ -18621,40 +18740,6 @@ snapshots: cssesc@3.0.0: {} - cssnano-preset-default@7.0.7(postcss@8.5.3): - dependencies: - browserslist: 4.25.0 - css-declaration-sorter: 7.2.0(postcss@8.5.3) - cssnano-utils: 5.0.1(postcss@8.5.3) - postcss: 8.5.3 - postcss-calc: 10.1.1(postcss@8.5.3) - postcss-colormin: 7.0.3(postcss@8.5.3) - postcss-convert-values: 7.0.5(postcss@8.5.3) - postcss-discard-comments: 7.0.4(postcss@8.5.3) - postcss-discard-duplicates: 7.0.2(postcss@8.5.3) - postcss-discard-empty: 7.0.1(postcss@8.5.3) - postcss-discard-overridden: 7.0.1(postcss@8.5.3) - postcss-merge-longhand: 7.0.5(postcss@8.5.3) - postcss-merge-rules: 7.0.5(postcss@8.5.3) - postcss-minify-font-values: 7.0.1(postcss@8.5.3) - postcss-minify-gradients: 7.0.1(postcss@8.5.3) - postcss-minify-params: 7.0.3(postcss@8.5.3) - postcss-minify-selectors: 7.0.5(postcss@8.5.3) - postcss-normalize-charset: 7.0.1(postcss@8.5.3) - postcss-normalize-display-values: 7.0.1(postcss@8.5.3) - postcss-normalize-positions: 7.0.1(postcss@8.5.3) - postcss-normalize-repeat-style: 7.0.1(postcss@8.5.3) - postcss-normalize-string: 7.0.1(postcss@8.5.3) - postcss-normalize-timing-functions: 7.0.1(postcss@8.5.3) - postcss-normalize-unicode: 7.0.3(postcss@8.5.3) - postcss-normalize-url: 7.0.1(postcss@8.5.3) - postcss-normalize-whitespace: 7.0.1(postcss@8.5.3) - postcss-ordered-values: 7.0.2(postcss@8.5.3) - postcss-reduce-initial: 7.0.3(postcss@8.5.3) - postcss-reduce-transforms: 7.0.1(postcss@8.5.3) - postcss-svgo: 7.0.2(postcss@8.5.3) - postcss-unique-selectors: 7.0.4(postcss@8.5.3) - cssnano-preset-default@7.0.7(postcss@8.5.4): dependencies: browserslist: 4.25.0 @@ -18689,20 +18774,10 @@ snapshots: postcss-svgo: 7.0.2(postcss@8.5.4) postcss-unique-selectors: 7.0.4(postcss@8.5.4) - cssnano-utils@5.0.1(postcss@8.5.3): - dependencies: - postcss: 8.5.3 - cssnano-utils@5.0.1(postcss@8.5.4): dependencies: postcss: 8.5.4 - cssnano@7.0.7(postcss@8.5.3): - dependencies: - cssnano-preset-default: 7.0.7(postcss@8.5.3) - lilconfig: 3.1.3 - postcss: 8.5.3 - cssnano@7.0.7(postcss@8.5.4): dependencies: cssnano-preset-default: 7.0.7(postcss@8.5.4) @@ -18920,6 +18995,8 @@ snapshots: diff@7.0.0: {} + diff@8.0.2: {} + dir-compare@4.2.0: dependencies: minimatch: 3.1.2 @@ -18996,6 +19073,8 @@ snapshots: dset@3.1.4: {} + dts-resolver@2.1.1: {} + dunder-proto@1.0.1: dependencies: call-bind-apply-helpers: 1.0.2 @@ -19110,6 +19189,8 @@ snapshots: emoji-regex@9.2.2: {} + empathic@1.1.0: {} + enabled@2.0.0: {} encodeurl@1.0.2: {} @@ -19974,12 +20055,6 @@ snapshots: minimist: 1.2.8 xml2js: 0.6.2 - fix-dts-default-cjs-exports@1.0.1: - dependencies: - magic-string: 0.30.17 - mlly: 1.7.4 - rollup: 4.41.0 - flat-cache@4.0.1: dependencies: flatted: 3.3.3 @@ -21289,8 +21364,8 @@ snapshots: magicast@0.2.11: dependencies: - '@babel/parser': 7.27.2 - '@babel/types': 7.27.1 + '@babel/parser': 7.27.5 + '@babel/types': 7.27.6 recast: 0.23.11 magicast@0.3.5: @@ -21838,25 +21913,6 @@ snapshots: mkdirp@3.0.1: {} - mkdist@2.3.0(typescript@5.8.3)(vue@3.5.16(typescript@5.8.3)): - dependencies: - autoprefixer: 10.4.21(postcss@8.5.3) - citty: 0.1.6 - cssnano: 7.0.7(postcss@8.5.3) - defu: 6.1.4 - esbuild: 0.25.4 - jiti: 1.21.7 - mlly: 1.7.4 - pathe: 2.0.3 - pkg-types: 2.1.0 - postcss: 8.5.3 - postcss-nested: 7.0.2(postcss@8.5.3) - semver: 7.7.2 - tinyglobby: 0.2.13 - optionalDependencies: - typescript: 5.8.3 - vue: 3.5.16(typescript@5.8.3) - mlly@1.7.4: dependencies: acorn: 8.14.1 @@ -21991,7 +22047,7 @@ snapshots: - '@babel/core' - babel-plugin-macros - nitropack@2.11.12(encoding@0.1.13)(xml2js@0.6.2): + nitropack@2.11.12(encoding@0.1.13)(rolldown@1.0.0-beta.11-commit.f051675)(xml2js@0.6.2): dependencies: '@cloudflare/kv-asset-handler': 0.4.0 '@netlify/functions': 3.1.8(encoding@0.1.13)(rollup@4.41.0) @@ -22045,7 +22101,7 @@ snapshots: pretty-bytes: 6.1.1 radix3: 1.1.2 rollup: 4.41.0 - rollup-plugin-visualizer: 5.14.0(rollup@4.41.0) + rollup-plugin-visualizer: 5.14.0(rolldown@1.0.0-beta.11-commit.f051675)(rollup@4.41.0) scule: 1.3.0 semver: 7.7.2 serve-placeholder: 2.0.2 @@ -22151,7 +22207,7 @@ snapshots: node-source-walk@6.0.2: dependencies: - '@babel/parser': 7.27.2 + '@babel/parser': 7.27.5 nopt@5.0.0: dependencies: @@ -22211,7 +22267,7 @@ snapshots: dependencies: boolbase: 1.0.0 - nuxt@3.17.5(@parcel/watcher@2.5.1)(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(eslint@9.28.0(jiti@2.4.2))(ioredis@5.6.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.41.0)(terser@5.39.2)(tsx@4.19.4)(typescript@5.8.3)(vite@6.3.5(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0))(xml2js@0.6.2)(yaml@2.8.0): + nuxt@3.17.5(@parcel/watcher@2.5.1)(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(eslint@9.28.0(jiti@2.4.2))(ioredis@5.6.1)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-beta.11-commit.f051675)(rollup@4.41.0)(terser@5.39.2)(tsx@4.19.4)(typescript@5.8.3)(vite@6.3.5(@types/node@22.15.30)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(yaml@2.8.0))(xml2js@0.6.2)(yaml@2.8.0): dependencies: '@nuxt/cli': 3.25.1(magicast@0.3.5) '@nuxt/devalue': 2.0.2 @@ -22219,7 +22275,7 @@ snapshots: '@nuxt/kit': 3.17.5(magicast@0.3.5) '@nuxt/schema': 3.17.5 '@nuxt/telemetry': 2.6.6(magicast@0.3.5) - '@nuxt/vite-builder': 3.17.5(@types/node@22.15.30)(eslint@9.28.0(jiti@2.4.2))(magicast@0.3.5)(optionator@0.9.4)(rollup@4.41.0)(terser@5.39.2)(tsx@4.19.4)(typescript@5.8.3)(vue@3.5.16(typescript@5.8.3))(yaml@2.8.0) + '@nuxt/vite-builder': 3.17.5(@types/node@22.15.30)(eslint@9.28.0(jiti@2.4.2))(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-beta.11-commit.f051675)(rollup@4.41.0)(terser@5.39.2)(tsx@4.19.4)(typescript@5.8.3)(vue@3.5.16(typescript@5.8.3))(yaml@2.8.0) '@unhead/vue': 2.0.10(vue@3.5.16(typescript@5.8.3)) '@vue/shared': 3.5.16 c12: 3.0.4(magicast@0.3.5) @@ -22246,7 +22302,7 @@ snapshots: mlly: 1.7.4 mocked-exports: 0.1.1 nanotar: 0.2.0 - nitropack: 2.11.12(encoding@0.1.13)(xml2js@0.6.2) + nitropack: 2.11.12(encoding@0.1.13)(rolldown@1.0.0-beta.11-commit.f051675)(xml2js@0.6.2) nypm: 0.6.0 ofetch: 1.4.1 ohash: 2.0.11 @@ -22749,26 +22805,12 @@ snapshots: dependencies: yaml: 2.8.0 - postcss-calc@10.1.1(postcss@8.5.3): - dependencies: - postcss: 8.5.3 - postcss-selector-parser: 7.1.0 - postcss-value-parser: 4.2.0 - postcss-calc@10.1.1(postcss@8.5.4): dependencies: postcss: 8.5.4 postcss-selector-parser: 7.1.0 postcss-value-parser: 4.2.0 - postcss-colormin@7.0.3(postcss@8.5.3): - dependencies: - browserslist: 4.25.0 - caniuse-api: 3.0.0 - colord: 2.9.3 - postcss: 8.5.3 - postcss-value-parser: 4.2.0 - postcss-colormin@7.0.3(postcss@8.5.4): dependencies: browserslist: 4.25.0 @@ -22777,72 +22819,35 @@ snapshots: postcss: 8.5.4 postcss-value-parser: 4.2.0 - postcss-convert-values@7.0.5(postcss@8.5.3): - dependencies: - browserslist: 4.25.0 - postcss: 8.5.3 - postcss-value-parser: 4.2.0 - postcss-convert-values@7.0.5(postcss@8.5.4): dependencies: browserslist: 4.25.0 postcss: 8.5.4 postcss-value-parser: 4.2.0 - postcss-discard-comments@7.0.4(postcss@8.5.3): - dependencies: - postcss: 8.5.3 - postcss-selector-parser: 7.1.0 - postcss-discard-comments@7.0.4(postcss@8.5.4): dependencies: postcss: 8.5.4 postcss-selector-parser: 7.1.0 - postcss-discard-duplicates@7.0.2(postcss@8.5.3): - dependencies: - postcss: 8.5.3 - postcss-discard-duplicates@7.0.2(postcss@8.5.4): dependencies: postcss: 8.5.4 - postcss-discard-empty@7.0.1(postcss@8.5.3): - dependencies: - postcss: 8.5.3 - postcss-discard-empty@7.0.1(postcss@8.5.4): dependencies: postcss: 8.5.4 - postcss-discard-overridden@7.0.1(postcss@8.5.3): - dependencies: - postcss: 8.5.3 - postcss-discard-overridden@7.0.1(postcss@8.5.4): dependencies: postcss: 8.5.4 - postcss-merge-longhand@7.0.5(postcss@8.5.3): - dependencies: - postcss: 8.5.3 - postcss-value-parser: 4.2.0 - stylehacks: 7.0.5(postcss@8.5.3) - postcss-merge-longhand@7.0.5(postcss@8.5.4): dependencies: postcss: 8.5.4 postcss-value-parser: 4.2.0 stylehacks: 7.0.5(postcss@8.5.4) - postcss-merge-rules@7.0.5(postcss@8.5.3): - dependencies: - browserslist: 4.25.0 - caniuse-api: 3.0.0 - cssnano-utils: 5.0.1(postcss@8.5.3) - postcss: 8.5.3 - postcss-selector-parser: 7.1.0 - postcss-merge-rules@7.0.5(postcss@8.5.4): dependencies: browserslist: 4.25.0 @@ -22851,23 +22856,11 @@ snapshots: postcss: 8.5.4 postcss-selector-parser: 7.1.0 - postcss-minify-font-values@7.0.1(postcss@8.5.3): - dependencies: - postcss: 8.5.3 - postcss-value-parser: 4.2.0 - postcss-minify-font-values@7.0.1(postcss@8.5.4): dependencies: postcss: 8.5.4 postcss-value-parser: 4.2.0 - postcss-minify-gradients@7.0.1(postcss@8.5.3): - dependencies: - colord: 2.9.3 - cssnano-utils: 5.0.1(postcss@8.5.3) - postcss: 8.5.3 - postcss-value-parser: 4.2.0 - postcss-minify-gradients@7.0.1(postcss@8.5.4): dependencies: colord: 2.9.3 @@ -22875,13 +22868,6 @@ snapshots: postcss: 8.5.4 postcss-value-parser: 4.2.0 - postcss-minify-params@7.0.3(postcss@8.5.3): - dependencies: - browserslist: 4.25.0 - cssnano-utils: 5.0.1(postcss@8.5.3) - postcss: 8.5.3 - postcss-value-parser: 4.2.0 - postcss-minify-params@7.0.3(postcss@8.5.4): dependencies: browserslist: 4.25.0 @@ -22889,142 +22875,69 @@ snapshots: postcss: 8.5.4 postcss-value-parser: 4.2.0 - postcss-minify-selectors@7.0.5(postcss@8.5.3): - dependencies: - cssesc: 3.0.0 - postcss: 8.5.3 - postcss-selector-parser: 7.1.0 - postcss-minify-selectors@7.0.5(postcss@8.5.4): dependencies: cssesc: 3.0.0 postcss: 8.5.4 postcss-selector-parser: 7.1.0 - postcss-nested@7.0.2(postcss@8.5.3): - dependencies: - postcss: 8.5.3 - postcss-selector-parser: 7.1.0 - - postcss-normalize-charset@7.0.1(postcss@8.5.3): - dependencies: - postcss: 8.5.3 - postcss-normalize-charset@7.0.1(postcss@8.5.4): dependencies: postcss: 8.5.4 - postcss-normalize-display-values@7.0.1(postcss@8.5.3): - dependencies: - postcss: 8.5.3 - postcss-value-parser: 4.2.0 - postcss-normalize-display-values@7.0.1(postcss@8.5.4): dependencies: postcss: 8.5.4 postcss-value-parser: 4.2.0 - postcss-normalize-positions@7.0.1(postcss@8.5.3): - dependencies: - postcss: 8.5.3 - postcss-value-parser: 4.2.0 - postcss-normalize-positions@7.0.1(postcss@8.5.4): dependencies: postcss: 8.5.4 postcss-value-parser: 4.2.0 - postcss-normalize-repeat-style@7.0.1(postcss@8.5.3): - dependencies: - postcss: 8.5.3 - postcss-value-parser: 4.2.0 - postcss-normalize-repeat-style@7.0.1(postcss@8.5.4): dependencies: postcss: 8.5.4 postcss-value-parser: 4.2.0 - postcss-normalize-string@7.0.1(postcss@8.5.3): - dependencies: - postcss: 8.5.3 - postcss-value-parser: 4.2.0 - postcss-normalize-string@7.0.1(postcss@8.5.4): dependencies: postcss: 8.5.4 postcss-value-parser: 4.2.0 - postcss-normalize-timing-functions@7.0.1(postcss@8.5.3): - dependencies: - postcss: 8.5.3 - postcss-value-parser: 4.2.0 - postcss-normalize-timing-functions@7.0.1(postcss@8.5.4): dependencies: postcss: 8.5.4 postcss-value-parser: 4.2.0 - postcss-normalize-unicode@7.0.3(postcss@8.5.3): - dependencies: - browserslist: 4.25.0 - postcss: 8.5.3 - postcss-value-parser: 4.2.0 - postcss-normalize-unicode@7.0.3(postcss@8.5.4): dependencies: browserslist: 4.25.0 postcss: 8.5.4 postcss-value-parser: 4.2.0 - postcss-normalize-url@7.0.1(postcss@8.5.3): - dependencies: - postcss: 8.5.3 - postcss-value-parser: 4.2.0 - postcss-normalize-url@7.0.1(postcss@8.5.4): dependencies: postcss: 8.5.4 postcss-value-parser: 4.2.0 - postcss-normalize-whitespace@7.0.1(postcss@8.5.3): - dependencies: - postcss: 8.5.3 - postcss-value-parser: 4.2.0 - postcss-normalize-whitespace@7.0.1(postcss@8.5.4): dependencies: postcss: 8.5.4 postcss-value-parser: 4.2.0 - postcss-ordered-values@7.0.2(postcss@8.5.3): - dependencies: - cssnano-utils: 5.0.1(postcss@8.5.3) - postcss: 8.5.3 - postcss-value-parser: 4.2.0 - postcss-ordered-values@7.0.2(postcss@8.5.4): dependencies: cssnano-utils: 5.0.1(postcss@8.5.4) postcss: 8.5.4 postcss-value-parser: 4.2.0 - postcss-reduce-initial@7.0.3(postcss@8.5.3): - dependencies: - browserslist: 4.25.0 - caniuse-api: 3.0.0 - postcss: 8.5.3 - postcss-reduce-initial@7.0.3(postcss@8.5.4): dependencies: browserslist: 4.25.0 caniuse-api: 3.0.0 postcss: 8.5.4 - postcss-reduce-transforms@7.0.1(postcss@8.5.3): - dependencies: - postcss: 8.5.3 - postcss-value-parser: 4.2.0 - postcss-reduce-transforms@7.0.1(postcss@8.5.4): dependencies: postcss: 8.5.4 @@ -23040,23 +22953,12 @@ snapshots: cssesc: 3.0.0 util-deprecate: 1.0.2 - postcss-svgo@7.0.2(postcss@8.5.3): - dependencies: - postcss: 8.5.3 - postcss-value-parser: 4.2.0 - svgo: 3.3.2 - postcss-svgo@7.0.2(postcss@8.5.4): dependencies: postcss: 8.5.4 postcss-value-parser: 4.2.0 svgo: 3.3.2 - postcss-unique-selectors@7.0.4(postcss@8.5.3): - dependencies: - postcss: 8.5.3 - postcss-selector-parser: 7.1.0 - postcss-unique-selectors@7.0.4(postcss@8.5.4): dependencies: postcss: 8.5.4 @@ -23610,30 +23512,61 @@ snapshots: sprintf-js: 1.1.3 optional: true - rollup-plugin-dts@6.2.1(rollup@4.41.0)(typescript@5.8.3): + rolldown-plugin-dts@0.13.8(rolldown@1.0.0-beta.11-commit.f051675)(typescript@5.8.3): dependencies: - magic-string: 0.30.17 - rollup: 4.41.0 - typescript: 5.8.3 + '@babel/generator': 7.27.5 + '@babel/parser': 7.27.5 + '@babel/types': 7.27.6 + ast-kit: 2.1.0 + birpc: 2.3.0 + debug: 4.4.1 + dts-resolver: 2.1.1 + get-tsconfig: 4.10.1 + rolldown: 1.0.0-beta.11-commit.f051675 optionalDependencies: - '@babel/code-frame': 7.27.1 + typescript: 5.8.3 + transitivePeerDependencies: + - oxc-resolver + - supports-color - rollup-plugin-visualizer@5.14.0(rollup@4.41.0): + rolldown@1.0.0-beta.11-commit.f051675: + dependencies: + '@oxc-project/runtime': 0.72.2 + '@oxc-project/types': 0.72.2 + '@rolldown/pluginutils': 1.0.0-beta.11-commit.f051675 + ansis: 4.1.0 + optionalDependencies: + '@rolldown/binding-darwin-arm64': 1.0.0-beta.11-commit.f051675 + '@rolldown/binding-darwin-x64': 1.0.0-beta.11-commit.f051675 + '@rolldown/binding-freebsd-x64': 1.0.0-beta.11-commit.f051675 + '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-beta.11-commit.f051675 + '@rolldown/binding-linux-arm64-gnu': 1.0.0-beta.11-commit.f051675 + '@rolldown/binding-linux-arm64-musl': 1.0.0-beta.11-commit.f051675 + '@rolldown/binding-linux-x64-gnu': 1.0.0-beta.11-commit.f051675 + '@rolldown/binding-linux-x64-musl': 1.0.0-beta.11-commit.f051675 + '@rolldown/binding-wasm32-wasi': 1.0.0-beta.11-commit.f051675 + '@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.11-commit.f051675 + '@rolldown/binding-win32-ia32-msvc': 1.0.0-beta.11-commit.f051675 + '@rolldown/binding-win32-x64-msvc': 1.0.0-beta.11-commit.f051675 + + rollup-plugin-visualizer@5.14.0(rolldown@1.0.0-beta.11-commit.f051675)(rollup@4.41.0): dependencies: open: 8.4.2 picomatch: 4.0.2 source-map: 0.7.4 yargs: 17.7.2 optionalDependencies: + rolldown: 1.0.0-beta.11-commit.f051675 rollup: 4.41.0 - rollup-plugin-visualizer@6.0.1(rollup@4.41.0): + rollup-plugin-visualizer@6.0.1(rolldown@1.0.0-beta.11-commit.f051675)(rollup@4.41.0): dependencies: open: 8.4.2 picomatch: 4.0.2 source-map: 0.7.4 yargs: 17.7.2 optionalDependencies: + rolldown: 1.0.0-beta.11-commit.f051675 rollup: 4.41.0 rollup@4.41.0: @@ -24322,12 +24255,6 @@ snapshots: optionalDependencies: '@babel/core': 7.27.1 - stylehacks@7.0.5(postcss@8.5.3): - dependencies: - browserslist: 4.25.0 - postcss: 8.5.3 - postcss-selector-parser: 7.1.0 - stylehacks@7.0.5(postcss@8.5.4): dependencies: browserslist: 4.25.0 @@ -24694,6 +24621,29 @@ snapshots: minimist: 1.2.8 strip-bom: 3.0.0 + tsdown@0.12.7(typescript@5.8.3): + dependencies: + ansis: 4.1.0 + cac: 6.7.14 + chokidar: 4.0.3 + debug: 4.4.1 + diff: 8.0.2 + empathic: 1.1.0 + hookable: 5.5.3 + rolldown: 1.0.0-beta.11-commit.f051675 + rolldown-plugin-dts: 0.13.8(rolldown@1.0.0-beta.11-commit.f051675)(typescript@5.8.3) + semver: 7.7.2 + tinyexec: 1.0.1 + tinyglobby: 0.2.14 + unconfig: 7.3.2 + optionalDependencies: + typescript: 5.8.3 + transitivePeerDependencies: + - '@typescript/native-preview' + - oxc-resolver + - supports-color + - vue-tsc + tslib@1.14.1: {} tslib@2.1.0: {} @@ -24784,45 +24734,18 @@ snapshots: ultrahtml@1.6.0: {} - unbuild@3.5.0(typescript@5.8.3)(vue@3.5.16(typescript@5.8.3)): - dependencies: - '@rollup/plugin-alias': 5.1.1(rollup@4.41.0) - '@rollup/plugin-commonjs': 28.0.3(rollup@4.41.0) - '@rollup/plugin-json': 6.1.0(rollup@4.41.0) - '@rollup/plugin-node-resolve': 16.0.1(rollup@4.41.0) - '@rollup/plugin-replace': 6.0.2(rollup@4.41.0) - '@rollup/pluginutils': 5.1.4(rollup@4.41.0) - citty: 0.1.6 - consola: 3.4.2 - defu: 6.1.4 - esbuild: 0.25.4 - fix-dts-default-cjs-exports: 1.0.1 - hookable: 5.5.3 - jiti: 2.4.2 - magic-string: 0.30.17 - mkdist: 2.3.0(typescript@5.8.3)(vue@3.5.16(typescript@5.8.3)) - mlly: 1.7.4 - pathe: 2.0.3 - pkg-types: 2.1.0 - pretty-bytes: 6.1.1 - rollup: 4.41.0 - rollup-plugin-dts: 6.2.1(rollup@4.41.0)(typescript@5.8.3) - scule: 1.3.0 - tinyglobby: 0.2.13 - untyped: 2.0.0 - optionalDependencies: - typescript: 5.8.3 - transitivePeerDependencies: - - sass - - vue - - vue-sfc-transformer - - vue-tsc - unbzip2-stream@1.4.3: dependencies: buffer: 5.7.1 through: 2.3.8 + unconfig@7.3.2: + dependencies: + '@quansync/fs': 0.1.3 + defu: 6.1.4 + jiti: 2.4.2 + quansync: 0.2.10 + uncrypto@0.1.3: {} unctx@2.4.1: @@ -25179,7 +25102,7 @@ snapshots: '@types/unist': 3.0.3 vfile-message: 4.0.2 - vinxi@0.5.3(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0): + vinxi@0.5.3(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(rolldown@1.0.0-beta.11-commit.f051675)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0): dependencies: '@babel/core': 7.27.4 '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.27.4) @@ -25201,7 +25124,7 @@ snapshots: hookable: 5.5.3 http-proxy: 1.18.1 micromatch: 4.0.8 - nitropack: 2.11.12(encoding@0.1.13)(xml2js@0.6.2) + nitropack: 2.11.12(encoding@0.1.13)(rolldown@1.0.0-beta.11-commit.f051675)(xml2js@0.6.2) node-fetch-native: 1.6.6 path-to-regexp: 6.3.0 pathe: 1.1.2 @@ -25257,7 +25180,7 @@ snapshots: - xml2js - yaml - vinxi@0.5.6(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0): + vinxi@0.5.6(@types/node@22.15.30)(db0@0.3.2)(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(rolldown@1.0.0-beta.11-commit.f051675)(terser@5.39.2)(tsx@4.19.4)(xml2js@0.6.2)(yaml@2.8.0): dependencies: '@babel/core': 7.27.1 '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.27.1) @@ -25279,7 +25202,7 @@ snapshots: hookable: 5.5.3 http-proxy: 1.18.1 micromatch: 4.0.8 - nitropack: 2.11.12(encoding@0.1.13)(xml2js@0.6.2) + nitropack: 2.11.12(encoding@0.1.13)(rolldown@1.0.0-beta.11-commit.f051675)(xml2js@0.6.2) node-fetch-native: 1.6.6 path-to-regexp: 6.3.0 pathe: 1.1.2 diff --git a/tsdown.config.ts b/tsdown.config.ts new file mode 100644 index 000000000..599f34b28 --- /dev/null +++ b/tsdown.config.ts @@ -0,0 +1,8 @@ +import { defineConfig } from 'tsdown' + +export default defineConfig({ + workspace: { include: ['packages/*'] }, + entry: ['./src/index.ts'], + dts: true, + fixedExtension: true, +})