diff --git a/configs/eslint-config-custom/eslint.config.typescript.js b/configs/eslint-config-custom/eslint.config.typescript.js index 0486b39..acf5112 100644 --- a/configs/eslint-config-custom/eslint.config.typescript.js +++ b/configs/eslint-config-custom/eslint.config.typescript.js @@ -30,7 +30,6 @@ export function eslintConfig(userConfigs = []) { { languageOptions: { parserOptions: { - project: ["tsconfig.json"], tsconfigRootDir: cwd(), projectService: true, diff --git a/configs/eslint-config-custom/package.json b/configs/eslint-config-custom/package.json index 36554f7..584f2a7 100644 --- a/configs/eslint-config-custom/package.json +++ b/configs/eslint-config-custom/package.json @@ -17,18 +17,18 @@ } }, "devDependencies": { - "@eslint/js": "^9.38.0", - "@types/node": "^25.0.5", - "@typescript-eslint/parser": "^8.46.2", - "eslint": "^9.38.0", + "@eslint/js": "^9.39.2", + "@types/node": "^25.0.6", + "@typescript-eslint/parser": "^8.52.0", + "eslint": "^9.39.2", "eslint-config-prettier": "^10.1.8", "eslint-plugin-prettier": "^5.5.4", - "eslint-plugin-yml": "^1.19.0", + "eslint-plugin-yml": "^1.19.1", "globals": "^17.0.0", "prettier": "^3.7.4", "prettier-config-custom": "workspace:^", "typescript": "^5.9.3", - "typescript-eslint": "^8.46.2", + "typescript-eslint": "^8.52.0", "yaml-eslint-parser": "^1.3.2" }, "prettier": "prettier-config-custom" diff --git a/configs/vite-config-custom/package.json b/configs/vite-config-custom/package.json index b718ef9..c5250e8 100644 --- a/configs/vite-config-custom/package.json +++ b/configs/vite-config-custom/package.json @@ -27,10 +27,10 @@ "vite-config-builder": "^0.1.1", "vite-plugin-dts-build": "^0.2.2", "vite-plugin-externalize-deps": "^0.10.0", - "vite-tsconfig-paths": "^5.1.4" + "vite-tsconfig-paths": "^6.0.4" }, "dependencies": { "typescript": "^5.9.3", - "vite": "^7.1.12" + "vite": "^7.3.1" } } diff --git a/configs/vite-config-custom/src/index.ts b/configs/vite-config-custom/src/index.ts index cb6eb8f..4ac4041 100644 --- a/configs/vite-config-custom/src/index.ts +++ b/configs/vite-config-custom/src/index.ts @@ -1,4 +1,5 @@ import { resolve, join } from "node:path"; +import { existsSync } from "node:fs"; import { cwd, env } from "node:process"; import { initConfigBuilder, ViteEnv, PluginBuilder } from "vite-config-builder"; @@ -161,7 +162,12 @@ function initCommonBuilder(viteConfigEnv: ConfigEnv) { }); } - const plugins = new PluginBuilder([tsconfigPaths()]); + const tsconfigPath = resolve(cwd(), "tsconfig.lib.json"); + const plugins = new PluginBuilder([ + tsconfigPaths({ + projects: existsSync(tsconfigPath) ? [tsconfigPath] : undefined + }) + ]); return { configs, diff --git a/examples/react-babel/eslint.config.js b/examples/react-babel/eslint.config.js index 3c0a0d6..2471405 100644 --- a/examples/react-babel/eslint.config.js +++ b/examples/react-babel/eslint.config.js @@ -1,33 +1,32 @@ import { resolve } from "node:path"; import { cwd } from "node:process"; -import globals from 'globals' +import globals from "globals"; import { defineConfig } from "eslint/config"; -import eslint from '@eslint/js' -import tseslint from 'typescript-eslint' +import eslint from "@eslint/js"; +import tseslint from "typescript-eslint"; import tsParser from "@typescript-eslint/parser"; -import reactRefreshPlugin from 'eslint-plugin-react-refresh' -import reactHooksPlugin from 'eslint-plugin-react-hooks' +import reactRefreshPlugin from "eslint-plugin-react-refresh"; +import reactHooksPlugin from "eslint-plugin-react-hooks"; const PACKAGE_ROOT = resolve(cwd()); export default defineConfig( - eslint.configs.recommended, - ...tseslint.configs.recommended, + eslint.configs.recommended, + ...tseslint.configs.recommended, reactHooksPlugin.configs.flat.recommended, { languageOptions: { parserOptions: { tsconfigRootDir: PACKAGE_ROOT, projectService: true, - }, - }, + } + } }, { - files: ['**/*.{ts,tsx}'], + files: ["**/*.{ts,tsx}"], languageOptions: { parser: tsParser, parserOptions: { - project: ["tsconfig.json"], tsconfigRootDir: cwd(), projectService: true, @@ -37,22 +36,22 @@ export default defineConfig( } }, plugins: { - 'react-hooks': reactHooksPlugin, - 'react-refresh': reactRefreshPlugin, + "react-hooks": reactHooksPlugin, + "react-refresh": reactRefreshPlugin }, rules: { ...reactHooksPlugin.configs.recommended.rules, - 'react-refresh/only-export-components': [ - 'warn', - { allowConstantExport: true }, - ], - }, + "react-refresh/only-export-components": [ + "warn", + { allowConstantExport: true } + ] + } }, { files: ["*.js", "*.cjs", "*.mjs"], - extends: [tseslint.configs.disableTypeChecked], + extends: [tseslint.configs.disableTypeChecked] }, { - ignores: ["dist/**"], - }, -) + ignores: ["dist/**"] + } +); diff --git a/examples/react-babel/package.json b/examples/react-babel/package.json index 5e60312..37dd9f8 100644 --- a/examples/react-babel/package.json +++ b/examples/react-babel/package.json @@ -35,20 +35,20 @@ "scheduler": "^0.27.0" }, "devDependencies": { - "@eslint/js": "^9.38.0", + "@eslint/js": "^9.39.2", "@types/babel__core": "^7.20.5", "@types/cssesc": "^3.0.2", "@types/react": "^19.2.8", "@types/react-dom": "^19.2.3", "@types/scheduler": "^0.26.0", - "@typescript-eslint/parser": "^8.46.2", + "@typescript-eslint/parser": "^8.52.0", "@vitejs/plugin-react": "^5.1.2", - "eslint": "^9.38.0", - "eslint-plugin-react-hooks": "^7.0.0", - "eslint-plugin-react-refresh": "^0.4.24", + "eslint": "^9.39.2", + "eslint-plugin-react-hooks": "^7.0.1", + "eslint-plugin-react-refresh": "^0.4.26", "globals": "^17.0.0", "typescript": "~5.9.3", - "typescript-eslint": "^8.46.2", - "vite": "^7.1.12" + "typescript-eslint": "^8.52.0", + "vite": "^7.3.1" } } diff --git a/examples/react-swc/eslint.config.js b/examples/react-swc/eslint.config.js index 80960fb..838d6f4 100644 --- a/examples/react-swc/eslint.config.js +++ b/examples/react-swc/eslint.config.js @@ -9,6 +9,9 @@ import reactRefreshPlugin from "eslint-plugin-react-refresh"; import reactHooksPlugin from "eslint-plugin-react-hooks"; const PACKAGE_ROOT = resolve(cwd()); +const reactHooksPluginCompat = /** @type {import("eslint").ESLint.Plugin} */ ( + reactHooksPlugin +); export default defineConfig( eslint.configs.recommended, @@ -37,7 +40,7 @@ export default defineConfig( }, plugins: { "react-refresh": reactRefreshPlugin, - "react-hooks": reactHooksPlugin, + "react-hooks": reactHooksPluginCompat, }, rules: { ...reactHooksPlugin.configs.recommended.rules, @@ -45,7 +48,7 @@ export default defineConfig( "warn", { allowConstantExport: true }, ], - } + }, }, { files: ["*.js", "*.cjs", "*.mjs"], diff --git a/examples/react-swc/package.json b/examples/react-swc/package.json index 1c4462e..592d3ff 100644 --- a/examples/react-swc/package.json +++ b/examples/react-swc/package.json @@ -15,22 +15,22 @@ "react-dom": "^19.2.3" }, "devDependencies": { - "@eslint/js": "^9.38.0", + "@eslint/js": "^9.39.2", "@mincho-js/css": "workspace:^", "@types/react": "^19.2.8", "@types/react-dom": "^19.2.3", - "@typescript-eslint/eslint-plugin": "^8.46.2", - "@typescript-eslint/parser": "^8.46.2", + "@typescript-eslint/eslint-plugin": "^8.52.0", + "@typescript-eslint/parser": "^8.52.0", "@vanilla-extract/css": "^1.17.4", "@vanilla-extract/esbuild-plugin": "^2.3.21", "@vanilla-extract/vite-plugin": "^5.1.4", "@vitejs/plugin-react-swc": "^4.2.2", - "eslint": "^9.38.0", - "eslint-plugin-react-hooks": "^7.0.0", - "eslint-plugin-react-refresh": "^0.4.24", + "eslint": "^9.39.2", + "eslint-plugin-react-hooks": "^7.0.1", + "eslint-plugin-react-refresh": "^0.4.26", "globals": "^17.0.0", "typescript": "^5.9.3", - "typescript-eslint": "^8.46.2", - "vite": "^7.1.12" + "typescript-eslint": "^8.52.0", + "vite": "^7.3.1" } } diff --git a/package.json b/package.json index 132da1e..064f1ca 100644 --- a/package.json +++ b/package.json @@ -52,13 +52,13 @@ "@mincho-js/debug-log": "workspace:^", "@monorepo-utils/workspaces-to-typescript-project-references": "^2.11.0", "@types/eslint": "^9.6.1", - "@types/node": "^25.0.5", + "@types/node": "^25.0.6", "@typescript/analyze-trace": "^0.10.1", "@vanilla-extract/vite-plugin": "^5.1.4", "@vitest/coverage-v8": "^4.0.16", "@yarnpkg/types": "^4.0.1", "c8": "^10.1.3", - "eslint": "^9.38.0", + "eslint": "^9.39.2", "eslint-config-custom": "workspace:^", "prettier": "^3.7.4", "prettier-config-custom": "workspace:^", @@ -68,8 +68,8 @@ "tsconfig-custom": "workspace:^", "turbo": "^2.7.3", "typescript": "^5.9.3", - "vite": "^7.1.12", - "vite-node": "^3.2.4", + "vite": "^7.3.1", + "vite-node": "^5.2.0", "vitest": "^4.0.16", "yarn-constraints-rules": "^0.1.0" }, diff --git a/packages/vite/package.json b/packages/vite/package.json index 1f5da63..d7d9b14 100644 --- a/packages/vite/package.json +++ b/packages/vite/package.json @@ -62,7 +62,7 @@ }, "devDependencies": { "@types/babel__core": "^7.20.5", - "@types/node": "^25.0.5", + "@types/node": "^25.0.6", "@vanilla-extract/css": "^1.17.4", "@vanilla-extract/recipes": "^0.5.7", "eslint-config-custom": "workspace:^", diff --git a/yarn.lock b/yarn.lock index a2cb0ef..e7878c6 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1079,7 +1079,7 @@ __metadata: languageName: node linkType: hard -"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.7.0, @eslint-community/eslint-utils@npm:^4.8.0": +"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.8.0": version: 4.9.0 resolution: "@eslint-community/eslint-utils@npm:4.9.0" dependencies: @@ -1090,13 +1090,31 @@ __metadata: languageName: node linkType: hard -"@eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.12.1, @eslint-community/regexpp@npm:^4.6.1": +"@eslint-community/eslint-utils@npm:^4.9.1": + version: 4.9.1 + resolution: "@eslint-community/eslint-utils@npm:4.9.1" + dependencies: + eslint-visitor-keys: "npm:^3.4.3" + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + checksum: 10/863b5467868551c9ae34d03eefe634633d08f623fc7b19d860f8f26eb6f303c1a5934253124163bee96181e45ed22bf27473dccc295937c3078493a4a8c9eddd + languageName: node + linkType: hard + +"@eslint-community/regexpp@npm:^4.12.1, @eslint-community/regexpp@npm:^4.6.1": version: 4.12.1 resolution: "@eslint-community/regexpp@npm:4.12.1" checksum: 10/c08f1dd7dd18fbb60bdd0d85820656d1374dd898af9be7f82cb00451313402a22d5e30569c150315b4385907cdbca78c22389b2a72ab78883b3173be317620cc languageName: node linkType: hard +"@eslint-community/regexpp@npm:^4.12.2": + version: 4.12.2 + resolution: "@eslint-community/regexpp@npm:4.12.2" + checksum: 10/049b280fddf71dd325514e0a520024969431dc3a8b02fa77476e6820e9122f28ab4c9168c11821f91a27982d2453bcd7a66193356ea84e84fb7c8d793be1ba0c + languageName: node + linkType: hard + "@eslint/config-array@npm:^0.21.1": version: 0.21.1 resolution: "@eslint/config-array@npm:0.21.1" @@ -1108,21 +1126,21 @@ __metadata: languageName: node linkType: hard -"@eslint/config-helpers@npm:^0.4.1": - version: 0.4.1 - resolution: "@eslint/config-helpers@npm:0.4.1" +"@eslint/config-helpers@npm:^0.4.2": + version: 0.4.2 + resolution: "@eslint/config-helpers@npm:0.4.2" dependencies: - "@eslint/core": "npm:^0.16.0" - checksum: 10/e3e6ea4cd19f5a9b803b2d0b3f174d53fcd27415587e49943144994104a42845cf300ed6ffdbd149d958482a49de99c326f9ae4c18c9467727ec60ad36cb5ef9 + "@eslint/core": "npm:^0.17.0" + checksum: 10/3f2b4712d8e391c36ec98bc200f7dea423dfe518e42956569666831b89ede83b33120c761dfd3ab6347d8e8894a6d4af47254a18d464a71c6046fd88065f6daf languageName: node linkType: hard -"@eslint/core@npm:^0.16.0": - version: 0.16.0 - resolution: "@eslint/core@npm:0.16.0" +"@eslint/core@npm:^0.17.0": + version: 0.17.0 + resolution: "@eslint/core@npm:0.17.0" dependencies: "@types/json-schema": "npm:^7.0.15" - checksum: 10/3cea45971b2d0114267b6101b673270b5d8047448cc7a8cbfdca0b0245e9d5e081cb25f13551dc7d55a090f98c13b33f0c4999f8ee8ab058537e6037629a0f71 + checksum: 10/f9a428cc651ec15fb60d7d60c2a7bacad4666e12508320eafa98258e976fafaa77d7be7be91519e75f801f15f830105420b14a458d4aab121a2b0a59bc43517b languageName: node linkType: hard @@ -1167,10 +1185,10 @@ __metadata: languageName: node linkType: hard -"@eslint/js@npm:9.38.0, @eslint/js@npm:^9.38.0": - version: 9.38.0 - resolution: "@eslint/js@npm:9.38.0" - checksum: 10/08ba53e3e631e2815ff33e0f48dccf87daf3841eb5605fa5980d18b88cd6dd4cd63b5829ac015e97eeb85807bf91efe7d4e1d4eaf6beb586bc01549b7660c4a2 +"@eslint/js@npm:9.39.2, @eslint/js@npm:^9.39.2": + version: 9.39.2 + resolution: "@eslint/js@npm:9.39.2" + checksum: 10/6b7f676746f3111b5d1b23715319212ab9297868a0fa9980d483c3da8965d5841673aada2d5653e85a3f7156edee0893a7ae7035211b4efdcb2848154bb947f2 languageName: node linkType: hard @@ -1181,13 +1199,13 @@ __metadata: languageName: node linkType: hard -"@eslint/plugin-kit@npm:^0.4.0": - version: 0.4.0 - resolution: "@eslint/plugin-kit@npm:0.4.0" +"@eslint/plugin-kit@npm:^0.4.1": + version: 0.4.1 + resolution: "@eslint/plugin-kit@npm:0.4.1" dependencies: - "@eslint/core": "npm:^0.16.0" + "@eslint/core": "npm:^0.17.0" levn: "npm:^0.4.1" - checksum: 10/2c37ca00e352447215aeadcaff5765faead39695f1cb91cd3079a43261b234887caf38edc462811bb3401acf8c156c04882f87740df936838290c705351483be + checksum: 10/c5947d0ffeddca77d996ac1b886a66060c1a15ed1d5e425d0c7e7d7044a4bd3813fc968892d03950a7831c9b89368a2f7b281e45dd3c74a048962b74bf3a1cb4 languageName: node linkType: hard @@ -1553,7 +1571,7 @@ __metadata: "@mincho-js/transform-to-vanilla": "workspace:^" "@rollup/pluginutils": "npm:^5.3.0" "@types/babel__core": "npm:^7.20.5" - "@types/node": "npm:^25.0.5" + "@types/node": "npm:^25.0.6" "@vanilla-extract/css": "npm:^1.17.4" "@vanilla-extract/integration": "npm:^8.0.7" "@vanilla-extract/recipes": "npm:^0.5.7" @@ -2128,12 +2146,12 @@ __metadata: languageName: node linkType: hard -"@types/node@npm:^25.0.5": - version: 25.0.5 - resolution: "@types/node@npm:25.0.5" +"@types/node@npm:^25.0.6": + version: 25.0.6 + resolution: "@types/node@npm:25.0.6" dependencies: undici-types: "npm:~7.16.0" - checksum: 10/4e1b7cc8ded8a8a8d0216fcb3a8c666a468737fc901f24f9a65ecadd177db4e556b75713fd964c6e172a6968a29e2bfb79aa467a16ed5e47ec2d134396670e99 + checksum: 10/19d6dcaccc49b8d9efd987d6e7573f84cf3665fbe88adc0eb08e87d3682a36a4a6997a5ead2a11c79eb891c0e0c5260caef23bd262e5772708d95330d5b7ddf1 languageName: node linkType: hard @@ -2169,40 +2187,39 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/eslint-plugin@npm:8.46.2, @typescript-eslint/eslint-plugin@npm:^8.46.2": - version: 8.46.2 - resolution: "@typescript-eslint/eslint-plugin@npm:8.46.2" +"@typescript-eslint/eslint-plugin@npm:8.52.0, @typescript-eslint/eslint-plugin@npm:^8.52.0": + version: 8.52.0 + resolution: "@typescript-eslint/eslint-plugin@npm:8.52.0" dependencies: - "@eslint-community/regexpp": "npm:^4.10.0" - "@typescript-eslint/scope-manager": "npm:8.46.2" - "@typescript-eslint/type-utils": "npm:8.46.2" - "@typescript-eslint/utils": "npm:8.46.2" - "@typescript-eslint/visitor-keys": "npm:8.46.2" - graphemer: "npm:^1.4.0" - ignore: "npm:^7.0.0" + "@eslint-community/regexpp": "npm:^4.12.2" + "@typescript-eslint/scope-manager": "npm:8.52.0" + "@typescript-eslint/type-utils": "npm:8.52.0" + "@typescript-eslint/utils": "npm:8.52.0" + "@typescript-eslint/visitor-keys": "npm:8.52.0" + ignore: "npm:^7.0.5" natural-compare: "npm:^1.4.0" - ts-api-utils: "npm:^2.1.0" + ts-api-utils: "npm:^2.4.0" peerDependencies: - "@typescript-eslint/parser": ^8.46.2 + "@typescript-eslint/parser": ^8.52.0 eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <6.0.0" - checksum: 10/00c659fcc04c185e6cdfb6c7e52beae1935f1475fef4079193a719f93858b6255e07b4764fc7104e9524a4d0b7652e63616b93e7f112f1cba4e983d10383e224 + checksum: 10/4f2a2ada2597cfa22c913d436a4ce3f0d20fa17445dda0c6b3eb6088c4b0d1d8ba0ebc0a72c6a1577a3e58c96f7a2f260c201646cb1fb0308a0e248cc9d81cca languageName: node linkType: hard -"@typescript-eslint/parser@npm:8.46.2, @typescript-eslint/parser@npm:^8.46.2": - version: 8.46.2 - resolution: "@typescript-eslint/parser@npm:8.46.2" +"@typescript-eslint/parser@npm:8.52.0, @typescript-eslint/parser@npm:^8.52.0": + version: 8.52.0 + resolution: "@typescript-eslint/parser@npm:8.52.0" dependencies: - "@typescript-eslint/scope-manager": "npm:8.46.2" - "@typescript-eslint/types": "npm:8.46.2" - "@typescript-eslint/typescript-estree": "npm:8.46.2" - "@typescript-eslint/visitor-keys": "npm:8.46.2" - debug: "npm:^4.3.4" + "@typescript-eslint/scope-manager": "npm:8.52.0" + "@typescript-eslint/types": "npm:8.52.0" + "@typescript-eslint/typescript-estree": "npm:8.52.0" + "@typescript-eslint/visitor-keys": "npm:8.52.0" + debug: "npm:^4.4.3" peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <6.0.0" - checksum: 10/2ee394d880b5a9372ecf50ddbf70f66e9ecc16691a210dd40b5b152310a539005dfed13105e0adc81f1a9f49d86f7b78ddf3bf8d777fe84c179eb6a8be2fa56c + checksum: 10/f221411fb3cc6c5a9e9fa6bec45cd16d5e5d7c1eeba331c97dae97756103bd4b5f67956e2288d478ad96cce7bc4c3c91b510b06d54283c7c0c86acaf4cdb4abf languageName: node linkType: hard @@ -2224,16 +2241,16 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/project-service@npm:8.46.2": - version: 8.46.2 - resolution: "@typescript-eslint/project-service@npm:8.46.2" +"@typescript-eslint/project-service@npm:8.52.0": + version: 8.52.0 + resolution: "@typescript-eslint/project-service@npm:8.52.0" dependencies: - "@typescript-eslint/tsconfig-utils": "npm:^8.46.2" - "@typescript-eslint/types": "npm:^8.46.2" - debug: "npm:^4.3.4" + "@typescript-eslint/tsconfig-utils": "npm:^8.52.0" + "@typescript-eslint/types": "npm:^8.52.0" + debug: "npm:^4.4.3" peerDependencies: typescript: ">=4.8.4 <6.0.0" - checksum: 10/76ba446f86e83b4afd6dacbebc9a0737b5a3e0500a0712b37fea4f0141dcf4c9238e8e5a9a649cf609a4624cc575431506a2a56432aaa18d4c3a8cf2df9d1480 + checksum: 10/bfa786007ed4a603fb8f31c6e354f0ba0cca576b03e402584ae3cf0d674f07adfbde9e976a5bf165fa44c484d4b4f310bd18b34d1b0e75b4210253edbdaabb87 languageName: node linkType: hard @@ -2247,38 +2264,38 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/scope-manager@npm:8.46.2": - version: 8.46.2 - resolution: "@typescript-eslint/scope-manager@npm:8.46.2" +"@typescript-eslint/scope-manager@npm:8.52.0": + version: 8.52.0 + resolution: "@typescript-eslint/scope-manager@npm:8.52.0" dependencies: - "@typescript-eslint/types": "npm:8.46.2" - "@typescript-eslint/visitor-keys": "npm:8.46.2" - checksum: 10/6a8a9b644ff57ca9e992348553f19f6e010d76ff4872d972d333a16952e93cce4bf5096a1fefe1af8b452bce963fde6c78410d15817e673b75176ec3241949e9 + "@typescript-eslint/types": "npm:8.52.0" + "@typescript-eslint/visitor-keys": "npm:8.52.0" + checksum: 10/89d9c04cd2567e6aa9adcbe85e2eab24fbc64bde5a33c688764e7c896e9a02c06aad2ec88e8bdc4d5bfabadbc510906a0cb4f3e0b73a5b80d10218f7a6a4ea27 languageName: node linkType: hard -"@typescript-eslint/tsconfig-utils@npm:8.46.2, @typescript-eslint/tsconfig-utils@npm:^8.46.2": - version: 8.46.2 - resolution: "@typescript-eslint/tsconfig-utils@npm:8.46.2" +"@typescript-eslint/tsconfig-utils@npm:8.52.0, @typescript-eslint/tsconfig-utils@npm:^8.52.0": + version: 8.52.0 + resolution: "@typescript-eslint/tsconfig-utils@npm:8.52.0" peerDependencies: typescript: ">=4.8.4 <6.0.0" - checksum: 10/e459d131ca646cca6ad164593ca7e8c45ad3daa103a24e1e57fd47b5c1e5b5418948b749f02baa42e61103a496fc80d32ddd1841c11495bbcf37808b88bb0ef4 + checksum: 10/5b26227ab549e20a6b15725a4f8373acb70ae1c83570c8d670e242bfcd22ac0c9111d4d28ea16ee3939572caacce50e113388ce943f238fc2ca17f6c5a040cd2 languageName: node linkType: hard -"@typescript-eslint/type-utils@npm:8.46.2": - version: 8.46.2 - resolution: "@typescript-eslint/type-utils@npm:8.46.2" +"@typescript-eslint/type-utils@npm:8.52.0": + version: 8.52.0 + resolution: "@typescript-eslint/type-utils@npm:8.52.0" dependencies: - "@typescript-eslint/types": "npm:8.46.2" - "@typescript-eslint/typescript-estree": "npm:8.46.2" - "@typescript-eslint/utils": "npm:8.46.2" - debug: "npm:^4.3.4" - ts-api-utils: "npm:^2.1.0" + "@typescript-eslint/types": "npm:8.52.0" + "@typescript-eslint/typescript-estree": "npm:8.52.0" + "@typescript-eslint/utils": "npm:8.52.0" + debug: "npm:^4.4.3" + ts-api-utils: "npm:^2.4.0" peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <6.0.0" - checksum: 10/db5d3d782b44d31f828ebdbec44550c6f94fdcfac1164f59e3922f6413feed749d93df3977625fd5949aaff5c691cf4603a7cd93eaf7b19b9cf6fd91537fb8c7 + checksum: 10/e46d77192e2678561e2cdefe2c2b1ba8965458a88e6dd0d1967656ff5dcb00b75217ec6b084323710028215f64a65ba6ec288e5b021a0c9a325450b4bcfc4f43 languageName: node linkType: hard @@ -2289,10 +2306,10 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/types@npm:8.46.2, @typescript-eslint/types@npm:^8.46.2": - version: 8.46.2 - resolution: "@typescript-eslint/types@npm:8.46.2" - checksum: 10/c641453c868b730ef64bd731cc47b19e1a5e45c090dfe9542ecd15b24c5a7b6dc94a8ef4e548b976aabcd1ca9dec1b766e417454b98ea59079795eb008226b38 +"@typescript-eslint/types@npm:8.52.0, @typescript-eslint/types@npm:^8.52.0": + version: 8.52.0 + resolution: "@typescript-eslint/types@npm:8.52.0" + checksum: 10/05a630c5d25cce74d1bfa51027f1232f2e8a97a8f483ce0274e928373b4633cdf713be53eca39926f0372d52a3335f13786c7910d2edfd546a0cf1d66b3bcf51 languageName: node linkType: hard @@ -2315,38 +2332,37 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:8.46.2": - version: 8.46.2 - resolution: "@typescript-eslint/typescript-estree@npm:8.46.2" +"@typescript-eslint/typescript-estree@npm:8.52.0": + version: 8.52.0 + resolution: "@typescript-eslint/typescript-estree@npm:8.52.0" dependencies: - "@typescript-eslint/project-service": "npm:8.46.2" - "@typescript-eslint/tsconfig-utils": "npm:8.46.2" - "@typescript-eslint/types": "npm:8.46.2" - "@typescript-eslint/visitor-keys": "npm:8.46.2" - debug: "npm:^4.3.4" - fast-glob: "npm:^3.3.2" - is-glob: "npm:^4.0.3" - minimatch: "npm:^9.0.4" - semver: "npm:^7.6.0" - ts-api-utils: "npm:^2.1.0" + "@typescript-eslint/project-service": "npm:8.52.0" + "@typescript-eslint/tsconfig-utils": "npm:8.52.0" + "@typescript-eslint/types": "npm:8.52.0" + "@typescript-eslint/visitor-keys": "npm:8.52.0" + debug: "npm:^4.4.3" + minimatch: "npm:^9.0.5" + semver: "npm:^7.7.3" + tinyglobby: "npm:^0.2.15" + ts-api-utils: "npm:^2.4.0" peerDependencies: typescript: ">=4.8.4 <6.0.0" - checksum: 10/4d2149ad97e7f7e2e4cf466932f52f38e90414d47341c5938e497fd0826d403db9896bbd5cc08e7488ad0d0ffb3817e6f18e9f0c623d8a8cda09af204f81aab8 + checksum: 10/4e699f44a05e9c487531557a1eaf6412a97f370ec946a03596c8d445f584c3d17e9aa34cde5ce8998ae9d6908c1daffb2c9b523cb07e5988cf249eae6dea50fd languageName: node linkType: hard -"@typescript-eslint/utils@npm:8.46.2": - version: 8.46.2 - resolution: "@typescript-eslint/utils@npm:8.46.2" +"@typescript-eslint/utils@npm:8.52.0": + version: 8.52.0 + resolution: "@typescript-eslint/utils@npm:8.52.0" dependencies: - "@eslint-community/eslint-utils": "npm:^4.7.0" - "@typescript-eslint/scope-manager": "npm:8.46.2" - "@typescript-eslint/types": "npm:8.46.2" - "@typescript-eslint/typescript-estree": "npm:8.46.2" + "@eslint-community/eslint-utils": "npm:^4.9.1" + "@typescript-eslint/scope-manager": "npm:8.52.0" + "@typescript-eslint/types": "npm:8.52.0" + "@typescript-eslint/typescript-estree": "npm:8.52.0" peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <6.0.0" - checksum: 10/91f6216f858161c3f59b2e035e0abce68fcdc9fbe45cb693a111c11ce5352c42fe0b1145a91e538c5459ff81b5e3741a4b38189b97e0e1a756567b6467c7b6c9 + checksum: 10/11a02ab0fd26bb1284dfa8c02d40c54cabd3aa795e82ab26b060ea3839998c28a41822b075f9d23fb51e291e465147213166c8ddaf3c8d5807e70b0a4345d967 languageName: node linkType: hard @@ -2360,13 +2376,13 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/visitor-keys@npm:8.46.2": - version: 8.46.2 - resolution: "@typescript-eslint/visitor-keys@npm:8.46.2" +"@typescript-eslint/visitor-keys@npm:8.52.0": + version: 8.52.0 + resolution: "@typescript-eslint/visitor-keys@npm:8.52.0" dependencies: - "@typescript-eslint/types": "npm:8.46.2" + "@typescript-eslint/types": "npm:8.52.0" eslint-visitor-keys: "npm:^4.2.1" - checksum: 10/4352629a33bc1619dc78d55eaec382be4c7e1059af02660f62bfdb22933021deaf98504d4030b8db74ec122e6d554e9015341f87aed729fb70fae613f12f55a4 + checksum: 10/4d841402cc65e876382ede464b68cf167c7d24905b15225c472516bb759140abbef02f250c6335ca35327f7328975ff3b28c3249a5183319cfd01f1d5541e3c1 languageName: node linkType: hard @@ -3265,6 +3281,18 @@ __metadata: languageName: node linkType: hard +"debug@npm:^4.4.3": + version: 4.4.3 + resolution: "debug@npm:4.4.3" + dependencies: + ms: "npm:^2.1.3" + peerDependenciesMeta: + supports-color: + optional: true + checksum: 10/9ada3434ea2993800bd9a1e320bd4aa7af69659fb51cca685d390949434bc0a8873c21ed7c9b852af6f2455a55c6d050aa3937d52b3c69f796dab666f762acad + languageName: node + linkType: hard + "decamelize-keys@npm:^1.1.0": version: 1.1.1 resolution: "decamelize-keys@npm:1.1.1" @@ -3553,7 +3581,7 @@ __metadata: languageName: node linkType: hard -"esbuild@npm:^0.27.2, esbuild@npm:esbuild@>=0.17.6 <0.28.0": +"esbuild@npm:^0.27.0, esbuild@npm:^0.27.2, esbuild@npm:esbuild@>=0.17.6 <0.28.0": version: 0.27.2 resolution: "esbuild@npm:0.27.2" dependencies: @@ -3678,18 +3706,18 @@ __metadata: version: 0.0.0-use.local resolution: "eslint-config-custom@workspace:configs/eslint-config-custom" dependencies: - "@eslint/js": "npm:^9.38.0" - "@types/node": "npm:^25.0.5" - "@typescript-eslint/parser": "npm:^8.46.2" - eslint: "npm:^9.38.0" + "@eslint/js": "npm:^9.39.2" + "@types/node": "npm:^25.0.6" + "@typescript-eslint/parser": "npm:^8.52.0" + eslint: "npm:^9.39.2" eslint-config-prettier: "npm:^10.1.8" eslint-plugin-prettier: "npm:^5.5.4" - eslint-plugin-yml: "npm:^1.19.0" + eslint-plugin-yml: "npm:^1.19.1" globals: "npm:^17.0.0" prettier: "npm:^3.7.4" prettier-config-custom: "workspace:^" typescript: "npm:^5.9.3" - typescript-eslint: "npm:^8.46.2" + typescript-eslint: "npm:^8.52.0" yaml-eslint-parser: "npm:^1.3.2" languageName: unknown linkType: soft @@ -3725,33 +3753,33 @@ __metadata: languageName: node linkType: hard -"eslint-plugin-react-hooks@npm:^7.0.0": - version: 7.0.0 - resolution: "eslint-plugin-react-hooks@npm:7.0.0" +"eslint-plugin-react-hooks@npm:^7.0.1": + version: 7.0.1 + resolution: "eslint-plugin-react-hooks@npm:7.0.1" dependencies: "@babel/core": "npm:^7.24.4" "@babel/parser": "npm:^7.24.4" hermes-parser: "npm:^0.25.1" - zod: "npm:^3.22.4 || ^4.0.0" - zod-validation-error: "npm:^3.0.3 || ^4.0.0" + zod: "npm:^3.25.0 || ^4.0.0" + zod-validation-error: "npm:^3.5.0 || ^4.0.0" peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 - checksum: 10/756ad90ec6390bafa8037f86ab72d98af55c25e13b69e15bdac634724c8af7a87eb6993b643665e930d67635d52c8aa55b0e7a1d47e3c4e42a3b66950b2069fb + checksum: 10/12e96c68d58c6588305fd17d660524a1ef1e872650ec591d5b138f059431290831c373d4b1c9ae8991fb25f96c43935497d2149678c027e65d0417d3d99ecc85 languageName: node linkType: hard -"eslint-plugin-react-refresh@npm:^0.4.24": - version: 0.4.24 - resolution: "eslint-plugin-react-refresh@npm:0.4.24" +"eslint-plugin-react-refresh@npm:^0.4.26": + version: 0.4.26 + resolution: "eslint-plugin-react-refresh@npm:0.4.26" peerDependencies: eslint: ">=8.40" - checksum: 10/5e7f0e9e854f1fcf56dcfca5f9e068ba0e1e3f7b47428991d5d5f9549dfc94261d6200fb7a1a1a76861cd787f17f2366dfd4f27a082d7f7815a0201a0b434dd3 + checksum: 10/068da7edcd39d802dda4c03b7ea8923891145eb95f4dfd4cfce82a53a5eb55f5cbe66b33cf8e57b71f1525a684517bda4bfca1bc5c6b12c82ba03c9e8197764d languageName: node linkType: hard -"eslint-plugin-yml@npm:^1.19.0": - version: 1.19.0 - resolution: "eslint-plugin-yml@npm:1.19.0" +"eslint-plugin-yml@npm:^1.19.1": + version: 1.19.1 + resolution: "eslint-plugin-yml@npm:1.19.1" dependencies: debug: "npm:^4.3.2" diff-sequences: "npm:^27.5.1" @@ -3761,7 +3789,7 @@ __metadata: yaml-eslint-parser: "npm:^1.2.1" peerDependencies: eslint: ">=6.0.0" - checksum: 10/68b4da25e21f04733153a868c35c48deda8b62d0f1f27443a36ad716a6f30d62f3e9cc50aaeb42625027f38af412a7ba26273da8f81b77f82a90dd6bfd7d25f3 + checksum: 10/47c31c7c87a0ae601666aa18ab48c373fe79f039da00d8fa42b5f7298338ada45bfba7e07a2a59b612473e97146b34f39e06a84d48d425e020b7be1c9c7ba871 languageName: node linkType: hard @@ -3847,18 +3875,18 @@ __metadata: languageName: node linkType: hard -"eslint@npm:^9.38.0": - version: 9.38.0 - resolution: "eslint@npm:9.38.0" +"eslint@npm:^9.39.2": + version: 9.39.2 + resolution: "eslint@npm:9.39.2" dependencies: "@eslint-community/eslint-utils": "npm:^4.8.0" "@eslint-community/regexpp": "npm:^4.12.1" "@eslint/config-array": "npm:^0.21.1" - "@eslint/config-helpers": "npm:^0.4.1" - "@eslint/core": "npm:^0.16.0" + "@eslint/config-helpers": "npm:^0.4.2" + "@eslint/core": "npm:^0.17.0" "@eslint/eslintrc": "npm:^3.3.1" - "@eslint/js": "npm:9.38.0" - "@eslint/plugin-kit": "npm:^0.4.0" + "@eslint/js": "npm:9.39.2" + "@eslint/plugin-kit": "npm:^0.4.1" "@humanfs/node": "npm:^0.16.6" "@humanwhocodes/module-importer": "npm:^1.0.1" "@humanwhocodes/retry": "npm:^0.4.2" @@ -3892,7 +3920,7 @@ __metadata: optional: true bin: eslint: bin/eslint.js - checksum: 10/fb8971572dfedd1fd67a35a746d2ab399bef320a7f131fdccaec6416f4b4a028e762663c32ccf1a88f715aec6d1c5da066fdb11e20219a0156f1f3fc1a726713 + checksum: 10/53ff0e9c8264e7e8d40d50fdc0c0df0b701cfc5289beedfb686c214e3e7b199702f894bbd1bb48653727bb1ecbd1147cf5f555a4ae71e1daf35020cdc9072d9f languageName: node linkType: hard @@ -4028,7 +4056,7 @@ __metadata: languageName: node linkType: hard -"fast-glob@npm:^3.2.9, fast-glob@npm:^3.3.2": +"fast-glob@npm:^3.2.9": version: 3.3.2 resolution: "fast-glob@npm:3.3.2" dependencies: @@ -4534,7 +4562,7 @@ __metadata: languageName: node linkType: hard -"ignore@npm:^7.0.0": +"ignore@npm:^7.0.5": version: 7.0.5 resolution: "ignore@npm:7.0.5" checksum: 10/f134b96a4de0af419196f52c529d5c6120c4456ff8a6b5a14ceaaa399f883e15d58d2ce651c9b69b9388491d4669dda47285d307e827de9304a53a1824801bc6 @@ -5190,13 +5218,13 @@ __metadata: "@mincho-js/debug-log": "workspace:^" "@monorepo-utils/workspaces-to-typescript-project-references": "npm:^2.11.0" "@types/eslint": "npm:^9.6.1" - "@types/node": "npm:^25.0.5" + "@types/node": "npm:^25.0.6" "@typescript/analyze-trace": "npm:^0.10.1" "@vanilla-extract/vite-plugin": "npm:^5.1.4" "@vitest/coverage-v8": "npm:^4.0.16" "@yarnpkg/types": "npm:^4.0.1" c8: "npm:^10.1.3" - eslint: "npm:^9.38.0" + eslint: "npm:^9.39.2" eslint-config-custom: "workspace:^" prettier: "npm:^3.7.4" prettier-config-custom: "workspace:^" @@ -5207,8 +5235,8 @@ __metadata: tslib: "npm:^2.8.1" turbo: "npm:^2.7.3" typescript: "npm:^5.9.3" - vite: "npm:^7.1.12" - vite-node: "npm:^3.2.4" + vite: "npm:^7.3.1" + vite-node: "npm:^5.2.0" vitest: "npm:^4.0.16" yarn-constraints-rules: "npm:^0.1.0" languageName: unknown @@ -5241,7 +5269,7 @@ __metadata: languageName: node linkType: hard -"minimatch@npm:^9.0.4": +"minimatch@npm:^9.0.4, minimatch@npm:^9.0.5": version: 9.0.5 resolution: "minimatch@npm:9.0.5" dependencies: @@ -5481,7 +5509,7 @@ __metadata: languageName: node linkType: hard -"obug@npm:^2.1.1": +"obug@npm:^2.0.0, obug@npm:^2.1.1": version: 2.1.1 resolution: "obug@npm:2.1.1" checksum: 10/bdcf9213361786688019345f3452b95a1dc73710e4b403c82a1994b98bad6abc31b26cb72a482128c5fd53ea9daf6fbb7d0e0e7b2b7e9c8be6d779deeccee07f @@ -5875,7 +5903,7 @@ __metadata: "@babel/core": "npm:^7.28.5" "@babel/preset-typescript": "npm:^7.28.5" "@emotion/hash": "npm:^0.9.2" - "@eslint/js": "npm:^9.38.0" + "@eslint/js": "npm:^9.39.2" "@mincho-js/css": "workspace:^" "@mincho-js/integration": "workspace:^" "@mincho-js/react": "workspace:^" @@ -5885,7 +5913,7 @@ __metadata: "@types/react": "npm:^19.2.8" "@types/react-dom": "npm:^19.2.3" "@types/scheduler": "npm:^0.26.0" - "@typescript-eslint/parser": "npm:^8.46.2" + "@typescript-eslint/parser": "npm:^8.52.0" "@vanilla-extract/css": "npm:^1.17.4" "@vanilla-extract/css-utils": "npm:^0.1.6" "@vanilla-extract/private": "npm:^1.0.9" @@ -5895,9 +5923,9 @@ __metadata: dedent: "npm:^1.7.1" deep-object-diff: "npm:^1.1.9" deepmerge: "npm:^4.3.1" - eslint: "npm:^9.38.0" - eslint-plugin-react-hooks: "npm:^7.0.0" - eslint-plugin-react-refresh: "npm:^0.4.24" + eslint: "npm:^9.39.2" + eslint-plugin-react-hooks: "npm:^7.0.1" + eslint-plugin-react-refresh: "npm:^0.4.26" globals: "npm:^17.0.0" lru-cache: "npm:^11.2.4" media-query-parser: "npm:3.0.2" @@ -5907,8 +5935,8 @@ __metadata: react-dom: "npm:^19.2.3" scheduler: "npm:^0.27.0" typescript: "npm:~5.9.3" - typescript-eslint: "npm:^8.46.2" - vite: "npm:^7.1.12" + typescript-eslint: "npm:^8.52.0" + vite: "npm:^7.3.1" languageName: unknown linkType: soft @@ -5941,25 +5969,25 @@ __metadata: version: 0.0.0-use.local resolution: "react-swc@workspace:examples/react-swc" dependencies: - "@eslint/js": "npm:^9.38.0" + "@eslint/js": "npm:^9.39.2" "@mincho-js/css": "workspace:^" "@types/react": "npm:^19.2.8" "@types/react-dom": "npm:^19.2.3" - "@typescript-eslint/eslint-plugin": "npm:^8.46.2" - "@typescript-eslint/parser": "npm:^8.46.2" + "@typescript-eslint/eslint-plugin": "npm:^8.52.0" + "@typescript-eslint/parser": "npm:^8.52.0" "@vanilla-extract/css": "npm:^1.17.4" "@vanilla-extract/esbuild-plugin": "npm:^2.3.21" "@vanilla-extract/vite-plugin": "npm:^5.1.4" "@vitejs/plugin-react-swc": "npm:^4.2.2" - eslint: "npm:^9.38.0" - eslint-plugin-react-hooks: "npm:^7.0.0" - eslint-plugin-react-refresh: "npm:^0.4.24" + eslint: "npm:^9.39.2" + eslint-plugin-react-hooks: "npm:^7.0.1" + eslint-plugin-react-refresh: "npm:^0.4.26" globals: "npm:^17.0.0" react: "npm:^19.2.3" react-dom: "npm:^19.2.3" typescript: "npm:^5.9.3" - typescript-eslint: "npm:^8.46.2" - vite: "npm:^7.1.12" + typescript-eslint: "npm:^8.52.0" + vite: "npm:^7.3.1" languageName: unknown linkType: soft @@ -6275,7 +6303,7 @@ __metadata: languageName: node linkType: hard -"semver@npm:^7.3.5, semver@npm:^7.3.6, semver@npm:^7.5.3, semver@npm:^7.5.4, semver@npm:^7.6.0": +"semver@npm:^7.3.5, semver@npm:^7.3.6, semver@npm:^7.5.3, semver@npm:^7.5.4": version: 7.6.2 resolution: "semver@npm:7.6.2" bin: @@ -6284,6 +6312,15 @@ __metadata: languageName: node linkType: hard +"semver@npm:^7.7.3": + version: 7.7.3 + resolution: "semver@npm:7.7.3" + bin: + semver: bin/semver.js + checksum: 10/8dbc3168e057a38fc322af909c7f5617483c50caddba135439ff09a754b20bdd6482a5123ff543dad4affa488ecf46ec5fb56d61312ad20bb140199b88dfaea9 + languageName: node + linkType: hard + "shallow-clone@npm:^3.0.0": version: 3.0.1 resolution: "shallow-clone@npm:3.0.1" @@ -6728,12 +6765,12 @@ __metadata: languageName: node linkType: hard -"ts-api-utils@npm:^2.1.0": - version: 2.1.0 - resolution: "ts-api-utils@npm:2.1.0" +"ts-api-utils@npm:^2.4.0": + version: 2.4.0 + resolution: "ts-api-utils@npm:2.4.0" peerDependencies: typescript: ">=4.8.4" - checksum: 10/02e55b49d9617c6eebf8aadfa08d3ca03ca0cd2f0586ad34117fdfc7aa3cd25d95051843fde9df86665ad907f99baed179e7a117b11021417f379e4d2614eacd + checksum: 10/d6b2b3b6caad8d2f4ddc0c3785d22bb1a6041773335a1c71d73a5d67d11d993763fe8e4faefc4a4d03bb42b26c6126bbcf2e34826baed1def5369d0ebad358fa languageName: node linkType: hard @@ -6879,18 +6916,18 @@ __metadata: languageName: node linkType: hard -"typescript-eslint@npm:^8.46.2": - version: 8.46.2 - resolution: "typescript-eslint@npm:8.46.2" +"typescript-eslint@npm:^8.52.0": + version: 8.52.0 + resolution: "typescript-eslint@npm:8.52.0" dependencies: - "@typescript-eslint/eslint-plugin": "npm:8.46.2" - "@typescript-eslint/parser": "npm:8.46.2" - "@typescript-eslint/typescript-estree": "npm:8.46.2" - "@typescript-eslint/utils": "npm:8.46.2" + "@typescript-eslint/eslint-plugin": "npm:8.52.0" + "@typescript-eslint/parser": "npm:8.52.0" + "@typescript-eslint/typescript-estree": "npm:8.52.0" + "@typescript-eslint/utils": "npm:8.52.0" peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <6.0.0" - checksum: 10/cd1bbc5d33c0369f70032165224badf1a8a9f95f39c891e4f71c78ceea9e7b2d71e0516d8b38177a11217867f387788f3fa126381418581409e7a76cdfdfe909 + checksum: 10/c12d55948c903549b779bc5a46aab85825be63679118c6fefeb8dcab21173e17665b054ab23cf6e57ac0549fb2f6edcaace03cde165d61a9f0dccadb03e2ab59 languageName: node linkType: hard @@ -7046,15 +7083,15 @@ __metadata: prettier-config-custom: "workspace:^" tsconfig-custom: "workspace:^" typescript: "npm:^5.9.3" - vite: "npm:^7.1.12" + vite: "npm:^7.3.1" vite-config-builder: "npm:^0.1.1" vite-plugin-dts-build: "npm:^0.2.2" vite-plugin-externalize-deps: "npm:^0.10.0" - vite-tsconfig-paths: "npm:^5.1.4" + vite-tsconfig-paths: "npm:^6.0.4" languageName: unknown linkType: soft -"vite-node@npm:^3.2.2, vite-node@npm:^3.2.4": +"vite-node@npm:^3.2.2": version: 3.2.4 resolution: "vite-node@npm:3.2.4" dependencies: @@ -7069,6 +7106,21 @@ __metadata: languageName: node linkType: hard +"vite-node@npm:^5.2.0": + version: 5.2.0 + resolution: "vite-node@npm:5.2.0" + dependencies: + cac: "npm:^6.7.14" + es-module-lexer: "npm:^1.7.0" + obug: "npm:^2.0.0" + pathe: "npm:^2.0.3" + vite: "npm:^7.2.2" + bin: + vite-node: dist/cli.mjs + checksum: 10/8947340e5a1f31b53676e5e17c048943e70895bdbb37551c3d56605409195c5ffa2bc84acd0f1b28cb750a794e8f936fb049993ed2117e2fda67aef22f7d34d6 + languageName: node + linkType: hard + "vite-plugin-dts-build@npm:^0.2.2": version: 0.2.2 resolution: "vite-plugin-dts-build@npm:0.2.2" @@ -7091,19 +7143,75 @@ __metadata: languageName: node linkType: hard -"vite-tsconfig-paths@npm:^5.1.4": - version: 5.1.4 - resolution: "vite-tsconfig-paths@npm:5.1.4" +"vite-tsconfig-paths@npm:^6.0.4": + version: 6.0.4 + resolution: "vite-tsconfig-paths@npm:6.0.4" dependencies: debug: "npm:^4.1.1" globrex: "npm:^0.1.2" tsconfck: "npm:^3.0.3" + vite: "npm:*" peerDependencies: vite: "*" peerDependenciesMeta: vite: optional: true - checksum: 10/b409dbd17829f560021a71dba3e473b9c06dcf5fdc9d630b72c1f787145ec478b38caff1be04868971ac8bdcbf0f5af45eeece23dbc9c59c54b901f867740ae0 + checksum: 10/85f871cd5e321f2865972559b01c518664e6e34f9039b630dd77c2f379f8fdc386e15f7237aa5c108d813030c6e9bc8edfbf61687df7684803111a2495edadac + languageName: node + linkType: hard + +"vite@npm:*, vite@npm:^7.2.2, vite@npm:^7.3.1": + version: 7.3.1 + resolution: "vite@npm:7.3.1" + dependencies: + esbuild: "npm:^0.27.0" + fdir: "npm:^6.5.0" + fsevents: "npm:~2.3.3" + picomatch: "npm:^4.0.3" + postcss: "npm:^8.5.6" + rollup: "npm:^4.43.0" + tinyglobby: "npm:^0.2.15" + peerDependencies: + "@types/node": ^20.19.0 || >=22.12.0 + jiti: ">=1.21.0" + less: ^4.0.0 + lightningcss: ^1.21.0 + sass: ^1.70.0 + sass-embedded: ^1.70.0 + stylus: ">=0.54.8" + sugarss: ^5.0.0 + terser: ^5.16.0 + tsx: ^4.8.1 + yaml: ^2.4.2 + dependenciesMeta: + fsevents: + optional: true + peerDependenciesMeta: + "@types/node": + optional: true + jiti: + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + tsx: + optional: true + yaml: + optional: true + bin: + vite: bin/vite.js + checksum: 10/62e48ffa4283b688f0049005405a004447ad38ffc99a0efea4c3aa9b7eed739f7402b43f00668c0ee5a895b684dc953d62f0722d8a92c5b2f6c95f051bceb208 languageName: node linkType: hard @@ -7162,7 +7270,7 @@ __metadata: languageName: node linkType: hard -"vite@npm:^6.0.0 || ^7.0.0, vite@npm:^7.1.12": +"vite@npm:^6.0.0 || ^7.0.0": version: 7.1.12 resolution: "vite@npm:7.1.12" dependencies: @@ -7531,7 +7639,7 @@ __metadata: languageName: node linkType: hard -"zod-validation-error@npm:^3.0.3 || ^4.0.0": +"zod-validation-error@npm:^3.5.0 || ^4.0.0": version: 4.0.2 resolution: "zod-validation-error@npm:4.0.2" peerDependencies: @@ -7540,9 +7648,9 @@ __metadata: languageName: node linkType: hard -"zod@npm:^3.22.4 || ^4.0.0": - version: 4.1.12 - resolution: "zod@npm:4.1.12" - checksum: 10/c5f04e6ac306515c4db6ef73cf7705f521c7a2107c8c8912416a0658d689f361db9bee829b0bf01ef4a22492f1065c5cbcdb523ce532606ac6792fd714f3c326 +"zod@npm:^3.25.0 || ^4.0.0": + version: 4.3.5 + resolution: "zod@npm:4.3.5" + checksum: 10/3148bd52e56ab7c1641ec397e6be6eddbb1d8f5db71e95baab9bb9622a0ea49d8a385885fc1c22b90fa6d8c5234e051f4ef5d469cfe3fb90198d5a91402fd89c languageName: node linkType: hard