mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 17:48:30 -04:00
bump next & friends
This commit is contained in:
parent
68b09ebc36
commit
80793c7330
@ -17,18 +17,18 @@ export const metadata = addMetadata({
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const send = async (prevState: ContactState, formData: FormData): Promise<ContactState> => {
|
const send = async (state: ContactState, payload: FormData): Promise<ContactState> => {
|
||||||
"use server";
|
"use server";
|
||||||
|
|
||||||
// TODO: remove after debugging why automated spam entries are causing 500 errors
|
// TODO: remove after debugging why automated spam entries are causing 500 errors
|
||||||
console.debug("[contact form] received data:", formData);
|
console.debug("[contact form] received payload:", payload);
|
||||||
|
|
||||||
if (!process.env.RESEND_API_KEY) {
|
if (!process.env.RESEND_API_KEY) {
|
||||||
throw new Error("[contact form] 'RESEND_API_KEY' is not set.");
|
throw new Error("[contact form] 'RESEND_API_KEY' is not set.");
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const data = v.safeParse(ContactSchema, Object.fromEntries(formData));
|
const data = v.safeParse(ContactSchema, Object.fromEntries(payload));
|
||||||
|
|
||||||
if (!data.success) {
|
if (!data.success) {
|
||||||
return {
|
return {
|
||||||
|
20
package.json
20
package.json
@ -23,8 +23,8 @@
|
|||||||
"@giscus/react": "^3.1.0",
|
"@giscus/react": "^3.1.0",
|
||||||
"@mdx-js/loader": "^3.1.0",
|
"@mdx-js/loader": "^3.1.0",
|
||||||
"@mdx-js/react": "^3.1.0",
|
"@mdx-js/react": "^3.1.0",
|
||||||
"@next/bundle-analyzer": "15.3.0-canary.33",
|
"@next/bundle-analyzer": "15.3.0-canary.39",
|
||||||
"@next/mdx": "15.3.0-canary.33",
|
"@next/mdx": "15.3.0-canary.39",
|
||||||
"@octokit/graphql": "^8.2.1",
|
"@octokit/graphql": "^8.2.1",
|
||||||
"@octokit/graphql-schema": "^15.26.0",
|
"@octokit/graphql-schema": "^15.26.0",
|
||||||
"@upstash/redis": "^1.34.6",
|
"@upstash/redis": "^1.34.6",
|
||||||
@ -38,7 +38,7 @@
|
|||||||
"html-entities": "^2.6.0",
|
"html-entities": "^2.6.0",
|
||||||
"lucide-react": "0.487.0",
|
"lucide-react": "0.487.0",
|
||||||
"modern-normalize": "^3.0.1",
|
"modern-normalize": "^3.0.1",
|
||||||
"next": "15.3.0-canary.33",
|
"next": "15.3.0-canary.39",
|
||||||
"polished": "^4.3.1",
|
"polished": "^4.3.1",
|
||||||
"prop-types": "^15.8.1",
|
"prop-types": "^15.8.1",
|
||||||
"react": "19.1.0",
|
"react": "19.1.0",
|
||||||
@ -71,7 +71,7 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@eslint/eslintrc": "^3.3.1",
|
"@eslint/eslintrc": "^3.3.1",
|
||||||
"@eslint/js": "^9.23.0",
|
"@eslint/js": "^9.24.0",
|
||||||
"@jakejarvis/eslint-config": "^4.0.7",
|
"@jakejarvis/eslint-config": "^4.0.7",
|
||||||
"@types/comma-number": "^2.1.2",
|
"@types/comma-number": "^2.1.2",
|
||||||
"@types/mdx": "^2.0.13",
|
"@types/mdx": "^2.0.13",
|
||||||
@ -82,13 +82,13 @@
|
|||||||
"@types/react-is": "^19.0.0",
|
"@types/react-is": "^19.0.0",
|
||||||
"babel-plugin-react-compiler": "19.0.0-beta-e993439-20250328",
|
"babel-plugin-react-compiler": "19.0.0-beta-e993439-20250328",
|
||||||
"cross-env": "^7.0.3",
|
"cross-env": "^7.0.3",
|
||||||
"eslint": "^9.23.0",
|
"eslint": "^9.24.0",
|
||||||
"eslint-config-next": "15.3.0-canary.33",
|
"eslint-config-next": "15.3.0-canary.39",
|
||||||
"eslint-config-prettier": "^10.1.1",
|
"eslint-config-prettier": "^10.1.1",
|
||||||
"eslint-plugin-css-modules": "^2.12.0",
|
"eslint-plugin-css-modules": "^2.12.0",
|
||||||
"eslint-plugin-import": "^2.31.0",
|
"eslint-plugin-import": "^2.31.0",
|
||||||
"eslint-plugin-jsx-a11y": "^6.10.2",
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
||||||
"eslint-plugin-mdx": "^3.3.2",
|
"eslint-plugin-mdx": "^3.4.0",
|
||||||
"eslint-plugin-prettier": "^5.2.6",
|
"eslint-plugin-prettier": "^5.2.6",
|
||||||
"eslint-plugin-react": "^7.37.5",
|
"eslint-plugin-react": "^7.37.5",
|
||||||
"eslint-plugin-react-compiler": "19.0.0-beta-e993439-20250328",
|
"eslint-plugin-react-compiler": "19.0.0-beta-e993439-20250328",
|
||||||
@ -97,11 +97,11 @@
|
|||||||
"lint-staged": "^15.5.0",
|
"lint-staged": "^15.5.0",
|
||||||
"prettier": "^3.5.3",
|
"prettier": "^3.5.3",
|
||||||
"schema-dts": "^1.1.5",
|
"schema-dts": "^1.1.5",
|
||||||
"stylelint": "^16.17.0",
|
"stylelint": "^16.18.0",
|
||||||
"stylelint-config-css-modules": "^4.4.0",
|
"stylelint-config-css-modules": "^4.4.0",
|
||||||
"stylelint-config-standard": "^37.0.0",
|
"stylelint-config-standard": "^38.0.0",
|
||||||
"stylelint-prettier": "^5.0.3",
|
"stylelint-prettier": "^5.0.3",
|
||||||
"typescript": "5.8.2"
|
"typescript": "5.8.3"
|
||||||
},
|
},
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"sharp": "^0.34.0"
|
"sharp": "^0.34.0"
|
||||||
|
416
pnpm-lock.yaml
generated
416
pnpm-lock.yaml
generated
@ -27,11 +27,11 @@ importers:
|
|||||||
specifier: ^3.1.0
|
specifier: ^3.1.0
|
||||||
version: 3.1.0(@types/react@19.1.0)(react@19.1.0)
|
version: 3.1.0(@types/react@19.1.0)(react@19.1.0)
|
||||||
'@next/bundle-analyzer':
|
'@next/bundle-analyzer':
|
||||||
specifier: 15.3.0-canary.33
|
specifier: 15.3.0-canary.39
|
||||||
version: 15.3.0-canary.33
|
version: 15.3.0-canary.39
|
||||||
'@next/mdx':
|
'@next/mdx':
|
||||||
specifier: 15.3.0-canary.33
|
specifier: 15.3.0-canary.39
|
||||||
version: 15.3.0-canary.33(@mdx-js/loader@3.1.0(acorn@8.14.1))(@mdx-js/react@3.1.0(@types/react@19.1.0)(react@19.1.0))
|
version: 15.3.0-canary.39(@mdx-js/loader@3.1.0(acorn@8.14.1))(@mdx-js/react@3.1.0(@types/react@19.1.0)(react@19.1.0))
|
||||||
'@octokit/graphql':
|
'@octokit/graphql':
|
||||||
specifier: ^8.2.1
|
specifier: ^8.2.1
|
||||||
version: 8.2.1
|
version: 8.2.1
|
||||||
@ -61,7 +61,7 @@ importers:
|
|||||||
version: 4.2.2
|
version: 4.2.2
|
||||||
geist:
|
geist:
|
||||||
specifier: ^1.3.1
|
specifier: ^1.3.1
|
||||||
version: 1.3.1(next@15.3.0-canary.33(@babel/core@7.26.10)(babel-plugin-react-compiler@19.0.0-beta-e993439-20250328)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))
|
version: 1.3.1(next@15.3.0-canary.39(@babel/core@7.26.10)(babel-plugin-react-compiler@19.0.0-beta-e993439-20250328)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))
|
||||||
html-entities:
|
html-entities:
|
||||||
specifier: ^2.6.0
|
specifier: ^2.6.0
|
||||||
version: 2.6.0
|
version: 2.6.0
|
||||||
@ -72,8 +72,8 @@ importers:
|
|||||||
specifier: ^3.0.1
|
specifier: ^3.0.1
|
||||||
version: 3.0.1
|
version: 3.0.1
|
||||||
next:
|
next:
|
||||||
specifier: 15.3.0-canary.33
|
specifier: 15.3.0-canary.39
|
||||||
version: 15.3.0-canary.33(@babel/core@7.26.10)(babel-plugin-react-compiler@19.0.0-beta-e993439-20250328)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
|
version: 15.3.0-canary.39(@babel/core@7.26.10)(babel-plugin-react-compiler@19.0.0-beta-e993439-20250328)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
|
||||||
polished:
|
polished:
|
||||||
specifier: ^4.3.1
|
specifier: ^4.3.1
|
||||||
version: 4.3.1
|
version: 4.3.1
|
||||||
@ -100,7 +100,7 @@ importers:
|
|||||||
version: 2.4.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
|
version: 2.4.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
|
||||||
react-schemaorg:
|
react-schemaorg:
|
||||||
specifier: ^2.0.0
|
specifier: ^2.0.0
|
||||||
version: 2.0.0(react@19.1.0)(schema-dts@1.1.5)(typescript@5.8.2)
|
version: 2.0.0(react@19.1.0)(schema-dts@1.1.5)(typescript@5.8.3)
|
||||||
react-textarea-autosize:
|
react-textarea-autosize:
|
||||||
specifier: ^8.5.9
|
specifier: ^8.5.9
|
||||||
version: 8.5.9(@types/react@19.1.0)(react@19.1.0)
|
version: 8.5.9(@types/react@19.1.0)(react@19.1.0)
|
||||||
@ -160,17 +160,17 @@ importers:
|
|||||||
version: 5.0.0
|
version: 5.0.0
|
||||||
valibot:
|
valibot:
|
||||||
specifier: ^1.0.0
|
specifier: ^1.0.0
|
||||||
version: 1.0.0(typescript@5.8.2)
|
version: 1.0.0(typescript@5.8.3)
|
||||||
devDependencies:
|
devDependencies:
|
||||||
'@eslint/eslintrc':
|
'@eslint/eslintrc':
|
||||||
specifier: ^3.3.1
|
specifier: ^3.3.1
|
||||||
version: 3.3.1
|
version: 3.3.1
|
||||||
'@eslint/js':
|
'@eslint/js':
|
||||||
specifier: ^9.23.0
|
specifier: ^9.24.0
|
||||||
version: 9.23.0
|
version: 9.24.0
|
||||||
'@jakejarvis/eslint-config':
|
'@jakejarvis/eslint-config':
|
||||||
specifier: ^4.0.7
|
specifier: ^4.0.7
|
||||||
version: 4.0.7(eslint@9.23.0)
|
version: 4.0.7(eslint@9.24.0)
|
||||||
'@types/comma-number':
|
'@types/comma-number':
|
||||||
specifier: ^2.1.2
|
specifier: ^2.1.2
|
||||||
version: 2.1.2
|
version: 2.1.2
|
||||||
@ -199,38 +199,38 @@ importers:
|
|||||||
specifier: ^7.0.3
|
specifier: ^7.0.3
|
||||||
version: 7.0.3
|
version: 7.0.3
|
||||||
eslint:
|
eslint:
|
||||||
specifier: ^9.23.0
|
specifier: ^9.24.0
|
||||||
version: 9.23.0
|
version: 9.24.0
|
||||||
eslint-config-next:
|
eslint-config-next:
|
||||||
specifier: 15.3.0-canary.33
|
specifier: 15.3.0-canary.39
|
||||||
version: 15.3.0-canary.33(eslint@9.23.0)(typescript@5.8.2)
|
version: 15.3.0-canary.39(eslint@9.24.0)(typescript@5.8.3)
|
||||||
eslint-config-prettier:
|
eslint-config-prettier:
|
||||||
specifier: ^10.1.1
|
specifier: ^10.1.1
|
||||||
version: 10.1.1(eslint@9.23.0)
|
version: 10.1.1(eslint@9.24.0)
|
||||||
eslint-plugin-css-modules:
|
eslint-plugin-css-modules:
|
||||||
specifier: ^2.12.0
|
specifier: ^2.12.0
|
||||||
version: 2.12.0(eslint@9.23.0)
|
version: 2.12.0(eslint@9.24.0)
|
||||||
eslint-plugin-import:
|
eslint-plugin-import:
|
||||||
specifier: ^2.31.0
|
specifier: ^2.31.0
|
||||||
version: 2.31.0(@typescript-eslint/parser@8.29.0(eslint@9.23.0)(typescript@5.8.2))(eslint-import-resolver-typescript@3.10.0)(eslint@9.23.0)
|
version: 2.31.0(@typescript-eslint/parser@8.29.0(eslint@9.24.0)(typescript@5.8.3))(eslint-import-resolver-typescript@3.10.0)(eslint@9.24.0)
|
||||||
eslint-plugin-jsx-a11y:
|
eslint-plugin-jsx-a11y:
|
||||||
specifier: ^6.10.2
|
specifier: ^6.10.2
|
||||||
version: 6.10.2(eslint@9.23.0)
|
version: 6.10.2(eslint@9.24.0)
|
||||||
eslint-plugin-mdx:
|
eslint-plugin-mdx:
|
||||||
specifier: ^3.3.2
|
specifier: ^3.4.0
|
||||||
version: 3.3.2(eslint@9.23.0)
|
version: 3.4.0(eslint@9.24.0)
|
||||||
eslint-plugin-prettier:
|
eslint-plugin-prettier:
|
||||||
specifier: ^5.2.6
|
specifier: ^5.2.6
|
||||||
version: 5.2.6(eslint-config-prettier@10.1.1(eslint@9.23.0))(eslint@9.23.0)(prettier@3.5.3)
|
version: 5.2.6(eslint-config-prettier@10.1.1(eslint@9.24.0))(eslint@9.24.0)(prettier@3.5.3)
|
||||||
eslint-plugin-react:
|
eslint-plugin-react:
|
||||||
specifier: ^7.37.5
|
specifier: ^7.37.5
|
||||||
version: 7.37.5(eslint@9.23.0)
|
version: 7.37.5(eslint@9.24.0)
|
||||||
eslint-plugin-react-compiler:
|
eslint-plugin-react-compiler:
|
||||||
specifier: 19.0.0-beta-e993439-20250328
|
specifier: 19.0.0-beta-e993439-20250328
|
||||||
version: 19.0.0-beta-e993439-20250328(eslint@9.23.0)
|
version: 19.0.0-beta-e993439-20250328(eslint@9.24.0)
|
||||||
eslint-plugin-react-hooks:
|
eslint-plugin-react-hooks:
|
||||||
specifier: ^5.2.0
|
specifier: ^5.2.0
|
||||||
version: 5.2.0(eslint@9.23.0)
|
version: 5.2.0(eslint@9.24.0)
|
||||||
husky:
|
husky:
|
||||||
specifier: ^9.1.7
|
specifier: ^9.1.7
|
||||||
version: 9.1.7
|
version: 9.1.7
|
||||||
@ -244,20 +244,20 @@ importers:
|
|||||||
specifier: ^1.1.5
|
specifier: ^1.1.5
|
||||||
version: 1.1.5
|
version: 1.1.5
|
||||||
stylelint:
|
stylelint:
|
||||||
specifier: ^16.17.0
|
specifier: ^16.18.0
|
||||||
version: 16.17.0(typescript@5.8.2)
|
version: 16.18.0(typescript@5.8.3)
|
||||||
stylelint-config-css-modules:
|
stylelint-config-css-modules:
|
||||||
specifier: ^4.4.0
|
specifier: ^4.4.0
|
||||||
version: 4.4.0(stylelint@16.17.0(typescript@5.8.2))
|
version: 4.4.0(stylelint@16.18.0(typescript@5.8.3))
|
||||||
stylelint-config-standard:
|
stylelint-config-standard:
|
||||||
specifier: ^37.0.0
|
specifier: ^38.0.0
|
||||||
version: 37.0.0(stylelint@16.17.0(typescript@5.8.2))
|
version: 38.0.0(stylelint@16.18.0(typescript@5.8.3))
|
||||||
stylelint-prettier:
|
stylelint-prettier:
|
||||||
specifier: ^5.0.3
|
specifier: ^5.0.3
|
||||||
version: 5.0.3(prettier@3.5.3)(stylelint@16.17.0(typescript@5.8.2))
|
version: 5.0.3(prettier@3.5.3)(stylelint@16.18.0(typescript@5.8.3))
|
||||||
typescript:
|
typescript:
|
||||||
specifier: 5.8.2
|
specifier: 5.8.3
|
||||||
version: 5.8.2
|
version: 5.8.3
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
sharp:
|
sharp:
|
||||||
specifier: ^0.34.0
|
specifier: ^0.34.0
|
||||||
@ -433,8 +433,8 @@ packages:
|
|||||||
resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
|
resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
|
||||||
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
|
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
|
||||||
|
|
||||||
'@eslint/config-array@0.19.2':
|
'@eslint/config-array@0.20.0':
|
||||||
resolution: {integrity: sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==}
|
resolution: {integrity: sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
|
||||||
'@eslint/config-helpers@0.2.1':
|
'@eslint/config-helpers@0.2.1':
|
||||||
@ -453,8 +453,8 @@ packages:
|
|||||||
resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
|
resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
|
||||||
'@eslint/js@9.23.0':
|
'@eslint/js@9.24.0':
|
||||||
resolution: {integrity: sha512-35MJ8vCPU0ZMxo7zfev2pypqTwWTofFZO6m4KAtdoFhRpLJUpHTZZ+KB3C7Hb1d7bULYwO4lJXGCi5Se+8OMbw==}
|
resolution: {integrity: sha512-uIY/y3z0uvOGX8cp1C2fiC4+ZmBhp6yZWkojtHL1YEMnRt1Y63HB9TM17proGEmeG7HeUY+UP36F0aknKYTpYA==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
|
||||||
'@eslint/object-schema@2.1.6':
|
'@eslint/object-schema@2.1.6':
|
||||||
@ -762,17 +762,17 @@ packages:
|
|||||||
'@napi-rs/wasm-runtime@0.2.8':
|
'@napi-rs/wasm-runtime@0.2.8':
|
||||||
resolution: {integrity: sha512-OBlgKdX7gin7OIq4fadsjpg+cp2ZphvAIKucHsNfTdJiqdOmOEwQd/bHi0VwNrcw5xpBJyUw6cK/QilCqy1BSg==}
|
resolution: {integrity: sha512-OBlgKdX7gin7OIq4fadsjpg+cp2ZphvAIKucHsNfTdJiqdOmOEwQd/bHi0VwNrcw5xpBJyUw6cK/QilCqy1BSg==}
|
||||||
|
|
||||||
'@next/bundle-analyzer@15.3.0-canary.33':
|
'@next/bundle-analyzer@15.3.0-canary.39':
|
||||||
resolution: {integrity: sha512-n27QmTA0/AaoFD90hoC924r/OVMN6pSeUw8mGZkwQhSTh1Ns3thcHkoSP4UbZV2x5clxg4XBuH3qUwk2sMogtQ==}
|
resolution: {integrity: sha512-3pH7Eq3+I/lA7IHpZW0vdrXyi4RgPADtiMh4R6FdJnG39S2BXVN6h2ZnXLpY31vRLxffoTM53gMmuhSvLKb1rQ==}
|
||||||
|
|
||||||
'@next/env@15.3.0-canary.33':
|
'@next/env@15.3.0-canary.39':
|
||||||
resolution: {integrity: sha512-yPuNYRSFLHtulgy5Mge7tEy2GT/SmIcC7ZM9mJRFVtCsjjR6hqqOkLdbu/6cl7qT0x5ADRfpokT5Rf5bTzUumA==}
|
resolution: {integrity: sha512-yc9hhRqKX9K5oYtkUj9KiTr3pf5jVjvN9NWKFTVlFrNUHu+herrj4G4y7ptl0dQl3W0mliiKG1tf5GuTfvOccQ==}
|
||||||
|
|
||||||
'@next/eslint-plugin-next@15.3.0-canary.33':
|
'@next/eslint-plugin-next@15.3.0-canary.39':
|
||||||
resolution: {integrity: sha512-Wc9n4UkDUuayQnehXy5AT50YoqpLqmeuM9QGZvQajtjwaQ2u002X0wCrJuSOHemHx0NdiZ72CHpfjbaRPCVZnw==}
|
resolution: {integrity: sha512-lvHUu8y3a+JaeV61AJi1VKWZ43xT704RbdQhWk+1oYe3X9ZlUHkVc1oxWYZS4DQxjiuuYbvN45EhzInEEY9cww==}
|
||||||
|
|
||||||
'@next/mdx@15.3.0-canary.33':
|
'@next/mdx@15.3.0-canary.39':
|
||||||
resolution: {integrity: sha512-Zjc/0IUcAC3XQZj7NUAnR4XHZ2zH723DCrzDwzuIuIe4cYse8Sdy/a/6bGmFJCUdKzbNewGktIKDdNI8/uaS1g==}
|
resolution: {integrity: sha512-hGSoHuf0/65Xku8xqYXq0AYl+svoKFSb3PqZLW0qCv8uT7b2kR3/ih8SlVV10BYP1MZJSTIv582oAGNlC1rCrQ==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
'@mdx-js/loader': '>=0.15.0'
|
'@mdx-js/loader': '>=0.15.0'
|
||||||
'@mdx-js/react': '>=0.15.0'
|
'@mdx-js/react': '>=0.15.0'
|
||||||
@ -782,50 +782,50 @@ packages:
|
|||||||
'@mdx-js/react':
|
'@mdx-js/react':
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
'@next/swc-darwin-arm64@15.3.0-canary.33':
|
'@next/swc-darwin-arm64@15.3.0-canary.39':
|
||||||
resolution: {integrity: sha512-oWIA9x2llzFxrvnz/6ZNmiMb5yrfR6WfRKa28mo+6c4e9r7M0gKFpNd5RbDZF+fF2RTetrv57ze+Cm9KkTUrSg==}
|
resolution: {integrity: sha512-TxURM0fTY/+lyVnD95osghDvgk8sgEGGOtGf5/tK13RDK6lp0qYa+YuTv3wPBU9XukwW+mrttRd5jjb0JA3LZQ==}
|
||||||
engines: {node: '>= 10'}
|
engines: {node: '>= 10'}
|
||||||
cpu: [arm64]
|
cpu: [arm64]
|
||||||
os: [darwin]
|
os: [darwin]
|
||||||
|
|
||||||
'@next/swc-darwin-x64@15.3.0-canary.33':
|
'@next/swc-darwin-x64@15.3.0-canary.39':
|
||||||
resolution: {integrity: sha512-Yj1S17ww6ga6VCCNbWrA0URQsuT3Xb5dE5hToo7OGf2NOFN9zEVMYbDp6CO4/ugOB4BslR8tzSVyfKyytibdCQ==}
|
resolution: {integrity: sha512-zJb/HBhcbTpzkDZYh7t2dcfO7R6gKb5cDcGuPmh+B8iRDFty+Jq9AC8a0ZQXxvxfClhBBxoJNvDKDCc9g7P03Q==}
|
||||||
engines: {node: '>= 10'}
|
engines: {node: '>= 10'}
|
||||||
cpu: [x64]
|
cpu: [x64]
|
||||||
os: [darwin]
|
os: [darwin]
|
||||||
|
|
||||||
'@next/swc-linux-arm64-gnu@15.3.0-canary.33':
|
'@next/swc-linux-arm64-gnu@15.3.0-canary.39':
|
||||||
resolution: {integrity: sha512-nkV4cw4w23qzpkgG9ITeLnXvLhV/i4ixy6NGJGCxOsYSoGXA5O6KD+ZEoYSSxRuM7rVVUfu6dO7A+W9s74U63Q==}
|
resolution: {integrity: sha512-cGECywqD2wnKbaLqDqhLbEB4jQkHht4qwQ3JHosBJEbGlGaP84U3/S70oR1y01oK7PZ4Nb40d9ZPUTCLxHxrbQ==}
|
||||||
engines: {node: '>= 10'}
|
engines: {node: '>= 10'}
|
||||||
cpu: [arm64]
|
cpu: [arm64]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
|
|
||||||
'@next/swc-linux-arm64-musl@15.3.0-canary.33':
|
'@next/swc-linux-arm64-musl@15.3.0-canary.39':
|
||||||
resolution: {integrity: sha512-Y/se0HzGrooecLp1JWWgODK89te2+akTr88NkYKGW63rGVrJvevXDZ8jJQiSMCwUq+OAWBRoSyrswLI+/9VMOQ==}
|
resolution: {integrity: sha512-C6Cno7AxVe84sdKoYY424pP3cN7kSVZi83hcE01VQxCpeRnCNu32PuwIvUmIUoYoZ46oFm1SdNSbaNzGNguOOw==}
|
||||||
engines: {node: '>= 10'}
|
engines: {node: '>= 10'}
|
||||||
cpu: [arm64]
|
cpu: [arm64]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
|
|
||||||
'@next/swc-linux-x64-gnu@15.3.0-canary.33':
|
'@next/swc-linux-x64-gnu@15.3.0-canary.39':
|
||||||
resolution: {integrity: sha512-ENGvmcSyu51THeSG9i5vQmRVa6EriDmDVgnUGYm5o/X4lrU/xWNNMfpg9Sp0vjsyX3TCw6DSa5x+oZw8w4lPfw==}
|
resolution: {integrity: sha512-e+nMqLM/N5SXIXZXmctlyc2fss9dCcBbwClDa8Q0mdeGmSjB0o/iSphgNvlIkpaIjM9YmWqczgD9Uj5XbpRg5w==}
|
||||||
engines: {node: '>= 10'}
|
engines: {node: '>= 10'}
|
||||||
cpu: [x64]
|
cpu: [x64]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
|
|
||||||
'@next/swc-linux-x64-musl@15.3.0-canary.33':
|
'@next/swc-linux-x64-musl@15.3.0-canary.39':
|
||||||
resolution: {integrity: sha512-3UEL+tjNYKL/OG1hlR69C6S5voe9CXNX60O9Irl7TAZAxozdN+J3PrsfZ07QRduQIze0VORWpAh90LNnqXp1FQ==}
|
resolution: {integrity: sha512-p2p+d/lKbkMkngipKshgJwaZaV7WGazozK2DZn3djY4nVclClMsFBAtYRN1OsYDHtyIl9Wf3O5JtmXJZRIM5rg==}
|
||||||
engines: {node: '>= 10'}
|
engines: {node: '>= 10'}
|
||||||
cpu: [x64]
|
cpu: [x64]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
|
|
||||||
'@next/swc-win32-arm64-msvc@15.3.0-canary.33':
|
'@next/swc-win32-arm64-msvc@15.3.0-canary.39':
|
||||||
resolution: {integrity: sha512-FQHFbBi340K4uAR/M7FbzHMnucXsPyuns2PKMy9PLaZKgXiBDkVAurI4FRlIKspG35vddnqybn4K/1BMqW4mWg==}
|
resolution: {integrity: sha512-+ynh1yNzOLvcMEO1OmUeMMnOBm3vYrhjTMltc3FkfvTr1aAowlf3RmzTlJd9W9MkpFxLwGS6SAVvJ3jp9+Tr3A==}
|
||||||
engines: {node: '>= 10'}
|
engines: {node: '>= 10'}
|
||||||
cpu: [arm64]
|
cpu: [arm64]
|
||||||
os: [win32]
|
os: [win32]
|
||||||
|
|
||||||
'@next/swc-win32-x64-msvc@15.3.0-canary.33':
|
'@next/swc-win32-x64-msvc@15.3.0-canary.39':
|
||||||
resolution: {integrity: sha512-sctiGfzVmVMw+7995NzH5UM+kQr7bz0AJN07pVaubiT9ByRhcsp7WLnyWEVs2NYQWzVpHEfNwHs5PbZ4w0C3FQ==}
|
resolution: {integrity: sha512-iEEIPAvwKLpfZCU+u+pY7kZutCGrNPFv9YBpQfWNJeRT9oQqyYJPyUVzNr+T7NuwXl+akjMozDa8yw1QnFa1/Q==}
|
||||||
engines: {node: '>= 10'}
|
engines: {node: '>= 10'}
|
||||||
cpu: [x64]
|
cpu: [x64]
|
||||||
os: [win32]
|
os: [win32]
|
||||||
@ -1644,8 +1644,8 @@ packages:
|
|||||||
resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
|
resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
|
||||||
engines: {node: '>=12'}
|
engines: {node: '>=12'}
|
||||||
|
|
||||||
eslint-config-next@15.3.0-canary.33:
|
eslint-config-next@15.3.0-canary.39:
|
||||||
resolution: {integrity: sha512-V3/yanFbPrLekEv93yp5WhJhMcE3Y5Ah633N9GZ3ueWAyT/VFd7BO5VRnHZlC9E2eIUSkD0At2OCXqVWr3mfzw==}
|
resolution: {integrity: sha512-vCs5chgklYsUwOxtNXtSfbKLWFqYUrAd2pICQ7ltF356PCz+R46jPwl+ohkZ5qKfMBtUC8gxOswv/vqNSc05/A==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
eslint: ^7.23.0 || ^8.0.0 || ^9.0.0
|
eslint: ^7.23.0 || ^8.0.0 || ^9.0.0
|
||||||
typescript: '>=3.3.1'
|
typescript: '>=3.3.1'
|
||||||
@ -1675,8 +1675,8 @@ packages:
|
|||||||
eslint-plugin-import-x:
|
eslint-plugin-import-x:
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
eslint-mdx@3.3.2:
|
eslint-mdx@3.4.0:
|
||||||
resolution: {integrity: sha512-GFeLoM2S5Jx0iTXYvsp/do/UNTzV+vRNfNxRglelXb9ZNSfUFGHsq60ZcHyUvpxy2crPebCX4gzT/FRu/LJRbA==}
|
resolution: {integrity: sha512-sNffDEvt3fAEkrCntX0Kk/IWhHkfp0fhQ7/n30gQuIRm/FeUjLMkKkgAwlOFqxIMD4XJ03Iidmkf18EC8zTyYw==}
|
||||||
engines: {node: '>=18.0.0'}
|
engines: {node: '>=18.0.0'}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
eslint: '>=8.0.0'
|
eslint: '>=8.0.0'
|
||||||
@ -1728,8 +1728,8 @@ packages:
|
|||||||
peerDependencies:
|
peerDependencies:
|
||||||
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9
|
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9
|
||||||
|
|
||||||
eslint-plugin-mdx@3.3.2:
|
eslint-plugin-mdx@3.4.0:
|
||||||
resolution: {integrity: sha512-zBvxCiKzahbTRvWPONDZups1As5clGjv1OLOLnX/p+OwdrZdcwJ3tiBihu6xeZuem9u6iwMkr9kHVurcuzbTCg==}
|
resolution: {integrity: sha512-f/ot8rSp/telkW1joqe0y9XQigTrE99sQHqyqLYYVgGLtQvl54suDidepbiGsDF7Z5V9uyQPWpmY0Qu/ZMRzmg==}
|
||||||
engines: {node: '>=18.0.0'}
|
engines: {node: '>=18.0.0'}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
eslint: '>=8.0.0'
|
eslint: '>=8.0.0'
|
||||||
@ -1778,8 +1778,8 @@ packages:
|
|||||||
resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
|
resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
|
||||||
eslint@9.23.0:
|
eslint@9.24.0:
|
||||||
resolution: {integrity: sha512-jV7AbNoFPAY1EkFYpLq5bslU9NLNO8xnEeQXwErNibVryjk67wHVmddTBilc5srIttJDBrB0eMHKZBFbSIABCw==}
|
resolution: {integrity: sha512-eh/jxIEJyZrvbWRe4XuVclLPDYSYYYgLy5zXGGxD6j8zjSAxFEzI2fL/8xNq6O2yKqVt+eF2YhV+hxjV6UKXwQ==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@ -2739,13 +2739,13 @@ packages:
|
|||||||
natural-compare@1.4.0:
|
natural-compare@1.4.0:
|
||||||
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
|
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
|
||||||
|
|
||||||
next@15.3.0-canary.33:
|
next@15.3.0-canary.39:
|
||||||
resolution: {integrity: sha512-5Yc/W1hqOgibDoxnLiOvKHGId76/F+SrvlbZSw0LHhsmWYat6qAEaxv28vlHxj9OiRBqtrp0Ydsb+6RmYjv6IA==}
|
resolution: {integrity: sha512-GLY+9L25iHU5NxdafqCKPwZZrXgHWCVz/QAJn16yeGBNd1cy2q/QBrjU524bsqlfaat/w1uRb1aN/qx1bjwdXA==}
|
||||||
engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0}
|
engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
'@opentelemetry/api': ^1.1.0
|
'@opentelemetry/api': ^1.1.0
|
||||||
'@playwright/test': ^1.51.1
|
'@playwright/test': ^1.41.2
|
||||||
babel-plugin-react-compiler: '*'
|
babel-plugin-react-compiler: '*'
|
||||||
react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
|
react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
|
||||||
react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
|
react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
|
||||||
@ -3472,17 +3472,17 @@ packages:
|
|||||||
peerDependencies:
|
peerDependencies:
|
||||||
stylelint: ^14.5.1 || ^15.0.0 || ^16.0.0
|
stylelint: ^14.5.1 || ^15.0.0 || ^16.0.0
|
||||||
|
|
||||||
stylelint-config-recommended@15.0.0:
|
stylelint-config-recommended@16.0.0:
|
||||||
resolution: {integrity: sha512-9LejMFsat7L+NXttdHdTq94byn25TD+82bzGRiV1Pgasl99pWnwipXS5DguTpp3nP1XjvLXVnEJIuYBfsRjRkA==}
|
resolution: {integrity: sha512-4RSmPjQegF34wNcK1e1O3Uz91HN8P1aFdFzio90wNK9mjgAI19u5vsU868cVZboKzCaa5XbpvtTzAAGQAxpcXA==}
|
||||||
engines: {node: '>=18.12.0'}
|
engines: {node: '>=18.12.0'}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
stylelint: ^16.13.0
|
stylelint: ^16.16.0
|
||||||
|
|
||||||
stylelint-config-standard@37.0.0:
|
stylelint-config-standard@38.0.0:
|
||||||
resolution: {integrity: sha512-+6eBlbSTrOn/il2RlV0zYGQwRTkr+WtzuVSs1reaWGObxnxLpbcspCUYajVQHonVfxVw2U+h42azGhrBvcg8OA==}
|
resolution: {integrity: sha512-uj3JIX+dpFseqd/DJx8Gy3PcRAJhlEZ2IrlFOc4LUxBX/PNMEQ198x7LCOE2Q5oT9Vw8nyc4CIL78xSqPr6iag==}
|
||||||
engines: {node: '>=18.12.0'}
|
engines: {node: '>=18.12.0'}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
stylelint: ^16.13.0
|
stylelint: ^16.18.0
|
||||||
|
|
||||||
stylelint-prettier@5.0.3:
|
stylelint-prettier@5.0.3:
|
||||||
resolution: {integrity: sha512-B6V0oa35ekRrKZlf+6+jA+i50C4GXJ7X1PPmoCqSUoXN6BrNF6NhqqhanvkLjqw2qgvrS0wjdpeC+Tn06KN3jw==}
|
resolution: {integrity: sha512-B6V0oa35ekRrKZlf+6+jA+i50C4GXJ7X1PPmoCqSUoXN6BrNF6NhqqhanvkLjqw2qgvrS0wjdpeC+Tn06KN3jw==}
|
||||||
@ -3497,8 +3497,8 @@ packages:
|
|||||||
peerDependencies:
|
peerDependencies:
|
||||||
stylelint: ^16.0.2
|
stylelint: ^16.0.2
|
||||||
|
|
||||||
stylelint@16.17.0:
|
stylelint@16.18.0:
|
||||||
resolution: {integrity: sha512-I9OwVIWRMqVm2Br5iTbrfSqGRPWQUlvm6oXO1xZuYYu0Gpduy67N8wXOZv15p6E/JdlZiAtQaIoLKZEWk5hrjw==}
|
resolution: {integrity: sha512-OXb68qzesv7J70BSbFwfK3yTVLEVXiQ/ro6wUE4UrSbKCMjLLA02S8Qq3LC01DxKyVjk7z8xh35aB4JzO3/sNA==}
|
||||||
engines: {node: '>=18.12.0'}
|
engines: {node: '>=18.12.0'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
@ -3600,8 +3600,8 @@ packages:
|
|||||||
typedarray@0.0.6:
|
typedarray@0.0.6:
|
||||||
resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
|
resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
|
||||||
|
|
||||||
typescript@5.8.2:
|
typescript@5.8.3:
|
||||||
resolution: {integrity: sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==}
|
resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==}
|
||||||
engines: {node: '>=14.17'}
|
engines: {node: '>=14.17'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
@ -4041,14 +4041,14 @@ snapshots:
|
|||||||
|
|
||||||
'@emotion/hash@0.9.2': {}
|
'@emotion/hash@0.9.2': {}
|
||||||
|
|
||||||
'@eslint-community/eslint-utils@4.5.1(eslint@9.23.0)':
|
'@eslint-community/eslint-utils@4.5.1(eslint@9.24.0)':
|
||||||
dependencies:
|
dependencies:
|
||||||
eslint: 9.23.0
|
eslint: 9.24.0
|
||||||
eslint-visitor-keys: 3.4.3
|
eslint-visitor-keys: 3.4.3
|
||||||
|
|
||||||
'@eslint-community/regexpp@4.12.1': {}
|
'@eslint-community/regexpp@4.12.1': {}
|
||||||
|
|
||||||
'@eslint/config-array@0.19.2':
|
'@eslint/config-array@0.20.0':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@eslint/object-schema': 2.1.6
|
'@eslint/object-schema': 2.1.6
|
||||||
debug: 4.4.0
|
debug: 4.4.0
|
||||||
@ -4080,7 +4080,7 @@ snapshots:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
'@eslint/js@9.23.0': {}
|
'@eslint/js@9.24.0': {}
|
||||||
|
|
||||||
'@eslint/object-schema@2.1.6': {}
|
'@eslint/object-schema@2.1.6': {}
|
||||||
|
|
||||||
@ -4270,9 +4270,9 @@ snapshots:
|
|||||||
wrap-ansi: 8.1.0
|
wrap-ansi: 8.1.0
|
||||||
wrap-ansi-cjs: wrap-ansi@7.0.0
|
wrap-ansi-cjs: wrap-ansi@7.0.0
|
||||||
|
|
||||||
'@jakejarvis/eslint-config@4.0.7(eslint@9.23.0)':
|
'@jakejarvis/eslint-config@4.0.7(eslint@9.24.0)':
|
||||||
dependencies:
|
dependencies:
|
||||||
eslint: 9.23.0
|
eslint: 9.24.0
|
||||||
|
|
||||||
'@jridgewell/gen-mapping@0.3.8':
|
'@jridgewell/gen-mapping@0.3.8':
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -4352,48 +4352,48 @@ snapshots:
|
|||||||
'@tybys/wasm-util': 0.9.0
|
'@tybys/wasm-util': 0.9.0
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
'@next/bundle-analyzer@15.3.0-canary.33':
|
'@next/bundle-analyzer@15.3.0-canary.39':
|
||||||
dependencies:
|
dependencies:
|
||||||
webpack-bundle-analyzer: 4.10.1
|
webpack-bundle-analyzer: 4.10.1
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- bufferutil
|
- bufferutil
|
||||||
- utf-8-validate
|
- utf-8-validate
|
||||||
|
|
||||||
'@next/env@15.3.0-canary.33': {}
|
'@next/env@15.3.0-canary.39': {}
|
||||||
|
|
||||||
'@next/eslint-plugin-next@15.3.0-canary.33':
|
'@next/eslint-plugin-next@15.3.0-canary.39':
|
||||||
dependencies:
|
dependencies:
|
||||||
fast-glob: 3.3.1
|
fast-glob: 3.3.1
|
||||||
|
|
||||||
'@next/mdx@15.3.0-canary.33(@mdx-js/loader@3.1.0(acorn@8.14.1))(@mdx-js/react@3.1.0(@types/react@19.1.0)(react@19.1.0))':
|
'@next/mdx@15.3.0-canary.39(@mdx-js/loader@3.1.0(acorn@8.14.1))(@mdx-js/react@3.1.0(@types/react@19.1.0)(react@19.1.0))':
|
||||||
dependencies:
|
dependencies:
|
||||||
source-map: 0.7.4
|
source-map: 0.7.4
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
'@mdx-js/loader': 3.1.0(acorn@8.14.1)
|
'@mdx-js/loader': 3.1.0(acorn@8.14.1)
|
||||||
'@mdx-js/react': 3.1.0(@types/react@19.1.0)(react@19.1.0)
|
'@mdx-js/react': 3.1.0(@types/react@19.1.0)(react@19.1.0)
|
||||||
|
|
||||||
'@next/swc-darwin-arm64@15.3.0-canary.33':
|
'@next/swc-darwin-arm64@15.3.0-canary.39':
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
'@next/swc-darwin-x64@15.3.0-canary.33':
|
'@next/swc-darwin-x64@15.3.0-canary.39':
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
'@next/swc-linux-arm64-gnu@15.3.0-canary.33':
|
'@next/swc-linux-arm64-gnu@15.3.0-canary.39':
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
'@next/swc-linux-arm64-musl@15.3.0-canary.33':
|
'@next/swc-linux-arm64-musl@15.3.0-canary.39':
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
'@next/swc-linux-x64-gnu@15.3.0-canary.33':
|
'@next/swc-linux-x64-gnu@15.3.0-canary.39':
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
'@next/swc-linux-x64-musl@15.3.0-canary.33':
|
'@next/swc-linux-x64-musl@15.3.0-canary.39':
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
'@next/swc-win32-arm64-msvc@15.3.0-canary.33':
|
'@next/swc-win32-arm64-msvc@15.3.0-canary.39':
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
'@next/swc-win32-x64-msvc@15.3.0-canary.33':
|
'@next/swc-win32-x64-msvc@15.3.0-canary.39':
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
'@nodelib/fs.scandir@2.1.5':
|
'@nodelib/fs.scandir@2.1.5':
|
||||||
@ -4628,32 +4628,32 @@ snapshots:
|
|||||||
|
|
||||||
'@types/unist@3.0.3': {}
|
'@types/unist@3.0.3': {}
|
||||||
|
|
||||||
'@typescript-eslint/eslint-plugin@8.29.0(@typescript-eslint/parser@8.29.0(eslint@9.23.0)(typescript@5.8.2))(eslint@9.23.0)(typescript@5.8.2)':
|
'@typescript-eslint/eslint-plugin@8.29.0(@typescript-eslint/parser@8.29.0(eslint@9.24.0)(typescript@5.8.3))(eslint@9.24.0)(typescript@5.8.3)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@eslint-community/regexpp': 4.12.1
|
'@eslint-community/regexpp': 4.12.1
|
||||||
'@typescript-eslint/parser': 8.29.0(eslint@9.23.0)(typescript@5.8.2)
|
'@typescript-eslint/parser': 8.29.0(eslint@9.24.0)(typescript@5.8.3)
|
||||||
'@typescript-eslint/scope-manager': 8.29.0
|
'@typescript-eslint/scope-manager': 8.29.0
|
||||||
'@typescript-eslint/type-utils': 8.29.0(eslint@9.23.0)(typescript@5.8.2)
|
'@typescript-eslint/type-utils': 8.29.0(eslint@9.24.0)(typescript@5.8.3)
|
||||||
'@typescript-eslint/utils': 8.29.0(eslint@9.23.0)(typescript@5.8.2)
|
'@typescript-eslint/utils': 8.29.0(eslint@9.24.0)(typescript@5.8.3)
|
||||||
'@typescript-eslint/visitor-keys': 8.29.0
|
'@typescript-eslint/visitor-keys': 8.29.0
|
||||||
eslint: 9.23.0
|
eslint: 9.24.0
|
||||||
graphemer: 1.4.0
|
graphemer: 1.4.0
|
||||||
ignore: 5.3.2
|
ignore: 5.3.2
|
||||||
natural-compare: 1.4.0
|
natural-compare: 1.4.0
|
||||||
ts-api-utils: 2.1.0(typescript@5.8.2)
|
ts-api-utils: 2.1.0(typescript@5.8.3)
|
||||||
typescript: 5.8.2
|
typescript: 5.8.3
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
'@typescript-eslint/parser@8.29.0(eslint@9.23.0)(typescript@5.8.2)':
|
'@typescript-eslint/parser@8.29.0(eslint@9.24.0)(typescript@5.8.3)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/scope-manager': 8.29.0
|
'@typescript-eslint/scope-manager': 8.29.0
|
||||||
'@typescript-eslint/types': 8.29.0
|
'@typescript-eslint/types': 8.29.0
|
||||||
'@typescript-eslint/typescript-estree': 8.29.0(typescript@5.8.2)
|
'@typescript-eslint/typescript-estree': 8.29.0(typescript@5.8.3)
|
||||||
'@typescript-eslint/visitor-keys': 8.29.0
|
'@typescript-eslint/visitor-keys': 8.29.0
|
||||||
debug: 4.4.0
|
debug: 4.4.0
|
||||||
eslint: 9.23.0
|
eslint: 9.24.0
|
||||||
typescript: 5.8.2
|
typescript: 5.8.3
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
@ -4662,20 +4662,20 @@ snapshots:
|
|||||||
'@typescript-eslint/types': 8.29.0
|
'@typescript-eslint/types': 8.29.0
|
||||||
'@typescript-eslint/visitor-keys': 8.29.0
|
'@typescript-eslint/visitor-keys': 8.29.0
|
||||||
|
|
||||||
'@typescript-eslint/type-utils@8.29.0(eslint@9.23.0)(typescript@5.8.2)':
|
'@typescript-eslint/type-utils@8.29.0(eslint@9.24.0)(typescript@5.8.3)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/typescript-estree': 8.29.0(typescript@5.8.2)
|
'@typescript-eslint/typescript-estree': 8.29.0(typescript@5.8.3)
|
||||||
'@typescript-eslint/utils': 8.29.0(eslint@9.23.0)(typescript@5.8.2)
|
'@typescript-eslint/utils': 8.29.0(eslint@9.24.0)(typescript@5.8.3)
|
||||||
debug: 4.4.0
|
debug: 4.4.0
|
||||||
eslint: 9.23.0
|
eslint: 9.24.0
|
||||||
ts-api-utils: 2.1.0(typescript@5.8.2)
|
ts-api-utils: 2.1.0(typescript@5.8.3)
|
||||||
typescript: 5.8.2
|
typescript: 5.8.3
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
'@typescript-eslint/types@8.29.0': {}
|
'@typescript-eslint/types@8.29.0': {}
|
||||||
|
|
||||||
'@typescript-eslint/typescript-estree@8.29.0(typescript@5.8.2)':
|
'@typescript-eslint/typescript-estree@8.29.0(typescript@5.8.3)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/types': 8.29.0
|
'@typescript-eslint/types': 8.29.0
|
||||||
'@typescript-eslint/visitor-keys': 8.29.0
|
'@typescript-eslint/visitor-keys': 8.29.0
|
||||||
@ -4684,19 +4684,19 @@ snapshots:
|
|||||||
is-glob: 4.0.3
|
is-glob: 4.0.3
|
||||||
minimatch: 9.0.5
|
minimatch: 9.0.5
|
||||||
semver: 7.7.1
|
semver: 7.7.1
|
||||||
ts-api-utils: 2.1.0(typescript@5.8.2)
|
ts-api-utils: 2.1.0(typescript@5.8.3)
|
||||||
typescript: 5.8.2
|
typescript: 5.8.3
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
'@typescript-eslint/utils@8.29.0(eslint@9.23.0)(typescript@5.8.2)':
|
'@typescript-eslint/utils@8.29.0(eslint@9.24.0)(typescript@5.8.3)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@eslint-community/eslint-utils': 4.5.1(eslint@9.23.0)
|
'@eslint-community/eslint-utils': 4.5.1(eslint@9.24.0)
|
||||||
'@typescript-eslint/scope-manager': 8.29.0
|
'@typescript-eslint/scope-manager': 8.29.0
|
||||||
'@typescript-eslint/types': 8.29.0
|
'@typescript-eslint/types': 8.29.0
|
||||||
'@typescript-eslint/typescript-estree': 8.29.0(typescript@5.8.2)
|
'@typescript-eslint/typescript-estree': 8.29.0(typescript@5.8.3)
|
||||||
eslint: 9.23.0
|
eslint: 9.24.0
|
||||||
typescript: 5.8.2
|
typescript: 5.8.3
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
@ -5035,14 +5035,14 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
toggle-selection: 1.0.6
|
toggle-selection: 1.0.6
|
||||||
|
|
||||||
cosmiconfig@9.0.0(typescript@5.8.2):
|
cosmiconfig@9.0.0(typescript@5.8.3):
|
||||||
dependencies:
|
dependencies:
|
||||||
env-paths: 2.2.1
|
env-paths: 2.2.1
|
||||||
import-fresh: 3.3.1
|
import-fresh: 3.3.1
|
||||||
js-yaml: 4.1.0
|
js-yaml: 4.1.0
|
||||||
parse-json: 5.2.0
|
parse-json: 5.2.0
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
typescript: 5.8.2
|
typescript: 5.8.3
|
||||||
|
|
||||||
countup.js@2.8.0: {}
|
countup.js@2.8.0: {}
|
||||||
|
|
||||||
@ -5308,29 +5308,29 @@ snapshots:
|
|||||||
|
|
||||||
escape-string-regexp@5.0.0: {}
|
escape-string-regexp@5.0.0: {}
|
||||||
|
|
||||||
eslint-config-next@15.3.0-canary.33(eslint@9.23.0)(typescript@5.8.2):
|
eslint-config-next@15.3.0-canary.39(eslint@9.24.0)(typescript@5.8.3):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@next/eslint-plugin-next': 15.3.0-canary.33
|
'@next/eslint-plugin-next': 15.3.0-canary.39
|
||||||
'@rushstack/eslint-patch': 1.11.0
|
'@rushstack/eslint-patch': 1.11.0
|
||||||
'@typescript-eslint/eslint-plugin': 8.29.0(@typescript-eslint/parser@8.29.0(eslint@9.23.0)(typescript@5.8.2))(eslint@9.23.0)(typescript@5.8.2)
|
'@typescript-eslint/eslint-plugin': 8.29.0(@typescript-eslint/parser@8.29.0(eslint@9.24.0)(typescript@5.8.3))(eslint@9.24.0)(typescript@5.8.3)
|
||||||
'@typescript-eslint/parser': 8.29.0(eslint@9.23.0)(typescript@5.8.2)
|
'@typescript-eslint/parser': 8.29.0(eslint@9.24.0)(typescript@5.8.3)
|
||||||
eslint: 9.23.0
|
eslint: 9.24.0
|
||||||
eslint-import-resolver-node: 0.3.9
|
eslint-import-resolver-node: 0.3.9
|
||||||
eslint-import-resolver-typescript: 3.10.0(eslint-plugin-import@2.31.0)(eslint@9.23.0)
|
eslint-import-resolver-typescript: 3.10.0(eslint-plugin-import@2.31.0)(eslint@9.24.0)
|
||||||
eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.29.0(eslint@9.23.0)(typescript@5.8.2))(eslint-import-resolver-typescript@3.10.0)(eslint@9.23.0)
|
eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.29.0(eslint@9.24.0)(typescript@5.8.3))(eslint-import-resolver-typescript@3.10.0)(eslint@9.24.0)
|
||||||
eslint-plugin-jsx-a11y: 6.10.2(eslint@9.23.0)
|
eslint-plugin-jsx-a11y: 6.10.2(eslint@9.24.0)
|
||||||
eslint-plugin-react: 7.37.5(eslint@9.23.0)
|
eslint-plugin-react: 7.37.5(eslint@9.24.0)
|
||||||
eslint-plugin-react-hooks: 5.2.0(eslint@9.23.0)
|
eslint-plugin-react-hooks: 5.2.0(eslint@9.24.0)
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
typescript: 5.8.2
|
typescript: 5.8.3
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- eslint-import-resolver-webpack
|
- eslint-import-resolver-webpack
|
||||||
- eslint-plugin-import-x
|
- eslint-plugin-import-x
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
eslint-config-prettier@10.1.1(eslint@9.23.0):
|
eslint-config-prettier@10.1.1(eslint@9.24.0):
|
||||||
dependencies:
|
dependencies:
|
||||||
eslint: 9.23.0
|
eslint: 9.24.0
|
||||||
|
|
||||||
eslint-import-resolver-node@0.3.9:
|
eslint-import-resolver-node@0.3.9:
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -5340,26 +5340,26 @@ snapshots:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
eslint-import-resolver-typescript@3.10.0(eslint-plugin-import@2.31.0)(eslint@9.23.0):
|
eslint-import-resolver-typescript@3.10.0(eslint-plugin-import@2.31.0)(eslint@9.24.0):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@nolyfill/is-core-module': 1.0.39
|
'@nolyfill/is-core-module': 1.0.39
|
||||||
debug: 4.4.0
|
debug: 4.4.0
|
||||||
eslint: 9.23.0
|
eslint: 9.24.0
|
||||||
get-tsconfig: 4.10.0
|
get-tsconfig: 4.10.0
|
||||||
is-bun-module: 2.0.0
|
is-bun-module: 2.0.0
|
||||||
stable-hash: 0.0.5
|
stable-hash: 0.0.5
|
||||||
tinyglobby: 0.2.12
|
tinyglobby: 0.2.12
|
||||||
unrs-resolver: 1.3.3
|
unrs-resolver: 1.3.3
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.29.0(eslint@9.23.0)(typescript@5.8.2))(eslint-import-resolver-typescript@3.10.0)(eslint@9.23.0)
|
eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.29.0(eslint@9.24.0)(typescript@5.8.3))(eslint-import-resolver-typescript@3.10.0)(eslint@9.24.0)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
eslint-mdx@3.3.2(eslint@9.23.0):
|
eslint-mdx@3.4.0(eslint@9.24.0):
|
||||||
dependencies:
|
dependencies:
|
||||||
acorn: 8.14.1
|
acorn: 8.14.1
|
||||||
acorn-jsx: 5.3.2(acorn@8.14.1)
|
acorn-jsx: 5.3.2(acorn@8.14.1)
|
||||||
eslint: 9.23.0
|
eslint: 9.24.0
|
||||||
espree: 10.3.0
|
espree: 10.3.0
|
||||||
estree-util-visit: 2.0.0
|
estree-util-visit: 2.0.0
|
||||||
remark-mdx: 3.1.0
|
remark-mdx: 3.1.0
|
||||||
@ -5376,24 +5376,24 @@ snapshots:
|
|||||||
- bluebird
|
- bluebird
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
eslint-module-utils@2.12.0(@typescript-eslint/parser@8.29.0(eslint@9.23.0)(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.0)(eslint@9.23.0):
|
eslint-module-utils@2.12.0(@typescript-eslint/parser@8.29.0(eslint@9.24.0)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.0)(eslint@9.24.0):
|
||||||
dependencies:
|
dependencies:
|
||||||
debug: 3.2.7
|
debug: 3.2.7
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
'@typescript-eslint/parser': 8.29.0(eslint@9.23.0)(typescript@5.8.2)
|
'@typescript-eslint/parser': 8.29.0(eslint@9.24.0)(typescript@5.8.3)
|
||||||
eslint: 9.23.0
|
eslint: 9.24.0
|
||||||
eslint-import-resolver-node: 0.3.9
|
eslint-import-resolver-node: 0.3.9
|
||||||
eslint-import-resolver-typescript: 3.10.0(eslint-plugin-import@2.31.0)(eslint@9.23.0)
|
eslint-import-resolver-typescript: 3.10.0(eslint-plugin-import@2.31.0)(eslint@9.24.0)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
eslint-plugin-css-modules@2.12.0(eslint@9.23.0):
|
eslint-plugin-css-modules@2.12.0(eslint@9.24.0):
|
||||||
dependencies:
|
dependencies:
|
||||||
eslint: 9.23.0
|
eslint: 9.24.0
|
||||||
gonzales-pe: 4.3.0
|
gonzales-pe: 4.3.0
|
||||||
lodash: 4.17.21
|
lodash: 4.17.21
|
||||||
|
|
||||||
eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.29.0(eslint@9.23.0)(typescript@5.8.2))(eslint-import-resolver-typescript@3.10.0)(eslint@9.23.0):
|
eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.29.0(eslint@9.24.0)(typescript@5.8.3))(eslint-import-resolver-typescript@3.10.0)(eslint@9.24.0):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@rtsao/scc': 1.1.0
|
'@rtsao/scc': 1.1.0
|
||||||
array-includes: 3.1.8
|
array-includes: 3.1.8
|
||||||
@ -5402,9 +5402,9 @@ snapshots:
|
|||||||
array.prototype.flatmap: 1.3.3
|
array.prototype.flatmap: 1.3.3
|
||||||
debug: 3.2.7
|
debug: 3.2.7
|
||||||
doctrine: 2.1.0
|
doctrine: 2.1.0
|
||||||
eslint: 9.23.0
|
eslint: 9.24.0
|
||||||
eslint-import-resolver-node: 0.3.9
|
eslint-import-resolver-node: 0.3.9
|
||||||
eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.29.0(eslint@9.23.0)(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.0)(eslint@9.23.0)
|
eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.29.0(eslint@9.24.0)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.0)(eslint@9.24.0)
|
||||||
hasown: 2.0.2
|
hasown: 2.0.2
|
||||||
is-core-module: 2.16.1
|
is-core-module: 2.16.1
|
||||||
is-glob: 4.0.3
|
is-glob: 4.0.3
|
||||||
@ -5416,13 +5416,13 @@ snapshots:
|
|||||||
string.prototype.trimend: 1.0.9
|
string.prototype.trimend: 1.0.9
|
||||||
tsconfig-paths: 3.15.0
|
tsconfig-paths: 3.15.0
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
'@typescript-eslint/parser': 8.29.0(eslint@9.23.0)(typescript@5.8.2)
|
'@typescript-eslint/parser': 8.29.0(eslint@9.24.0)(typescript@5.8.3)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- eslint-import-resolver-typescript
|
- eslint-import-resolver-typescript
|
||||||
- eslint-import-resolver-webpack
|
- eslint-import-resolver-webpack
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
eslint-plugin-jsx-a11y@6.10.2(eslint@9.23.0):
|
eslint-plugin-jsx-a11y@6.10.2(eslint@9.24.0):
|
||||||
dependencies:
|
dependencies:
|
||||||
aria-query: 5.3.2
|
aria-query: 5.3.2
|
||||||
array-includes: 3.1.8
|
array-includes: 3.1.8
|
||||||
@ -5432,7 +5432,7 @@ snapshots:
|
|||||||
axobject-query: 4.1.0
|
axobject-query: 4.1.0
|
||||||
damerau-levenshtein: 1.0.8
|
damerau-levenshtein: 1.0.8
|
||||||
emoji-regex: 9.2.2
|
emoji-regex: 9.2.2
|
||||||
eslint: 9.23.0
|
eslint: 9.24.0
|
||||||
hasown: 2.0.2
|
hasown: 2.0.2
|
||||||
jsx-ast-utils: 3.3.5
|
jsx-ast-utils: 3.3.5
|
||||||
language-tags: 1.0.9
|
language-tags: 1.0.9
|
||||||
@ -5441,11 +5441,13 @@ snapshots:
|
|||||||
safe-regex-test: 1.1.0
|
safe-regex-test: 1.1.0
|
||||||
string.prototype.includes: 2.0.1
|
string.prototype.includes: 2.0.1
|
||||||
|
|
||||||
eslint-plugin-mdx@3.3.2(eslint@9.23.0):
|
eslint-plugin-mdx@3.4.0(eslint@9.24.0):
|
||||||
dependencies:
|
dependencies:
|
||||||
eslint: 9.23.0
|
eslint: 9.24.0
|
||||||
eslint-mdx: 3.3.2(eslint@9.23.0)
|
eslint-mdx: 3.4.0(eslint@9.24.0)
|
||||||
mdast-util-from-markdown: 2.0.2
|
mdast-util-from-markdown: 2.0.2
|
||||||
|
mdast-util-mdx: 3.0.0
|
||||||
|
micromark-extension-mdxjs: 3.0.0
|
||||||
remark-mdx: 3.1.0
|
remark-mdx: 3.1.0
|
||||||
remark-parse: 11.0.0
|
remark-parse: 11.0.0
|
||||||
remark-stringify: 11.0.0
|
remark-stringify: 11.0.0
|
||||||
@ -5458,32 +5460,32 @@ snapshots:
|
|||||||
- remark-lint-file-extension
|
- remark-lint-file-extension
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
eslint-plugin-prettier@5.2.6(eslint-config-prettier@10.1.1(eslint@9.23.0))(eslint@9.23.0)(prettier@3.5.3):
|
eslint-plugin-prettier@5.2.6(eslint-config-prettier@10.1.1(eslint@9.24.0))(eslint@9.24.0)(prettier@3.5.3):
|
||||||
dependencies:
|
dependencies:
|
||||||
eslint: 9.23.0
|
eslint: 9.24.0
|
||||||
prettier: 3.5.3
|
prettier: 3.5.3
|
||||||
prettier-linter-helpers: 1.0.0
|
prettier-linter-helpers: 1.0.0
|
||||||
synckit: 0.11.2
|
synckit: 0.11.2
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
eslint-config-prettier: 10.1.1(eslint@9.23.0)
|
eslint-config-prettier: 10.1.1(eslint@9.24.0)
|
||||||
|
|
||||||
eslint-plugin-react-compiler@19.0.0-beta-e993439-20250328(eslint@9.23.0):
|
eslint-plugin-react-compiler@19.0.0-beta-e993439-20250328(eslint@9.24.0):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/core': 7.26.10
|
'@babel/core': 7.26.10
|
||||||
'@babel/parser': 7.27.0
|
'@babel/parser': 7.27.0
|
||||||
'@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.26.10)
|
'@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.26.10)
|
||||||
eslint: 9.23.0
|
eslint: 9.24.0
|
||||||
hermes-parser: 0.25.1
|
hermes-parser: 0.25.1
|
||||||
zod: 3.24.2
|
zod: 3.24.2
|
||||||
zod-validation-error: 3.4.0(zod@3.24.2)
|
zod-validation-error: 3.4.0(zod@3.24.2)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
eslint-plugin-react-hooks@5.2.0(eslint@9.23.0):
|
eslint-plugin-react-hooks@5.2.0(eslint@9.24.0):
|
||||||
dependencies:
|
dependencies:
|
||||||
eslint: 9.23.0
|
eslint: 9.24.0
|
||||||
|
|
||||||
eslint-plugin-react@7.37.5(eslint@9.23.0):
|
eslint-plugin-react@7.37.5(eslint@9.24.0):
|
||||||
dependencies:
|
dependencies:
|
||||||
array-includes: 3.1.8
|
array-includes: 3.1.8
|
||||||
array.prototype.findlast: 1.2.5
|
array.prototype.findlast: 1.2.5
|
||||||
@ -5491,7 +5493,7 @@ snapshots:
|
|||||||
array.prototype.tosorted: 1.1.4
|
array.prototype.tosorted: 1.1.4
|
||||||
doctrine: 2.1.0
|
doctrine: 2.1.0
|
||||||
es-iterator-helpers: 1.2.1
|
es-iterator-helpers: 1.2.1
|
||||||
eslint: 9.23.0
|
eslint: 9.24.0
|
||||||
estraverse: 5.3.0
|
estraverse: 5.3.0
|
||||||
hasown: 2.0.2
|
hasown: 2.0.2
|
||||||
jsx-ast-utils: 3.3.5
|
jsx-ast-utils: 3.3.5
|
||||||
@ -5514,15 +5516,15 @@ snapshots:
|
|||||||
|
|
||||||
eslint-visitor-keys@4.2.0: {}
|
eslint-visitor-keys@4.2.0: {}
|
||||||
|
|
||||||
eslint@9.23.0:
|
eslint@9.24.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@eslint-community/eslint-utils': 4.5.1(eslint@9.23.0)
|
'@eslint-community/eslint-utils': 4.5.1(eslint@9.24.0)
|
||||||
'@eslint-community/regexpp': 4.12.1
|
'@eslint-community/regexpp': 4.12.1
|
||||||
'@eslint/config-array': 0.19.2
|
'@eslint/config-array': 0.20.0
|
||||||
'@eslint/config-helpers': 0.2.1
|
'@eslint/config-helpers': 0.2.1
|
||||||
'@eslint/core': 0.12.0
|
'@eslint/core': 0.12.0
|
||||||
'@eslint/eslintrc': 3.3.1
|
'@eslint/eslintrc': 3.3.1
|
||||||
'@eslint/js': 9.23.0
|
'@eslint/js': 9.24.0
|
||||||
'@eslint/plugin-kit': 0.2.8
|
'@eslint/plugin-kit': 0.2.8
|
||||||
'@humanfs/node': 0.16.6
|
'@humanfs/node': 0.16.6
|
||||||
'@humanwhocodes/module-importer': 1.0.1
|
'@humanwhocodes/module-importer': 1.0.1
|
||||||
@ -5727,9 +5729,9 @@ snapshots:
|
|||||||
|
|
||||||
functions-have-names@1.2.3: {}
|
functions-have-names@1.2.3: {}
|
||||||
|
|
||||||
geist@1.3.1(next@15.3.0-canary.33(@babel/core@7.26.10)(babel-plugin-react-compiler@19.0.0-beta-e993439-20250328)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)):
|
geist@1.3.1(next@15.3.0-canary.39(@babel/core@7.26.10)(babel-plugin-react-compiler@19.0.0-beta-e993439-20250328)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)):
|
||||||
dependencies:
|
dependencies:
|
||||||
next: 15.3.0-canary.33(@babel/core@7.26.10)(babel-plugin-react-compiler@19.0.0-beta-e993439-20250328)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
|
next: 15.3.0-canary.39(@babel/core@7.26.10)(babel-plugin-react-compiler@19.0.0-beta-e993439-20250328)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
|
||||||
|
|
||||||
gensync@1.0.0-beta.2: {}
|
gensync@1.0.0-beta.2: {}
|
||||||
|
|
||||||
@ -6862,9 +6864,9 @@ snapshots:
|
|||||||
|
|
||||||
natural-compare@1.4.0: {}
|
natural-compare@1.4.0: {}
|
||||||
|
|
||||||
next@15.3.0-canary.33(@babel/core@7.26.10)(babel-plugin-react-compiler@19.0.0-beta-e993439-20250328)(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
|
next@15.3.0-canary.39(@babel/core@7.26.10)(babel-plugin-react-compiler@19.0.0-beta-e993439-20250328)(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@next/env': 15.3.0-canary.33
|
'@next/env': 15.3.0-canary.39
|
||||||
'@swc/counter': 0.1.3
|
'@swc/counter': 0.1.3
|
||||||
'@swc/helpers': 0.5.15
|
'@swc/helpers': 0.5.15
|
||||||
busboy: 1.6.0
|
busboy: 1.6.0
|
||||||
@ -6874,14 +6876,14 @@ snapshots:
|
|||||||
react-dom: 19.1.0(react@19.1.0)
|
react-dom: 19.1.0(react@19.1.0)
|
||||||
styled-jsx: 5.1.6(@babel/core@7.26.10)(react@19.1.0)
|
styled-jsx: 5.1.6(@babel/core@7.26.10)(react@19.1.0)
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
'@next/swc-darwin-arm64': 15.3.0-canary.33
|
'@next/swc-darwin-arm64': 15.3.0-canary.39
|
||||||
'@next/swc-darwin-x64': 15.3.0-canary.33
|
'@next/swc-darwin-x64': 15.3.0-canary.39
|
||||||
'@next/swc-linux-arm64-gnu': 15.3.0-canary.33
|
'@next/swc-linux-arm64-gnu': 15.3.0-canary.39
|
||||||
'@next/swc-linux-arm64-musl': 15.3.0-canary.33
|
'@next/swc-linux-arm64-musl': 15.3.0-canary.39
|
||||||
'@next/swc-linux-x64-gnu': 15.3.0-canary.33
|
'@next/swc-linux-x64-gnu': 15.3.0-canary.39
|
||||||
'@next/swc-linux-x64-musl': 15.3.0-canary.33
|
'@next/swc-linux-x64-musl': 15.3.0-canary.39
|
||||||
'@next/swc-win32-arm64-msvc': 15.3.0-canary.33
|
'@next/swc-win32-arm64-msvc': 15.3.0-canary.39
|
||||||
'@next/swc-win32-x64-msvc': 15.3.0-canary.33
|
'@next/swc-win32-x64-msvc': 15.3.0-canary.39
|
||||||
babel-plugin-react-compiler: 19.0.0-beta-e993439-20250328
|
babel-plugin-react-compiler: 19.0.0-beta-e993439-20250328
|
||||||
sharp: 0.33.5
|
sharp: 0.33.5
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
@ -7185,11 +7187,11 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
fast-deep-equal: 2.0.1
|
fast-deep-equal: 2.0.1
|
||||||
|
|
||||||
react-schemaorg@2.0.0(react@19.1.0)(schema-dts@1.1.5)(typescript@5.8.2):
|
react-schemaorg@2.0.0(react@19.1.0)(schema-dts@1.1.5)(typescript@5.8.3):
|
||||||
dependencies:
|
dependencies:
|
||||||
react: 19.1.0
|
react: 19.1.0
|
||||||
schema-dts: 1.1.5
|
schema-dts: 1.1.5
|
||||||
typescript: 5.8.2
|
typescript: 5.8.3
|
||||||
|
|
||||||
react-textarea-autosize@8.5.9(@types/react@19.1.0)(react@19.1.0):
|
react-textarea-autosize@8.5.9(@types/react@19.1.0)(react@19.1.0):
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -7812,28 +7814,28 @@ snapshots:
|
|||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
'@babel/core': 7.26.10
|
'@babel/core': 7.26.10
|
||||||
|
|
||||||
stylelint-config-css-modules@4.4.0(stylelint@16.17.0(typescript@5.8.2)):
|
stylelint-config-css-modules@4.4.0(stylelint@16.18.0(typescript@5.8.3)):
|
||||||
dependencies:
|
dependencies:
|
||||||
stylelint: 16.17.0(typescript@5.8.2)
|
stylelint: 16.18.0(typescript@5.8.3)
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
stylelint-scss: 6.11.1(stylelint@16.17.0(typescript@5.8.2))
|
stylelint-scss: 6.11.1(stylelint@16.18.0(typescript@5.8.3))
|
||||||
|
|
||||||
stylelint-config-recommended@15.0.0(stylelint@16.17.0(typescript@5.8.2)):
|
stylelint-config-recommended@16.0.0(stylelint@16.18.0(typescript@5.8.3)):
|
||||||
dependencies:
|
dependencies:
|
||||||
stylelint: 16.17.0(typescript@5.8.2)
|
stylelint: 16.18.0(typescript@5.8.3)
|
||||||
|
|
||||||
stylelint-config-standard@37.0.0(stylelint@16.17.0(typescript@5.8.2)):
|
stylelint-config-standard@38.0.0(stylelint@16.18.0(typescript@5.8.3)):
|
||||||
dependencies:
|
dependencies:
|
||||||
stylelint: 16.17.0(typescript@5.8.2)
|
stylelint: 16.18.0(typescript@5.8.3)
|
||||||
stylelint-config-recommended: 15.0.0(stylelint@16.17.0(typescript@5.8.2))
|
stylelint-config-recommended: 16.0.0(stylelint@16.18.0(typescript@5.8.3))
|
||||||
|
|
||||||
stylelint-prettier@5.0.3(prettier@3.5.3)(stylelint@16.17.0(typescript@5.8.2)):
|
stylelint-prettier@5.0.3(prettier@3.5.3)(stylelint@16.18.0(typescript@5.8.3)):
|
||||||
dependencies:
|
dependencies:
|
||||||
prettier: 3.5.3
|
prettier: 3.5.3
|
||||||
prettier-linter-helpers: 1.0.0
|
prettier-linter-helpers: 1.0.0
|
||||||
stylelint: 16.17.0(typescript@5.8.2)
|
stylelint: 16.18.0(typescript@5.8.3)
|
||||||
|
|
||||||
stylelint-scss@6.11.1(stylelint@16.17.0(typescript@5.8.2)):
|
stylelint-scss@6.11.1(stylelint@16.18.0(typescript@5.8.3)):
|
||||||
dependencies:
|
dependencies:
|
||||||
css-tree: 3.1.0
|
css-tree: 3.1.0
|
||||||
is-plain-object: 5.0.0
|
is-plain-object: 5.0.0
|
||||||
@ -7843,10 +7845,10 @@ snapshots:
|
|||||||
postcss-resolve-nested-selector: 0.1.6
|
postcss-resolve-nested-selector: 0.1.6
|
||||||
postcss-selector-parser: 7.1.0
|
postcss-selector-parser: 7.1.0
|
||||||
postcss-value-parser: 4.2.0
|
postcss-value-parser: 4.2.0
|
||||||
stylelint: 16.17.0(typescript@5.8.2)
|
stylelint: 16.18.0(typescript@5.8.3)
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
stylelint@16.17.0(typescript@5.8.2):
|
stylelint@16.18.0(typescript@5.8.3):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3)
|
'@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3)
|
||||||
'@csstools/css-tokenizer': 3.0.3
|
'@csstools/css-tokenizer': 3.0.3
|
||||||
@ -7855,7 +7857,7 @@ snapshots:
|
|||||||
'@dual-bundle/import-meta-resolve': 4.1.0
|
'@dual-bundle/import-meta-resolve': 4.1.0
|
||||||
balanced-match: 2.0.0
|
balanced-match: 2.0.0
|
||||||
colord: 2.9.3
|
colord: 2.9.3
|
||||||
cosmiconfig: 9.0.0(typescript@5.8.2)
|
cosmiconfig: 9.0.0(typescript@5.8.3)
|
||||||
css-functions-list: 3.2.3
|
css-functions-list: 3.2.3
|
||||||
css-tree: 3.1.0
|
css-tree: 3.1.0
|
||||||
debug: 4.4.0
|
debug: 4.4.0
|
||||||
@ -7947,9 +7949,9 @@ snapshots:
|
|||||||
|
|
||||||
trough@2.2.0: {}
|
trough@2.2.0: {}
|
||||||
|
|
||||||
ts-api-utils@2.1.0(typescript@5.8.2):
|
ts-api-utils@2.1.0(typescript@5.8.3):
|
||||||
dependencies:
|
dependencies:
|
||||||
typescript: 5.8.2
|
typescript: 5.8.3
|
||||||
|
|
||||||
tsconfig-paths@3.15.0:
|
tsconfig-paths@3.15.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -8001,7 +8003,7 @@ snapshots:
|
|||||||
|
|
||||||
typedarray@0.0.6: {}
|
typedarray@0.0.6: {}
|
||||||
|
|
||||||
typescript@5.8.2: {}
|
typescript@5.8.3: {}
|
||||||
|
|
||||||
unbox-primitive@1.1.0:
|
unbox-primitive@1.1.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -8161,9 +8163,9 @@ snapshots:
|
|||||||
kleur: 4.1.5
|
kleur: 4.1.5
|
||||||
sade: 1.8.1
|
sade: 1.8.1
|
||||||
|
|
||||||
valibot@1.0.0(typescript@5.8.2):
|
valibot@1.0.0(typescript@5.8.3):
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
typescript: 5.8.2
|
typescript: 5.8.3
|
||||||
|
|
||||||
validate-npm-package-license@3.0.4:
|
validate-npm-package-license@3.0.4:
|
||||||
dependencies:
|
dependencies:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user