From 802839d48335a69eb15f71f2cd816d0b6e4d3556 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 21 Oct 2024 13:06:14 +0900 Subject: [PATCH] chore(deps): update all non-major dependencies (#18404) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: sapphi-red <49056869+sapphi-red@users.noreply.github.com> --- package.json | 18 +- packages/create-vite/package.json | 2 +- .../create-vite/template-qwik-ts/package.json | 2 +- .../create-vite/template-qwik/package.json | 2 +- .../template-react-ts/package.json | 8 +- .../create-vite/template-react/package.json | 8 +- .../template-svelte-ts/package.json | 2 +- packages/plugin-legacy/package.json | 4 +- packages/vite/LICENSE.md | 144 --- packages/vite/package.json | 12 +- ...{acorn@8.12.1.patch => acorn@8.13.0.patch} | 2 +- playground/backend-integration/package.json | 4 +- .../config/packages/siblings/package.json | 2 +- playground/css-sourcemap/package.json | 4 +- playground/css/package.json | 4 +- playground/legacy/package.json | 2 +- playground/multiple-entrypoints/package.json | 2 +- playground/preload/package.json | 2 +- playground/ssr-webworker/package.json | 2 +- playground/tailwind-sourcemap/package.json | 2 +- playground/tailwind/package.json | 2 +- pnpm-lock.yaml | 918 +++++++----------- 22 files changed, 386 insertions(+), 762 deletions(-) rename patches/{acorn@8.12.1.patch => acorn@8.13.0.patch} (65%) diff --git a/package.json b/package.json index 9c2e51a01..0f6509095 100644 --- a/package.json +++ b/package.json @@ -40,7 +40,7 @@ "ci-docs": "pnpm build && pnpm docs-build" }, "devDependencies": { - "@eslint/js": "^9.12.0", + "@eslint/js": "^9.13.0", "@type-challenges/utils": "^0.1.1", "@types/babel__core": "^7.20.5", "@types/babel__preset-env": "^7.9.7", @@ -51,28 +51,28 @@ "@types/etag": "^1.8.3", "@types/less": "^3.0.6", "@types/micromatch": "^4.0.9", - "@types/node": "^20.16.11", + "@types/node": "^20.16.13", "@types/picomatch": "^3.0.1", "@types/stylus": "^0.48.43", "@types/ws": "^8.5.12", "@vitejs/release-scripts": "^1.3.2", "conventional-changelog-cli": "^5.0.0", - "eslint": "^9.12.0", + "eslint": "^9.13.0", "eslint-plugin-import-x": "^4.3.1", "eslint-plugin-n": "^17.11.1", "eslint-plugin-regexp": "^2.6.0", - "execa": "^9.4.0", + "execa": "^9.4.1", "globals": "^15.11.0", "gsap": "^3.12.5", "lint-staged": "^15.2.10", - "picocolors": "^1.1.0", + "picocolors": "^1.1.1", "playwright-chromium": "^1.48.1", "prettier": "3.3.3", "rimraf": "^5.0.10", "rollup": "^4.22.5", "rollup-plugin-esbuild": "^6.1.1", "simple-git-hooks": "^2.11.1", - "tslib": "^2.7.0", + "tslib": "^2.8.0", "tsx": "^4.19.1", "typescript": "^5.6.2", "typescript-eslint": "^8.10.0", @@ -96,16 +96,16 @@ "eslint --cache --fix" ] }, - "packageManager": "pnpm@9.12.1", + "packageManager": "pnpm@9.12.2", "pnpm": { "overrides": { "vite": "workspace:*" }, "patchedDependencies": { - "acorn@8.12.1": "patches/acorn@8.12.1.patch", "chokidar@3.6.0": "patches/chokidar@3.6.0.patch", "http-proxy@1.18.1": "patches/http-proxy@1.18.1.patch", - "sirv@3.0.0": "patches/sirv@3.0.0.patch" + "sirv@3.0.0": "patches/sirv@3.0.0.patch", + "acorn@8.13.0": "patches/acorn@8.13.0.patch" }, "peerDependencyRules": { "allowedVersions": { diff --git a/packages/create-vite/package.json b/packages/create-vite/package.json index 50b7f327d..815c548aa 100644 --- a/packages/create-vite/package.json +++ b/packages/create-vite/package.json @@ -37,7 +37,7 @@ "@types/prompts": "^2.4.9", "cross-spawn": "^7.0.3", "minimist": "^1.2.8", - "picocolors": "^1.1.0", + "picocolors": "^1.1.1", "prompts": "^2.4.2", "unbuild": "^2.0.0" } diff --git a/packages/create-vite/template-qwik-ts/package.json b/packages/create-vite/template-qwik-ts/package.json index d868f2468..6c142cd3a 100644 --- a/packages/create-vite/template-qwik-ts/package.json +++ b/packages/create-vite/template-qwik-ts/package.json @@ -9,7 +9,7 @@ "preview": "serve dist" }, "devDependencies": { - "serve": "^14.2.3", + "serve": "^14.2.4", "typescript": "^5.6.2", "vite": "^5.4.9" }, diff --git a/packages/create-vite/template-qwik/package.json b/packages/create-vite/template-qwik/package.json index dcff8024a..cc4e3f992 100644 --- a/packages/create-vite/template-qwik/package.json +++ b/packages/create-vite/template-qwik/package.json @@ -9,7 +9,7 @@ "preview": "serve dist" }, "devDependencies": { - "serve": "^14.2.3", + "serve": "^14.2.4", "vite": "^5.4.9" }, "dependencies": { diff --git a/packages/create-vite/template-react-ts/package.json b/packages/create-vite/template-react-ts/package.json index 1fbd76c9c..f2f4bdca0 100644 --- a/packages/create-vite/template-react-ts/package.json +++ b/packages/create-vite/template-react-ts/package.json @@ -14,13 +14,13 @@ "react-dom": "^18.3.1" }, "devDependencies": { - "@eslint/js": "^9.12.0", + "@eslint/js": "^9.13.0", "@types/react": "^18.3.11", "@types/react-dom": "^18.3.1", - "@vitejs/plugin-react": "^4.3.2", - "eslint": "^9.12.0", + "@vitejs/plugin-react": "^4.3.3", + "eslint": "^9.13.0", "eslint-plugin-react-hooks": "^5.0.0", - "eslint-plugin-react-refresh": "^0.4.12", + "eslint-plugin-react-refresh": "^0.4.13", "globals": "^15.11.0", "typescript": "^5.6.2", "typescript-eslint": "^8.10.0", diff --git a/packages/create-vite/template-react/package.json b/packages/create-vite/template-react/package.json index 901e9e46b..22c0e5f59 100644 --- a/packages/create-vite/template-react/package.json +++ b/packages/create-vite/template-react/package.json @@ -14,14 +14,14 @@ "react-dom": "^18.3.1" }, "devDependencies": { - "@eslint/js": "^9.12.0", + "@eslint/js": "^9.13.0", "@types/react": "^18.3.11", "@types/react-dom": "^18.3.1", - "@vitejs/plugin-react": "^4.3.2", - "eslint": "^9.12.0", + "@vitejs/plugin-react": "^4.3.3", + "eslint": "^9.13.0", "eslint-plugin-react": "^7.37.1", "eslint-plugin-react-hooks": "^5.0.0", - "eslint-plugin-react-refresh": "^0.4.12", + "eslint-plugin-react-refresh": "^0.4.13", "globals": "^15.11.0", "vite": "^5.4.9" } diff --git a/packages/create-vite/template-svelte-ts/package.json b/packages/create-vite/template-svelte-ts/package.json index b8fb84fdd..64077b8a3 100644 --- a/packages/create-vite/template-svelte-ts/package.json +++ b/packages/create-vite/template-svelte-ts/package.json @@ -14,7 +14,7 @@ "@tsconfig/svelte": "^5.0.4", "svelte": "^4.2.19", "svelte-check": "^4.0.5", - "tslib": "^2.7.0", + "tslib": "^2.8.0", "typescript": "^5.6.2", "vite": "^5.4.9" } diff --git a/packages/plugin-legacy/package.json b/packages/plugin-legacy/package.json index 2a613f288..3b8cda837 100644 --- a/packages/plugin-legacy/package.json +++ b/packages/plugin-legacy/package.json @@ -55,8 +55,8 @@ "vite": "^5.0.0" }, "devDependencies": { - "acorn": "^8.12.1", - "picocolors": "^1.1.0", + "acorn": "^8.13.0", + "picocolors": "^1.1.1", "unbuild": "^2.0.0", "vite": "workspace:*" } diff --git a/packages/vite/LICENSE.md b/packages/vite/LICENSE.md index 955bdbec4..cccba70e5 100644 --- a/packages/vite/LICENSE.md +++ b/packages/vite/LICENSE.md @@ -347,44 +347,6 @@ Repository: git+https://github.com/jridgewell/trace-mapping.git --------------------------------------- -## @nodelib/fs.scandir, @nodelib/fs.stat, @nodelib/fs.walk, fast-glob -License: MIT -Repository: https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.scandir - -License: MIT -Repository: https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.stat - -License: MIT -Repository: https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.walk - -License: MIT -By: Denis Malinochkin -Repository: mrmlnc/fast-glob - -> The MIT License (MIT) -> -> Copyright (c) Denis Malinochkin -> -> Permission is hereby granted, free of charge, to any person obtaining a copy -> of this software and associated documentation files (the "Software"), to deal -> in the Software without restriction, including without limitation the rights -> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -> copies of the Software, and to permit persons to whom the Software is -> furnished to do so, subject to the following conditions: -> -> The above copyright notice and this permission notice shall be included in all -> copies or substantial portions of the Software. -> -> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -> SOFTWARE. - ---------------------------------------- - ## @polka/compression License: MIT Repository: lukeed/polka @@ -1124,27 +1086,6 @@ Repository: git://github.com/primus/eventemitter3.git --------------------------------------- -## fastq -License: ISC -By: Matteo Collina -Repository: git+https://github.com/mcollina/fastq.git - -> Copyright (c) 2015-2020, Matteo Collina -> -> Permission to use, copy, modify, and/or distribute this software for any -> purpose with or without fee is hereby granted, provided that the above -> copyright notice and this permission notice appear in all copies. -> -> THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -> WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -> MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -> ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -> WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -> ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -> OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - ---------------------------------------- - ## fdir License: MIT By: thecodrr @@ -1585,34 +1526,6 @@ Repository: https://github.com/rich-harris/magic-string --------------------------------------- -## merge2 -License: MIT -Repository: git@github.com:teambition/merge2.git - -> The MIT License (MIT) -> -> Copyright (c) 2014-2020 Teambition -> -> Permission is hereby granted, free of charge, to any person obtaining a copy -> of this software and associated documentation files (the "Software"), to deal -> in the Software without restriction, including without limitation the rights -> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -> copies of the Software, and to permit persons to whom the Software is -> furnished to do so, subject to the following conditions: -> -> The above copyright notice and this permission notice shall be included in all -> copies or substantial portions of the Software. -> -> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -> SOFTWARE. - ---------------------------------------- - ## mlly, ufo License: MIT Repositories: unjs/mlly, unjs/ufo @@ -2143,34 +2056,6 @@ Repository: https://github.com/TrySound/postcss-value-parser.git --------------------------------------- -## queue-microtask, run-parallel -License: MIT -By: Feross Aboukhadijeh -Repositories: git://github.com/feross/queue-microtask.git, git://github.com/feross/run-parallel.git - -> The MIT License (MIT) -> -> Copyright (c) Feross Aboukhadijeh -> -> Permission is hereby granted, free of charge, to any person obtaining a copy of -> this software and associated documentation files (the "Software"), to deal in -> the Software without restriction, including without limitation the rights to -> use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -> the Software, and to permit persons to whom the Software is furnished to do so, -> subject to the following conditions: -> -> The above copyright notice and this permission notice shall be included in all -> copies or substantial portions of the Software. -> -> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -> FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -> COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -> IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -> CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - ---------------------------------------- - ## read-cache License: MIT By: Bogdan Chadkin @@ -2286,35 +2171,6 @@ Repositories: lukeed/resolve.exports, lukeed/totalist --------------------------------------- -## reusify -License: MIT -By: Matteo Collina -Repository: git+https://github.com/mcollina/reusify.git - -> The MIT License (MIT) -> -> Copyright (c) 2015 Matteo Collina -> -> Permission is hereby granted, free of charge, to any person obtaining a copy -> of this software and associated documentation files (the "Software"), to deal -> in the Software without restriction, including without limitation the rights -> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -> copies of the Software, and to permit persons to whom the Software is -> furnished to do so, subject to the following conditions: -> -> The above copyright notice and this permission notice shall be included in all -> copies or substantial portions of the Software. -> -> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -> SOFTWARE. - ---------------------------------------- - ## shebang-command License: MIT By: Kevin MÃ¥rtensson diff --git a/packages/vite/package.json b/packages/vite/package.json index 07bade3ad..ffd0c9777 100644 --- a/packages/vite/package.json +++ b/packages/vite/package.json @@ -98,8 +98,8 @@ "@jridgewell/trace-mapping": "^0.3.25", "@polka/compression": "^1.0.0-next.25", "@rollup/plugin-alias": "^5.1.1", - "@rollup/plugin-commonjs": "^28.0.0", - "@rollup/plugin-dynamic-import-vars": "^2.1.3", + "@rollup/plugin-commonjs": "^28.0.1", + "@rollup/plugin-dynamic-import-vars": "^2.1.4", "@rollup/plugin-json": "^6.1.0", "@rollup/plugin-node-resolve": "15.3.0", "@rollup/pluginutils": "^5.1.2", @@ -132,7 +132,7 @@ "parse5": "^7.2.0", "pathe": "^1.1.2", "periscopic": "^4.0.2", - "picocolors": "^1.1.0", + "picocolors": "^1.1.1", "picomatch": "^2.3.1", "postcss-import": "^16.1.0", "postcss-load-config": "^4.0.2", @@ -141,15 +141,15 @@ "rollup-plugin-dts": "^6.1.1", "rollup-plugin-esbuild": "^6.1.1", "rollup-plugin-license": "^3.5.3", - "sass": "^1.79.5", - "sass-embedded": "^1.79.5", + "sass": "^1.80.3", + "sass-embedded": "^1.80.3", "sirv": "^3.0.0", "source-map-support": "^0.5.21", "strip-ansi": "^7.1.0", "strip-literal": "^2.1.0", "tinyglobby": "^0.2.9", "tsconfck": "^3.1.4", - "tslib": "^2.7.0", + "tslib": "^2.8.0", "types": "link:./types", "ufo": "^1.5.4", "ws": "^8.18.0" diff --git a/patches/acorn@8.12.1.patch b/patches/acorn@8.13.0.patch similarity index 65% rename from patches/acorn@8.12.1.patch rename to patches/acorn@8.13.0.patch index 2091246bf..d85ed7a92 100644 --- a/patches/acorn@8.12.1.patch +++ b/patches/acorn@8.13.0.patch @@ -1,5 +1,5 @@ diff --git a/package.json b/package.json -index 355692a301ea5ddaf8541825b22046a31505d139..35acec04252f1063cff56a334565c946e992327c 100644 +index 3396013bbbf060137a30d40c5b60c34bf40dc27e..559eaab9b5bb5b44d5a6bcc1b4542c314e5141cb 100644 --- a/package.json +++ b/package.json @@ -46,5 +46,6 @@ diff --git a/playground/backend-integration/package.json b/playground/backend-integration/package.json index f56569b3e..3de1b7be9 100644 --- a/playground/backend-integration/package.json +++ b/playground/backend-integration/package.json @@ -10,8 +10,8 @@ "preview": "vite preview" }, "devDependencies": { - "sass": "^1.79.5", - "tailwindcss": "^3.4.13", + "sass": "^1.80.3", + "tailwindcss": "^3.4.14", "tinyglobby": "^0.2.9" } } diff --git a/playground/config/packages/siblings/package.json b/playground/config/packages/siblings/package.json index 979f99865..bb7c64705 100644 --- a/playground/config/packages/siblings/package.json +++ b/playground/config/packages/siblings/package.json @@ -2,7 +2,7 @@ "name": "@vite/test-config-sibling", "type": "module", "devDependencies": { - "@types/lodash": "^4.17.10", + "@types/lodash": "^4.17.12", "lodash": "^4.17.21" } } diff --git a/playground/css-sourcemap/package.json b/playground/css-sourcemap/package.json index 3ad98ea48..7d86272cf 100644 --- a/playground/css-sourcemap/package.json +++ b/playground/css-sourcemap/package.json @@ -12,8 +12,8 @@ "devDependencies": { "less": "^4.2.0", "magic-string": "^0.30.12", - "sass": "^1.79.5", - "stylus": "^0.63.0", + "sass": "^1.80.3", + "stylus": "^0.64.0", "sugarss": "^4.0.1" } } diff --git a/playground/css/package.json b/playground/css/package.json index ffbe00bad..4523fa2b6 100644 --- a/playground/css/package.json +++ b/playground/css/package.json @@ -23,8 +23,8 @@ "@vitejs/test-scss-proxy-dep": "file:./scss-proxy-dep", "less": "^4.2.0", "postcss-nested": "^6.2.0", - "sass": "^1.79.5", - "stylus": "^0.63.0", + "sass": "^1.80.3", + "stylus": "^0.64.0", "sugarss": "^4.0.1", "tinyglobby": "^0.2.9" }, diff --git a/playground/legacy/package.json b/playground/legacy/package.json index d88a0d9f1..c33c6560a 100644 --- a/playground/legacy/package.json +++ b/playground/legacy/package.json @@ -18,6 +18,6 @@ "vite": "workspace:*", "@vitejs/plugin-legacy": "workspace:*", "express": "^4.21.1", - "terser": "^5.34.1" + "terser": "^5.36.0" } } diff --git a/playground/multiple-entrypoints/package.json b/playground/multiple-entrypoints/package.json index 087c3562c..dcb5c8b63 100644 --- a/playground/multiple-entrypoints/package.json +++ b/playground/multiple-entrypoints/package.json @@ -10,6 +10,6 @@ "preview": "vite preview" }, "devDependencies": { - "sass": "^1.79.5" + "sass": "^1.80.3" } } diff --git a/playground/preload/package.json b/playground/preload/package.json index 1c2a70890..408000eed 100644 --- a/playground/preload/package.json +++ b/playground/preload/package.json @@ -18,7 +18,7 @@ "preview:preload-disabled": "vite preview --config vite.config-preload-disabled.js" }, "devDependencies": { - "terser": "^5.34.1", + "terser": "^5.36.0", "@vitejs/test-dep-a": "file:./dep-a", "@vitejs/test-dep-including-a": "file:./dep-including-a" } diff --git a/playground/ssr-webworker/package.json b/playground/ssr-webworker/package.json index 8c29f632a..93a2914dd 100644 --- a/playground/ssr-webworker/package.json +++ b/playground/ssr-webworker/package.json @@ -13,7 +13,7 @@ "@vitejs/test-worker-exports": "file:./worker-exports" }, "devDependencies": { - "miniflare": "^3.20241004.0", + "miniflare": "^3.20241011.0", "@vitejs/test-resolve-linked": "workspace:*" } } diff --git a/playground/tailwind-sourcemap/package.json b/playground/tailwind-sourcemap/package.json index 4eea83dd5..7aa91b6ff 100644 --- a/playground/tailwind-sourcemap/package.json +++ b/playground/tailwind-sourcemap/package.json @@ -10,6 +10,6 @@ "preview": "vite preview" }, "dependencies": { - "tailwindcss": "^3.4.13" + "tailwindcss": "^3.4.14" } } diff --git a/playground/tailwind/package.json b/playground/tailwind/package.json index 463deb179..bb3f75264 100644 --- a/playground/tailwind/package.json +++ b/playground/tailwind/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "autoprefixer": "^10.4.20", - "tailwindcss": "^3.4.13", + "tailwindcss": "^3.4.14", "vue": "^3.5.12", "vue-router": "^4.4.5" }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1174a6a4f..0d175dd0f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -8,9 +8,9 @@ overrides: vite: workspace:* patchedDependencies: - acorn@8.12.1: - hash: i6svphyqbutfresqjorapmeqfu - path: patches/acorn@8.12.1.patch + acorn@8.13.0: + hash: alg6ojsgkjjglvaj7cjzzaqhim + path: patches/acorn@8.13.0.patch chokidar@3.6.0: hash: bckcfsslxcffppz65mxcq6naau path: patches/chokidar@3.6.0.patch @@ -26,8 +26,8 @@ importers: .: devDependencies: '@eslint/js': - specifier: ^9.12.0 - version: 9.12.0 + specifier: ^9.13.0 + version: 9.13.0 '@type-challenges/utils': specifier: ^0.1.1 version: 0.1.1 @@ -59,8 +59,8 @@ importers: specifier: ^4.0.9 version: 4.0.9 '@types/node': - specifier: ^20.16.11 - version: 20.16.11 + specifier: ^20.16.13 + version: 20.16.13 '@types/picomatch': specifier: ^3.0.1 version: 3.0.1 @@ -77,20 +77,20 @@ importers: specifier: ^5.0.0 version: 5.0.0(conventional-commits-filter@5.0.0) eslint: - specifier: ^9.12.0 - version: 9.12.0(jiti@1.21.0) + specifier: ^9.13.0 + version: 9.13.0(jiti@1.21.0) eslint-plugin-import-x: specifier: ^4.3.1 - version: 4.3.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.2) + version: 4.3.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.2) eslint-plugin-n: specifier: ^17.11.1 - version: 17.11.1(eslint@9.12.0(jiti@1.21.0)) + version: 17.11.1(eslint@9.13.0(jiti@1.21.0)) eslint-plugin-regexp: specifier: ^2.6.0 - version: 2.6.0(eslint@9.12.0(jiti@1.21.0)) + version: 2.6.0(eslint@9.13.0(jiti@1.21.0)) execa: - specifier: ^9.4.0 - version: 9.4.0 + specifier: ^9.4.1 + version: 9.4.1 globals: specifier: ^15.11.0 version: 15.11.0 @@ -101,8 +101,8 @@ importers: specifier: ^15.2.10 version: 15.2.10 picocolors: - specifier: ^1.1.0 - version: 1.1.0 + specifier: ^1.1.1 + version: 1.1.1 playwright-chromium: specifier: ^1.48.1 version: 1.48.1 @@ -122,8 +122,8 @@ importers: specifier: ^2.11.1 version: 2.11.1 tslib: - specifier: ^2.7.0 - version: 2.7.0 + specifier: ^2.8.0 + version: 2.8.0 tsx: specifier: ^4.19.1 version: 4.19.1 @@ -132,13 +132,13 @@ importers: version: 5.6.2 typescript-eslint: specifier: ^8.10.0 - version: 8.10.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.2) + version: 8.10.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.2) vite: specifier: workspace:* version: link:packages/vite vitest: specifier: ^2.1.3 - version: 2.1.3(@types/node@20.16.11) + version: 2.1.3(@types/node@20.16.13) docs: devDependencies: @@ -176,14 +176,14 @@ importers: specifier: ^1.2.8 version: 1.2.8 picocolors: - specifier: ^1.1.0 - version: 1.1.0 + specifier: ^1.1.1 + version: 1.1.1 prompts: specifier: ^2.4.2 version: 2.4.2 unbuild: specifier: ^2.0.0 - version: 2.0.0(sass@1.79.5)(typescript@5.6.2) + version: 2.0.0(sass@1.80.3)(typescript@5.6.2) packages/plugin-legacy: dependencies: @@ -213,14 +213,14 @@ importers: version: 6.15.1 devDependencies: acorn: - specifier: ^8.12.1 - version: 8.12.1(patch_hash=i6svphyqbutfresqjorapmeqfu) + specifier: ^8.13.0 + version: 8.13.0(patch_hash=alg6ojsgkjjglvaj7cjzzaqhim) picocolors: - specifier: ^1.1.0 - version: 1.1.0 + specifier: ^1.1.1 + version: 1.1.1 unbuild: specifier: ^2.0.0 - version: 2.0.0(sass@1.79.5)(typescript@5.6.2) + version: 2.0.0(sass@1.80.3)(typescript@5.6.2) vite: specifier: workspace:* version: link:../vite @@ -257,11 +257,11 @@ importers: specifier: ^5.1.1 version: 5.1.1(rollup@4.22.5) '@rollup/plugin-commonjs': - specifier: ^28.0.0 - version: 28.0.0(rollup@4.22.5) + specifier: ^28.0.1 + version: 28.0.1(rollup@4.22.5) '@rollup/plugin-dynamic-import-vars': - specifier: ^2.1.3 - version: 2.1.3(rollup@4.22.5) + specifier: ^2.1.4 + version: 2.1.4(rollup@4.22.5) '@rollup/plugin-json': specifier: ^6.1.0 version: 6.1.0(rollup@4.22.5) @@ -359,8 +359,8 @@ importers: specifier: ^4.0.2 version: 4.0.2 picocolors: - specifier: ^1.1.0 - version: 1.1.0 + specifier: ^1.1.1 + version: 1.1.1 picomatch: specifier: ^2.3.1 version: 2.3.1 @@ -369,7 +369,7 @@ importers: version: 16.1.0(postcss@8.4.47) postcss-load-config: specifier: ^4.0.2 - version: 4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@20.16.11)(typescript@5.6.2)) + version: 4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@20.16.13)(typescript@5.6.2)) postcss-modules: specifier: ^6.0.0 version: 6.0.0(postcss@8.4.47) @@ -386,11 +386,11 @@ importers: specifier: ^3.5.3 version: 3.5.3(picomatch@2.3.1)(rollup@4.22.5) sass: - specifier: ^1.79.5 - version: 1.79.5 + specifier: ^1.80.3 + version: 1.80.3 sass-embedded: - specifier: ^1.79.5 - version: 1.79.5 + specifier: ^1.80.3 + version: 1.80.3 sirv: specifier: ^3.0.0 version: 3.0.0(patch_hash=plxlsciwiebyhal5sm4vtpekka) @@ -410,8 +410,8 @@ importers: specifier: ^3.1.4 version: 3.1.4(typescript@5.6.2) tslib: - specifier: ^2.7.0 - version: 2.7.0 + specifier: ^2.8.0 + version: 2.8.0 types: specifier: link:./types version: link:types @@ -511,11 +511,11 @@ importers: playground/backend-integration: devDependencies: sass: - specifier: ^1.79.5 - version: 1.79.5 + specifier: ^1.80.3 + version: 1.80.3 tailwindcss: - specifier: ^3.4.13 - version: 3.4.13(ts-node@10.9.2(@types/node@20.16.11)(typescript@5.6.2)) + specifier: ^3.4.14 + version: 3.4.14(ts-node@10.9.2(@types/node@20.16.13)(typescript@5.6.2)) tinyglobby: specifier: ^0.2.9 version: 0.2.9 @@ -541,8 +541,8 @@ importers: playground/config/packages/siblings: devDependencies: '@types/lodash': - specifier: ^4.17.10 - version: 4.17.10 + specifier: ^4.17.12 + version: 4.17.12 lodash: specifier: ^4.17.21 version: 4.17.21 @@ -573,11 +573,11 @@ importers: specifier: ^6.2.0 version: 6.2.0(postcss@8.4.47) sass: - specifier: ^1.79.5 - version: 1.79.5 + specifier: ^1.80.3 + version: 1.80.3 stylus: - specifier: ^0.63.0 - version: 0.63.0 + specifier: ^0.64.0 + version: 0.64.0 sugarss: specifier: ^4.0.1 version: 4.0.1(postcss@8.4.47) @@ -623,11 +623,11 @@ importers: specifier: ^0.30.12 version: 0.30.12 sass: - specifier: ^1.79.5 - version: 1.79.5 + specifier: ^1.80.3 + version: 1.80.3 stylus: - specifier: ^0.63.0 - version: 0.63.0 + specifier: ^0.64.0 + version: 0.64.0 sugarss: specifier: ^4.0.1 version: 4.0.1(postcss@8.4.47) @@ -814,8 +814,8 @@ importers: specifier: ^4.21.1 version: 4.21.1 terser: - specifier: ^5.34.1 - version: 5.34.1 + specifier: ^5.36.0 + version: 5.36.0 vite: specifier: workspace:* version: link:../../packages/vite @@ -839,8 +839,8 @@ importers: playground/multiple-entrypoints: devDependencies: sass: - specifier: ^1.79.5 - version: 1.79.5 + specifier: ^1.80.3 + version: 1.80.3 playground/nested-deps: dependencies: @@ -1149,8 +1149,8 @@ importers: specifier: file:./dep-including-a version: file:playground/preload/dep-including-a terser: - specifier: ^5.34.1 - version: 5.34.1 + specifier: ^5.36.0 + version: 5.36.0 playground/preload/dep-a: {} @@ -1562,8 +1562,8 @@ importers: specifier: workspace:* version: link:../resolve-linked miniflare: - specifier: ^3.20241004.0 - version: 3.20241004.0 + specifier: ^3.20241011.0 + version: 3.20241011.0 playground/ssr-webworker/browser-exports: {} @@ -1575,8 +1575,8 @@ importers: specifier: ^10.4.20 version: 10.4.20(postcss@8.4.47) tailwindcss: - specifier: ^3.4.13 - version: 3.4.13(ts-node@10.9.2(@types/node@20.16.11)(typescript@5.6.2)) + specifier: ^3.4.14 + version: 3.4.14(ts-node@10.9.2(@types/node@20.16.13)(typescript@5.6.2)) vue: specifier: ^3.5.12 version: 3.5.12(typescript@5.6.2) @@ -1586,13 +1586,13 @@ importers: devDependencies: ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.16.11)(typescript@5.6.2) + version: 10.9.2(@types/node@20.16.13)(typescript@5.6.2) playground/tailwind-sourcemap: dependencies: tailwindcss: - specifier: ^3.4.13 - version: 3.4.13(ts-node@10.9.2(@types/node@20.16.11)(typescript@5.6.2)) + specifier: ^3.4.14 + version: 3.4.14(ts-node@10.9.2(@types/node@20.16.13)(typescript@5.6.2)) playground/transform-plugin: {} @@ -1696,18 +1696,10 @@ packages: '@antfu/utils@0.7.10': resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==} - '@babel/code-frame@7.24.7': - resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==} - engines: {node: '>=6.9.0'} - '@babel/code-frame@7.25.7': resolution: {integrity: sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==} engines: {node: '>=6.9.0'} - '@babel/compat-data@7.25.7': - resolution: {integrity: sha512-9ickoLz+hcXCeh7jrcin+/SLWm+GkxE2kTvoYyp38p4WkdFXfQJxDFGWp/YHjiKLPx06z2A7W8XKuqbReXDzsw==} - engines: {node: '>=6.9.0'} - '@babel/compat-data@7.25.8': resolution: {integrity: sha512-ZsysZyXY4Tlx+Q53XdnOFmqwfB9QDTHYxaZYajWRoBLuLEAwI2UIbtxOjWh/cFaa9IKUlcB+DDuoskLuKu56JA==} engines: {node: '>=6.9.0'} @@ -1791,18 +1783,10 @@ packages: resolution: {integrity: sha512-pPbNbchZBkPMD50K0p3JGcFMNLVUCuU/ABybm/PGNj4JiHrpmNyqqCphBk4i19xXtNV0JhldQJJtbSW5aUvbyA==} engines: {node: '>=6.9.0'} - '@babel/helper-string-parser@7.24.8': - resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==} - engines: {node: '>=6.9.0'} - '@babel/helper-string-parser@7.25.7': resolution: {integrity: sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==} engines: {node: '>=6.9.0'} - '@babel/helper-validator-identifier@7.24.7': - resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==} - engines: {node: '>=6.9.0'} - '@babel/helper-validator-identifier@7.25.7': resolution: {integrity: sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==} engines: {node: '>=6.9.0'} @@ -1819,10 +1803,6 @@ packages: resolution: {integrity: sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA==} engines: {node: '>=6.9.0'} - '@babel/highlight@7.24.7': - resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==} - engines: {node: '>=6.9.0'} - '@babel/highlight@7.25.7': resolution: {integrity: sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==} engines: {node: '>=6.9.0'} @@ -2207,14 +2187,6 @@ packages: resolution: {integrity: sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==} engines: {node: '>=6.9.0'} - '@babel/types@7.25.2': - resolution: {integrity: sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==} - engines: {node: '>=6.9.0'} - - '@babel/types@7.25.7': - resolution: {integrity: sha512-vwIVdXG+j+FOpkwqHRcBgHLYNL7XMkufrlaFvL9o6Ai9sJn9+PdyIL5qa0XzTZw084c+u9LOls53eoZWP/W5WQ==} - engines: {node: '>=6.9.0'} - '@babel/types@7.25.8': resolution: {integrity: sha512-JWtuCu8VQsMladxVz/P4HzHUGCAwpuqacmowgXFs5XjxIgKuNjnLokQzuVjlTvIzODaDmpjT3oxcC48vyk9EWg==} engines: {node: '>=6.9.0'} @@ -2222,32 +2194,32 @@ packages: '@bufbuild/protobuf@2.1.0': resolution: {integrity: sha512-+2Mx67Y3skJ4NCD/qNSdBJNWtu6x6Qr53jeNg+QcwiL6mt0wK+3jwHH2x1p7xaYH6Ve2JKOVn0OxU35WsmqI9A==} - '@cloudflare/workerd-darwin-64@1.20241004.0': - resolution: {integrity: sha512-c2afR486NXDRcPm7RaTSRDnffFklPCXde/IeNVhEhBJ8O+pQhBOdDcGIy8zXPwMu0CYga0iHNZmpbsl+ZcHttA==} + '@cloudflare/workerd-darwin-64@1.20241011.1': + resolution: {integrity: sha512-gZ2PrMCQ4WdDCB+V6vsB2U2SyYcmgaGMEa3GGjcUfC79L/8so3Vp/bO0eCoLmvttRs39wascZ+JiWL0HpcZUgA==} engines: {node: '>=16'} cpu: [x64] os: [darwin] - '@cloudflare/workerd-darwin-arm64@1.20241004.0': - resolution: {integrity: sha512-siD9fexv5lr2IpBczWV7OPgJvHj8/fJUrRAYCMcBURkfiwssK91coQeZlN1NdQ85aYELVgxDFoG+p86OS+ZzLw==} + '@cloudflare/workerd-darwin-arm64@1.20241011.1': + resolution: {integrity: sha512-c26TYtS0e3WZ09nL/a8YaEqveCsTlgDm12ehPMNua9u68sh1KzETMl2G45O934m8UrI3Rhpv2TTecO0S5b9exA==} engines: {node: '>=16'} cpu: [arm64] os: [darwin] - '@cloudflare/workerd-linux-64@1.20241004.0': - resolution: {integrity: sha512-EtKGXO5fzRgX6UhDDLhjjEsB1QtliHb12zavZ/S0C8hKPz76II7MQ3Lls9kfB62fbdMP8L6vcqWPObEUcw6GSw==} + '@cloudflare/workerd-linux-64@1.20241011.1': + resolution: {integrity: sha512-pl4xvHNXnm3cYh5GwHadOTQRWt4Ih/gzCOb6RW4n78oNQQydFvpwqYAjbYk32y485feLhdTKXut/MgZAyWnKyQ==} engines: {node: '>=16'} cpu: [x64] os: [linux] - '@cloudflare/workerd-linux-arm64@1.20241004.0': - resolution: {integrity: sha512-XO7VBE1YaFf/o9tKO1PqDqaxkU2eAR2DLX7R0+R8p+q92sUDXyoxo48T3yJDfxWndnKJ6hSJfvKanw3Mq9Tisw==} + '@cloudflare/workerd-linux-arm64@1.20241011.1': + resolution: {integrity: sha512-I4HAF2Qe8xgIjAdE53viT2fDdHXkrb3Be0L3eWeeP5SEkOtQ4cHLqsOV7yhUWOJpHiI1XCDcf+wdfn0PB/EngQ==} engines: {node: '>=16'} cpu: [arm64] os: [linux] - '@cloudflare/workerd-windows-64@1.20241004.0': - resolution: {integrity: sha512-o+TmCYGq58jNUDbG73xOvd648XvJ2TicI++2BBoySklJXG6f4But5AwA8TxQgmeujR3vpBjPZKexEzcZSUOTtA==} + '@cloudflare/workerd-windows-64@1.20241011.1': + resolution: {integrity: sha512-oVr1Cb7NkDpukd7v68FdxOH8vaHRSzHkX9uE/IttHd2yPK6mwOS220nIxK9UMcx5CwZmrgphRwtZwSYVk/lREQ==} engines: {node: '>=16'} cpu: [x64] os: [win32] @@ -2863,16 +2835,16 @@ packages: resolution: {integrity: sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/core@0.6.0': - resolution: {integrity: sha512-8I2Q8ykA4J0x0o7cg67FPVnehcqWTBehu/lmY+bolPFHGjh49YzGBMXTvpqVgEbBdvNCSxj6iFgiIyHzf03lzg==} + '@eslint/core@0.7.0': + resolution: {integrity: sha512-xp5Jirz5DyPYlPiKat8jaq0EmYvDXKKpzTbxXMpT9eqlRJkRKIz9AGMdlvYjih+im+QlhWrpvVjl8IPC/lHlUw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/eslintrc@3.1.0': resolution: {integrity: sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/js@9.12.0': - resolution: {integrity: sha512-eohesHH8WFRUprDNyEREgqP6beG6htMeUYeCpkEgBCieCMme5r9zFWjzAJp//9S+Kub4rqE+jXe9Cp1a7IYIIA==} + '@eslint/js@9.13.0': + resolution: {integrity: sha512-IFLyoY4d72Z5y/6o/BazFBezupzI/taV8sGumxTAVw3lXG9A6md1Dc34T9s1FoD/an9pJH8RHbAxsaEbBed9lA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/object-schema@2.1.4': @@ -3059,15 +3031,6 @@ packages: '@polka/url@1.0.0-next.24': resolution: {integrity: sha512-2LuNTFBIO0m7kKIQvvPHN6UE63VjpmL9rnEEaOOaiSPbZK+zUOYIzBAWcED+3XYzhYsd/0mD57VdxAEqqV52CQ==} - '@rollup/plugin-alias@5.1.0': - resolution: {integrity: sha512-lpA3RZ9PdIG7qqhEfv79tBffNaoDuukFDrmhLqg9ifv99u/ehn+lOg30x2zmhf8AQqQUZaMk/B9fZraQ6/acDQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - '@rollup/plugin-alias@5.1.1': resolution: {integrity: sha512-PR9zDb+rOzkRb2VD+EuKB7UC41vU5DIwZ5qqCpk0KJudcWAyi8rvYOhS7+L5aZCspw1stTViLgN5v6FF1p5cgQ==} engines: {node: '>=14.0.0'} @@ -3086,8 +3049,8 @@ packages: rollup: optional: true - '@rollup/plugin-commonjs@28.0.0': - resolution: {integrity: sha512-BJcu+a+Mpq476DMXG+hevgPSl56bkUoi88dKT8t3RyUp8kGuOh+2bU8Gs7zXDlu+fyZggnJ+iOBGrb/O1SorYg==} + '@rollup/plugin-commonjs@28.0.1': + resolution: {integrity: sha512-+tNWdlWKbpB3WgBN7ijjYkq9X5uhjmcvyjEght4NmH5fAU++zfQzAJ6wumLS+dNcvwEZhKx2Z+skY8m7v0wGSA==} engines: {node: '>=16.0.0 || 14 >= 14.17'} peerDependencies: rollup: ^2.68.0||^3.0.0||^4.0.0 @@ -3095,8 +3058,8 @@ packages: rollup: optional: true - '@rollup/plugin-dynamic-import-vars@2.1.3': - resolution: {integrity: sha512-9ZuItXkvbx0NUeEO0TMIYY7KAK/c7biumCTVrk6nwW81om7apA3/yju6JUm1pFMWmF/bZbyrom20NupRZWk9Wg==} + '@rollup/plugin-dynamic-import-vars@2.1.4': + resolution: {integrity: sha512-MZSB+lBSqTiMaE95/K159bRQcVbQugMzV5LbXQgFkjjPMCXFq1dgVHL7zs6diCowEviVxQ/6AHHLmDA1VDGGIw==} engines: {node: '>=14.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 @@ -3113,15 +3076,6 @@ packages: rollup: optional: true - '@rollup/plugin-node-resolve@15.2.3': - resolution: {integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^2.78.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - '@rollup/plugin-node-resolve@15.3.0': resolution: {integrity: sha512-9eO5McEICxMzJpDW9OnMYSv4Sta3hmt7VtBFz5zR9273suNOydOyq/FrGeGy+KsTRFm8w0SLVhzig2ILFT63Ag==} engines: {node: '>=14.0.0'} @@ -3140,15 +3094,6 @@ packages: rollup: optional: true - '@rollup/pluginutils@5.1.0': - resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - '@rollup/pluginutils@5.1.2': resolution: {integrity: sha512-/FIdS3PyZ39bjZlwqFnWqCOVnW7o963LtKMwQOD0NhQqw22gSr2YY1afu3FxRip4ZCZNsD5jq6Aaz6QV3D/Njw==} engines: {node: '>=14.0.0'} @@ -3347,8 +3292,8 @@ packages: '@types/linkify-it@5.0.0': resolution: {integrity: sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==} - '@types/lodash@4.17.10': - resolution: {integrity: sha512-YpS0zzoduEhuOWjAotS6A5AVCva7X4lVlYLF0FYHAY9sdraBfnatttHItlWeZdGhuEkf+OzMNg2ZYAx8t+52uQ==} + '@types/lodash@4.17.12': + resolution: {integrity: sha512-sviUmCE8AYdaF/KIHLDJBQgeYzPBI0vf/17NaYehBJfYD1j6/L95Slh07NlyK2iNyBNaEkb3En2jRt+a8y3xZQ==} '@types/markdown-it@14.1.2': resolution: {integrity: sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==} @@ -3374,11 +3319,8 @@ packages: '@types/ms@0.7.34': resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} - '@types/node@20.14.14': - resolution: {integrity: sha512-d64f00982fS9YoOgJkAMolK7MN8Iq3TDdVjchbYHdEmjth/DHowx82GnoA+tVUAN+7vxfYUgAzi+JXbKNd2SDQ==} - - '@types/node@20.16.11': - resolution: {integrity: sha512-y+cTCACu92FyA5fgQSAI8A1H429g7aSK2HsO7K4XYUWc4dY5IUz55JSDIYT6/VsOLfGy8vmvQYC2hfb0iF16Uw==} + '@types/node@20.16.13': + resolution: {integrity: sha512-GjQ7im10B0labo8ZGXDGROUl9k0BNyDgzfGpb4g/cl+4yYDWVKcozANF4FGr4/p0O/rAkQClM6Wiwkije++1Tg==} '@types/normalize-package-data@2.4.4': resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} @@ -3456,10 +3398,6 @@ packages: resolution: {integrity: sha512-AgCaEjhfql9MDKjMUxWvH7HjLeBqMCBfIaBbzzIcBbQPZE7CPh1m6FF+L75NUMJFMLYhCywJXIDEMa3//1A0dw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/scope-manager@8.7.0': - resolution: {integrity: sha512-87rC0k3ZlDOuz82zzXRtQ7Akv3GKhHs0ti4YcbAJtaomllXoSO8hi7Ix3ccEvCd824dy9aIX+j3d2UMAfCtVpg==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/type-utils@8.10.0': resolution: {integrity: sha512-PCpUOpyQSpxBn230yIcK+LeCQaXuxrgCm2Zk1S+PTIRJsEfU6nJ0TtwyH8pIwPK/vJoA+7TZtzyAJSGBz+s/dg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -3473,10 +3411,6 @@ packages: resolution: {integrity: sha512-k/E48uzsfJCRRbGLapdZgrX52csmWJ2rcowwPvOZ8lwPUv3xW6CcFeJAXgx4uJm+Ge4+a4tFOkdYvSpxhRhg1w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/types@8.7.0': - resolution: {integrity: sha512-LLt4BLHFwSfASHSF2K29SZ+ZCsbQOM+LuarPjRUuHm+Qd09hSe3GCeaQbcCr+Mik+0QFRmep/FyZBO6fJ64U3w==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/typescript-estree@8.10.0': resolution: {integrity: sha512-3OE0nlcOHaMvQ8Xu5gAfME3/tWVDpb/HxtpUZ1WeOAksZ/h/gwrBzCklaGzwZT97/lBbbxJ16dMA98JMEngW4w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -3486,35 +3420,16 @@ packages: typescript: optional: true - '@typescript-eslint/typescript-estree@8.7.0': - resolution: {integrity: sha512-MC8nmcGHsmfAKxwnluTQpNqceniT8SteVwd2voYlmiSWGOtjvGXdPl17dYu2797GVscK30Z04WRM28CrKS9WOg==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - '@typescript-eslint/utils@8.10.0': resolution: {integrity: sha512-Oq4uZ7JFr9d1ZunE/QKy5egcDRXT/FrS2z/nlxzPua2VHFtmMvFNDvpq1m/hq0ra+T52aUezfcjGRIB7vNJF9w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 - '@typescript-eslint/utils@8.7.0': - resolution: {integrity: sha512-ZbdUdwsl2X/s3CiyAu3gOlfQzpbuG3nTWKPoIvAu1pu5r8viiJvv2NPN2AqArL35NCYtw/lrPPfM4gxrMLNLPw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - '@typescript-eslint/visitor-keys@8.10.0': resolution: {integrity: sha512-k8nekgqwr7FadWk548Lfph6V3r9OVqjzAIVskE7orMZR23cGJjAOVazsZSJW+ElyjfTM4wx/1g88Mi70DDtG9A==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/visitor-keys@8.7.0': - resolution: {integrity: sha512-b1tx0orFCCh/THWPQa2ZwWzvOeyzzp36vkJYOpVg0u8UVOIsfVrnuC9FqAw9gRKn+rG2VmWQ/zDJZzkxUnj/XQ==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript/vfs@1.6.0': resolution: {integrity: sha512-hvJUjNVeBMp77qPINuUvYXj4FyWeeMMKZkxEATEU3hqBAQ7qdTBCUFT7Sp0Zu0faeEtFf+ldXxMEDr/bk73ISg==} peerDependencies: @@ -3836,9 +3751,6 @@ packages: '@vue/compiler-vue2@2.7.16': resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==} - '@vue/devtools-api@6.6.3': - resolution: {integrity: sha512-0MiMsFma/HqA6g3KLKn+AGpL1kgKhFWszC9U29NfpWK5LE7bjeXxySWJrOJ77hBz+TBrBQ7o4QJqbPbqbs8rJw==} - '@vue/devtools-api@6.6.4': resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==} @@ -3959,8 +3871,8 @@ packages: engines: {node: '>=0.4.0'} hasBin: true - acorn@8.12.1: - resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==} + acorn@8.13.0: + resolution: {integrity: sha512-8zSiw54Oxrdym50NlZ9sUusyO1Z1ZchgRLWRaK6c86XJFClyCgFKetdowBg5bKxyp/u+CDBJG4Mpp0m3HLZl9w==} engines: {node: '>=0.4.0'} hasBin: true @@ -4137,10 +4049,6 @@ packages: buffer-from@1.1.2: resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} - builtin-modules@3.3.0: - resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} - engines: {node: '>=6'} - bundle-name@4.1.0: resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==} engines: {node: '>=18'} @@ -4165,9 +4073,6 @@ packages: resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} engines: {node: '>= 6'} - caniuse-lite@1.0.30001649: - resolution: {integrity: sha512-fJegqZZ0ZX8HOWr6rcafGr72+xcgJKI9oWfDW5DrD7ExUtgZC7a7R7ZYmZqplh7XDocFdGeIFn7roAxhOeYrPQ==} - caniuse-lite@1.0.30001664: resolution: {integrity: sha512-AmE7k4dXiNKQipgn7a2xg558IRqPN3jMQY/rOsbxDhrd0tyChwbITBfiwtnqz8bi2M5mIWbxAYBvk7W7QBUS2g==} @@ -4724,8 +4629,8 @@ packages: resolution: {integrity: sha512-Q7lok0mqMUSf5a/AdAZkA5a/gHcO6snwQClVNNvFKCAVlxXucdU8pKydU5ZVZjBx5xr37vGbFFWtLQYreLzrZg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - eslint@9.12.0: - resolution: {integrity: sha512-UVIOlTEWxwIopRL1wgSQYdnVDcEvs2wyaO6DGo5mXqe3r16IoCNWkR29iHhyaP4cICWjbgbmFUGAhh0GJRuGZw==} + eslint@9.13.0: + resolution: {integrity: sha512-EYZK6SX6zjFHST/HRytOdA/zE72Cq/bfw45LSyuwrdvcclb/gqV8RRQxywOBEWO2+WDpva6UZa4CcDeJKzUCFA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} hasBin: true peerDependencies: @@ -4781,8 +4686,8 @@ packages: resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} engines: {node: '>=16.17'} - execa@9.4.0: - resolution: {integrity: sha512-yKHlle2YGxZE842MERVIplWwNH5VYmqqcPFgtnlU//K8gxuFFXu0pwd/CrfXTumFpeEiufsP7+opT/bPJa1yVw==} + execa@9.4.1: + resolution: {integrity: sha512-5eo/BRqZm3GYce+1jqX/tJ7duA2AnE39i88fuedNFUV8XxGxUpF3aWkBRfbUcjV49gCkvS/pzc0YrCPhaIewdg==} engines: {node: ^18.19.0 || >=20.5.0} exit-hook@2.2.1: @@ -5175,10 +5080,6 @@ packages: resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} engines: {node: '>=8'} - is-builtin-module@3.2.1: - resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} - engines: {node: '>=6'} - is-core-module@2.14.0: resolution: {integrity: sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==} engines: {node: '>= 0.4'} @@ -5486,9 +5387,6 @@ packages: resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==} engines: {node: '>=12'} - magic-string@0.30.11: - resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==} - magic-string@0.30.12: resolution: {integrity: sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==} @@ -5655,8 +5553,8 @@ packages: resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==} engines: {node: '>=18'} - miniflare@3.20241004.0: - resolution: {integrity: sha512-QSSmCR2V1AJnnpYwlyLXobKLSGiY1FlAiZYULMdGgOUThV7HJeSysDxsmPmrH+D4GQbmUERnmDdB6M6Rrz7uPg==} + miniflare@3.20241011.0: + resolution: {integrity: sha512-Mb3U9+QvKgIUl9LgHwBxEz8WajMRYqO5mMHRtO8yHjNCLGh24I6Ts9z13zRAYGPDd1xBQ1o983fHT9S+tn6r+A==} engines: {node: '>=16.13'} hasBin: true @@ -5709,9 +5607,6 @@ packages: typescript: optional: true - mlly@1.7.1: - resolution: {integrity: sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==} - mlly@1.7.2: resolution: {integrity: sha512-tN3dvVHYVz4DhSXinXIk7u9syPYaJvio118uomkovAtWBT+RdbP6Lfh/5Lvo519YMmwBafwlh20IPTXIStscpA==} @@ -5976,8 +5871,8 @@ packages: phoenix@1.7.14: resolution: {integrity: sha512-3tZ76PiH/2g+Kyzhz8+GIFYrnx3lRnwi/Qt3ZUH04xpMxXL7Guerd5aaxtpWal73X+H8iLAjo2c+AgRy2KYQcQ==} - picocolors@1.1.0: - resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==} + picocolors@1.1.1: + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} picomatch@2.3.1: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} @@ -6004,9 +5899,6 @@ packages: resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==} engines: {node: '>= 6'} - pkg-types@1.1.1: - resolution: {integrity: sha512-ko14TjmDuQJ14zsotODv7dBlwxKhUKQEhuhmbqo1uCi9BB0Z2alo/wAXg6q1dTR5TyuqYyWhjtfe/Tsh+X28jQ==} - pkg-types@1.2.0: resolution: {integrity: sha512-+ifYuSSqOQ8CqP4MbZA5hDpb97n3E8SVWdJe+Wms9kj745lmd3b7EZJiqvmLwAlmRfjrI7Hi5z3kdBJ93lFNPA==} @@ -6187,10 +6079,6 @@ packages: resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} engines: {node: '>=6'} - qs@6.12.3: - resolution: {integrity: sha512-AWJm14H1vVaO/iNZ4/hO+HyaTehuy9nRqVdkTqlJt0HWvBiBIEXFmb4C0DGeYo3Xes9rrEW+TxHsaigCbN5ICQ==} - engines: {node: '>=0.6'} - qs@6.13.0: resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==} engines: {node: '>=0.6'} @@ -6361,138 +6249,138 @@ packages: safer-buffer@2.1.2: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} - sass-embedded-android-arm64@1.79.5: - resolution: {integrity: sha512-pq1RJTENkRmEUMLiVuSGYwuLk8zXovWzrjQxlWZTF/Jn5F7Ypi/3v5huMmgJF5n+etsxjio1PN1idaQ5tPLBmg==} + sass-embedded-android-arm64@1.80.3: + resolution: {integrity: sha512-uaEKdi+PaFc1V87vj2eCUB8B2ThNvEYYu9Qs5sCtx1atEQDtvp/smHYlXOVrg2M4+g2YASkDBQewyk+auZtG0g==} engines: {node: '>=14.0.0'} cpu: [arm64] os: [android] - sass-embedded-android-arm@1.79.5: - resolution: {integrity: sha512-gYtpQAE2uNFa5IBKBIzUq5ETDS6gnVRmhP5j+N5JGrOThYaGPcG4KrjlU9R3BfCmc7zP5WvlHFZsxSz+2JRT2w==} + sass-embedded-android-arm@1.80.3: + resolution: {integrity: sha512-i87crav7sfShzY7AyUneXvs4SWdJ93QlYIpo/2OQPTJV5MjJF8wUp0o9NT8Oo6sUJ26kfgsb64FwqQh1wO5uBg==} engines: {node: '>=14.0.0'} cpu: [arm] os: [android] - sass-embedded-android-ia32@1.79.5: - resolution: {integrity: sha512-CgJZjLxYRkgjTP/76WumLlF7+1aW0LA+DSEJhkVaCxe5avndRCmPrNcX0PrtYSDvUgeQDvY7xF+fT9QXN1+NgQ==} + sass-embedded-android-ia32@1.80.3: + resolution: {integrity: sha512-XCa4Se7vqWuV5tFLZuYWidPLUCeK7n1AgugircJl/9QPThCGZ2mSRF0Ipj3lv+Qw4GG9kkhCqJIrksTGbSFypw==} engines: {node: '>=14.0.0'} cpu: [ia32] os: [android] - sass-embedded-android-riscv64@1.79.5: - resolution: {integrity: sha512-OLbdmDSM/eOjO01PUYbS54BQOCM/HHHHWk/4M8HHdxwF3ojy5eqQaA63R1YQ3IJvLEE7dnudofOXmL01B5+yvQ==} + sass-embedded-android-riscv64@1.80.3: + resolution: {integrity: sha512-Dn3hYh5rchfivnPrHoff2pWutuFYJRddzEXcjfb0JhgF7JmTA/6Dxaym0pqVpS1RmYDiAYnmoX5OeFtEkdVytA==} engines: {node: '>=14.0.0'} cpu: [riscv64] os: [android] - sass-embedded-android-x64@1.79.5: - resolution: {integrity: sha512-UbXxk/rdR3aVBkB7Fh/eAUL7oUADWgQrYpLe9Xu5A0gmthw0/zo/pu7kweBSrbgHnPfWIt/uxwmW4eEAmqqZWQ==} + sass-embedded-android-x64@1.80.3: + resolution: {integrity: sha512-QWOTHKPznYJnrP3HrlFYnAQOZ/c2am4ctK1cFIMtjQNGaFra8z94LZSQzAd6eeu6mITKwQbJuff36RpICZpgHA==} engines: {node: '>=14.0.0'} cpu: [x64] os: [android] - sass-embedded-darwin-arm64@1.79.5: - resolution: {integrity: sha512-qeEl9XhYetZSY1j4nqvh3hB8tfYOAGsOQyVOCaxyX1bubMRSGPvPNIyftm14QzK7EDrE/K/0+FwCvflarOV4NQ==} + sass-embedded-darwin-arm64@1.80.3: + resolution: {integrity: sha512-NqJXHzZGqVOarr36X5MIv0UCQHYVhOFXGe7kDhNqMQCiNApkVydseB5TM1C2lVaiWy2JaseRD/dUNS/o2ICKXw==} engines: {node: '>=14.0.0'} cpu: [arm64] os: [darwin] - sass-embedded-darwin-x64@1.79.5: - resolution: {integrity: sha512-y4pvkYCQhgruxlncub/2j+cZSmlpsZX9Rp1aTRIKvlNagqFStYzFZ6kX3CErlfCEAMYwRVEhP8z/OOoDqnjaZA==} + sass-embedded-darwin-x64@1.80.3: + resolution: {integrity: sha512-6dmNn+oNxXE5uGThfAsHgz7Jg1oDhXHHQyPAnIIaMOM5dXv0D/nLmrlFbFajK0HtbzGaTVBTE6wkJwjASuP0Uw==} engines: {node: '>=14.0.0'} cpu: [x64] os: [darwin] - sass-embedded-linux-arm64@1.79.5: - resolution: {integrity: sha512-kiUbrLiNAA7vOe6kpdukRhCad1u7ebwhB0ZE63+IgF5HFZ/Qo6GkhHIrVM9AfeLxUT3N6Z4BNtgdcRa9na4Pwg==} + sass-embedded-linux-arm64@1.80.3: + resolution: {integrity: sha512-a9IILen4I6oFFb5qMHOiFqIAoztPuvJ6VHNaFbktP8SUvH4FX63ZutR/qKisN9DoudzSXMZijv/aG/bTh0Kccw==} engines: {node: '>=14.0.0'} cpu: [arm64] os: [linux] - sass-embedded-linux-arm@1.79.5: - resolution: {integrity: sha512-rX6qAR8pE1pevYhGzbCpGFexdH4z6QMnw3IeiCNmkpJ4zMXNEN336xl6SZN0xaPiGuNDhUFcq0wgSq3RDKS5vQ==} + sass-embedded-linux-arm@1.80.3: + resolution: {integrity: sha512-nZ7Y8gZgr+/fYrbsX3L8BfIafWXGVBcc0gKLoujad+axlFGv1MetO17S3vzrOQ1wuhjvDLVxceA/jtcta1qxoA==} engines: {node: '>=14.0.0'} cpu: [arm] os: [linux] - sass-embedded-linux-ia32@1.79.5: - resolution: {integrity: sha512-12pj3fBV0+VAX/RI6uYFxi/MoUoihRKP7iVpo9MaT/m+EtvN6mYsDpi/T4pTq2dKQYljoaFq8Rb6tR+FinS1zg==} + sass-embedded-linux-ia32@1.80.3: + resolution: {integrity: sha512-yKy4N0L9WfGokpBMHOhxzaS3jyzrHUg1+5Idi6J88onwxfpEhqOgdMcoqgOqvryMPrmKN7kW5d3iNpUYOniPnw==} engines: {node: '>=14.0.0'} cpu: [ia32] os: [linux] - sass-embedded-linux-musl-arm64@1.79.5: - resolution: {integrity: sha512-Qg1HuQ+ebz3wfPT7xty2G8BpDLXdyfMk7WqKd+X1DlFEcY/kcNapwMVFXS2fCYTTR3gcbIZ4p7eUiQySlkj93A==} + sass-embedded-linux-musl-arm64@1.80.3: + resolution: {integrity: sha512-mw4BPe42wlAwg6vgmGkg+MDDyXZBexvAWC+QigtfMjTVHuSAB527UVWhIyv4jAkKLp71mPowsXXsfa4UHzyBaA==} engines: {node: '>=14.0.0'} cpu: [arm64] os: [linux] - sass-embedded-linux-musl-arm@1.79.5: - resolution: {integrity: sha512-EHFrbTgRymEFTf3JnjHzC24PO0WHFjLUEWUJqSuWKZw0+BCL7120MvYIrfkYymPp5UYk+STIjj+Fd9dYSWBrAg==} + sass-embedded-linux-musl-arm@1.80.3: + resolution: {integrity: sha512-yB7iSoS/phNHKFsZRW0rTRwoCTtOBELG/UYpIa2qATWZsDASSjdBitGsKS3nEliweveuGIVlUqG2kUKaq9M39g==} engines: {node: '>=14.0.0'} cpu: [arm] os: [linux] - sass-embedded-linux-musl-ia32@1.79.5: - resolution: {integrity: sha512-2qdsGIcdCnpsw8Ijuq8uk4RifxV/lTd1mqjrfge7AfFBtQIExbxZoYBtbSrcY63ONa+UWEf9Z1p6rZ3QySKWlg==} + sass-embedded-linux-musl-ia32@1.80.3: + resolution: {integrity: sha512-eyg5L9IFisCYYMXEZ/56X8k8wdhpfK06/j9MFAINE9U4C5NxQXrVWmMTEqgyfpmca8hziBlvbRrjdquteyXWfw==} engines: {node: '>=14.0.0'} cpu: [ia32] os: [linux] - sass-embedded-linux-musl-riscv64@1.79.5: - resolution: {integrity: sha512-wrc6s8YQt95koSkaLoP5HtvAAKxTPWqYZVxnoqp2bHgkKWlr4ymJll9vMcdU3//VxTgJbuH83U5ajzNCtHd0NQ==} + sass-embedded-linux-musl-riscv64@1.80.3: + resolution: {integrity: sha512-0VThiW7Gwo5UNgKyETYID6F2prHvOCH8fQQKM0sS/JSbTu1poTwD35yEptVxBpiTvyWwxI7K5Cbn0gtxobaqzA==} engines: {node: '>=14.0.0'} cpu: [riscv64] os: [linux] - sass-embedded-linux-musl-x64@1.79.5: - resolution: {integrity: sha512-1J6JrGpVp07GsBEzEGj/9u6UkVUuga2U7kpfkQxIdYOLmXmXmni6zNx89VehaP7X5OSscwJc/Zufh++6VcRQHw==} + sass-embedded-linux-musl-x64@1.80.3: + resolution: {integrity: sha512-ALSKlhTQdNS0cayyaXD8huNd+DRjWgCjDqyjvwSgemfLL+wtmVCO8h9rGu1MCwR8GHP6ceZCT2fBmjfcGHk0DQ==} engines: {node: '>=14.0.0'} cpu: [x64] os: [linux] - sass-embedded-linux-riscv64@1.79.5: - resolution: {integrity: sha512-G45UKRAUgvxXhLROowTgVmyIVyGtRZoCMVH1vPi0EG5SePy43AkhjQVaUb6Ol6lfRRNpQqBFKw3UabxaMCM0Ow==} + sass-embedded-linux-riscv64@1.80.3: + resolution: {integrity: sha512-/1JvuQi137BNO7iTvNNraGYEt9mh3ch44cabJBTxLn3IZV5vNblENI+Hrj9J8/VWIsJumwPQGZSUrMbZcgB0tg==} engines: {node: '>=14.0.0'} cpu: [riscv64] os: [linux] - sass-embedded-linux-x64@1.79.5: - resolution: {integrity: sha512-EOk6pULzxM9b5B8uuuZbQXqfg2BQheAovQeYAw4ueHikaFoESOfaA8OG4kl0v1m5v5tKqAHOjy7xFhtpbEpqEw==} + sass-embedded-linux-x64@1.80.3: + resolution: {integrity: sha512-ISQUnl9oFA0PFPtgOpgotfKQ8guUBIYcTpkHEF9lQ4PyFIxkXppk5CwQ8l0VQcQaKhOD2HQAucoqM51U7FABqA==} engines: {node: '>=14.0.0'} cpu: [x64] os: [linux] - sass-embedded-win32-arm64@1.79.5: - resolution: {integrity: sha512-KdkJOmJSe5lhR4Kxn522GbZo4jRUnQ+V4JQSaIbyxKndBpD81NGPYhDs0ikpJciqrwbmiBxVD5Qqeim6B1gdxA==} + sass-embedded-win32-arm64@1.80.3: + resolution: {integrity: sha512-RFT/OsWHVagPYa/9v+KfVM99QgzwzwnT2maapRfulEH39v0uPGOIFNXmnhaN3E5gNLIjIn3CTnR9KjTC145E8Q==} engines: {node: '>=14.0.0'} cpu: [arm64] os: [win32] - sass-embedded-win32-ia32@1.79.5: - resolution: {integrity: sha512-1YX4TVw6j3eqxRyPK3t45V5WSyAzql6EgKIEtjPQ0+ByRyqLRuHXlotHPX6KOcc0rA3LMUHmdskN1o08sRIDhA==} + sass-embedded-win32-ia32@1.80.3: + resolution: {integrity: sha512-Is0eeX+UlWW7yPfDqc2Z2n9ql2rkA1uDaAkbHWWx5APc8CKYtds1w4B3Tyoy6lHnopEifgzgsnp6QSyOHHzPBg==} engines: {node: '>=14.0.0'} cpu: [ia32] os: [win32] - sass-embedded-win32-x64@1.79.5: - resolution: {integrity: sha512-8Tj9hBpOd6e+j23uTDecFb1ezQhvjQ+jvgKdVg9VlvwKUWmEStnHKA0x1uIQTThIM3dLCsYe63b/wX43gP8tBA==} + sass-embedded-win32-x64@1.80.3: + resolution: {integrity: sha512-wehVA0atPloc6NKof/ctpW0agM+k7kiBLIpQs3/mi9FAlmTjxNnvntBPZIbl8n7AAExiLEir+x/LHC0yGhTfkg==} engines: {node: '>=14.0.0'} cpu: [x64] os: [win32] - sass-embedded@1.79.5: - resolution: {integrity: sha512-QFdalnjGFkbNvb6/uQGmP4OIN+GQ5/R77eu0PsXduDB1YP5JW5DSWFVDAyK6l6C54P+3J3eXkjuPYC0mcwX+AA==} + sass-embedded@1.80.3: + resolution: {integrity: sha512-aTxTl4ToSAWg7ILFgAe+kMenj+zNlwHmHK/ZNPrOM8+HTef1Q6zuxolptYLijmHdZHKSMOkWYHgo5MMN6+GIyg==} engines: {node: '>=16.0.0'} hasBin: true - sass@1.79.5: - resolution: {integrity: sha512-W1h5kp6bdhqFh2tk3DsI771MoEJjvrSY/2ihJRJS4pjIyfJCw0nTsxqhnrUzaLMOJjFchj8rOvraI/YUVjtx5g==} + sass@1.80.3: + resolution: {integrity: sha512-ptDWyVmDMVielpz/oWy3YP3nfs7LpJTHIJZboMVs8GEC9eUmtZTZhMHlTW98wY4aEorDfjN38+Wr/XjskFWcfA==} engines: {node: '>=14.0.0'} hasBin: true - sax@1.3.0: - resolution: {integrity: sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==} + sax@1.4.1: + resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==} scheduler@0.23.2: resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} @@ -6718,8 +6606,9 @@ packages: strip-literal@2.1.0: resolution: {integrity: sha512-Op+UycaUt/8FbN/Z2TWPBLge3jWrP3xj10f3fnYxf052bKuS3EKs1ZQcVGjnEMdsNVAM+plXRdmjrZ/KgG3Skw==} - stylus@0.63.0: - resolution: {integrity: sha512-OMlgrTCPzE/ibtRMoeLVhOY0RcNuNWh0rhAVqeKnk/QwcuUKQbnqhZ1kg2vzD8VU/6h3FoPTq4RJPHgLBvX6Bw==} + stylus@0.64.0: + resolution: {integrity: sha512-ZIdT8eUv8tegmqy1tTIdJv9We2DumkNZFdCF5mz/Kpq3OcTaxSuCAYZge6HKK2CmNC02G1eJig2RV7XTw5hQrA==} + engines: {node: '>=16'} hasBin: true sucrase@3.32.0: @@ -6759,8 +6648,8 @@ packages: tabbable@6.2.0: resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==} - tailwindcss@3.4.13: - resolution: {integrity: sha512-KqjHOJKogOUt5Bs752ykCeiwvi0fKVkr5oqsFNt/8px/tA8scFPIlkygsf6jXrfCqGHz7VflA6+yytWuM+XhFw==} + tailwindcss@3.4.14: + resolution: {integrity: sha512-IcSvOcTRcUtQQ7ILQL5quRDg7Xs93PdJEk1ZLbhhvJc7uj/OAhYOnruEiwnGgBvUtaUAJ8/mhSw1o8L2jCiENA==} engines: {node: '>=14.0.0'} hasBin: true @@ -6780,8 +6669,8 @@ packages: resolution: {integrity: sha512-bX655WZI/F7EoTDw9JvQURqAXiPHi8o8+yFxPF2lWYyz1aHnmMRuXWqL6YB6GmeO0o4DIYWHLgGNi/X64T+X4Q==} engines: {node: '>=14.18'} - terser@5.34.1: - resolution: {integrity: sha512-FsJZ7iZLd/BXkz+4xrRTGJ26o/6VTjQytUk8b8OxkwcD2I+79VPJlz7qss1+zE7h8GNIScFqXcDyJ/KqBYZFVA==} + terser@5.36.0: + resolution: {integrity: sha512-IYV9eNMuFAV4THUspIRXkLakHnV6XO7FEdtKjf/mDyrnqUg9LnlOn6/RwRvM9SZjR4GUq8Nk8zj67FzVARr74w==} engines: {node: '>=10'} hasBin: true @@ -6882,8 +6771,8 @@ packages: typescript: optional: true - tslib@2.7.0: - resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==} + tslib@2.8.0: + resolution: {integrity: sha512-jWVzBLplnCmoaTr13V9dYbiQ99wvZRd0vNWaDRg+aVYRcjDF3nDksxFDE/+fkXnKhpnUUkmx5pK/v8mCtLVqZA==} tsx@4.19.1: resolution: {integrity: sha512-0flMz1lh74BR4wOvBjuh9olbnwqCPc35OOlfyzHba0Dc+QNUeWX/Gq2YTbnwcWPO3BMd8fkzRVrHcsR+a7z7rA==} @@ -6952,9 +6841,6 @@ packages: typescript: optional: true - undici-types@5.26.5: - resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} - undici-types@6.19.6: resolution: {integrity: sha512-e/vggGopEfTKSvj4ihnOLTsqhrKRN3LeO6qSN/GxohhuRv8qH9bNQ4B8W7e/vFL+0XTnmHPB4/kegunZGA4Org==} @@ -7172,8 +7058,8 @@ packages: wordwrap@1.0.0: resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} - workerd@1.20241004.0: - resolution: {integrity: sha512-TCFJ7Zw7svR3adg1fnlPWj/yXhjBnQloLEIJqdu57hli/GsgwlbomwrbM3mdMgbS+K9zYeaYqknXiBN0EXk3QQ==} + workerd@1.20241011.1: + resolution: {integrity: sha512-ORobT1XDkE+p+36yk6Szyw68bWuGSmuwIlDnAeUOfnYunb/Txt0jg7ydzfwr4UIsof7AH5F1nqZms5PWLu05yw==} engines: {node: '>=16'} hasBin: true @@ -7350,18 +7236,10 @@ snapshots: '@antfu/utils@0.7.10': {} - '@babel/code-frame@7.24.7': - dependencies: - '@babel/highlight': 7.24.7 - picocolors: 1.1.0 - optional: true - '@babel/code-frame@7.25.7': dependencies: '@babel/highlight': 7.25.7 - picocolors: 1.1.0 - - '@babel/compat-data@7.25.7': {} + picocolors: 1.1.1 '@babel/compat-data@7.25.8': {} @@ -7394,18 +7272,18 @@ snapshots: '@babel/helper-annotate-as-pure@7.25.7': dependencies: - '@babel/types': 7.25.7 + '@babel/types': 7.25.8 '@babel/helper-builder-binary-assignment-operator-visitor@7.25.7': dependencies: '@babel/traverse': 7.25.7 - '@babel/types': 7.25.7 + '@babel/types': 7.25.8 transitivePeerDependencies: - supports-color '@babel/helper-compilation-targets@7.25.7': dependencies: - '@babel/compat-data': 7.25.7 + '@babel/compat-data': 7.25.8 '@babel/helper-validator-option': 7.25.7 browserslist: 4.24.0 lru-cache: 5.1.1 @@ -7445,7 +7323,7 @@ snapshots: '@babel/helper-member-expression-to-functions@7.25.7': dependencies: '@babel/traverse': 7.25.7 - '@babel/types': 7.25.7 + '@babel/types': 7.25.8 transitivePeerDependencies: - supports-color @@ -7468,7 +7346,7 @@ snapshots: '@babel/helper-optimise-call-expression@7.25.7': dependencies: - '@babel/types': 7.25.7 + '@babel/types': 7.25.8 '@babel/helper-plugin-utils@7.25.7': {} @@ -7500,16 +7378,12 @@ snapshots: '@babel/helper-skip-transparent-expression-wrappers@7.25.7': dependencies: '@babel/traverse': 7.25.7 - '@babel/types': 7.25.7 + '@babel/types': 7.25.8 transitivePeerDependencies: - supports-color - '@babel/helper-string-parser@7.24.8': {} - '@babel/helper-string-parser@7.25.7': {} - '@babel/helper-validator-identifier@7.24.7': {} - '@babel/helper-validator-identifier@7.25.7': {} '@babel/helper-validator-option@7.25.7': {} @@ -7518,7 +7392,7 @@ snapshots: dependencies: '@babel/template': 7.25.7 '@babel/traverse': 7.25.7 - '@babel/types': 7.25.7 + '@babel/types': 7.25.8 transitivePeerDependencies: - supports-color @@ -7527,20 +7401,12 @@ snapshots: '@babel/template': 7.25.7 '@babel/types': 7.25.8 - '@babel/highlight@7.24.7': - dependencies: - '@babel/helper-validator-identifier': 7.25.7 - chalk: 2.4.2 - js-tokens: 4.0.0 - picocolors: 1.1.0 - optional: true - '@babel/highlight@7.25.7': dependencies: '@babel/helper-validator-identifier': 7.25.7 chalk: 2.4.2 js-tokens: 4.0.0 - picocolors: 1.1.0 + picocolors: 1.1.1 '@babel/parser@7.25.8': dependencies: @@ -7996,7 +7862,7 @@ snapshots: dependencies: '@babel/core': 7.25.8 '@babel/helper-plugin-utils': 7.25.7 - '@babel/types': 7.25.7 + '@babel/types': 7.25.8 esutils: 2.0.3 '@babel/runtime@7.25.7': @@ -8023,18 +7889,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/types@7.25.2': - dependencies: - '@babel/helper-string-parser': 7.24.8 - '@babel/helper-validator-identifier': 7.24.7 - to-fast-properties: 2.0.0 - - '@babel/types@7.25.7': - dependencies: - '@babel/helper-string-parser': 7.25.7 - '@babel/helper-validator-identifier': 7.25.7 - to-fast-properties: 2.0.0 - '@babel/types@7.25.8': dependencies: '@babel/helper-string-parser': 7.25.7 @@ -8043,19 +7897,19 @@ snapshots: '@bufbuild/protobuf@2.1.0': {} - '@cloudflare/workerd-darwin-64@1.20241004.0': + '@cloudflare/workerd-darwin-64@1.20241011.1': optional: true - '@cloudflare/workerd-darwin-arm64@1.20241004.0': + '@cloudflare/workerd-darwin-arm64@1.20241011.1': optional: true - '@cloudflare/workerd-linux-64@1.20241004.0': + '@cloudflare/workerd-linux-64@1.20241011.1': optional: true - '@cloudflare/workerd-linux-arm64@1.20241004.0': + '@cloudflare/workerd-linux-arm64@1.20241011.1': optional: true - '@cloudflare/workerd-windows-64@1.20241004.0': + '@cloudflare/workerd-windows-64@1.20241011.1': optional: true '@conventional-changelog/git-client@1.0.1(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.0.0)': @@ -8375,9 +8229,9 @@ snapshots: '@esbuild/win32-x64@0.24.0': optional: true - '@eslint-community/eslint-utils@4.4.0(eslint@9.12.0(jiti@1.21.0))': + '@eslint-community/eslint-utils@4.4.0(eslint@9.13.0(jiti@1.21.0))': dependencies: - eslint: 9.12.0(jiti@1.21.0) + eslint: 9.13.0(jiti@1.21.0) eslint-visitor-keys: 3.4.3 '@eslint-community/regexpp@4.11.0': {} @@ -8390,7 +8244,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@eslint/core@0.6.0': {} + '@eslint/core@0.7.0': {} '@eslint/eslintrc@3.1.0': dependencies: @@ -8406,7 +8260,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@eslint/js@9.12.0': {} + '@eslint/js@9.13.0': {} '@eslint/object-schema@2.1.4': {} @@ -8587,9 +8441,7 @@ snapshots: '@polka/url@1.0.0-next.24': {} - '@rollup/plugin-alias@5.1.0(rollup@3.29.4)': - dependencies: - slash: 4.0.0 + '@rollup/plugin-alias@5.1.1(rollup@3.29.4)': optionalDependencies: rollup: 3.29.4 @@ -8608,25 +8460,25 @@ snapshots: optionalDependencies: rollup: 3.29.4 - '@rollup/plugin-commonjs@28.0.0(rollup@4.22.5)': + '@rollup/plugin-commonjs@28.0.1(rollup@4.22.5)': dependencies: '@rollup/pluginutils': 5.1.2(rollup@4.22.5) commondir: 1.0.1 estree-walker: 2.0.2 - fdir: 6.3.0(picomatch@2.3.1) + fdir: 6.4.0(picomatch@4.0.2) is-reference: 1.2.1 magic-string: 0.30.12 - picomatch: 2.3.1 + picomatch: 4.0.2 optionalDependencies: rollup: 4.22.5 - '@rollup/plugin-dynamic-import-vars@2.1.3(rollup@4.22.5)': + '@rollup/plugin-dynamic-import-vars@2.1.4(rollup@4.22.5)': dependencies: '@rollup/pluginutils': 5.1.2(rollup@4.22.5) astring: 1.8.6 estree-walker: 2.0.2 - fast-glob: 3.3.2 magic-string: 0.30.12 + tinyglobby: 0.2.9 optionalDependencies: rollup: 4.22.5 @@ -8642,12 +8494,11 @@ snapshots: optionalDependencies: rollup: 4.22.5 - '@rollup/plugin-node-resolve@15.2.3(rollup@3.29.4)': + '@rollup/plugin-node-resolve@15.3.0(rollup@3.29.4)': dependencies: '@rollup/pluginutils': 5.1.2(rollup@3.29.4) '@types/resolve': 1.20.2 deepmerge: 4.2.2 - is-builtin-module: 3.2.1 is-module: 1.0.0 resolve: 1.22.8 optionalDependencies: @@ -8670,14 +8521,6 @@ snapshots: optionalDependencies: rollup: 3.29.4 - '@rollup/pluginutils@5.1.0(rollup@3.29.4)': - dependencies: - '@types/estree': 1.0.6 - estree-walker: 2.0.2 - picomatch: 2.3.1 - optionalDependencies: - rollup: 3.29.4 - '@rollup/pluginutils@5.1.2(rollup@3.29.4)': dependencies: '@types/estree': 1.0.6 @@ -8815,42 +8658,42 @@ snapshots: '@types/babel__core@7.20.5': dependencies: '@babel/parser': 7.25.8 - '@babel/types': 7.25.2 + '@babel/types': 7.25.8 '@types/babel__generator': 7.6.8 '@types/babel__template': 7.4.4 '@types/babel__traverse': 7.20.6 '@types/babel__generator@7.6.8': dependencies: - '@babel/types': 7.25.7 + '@babel/types': 7.25.8 '@types/babel__preset-env@7.9.7': {} '@types/babel__template@7.4.4': dependencies: '@babel/parser': 7.25.8 - '@babel/types': 7.25.7 + '@babel/types': 7.25.8 '@types/babel__traverse@7.20.6': dependencies: - '@babel/types': 7.25.7 + '@babel/types': 7.25.8 '@types/body-parser@1.19.5': dependencies: '@types/connect': 3.4.38 - '@types/node': 20.16.11 + '@types/node': 20.16.13 '@types/braces@3.0.4': {} '@types/connect@3.4.38': dependencies: - '@types/node': 20.16.11 + '@types/node': 20.16.13 '@types/convert-source-map@2.0.3': {} '@types/cross-spawn@6.0.6': dependencies: - '@types/node': 20.16.11 + '@types/node': 20.16.13 '@types/debug@4.1.12': dependencies: @@ -8862,11 +8705,11 @@ snapshots: '@types/etag@1.8.3': dependencies: - '@types/node': 20.16.11 + '@types/node': 20.16.13 '@types/express-serve-static-core@4.17.43': dependencies: - '@types/node': 20.16.11 + '@types/node': 20.16.13 '@types/qs': 6.9.12 '@types/range-parser': 1.2.7 '@types/send': 0.17.4 @@ -8890,7 +8733,7 @@ snapshots: '@types/linkify-it@5.0.0': {} - '@types/lodash@4.17.10': {} + '@types/lodash@4.17.12': {} '@types/markdown-it@14.1.2': dependencies: @@ -8915,11 +8758,7 @@ snapshots: '@types/ms@0.7.34': {} - '@types/node@20.14.14': - dependencies: - undici-types: 5.26.5 - - '@types/node@20.16.11': + '@types/node@20.16.13': dependencies: undici-types: 6.19.6 @@ -8931,7 +8770,7 @@ snapshots: '@types/prompts@2.4.9': dependencies: - '@types/node': 20.14.14 + '@types/node': 20.16.13 kleur: 3.0.3 '@types/prop-types@15.7.12': {} @@ -8956,17 +8795,17 @@ snapshots: '@types/send@0.17.4': dependencies: '@types/mime': 1.3.5 - '@types/node': 20.16.11 + '@types/node': 20.16.13 '@types/serve-static@1.15.5': dependencies: '@types/http-errors': 2.0.4 '@types/mime': 3.0.4 - '@types/node': 20.16.11 + '@types/node': 20.16.13 '@types/stylus@0.48.43': dependencies: - '@types/node': 20.16.11 + '@types/node': 20.16.13 '@types/unist@3.0.2': {} @@ -8974,17 +8813,17 @@ snapshots: '@types/ws@8.5.12': dependencies: - '@types/node': 20.16.11 + '@types/node': 20.16.13 - '@typescript-eslint/eslint-plugin@8.10.0(@typescript-eslint/parser@8.10.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.2))(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.2)': + '@typescript-eslint/eslint-plugin@8.10.0(@typescript-eslint/parser@8.10.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.2))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.2)': dependencies: '@eslint-community/regexpp': 4.11.0 - '@typescript-eslint/parser': 8.10.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.2) + '@typescript-eslint/parser': 8.10.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.2) '@typescript-eslint/scope-manager': 8.10.0 - '@typescript-eslint/type-utils': 8.10.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.2) - '@typescript-eslint/utils': 8.10.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.2) + '@typescript-eslint/type-utils': 8.10.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.2) + '@typescript-eslint/utils': 8.10.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.2) '@typescript-eslint/visitor-keys': 8.10.0 - eslint: 9.12.0(jiti@1.21.0) + eslint: 9.13.0(jiti@1.21.0) graphemer: 1.4.0 ignore: 5.3.1 natural-compare: 1.4.0 @@ -8994,14 +8833,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.10.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.2)': + '@typescript-eslint/parser@8.10.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.2)': dependencies: '@typescript-eslint/scope-manager': 8.10.0 '@typescript-eslint/types': 8.10.0 '@typescript-eslint/typescript-estree': 8.10.0(typescript@5.6.2) '@typescript-eslint/visitor-keys': 8.10.0 debug: 4.3.7 - eslint: 9.12.0(jiti@1.21.0) + eslint: 9.13.0(jiti@1.21.0) optionalDependencies: typescript: 5.6.2 transitivePeerDependencies: @@ -9012,15 +8851,10 @@ snapshots: '@typescript-eslint/types': 8.10.0 '@typescript-eslint/visitor-keys': 8.10.0 - '@typescript-eslint/scope-manager@8.7.0': - dependencies: - '@typescript-eslint/types': 8.7.0 - '@typescript-eslint/visitor-keys': 8.7.0 - - '@typescript-eslint/type-utils@8.10.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.2)': + '@typescript-eslint/type-utils@8.10.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.2)': dependencies: '@typescript-eslint/typescript-estree': 8.10.0(typescript@5.6.2) - '@typescript-eslint/utils': 8.10.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.2) + '@typescript-eslint/utils': 8.10.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.2) debug: 4.3.7 ts-api-utils: 1.3.0(typescript@5.6.2) optionalDependencies: @@ -9031,8 +8865,6 @@ snapshots: '@typescript-eslint/types@8.10.0': {} - '@typescript-eslint/types@8.7.0': {} - '@typescript-eslint/typescript-estree@8.10.0(typescript@5.6.2)': dependencies: '@typescript-eslint/types': 8.10.0 @@ -9048,39 +8880,13 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@8.7.0(typescript@5.6.2)': + '@typescript-eslint/utils@8.10.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.2)': dependencies: - '@typescript-eslint/types': 8.7.0 - '@typescript-eslint/visitor-keys': 8.7.0 - debug: 4.3.7 - fast-glob: 3.3.2 - is-glob: 4.0.3 - minimatch: 9.0.5 - semver: 7.6.3 - ts-api-utils: 1.3.0(typescript@5.6.2) - optionalDependencies: - typescript: 5.6.2 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/utils@8.10.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.2)': - dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0)) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0(jiti@1.21.0)) '@typescript-eslint/scope-manager': 8.10.0 '@typescript-eslint/types': 8.10.0 '@typescript-eslint/typescript-estree': 8.10.0(typescript@5.6.2) - eslint: 9.12.0(jiti@1.21.0) - transitivePeerDependencies: - - supports-color - - typescript - - '@typescript-eslint/utils@8.7.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.2)': - dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0)) - '@typescript-eslint/scope-manager': 8.7.0 - '@typescript-eslint/types': 8.7.0 - '@typescript-eslint/typescript-estree': 8.7.0(typescript@5.6.2) - eslint: 9.12.0(jiti@1.21.0) + eslint: 9.13.0(jiti@1.21.0) transitivePeerDependencies: - supports-color - typescript @@ -9090,11 +8896,6 @@ snapshots: '@typescript-eslint/types': 8.10.0 eslint-visitor-keys: 3.4.3 - '@typescript-eslint/visitor-keys@8.7.0': - dependencies: - '@typescript-eslint/types': 8.7.0 - eslint-visitor-keys: 3.4.3 - '@typescript/vfs@1.6.0(typescript@5.6.2)': dependencies: debug: 4.3.7 @@ -9115,7 +8916,7 @@ snapshots: dependencies: execa: 8.0.1 mri: 1.2.0 - picocolors: 1.1.0 + picocolors: 1.1.1 prompts: 2.4.2 publint: 0.2.9 semver: 7.6.3 @@ -9359,7 +9160,7 @@ snapshots: '@vue/compiler-core@3.2.0': dependencies: '@babel/parser': 7.25.8 - '@babel/types': 7.25.7 + '@babel/types': 7.25.8 '@vue/shared': 3.2.0 estree-walker: 2.0.2 source-map: 0.6.1 @@ -9404,8 +9205,6 @@ snapshots: de-indent: 1.0.2 he: 1.2.0 - '@vue/devtools-api@6.6.3': {} - '@vue/devtools-api@6.6.4': {} '@vue/devtools-api@7.4.6': @@ -9518,15 +9317,15 @@ snapshots: mime-types: 2.1.35 negotiator: 0.6.3 - acorn-jsx@5.3.2(acorn@8.12.1(patch_hash=i6svphyqbutfresqjorapmeqfu)): + acorn-jsx@5.3.2(acorn@8.13.0(patch_hash=alg6ojsgkjjglvaj7cjzzaqhim)): dependencies: - acorn: 8.12.1(patch_hash=i6svphyqbutfresqjorapmeqfu) + acorn: 8.13.0(patch_hash=alg6ojsgkjjglvaj7cjzzaqhim) acorn-walk@8.3.2: {} acorn@7.4.1: {} - acorn@8.12.1(patch_hash=i6svphyqbutfresqjorapmeqfu): {} + acorn@8.13.0(patch_hash=alg6ojsgkjjglvaj7cjzzaqhim): {} add-stream@1.0.0: {} @@ -9623,10 +9422,10 @@ snapshots: autoprefixer@10.4.20(postcss@8.4.47): dependencies: browserslist: 4.24.0 - caniuse-lite: 1.0.30001649 + caniuse-lite: 1.0.30001664 fraction.js: 4.3.7 normalize-range: 0.1.2 - picocolors: 1.1.0 + picocolors: 1.1.1 postcss: 8.4.47 postcss-value-parser: 4.2.0 @@ -9664,7 +9463,7 @@ snapshots: babel-walk@3.0.0-canary-5: dependencies: - '@babel/types': 7.25.7 + '@babel/types': 7.25.8 balanced-match@1.0.2: {} @@ -9728,8 +9527,6 @@ snapshots: buffer-from@1.1.2: {} - builtin-modules@3.3.0: {} - bundle-name@4.1.0: dependencies: run-applescript: 7.0.0 @@ -9750,14 +9547,12 @@ snapshots: camelcase-css@2.0.1: {} - caniuse-lite@1.0.30001649: {} - caniuse-lite@1.0.30001664: {} capnp-ts@0.7.0: dependencies: debug: 4.3.7 - tslib: 2.7.0 + tslib: 2.8.0 transitivePeerDependencies: - supports-color @@ -9896,7 +9691,7 @@ snapshots: constantinople@4.0.1: dependencies: '@babel/parser': 7.25.8 - '@babel/types': 7.25.7 + '@babel/types': 7.25.8 content-disposition@0.5.4: dependencies: @@ -10294,9 +10089,9 @@ snapshots: escape-string-regexp@5.0.0: {} - eslint-compat-utils@0.5.1(eslint@9.12.0(jiti@1.21.0)): + eslint-compat-utils@0.5.1(eslint@9.13.0(jiti@1.21.0)): dependencies: - eslint: 9.12.0(jiti@1.21.0) + eslint: 9.13.0(jiti@1.21.0) semver: 7.6.3 eslint-import-resolver-node@0.3.9: @@ -10307,48 +10102,48 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-es-x@7.8.0(eslint@9.12.0(jiti@1.21.0)): + eslint-plugin-es-x@7.8.0(eslint@9.13.0(jiti@1.21.0)): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0)) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0(jiti@1.21.0)) '@eslint-community/regexpp': 4.11.0 - eslint: 9.12.0(jiti@1.21.0) - eslint-compat-utils: 0.5.1(eslint@9.12.0(jiti@1.21.0)) + eslint: 9.13.0(jiti@1.21.0) + eslint-compat-utils: 0.5.1(eslint@9.13.0(jiti@1.21.0)) - eslint-plugin-import-x@4.3.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.2): + eslint-plugin-import-x@4.3.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.2): dependencies: - '@typescript-eslint/utils': 8.7.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.2) + '@typescript-eslint/utils': 8.10.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.2) debug: 4.3.7 doctrine: 3.0.0 - eslint: 9.12.0(jiti@1.21.0) + eslint: 9.13.0(jiti@1.21.0) eslint-import-resolver-node: 0.3.9 get-tsconfig: 4.7.5 is-glob: 4.0.3 minimatch: 9.0.5 semver: 7.6.3 stable-hash: 0.0.4 - tslib: 2.7.0 + tslib: 2.8.0 transitivePeerDependencies: - supports-color - typescript - eslint-plugin-n@17.11.1(eslint@9.12.0(jiti@1.21.0)): + eslint-plugin-n@17.11.1(eslint@9.13.0(jiti@1.21.0)): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0)) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0(jiti@1.21.0)) enhanced-resolve: 5.17.0 - eslint: 9.12.0(jiti@1.21.0) - eslint-plugin-es-x: 7.8.0(eslint@9.12.0(jiti@1.21.0)) + eslint: 9.13.0(jiti@1.21.0) + eslint-plugin-es-x: 7.8.0(eslint@9.13.0(jiti@1.21.0)) get-tsconfig: 4.7.5 globals: 15.11.0 ignore: 5.3.1 minimatch: 9.0.5 semver: 7.6.3 - eslint-plugin-regexp@2.6.0(eslint@9.12.0(jiti@1.21.0)): + eslint-plugin-regexp@2.6.0(eslint@9.13.0(jiti@1.21.0)): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0)) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0(jiti@1.21.0)) '@eslint-community/regexpp': 4.11.0 comment-parser: 1.4.1 - eslint: 9.12.0(jiti@1.21.0) + eslint: 9.13.0(jiti@1.21.0) jsdoc-type-pratt-parser: 4.0.0 refa: 0.12.1 regexp-ast-analysis: 0.7.1 @@ -10363,14 +10158,14 @@ snapshots: eslint-visitor-keys@4.1.0: {} - eslint@9.12.0(jiti@1.21.0): + eslint@9.13.0(jiti@1.21.0): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0)) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0(jiti@1.21.0)) '@eslint-community/regexpp': 4.11.0 '@eslint/config-array': 0.18.0 - '@eslint/core': 0.6.0 + '@eslint/core': 0.7.0 '@eslint/eslintrc': 3.1.0 - '@eslint/js': 9.12.0 + '@eslint/js': 9.13.0 '@eslint/plugin-kit': 0.2.0 '@humanfs/node': 0.16.5 '@humanwhocodes/module-importer': 1.0.1 @@ -10414,8 +10209,8 @@ snapshots: espree@10.2.0: dependencies: - acorn: 8.12.1(patch_hash=i6svphyqbutfresqjorapmeqfu) - acorn-jsx: 5.3.2(acorn@8.12.1(patch_hash=i6svphyqbutfresqjorapmeqfu)) + acorn: 8.13.0(patch_hash=alg6ojsgkjjglvaj7cjzzaqhim) + acorn-jsx: 5.3.2(acorn@8.13.0(patch_hash=alg6ojsgkjjglvaj7cjzzaqhim)) eslint-visitor-keys: 4.1.0 esquery@1.6.0: @@ -10459,7 +10254,7 @@ snapshots: signal-exit: 4.1.0 strip-final-newline: 3.0.0 - execa@9.4.0: + execa@9.4.1: dependencies: '@sindresorhus/merge-streams': 4.0.0 cross-spawn: 7.0.3 @@ -10922,10 +10717,6 @@ snapshots: dependencies: binary-extensions: 2.2.0 - is-builtin-module@3.2.1: - dependencies: - builtin-modules: 3.3.0 - is-core-module@2.14.0: dependencies: hasown: 2.0.2 @@ -11054,14 +10845,14 @@ snapshots: launch-editor@2.9.1: dependencies: - picocolors: 1.1.0 + picocolors: 1.1.1 shell-quote: 1.8.1 less@4.2.0: dependencies: copy-anything: 2.0.6 parse-node-version: 1.0.1 - tslib: 2.7.0 + tslib: 2.8.0 optionalDependencies: errno: 0.1.8 graceful-fs: 4.2.11 @@ -11202,10 +10993,6 @@ snapshots: dependencies: '@jridgewell/sourcemap-codec': 1.5.0 - magic-string@0.30.11: - dependencies: - '@jridgewell/sourcemap-codec': 1.5.0 - magic-string@0.30.12: dependencies: '@jridgewell/sourcemap-codec': 1.5.0 @@ -11501,17 +11288,17 @@ snapshots: mimic-function@5.0.1: {} - miniflare@3.20241004.0: + miniflare@3.20241011.0: dependencies: '@cspotcode/source-map-support': 0.8.1 - acorn: 8.12.1(patch_hash=i6svphyqbutfresqjorapmeqfu) + acorn: 8.13.0(patch_hash=alg6ojsgkjjglvaj7cjzzaqhim) acorn-walk: 8.3.2 capnp-ts: 0.7.0 exit-hook: 2.2.1 glob-to-regexp: 0.4.1 stoppable: 1.1.0 undici: 5.28.4 - workerd: 1.20241004.0 + workerd: 1.20241011.1 ws: 8.18.0 youch: 3.2.3 zod: 3.22.4 @@ -11551,7 +11338,7 @@ snapshots: mkdirp@1.0.4: {} - mkdist@1.3.0(sass@1.79.5)(typescript@5.6.2): + mkdist@1.3.0(sass@1.80.3)(typescript@5.6.2): dependencies: citty: 0.1.4 defu: 6.1.2 @@ -11563,19 +11350,12 @@ snapshots: mri: 1.2.0 pathe: 1.1.2 optionalDependencies: - sass: 1.79.5 + sass: 1.80.3 typescript: 5.6.2 - mlly@1.7.1: - dependencies: - acorn: 8.12.1(patch_hash=i6svphyqbutfresqjorapmeqfu) - pathe: 1.1.2 - pkg-types: 1.1.1 - ufo: 1.5.4 - mlly@1.7.2: dependencies: - acorn: 8.12.1(patch_hash=i6svphyqbutfresqjorapmeqfu) + acorn: 8.13.0(patch_hash=alg6ojsgkjjglvaj7cjzzaqhim) pathe: 1.1.2 pkg-types: 1.2.0 ufo: 1.5.4 @@ -11609,7 +11389,7 @@ snapshots: needle@3.3.1: dependencies: iconv-lite: 0.6.3 - sax: 1.3.0 + sax: 1.4.1 optional: true negotiator@0.6.3: {} @@ -11798,7 +11578,7 @@ snapshots: phoenix@1.7.14: {} - picocolors@1.1.0: {} + picocolors@1.1.1: {} picomatch@2.3.1: {} @@ -11813,12 +11593,6 @@ snapshots: pirates@4.0.5: {} - pkg-types@1.1.1: - dependencies: - confbox: 0.1.7 - mlly: 1.7.2 - pathe: 1.1.2 - pkg-types@1.2.0: dependencies: confbox: 0.1.7 @@ -11850,13 +11624,13 @@ snapshots: camelcase-css: 2.0.1 postcss: 8.4.47 - postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@20.16.11)(typescript@5.6.2)): + postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@20.16.13)(typescript@5.6.2)): dependencies: lilconfig: 3.1.2 yaml: 2.5.0 optionalDependencies: postcss: 8.4.47 - ts-node: 10.9.2(@types/node@20.16.11)(typescript@5.6.2) + ts-node: 10.9.2(@types/node@20.16.13)(typescript@5.6.2) postcss-modules-extract-imports@3.0.0(postcss@8.4.47): dependencies: @@ -11906,7 +11680,7 @@ snapshots: postcss@8.4.47: dependencies: nanoid: 3.3.7 - picocolors: 1.1.0 + picocolors: 1.1.1 source-map-js: 1.2.1 preact@10.7.3: {} @@ -11947,7 +11721,7 @@ snapshots: publint@0.2.9: dependencies: npm-packlist: 5.1.3 - picocolors: 1.1.0 + picocolors: 1.1.1 sade: 1.8.1 pug-attrs@3.0.0: @@ -12021,10 +11795,6 @@ snapshots: punycode@2.3.1: {} - qs@6.12.3: - dependencies: - side-channel: 1.0.6 - qs@6.13.0: dependencies: side-channel: 1.0.6 @@ -12155,7 +11925,7 @@ snapshots: rollup: 3.29.4 typescript: 5.6.2 optionalDependencies: - '@babel/code-frame': 7.24.7 + '@babel/code-frame': 7.25.7 rollup-plugin-dts@6.1.1(rollup@4.22.5)(typescript@5.6.2): dependencies: @@ -12163,7 +11933,7 @@ snapshots: rollup: 4.22.5 typescript: 5.6.2 optionalDependencies: - '@babel/code-frame': 7.24.7 + '@babel/code-frame': 7.25.7 rollup-plugin-esbuild@6.1.1(esbuild@0.24.0)(rollup@4.22.5): dependencies: @@ -12224,7 +11994,7 @@ snapshots: rxjs@7.8.1: dependencies: - tslib: 2.7.0 + tslib: 2.8.0 sade@1.8.1: dependencies: @@ -12234,67 +12004,67 @@ snapshots: safer-buffer@2.1.2: {} - sass-embedded-android-arm64@1.79.5: + sass-embedded-android-arm64@1.80.3: optional: true - sass-embedded-android-arm@1.79.5: + sass-embedded-android-arm@1.80.3: optional: true - sass-embedded-android-ia32@1.79.5: + sass-embedded-android-ia32@1.80.3: optional: true - sass-embedded-android-riscv64@1.79.5: + sass-embedded-android-riscv64@1.80.3: optional: true - sass-embedded-android-x64@1.79.5: + sass-embedded-android-x64@1.80.3: optional: true - sass-embedded-darwin-arm64@1.79.5: + sass-embedded-darwin-arm64@1.80.3: optional: true - sass-embedded-darwin-x64@1.79.5: + sass-embedded-darwin-x64@1.80.3: optional: true - sass-embedded-linux-arm64@1.79.5: + sass-embedded-linux-arm64@1.80.3: optional: true - sass-embedded-linux-arm@1.79.5: + sass-embedded-linux-arm@1.80.3: optional: true - sass-embedded-linux-ia32@1.79.5: + sass-embedded-linux-ia32@1.80.3: optional: true - sass-embedded-linux-musl-arm64@1.79.5: + sass-embedded-linux-musl-arm64@1.80.3: optional: true - sass-embedded-linux-musl-arm@1.79.5: + sass-embedded-linux-musl-arm@1.80.3: optional: true - sass-embedded-linux-musl-ia32@1.79.5: + sass-embedded-linux-musl-ia32@1.80.3: optional: true - sass-embedded-linux-musl-riscv64@1.79.5: + sass-embedded-linux-musl-riscv64@1.80.3: optional: true - sass-embedded-linux-musl-x64@1.79.5: + sass-embedded-linux-musl-x64@1.80.3: optional: true - sass-embedded-linux-riscv64@1.79.5: + sass-embedded-linux-riscv64@1.80.3: optional: true - sass-embedded-linux-x64@1.79.5: + sass-embedded-linux-x64@1.80.3: optional: true - sass-embedded-win32-arm64@1.79.5: + sass-embedded-win32-arm64@1.80.3: optional: true - sass-embedded-win32-ia32@1.79.5: + sass-embedded-win32-ia32@1.80.3: optional: true - sass-embedded-win32-x64@1.79.5: + sass-embedded-win32-x64@1.80.3: optional: true - sass-embedded@1.79.5: + sass-embedded@1.80.3: dependencies: '@bufbuild/protobuf': 2.1.0 buffer-builder: 0.2.0 @@ -12304,35 +12074,35 @@ snapshots: supports-color: 8.1.1 varint: 6.0.0 optionalDependencies: - sass-embedded-android-arm: 1.79.5 - sass-embedded-android-arm64: 1.79.5 - sass-embedded-android-ia32: 1.79.5 - sass-embedded-android-riscv64: 1.79.5 - sass-embedded-android-x64: 1.79.5 - sass-embedded-darwin-arm64: 1.79.5 - sass-embedded-darwin-x64: 1.79.5 - sass-embedded-linux-arm: 1.79.5 - sass-embedded-linux-arm64: 1.79.5 - sass-embedded-linux-ia32: 1.79.5 - sass-embedded-linux-musl-arm: 1.79.5 - sass-embedded-linux-musl-arm64: 1.79.5 - sass-embedded-linux-musl-ia32: 1.79.5 - sass-embedded-linux-musl-riscv64: 1.79.5 - sass-embedded-linux-musl-x64: 1.79.5 - sass-embedded-linux-riscv64: 1.79.5 - sass-embedded-linux-x64: 1.79.5 - sass-embedded-win32-arm64: 1.79.5 - sass-embedded-win32-ia32: 1.79.5 - sass-embedded-win32-x64: 1.79.5 + sass-embedded-android-arm: 1.80.3 + sass-embedded-android-arm64: 1.80.3 + sass-embedded-android-ia32: 1.80.3 + sass-embedded-android-riscv64: 1.80.3 + sass-embedded-android-x64: 1.80.3 + sass-embedded-darwin-arm64: 1.80.3 + sass-embedded-darwin-x64: 1.80.3 + sass-embedded-linux-arm: 1.80.3 + sass-embedded-linux-arm64: 1.80.3 + sass-embedded-linux-ia32: 1.80.3 + sass-embedded-linux-musl-arm: 1.80.3 + sass-embedded-linux-musl-arm64: 1.80.3 + sass-embedded-linux-musl-ia32: 1.80.3 + sass-embedded-linux-musl-riscv64: 1.80.3 + sass-embedded-linux-musl-x64: 1.80.3 + sass-embedded-linux-riscv64: 1.80.3 + sass-embedded-linux-x64: 1.80.3 + sass-embedded-win32-arm64: 1.80.3 + sass-embedded-win32-ia32: 1.80.3 + sass-embedded-win32-x64: 1.80.3 - sass@1.79.5: + sass@1.80.3: dependencies: '@parcel/watcher': 2.4.1 chokidar: 4.0.1 immutable: 4.0.0 source-map-js: 1.2.1 - sax@1.3.0: {} + sax@1.4.1: {} scheduler@0.23.2: dependencies: @@ -12566,12 +12336,12 @@ snapshots: dependencies: js-tokens: 9.0.0 - stylus@0.63.0: + stylus@0.64.0: dependencies: '@adobe/css-tools': 4.3.3 debug: 4.3.7 - glob: 7.2.3 - sax: 1.3.0 + glob: 10.4.5 + sax: 1.4.1 source-map: 0.7.3 transitivePeerDependencies: - supports-color @@ -12612,7 +12382,7 @@ snapshots: tabbable@6.2.0: {} - tailwindcss@3.4.13(ts-node@10.9.2(@types/node@20.16.11)(typescript@5.6.2)): + tailwindcss@3.4.14(ts-node@10.9.2(@types/node@20.16.13)(typescript@5.6.2)): dependencies: '@alloc/quick-lru': 5.2.0 arg: 5.0.2 @@ -12627,11 +12397,11 @@ snapshots: micromatch: 4.0.8 normalize-path: 3.0.0 object-hash: 3.0.0 - picocolors: 1.1.0 + picocolors: 1.1.1 postcss: 8.4.47 postcss-import: 15.1.0(postcss@8.4.47) postcss-js: 4.0.1(postcss@8.4.47) - postcss-load-config: 4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@20.16.11)(typescript@5.6.2)) + postcss-load-config: 4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@20.16.13)(typescript@5.6.2)) postcss-nested: 6.2.0(postcss@8.4.47) postcss-selector-parser: 6.1.1 resolve: 1.22.8 @@ -12656,10 +12426,10 @@ snapshots: dependencies: temp-dir: 3.0.0 - terser@5.34.1: + terser@5.36.0: dependencies: '@jridgewell/source-map': 0.3.3 - acorn: 8.12.1(patch_hash=i6svphyqbutfresqjorapmeqfu) + acorn: 8.13.0(patch_hash=alg6ojsgkjjglvaj7cjzzaqhim) commander: 2.20.3 source-map-support: 0.5.21 @@ -12714,15 +12484,15 @@ snapshots: ts-interface-checker@0.1.13: {} - ts-node@10.9.2(@types/node@20.16.11)(typescript@5.6.2): + ts-node@10.9.2(@types/node@20.16.13)(typescript@5.6.2): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.8 '@tsconfig/node12': 1.0.9 '@tsconfig/node14': 1.0.1 '@tsconfig/node16': 1.0.2 - '@types/node': 20.16.11 - acorn: 8.12.1(patch_hash=i6svphyqbutfresqjorapmeqfu) + '@types/node': 20.16.13 + acorn: 8.13.0(patch_hash=alg6ojsgkjjglvaj7cjzzaqhim) acorn-walk: 8.3.2 arg: 4.1.3 create-require: 1.1.1 @@ -12736,7 +12506,7 @@ snapshots: optionalDependencies: typescript: 5.6.2 - tslib@2.7.0: {} + tslib@2.8.0: {} tsx@4.19.1: dependencies: @@ -12779,11 +12549,11 @@ snapshots: type@2.7.2: {} - typescript-eslint@8.10.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.2): + typescript-eslint@8.10.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.2): dependencies: - '@typescript-eslint/eslint-plugin': 8.10.0(@typescript-eslint/parser@8.10.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.2))(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.2) - '@typescript-eslint/parser': 8.10.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.2) - '@typescript-eslint/utils': 8.10.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.2) + '@typescript-eslint/eslint-plugin': 8.10.0(@typescript-eslint/parser@8.10.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.2))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.2) + '@typescript-eslint/parser': 8.10.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.2) + '@typescript-eslint/utils': 8.10.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.2) optionalDependencies: typescript: 5.6.2 transitivePeerDependencies: @@ -12797,14 +12567,14 @@ snapshots: uglify-js@3.18.0: optional: true - unbuild@2.0.0(sass@1.79.5)(typescript@5.6.2): + unbuild@2.0.0(sass@1.80.3)(typescript@5.6.2): dependencies: - '@rollup/plugin-alias': 5.1.0(rollup@3.29.4) + '@rollup/plugin-alias': 5.1.1(rollup@3.29.4) '@rollup/plugin-commonjs': 25.0.4(rollup@3.29.4) '@rollup/plugin-json': 6.1.0(rollup@3.29.4) - '@rollup/plugin-node-resolve': 15.2.3(rollup@3.29.4) + '@rollup/plugin-node-resolve': 15.3.0(rollup@3.29.4) '@rollup/plugin-replace': 5.0.2(rollup@3.29.4) - '@rollup/pluginutils': 5.1.0(rollup@3.29.4) + '@rollup/pluginutils': 5.1.2(rollup@3.29.4) chalk: 5.3.0 citty: 0.1.4 consola: 3.2.3 @@ -12813,11 +12583,11 @@ snapshots: globby: 13.2.2 hookable: 5.5.3 jiti: 1.21.0 - magic-string: 0.30.11 - mkdist: 1.3.0(sass@1.79.5)(typescript@5.6.2) - mlly: 1.7.1 + magic-string: 0.30.12 + mkdist: 1.3.0(sass@1.80.3)(typescript@5.6.2) + mlly: 1.7.2 pathe: 1.1.2 - pkg-types: 1.1.1 + pkg-types: 1.2.0 pretty-bytes: 6.1.1 rollup: 3.29.4 rollup-plugin-dts: 6.1.1(rollup@3.29.4)(typescript@5.6.2) @@ -12829,8 +12599,6 @@ snapshots: - sass - supports-color - undici-types@5.26.5: {} - undici-types@6.19.6: {} undici@5.28.4: @@ -12883,7 +12651,7 @@ snapshots: dependencies: '@babel/core': 7.25.8 '@babel/standalone': 7.22.20 - '@babel/types': 7.25.7 + '@babel/types': 7.25.8 defu: 6.1.2 jiti: 1.21.0 mri: 1.2.0 @@ -12895,7 +12663,7 @@ snapshots: dependencies: browserslist: 4.24.0 escalade: 3.1.2 - picocolors: 1.1.0 + picocolors: 1.1.1 uri-js@4.4.1: dependencies: @@ -12904,7 +12672,7 @@ snapshots: url@0.11.4: dependencies: punycode: 1.4.1 - qs: 6.12.3 + qs: 6.13.0 util-deprecate@1.0.2: {} @@ -12990,7 +12758,7 @@ snapshots: - typescript - universal-cookie - vitest@2.1.3(@types/node@20.16.11): + vitest@2.1.3(@types/node@20.16.13): dependencies: '@vitest/expect': 2.1.3 '@vitest/mocker': 2.1.3(vite@packages+vite) @@ -13012,7 +12780,7 @@ snapshots: vite-node: 2.1.3 why-is-node-running: 2.3.0 optionalDependencies: - '@types/node': 20.16.11 + '@types/node': 20.16.13 transitivePeerDependencies: - msw - supports-color @@ -13050,7 +12818,7 @@ snapshots: vuex@4.1.0(vue@3.5.12(typescript@5.6.2)): dependencies: - '@vue/devtools-api': 6.6.3 + '@vue/devtools-api': 6.6.4 vue: 3.5.12(typescript@5.6.2) web-streams-polyfill@3.2.1: {} @@ -13078,7 +12846,7 @@ snapshots: with@7.0.2: dependencies: '@babel/parser': 7.25.8 - '@babel/types': 7.25.7 + '@babel/types': 7.25.8 assert-never: 1.2.1 babel-walk: 3.0.0-canary-5 @@ -13086,13 +12854,13 @@ snapshots: wordwrap@1.0.0: {} - workerd@1.20241004.0: + workerd@1.20241011.1: optionalDependencies: - '@cloudflare/workerd-darwin-64': 1.20241004.0 - '@cloudflare/workerd-darwin-arm64': 1.20241004.0 - '@cloudflare/workerd-linux-64': 1.20241004.0 - '@cloudflare/workerd-linux-arm64': 1.20241004.0 - '@cloudflare/workerd-windows-64': 1.20241004.0 + '@cloudflare/workerd-darwin-64': 1.20241011.1 + '@cloudflare/workerd-darwin-arm64': 1.20241011.1 + '@cloudflare/workerd-linux-64': 1.20241011.1 + '@cloudflare/workerd-linux-arm64': 1.20241011.1 + '@cloudflare/workerd-windows-64': 1.20241011.1 wrap-ansi@7.0.0: dependencies: @@ -13118,7 +12886,7 @@ snapshots: xml-js@1.6.11: dependencies: - sax: 1.3.0 + sax: 1.4.1 yallist@3.1.1: {}