diff --git a/biome.jsonc b/biome.jsonc index 2278711fe..25f161f98 100644 --- a/biome.jsonc +++ b/biome.jsonc @@ -51,7 +51,7 @@ "test": "recommended" }, "rules": { - "recommended": true, + "preset": "recommended", "complexity": { "noForEach": "error" }, diff --git a/e2e/package.json b/e2e/package.json index 06fb2e80a..6a742a3e8 100644 --- a/e2e/package.json +++ b/e2e/package.json @@ -29,7 +29,7 @@ "@types/express": "^5.0.6", "@types/koa": "^3.0.3", "expect": "^30.4.1", - "typescript": "catalog:", + "typescript": "catalog:typescript7", "vitest": "catalog:" } } diff --git a/e2e/src/generated/server/koa/index.ts b/e2e/src/generated/server/koa/index.ts index f0af33119..a482dbbdc 100644 --- a/e2e/src/generated/server/koa/index.ts +++ b/e2e/src/generated/server/koa/index.ts @@ -4,10 +4,11 @@ import { type ServerConfig, + type StartedServer, startServer, } from "@nahkies/typescript-koa-runtime/server" -export async function bootstrap(config: ServerConfig) { +export async function bootstrap(config: ServerConfig): Promise { // E2E Tests for @nahkies/openapi-code-generator return startServer(config) } diff --git a/e2e/tsconfig.json b/e2e/tsconfig.json index 6d6492706..53bbd6187 100644 --- a/e2e/tsconfig.json +++ b/e2e/tsconfig.json @@ -1,13 +1,8 @@ { - "extends": "../tsconfig.base.json", + "extends": "../tsconfig.integration.base.json", "compilerOptions": { - "composite": false, - "outDir": "./dist", - "rootDir": "./src", "module": "NodeNext", "target": "ESNext", - "verbatimModuleSyntax": true, - "rewriteRelativeImportExtensions": true - }, - "include": ["src/**/*"] + "verbatimModuleSyntax": true + } } diff --git a/integration-tests/typescript-angular/package.json b/integration-tests/typescript-angular/package.json index 2e3bf0fc9..372011fc8 100644 --- a/integration-tests/typescript-angular/package.json +++ b/integration-tests/typescript-angular/package.json @@ -24,7 +24,7 @@ "@angular/cli": "catalog:", "@angular/compiler-cli": "catalog:", "jsdom": "^29.1.1", - "typescript": "catalog:", + "typescript": "catalog:typescript6", "vitest": "catalog:" } } diff --git a/integration-tests/typescript-axios/package.json b/integration-tests/typescript-axios/package.json index 26928956c..86898b756 100644 --- a/integration-tests/typescript-axios/package.json +++ b/integration-tests/typescript-axios/package.json @@ -17,6 +17,6 @@ }, "devDependencies": { "@types/node": "^22.20.0", - "typescript": "catalog:" + "typescript": "catalog:typescript7" } } diff --git a/integration-tests/typescript-axios/tsconfig.json b/integration-tests/typescript-axios/tsconfig.json index 137fe136b..2ac8ada4a 100644 --- a/integration-tests/typescript-axios/tsconfig.json +++ b/integration-tests/typescript-axios/tsconfig.json @@ -1,9 +1,6 @@ { - "extends": "../../tsconfig.base.json", + "extends": "../../tsconfig.integration.base.json", "compilerOptions": { - "composite": false, - "outDir": "./dist", - "rootDir": "./src", /* exercise the code path where exactOptionalPropertyTypes is enabled */ "exactOptionalPropertyTypes": true, "noUnusedLocals": true diff --git a/integration-tests/typescript-express/package.json b/integration-tests/typescript-express/package.json index d857692be..5f6b8e015 100644 --- a/integration-tests/typescript-express/package.json +++ b/integration-tests/typescript-express/package.json @@ -19,6 +19,6 @@ }, "devDependencies": { "@types/express": "^5.0.6", - "typescript": "catalog:" + "typescript": "catalog:typescript7" } } diff --git a/integration-tests/typescript-express/tsconfig.json b/integration-tests/typescript-express/tsconfig.json index 3b3996dfd..447dae149 100644 --- a/integration-tests/typescript-express/tsconfig.json +++ b/integration-tests/typescript-express/tsconfig.json @@ -1,9 +1,6 @@ { - "extends": "../../tsconfig.base.json", + "extends": "../../tsconfig.integration.base.json", "compilerOptions": { - "outDir": "./dist", - "rootDir": "./src", - "types": [], /* exercise the code path where exactOptionalPropertyTypes is enabled */ "exactOptionalPropertyTypes": true, "verbatimModuleSyntax": true, diff --git a/integration-tests/typescript-fetch/package.json b/integration-tests/typescript-fetch/package.json index fd1ca2f51..24a051e43 100644 --- a/integration-tests/typescript-fetch/package.json +++ b/integration-tests/typescript-fetch/package.json @@ -17,6 +17,6 @@ }, "devDependencies": { "@types/node": "^22.20.0", - "typescript": "catalog:" + "typescript": "catalog:typescript7" } } diff --git a/integration-tests/typescript-fetch/tsconfig.json b/integration-tests/typescript-fetch/tsconfig.json index eea5bf44e..061c0765f 100644 --- a/integration-tests/typescript-fetch/tsconfig.json +++ b/integration-tests/typescript-fetch/tsconfig.json @@ -1,9 +1,6 @@ { - "extends": "../../tsconfig.base.json", + "extends": "../../tsconfig.integration.base.json", "compilerOptions": { - "composite": false, - "outDir": "./dist", - "rootDir": "./src", /* exercise the code path where exactOptionalPropertyTypes is disabled */ "exactOptionalPropertyTypes": false, "noUnusedLocals": true, diff --git a/integration-tests/typescript-koa/package.json b/integration-tests/typescript-koa/package.json index 6233b67f2..9888bf40f 100644 --- a/integration-tests/typescript-koa/package.json +++ b/integration-tests/typescript-koa/package.json @@ -1,5 +1,5 @@ { - "name": "typescript-koa", + "name": "@integration/typescript-koa", "version": "0.0.1", "main": "./dist/index.js", "author": "Michael Nahkies", @@ -19,6 +19,6 @@ }, "devDependencies": { "@types/koa": "^3.0.3", - "typescript": "catalog:" + "typescript": "catalog:typescript7" } } diff --git a/integration-tests/typescript-koa/src/generated/api.github.com.yaml/generated.ts b/integration-tests/typescript-koa/src/generated/api.github.com.yaml/generated.ts index 4a39a75ce..43979edb4 100644 --- a/integration-tests/typescript-koa/src/generated/api.github.com.yaml/generated.ts +++ b/integration-tests/typescript-koa/src/generated/api.github.com.yaml/generated.ts @@ -14,6 +14,7 @@ import { type Res, type ServerConfig, type SkipResponse, + type StartedServer, type StatusCode, startServer, } from "@nahkies/typescript-koa-runtime/server" @@ -101355,7 +101356,7 @@ export function createRouter( return router } -export async function bootstrap(config: ServerConfig) { +export async function bootstrap(config: ServerConfig): Promise { // GitHub v3 REST API return startServer(config) } diff --git a/integration-tests/typescript-koa/src/generated/azure-core-data-plane-service.tsp/generated.ts b/integration-tests/typescript-koa/src/generated/azure-core-data-plane-service.tsp/generated.ts index bfc93d7c5..efc598844 100644 --- a/integration-tests/typescript-koa/src/generated/azure-core-data-plane-service.tsp/generated.ts +++ b/integration-tests/typescript-koa/src/generated/azure-core-data-plane-service.tsp/generated.ts @@ -13,6 +13,7 @@ import { type Res, type ServerConfig, type SkipResponse, + type StartedServer, type StatusCode, startServer, } from "@nahkies/typescript-koa-runtime/server" @@ -2268,7 +2269,7 @@ export function createRouter( return router } -export async function bootstrap(config: ServerConfig) { +export async function bootstrap(config: ServerConfig): Promise { // Contoso Widget Manager return startServer(config) } diff --git a/integration-tests/typescript-koa/src/generated/azure-resource-manager.tsp/generated.ts b/integration-tests/typescript-koa/src/generated/azure-resource-manager.tsp/generated.ts index ae180aee3..dbeb6a764 100644 --- a/integration-tests/typescript-koa/src/generated/azure-resource-manager.tsp/generated.ts +++ b/integration-tests/typescript-koa/src/generated/azure-resource-manager.tsp/generated.ts @@ -13,6 +13,7 @@ import { type Res, type ServerConfig, type SkipResponse, + type StartedServer, type StatusCode, startServer, } from "@nahkies/typescript-koa-runtime/server" @@ -829,7 +830,7 @@ export function createRouter( return router } -export async function bootstrap(config: ServerConfig) { +export async function bootstrap(config: ServerConfig): Promise { // ContosoProviderHubClient return startServer(config) } diff --git a/integration-tests/typescript-koa/src/generated/okta.idp.yaml/generated.ts b/integration-tests/typescript-koa/src/generated/okta.idp.yaml/generated.ts index 1753a50eb..f0f5edcc9 100644 --- a/integration-tests/typescript-koa/src/generated/okta.idp.yaml/generated.ts +++ b/integration-tests/typescript-koa/src/generated/okta.idp.yaml/generated.ts @@ -13,6 +13,7 @@ import { type Res, type ServerConfig, type SkipResponse, + type StartedServer, type StatusCode, startServer, } from "@nahkies/typescript-koa-runtime/server" @@ -3333,7 +3334,7 @@ export function createRouter( return router } -export async function bootstrap(config: ServerConfig) { +export async function bootstrap(config: ServerConfig): Promise { // MyAccount Management return startServer(config) } diff --git a/integration-tests/typescript-koa/src/generated/okta.oauth.yaml/generated.ts b/integration-tests/typescript-koa/src/generated/okta.oauth.yaml/generated.ts index 5cd62e1b4..1a22a6d88 100644 --- a/integration-tests/typescript-koa/src/generated/okta.oauth.yaml/generated.ts +++ b/integration-tests/typescript-koa/src/generated/okta.oauth.yaml/generated.ts @@ -13,6 +13,7 @@ import { type Res, type ServerConfig, type SkipResponse, + type StartedServer, type StatusCode, startServer, } from "@nahkies/typescript-koa-runtime/server" @@ -3154,7 +3155,7 @@ export function createRouter( return router } -export async function bootstrap(config: ServerConfig) { +export async function bootstrap(config: ServerConfig): Promise { // Okta OpenID Connect & OAuth 2.0 return startServer(config) } diff --git a/integration-tests/typescript-koa/src/generated/petstore-expanded.yaml/generated.ts b/integration-tests/typescript-koa/src/generated/petstore-expanded.yaml/generated.ts index 2f17018c6..48eb05f63 100644 --- a/integration-tests/typescript-koa/src/generated/petstore-expanded.yaml/generated.ts +++ b/integration-tests/typescript-koa/src/generated/petstore-expanded.yaml/generated.ts @@ -13,6 +13,7 @@ import { type Res, type ServerConfig, type SkipResponse, + type StartedServer, type StatusCode, startServer, } from "@nahkies/typescript-koa-runtime/server" @@ -269,7 +270,7 @@ export function createRouter( return router } -export async function bootstrap(config: ServerConfig) { +export async function bootstrap(config: ServerConfig): Promise { // Swagger Petstore return startServer(config) } diff --git a/integration-tests/typescript-koa/src/generated/stripe.yaml/generated.ts b/integration-tests/typescript-koa/src/generated/stripe.yaml/generated.ts index d73bb4191..bb0ee3688 100644 --- a/integration-tests/typescript-koa/src/generated/stripe.yaml/generated.ts +++ b/integration-tests/typescript-koa/src/generated/stripe.yaml/generated.ts @@ -14,6 +14,7 @@ import { type Res, type ServerConfig, type SkipResponse, + type StartedServer, type StatusCode, startServer, } from "@nahkies/typescript-koa-runtime/server" @@ -54430,7 +54431,7 @@ export function createRouter( return router } -export async function bootstrap(config: ServerConfig) { +export async function bootstrap(config: ServerConfig): Promise { // Stripe API return startServer(config) } diff --git a/integration-tests/typescript-koa/src/generated/todo-lists.yaml/generated.ts b/integration-tests/typescript-koa/src/generated/todo-lists.yaml/generated.ts index a907b447a..31ab76033 100644 --- a/integration-tests/typescript-koa/src/generated/todo-lists.yaml/generated.ts +++ b/integration-tests/typescript-koa/src/generated/todo-lists.yaml/generated.ts @@ -14,6 +14,7 @@ import { type Res, type ServerConfig, type SkipResponse, + type StartedServer, type StatusCode, type StatusCode4xx, type StatusCode5xx, @@ -604,7 +605,7 @@ export function createRouter( return router } -export async function bootstrap(config: ServerConfig) { +export async function bootstrap(config: ServerConfig): Promise { // Todo Lists Example API return startServer(config) } diff --git a/integration-tests/typescript-koa/tsconfig.json b/integration-tests/typescript-koa/tsconfig.json index 4c9f1db82..223b3bf71 100644 --- a/integration-tests/typescript-koa/tsconfig.json +++ b/integration-tests/typescript-koa/tsconfig.json @@ -1,10 +1,6 @@ { - "extends": "../../tsconfig.base.json", + "extends": "../../tsconfig.integration.base.json", "compilerOptions": { - "composite": false, - "outDir": "./dist", - "rootDir": "./src", - "types": [], /* exercise the code path where exactOptionalPropertyTypes is disabled */ "exactOptionalPropertyTypes": false, "noUnusedLocals": true diff --git a/package.json b/package.json index 5dd0fe6b8..2bbea2b0a 100644 --- a/package.json +++ b/package.json @@ -62,7 +62,7 @@ "publint": "^0.3.21", "remark": "^15.0.1", "remark-toc": "^9.0.0", - "typescript": "catalog:", + "typescript": "catalog:typescript7", "vitest": "catalog:" }, "workspaces": [ diff --git a/packages/documentation/package.json b/packages/documentation/package.json index e0d5710fb..5de9a693e 100644 --- a/packages/documentation/package.json +++ b/packages/documentation/package.json @@ -47,7 +47,7 @@ "@types/react-dom": "^19.2.3", "gh-pages": "^6.3.0", "tsx": "catalog:", - "typescript": "catalog:" + "typescript": "catalog:typescript6" }, "engines": { "node": ">=22" diff --git a/packages/openapi-code-generator/package.json b/packages/openapi-code-generator/package.json index 1b896c984..63083ba98 100644 --- a/packages/openapi-code-generator/package.json +++ b/packages/openapi-code-generator/package.json @@ -97,7 +97,7 @@ "json5": "^2.2.3", "lodash": "^4.18.1", "tslib": "^2.8.1", - "typescript": "catalog:", + "typescript": "catalog:typescript6", "zod": "^4.3.6" }, "peerDependencies": { diff --git a/packages/openapi-code-generator/src/typescript/server/typescript-koa/typescript-koa-server-builder.ts b/packages/openapi-code-generator/src/typescript/server/typescript-koa/typescript-koa-server-builder.ts index 5101051ce..372107c37 100644 --- a/packages/openapi-code-generator/src/typescript/server/typescript-koa/typescript-koa-server-builder.ts +++ b/packages/openapi-code-generator/src/typescript/server/typescript-koa/typescript-koa-server-builder.ts @@ -16,12 +16,12 @@ export class KoaServerBuilder implements ICompilable { this.imports .from("@nahkies/typescript-koa-runtime/server") .add("startServer") - .addType("ServerConfig") + .addType("ServerConfig", "StartedServer") } toString(): string { return ` - export async function bootstrap(config: ServerConfig) { + export async function bootstrap(config: ServerConfig): Promise { // ${this.name} return startServer(config) } diff --git a/packages/openapi-code-generator/tsconfig.json b/packages/openapi-code-generator/tsconfig.json index d92347e53..368510a53 100644 --- a/packages/openapi-code-generator/tsconfig.json +++ b/packages/openapi-code-generator/tsconfig.json @@ -1,11 +1,5 @@ { "extends": "../../tsconfig.base.json", - "compilerOptions": { - "outDir": "./dist", - "rootDir": "./src", - "emitDeclarationOnly": true - }, - "include": ["src/**/*"], "references": [ { "path": "../typescript-common-runtime" diff --git a/packages/typescript-axios-runtime/package.json b/packages/typescript-axios-runtime/package.json index 8ba85e8a7..b63e4b085 100644 --- a/packages/typescript-axios-runtime/package.json +++ b/packages/typescript-axios-runtime/package.json @@ -45,7 +45,7 @@ "@nahkies/typescript-common-runtime": "workspace:^", "axios": "catalog:", "tsdown": "catalog:", - "typescript": "catalog:", + "typescript": "catalog:typescript7", "vitest": "catalog:" }, "files": [ diff --git a/packages/typescript-axios-runtime/tsconfig.json b/packages/typescript-axios-runtime/tsconfig.json index d92347e53..368510a53 100644 --- a/packages/typescript-axios-runtime/tsconfig.json +++ b/packages/typescript-axios-runtime/tsconfig.json @@ -1,11 +1,5 @@ { "extends": "../../tsconfig.base.json", - "compilerOptions": { - "outDir": "./dist", - "rootDir": "./src", - "emitDeclarationOnly": true - }, - "include": ["src/**/*"], "references": [ { "path": "../typescript-common-runtime" diff --git a/packages/typescript-common-runtime/package.json b/packages/typescript-common-runtime/package.json index 9f2eb7acd..3d0dc80ab 100644 --- a/packages/typescript-common-runtime/package.json +++ b/packages/typescript-common-runtime/package.json @@ -92,7 +92,7 @@ }, "devDependencies": { "tsdown": "catalog:", - "typescript": "catalog:", + "typescript": "catalog:typescript7", "vitest": "catalog:" }, "files": [ diff --git a/packages/typescript-common-runtime/tsconfig.json b/packages/typescript-common-runtime/tsconfig.json index 528477c7a..546e0e763 100644 --- a/packages/typescript-common-runtime/tsconfig.json +++ b/packages/typescript-common-runtime/tsconfig.json @@ -1,10 +1,4 @@ { "extends": "../../tsconfig.base.json", - "compilerOptions": { - "rootDir": "./src", - "outDir": "./dist", - "emitDeclarationOnly": true - }, - "include": ["src/**/*"], "references": [] } diff --git a/packages/typescript-express-runtime/package.json b/packages/typescript-express-runtime/package.json index 407e694cb..ce04c1697 100644 --- a/packages/typescript-express-runtime/package.json +++ b/packages/typescript-express-runtime/package.json @@ -105,7 +105,7 @@ "body-parser": "catalog:", "joi": "catalog:", "tsdown": "catalog:", - "typescript": "catalog:", + "typescript": "catalog:typescript7", "vitest": "catalog:", "zod": "^4.3.6" }, diff --git a/packages/typescript-express-runtime/tsconfig.json b/packages/typescript-express-runtime/tsconfig.json index d92347e53..368510a53 100644 --- a/packages/typescript-express-runtime/tsconfig.json +++ b/packages/typescript-express-runtime/tsconfig.json @@ -1,11 +1,5 @@ { "extends": "../../tsconfig.base.json", - "compilerOptions": { - "outDir": "./dist", - "rootDir": "./src", - "emitDeclarationOnly": true - }, - "include": ["src/**/*"], "references": [ { "path": "../typescript-common-runtime" diff --git a/packages/typescript-fetch-runtime/package.json b/packages/typescript-fetch-runtime/package.json index d1a729ee7..0b51258f7 100644 --- a/packages/typescript-fetch-runtime/package.json +++ b/packages/typescript-fetch-runtime/package.json @@ -84,7 +84,7 @@ "@nahkies/typescript-common-runtime": "workspace:^", "joi": "catalog:", "tsdown": "catalog:", - "typescript": "catalog:", + "typescript": "catalog:typescript7", "vitest": "catalog:", "zod": "^4.3.6" }, diff --git a/packages/typescript-fetch-runtime/tsconfig.json b/packages/typescript-fetch-runtime/tsconfig.json index d92347e53..368510a53 100644 --- a/packages/typescript-fetch-runtime/tsconfig.json +++ b/packages/typescript-fetch-runtime/tsconfig.json @@ -1,11 +1,5 @@ { "extends": "../../tsconfig.base.json", - "compilerOptions": { - "outDir": "./dist", - "rootDir": "./src", - "emitDeclarationOnly": true - }, - "include": ["src/**/*"], "references": [ { "path": "../typescript-common-runtime" diff --git a/packages/typescript-koa-runtime/package.json b/packages/typescript-koa-runtime/package.json index 647dd7641..f0b4b38b9 100644 --- a/packages/typescript-koa-runtime/package.json +++ b/packages/typescript-koa-runtime/package.json @@ -105,7 +105,7 @@ "koa": "^3.2.1", "koa-body": "^8.0.0", "tsdown": "catalog:", - "typescript": "catalog:", + "typescript": "catalog:typescript7", "vitest": "catalog:", "zod": "^4.3.6" }, diff --git a/packages/typescript-koa-runtime/src/server.ts b/packages/typescript-koa-runtime/src/server.ts index 59152c6ea..fc2885a2b 100644 --- a/packages/typescript-koa-runtime/src/server.ts +++ b/packages/typescript-koa-runtime/src/server.ts @@ -122,6 +122,12 @@ export async function parseOctetStream( return body } +export type StartedServer = { + app: Koa + server: Server + address: AddressInfo +} + /** * Starts a Koa server and listens on `port` or a randomly allocated port if none provided. * Enables CORS and body parsing by default. It's recommended to customize the CORS options @@ -137,11 +143,7 @@ export async function startServer({ body = undefined, port = 0, router, -}: ServerConfig): Promise<{ - app: Koa - server: Server - address: AddressInfo -}> { +}: ServerConfig): Promise { const app = new Koa() if (cors !== "disabled") { @@ -159,7 +161,7 @@ export async function startServer({ app.use(router.routes()) app.use(router.allowedMethods()) - return new Promise((resolve, reject) => { + return new Promise((resolve, reject) => { try { const server = app.listen(port) diff --git a/packages/typescript-koa-runtime/tsconfig.json b/packages/typescript-koa-runtime/tsconfig.json index d92347e53..368510a53 100644 --- a/packages/typescript-koa-runtime/tsconfig.json +++ b/packages/typescript-koa-runtime/tsconfig.json @@ -1,11 +1,5 @@ { "extends": "../../tsconfig.base.json", - "compilerOptions": { - "outDir": "./dist", - "rootDir": "./src", - "emitDeclarationOnly": true - }, - "include": ["src/**/*"], "references": [ { "path": "../typescript-common-runtime" diff --git a/patches/rolldown-plugin-dts.patch b/patches/rolldown-plugin-dts.patch deleted file mode 100644 index 39ad1b608..000000000 --- a/patches/rolldown-plugin-dts.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/dist/index.mjs b/dist/index.mjs -index 2d347569cdcdd3ea988efdd5778032c56ad9edbc..9f7cce48777c31adc677688293c8204519ee3db0 100644 ---- a/dist/index.mjs -+++ b/dist/index.mjs -@@ -326,7 +326,7 @@ function createFakeJsPlugin({ sourcemap, cjsDefault, sideEffects }) { - } - return inheritNodeComments(node, declaration.decl); - }).filter((node) => !!node); -- if (program.body.length === 0) return "export { };"; -+ if (program.body.length === 0) return { code: 'export { };', map: null }; - const comments = /* @__PURE__ */ new Set(); - const commentsValue = /* @__PURE__ */ new Set(); - for (const id of chunk.moduleIds) { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d24c93f8e..4fc8b2d3c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -109,17 +109,22 @@ catalogs: specifier: ^7.80.0 version: 7.80.0 tsdown: - specifier: ^0.22.3 - version: 0.22.3 + specifier: ^0.22.5 + version: 0.22.5 tsx: specifier: ^4.23.0 version: 4.23.0 - typescript: - specifier: ^6.0.3 - version: 6.0.3 vitest: specifier: ^4.1.9 version: 4.1.9 + typescript6: + typescript: + specifier: ^6.0.3 + version: 6.0.3 + typescript7: + typescript: + specifier: ^7.0.2 + version: 7.0.2 overrides: '@isaacs/brace-expansion': ^5.0.1 @@ -130,11 +135,9 @@ overrides: tar: ^7.5.11 zod: ^4.3.6 fast-uri@^3: ^3.1.1 - fflate: 0.8.2 patchedDependencies: nextra-theme-docs: f71f08a75ddca41c267fa8a927780d3e5b1a94a34d5d86f00e4c36e01eda5021 - rolldown-plugin-dts: 9bb4af20125c71ccd95af0a1322a894f1c886f5ecd26e170b3c2705c605eaeb1 importers: @@ -210,8 +213,8 @@ importers: specifier: ^9.0.0 version: 9.0.0 typescript: - specifier: 'catalog:' - version: 6.0.3 + specifier: catalog:typescript7 + version: 7.0.2 vitest: specifier: 'catalog:' version: 4.1.9(@types/node@22.20.0)(@vitest/coverage-v8@4.1.9)(jsdom@29.1.1(@noble/hashes@1.8.0))(vite@7.3.5(@types/node@22.20.0)(sass@1.99.0)(tsx@4.23.0)(yaml@2.9.0)) @@ -259,8 +262,8 @@ importers: specifier: ^30.4.1 version: 30.4.1 typescript: - specifier: 'catalog:' - version: 6.0.3 + specifier: catalog:typescript7 + version: 7.0.2 vitest: specifier: 'catalog:' version: 4.1.9(@types/node@22.20.0)(@vitest/coverage-v8@4.1.9)(jsdom@29.1.1(@noble/hashes@1.8.0))(vite@7.3.5(@types/node@22.20.0)(sass@1.99.0)(tsx@4.23.0)(yaml@2.9.0)) @@ -305,7 +308,7 @@ importers: specifier: ^29.1.1 version: 29.1.1(@noble/hashes@1.8.0) typescript: - specifier: 'catalog:' + specifier: catalog:typescript6 version: 6.0.3 vitest: specifier: 'catalog:' @@ -330,8 +333,8 @@ importers: specifier: ^22.20.0 version: 22.20.0 typescript: - specifier: 'catalog:' - version: 6.0.3 + specifier: catalog:typescript7 + version: 7.0.2 integration-tests/typescript-express: dependencies: @@ -355,8 +358,8 @@ importers: specifier: ^5.0.6 version: 5.0.6 typescript: - specifier: 'catalog:' - version: 6.0.3 + specifier: catalog:typescript7 + version: 7.0.2 integration-tests/typescript-fetch: dependencies: @@ -374,8 +377,8 @@ importers: specifier: ^22.20.0 version: 22.20.0 typescript: - specifier: 'catalog:' - version: 6.0.3 + specifier: catalog:typescript7 + version: 7.0.2 integration-tests/typescript-koa: dependencies: @@ -402,8 +405,8 @@ importers: specifier: ^3.0.3 version: 3.0.3 typescript: - specifier: 'catalog:' - version: 6.0.3 + specifier: catalog:typescript7 + version: 7.0.2 packages/documentation: dependencies: @@ -469,7 +472,7 @@ importers: specifier: 'catalog:' version: 4.23.0 typescript: - specifier: 'catalog:' + specifier: catalog:typescript6 version: 6.0.3 packages/openapi-code-generator: @@ -514,7 +517,7 @@ importers: specifier: ^2.8.1 version: 2.8.1 typescript: - specifier: 'catalog:' + specifier: catalog:typescript6 version: 6.0.3 zod: specifier: ^4.3.6 @@ -576,7 +579,7 @@ importers: version: 18.2.3 tsdown: specifier: 'catalog:' - version: 0.22.3(@arethetypeswrong/core@0.18.4)(publint@0.3.21)(tsx@4.23.0)(typescript@6.0.3) + version: 0.22.5(@arethetypeswrong/core@0.18.4)(publint@0.3.21)(tsx@4.23.0)(typescript@6.0.3) tsx: specifier: 'catalog:' version: 4.23.0 @@ -598,10 +601,10 @@ importers: version: 1.18.1 tsdown: specifier: 'catalog:' - version: 0.22.3(@arethetypeswrong/core@0.18.4)(publint@0.3.21)(tsx@4.23.0)(typescript@6.0.3) + version: 0.22.5(@arethetypeswrong/core@0.18.4)(publint@0.3.21)(tsx@4.23.0)(typescript@7.0.2) typescript: - specifier: 'catalog:' - version: 6.0.3 + specifier: catalog:typescript7 + version: 7.0.2 vitest: specifier: 'catalog:' version: 4.1.9(@types/node@22.20.0)(@vitest/coverage-v8@4.1.9)(jsdom@29.1.1(@noble/hashes@1.8.0))(vite@7.3.5(@types/node@22.20.0)(sass@1.99.0)(tsx@4.23.0)(yaml@2.9.0)) @@ -617,10 +620,10 @@ importers: devDependencies: tsdown: specifier: 'catalog:' - version: 0.22.3(@arethetypeswrong/core@0.18.4)(publint@0.3.21)(tsx@4.23.0)(typescript@6.0.3) + version: 0.22.5(@arethetypeswrong/core@0.18.4)(publint@0.3.21)(tsx@4.23.0)(typescript@7.0.2) typescript: - specifier: 'catalog:' - version: 6.0.3 + specifier: catalog:typescript7 + version: 7.0.2 vitest: specifier: 'catalog:' version: 4.1.9(@types/node@22.20.0)(@vitest/coverage-v8@4.1.9)(jsdom@29.1.1(@noble/hashes@1.8.0))(vite@7.3.5(@types/node@22.20.0)(sass@1.99.0)(tsx@4.23.0)(yaml@2.9.0)) @@ -660,10 +663,10 @@ importers: version: 18.2.3 tsdown: specifier: 'catalog:' - version: 0.22.3(@arethetypeswrong/core@0.18.4)(publint@0.3.21)(tsx@4.23.0)(typescript@6.0.3) + version: 0.22.5(@arethetypeswrong/core@0.18.4)(publint@0.3.21)(tsx@4.23.0)(typescript@7.0.2) typescript: - specifier: 'catalog:' - version: 6.0.3 + specifier: catalog:typescript7 + version: 7.0.2 vitest: specifier: 'catalog:' version: 4.1.9(@types/node@22.20.0)(@vitest/coverage-v8@4.1.9)(jsdom@29.1.1(@noble/hashes@1.8.0))(vite@7.3.5(@types/node@22.20.0)(sass@1.99.0)(tsx@4.23.0)(yaml@2.9.0)) @@ -685,10 +688,10 @@ importers: version: 18.2.3 tsdown: specifier: 'catalog:' - version: 0.22.3(@arethetypeswrong/core@0.18.4)(publint@0.3.21)(tsx@4.23.0)(typescript@6.0.3) + version: 0.22.5(@arethetypeswrong/core@0.18.4)(publint@0.3.21)(tsx@4.23.0)(typescript@7.0.2) typescript: - specifier: 'catalog:' - version: 6.0.3 + specifier: catalog:typescript7 + version: 7.0.2 vitest: specifier: 'catalog:' version: 4.1.9(@types/node@22.20.0)(@vitest/coverage-v8@4.1.9)(jsdom@29.1.1(@noble/hashes@1.8.0))(vite@7.3.5(@types/node@22.20.0)(sass@1.99.0)(tsx@4.23.0)(yaml@2.9.0)) @@ -731,10 +734,10 @@ importers: version: 8.0.0 tsdown: specifier: 'catalog:' - version: 0.22.3(@arethetypeswrong/core@0.18.4)(publint@0.3.21)(tsx@4.23.0)(typescript@6.0.3) + version: 0.22.5(@arethetypeswrong/core@0.18.4)(publint@0.3.21)(tsx@4.23.0)(typescript@7.0.2) typescript: - specifier: 'catalog:' - version: 6.0.3 + specifier: catalog:typescript7 + version: 7.0.2 vitest: specifier: 'catalog:' version: 4.1.9(@types/node@22.20.0)(@vitest/coverage-v8@4.1.9)(jsdom@29.1.1(@noble/hashes@1.8.0))(vite@7.3.5(@types/node@22.20.0)(sass@1.99.0)(tsx@4.23.0)(yaml@2.9.0)) @@ -1036,10 +1039,6 @@ packages: resolution: {integrity: sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==} engines: {node: '>=6.9.0'} - '@babel/generator@8.0.0': - resolution: {integrity: sha512-NT9NrVwJsbSV6Y2FSstWa71EETOnzrjkL5/wX3D2mYHtKM+qvqB1DvR4D0Setb/gDBsHzRICifwEWMO8CnTF6g==} - engines: {node: ^22.18.0 || >=24.11.0} - '@babel/helper-annotate-as-pure@7.27.3': resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==} engines: {node: '>=6.9.0'} @@ -1070,18 +1069,10 @@ packages: resolution: {integrity: sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==} engines: {node: '>=6.9.0'} - '@babel/helper-string-parser@8.0.0': - resolution: {integrity: sha512-6mJgmFFFIIO82vvoLt9XtRC7/TkzXfts1t/SpRX4IHSzMgqoPYCWesVu1udUPUWioAE/2fcG6WuI8zrkE1gwrg==} - engines: {node: ^22.18.0 || >=24.11.0} - '@babel/helper-validator-identifier@7.29.7': resolution: {integrity: sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==} engines: {node: '>=6.9.0'} - '@babel/helper-validator-identifier@8.0.2': - resolution: {integrity: sha512-9Fr9QeyCAyi1BR1jKZ6uYQ24EIhQUx5ReHfQU7drOE+TPOb+w11/dsqLkMOT2U29OdCT71XajrOT8xDc1C7orA==} - engines: {node: ^22.18.0 || >=24.11.0} - '@babel/helper-validator-option@7.29.7': resolution: {integrity: sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==} engines: {node: '>=6.9.0'} @@ -1095,11 +1086,6 @@ packages: engines: {node: '>=6.0.0'} hasBin: true - '@babel/parser@8.0.0': - resolution: {integrity: sha512-aLxAE+imI9bCcyaPrUDjBv3uSkWieifjLe0kuFOZF0zli0L6GCsTmsePnTr55adbIAgYz2zhN1vnFimCBUYcRQ==} - engines: {node: ^22.18.0 || >=24.11.0} - hasBin: true - '@babel/template@7.29.7': resolution: {integrity: sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==} engines: {node: '>=6.9.0'} @@ -1112,10 +1098,6 @@ packages: resolution: {integrity: sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==} engines: {node: '>=6.9.0'} - '@babel/types@8.0.0': - resolution: {integrity: sha512-K8ponJDxBwDHigkeFqaqT5wLGl4bTlwMafR8k7b5CPxr6Ww+UG9ls8Yx6Tcpboxu97eeGVEEyKcHmEyOwN1vSw==} - engines: {node: ^22.18.0 || >=24.11.0} - '@bcoe/v8-coverage@1.0.2': resolution: {integrity: sha512-6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA==} engines: {node: '>=18'} @@ -2405,8 +2387,8 @@ packages: resolution: {integrity: sha512-bMVoAKhpjTOPHkW/lprDPwv5aD4R4C3Irt8vn+SKA9wudLe9COLxOhurrKRsxmZccUbWXRF7vukNeGUAj5P8kA==} engines: {node: '>= 10'} - '@napi-rs/wasm-runtime@1.1.5': - resolution: {integrity: sha512-AWPoBRJ9tsnVhor4sjO7rkni+7p+2IAEFj6cx06UgP10jkQHqay/36uRV/bFkgrh18D9vb4cr8Q0Pthskgzy+Q==} + '@napi-rs/wasm-runtime@1.1.6': + resolution: {integrity: sha512-ZLv/JdUfkvOy9eCnnBaGfiO+XimbjebAeO+MRQqD/B+FR1tnRN0tpKSJHRbE8sFfS6aqsXZ67TQjfwfsxULVbg==} peerDependencies: '@emnapi/core': ^1.7.1 '@emnapi/runtime': ^1.7.1 @@ -2595,8 +2577,8 @@ packages: '@octokit/types@16.0.0': resolution: {integrity: sha512-sKq+9r1Mm4efXW1FCk7hFSeJo4QKreL/tTbR0rz/qx/r1Oa2VV83LTA/H/MuCOX7uCIJmQVRKBcbmWoySjAnSg==} - '@oxc-project/types@0.137.0': - resolution: {integrity: sha512-WT+Gb24i8hmvo85AIv2oEYouEXkRlKAlT9WaCa3TfLgNCN+GhrJOGZuIlMouAh38Qe4QOx26eUOVsq70qXrywA==} + '@oxc-project/types@0.139.0': + resolution: {integrity: sha512-r9gHphtCs+1M7J0pw6Sn/hh/Wpa/iQrOOkrNAlVLF/gHq+/CJmHIWKKUUhdWjcD6CIa8idarspCsASiXCXvFUw==} '@paralleldrive/cuid2@2.3.1': resolution: {integrity: sha512-XO7cAxhnTZl0Yggq6jOgjiOHhbgcO4NqFqwSmQpjK3b6TEE6Uj/jfSk6wzYyemh3+I0sHirKSetjQwn5cZktFw==} @@ -2713,97 +2695,97 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@rolldown/binding-android-arm64@1.1.2': - resolution: {integrity: sha512-2cZ+7xRS+DBcuJBJKnfzsbleumJhBqSlJVpuzHC0nTqfd3QQ7Vx2/x5YR/D7cBamKSeWplwo82Fn9lqYUDEMfA==} + '@rolldown/binding-android-arm64@1.1.5': + resolution: {integrity: sha512-lZg8fqIv2v7FF237bwMgzGZEJvGL79/s5knJ/i6FmsGF4XXlzccZ4jb+TrFIxtSSxFtIpdsgrPZeMk1I9AFcyQ==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [android] - '@rolldown/binding-darwin-arm64@1.1.2': - resolution: {integrity: sha512-RkPMJnygxsgOYdkfqgpwY0/Fzm8d0VQe6HGU2/B00Xa9eqdLbrII+DOKAodbJAn3ZL1AJxGHkZRPYazgGY6Ljw==} + '@rolldown/binding-darwin-arm64@1.1.5': + resolution: {integrity: sha512-51Bnx9pNiMRKSUNtBfySkNJ9vMU9Hh3I1ozDd6gyPPYzaXCfnptUcEZxXGYFn+ul2dtcMUiqGR1Yai2K10uoTw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [darwin] - '@rolldown/binding-darwin-x64@1.1.2': - resolution: {integrity: sha512-Uiczh6vFhwyfd7WNe7Q7mCA4KxAiLdz7jPE/WGizfRpIieoyFuNVMmM8HqZ9HwudTkY6/AeMQwlNJ9NJijguWw==} + '@rolldown/binding-darwin-x64@1.1.5': + resolution: {integrity: sha512-Tm+gbfC0aHu1tBA/JvKQh32S0K6YgCHkiAF4/W6xX0K0RmNuc94VeK419dJoE65R5aRxmo+noZQSWrAMF6yb6g==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [darwin] - '@rolldown/binding-freebsd-x64@1.1.2': - resolution: {integrity: sha512-+TpdtTRgHiJFjCVFbw311SuLk3KfytPOQQn+VlAEv+gBxYPtL7E6JS9e/tk+8CwxhIZvemJKo4rTKgfWNsKkkA==} + '@rolldown/binding-freebsd-x64@1.1.5': + resolution: {integrity: sha512-JMzDKCCXq93YccG5gz3hvOs1oXRKAf0XYpfOS88e+wZrC8Iugj6j68867vrYZkvpDDpKn/KoKORThmchMpF6TA==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [freebsd] - '@rolldown/binding-linux-arm-gnueabihf@1.1.2': - resolution: {integrity: sha512-4lv1/tkmi7ueIVHnyreaOeUpiZP26BH9rRy6hoYfR9310A2B9nUEVRDvBx69vx64Nr3eTPPRkyciqJJs+j9Jmw==} + '@rolldown/binding-linux-arm-gnueabihf@1.1.5': + resolution: {integrity: sha512-uML21j2K5TfPGutKxub+M+nLjZIrWjXQ5Grx4lCe/nimTj9B4L63zHpjXLl4y0L3mcm2htEQIb06oCG/szerNw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [linux] - '@rolldown/binding-linux-arm64-gnu@1.1.2': - resolution: {integrity: sha512-gBSUVO0eaWgw1JMjK3gB8BMlX2Mk148s2lTiVT3e9vjVxbl7UDfMWWY8CfIaaqiXuM9fVTMxIpUz6CAo/B6Vlw==} + '@rolldown/binding-linux-arm64-gnu@1.1.5': + resolution: {integrity: sha512-navSiuTMogvnQoZoM/v+l3ZWo50/NTwSHSzheABx/RCnmUPaKwq9qSo4Br2OYRs21+Fz8uFqITZM3H4opOB0/Q==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] libc: [glibc] - '@rolldown/binding-linux-arm64-musl@1.1.2': - resolution: {integrity: sha512-LjQP/iZLBu8o8PjIfk4x3At0/mT6h282pvz8Z5LAyhGbu/kDezyO7ea62rF5uoqmgnIYqbN/MqJ3Si3Aymi7xQ==} + '@rolldown/binding-linux-arm64-musl@1.1.5': + resolution: {integrity: sha512-lAryqH7IteztmCXQXk0etKj4wBQ7Gx5S6LjKhsgp9zb8I5bsuvU/2llH1hDQcjsFeqIsovMVN339/8pUDDBXxA==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] libc: [musl] - '@rolldown/binding-linux-ppc64-gnu@1.1.2': - resolution: {integrity: sha512-X/7bVLWelEsbyWDUSXt7zVsTniLLPIY2n1rH58qr78l9i7MNbbxBWD8gI2vRfBWf4NUXJCUuQnfZDsp32LqsfQ==} + '@rolldown/binding-linux-ppc64-gnu@1.1.5': + resolution: {integrity: sha512-fsK/sNBnxzBlL4O1JNrZakVQxPspqpED5dLtNsZS9oOKmtSpdNIzxH2kkol5HYTWJN47sE20ztMJPxfZ89qGOg==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [ppc64] os: [linux] libc: [glibc] - '@rolldown/binding-linux-s390x-gnu@1.1.2': - resolution: {integrity: sha512-gb6dYKW/1KDorGXyy48glEBJs/sxVSC5pcVrox/pFGV4mvwSFeg2sK5L2tRkVsVlh7kueqOgg4GEcuipJcGuKg==} + '@rolldown/binding-linux-s390x-gnu@1.1.5': + resolution: {integrity: sha512-gLYb4BIadlfTOYT5gO503n8zQjXflgzpD0FcyKh0Mzx3rqCZKnHoJWV9xe1KXUJ5lx2JfcSHr/mhzS0PC/McAA==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [s390x] os: [linux] libc: [glibc] - '@rolldown/binding-linux-x64-gnu@1.1.2': - resolution: {integrity: sha512-JY4w85pU3iAiJVMh5nuk4/Mh9GjMsupe8MrIN53rwxAZW64GKrWeJBuN6SxQg9QTU5uB1cxyhDzW8jqRn1EABw==} + '@rolldown/binding-linux-x64-gnu@1.1.5': + resolution: {integrity: sha512-FjcpEKUyJygHgs1o50VYNvkt5+7Le/VEdYt0AkRpkL33MnyQfwr8l5mXwMmfmTbyMPr5vJLC+8/Gd9gXnwU1QQ==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] libc: [glibc] - '@rolldown/binding-linux-x64-musl@1.1.2': - resolution: {integrity: sha512-xvpA7o5KCYLB0Rwscmuylb1/zHHSUx4g4xilm4prC5jP76pEUlzBmMbgpbh7bVDbId4NcfT96gN5i6mE6UDaiw==} + '@rolldown/binding-linux-x64-musl@1.1.5': + resolution: {integrity: sha512-Me+PfPI2TMeOQk0gYWfLQZtTktrmzbr8cDboqX83XKc7UrgAi55gF+2dUkWdxd19n55Essp2yeca+O9N5rBxHg==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] libc: [musl] - '@rolldown/binding-openharmony-arm64@1.1.2': - resolution: {integrity: sha512-p/ts6KBLjuk49Bp21XH77poQGt02iNz7ChgHep7tudPOaLinR/De/RHdxF8w8Yj4r/bF/bqXwH6PZrB2sA+Nvw==} + '@rolldown/binding-openharmony-arm64@1.1.5': + resolution: {integrity: sha512-yc5WrLzXks6zCQfn9Oxr8pORKyl/pF+QjHmW/Qx3qu0oyrrNC+y2JLTU1E2rcWYAmzlnqngWXHQjy51VzW70Vw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [openharmony] - '@rolldown/binding-wasm32-wasi@1.1.2': - resolution: {integrity: sha512-VMu/wmrZ9hJzYlRhbw7jK5PODlugyKZ5mOdX78+lS8OvuFkWNQdz1pFLrI2p3P0pjXOmUZ7B48o5VnMH9QOGtg==} + '@rolldown/binding-wasm32-wasi@1.1.5': + resolution: {integrity: sha512-VbQGPX2b4r48TAMIM2cjgluIM1HYutm4pcTEJsle7iEP7sB1dFqtPLBVbdLAZCxy1txCcPxf4QFf4v8uvltPqA==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [wasm32] - '@rolldown/binding-win32-arm64-msvc@1.1.2': - resolution: {integrity: sha512-xtUJqs8qEkuSviS0n1tsohaPuz3a1SPhZywOji4Oo+sgrJs8daEDMZ0QtqL0OS7dx8PoVpg2J/ZZycPY5I2+Zg==} + '@rolldown/binding-win32-arm64-msvc@1.1.5': + resolution: {integrity: sha512-gHv82k63z4qpV5+Q1y/12KrK0ltWBukVDI8nZcbT7Tt/ZlOIVwppazneq0F93oDxTo3IgAMEDIoQh3E2n6mVsw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [win32] - '@rolldown/binding-win32-x64-msvc@1.1.2': - resolution: {integrity: sha512-85YiLQqjUKgSO/Zjnf9e0XIn5Ymrh1fLDWBeAkZqpuBR/3R8TpfoHXuyblqyQrftSSgWO9qpcHN8mkyKsLraoA==} + '@rolldown/binding-win32-x64-msvc@1.1.5': + resolution: {integrity: sha512-tTZuDBPw85tEN5PQi1pnEBzDy0Z49HtScLAbD5t6hyeU92A95pRWaSMw1GZZi/RwgSgUIl0xrSlXIT/9QzvYSA==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [win32] @@ -3226,8 +3208,8 @@ packages: resolution: {integrity: sha512-Y8cK9aggNRsqJVaKUlEYs4s7CvQ1b1ta2DVPyAimb0I2qhzjNk+A+mxvll/klL0RlfuIUei8BF7YWiua4kQqww==} engines: {node: ^20.17.0 || >=22.9.0} - '@tybys/wasm-util@0.10.2': - resolution: {integrity: sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==} + '@tybys/wasm-util@0.10.3': + resolution: {integrity: sha512-F3fo1MYrRJYL3zER0OUOmkutjr1Vp23m7OsSgp7nq4SP6OqX6C/56XFIPAl5bt3zaBRjmW7SGz3u/6LwFpYcOg==} '@types/accepts@1.3.7': resolution: {integrity: sha512-Pay9fq2lM2wXPWbteBsRAGiWH2hig4ZE2asK+mm7kUzlxRTfL961rj89I6zV/E3PcIkDqyuBEcMxFT7rccugeQ==} @@ -3394,9 +3376,6 @@ packages: '@types/js-yaml@4.0.9': resolution: {integrity: sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==} - '@types/jsesc@2.5.1': - resolution: {integrity: sha512-9VN+6yxLOPLOav+7PwjZbxiID2bVaeq0ED4qSQmdQTdjnXJSaCVKTR58t15oqH1H5t8Ng2ZX1SabJVoN9Q34bw==} - '@types/katex@0.16.8': resolution: {integrity: sha512-trgaNyfU+Xh2Tc+ABIb44a5AYUpicB3uwirOioeOkNPPbmgRNtcWyDeeFRzjPZENO9Vq8gvVqfhaaXWLlevVwg==} @@ -3475,6 +3454,126 @@ packages: '@types/yargs@17.0.35': resolution: {integrity: sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==} + '@typescript/typescript-aix-ppc64@7.0.2': + resolution: {integrity: sha512-MTKKkWB7p/0E9xi1d1tHtZ5PiLkGEMIq88pK2CubZjOsLtYTLqhgIgi6zepFa+9GHZ6h05NMCkQxGKiPXMxXtQ==} + engines: {node: '>=16.20.0'} + cpu: [ppc64] + os: [aix] + + '@typescript/typescript-darwin-arm64@7.0.2': + resolution: {integrity: sha512-gowzar9MwS/aRWp6f3a4KUqzRjAZjOsmGNCM6LcTgXum+dBfgsBVMN+AgvOCCbguXyick6LJhpBszxMebJ8syA==} + engines: {node: '>=16.20.0'} + cpu: [arm64] + os: [darwin] + + '@typescript/typescript-darwin-x64@7.0.2': + resolution: {integrity: sha512-SZ9xZInqApNlNGc9s0W1VSsktYSOe9cFqNOIqmN1Gs8SmkjKZYFt017G4VwPxASInODuAdbTW7sXiFUf893RgA==} + engines: {node: '>=16.20.0'} + cpu: [x64] + os: [darwin] + + '@typescript/typescript-freebsd-arm64@7.0.2': + resolution: {integrity: sha512-W5NH4y/J0plIIS5b2xvTEkU7JFxyqdMAOgf+Ilhl0vHQXKO5dZoxd+C/jEtq56c4F3wk71RB4BMRQ2XdI+bwYQ==} + engines: {node: '>=16.20.0'} + cpu: [arm64] + os: [freebsd] + + '@typescript/typescript-freebsd-x64@7.0.2': + resolution: {integrity: sha512-UMGDx5sTpzNw3WiPebH7l90IWfJggEd+egHt/q6p7/Cm3zqoV7VxkGXt+3DxPIw8CcmvAB0j3sVVfbhX+M4Tpw==} + engines: {node: '>=16.20.0'} + cpu: [x64] + os: [freebsd] + + '@typescript/typescript-linux-arm64@7.0.2': + resolution: {integrity: sha512-Qh4eU4/y3yDjnfjjyPYihMj5/ODIlmt+Bzu17OI+fiSRDW57QmU5SiN63exPRNJPKUzcc1INa1NXdrJ+MqHjUQ==} + engines: {node: '>=16.20.0'} + cpu: [arm64] + os: [linux] + + '@typescript/typescript-linux-arm@7.0.2': + resolution: {integrity: sha512-gffT3xPz9sR7j/YJExkyPntrI0P2EP9XbOyWzth2/Gs0RstK+90RBcO0ncXoXy/beYll1SXw846Nf2zdnEz0QQ==} + engines: {node: '>=16.20.0'} + cpu: [arm] + os: [linux] + + '@typescript/typescript-linux-loong64@7.0.2': + resolution: {integrity: sha512-uEHck9i8hoAzXPiYRib1O7miOnz23SxIeVl6F4LXox+qov1K35jHcEW6VHKvZI+pyvl7fZEP4MCU5LYvIq1GuQ==} + engines: {node: '>=16.20.0'} + cpu: [loong64] + os: [linux] + + '@typescript/typescript-linux-mips64el@7.0.2': + resolution: {integrity: sha512-R4KvAMnE43W5Qeqb0Ly56O3mWMWIAgsMyz36DCaycd5nbg/9kzm0liw3JocfRqyJY0KPmzFjbswozXyW0DnIYA==} + engines: {node: '>=16.20.0'} + cpu: [mips64el] + os: [linux] + + '@typescript/typescript-linux-ppc64@7.0.2': + resolution: {integrity: sha512-DORx5b3sd/4S7eayxm4FQv+A7CrkUIGRaHiwI8oiHTAI1fAPWhF4J0vAlkC8biAlHSVVwxMQ3tjZ2/DVbnQiiA==} + engines: {node: '>=16.20.0'} + cpu: [ppc64] + os: [linux] + + '@typescript/typescript-linux-riscv64@7.0.2': + resolution: {integrity: sha512-wf0jqEDOjrPRnKwYRyyJDRo11KMbvMFrU+q4zqKyChODBzvlkbhNQfKvLxQCcwTpdDaXSHZTVuh0JoCrKCUMHQ==} + engines: {node: '>=16.20.0'} + cpu: [riscv64] + os: [linux] + + '@typescript/typescript-linux-s390x@7.0.2': + resolution: {integrity: sha512-IkwJc3L7yhytWd/ewjyxNDfOmswCm9GWMJT/ue/dU4aZNbwZeYAetq42VyLmsmSjvoX7z74X6ZaYCtzAr0EuGw==} + engines: {node: '>=16.20.0'} + cpu: [s390x] + os: [linux] + + '@typescript/typescript-linux-x64@7.0.2': + resolution: {integrity: sha512-EYdf2cNg7rgCWJnxCdJ+F3V39O8ihb37eHAu1LK8oAFizgTQbPOK7zHHXbPt8rX24COqODXeI3sIf0fCXG7H/A==} + engines: {node: '>=16.20.0'} + cpu: [x64] + os: [linux] + + '@typescript/typescript-netbsd-arm64@7.0.2': + resolution: {integrity: sha512-+polYF4MF04aPpO5FTkHran9yUQDSXqy5GiSDKpsll5jy3l3+g9QLhpf39T+ePtefhXLOGrLl0QIjkQP6VnelA==} + engines: {node: '>=16.20.0'} + cpu: [arm64] + os: [netbsd] + + '@typescript/typescript-netbsd-x64@7.0.2': + resolution: {integrity: sha512-8YIT0EHM/3dq10ZOVF/A7pc/YSMtbcecct4rWtexrnSCHOPcpC2KTLXfTCR6vDpnSiY12heNb1GiN/wu+T/FyA==} + engines: {node: '>=16.20.0'} + cpu: [x64] + os: [netbsd] + + '@typescript/typescript-openbsd-arm64@7.0.2': + resolution: {integrity: sha512-APT8+ClYnuYm1u9+kgGXoMj2VzWzcymwh2gNSQVySHfkRDGOTVkoWLjCmOQSaO+PoqQ57B0flRp9SA+7GnnkzQ==} + engines: {node: '>=16.20.0'} + cpu: [arm64] + os: [openbsd] + + '@typescript/typescript-openbsd-x64@7.0.2': + resolution: {integrity: sha512-yX7s+Q0Dln0Dt9tEzZsAjXXR/+ytBM7AlglaqyeMPxQszJ1JhlJdZ6jLA+IzldHtflX81em7lDao1xXu+aRRkg==} + engines: {node: '>=16.20.0'} + cpu: [x64] + os: [openbsd] + + '@typescript/typescript-sunos-x64@7.0.2': + resolution: {integrity: sha512-dLJDGaLZ1D4HPQn62u1n8mBDkJREwMsAkCdkwd4Ieqw+x3TUyTsqY0YiBCtE6H6OzzgGk3iuZ3vFWRS+E8/d1g==} + engines: {node: '>=16.20.0'} + cpu: [x64] + os: [sunos] + + '@typescript/typescript-win32-arm64@7.0.2': + resolution: {integrity: sha512-Gyl1Vy6OsWesLzmq+EP0Fb7b4Nid5232AvcA2SFcdYreldpNtYFFofPjnt62y9hQy7VTaZp65ICJjuAQRaVcIQ==} + engines: {node: '>=16.20.0'} + cpu: [arm64] + os: [win32] + + '@typescript/typescript-win32-x64@7.0.2': + resolution: {integrity: sha512-0BQ3HkAHHlKLSp1qRvf3SUhGpGsDuhB/jgFw75guyqbxJqEaS0Cw/VFO8i2nHglJUzQCRtMMR/IBAKE3ETMC4g==} + engines: {node: '>=16.20.0'} + cpu: [x64] + os: [win32] + '@typescript/vfs@1.6.4': resolution: {integrity: sha512-PJFXFS4ZJKiJ9Qiuix6Dz/OwEIqHD7Dme1UwZhTK11vR+5dqW2ACbdndWQexBzCx+CPuMe5WBYQWCsFyGlQLlQ==} peerDependencies: @@ -3633,6 +3732,131 @@ packages: '@yarnpkg/lockfile@1.1.0': resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==} + '@yuku-codegen/binding-darwin-arm64@0.5.44': + resolution: {integrity: sha512-mpZc7hrjl/qxcbEMS6vVLE0lO4DjiXCvrp3gYbZ58bbmsSxSGCTlOCA0lpeLXAKOZxe0ZrVoqKteaewFF2Vbuw==} + cpu: [arm64] + os: [darwin] + + '@yuku-codegen/binding-darwin-x64@0.5.44': + resolution: {integrity: sha512-PCt776PnGtnQYimxk18IyvPf/BQ6CNU95W+6eaoQfeME8ra+7v3pNNoTAmLfSveUC9KZPaoajR9NqkKfEVjA2Q==} + cpu: [x64] + os: [darwin] + + '@yuku-codegen/binding-freebsd-x64@0.5.44': + resolution: {integrity: sha512-5MNu1R4ysytPLMdl1UlGyjgAbUdT8fguW/QRo+pyEymbuWRN5n8JEHCFpm4AsWdP61fStagSpPDJcwN+mwC9Lg==} + cpu: [x64] + os: [freebsd] + + '@yuku-codegen/binding-linux-arm-gnu@0.5.44': + resolution: {integrity: sha512-xbP2qQ7/h6ZZKeckCiI2osB5SE5PBfLb4uzIfO1BSTX+9rlBKTqomxDaCib7aPf2X1CXMiIq+i7AK1EhBa5a7A==} + cpu: [arm] + os: [linux] + libc: [glibc] + + '@yuku-codegen/binding-linux-arm-musl@0.5.44': + resolution: {integrity: sha512-gmXKMCpgkUm5PllGMKBMoBmqgbTQkx+S85eE46LctuwTSKS/K7u65NE6t4zk6cLDvZpV67enycKXBORWn6q7xA==} + cpu: [arm] + os: [linux] + libc: [musl] + + '@yuku-codegen/binding-linux-arm64-gnu@0.5.44': + resolution: {integrity: sha512-eOoejNUtnHs1/TMn4wryOAG/TarvlOqSZtRPeS56liBKp/GVQSirqTM9AITSGPLSdK1u7fZWMdj5IOEoJp3ruw==} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@yuku-codegen/binding-linux-arm64-musl@0.5.44': + resolution: {integrity: sha512-xTzrhEMy1mdv5+SbJPPlwqlMrhXGPntE2f12TLi+dNPXhif4iXCGJpoh8pV9nwZFE/cq1ITuTnjIfTFj/PifzA==} + cpu: [arm64] + os: [linux] + libc: [musl] + + '@yuku-codegen/binding-linux-x64-gnu@0.5.44': + resolution: {integrity: sha512-2bvgIU4P+f4q18grdHoGnt9L6XlAciq/8GWpM06fmwj8qqruS8qwwwZXBk3/0U2+IHGv9pXRR8GtSXzl5n/blg==} + cpu: [x64] + os: [linux] + libc: [glibc] + + '@yuku-codegen/binding-linux-x64-musl@0.5.44': + resolution: {integrity: sha512-EzX5hWK0MmU4fbqY9coc5PJ0y0LYjrBdAF7mjSyetdK/yWRGBfHi9nh0dUJ0lqb47653hxB8/r9byfYgg6ecbA==} + cpu: [x64] + os: [linux] + libc: [musl] + + '@yuku-codegen/binding-win32-arm64@0.5.44': + resolution: {integrity: sha512-/ajGFWcOLGtmVUdxWKXDW6Ixtez68xxtmd2l95xNg8Lzs4aqbV2cy0Ns2Bzg9vjHsgDIooQlLXHpWh6HsHcy6w==} + cpu: [arm64] + os: [win32] + + '@yuku-codegen/binding-win32-x64@0.5.44': + resolution: {integrity: sha512-geuJQ7FKI8YUtBgW8w72ChMfMvYy3gSytACxB4HOkylsoutrhH6lUNYHk1ny/p8u8t47NGxktpnzVJzI8IzJkA==} + cpu: [x64] + os: [win32] + + '@yuku-parser/binding-darwin-arm64@0.5.44': + resolution: {integrity: sha512-EXSW5w1YOIMyxu53MFxP43gTDeHlQueOjk8AEI9tuLF5976bDq3MXuIgzQvZKPVAirxGZu8+ANVXH1WcAH1G6A==} + cpu: [arm64] + os: [darwin] + + '@yuku-parser/binding-darwin-x64@0.5.44': + resolution: {integrity: sha512-pJBHsKxqR/nPwwaXgkkYTVo3G9dJ/AXhWsYyKyadU1zLg9gGfVwVTMehqwwutMCONDsLqOmEv/UqItmhpVsQJw==} + cpu: [x64] + os: [darwin] + + '@yuku-parser/binding-freebsd-x64@0.5.44': + resolution: {integrity: sha512-fOqYX5BQML94uj9hd3a+LlBNz54OoDm6l+wgUIZ8UUkOBfPV+w2lux1jj9FKXT85wwjDOFhgZ/XQYSEDK/N9mA==} + cpu: [x64] + os: [freebsd] + + '@yuku-parser/binding-linux-arm-gnu@0.5.44': + resolution: {integrity: sha512-kA2jRNh2cbbHDbhBN9IR8CnYI4UZHNQg0OVz6+V16Ph5VlLYpfv/6GdCmvQQoTGAnhFlbQiRoQys03ey91FTew==} + cpu: [arm] + os: [linux] + libc: [glibc] + + '@yuku-parser/binding-linux-arm-musl@0.5.44': + resolution: {integrity: sha512-TQ82L8c5Lxl3HBOmw0uGfCcsyw0mp7DVGwCuW24OdDWak6BKaumvB8/Ep1llPOvhk5xgSFB7fsqgh6sIwkNRew==} + cpu: [arm] + os: [linux] + libc: [musl] + + '@yuku-parser/binding-linux-arm64-gnu@0.5.44': + resolution: {integrity: sha512-o6up+m/MsoMEtq6h4JTzmzKOvH9o3o41vK8oiok0LOZoPOFOqOSqC+N5V2ArD1O54m5LUq6ErghAbGWiPsMsqg==} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@yuku-parser/binding-linux-arm64-musl@0.5.44': + resolution: {integrity: sha512-3XZoiHhtrjWKgk7CJC/sGzk1TE57SDPYzOFXUg6CZrigRZ+c0Q5ItzJpyAvhzlxv5ruNRYiuGvFbaRSIDnp2BA==} + cpu: [arm64] + os: [linux] + libc: [musl] + + '@yuku-parser/binding-linux-x64-gnu@0.5.44': + resolution: {integrity: sha512-7KYCySZI6cjsdeiiIwvviDfJFd4Xj5gjNBzm9akUpwxRXNwaHHuEq2yGkVdGqj3BT6dJsiNhJIhtS6k7/HJdFA==} + cpu: [x64] + os: [linux] + libc: [glibc] + + '@yuku-parser/binding-linux-x64-musl@0.5.44': + resolution: {integrity: sha512-SLU/nXwOjET2XlOiO984sAzCloiWw0+JdcWpGzXLz3JQWbdiblxWC9cIvB0fCtKdDhX1mIutKNEH+RRRJADYcQ==} + cpu: [x64] + os: [linux] + libc: [musl] + + '@yuku-parser/binding-win32-arm64@0.5.44': + resolution: {integrity: sha512-LGmaJtB2mVqPD7Gu/RKAu9aIVxlaKPOgKB8RPHeFFD5Tf/apCiWZix1tkBjdOAo9cVEAoR9qnVHE6zJ+OG0drQ==} + cpu: [arm64] + os: [win32] + + '@yuku-parser/binding-win32-x64@0.5.44': + resolution: {integrity: sha512-2i0FTklLuhBIgILvtEQ3IN3J4qaTMKlxptseWNrz4F5mimL9UpQFUniVju9OOInwP2O1vgLdZn8EBjEXGNCHmg==} + cpu: [x64] + os: [win32] + + '@yuku-toolchain/types@0.5.43': + resolution: {integrity: sha512-kSpvPntnXw5+lYjO71ffBEnQ5ycQ74KGIYknh0TS4xeyCuBkOqxyJumxZkMhLBBUCLjDAbx2+Icnr3Zh4ftjpQ==} + abbrev@4.0.0: resolution: {integrity: sha512-a1wflyaL0tHtJSmLSOVybYhy22vRih4eduhhrkcjgrWGnRfrZtovJ2FRjxuTtkkj47O/baf0R86QU5OuYpz8fA==} engines: {node: ^20.17.0 || >=22.9.0} @@ -3738,10 +3962,6 @@ packages: resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} engines: {node: '>=12'} - ast-kit@3.0.0: - resolution: {integrity: sha512-8OG92q3R35qjC/4i6BLBMg8IB+fClWu/1PEwg2Z9Rn+BuNaiEgJzpzn+pxWOdHJWDCAwu2JP0wCDTozAM4QirQ==} - engines: {node: ^22.18.0 || >=24.11.0} - ast-v8-to-istanbul@1.0.4: resolution: {integrity: sha512-0bC0/4bTSrnwdhU3IsZDwEdojvuPrSg59OYZfKsLRtJZ0u8VBx9DebfqqG8bRdCC0I7vjgxmPi41P0lpkhJHtA==} @@ -3789,9 +4009,6 @@ packages: resolution: {integrity: sha512-frE1t78WOwJ45PKV2cF2tNPjTcs9L1J9s6VkrV59wanRP4GlaomuxYPVma7BwthMg8WnfSory4w5PTE6FZZ81w==} engines: {node: ^20.17.0 || >=22.9.0} - birpc@4.0.0: - resolution: {integrity: sha512-LShSxJP0KTmd101b6DRyGBj57LZxSDYWKitQNW/mi8GRMvZb078Uf9+pveax1DrVL89vm7mWe+TovdI/UDOuPw==} - body-parser@2.3.0: resolution: {integrity: sha512-2cGmJupaNgg+QUwVLAucDuWuoMZ6EX9iHDRswZ5lsNYEmwPaRknMPCLZz07yTzVq/83p4o/wzbDZbBrTvGGTIw==} engines: {node: '>=18'} @@ -4555,8 +4772,8 @@ packages: picomatch: optional: true - fflate@0.8.2: - resolution: {integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==} + fflate@0.8.3: + resolution: {integrity: sha512-tbZNuJrLwGUp3zshBtdy4W+ORxZuIh8a5ilyIEQDC5rY1f3U20JMry0Ll3WBzU58EZKsEuJFXhb5gwv8CsPvgA==} filename-reserved-regex@2.0.0: resolution: {integrity: sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==} @@ -6078,14 +6295,14 @@ packages: robust-predicates@3.0.3: resolution: {integrity: sha512-NS3levdsRIUOmiJ8FZWCP7LG3QpJyrs/TE0Zpf1yvZu8cAJJ6QMW92H1c7kWpdIHo8RvmLxN/o2JXTKHp74lUA==} - rolldown-plugin-dts@0.26.0: - resolution: {integrity: sha512-e+kEPtUiDES0htk5iqkSeF4EzAV7R+vugGB44iPDuw1Kw9E+WyL1VG7PaV0IIjGHLiacztMBcMTyrr8ON9CT1Q==} + rolldown-plugin-dts@0.27.4: + resolution: {integrity: sha512-z1uz1gH2sJ55i6JY/xi3q7gsI5CPthefDp5HYXnBlrkN1L3K4tx+gyAQO3Udt69ASWItWKwXJ55nKQq2HCMVfA==} engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: '@ts-macro/tsc': ^0.3.6 '@typescript/native-preview': '>=7.0.0-dev.20260325.1' rolldown: ^1.0.0 - typescript: ^5.0.0 || ^6.0.0 + typescript: ^5.0.0 || ^6.0.0 || ^7.0.0 vue-tsc: ~3.2.0 || ~3.3.0 peerDependenciesMeta: '@ts-macro/tsc': @@ -6097,8 +6314,8 @@ packages: vue-tsc: optional: true - rolldown@1.1.2: - resolution: {integrity: sha512-x0CrQQqCXWGeI8dTvFfN/Dnv3yMKT9hv5jFjlOreKAx9wqLq9wz7VvLLHyaAXC90/CpggTu9SisSbsJJTPSjNQ==} + rolldown@1.1.5: + resolution: {integrity: sha512-t9z29cJjXf/vxQ8dyhCSpt6H6aSwHTk8cT5I3iy6SMXuFpk5mB6PL6XfC8PCwrPTx93udwKUm9HRteAlTGBLiA==} engines: {node: ^20.19.0 || >=22.12.0} hasBin: true @@ -6456,18 +6673,18 @@ packages: ts-morph@27.0.2: resolution: {integrity: sha512-fhUhgeljcrdZ+9DZND1De1029PrE+cMkIP7ooqkLRTrRLTqcki2AstsyJm0vRNbTbVCNJ0idGlbBrfqc7/nA8w==} - tsdown@0.22.3: - resolution: {integrity: sha512-louqbfA8Qf//B9jTTL0FPtXTNpjCWv1VPkbcmQMph2pTpzs+LnB1tbe4tDDRVpo2BjF5SgUXaTZe45SxB8pWHg==} + tsdown@0.22.5: + resolution: {integrity: sha512-0iEpnuOVBGo7mPW+FlyglErHBExYOAlpLBlCl/QcTrRUJ+TF2prfzl6ipQS5VsjJejFXnmbkdh0Ta53B3stWxg==} engines: {node: ^22.18.0 || >=24.11.0} hasBin: true peerDependencies: '@arethetypeswrong/core': ^0.18.1 - '@tsdown/css': 0.22.3 - '@tsdown/exe': 0.22.3 + '@tsdown/css': 0.22.5 + '@tsdown/exe': 0.22.5 '@vitejs/devtools': '*' publint: ^0.3.8 tsx: '*' - typescript: ^5.0.0 || ^6.0.0 + typescript: ^5.0.0 || ^6.0.0 || ^7.0.0 unplugin-unused: ^0.5.0 unrun: '*' peerDependenciesMeta: @@ -6536,6 +6753,11 @@ packages: engines: {node: '>=14.17'} hasBin: true + typescript@7.0.2: + resolution: {integrity: sha512-8FYau96o3NKOhbjKi/qNvG/W5jhzxkbdm5sj9AbZ/5T5sWqn3hJgLfGx27sRKZWTvyzCP8dLRBTf5tBTSRVUNA==} + engines: {node: '>=16.20.0'} + hasBin: true + uglify-js@3.19.3: resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==} engines: {node: '>=0.8.0'} @@ -6851,6 +7073,15 @@ packages: resolution: {integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==} engines: {node: '>=18'} + yuku-ast@0.1.7: + resolution: {integrity: sha512-2RiMEWv500TixY5rJy6OZd4fSy9WYZKWh6gGbIJ7y7vAGcuCugWOWwOLGaQcRZrXcPUfqtLtvpaJ3SdXtWlhKA==} + + yuku-codegen@0.5.44: + resolution: {integrity: sha512-0rhtgWGz+bR3Pe7xqJ5E4VqxI1vqNtkeJRkeXM0Qd3tgldYClQipxa9bRZyuNOOfk0Ri02scrjnkoAHM16/f2g==} + + yuku-parser@0.5.44: + resolution: {integrity: sha512-mAhpQZ/bXjxZmKiGUqEWskC9mZTcTBv6/fdzVdzdjM6XuD1DP3IavdLVWdM39L9ewK9vS9OtJmaKNeWgRzpy0w==} + zeptomatch@2.1.0: resolution: {integrity: sha512-KiGErG2J0G82LSpniV0CtIzjlJ10E04j02VOudJsPyPwNZgGnRKQy7I1R7GMyg/QswnE4l7ohSGrQbQbjXPPDA==} @@ -7147,7 +7378,7 @@ snapshots: '@andrewbranch/untar.js': 1.0.3 '@loaderkit/resolve': 1.0.6 cjs-module-lexer: 1.4.3 - fflate: 0.8.2 + fflate: 0.8.3 lru-cache: 11.5.1 semver: 7.8.5 typescript: 5.6.1-rc @@ -7275,15 +7506,6 @@ snapshots: '@jridgewell/trace-mapping': 0.3.31 jsesc: 3.1.0 - '@babel/generator@8.0.0': - dependencies: - '@babel/parser': 8.0.0 - '@babel/types': 8.0.0 - '@jridgewell/gen-mapping': 0.3.13 - '@jridgewell/trace-mapping': 0.3.31 - '@types/jsesc': 2.5.1 - jsesc: 3.1.0 - '@babel/helper-annotate-as-pure@7.27.3': dependencies: '@babel/types': 7.29.7 @@ -7329,12 +7551,8 @@ snapshots: '@babel/helper-string-parser@7.29.7': {} - '@babel/helper-string-parser@8.0.0': {} - '@babel/helper-validator-identifier@7.29.7': {} - '@babel/helper-validator-identifier@8.0.2': {} - '@babel/helper-validator-option@7.29.7': {} '@babel/helpers@7.29.7': @@ -7346,10 +7564,6 @@ snapshots: dependencies: '@babel/types': 7.29.7 - '@babel/parser@8.0.0': - dependencies: - '@babel/types': 8.0.0 - '@babel/template@7.29.7': dependencies: '@babel/code-frame': 7.29.7 @@ -7373,11 +7587,6 @@ snapshots: '@babel/helper-string-parser': 7.29.7 '@babel/helper-validator-identifier': 7.29.7 - '@babel/types@8.0.0': - dependencies: - '@babel/helper-string-parser': 8.0.0 - '@babel/helper-validator-identifier': 8.0.2 - '@bcoe/v8-coverage@1.0.2': {} '@biomejs/biome@2.5.2': @@ -8401,11 +8610,11 @@ snapshots: '@napi-rs/simple-git-win32-ia32-msvc': 0.1.22 '@napi-rs/simple-git-win32-x64-msvc': 0.1.22 - '@napi-rs/wasm-runtime@1.1.5(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)': + '@napi-rs/wasm-runtime@1.1.6(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)': dependencies: '@emnapi/core': 1.11.1 '@emnapi/runtime': 1.11.1 - '@tybys/wasm-util': 0.10.2 + '@tybys/wasm-util': 0.10.3 optional: true '@next/env@16.2.10': {} @@ -8631,7 +8840,7 @@ snapshots: dependencies: '@octokit/openapi-types': 27.0.0 - '@oxc-project/types@0.137.0': {} + '@oxc-project/types@0.139.0': {} '@paralleldrive/cuid2@2.3.1': dependencies: @@ -8725,53 +8934,53 @@ snapshots: dependencies: react: 19.2.7 - '@rolldown/binding-android-arm64@1.1.2': + '@rolldown/binding-android-arm64@1.1.5': optional: true - '@rolldown/binding-darwin-arm64@1.1.2': + '@rolldown/binding-darwin-arm64@1.1.5': optional: true - '@rolldown/binding-darwin-x64@1.1.2': + '@rolldown/binding-darwin-x64@1.1.5': optional: true - '@rolldown/binding-freebsd-x64@1.1.2': + '@rolldown/binding-freebsd-x64@1.1.5': optional: true - '@rolldown/binding-linux-arm-gnueabihf@1.1.2': + '@rolldown/binding-linux-arm-gnueabihf@1.1.5': optional: true - '@rolldown/binding-linux-arm64-gnu@1.1.2': + '@rolldown/binding-linux-arm64-gnu@1.1.5': optional: true - '@rolldown/binding-linux-arm64-musl@1.1.2': + '@rolldown/binding-linux-arm64-musl@1.1.5': optional: true - '@rolldown/binding-linux-ppc64-gnu@1.1.2': + '@rolldown/binding-linux-ppc64-gnu@1.1.5': optional: true - '@rolldown/binding-linux-s390x-gnu@1.1.2': + '@rolldown/binding-linux-s390x-gnu@1.1.5': optional: true - '@rolldown/binding-linux-x64-gnu@1.1.2': + '@rolldown/binding-linux-x64-gnu@1.1.5': optional: true - '@rolldown/binding-linux-x64-musl@1.1.2': + '@rolldown/binding-linux-x64-musl@1.1.5': optional: true - '@rolldown/binding-openharmony-arm64@1.1.2': + '@rolldown/binding-openharmony-arm64@1.1.5': optional: true - '@rolldown/binding-wasm32-wasi@1.1.2': + '@rolldown/binding-wasm32-wasi@1.1.5': dependencies: '@emnapi/core': 1.11.1 '@emnapi/runtime': 1.11.1 - '@napi-rs/wasm-runtime': 1.1.5(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1) + '@napi-rs/wasm-runtime': 1.1.6(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1) optional: true - '@rolldown/binding-win32-arm64-msvc@1.1.2': + '@rolldown/binding-win32-arm64-msvc@1.1.5': optional: true - '@rolldown/binding-win32-x64-msvc@1.1.2': + '@rolldown/binding-win32-x64-msvc@1.1.5': optional: true '@rolldown/pluginutils@1.0.1': {} @@ -9099,7 +9308,7 @@ snapshots: '@tufjs/canonical-json': 2.0.0 minimatch: 10.2.5 - '@tybys/wasm-util@0.10.2': + '@tybys/wasm-util@0.10.3': dependencies: tslib: 2.8.1 optional: true @@ -9310,8 +9519,6 @@ snapshots: '@types/js-yaml@4.0.9': {} - '@types/jsesc@2.5.1': {} - '@types/katex@0.16.8': {} '@types/keygrip@1.0.6': {} @@ -9395,6 +9602,66 @@ snapshots: dependencies: '@types/yargs-parser': 21.0.3 + '@typescript/typescript-aix-ppc64@7.0.2': + optional: true + + '@typescript/typescript-darwin-arm64@7.0.2': + optional: true + + '@typescript/typescript-darwin-x64@7.0.2': + optional: true + + '@typescript/typescript-freebsd-arm64@7.0.2': + optional: true + + '@typescript/typescript-freebsd-x64@7.0.2': + optional: true + + '@typescript/typescript-linux-arm64@7.0.2': + optional: true + + '@typescript/typescript-linux-arm@7.0.2': + optional: true + + '@typescript/typescript-linux-loong64@7.0.2': + optional: true + + '@typescript/typescript-linux-mips64el@7.0.2': + optional: true + + '@typescript/typescript-linux-ppc64@7.0.2': + optional: true + + '@typescript/typescript-linux-riscv64@7.0.2': + optional: true + + '@typescript/typescript-linux-s390x@7.0.2': + optional: true + + '@typescript/typescript-linux-x64@7.0.2': + optional: true + + '@typescript/typescript-netbsd-arm64@7.0.2': + optional: true + + '@typescript/typescript-netbsd-x64@7.0.2': + optional: true + + '@typescript/typescript-openbsd-arm64@7.0.2': + optional: true + + '@typescript/typescript-openbsd-x64@7.0.2': + optional: true + + '@typescript/typescript-sunos-x64@7.0.2': + optional: true + + '@typescript/typescript-win32-arm64@7.0.2': + optional: true + + '@typescript/typescript-win32-x64@7.0.2': + optional: true + '@typescript/vfs@1.6.4(typescript@6.0.3)': dependencies: debug: 4.4.3 @@ -9553,6 +9820,74 @@ snapshots: '@yarnpkg/lockfile@1.1.0': {} + '@yuku-codegen/binding-darwin-arm64@0.5.44': + optional: true + + '@yuku-codegen/binding-darwin-x64@0.5.44': + optional: true + + '@yuku-codegen/binding-freebsd-x64@0.5.44': + optional: true + + '@yuku-codegen/binding-linux-arm-gnu@0.5.44': + optional: true + + '@yuku-codegen/binding-linux-arm-musl@0.5.44': + optional: true + + '@yuku-codegen/binding-linux-arm64-gnu@0.5.44': + optional: true + + '@yuku-codegen/binding-linux-arm64-musl@0.5.44': + optional: true + + '@yuku-codegen/binding-linux-x64-gnu@0.5.44': + optional: true + + '@yuku-codegen/binding-linux-x64-musl@0.5.44': + optional: true + + '@yuku-codegen/binding-win32-arm64@0.5.44': + optional: true + + '@yuku-codegen/binding-win32-x64@0.5.44': + optional: true + + '@yuku-parser/binding-darwin-arm64@0.5.44': + optional: true + + '@yuku-parser/binding-darwin-x64@0.5.44': + optional: true + + '@yuku-parser/binding-freebsd-x64@0.5.44': + optional: true + + '@yuku-parser/binding-linux-arm-gnu@0.5.44': + optional: true + + '@yuku-parser/binding-linux-arm-musl@0.5.44': + optional: true + + '@yuku-parser/binding-linux-arm64-gnu@0.5.44': + optional: true + + '@yuku-parser/binding-linux-arm64-musl@0.5.44': + optional: true + + '@yuku-parser/binding-linux-x64-gnu@0.5.44': + optional: true + + '@yuku-parser/binding-linux-x64-musl@0.5.44': + optional: true + + '@yuku-parser/binding-win32-arm64@0.5.44': + optional: true + + '@yuku-parser/binding-win32-x64@0.5.44': + optional: true + + '@yuku-toolchain/types@0.5.43': {} + abbrev@4.0.0: {} accepts@1.3.8: @@ -9645,12 +9980,6 @@ snapshots: assertion-error@2.0.1: {} - ast-kit@3.0.0: - dependencies: - '@babel/parser': 8.0.0 - estree-walker: 3.0.3 - pathe: 2.0.3 - ast-v8-to-istanbul@1.0.4: dependencies: '@jridgewell/trace-mapping': 0.3.31 @@ -9710,8 +10039,6 @@ snapshots: read-cmd-shim: 6.0.0 write-file-atomic: 7.0.1 - birpc@4.0.0: {} - body-parser@2.3.0: dependencies: bytes: 3.1.2 @@ -10544,7 +10871,7 @@ snapshots: optionalDependencies: picomatch: 4.0.5 - fflate@0.8.2: {} + fflate@0.8.3: {} filename-reserved-regex@2.0.0: {} @@ -12708,42 +13035,54 @@ snapshots: robust-predicates@3.0.3: {} - rolldown-plugin-dts@0.26.0(patch_hash=9bb4af20125c71ccd95af0a1322a894f1c886f5ecd26e170b3c2705c605eaeb1)(rolldown@1.1.2)(typescript@6.0.3): + rolldown-plugin-dts@0.27.4(rolldown@1.1.5)(typescript@6.0.3): dependencies: - '@babel/generator': 8.0.0 - '@babel/helper-validator-identifier': 8.0.2 - '@babel/parser': 8.0.0 - ast-kit: 3.0.0 - birpc: 4.0.0 dts-resolver: 3.0.0 get-tsconfig: 5.0.0-beta.5 obug: 2.1.3 - rolldown: 1.1.2 + rolldown: 1.1.5 + yuku-ast: 0.1.7 + yuku-codegen: 0.5.44 + yuku-parser: 0.5.44 optionalDependencies: typescript: 6.0.3 transitivePeerDependencies: - oxc-resolver - rolldown@1.1.2: + rolldown-plugin-dts@0.27.4(rolldown@1.1.5)(typescript@7.0.2): + dependencies: + dts-resolver: 3.0.0 + get-tsconfig: 5.0.0-beta.5 + obug: 2.1.3 + rolldown: 1.1.5 + yuku-ast: 0.1.7 + yuku-codegen: 0.5.44 + yuku-parser: 0.5.44 + optionalDependencies: + typescript: 7.0.2 + transitivePeerDependencies: + - oxc-resolver + + rolldown@1.1.5: dependencies: - '@oxc-project/types': 0.137.0 + '@oxc-project/types': 0.139.0 '@rolldown/pluginutils': 1.0.1 optionalDependencies: - '@rolldown/binding-android-arm64': 1.1.2 - '@rolldown/binding-darwin-arm64': 1.1.2 - '@rolldown/binding-darwin-x64': 1.1.2 - '@rolldown/binding-freebsd-x64': 1.1.2 - '@rolldown/binding-linux-arm-gnueabihf': 1.1.2 - '@rolldown/binding-linux-arm64-gnu': 1.1.2 - '@rolldown/binding-linux-arm64-musl': 1.1.2 - '@rolldown/binding-linux-ppc64-gnu': 1.1.2 - '@rolldown/binding-linux-s390x-gnu': 1.1.2 - '@rolldown/binding-linux-x64-gnu': 1.1.2 - '@rolldown/binding-linux-x64-musl': 1.1.2 - '@rolldown/binding-openharmony-arm64': 1.1.2 - '@rolldown/binding-wasm32-wasi': 1.1.2 - '@rolldown/binding-win32-arm64-msvc': 1.1.2 - '@rolldown/binding-win32-x64-msvc': 1.1.2 + '@rolldown/binding-android-arm64': 1.1.5 + '@rolldown/binding-darwin-arm64': 1.1.5 + '@rolldown/binding-darwin-x64': 1.1.5 + '@rolldown/binding-freebsd-x64': 1.1.5 + '@rolldown/binding-linux-arm-gnueabihf': 1.1.5 + '@rolldown/binding-linux-arm64-gnu': 1.1.5 + '@rolldown/binding-linux-arm64-musl': 1.1.5 + '@rolldown/binding-linux-ppc64-gnu': 1.1.5 + '@rolldown/binding-linux-s390x-gnu': 1.1.5 + '@rolldown/binding-linux-x64-gnu': 1.1.5 + '@rolldown/binding-linux-x64-musl': 1.1.5 + '@rolldown/binding-openharmony-arm64': 1.1.5 + '@rolldown/binding-wasm32-wasi': 1.1.5 + '@rolldown/binding-win32-arm64-msvc': 1.1.5 + '@rolldown/binding-win32-x64-msvc': 1.1.5 rollup@4.60.2: dependencies: @@ -13194,7 +13533,7 @@ snapshots: '@ts-morph/common': 0.28.1 code-block-writer: 13.0.3 - tsdown@0.22.3(@arethetypeswrong/core@0.18.4)(publint@0.3.21)(tsx@4.23.0)(typescript@6.0.3): + tsdown@0.22.5(@arethetypeswrong/core@0.18.4)(publint@0.3.21)(tsx@4.23.0)(typescript@6.0.3): dependencies: ansis: 4.3.1 cac: 7.0.0 @@ -13204,8 +13543,8 @@ snapshots: import-without-cache: 0.4.0 obug: 2.1.3 picomatch: 4.0.5 - rolldown: 1.1.2 - rolldown-plugin-dts: 0.26.0(patch_hash=9bb4af20125c71ccd95af0a1322a894f1c886f5ecd26e170b3c2705c605eaeb1)(rolldown@1.1.2)(typescript@6.0.3) + rolldown: 1.1.5 + rolldown-plugin-dts: 0.27.4(rolldown@1.1.5)(typescript@6.0.3) semver: 7.8.5 tinyexec: 1.2.4 tinyglobby: 0.2.17 @@ -13222,6 +13561,34 @@ snapshots: - oxc-resolver - vue-tsc + tsdown@0.22.5(@arethetypeswrong/core@0.18.4)(publint@0.3.21)(tsx@4.23.0)(typescript@7.0.2): + dependencies: + ansis: 4.3.1 + cac: 7.0.0 + defu: 6.1.7 + empathic: 2.0.1 + hookable: 6.1.1 + import-without-cache: 0.4.0 + obug: 2.1.3 + picomatch: 4.0.5 + rolldown: 1.1.5 + rolldown-plugin-dts: 0.27.4(rolldown@1.1.5)(typescript@7.0.2) + semver: 7.8.5 + tinyexec: 1.2.4 + tinyglobby: 0.2.17 + tree-kill: 1.2.2 + unconfig-core: 7.5.0 + optionalDependencies: + '@arethetypeswrong/core': 0.18.4 + publint: 0.3.21 + tsx: 4.23.0 + typescript: 7.0.2 + transitivePeerDependencies: + - '@ts-macro/tsc' + - '@typescript/native-preview' + - oxc-resolver + - vue-tsc + tslib@2.8.1: {} tsscmp@1.0.6: {} @@ -13269,6 +13636,29 @@ snapshots: typescript@6.0.3: {} + typescript@7.0.2: + optionalDependencies: + '@typescript/typescript-aix-ppc64': 7.0.2 + '@typescript/typescript-darwin-arm64': 7.0.2 + '@typescript/typescript-darwin-x64': 7.0.2 + '@typescript/typescript-freebsd-arm64': 7.0.2 + '@typescript/typescript-freebsd-x64': 7.0.2 + '@typescript/typescript-linux-arm': 7.0.2 + '@typescript/typescript-linux-arm64': 7.0.2 + '@typescript/typescript-linux-loong64': 7.0.2 + '@typescript/typescript-linux-mips64el': 7.0.2 + '@typescript/typescript-linux-ppc64': 7.0.2 + '@typescript/typescript-linux-riscv64': 7.0.2 + '@typescript/typescript-linux-s390x': 7.0.2 + '@typescript/typescript-linux-x64': 7.0.2 + '@typescript/typescript-netbsd-arm64': 7.0.2 + '@typescript/typescript-netbsd-x64': 7.0.2 + '@typescript/typescript-openbsd-arm64': 7.0.2 + '@typescript/typescript-openbsd-x64': 7.0.2 + '@typescript/typescript-sunos-x64': 7.0.2 + '@typescript/typescript-win32-arm64': 7.0.2 + '@typescript/typescript-win32-x64': 7.0.2 + uglify-js@3.19.3: optional: true @@ -13547,6 +13937,42 @@ snapshots: yoctocolors@2.1.2: {} + yuku-ast@0.1.7: + dependencies: + '@yuku-toolchain/types': 0.5.43 + + yuku-codegen@0.5.44: + dependencies: + '@yuku-toolchain/types': 0.5.43 + optionalDependencies: + '@yuku-codegen/binding-darwin-arm64': 0.5.44 + '@yuku-codegen/binding-darwin-x64': 0.5.44 + '@yuku-codegen/binding-freebsd-x64': 0.5.44 + '@yuku-codegen/binding-linux-arm-gnu': 0.5.44 + '@yuku-codegen/binding-linux-arm-musl': 0.5.44 + '@yuku-codegen/binding-linux-arm64-gnu': 0.5.44 + '@yuku-codegen/binding-linux-arm64-musl': 0.5.44 + '@yuku-codegen/binding-linux-x64-gnu': 0.5.44 + '@yuku-codegen/binding-linux-x64-musl': 0.5.44 + '@yuku-codegen/binding-win32-arm64': 0.5.44 + '@yuku-codegen/binding-win32-x64': 0.5.44 + + yuku-parser@0.5.44: + dependencies: + '@yuku-toolchain/types': 0.5.43 + optionalDependencies: + '@yuku-parser/binding-darwin-arm64': 0.5.44 + '@yuku-parser/binding-darwin-x64': 0.5.44 + '@yuku-parser/binding-freebsd-x64': 0.5.44 + '@yuku-parser/binding-linux-arm-gnu': 0.5.44 + '@yuku-parser/binding-linux-arm-musl': 0.5.44 + '@yuku-parser/binding-linux-arm64-gnu': 0.5.44 + '@yuku-parser/binding-linux-arm64-musl': 0.5.44 + '@yuku-parser/binding-linux-x64-gnu': 0.5.44 + '@yuku-parser/binding-linux-x64-musl': 0.5.44 + '@yuku-parser/binding-win32-arm64': 0.5.44 + '@yuku-parser/binding-win32-x64': 0.5.44 + zeptomatch@2.1.0: dependencies: grammex: 3.1.12 diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 779e7196c..32c4adbe6 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -21,7 +21,7 @@ catalog: '@lerna-lite/cli': ^5.4.0 '@lerna-lite/publish': ^5.4.0 '@lerna-lite/version': ^5.4.0 - "@types/node": ^22.20.0 + '@types/node': ^22.20.0 '@types/react': ^19.2.17 '@vitest/coverage-v8': 4.1.9 axios: ^1.18.1 @@ -36,11 +36,16 @@ catalog: react: 19.2.7 react-dom: 19.2.7 react-hook-form: ^7.80.0 - tsdown: ^0.22.3 + tsdown: ^0.22.5 tsx: ^4.23.0 - typescript: ^6.0.3 vitest: ^4.1.9 +catalogs: + typescript6: + typescript: ^6.0.3 + typescript7: + typescript: ^7.0.2 + catalogMode: strict packages: @@ -69,11 +74,77 @@ gitChecks: false linkWorkspacePackages: deep minimumReleaseAge: 10080 -minimumReleaseAgeExclude: [] +minimumReleaseAgeExclude: + - '@oxc-project/types@0.139.0' + - '@rolldown/binding-android-arm64@1.1.5' + - '@rolldown/binding-darwin-arm64@1.1.5' + - '@rolldown/binding-darwin-x64@1.1.5' + - '@rolldown/binding-freebsd-x64@1.1.5' + - '@rolldown/binding-linux-arm-gnueabihf@1.1.5' + - '@rolldown/binding-linux-arm64-gnu@1.1.5' + - '@rolldown/binding-linux-arm64-musl@1.1.5' + - '@rolldown/binding-linux-ppc64-gnu@1.1.5' + - '@rolldown/binding-linux-s390x-gnu@1.1.5' + - '@rolldown/binding-linux-x64-gnu@1.1.5' + - '@rolldown/binding-linux-x64-musl@1.1.5' + - '@rolldown/binding-openharmony-arm64@1.1.5' + - '@rolldown/binding-wasm32-wasi@1.1.5' + - '@rolldown/binding-win32-arm64-msvc@1.1.5' + - '@rolldown/binding-win32-x64-msvc@1.1.5' + - '@typescript/typescript-aix-ppc64@7.0.2' + - '@typescript/typescript-darwin-arm64@7.0.2' + - '@typescript/typescript-darwin-x64@7.0.2' + - '@typescript/typescript-freebsd-arm64@7.0.2' + - '@typescript/typescript-freebsd-x64@7.0.2' + - '@typescript/typescript-linux-arm64@7.0.2' + - '@typescript/typescript-linux-arm@7.0.2' + - '@typescript/typescript-linux-loong64@7.0.2' + - '@typescript/typescript-linux-mips64el@7.0.2' + - '@typescript/typescript-linux-ppc64@7.0.2' + - '@typescript/typescript-linux-riscv64@7.0.2' + - '@typescript/typescript-linux-s390x@7.0.2' + - '@typescript/typescript-linux-x64@7.0.2' + - '@typescript/typescript-netbsd-arm64@7.0.2' + - '@typescript/typescript-netbsd-x64@7.0.2' + - '@typescript/typescript-openbsd-arm64@7.0.2' + - '@typescript/typescript-openbsd-x64@7.0.2' + - '@typescript/typescript-sunos-x64@7.0.2' + - '@typescript/typescript-win32-arm64@7.0.2' + - '@typescript/typescript-win32-x64@7.0.2' + - '@yuku-codegen/binding-darwin-arm64@0.5.44' + - '@yuku-codegen/binding-darwin-x64@0.5.44' + - '@yuku-codegen/binding-freebsd-x64@0.5.44' + - '@yuku-codegen/binding-linux-arm-gnu@0.5.44' + - '@yuku-codegen/binding-linux-arm-musl@0.5.44' + - '@yuku-codegen/binding-linux-arm64-gnu@0.5.44' + - '@yuku-codegen/binding-linux-arm64-musl@0.5.44' + - '@yuku-codegen/binding-linux-x64-gnu@0.5.44' + - '@yuku-codegen/binding-linux-x64-musl@0.5.44' + - '@yuku-codegen/binding-win32-arm64@0.5.44' + - '@yuku-codegen/binding-win32-x64@0.5.44' + - '@yuku-parser/binding-darwin-arm64@0.5.44' + - '@yuku-parser/binding-darwin-x64@0.5.44' + - '@yuku-parser/binding-freebsd-x64@0.5.44' + - '@yuku-parser/binding-linux-arm-gnu@0.5.44' + - '@yuku-parser/binding-linux-arm-musl@0.5.44' + - '@yuku-parser/binding-linux-arm64-gnu@0.5.44' + - '@yuku-parser/binding-linux-arm64-musl@0.5.44' + - '@yuku-parser/binding-linux-x64-gnu@0.5.44' + - '@yuku-parser/binding-linux-x64-musl@0.5.44' + - '@yuku-parser/binding-win32-arm64@0.5.44' + - '@yuku-parser/binding-win32-x64@0.5.44' + - rolldown-plugin-dts@0.27.4 + - rolldown@1.1.5 + - tsdown@0.22.5 + - typescript@7.0.2 + - yuku-ast@0.1.7 + - yuku-codegen@0.5.44 + - yuku-parser@0.5.44 nodeOptions: ${NODE_OPTIONS:- } --experimental-vm-modules strictPeerDependencies: true + peerDependencyRules: allowedVersions: typescript: ^6 @@ -81,15 +152,13 @@ peerDependencyRules: overrides: '@isaacs/brace-expansion': ^5.0.1 - '@types/node': "catalog:" + '@types/node': 'catalog:' axios: ^1.18.0 'lodash-es@~4.17': ^4.18.0 qs: ^6.14.2 tar: ^7.5.11 zod: ^4.3.6 fast-uri@^3: ^3.1.1 - # todo: https://github.com/arethetypeswrong/arethetypeswrong.github.io/issues/258 - fflate: "0.8.2" preferWorkspacePackages: true @@ -101,4 +170,3 @@ publicHoistPattern: patchedDependencies: nextra-theme-docs: patches/nextra-theme-docs.patch - rolldown-plugin-dts: patches/rolldown-plugin-dts.patch diff --git a/tsconfig.base.json b/tsconfig.base.json index d923bcf43..c5f9f807c 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -1,6 +1,10 @@ { "extends": ["@tsconfig/strictest/tsconfig", "@tsconfig/node24/tsconfig"], + "include": ["${configDir}/src/**/*"], "compilerOptions": { + "rootDir": "${configDir}/src", + "outDir": "${configDir}/dist/dts", + "emitDeclarationOnly": true, "composite": true, "skipLibCheck": true, "declaration": true, diff --git a/tsconfig.integration.base.json b/tsconfig.integration.base.json new file mode 100644 index 000000000..3d745114f --- /dev/null +++ b/tsconfig.integration.base.json @@ -0,0 +1,9 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "rootDir": "${configDir}/src", + "outDir": "${configDir}/dist", + "composite": false, + "emitDeclarationOnly": false + } +}