mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-25 10:22:55 +08:00
chore: bump up all non-major dependencies (#10705)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [bullmq](https://bullmq.io/) ([source](https://redirect.github.com/taskforcesh/bullmq)) | [`5.41.7` -> `5.41.8`](https://renovatebot.com/diffs/npm/bullmq/5.41.7/5.41.8) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [happy-dom](https://redirect.github.com/capricorn86/happy-dom) | [`17.4.0` -> `17.4.2`](https://renovatebot.com/diffs/npm/happy-dom/17.4.0/17.4.2) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [html-validate](https://html-validate.org) ([source](https://gitlab.com/html-validate/html-validate)) | [`9.4.2` -> `9.5.0`](https://renovatebot.com/diffs/npm/html-validate/9.4.2/9.5.0) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [inquirer](https://redirect.github.com/SBoudrias/Inquirer.js/blob/main/packages/inquirer/README.md) ([source](https://redirect.github.com/SBoudrias/Inquirer.js)) | [`12.4.2` -> `12.4.3`](https://renovatebot.com/diffs/npm/inquirer/12.4.2/12.4.3) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [react-day-picker](https://daypicker.dev) ([source](https://redirect.github.com/gpbl/react-day-picker)) | [`9.5.1` -> `9.6.1`](https://renovatebot.com/diffs/npm/react-day-picker/9.5.1/9.6.1) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>taskforcesh/bullmq (bullmq)</summary> ### [`v5.41.8`](https://redirect.github.com/taskforcesh/bullmq/releases/tag/v5.41.8) [Compare Source](https://redirect.github.com/taskforcesh/bullmq/compare/v5.41.7...v5.41.8) ##### Bug Fixes - **job:** deserialize priority in fromJSON ([#​3126](https://redirect.github.com/taskforcesh/bullmq/issues/3126)) ([c3269b1](c3269b11e2)) - **worker:** cast delay_until to integer \[python] ([#​3116](https://redirect.github.com/taskforcesh/bullmq/issues/3116)) ([db617e4](db617e48ef)) </details> <details> <summary>capricorn86/happy-dom (happy-dom)</summary> ### [`v17.4.2`](https://redirect.github.com/capricorn86/happy-dom/compare/v17.4.1...bc3583bb7d9b4b73521b2de532d1c8c69a1b070c) [Compare Source](https://redirect.github.com/capricorn86/happy-dom/compare/v17.4.1...v17.4.2) ### [`v17.4.1`](https://redirect.github.com/capricorn86/happy-dom/releases/tag/v17.4.1) [Compare Source](https://redirect.github.com/capricorn86/happy-dom/compare/v17.4.0...v17.4.1) ##### 👷♂️ Patch fixes - Fixes issue where an error was thrown for attributes "xlink" or an unknown prefix during parsing of HTML - By **[@​capricorn86](https://redirect.github.com/capricorn86)** in task [#​1750](https://redirect.github.com/capricorn86/happy-dom/issues/1750) </details> <details> <summary>html-validate/html-validate (html-validate)</summary> ### [`v9.5.0`](https://gitlab.com/html-validate/html-validate/blob/HEAD/CHANGELOG.md#950-2025-03-08) [Compare Source](https://gitlab.com/html-validate/html-validate/compare/v9.4.2...v9.5.0) ##### Features - **deps:** update dependency [@​sidvind/better-ajv-errors](https://redirect.github.com/sidvind/better-ajv-errors) to v4 ([75a17cf](75a17cf699)) </details> <details> <summary>SBoudrias/Inquirer.js (inquirer)</summary> ### [`v12.4.3`](https://redirect.github.com/SBoudrias/Inquirer.js/releases/tag/inquirer%4012.4.3) [Compare Source](https://redirect.github.com/SBoudrias/Inquirer.js/compare/inquirer@12.4.2...inquirer@12.4.3) - Fix an issue where inquirer would throw if Node is ran with the new [`--frozen-intrinsics`](https://nodejs.org/api/cli.html#--frozen-intrinsics) flag. </details> <details> <summary>gpbl/react-day-picker (react-day-picker)</summary> ### [`v9.6.1`](https://redirect.github.com/gpbl/react-day-picker/releases/tag/v9.6.1) [Compare Source](https://redirect.github.com/gpbl/react-day-picker/compare/v9.6.0...v9.6.1) This release addresses an accessibility issue, adds a new `animate` prop and fixes other minor bugs. ##### Possible Breaking Change in Custom Styles To address a [focus lost bug](https://redirect.github.com/gpbl/react-day-picker/issues/2630) affecting navigation buttons, we [updated](https://redirect.github.com/gpbl/react-day-picker/pull/2685) the buttons to use `aria-disabled` instead of the `disabled` attribute. This change may cause custom styles for those disabled buttons to break. To fix it in your code, update the CSS selector to target `[aria-disabled="true"]`: ```diff - .rdp-button_next:disabled, + .rdp-button_next[aria-disabled="true"] { /* your custom CSS */ } - .rdp-button_previous:disabled, + .rdp-button_previous[aria-disabled="true"] { /* your custom CSS */ } ``` ##### Animating Month Transitions Thanks to the work by [@​rodgobbi](https://redirect.github.com/rodgobbi), we have added animations to DayPicker. The new [`animate` prop](http://daypicker.dev/docs/navigation#animate) enables CSS transitions for captions and weeks when navigating between months: <img width="500" src="https://github.com/user-attachments/assets/26b6d7ad-f0e8-4b2c-9bdd-a2e61b044db7"> ```tsx <DayPicker animate /> ``` Customizing the animation style can be challenging due to the HTML table structure of the grid. We may address this in the future. Please leave your feedback in [DayPicker Discussions](https://redirect.github.com/gpbl/react-day-picker/discussions). #### What's Changed - feat: new `animate` prop by [@​rodgobbi](https://redirect.github.com/rodgobbi) in [https://github.com/gpbl/react-day-picker/pull/2684](https://redirect.github.com/gpbl/react-day-picker/pull/2684) - feat(performance): add `sideEffects` property to package.json by [@​rodgobbi](https://redirect.github.com/rodgobbi) in [https://github.com/gpbl/react-day-picker/pull/2673](https://redirect.github.com/gpbl/react-day-picker/pull/2673) - fix(accessibility): focus lost when navigation button is disabled by [@​gpbl](https://redirect.github.com/gpbl) in [https://github.com/gpbl/react-day-picker/pull/2685](https://redirect.github.com/gpbl/react-day-picker/pull/2685) - fix: render selected days with `selected` modifier when disabled by [@​rodgobbi](https://redirect.github.com/rodgobbi) in [https://github.com/gpbl/react-day-picker/pull/2700](https://redirect.github.com/gpbl/react-day-picker/pull/2700) - fix(build): remove extra files from package.json by [@​gpbl](https://redirect.github.com/gpbl) in [https://github.com/gpbl/react-day-picker/pull/2692](https://redirect.github.com/gpbl/react-day-picker/pull/2692) - chore(types): fix deprecation of select event handler types by [@​timothyis](https://redirect.github.com/timothyis) in [https://github.com/gpbl/react-day-picker/pull/2680](https://redirect.github.com/gpbl/react-day-picker/pull/2680) ##### v9.6.1 - fix(build): add missing .css entries in package.json files by [@​gpbl](https://redirect.github.com/gpbl) in [https://github.com/gpbl/react-day-picker/pull/2703](https://redirect.github.com/gpbl/react-day-picker/pull/2703) #### New Contributors - [@​timothyis](https://redirect.github.com/timothyis) made their first contribution in [https://github.com/gpbl/react-day-picker/pull/2680](https://redirect.github.com/gpbl/react-day-picker/pull/2680) **Full Changelog**: https://github.com/gpbl/react-day-picker/compare/v9.5.1...v9.6.1 ### [`v9.6.0`](https://redirect.github.com/gpbl/react-day-picker/releases/tag/v9.6.0) [Compare Source](https://redirect.github.com/gpbl/react-day-picker/compare/v9.5.1...v9.6.0) This release addresses an accessibility issue, adds a new `animate` prop and fixes other minor bugs. ⚠️ **Note** v9.6.0 presents a bug when importing `style.css`. Please upgrade to [v9.6.1](https://redirect.github.com/gpbl/react-day-picker/releases/tag/v9.6.1) for a fix. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/toeverything/AFFiNE). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xODUuNCIsInVwZGF0ZWRJblZlciI6IjM5LjE4NS40IiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5IiwibGFiZWxzIjpbImRlcGVuZGVuY2llcyJdfQ==-->
This commit is contained in:
234
yarn.lock
234
yarn.lock
@@ -6119,13 +6119,13 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@inquirer/checkbox@npm:^4.1.2":
|
||||
version: 4.1.2
|
||||
resolution: "@inquirer/checkbox@npm:4.1.2"
|
||||
"@inquirer/checkbox@npm:^4.1.3":
|
||||
version: 4.1.3
|
||||
resolution: "@inquirer/checkbox@npm:4.1.3"
|
||||
dependencies:
|
||||
"@inquirer/core": "npm:^10.1.7"
|
||||
"@inquirer/figures": "npm:^1.0.10"
|
||||
"@inquirer/type": "npm:^3.0.4"
|
||||
"@inquirer/core": "npm:^10.1.8"
|
||||
"@inquirer/figures": "npm:^1.0.11"
|
||||
"@inquirer/type": "npm:^3.0.5"
|
||||
ansi-escapes: "npm:^4.3.2"
|
||||
yoctocolors-cjs: "npm:^2.1.2"
|
||||
peerDependencies:
|
||||
@@ -6133,31 +6133,31 @@ __metadata:
|
||||
peerDependenciesMeta:
|
||||
"@types/node":
|
||||
optional: true
|
||||
checksum: 10/fb25b3b608e2f08be99cd8acce571a325b11d9c5ee0e84d0c6fcfa235c9115e3864a621c081b42ffd0bde2268bc9302c6823414fcad4161d2693bfafe96182fe
|
||||
checksum: 10/4f33eb2b4601711d46168bf7e4f11070bdc2d93d4e94b66c9aad35ac28b24c6e82fe04e64046d62da53bda7b439808a82f2e2913af93edeb24067ac2c8c6a83f
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@inquirer/confirm@npm:^5.0.0, @inquirer/confirm@npm:^5.1.6":
|
||||
version: 5.1.6
|
||||
resolution: "@inquirer/confirm@npm:5.1.6"
|
||||
"@inquirer/confirm@npm:^5.0.0, @inquirer/confirm@npm:^5.1.7":
|
||||
version: 5.1.7
|
||||
resolution: "@inquirer/confirm@npm:5.1.7"
|
||||
dependencies:
|
||||
"@inquirer/core": "npm:^10.1.7"
|
||||
"@inquirer/type": "npm:^3.0.4"
|
||||
"@inquirer/core": "npm:^10.1.8"
|
||||
"@inquirer/type": "npm:^3.0.5"
|
||||
peerDependencies:
|
||||
"@types/node": ">=18"
|
||||
peerDependenciesMeta:
|
||||
"@types/node":
|
||||
optional: true
|
||||
checksum: 10/445314a5472a4df2a95f8e44a0d214ed89b13344077433e29b28933f6d360fda567bed4b7cbdb32a97fca52be2ad2f655f4103f6aaa43c37a40ab53b150251e8
|
||||
checksum: 10/5bd4c71797f87669cfbeebb1586df9685a0197554a06c1d00da7c8bcef3abe4c0202ba7e2464f6e68d4bf521532cc6dd7a2e662af716d280680f9c182ea4a30c
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@inquirer/core@npm:^10.1.7":
|
||||
version: 10.1.7
|
||||
resolution: "@inquirer/core@npm:10.1.7"
|
||||
"@inquirer/core@npm:^10.1.8":
|
||||
version: 10.1.8
|
||||
resolution: "@inquirer/core@npm:10.1.8"
|
||||
dependencies:
|
||||
"@inquirer/figures": "npm:^1.0.10"
|
||||
"@inquirer/type": "npm:^3.0.4"
|
||||
"@inquirer/figures": "npm:^1.0.11"
|
||||
"@inquirer/type": "npm:^3.0.5"
|
||||
ansi-escapes: "npm:^4.3.2"
|
||||
cli-width: "npm:^4.1.0"
|
||||
mute-stream: "npm:^2.0.0"
|
||||
@@ -6169,158 +6169,158 @@ __metadata:
|
||||
peerDependenciesMeta:
|
||||
"@types/node":
|
||||
optional: true
|
||||
checksum: 10/9c016d92ab00749c8cc35a958266e696bfa12dfd1455875ca749fbee3f39b38e55be49634bc19a2fdadd3d2b73a561eb8ea42dffedb4fcffde3d9a485cf21997
|
||||
checksum: 10/687ad5b8974ca7cb0bfd10c46b384bebdf944b0b15f58fea72ce10cfdb0630aeca2a1c3b45c22b3c37c07db4e460a0fffeac28bf19a197ff9e023da1480e57bc
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@inquirer/editor@npm:^4.2.7":
|
||||
version: 4.2.7
|
||||
resolution: "@inquirer/editor@npm:4.2.7"
|
||||
"@inquirer/editor@npm:^4.2.8":
|
||||
version: 4.2.8
|
||||
resolution: "@inquirer/editor@npm:4.2.8"
|
||||
dependencies:
|
||||
"@inquirer/core": "npm:^10.1.7"
|
||||
"@inquirer/type": "npm:^3.0.4"
|
||||
"@inquirer/core": "npm:^10.1.8"
|
||||
"@inquirer/type": "npm:^3.0.5"
|
||||
external-editor: "npm:^3.1.0"
|
||||
peerDependencies:
|
||||
"@types/node": ">=18"
|
||||
peerDependenciesMeta:
|
||||
"@types/node":
|
||||
optional: true
|
||||
checksum: 10/0930012f4be5ae9aaee0b021816ab7bbbe802542c9b3d8b9f5939401c06cc293bd6cbc1cdaf715f113bb94dde7bcce034a87a36398f0b5d4f86bfa93597e8bcb
|
||||
checksum: 10/306d4ccad15d236443a7c585126d78a356d96284a057214c4c8ed8dfe808db6298f0c335ca3d6086dee9c6a0e6a7bbca00560c0d699affb43c4f45cf46c51fef
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@inquirer/expand@npm:^4.0.9":
|
||||
version: 4.0.9
|
||||
resolution: "@inquirer/expand@npm:4.0.9"
|
||||
"@inquirer/expand@npm:^4.0.10":
|
||||
version: 4.0.10
|
||||
resolution: "@inquirer/expand@npm:4.0.10"
|
||||
dependencies:
|
||||
"@inquirer/core": "npm:^10.1.7"
|
||||
"@inquirer/type": "npm:^3.0.4"
|
||||
"@inquirer/core": "npm:^10.1.8"
|
||||
"@inquirer/type": "npm:^3.0.5"
|
||||
yoctocolors-cjs: "npm:^2.1.2"
|
||||
peerDependencies:
|
||||
"@types/node": ">=18"
|
||||
peerDependenciesMeta:
|
||||
"@types/node":
|
||||
optional: true
|
||||
checksum: 10/a1b07006d05d0bc4351d7a5ce26c3732ecaafd2f847154d9720c3c22196d84a8311096beee596924cceba855ec8ea31fee9abbc472258806c768c18a07e538ca
|
||||
checksum: 10/d65b89b93e7261e177e96989b19297e07976711c38697365bf1e4e9a567e4ccb97382137dad1762e52fb903ac2b9c06e48f96bfa11b7a2acc175f708543aa44d
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@inquirer/figures@npm:^1.0.10":
|
||||
version: 1.0.10
|
||||
resolution: "@inquirer/figures@npm:1.0.10"
|
||||
checksum: 10/ecdeb3e23722375fd634d93a75e5d642fa7fdb0af90c001058054bd9817fb23062ef01039e6a994d6c9427e472b50a1fd1950775c26b9e5103aa1e64cfd5fdd4
|
||||
"@inquirer/figures@npm:^1.0.11":
|
||||
version: 1.0.11
|
||||
resolution: "@inquirer/figures@npm:1.0.11"
|
||||
checksum: 10/357ddd2e83718bc3c9189d518b93fd69099af9c860354df9a5ac0ec024cb5df1228ae4608d2de7625624d2adcd047db813f29426a610eaae7b9e449f8c753c6b
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@inquirer/input@npm:^4.1.6":
|
||||
version: 4.1.6
|
||||
resolution: "@inquirer/input@npm:4.1.6"
|
||||
"@inquirer/input@npm:^4.1.7":
|
||||
version: 4.1.7
|
||||
resolution: "@inquirer/input@npm:4.1.7"
|
||||
dependencies:
|
||||
"@inquirer/core": "npm:^10.1.7"
|
||||
"@inquirer/type": "npm:^3.0.4"
|
||||
"@inquirer/core": "npm:^10.1.8"
|
||||
"@inquirer/type": "npm:^3.0.5"
|
||||
peerDependencies:
|
||||
"@types/node": ">=18"
|
||||
peerDependenciesMeta:
|
||||
"@types/node":
|
||||
optional: true
|
||||
checksum: 10/662d623b40adf9b5e433669ef62ae0b66b2afaa58355f12530f3c83da0ac7ec6016fdd4438dbcdec3690e164013e02ebebb8d9c1599c262241ffcc6a797c5f03
|
||||
checksum: 10/626a8212ed9c61787741259d4a5cce1b73a2a17ad7de1fbddf0d9f94079626c03ea3099875130a1f44cc72e1b1afa8ee4aa8c0cbc281f87a2293c235a2cecb0f
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@inquirer/number@npm:^3.0.9":
|
||||
version: 3.0.9
|
||||
resolution: "@inquirer/number@npm:3.0.9"
|
||||
"@inquirer/number@npm:^3.0.10":
|
||||
version: 3.0.10
|
||||
resolution: "@inquirer/number@npm:3.0.10"
|
||||
dependencies:
|
||||
"@inquirer/core": "npm:^10.1.7"
|
||||
"@inquirer/type": "npm:^3.0.4"
|
||||
"@inquirer/core": "npm:^10.1.8"
|
||||
"@inquirer/type": "npm:^3.0.5"
|
||||
peerDependencies:
|
||||
"@types/node": ">=18"
|
||||
peerDependenciesMeta:
|
||||
"@types/node":
|
||||
optional: true
|
||||
checksum: 10/6dd7ab715c3b94de12054e80b19ff44741b984b9696f57d2e3ea16370683d14bf486ff0364e72cd99c185532b48ef19e7a5d3976761e2ae712b74f2b10fda2a4
|
||||
checksum: 10/4cdf21e279393645c57fbf6a7013a7fa0ceff8e5cc0ea5163cfc795407b1382244f3dd8709b67de282f9e6e03828246d45b4168dda93ccd2b742017a7e33b60c
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@inquirer/password@npm:^4.0.9":
|
||||
version: 4.0.9
|
||||
resolution: "@inquirer/password@npm:4.0.9"
|
||||
"@inquirer/password@npm:^4.0.10":
|
||||
version: 4.0.10
|
||||
resolution: "@inquirer/password@npm:4.0.10"
|
||||
dependencies:
|
||||
"@inquirer/core": "npm:^10.1.7"
|
||||
"@inquirer/type": "npm:^3.0.4"
|
||||
"@inquirer/core": "npm:^10.1.8"
|
||||
"@inquirer/type": "npm:^3.0.5"
|
||||
ansi-escapes: "npm:^4.3.2"
|
||||
peerDependencies:
|
||||
"@types/node": ">=18"
|
||||
peerDependenciesMeta:
|
||||
"@types/node":
|
||||
optional: true
|
||||
checksum: 10/e00ce9f5cad048d782d16d0e4764b7c2a5860fe03e29f52725628f28a6c0f0675fa92f189bbcb2b823ef323214e13a20cfe0270fcf88245bda426850793e07ef
|
||||
checksum: 10/d10672999aa1b7e3f469a3686a56246c9fecdd67bd8b317e35a332009d173804f2866a9f5e0388b557c82421c5c0f971d6662920cac365fcbde345c5ab38becc
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@inquirer/prompts@npm:^7.0.0, @inquirer/prompts@npm:^7.3.2":
|
||||
version: 7.3.2
|
||||
resolution: "@inquirer/prompts@npm:7.3.2"
|
||||
"@inquirer/prompts@npm:^7.0.0, @inquirer/prompts@npm:^7.3.3":
|
||||
version: 7.3.3
|
||||
resolution: "@inquirer/prompts@npm:7.3.3"
|
||||
dependencies:
|
||||
"@inquirer/checkbox": "npm:^4.1.2"
|
||||
"@inquirer/confirm": "npm:^5.1.6"
|
||||
"@inquirer/editor": "npm:^4.2.7"
|
||||
"@inquirer/expand": "npm:^4.0.9"
|
||||
"@inquirer/input": "npm:^4.1.6"
|
||||
"@inquirer/number": "npm:^3.0.9"
|
||||
"@inquirer/password": "npm:^4.0.9"
|
||||
"@inquirer/rawlist": "npm:^4.0.9"
|
||||
"@inquirer/search": "npm:^3.0.9"
|
||||
"@inquirer/select": "npm:^4.0.9"
|
||||
"@inquirer/checkbox": "npm:^4.1.3"
|
||||
"@inquirer/confirm": "npm:^5.1.7"
|
||||
"@inquirer/editor": "npm:^4.2.8"
|
||||
"@inquirer/expand": "npm:^4.0.10"
|
||||
"@inquirer/input": "npm:^4.1.7"
|
||||
"@inquirer/number": "npm:^3.0.10"
|
||||
"@inquirer/password": "npm:^4.0.10"
|
||||
"@inquirer/rawlist": "npm:^4.0.10"
|
||||
"@inquirer/search": "npm:^3.0.10"
|
||||
"@inquirer/select": "npm:^4.0.10"
|
||||
peerDependencies:
|
||||
"@types/node": ">=18"
|
||||
peerDependenciesMeta:
|
||||
"@types/node":
|
||||
optional: true
|
||||
checksum: 10/476ea162f6820628dbbb4ffff78a9ddf0cc9d99237bfbd976b944034eb4362eec748cabe2c886fa69eab551866172952fc26f2c12f4429008321105048743b41
|
||||
checksum: 10/f93683a828428429ef7061dc601e38db686280faba4040e72aec225f20f6a463e6e0649f889864486b794d7510901f3643310895ad27656c5020e711642e7e17
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@inquirer/rawlist@npm:^4.0.9":
|
||||
version: 4.0.9
|
||||
resolution: "@inquirer/rawlist@npm:4.0.9"
|
||||
"@inquirer/rawlist@npm:^4.0.10":
|
||||
version: 4.0.10
|
||||
resolution: "@inquirer/rawlist@npm:4.0.10"
|
||||
dependencies:
|
||||
"@inquirer/core": "npm:^10.1.7"
|
||||
"@inquirer/type": "npm:^3.0.4"
|
||||
"@inquirer/core": "npm:^10.1.8"
|
||||
"@inquirer/type": "npm:^3.0.5"
|
||||
yoctocolors-cjs: "npm:^2.1.2"
|
||||
peerDependencies:
|
||||
"@types/node": ">=18"
|
||||
peerDependenciesMeta:
|
||||
"@types/node":
|
||||
optional: true
|
||||
checksum: 10/bdda866b6ef88ef64569d2ac947473178ac4f831de1773381034c2c519ae1bab6d3805359ea7c164021b843751cd328a54031856293e3ccf26924efdab7ca17e
|
||||
checksum: 10/612e1040c6e0497b51acb3f6f0b4d9e4a60a905415afbedb50c59ec128d3d0f316602e79b2d2217fcad31c6e8f06264d940ea38158ad655284399aa959a8de5b
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@inquirer/search@npm:^3.0.9":
|
||||
version: 3.0.9
|
||||
resolution: "@inquirer/search@npm:3.0.9"
|
||||
"@inquirer/search@npm:^3.0.10":
|
||||
version: 3.0.10
|
||||
resolution: "@inquirer/search@npm:3.0.10"
|
||||
dependencies:
|
||||
"@inquirer/core": "npm:^10.1.7"
|
||||
"@inquirer/figures": "npm:^1.0.10"
|
||||
"@inquirer/type": "npm:^3.0.4"
|
||||
"@inquirer/core": "npm:^10.1.8"
|
||||
"@inquirer/figures": "npm:^1.0.11"
|
||||
"@inquirer/type": "npm:^3.0.5"
|
||||
yoctocolors-cjs: "npm:^2.1.2"
|
||||
peerDependencies:
|
||||
"@types/node": ">=18"
|
||||
peerDependenciesMeta:
|
||||
"@types/node":
|
||||
optional: true
|
||||
checksum: 10/33531deae1bfb917c3441469c16f0548cf4b0209324da4abd4fa9e285c53718ec3497aac7ee9642571bb8725f7593a34b96e4380c367a88411ab3310d03d955e
|
||||
checksum: 10/92a18e373f7a29d6d9454914ba001ba36ba8e40ea96bbf5727e9b4c55d8b18bc825f9b56109f0fb0bdd946ddfd715e741141330b41d3bbd1a5b66253182d3aea
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@inquirer/select@npm:^4.0.9":
|
||||
version: 4.0.9
|
||||
resolution: "@inquirer/select@npm:4.0.9"
|
||||
"@inquirer/select@npm:^4.0.10":
|
||||
version: 4.0.10
|
||||
resolution: "@inquirer/select@npm:4.0.10"
|
||||
dependencies:
|
||||
"@inquirer/core": "npm:^10.1.7"
|
||||
"@inquirer/figures": "npm:^1.0.10"
|
||||
"@inquirer/type": "npm:^3.0.4"
|
||||
"@inquirer/core": "npm:^10.1.8"
|
||||
"@inquirer/figures": "npm:^1.0.11"
|
||||
"@inquirer/type": "npm:^3.0.5"
|
||||
ansi-escapes: "npm:^4.3.2"
|
||||
yoctocolors-cjs: "npm:^2.1.2"
|
||||
peerDependencies:
|
||||
@@ -6328,19 +6328,19 @@ __metadata:
|
||||
peerDependenciesMeta:
|
||||
"@types/node":
|
||||
optional: true
|
||||
checksum: 10/5cea4e114bcfea104fc592a89a186f83c12e1feb870e29628c06ad035519cb6a8e7e831a50a96f157931f3bdeb45ea2a720b0ef20e42713edf8aa2e11a6dfba2
|
||||
checksum: 10/9f1996756d45c39504b36dcb1d08619bce0f76907572e4f7b7f2af6e7e518a871e1c99c11104f2aa5de4cc3cd45f6e116bab5b32668201cb7db66a886c0530ea
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@inquirer/type@npm:^3.0.4":
|
||||
version: 3.0.4
|
||||
resolution: "@inquirer/type@npm:3.0.4"
|
||||
"@inquirer/type@npm:^3.0.5":
|
||||
version: 3.0.5
|
||||
resolution: "@inquirer/type@npm:3.0.5"
|
||||
peerDependencies:
|
||||
"@types/node": ">=18"
|
||||
peerDependenciesMeta:
|
||||
"@types/node":
|
||||
optional: true
|
||||
checksum: 10/64ec072d2725ee31586af65cf32f553f217978f7020011d049e663b45776ff8c72aefe18eb12ece46788eaef9b239fc3bd01edfbe1d07b9162cc97aae5c173fb
|
||||
checksum: 10/a2d2aeba1b7e2000c5cddbb289cbf7a751dcea924f6c4a732a6ec99cac98a668bcce23f98357e098855027e18113949a4fb31162e3b3742775ab8e96cf59fb88
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -12063,14 +12063,14 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@sidvind/better-ajv-errors@npm:3.0.1":
|
||||
version: 3.0.1
|
||||
resolution: "@sidvind/better-ajv-errors@npm:3.0.1"
|
||||
"@sidvind/better-ajv-errors@npm:4.0.0":
|
||||
version: 4.0.0
|
||||
resolution: "@sidvind/better-ajv-errors@npm:4.0.0"
|
||||
dependencies:
|
||||
kleur: "npm:^4.1.0"
|
||||
peerDependencies:
|
||||
ajv: ^6.12.3 || ^7.0.0 || ^8.0.0
|
||||
checksum: 10/a51722563a87cec4ae8c28927099e8b45f0a61d0f7c38c2a092fa5a5ff2375924390711b78184207b0ce7ad3fc811f3e0edc402b1960adca48c9389e507b9239
|
||||
ajv: ^7.0.0 || ^8.0.0
|
||||
checksum: 10/fa4635332ed0a7c012470690b62312d2a4d394b8b56d1bd84665d5574472f1a4af64a2d32d30df8b1a7926985484b9b64601d43cbd16c9eeacb80f733b53b321
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -16793,8 +16793,8 @@ __metadata:
|
||||
linkType: hard
|
||||
|
||||
"bullmq@npm:^5.40.2":
|
||||
version: 5.41.7
|
||||
resolution: "bullmq@npm:5.41.7"
|
||||
version: 5.41.8
|
||||
resolution: "bullmq@npm:5.41.8"
|
||||
dependencies:
|
||||
cron-parser: "npm:^4.9.0"
|
||||
ioredis: "npm:^5.4.1"
|
||||
@@ -16803,7 +16803,7 @@ __metadata:
|
||||
semver: "npm:^7.5.4"
|
||||
tslib: "npm:^2.0.0"
|
||||
uuid: "npm:^9.0.0"
|
||||
checksum: 10/49f6d8d7f0a9dfd3c379ed1b534ddd41bd4405290ca9befaaa2e4667fabd32aacd45c01f10609396d8b574cb4ade31fdf9dea134aa21381268ad4f6987d31890
|
||||
checksum: 10/d6289143285795b2806fa41365fd60c96cdd6b152b0b223f03ce5687567a28c01b11688c6312924b4ac1c2547a9df3029a2d89d47a0db94cc3b507b555f15ba1
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -21942,12 +21942,12 @@ __metadata:
|
||||
linkType: hard
|
||||
|
||||
"happy-dom@npm:^17.0.0":
|
||||
version: 17.4.0
|
||||
resolution: "happy-dom@npm:17.4.0"
|
||||
version: 17.4.2
|
||||
resolution: "happy-dom@npm:17.4.2"
|
||||
dependencies:
|
||||
webidl-conversions: "npm:^7.0.0"
|
||||
whatwg-mimetype: "npm:^3.0.0"
|
||||
checksum: 10/f527f72fad4c53ffd541f758bd9cd36b43c210049ab18f5396c82de38567cfd822d13167a10de74950561687d7eafba463135571d260606dc40be185be003e4d
|
||||
checksum: 10/c1103de02ddd3113f4689e5175d66c6e7687d3d4c103af74571103c84d56ec2044988e522f161414a7557d0636137ebd8fd8a39f141b11be5c34ad61dab73c54
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -22240,11 +22240,11 @@ __metadata:
|
||||
linkType: hard
|
||||
|
||||
"html-validate@npm:^9.0.0":
|
||||
version: 9.4.2
|
||||
resolution: "html-validate@npm:9.4.2"
|
||||
version: 9.5.0
|
||||
resolution: "html-validate@npm:9.5.0"
|
||||
dependencies:
|
||||
"@html-validate/stylish": "npm:^4.1.0"
|
||||
"@sidvind/better-ajv-errors": "npm:3.0.1"
|
||||
"@sidvind/better-ajv-errors": "npm:4.0.0"
|
||||
ajv: "npm:^8.0.0"
|
||||
glob: "npm:^10.0.0"
|
||||
kleur: "npm:^4.1.0"
|
||||
@@ -22267,7 +22267,7 @@ __metadata:
|
||||
optional: true
|
||||
bin:
|
||||
html-validate: bin/html-validate.mjs
|
||||
checksum: 10/3fe1a1eaea7745ee75b05af4a3b5baa2f843dcde85b19ca247618bdc52a86e9eb92402ff144633fbd83880986c7ce776635ed2ba3a54d5d1fcf6fa4861af1b93
|
||||
checksum: 10/d676ca86afbbbf594475db7fdc84804c7ca3cdec0e97dd70389bdf24534b2cc87bf132bf6d1a6f34a0ad9fdeddf1e7a1656b69ddb13ba38d53a3461cc074543c
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -22845,22 +22845,22 @@ __metadata:
|
||||
linkType: hard
|
||||
|
||||
"inquirer@npm:^12.3.0":
|
||||
version: 12.4.2
|
||||
resolution: "inquirer@npm:12.4.2"
|
||||
version: 12.4.3
|
||||
resolution: "inquirer@npm:12.4.3"
|
||||
dependencies:
|
||||
"@inquirer/core": "npm:^10.1.7"
|
||||
"@inquirer/prompts": "npm:^7.3.2"
|
||||
"@inquirer/type": "npm:^3.0.4"
|
||||
"@inquirer/core": "npm:^10.1.8"
|
||||
"@inquirer/prompts": "npm:^7.3.3"
|
||||
"@inquirer/type": "npm:^3.0.5"
|
||||
ansi-escapes: "npm:^4.3.2"
|
||||
mute-stream: "npm:^2.0.0"
|
||||
run-async: "npm:^3.0.0"
|
||||
rxjs: "npm:^7.8.1"
|
||||
rxjs: "npm:^7.8.2"
|
||||
peerDependencies:
|
||||
"@types/node": ">=18"
|
||||
peerDependenciesMeta:
|
||||
"@types/node":
|
||||
optional: true
|
||||
checksum: 10/25e2dad05286eaae3a89f031d15e02d04ae3028e2322c5c60314b199ed92cb56a8c6dde13afc5686a4993d637d95830ec9423dfd7c2f77f3d4f01d0b492fdfd8
|
||||
checksum: 10/0140eef5d43687cde1f11409ef5c4029fce189584c7428cfd2ea58a1a7dfb4e59d3c5ddb462ad87606f87a547c6dd0b7e66ccf4078551737ae6eb2808ac1ec1c
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -28821,15 +28821,15 @@ __metadata:
|
||||
linkType: hard
|
||||
|
||||
"react-day-picker@npm:^9.4.3":
|
||||
version: 9.5.1
|
||||
resolution: "react-day-picker@npm:9.5.1"
|
||||
version: 9.6.1
|
||||
resolution: "react-day-picker@npm:9.6.1"
|
||||
dependencies:
|
||||
"@date-fns/tz": "npm:^1.2.0"
|
||||
date-fns: "npm:^4.1.0"
|
||||
date-fns-jalali: "npm:^4.1.0-0"
|
||||
peerDependencies:
|
||||
react: ">=16.8.0"
|
||||
checksum: 10/e458e082a6712adb5d40fcc28c54cd20d415b5e2f5b2156f7a0d3fac0efd0f09b6721dd0fdce7993743c0e2d0d95abecc0bda47157f348e581eb1484a99b28fb
|
||||
checksum: 10/2d73bdaceed64c6cd8185ae48edce19ac879414982643b88c05744df421f60921526278d88883120c848a17f7cbe382d095ca90f3a2106dc2869a62fbd9d488e
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -29930,7 +29930,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"rxjs@npm:^7.5.5, rxjs@npm:^7.8.1":
|
||||
"rxjs@npm:^7.5.5, rxjs@npm:^7.8.1, rxjs@npm:^7.8.2":
|
||||
version: 7.8.2
|
||||
resolution: "rxjs@npm:7.8.2"
|
||||
dependencies:
|
||||
|
||||
Reference in New Issue
Block a user