mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-12 04:15:30 +00:00
fix(web): Fix CVE 2025-55182 (#654)
This commit is contained in:
parent
91caf129ed
commit
7fc068f8b2
4 changed files with 230 additions and 196 deletions
|
|
@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
- Fixed issue where files with special characters would fail to load. [#636](https://github.com/sourcebot-dev/sourcebot/issues/636)
|
- Fixed issue where files with special characters would fail to load. [#636](https://github.com/sourcebot-dev/sourcebot/issues/636)
|
||||||
- Fixed Ask performance issues. [#632](https://github.com/sourcebot-dev/sourcebot/pull/632)
|
- Fixed Ask performance issues. [#632](https://github.com/sourcebot-dev/sourcebot/pull/632)
|
||||||
- Fixed regression where creating a new Ask thread when unauthenticated would result in a 404. [#641](https://github.com/sourcebot-dev/sourcebot/pull/641)
|
- Fixed regression where creating a new Ask thread when unauthenticated would result in a 404. [#641](https://github.com/sourcebot-dev/sourcebot/pull/641)
|
||||||
|
- Updated react and next package versions to fix CVE 2025-55182. [#654](https://github.com/sourcebot-dev/sourcebot/pull/654)
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- Changed the default behaviour for code nav to scope references & definitions search to the current repository. [#647](https://github.com/sourcebot-dev/sourcebot/pull/647)
|
- Changed the default behaviour for code nav to scope references & definitions search to the current repository. [#647](https://github.com/sourcebot-dev/sourcebot/pull/647)
|
||||||
|
|
|
||||||
|
|
@ -147,7 +147,7 @@
|
||||||
"langfuse-vercel": "^3.38.4",
|
"langfuse-vercel": "^3.38.4",
|
||||||
"lucide-react": "^0.517.0",
|
"lucide-react": "^0.517.0",
|
||||||
"micromatch": "^4.0.8",
|
"micromatch": "^4.0.8",
|
||||||
"next": "15.5.0",
|
"next": "^16.0.7",
|
||||||
"next-auth": "^5.0.0-beta.30",
|
"next-auth": "^5.0.0-beta.30",
|
||||||
"next-navigation-guard": "^0.2.0",
|
"next-navigation-guard": "^0.2.0",
|
||||||
"next-themes": "^0.3.0",
|
"next-themes": "^0.3.0",
|
||||||
|
|
@ -158,9 +158,9 @@
|
||||||
"posthog-js": "^1.161.5",
|
"posthog-js": "^1.161.5",
|
||||||
"pretty-bytes": "^6.1.1",
|
"pretty-bytes": "^6.1.1",
|
||||||
"psl": "^1.15.0",
|
"psl": "^1.15.0",
|
||||||
"react": "19.1.1",
|
"react": "^19.2.1",
|
||||||
"react-device-detect": "^2.2.3",
|
"react-device-detect": "^2.2.3",
|
||||||
"react-dom": "19.1.1",
|
"react-dom": "^19.2.1",
|
||||||
"react-hook-form": "^7.53.0",
|
"react-hook-form": "^7.53.0",
|
||||||
"react-hotkeys-hook": "^4.5.1",
|
"react-hotkeys-hook": "^4.5.1",
|
||||||
"react-icons": "^5.3.0",
|
"react-icons": "^5.3.0",
|
||||||
|
|
@ -196,8 +196,8 @@
|
||||||
"@types/node": "^20",
|
"@types/node": "^20",
|
||||||
"@types/nodemailer": "^6.4.17",
|
"@types/nodemailer": "^6.4.17",
|
||||||
"@types/psl": "^1.1.3",
|
"@types/psl": "^1.1.3",
|
||||||
"@types/react": "19.1.10",
|
"@types/react": "19.2.1",
|
||||||
"@types/react-dom": "19.1.7",
|
"@types/react-dom": "19.2.1",
|
||||||
"@typescript-eslint/eslint-plugin": "^8.40.0",
|
"@typescript-eslint/eslint-plugin": "^8.40.0",
|
||||||
"@typescript-eslint/parser": "^8.40.0",
|
"@typescript-eslint/parser": "^8.40.0",
|
||||||
"cross-env": "^7.0.3",
|
"cross-env": "^7.0.3",
|
||||||
|
|
@ -217,7 +217,7 @@
|
||||||
"vitest-mock-extended": "^3.1.0"
|
"vitest-mock-extended": "^3.1.0"
|
||||||
},
|
},
|
||||||
"resolutions": {
|
"resolutions": {
|
||||||
"@types/react": "19.1.10",
|
"@types/react": "19.2.1",
|
||||||
"@types/react-dom": "19.1.7"
|
"@types/react-dom": "19.2.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@
|
||||||
"moduleResolution": "bundler",
|
"moduleResolution": "bundler",
|
||||||
"resolveJsonModule": true,
|
"resolveJsonModule": true,
|
||||||
"isolatedModules": true,
|
"isolatedModules": true,
|
||||||
"jsx": "preserve",
|
"jsx": "react-jsx",
|
||||||
"incremental": true,
|
"incremental": true,
|
||||||
"plugins": [
|
"plugins": [
|
||||||
{
|
{
|
||||||
|
|
@ -35,7 +35,8 @@
|
||||||
"next-env.d.ts",
|
"next-env.d.ts",
|
||||||
"**/*.ts",
|
"**/*.ts",
|
||||||
"**/*.tsx",
|
"**/*.tsx",
|
||||||
".next/types/**/*.ts"
|
".next/types/**/*.ts",
|
||||||
|
".next/dev/types/**/*.ts"
|
||||||
],
|
],
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"node_modules"
|
"node_modules"
|
||||||
|
|
|
||||||
406
yarn.lock
406
yarn.lock
|
|
@ -1649,12 +1649,12 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@emnapi/runtime@npm:^1.4.4":
|
"@emnapi/runtime@npm:^1.7.0":
|
||||||
version: 1.4.5
|
version: 1.7.1
|
||||||
resolution: "@emnapi/runtime@npm:1.4.5"
|
resolution: "@emnapi/runtime@npm:1.7.1"
|
||||||
dependencies:
|
dependencies:
|
||||||
tslib: "npm:^2.4.0"
|
tslib: "npm:^2.4.0"
|
||||||
checksum: 10c0/37a0278be5ac81e918efe36f1449875cbafba947039c53c65a1f8fc238001b866446fc66041513b286baaff5d6f9bec667f5164b3ca481373a8d9cb65bfc984b
|
checksum: 10c0/26b851cd3e93877d8732a985a2ebf5152325bbacc6204ef5336a47359dedcc23faeb08cdfcb8bb389b5401b3e894b882bc1a1e55b4b7c1ed1e67c991a760ddd5
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
|
@ -2426,6 +2426,13 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
"@img/colour@npm:^1.0.0":
|
||||||
|
version: 1.0.0
|
||||||
|
resolution: "@img/colour@npm:1.0.0"
|
||||||
|
checksum: 10c0/02261719c1e0d7aa5a2d585981954f2ac126f0c432400aa1a01b925aa2c41417b7695da8544ee04fd29eba7ecea8eaf9b8bef06f19dc8faba78f94eeac40667d
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
"@img/sharp-darwin-arm64@npm:0.33.5":
|
"@img/sharp-darwin-arm64@npm:0.33.5":
|
||||||
version: 0.33.5
|
version: 0.33.5
|
||||||
resolution: "@img/sharp-darwin-arm64@npm:0.33.5"
|
resolution: "@img/sharp-darwin-arm64@npm:0.33.5"
|
||||||
|
|
@ -2438,11 +2445,11 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@img/sharp-darwin-arm64@npm:0.34.3":
|
"@img/sharp-darwin-arm64@npm:0.34.5":
|
||||||
version: 0.34.3
|
version: 0.34.5
|
||||||
resolution: "@img/sharp-darwin-arm64@npm:0.34.3"
|
resolution: "@img/sharp-darwin-arm64@npm:0.34.5"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@img/sharp-libvips-darwin-arm64": "npm:1.2.0"
|
"@img/sharp-libvips-darwin-arm64": "npm:1.2.4"
|
||||||
dependenciesMeta:
|
dependenciesMeta:
|
||||||
"@img/sharp-libvips-darwin-arm64":
|
"@img/sharp-libvips-darwin-arm64":
|
||||||
optional: true
|
optional: true
|
||||||
|
|
@ -2462,11 +2469,11 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@img/sharp-darwin-x64@npm:0.34.3":
|
"@img/sharp-darwin-x64@npm:0.34.5":
|
||||||
version: 0.34.3
|
version: 0.34.5
|
||||||
resolution: "@img/sharp-darwin-x64@npm:0.34.3"
|
resolution: "@img/sharp-darwin-x64@npm:0.34.5"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@img/sharp-libvips-darwin-x64": "npm:1.2.0"
|
"@img/sharp-libvips-darwin-x64": "npm:1.2.4"
|
||||||
dependenciesMeta:
|
dependenciesMeta:
|
||||||
"@img/sharp-libvips-darwin-x64":
|
"@img/sharp-libvips-darwin-x64":
|
||||||
optional: true
|
optional: true
|
||||||
|
|
@ -2481,9 +2488,9 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@img/sharp-libvips-darwin-arm64@npm:1.2.0":
|
"@img/sharp-libvips-darwin-arm64@npm:1.2.4":
|
||||||
version: 1.2.0
|
version: 1.2.4
|
||||||
resolution: "@img/sharp-libvips-darwin-arm64@npm:1.2.0"
|
resolution: "@img/sharp-libvips-darwin-arm64@npm:1.2.4"
|
||||||
conditions: os=darwin & cpu=arm64
|
conditions: os=darwin & cpu=arm64
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
@ -2495,9 +2502,9 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@img/sharp-libvips-darwin-x64@npm:1.2.0":
|
"@img/sharp-libvips-darwin-x64@npm:1.2.4":
|
||||||
version: 1.2.0
|
version: 1.2.4
|
||||||
resolution: "@img/sharp-libvips-darwin-x64@npm:1.2.0"
|
resolution: "@img/sharp-libvips-darwin-x64@npm:1.2.4"
|
||||||
conditions: os=darwin & cpu=x64
|
conditions: os=darwin & cpu=x64
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
@ -2509,9 +2516,9 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@img/sharp-libvips-linux-arm64@npm:1.2.0":
|
"@img/sharp-libvips-linux-arm64@npm:1.2.4":
|
||||||
version: 1.2.0
|
version: 1.2.4
|
||||||
resolution: "@img/sharp-libvips-linux-arm64@npm:1.2.0"
|
resolution: "@img/sharp-libvips-linux-arm64@npm:1.2.4"
|
||||||
conditions: os=linux & cpu=arm64 & libc=glibc
|
conditions: os=linux & cpu=arm64 & libc=glibc
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
@ -2523,20 +2530,27 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@img/sharp-libvips-linux-arm@npm:1.2.0":
|
"@img/sharp-libvips-linux-arm@npm:1.2.4":
|
||||||
version: 1.2.0
|
version: 1.2.4
|
||||||
resolution: "@img/sharp-libvips-linux-arm@npm:1.2.0"
|
resolution: "@img/sharp-libvips-linux-arm@npm:1.2.4"
|
||||||
conditions: os=linux & cpu=arm & libc=glibc
|
conditions: os=linux & cpu=arm & libc=glibc
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@img/sharp-libvips-linux-ppc64@npm:1.2.0":
|
"@img/sharp-libvips-linux-ppc64@npm:1.2.4":
|
||||||
version: 1.2.0
|
version: 1.2.4
|
||||||
resolution: "@img/sharp-libvips-linux-ppc64@npm:1.2.0"
|
resolution: "@img/sharp-libvips-linux-ppc64@npm:1.2.4"
|
||||||
conditions: os=linux & cpu=ppc64 & libc=glibc
|
conditions: os=linux & cpu=ppc64 & libc=glibc
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
"@img/sharp-libvips-linux-riscv64@npm:1.2.4":
|
||||||
|
version: 1.2.4
|
||||||
|
resolution: "@img/sharp-libvips-linux-riscv64@npm:1.2.4"
|
||||||
|
conditions: os=linux & cpu=riscv64 & libc=glibc
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
"@img/sharp-libvips-linux-s390x@npm:1.0.4":
|
"@img/sharp-libvips-linux-s390x@npm:1.0.4":
|
||||||
version: 1.0.4
|
version: 1.0.4
|
||||||
resolution: "@img/sharp-libvips-linux-s390x@npm:1.0.4"
|
resolution: "@img/sharp-libvips-linux-s390x@npm:1.0.4"
|
||||||
|
|
@ -2544,9 +2558,9 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@img/sharp-libvips-linux-s390x@npm:1.2.0":
|
"@img/sharp-libvips-linux-s390x@npm:1.2.4":
|
||||||
version: 1.2.0
|
version: 1.2.4
|
||||||
resolution: "@img/sharp-libvips-linux-s390x@npm:1.2.0"
|
resolution: "@img/sharp-libvips-linux-s390x@npm:1.2.4"
|
||||||
conditions: os=linux & cpu=s390x & libc=glibc
|
conditions: os=linux & cpu=s390x & libc=glibc
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
@ -2558,9 +2572,9 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@img/sharp-libvips-linux-x64@npm:1.2.0":
|
"@img/sharp-libvips-linux-x64@npm:1.2.4":
|
||||||
version: 1.2.0
|
version: 1.2.4
|
||||||
resolution: "@img/sharp-libvips-linux-x64@npm:1.2.0"
|
resolution: "@img/sharp-libvips-linux-x64@npm:1.2.4"
|
||||||
conditions: os=linux & cpu=x64 & libc=glibc
|
conditions: os=linux & cpu=x64 & libc=glibc
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
@ -2572,9 +2586,9 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@img/sharp-libvips-linuxmusl-arm64@npm:1.2.0":
|
"@img/sharp-libvips-linuxmusl-arm64@npm:1.2.4":
|
||||||
version: 1.2.0
|
version: 1.2.4
|
||||||
resolution: "@img/sharp-libvips-linuxmusl-arm64@npm:1.2.0"
|
resolution: "@img/sharp-libvips-linuxmusl-arm64@npm:1.2.4"
|
||||||
conditions: os=linux & cpu=arm64 & libc=musl
|
conditions: os=linux & cpu=arm64 & libc=musl
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
@ -2586,9 +2600,9 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@img/sharp-libvips-linuxmusl-x64@npm:1.2.0":
|
"@img/sharp-libvips-linuxmusl-x64@npm:1.2.4":
|
||||||
version: 1.2.0
|
version: 1.2.4
|
||||||
resolution: "@img/sharp-libvips-linuxmusl-x64@npm:1.2.0"
|
resolution: "@img/sharp-libvips-linuxmusl-x64@npm:1.2.4"
|
||||||
conditions: os=linux & cpu=x64 & libc=musl
|
conditions: os=linux & cpu=x64 & libc=musl
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
@ -2605,11 +2619,11 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@img/sharp-linux-arm64@npm:0.34.3":
|
"@img/sharp-linux-arm64@npm:0.34.5":
|
||||||
version: 0.34.3
|
version: 0.34.5
|
||||||
resolution: "@img/sharp-linux-arm64@npm:0.34.3"
|
resolution: "@img/sharp-linux-arm64@npm:0.34.5"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@img/sharp-libvips-linux-arm64": "npm:1.2.0"
|
"@img/sharp-libvips-linux-arm64": "npm:1.2.4"
|
||||||
dependenciesMeta:
|
dependenciesMeta:
|
||||||
"@img/sharp-libvips-linux-arm64":
|
"@img/sharp-libvips-linux-arm64":
|
||||||
optional: true
|
optional: true
|
||||||
|
|
@ -2629,11 +2643,11 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@img/sharp-linux-arm@npm:0.34.3":
|
"@img/sharp-linux-arm@npm:0.34.5":
|
||||||
version: 0.34.3
|
version: 0.34.5
|
||||||
resolution: "@img/sharp-linux-arm@npm:0.34.3"
|
resolution: "@img/sharp-linux-arm@npm:0.34.5"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@img/sharp-libvips-linux-arm": "npm:1.2.0"
|
"@img/sharp-libvips-linux-arm": "npm:1.2.4"
|
||||||
dependenciesMeta:
|
dependenciesMeta:
|
||||||
"@img/sharp-libvips-linux-arm":
|
"@img/sharp-libvips-linux-arm":
|
||||||
optional: true
|
optional: true
|
||||||
|
|
@ -2641,11 +2655,11 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@img/sharp-linux-ppc64@npm:0.34.3":
|
"@img/sharp-linux-ppc64@npm:0.34.5":
|
||||||
version: 0.34.3
|
version: 0.34.5
|
||||||
resolution: "@img/sharp-linux-ppc64@npm:0.34.3"
|
resolution: "@img/sharp-linux-ppc64@npm:0.34.5"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@img/sharp-libvips-linux-ppc64": "npm:1.2.0"
|
"@img/sharp-libvips-linux-ppc64": "npm:1.2.4"
|
||||||
dependenciesMeta:
|
dependenciesMeta:
|
||||||
"@img/sharp-libvips-linux-ppc64":
|
"@img/sharp-libvips-linux-ppc64":
|
||||||
optional: true
|
optional: true
|
||||||
|
|
@ -2653,6 +2667,18 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
"@img/sharp-linux-riscv64@npm:0.34.5":
|
||||||
|
version: 0.34.5
|
||||||
|
resolution: "@img/sharp-linux-riscv64@npm:0.34.5"
|
||||||
|
dependencies:
|
||||||
|
"@img/sharp-libvips-linux-riscv64": "npm:1.2.4"
|
||||||
|
dependenciesMeta:
|
||||||
|
"@img/sharp-libvips-linux-riscv64":
|
||||||
|
optional: true
|
||||||
|
conditions: os=linux & cpu=riscv64 & libc=glibc
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
"@img/sharp-linux-s390x@npm:0.33.5":
|
"@img/sharp-linux-s390x@npm:0.33.5":
|
||||||
version: 0.33.5
|
version: 0.33.5
|
||||||
resolution: "@img/sharp-linux-s390x@npm:0.33.5"
|
resolution: "@img/sharp-linux-s390x@npm:0.33.5"
|
||||||
|
|
@ -2665,11 +2691,11 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@img/sharp-linux-s390x@npm:0.34.3":
|
"@img/sharp-linux-s390x@npm:0.34.5":
|
||||||
version: 0.34.3
|
version: 0.34.5
|
||||||
resolution: "@img/sharp-linux-s390x@npm:0.34.3"
|
resolution: "@img/sharp-linux-s390x@npm:0.34.5"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@img/sharp-libvips-linux-s390x": "npm:1.2.0"
|
"@img/sharp-libvips-linux-s390x": "npm:1.2.4"
|
||||||
dependenciesMeta:
|
dependenciesMeta:
|
||||||
"@img/sharp-libvips-linux-s390x":
|
"@img/sharp-libvips-linux-s390x":
|
||||||
optional: true
|
optional: true
|
||||||
|
|
@ -2689,11 +2715,11 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@img/sharp-linux-x64@npm:0.34.3":
|
"@img/sharp-linux-x64@npm:0.34.5":
|
||||||
version: 0.34.3
|
version: 0.34.5
|
||||||
resolution: "@img/sharp-linux-x64@npm:0.34.3"
|
resolution: "@img/sharp-linux-x64@npm:0.34.5"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@img/sharp-libvips-linux-x64": "npm:1.2.0"
|
"@img/sharp-libvips-linux-x64": "npm:1.2.4"
|
||||||
dependenciesMeta:
|
dependenciesMeta:
|
||||||
"@img/sharp-libvips-linux-x64":
|
"@img/sharp-libvips-linux-x64":
|
||||||
optional: true
|
optional: true
|
||||||
|
|
@ -2713,11 +2739,11 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@img/sharp-linuxmusl-arm64@npm:0.34.3":
|
"@img/sharp-linuxmusl-arm64@npm:0.34.5":
|
||||||
version: 0.34.3
|
version: 0.34.5
|
||||||
resolution: "@img/sharp-linuxmusl-arm64@npm:0.34.3"
|
resolution: "@img/sharp-linuxmusl-arm64@npm:0.34.5"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@img/sharp-libvips-linuxmusl-arm64": "npm:1.2.0"
|
"@img/sharp-libvips-linuxmusl-arm64": "npm:1.2.4"
|
||||||
dependenciesMeta:
|
dependenciesMeta:
|
||||||
"@img/sharp-libvips-linuxmusl-arm64":
|
"@img/sharp-libvips-linuxmusl-arm64":
|
||||||
optional: true
|
optional: true
|
||||||
|
|
@ -2737,11 +2763,11 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@img/sharp-linuxmusl-x64@npm:0.34.3":
|
"@img/sharp-linuxmusl-x64@npm:0.34.5":
|
||||||
version: 0.34.3
|
version: 0.34.5
|
||||||
resolution: "@img/sharp-linuxmusl-x64@npm:0.34.3"
|
resolution: "@img/sharp-linuxmusl-x64@npm:0.34.5"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@img/sharp-libvips-linuxmusl-x64": "npm:1.2.0"
|
"@img/sharp-libvips-linuxmusl-x64": "npm:1.2.4"
|
||||||
dependenciesMeta:
|
dependenciesMeta:
|
||||||
"@img/sharp-libvips-linuxmusl-x64":
|
"@img/sharp-libvips-linuxmusl-x64":
|
||||||
optional: true
|
optional: true
|
||||||
|
|
@ -2758,18 +2784,18 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@img/sharp-wasm32@npm:0.34.3":
|
"@img/sharp-wasm32@npm:0.34.5":
|
||||||
version: 0.34.3
|
version: 0.34.5
|
||||||
resolution: "@img/sharp-wasm32@npm:0.34.3"
|
resolution: "@img/sharp-wasm32@npm:0.34.5"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@emnapi/runtime": "npm:^1.4.4"
|
"@emnapi/runtime": "npm:^1.7.0"
|
||||||
conditions: cpu=wasm32
|
conditions: cpu=wasm32
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@img/sharp-win32-arm64@npm:0.34.3":
|
"@img/sharp-win32-arm64@npm:0.34.5":
|
||||||
version: 0.34.3
|
version: 0.34.5
|
||||||
resolution: "@img/sharp-win32-arm64@npm:0.34.3"
|
resolution: "@img/sharp-win32-arm64@npm:0.34.5"
|
||||||
conditions: os=win32 & cpu=arm64
|
conditions: os=win32 & cpu=arm64
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
@ -2781,9 +2807,9 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@img/sharp-win32-ia32@npm:0.34.3":
|
"@img/sharp-win32-ia32@npm:0.34.5":
|
||||||
version: 0.34.3
|
version: 0.34.5
|
||||||
resolution: "@img/sharp-win32-ia32@npm:0.34.3"
|
resolution: "@img/sharp-win32-ia32@npm:0.34.5"
|
||||||
conditions: os=win32 & cpu=ia32
|
conditions: os=win32 & cpu=ia32
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
@ -2795,9 +2821,9 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@img/sharp-win32-x64@npm:0.34.3":
|
"@img/sharp-win32-x64@npm:0.34.5":
|
||||||
version: 0.34.3
|
version: 0.34.5
|
||||||
resolution: "@img/sharp-win32-x64@npm:0.34.3"
|
resolution: "@img/sharp-win32-x64@npm:0.34.5"
|
||||||
conditions: os=win32 & cpu=x64
|
conditions: os=win32 & cpu=x64
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
@ -3268,10 +3294,10 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@next/env@npm:15.5.0":
|
"@next/env@npm:16.0.7":
|
||||||
version: 15.5.0
|
version: 16.0.7
|
||||||
resolution: "@next/env@npm:15.5.0"
|
resolution: "@next/env@npm:16.0.7"
|
||||||
checksum: 10c0/13ed931688c26b764499840022c9855763fb583e728cf30933b2ff71d3ca681eb71611ec4d7580ecb45197c18a1a4498ba5a61cb60edc6e18966103620d11bad
|
checksum: 10c0/5bbb4360ae6b0753de83f70700295c09427f5414f6765c7371fee0894de2a614364a2e9b4ec7b7e3451d56334026bafec6d28a21222a2fa7ecaa27f0a9421cc7
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
|
@ -3291,9 +3317,9 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@next/swc-darwin-arm64@npm:15.5.0":
|
"@next/swc-darwin-arm64@npm:16.0.7":
|
||||||
version: 15.5.0
|
version: 16.0.7
|
||||||
resolution: "@next/swc-darwin-arm64@npm:15.5.0"
|
resolution: "@next/swc-darwin-arm64@npm:16.0.7"
|
||||||
conditions: os=darwin & cpu=arm64
|
conditions: os=darwin & cpu=arm64
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
@ -3305,9 +3331,9 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@next/swc-darwin-x64@npm:15.5.0":
|
"@next/swc-darwin-x64@npm:16.0.7":
|
||||||
version: 15.5.0
|
version: 16.0.7
|
||||||
resolution: "@next/swc-darwin-x64@npm:15.5.0"
|
resolution: "@next/swc-darwin-x64@npm:16.0.7"
|
||||||
conditions: os=darwin & cpu=x64
|
conditions: os=darwin & cpu=x64
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
@ -3319,9 +3345,9 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@next/swc-linux-arm64-gnu@npm:15.5.0":
|
"@next/swc-linux-arm64-gnu@npm:16.0.7":
|
||||||
version: 15.5.0
|
version: 16.0.7
|
||||||
resolution: "@next/swc-linux-arm64-gnu@npm:15.5.0"
|
resolution: "@next/swc-linux-arm64-gnu@npm:16.0.7"
|
||||||
conditions: os=linux & cpu=arm64 & libc=glibc
|
conditions: os=linux & cpu=arm64 & libc=glibc
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
@ -3333,9 +3359,9 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@next/swc-linux-arm64-musl@npm:15.5.0":
|
"@next/swc-linux-arm64-musl@npm:16.0.7":
|
||||||
version: 15.5.0
|
version: 16.0.7
|
||||||
resolution: "@next/swc-linux-arm64-musl@npm:15.5.0"
|
resolution: "@next/swc-linux-arm64-musl@npm:16.0.7"
|
||||||
conditions: os=linux & cpu=arm64 & libc=musl
|
conditions: os=linux & cpu=arm64 & libc=musl
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
@ -3347,9 +3373,9 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@next/swc-linux-x64-gnu@npm:15.5.0":
|
"@next/swc-linux-x64-gnu@npm:16.0.7":
|
||||||
version: 15.5.0
|
version: 16.0.7
|
||||||
resolution: "@next/swc-linux-x64-gnu@npm:15.5.0"
|
resolution: "@next/swc-linux-x64-gnu@npm:16.0.7"
|
||||||
conditions: os=linux & cpu=x64 & libc=glibc
|
conditions: os=linux & cpu=x64 & libc=glibc
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
@ -3361,9 +3387,9 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@next/swc-linux-x64-musl@npm:15.5.0":
|
"@next/swc-linux-x64-musl@npm:16.0.7":
|
||||||
version: 15.5.0
|
version: 16.0.7
|
||||||
resolution: "@next/swc-linux-x64-musl@npm:15.5.0"
|
resolution: "@next/swc-linux-x64-musl@npm:16.0.7"
|
||||||
conditions: os=linux & cpu=x64 & libc=musl
|
conditions: os=linux & cpu=x64 & libc=musl
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
@ -3375,9 +3401,9 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@next/swc-win32-arm64-msvc@npm:15.5.0":
|
"@next/swc-win32-arm64-msvc@npm:16.0.7":
|
||||||
version: 15.5.0
|
version: 16.0.7
|
||||||
resolution: "@next/swc-win32-arm64-msvc@npm:15.5.0"
|
resolution: "@next/swc-win32-arm64-msvc@npm:16.0.7"
|
||||||
conditions: os=win32 & cpu=arm64
|
conditions: os=win32 & cpu=arm64
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
@ -3396,9 +3422,9 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@next/swc-win32-x64-msvc@npm:15.5.0":
|
"@next/swc-win32-x64-msvc@npm:16.0.7":
|
||||||
version: 15.5.0
|
version: 16.0.7
|
||||||
resolution: "@next/swc-win32-x64-msvc@npm:15.5.0"
|
resolution: "@next/swc-win32-x64-msvc@npm:16.0.7"
|
||||||
conditions: os=win32 & cpu=x64
|
conditions: os=win32 & cpu=x64
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
@ -8155,8 +8181,8 @@ __metadata:
|
||||||
"@types/node": "npm:^20"
|
"@types/node": "npm:^20"
|
||||||
"@types/nodemailer": "npm:^6.4.17"
|
"@types/nodemailer": "npm:^6.4.17"
|
||||||
"@types/psl": "npm:^1.1.3"
|
"@types/psl": "npm:^1.1.3"
|
||||||
"@types/react": "npm:19.1.10"
|
"@types/react": "npm:19.2.1"
|
||||||
"@types/react-dom": "npm:19.1.7"
|
"@types/react-dom": "npm:19.2.1"
|
||||||
"@typescript-eslint/eslint-plugin": "npm:^8.40.0"
|
"@typescript-eslint/eslint-plugin": "npm:^8.40.0"
|
||||||
"@typescript-eslint/parser": "npm:^8.40.0"
|
"@typescript-eslint/parser": "npm:^8.40.0"
|
||||||
"@uidotdev/usehooks": "npm:^2.4.1"
|
"@uidotdev/usehooks": "npm:^2.4.1"
|
||||||
|
|
@ -8208,7 +8234,7 @@ __metadata:
|
||||||
langfuse-vercel: "npm:^3.38.4"
|
langfuse-vercel: "npm:^3.38.4"
|
||||||
lucide-react: "npm:^0.517.0"
|
lucide-react: "npm:^0.517.0"
|
||||||
micromatch: "npm:^4.0.8"
|
micromatch: "npm:^4.0.8"
|
||||||
next: "npm:15.5.0"
|
next: "npm:^16.0.7"
|
||||||
next-auth: "npm:^5.0.0-beta.30"
|
next-auth: "npm:^5.0.0-beta.30"
|
||||||
next-navigation-guard: "npm:^0.2.0"
|
next-navigation-guard: "npm:^0.2.0"
|
||||||
next-themes: "npm:^0.3.0"
|
next-themes: "npm:^0.3.0"
|
||||||
|
|
@ -8221,9 +8247,9 @@ __metadata:
|
||||||
posthog-js: "npm:^1.161.5"
|
posthog-js: "npm:^1.161.5"
|
||||||
pretty-bytes: "npm:^6.1.1"
|
pretty-bytes: "npm:^6.1.1"
|
||||||
psl: "npm:^1.15.0"
|
psl: "npm:^1.15.0"
|
||||||
react: "npm:19.1.1"
|
react: "npm:^19.2.1"
|
||||||
react-device-detect: "npm:^2.2.3"
|
react-device-detect: "npm:^2.2.3"
|
||||||
react-dom: "npm:19.1.1"
|
react-dom: "npm:^19.2.1"
|
||||||
react-email: "npm:3.0.3"
|
react-email: "npm:3.0.3"
|
||||||
react-hook-form: "npm:^7.53.0"
|
react-hook-form: "npm:^7.53.0"
|
||||||
react-hotkeys-hook: "npm:^4.5.1"
|
react-hotkeys-hook: "npm:^4.5.1"
|
||||||
|
|
@ -8874,21 +8900,21 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@types/react-dom@npm:19.1.7":
|
"@types/react-dom@npm:19.2.1":
|
||||||
version: 19.1.7
|
version: 19.2.1
|
||||||
resolution: "@types/react-dom@npm:19.1.7"
|
resolution: "@types/react-dom@npm:19.2.1"
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
"@types/react": ^19.0.0
|
"@types/react": ^19.2.0
|
||||||
checksum: 10c0/8db5751c1567552fe4e1ece9f5823b682f2994ec8d30ed34ba0ef984e3c8ace1435f8be93d02f55c350147e78ac8c4dbcd8ed2c3b6a60f575bc5374f588c51c9
|
checksum: 10c0/0dbbc5b7ecd74681bfac95a413133b26118a70b8840748277abafa47e5c7a037beae6a660e6a21fb53f5cbdb0b2d33e117ea7bbd976a888c298392a8a96bc68f
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@types/react@npm:19.1.10":
|
"@types/react@npm:19.2.1":
|
||||||
version: 19.1.10
|
version: 19.2.1
|
||||||
resolution: "@types/react@npm:19.1.10"
|
resolution: "@types/react@npm:19.2.1"
|
||||||
dependencies:
|
dependencies:
|
||||||
csstype: "npm:^3.0.2"
|
csstype: "npm:^3.0.2"
|
||||||
checksum: 10c0/fb583deacd0a815e2775dc1b9f764532d8cacb748ddd2c2914805a46c257ce6c237b4078f44009692074db212ab61a390301c6470f07f5aa5bfdeb78a2acfda1
|
checksum: 10c0/c44881c275da91156ce02986ab1f59c9724db256f4850d3937c9acea561a6ab1fe1028f7a1fc4da3a2c1bcb00de29e238922e8c6d42a727ef2e6e0cd40b3db9f
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
|
@ -11310,10 +11336,10 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"detect-libc@npm:^2.0.4":
|
"detect-libc@npm:^2.1.2":
|
||||||
version: 2.0.4
|
version: 2.1.2
|
||||||
resolution: "detect-libc@npm:2.0.4"
|
resolution: "detect-libc@npm:2.1.2"
|
||||||
checksum: 10c0/c15541f836eba4b1f521e4eecc28eefefdbc10a94d3b8cb4c507689f332cc111babb95deda66f2de050b22122113189986d5190be97d51b5a2b23b938415e67c
|
checksum: 10c0/acc675c29a5649fa1fb6e255f993b8ee829e510b6b56b0910666949c80c364738833417d0edb5f90e4e46be17228b0f2b66a010513984e18b15deeeac49369c4
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
|
@ -16142,23 +16168,23 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"next@npm:15.5.0":
|
"next@npm:^16.0.7":
|
||||||
version: 15.5.0
|
version: 16.0.7
|
||||||
resolution: "next@npm:15.5.0"
|
resolution: "next@npm:16.0.7"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@next/env": "npm:15.5.0"
|
"@next/env": "npm:16.0.7"
|
||||||
"@next/swc-darwin-arm64": "npm:15.5.0"
|
"@next/swc-darwin-arm64": "npm:16.0.7"
|
||||||
"@next/swc-darwin-x64": "npm:15.5.0"
|
"@next/swc-darwin-x64": "npm:16.0.7"
|
||||||
"@next/swc-linux-arm64-gnu": "npm:15.5.0"
|
"@next/swc-linux-arm64-gnu": "npm:16.0.7"
|
||||||
"@next/swc-linux-arm64-musl": "npm:15.5.0"
|
"@next/swc-linux-arm64-musl": "npm:16.0.7"
|
||||||
"@next/swc-linux-x64-gnu": "npm:15.5.0"
|
"@next/swc-linux-x64-gnu": "npm:16.0.7"
|
||||||
"@next/swc-linux-x64-musl": "npm:15.5.0"
|
"@next/swc-linux-x64-musl": "npm:16.0.7"
|
||||||
"@next/swc-win32-arm64-msvc": "npm:15.5.0"
|
"@next/swc-win32-arm64-msvc": "npm:16.0.7"
|
||||||
"@next/swc-win32-x64-msvc": "npm:15.5.0"
|
"@next/swc-win32-x64-msvc": "npm:16.0.7"
|
||||||
"@swc/helpers": "npm:0.5.15"
|
"@swc/helpers": "npm:0.5.15"
|
||||||
caniuse-lite: "npm:^1.0.30001579"
|
caniuse-lite: "npm:^1.0.30001579"
|
||||||
postcss: "npm:8.4.31"
|
postcss: "npm:8.4.31"
|
||||||
sharp: "npm:^0.34.3"
|
sharp: "npm:^0.34.4"
|
||||||
styled-jsx: "npm:5.1.6"
|
styled-jsx: "npm:5.1.6"
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
"@opentelemetry/api": ^1.1.0
|
"@opentelemetry/api": ^1.1.0
|
||||||
|
|
@ -16197,7 +16223,7 @@ __metadata:
|
||||||
optional: true
|
optional: true
|
||||||
bin:
|
bin:
|
||||||
next: dist/bin/next
|
next: dist/bin/next
|
||||||
checksum: 10c0/8691787562666713e9ee8bc3edad646328d9cea85d5c4c10bd05a978afa25bc9927bbfd50acc69ceb268296741b5f71e78fa0213fe65b731a55e73b0f5807c24
|
checksum: 10c0/72003fed0f5b690c91ae1a0cc59317691ca1976b46809557a93e00a43e55d4158a256b1a46da6cd7506e699d74aa0cf4e973ec5a35ceabbdd9a1955b507ec85d
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
|
@ -17539,14 +17565,14 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"react-dom@npm:19.1.1":
|
"react-dom@npm:^19.2.1":
|
||||||
version: 19.1.1
|
version: 19.2.1
|
||||||
resolution: "react-dom@npm:19.1.1"
|
resolution: "react-dom@npm:19.2.1"
|
||||||
dependencies:
|
dependencies:
|
||||||
scheduler: "npm:^0.26.0"
|
scheduler: "npm:^0.27.0"
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
react: ^19.1.1
|
react: ^19.2.1
|
||||||
checksum: 10c0/8c91198510521299c56e4e8d5e3a4508b2734fb5e52f29eeac33811de64e76fe586ad32c32182e2e84e070d98df67125da346c3360013357228172dbcd20bcdd
|
checksum: 10c0/e56b6b3d72314df580ca800b70a69a21c6372703c8f45d9b5451ca6519faefb2496d76ffa9c5adb94136d2bbf2fd303d0dfc208a2cd77ede3132877471af9470
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
|
@ -17763,10 +17789,10 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"react@npm:19.1.1":
|
"react@npm:^19.2.1":
|
||||||
version: 19.1.1
|
version: 19.2.1
|
||||||
resolution: "react@npm:19.1.1"
|
resolution: "react@npm:19.2.1"
|
||||||
checksum: 10c0/8c9769a2dfd02e603af6445058325e6c8a24b47b185d0e461f66a6454765ddcaecb3f0a90184836c68bb509f3c38248359edbc42f0d07c23eb500a5c30c87b4e
|
checksum: 10c0/2b5eaf407abb3db84090434c20d6c5a8e447ab7abcd8fe9eaf1ddc299babcf31284ee9db7ea5671d21c85ac5298bd632fa1a7da1ed78d5b368a537f5e1cd5d62
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
|
@ -18490,10 +18516,10 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"scheduler@npm:^0.26.0":
|
"scheduler@npm:^0.27.0":
|
||||||
version: 0.26.0
|
version: 0.27.0
|
||||||
resolution: "scheduler@npm:0.26.0"
|
resolution: "scheduler@npm:0.27.0"
|
||||||
checksum: 10c0/5b8d5bfddaae3513410eda54f2268e98a376a429931921a81b5c3a2873aab7ca4d775a8caac5498f8cbc7d0daeab947cf923dbd8e215d61671f9f4e392d34356
|
checksum: 10c0/4f03048cb05a3c8fddc45813052251eca00688f413a3cee236d984a161da28db28ba71bd11e7a3dd02f7af84ab28d39fb311431d3b3772fed557945beb00c452
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
|
@ -18542,12 +18568,12 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"semver@npm:^7.7.2":
|
"semver@npm:^7.7.3":
|
||||||
version: 7.7.2
|
version: 7.7.3
|
||||||
resolution: "semver@npm:7.7.2"
|
resolution: "semver@npm:7.7.3"
|
||||||
bin:
|
bin:
|
||||||
semver: bin/semver.js
|
semver: bin/semver.js
|
||||||
checksum: 10c0/aca305edfbf2383c22571cb7714f48cadc7ac95371b4b52362fb8eeffdfbc0de0669368b82b2b15978f8848f01d7114da65697e56cd8c37b0dab8c58e543f9ea
|
checksum: 10c0/4afe5c986567db82f44c8c6faef8fe9df2a9b1d98098fc1721f57c696c4c21cebd572f297fc21002f81889492345b8470473bc6f4aff5fb032a6ea59ea2bc45e
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
|
@ -18744,35 +18770,37 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"sharp@npm:^0.34.3":
|
"sharp@npm:^0.34.4":
|
||||||
version: 0.34.3
|
version: 0.34.5
|
||||||
resolution: "sharp@npm:0.34.3"
|
resolution: "sharp@npm:0.34.5"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@img/sharp-darwin-arm64": "npm:0.34.3"
|
"@img/colour": "npm:^1.0.0"
|
||||||
"@img/sharp-darwin-x64": "npm:0.34.3"
|
"@img/sharp-darwin-arm64": "npm:0.34.5"
|
||||||
"@img/sharp-libvips-darwin-arm64": "npm:1.2.0"
|
"@img/sharp-darwin-x64": "npm:0.34.5"
|
||||||
"@img/sharp-libvips-darwin-x64": "npm:1.2.0"
|
"@img/sharp-libvips-darwin-arm64": "npm:1.2.4"
|
||||||
"@img/sharp-libvips-linux-arm": "npm:1.2.0"
|
"@img/sharp-libvips-darwin-x64": "npm:1.2.4"
|
||||||
"@img/sharp-libvips-linux-arm64": "npm:1.2.0"
|
"@img/sharp-libvips-linux-arm": "npm:1.2.4"
|
||||||
"@img/sharp-libvips-linux-ppc64": "npm:1.2.0"
|
"@img/sharp-libvips-linux-arm64": "npm:1.2.4"
|
||||||
"@img/sharp-libvips-linux-s390x": "npm:1.2.0"
|
"@img/sharp-libvips-linux-ppc64": "npm:1.2.4"
|
||||||
"@img/sharp-libvips-linux-x64": "npm:1.2.0"
|
"@img/sharp-libvips-linux-riscv64": "npm:1.2.4"
|
||||||
"@img/sharp-libvips-linuxmusl-arm64": "npm:1.2.0"
|
"@img/sharp-libvips-linux-s390x": "npm:1.2.4"
|
||||||
"@img/sharp-libvips-linuxmusl-x64": "npm:1.2.0"
|
"@img/sharp-libvips-linux-x64": "npm:1.2.4"
|
||||||
"@img/sharp-linux-arm": "npm:0.34.3"
|
"@img/sharp-libvips-linuxmusl-arm64": "npm:1.2.4"
|
||||||
"@img/sharp-linux-arm64": "npm:0.34.3"
|
"@img/sharp-libvips-linuxmusl-x64": "npm:1.2.4"
|
||||||
"@img/sharp-linux-ppc64": "npm:0.34.3"
|
"@img/sharp-linux-arm": "npm:0.34.5"
|
||||||
"@img/sharp-linux-s390x": "npm:0.34.3"
|
"@img/sharp-linux-arm64": "npm:0.34.5"
|
||||||
"@img/sharp-linux-x64": "npm:0.34.3"
|
"@img/sharp-linux-ppc64": "npm:0.34.5"
|
||||||
"@img/sharp-linuxmusl-arm64": "npm:0.34.3"
|
"@img/sharp-linux-riscv64": "npm:0.34.5"
|
||||||
"@img/sharp-linuxmusl-x64": "npm:0.34.3"
|
"@img/sharp-linux-s390x": "npm:0.34.5"
|
||||||
"@img/sharp-wasm32": "npm:0.34.3"
|
"@img/sharp-linux-x64": "npm:0.34.5"
|
||||||
"@img/sharp-win32-arm64": "npm:0.34.3"
|
"@img/sharp-linuxmusl-arm64": "npm:0.34.5"
|
||||||
"@img/sharp-win32-ia32": "npm:0.34.3"
|
"@img/sharp-linuxmusl-x64": "npm:0.34.5"
|
||||||
"@img/sharp-win32-x64": "npm:0.34.3"
|
"@img/sharp-wasm32": "npm:0.34.5"
|
||||||
color: "npm:^4.2.3"
|
"@img/sharp-win32-arm64": "npm:0.34.5"
|
||||||
detect-libc: "npm:^2.0.4"
|
"@img/sharp-win32-ia32": "npm:0.34.5"
|
||||||
semver: "npm:^7.7.2"
|
"@img/sharp-win32-x64": "npm:0.34.5"
|
||||||
|
detect-libc: "npm:^2.1.2"
|
||||||
|
semver: "npm:^7.7.3"
|
||||||
dependenciesMeta:
|
dependenciesMeta:
|
||||||
"@img/sharp-darwin-arm64":
|
"@img/sharp-darwin-arm64":
|
||||||
optional: true
|
optional: true
|
||||||
|
|
@ -18788,6 +18816,8 @@ __metadata:
|
||||||
optional: true
|
optional: true
|
||||||
"@img/sharp-libvips-linux-ppc64":
|
"@img/sharp-libvips-linux-ppc64":
|
||||||
optional: true
|
optional: true
|
||||||
|
"@img/sharp-libvips-linux-riscv64":
|
||||||
|
optional: true
|
||||||
"@img/sharp-libvips-linux-s390x":
|
"@img/sharp-libvips-linux-s390x":
|
||||||
optional: true
|
optional: true
|
||||||
"@img/sharp-libvips-linux-x64":
|
"@img/sharp-libvips-linux-x64":
|
||||||
|
|
@ -18802,6 +18832,8 @@ __metadata:
|
||||||
optional: true
|
optional: true
|
||||||
"@img/sharp-linux-ppc64":
|
"@img/sharp-linux-ppc64":
|
||||||
optional: true
|
optional: true
|
||||||
|
"@img/sharp-linux-riscv64":
|
||||||
|
optional: true
|
||||||
"@img/sharp-linux-s390x":
|
"@img/sharp-linux-s390x":
|
||||||
optional: true
|
optional: true
|
||||||
"@img/sharp-linux-x64":
|
"@img/sharp-linux-x64":
|
||||||
|
|
@ -18818,7 +18850,7 @@ __metadata:
|
||||||
optional: true
|
optional: true
|
||||||
"@img/sharp-win32-x64":
|
"@img/sharp-win32-x64":
|
||||||
optional: true
|
optional: true
|
||||||
checksum: 10c0/df9e6645e3db6ed298a0ac956ba74e468c367fc038b547936fbdddc6a29fce9af40413acbef73b3716291530760f311a20e45c8983f20ee5ea69dd2f21464a2b
|
checksum: 10c0/fd79e29df0597a7d5704b8461c51f944ead91a5243691697be6e8243b966402beda53ddc6f0a53b96ea3cb8221f0b244aa588114d3ebf8734fb4aefd41ab802f
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue