From 8c092bc32bb8cb1878c4a4e3c99779bca6c5ac6a Mon Sep 17 00:00:00 2001 From: JounQin Date: Fri, 6 Jun 2025 15:11:51 +0800 Subject: [PATCH] fix: check `when` expression correctly (#69) --- .changeset/proud-masks-kiss.md | 5 + package.json | 33 +- src/cli/new.ts | 2 +- src/cli/translate.ts | 2 +- yarn.lock | 1394 +++++++++++++++----------------- 5 files changed, 685 insertions(+), 751 deletions(-) create mode 100644 .changeset/proud-masks-kiss.md diff --git a/.changeset/proud-masks-kiss.md b/.changeset/proud-masks-kiss.md new file mode 100644 index 00000000..2c4de92e --- /dev/null +++ b/.changeset/proud-masks-kiss.md @@ -0,0 +1,5 @@ +--- +"@alauda/doom": patch +--- + +fix: check `when` expression correctly diff --git a/package.json b/package.json index 0a15a2d6..a71cf16c 100644 --- a/package.json +++ b/package.json @@ -48,7 +48,7 @@ "lint:es": "eslint . --cache", "lint:tsc": "tsc -b", "prepare": "simple-git-hooks && patch-package && yarn-berry-deduplicate || exit 0", - "release": "yarn build && clean-pkg-json && changeset publish", + "release": "yarn build && clean-pkg-json && changeset publish --tag release-0.x", "serve": "yarn doom serve", "swc-node": "node --enable-source-maps --import @swc-node/register/esm-register", "translate": "yarn doom translate", @@ -56,27 +56,27 @@ "version": "changeset version && yarn --no-immutable" }, "dependencies": { - "@cspell/eslint-plugin": "^9.0.2", - "@eslint-react/eslint-plugin": "^1.50.0", + "@cspell/eslint-plugin": "^8.19.4", + "@eslint-react/eslint-plugin": "^1.51.0", "@inquirer/prompts": "^7.5.3", "@openapi-contrib/openapi-schema-to-json-schema": "^5.1.0", "@playwright/browser-chromium": "^1.52.0", "@rsbuild/plugin-yaml": "^1.0.2", "@rspress/core": "1.44.0", - "@shikijs/transformers": "^3.4.2", + "@shikijs/transformers": "^3.5.0", "chokidar": "^4.0.3", "cli-progress": "^3.12.0", "clsx": "^2.1.1", "commander": "^13.1.0", "ejs": "^3.1.10", - "es-toolkit": "^1.38.0", - "eslint": "^9.27.0", + "es-toolkit": "^1.39.0", + "eslint": "^9.28.0", "eslint-plugin-mdx": "^3.4.2", "html-tag-names": "^2.1.0", "mdast-util-mdx": "^2.0.1", "mdast-util-mdx-jsx": "^2.1.4", "mermaid": "^11.6.0", - "openai": "^5.0.0-beta.0", + "openai": "^5.1.1", "openapi-types": "^12.1.3", "p-ratelimit": "^1.0.1", "pdf-lib": "^1.17.1", @@ -90,12 +90,13 @@ "remark-gfm": "^3.0.1", "remark-mdx": "^2.3.0", "remark-stringify": "^10.0.3", - "shiki": "^3.4.2", + "shiki": "^3.6.0", "simple-git": "^3.27.0", "swagger2openapi": "^7.0.8", "tinyglobby": "^0.2.14", "type-fest": "^4.41.0", - "typescript-eslint": "^8.33.0", + "typescript": "^5.8.3", + "typescript-eslint": "^8.33.1", "x-fetch": "^0.2.6", "yaml": "^2.8.0", "yoctocolors": "^2.1.1" @@ -103,30 +104,30 @@ "devDependencies": { "@changesets/changelog-github": "^0.5.1", "@changesets/cli": "^2.29.4", - "@eslint/js": "^9.27.0", + "@eslint/js": "^9.28.0", "@swc-node/register": "^1.10.10", - "@swc/core": "1.11.29", + "@swc/core": "1.11.31", "@total-typescript/ts-reset": "^0.6.1", "@types/cli-progress": "^3.11.6", "@types/ejs": "^3.1.5", - "@types/node": "^22.15.24", + "@types/hast": "2", + "@types/node": "^22.15.30", "@types/picomatch": "^4.0.0", "@types/react": "^18.3.23", "@types/react-dom": "^18.3.7", "@types/swagger2openapi": "^7.0.4", "@unts/patch-package": "^8.1.1", "clean-pkg-json": "^1.3.0", - "eslint-import-resolver-typescript": "^4.4.1", - "eslint-plugin-import-x": "^4.13.3", + "eslint-import-resolver-typescript": "^4.4.3", + "eslint-plugin-import-x": "^4.15.1", "eslint-plugin-react-hooks": "^5.2.0", "nano-staged": "^0.8.0", "npm-run-all2": "^7.0.2", "prettier": "^3.5.3", - "prettier-plugin-pkg": "^0.19.1", + "prettier-plugin-pkg": "^0.20.0", "prettier-plugin-properties": "^0.3.0", "simple-git-hooks": "^2.13.0", "type-coverage": "^2.29.7", - "typescript": "^5.8.3", "yarn-berry-deduplicate": "^6.1.3" }, "publishConfig": { diff --git a/src/cli/new.ts b/src/cli/new.ts index f5674676..3daf5807 100644 --- a/src/cli/new.ts +++ b/src/cli/new.ts @@ -221,7 +221,7 @@ export const newCommand = new Command('new') const target = path.resolve(render(layout.target, { parameters })) const when = layout.when && render(layout.when, { parameters }) - if (JS_STR_FALSY_VALUES.has(when)) { + if (when != null && JS_STR_FALSY_VALUES.has(when)) { continue } diff --git a/src/cli/translate.ts b/src/cli/translate.ts index aa0c8bf0..ddb736fc 100644 --- a/src/cli/translate.ts +++ b/src/cli/translate.ts @@ -151,7 +151,7 @@ export const translate = async ({ { async: true }, ) - const { choices } = await openai.beta.chat.completions.parse({ + const { choices } = await openai.chat.completions.parse({ messages: [ { role: 'system', diff --git a/yarn.lock b/yarn.lock index 9156d35a..4dcc63d4 100644 --- a/yarn.lock +++ b/yarn.lock @@ -11,21 +11,22 @@ __metadata: dependencies: "@changesets/changelog-github": "npm:^0.5.1" "@changesets/cli": "npm:^2.29.4" - "@cspell/eslint-plugin": "npm:^9.0.2" - "@eslint-react/eslint-plugin": "npm:^1.50.0" - "@eslint/js": "npm:^9.27.0" + "@cspell/eslint-plugin": "npm:^8.19.4" + "@eslint-react/eslint-plugin": "npm:^1.51.0" + "@eslint/js": "npm:^9.28.0" "@inquirer/prompts": "npm:^7.5.3" "@openapi-contrib/openapi-schema-to-json-schema": "npm:^5.1.0" "@playwright/browser-chromium": "npm:^1.52.0" "@rsbuild/plugin-yaml": "npm:^1.0.2" "@rspress/core": "npm:1.44.0" - "@shikijs/transformers": "npm:^3.4.2" + "@shikijs/transformers": "npm:^3.5.0" "@swc-node/register": "npm:^1.10.10" - "@swc/core": "npm:1.11.29" + "@swc/core": "npm:1.11.31" "@total-typescript/ts-reset": "npm:^0.6.1" "@types/cli-progress": "npm:^3.11.6" "@types/ejs": "npm:^3.1.5" - "@types/node": "npm:^22.15.24" + "@types/hast": "npm:2" + "@types/node": "npm:^22.15.30" "@types/picomatch": "npm:^4.0.0" "@types/react": "npm:^18.3.23" "@types/react-dom": "npm:^18.3.7" @@ -37,10 +38,10 @@ __metadata: clsx: "npm:^2.1.1" commander: "npm:^13.1.0" ejs: "npm:^3.1.10" - es-toolkit: "npm:^1.38.0" - eslint: "npm:^9.27.0" - eslint-import-resolver-typescript: "npm:^4.4.1" - eslint-plugin-import-x: "npm:^4.13.3" + es-toolkit: "npm:^1.39.0" + eslint: "npm:^9.28.0" + eslint-import-resolver-typescript: "npm:^4.4.3" + eslint-plugin-import-x: "npm:^4.15.1" eslint-plugin-mdx: "npm:^3.4.2" eslint-plugin-react-hooks: "npm:^5.2.0" html-tag-names: "npm:^2.1.0" @@ -49,7 +50,7 @@ __metadata: mermaid: "npm:^11.6.0" nano-staged: "npm:^0.8.0" npm-run-all2: "npm:^7.0.2" - openai: "npm:^5.0.0-beta.0" + openai: "npm:^5.1.1" openapi-types: "npm:^12.1.3" p-ratelimit: "npm:^1.0.1" pdf-lib: "npm:^1.17.1" @@ -57,7 +58,7 @@ __metadata: picomatch: "npm:^4.0.2" playwright: "npm:^1.52.0" prettier: "npm:^3.5.3" - prettier-plugin-pkg: "npm:^0.19.1" + prettier-plugin-pkg: "npm:^0.20.0" prettier-plugin-properties: "npm:^0.3.0" react-markdown: "npm:^8.0.7" rehype-raw: "npm:^6.1.1" @@ -66,7 +67,7 @@ __metadata: remark-gfm: "npm:^3.0.1" remark-mdx: "npm:^2.3.0" remark-stringify: "npm:^10.0.3" - shiki: "npm:^3.4.2" + shiki: "npm:^3.6.0" simple-git: "npm:^3.27.0" simple-git-hooks: "npm:^2.13.0" swagger2openapi: "npm:^7.0.8" @@ -74,7 +75,7 @@ __metadata: type-coverage: "npm:^2.29.7" type-fest: "npm:^4.41.0" typescript: "npm:^5.8.3" - typescript-eslint: "npm:^8.33.0" + typescript-eslint: "npm:^8.33.1" x-fetch: "npm:^0.2.6" yaml: "npm:^2.8.0" yarn-berry-deduplicate: "npm:^6.1.3" @@ -129,9 +130,9 @@ __metadata: linkType: hard "@babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.3.1, @babel/runtime@npm:^7.5.5": - version: 7.27.3 - resolution: "@babel/runtime@npm:7.27.3" - checksum: 10c0/b860fe374a36fddbeeb238e52e59443abcacc046eebda1bf278bffbc67b5c8f713b939e09c126b086ca5f97cba1987ea17fd1737568bc50fedb1f6ef1cf46f69 + version: 7.27.6 + resolution: "@babel/runtime@npm:7.27.6" + checksum: 10c0/89726be83f356f511dcdb74d3ea4d873a5f0cf0017d4530cb53aa27380c01ca102d573eff8b8b77815e624b1f8c24e7f0311834ad4fb632c90a770fda00bd4c8 languageName: node linkType: hard @@ -446,15 +447,15 @@ __metadata: languageName: node linkType: hard -"@cspell/cspell-bundled-dicts@npm:9.0.2": - version: 9.0.2 - resolution: "@cspell/cspell-bundled-dicts@npm:9.0.2" +"@cspell/cspell-bundled-dicts@npm:8.19.4": + version: 8.19.4 + resolution: "@cspell/cspell-bundled-dicts@npm:8.19.4" dependencies: "@cspell/dict-ada": "npm:^4.1.0" "@cspell/dict-al": "npm:^1.1.0" "@cspell/dict-aws": "npm:^4.0.10" "@cspell/dict-bash": "npm:^4.2.0" - "@cspell/dict-companies": "npm:^3.2.1" + "@cspell/dict-companies": "npm:^3.1.15" "@cspell/dict-cpp": "npm:^6.0.8" "@cspell/dict-cryptocurrencies": "npm:^5.0.4" "@cspell/dict-csharp": "npm:^4.0.6" @@ -462,20 +463,20 @@ __metadata: "@cspell/dict-dart": "npm:^2.3.0" "@cspell/dict-data-science": "npm:^2.0.8" "@cspell/dict-django": "npm:^4.1.4" - "@cspell/dict-docker": "npm:^1.1.14" + "@cspell/dict-docker": "npm:^1.1.13" "@cspell/dict-dotnet": "npm:^5.0.9" "@cspell/dict-elixir": "npm:^4.0.7" - "@cspell/dict-en-common-misspellings": "npm:^2.0.11" - "@cspell/dict-en-gb-mit": "npm:^3.0.6" - "@cspell/dict-en_us": "npm:^4.4.8" - "@cspell/dict-filetypes": "npm:^3.0.12" + "@cspell/dict-en-common-misspellings": "npm:^2.0.10" + "@cspell/dict-en-gb": "npm:1.1.33" + "@cspell/dict-en_us": "npm:^4.4.3" + "@cspell/dict-filetypes": "npm:^3.0.11" "@cspell/dict-flutter": "npm:^1.1.0" "@cspell/dict-fonts": "npm:^4.0.4" "@cspell/dict-fsharp": "npm:^1.1.0" "@cspell/dict-fullstack": "npm:^3.2.6" "@cspell/dict-gaming-terms": "npm:^1.1.1" - "@cspell/dict-git": "npm:^3.0.5" - "@cspell/dict-golang": "npm:^6.0.21" + "@cspell/dict-git": "npm:^3.0.4" + "@cspell/dict-golang": "npm:^6.0.20" "@cspell/dict-google": "npm:^1.0.8" "@cspell/dict-haskell": "npm:^4.0.5" "@cspell/dict-html": "npm:^4.0.11" @@ -491,54 +492,54 @@ __metadata: "@cspell/dict-markdown": "npm:^2.0.10" "@cspell/dict-monkeyc": "npm:^1.0.10" "@cspell/dict-node": "npm:^5.0.7" - "@cspell/dict-npm": "npm:^5.2.3" + "@cspell/dict-npm": "npm:^5.2.1" "@cspell/dict-php": "npm:^4.0.14" "@cspell/dict-powershell": "npm:^5.0.14" "@cspell/dict-public-licenses": "npm:^2.0.13" - "@cspell/dict-python": "npm:^4.2.18" + "@cspell/dict-python": "npm:^4.2.17" "@cspell/dict-r": "npm:^2.1.0" "@cspell/dict-ruby": "npm:^5.0.8" "@cspell/dict-rust": "npm:^4.0.11" "@cspell/dict-scala": "npm:^5.0.7" "@cspell/dict-shell": "npm:^1.1.0" - "@cspell/dict-software-terms": "npm:^5.0.9" + "@cspell/dict-software-terms": "npm:^5.0.5" "@cspell/dict-sql": "npm:^2.2.0" "@cspell/dict-svelte": "npm:^1.0.6" "@cspell/dict-swift": "npm:^2.0.5" "@cspell/dict-terraform": "npm:^1.1.1" "@cspell/dict-typescript": "npm:^3.2.1" "@cspell/dict-vue": "npm:^3.0.4" - checksum: 10c0/35b19a0934f33e8529d17cd6560bc0a4c7867eab97d5526a9cc82fa83c13a0fd20f8f9b3d0e65daf3d50262deaf830c9e32467e3ae98110783054fb27e9c4cb8 + checksum: 10c0/ae51370ba8a62357c4612d2d23c3fb4387e0b7f01f91e404709ab0ec8251fdbb4225b224b6b0c3bcdd79dabdf437eca6a6bc58337a63e5debdf7eaa219d5872d languageName: node linkType: hard -"@cspell/cspell-pipe@npm:9.0.2": - version: 9.0.2 - resolution: "@cspell/cspell-pipe@npm:9.0.2" - checksum: 10c0/e358cf955eaaae1ac2a5c7f7ed8813b35a57181607d084712c7d61287c6c45988427c8cc7ff63c6af0a2d06f0522394c87bc704970107c86d9a5c20da4314831 +"@cspell/cspell-pipe@npm:8.19.4": + version: 8.19.4 + resolution: "@cspell/cspell-pipe@npm:8.19.4" + checksum: 10c0/2f4407745dffd56a484ce530149f0b9580e6feda4e41d59f43195e75536f3bbcc7b35e188b2a68b3e47c9fb8d891b000a62892079e9c58c4aee11cb3dd74e484 languageName: node linkType: hard -"@cspell/cspell-resolver@npm:9.0.2": - version: 9.0.2 - resolution: "@cspell/cspell-resolver@npm:9.0.2" +"@cspell/cspell-resolver@npm:8.19.4": + version: 8.19.4 + resolution: "@cspell/cspell-resolver@npm:8.19.4" dependencies: global-directory: "npm:^4.0.1" - checksum: 10c0/06a6c9c30dce0cccb0f90035b930d1b70a1e6e22a793d3f3e2089d23cf40456f52b6cf3dd1182d3c18daea22d4fce20126619ad49635316e140b9fb477572b36 + checksum: 10c0/0db5cff86be3780a226e1f51afb0734035331437d2eaf0b899b425dd2f209448126defb6bdfbe1656b53a1c82dee22ff708f419e5fa34cb8db464aa65359887a languageName: node linkType: hard -"@cspell/cspell-service-bus@npm:9.0.2": - version: 9.0.2 - resolution: "@cspell/cspell-service-bus@npm:9.0.2" - checksum: 10c0/372ea7e1b84b52439fe9a778e907d87c4fd5880f2d64ada4e467773618e9e2d87252d778955db29b4b8772b9eddb9bc693b4477db070777dd8c04cd1550974a4 +"@cspell/cspell-service-bus@npm:8.19.4": + version: 8.19.4 + resolution: "@cspell/cspell-service-bus@npm:8.19.4" + checksum: 10c0/7031c9a248148d76d9c431479912a6d633fbca88d8fd2132cf9b34d497548881b5e51f9181847bc3afd4058f73c3b1be722f5f27676bb648c5c13b289977134b languageName: node linkType: hard -"@cspell/cspell-types@npm:9.0.2": - version: 9.0.2 - resolution: "@cspell/cspell-types@npm:9.0.2" - checksum: 10c0/f70db82d96d20aed2d763074f8dfa0b55298ce7d325b7311573e04dc707fdd45c6194ede8da764e8d5004e22179a72abbc93641810e2c4bbe41daecdfb42aff9 +"@cspell/cspell-types@npm:8.19.4": + version: 8.19.4 + resolution: "@cspell/cspell-types@npm:8.19.4" + checksum: 10c0/5c462d7836b21dd9eaca66abb04b3341423548baa897ac7a173bff996731bd2e986818cd1defcdda1ec7866e4ea76730f97d8696c8a45846f1fa8fd571d5ad1a languageName: node linkType: hard @@ -572,7 +573,7 @@ __metadata: languageName: node linkType: hard -"@cspell/dict-companies@npm:^3.2.1": +"@cspell/dict-companies@npm:^3.1.15": version: 3.2.1 resolution: "@cspell/dict-companies@npm:3.2.1" checksum: 10c0/8e98d9321277a1e05b88a95f3ac2c421568c2806a5319177b8a998316dedd888d063793135f57b73f1b88d636bbbe45e43249574804c1a42913f8fbd252263b2 @@ -628,7 +629,7 @@ __metadata: languageName: node linkType: hard -"@cspell/dict-docker@npm:^1.1.14": +"@cspell/dict-docker@npm:^1.1.13": version: 1.1.14 resolution: "@cspell/dict-docker@npm:1.1.14" checksum: 10c0/cf929524dff283db90a1c8e4a6363ccbbed9d49c41d33038ca98cacca7a159e960798224b23433e008d842cc091069b23aa4de915ef1278fc023efc2a38079bd @@ -649,28 +650,28 @@ __metadata: languageName: node linkType: hard -"@cspell/dict-en-common-misspellings@npm:^2.0.11": +"@cspell/dict-en-common-misspellings@npm:^2.0.10": version: 2.0.11 resolution: "@cspell/dict-en-common-misspellings@npm:2.0.11" checksum: 10c0/da3bc9fb18705b2bf721c8d49012fc17b726fc5c9dc1fd9b559e39e2a7d043870914a6f21b3eb397f4667c030a5bb17819b18098ef113e6ddde8143a202f22ea languageName: node linkType: hard -"@cspell/dict-en-gb-mit@npm:^3.0.6": - version: 3.0.7 - resolution: "@cspell/dict-en-gb-mit@npm:3.0.7" - checksum: 10c0/c1754f8c448eee9d80790460dd6fb4acdc21b12c82339e2670aea05bab97e4eabaff960df95a73ba5962944113d98a45f26e095e0b023ce2922ddd0ba5381d33 +"@cspell/dict-en-gb@npm:1.1.33": + version: 1.1.33 + resolution: "@cspell/dict-en-gb@npm:1.1.33" + checksum: 10c0/09563d1016f652dc8164a5f692be49beb78a847a54d5e470d406ae4db125bf8021db75d3db63f7a0c1d1b7a5dfbec4b709fb2ff3520447dcad690adb98d74130 languageName: node linkType: hard -"@cspell/dict-en_us@npm:^4.4.8": +"@cspell/dict-en_us@npm:^4.4.3": version: 4.4.9 resolution: "@cspell/dict-en_us@npm:4.4.9" checksum: 10c0/d8a4b102ca3d14e0d4425584fcd010434f981fe3839d9c70cbc3f8bb562fefa0443f83b2d4f1f46407a3dec5c172c0c8a67ad69e88145a1b22f1d5d2d0b4f0d7 languageName: node linkType: hard -"@cspell/dict-filetypes@npm:^3.0.12": +"@cspell/dict-filetypes@npm:^3.0.11": version: 3.0.12 resolution: "@cspell/dict-filetypes@npm:3.0.12" checksum: 10c0/9674c3e8a7ec52654ba01c691d9817479690efbe796c5b6cc30ba51ce68d6a6f7da68c8be2a385964007328db8d1c65d30d7a876c12382f726faa35fe29c6a74 @@ -712,14 +713,14 @@ __metadata: languageName: node linkType: hard -"@cspell/dict-git@npm:^3.0.5": +"@cspell/dict-git@npm:^3.0.4": version: 3.0.5 resolution: "@cspell/dict-git@npm:3.0.5" checksum: 10c0/0701288549667be5f4e736132d48fbded409dba10f02949e3e613f4f67944a817172331f5f092dab4d4ab18f41174f5b6bccedc7cf46da1c93c9b278a73de316 languageName: node linkType: hard -"@cspell/dict-golang@npm:^6.0.21": +"@cspell/dict-golang@npm:^6.0.20": version: 6.0.21 resolution: "@cspell/dict-golang@npm:6.0.21" checksum: 10c0/da791b918c4cf5584149e091f15fb1db0c3acef14b4d774df08586b8353f8ccb4f5b699ad471f67d7818205799c474587b88d9d824702da10083413cb04cc992 @@ -836,7 +837,7 @@ __metadata: languageName: node linkType: hard -"@cspell/dict-npm@npm:^5.2.3": +"@cspell/dict-npm@npm:^5.2.1": version: 5.2.4 resolution: "@cspell/dict-npm@npm:5.2.4" checksum: 10c0/b01a07baef601ca46bed697037b09c7aafa93cbb1b9b0206147e8746c280d1c9e9095cb0ec2909f5493978130155e98c48c681059b38bfd109cab5e0edd91714 @@ -864,7 +865,7 @@ __metadata: languageName: node linkType: hard -"@cspell/dict-python@npm:^4.2.18": +"@cspell/dict-python@npm:^4.2.17": version: 4.2.18 resolution: "@cspell/dict-python@npm:4.2.18" dependencies: @@ -908,7 +909,7 @@ __metadata: languageName: node linkType: hard -"@cspell/dict-software-terms@npm:^5.0.9": +"@cspell/dict-software-terms@npm:^5.0.5": version: 5.0.10 resolution: "@cspell/dict-software-terms@npm:5.0.10" checksum: 10c0/58c87c316a47651c61920fd5366e120a7679b2d0a0359cda176ac2697d435724d2f7dd9ce81e6a050750e966b5fd6690a5698d31cac95a47808007343a5ba74d @@ -957,48 +958,48 @@ __metadata: languageName: node linkType: hard -"@cspell/dynamic-import@npm:9.0.2": - version: 9.0.2 - resolution: "@cspell/dynamic-import@npm:9.0.2" +"@cspell/dynamic-import@npm:8.19.4": + version: 8.19.4 + resolution: "@cspell/dynamic-import@npm:8.19.4" dependencies: - "@cspell/url": "npm:9.0.2" + "@cspell/url": "npm:8.19.4" import-meta-resolve: "npm:^4.1.0" - checksum: 10c0/a9b94e5d213852262909c8999c5948ee400d679720f644d56a70a6e5e9ababa74292ac63e5a4eee7b95325abdf127f756f69eb7e7699237257554ce95093090e + checksum: 10c0/2af14cdc075da171353d1b46edc34d8912ce3897f93eb76060c322d64fc885000c6450b625bd2fa453eaf078ace1442c983419fbeea186450ad2ac9df0609559 languageName: node linkType: hard -"@cspell/eslint-plugin@npm:^9.0.2": - version: 9.0.2 - resolution: "@cspell/eslint-plugin@npm:9.0.2" +"@cspell/eslint-plugin@npm:^8.19.4": + version: 8.19.4 + resolution: "@cspell/eslint-plugin@npm:8.19.4" dependencies: - "@cspell/cspell-types": "npm:9.0.2" - "@cspell/url": "npm:9.0.2" - cspell-lib: "npm:9.0.2" - synckit: "npm:^0.11.6" + "@cspell/cspell-types": "npm:8.19.4" + "@cspell/url": "npm:8.19.4" + cspell-lib: "npm:8.19.4" + synckit: "npm:^0.11.4" peerDependencies: eslint: ^7 || ^8 || ^9 - checksum: 10c0/732e9279478f865dd1a589242a1442029b11758581ced654637b25d2895079bb4af54c0e8830649b0fa8221d79313f0c232999dc0ecff113907c4619cf997469 + checksum: 10c0/33e62c0f18d8e4d63b607e105c278ccc01bfd89f220b816b8133050357831c2757ddb38fd78179af1e7f830d11cad7afd5233b2169644aaeba1909dba809747f languageName: node linkType: hard -"@cspell/filetypes@npm:9.0.2": - version: 9.0.2 - resolution: "@cspell/filetypes@npm:9.0.2" - checksum: 10c0/b893ff2303a30ea50fa65c92eec41931cc417f4dc6e4491506e33bd86e8ce052bd839ef9ba7c8c193853f8b079d8149bea9779544fdbfa06a1d3f3e2b827ef16 +"@cspell/filetypes@npm:8.19.4": + version: 8.19.4 + resolution: "@cspell/filetypes@npm:8.19.4" + checksum: 10c0/c559bbc6e30bd8b1a0fe95f47a1d5eb631785df99ff1c2740ca02e118c3ab608e9b88ffae0e875d5d958c0152a7effff8e522ee371fdc505eaee505ea80f15d4 languageName: node linkType: hard -"@cspell/strong-weak-map@npm:9.0.2": - version: 9.0.2 - resolution: "@cspell/strong-weak-map@npm:9.0.2" - checksum: 10c0/d91acd79b549f8c87407b8fc20b2c65ddf1836e9f8a60e449089bab898814844636e2253b201768ce414e6b8b633339e9b19c9685692b0e0781d723f6aeec876 +"@cspell/strong-weak-map@npm:8.19.4": + version: 8.19.4 + resolution: "@cspell/strong-weak-map@npm:8.19.4" + checksum: 10c0/ffa84dc389ac9285a3994d6fa85fc9cc025007b351851bfd4ea14dca472f58c3f805d4dba97edd454674becbcb97f02b24001072eb0c66fcad74b4fc6235ad78 languageName: node linkType: hard -"@cspell/url@npm:9.0.2": - version: 9.0.2 - resolution: "@cspell/url@npm:9.0.2" - checksum: 10c0/ff73737634358410b1acc23858c47b1961808cb51b0e0f09c722d4b1bc8a1f80551cf19fab674e403f82cf9ad0eba4ed973c19e648ef6c45e45f93bea1a1d6db +"@cspell/url@npm:8.19.4": + version: 8.19.4 + resolution: "@cspell/url@npm:8.19.4" + checksum: 10c0/37dc0414bd1c7d425b253877a685a317745ef61716ca1306b2aca41e79334f85c9afc5103a62b7c4fc4be754ff8fd63f00c04a7bfa13fcc3e2f64cdee1c12617 languageName: node linkType: hard @@ -1048,63 +1049,63 @@ __metadata: languageName: node linkType: hard -"@eslint-react/ast@npm:1.50.0": - version: 1.50.0 - resolution: "@eslint-react/ast@npm:1.50.0" +"@eslint-react/ast@npm:1.51.0": + version: 1.51.0 + resolution: "@eslint-react/ast@npm:1.51.0" dependencies: - "@eslint-react/eff": "npm:1.50.0" - "@typescript-eslint/types": "npm:^8.32.1" - "@typescript-eslint/typescript-estree": "npm:^8.32.1" - "@typescript-eslint/utils": "npm:^8.32.1" + "@eslint-react/eff": "npm:1.51.0" + "@typescript-eslint/types": "npm:^8.33.1" + "@typescript-eslint/typescript-estree": "npm:^8.33.1" + "@typescript-eslint/utils": "npm:^8.33.1" string-ts: "npm:^2.2.1" ts-pattern: "npm:^5.7.1" - checksum: 10c0/5043f12246b7a55d1b8ad6def47d0ca24e45762def008fc8bc066652413e29e524a945c37192a45019a66cbb3e034500e06aa6574f03d78e7813068807115797 + checksum: 10c0/c1411f3977bdec018e4a598e19c4173c0e64466112d83e226c0f6cb7f0150302169490de0e5f51d4af392f1be233c8da8494a1b7c1498c9d790c0dbab66df4ab languageName: node linkType: hard -"@eslint-react/core@npm:1.50.0": - version: 1.50.0 - resolution: "@eslint-react/core@npm:1.50.0" +"@eslint-react/core@npm:1.51.0": + version: 1.51.0 + resolution: "@eslint-react/core@npm:1.51.0" dependencies: - "@eslint-react/ast": "npm:1.50.0" - "@eslint-react/eff": "npm:1.50.0" - "@eslint-react/kit": "npm:1.50.0" - "@eslint-react/shared": "npm:1.50.0" - "@eslint-react/var": "npm:1.50.0" - "@typescript-eslint/scope-manager": "npm:^8.32.1" - "@typescript-eslint/type-utils": "npm:^8.32.1" - "@typescript-eslint/types": "npm:^8.32.1" - "@typescript-eslint/utils": "npm:^8.32.1" + "@eslint-react/ast": "npm:1.51.0" + "@eslint-react/eff": "npm:1.51.0" + "@eslint-react/kit": "npm:1.51.0" + "@eslint-react/shared": "npm:1.51.0" + "@eslint-react/var": "npm:1.51.0" + "@typescript-eslint/scope-manager": "npm:^8.33.1" + "@typescript-eslint/type-utils": "npm:^8.33.1" + "@typescript-eslint/types": "npm:^8.33.1" + "@typescript-eslint/utils": "npm:^8.33.1" birecord: "npm:^0.1.1" ts-pattern: "npm:^5.7.1" - checksum: 10c0/532e15a7d446fa0f593265e9fb9efa807c273509a5fe071974924cb3cbfbb8408d73d5ea6172d09d06e5e55a30ab39ea413fe8ec09d4d8d99f0acbe1cfe9766a + checksum: 10c0/6934a31def3d4626e944e4bd25b13aa897da77209e1f884c0cc8dd81ef5556b5c63b6278b8a35b610843aa9ef6121d9a5fa0551e8d4a6a4451b50c463dfe3ae9 languageName: node linkType: hard -"@eslint-react/eff@npm:1.50.0": - version: 1.50.0 - resolution: "@eslint-react/eff@npm:1.50.0" - checksum: 10c0/84c745a5088da00f739a223e72433374bece30592f6bf208fbe495edeb8093b7f0da9461e74798faa1872032e7f308ab88f17cc655a0939468484f9b19ad3dca +"@eslint-react/eff@npm:1.51.0": + version: 1.51.0 + resolution: "@eslint-react/eff@npm:1.51.0" + checksum: 10c0/a7bd0603a2d8b7bcef1e07496615bf15790b8042552cf1f248292e576c13dd4a82fcf4d1cf037d4b0c260060f505380386e4b3e51a916534c4df963ba4208da2 languageName: node linkType: hard -"@eslint-react/eslint-plugin@npm:^1.50.0": - version: 1.50.0 - resolution: "@eslint-react/eslint-plugin@npm:1.50.0" +"@eslint-react/eslint-plugin@npm:^1.51.0": + version: 1.51.0 + resolution: "@eslint-react/eslint-plugin@npm:1.51.0" dependencies: - "@eslint-react/eff": "npm:1.50.0" - "@eslint-react/kit": "npm:1.50.0" - "@eslint-react/shared": "npm:1.50.0" - "@typescript-eslint/scope-manager": "npm:^8.32.1" - "@typescript-eslint/type-utils": "npm:^8.32.1" - "@typescript-eslint/types": "npm:^8.32.1" - "@typescript-eslint/utils": "npm:^8.32.1" - eslint-plugin-react-debug: "npm:1.50.0" - eslint-plugin-react-dom: "npm:1.50.0" - eslint-plugin-react-hooks-extra: "npm:1.50.0" - eslint-plugin-react-naming-convention: "npm:1.50.0" - eslint-plugin-react-web-api: "npm:1.50.0" - eslint-plugin-react-x: "npm:1.50.0" + "@eslint-react/eff": "npm:1.51.0" + "@eslint-react/kit": "npm:1.51.0" + "@eslint-react/shared": "npm:1.51.0" + "@typescript-eslint/scope-manager": "npm:^8.33.1" + "@typescript-eslint/type-utils": "npm:^8.33.1" + "@typescript-eslint/types": "npm:^8.33.1" + "@typescript-eslint/utils": "npm:^8.33.1" + eslint-plugin-react-debug: "npm:1.51.0" + eslint-plugin-react-dom: "npm:1.51.0" + eslint-plugin-react-hooks-extra: "npm:1.51.0" + eslint-plugin-react-naming-convention: "npm:1.51.0" + eslint-plugin-react-web-api: "npm:1.51.0" + eslint-plugin-react-x: "npm:1.51.0" peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: ^4.9.5 || ^5.3.3 @@ -1113,47 +1114,47 @@ __metadata: optional: false typescript: optional: true - checksum: 10c0/8fe3a550d51c83d4affde4685194eb7837bf0d186d398246c577a7993ded2382d248adc8d4485728da420b88b2bf7872b0e7aa15878a382f5587253e8fd44187 + checksum: 10c0/35dd43b7f8ce544186a84ac1877e43d62802f115d56d4ae1350ce1246a248e80c7cdee3f0e96d75473dc481ddc2ac6daf385793fe6626e1d127f5893b56a014a languageName: node linkType: hard -"@eslint-react/kit@npm:1.50.0": - version: 1.50.0 - resolution: "@eslint-react/kit@npm:1.50.0" +"@eslint-react/kit@npm:1.51.0": + version: 1.51.0 + resolution: "@eslint-react/kit@npm:1.51.0" dependencies: - "@eslint-react/eff": "npm:1.50.0" - "@typescript-eslint/utils": "npm:^8.32.1" + "@eslint-react/eff": "npm:1.51.0" + "@typescript-eslint/utils": "npm:^8.33.1" ts-pattern: "npm:^5.7.1" - zod: "npm:^3.25.28" - checksum: 10c0/cdfdb50cdd035f31af0ac38f0d9013a706497c5560a128ca1dfcbcd3bcc80fef7b6b7336f549c3be381dc8b8eda2a0c068c499562e2e7ac05c44c07d026ed7ab + zod: "npm:^3.25.49" + checksum: 10c0/61a9646bd16d60ff808a5d96922ba73f2f25ea84045e28a7e282a8deecac1cbf069cfa28c78cf9844b94fea6aed2fa6acdb1236e5138a63efdb7f05e4716c0ee languageName: node linkType: hard -"@eslint-react/shared@npm:1.50.0": - version: 1.50.0 - resolution: "@eslint-react/shared@npm:1.50.0" +"@eslint-react/shared@npm:1.51.0": + version: 1.51.0 + resolution: "@eslint-react/shared@npm:1.51.0" dependencies: - "@eslint-react/eff": "npm:1.50.0" - "@eslint-react/kit": "npm:1.50.0" - "@typescript-eslint/utils": "npm:^8.32.1" + "@eslint-react/eff": "npm:1.51.0" + "@eslint-react/kit": "npm:1.51.0" + "@typescript-eslint/utils": "npm:^8.33.1" ts-pattern: "npm:^5.7.1" - zod: "npm:^3.25.28" - checksum: 10c0/6b12221a7db3ecc0096025e1186ba710130cf73fc13d2075b2e700862cd3c02e214415a2f108fb569c27ccd3e23c130546fd1fe2212833099dde59afd922ade4 + zod: "npm:^3.25.49" + checksum: 10c0/592b50b435a94edc3c6a8358bbe3ef46b76ff6e101d378d5042198232ef142699c113b43a2d985e6b6e98b8e1c7bb4048d59bb80fa8ff0495092711293b49d64 languageName: node linkType: hard -"@eslint-react/var@npm:1.50.0": - version: 1.50.0 - resolution: "@eslint-react/var@npm:1.50.0" +"@eslint-react/var@npm:1.51.0": + version: 1.51.0 + resolution: "@eslint-react/var@npm:1.51.0" dependencies: - "@eslint-react/ast": "npm:1.50.0" - "@eslint-react/eff": "npm:1.50.0" - "@typescript-eslint/scope-manager": "npm:^8.32.1" - "@typescript-eslint/types": "npm:^8.32.1" - "@typescript-eslint/utils": "npm:^8.32.1" + "@eslint-react/ast": "npm:1.51.0" + "@eslint-react/eff": "npm:1.51.0" + "@typescript-eslint/scope-manager": "npm:^8.33.1" + "@typescript-eslint/types": "npm:^8.33.1" + "@typescript-eslint/utils": "npm:^8.33.1" string-ts: "npm:^2.2.1" ts-pattern: "npm:^5.7.1" - checksum: 10c0/95f74a49617e9828e6a53851f73ae4fb68eac38dde421f1a8c4f0e1bfb08839d4f3dad0b4c1ae79d08d3a63a63148399bca36c5e774afeb778c258d10efc48a2 + checksum: 10c0/0024568ea4c627c527539684deec2175b08b8ec4d0e25b18bb88ffa205a6f507a192a42c6c5c4936c8bdf5993ee99a9dde9d59a978f5af5875700e2c7caaceb7 languageName: node linkType: hard @@ -1201,10 +1202,10 @@ __metadata: languageName: node linkType: hard -"@eslint/js@npm:9.27.0, @eslint/js@npm:^9.27.0": - version: 9.27.0 - resolution: "@eslint/js@npm:9.27.0" - checksum: 10c0/79b219ceda79182732954b52f7a494f49995a9a6419c7ae0316866e324d3706afeb857e1306bb6f35a4caaf176a5174d00228fc93d36781a570d32c587736564 +"@eslint/js@npm:9.28.0, @eslint/js@npm:^9.28.0": + version: 9.28.0 + resolution: "@eslint/js@npm:9.28.0" + checksum: 10c0/5a6759542490dd9f778993edfbc8d2f55168fd0f7336ceed20fe3870c65499d72fc0bca8d1ae00ea246b0923ea4cba2e0758a8a5507a3506ddcf41c92282abb8 languageName: node linkType: hard @@ -2014,9 +2015,9 @@ __metadata: linkType: hard "@pkgr/core@npm:^0.2.4": - version: 0.2.4 - resolution: "@pkgr/core@npm:0.2.4" - checksum: 10c0/2528a443bbbef5d4686614e1d73f834f19ccbc975f62b2a64974a6b97bcdf677b9c5e8948e04808ac4f0d853e2f422adfaae2a06e9e9f4f5cf8af76f1adf8dc1 + version: 0.2.7 + resolution: "@pkgr/core@npm:0.2.7" + checksum: 10c0/951f5ebf2feb6e9dbc202d937f1a364d60f2bf0e3e53594251bcc1d9d2ed0df0a919c49ba162a9499fce73cf46ebe4d7959a8dfbac03511dbe79b69f5fedb804 languageName: node linkType: hard @@ -2064,29 +2065,29 @@ __metadata: linkType: hard "@rsbuild/plugin-react@npm:~1.3.1": - version: 1.3.1 - resolution: "@rsbuild/plugin-react@npm:1.3.1" + version: 1.3.2 + resolution: "@rsbuild/plugin-react@npm:1.3.2" dependencies: - "@rspack/plugin-react-refresh": "npm:~1.4.2" + "@rspack/plugin-react-refresh": "npm:~1.4.3" react-refresh: "npm:^0.17.0" peerDependencies: "@rsbuild/core": 1.x - checksum: 10c0/088b4e3d1f2eb3b3daeba0cf1de5389910ac55108c98c1138ec0d2b54598fd471414c07d8832239a619227ecdfbb1c025c52a943d4cfa49ff2f73140e0c6e3be + checksum: 10c0/5dd13706f7ca958d783d000dce2387dbcca0613a5c9a48f5aa0c86bed3769fe5ef6cdb0fab55dd1bfc7bf56925d1aff7e55529fc0b10dfa4e1267fe9b77cdd73 languageName: node linkType: hard "@rsbuild/plugin-sass@npm:~1.3.0": - version: 1.3.1 - resolution: "@rsbuild/plugin-sass@npm:1.3.1" + version: 1.3.2 + resolution: "@rsbuild/plugin-sass@npm:1.3.2" dependencies: deepmerge: "npm:^4.3.1" loader-utils: "npm:^2.0.4" - postcss: "npm:^8.5.3" + postcss: "npm:^8.5.4" reduce-configs: "npm:^1.1.0" - sass-embedded: "npm:^1.86.0" + sass-embedded: "npm:1.89.0" peerDependencies: "@rsbuild/core": 1.x - checksum: 10c0/ca98d2bf7b8ec1c3803085dfe43d946af9a87e62ef1c17d5f5f16bee3cb71361e85a91953fb137529478a0f4909a2e5de5a4f735ece3432cea05beacabb54505 + checksum: 10c0/4aa501d72eb1567cc1d1d067b4b7bb575b2e93c4ce13f5173daac6110bca9f5d12e2262538935500ff324a6de0d8e4a3c18d64aef49692c18856e62870ee2b94 languageName: node linkType: hard @@ -2225,7 +2226,7 @@ __metadata: languageName: node linkType: hard -"@rspack/plugin-react-refresh@npm:~1.4.2": +"@rspack/plugin-react-refresh@npm:~1.4.3": version: 1.4.3 resolution: "@rspack/plugin-react-refresh@npm:1.4.3" dependencies: @@ -2471,74 +2472,96 @@ __metadata: languageName: node linkType: hard -"@shikijs/core@npm:3.4.2": - version: 3.4.2 - resolution: "@shikijs/core@npm:3.4.2" +"@shikijs/core@npm:3.5.0": + version: 3.5.0 + resolution: "@shikijs/core@npm:3.5.0" dependencies: - "@shikijs/types": "npm:3.4.2" + "@shikijs/types": "npm:3.5.0" "@shikijs/vscode-textmate": "npm:^10.0.2" "@types/hast": "npm:^3.0.4" hast-util-to-html: "npm:^9.0.5" - checksum: 10c0/702469d9c80fc80e2b81dd10407cc946771dcf355d56048e1dab43e40d144395c14a6ecde92e03c70a35249ad6634ef4605bd17ad6974a2b4e04f9efccf24414 + checksum: 10c0/bfcb1dde91b04ad48fac6700bc4d08239715e3559cee0b158a8857ab2df5e3944e50dc4dcc35bcf9322ac7de23800408b8e417b8022b1bd8bd792f19bf60e619 languageName: node linkType: hard -"@shikijs/engine-javascript@npm:3.4.2": - version: 3.4.2 - resolution: "@shikijs/engine-javascript@npm:3.4.2" +"@shikijs/core@npm:3.6.0": + version: 3.6.0 + resolution: "@shikijs/core@npm:3.6.0" + dependencies: + "@shikijs/types": "npm:3.6.0" + "@shikijs/vscode-textmate": "npm:^10.0.2" + "@types/hast": "npm:^3.0.4" + hast-util-to-html: "npm:^9.0.5" + checksum: 10c0/cd12f225df50d6773a3005a8a86fcd1d3c7dcb3b90a01f97f2269ecdc5600f8f3df28181ee5f5bb6ff623090bfe7b98ac9353ae24691a84b0a34e127db6a5f13 + languageName: node + linkType: hard + +"@shikijs/engine-javascript@npm:3.6.0": + version: 3.6.0 + resolution: "@shikijs/engine-javascript@npm:3.6.0" dependencies: - "@shikijs/types": "npm:3.4.2" + "@shikijs/types": "npm:3.6.0" "@shikijs/vscode-textmate": "npm:^10.0.2" oniguruma-to-es: "npm:^4.3.3" - checksum: 10c0/160056a6303978d4e40114fe0414acd5089ea39a55a3144b9cba5e50aa38c521948ee47a2edc5acda5fd3607e33b20539845cfd9ca3508163e989b8fb4220488 + checksum: 10c0/30a455f58ded393c6a8de22d090b64aeab06c0a063e71fccedc05de91900fa4bb691ffcaaf5d3799cf8a040849fe71685d3f1f3b29764e34111fd425310b924a languageName: node linkType: hard -"@shikijs/engine-oniguruma@npm:3.4.2": - version: 3.4.2 - resolution: "@shikijs/engine-oniguruma@npm:3.4.2" +"@shikijs/engine-oniguruma@npm:3.6.0": + version: 3.6.0 + resolution: "@shikijs/engine-oniguruma@npm:3.6.0" dependencies: - "@shikijs/types": "npm:3.4.2" + "@shikijs/types": "npm:3.6.0" "@shikijs/vscode-textmate": "npm:^10.0.2" - checksum: 10c0/b8a13123b8a41e1016b661c24b349163b5026841772c351aacddcdc724518a926a49065ac77e4a1d4bb94da12c6bf11e6b1c938ef881545064bb3b484223eba0 + checksum: 10c0/2e3a1fb02d823be5d998a310fa2e5e34e92a7498996bed2ec52eb9368dbba99e10571619a364c406d79f3047b966fecc7afb29635a8fdfa6a25c9ee5cd8f2f34 languageName: node linkType: hard -"@shikijs/langs@npm:3.4.2": - version: 3.4.2 - resolution: "@shikijs/langs@npm:3.4.2" +"@shikijs/langs@npm:3.6.0": + version: 3.6.0 + resolution: "@shikijs/langs@npm:3.6.0" dependencies: - "@shikijs/types": "npm:3.4.2" - checksum: 10c0/ca0260b00e32385db8db43d8dd147f480bc2ff699acaf6052ec3e421b1c6d27df6dfb0f69fadb673ef357333ba65fdce2fbcd8c31c7d245439756bfb3530eba4 + "@shikijs/types": "npm:3.6.0" + checksum: 10c0/b904e230c5b4e1cd0c1c09d36b3704ac961b8b27802581ee375c2c1f92f5df5e93dc88ddf882be094fe42c3bd374c67e10f2f14d4974d0cb8e04efc8ba3492f0 languageName: node linkType: hard -"@shikijs/themes@npm:3.4.2": - version: 3.4.2 - resolution: "@shikijs/themes@npm:3.4.2" +"@shikijs/themes@npm:3.6.0": + version: 3.6.0 + resolution: "@shikijs/themes@npm:3.6.0" dependencies: - "@shikijs/types": "npm:3.4.2" - checksum: 10c0/d50bca4384ccf88d68f007869e13bc7a9b55b16c40a3269fe120b2e5a2e882f6206ee0325f619bfa31ff00a0341452840d38f4ca2296dd3ba3e200e53445e22b + "@shikijs/types": "npm:3.6.0" + checksum: 10c0/33be969bc56ea86590d63042a24ab715527f30f9488cca6fe17dfff67894ca1e75e83ddca9c9b5d449a8e8586ad014ace8b92b389e73be2c35280d6f805b87a3 languageName: node linkType: hard -"@shikijs/transformers@npm:^3.4.2": - version: 3.4.2 - resolution: "@shikijs/transformers@npm:3.4.2" +"@shikijs/transformers@npm:^3.5.0": + version: 3.5.0 + resolution: "@shikijs/transformers@npm:3.5.0" dependencies: - "@shikijs/core": "npm:3.4.2" - "@shikijs/types": "npm:3.4.2" - checksum: 10c0/68fb2a80b171f673a2043d962f87c68bf2e4cc6189a87662f25c9d8c533c1572eb32d15d303e15e48c60c42bfba8f55da1c9881e36dca79f9a8cbed342dd65e4 + "@shikijs/core": "npm:3.5.0" + "@shikijs/types": "npm:3.5.0" + checksum: 10c0/dd107c136141b8c91fbc5878861656020de5b5b2b84733bf6cf16f33345c3255cb34e6cfc01c9b13e3591ded823fee0156dd2319e36cc120f9f356dbaa0234fe languageName: node linkType: hard -"@shikijs/types@npm:3.4.2": - version: 3.4.2 - resolution: "@shikijs/types@npm:3.4.2" +"@shikijs/types@npm:3.5.0": + version: 3.5.0 + resolution: "@shikijs/types@npm:3.5.0" dependencies: "@shikijs/vscode-textmate": "npm:^10.0.2" "@types/hast": "npm:^3.0.4" - checksum: 10c0/a20d3535cc0d61a55d0c0d4dfcd33a52229ec8a4c650613cb0f424dcb499bcdf0230e007f70a18e12c102a04820557ff120f41f18b15a94f95f9ec343592906b + checksum: 10c0/6a7e9c322bef4af1dc3f3d60807bc8521525d4e446a8bfce46328a6495cde6998dae4126f739a5acf9af6c01365c77023fc0249ed49c228a41083f98875cd08b + languageName: node + linkType: hard + +"@shikijs/types@npm:3.6.0": + version: 3.6.0 + resolution: "@shikijs/types@npm:3.6.0" + dependencies: + "@shikijs/vscode-textmate": "npm:^10.0.2" + "@types/hast": "npm:^3.0.4" + checksum: 10c0/5ea6246541b18e67bde854c4b72fb3aecde4a7da080be827645e4728945b782df9dc6498115085afbcf180e21e06e949bc3b8c3162233a2bdf4313979f49a6f7 languageName: node linkType: hard @@ -2594,90 +2617,90 @@ __metadata: languageName: node linkType: hard -"@swc/core-darwin-arm64@npm:1.11.29": - version: 1.11.29 - resolution: "@swc/core-darwin-arm64@npm:1.11.29" +"@swc/core-darwin-arm64@npm:1.11.31": + version: 1.11.31 + resolution: "@swc/core-darwin-arm64@npm:1.11.31" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@swc/core-darwin-x64@npm:1.11.29": - version: 1.11.29 - resolution: "@swc/core-darwin-x64@npm:1.11.29" +"@swc/core-darwin-x64@npm:1.11.31": + version: 1.11.31 + resolution: "@swc/core-darwin-x64@npm:1.11.31" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@swc/core-linux-arm-gnueabihf@npm:1.11.29": - version: 1.11.29 - resolution: "@swc/core-linux-arm-gnueabihf@npm:1.11.29" +"@swc/core-linux-arm-gnueabihf@npm:1.11.31": + version: 1.11.31 + resolution: "@swc/core-linux-arm-gnueabihf@npm:1.11.31" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@swc/core-linux-arm64-gnu@npm:1.11.29": - version: 1.11.29 - resolution: "@swc/core-linux-arm64-gnu@npm:1.11.29" +"@swc/core-linux-arm64-gnu@npm:1.11.31": + version: 1.11.31 + resolution: "@swc/core-linux-arm64-gnu@npm:1.11.31" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@swc/core-linux-arm64-musl@npm:1.11.29": - version: 1.11.29 - resolution: "@swc/core-linux-arm64-musl@npm:1.11.29" +"@swc/core-linux-arm64-musl@npm:1.11.31": + version: 1.11.31 + resolution: "@swc/core-linux-arm64-musl@npm:1.11.31" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@swc/core-linux-x64-gnu@npm:1.11.29": - version: 1.11.29 - resolution: "@swc/core-linux-x64-gnu@npm:1.11.29" +"@swc/core-linux-x64-gnu@npm:1.11.31": + version: 1.11.31 + resolution: "@swc/core-linux-x64-gnu@npm:1.11.31" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@swc/core-linux-x64-musl@npm:1.11.29": - version: 1.11.29 - resolution: "@swc/core-linux-x64-musl@npm:1.11.29" +"@swc/core-linux-x64-musl@npm:1.11.31": + version: 1.11.31 + resolution: "@swc/core-linux-x64-musl@npm:1.11.31" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@swc/core-win32-arm64-msvc@npm:1.11.29": - version: 1.11.29 - resolution: "@swc/core-win32-arm64-msvc@npm:1.11.29" +"@swc/core-win32-arm64-msvc@npm:1.11.31": + version: 1.11.31 + resolution: "@swc/core-win32-arm64-msvc@npm:1.11.31" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@swc/core-win32-ia32-msvc@npm:1.11.29": - version: 1.11.29 - resolution: "@swc/core-win32-ia32-msvc@npm:1.11.29" +"@swc/core-win32-ia32-msvc@npm:1.11.31": + version: 1.11.31 + resolution: "@swc/core-win32-ia32-msvc@npm:1.11.31" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@swc/core-win32-x64-msvc@npm:1.11.29": - version: 1.11.29 - resolution: "@swc/core-win32-x64-msvc@npm:1.11.29" +"@swc/core-win32-x64-msvc@npm:1.11.31": + version: 1.11.31 + resolution: "@swc/core-win32-x64-msvc@npm:1.11.31" conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@swc/core@npm:1.11.29": - version: 1.11.29 - resolution: "@swc/core@npm:1.11.29" +"@swc/core@npm:1.11.31": + version: 1.11.31 + resolution: "@swc/core@npm:1.11.31" dependencies: - "@swc/core-darwin-arm64": "npm:1.11.29" - "@swc/core-darwin-x64": "npm:1.11.29" - "@swc/core-linux-arm-gnueabihf": "npm:1.11.29" - "@swc/core-linux-arm64-gnu": "npm:1.11.29" - "@swc/core-linux-arm64-musl": "npm:1.11.29" - "@swc/core-linux-x64-gnu": "npm:1.11.29" - "@swc/core-linux-x64-musl": "npm:1.11.29" - "@swc/core-win32-arm64-msvc": "npm:1.11.29" - "@swc/core-win32-ia32-msvc": "npm:1.11.29" - "@swc/core-win32-x64-msvc": "npm:1.11.29" + "@swc/core-darwin-arm64": "npm:1.11.31" + "@swc/core-darwin-x64": "npm:1.11.31" + "@swc/core-linux-arm-gnueabihf": "npm:1.11.31" + "@swc/core-linux-arm64-gnu": "npm:1.11.31" + "@swc/core-linux-arm64-musl": "npm:1.11.31" + "@swc/core-linux-x64-gnu": "npm:1.11.31" + "@swc/core-linux-x64-musl": "npm:1.11.31" + "@swc/core-win32-arm64-msvc": "npm:1.11.31" + "@swc/core-win32-ia32-msvc": "npm:1.11.31" + "@swc/core-win32-x64-msvc": "npm:1.11.31" "@swc/counter": "npm:^0.1.3" "@swc/types": "npm:^0.1.21" peerDependencies: @@ -2706,7 +2729,7 @@ __metadata: peerDependenciesMeta: "@swc/helpers": optional: true - checksum: 10c0/d2df8f09fb0246d1794d09d5192d43efcfd061f3a59956ee1b26c4a031852bb0afaa1b12f915773a807272a3ff6f88870d90970dfd75bca379e0d206a2663643 + checksum: 10c0/3a1c39af6b90baecaf4f78f378e5e2a62e2a468706ec3a1df577bf904941736918d3ec3df1c4a5178a3c39e6c2f131d1a4e7c9f7bbb8c4f31a778a68e7ccff7f languageName: node linkType: hard @@ -3117,7 +3140,7 @@ __metadata: languageName: node linkType: hard -"@types/hast@npm:^2.0.0": +"@types/hast@npm:2, @types/hast@npm:^2.0.0": version: 2.3.10 resolution: "@types/hast@npm:2.3.10" dependencies: @@ -3204,12 +3227,12 @@ __metadata: languageName: node linkType: hard -"@types/node@npm:*, @types/node@npm:^22.0.0, @types/node@npm:^22.15.24": - version: 22.15.24 - resolution: "@types/node@npm:22.15.24" +"@types/node@npm:*, @types/node@npm:^22.0.0, @types/node@npm:^22.15.30": + version: 22.15.30 + resolution: "@types/node@npm:22.15.30" dependencies: undici-types: "npm:~6.21.0" - checksum: 10c0/16c38e98168fa6c3d2f2b6e95f14f80878d969b39093bc5384385a884d73a7fe361c563b36f14bc27536b337f5baad74321f717b31d2c061b9c48074567eb8c6 + checksum: 10c0/ca330ac0e7fd502686d6df115fcc606aba46fd334220f749bbba2f639accdadcb23f7900603ceccdc8240be736739cad5c0b87c0fa92c9255a4dff245f07d664 languageName: node linkType: hard @@ -3221,11 +3244,11 @@ __metadata: linkType: hard "@types/node@npm:^20.4.1": - version: 20.17.52 - resolution: "@types/node@npm:20.17.52" + version: 20.19.0 + resolution: "@types/node@npm:20.19.0" dependencies: - undici-types: "npm:~6.19.2" - checksum: 10c0/564d8655d9eb0cdc28b015afe9fd2b38e30c55a6e1a19cd1b67864afe8227513b77a54f84c1c0f9b236fae9cb3c23414d7f9be7c1f78a25e49ee9076eee8a4ba + undici-types: "npm:~6.21.0" + checksum: 10c0/11979f5c4c626555351352fe1b30846700ca018747272a7ff425f883f102805b7f07737d5b7fa3c6deb0ddaeb94e367bb9a633a3d1e1d5c517de9a6283c6f21c languageName: node linkType: hard @@ -3330,103 +3353,105 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/eslint-plugin@npm:8.33.0": - version: 8.33.0 - resolution: "@typescript-eslint/eslint-plugin@npm:8.33.0" +"@typescript-eslint/eslint-plugin@npm:8.33.1": + version: 8.33.1 + resolution: "@typescript-eslint/eslint-plugin@npm:8.33.1" dependencies: "@eslint-community/regexpp": "npm:^4.10.0" - "@typescript-eslint/scope-manager": "npm:8.33.0" - "@typescript-eslint/type-utils": "npm:8.33.0" - "@typescript-eslint/utils": "npm:8.33.0" - "@typescript-eslint/visitor-keys": "npm:8.33.0" + "@typescript-eslint/scope-manager": "npm:8.33.1" + "@typescript-eslint/type-utils": "npm:8.33.1" + "@typescript-eslint/utils": "npm:8.33.1" + "@typescript-eslint/visitor-keys": "npm:8.33.1" graphemer: "npm:^1.4.0" ignore: "npm:^7.0.0" natural-compare: "npm:^1.4.0" ts-api-utils: "npm:^2.1.0" peerDependencies: - "@typescript-eslint/parser": ^8.33.0 + "@typescript-eslint/parser": ^8.33.1 eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <5.9.0" - checksum: 10c0/fdfbba2134bb8aa8effb3686a9ffe0a5d9916b41ccdf4339976e0205734f802fca2631939f892ccedd20eee104d8cd0e691720728baeeee17c0f40d7bfe4205d + checksum: 10c0/35544068f175ca25296b42d0905065b40653a92c62e55414be68f62ddab580d7d768ee3c1276195fd8b8dd49de738ab7b41b8685e6fe2cd341cfca7320569166 languageName: node linkType: hard -"@typescript-eslint/parser@npm:8.33.0": - version: 8.33.0 - resolution: "@typescript-eslint/parser@npm:8.33.0" +"@typescript-eslint/parser@npm:8.33.1": + version: 8.33.1 + resolution: "@typescript-eslint/parser@npm:8.33.1" dependencies: - "@typescript-eslint/scope-manager": "npm:8.33.0" - "@typescript-eslint/types": "npm:8.33.0" - "@typescript-eslint/typescript-estree": "npm:8.33.0" - "@typescript-eslint/visitor-keys": "npm:8.33.0" + "@typescript-eslint/scope-manager": "npm:8.33.1" + "@typescript-eslint/types": "npm:8.33.1" + "@typescript-eslint/typescript-estree": "npm:8.33.1" + "@typescript-eslint/visitor-keys": "npm:8.33.1" debug: "npm:^4.3.4" peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <5.9.0" - checksum: 10c0/3f6aa8476d912a749a4f3e6ae6cbf90a881f1892efb7b3c88f6654fa03e770d8da511d0298615b0eda880b3811e157ed60e47e6a21aa309cbf912e2d5d79d73c + checksum: 10c0/be1c1313c342d956f5adfbd56f79865894cc9cabf93992515a690559c3758538868270671b222f90e4cabc2dcab82256aeb3ccea7502de9cc69e47b9b17ed45f languageName: node linkType: hard -"@typescript-eslint/project-service@npm:8.33.0": - version: 8.33.0 - resolution: "@typescript-eslint/project-service@npm:8.33.0" +"@typescript-eslint/project-service@npm:8.33.1": + version: 8.33.1 + resolution: "@typescript-eslint/project-service@npm:8.33.1" dependencies: - "@typescript-eslint/tsconfig-utils": "npm:^8.33.0" - "@typescript-eslint/types": "npm:^8.33.0" + "@typescript-eslint/tsconfig-utils": "npm:^8.33.1" + "@typescript-eslint/types": "npm:^8.33.1" debug: "npm:^4.3.4" - checksum: 10c0/a863d9e3be5ffb53c9d57b25b7a35149dae01afd942dd7fc36bd72a4230676ae12d0f37a789cddaf1baf71e3b35f09436bebbd081336e667b4181b48d0afe8f5 + peerDependencies: + typescript: ">=4.8.4 <5.9.0" + checksum: 10c0/b2ff7653aef4648bdff8aafc69b9de434184827216709f8a36427536ac7082a8adf1c5ac12a0a2bb023b46dfad8f6fee238028acc94af622956af7f22362de6f languageName: node linkType: hard -"@typescript-eslint/scope-manager@npm:8.33.0, @typescript-eslint/scope-manager@npm:^8.32.1": - version: 8.33.0 - resolution: "@typescript-eslint/scope-manager@npm:8.33.0" +"@typescript-eslint/scope-manager@npm:8.33.1, @typescript-eslint/scope-manager@npm:^8.33.1": + version: 8.33.1 + resolution: "@typescript-eslint/scope-manager@npm:8.33.1" dependencies: - "@typescript-eslint/types": "npm:8.33.0" - "@typescript-eslint/visitor-keys": "npm:8.33.0" - checksum: 10c0/eb259add242ce40642e7272b414c92ae9407d97cb304981f17f0de0846d5c4ab47d41816ef13da3d3976fe0b7a74df291525be27e4fe4f0ab5d35e86d340faa0 + "@typescript-eslint/types": "npm:8.33.1" + "@typescript-eslint/visitor-keys": "npm:8.33.1" + checksum: 10c0/03a6fd2b0a8ebeb62083a8f51658f0c42391cbfb632411542569a3a227d53bdb0332026ef4d5adc4780e5350d1d8b89e5b19667ed899afd26506e60c70192692 languageName: node linkType: hard -"@typescript-eslint/tsconfig-utils@npm:8.33.0, @typescript-eslint/tsconfig-utils@npm:^8.33.0": - version: 8.33.0 - resolution: "@typescript-eslint/tsconfig-utils@npm:8.33.0" +"@typescript-eslint/tsconfig-utils@npm:8.33.1, @typescript-eslint/tsconfig-utils@npm:^8.33.1": + version: 8.33.1 + resolution: "@typescript-eslint/tsconfig-utils@npm:8.33.1" peerDependencies: typescript: ">=4.8.4 <5.9.0" - checksum: 10c0/6e9a8e73e65b925f908f31e00be4f1b8d7e89f45d97fa703f468115943c297fc2cc6f9daa0c12b9607f39186f033ac244515f11710df7e1df8302c815ed57389 + checksum: 10c0/242e8f271d2e6e51446d337e1e59e8c91b66c0241da0fb861f536eb86cc3b53d1727c41e12e1ba070fa2451c8bc517c1ec50decaffa92a7c612b2aba29872777 languageName: node linkType: hard -"@typescript-eslint/type-utils@npm:8.33.0, @typescript-eslint/type-utils@npm:^8.0.0, @typescript-eslint/type-utils@npm:^8.32.1": - version: 8.33.0 - resolution: "@typescript-eslint/type-utils@npm:8.33.0" +"@typescript-eslint/type-utils@npm:8.33.1, @typescript-eslint/type-utils@npm:^8.0.0, @typescript-eslint/type-utils@npm:^8.33.1": + version: 8.33.1 + resolution: "@typescript-eslint/type-utils@npm:8.33.1" dependencies: - "@typescript-eslint/typescript-estree": "npm:8.33.0" - "@typescript-eslint/utils": "npm:8.33.0" + "@typescript-eslint/typescript-estree": "npm:8.33.1" + "@typescript-eslint/utils": "npm:8.33.1" debug: "npm:^4.3.4" ts-api-utils: "npm:^2.1.0" peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <5.9.0" - checksum: 10c0/4a81c654ba17e8a50e48249f781cb91cddb990044affda7315d9b259aabd638232c9a98ff5f4d45ea3b258098060864026b746fce93ad6b4dcde5e492d93c855 + checksum: 10c0/59843eeb7c652306d130104d7cb0f7dea1cc95a6cf6345609efbae130f24e3c4a9472780332af4247337e152b7955540b15fd9b907c04a5d265b888139818266 languageName: node linkType: hard -"@typescript-eslint/types@npm:8.33.0, @typescript-eslint/types@npm:^8.32.1, @typescript-eslint/types@npm:^8.33.0": - version: 8.33.0 - resolution: "@typescript-eslint/types@npm:8.33.0" - checksum: 10c0/348b64eb408719d7711a433fc9716e0c2aab8b3f3676f5a1cc2e00269044132282cf655deb6d0dd9817544116909513de3b709005352d186949d1014fad1a3cb +"@typescript-eslint/types@npm:8.33.1, @typescript-eslint/types@npm:^8.33.1": + version: 8.33.1 + resolution: "@typescript-eslint/types@npm:8.33.1" + checksum: 10c0/3083c184c882475eed1f9d1a8961dad30ef834c662bc826ff9a959ff1eed49aad21a73b2b93c4062799feafff5f5f24aebb1df17e198808aa19d4c8de1e64095 languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:8.33.0, @typescript-eslint/typescript-estree@npm:^8.32.1": - version: 8.33.0 - resolution: "@typescript-eslint/typescript-estree@npm:8.33.0" +"@typescript-eslint/typescript-estree@npm:8.33.1, @typescript-eslint/typescript-estree@npm:^8.33.1": + version: 8.33.1 + resolution: "@typescript-eslint/typescript-estree@npm:8.33.1" dependencies: - "@typescript-eslint/project-service": "npm:8.33.0" - "@typescript-eslint/tsconfig-utils": "npm:8.33.0" - "@typescript-eslint/types": "npm:8.33.0" - "@typescript-eslint/visitor-keys": "npm:8.33.0" + "@typescript-eslint/project-service": "npm:8.33.1" + "@typescript-eslint/tsconfig-utils": "npm:8.33.1" + "@typescript-eslint/types": "npm:8.33.1" + "@typescript-eslint/visitor-keys": "npm:8.33.1" debug: "npm:^4.3.4" fast-glob: "npm:^3.3.2" is-glob: "npm:^4.0.3" @@ -3435,32 +3460,32 @@ __metadata: ts-api-utils: "npm:^2.1.0" peerDependencies: typescript: ">=4.8.4 <5.9.0" - checksum: 10c0/677b12b2e5780ffaef508bddbf8712fe2c3413f3d14fd8fd0cfbe22952a81c6642b3cc26984cf27fdfc3dd2457ae5f8aa04437d3b0ae32987a1895f9648ca7b2 + checksum: 10c0/293a93d25046e05fdc3887232191c3f3ee771c0f5b1426d63deaf0541db1cb80b4307a80805c78b092206c9b267884a7e6b5905dc1b3c26f28bb4de47fd9ee8f languageName: node linkType: hard -"@typescript-eslint/utils@npm:8.33.0, @typescript-eslint/utils@npm:^8.32.1": - version: 8.33.0 - resolution: "@typescript-eslint/utils@npm:8.33.0" +"@typescript-eslint/utils@npm:8.33.1, @typescript-eslint/utils@npm:^8.33.1": + version: 8.33.1 + resolution: "@typescript-eslint/utils@npm:8.33.1" dependencies: "@eslint-community/eslint-utils": "npm:^4.7.0" - "@typescript-eslint/scope-manager": "npm:8.33.0" - "@typescript-eslint/types": "npm:8.33.0" - "@typescript-eslint/typescript-estree": "npm:8.33.0" + "@typescript-eslint/scope-manager": "npm:8.33.1" + "@typescript-eslint/types": "npm:8.33.1" + "@typescript-eslint/typescript-estree": "npm:8.33.1" peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <5.9.0" - checksum: 10c0/a0adb9e13d8f8d8f86ae2e905f3305ad60732e760364b291de66a857a551485d37c23e923299078a47f75d3cca643e1f2aefa010a0beb4cb0d08d0507c1038e1 + checksum: 10c0/12263df6eb32e8175236ad899687c062b50cfe4a0e66307d25ad2bf85a3e911faacbfbea4df180a59ebb5913fe1cc1f53fe3914695c7d802dd318bbc846fea26 languageName: node linkType: hard -"@typescript-eslint/visitor-keys@npm:8.33.0": - version: 8.33.0 - resolution: "@typescript-eslint/visitor-keys@npm:8.33.0" +"@typescript-eslint/visitor-keys@npm:8.33.1": + version: 8.33.1 + resolution: "@typescript-eslint/visitor-keys@npm:8.33.1" dependencies: - "@typescript-eslint/types": "npm:8.33.0" + "@typescript-eslint/types": "npm:8.33.1" eslint-visitor-keys: "npm:^4.2.0" - checksum: 10c0/41660f241e78314f69d251792f369ef1eeeab3b40fe4ab11b794d402c95bcb82b61d3e91763e7ab9b0f22011a7ac9c8f9dfd91734d61c9f4eaf4f7660555b53b + checksum: 10c0/3eb99072e7c2741d5dfc38945d1e7617b15ed10d06b24658a6e919e4153983b3d3c5f5f775ce140f83a84dbde219948d187de97defb09c1a91f3cf0a96704a94 languageName: node linkType: hard @@ -3471,123 +3496,123 @@ __metadata: languageName: node linkType: hard -"@unrs/resolver-binding-darwin-arm64@npm:1.7.8": - version: 1.7.8 - resolution: "@unrs/resolver-binding-darwin-arm64@npm:1.7.8" +"@unrs/resolver-binding-darwin-arm64@npm:1.7.11": + version: 1.7.11 + resolution: "@unrs/resolver-binding-darwin-arm64@npm:1.7.11" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@unrs/resolver-binding-darwin-x64@npm:1.7.8": - version: 1.7.8 - resolution: "@unrs/resolver-binding-darwin-x64@npm:1.7.8" +"@unrs/resolver-binding-darwin-x64@npm:1.7.11": + version: 1.7.11 + resolution: "@unrs/resolver-binding-darwin-x64@npm:1.7.11" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@unrs/resolver-binding-freebsd-x64@npm:1.7.8": - version: 1.7.8 - resolution: "@unrs/resolver-binding-freebsd-x64@npm:1.7.8" +"@unrs/resolver-binding-freebsd-x64@npm:1.7.11": + version: 1.7.11 + resolution: "@unrs/resolver-binding-freebsd-x64@npm:1.7.11" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.7.8": - version: 1.7.8 - resolution: "@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.7.8" +"@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.7.11": + version: 1.7.11 + resolution: "@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.7.11" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@unrs/resolver-binding-linux-arm-musleabihf@npm:1.7.8": - version: 1.7.8 - resolution: "@unrs/resolver-binding-linux-arm-musleabihf@npm:1.7.8" +"@unrs/resolver-binding-linux-arm-musleabihf@npm:1.7.11": + version: 1.7.11 + resolution: "@unrs/resolver-binding-linux-arm-musleabihf@npm:1.7.11" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@unrs/resolver-binding-linux-arm64-gnu@npm:1.7.8": - version: 1.7.8 - resolution: "@unrs/resolver-binding-linux-arm64-gnu@npm:1.7.8" +"@unrs/resolver-binding-linux-arm64-gnu@npm:1.7.11": + version: 1.7.11 + resolution: "@unrs/resolver-binding-linux-arm64-gnu@npm:1.7.11" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@unrs/resolver-binding-linux-arm64-musl@npm:1.7.8": - version: 1.7.8 - resolution: "@unrs/resolver-binding-linux-arm64-musl@npm:1.7.8" +"@unrs/resolver-binding-linux-arm64-musl@npm:1.7.11": + version: 1.7.11 + resolution: "@unrs/resolver-binding-linux-arm64-musl@npm:1.7.11" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@unrs/resolver-binding-linux-ppc64-gnu@npm:1.7.8": - version: 1.7.8 - resolution: "@unrs/resolver-binding-linux-ppc64-gnu@npm:1.7.8" +"@unrs/resolver-binding-linux-ppc64-gnu@npm:1.7.11": + version: 1.7.11 + resolution: "@unrs/resolver-binding-linux-ppc64-gnu@npm:1.7.11" conditions: os=linux & cpu=ppc64 & libc=glibc languageName: node linkType: hard -"@unrs/resolver-binding-linux-riscv64-gnu@npm:1.7.8": - version: 1.7.8 - resolution: "@unrs/resolver-binding-linux-riscv64-gnu@npm:1.7.8" +"@unrs/resolver-binding-linux-riscv64-gnu@npm:1.7.11": + version: 1.7.11 + resolution: "@unrs/resolver-binding-linux-riscv64-gnu@npm:1.7.11" conditions: os=linux & cpu=riscv64 & libc=glibc languageName: node linkType: hard -"@unrs/resolver-binding-linux-riscv64-musl@npm:1.7.8": - version: 1.7.8 - resolution: "@unrs/resolver-binding-linux-riscv64-musl@npm:1.7.8" +"@unrs/resolver-binding-linux-riscv64-musl@npm:1.7.11": + version: 1.7.11 + resolution: "@unrs/resolver-binding-linux-riscv64-musl@npm:1.7.11" conditions: os=linux & cpu=riscv64 & libc=musl languageName: node linkType: hard -"@unrs/resolver-binding-linux-s390x-gnu@npm:1.7.8": - version: 1.7.8 - resolution: "@unrs/resolver-binding-linux-s390x-gnu@npm:1.7.8" +"@unrs/resolver-binding-linux-s390x-gnu@npm:1.7.11": + version: 1.7.11 + resolution: "@unrs/resolver-binding-linux-s390x-gnu@npm:1.7.11" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@unrs/resolver-binding-linux-x64-gnu@npm:1.7.8": - version: 1.7.8 - resolution: "@unrs/resolver-binding-linux-x64-gnu@npm:1.7.8" +"@unrs/resolver-binding-linux-x64-gnu@npm:1.7.11": + version: 1.7.11 + resolution: "@unrs/resolver-binding-linux-x64-gnu@npm:1.7.11" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@unrs/resolver-binding-linux-x64-musl@npm:1.7.8": - version: 1.7.8 - resolution: "@unrs/resolver-binding-linux-x64-musl@npm:1.7.8" +"@unrs/resolver-binding-linux-x64-musl@npm:1.7.11": + version: 1.7.11 + resolution: "@unrs/resolver-binding-linux-x64-musl@npm:1.7.11" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@unrs/resolver-binding-wasm32-wasi@npm:1.7.8": - version: 1.7.8 - resolution: "@unrs/resolver-binding-wasm32-wasi@npm:1.7.8" +"@unrs/resolver-binding-wasm32-wasi@npm:1.7.11": + version: 1.7.11 + resolution: "@unrs/resolver-binding-wasm32-wasi@npm:1.7.11" dependencies: "@napi-rs/wasm-runtime": "npm:^0.2.10" conditions: cpu=wasm32 languageName: node linkType: hard -"@unrs/resolver-binding-win32-arm64-msvc@npm:1.7.8": - version: 1.7.8 - resolution: "@unrs/resolver-binding-win32-arm64-msvc@npm:1.7.8" +"@unrs/resolver-binding-win32-arm64-msvc@npm:1.7.11": + version: 1.7.11 + resolution: "@unrs/resolver-binding-win32-arm64-msvc@npm:1.7.11" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@unrs/resolver-binding-win32-ia32-msvc@npm:1.7.8": - version: 1.7.8 - resolution: "@unrs/resolver-binding-win32-ia32-msvc@npm:1.7.8" +"@unrs/resolver-binding-win32-ia32-msvc@npm:1.7.11": + version: 1.7.11 + resolution: "@unrs/resolver-binding-win32-ia32-msvc@npm:1.7.11" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@unrs/resolver-binding-win32-x64-msvc@npm:1.7.8": - version: 1.7.8 - resolution: "@unrs/resolver-binding-win32-x64-msvc@npm:1.7.8" +"@unrs/resolver-binding-win32-x64-msvc@npm:1.7.11": + version: 1.7.11 + resolution: "@unrs/resolver-binding-win32-x64-msvc@npm:1.7.11" conditions: os=win32 & cpu=x64 languageName: node linkType: hard @@ -3617,8 +3642,8 @@ __metadata: linkType: hard "@yarnpkg/core@npm:^4.4.1": - version: 4.4.1 - resolution: "@yarnpkg/core@npm:4.4.1" + version: 4.4.2 + resolution: "@yarnpkg/core@npm:4.4.2" dependencies: "@arcanis/slice-ansi": "npm:^1.1.1" "@types/semver": "npm:^7.1.0" @@ -3626,9 +3651,9 @@ __metadata: "@yarnpkg/fslib": "npm:^3.1.2" "@yarnpkg/libzip": "npm:^3.2.1" "@yarnpkg/parsers": "npm:^3.0.3" - "@yarnpkg/shell": "npm:^4.1.2" + "@yarnpkg/shell": "npm:^4.1.3" camelcase: "npm:^5.3.1" - chalk: "npm:^3.0.0" + chalk: "npm:^4.1.2" ci-info: "npm:^4.0.0" clipanion: "npm:^4.0.0-rc.2" cross-spawn: "npm:^7.0.3" @@ -3636,6 +3661,7 @@ __metadata: dotenv: "npm:^16.3.1" fast-glob: "npm:^3.2.2" got: "npm:^11.7.0" + hpagent: "npm:^1.2.0" lodash: "npm:^4.17.15" micromatch: "npm:^4.0.2" p-limit: "npm:^2.2.0" @@ -3645,8 +3671,7 @@ __metadata: tinylogic: "npm:^2.0.0" treeify: "npm:^1.1.0" tslib: "npm:^2.4.0" - tunnel: "npm:^0.0.6" - checksum: 10c0/203e78c3de1e2404f1ecfce5a305b2a39826e5aa7b3a70edc6758683c8746deee21ce3ab7f2d0ad1496e12b834524280c67ef735f70303e1ab8e3883586b91e8 + checksum: 10c0/d5a98f2071dfdf95afb8e7ce910841fa4bacc7ce1929f95c3d4e709531858d6cbdd3e6e4c10d6b999c704e552fa94d1b62ec7ec6ca2d83ce85b33149135b4855 languageName: node linkType: hard @@ -3689,13 +3714,13 @@ __metadata: languageName: node linkType: hard -"@yarnpkg/shell@npm:^4.1.2": - version: 4.1.2 - resolution: "@yarnpkg/shell@npm:4.1.2" +"@yarnpkg/shell@npm:^4.1.3": + version: 4.1.3 + resolution: "@yarnpkg/shell@npm:4.1.3" dependencies: "@yarnpkg/fslib": "npm:^3.1.2" "@yarnpkg/parsers": "npm:^3.0.3" - chalk: "npm:^3.0.0" + chalk: "npm:^4.1.2" clipanion: "npm:^4.0.0-rc.2" cross-spawn: "npm:^7.0.3" fast-glob: "npm:^3.2.2" @@ -3703,7 +3728,7 @@ __metadata: tslib: "npm:^2.4.0" bin: shell: ./lib/cli.js - checksum: 10c0/4d2116cf6637a38b15bc994a9e86535359ac654714a1c737bf2a3a8b7d80e8b0cc1a515567fb2522395f8e42aecec0ad14d2f54dc51f583215e87128e4dada87 + checksum: 10c0/0cbbfa7c446bc0450f5fdc6f892eb4e8ebdc6addce4f4366fdcb6cb63e5e8b33096db80d6c1f27e0277e008f384f2041d6abaae381b31574495c4c3a71e0192b languageName: node linkType: hard @@ -4000,9 +4025,9 @@ __metadata: linkType: hard "caniuse-lite@npm:^1.0.30001718": - version: 1.0.30001720 - resolution: "caniuse-lite@npm:1.0.30001720" - checksum: 10c0/ba9f963364ec4bfc8359d15d7e2cf365185fa1fddc90b4f534c71befedae9b3dd0cd2583a25ffc168a02d7b61b6c18b59bda0a1828ea2a5250fd3e35c2c049e9 + version: 1.0.30001721 + resolution: "caniuse-lite@npm:1.0.30001721" + checksum: 10c0/fa3a8926899824b385279f1f886fe34c5efb1321c9ece1b9df25c8d567a2706db8450cc5b4d969e769e641593e08ea644909324aba93636a43e4949a75f81c4c languageName: node linkType: hard @@ -4013,7 +4038,7 @@ __metadata: languageName: node linkType: hard -"chalk@npm:4.1.2, chalk@npm:^4.0.0, chalk@npm:^4.0.2": +"chalk@npm:4.1.2, chalk@npm:^4.0.0, chalk@npm:^4.0.2, chalk@npm:^4.1.2": version: 4.1.2 resolution: "chalk@npm:4.1.2" dependencies: @@ -4023,16 +4048,6 @@ __metadata: languageName: node linkType: hard -"chalk@npm:^3.0.0": - version: 3.0.0 - resolution: "chalk@npm:3.0.0" - dependencies: - ansi-styles: "npm:^4.1.0" - supports-color: "npm:^7.1.0" - checksum: 10c0/ee650b0a065b3d7a6fda258e75d3a86fc8e4effa55871da730a9e42ccb035bf5fd203525e5a1ef45ec2582ecc4f65b47eb11357c526b84dd29a14fb162c414d2 - languageName: node - linkType: hard - "character-entities-html4@npm:^2.0.0": version: 2.1.0 resolution: "character-entities-html4@npm:2.1.0" @@ -4415,81 +4430,81 @@ __metadata: languageName: node linkType: hard -"cspell-config-lib@npm:9.0.2": - version: 9.0.2 - resolution: "cspell-config-lib@npm:9.0.2" +"cspell-config-lib@npm:8.19.4": + version: 8.19.4 + resolution: "cspell-config-lib@npm:8.19.4" dependencies: - "@cspell/cspell-types": "npm:9.0.2" + "@cspell/cspell-types": "npm:8.19.4" comment-json: "npm:^4.2.5" - yaml: "npm:^2.8.0" - checksum: 10c0/2639b6bb1a99cc2e12c2be4f3f2d674a78a8aae97c667df4629d79b4ffec250293512fbfea541648bc038e4a901bb74d4dc81b70bdfe65b18fff41a12e147ca2 + yaml: "npm:^2.7.1" + checksum: 10c0/a6c68a6395d268974730ad3b99ebde1ec6bfda21ebf6e11bb8b2264311c230e023f846c5a07a69fefa070a5b1fd338b3b91cf80fb45dbe921c2d2e34168effc1 languageName: node linkType: hard -"cspell-dictionary@npm:9.0.2": - version: 9.0.2 - resolution: "cspell-dictionary@npm:9.0.2" +"cspell-dictionary@npm:8.19.4": + version: 8.19.4 + resolution: "cspell-dictionary@npm:8.19.4" dependencies: - "@cspell/cspell-pipe": "npm:9.0.2" - "@cspell/cspell-types": "npm:9.0.2" - cspell-trie-lib: "npm:9.0.2" + "@cspell/cspell-pipe": "npm:8.19.4" + "@cspell/cspell-types": "npm:8.19.4" + cspell-trie-lib: "npm:8.19.4" fast-equals: "npm:^5.2.2" - checksum: 10c0/9a66e4389805c01fc3363105cd7811684551d183b7983f720cec9fff60065faf9f1b7a119349333ed31bced98c22bb18256d4119c2d6f96f53efa74124ab70e3 + checksum: 10c0/eaf2c49b824c60b8863a9d7c49337904f311880d0f49da54ab900bff650a98de1f04402f59063e92279585d02f0dd88d05316b43988ed24f58f467fea5d3f237 languageName: node linkType: hard -"cspell-glob@npm:9.0.2": - version: 9.0.2 - resolution: "cspell-glob@npm:9.0.2" +"cspell-glob@npm:8.19.4": + version: 8.19.4 + resolution: "cspell-glob@npm:8.19.4" dependencies: - "@cspell/url": "npm:9.0.2" + "@cspell/url": "npm:8.19.4" picomatch: "npm:^4.0.2" - checksum: 10c0/2bf6773dff35dfc5a2666d52612d6d1350c76e1c26b1f6c2f8b14ef1bd8450c73bf9d1c7e249dc422eefbc71074632eb9133693ffb9cb8a619e3c7059b6bae0e + checksum: 10c0/600678edf3d3cba0774a721f965e288fd9932286458528df66ce686a7cce32a36258d0c2291478ca321d8c70628563def717de978357be46cce58db37ceb73cb languageName: node linkType: hard -"cspell-grammar@npm:9.0.2": - version: 9.0.2 - resolution: "cspell-grammar@npm:9.0.2" +"cspell-grammar@npm:8.19.4": + version: 8.19.4 + resolution: "cspell-grammar@npm:8.19.4" dependencies: - "@cspell/cspell-pipe": "npm:9.0.2" - "@cspell/cspell-types": "npm:9.0.2" + "@cspell/cspell-pipe": "npm:8.19.4" + "@cspell/cspell-types": "npm:8.19.4" bin: cspell-grammar: bin.mjs - checksum: 10c0/32c4b49212baae8592f076c32c30a6012a2a79b34cbd7529f7a7acd549dfbe154daaa219cee37d9474cac042b6a6375979fe92904dcf18e5fce8883c5aaf84c5 + checksum: 10c0/f45cd8d8a2c8d9661bbf920eb81a57cb536ead5562cf3ed1c872a2f6589217a5e443d86b836e8774a91f97da6ba9f31c2c9bea2379abf274525c2cb696a84d4b languageName: node linkType: hard -"cspell-io@npm:9.0.2": - version: 9.0.2 - resolution: "cspell-io@npm:9.0.2" +"cspell-io@npm:8.19.4": + version: 8.19.4 + resolution: "cspell-io@npm:8.19.4" dependencies: - "@cspell/cspell-service-bus": "npm:9.0.2" - "@cspell/url": "npm:9.0.2" - checksum: 10c0/c133c0ed59a3d12ab9401da31c8b899327afd74b2caf9c3162902569054b7a16cd6a7b0784472ba7c6fedd344f9fb2a16d77a99771807f45a60d001c965e8d36 + "@cspell/cspell-service-bus": "npm:8.19.4" + "@cspell/url": "npm:8.19.4" + checksum: 10c0/648b7d28aa9384b71777f8f452382e023b00d2617f98198a4bb6a5b3d61651070daf22869425d46819eb96061bbecda637167defbd1c571489ebd4b3334b769d languageName: node linkType: hard -"cspell-lib@npm:9.0.2": - version: 9.0.2 - resolution: "cspell-lib@npm:9.0.2" +"cspell-lib@npm:8.19.4": + version: 8.19.4 + resolution: "cspell-lib@npm:8.19.4" dependencies: - "@cspell/cspell-bundled-dicts": "npm:9.0.2" - "@cspell/cspell-pipe": "npm:9.0.2" - "@cspell/cspell-resolver": "npm:9.0.2" - "@cspell/cspell-types": "npm:9.0.2" - "@cspell/dynamic-import": "npm:9.0.2" - "@cspell/filetypes": "npm:9.0.2" - "@cspell/strong-weak-map": "npm:9.0.2" - "@cspell/url": "npm:9.0.2" + "@cspell/cspell-bundled-dicts": "npm:8.19.4" + "@cspell/cspell-pipe": "npm:8.19.4" + "@cspell/cspell-resolver": "npm:8.19.4" + "@cspell/cspell-types": "npm:8.19.4" + "@cspell/dynamic-import": "npm:8.19.4" + "@cspell/filetypes": "npm:8.19.4" + "@cspell/strong-weak-map": "npm:8.19.4" + "@cspell/url": "npm:8.19.4" clear-module: "npm:^4.1.2" comment-json: "npm:^4.2.5" - cspell-config-lib: "npm:9.0.2" - cspell-dictionary: "npm:9.0.2" - cspell-glob: "npm:9.0.2" - cspell-grammar: "npm:9.0.2" - cspell-io: "npm:9.0.2" - cspell-trie-lib: "npm:9.0.2" + cspell-config-lib: "npm:8.19.4" + cspell-dictionary: "npm:8.19.4" + cspell-glob: "npm:8.19.4" + cspell-grammar: "npm:8.19.4" + cspell-io: "npm:8.19.4" + cspell-trie-lib: "npm:8.19.4" env-paths: "npm:^3.0.0" fast-equals: "npm:^5.2.2" gensequence: "npm:^7.0.0" @@ -4498,18 +4513,18 @@ __metadata: vscode-languageserver-textdocument: "npm:^1.0.12" vscode-uri: "npm:^3.1.0" xdg-basedir: "npm:^5.1.0" - checksum: 10c0/c49a42b89e8e8d4b6a789fe7872213db6658eef2886f4e82ee87fee972e92db859c650ad83f0b463ab03b26a79687d08921889129b4b1dac62fc9ef7206b356c + checksum: 10c0/b44e358488d5fa318c18645fda6ec77239989a410fc26dee6ca54ee4cc49c99405c75363df09f99e58875a8d9bc305eeb1ba2e4e9b9a900adfd832ece8955336 languageName: node linkType: hard -"cspell-trie-lib@npm:9.0.2": - version: 9.0.2 - resolution: "cspell-trie-lib@npm:9.0.2" +"cspell-trie-lib@npm:8.19.4": + version: 8.19.4 + resolution: "cspell-trie-lib@npm:8.19.4" dependencies: - "@cspell/cspell-pipe": "npm:9.0.2" - "@cspell/cspell-types": "npm:9.0.2" + "@cspell/cspell-pipe": "npm:8.19.4" + "@cspell/cspell-types": "npm:8.19.4" gensequence: "npm:^7.0.0" - checksum: 10c0/e9576ad8d896ef023fa7a970d3d3c78f04cc0a227d29961ee4365665fe9e0185a2177f6cc1c44fc59e466e87e3c223385655b1f93570363fe603e2d3f418db76 + checksum: 10c0/01cd861b0b42c7c4863b4310d5d03d06b6a2b783c81e03d3d087e17771cee5a389278a4f459ffd0be3da88db712f4a33a2a188a27aaaf7bcc3184e44911e3df4 languageName: node linkType: hard @@ -4938,15 +4953,6 @@ __metadata: languageName: node linkType: hard -"debug@npm:^3.2.7": - version: 3.2.7 - resolution: "debug@npm:3.2.7" - dependencies: - ms: "npm:^2.1.1" - checksum: 10c0/37d96ae42cbc71c14844d2ae3ba55adf462ec89fd3a999459dec3833944cd999af6007ff29c780f1c61153bcaaf2c842d1e4ce1ec621e4fc4923244942e4a02a - languageName: node - linkType: hard - "decode-named-character-reference@npm:^1.0.0": version: 1.1.0 resolution: "decode-named-character-reference@npm:1.1.0" @@ -5280,15 +5286,15 @@ __metadata: languageName: node linkType: hard -"es-toolkit@npm:^1.38.0": - version: 1.38.0 - resolution: "es-toolkit@npm:1.38.0" +"es-toolkit@npm:^1.39.0": + version: 1.39.0 + resolution: "es-toolkit@npm:1.39.0" dependenciesMeta: "@trivago/prettier-plugin-sort-imports@4.3.0": unplugged: true prettier-plugin-sort-re-exports@0.0.1: unplugged: true - checksum: 10c0/1bffc2d8dbe8db45969cf6674a674bdf9d40d803c923b01645b8a433f43f9304b1d369b6cde2a6ef3889a5aa71ddc741bf8e4103b4d4b48a366e04b4b3d30519 + checksum: 10c0/095f5728bdadbb3ebb3a728dae78b4ec5ca691e085ab2abe7d1dc531a1557de853f8474238564b48af718846aae413a11d915988bc8d3fe4a245fbdbac23c2a8 languageName: node linkType: hard @@ -5320,43 +5326,32 @@ __metadata: languageName: node linkType: hard -"eslint-import-context@npm:^0.1.5": - version: 0.1.6 - resolution: "eslint-import-context@npm:0.1.6" +"eslint-import-context@npm:^0.1.7, eslint-import-context@npm:^0.1.8": + version: 0.1.8 + resolution: "eslint-import-context@npm:0.1.8" dependencies: get-tsconfig: "npm:^4.10.1" - stable-hash: "npm:^0.0.5" + stable-hash-x: "npm:^0.1.1" peerDependencies: unrs-resolver: ^1.0.0 peerDependenciesMeta: unrs-resolver: optional: true - checksum: 10c0/e0b1603c0b02d2be7da70e61bf918cda01314e27e38c11aad1c08dbbf5ab6b0ccfe588851574cad336bda859e35efeecc9205a06fc3b1ab8f65e74732ef075b4 - languageName: node - linkType: hard - -"eslint-import-resolver-node@npm:^0.3.9": - version: 0.3.9 - resolution: "eslint-import-resolver-node@npm:0.3.9" - dependencies: - debug: "npm:^3.2.7" - is-core-module: "npm:^2.13.0" - resolve: "npm:^1.22.4" - checksum: 10c0/0ea8a24a72328a51fd95aa8f660dcca74c1429806737cf10261ab90cfcaaf62fd1eff664b76a44270868e0a932711a81b250053942595bcd00a93b1c1575dd61 + checksum: 10c0/61e7f63eadcf9345a905acd67f3742b855bc0638e2ed2a7072b184d183f35c69d547d5a6d2adc8535f589e9daaa293b5ce352dcb79f6188fbd125899c1e28e40 languageName: node linkType: hard -"eslint-import-resolver-typescript@npm:^4.4.1": - version: 4.4.1 - resolution: "eslint-import-resolver-typescript@npm:4.4.1" +"eslint-import-resolver-typescript@npm:^4.4.3": + version: 4.4.3 + resolution: "eslint-import-resolver-typescript@npm:4.4.3" dependencies: debug: "npm:^4.4.1" - eslint-import-context: "npm:^0.1.5" + eslint-import-context: "npm:^0.1.8" get-tsconfig: "npm:^4.10.1" is-bun-module: "npm:^2.0.0" - stable-hash: "npm:^0.0.5" + stable-hash-x: "npm:^0.1.1" tinyglobby: "npm:^0.2.14" - unrs-resolver: "npm:^1.7.2" + unrs-resolver: "npm:^1.7.11" peerDependencies: eslint: "*" eslint-plugin-import: "*" @@ -5366,7 +5361,7 @@ __metadata: optional: true eslint-plugin-import-x: optional: true - checksum: 10c0/a03df85e4e7136e3ae36842a417a1a91f74054d999f32e9a40a2ea732c541be522d1382e18ace0e8c26e0505868f12a5de4a6b978d73ea91ca21d314f0f01f30 + checksum: 10c0/c00c5e422e71fa3448007509ff49ac44c6917eabfeca72094f67d8dd5202f1aa7d8ec12344cf502268b71d3a9104e7b0072ed97e6301966115d02f3cce6f61d7 languageName: node linkType: hard @@ -5398,24 +5393,29 @@ __metadata: languageName: node linkType: hard -"eslint-plugin-import-x@npm:^4.13.3": - version: 4.13.3 - resolution: "eslint-plugin-import-x@npm:4.13.3" +"eslint-plugin-import-x@npm:^4.15.1": + version: 4.15.1 + resolution: "eslint-plugin-import-x@npm:4.15.1" dependencies: - "@typescript-eslint/utils": "npm:^8.32.1" + "@typescript-eslint/types": "npm:^8.33.1" comment-parser: "npm:^1.4.1" debug: "npm:^4.4.1" - eslint-import-context: "npm:^0.1.5" - eslint-import-resolver-node: "npm:^0.3.9" + eslint-import-context: "npm:^0.1.7" is-glob: "npm:^4.0.3" minimatch: "npm:^9.0.3 || ^10.0.1" semver: "npm:^7.7.2" - stable-hash: "npm:^0.0.5" - tslib: "npm:^2.8.1" - unrs-resolver: "npm:^1.7.2" + stable-hash-x: "npm:^0.1.1" + unrs-resolver: "npm:^1.7.10" peerDependencies: + "@typescript-eslint/utils": ^8.0.0 eslint: ^8.57.0 || ^9.0.0 - checksum: 10c0/582c9ad4827915ae4ff0a73dfd854c347c52d662d5cb37f290742b71ab0d7082e78a79723b7ebb169a553f7e6215a93af2d4216fba9eb3b8b48e165f4a7581a9 + eslint-import-resolver-node: "*" + peerDependenciesMeta: + "@typescript-eslint/utils": + optional: true + eslint-import-resolver-node: + optional: true + checksum: 10c0/e5bc560e150c5b16192a75827ee0f954a4992bf00416447c5fdc4850bd56f99d3f91d6402d5a2113598e0adbdabff4b738a0cf510b42349e88e66a86d1813499 languageName: node linkType: hard @@ -5440,20 +5440,20 @@ __metadata: languageName: node linkType: hard -"eslint-plugin-react-debug@npm:1.50.0": - version: 1.50.0 - resolution: "eslint-plugin-react-debug@npm:1.50.0" +"eslint-plugin-react-debug@npm:1.51.0": + version: 1.51.0 + resolution: "eslint-plugin-react-debug@npm:1.51.0" dependencies: - "@eslint-react/ast": "npm:1.50.0" - "@eslint-react/core": "npm:1.50.0" - "@eslint-react/eff": "npm:1.50.0" - "@eslint-react/kit": "npm:1.50.0" - "@eslint-react/shared": "npm:1.50.0" - "@eslint-react/var": "npm:1.50.0" - "@typescript-eslint/scope-manager": "npm:^8.32.1" - "@typescript-eslint/type-utils": "npm:^8.32.1" - "@typescript-eslint/types": "npm:^8.32.1" - "@typescript-eslint/utils": "npm:^8.32.1" + "@eslint-react/ast": "npm:1.51.0" + "@eslint-react/core": "npm:1.51.0" + "@eslint-react/eff": "npm:1.51.0" + "@eslint-react/kit": "npm:1.51.0" + "@eslint-react/shared": "npm:1.51.0" + "@eslint-react/var": "npm:1.51.0" + "@typescript-eslint/scope-manager": "npm:^8.33.1" + "@typescript-eslint/type-utils": "npm:^8.33.1" + "@typescript-eslint/types": "npm:^8.33.1" + "@typescript-eslint/utils": "npm:^8.33.1" string-ts: "npm:^2.2.1" ts-pattern: "npm:^5.7.1" peerDependencies: @@ -5464,23 +5464,23 @@ __metadata: optional: false typescript: optional: true - checksum: 10c0/8e39f8a7834d09188375e15d5367531b99633e6978b1da0d476a85261192a9833d191a70408f5336a2cf5cbcfec03d312d5357dbc2abd1d93e167ff2ef258b2c + checksum: 10c0/8a9e3fea0beb69ae842206bfbef1eed6a684c061d85ad3e84a176a8e197673d663452f5716740cbeb050ce8d626a6648003fe874ef44de5cba8b06c009492698 languageName: node linkType: hard -"eslint-plugin-react-dom@npm:1.50.0": - version: 1.50.0 - resolution: "eslint-plugin-react-dom@npm:1.50.0" +"eslint-plugin-react-dom@npm:1.51.0": + version: 1.51.0 + resolution: "eslint-plugin-react-dom@npm:1.51.0" dependencies: - "@eslint-react/ast": "npm:1.50.0" - "@eslint-react/core": "npm:1.50.0" - "@eslint-react/eff": "npm:1.50.0" - "@eslint-react/kit": "npm:1.50.0" - "@eslint-react/shared": "npm:1.50.0" - "@eslint-react/var": "npm:1.50.0" - "@typescript-eslint/scope-manager": "npm:^8.32.1" - "@typescript-eslint/types": "npm:^8.32.1" - "@typescript-eslint/utils": "npm:^8.32.1" + "@eslint-react/ast": "npm:1.51.0" + "@eslint-react/core": "npm:1.51.0" + "@eslint-react/eff": "npm:1.51.0" + "@eslint-react/kit": "npm:1.51.0" + "@eslint-react/shared": "npm:1.51.0" + "@eslint-react/var": "npm:1.51.0" + "@typescript-eslint/scope-manager": "npm:^8.33.1" + "@typescript-eslint/types": "npm:^8.33.1" + "@typescript-eslint/utils": "npm:^8.33.1" compare-versions: "npm:^6.1.1" string-ts: "npm:^2.2.1" ts-pattern: "npm:^5.7.1" @@ -5492,24 +5492,24 @@ __metadata: optional: false typescript: optional: true - checksum: 10c0/d04f98774644ee5580df5560cbaf5eb832dec8f3dd937da99843ed749654e785368d88e19b109227aa804926ca9789b694fc52a58a2417fe3abddbb91fb0b7cb + checksum: 10c0/2da3da3a1a590c17bde87672427ac0f33e60671853a77ca30f2f663753183f53fd1294c1234c5072594976dfd9971798e0fe3fd8ef936f791914568b5d1b26ff languageName: node linkType: hard -"eslint-plugin-react-hooks-extra@npm:1.50.0": - version: 1.50.0 - resolution: "eslint-plugin-react-hooks-extra@npm:1.50.0" +"eslint-plugin-react-hooks-extra@npm:1.51.0": + version: 1.51.0 + resolution: "eslint-plugin-react-hooks-extra@npm:1.51.0" dependencies: - "@eslint-react/ast": "npm:1.50.0" - "@eslint-react/core": "npm:1.50.0" - "@eslint-react/eff": "npm:1.50.0" - "@eslint-react/kit": "npm:1.50.0" - "@eslint-react/shared": "npm:1.50.0" - "@eslint-react/var": "npm:1.50.0" - "@typescript-eslint/scope-manager": "npm:^8.32.1" - "@typescript-eslint/type-utils": "npm:^8.32.1" - "@typescript-eslint/types": "npm:^8.32.1" - "@typescript-eslint/utils": "npm:^8.32.1" + "@eslint-react/ast": "npm:1.51.0" + "@eslint-react/core": "npm:1.51.0" + "@eslint-react/eff": "npm:1.51.0" + "@eslint-react/kit": "npm:1.51.0" + "@eslint-react/shared": "npm:1.51.0" + "@eslint-react/var": "npm:1.51.0" + "@typescript-eslint/scope-manager": "npm:^8.33.1" + "@typescript-eslint/type-utils": "npm:^8.33.1" + "@typescript-eslint/types": "npm:^8.33.1" + "@typescript-eslint/utils": "npm:^8.33.1" string-ts: "npm:^2.2.1" ts-pattern: "npm:^5.7.1" peerDependencies: @@ -5520,7 +5520,7 @@ __metadata: optional: false typescript: optional: true - checksum: 10c0/3aa1c8467e51e955489c3430574c9348fc155e8bd7cee3009acb524999dd9bf2230cd461404a5fbc2f66a39b9656ab76df9bd29a3fbb69934163df0aa83310a7 + checksum: 10c0/5a0742ca8967852f376b271e15aa09958489de729650da50249e44957186293c649dbe2a7d7027463b0ed8cd96cfbca70bc4cf6c18a37d6a16554721f96f9f36 languageName: node linkType: hard @@ -5533,20 +5533,20 @@ __metadata: languageName: node linkType: hard -"eslint-plugin-react-naming-convention@npm:1.50.0": - version: 1.50.0 - resolution: "eslint-plugin-react-naming-convention@npm:1.50.0" +"eslint-plugin-react-naming-convention@npm:1.51.0": + version: 1.51.0 + resolution: "eslint-plugin-react-naming-convention@npm:1.51.0" dependencies: - "@eslint-react/ast": "npm:1.50.0" - "@eslint-react/core": "npm:1.50.0" - "@eslint-react/eff": "npm:1.50.0" - "@eslint-react/kit": "npm:1.50.0" - "@eslint-react/shared": "npm:1.50.0" - "@eslint-react/var": "npm:1.50.0" - "@typescript-eslint/scope-manager": "npm:^8.32.1" - "@typescript-eslint/type-utils": "npm:^8.32.1" - "@typescript-eslint/types": "npm:^8.32.1" - "@typescript-eslint/utils": "npm:^8.32.1" + "@eslint-react/ast": "npm:1.51.0" + "@eslint-react/core": "npm:1.51.0" + "@eslint-react/eff": "npm:1.51.0" + "@eslint-react/kit": "npm:1.51.0" + "@eslint-react/shared": "npm:1.51.0" + "@eslint-react/var": "npm:1.51.0" + "@typescript-eslint/scope-manager": "npm:^8.33.1" + "@typescript-eslint/type-utils": "npm:^8.33.1" + "@typescript-eslint/types": "npm:^8.33.1" + "@typescript-eslint/utils": "npm:^8.33.1" string-ts: "npm:^2.2.1" ts-pattern: "npm:^5.7.1" peerDependencies: @@ -5557,23 +5557,23 @@ __metadata: optional: false typescript: optional: true - checksum: 10c0/c0d9633386fe346380c51211fa736411afc72368e8593465c3e1b08ae98cbf2e7c459979bdd230594ff00b028eb0bfca8c2ee3bd91b2bd54f627299902a2e077 + checksum: 10c0/0fb913d491649413225849e79bfd37f25a2965db0f40ada9b4222134717d872c31ee25686d4bf19ba53fc167db257e2d1e51c955d1c1bf05ba9730ce6f485735 languageName: node linkType: hard -"eslint-plugin-react-web-api@npm:1.50.0": - version: 1.50.0 - resolution: "eslint-plugin-react-web-api@npm:1.50.0" +"eslint-plugin-react-web-api@npm:1.51.0": + version: 1.51.0 + resolution: "eslint-plugin-react-web-api@npm:1.51.0" dependencies: - "@eslint-react/ast": "npm:1.50.0" - "@eslint-react/core": "npm:1.50.0" - "@eslint-react/eff": "npm:1.50.0" - "@eslint-react/kit": "npm:1.50.0" - "@eslint-react/shared": "npm:1.50.0" - "@eslint-react/var": "npm:1.50.0" - "@typescript-eslint/scope-manager": "npm:^8.32.1" - "@typescript-eslint/types": "npm:^8.32.1" - "@typescript-eslint/utils": "npm:^8.32.1" + "@eslint-react/ast": "npm:1.51.0" + "@eslint-react/core": "npm:1.51.0" + "@eslint-react/eff": "npm:1.51.0" + "@eslint-react/kit": "npm:1.51.0" + "@eslint-react/shared": "npm:1.51.0" + "@eslint-react/var": "npm:1.51.0" + "@typescript-eslint/scope-manager": "npm:^8.33.1" + "@typescript-eslint/types": "npm:^8.33.1" + "@typescript-eslint/utils": "npm:^8.33.1" string-ts: "npm:^2.2.1" ts-pattern: "npm:^5.7.1" peerDependencies: @@ -5584,24 +5584,24 @@ __metadata: optional: false typescript: optional: true - checksum: 10c0/3371cb2545056c4e3b17a98a34d129773256c6b2ec442de4a86621f9715c8deae13d19896e8912022971147715ba8a7b9a763e6fd9f6c4658d4db0d2045fb41c + checksum: 10c0/d24b484917e73b2adc38e4e580c94b4b230658e6a2923e1d64fc9704d1a03180074bfe4819bd6574ba4b7073b56dbe41887246d294ebfd37df1bd9dc3de47e32 languageName: node linkType: hard -"eslint-plugin-react-x@npm:1.50.0": - version: 1.50.0 - resolution: "eslint-plugin-react-x@npm:1.50.0" +"eslint-plugin-react-x@npm:1.51.0": + version: 1.51.0 + resolution: "eslint-plugin-react-x@npm:1.51.0" dependencies: - "@eslint-react/ast": "npm:1.50.0" - "@eslint-react/core": "npm:1.50.0" - "@eslint-react/eff": "npm:1.50.0" - "@eslint-react/kit": "npm:1.50.0" - "@eslint-react/shared": "npm:1.50.0" - "@eslint-react/var": "npm:1.50.0" - "@typescript-eslint/scope-manager": "npm:^8.32.1" - "@typescript-eslint/type-utils": "npm:^8.32.1" - "@typescript-eslint/types": "npm:^8.32.1" - "@typescript-eslint/utils": "npm:^8.32.1" + "@eslint-react/ast": "npm:1.51.0" + "@eslint-react/core": "npm:1.51.0" + "@eslint-react/eff": "npm:1.51.0" + "@eslint-react/kit": "npm:1.51.0" + "@eslint-react/shared": "npm:1.51.0" + "@eslint-react/var": "npm:1.51.0" + "@typescript-eslint/scope-manager": "npm:^8.33.1" + "@typescript-eslint/type-utils": "npm:^8.33.1" + "@typescript-eslint/types": "npm:^8.33.1" + "@typescript-eslint/utils": "npm:^8.33.1" compare-versions: "npm:^6.1.1" is-immutable-type: "npm:^5.0.1" string-ts: "npm:^2.2.1" @@ -5617,7 +5617,7 @@ __metadata: optional: true typescript: optional: true - checksum: 10c0/cd6f1910ed2c3c280187494944c5b46e43e98db9aecc415835d5b230baad331fb5a8400094a8e3585e585b60df3f8d532a9a07e89c296ec93798904072097cff + checksum: 10c0/25cb1b8457d6287470302aafc63ce6841428c18fe05b24b3addeebc2fd8de407b94828cb3b1e2482dedbfc21d50ff7dd61e87a2208643c932ac72a205e7547c5 languageName: node linkType: hard @@ -5645,9 +5645,9 @@ __metadata: languageName: node linkType: hard -"eslint@npm:^9.27.0": - version: 9.27.0 - resolution: "eslint@npm:9.27.0" +"eslint@npm:^9.28.0": + version: 9.28.0 + resolution: "eslint@npm:9.28.0" dependencies: "@eslint-community/eslint-utils": "npm:^4.2.0" "@eslint-community/regexpp": "npm:^4.12.1" @@ -5655,7 +5655,7 @@ __metadata: "@eslint/config-helpers": "npm:^0.2.1" "@eslint/core": "npm:^0.14.0" "@eslint/eslintrc": "npm:^3.3.1" - "@eslint/js": "npm:9.27.0" + "@eslint/js": "npm:9.28.0" "@eslint/plugin-kit": "npm:^0.3.1" "@humanfs/node": "npm:^0.16.6" "@humanwhocodes/module-importer": "npm:^1.0.1" @@ -5691,7 +5691,7 @@ __metadata: optional: true bin: eslint: bin/eslint.js - checksum: 10c0/135d301e37cd961000a9c1d3f0e1863bed29a61435dfddedba3db295973193024382190fd8790a8de83777d10f450082a29eaee8bc9ce0fb1bc1f2b0bb882280 + checksum: 10c0/513ea7e69d88a0905d4ed35cef3a8f31ebce7ca9f2cdbda3474495c63ad6831d52357aad65094be7a144d6e51850980ced7d25efb807e8ab06a427241f7cd730 languageName: node linkType: hard @@ -6135,13 +6135,6 @@ __metadata: languageName: node linkType: hard -"function-bind@npm:^1.1.2": - version: 1.1.2 - resolution: "function-bind@npm:1.1.2" - checksum: 10c0/d8680ee1e5fcd4c197e4ac33b2b4dce03c71f4d91717292785703db200f5c21f977c568d28061226f9b5900cbcd2c84463646134fd5337e7925e0942bc3f46d5 - languageName: node - linkType: hard - "gensequence@npm:^7.0.0": version: 7.0.0 resolution: "gensequence@npm:7.0.0" @@ -6339,15 +6332,6 @@ __metadata: languageName: node linkType: hard -"hasown@npm:^2.0.2": - version: 2.0.2 - resolution: "hasown@npm:2.0.2" - dependencies: - function-bind: "npm:^1.1.2" - checksum: 10c0/3769d434703b8ac66b209a4cca0737519925bbdb61dd887f93a16372b14694c63ff4e797686d87c90f08168e81082248b9b028bad60d4da9e0d1148766f56eb9 - languageName: node - linkType: hard - "hast-util-from-html@npm:^2.0.3": version: 2.0.3 resolution: "hast-util-from-html@npm:2.0.3" @@ -6589,6 +6573,13 @@ __metadata: languageName: node linkType: hard +"hpagent@npm:^1.2.0": + version: 1.2.0 + resolution: "hpagent@npm:1.2.0" + checksum: 10c0/505ef42e5e067dba701ea21e7df9fa73f6f5080e59d53680829827d34cd7040f1ecf7c3c8391abe9df4eb4682ef4a4321608836b5b70a61b88c1b3a03d77510b + languageName: node + linkType: hard + "html-entities@npm:^2.1.0, html-entities@npm:^2.6.0": version: 2.6.0 resolution: "html-entities@npm:2.6.0" @@ -6759,9 +6750,9 @@ __metadata: linkType: hard "ignore@npm:^7.0.0": - version: 7.0.4 - resolution: "ignore@npm:7.0.4" - checksum: 10c0/90e1f69ce352b9555caecd9cbfd07abe7626d312a6f90efbbb52c7edca6ea8df065d66303863b30154ab1502afb2da8bc59d5b04e1719a52ef75bbf675c488eb + version: 7.0.5 + resolution: "ignore@npm:7.0.5" + checksum: 10c0/ae00db89fe873064a093b8999fe4cc284b13ef2a178636211842cceb650b9c3e390d3339191acb145d81ed5379d2074840cf0c33a20bdbd6f32821f79eb4ad5d languageName: node linkType: hard @@ -6914,15 +6905,6 @@ __metadata: languageName: node linkType: hard -"is-core-module@npm:^2.13.0, is-core-module@npm:^2.16.0": - version: 2.16.1 - resolution: "is-core-module@npm:2.16.1" - dependencies: - hasown: "npm:^2.0.2" - checksum: 10c0/898443c14780a577e807618aaae2b6f745c8538eca5c7bc11388a3f2dc6de82b9902bcc7eb74f07be672b11bbe82dd6a6edded44a00cb3d8f933d0459905eedd - languageName: node - linkType: hard - "is-decimal@npm:^1.0.0": version: 1.0.4 resolution: "is-decimal@npm:1.0.4" @@ -8934,7 +8916,7 @@ __metadata: languageName: node linkType: hard -"ms@npm:^2.1.1, ms@npm:^2.1.3": +"ms@npm:^2.1.3": version: 2.1.3 resolution: "ms@npm:2.1.3" checksum: 10c0/d924b57e7312b3b63ad21fc5b3dc0af5e78d61a1fc7cfb5457edaf26326bf62be5307cc87ffb6862ef1c2b33b0233cdb5d4f01c4c958cc0d660948b65a287a48 @@ -9267,9 +9249,9 @@ __metadata: languageName: node linkType: hard -"openai@npm:^5.0.0-beta.0": - version: 5.0.0-beta.0 - resolution: "openai@npm:5.0.0-beta.0" +"openai@npm:^5.1.1": + version: 5.1.1 + resolution: "openai@npm:5.1.1" peerDependencies: ws: ^8.18.0 zod: ^3.23.8 @@ -9280,7 +9262,7 @@ __metadata: optional: true bin: openai: bin/cli - checksum: 10c0/0b23ae6f159357ad10445f854471c527e14bf4c5dfd6f413b4863bd25e8f80ebcef9864f6f33a94036471906cb4c7e0cb4e8e035877a00c2a996d4e4a6ff6be0 + checksum: 10c0/5cb0223768ae3cb847e4f6d237f32761bf4091a569ebf4cec3b20a3a14be747d7735e4c683f8bc3358cf969423bd9f5935ce9b5e9f5edd6c2f30cf605be22b0a languageName: node linkType: hard @@ -9600,13 +9582,6 @@ __metadata: languageName: node linkType: hard -"path-parse@npm:^1.0.7": - version: 1.0.7 - resolution: "path-parse@npm:1.0.7" - checksum: 10c0/11ce261f9d294cc7a58d6a574b7f1b935842355ec66fba3c3fd79e0f036462eaf07d0aa95bb74ff432f9afef97ce1926c720988c6a7451d8a584930ae7de86e1 - languageName: node - linkType: hard - "path-scurry@npm:^1.11.1": version: 1.11.1 resolution: "path-scurry@npm:1.11.1" @@ -9780,7 +9755,7 @@ __metadata: languageName: node linkType: hard -"postcss@npm:^8.5.3": +"postcss@npm:^8.5.4": version: 8.5.4 resolution: "postcss@npm:8.5.4" dependencies: @@ -9798,12 +9773,12 @@ __metadata: languageName: node linkType: hard -"prettier-plugin-pkg@npm:^0.19.1": - version: 0.19.1 - resolution: "prettier-plugin-pkg@npm:0.19.1" +"prettier-plugin-pkg@npm:^0.20.0": + version: 0.20.0 + resolution: "prettier-plugin-pkg@npm:0.20.0" peerDependencies: prettier: ^3.0.3 - checksum: 10c0/8c157f3e68fb229ac96aa28b511a615725abdce96a80814259c78838b4b174e4907082974ea5a8736c9b4b4763a72457e6bca3d8db63168024c5f21788ccb795 + checksum: 10c0/70d8a4540f2a1b4fb8491fe784b2d02e1e6d6dc8cd2545aac4e65ce4b599f04094cc6710c0adbb8047de53809bdf09bd9266e06eeac7af053ffdb7a29fd88f84 languageName: node linkType: hard @@ -10376,32 +10351,6 @@ __metadata: languageName: node linkType: hard -"resolve@npm:^1.22.4": - version: 1.22.10 - resolution: "resolve@npm:1.22.10" - dependencies: - is-core-module: "npm:^2.16.0" - path-parse: "npm:^1.0.7" - supports-preserve-symlinks-flag: "npm:^1.0.0" - bin: - resolve: bin/resolve - checksum: 10c0/8967e1f4e2cc40f79b7e080b4582b9a8c5ee36ffb46041dccb20e6461161adf69f843b43067b4a375de926a2cd669157e29a29578191def399dd5ef89a1b5203 - languageName: node - linkType: hard - -"resolve@patch:resolve@npm%3A^1.22.4#optional!builtin": - version: 1.22.10 - resolution: "resolve@patch:resolve@npm%3A1.22.10#optional!builtin::version=1.22.10&hash=c3c19d" - dependencies: - is-core-module: "npm:^2.16.0" - path-parse: "npm:^1.0.7" - supports-preserve-symlinks-flag: "npm:^1.0.0" - bin: - resolve: bin/resolve - checksum: 10c0/52a4e505bbfc7925ac8f4cd91fd8c4e096b6a89728b9f46861d3b405ac9a1ccf4dcbf8befb4e89a2e11370dacd0160918163885cbc669369590f2f31f4c58939 - languageName: node - linkType: hard - "responselike@npm:^2.0.0": version: 2.0.1 resolution: "responselike@npm:2.0.1" @@ -10641,7 +10590,7 @@ __metadata: languageName: node linkType: hard -"sass-embedded@npm:^1.86.0": +"sass-embedded@npm:1.89.0": version: 1.89.0 resolution: "sass-embedded@npm:1.89.0" dependencies: @@ -10781,25 +10730,25 @@ __metadata: linkType: hard "shell-quote@npm:^1.7.3": - version: 1.8.2 - resolution: "shell-quote@npm:1.8.2" - checksum: 10c0/85fdd44f2ad76e723d34eb72c753f04d847ab64e9f1f10677e3f518d0e5b0752a176fd805297b30bb8c3a1556ebe6e77d2288dbd7b7b0110c7e941e9e9c20ce1 + version: 1.8.3 + resolution: "shell-quote@npm:1.8.3" + checksum: 10c0/bee87c34e1e986cfb4c30846b8e6327d18874f10b535699866f368ade11ea4ee45433d97bf5eada22c4320c27df79c3a6a7eb1bf3ecfc47f2c997d9e5e2672fd languageName: node linkType: hard -"shiki@npm:^3.4.2": - version: 3.4.2 - resolution: "shiki@npm:3.4.2" - dependencies: - "@shikijs/core": "npm:3.4.2" - "@shikijs/engine-javascript": "npm:3.4.2" - "@shikijs/engine-oniguruma": "npm:3.4.2" - "@shikijs/langs": "npm:3.4.2" - "@shikijs/themes": "npm:3.4.2" - "@shikijs/types": "npm:3.4.2" +"shiki@npm:^3.6.0": + version: 3.6.0 + resolution: "shiki@npm:3.6.0" + dependencies: + "@shikijs/core": "npm:3.6.0" + "@shikijs/engine-javascript": "npm:3.6.0" + "@shikijs/engine-oniguruma": "npm:3.6.0" + "@shikijs/langs": "npm:3.6.0" + "@shikijs/themes": "npm:3.6.0" + "@shikijs/types": "npm:3.6.0" "@shikijs/vscode-textmate": "npm:^10.0.2" "@types/hast": "npm:^3.0.4" - checksum: 10c0/3cae825d8c341d7334e541efad30125fac0064db6004359e661a594782d59f93f66f2dcb5dbc1d8cb6508c43ccdd03ed6cf1d22306b382bc1f395a6130e5cbbb + checksum: 10c0/a643ce72a2b9dacb7f7238999d4d062d2ea81c39da96b182d7ffe69f0c5a902e00095dfec526a831e67897d709853d95c5d76d3502c3b4a11b8644e8013b67be languageName: node linkType: hard @@ -11033,10 +10982,10 @@ __metadata: languageName: node linkType: hard -"stable-hash@npm:^0.0.5": - version: 0.0.5 - resolution: "stable-hash@npm:0.0.5" - checksum: 10c0/ca670cb6d172f1c834950e4ec661e2055885df32fee3ebf3647c5df94993b7c2666a5dbc1c9a62ee11fc5c24928579ec5e81bb5ad31971d355d5a341aab493b3 +"stable-hash-x@npm:^0.1.1": + version: 0.1.1 + resolution: "stable-hash-x@npm:0.1.1" + checksum: 10c0/38744f4755026f2a2aa842c7d8c92c5a2cd708aac455faf8575cee7ce4218b5ffacf278797fed97d8240b956b687efb31ca92955280d07e7d6e16a8e58497daf languageName: node linkType: hard @@ -11186,13 +11135,6 @@ __metadata: languageName: node linkType: hard -"supports-preserve-symlinks-flag@npm:^1.0.0": - version: 1.0.0 - resolution: "supports-preserve-symlinks-flag@npm:1.0.0" - checksum: 10c0/6c4032340701a9950865f7ae8ef38578d8d7053f5e10518076e6554a9381fa91bd9c6850193695c141f32b21f979c985db07265a758867bac95de05f7d8aeb39 - languageName: node - linkType: hard - "swagger2openapi@npm:^7.0.8": version: 7.0.8 resolution: "swagger2openapi@npm:7.0.8" @@ -11232,12 +11174,12 @@ __metadata: languageName: node linkType: hard -"synckit@npm:^0.11.4, synckit@npm:^0.11.6": - version: 0.11.6 - resolution: "synckit@npm:0.11.6" +"synckit@npm:^0.11.4": + version: 0.11.8 + resolution: "synckit@npm:0.11.8" dependencies: "@pkgr/core": "npm:^0.2.4" - checksum: 10c0/51c0e41c025b90cc68a7b304fbfe873cc77b3ddc99e92ab33fbd42f4fbd1ee65fc7d9affd8eedcac43644658399244aa521e19fb18d7b4e66898d0e2c0cc8d9b + checksum: 10c0/a1de5131ee527512afcaafceb2399b2f3e63678e56b831e1cb2dc7019c972a8b654703a3b94ef4166868f87eb984ea252b467c9d9e486b018ec2e6a55c24dfd8 languageName: node linkType: hard @@ -11447,13 +11389,6 @@ __metadata: languageName: node linkType: hard -"tunnel@npm:^0.0.6": - version: 0.0.6 - resolution: "tunnel@npm:0.0.6" - checksum: 10c0/e27e7e896f2426c1c747325b5f54efebc1a004647d853fad892b46d64e37591ccd0b97439470795e5262b5c0748d22beb4489a04a0a448029636670bfd801b75 - languageName: node - linkType: hard - "typanion@npm:^3.8.0": version: 3.14.0 resolution: "typanion@npm:3.14.0" @@ -11526,17 +11461,17 @@ __metadata: languageName: node linkType: hard -"typescript-eslint@npm:^8.33.0": - version: 8.33.0 - resolution: "typescript-eslint@npm:8.33.0" +"typescript-eslint@npm:^8.33.1": + version: 8.33.1 + resolution: "typescript-eslint@npm:8.33.1" dependencies: - "@typescript-eslint/eslint-plugin": "npm:8.33.0" - "@typescript-eslint/parser": "npm:8.33.0" - "@typescript-eslint/utils": "npm:8.33.0" + "@typescript-eslint/eslint-plugin": "npm:8.33.1" + "@typescript-eslint/parser": "npm:8.33.1" + "@typescript-eslint/utils": "npm:8.33.1" peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <5.9.0" - checksum: 10c0/a07b87ed2e4ff71edfc641f0073192e7eb8a169adb3ee99a05370310d73698e92814e56cec760d13f9a180687ac3dd3ba9536461ec9a110ad2543f60950e8c8d + checksum: 10c0/8b332c565008f975e0905b99705214c4d58f55a4ff7186edda6a77e041a3e2f6fbbb5a78192ff3c77ccb385b624cf222bca0856c138dfd1fe8875aa3dab38f2c languageName: node linkType: hard @@ -11567,13 +11502,6 @@ __metadata: languageName: node linkType: hard -"undici-types@npm:~6.19.2": - version: 6.19.8 - resolution: "undici-types@npm:6.19.8" - checksum: 10c0/078afa5990fba110f6824823ace86073b4638f1d5112ee26e790155f481f2a868cc3e0615505b6f4282bdf74a3d8caad715fd809e870c2bb0704e3ea6082f344 - languageName: node - linkType: hard - "undici-types@npm:~6.21.0": version: 6.21.0 resolution: "undici-types@npm:6.21.0" @@ -11830,27 +11758,27 @@ __metadata: languageName: node linkType: hard -"unrs-resolver@npm:^1.7.2": - version: 1.7.8 - resolution: "unrs-resolver@npm:1.7.8" - dependencies: - "@unrs/resolver-binding-darwin-arm64": "npm:1.7.8" - "@unrs/resolver-binding-darwin-x64": "npm:1.7.8" - "@unrs/resolver-binding-freebsd-x64": "npm:1.7.8" - "@unrs/resolver-binding-linux-arm-gnueabihf": "npm:1.7.8" - "@unrs/resolver-binding-linux-arm-musleabihf": "npm:1.7.8" - "@unrs/resolver-binding-linux-arm64-gnu": "npm:1.7.8" - "@unrs/resolver-binding-linux-arm64-musl": "npm:1.7.8" - "@unrs/resolver-binding-linux-ppc64-gnu": "npm:1.7.8" - "@unrs/resolver-binding-linux-riscv64-gnu": "npm:1.7.8" - "@unrs/resolver-binding-linux-riscv64-musl": "npm:1.7.8" - "@unrs/resolver-binding-linux-s390x-gnu": "npm:1.7.8" - "@unrs/resolver-binding-linux-x64-gnu": "npm:1.7.8" - "@unrs/resolver-binding-linux-x64-musl": "npm:1.7.8" - "@unrs/resolver-binding-wasm32-wasi": "npm:1.7.8" - "@unrs/resolver-binding-win32-arm64-msvc": "npm:1.7.8" - "@unrs/resolver-binding-win32-ia32-msvc": "npm:1.7.8" - "@unrs/resolver-binding-win32-x64-msvc": "npm:1.7.8" +"unrs-resolver@npm:^1.7.10, unrs-resolver@npm:^1.7.11": + version: 1.7.11 + resolution: "unrs-resolver@npm:1.7.11" + dependencies: + "@unrs/resolver-binding-darwin-arm64": "npm:1.7.11" + "@unrs/resolver-binding-darwin-x64": "npm:1.7.11" + "@unrs/resolver-binding-freebsd-x64": "npm:1.7.11" + "@unrs/resolver-binding-linux-arm-gnueabihf": "npm:1.7.11" + "@unrs/resolver-binding-linux-arm-musleabihf": "npm:1.7.11" + "@unrs/resolver-binding-linux-arm64-gnu": "npm:1.7.11" + "@unrs/resolver-binding-linux-arm64-musl": "npm:1.7.11" + "@unrs/resolver-binding-linux-ppc64-gnu": "npm:1.7.11" + "@unrs/resolver-binding-linux-riscv64-gnu": "npm:1.7.11" + "@unrs/resolver-binding-linux-riscv64-musl": "npm:1.7.11" + "@unrs/resolver-binding-linux-s390x-gnu": "npm:1.7.11" + "@unrs/resolver-binding-linux-x64-gnu": "npm:1.7.11" + "@unrs/resolver-binding-linux-x64-musl": "npm:1.7.11" + "@unrs/resolver-binding-wasm32-wasi": "npm:1.7.11" + "@unrs/resolver-binding-win32-arm64-msvc": "npm:1.7.11" + "@unrs/resolver-binding-win32-ia32-msvc": "npm:1.7.11" + "@unrs/resolver-binding-win32-x64-msvc": "npm:1.7.11" napi-postinstall: "npm:^0.2.2" dependenciesMeta: "@unrs/resolver-binding-darwin-arm64": @@ -11887,7 +11815,7 @@ __metadata: optional: true "@unrs/resolver-binding-win32-x64-msvc": optional: true - checksum: 10c0/71f0bb972fdf786299eabe761d61c65c30a8b4965ba63305ee7133f22efbf51321abed844ba2bd00cb332580f9def1df270826b322efba748529dc1b9e1224dd + checksum: 10c0/37e6caf2884b7ce65f77fc5b945997b94523656d477ae0e67fb8df970939930b674091f3fac6beee93b0370fa64a925ad707edc76897aa8cb14866efbe4a6693 languageName: node linkType: hard @@ -12268,7 +12196,7 @@ __metadata: languageName: node linkType: hard -"yaml@npm:^2.0.0, yaml@npm:^2.2.2, yaml@npm:^2.8.0": +"yaml@npm:^2.0.0, yaml@npm:^2.2.2, yaml@npm:^2.7.1, yaml@npm:^2.8.0": version: 2.8.0 resolution: "yaml@npm:2.8.0" bin: @@ -12335,10 +12263,10 @@ __metadata: languageName: node linkType: hard -"zod@npm:^3.25.28": - version: 3.25.36 - resolution: "zod@npm:3.25.36" - checksum: 10c0/9ad8ca759d1a5d19c86d6e49a1bda817b3c0566ea0a8726d45994b9fcaac8d569db45a65218a7b4067ca18b07c5fc636a587a94cd05f76793174ace8b81742e3 +"zod@npm:^3.25.49": + version: 3.25.53 + resolution: "zod@npm:3.25.53" + checksum: 10c0/f27f13b15d5a165f4320c287e23eef689899714adcf793afcf51f4b79186a0d0dec3f3e67f87d5f658f913c3f035c1d212f1bfaac00ef1f55143b1d0a3fb5c6d languageName: node linkType: hard