From 65a092747323c60629d686dfc314c6dfb36fef8f Mon Sep 17 00:00:00 2001 From: userquin Date: Fri, 20 Dec 2024 14:51:17 +0100 Subject: [PATCH 1/4] fix: packages exports types --- package.json | 22 +- patches/@arethetypeswrong__cli@0.17.2.patch | 36 ++ playground-nuxt/nuxt.config.ts | 10 + playground-nuxt/package.json | 2 +- playground/tsconfig.json | 3 +- pnpm-lock.yaml | 556 +++++++++++++++----- renovate.json | 1 + vite.config.ts | 1 + 8 files changed, 498 insertions(+), 133 deletions(-) create mode 100644 patches/@arethetypeswrong__cli@0.17.2.patch diff --git a/package.json b/package.json index 86d433e7..f552ee5e 100644 --- a/package.json +++ b/package.json @@ -34,8 +34,17 @@ }, "./*": "./*" }, + "typesVersions": { + "*": { + "three": [ + "./dist/three.d.ts" + ], + "pmndrs": [ + "./dist/pmndrs.d.ts" + ] + } + }, "files": [ - "*.d.ts", "dist" ], "publishConfig": { @@ -51,7 +60,8 @@ "lint:fix": "eslint . --fix", "docs:dev": "vitepress dev docs", "docs:build": "vitepress build docs", - "docs:preview": "vitepress preview docs" + "docs:preview": "vitepress preview docs", + "test:attw": "attw --pack --ignore-rules cjs-resolves-to-esm" }, "peerDependencies": { "@tresjs/core": ">=4.0", @@ -63,6 +73,7 @@ "postprocessing": "^6.36.4" }, "devDependencies": { + "@arethetypeswrong/cli": "^0.17.2", "@release-it/conventional-changelog": "^9.0.3", "@tresjs/core": "^4.3.1", "@tresjs/eslint-config": "^1.4.0", @@ -77,7 +88,7 @@ "rollup-plugin-analyzer": "^4.0.0", "rollup-plugin-visualizer": "^5.12.0", "three": "^0.170.0", - "typescript": "^5.7.2", + "typescript": "5.4.2", "unocss": "^0.64.1", "vite": "^6.0.0", "vite-plugin-banner": "^0.8.0", @@ -86,5 +97,10 @@ "vitepress": "1.5.0", "vue": "^3.5.13", "vue-tsc": "^2.1.10" + }, + "pnpm": { + "patchedDependencies": { + "@arethetypeswrong/cli@0.17.2": "patches/@arethetypeswrong__cli@0.17.2.patch" + } } } diff --git a/patches/@arethetypeswrong__cli@0.17.2.patch b/patches/@arethetypeswrong__cli@0.17.2.patch new file mode 100644 index 00000000..4f0fe908 --- /dev/null +++ b/patches/@arethetypeswrong__cli@0.17.2.patch @@ -0,0 +1,36 @@ +diff --git a/dist/index.js b/dist/index.js +index 0504e767daf256ff705961e1d9052763fa910f41..793dfdc0971ebb6d71e66cb0a1a2f9ab959fd335 100644 +--- a/dist/index.js ++++ b/dist/index.js +@@ -34,7 +34,7 @@ program + .description(`${chalk.bold.blue("Are the Types Wrong?")} attempts to analyze npm package contents for issues with their TypeScript types, + particularly ESM-related module resolution issues.`) + .argument("[file-directory-or-package-spec]", "the packed .tgz, or directory containing package.json with --pack, or package spec with --from-npm") +- .option("-P, --pack", "Run `npm pack` in the specified directory and delete the resulting .tgz file afterwards") ++ .option("-P, --pack", "Run `pnpm pack` in the specified directory and delete the resulting .tgz file afterwards") + .option("-p, --from-npm", "Read from the npm registry instead of a local file") + .addOption(new Option("--definitely-typed [version]", "Specify the version range of @types to use").default(true)) + .option("--no-definitely-typed", "Don't include @types") +@@ -126,11 +126,11 @@ particularly ESM-related module resolution issues.`) + } + if (!opts.pack) { + if (!process.stdout.isTTY) { +- program.error("Specifying a directory requires the --pack option to confirm that running `npm pack` is ok."); ++ program.error("Specifying a directory requires the --pack option to confirm that running `pnpm pack` is ok."); + } + const rl = readline.createInterface(process.stdin, process.stdout); + const answer = await new Promise((resolve) => { +- rl.question(`Run \`npm pack\`? (Pass -P/--pack to skip) (Y/n) `, resolve); ++ rl.question(`Run \`pnpm pack\`? (Pass -P/--pack to skip) (Y/n) `, resolve); + }); + rl.close(); + if (answer.trim() && !answer.trim().toLowerCase().startsWith("y")) { +@@ -141,7 +141,7 @@ particularly ESM-related module resolution issues.`) + fileName = deleteTgz = path.join(fileOrDirectory, + // https://github.com/npm/cli/blob/f875caa86900122819311dd77cde01c700fd1817/lib/utils/tar.js#L123-L125 + `${manifest.name.replace("@", "").replace("/", "-")}-${manifest.version}.tgz`); +- execSync("npm pack", { cwd: fileOrDirectory, encoding: "utf8", stdio: "ignore" }); ++ execSync("pnpm pack", { cwd: fileOrDirectory, encoding: "utf8", stdio: "ignore" }); + } + const file = await readFile(fileName); + const data = new Uint8Array(file); diff --git a/playground-nuxt/nuxt.config.ts b/playground-nuxt/nuxt.config.ts index 6d126026..2849cdd6 100644 --- a/playground-nuxt/nuxt.config.ts +++ b/playground-nuxt/nuxt.config.ts @@ -6,6 +6,16 @@ export default defineNuxtConfig({ modules: [ '@tresjs/nuxt', ], + typescript: { + tsConfig: { + compilerOptions: { + paths: { + '@tresjs/post-processing/pmndrs': ['../../src/core/pmndrs'], + '@tresjs/post-processing/three': ['../../src/core/three'], + }, + }, + }, + }, vite: { resolve: { alias: { diff --git a/playground-nuxt/package.json b/playground-nuxt/package.json index b37afec6..a7291b66 100644 --- a/playground-nuxt/package.json +++ b/playground-nuxt/package.json @@ -12,7 +12,7 @@ "dependencies": { "@tresjs/cientos": "^4.0.3", "@tresjs/nuxt": "^3.0.7", - "@tresjs/post-processing": "^0.7.1", + "@tresjs/post-processing": "workspace:^", "@types/three": "^0.169.0" }, "devDependencies": { diff --git a/playground/tsconfig.json b/playground/tsconfig.json index 8d203516..9ca8ee57 100644 --- a/playground/tsconfig.json +++ b/playground/tsconfig.json @@ -8,7 +8,8 @@ "module": "ESNext", "moduleResolution": "bundler", "paths": { - "@tresjs/post-processing": ["../dist/"] + "@tresjs/post-processing/pmndrs": ["../dist/pmndrs"], + "@tresjs/post-processing/three": ["../dist/three"] }, "resolveJsonModule": true, "strict": true, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7eada978..c349307b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -4,26 +4,34 @@ settings: autoInstallPeers: true excludeLinksFromLockfile: false +patchedDependencies: + '@arethetypeswrong/cli@0.17.2': + hash: trzafi2znozhw5t6zb5kozvhea + path: patches/@arethetypeswrong__cli@0.17.2.patch + importers: .: dependencies: '@vueuse/core': specifier: ^11.3.0 - version: 11.3.0(vue@3.5.13(typescript@5.7.2)) + version: 11.3.0(vue@3.5.13(typescript@5.4.2)) postprocessing: specifier: ^6.36.4 version: 6.36.4(three@0.170.0) devDependencies: + '@arethetypeswrong/cli': + specifier: ^0.17.2 + version: 0.17.2(patch_hash=trzafi2znozhw5t6zb5kozvhea) '@release-it/conventional-changelog': specifier: ^9.0.3 - version: 9.0.3(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.0.0)(release-it@17.10.0(typescript@5.7.2)) + version: 9.0.3(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.0.0)(release-it@17.10.0(typescript@5.4.2)) '@tresjs/core': specifier: ^4.3.1 - version: 4.3.1(three@0.170.0)(vue@3.5.13(typescript@5.7.2)) + version: 4.3.1(three@0.170.0)(vue@3.5.13(typescript@5.4.2)) '@tresjs/eslint-config': specifier: ^1.4.0 - version: 1.4.0(@typescript-eslint/utils@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2))(@vue/compiler-sfc@3.5.13)(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2) + version: 1.4.0(@typescript-eslint/utils@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2))(@vue/compiler-sfc@3.5.13)(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2) '@types/three': specifier: ^0.170.0 version: 0.170.0 @@ -32,7 +40,7 @@ importers: version: 0.64.1 '@vitejs/plugin-vue': specifier: ^5.2.1 - version: 5.2.1(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2)) + version: 5.2.1(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.4.2)) eslint: specifier: ^9.15.0 version: 9.15.0(jiti@2.4.0) @@ -47,7 +55,7 @@ importers: version: 1.1.2 release-it: specifier: ^17.10.0 - version: 17.10.0(typescript@5.7.2) + version: 17.10.0(typescript@5.4.2) rollup-plugin-analyzer: specifier: ^4.0.0 version: 4.0.0 @@ -58,11 +66,11 @@ importers: specifier: ^0.170.0 version: 0.170.0 typescript: - specifier: ^5.7.2 - version: 5.7.2 + specifier: 5.4.2 + version: 5.4.2 unocss: specifier: ^0.64.1 - version: 0.64.1(postcss@8.4.49)(rollup@4.27.4)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2)) + version: 0.64.1(postcss@8.4.49)(rollup@4.27.4)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.4.2)) vite: specifier: ^6.0.0 version: 6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1) @@ -71,19 +79,19 @@ importers: version: 0.8.0 vite-plugin-dts: specifier: 4.3.0 - version: 4.3.0(@types/node@22.10.0)(rollup@4.27.4)(typescript@5.7.2)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)) + version: 4.3.0(@types/node@22.10.0)(rollup@4.27.4)(typescript@5.4.2)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)) vite-svg-loader: specifier: ^5.1.0 - version: 5.1.0(vue@3.5.13(typescript@5.7.2)) + version: 5.1.0(vue@3.5.13(typescript@5.4.2)) vitepress: specifier: 1.5.0 - version: 1.5.0(@algolia/client-search@5.15.0)(@types/node@22.10.0)(fuse.js@7.0.0)(postcss@8.4.49)(search-insights@2.17.3)(terser@5.36.0)(typescript@5.7.2) + version: 1.5.0(@algolia/client-search@5.15.0)(@types/node@22.10.0)(fuse.js@7.0.0)(postcss@8.4.49)(search-insights@2.17.3)(terser@5.36.0)(typescript@5.4.2) vue: specifier: ^3.5.13 - version: 3.5.13(typescript@5.7.2) + version: 3.5.13(typescript@5.4.2) vue-tsc: specifier: ^2.1.10 - version: 2.1.10(typescript@5.7.2) + version: 2.1.10(typescript@5.4.2) docs: dependencies: @@ -108,7 +116,7 @@ importers: version: 0.63.4(postcss@8.4.49)(rollup@4.27.4)(vite@5.4.11(@types/node@22.10.0)(terser@5.36.0)) unplugin-vue-components: specifier: ^0.27.4 - version: 0.27.4(@babel/parser@7.26.2)(@nuxt/kit@3.14.1592(rollup@4.27.4)(webpack-sources@3.2.3))(rollup@4.27.4)(vue@3.5.13(typescript@5.7.2))(webpack-sources@3.2.3) + version: 0.27.4(@babel/parser@7.26.2)(@nuxt/kit@3.14.1592(magicast@0.3.5)(rollup@4.27.4)(webpack-sources@3.2.3))(rollup@4.27.4)(vue@3.5.13(typescript@5.7.2))(webpack-sources@3.2.3) vite-svg-loader: specifier: ^5.1.0 version: 5.1.0(vue@3.5.13(typescript@5.7.2)) @@ -136,10 +144,10 @@ importers: version: 0.170.0 unplugin-auto-import: specifier: ^0.18.5 - version: 0.18.5(@nuxt/kit@3.14.1592(rollup@4.27.4)(webpack-sources@3.2.3))(@vueuse/core@11.3.0(vue@3.5.13(typescript@5.7.2)))(rollup@4.27.4) + version: 0.18.5(@nuxt/kit@3.14.1592(magicast@0.3.5)(rollup@4.27.4)(webpack-sources@3.2.3))(@vueuse/core@11.3.0(vue@3.5.13(typescript@5.7.2)))(rollup@4.27.4) unplugin-vue-components: specifier: ^0.27.0 - version: 0.27.4(@babel/parser@7.26.2)(@nuxt/kit@3.14.1592(rollup@4.27.4)(webpack-sources@3.2.3))(rollup@4.27.4)(vue@3.5.13(typescript@5.7.2))(webpack-sources@3.2.3) + version: 0.27.4(@babel/parser@7.26.2)(@nuxt/kit@3.14.1592(magicast@0.3.5)(rollup@4.27.4)(webpack-sources@3.2.3))(rollup@4.27.4)(vue@3.5.13(typescript@5.7.2))(webpack-sources@3.2.3) vite-plugin-qrcode: specifier: ^0.2.3 version: 0.2.3(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)) @@ -153,8 +161,8 @@ importers: specifier: ^3.0.7 version: 3.0.7(focus-trap@7.6.2)(magicast@0.3.5)(postcss@8.4.49)(rollup@4.27.4)(three@0.170.0)(vite@5.4.11(@types/node@22.10.0)(terser@5.36.0))(vue@3.5.12(typescript@5.7.2))(webpack-sources@3.2.3)(webpack@5.96.1(esbuild@0.23.1)) '@tresjs/post-processing': - specifier: ^0.7.1 - version: 0.7.1(three@0.170.0)(vue@3.5.12(typescript@5.7.2)) + specifier: workspace:^ + version: link:.. '@types/three': specifier: ^0.169.0 version: 0.169.0 @@ -322,6 +330,9 @@ packages: resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} + '@andrewbranch/untar.js@1.0.3': + resolution: {integrity: sha512-Jh15/qVmrLGhkKJBdXlK1+9tY4lZruYjsgkDFj08ZmDiWVBLJcqkok7Z0/R0In+i1rScBpJlSvrTS2Lm41Pbnw==} + '@antfu/eslint-config@3.6.2': resolution: {integrity: sha512-cewFaIEuSSOjbIsNts8gjeMLQrrMDhZjZJHMWk+OyVGJLHRE09JiF5Yg5+XjMVYlG/7fPqeuwEehLrer+8zMfA==} hasBin: true @@ -374,6 +385,15 @@ packages: '@antfu/utils@0.7.10': resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==} + '@arethetypeswrong/cli@0.17.2': + resolution: {integrity: sha512-/u2VcQJ8PKc4hcao/vXnHrYLEI/sQqKarbHi+NEIfvdymaW5o62XOCXy2yvalQa/vR+AAD/QNEgAUzHo5f7hrw==} + engines: {node: '>=18'} + hasBin: true + + '@arethetypeswrong/core@0.17.2': + resolution: {integrity: sha512-JYeLgS4rQ2l3gHCabaka3atsEyskfpx+WqUbo+6l8LApILJgr0/XDb7KNC9Ovevp4iPVF2Q73oshpgOKJ3uDRQ==} + engines: {node: '>=18'} + '@babel/code-frame@7.24.7': resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==} engines: {node: '>=6.9.0'} @@ -728,6 +748,10 @@ packages: resolution: {integrity: sha512-YLPHc8yASwjNkmcDMQMY35yiWjoKAKnhUbPRszBRS0YgH+IXtsMp61j+yTcnCE3oO2DgP0U3iejLC8FTtKDC8Q==} engines: {node: '>=16.13'} + '@colors/colors@1.5.0': + resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} + engines: {node: '>=0.1.90'} + '@conventional-changelog/git-client@1.0.1': resolution: {integrity: sha512-PJEqBwAleffCMETaVm/fUgHldzBE35JFk3/9LL6NUA5EXa3qednu+UT6M7E5iBu3zIQZCULYIiZ90fBYHt6xUw==} engines: {node: '>=18'} @@ -2112,6 +2136,10 @@ packages: '@shikijs/vscode-textmate@9.3.0': resolution: {integrity: sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==} + '@sindresorhus/is@4.6.0': + resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} + engines: {node: '>=10'} + '@sindresorhus/merge-streams@2.3.0': resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} engines: {node: '>=18'} @@ -2307,12 +2335,6 @@ packages: peerDependencies: three: '>=0.133' - '@tresjs/post-processing@0.7.1': - resolution: {integrity: sha512-MLrjxR4rJ55MOYFKMEZ8aqh5no2/sOG1fdYk2B49Ntx2p2etyuVpI6e9BBAvrc4M/wktRHkQ2JNDbgMaCiJoMg==} - peerDependencies: - three: '>=0.133' - vue: '>=3.3' - '@trysound/sax@0.2.0': resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} engines: {node: '>=10.13.0'} @@ -3477,6 +3499,10 @@ packages: resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} engines: {node: '>=8'} + ansi-escapes@7.0.0: + resolution: {integrity: sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==} + engines: {node: '>=18'} + ansi-regex@5.0.1: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} engines: {node: '>=8'} @@ -3732,6 +3758,10 @@ packages: resolution: {integrity: sha512-cTZXBcJMl3pudE40WENOakXkcVtrbBpbkmSkM20NdRiUqa4+VYRdXdEsgQ0BNQ6JBE2YymTNWtPKVF7UCTN5+g==} hasBin: true + char-regex@1.0.2: + resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} + engines: {node: '>=10'} + character-entities-html4@2.1.0: resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} @@ -3767,6 +3797,9 @@ packages: citty@0.1.6: resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==} + cjs-module-lexer@1.4.1: + resolution: {integrity: sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==} + clean-regexp@1.0.0: resolution: {integrity: sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==} engines: {node: '>=4'} @@ -3786,10 +3819,19 @@ packages: resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==} engines: {node: '>=18'} + cli-highlight@2.1.11: + resolution: {integrity: sha512-9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg==} + engines: {node: '>=8.0.0', npm: '>=5.0.0'} + hasBin: true + cli-spinners@2.9.2: resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} engines: {node: '>=6'} + cli-table3@0.6.5: + resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==} + engines: {node: 10.* || >= 12.*} + cli-width@4.1.0: resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==} engines: {node: '>= 12'} @@ -3798,6 +3840,9 @@ packages: resolution: {integrity: sha512-5mOlNS0mhX0707P2I0aZ2V/cmHUEO/fL7VFLqszkhUsxt7RwnmrInf/eEQKlf5GzvYeHIjT+Ov1HRfNmymlG0w==} engines: {node: '>=18'} + cliui@7.0.4: + resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} + cliui@8.0.1: resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} engines: {node: '>=12'} @@ -3840,6 +3885,10 @@ packages: comma-separated-tokens@2.0.3: resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} + commander@10.0.1: + resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} + engines: {node: '>=14'} + commander@2.20.3: resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} @@ -4320,6 +4369,9 @@ packages: emoji-regex@9.2.2: resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + emojilib@2.4.0: + resolution: {integrity: sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==} + encodeurl@1.0.2: resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} engines: {node: '>= 0.8'} @@ -4340,6 +4392,10 @@ packages: resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} engines: {node: '>=6'} + environment@1.1.0: + resolution: {integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==} + engines: {node: '>=18'} + error-ex@1.3.2: resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} @@ -4986,6 +5042,9 @@ packages: resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} hasBin: true + highlight.js@10.7.3: + resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==} + hookable@5.5.3: resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==} @@ -5546,6 +5605,17 @@ packages: markdown-table@3.0.4: resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==} + marked-terminal@7.2.1: + resolution: {integrity: sha512-rQ1MoMFXZICWNsKMiiHwP/Z+92PLKskTPXj+e7uwXmuMPkNn7iTqC+IvDekVm1MPeC9wYQeLxeFaOvudRR/XbQ==} + engines: {node: '>=16.0.0'} + peerDependencies: + marked: '>=1 <15' + + marked@9.1.6: + resolution: {integrity: sha512-jcByLnIFkd5gSXZmjNvS1TlmRhCXZjIzHYlaGkPlLIekG55JDR2Z4va9tZwCiP+/RDERiNhMOFu01xd6O5ct1Q==} + engines: {node: '>= 16'} + hasBin: true + mdast-util-find-and-replace@3.0.1: resolution: {integrity: sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==} @@ -5898,6 +5968,10 @@ packages: node-addon-api@7.1.1: resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==} + node-emoji@2.2.0: + resolution: {integrity: sha512-Z3lTE9pLaJF47NyMhd4ww1yFTAP8YhYI8SleJiHzM46Fgpm5cnNzSl9XfzFNqbaz+VlJrIj3fXQ4DeN1Rjm6cw==} + engines: {node: '>=18'} + node-fetch-native@1.6.4: resolution: {integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==} @@ -6131,6 +6205,15 @@ packages: parse-url@8.1.0: resolution: {integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==} + parse5-htmlparser2-tree-adapter@6.0.1: + resolution: {integrity: sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==} + + parse5@5.1.1: + resolution: {integrity: sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==} + + parse5@6.0.1: + resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} + parseurl@1.3.3: resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} engines: {node: '>= 0.8'} @@ -6809,6 +6892,10 @@ packages: sisteransi@1.0.5: resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} + skin-tone@2.0.0: + resolution: {integrity: sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==} + engines: {node: '>=8'} + slash@5.1.0: resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} engines: {node: '>=14.16'} @@ -7003,6 +7090,10 @@ packages: resolution: {integrity: sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==} engines: {node: '>=12'} + supports-hyperlinks@3.1.0: + resolution: {integrity: sha512-2rn0BZ+/f7puLOHZm1HOJfwBggfaHXUpPUSSG/SWM4TWp5KCfmNYwnC3hruy2rZlMnmWZ+QAGpZfchu3f3695A==} + engines: {node: '>=14.18'} + supports-preserve-symlinks-flag@1.0.0: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} @@ -7233,6 +7324,11 @@ packages: engines: {node: '>=14.17'} hasBin: true + typescript@5.6.1-rc: + resolution: {integrity: sha512-E3b2+1zEFu84jB0YQi9BORDjz9+jGbwwy1Zi3G0LUNw7a7cePUrHMRNy8aPh53nXpkFGVHSxIZo5vKTfYaFiBQ==} + engines: {node: '>=14.17'} + hasBin: true + typescript@5.7.2: resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==} engines: {node: '>=14.17'} @@ -7277,6 +7373,10 @@ packages: unhead@1.11.6: resolution: {integrity: sha512-TKTQGUzHKF925VZ4KZVbLfKFzTVTEWfPLaXKmkd/ptEY2FHEoJUF7xOpAWc3K7Jzy/ExS66TL7GnLLjtd4sISg==} + unicode-emoji-modifier-base@1.0.0: + resolution: {integrity: sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==} + engines: {node: '>=4'} + unicorn-magic@0.1.0: resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} engines: {node: '>=18'} @@ -7519,6 +7619,10 @@ packages: validate-npm-package-license@3.0.4: resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + validate-npm-package-name@5.0.1: + resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + vary@1.1.2: resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} engines: {node: '>= 0.8'} @@ -7933,10 +8037,18 @@ packages: engines: {node: '>= 14'} hasBin: true + yargs-parser@20.2.9: + resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} + engines: {node: '>=10'} + yargs-parser@21.1.1: resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} engines: {node: '>=12'} + yargs@16.2.0: + resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} + engines: {node: '>=10'} + yargs@17.7.2: resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} engines: {node: '>=12'} @@ -8183,32 +8295,34 @@ snapshots: '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@3.6.2(@typescript-eslint/utils@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2))(@vue/compiler-sfc@3.5.13)(eslint-plugin-format@0.1.2(eslint@9.15.0(jiti@2.4.0)))(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2)': + '@andrewbranch/untar.js@1.0.3': {} + + '@antfu/eslint-config@3.6.2(@typescript-eslint/utils@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2))(@vue/compiler-sfc@3.5.13)(eslint-plugin-format@0.1.2(eslint@9.15.0(jiti@2.4.0)))(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2)': dependencies: '@antfu/install-pkg': 0.4.1 '@clack/prompts': 0.7.0 '@eslint-community/eslint-plugin-eslint-comments': 4.4.1(eslint@9.15.0(jiti@2.4.0)) '@eslint/markdown': 6.2.1 - '@stylistic/eslint-plugin': 2.11.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2) - '@typescript-eslint/eslint-plugin': 8.16.0(@typescript-eslint/parser@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2))(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2) - '@typescript-eslint/parser': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2) - '@vitest/eslint-plugin': 1.1.10(@typescript-eslint/utils@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2))(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2) + '@stylistic/eslint-plugin': 2.11.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2) + '@typescript-eslint/eslint-plugin': 8.16.0(@typescript-eslint/parser@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2))(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2) + '@typescript-eslint/parser': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2) + '@vitest/eslint-plugin': 1.1.10(@typescript-eslint/utils@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2))(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2) eslint: 9.15.0(jiti@2.4.0) eslint-config-flat-gitignore: 0.3.0(eslint@9.15.0(jiti@2.4.0)) eslint-flat-config-utils: 0.4.0 eslint-merge-processors: 0.1.0(eslint@9.15.0(jiti@2.4.0)) eslint-plugin-antfu: 2.7.0(eslint@9.15.0(jiti@2.4.0)) eslint-plugin-command: 0.2.6(eslint@9.15.0(jiti@2.4.0)) - eslint-plugin-import-x: 4.4.3(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2) + eslint-plugin-import-x: 4.4.3(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2) eslint-plugin-jsdoc: 50.6.0(eslint@9.15.0(jiti@2.4.0)) eslint-plugin-jsonc: 2.18.2(eslint@9.15.0(jiti@2.4.0)) eslint-plugin-n: 17.14.0(eslint@9.15.0(jiti@2.4.0)) eslint-plugin-no-only-tests: 3.3.0 - eslint-plugin-perfectionist: 3.9.1(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2)(vue-eslint-parser@9.4.3(eslint@9.15.0(jiti@2.4.0))) + eslint-plugin-perfectionist: 3.9.1(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2)(vue-eslint-parser@9.4.3(eslint@9.15.0(jiti@2.4.0))) eslint-plugin-regexp: 2.7.0(eslint@9.15.0(jiti@2.4.0)) eslint-plugin-toml: 0.11.1(eslint@9.15.0(jiti@2.4.0)) eslint-plugin-unicorn: 55.0.0(eslint@9.15.0(jiti@2.4.0)) - eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.16.0(@typescript-eslint/parser@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2))(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2))(eslint@9.15.0(jiti@2.4.0)) + eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.16.0(@typescript-eslint/parser@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2))(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2))(eslint@9.15.0(jiti@2.4.0)) eslint-plugin-vue: 9.31.0(eslint@9.15.0(jiti@2.4.0)) eslint-plugin-yml: 1.15.0(eslint@9.15.0(jiti@2.4.0)) eslint-processor-vue-blocks: 0.1.2(@vue/compiler-sfc@3.5.13)(eslint@9.15.0(jiti@2.4.0)) @@ -8239,6 +8353,26 @@ snapshots: '@antfu/utils@0.7.10': {} + '@arethetypeswrong/cli@0.17.2(patch_hash=trzafi2znozhw5t6zb5kozvhea)': + dependencies: + '@arethetypeswrong/core': 0.17.2 + chalk: 4.1.2 + cli-table3: 0.6.5 + commander: 10.0.1 + marked: 9.1.6 + marked-terminal: 7.2.1(marked@9.1.6) + semver: 7.6.3 + + '@arethetypeswrong/core@0.17.2': + dependencies: + '@andrewbranch/untar.js': 1.0.3 + cjs-module-lexer: 1.4.1 + fflate: 0.8.2 + lru-cache: 10.4.3 + semver: 7.6.3 + typescript: 5.6.1-rc + validate-npm-package-name: 5.0.1 + '@babel/code-frame@7.24.7': dependencies: '@babel/highlight': 7.24.7 @@ -8769,6 +8903,9 @@ snapshots: dependencies: mime: 3.0.0 + '@colors/colors@1.5.0': + optional: true + '@conventional-changelog/git-client@1.0.1(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.0.0)': dependencies: '@types/semver': 7.5.8 @@ -9502,10 +9639,10 @@ snapshots: - supports-color - webpack-sources - '@nuxt/kit@3.14.1592(rollup@4.27.4)(webpack-sources@3.2.3)': + '@nuxt/kit@3.14.1592(magicast@0.3.5)(rollup@4.27.4)(webpack-sources@3.2.3)': dependencies: - '@nuxt/schema': 3.14.1592(rollup@4.27.4) - c12: 2.0.1 + '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.27.4) + c12: 2.0.1(magicast@0.3.5) consola: 3.2.3 defu: 6.1.4 destr: 2.0.3 @@ -9550,9 +9687,9 @@ snapshots: - supports-color - webpack-sources - '@nuxt/schema@3.14.1592(rollup@4.27.4)': + '@nuxt/schema@3.14.1592(magicast@0.3.5)(rollup@4.27.4)': dependencies: - c12: 2.0.1 + c12: 2.0.1(magicast@0.3.5) compatx: 0.1.8 consola: 3.2.3 defu: 6.1.4 @@ -9942,13 +10079,13 @@ snapshots: '@popperjs/core@2.11.8': {} - '@release-it/conventional-changelog@9.0.3(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.0.0)(release-it@17.10.0(typescript@5.7.2))': + '@release-it/conventional-changelog@9.0.3(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.0.0)(release-it@17.10.0(typescript@5.4.2))': dependencies: concat-stream: 2.0.0 conventional-changelog: 6.0.0(conventional-commits-filter@5.0.0) conventional-recommended-bump: 10.0.0 git-semver-tags: 8.0.0(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.0.0) - release-it: 17.10.0(typescript@5.7.2) + release-it: 17.10.0(typescript@5.4.2) semver: 7.6.3 transitivePeerDependencies: - conventional-commits-filter @@ -10177,11 +10314,13 @@ snapshots: '@shikijs/vscode-textmate@9.3.0': {} + '@sindresorhus/is@4.6.0': {} + '@sindresorhus/merge-streams@2.3.0': {} - '@stylistic/eslint-plugin@2.11.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2)': + '@stylistic/eslint-plugin@2.11.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2)': dependencies: - '@typescript-eslint/utils': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2) + '@typescript-eslint/utils': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2) eslint: 9.15.0(jiti@2.4.0) eslint-visitor-keys: 4.2.0 espree: 10.3.0 @@ -10370,6 +10509,16 @@ snapshots: transitivePeerDependencies: - '@vue/composition-api' + '@tresjs/core@4.3.1(three@0.170.0)(vue@3.5.13(typescript@5.4.2))': + dependencies: + '@alvarosabu/utils': 3.2.0 + '@vue/devtools-api': 6.6.4 + '@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.4.2)) + three: 0.170.0 + vue: 3.5.13(typescript@5.4.2) + transitivePeerDependencies: + - '@vue/composition-api' + '@tresjs/core@4.3.1(three@0.170.0)(vue@3.5.13(typescript@5.7.2))': dependencies: '@alvarosabu/utils': 3.2.0 @@ -10380,9 +10529,9 @@ snapshots: transitivePeerDependencies: - '@vue/composition-api' - '@tresjs/eslint-config@1.4.0(@typescript-eslint/utils@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2))(@vue/compiler-sfc@3.5.13)(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2)': + '@tresjs/eslint-config@1.4.0(@typescript-eslint/utils@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2))(@vue/compiler-sfc@3.5.13)(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2)': dependencies: - '@antfu/eslint-config': 3.6.2(@typescript-eslint/utils@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2))(@vue/compiler-sfc@3.5.13)(eslint-plugin-format@0.1.2(eslint@9.15.0(jiti@2.4.0)))(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2) + '@antfu/eslint-config': 3.6.2(@typescript-eslint/utils@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2))(@vue/compiler-sfc@3.5.13)(eslint-plugin-format@0.1.2(eslint@9.15.0(jiti@2.4.0)))(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2) eslint: 9.15.0(jiti@2.4.0) eslint-plugin-format: 0.1.2(eslint@9.15.0(jiti@2.4.0)) transitivePeerDependencies: @@ -10440,7 +10589,7 @@ snapshots: pkg-types: 1.2.1 sirv: 2.0.4 three: 0.170.0 - typescript: 5.7.2 + typescript: 5.4.2 vite-plugin-glsl: 1.3.0(rollup@4.27.4)(vite@5.4.11(@types/node@22.10.0)(terser@5.36.0)) transitivePeerDependencies: - '@vue/composition-api' @@ -10478,7 +10627,7 @@ snapshots: pkg-types: 1.2.1 sirv: 2.0.4 three: 0.170.0 - typescript: 5.7.2 + typescript: 5.4.2 vite-plugin-glsl: 1.3.0(rollup@4.27.4)(vite@5.4.11(@types/node@22.10.0)(terser@5.36.0)) transitivePeerDependencies: - '@vue/composition-api' @@ -10517,7 +10666,7 @@ snapshots: pkg-types: 1.2.1 sirv: 2.0.4 three: 0.170.0 - typescript: 5.7.2 + typescript: 5.4.2 vite-plugin-glsl: 1.3.0(rollup@4.27.4)(vite@5.4.11(@types/node@22.10.0)(terser@5.36.0)) transitivePeerDependencies: - '@vue/composition-api' @@ -10556,7 +10705,7 @@ snapshots: pkg-types: 1.2.1 sirv: 2.0.4 three: 0.170.0 - typescript: 5.7.2 + typescript: 5.4.2 vite-plugin-glsl: 1.3.0(rollup@4.27.4)(vite@5.4.11(@types/node@22.10.0)(terser@5.36.0)) transitivePeerDependencies: - '@vue/composition-api' @@ -10595,7 +10744,7 @@ snapshots: pkg-types: 1.2.1 sirv: 2.0.4 three: 0.170.0 - typescript: 5.7.2 + typescript: 5.4.2 vite-plugin-glsl: 1.3.0(rollup@4.27.4)(vite@5.4.11(@types/node@22.10.0)(terser@5.36.0)) transitivePeerDependencies: - '@vue/composition-api' @@ -10932,18 +11081,6 @@ snapshots: - webpack - webpack-sources - '@tresjs/post-processing@0.7.1(three@0.170.0)(vue@3.5.12(typescript@5.7.2))': - dependencies: - '@tresjs/core': 3.9.0(three@0.170.0)(vue@3.5.12(typescript@5.7.2)) - '@unocss/core': 0.58.9 - '@vueuse/core': 10.11.1(vue@3.5.12(typescript@5.7.2)) - postprocessing: 6.36.4(three@0.170.0) - three: 0.170.0 - three-stdlib: 2.33.0(three@0.170.0) - vue: 3.5.12(typescript@5.7.2) - transitivePeerDependencies: - - '@vue/composition-api' - '@trysound/sax@0.2.0': {} '@tweenjs/tween.js@23.1.3': {} @@ -11098,34 +11235,34 @@ snapshots: '@types/webxr@0.5.20': {} - '@typescript-eslint/eslint-plugin@8.16.0(@typescript-eslint/parser@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2))(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2)': + '@typescript-eslint/eslint-plugin@8.16.0(@typescript-eslint/parser@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2))(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2) + '@typescript-eslint/parser': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2) '@typescript-eslint/scope-manager': 8.16.0 - '@typescript-eslint/type-utils': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2) - '@typescript-eslint/utils': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2) + '@typescript-eslint/type-utils': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2) + '@typescript-eslint/utils': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2) '@typescript-eslint/visitor-keys': 8.16.0 eslint: 9.15.0(jiti@2.4.0) graphemer: 1.4.0 ignore: 5.3.2 natural-compare: 1.4.0 - ts-api-utils: 1.4.2(typescript@5.7.2) + ts-api-utils: 1.4.2(typescript@5.4.2) optionalDependencies: - typescript: 5.7.2 + typescript: 5.4.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2)': + '@typescript-eslint/parser@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2)': dependencies: '@typescript-eslint/scope-manager': 8.16.0 '@typescript-eslint/types': 8.16.0 - '@typescript-eslint/typescript-estree': 8.16.0(typescript@5.7.2) + '@typescript-eslint/typescript-estree': 8.16.0(typescript@5.4.2) '@typescript-eslint/visitor-keys': 8.16.0 debug: 4.3.7 eslint: 9.15.0(jiti@2.4.0) optionalDependencies: - typescript: 5.7.2 + typescript: 5.4.2 transitivePeerDependencies: - supports-color @@ -11134,21 +11271,21 @@ snapshots: '@typescript-eslint/types': 8.16.0 '@typescript-eslint/visitor-keys': 8.16.0 - '@typescript-eslint/type-utils@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2)': + '@typescript-eslint/type-utils@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2)': dependencies: - '@typescript-eslint/typescript-estree': 8.16.0(typescript@5.7.2) - '@typescript-eslint/utils': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2) + '@typescript-eslint/typescript-estree': 8.16.0(typescript@5.4.2) + '@typescript-eslint/utils': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2) debug: 4.3.7 eslint: 9.15.0(jiti@2.4.0) - ts-api-utils: 1.4.2(typescript@5.7.2) + ts-api-utils: 1.4.2(typescript@5.4.2) optionalDependencies: - typescript: 5.7.2 + typescript: 5.4.2 transitivePeerDependencies: - supports-color '@typescript-eslint/types@8.16.0': {} - '@typescript-eslint/typescript-estree@8.16.0(typescript@5.7.2)': + '@typescript-eslint/typescript-estree@8.16.0(typescript@5.4.2)': dependencies: '@typescript-eslint/types': 8.16.0 '@typescript-eslint/visitor-keys': 8.16.0 @@ -11157,21 +11294,21 @@ snapshots: is-glob: 4.0.3 minimatch: 9.0.5 semver: 7.6.3 - ts-api-utils: 1.4.2(typescript@5.7.2) + ts-api-utils: 1.4.2(typescript@5.4.2) optionalDependencies: - typescript: 5.7.2 + typescript: 5.4.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2)': + '@typescript-eslint/utils@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2)': dependencies: '@eslint-community/eslint-utils': 4.4.1(eslint@9.15.0(jiti@2.4.0)) '@typescript-eslint/scope-manager': 8.16.0 '@typescript-eslint/types': 8.16.0 - '@typescript-eslint/typescript-estree': 8.16.0(typescript@5.7.2) + '@typescript-eslint/typescript-estree': 8.16.0(typescript@5.4.2) eslint: 9.15.0(jiti@2.4.0) optionalDependencies: - typescript: 5.7.2 + typescript: 5.4.2 transitivePeerDependencies: - supports-color @@ -11263,11 +11400,11 @@ snapshots: - rollup - supports-color - '@unocss/astro@0.64.1(rollup@4.27.4)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))': + '@unocss/astro@0.64.1(rollup@4.27.4)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.4.2))': dependencies: '@unocss/core': 0.64.1 '@unocss/reset': 0.64.1 - '@unocss/vite': 0.64.1(rollup@4.27.4)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2)) + '@unocss/vite': 0.64.1(rollup@4.27.4)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.4.2)) optionalDependencies: vite: 6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1) transitivePeerDependencies: @@ -11498,13 +11635,13 @@ snapshots: gzip-size: 6.0.0 sirv: 2.0.4 - '@unocss/inspector@0.64.1(vue@3.5.13(typescript@5.7.2))': + '@unocss/inspector@0.64.1(vue@3.5.13(typescript@5.4.2))': dependencies: '@unocss/core': 0.64.1 '@unocss/rule-utils': 0.64.1 gzip-size: 6.0.0 sirv: 2.0.4 - vue-flow-layout: 0.1.1(vue@3.5.13(typescript@5.7.2)) + vue-flow-layout: 0.1.1(vue@3.5.13(typescript@5.4.2)) transitivePeerDependencies: - vue @@ -12205,13 +12342,13 @@ snapshots: - rollup - supports-color - '@unocss/vite@0.64.1(rollup@4.27.4)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))': + '@unocss/vite@0.64.1(rollup@4.27.4)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.4.2))': dependencies: '@ampproject/remapping': 2.3.0 '@rollup/pluginutils': 5.1.3(rollup@4.27.4) '@unocss/config': 0.64.1 '@unocss/core': 0.64.1 - '@unocss/inspector': 0.64.1(vue@3.5.13(typescript@5.7.2)) + '@unocss/inspector': 0.64.1(vue@3.5.13(typescript@5.4.2)) chokidar: 3.6.0 magic-string: 0.30.14 tinyglobby: 0.2.10 @@ -12316,22 +12453,27 @@ snapshots: vite: 5.4.11(@types/node@22.10.0)(terser@5.36.0) vue: 3.5.12(typescript@5.7.2) + '@vitejs/plugin-vue@5.2.1(vite@5.4.11(@types/node@22.10.0)(terser@5.36.0))(vue@3.5.13(typescript@5.4.2))': + dependencies: + vite: 5.4.11(@types/node@22.10.0)(terser@5.36.0) + vue: 3.5.13(typescript@5.4.2) + '@vitejs/plugin-vue@5.2.1(vite@5.4.11(@types/node@22.10.0)(terser@5.36.0))(vue@3.5.13(typescript@5.7.2))': dependencies: vite: 5.4.11(@types/node@22.10.0)(terser@5.36.0) vue: 3.5.13(typescript@5.7.2) - '@vitejs/plugin-vue@5.2.1(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))': + '@vitejs/plugin-vue@5.2.1(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.4.2))': dependencies: vite: 6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1) - vue: 3.5.13(typescript@5.7.2) + vue: 3.5.13(typescript@5.4.2) - '@vitest/eslint-plugin@1.1.10(@typescript-eslint/utils@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2))(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2)': + '@vitest/eslint-plugin@1.1.10(@typescript-eslint/utils@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2))(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2)': dependencies: - '@typescript-eslint/utils': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2) + '@typescript-eslint/utils': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2) eslint: 9.15.0(jiti@2.4.0) optionalDependencies: - typescript: 5.7.2 + typescript: 5.4.2 '@volar/language-core@2.4.10': dependencies: @@ -12541,6 +12683,19 @@ snapshots: dependencies: rfdc: 1.4.1 + '@vue/language-core@2.1.10(typescript@5.4.2)': + dependencies: + '@volar/language-core': 2.4.10 + '@vue/compiler-dom': 3.5.13 + '@vue/compiler-vue2': 2.7.16 + '@vue/shared': 3.5.13 + alien-signals: 0.2.2 + minimatch: 9.0.5 + muggle-string: 0.4.1 + path-browserify: 1.0.1 + optionalDependencies: + typescript: 5.4.2 + '@vue/language-core@2.1.10(typescript@5.7.2)': dependencies: '@volar/language-core': 2.4.10 @@ -12553,8 +12708,9 @@ snapshots: path-browserify: 1.0.1 optionalDependencies: typescript: 5.7.2 + optional: true - '@vue/language-core@2.1.6(typescript@5.7.2)': + '@vue/language-core@2.1.6(typescript@5.4.2)': dependencies: '@volar/language-core': 2.4.10 '@vue/compiler-dom': 3.5.13 @@ -12565,7 +12721,7 @@ snapshots: muggle-string: 0.4.1 path-browserify: 1.0.1 optionalDependencies: - typescript: 5.7.2 + typescript: 5.4.2 '@vue/reactivity@3.5.12': dependencies: @@ -12605,6 +12761,12 @@ snapshots: '@vue/shared': 3.5.12 vue: 3.5.12(typescript@5.7.2) + '@vue/server-renderer@3.5.13(vue@3.5.13(typescript@5.4.2))': + dependencies: + '@vue/compiler-ssr': 3.5.13 + '@vue/shared': 3.5.13 + vue: 3.5.13(typescript@5.4.2) + '@vue/server-renderer@3.5.13(vue@3.5.13(typescript@5.7.2))': dependencies: '@vue/compiler-ssr': 3.5.13 @@ -12676,6 +12838,16 @@ snapshots: - '@vue/composition-api' - vue + '@vueuse/core@11.3.0(vue@3.5.13(typescript@5.4.2))': + dependencies: + '@types/web-bluetooth': 0.0.20 + '@vueuse/metadata': 11.3.0 + '@vueuse/shared': 11.3.0(vue@3.5.13(typescript@5.4.2)) + vue-demi: 0.14.10(vue@3.5.13(typescript@5.4.2)) + transitivePeerDependencies: + - '@vue/composition-api' + - vue + '@vueuse/core@11.3.0(vue@3.5.13(typescript@5.7.2))': dependencies: '@types/web-bluetooth': 0.0.20 @@ -12710,11 +12882,11 @@ snapshots: - '@vue/composition-api' - vue - '@vueuse/integrations@11.3.0(focus-trap@7.6.2)(fuse.js@7.0.0)(vue@3.5.13(typescript@5.7.2))': + '@vueuse/integrations@11.3.0(focus-trap@7.6.2)(fuse.js@7.0.0)(vue@3.5.13(typescript@5.4.2))': dependencies: - '@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.7.2)) - '@vueuse/shared': 11.3.0(vue@3.5.13(typescript@5.7.2)) - vue-demi: 0.14.10(vue@3.5.13(typescript@5.7.2)) + '@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.4.2)) + '@vueuse/shared': 11.3.0(vue@3.5.13(typescript@5.4.2)) + vue-demi: 0.14.10(vue@3.5.13(typescript@5.4.2)) optionalDependencies: focus-trap: 7.6.2 fuse.js: 7.0.0 @@ -12771,6 +12943,13 @@ snapshots: - '@vue/composition-api' - vue + '@vueuse/shared@11.3.0(vue@3.5.13(typescript@5.4.2))': + dependencies: + vue-demi: 0.14.10(vue@3.5.13(typescript@5.4.2)) + transitivePeerDependencies: + - '@vue/composition-api' + - vue + '@vueuse/shared@11.3.0(vue@3.5.13(typescript@5.7.2))': dependencies: vue-demi: 0.14.10(vue@3.5.13(typescript@5.7.2)) @@ -12978,6 +13157,10 @@ snapshots: dependencies: type-fest: 0.21.3 + ansi-escapes@7.0.0: + dependencies: + environment: 1.1.0 + ansi-regex@5.0.1: {} ansi-regex@6.1.0: {} @@ -13192,7 +13375,7 @@ snapshots: optionalDependencies: magicast: 0.3.5 - c12@2.0.1: + c12@2.0.1(magicast@0.3.5): dependencies: chokidar: 4.0.1 confbox: 0.1.8 @@ -13206,6 +13389,8 @@ snapshots: perfect-debounce: 1.0.0 pkg-types: 1.2.1 rc9: 2.1.2 + optionalDependencies: + magicast: 0.3.5 optional: true cac@6.7.14: {} @@ -13270,6 +13455,8 @@ snapshots: transitivePeerDependencies: - magicast + char-regex@1.0.2: {} + character-entities-html4@2.1.0: {} character-entities-legacy@3.0.0: {} @@ -13305,6 +13492,8 @@ snapshots: dependencies: consola: 3.2.3 + cjs-module-lexer@1.4.1: {} + clean-regexp@1.0.0: dependencies: escape-string-regexp: 1.0.5 @@ -13321,8 +13510,23 @@ snapshots: dependencies: restore-cursor: 5.1.0 + cli-highlight@2.1.11: + dependencies: + chalk: 4.1.2 + highlight.js: 10.7.3 + mz: 2.7.0 + parse5: 5.1.1 + parse5-htmlparser2-tree-adapter: 6.0.1 + yargs: 16.2.0 + cli-spinners@2.9.2: {} + cli-table3@0.6.5: + dependencies: + string-width: 4.2.3 + optionalDependencies: + '@colors/colors': 1.5.0 + cli-width@4.1.0: {} clipboardy@4.0.0: @@ -13331,6 +13535,12 @@ snapshots: is-wsl: 3.1.0 is64bit: 2.0.0 + cliui@7.0.4: + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 + cliui@8.0.1: dependencies: string-width: 4.2.3 @@ -13363,6 +13573,8 @@ snapshots: comma-separated-tokens@2.0.3: {} + commander@10.0.1: {} + commander@2.20.3: {} commander@4.1.1: {} @@ -13531,14 +13743,14 @@ snapshots: core-util-is@1.0.3: {} - cosmiconfig@9.0.0(typescript@5.7.2): + cosmiconfig@9.0.0(typescript@5.4.2): dependencies: env-paths: 2.2.1 import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 optionalDependencies: - typescript: 5.7.2 + typescript: 5.4.2 crc-32@1.2.2: {} @@ -13798,6 +14010,8 @@ snapshots: emoji-regex@9.2.2: {} + emojilib@2.4.0: {} + encodeurl@1.0.2: {} encodeurl@2.0.0: {} @@ -13811,6 +14025,8 @@ snapshots: env-paths@2.2.1: {} + environment@1.1.0: {} + error-ex@1.3.2: dependencies: is-arrayish: 0.2.1 @@ -14020,9 +14236,9 @@ snapshots: prettier: 3.4.1 synckit: 0.9.2 - eslint-plugin-import-x@4.4.3(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2): + eslint-plugin-import-x@4.4.3(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2): dependencies: - '@typescript-eslint/utils': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2) + '@typescript-eslint/utils': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2) debug: 4.3.7 doctrine: 3.0.0 eslint: 9.15.0(jiti@2.4.0) @@ -14082,10 +14298,10 @@ snapshots: eslint-plugin-no-only-tests@3.3.0: {} - eslint-plugin-perfectionist@3.9.1(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2)(vue-eslint-parser@9.4.3(eslint@9.15.0(jiti@2.4.0))): + eslint-plugin-perfectionist@3.9.1(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2)(vue-eslint-parser@9.4.3(eslint@9.15.0(jiti@2.4.0))): dependencies: '@typescript-eslint/types': 8.16.0 - '@typescript-eslint/utils': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2) + '@typescript-eslint/utils': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2) eslint: 9.15.0(jiti@2.4.0) minimatch: 9.0.5 natural-compare-lite: 1.4.0 @@ -14136,11 +14352,11 @@ snapshots: semver: 7.6.3 strip-indent: 3.0.0 - eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.16.0(@typescript-eslint/parser@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2))(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2))(eslint@9.15.0(jiti@2.4.0)): + eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.16.0(@typescript-eslint/parser@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2))(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2))(eslint@9.15.0(jiti@2.4.0)): dependencies: eslint: 9.15.0(jiti@2.4.0) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.16.0(@typescript-eslint/parser@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2))(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2) + '@typescript-eslint/eslint-plugin': 8.16.0(@typescript-eslint/parser@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2))(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2) eslint-plugin-vue@9.31.0(eslint@9.15.0(jiti@2.4.0)): dependencies: @@ -14690,6 +14906,8 @@ snapshots: he@1.2.0: {} + highlight.js@10.7.3: {} + hookable@5.5.3: {} hosted-git-info@2.8.9: {} @@ -15251,6 +15469,19 @@ snapshots: markdown-table@3.0.4: {} + marked-terminal@7.2.1(marked@9.1.6): + dependencies: + ansi-escapes: 7.0.0 + ansi-regex: 6.1.0 + chalk: 5.3.0 + cli-highlight: 2.1.11 + cli-table3: 0.6.5 + marked: 9.1.6 + node-emoji: 2.2.0 + supports-hyperlinks: 3.1.0 + + marked@9.1.6: {} + mdast-util-find-and-replace@3.0.1: dependencies: '@types/mdast': 4.0.4 @@ -15816,6 +16047,13 @@ snapshots: node-addon-api@7.1.1: {} + node-emoji@2.2.0: + dependencies: + '@sindresorhus/is': 4.6.0 + char-regex: 1.0.2 + emojilib: 2.4.0 + skin-tone: 2.0.0 + node-fetch-native@1.6.4: {} node-fetch@2.7.0: @@ -16195,6 +16433,14 @@ snapshots: dependencies: parse-path: 7.0.0 + parse5-htmlparser2-tree-adapter@6.0.1: + dependencies: + parse5: 6.0.1 + + parse5@5.1.1: {} + + parse5@6.0.1: {} + parseurl@1.3.3: {} path-browserify@1.0.1: {} @@ -16660,14 +16906,14 @@ snapshots: dependencies: jsesc: 0.5.0 - release-it@17.10.0(typescript@5.7.2): + release-it@17.10.0(typescript@5.4.2): dependencies: '@iarna/toml': 2.2.5 '@octokit/rest': 20.1.1 async-retry: 1.3.3 chalk: 5.3.0 ci-info: 4.1.0 - cosmiconfig: 9.0.0(typescript@5.7.2) + cosmiconfig: 9.0.0(typescript@5.4.2) execa: 8.0.0 git-url-parse: 14.0.0 globby: 14.0.2 @@ -16909,6 +17155,10 @@ snapshots: sisteransi@1.0.5: {} + skin-tone@2.0.0: + dependencies: + unicode-emoji-modifier-base: 1.0.0 + slash@5.1.0: {} slashes@3.0.12: {} @@ -17096,6 +17346,11 @@ snapshots: supports-color@9.4.0: {} + supports-hyperlinks@3.1.0: + dependencies: + has-flag: 4.0.0 + supports-color: 7.2.0 + supports-preserve-symlinks-flag@1.0.0: {} svg-tags@1.0.0: {} @@ -17286,9 +17541,9 @@ snapshots: trim-lines@3.0.1: {} - ts-api-utils@1.4.2(typescript@5.7.2): + ts-api-utils@1.4.2(typescript@5.4.2): dependencies: - typescript: 5.7.2 + typescript: 5.4.2 ts-interface-checker@0.1.13: {} @@ -17338,6 +17593,8 @@ snapshots: typescript@5.4.2: {} + typescript@5.6.1-rc: {} + typescript@5.7.2: {} ufo@1.5.4: {} @@ -17395,6 +17652,8 @@ snapshots: '@unhead/shared': 1.11.6 hookable: 5.5.3 + unicode-emoji-modifier-base@1.0.0: {} + unicorn-magic@0.1.0: {} unimport@3.13.1(rollup@4.27.4)(webpack-sources@3.2.3): @@ -17606,9 +17865,9 @@ snapshots: - rollup - supports-color - unocss@0.64.1(postcss@8.4.49)(rollup@4.27.4)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2)): + unocss@0.64.1(postcss@8.4.49)(rollup@4.27.4)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.4.2)): dependencies: - '@unocss/astro': 0.64.1(rollup@4.27.4)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2)) + '@unocss/astro': 0.64.1(rollup@4.27.4)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.4.2)) '@unocss/cli': 0.64.1(rollup@4.27.4) '@unocss/core': 0.64.1 '@unocss/postcss': 0.64.1(postcss@8.4.49) @@ -17624,7 +17883,7 @@ snapshots: '@unocss/transformer-compile-class': 0.64.1 '@unocss/transformer-directives': 0.64.1 '@unocss/transformer-variant-group': 0.64.1 - '@unocss/vite': 0.64.1(rollup@4.27.4)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2)) + '@unocss/vite': 0.64.1(rollup@4.27.4)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.4.2)) optionalDependencies: vite: 6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1) transitivePeerDependencies: @@ -17633,7 +17892,7 @@ snapshots: - supports-color - vue - unplugin-auto-import@0.18.5(@nuxt/kit@3.14.1592(rollup@4.27.4)(webpack-sources@3.2.3))(@vueuse/core@11.3.0(vue@3.5.13(typescript@5.7.2)))(rollup@4.27.4): + unplugin-auto-import@0.18.5(@nuxt/kit@3.14.1592(magicast@0.3.5)(rollup@4.27.4)(webpack-sources@3.2.3))(@vueuse/core@11.3.0(vue@3.5.13(typescript@5.7.2)))(rollup@4.27.4): dependencies: '@antfu/utils': 0.7.10 '@rollup/pluginutils': 5.1.3(rollup@4.27.4) @@ -17644,12 +17903,12 @@ snapshots: unimport: 3.13.3(rollup@4.27.4) unplugin: 1.16.0 optionalDependencies: - '@nuxt/kit': 3.14.1592(rollup@4.27.4)(webpack-sources@3.2.3) + '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.27.4)(webpack-sources@3.2.3) '@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.7.2)) transitivePeerDependencies: - rollup - unplugin-vue-components@0.27.4(@babel/parser@7.26.2)(@nuxt/kit@3.14.1592(rollup@4.27.4)(webpack-sources@3.2.3))(rollup@4.27.4)(vue@3.5.13(typescript@5.7.2))(webpack-sources@3.2.3): + unplugin-vue-components@0.27.4(@babel/parser@7.26.2)(@nuxt/kit@3.14.1592(magicast@0.3.5)(rollup@4.27.4)(webpack-sources@3.2.3))(rollup@4.27.4)(vue@3.5.13(typescript@5.7.2))(webpack-sources@3.2.3): dependencies: '@antfu/utils': 0.7.10 '@rollup/pluginutils': 5.1.2(rollup@4.27.4) @@ -17664,7 +17923,7 @@ snapshots: vue: 3.5.13(typescript@5.7.2) optionalDependencies: '@babel/parser': 7.26.2 - '@nuxt/kit': 3.14.1592(rollup@4.27.4)(webpack-sources@3.2.3) + '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.27.4)(webpack-sources@3.2.3) transitivePeerDependencies: - rollup - supports-color @@ -17806,6 +18065,8 @@ snapshots: spdx-correct: 3.2.0 spdx-expression-parse: 3.0.1 + validate-npm-package-name@5.0.1: {} + vary@1.1.2: {} vfile-message@4.0.2: @@ -17872,18 +18133,18 @@ snapshots: dependencies: vite: 6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1) - vite-plugin-dts@4.3.0(@types/node@22.10.0)(rollup@4.27.4)(typescript@5.7.2)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)): + vite-plugin-dts@4.3.0(@types/node@22.10.0)(rollup@4.27.4)(typescript@5.4.2)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)): dependencies: '@microsoft/api-extractor': 7.48.0(@types/node@22.10.0) '@rollup/pluginutils': 5.1.3(rollup@4.27.4) '@volar/typescript': 2.4.10 - '@vue/language-core': 2.1.6(typescript@5.7.2) + '@vue/language-core': 2.1.6(typescript@5.4.2) compare-versions: 6.1.1 debug: 4.3.7 kolorist: 1.8.0 local-pkg: 0.5.1 magic-string: 0.30.14 - typescript: 5.7.2 + typescript: 5.4.2 optionalDependencies: vite: 6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1) transitivePeerDependencies: @@ -17936,6 +18197,11 @@ snapshots: transitivePeerDependencies: - supports-color + vite-svg-loader@5.1.0(vue@3.5.13(typescript@5.4.2)): + dependencies: + svgo: 3.3.2 + vue: 3.5.13(typescript@5.4.2) + vite-svg-loader@5.1.0(vue@3.5.13(typescript@5.7.2)): dependencies: svgo: 3.3.2 @@ -18012,7 +18278,7 @@ snapshots: - typescript - universal-cookie - vitepress@1.5.0(@algolia/client-search@5.15.0)(@types/node@22.10.0)(fuse.js@7.0.0)(postcss@8.4.49)(search-insights@2.17.3)(terser@5.36.0)(typescript@5.7.2): + vitepress@1.5.0(@algolia/client-search@5.15.0)(@types/node@22.10.0)(fuse.js@7.0.0)(postcss@8.4.49)(search-insights@2.17.3)(terser@5.36.0)(typescript@5.4.2): dependencies: '@docsearch/css': 3.8.0 '@docsearch/js': 3.8.0(@algolia/client-search@5.15.0)(search-insights@2.17.3) @@ -18021,17 +18287,17 @@ snapshots: '@shikijs/transformers': 1.23.1 '@shikijs/types': 1.23.1 '@types/markdown-it': 14.1.2 - '@vitejs/plugin-vue': 5.2.1(vite@5.4.11(@types/node@22.10.0)(terser@5.36.0))(vue@3.5.13(typescript@5.7.2)) + '@vitejs/plugin-vue': 5.2.1(vite@5.4.11(@types/node@22.10.0)(terser@5.36.0))(vue@3.5.13(typescript@5.4.2)) '@vue/devtools-api': 7.6.4 '@vue/shared': 3.5.13 - '@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.7.2)) - '@vueuse/integrations': 11.3.0(focus-trap@7.6.2)(fuse.js@7.0.0)(vue@3.5.13(typescript@5.7.2)) + '@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.4.2)) + '@vueuse/integrations': 11.3.0(focus-trap@7.6.2)(fuse.js@7.0.0)(vue@3.5.13(typescript@5.4.2)) focus-trap: 7.6.2 mark.js: 8.11.1 minisearch: 7.1.1 shiki: 1.23.1 vite: 5.4.11(@types/node@22.10.0)(terser@5.36.0) - vue: 3.5.13(typescript@5.7.2) + vue: 3.5.13(typescript@5.4.2) optionalDependencies: postcss: 8.4.49 transitivePeerDependencies: @@ -18093,6 +18359,10 @@ snapshots: dependencies: vue: 3.5.12(typescript@5.7.2) + vue-demi@0.14.10(vue@3.5.13(typescript@5.4.2)): + dependencies: + vue: 3.5.13(typescript@5.4.2) + vue-demi@0.14.10(vue@3.5.13(typescript@5.7.2)): dependencies: vue: 3.5.13(typescript@5.7.2) @@ -18112,9 +18382,9 @@ snapshots: transitivePeerDependencies: - supports-color - vue-flow-layout@0.1.1(vue@3.5.13(typescript@5.7.2)): + vue-flow-layout@0.1.1(vue@3.5.13(typescript@5.4.2)): dependencies: - vue: 3.5.13(typescript@5.7.2) + vue: 3.5.13(typescript@5.4.2) vue-router@4.4.5(vue@3.5.12(typescript@5.7.2)): dependencies: @@ -18126,12 +18396,20 @@ snapshots: '@vue/devtools-api': 6.6.4 vue: 3.5.13(typescript@5.7.2) + vue-tsc@2.1.10(typescript@5.4.2): + dependencies: + '@volar/typescript': 2.4.10 + '@vue/language-core': 2.1.10(typescript@5.4.2) + semver: 7.6.3 + typescript: 5.4.2 + vue-tsc@2.1.10(typescript@5.7.2): dependencies: '@volar/typescript': 2.4.10 '@vue/language-core': 2.1.10(typescript@5.7.2) semver: 7.6.3 typescript: 5.7.2 + optional: true vue@3.5.12(typescript@5.7.2): dependencies: @@ -18143,6 +18421,16 @@ snapshots: optionalDependencies: typescript: 5.7.2 + vue@3.5.13(typescript@5.4.2): + dependencies: + '@vue/compiler-dom': 3.5.13 + '@vue/compiler-sfc': 3.5.13 + '@vue/runtime-dom': 3.5.13 + '@vue/server-renderer': 3.5.13(vue@3.5.13(typescript@5.4.2)) + '@vue/shared': 3.5.13 + optionalDependencies: + typescript: 5.4.2 + vue@3.5.13(typescript@5.7.2): dependencies: '@vue/compiler-dom': 3.5.13 @@ -18281,8 +18569,20 @@ snapshots: yaml@2.6.1: {} + yargs-parser@20.2.9: {} + yargs-parser@21.1.1: {} + yargs@16.2.0: + dependencies: + cliui: 7.0.4 + escalade: 3.2.0 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + string-width: 4.2.3 + y18n: 5.0.8 + yargs-parser: 20.2.9 + yargs@17.7.2: dependencies: cliui: 8.0.1 diff --git a/renovate.json b/renovate.json index cc305199..1526cb73 100644 --- a/renovate.json +++ b/renovate.json @@ -3,6 +3,7 @@ "extends": [ "config:base" ], + "ignoreDeps": ["typescript"], "packageRules": [ { "matchUpdateTypes": ["minor", "patch"], diff --git a/vite.config.ts b/vite.config.ts index 10a24c16..52fa01ed 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -24,6 +24,7 @@ export default defineConfig({ vue(templateCompilerOptions), dts({ insertTypesEntry: true, + rollupTypes: true, }), banner({ content: `/**\n * name: ${pkg.name}\n * version: v${ From 396c2e934965ef21c2f6983ba767aa9deab53cb4 Mon Sep 17 00:00:00 2001 From: userquin Date: Fri, 20 Dec 2024 16:15:04 +0100 Subject: [PATCH 2/4] chore: pin also `@arethetypeswrong/cli` version --- package.json | 2 +- pnpm-lock.yaml | 2 +- renovate.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index f552ee5e..6819ccd5 100644 --- a/package.json +++ b/package.json @@ -73,7 +73,7 @@ "postprocessing": "^6.36.4" }, "devDependencies": { - "@arethetypeswrong/cli": "^0.17.2", + "@arethetypeswrong/cli": "0.17.2", "@release-it/conventional-changelog": "^9.0.3", "@tresjs/core": "^4.3.1", "@tresjs/eslint-config": "^1.4.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c349307b..b7383555 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -21,7 +21,7 @@ importers: version: 6.36.4(three@0.170.0) devDependencies: '@arethetypeswrong/cli': - specifier: ^0.17.2 + specifier: 0.17.2 version: 0.17.2(patch_hash=trzafi2znozhw5t6zb5kozvhea) '@release-it/conventional-changelog': specifier: ^9.0.3 diff --git a/renovate.json b/renovate.json index 1526cb73..a9e2cfd2 100644 --- a/renovate.json +++ b/renovate.json @@ -3,7 +3,7 @@ "extends": [ "config:base" ], - "ignoreDeps": ["typescript"], + "ignoreDeps": ["@arethetypeswrong/cli", "typescript"], "packageRules": [ { "matchUpdateTypes": ["minor", "patch"], From 62518ef7fd160efac93bdf200ba02062a78de28c Mon Sep 17 00:00:00 2001 From: userquin Date: Fri, 20 Dec 2024 17:49:28 +0100 Subject: [PATCH 3/4] chore: pin ts 5.7.2 and remove cli patch --- package.json | 8 +- patches/@arethetypeswrong__cli@0.17.2.patch | 36 --- pnpm-lock.yaml | 319 +++++++------------- renovate.json | 1 - 4 files changed, 116 insertions(+), 248 deletions(-) delete mode 100644 patches/@arethetypeswrong__cli@0.17.2.patch diff --git a/package.json b/package.json index 6819ccd5..9e003326 100644 --- a/package.json +++ b/package.json @@ -73,7 +73,7 @@ "postprocessing": "^6.36.4" }, "devDependencies": { - "@arethetypeswrong/cli": "0.17.2", + "@arethetypeswrong/cli": "^0.17.2", "@release-it/conventional-changelog": "^9.0.3", "@tresjs/core": "^4.3.1", "@tresjs/eslint-config": "^1.4.0", @@ -88,7 +88,7 @@ "rollup-plugin-analyzer": "^4.0.0", "rollup-plugin-visualizer": "^5.12.0", "three": "^0.170.0", - "typescript": "5.4.2", + "typescript": "5.7.2", "unocss": "^0.64.1", "vite": "^6.0.0", "vite-plugin-banner": "^0.8.0", @@ -99,8 +99,8 @@ "vue-tsc": "^2.1.10" }, "pnpm": { - "patchedDependencies": { - "@arethetypeswrong/cli@0.17.2": "patches/@arethetypeswrong__cli@0.17.2.patch" + "overrides": { + "typescript": "5.7.2" } } } diff --git a/patches/@arethetypeswrong__cli@0.17.2.patch b/patches/@arethetypeswrong__cli@0.17.2.patch deleted file mode 100644 index 4f0fe908..00000000 --- a/patches/@arethetypeswrong__cli@0.17.2.patch +++ /dev/null @@ -1,36 +0,0 @@ -diff --git a/dist/index.js b/dist/index.js -index 0504e767daf256ff705961e1d9052763fa910f41..793dfdc0971ebb6d71e66cb0a1a2f9ab959fd335 100644 ---- a/dist/index.js -+++ b/dist/index.js -@@ -34,7 +34,7 @@ program - .description(`${chalk.bold.blue("Are the Types Wrong?")} attempts to analyze npm package contents for issues with their TypeScript types, - particularly ESM-related module resolution issues.`) - .argument("[file-directory-or-package-spec]", "the packed .tgz, or directory containing package.json with --pack, or package spec with --from-npm") -- .option("-P, --pack", "Run `npm pack` in the specified directory and delete the resulting .tgz file afterwards") -+ .option("-P, --pack", "Run `pnpm pack` in the specified directory and delete the resulting .tgz file afterwards") - .option("-p, --from-npm", "Read from the npm registry instead of a local file") - .addOption(new Option("--definitely-typed [version]", "Specify the version range of @types to use").default(true)) - .option("--no-definitely-typed", "Don't include @types") -@@ -126,11 +126,11 @@ particularly ESM-related module resolution issues.`) - } - if (!opts.pack) { - if (!process.stdout.isTTY) { -- program.error("Specifying a directory requires the --pack option to confirm that running `npm pack` is ok."); -+ program.error("Specifying a directory requires the --pack option to confirm that running `pnpm pack` is ok."); - } - const rl = readline.createInterface(process.stdin, process.stdout); - const answer = await new Promise((resolve) => { -- rl.question(`Run \`npm pack\`? (Pass -P/--pack to skip) (Y/n) `, resolve); -+ rl.question(`Run \`pnpm pack\`? (Pass -P/--pack to skip) (Y/n) `, resolve); - }); - rl.close(); - if (answer.trim() && !answer.trim().toLowerCase().startsWith("y")) { -@@ -141,7 +141,7 @@ particularly ESM-related module resolution issues.`) - fileName = deleteTgz = path.join(fileOrDirectory, - // https://github.com/npm/cli/blob/f875caa86900122819311dd77cde01c700fd1817/lib/utils/tar.js#L123-L125 - `${manifest.name.replace("@", "").replace("/", "-")}-${manifest.version}.tgz`); -- execSync("npm pack", { cwd: fileOrDirectory, encoding: "utf8", stdio: "ignore" }); -+ execSync("pnpm pack", { cwd: fileOrDirectory, encoding: "utf8", stdio: "ignore" }); - } - const file = await readFile(fileName); - const data = new Uint8Array(file); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b7383555..65cc2d35 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -4,10 +4,8 @@ settings: autoInstallPeers: true excludeLinksFromLockfile: false -patchedDependencies: - '@arethetypeswrong/cli@0.17.2': - hash: trzafi2znozhw5t6zb5kozvhea - path: patches/@arethetypeswrong__cli@0.17.2.patch +overrides: + typescript: 5.7.2 importers: @@ -15,23 +13,23 @@ importers: dependencies: '@vueuse/core': specifier: ^11.3.0 - version: 11.3.0(vue@3.5.13(typescript@5.4.2)) + version: 11.3.0(vue@3.5.13(typescript@5.7.2)) postprocessing: specifier: ^6.36.4 version: 6.36.4(three@0.170.0) devDependencies: '@arethetypeswrong/cli': - specifier: 0.17.2 - version: 0.17.2(patch_hash=trzafi2znozhw5t6zb5kozvhea) + specifier: ^0.17.2 + version: 0.17.2 '@release-it/conventional-changelog': specifier: ^9.0.3 - version: 9.0.3(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.0.0)(release-it@17.10.0(typescript@5.4.2)) + version: 9.0.3(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.0.0)(release-it@17.10.0(typescript@5.7.2)) '@tresjs/core': specifier: ^4.3.1 - version: 4.3.1(three@0.170.0)(vue@3.5.13(typescript@5.4.2)) + version: 4.3.1(three@0.170.0)(vue@3.5.13(typescript@5.7.2)) '@tresjs/eslint-config': specifier: ^1.4.0 - version: 1.4.0(@typescript-eslint/utils@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2))(@vue/compiler-sfc@3.5.13)(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2) + version: 1.4.0(@typescript-eslint/utils@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2))(@vue/compiler-sfc@3.5.13)(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2) '@types/three': specifier: ^0.170.0 version: 0.170.0 @@ -40,7 +38,7 @@ importers: version: 0.64.1 '@vitejs/plugin-vue': specifier: ^5.2.1 - version: 5.2.1(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.4.2)) + version: 5.2.1(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2)) eslint: specifier: ^9.15.0 version: 9.15.0(jiti@2.4.0) @@ -55,7 +53,7 @@ importers: version: 1.1.2 release-it: specifier: ^17.10.0 - version: 17.10.0(typescript@5.4.2) + version: 17.10.0(typescript@5.7.2) rollup-plugin-analyzer: specifier: ^4.0.0 version: 4.0.0 @@ -66,11 +64,11 @@ importers: specifier: ^0.170.0 version: 0.170.0 typescript: - specifier: 5.4.2 - version: 5.4.2 + specifier: 5.7.2 + version: 5.7.2 unocss: specifier: ^0.64.1 - version: 0.64.1(postcss@8.4.49)(rollup@4.27.4)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.4.2)) + version: 0.64.1(postcss@8.4.49)(rollup@4.27.4)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2)) vite: specifier: ^6.0.0 version: 6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1) @@ -79,19 +77,19 @@ importers: version: 0.8.0 vite-plugin-dts: specifier: 4.3.0 - version: 4.3.0(@types/node@22.10.0)(rollup@4.27.4)(typescript@5.4.2)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)) + version: 4.3.0(@types/node@22.10.0)(rollup@4.27.4)(typescript@5.7.2)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)) vite-svg-loader: specifier: ^5.1.0 - version: 5.1.0(vue@3.5.13(typescript@5.4.2)) + version: 5.1.0(vue@3.5.13(typescript@5.7.2)) vitepress: specifier: 1.5.0 - version: 1.5.0(@algolia/client-search@5.15.0)(@types/node@22.10.0)(fuse.js@7.0.0)(postcss@8.4.49)(search-insights@2.17.3)(terser@5.36.0)(typescript@5.4.2) + version: 1.5.0(@algolia/client-search@5.15.0)(@types/node@22.10.0)(fuse.js@7.0.0)(postcss@8.4.49)(search-insights@2.17.3)(terser@5.36.0)(typescript@5.7.2) vue: specifier: ^3.5.13 - version: 3.5.13(typescript@5.4.2) + version: 3.5.13(typescript@5.7.2) vue-tsc: specifier: ^2.1.10 - version: 2.1.10(typescript@5.4.2) + version: 2.1.10(typescript@5.7.2) docs: dependencies: @@ -3083,7 +3081,7 @@ packages: peerDependencies: '@typescript-eslint/utils': '>= 8.0' eslint: '>= 8.57.0' - typescript: '>= 5.0.0' + typescript: 5.7.2 vitest: '*' peerDependenciesMeta: typescript: @@ -3184,7 +3182,7 @@ packages: '@vue/language-core@2.1.10': resolution: {integrity: sha512-DAI289d0K3AB5TUG3xDp9OuQ71CnrujQwJrQnfuZDwo6eGNf0UoRlPuaVNO+Zrn65PC3j0oB2i7mNmVPggeGeQ==} peerDependencies: - typescript: '*' + typescript: 5.7.2 peerDependenciesMeta: typescript: optional: true @@ -3192,7 +3190,7 @@ packages: '@vue/language-core@2.1.6': resolution: {integrity: sha512-MW569cSky9R/ooKMh6xa2g1D0AtRKbL56k83dzus/bx//RDJk24RHWkMzbAlXjMdDNyxAaagKPRquBIxkxlCkg==} peerDependencies: - typescript: '*' + typescript: 5.7.2 peerDependenciesMeta: typescript: optional: true @@ -4060,7 +4058,7 @@ packages: resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==} engines: {node: '>=14'} peerDependencies: - typescript: '>=4.9.5' + typescript: 5.7.2 peerDependenciesMeta: typescript: optional: true @@ -7258,7 +7256,7 @@ packages: resolution: {integrity: sha512-ZF5gQIQa/UmzfvxbHZI3JXN0/Jt+vnAfAviNRAMc491laiK6YCLpCW9ft8oaCRFOTxCZtUTE6XB0ZQAe3olntw==} engines: {node: '>=16'} peerDependencies: - typescript: '>=4.2.0' + typescript: 5.7.2 ts-interface-checker@0.1.13: resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} @@ -7319,16 +7317,6 @@ packages: typedarray@0.0.6: resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} - typescript@5.4.2: - resolution: {integrity: sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ==} - engines: {node: '>=14.17'} - hasBin: true - - typescript@5.6.1-rc: - resolution: {integrity: sha512-E3b2+1zEFu84jB0YQi9BORDjz9+jGbwwy1Zi3G0LUNw7a7cePUrHMRNy8aPh53nXpkFGVHSxIZo5vKTfYaFiBQ==} - engines: {node: '>=14.17'} - hasBin: true - typescript@5.7.2: resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==} engines: {node: '>=14.17'} @@ -7655,7 +7643,7 @@ packages: meow: ^9.0.0 optionator: ^0.9.1 stylelint: '>=13' - typescript: '*' + typescript: 5.7.2 vite: '>=2.0.0' vls: '*' vti: '*' @@ -7689,7 +7677,7 @@ packages: resolution: {integrity: sha512-LkBJh9IbLwL6/rxh0C1/bOurDrIEmRE7joC+jFdOEEciAFPbpEKOLSAr5nNh5R7CJ45cMbksTrFfy52szzC5eA==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: - typescript: '*' + typescript: 5.7.2 vite: '*' peerDependenciesMeta: vite: @@ -7888,12 +7876,12 @@ packages: resolution: {integrity: sha512-RBNSfaaRHcN5uqVqJSZh++Gy/YUzryuv9u1aFWhsammDJXNtUiJMNoJ747lZcQ68wUQFx6E73y4FY3D8E7FGMA==} hasBin: true peerDependencies: - typescript: '>=5.0.0' + typescript: 5.7.2 vue@3.5.12: resolution: {integrity: sha512-CLVZtXtn2ItBIi/zHZ0Sg1Xkb7+PU32bJJ8Bmy7ts3jxXTcbfsEfBivFYYWz1Hur+lalqGAh65Coin0r+HRUfg==} peerDependencies: - typescript: '*' + typescript: 5.7.2 peerDependenciesMeta: typescript: optional: true @@ -7901,7 +7889,7 @@ packages: vue@3.5.13: resolution: {integrity: sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==} peerDependencies: - typescript: '*' + typescript: 5.7.2 peerDependenciesMeta: typescript: optional: true @@ -8297,32 +8285,32 @@ snapshots: '@andrewbranch/untar.js@1.0.3': {} - '@antfu/eslint-config@3.6.2(@typescript-eslint/utils@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2))(@vue/compiler-sfc@3.5.13)(eslint-plugin-format@0.1.2(eslint@9.15.0(jiti@2.4.0)))(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2)': + '@antfu/eslint-config@3.6.2(@typescript-eslint/utils@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2))(@vue/compiler-sfc@3.5.13)(eslint-plugin-format@0.1.2(eslint@9.15.0(jiti@2.4.0)))(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2)': dependencies: '@antfu/install-pkg': 0.4.1 '@clack/prompts': 0.7.0 '@eslint-community/eslint-plugin-eslint-comments': 4.4.1(eslint@9.15.0(jiti@2.4.0)) '@eslint/markdown': 6.2.1 - '@stylistic/eslint-plugin': 2.11.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2) - '@typescript-eslint/eslint-plugin': 8.16.0(@typescript-eslint/parser@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2))(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2) - '@typescript-eslint/parser': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2) - '@vitest/eslint-plugin': 1.1.10(@typescript-eslint/utils@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2))(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2) + '@stylistic/eslint-plugin': 2.11.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2) + '@typescript-eslint/eslint-plugin': 8.16.0(@typescript-eslint/parser@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2))(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2) + '@typescript-eslint/parser': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2) + '@vitest/eslint-plugin': 1.1.10(@typescript-eslint/utils@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2))(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2) eslint: 9.15.0(jiti@2.4.0) eslint-config-flat-gitignore: 0.3.0(eslint@9.15.0(jiti@2.4.0)) eslint-flat-config-utils: 0.4.0 eslint-merge-processors: 0.1.0(eslint@9.15.0(jiti@2.4.0)) eslint-plugin-antfu: 2.7.0(eslint@9.15.0(jiti@2.4.0)) eslint-plugin-command: 0.2.6(eslint@9.15.0(jiti@2.4.0)) - eslint-plugin-import-x: 4.4.3(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2) + eslint-plugin-import-x: 4.4.3(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2) eslint-plugin-jsdoc: 50.6.0(eslint@9.15.0(jiti@2.4.0)) eslint-plugin-jsonc: 2.18.2(eslint@9.15.0(jiti@2.4.0)) eslint-plugin-n: 17.14.0(eslint@9.15.0(jiti@2.4.0)) eslint-plugin-no-only-tests: 3.3.0 - eslint-plugin-perfectionist: 3.9.1(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2)(vue-eslint-parser@9.4.3(eslint@9.15.0(jiti@2.4.0))) + eslint-plugin-perfectionist: 3.9.1(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2)(vue-eslint-parser@9.4.3(eslint@9.15.0(jiti@2.4.0))) eslint-plugin-regexp: 2.7.0(eslint@9.15.0(jiti@2.4.0)) eslint-plugin-toml: 0.11.1(eslint@9.15.0(jiti@2.4.0)) eslint-plugin-unicorn: 55.0.0(eslint@9.15.0(jiti@2.4.0)) - eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.16.0(@typescript-eslint/parser@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2))(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2))(eslint@9.15.0(jiti@2.4.0)) + eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.16.0(@typescript-eslint/parser@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2))(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2))(eslint@9.15.0(jiti@2.4.0)) eslint-plugin-vue: 9.31.0(eslint@9.15.0(jiti@2.4.0)) eslint-plugin-yml: 1.15.0(eslint@9.15.0(jiti@2.4.0)) eslint-processor-vue-blocks: 0.1.2(@vue/compiler-sfc@3.5.13)(eslint@9.15.0(jiti@2.4.0)) @@ -8353,7 +8341,7 @@ snapshots: '@antfu/utils@0.7.10': {} - '@arethetypeswrong/cli@0.17.2(patch_hash=trzafi2znozhw5t6zb5kozvhea)': + '@arethetypeswrong/cli@0.17.2': dependencies: '@arethetypeswrong/core': 0.17.2 chalk: 4.1.2 @@ -8370,7 +8358,7 @@ snapshots: fflate: 0.8.2 lru-cache: 10.4.3 semver: 7.6.3 - typescript: 5.6.1-rc + typescript: 5.7.2 validate-npm-package-name: 5.0.1 '@babel/code-frame@7.24.7': @@ -9477,7 +9465,7 @@ snapshots: resolve: 1.22.8 semver: 7.5.4 source-map: 0.6.1 - typescript: 5.4.2 + typescript: 5.7.2 transitivePeerDependencies: - '@types/node' @@ -10079,13 +10067,13 @@ snapshots: '@popperjs/core@2.11.8': {} - '@release-it/conventional-changelog@9.0.3(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.0.0)(release-it@17.10.0(typescript@5.4.2))': + '@release-it/conventional-changelog@9.0.3(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.0.0)(release-it@17.10.0(typescript@5.7.2))': dependencies: concat-stream: 2.0.0 conventional-changelog: 6.0.0(conventional-commits-filter@5.0.0) conventional-recommended-bump: 10.0.0 git-semver-tags: 8.0.0(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.0.0) - release-it: 17.10.0(typescript@5.4.2) + release-it: 17.10.0(typescript@5.7.2) semver: 7.6.3 transitivePeerDependencies: - conventional-commits-filter @@ -10318,9 +10306,9 @@ snapshots: '@sindresorhus/merge-streams@2.3.0': {} - '@stylistic/eslint-plugin@2.11.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2)': + '@stylistic/eslint-plugin@2.11.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2)': dependencies: - '@typescript-eslint/utils': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2) + '@typescript-eslint/utils': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2) eslint: 9.15.0(jiti@2.4.0) eslint-visitor-keys: 4.2.0 espree: 10.3.0 @@ -10509,16 +10497,6 @@ snapshots: transitivePeerDependencies: - '@vue/composition-api' - '@tresjs/core@4.3.1(three@0.170.0)(vue@3.5.13(typescript@5.4.2))': - dependencies: - '@alvarosabu/utils': 3.2.0 - '@vue/devtools-api': 6.6.4 - '@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.4.2)) - three: 0.170.0 - vue: 3.5.13(typescript@5.4.2) - transitivePeerDependencies: - - '@vue/composition-api' - '@tresjs/core@4.3.1(three@0.170.0)(vue@3.5.13(typescript@5.7.2))': dependencies: '@alvarosabu/utils': 3.2.0 @@ -10529,9 +10507,9 @@ snapshots: transitivePeerDependencies: - '@vue/composition-api' - '@tresjs/eslint-config@1.4.0(@typescript-eslint/utils@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2))(@vue/compiler-sfc@3.5.13)(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2)': + '@tresjs/eslint-config@1.4.0(@typescript-eslint/utils@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2))(@vue/compiler-sfc@3.5.13)(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2)': dependencies: - '@antfu/eslint-config': 3.6.2(@typescript-eslint/utils@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2))(@vue/compiler-sfc@3.5.13)(eslint-plugin-format@0.1.2(eslint@9.15.0(jiti@2.4.0)))(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2) + '@antfu/eslint-config': 3.6.2(@typescript-eslint/utils@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2))(@vue/compiler-sfc@3.5.13)(eslint-plugin-format@0.1.2(eslint@9.15.0(jiti@2.4.0)))(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2) eslint: 9.15.0(jiti@2.4.0) eslint-plugin-format: 0.1.2(eslint@9.15.0(jiti@2.4.0)) transitivePeerDependencies: @@ -10589,7 +10567,7 @@ snapshots: pkg-types: 1.2.1 sirv: 2.0.4 three: 0.170.0 - typescript: 5.4.2 + typescript: 5.7.2 vite-plugin-glsl: 1.3.0(rollup@4.27.4)(vite@5.4.11(@types/node@22.10.0)(terser@5.36.0)) transitivePeerDependencies: - '@vue/composition-api' @@ -10627,7 +10605,7 @@ snapshots: pkg-types: 1.2.1 sirv: 2.0.4 three: 0.170.0 - typescript: 5.4.2 + typescript: 5.7.2 vite-plugin-glsl: 1.3.0(rollup@4.27.4)(vite@5.4.11(@types/node@22.10.0)(terser@5.36.0)) transitivePeerDependencies: - '@vue/composition-api' @@ -10666,7 +10644,7 @@ snapshots: pkg-types: 1.2.1 sirv: 2.0.4 three: 0.170.0 - typescript: 5.4.2 + typescript: 5.7.2 vite-plugin-glsl: 1.3.0(rollup@4.27.4)(vite@5.4.11(@types/node@22.10.0)(terser@5.36.0)) transitivePeerDependencies: - '@vue/composition-api' @@ -10705,7 +10683,7 @@ snapshots: pkg-types: 1.2.1 sirv: 2.0.4 three: 0.170.0 - typescript: 5.4.2 + typescript: 5.7.2 vite-plugin-glsl: 1.3.0(rollup@4.27.4)(vite@5.4.11(@types/node@22.10.0)(terser@5.36.0)) transitivePeerDependencies: - '@vue/composition-api' @@ -10744,7 +10722,7 @@ snapshots: pkg-types: 1.2.1 sirv: 2.0.4 three: 0.170.0 - typescript: 5.4.2 + typescript: 5.7.2 vite-plugin-glsl: 1.3.0(rollup@4.27.4)(vite@5.4.11(@types/node@22.10.0)(terser@5.36.0)) transitivePeerDependencies: - '@vue/composition-api' @@ -11235,34 +11213,34 @@ snapshots: '@types/webxr@0.5.20': {} - '@typescript-eslint/eslint-plugin@8.16.0(@typescript-eslint/parser@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2))(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2)': + '@typescript-eslint/eslint-plugin@8.16.0(@typescript-eslint/parser@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2))(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2) + '@typescript-eslint/parser': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2) '@typescript-eslint/scope-manager': 8.16.0 - '@typescript-eslint/type-utils': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2) - '@typescript-eslint/utils': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2) + '@typescript-eslint/type-utils': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2) + '@typescript-eslint/utils': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2) '@typescript-eslint/visitor-keys': 8.16.0 eslint: 9.15.0(jiti@2.4.0) graphemer: 1.4.0 ignore: 5.3.2 natural-compare: 1.4.0 - ts-api-utils: 1.4.2(typescript@5.4.2) + ts-api-utils: 1.4.2(typescript@5.7.2) optionalDependencies: - typescript: 5.4.2 + typescript: 5.7.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2)': + '@typescript-eslint/parser@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2)': dependencies: '@typescript-eslint/scope-manager': 8.16.0 '@typescript-eslint/types': 8.16.0 - '@typescript-eslint/typescript-estree': 8.16.0(typescript@5.4.2) + '@typescript-eslint/typescript-estree': 8.16.0(typescript@5.7.2) '@typescript-eslint/visitor-keys': 8.16.0 debug: 4.3.7 eslint: 9.15.0(jiti@2.4.0) optionalDependencies: - typescript: 5.4.2 + typescript: 5.7.2 transitivePeerDependencies: - supports-color @@ -11271,21 +11249,21 @@ snapshots: '@typescript-eslint/types': 8.16.0 '@typescript-eslint/visitor-keys': 8.16.0 - '@typescript-eslint/type-utils@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2)': + '@typescript-eslint/type-utils@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2)': dependencies: - '@typescript-eslint/typescript-estree': 8.16.0(typescript@5.4.2) - '@typescript-eslint/utils': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2) + '@typescript-eslint/typescript-estree': 8.16.0(typescript@5.7.2) + '@typescript-eslint/utils': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2) debug: 4.3.7 eslint: 9.15.0(jiti@2.4.0) - ts-api-utils: 1.4.2(typescript@5.4.2) + ts-api-utils: 1.4.2(typescript@5.7.2) optionalDependencies: - typescript: 5.4.2 + typescript: 5.7.2 transitivePeerDependencies: - supports-color '@typescript-eslint/types@8.16.0': {} - '@typescript-eslint/typescript-estree@8.16.0(typescript@5.4.2)': + '@typescript-eslint/typescript-estree@8.16.0(typescript@5.7.2)': dependencies: '@typescript-eslint/types': 8.16.0 '@typescript-eslint/visitor-keys': 8.16.0 @@ -11294,21 +11272,21 @@ snapshots: is-glob: 4.0.3 minimatch: 9.0.5 semver: 7.6.3 - ts-api-utils: 1.4.2(typescript@5.4.2) + ts-api-utils: 1.4.2(typescript@5.7.2) optionalDependencies: - typescript: 5.4.2 + typescript: 5.7.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2)': + '@typescript-eslint/utils@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2)': dependencies: '@eslint-community/eslint-utils': 4.4.1(eslint@9.15.0(jiti@2.4.0)) '@typescript-eslint/scope-manager': 8.16.0 '@typescript-eslint/types': 8.16.0 - '@typescript-eslint/typescript-estree': 8.16.0(typescript@5.4.2) + '@typescript-eslint/typescript-estree': 8.16.0(typescript@5.7.2) eslint: 9.15.0(jiti@2.4.0) optionalDependencies: - typescript: 5.4.2 + typescript: 5.7.2 transitivePeerDependencies: - supports-color @@ -11400,11 +11378,11 @@ snapshots: - rollup - supports-color - '@unocss/astro@0.64.1(rollup@4.27.4)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.4.2))': + '@unocss/astro@0.64.1(rollup@4.27.4)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))': dependencies: '@unocss/core': 0.64.1 '@unocss/reset': 0.64.1 - '@unocss/vite': 0.64.1(rollup@4.27.4)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.4.2)) + '@unocss/vite': 0.64.1(rollup@4.27.4)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2)) optionalDependencies: vite: 6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1) transitivePeerDependencies: @@ -11635,13 +11613,13 @@ snapshots: gzip-size: 6.0.0 sirv: 2.0.4 - '@unocss/inspector@0.64.1(vue@3.5.13(typescript@5.4.2))': + '@unocss/inspector@0.64.1(vue@3.5.13(typescript@5.7.2))': dependencies: '@unocss/core': 0.64.1 '@unocss/rule-utils': 0.64.1 gzip-size: 6.0.0 sirv: 2.0.4 - vue-flow-layout: 0.1.1(vue@3.5.13(typescript@5.4.2)) + vue-flow-layout: 0.1.1(vue@3.5.13(typescript@5.7.2)) transitivePeerDependencies: - vue @@ -12342,13 +12320,13 @@ snapshots: - rollup - supports-color - '@unocss/vite@0.64.1(rollup@4.27.4)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.4.2))': + '@unocss/vite@0.64.1(rollup@4.27.4)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))': dependencies: '@ampproject/remapping': 2.3.0 '@rollup/pluginutils': 5.1.3(rollup@4.27.4) '@unocss/config': 0.64.1 '@unocss/core': 0.64.1 - '@unocss/inspector': 0.64.1(vue@3.5.13(typescript@5.4.2)) + '@unocss/inspector': 0.64.1(vue@3.5.13(typescript@5.7.2)) chokidar: 3.6.0 magic-string: 0.30.14 tinyglobby: 0.2.10 @@ -12453,27 +12431,22 @@ snapshots: vite: 5.4.11(@types/node@22.10.0)(terser@5.36.0) vue: 3.5.12(typescript@5.7.2) - '@vitejs/plugin-vue@5.2.1(vite@5.4.11(@types/node@22.10.0)(terser@5.36.0))(vue@3.5.13(typescript@5.4.2))': - dependencies: - vite: 5.4.11(@types/node@22.10.0)(terser@5.36.0) - vue: 3.5.13(typescript@5.4.2) - '@vitejs/plugin-vue@5.2.1(vite@5.4.11(@types/node@22.10.0)(terser@5.36.0))(vue@3.5.13(typescript@5.7.2))': dependencies: vite: 5.4.11(@types/node@22.10.0)(terser@5.36.0) vue: 3.5.13(typescript@5.7.2) - '@vitejs/plugin-vue@5.2.1(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.4.2))': + '@vitejs/plugin-vue@5.2.1(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))': dependencies: vite: 6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1) - vue: 3.5.13(typescript@5.4.2) + vue: 3.5.13(typescript@5.7.2) - '@vitest/eslint-plugin@1.1.10(@typescript-eslint/utils@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2))(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2)': + '@vitest/eslint-plugin@1.1.10(@typescript-eslint/utils@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2))(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2)': dependencies: - '@typescript-eslint/utils': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2) + '@typescript-eslint/utils': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2) eslint: 9.15.0(jiti@2.4.0) optionalDependencies: - typescript: 5.4.2 + typescript: 5.7.2 '@volar/language-core@2.4.10': dependencies: @@ -12683,19 +12656,6 @@ snapshots: dependencies: rfdc: 1.4.1 - '@vue/language-core@2.1.10(typescript@5.4.2)': - dependencies: - '@volar/language-core': 2.4.10 - '@vue/compiler-dom': 3.5.13 - '@vue/compiler-vue2': 2.7.16 - '@vue/shared': 3.5.13 - alien-signals: 0.2.2 - minimatch: 9.0.5 - muggle-string: 0.4.1 - path-browserify: 1.0.1 - optionalDependencies: - typescript: 5.4.2 - '@vue/language-core@2.1.10(typescript@5.7.2)': dependencies: '@volar/language-core': 2.4.10 @@ -12708,9 +12668,8 @@ snapshots: path-browserify: 1.0.1 optionalDependencies: typescript: 5.7.2 - optional: true - '@vue/language-core@2.1.6(typescript@5.4.2)': + '@vue/language-core@2.1.6(typescript@5.7.2)': dependencies: '@volar/language-core': 2.4.10 '@vue/compiler-dom': 3.5.13 @@ -12721,7 +12680,7 @@ snapshots: muggle-string: 0.4.1 path-browserify: 1.0.1 optionalDependencies: - typescript: 5.4.2 + typescript: 5.7.2 '@vue/reactivity@3.5.12': dependencies: @@ -12761,12 +12720,6 @@ snapshots: '@vue/shared': 3.5.12 vue: 3.5.12(typescript@5.7.2) - '@vue/server-renderer@3.5.13(vue@3.5.13(typescript@5.4.2))': - dependencies: - '@vue/compiler-ssr': 3.5.13 - '@vue/shared': 3.5.13 - vue: 3.5.13(typescript@5.4.2) - '@vue/server-renderer@3.5.13(vue@3.5.13(typescript@5.7.2))': dependencies: '@vue/compiler-ssr': 3.5.13 @@ -12838,16 +12791,6 @@ snapshots: - '@vue/composition-api' - vue - '@vueuse/core@11.3.0(vue@3.5.13(typescript@5.4.2))': - dependencies: - '@types/web-bluetooth': 0.0.20 - '@vueuse/metadata': 11.3.0 - '@vueuse/shared': 11.3.0(vue@3.5.13(typescript@5.4.2)) - vue-demi: 0.14.10(vue@3.5.13(typescript@5.4.2)) - transitivePeerDependencies: - - '@vue/composition-api' - - vue - '@vueuse/core@11.3.0(vue@3.5.13(typescript@5.7.2))': dependencies: '@types/web-bluetooth': 0.0.20 @@ -12882,11 +12825,11 @@ snapshots: - '@vue/composition-api' - vue - '@vueuse/integrations@11.3.0(focus-trap@7.6.2)(fuse.js@7.0.0)(vue@3.5.13(typescript@5.4.2))': + '@vueuse/integrations@11.3.0(focus-trap@7.6.2)(fuse.js@7.0.0)(vue@3.5.13(typescript@5.7.2))': dependencies: - '@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.4.2)) - '@vueuse/shared': 11.3.0(vue@3.5.13(typescript@5.4.2)) - vue-demi: 0.14.10(vue@3.5.13(typescript@5.4.2)) + '@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.7.2)) + '@vueuse/shared': 11.3.0(vue@3.5.13(typescript@5.7.2)) + vue-demi: 0.14.10(vue@3.5.13(typescript@5.7.2)) optionalDependencies: focus-trap: 7.6.2 fuse.js: 7.0.0 @@ -12943,13 +12886,6 @@ snapshots: - '@vue/composition-api' - vue - '@vueuse/shared@11.3.0(vue@3.5.13(typescript@5.4.2))': - dependencies: - vue-demi: 0.14.10(vue@3.5.13(typescript@5.4.2)) - transitivePeerDependencies: - - '@vue/composition-api' - - vue - '@vueuse/shared@11.3.0(vue@3.5.13(typescript@5.7.2))': dependencies: vue-demi: 0.14.10(vue@3.5.13(typescript@5.7.2)) @@ -13743,14 +13679,14 @@ snapshots: core-util-is@1.0.3: {} - cosmiconfig@9.0.0(typescript@5.4.2): + cosmiconfig@9.0.0(typescript@5.7.2): dependencies: env-paths: 2.2.1 import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 optionalDependencies: - typescript: 5.4.2 + typescript: 5.7.2 crc-32@1.2.2: {} @@ -14236,9 +14172,9 @@ snapshots: prettier: 3.4.1 synckit: 0.9.2 - eslint-plugin-import-x@4.4.3(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2): + eslint-plugin-import-x@4.4.3(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2): dependencies: - '@typescript-eslint/utils': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2) + '@typescript-eslint/utils': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2) debug: 4.3.7 doctrine: 3.0.0 eslint: 9.15.0(jiti@2.4.0) @@ -14298,10 +14234,10 @@ snapshots: eslint-plugin-no-only-tests@3.3.0: {} - eslint-plugin-perfectionist@3.9.1(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2)(vue-eslint-parser@9.4.3(eslint@9.15.0(jiti@2.4.0))): + eslint-plugin-perfectionist@3.9.1(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2)(vue-eslint-parser@9.4.3(eslint@9.15.0(jiti@2.4.0))): dependencies: '@typescript-eslint/types': 8.16.0 - '@typescript-eslint/utils': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2) + '@typescript-eslint/utils': 8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2) eslint: 9.15.0(jiti@2.4.0) minimatch: 9.0.5 natural-compare-lite: 1.4.0 @@ -14352,11 +14288,11 @@ snapshots: semver: 7.6.3 strip-indent: 3.0.0 - eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.16.0(@typescript-eslint/parser@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2))(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2))(eslint@9.15.0(jiti@2.4.0)): + eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.16.0(@typescript-eslint/parser@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2))(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2))(eslint@9.15.0(jiti@2.4.0)): dependencies: eslint: 9.15.0(jiti@2.4.0) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.16.0(@typescript-eslint/parser@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2))(eslint@9.15.0(jiti@2.4.0))(typescript@5.4.2) + '@typescript-eslint/eslint-plugin': 8.16.0(@typescript-eslint/parser@8.16.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2))(eslint@9.15.0(jiti@2.4.0))(typescript@5.7.2) eslint-plugin-vue@9.31.0(eslint@9.15.0(jiti@2.4.0)): dependencies: @@ -16906,14 +16842,14 @@ snapshots: dependencies: jsesc: 0.5.0 - release-it@17.10.0(typescript@5.4.2): + release-it@17.10.0(typescript@5.7.2): dependencies: '@iarna/toml': 2.2.5 '@octokit/rest': 20.1.1 async-retry: 1.3.3 chalk: 5.3.0 ci-info: 4.1.0 - cosmiconfig: 9.0.0(typescript@5.4.2) + cosmiconfig: 9.0.0(typescript@5.7.2) execa: 8.0.0 git-url-parse: 14.0.0 globby: 14.0.2 @@ -17541,9 +17477,9 @@ snapshots: trim-lines@3.0.1: {} - ts-api-utils@1.4.2(typescript@5.4.2): + ts-api-utils@1.4.2(typescript@5.7.2): dependencies: - typescript: 5.4.2 + typescript: 5.7.2 ts-interface-checker@0.1.13: {} @@ -17591,10 +17527,6 @@ snapshots: typedarray@0.0.6: {} - typescript@5.4.2: {} - - typescript@5.6.1-rc: {} - typescript@5.7.2: {} ufo@1.5.4: {} @@ -17865,9 +17797,9 @@ snapshots: - rollup - supports-color - unocss@0.64.1(postcss@8.4.49)(rollup@4.27.4)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.4.2)): + unocss@0.64.1(postcss@8.4.49)(rollup@4.27.4)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2)): dependencies: - '@unocss/astro': 0.64.1(rollup@4.27.4)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.4.2)) + '@unocss/astro': 0.64.1(rollup@4.27.4)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2)) '@unocss/cli': 0.64.1(rollup@4.27.4) '@unocss/core': 0.64.1 '@unocss/postcss': 0.64.1(postcss@8.4.49) @@ -17883,7 +17815,7 @@ snapshots: '@unocss/transformer-compile-class': 0.64.1 '@unocss/transformer-directives': 0.64.1 '@unocss/transformer-variant-group': 0.64.1 - '@unocss/vite': 0.64.1(rollup@4.27.4)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.4.2)) + '@unocss/vite': 0.64.1(rollup@4.27.4)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2)) optionalDependencies: vite: 6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1) transitivePeerDependencies: @@ -18133,18 +18065,18 @@ snapshots: dependencies: vite: 6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1) - vite-plugin-dts@4.3.0(@types/node@22.10.0)(rollup@4.27.4)(typescript@5.4.2)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)): + vite-plugin-dts@4.3.0(@types/node@22.10.0)(rollup@4.27.4)(typescript@5.7.2)(vite@6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)): dependencies: '@microsoft/api-extractor': 7.48.0(@types/node@22.10.0) '@rollup/pluginutils': 5.1.3(rollup@4.27.4) '@volar/typescript': 2.4.10 - '@vue/language-core': 2.1.6(typescript@5.4.2) + '@vue/language-core': 2.1.6(typescript@5.7.2) compare-versions: 6.1.1 debug: 4.3.7 kolorist: 1.8.0 local-pkg: 0.5.1 magic-string: 0.30.14 - typescript: 5.4.2 + typescript: 5.7.2 optionalDependencies: vite: 6.0.0(@types/node@22.10.0)(jiti@2.4.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1) transitivePeerDependencies: @@ -18197,11 +18129,6 @@ snapshots: transitivePeerDependencies: - supports-color - vite-svg-loader@5.1.0(vue@3.5.13(typescript@5.4.2)): - dependencies: - svgo: 3.3.2 - vue: 3.5.13(typescript@5.4.2) - vite-svg-loader@5.1.0(vue@3.5.13(typescript@5.7.2)): dependencies: svgo: 3.3.2 @@ -18278,7 +18205,7 @@ snapshots: - typescript - universal-cookie - vitepress@1.5.0(@algolia/client-search@5.15.0)(@types/node@22.10.0)(fuse.js@7.0.0)(postcss@8.4.49)(search-insights@2.17.3)(terser@5.36.0)(typescript@5.4.2): + vitepress@1.5.0(@algolia/client-search@5.15.0)(@types/node@22.10.0)(fuse.js@7.0.0)(postcss@8.4.49)(search-insights@2.17.3)(terser@5.36.0)(typescript@5.7.2): dependencies: '@docsearch/css': 3.8.0 '@docsearch/js': 3.8.0(@algolia/client-search@5.15.0)(search-insights@2.17.3) @@ -18287,17 +18214,17 @@ snapshots: '@shikijs/transformers': 1.23.1 '@shikijs/types': 1.23.1 '@types/markdown-it': 14.1.2 - '@vitejs/plugin-vue': 5.2.1(vite@5.4.11(@types/node@22.10.0)(terser@5.36.0))(vue@3.5.13(typescript@5.4.2)) + '@vitejs/plugin-vue': 5.2.1(vite@5.4.11(@types/node@22.10.0)(terser@5.36.0))(vue@3.5.13(typescript@5.7.2)) '@vue/devtools-api': 7.6.4 '@vue/shared': 3.5.13 - '@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.4.2)) - '@vueuse/integrations': 11.3.0(focus-trap@7.6.2)(fuse.js@7.0.0)(vue@3.5.13(typescript@5.4.2)) + '@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.7.2)) + '@vueuse/integrations': 11.3.0(focus-trap@7.6.2)(fuse.js@7.0.0)(vue@3.5.13(typescript@5.7.2)) focus-trap: 7.6.2 mark.js: 8.11.1 minisearch: 7.1.1 shiki: 1.23.1 vite: 5.4.11(@types/node@22.10.0)(terser@5.36.0) - vue: 3.5.13(typescript@5.4.2) + vue: 3.5.13(typescript@5.7.2) optionalDependencies: postcss: 8.4.49 transitivePeerDependencies: @@ -18359,10 +18286,6 @@ snapshots: dependencies: vue: 3.5.12(typescript@5.7.2) - vue-demi@0.14.10(vue@3.5.13(typescript@5.4.2)): - dependencies: - vue: 3.5.13(typescript@5.4.2) - vue-demi@0.14.10(vue@3.5.13(typescript@5.7.2)): dependencies: vue: 3.5.13(typescript@5.7.2) @@ -18382,9 +18305,9 @@ snapshots: transitivePeerDependencies: - supports-color - vue-flow-layout@0.1.1(vue@3.5.13(typescript@5.4.2)): + vue-flow-layout@0.1.1(vue@3.5.13(typescript@5.7.2)): dependencies: - vue: 3.5.13(typescript@5.4.2) + vue: 3.5.13(typescript@5.7.2) vue-router@4.4.5(vue@3.5.12(typescript@5.7.2)): dependencies: @@ -18396,20 +18319,12 @@ snapshots: '@vue/devtools-api': 6.6.4 vue: 3.5.13(typescript@5.7.2) - vue-tsc@2.1.10(typescript@5.4.2): - dependencies: - '@volar/typescript': 2.4.10 - '@vue/language-core': 2.1.10(typescript@5.4.2) - semver: 7.6.3 - typescript: 5.4.2 - vue-tsc@2.1.10(typescript@5.7.2): dependencies: '@volar/typescript': 2.4.10 '@vue/language-core': 2.1.10(typescript@5.7.2) semver: 7.6.3 typescript: 5.7.2 - optional: true vue@3.5.12(typescript@5.7.2): dependencies: @@ -18421,16 +18336,6 @@ snapshots: optionalDependencies: typescript: 5.7.2 - vue@3.5.13(typescript@5.4.2): - dependencies: - '@vue/compiler-dom': 3.5.13 - '@vue/compiler-sfc': 3.5.13 - '@vue/runtime-dom': 3.5.13 - '@vue/server-renderer': 3.5.13(vue@3.5.13(typescript@5.4.2)) - '@vue/shared': 3.5.13 - optionalDependencies: - typescript: 5.4.2 - vue@3.5.13(typescript@5.7.2): dependencies: '@vue/compiler-dom': 3.5.13 diff --git a/renovate.json b/renovate.json index a9e2cfd2..cc305199 100644 --- a/renovate.json +++ b/renovate.json @@ -3,7 +3,6 @@ "extends": [ "config:base" ], - "ignoreDeps": ["@arethetypeswrong/cli", "typescript"], "packageRules": [ { "matchUpdateTypes": ["minor", "patch"], From d0969ed55c768c43226b84d4f0a31310c14ccbff Mon Sep 17 00:00:00 2001 From: userquin Date: Fri, 20 Dec 2024 18:14:25 +0100 Subject: [PATCH 4/4] chore: remove ts 5.7.2 pin --- package.json | 4 ++-- pnpm-lock.yaml | 24 ++++++++++++------------ 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/package.json b/package.json index 9e003326..eaf3b6a4 100644 --- a/package.json +++ b/package.json @@ -88,7 +88,7 @@ "rollup-plugin-analyzer": "^4.0.0", "rollup-plugin-visualizer": "^5.12.0", "three": "^0.170.0", - "typescript": "5.7.2", + "typescript": "^5.7.2", "unocss": "^0.64.1", "vite": "^6.0.0", "vite-plugin-banner": "^0.8.0", @@ -100,7 +100,7 @@ }, "pnpm": { "overrides": { - "typescript": "5.7.2" + "typescript": "^5.7.2" } } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 65cc2d35..59f28684 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -5,7 +5,7 @@ settings: excludeLinksFromLockfile: false overrides: - typescript: 5.7.2 + typescript: ^5.7.2 importers: @@ -64,7 +64,7 @@ importers: specifier: ^0.170.0 version: 0.170.0 typescript: - specifier: 5.7.2 + specifier: ^5.7.2 version: 5.7.2 unocss: specifier: ^0.64.1 @@ -3081,7 +3081,7 @@ packages: peerDependencies: '@typescript-eslint/utils': '>= 8.0' eslint: '>= 8.57.0' - typescript: 5.7.2 + typescript: ^5.7.2 vitest: '*' peerDependenciesMeta: typescript: @@ -3182,7 +3182,7 @@ packages: '@vue/language-core@2.1.10': resolution: {integrity: sha512-DAI289d0K3AB5TUG3xDp9OuQ71CnrujQwJrQnfuZDwo6eGNf0UoRlPuaVNO+Zrn65PC3j0oB2i7mNmVPggeGeQ==} peerDependencies: - typescript: 5.7.2 + typescript: ^5.7.2 peerDependenciesMeta: typescript: optional: true @@ -3190,7 +3190,7 @@ packages: '@vue/language-core@2.1.6': resolution: {integrity: sha512-MW569cSky9R/ooKMh6xa2g1D0AtRKbL56k83dzus/bx//RDJk24RHWkMzbAlXjMdDNyxAaagKPRquBIxkxlCkg==} peerDependencies: - typescript: 5.7.2 + typescript: ^5.7.2 peerDependenciesMeta: typescript: optional: true @@ -4058,7 +4058,7 @@ packages: resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==} engines: {node: '>=14'} peerDependencies: - typescript: 5.7.2 + typescript: ^5.7.2 peerDependenciesMeta: typescript: optional: true @@ -7256,7 +7256,7 @@ packages: resolution: {integrity: sha512-ZF5gQIQa/UmzfvxbHZI3JXN0/Jt+vnAfAviNRAMc491laiK6YCLpCW9ft8oaCRFOTxCZtUTE6XB0ZQAe3olntw==} engines: {node: '>=16'} peerDependencies: - typescript: 5.7.2 + typescript: ^5.7.2 ts-interface-checker@0.1.13: resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} @@ -7643,7 +7643,7 @@ packages: meow: ^9.0.0 optionator: ^0.9.1 stylelint: '>=13' - typescript: 5.7.2 + typescript: ^5.7.2 vite: '>=2.0.0' vls: '*' vti: '*' @@ -7677,7 +7677,7 @@ packages: resolution: {integrity: sha512-LkBJh9IbLwL6/rxh0C1/bOurDrIEmRE7joC+jFdOEEciAFPbpEKOLSAr5nNh5R7CJ45cMbksTrFfy52szzC5eA==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: - typescript: 5.7.2 + typescript: ^5.7.2 vite: '*' peerDependenciesMeta: vite: @@ -7876,12 +7876,12 @@ packages: resolution: {integrity: sha512-RBNSfaaRHcN5uqVqJSZh++Gy/YUzryuv9u1aFWhsammDJXNtUiJMNoJ747lZcQ68wUQFx6E73y4FY3D8E7FGMA==} hasBin: true peerDependencies: - typescript: 5.7.2 + typescript: ^5.7.2 vue@3.5.12: resolution: {integrity: sha512-CLVZtXtn2ItBIi/zHZ0Sg1Xkb7+PU32bJJ8Bmy7ts3jxXTcbfsEfBivFYYWz1Hur+lalqGAh65Coin0r+HRUfg==} peerDependencies: - typescript: 5.7.2 + typescript: ^5.7.2 peerDependenciesMeta: typescript: optional: true @@ -7889,7 +7889,7 @@ packages: vue@3.5.13: resolution: {integrity: sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==} peerDependencies: - typescript: 5.7.2 + typescript: ^5.7.2 peerDependenciesMeta: typescript: optional: true