diff --git a/package.json b/package.json
index 1a085d2c5..ffa2a4f83 100644
--- a/package.json
+++ b/package.json
@@ -31,5 +31,10 @@
"nx": "19.7.3",
"typescript": "catalog:"
},
- "packageManager": "pnpm@9.5.0"
+ "packageManager": "pnpm@9.5.0",
+ "pnpm": {
+ "patchedDependencies": {
+ "@rspress/plugin-llms@2.0.0-beta.3": "patches/@rspress__plugin-llms@2.0.0-beta.3.patch"
+ }
+ }
}
diff --git a/patches/@rspress__plugin-llms@2.0.0-beta.3.patch b/patches/@rspress__plugin-llms@2.0.0-beta.3.patch
new file mode 100644
index 000000000..01c32195f
--- /dev/null
+++ b/patches/@rspress__plugin-llms@2.0.0-beta.3.patch
@@ -0,0 +1,39 @@
+diff --git a/dist/index.js b/dist/index.js
+index aef8541261e1efef20f5e3ab4042efebfd20a2d7..72d3b24f6d1c1174db13bab555d10ca9018b0f28 100644
+--- a/dist/index.js
++++ b/dist/index.js
+@@ -377,19 +377,26 @@ function pluginLlms(options = {}) {
+ if (isProd) routes.push(..._routes);
+ },
+ beforeBuild (config) {
+- const configSidebar = config?.themeConfig?.locales?.map((i)=>i.sidebar).reduce((prev, curr)=>{
+- Object.assign(prev, curr);
+- return prev;
++ const locales = config.themeConfig?.locales;
++ const isMultiLang = locales && locales.length > 0;
++ const sidebars = isMultiLang
++ ? locales.map((i) => i.sidebar)
++ : [config.themeConfig?.sidebar];
++
++ const configSidebar = sidebars.reduce((prev, curr) => {
++ Object.assign(prev, curr);
++ return prev;
+ }, {});
+ Object.assign(sidebar, configSidebar);
+- const configNav = config.themeConfig?.locales?.filter((i)=>Boolean(i.nav))?.map((i)=>({
+- nav: i.nav,
+- lang: i.lang
+- }));
++ const configNav = isMultiLang
++ ? locales
++ .filter((i) => Boolean(i.nav))
++ .map((i) => ({ nav: i.nav, lang: i.lang }))
++ : [{ nav: config.themeConfig?.nav, lang: config.lang ?? '' }];
+ nav.push(...configNav);
+ titleRef.current = config.title;
+ descriptionRef.current = config.description;
+- langRef.current = config.lang;
++ langRef.current = config.lang ?? '';
+ baseRef.current = config.base ?? '/';
+ docDirectoryRef.current = config.root ?? 'docs';
+ },
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 6896acd68..58e04c8f2 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -38,6 +38,11 @@ catalogs:
specifier: 4.3.3
version: 4.3.3
+patchedDependencies:
+ '@rspress/plugin-llms@2.0.0-beta.3':
+ hash: y76d3h7tmx5mdnkw7odsqesguu
+ path: patches/@rspress__plugin-llms@2.0.0-beta.3.patch
+
importers:
.:
@@ -204,7 +209,7 @@ importers:
version: 5.8.3
vitest:
specifier: ^2.0.5
- version: 2.0.5(@types/node@20.14.11)(lightningcss@1.28.2)(sass-embedded@1.83.4)(terser@5.31.3)
+ version: 2.0.5(@types/node@20.14.11)(lightningcss@1.28.2)(terser@5.31.3)
webpack:
specifier: 'catalog:'
version: 5.99.5
@@ -289,7 +294,7 @@ importers:
version: link:../../packages/repack
'@module-federation/enhanced':
specifier: 0.12.0
- version: 0.12.0(@rspack/core@1.3.5(@swc/helpers@0.5.17))(react-dom@18.3.1(react@19.0.0))(react@19.0.0)(typescript@5.8.3)(webpack@5.99.5)
+ version: 0.12.0(@rspack/core@1.3.5(@swc/helpers@0.5.17))(react-dom@19.1.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)(webpack@5.99.5)
'@module-federation/runtime':
specifier: 0.12.0
version: 0.12.0
@@ -503,10 +508,10 @@ importers:
version: 18.19.41
nativewind:
specifier: ^4.1.23
- version: 4.1.23(react-native-reanimated@3.17.4(@babel/core@7.25.2)(react-native@0.79.1(@babel/core@7.25.2)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@19.0.10)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.1(@babel/core@7.25.2)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@19.0.10)(react@19.0.0))(react@19.0.0))(react-native-svg@15.11.2(react-native@0.79.1(@babel/core@7.25.2)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@19.0.10)(react@19.0.0))(react@19.0.0))(react-native@0.79.1(@babel/core@7.25.2)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@19.0.10)(react@19.0.0))(react@19.0.0)(tailwindcss@3.4.17)
+ version: 4.1.23(react-native-reanimated@3.17.4(@babel/core@7.25.2)(react-native@0.79.1(@babel/core@7.25.2)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@19.0.10)(react@19.1.0))(react@19.1.0))(react-native@0.79.1(@babel/core@7.25.2)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@19.0.10)(react@19.1.0))(react@19.1.0)(tailwindcss@3.4.17)
react-native-css-interop:
specifier: ^0.1.22
- version: 0.1.22(react-native-reanimated@3.17.4(@babel/core@7.25.2)(react-native@0.79.1(@babel/core@7.25.2)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@19.0.10)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.1(@babel/core@7.25.2)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@19.0.10)(react@19.0.0))(react@19.0.0))(react-native-svg@15.11.2(react-native@0.79.1(@babel/core@7.25.2)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@19.0.10)(react@19.0.0))(react@19.0.0))(react-native@0.79.1(@babel/core@7.25.2)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@19.0.10)(react@19.0.0))(react@19.0.0)(tailwindcss@3.4.17)
+ version: 0.1.22(react-native-reanimated@3.17.4(@babel/core@7.25.2)(react-native@0.79.1(@babel/core@7.25.2)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@19.0.10)(react@19.1.0))(react@19.1.0))(react-native@0.79.1(@babel/core@7.25.2)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@19.0.10)(react@19.1.0))(react@19.1.0)(tailwindcss@3.4.17)
packages/plugin-reanimated:
devDependencies:
@@ -606,7 +611,7 @@ importers:
version: 7.24.8(@babel/core@7.25.2)
'@module-federation/enhanced':
specifier: 0.8.9
- version: 0.8.9(@rspack/core@1.3.5(@swc/helpers@0.5.17))(react-dom@18.3.1(react@19.0.0))(react@19.0.0)(typescript@5.8.3)(webpack@5.99.5)
+ version: 0.8.9(@rspack/core@1.3.5(@swc/helpers@0.5.17))(react-dom@19.1.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)(webpack@5.99.5)
'@module-federation/sdk':
specifier: 0.6.10
version: 0.6.10
@@ -701,20 +706,26 @@ importers:
website:
dependencies:
'@callstack/rspress-theme':
- specifier: ^0.0.2
- version: 0.0.2(react@19.0.0)
+ specifier: ^0.0.3
+ version: 0.0.3(react@19.1.0)
+ '@rspress/plugin-llms':
+ specifier: 2.0.0-beta.3
+ version: 2.0.0-beta.3(patch_hash=y76d3h7tmx5mdnkw7odsqesguu)(@rspress/core@2.0.0-beta.3(@types/react@18.3.3)(acorn@8.14.0)(webpack@5.99.5))
rsbuild-plugin-open-graph:
specifier: ^1.0.2
- version: 1.0.2(@rsbuild/core@1.3.5)
+ version: 1.0.2(@rsbuild/core@1.3.13)
rspress:
- specifier: 1.42.0
- version: 1.42.0(webpack@5.99.5)
+ specifier: 2.0.0-beta.3
+ version: 2.0.0-beta.3(@types/react@18.3.3)(acorn@8.14.0)(webpack@5.99.5)
rspress-plugin-font-open-sans:
specifier: ^1.0.0
version: 1.0.0
+ rspress-plugin-sitemap:
+ specifier: ^1.1.1
+ version: 1.1.1
rspress-plugin-vercel-analytics:
specifier: ^0.3.0
- version: 0.3.0(react@19.0.0)(rspress@1.42.0(webpack@5.99.5))
+ version: 0.3.0(react@19.1.0)(rspress@2.0.0-beta.3(@types/react@18.3.3)(acorn@8.14.0)(webpack@5.99.5))
devDependencies:
'@types/node':
specifier: ^18
@@ -1540,11 +1551,8 @@ packages:
cpu: [x64]
os: [win32]
- '@bufbuild/protobuf@2.2.0':
- resolution: {integrity: sha512-+imAQkHf7U/Rwvu0wk1XWgsP3WnpCWmK7B48f0XqSNzgk64+grljTKC7pnO/xBiEMUziF7vKRfbBnOQhg126qQ==}
-
- '@callstack/rspress-theme@0.0.2':
- resolution: {integrity: sha512-gMg00zFUB6dqqYIbv8HcJAhN7fBKPwaMqKlzawY5v35Lb17LUiSzBOwayha8OtEw8+reAYVEpb1jImdlx4SDXQ==}
+ '@callstack/rspress-theme@0.0.3':
+ resolution: {integrity: sha512-gkZTqaGY0kh4+/2GNq3W0mzjQoB6mllrjcfoV0b2M9IRwHu550mftWnUKB9IPRsLRpXra3VxV/FqTSowUpatZw==}
peerDependencies:
react: ^18.3.1
@@ -1619,6 +1627,11 @@ packages:
resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==}
engines: {node: '>=10.0.0'}
+ '@dr.pogodin/react-helmet@2.0.4':
+ resolution: {integrity: sha512-NXSgzBKiyvHF4UvR40fKRB0gTIlezfnyvmTqJKZy5Gbtv23SXMuneZbtovvG/sKxbOYPVn1lZl211bTKhd5g4w==}
+ peerDependencies:
+ react: '19'
+
'@emnapi/core@1.2.0':
resolution: {integrity: sha512-E7Vgw78I93we4ZWdYCb4DGAwRROGkMIXk7/y87UmANR+J6qsWusmC3gLt0H+O0KOt5e6O38U8oJamgbudrES/w==}
@@ -2073,19 +2086,28 @@ packages:
resolution: {integrity: sha512-3lBouSuF7CqlseLB+FKES0K4FQ02JrbEoRtJhxnsyB1s5v4AP03gsoohN8jp7DcOImhaR9scYdztq3/sLfk/qQ==}
engines: {node: '>=14.18.0'}
- '@mdx-js/loader@2.3.0':
- resolution: {integrity: sha512-IqsscXh7Q3Rzb+f5DXYk0HU71PK+WuFsEhf+mSV3fOhpLcEpgsHvTQ2h0T6TlZ5gHOaBeFjkXwB52by7ypMyNg==}
+ '@mdx-js/loader@3.1.0':
+ resolution: {integrity: sha512-xU/lwKdOyfXtQGqn3VnJjlDrmKXEvMi1mgYxVmukEUtVycIz1nh7oQ40bKTd4cA7rLStqu0740pnhGYxGoqsCg==}
peerDependencies:
- webpack: '>=4'
+ webpack: '>=5'
+ peerDependenciesMeta:
+ webpack:
+ optional: true
- '@mdx-js/mdx@2.3.0':
- resolution: {integrity: sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA==}
+ '@mdx-js/mdx@3.1.0':
+ resolution: {integrity: sha512-/QxEhPAvGwbQmy1Px8F899L5Uc2KZ6JtXwlCgJmjSTBedwOZkByYcBG4GceIGPXRDsmfxhHazuS+hlOShRLeDw==}
'@mdx-js/react@2.3.0':
resolution: {integrity: sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g==}
peerDependencies:
react: '>=16'
+ '@mdx-js/react@3.1.0':
+ resolution: {integrity: sha512-QjHtSaoameoalGnKDT3FoIl4+9RwyTmo9ZJGBdLOks/YOiWHoRDI3PUwEzOE7kEmGcV3AFcp9K6dYu9rEuKLAQ==}
+ peerDependencies:
+ '@types/react': '>=16'
+ react: '>=16'
+
'@modern-js/node-bundle-require@2.65.1':
resolution: {integrity: sha512-XpEkciVEfDbkkLUI662ZFlI9tXsUQtLXk4NRJDBGosNnk9uL2XszmC8sKsdCSLK8AYuPW2w6MTVWuJsOR0EU8A==}
@@ -2168,6 +2190,9 @@ packages:
'@module-federation/error-codes@0.12.0':
resolution: {integrity: sha512-DEXQjopcBuGzp/NA9OVtASO0uZ6grVK5TIe0PjrbDRyZDxVaYQXKrISxBLOE+3nSIELE98tYpfxptm8WC9A8zA==}
+ '@module-federation/error-codes@0.13.0':
+ resolution: {integrity: sha512-4soAMLr7qcVWuvCsyRmBbiBfuhxmnDeyl+qzjMx8VurQgL+XQDQJapM9RXngNGT4g8FoCq9o7rM5YWNgFFNUiw==}
+
'@module-federation/error-codes@0.8.4':
resolution: {integrity: sha512-55LYmrDdKb4jt+qr8qE8U3al62ZANp3FhfVaNPOaAmdTh0jHdD8M3yf5HKFlr5xVkVO4eV/F/J2NCfpbh+pEXQ==}
@@ -2226,6 +2251,9 @@ packages:
'@module-federation/runtime-core@0.12.0':
resolution: {integrity: sha512-373zBM54196KHURs/O8lry9trCAM3PPidvsF4YdrtahNc8YaQynml0mE3zdZeBnqP6H0/4OpPqMMjACI80Ht8w==}
+ '@module-federation/runtime-core@0.13.0':
+ resolution: {integrity: sha512-Oj/1p0mfxZ+8EbU7ND4gMvRmikFpIvPCbblOgat9N8ZIVAKYpTimCgMhzg4yRqAwzlGCVwnnW7XZ8UlA+Zqrvg==}
+
'@module-federation/runtime-core@0.6.17':
resolution: {integrity: sha512-PXFN/TT9f64Un6NQYqH1Z0QLhpytW15jkZvTEOV8W7Ed319BECFI0Rv4xAsAGa8zJGFoaM/c7QOQfdFXtKj5Og==}
@@ -2235,6 +2263,9 @@ packages:
'@module-federation/runtime-tools@0.12.0':
resolution: {integrity: sha512-hZ0R1gtHOgMDzM0QQ8WjRxo2DHzXzlTWOYMBdSivDYRTktpEtM/DXZrmJZuRYh9cvVmbIz5D/v9s6M44eLfHMA==}
+ '@module-federation/runtime-tools@0.13.0':
+ resolution: {integrity: sha512-6ECWX18yGrQKcmkrQoNPd5VEpxZP1SMaB/Bp55xlpEhsrpn4zHnriQluxDw6xldjSOLl1qbokfxwCwjS2OaEbg==}
+
'@module-federation/runtime-tools@0.8.4':
resolution: {integrity: sha512-fjVOsItJ1u5YY6E9FnS56UDwZgqEQUrWFnouRiPtK123LUuqUI9FH4redZoKWlE1PB0ir1Z3tnqy8eFYzPO38Q==}
@@ -2247,6 +2278,9 @@ packages:
'@module-federation/runtime@0.12.0':
resolution: {integrity: sha512-Cz9/7+gSvrdencwA8LXUMKnZdu0/flyN+yk6t3pkxfhvPJi3W65ZcalAKyOgyk2x8rEYrRSyEXu+/2DIFgrzmA==}
+ '@module-federation/runtime@0.13.0':
+ resolution: {integrity: sha512-Ne/3AEVWz6LL6G/i41O5MC6YYlg0SatNNqG/0XbuMAfyGM+llRmB6VKt0o2+JR4isxWuPNp97TbUkkfORit6Eg==}
+
'@module-federation/runtime@0.8.4':
resolution: {integrity: sha512-yZeZ7z2Rx4gv/0E97oLTF3V6N25vglmwXGgoeju/W2YjsFvWzVtCDI7zRRb0mJhU6+jmSM8jP1DeQGbea/AiZQ==}
@@ -2259,6 +2293,9 @@ packages:
'@module-federation/sdk@0.12.0':
resolution: {integrity: sha512-vh3GcG90fxjbkMghK7iSWcMayi/y8U5DxI6mhEFuz11St3y1UgQO2TZYephL8nISFBld7DdiqAkimx+6Hb3hjQ==}
+ '@module-federation/sdk@0.13.0':
+ resolution: {integrity: sha512-JdMZaPD+EQvMJYS+/8/8QjaAHQ3qljogvioXBsAuedcStu/msn5e1Fswc0G34kXY9ixs2hUPZU2cAllfSKWIBQ==}
+
'@module-federation/sdk@0.6.10':
resolution: {integrity: sha512-i6ofHnImB4zCn/bt7Ft0zh9o/PxvsJj8Wc88EAeJg4IrY6+bzwwo1G2h44w1Yt3go4skZZFQCK0UxoaV6l/t/A==}
@@ -2280,6 +2317,9 @@ packages:
'@module-federation/webpack-bundler-runtime@0.12.0':
resolution: {integrity: sha512-IUAz0BdCGuaKIPcMTSD/dWxGjS0K4j4bBhAupRnDMMMOvJnZivVwj0KvmTeIUfyG+lEDNWLVP2pDVQEvGcCy4Q==}
+ '@module-federation/webpack-bundler-runtime@0.13.0':
+ resolution: {integrity: sha512-ycgAsFeCTo+3GR8JxkhCyg2UZm6Au98ISdLTdVXYphO4UDcO/KjqyJen1LXEslkpCEohDj68Prei2fUHRruK6g==}
+
'@module-federation/webpack-bundler-runtime@0.8.4':
resolution: {integrity: sha512-HggROJhvHPUX7uqBD/XlajGygMNM1DG0+4OAkk8MBQe4a18QzrRNzZt6XQbRTSG4OaEoyRWhQHvYD3Yps405tQ==}
@@ -2651,23 +2691,18 @@ packages:
engines: {node: '>=16.7.0'}
hasBin: true
+ '@rsbuild/core@1.3.13':
+ resolution: {integrity: sha512-FIRV1ncOYYLCEGJDL8ZPKyH4J15lJS54KfeGf3Eacy5zUhT+dAkI2+0ZWH/s9NlaXA/vlRq6SJF9Z2Y96dO13Q==}
+ engines: {node: '>=16.10.0'}
+ hasBin: true
+
'@rsbuild/core@1.3.5':
resolution: {integrity: sha512-Fn6nJ4YvLO2UtFcoSPxgJoiUdS0Iix7X1BsyZ+DCj3SGpVCxp3Td9x58F5uhcRraMZFPB91wvcS/OabYwT3N2w==}
engines: {node: '>=16.7.0'}
hasBin: true
- '@rsbuild/plugin-less@1.1.0':
- resolution: {integrity: sha512-F834dobNDIdyGj5trMxIqzm/qf54Kj5KVDxeuB3TTj64mzq5fHJnR4aI/iYIliUwICG1/l2MliKr5sR34Kb7eA==}
- peerDependencies:
- '@rsbuild/core': 1.x
-
- '@rsbuild/plugin-react@1.1.0':
- resolution: {integrity: sha512-uqdRoV2V91G1XIA14dAmxqYTlTDVf0ktpE7TgwG29oQ2j+DerF1kh29WPHK9HvGE34JTfaBrsme2Zmb6bGD0cw==}
- peerDependencies:
- '@rsbuild/core': 1.x
-
- '@rsbuild/plugin-sass@1.2.0':
- resolution: {integrity: sha512-Em1OKVJEnheohmxO9SJqfueah+8G1X344j9/CFNfOPIKm45FwdQMuivmUZfXiM8btG0ixbqW1U2qU0rwKJ/TZw==}
+ '@rsbuild/plugin-react@1.1.1':
+ resolution: {integrity: sha512-gkATKrOQauXMMtrYA5jbTQkhmYTE0VXoknPLtVpiXtwDbBUwgX23LFf1XJ51YOwqYpP7g5SfPEMgD2FENtCq0A==}
peerDependencies:
'@rsbuild/core': 1.x
@@ -2728,6 +2763,11 @@ packages:
cpu: [arm64]
os: [darwin]
+ '@rspack/binding-darwin-arm64@1.3.7':
+ resolution: {integrity: sha512-/5k4H0M7vvu7uorhc0OQKdQ7ybcjcJA//ptfYB646Ca/XY8FI1T/H88prPNrLNu97FGqUT4QWo5AHj01XymfDw==}
+ cpu: [arm64]
+ os: [darwin]
+
'@rspack/binding-darwin-x64@1.2.2':
resolution: {integrity: sha512-vG5s7FkEvwrGLfksyDRHwKAHUkhZt1zHZZXJQn4gZKjTBonje8ezdc7IFlDiWpC4S+oBYp73nDWkUzkGRbSdcQ==}
cpu: [x64]
@@ -2743,6 +2783,11 @@ packages:
cpu: [x64]
os: [darwin]
+ '@rspack/binding-darwin-x64@1.3.7':
+ resolution: {integrity: sha512-/eNcZFDHxo5RVmIxgVM5zxCXmufeWpvviWJMDjhycS175nJb6103YWpu6H0lHgbj0GnHM/Q2VjVRFNhaGbXqdA==}
+ cpu: [x64]
+ os: [darwin]
+
'@rspack/binding-linux-arm64-gnu@1.2.2':
resolution: {integrity: sha512-VykY/kiYOzO8E1nYzfJ9+gQEHxb5B6lt5wa8M6xFi5B6jEGU+OsaGskmAZB9/GFImeFDHxDPvhUalI4R9p8O2Q==}
cpu: [arm64]
@@ -2758,6 +2803,11 @@ packages:
cpu: [arm64]
os: [linux]
+ '@rspack/binding-linux-arm64-gnu@1.3.7':
+ resolution: {integrity: sha512-bSxA4MgGOdSvf/nTqNMuLeeyWS4Okh1iPskGuyAv/Sdf7cGbflUyZe6+w7A9BZEFR0CVTfj3f8kt73N+lu72Kg==}
+ cpu: [arm64]
+ os: [linux]
+
'@rspack/binding-linux-arm64-musl@1.2.2':
resolution: {integrity: sha512-Z5vAC4wGfXi8XXZ6hs8Q06TYjr3zHf819HB4DI5i4C1eQTeKdZSyoFD0NHFG23bP4NWJffp8KhmoObcy9jBT5Q==}
cpu: [arm64]
@@ -2773,6 +2823,11 @@ packages:
cpu: [arm64]
os: [linux]
+ '@rspack/binding-linux-arm64-musl@1.3.7':
+ resolution: {integrity: sha512-i6QK6YodCA5R8/ShRylkyunwvNcRx/Q7af14jSCa7TPOi6pPoDUL2pmwGcJBk1uPc2wjQwAMZzfJjTWNjEyW2Q==}
+ cpu: [arm64]
+ os: [linux]
+
'@rspack/binding-linux-x64-gnu@1.2.2':
resolution: {integrity: sha512-o3pDaL+cH5EeRbDE9gZcdZpBgp5iXvYZBBhe8vZQllYgI4zN5MJEuleV7WplG3UwTXlgZg3Kht4RORSOPn96vg==}
cpu: [x64]
@@ -2788,6 +2843,11 @@ packages:
cpu: [x64]
os: [linux]
+ '@rspack/binding-linux-x64-gnu@1.3.7':
+ resolution: {integrity: sha512-6AmOHLOv4XAK7Y5cFDBtnetIZ44MqG8Q6wZ20zjql/khTxsRZa/edis/eUppGb8fy5gzi+qqSAznEZ+Qj3LMrQ==}
+ cpu: [x64]
+ os: [linux]
+
'@rspack/binding-linux-x64-musl@1.2.2':
resolution: {integrity: sha512-RE3e0xe4DdchHssttKzryDwjLkbrNk/4H59TkkWeGYJcLw41tmcOZVFQUOwKLUvXWVyif/vjvV/w1SMlqB4wQg==}
cpu: [x64]
@@ -2803,6 +2863,11 @@ packages:
cpu: [x64]
os: [linux]
+ '@rspack/binding-linux-x64-musl@1.3.7':
+ resolution: {integrity: sha512-rPt0c9UHp5AxWHhjziEtd2uwiWyzM4UZLFJV6hawBWOoIQf2uLSl3fp0HTqxpslfTh3uo5ymhHN/bV48m5THzg==}
+ cpu: [x64]
+ os: [linux]
+
'@rspack/binding-win32-arm64-msvc@1.2.2':
resolution: {integrity: sha512-R+PKBYn6uzTaDdVqTHvjqiJPBr5ZHg1wg5UmFDLNH9OklzVFyQh1JInSdJRb7lzfzTRz6bEkkwUFBPQK/CGScw==}
cpu: [arm64]
@@ -2818,6 +2883,11 @@ packages:
cpu: [arm64]
os: [win32]
+ '@rspack/binding-win32-arm64-msvc@1.3.7':
+ resolution: {integrity: sha512-+Db7NGBzad1dCcSm94uARkIIhbVv1+BXAl1duLBnYQMfqsu/pirsInE9wbp7WVUbSl2hmdRi9MYgWACjoReo4g==}
+ cpu: [arm64]
+ os: [win32]
+
'@rspack/binding-win32-ia32-msvc@1.2.2':
resolution: {integrity: sha512-dBqz3sRAGZ2f31FgzKLDvIRfq2haRP3X3XVCT0PsiMcvt7QJng+26aYYMy2THatd/nM8IwExYeitHWeiMBoruw==}
cpu: [ia32]
@@ -2833,6 +2903,11 @@ packages:
cpu: [ia32]
os: [win32]
+ '@rspack/binding-win32-ia32-msvc@1.3.7':
+ resolution: {integrity: sha512-VPqqC0U6FolGoonmZYBBiFyWjQ4+X+e/l/t4QZP2DRonlpE418+MdCxq2ldVGgvtxwERNlz61zxEX9yh/8KOfw==}
+ cpu: [ia32]
+ os: [win32]
+
'@rspack/binding-win32-x64-msvc@1.2.2':
resolution: {integrity: sha512-eeAvaN831KG553cMSHkVldyk6YQn4ujgRHov6r1wtREq7CD3/ka9LMkJUepCN85K7XtwYT0N4KpFIQyf5GTGoA==}
cpu: [x64]
@@ -2848,6 +2923,11 @@ packages:
cpu: [x64]
os: [win32]
+ '@rspack/binding-win32-x64-msvc@1.3.7':
+ resolution: {integrity: sha512-zi9tKxlq85lSYTb1sbEluLjZlkbjuoJoy2TaNzVlfNkmiJ6EiqBbyCWoPPBJRP6HQ9pG25W0y4NWKp7iVhiBvg==}
+ cpu: [x64]
+ os: [win32]
+
'@rspack/binding@1.2.2':
resolution: {integrity: sha512-GCZwpGFYlLTdJ2soPLwjw9z4LSZ+GdpbHNfBt3Cm/f/bAF8n6mZc7dHUqN893RFh7MPU17HNEL3fMw7XR+6pHg==}
@@ -2857,6 +2937,9 @@ packages:
'@rspack/binding@1.3.5':
resolution: {integrity: sha512-2oluCT+iBnTg0w7XfR8AmfkvgMPSuqEndzhrlHY//qgyyI04CW1lCMgsh+9wcSOUWUKYSOMCiGiVlYFtae5Lcg==}
+ '@rspack/binding@1.3.7':
+ resolution: {integrity: sha512-jSXLktIGmNNZssxT+fjZ31IyUO7lRoFrFO+XuqKlMpbnHE8yCrpaHE6rLyDPVO4Vnl6xx/df8usUXtZwIc4jrw==}
+
'@rspack/core@1.2.2':
resolution: {integrity: sha512-EeHAmY65Uj62hSbUKesbrcWGE7jfUI887RD03G++Gj8jS4WPHEu1TFODXNOXg6pa7zyIvs2BK0Bm16Kwz8AEaQ==}
engines: {node: '>=16.0.0'}
@@ -2893,6 +2976,15 @@ packages:
'@swc/helpers':
optional: true
+ '@rspack/core@1.3.7':
+ resolution: {integrity: sha512-InXnEmImLKkxzkY7XaAozycjMvS5myf/o3zu1rw5tNq3ONxWvW0QOHVTcrF0FbeKQ/jCOFSfdaoFjbXjdUs38w==}
+ engines: {node: '>=16.0.0'}
+ peerDependencies:
+ '@swc/helpers': '>=0.5.1'
+ peerDependenciesMeta:
+ '@swc/helpers':
+ optional: true
+
'@rspack/lite-tapable@1.0.1':
resolution: {integrity: sha512-VynGOEsVw2s8TAlLf/uESfrgfrq2+rcXB1muPJYBWbsm1Oa6r5qVQhjA5ggM6z/coYPrsVMgovl3Ff7Q7OCp1w==}
engines: {node: '>=16.0.0'}
@@ -2905,9 +2997,18 @@ packages:
react-refresh:
optional: true
- '@rspress/core@1.42.0':
- resolution: {integrity: sha512-QywyOcIG2QLJalzDEiIPPtisU8VZObumh45FAS1JykAE5qNXgmDsWHV59+u0vg0bncS+TKRQOnGYYEhLaekcYw==}
- engines: {node: '>=14.17.6'}
+ '@rspack/plugin-react-refresh@1.0.3':
+ resolution: {integrity: sha512-gGK197oIZaPFOTYZkWHZMWRdDlu03zIA3zcYuTKn5Ru6FyuQQu3KjprwDORTcYNHXZw188Exh3uhplM/d2ltIQ==}
+ peerDependencies:
+ react-refresh: '>=0.10.0 <1.0.0'
+ webpack-hot-middleware: 2.x
+ peerDependenciesMeta:
+ webpack-hot-middleware:
+ optional: true
+
+ '@rspress/core@2.0.0-beta.3':
+ resolution: {integrity: sha512-YVmHK+26by2VTieA6tkdzDQ8GYszGaRCI3COONr4Co0mAFfGn54zxnDLIq29/Ox7oVv8A7ZjfIp40AQr47No1w==}
+ engines: {node: '>=18.0.0'}
'@rspress/mdx-rs-darwin-arm64@0.6.6':
resolution: {integrity: sha512-fsuhUko2VJin9oZvGDEM8FWIisbhTe+ki8SiiVMqtl6OUtga9wB8F3JmsjVNg615lHp7FiT66Mvfbxweo+jjTQ==}
@@ -2961,34 +3062,43 @@ packages:
resolution: {integrity: sha512-NpNhTKBIlV3O6ADhoZkgHvBFvXMW2TYlIWmIT1ysJESUBqDpaN9H3Teve5fugjU2pQ2ORBZO6SQGKliMw/8m/Q==}
engines: {node: '>= 10'}
- '@rspress/plugin-auto-nav-sidebar@1.42.0':
- resolution: {integrity: sha512-+LEvY4T4He3UrAfMQr7fxlyMkBk1EsZZLM/RRB4VIh5vEVXqiGaXV+d4qwcEo8RbJCRzzNeS40FLWtj0z7D1Cw==}
- engines: {node: '>=14.17.6'}
+ '@rspress/plugin-auto-nav-sidebar@2.0.0-beta.3':
+ resolution: {integrity: sha512-gN/oIsmjiOw3i1jiq5VVlrHNFfp5eJnSlWaOjEOERXM5OijONo5U+GTHXIao17IylyAYJiLvGiw66eZq5yG+NA==}
+ engines: {node: '>=18.0.0'}
- '@rspress/plugin-container-syntax@1.42.0':
- resolution: {integrity: sha512-hxA6Vxl2M6+57kt+8jgjzrDhToIWZivWxpii7nq3Vz6YUeLPbMpRzPhpQFf919N4DZXI5O7Y04Yo9CqbGGQsrQ==}
- engines: {node: '>=14.17.6'}
+ '@rspress/plugin-container-syntax@2.0.0-beta.3':
+ resolution: {integrity: sha512-d7oPMbsQb+Wq2yUtuIuJ+hmfZKO1B6gAP2+CyBBmLTKWlJBC9N870MNyuq0aqiajDDnGpBHTzJ/55lQwksw5Lg==}
+ engines: {node: '>=18.0.0'}
- '@rspress/plugin-last-updated@1.42.0':
- resolution: {integrity: sha512-86jY63VbITlZ+zig1N8kYwD++bNkGagrFeKLtXy1jbF0jmxm/hdxopXj+hHi6Uy3JG6fUg4qkWma1X8Os/SvLg==}
- engines: {node: '>=14.17.6'}
+ '@rspress/plugin-last-updated@2.0.0-beta.3':
+ resolution: {integrity: sha512-8Q169M2SnyJ0U1NIl7SvrUGanBl1J/TGbxihsitp5SOseS7BKWTYm5+lnpPCy7QJsF64GfiLBb1uWD+kg/GzKg==}
+ engines: {node: '>=18.0.0'}
- '@rspress/plugin-medium-zoom@1.42.0':
- resolution: {integrity: sha512-KaEa7hROBGY9neD+Zm6abwqsueR6z1VlNPvAtYsK8Y9I1wvO4167WjxcACUTd63bNgWxghmZOfiMHbNlFtDXUA==}
- engines: {node: '>=14.17.6'}
+ '@rspress/plugin-llms@2.0.0-beta.3':
+ resolution: {integrity: sha512-JHjR2Ft5QXuklfDOuul7+p1nd/hGdUZOwvqqx4nNpoYlTT/c475lI+d0u+5kI+PmK0olOmZt72zKWAX+y9cn0w==}
+ engines: {node: '>=18.0.0'}
peerDependencies:
- '@rspress/runtime': ^1.42.0
+ '@rspress/core': ^2.0.0-beta.3
- '@rspress/runtime@1.42.0':
- resolution: {integrity: sha512-MqKT9QyUvtQIh4GxNuxDvdd7sTlt3a8dM7X2hY8mzVNqn2RFSOK3BPItxCSSgIXSY5gV45PuE27ERID+L8xAbw==}
- engines: {node: '>=14.17.6'}
+ '@rspress/plugin-medium-zoom@2.0.0-beta.3':
+ resolution: {integrity: sha512-2d5MlqU/2bygtZq2ZFFsDY4e7pnHm52wt2Bs+OyoCD/nqFTbaR4OloC2mIxAm+fwpVFnEgLBgTRne/UIzLglZw==}
+ engines: {node: '>=18.0.0'}
+ peerDependencies:
+ '@rspress/runtime': ^2.0.0-beta.3
+
+ '@rspress/runtime@2.0.0-beta.3':
+ resolution: {integrity: sha512-1KF8v75ZIpSwoM75xv9ssyHs1AD2hICjwCXT9ppcd4AagctdAgT+jZMpZGGpx1ioMPi5rjwTY4rOiD6BeTj+1A==}
+ engines: {node: '>=18.0.0'}
'@rspress/shared@1.42.0':
resolution: {integrity: sha512-PMlBeNf9NvIRaFIXX7phnOo2fqwYMQ9fBpG+G6jSt0C5exPm6vOLpSjdHVAGVSY+3FP+YWDH0++jir2qi8qK8w==}
- '@rspress/theme-default@1.42.0':
- resolution: {integrity: sha512-3LF9t/V1tmT9IKLsWgYli8PeJ8xKIQkswCmCNVqU4G5Uz/jFL9QO2KPGjJT9Du5m8HdZ8ldoleHw4mGoit/NFA==}
- engines: {node: '>=14.17.6'}
+ '@rspress/shared@2.0.0-beta.3':
+ resolution: {integrity: sha512-SX6kNBcn6sWRiWmRzA0JqlXyp+tmmEo2gPBoY5E55E7Od5EjkkNXqAcWsEvgxAufTdrUe0Ek/gwlvKJDH7lqSQ==}
+
+ '@rspress/theme-default@2.0.0-beta.3':
+ resolution: {integrity: sha512-0hSlQkY02ybmly/hZJddPBGt4KbjR4HXft3uIarjjNtY2s4sbZo7tE2GjyDPdaClBrSCgwzgRIC8PJuizdHQPw==}
+ engines: {node: '>=18.0.0'}
'@sec-ant/readable-stream@0.4.1':
resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==}
@@ -3118,9 +3228,6 @@ packages:
'@tybys/wasm-util@0.9.0':
resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==}
- '@types/acorn@4.0.6':
- resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==}
-
'@types/babel__code-frame@7.0.6':
resolution: {integrity: sha512-Anitqkl3+KrzcW2k77lRlg/GfLZLWXBuNgbEcIOU6M92yw42vsd3xV/Z/yAHEj8m+KUjL6bWOVOFqX8PFPJ4LA==}
@@ -3639,9 +3746,6 @@ packages:
resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==}
engines: {node: '>=0.6'}
- big.js@5.2.2:
- resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
-
binary-extensions@2.3.0:
resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
engines: {node: '>=8'}
@@ -3689,9 +3793,6 @@ packages:
engines: {node: '>= 0.4.0'}
hasBin: true
- buffer-builder@0.2.0:
- resolution: {integrity: sha512-7VPMEPuYznPSoR21NE1zvd2Xna6c/CloiZCfcMXR1Jny6PjX0N4Nsa38zcBFo/FMK+BlA+FLKbJCQ0i2yxp+Xg==}
-
buffer-equal-constant-time@1.0.1:
resolution: {integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==}
@@ -3759,6 +3860,9 @@ packages:
caniuse-lite@1.0.30001714:
resolution: {integrity: sha512-mtgapdwDLSSBnCI3JokHM7oEQBLxiJKVRtg10AxM1AyeiKcM96f0Mkbqeq+1AbiCtvMcHRulAAEMu693JrSWqg==}
+ caniuse-lite@1.0.30001716:
+ resolution: {integrity: sha512-49/c1+x3Kwz7ZIWt+4DvK3aMJy9oYXXG6/97JKsnjdCk/6n9vVyWL8NAwVt95Lwt9eigI10Hl782kDfZUUlRXw==}
+
ccount@2.0.1:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
@@ -3885,6 +3989,9 @@ packages:
code-block-writer@13.0.1:
resolution: {integrity: sha512-c5or4P6erEA69TxaxTNcHUNcIn+oyxSRTOWV+pSYF+z4epXqNvwvJ70XPGjPNgue83oAFAPBRQYwpAJ/Hpe/Sg==}
+ collapse-white-space@2.1.0:
+ resolution: {integrity: sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==}
+
collect-v8-coverage@1.0.2:
resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==}
@@ -3907,9 +4014,6 @@ packages:
colorette@2.0.20:
resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
- colorjs.io@0.5.2:
- resolution: {integrity: sha512-twmVoizEW7ylZSN32OgKdXRmo1qg+wT5/6C3xu5b9QsWzSFAhHLn2xd8ro0diCsKfCj1RdaTP/nrcW+vAoQPIw==}
-
combined-stream@1.0.8:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
engines: {node: '>= 0.8'}
@@ -4314,10 +4418,6 @@ packages:
emoji-regex@9.2.2:
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
- emojis-list@3.0.0:
- resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==}
- engines: {node: '>= 4'}
-
encodeurl@1.0.2:
resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
engines: {node: '>= 0.8'}
@@ -4341,10 +4441,6 @@ packages:
resolution: {integrity: sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==}
engines: {node: '>=10.13.0'}
- enhanced-resolve@5.18.0:
- resolution: {integrity: sha512-0/r0MySGYG8YqlayBZ6MuCfECmHFdJ5qyPh8s8wa5Hnm6SaFLSK1VYCbj+NKp090Nm1caZhD+QTnmxO7esYGyQ==}
- engines: {node: '>=10.13.0'}
-
enhanced-resolve@5.18.1:
resolution: {integrity: sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==}
engines: {node: '>=10.13.0'}
@@ -4394,6 +4490,12 @@ packages:
es-module-lexer@1.5.4:
resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==}
+ esast-util-from-estree@2.0.0:
+ resolution: {integrity: sha512-4CyanoAudUSBAn5K13H4JhsMH6L9ZP7XbLVe/dKybkxMO7eDyLsT8UHl9TRNrU2Gr9nz+FovfSIjuXWJ81uVwQ==}
+
+ esast-util-from-js@2.0.1:
+ resolution: {integrity: sha512-8Ja+rNJ0Lt56Pcf3TAmpBZjmx8ZcK5Ts4cAzIOjsjevg9oSXJnl6SUQ2EevU8tv3h6ZLWmoKL5H4fgWvdvfETw==}
+
esbuild@0.17.19:
resolution: {integrity: sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==}
engines: {node: '>=12'}
@@ -4448,23 +4550,26 @@ packages:
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
engines: {node: '>=4.0'}
- estree-util-attach-comments@2.1.1:
- resolution: {integrity: sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w==}
+ estree-util-attach-comments@3.0.0:
+ resolution: {integrity: sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==}
- estree-util-build-jsx@2.2.2:
- resolution: {integrity: sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg==}
+ estree-util-build-jsx@3.0.1:
+ resolution: {integrity: sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ==}
estree-util-is-identifier-name@1.1.0:
resolution: {integrity: sha512-OVJZ3fGGt9By77Ix9NhaRbzfbDV/2rx9EP7YIDJTmsZSEc5kYn2vWcNccYyahJL2uAQZK2a5Or2i0wtIKTPoRQ==}
- estree-util-is-identifier-name@2.1.0:
- resolution: {integrity: sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==}
+ estree-util-is-identifier-name@3.0.0:
+ resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==}
+
+ estree-util-scope@1.0.0:
+ resolution: {integrity: sha512-2CAASclonf+JFWBNJPndcOpA8EMJwa0Q8LUFJEKqXLW6+qBvbFZuF5gItbQOs/umBUkjviCSDCbBwU2cXbmrhQ==}
- estree-util-to-js@1.2.0:
- resolution: {integrity: sha512-IzU74r1PK5IMMGZXUVZbmiu4A1uhiPgW5hm1GjcOfr4ZzHaMPpLNJjR7HjXiIOzi25nZDrgFTobHTkV5Q6ITjA==}
+ estree-util-to-js@2.0.0:
+ resolution: {integrity: sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==}
- estree-util-visit@1.2.1:
- resolution: {integrity: sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==}
+ estree-util-visit@2.0.0:
+ resolution: {integrity: sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==}
estree-walker@3.0.3:
resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
@@ -4592,6 +4697,14 @@ packages:
picomatch:
optional: true
+ fdir@6.4.4:
+ resolution: {integrity: sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg==}
+ peerDependencies:
+ picomatch: ^3 || ^4
+ peerDependenciesMeta:
+ picomatch:
+ optional: true
+
figures@3.2.0:
resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==}
engines: {node: '>=8'}
@@ -4900,11 +5013,14 @@ packages:
hast-util-parse-selector@4.0.0:
resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==}
- hast-util-to-estree@2.3.3:
- resolution: {integrity: sha512-ihhPIUPxN0v0w6M5+IiAZZrn0LH2uZomeWwhn7uP7avZC6TE7lIiEh2yBMPr5+zi1aUCXq6VoYRgs2Bw9xmycQ==}
+ hast-util-to-estree@3.1.3:
+ resolution: {integrity: sha512-48+B/rJWAp0jamNbAAf9M7Uf//UVqAoMmgXhBdxTDJLGKY+LRnZ99qcG+Qjl5HfMpYNzS5v4EAwVEF34LeAj7w==}
- hast-util-whitespace@2.0.1:
- resolution: {integrity: sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==}
+ hast-util-to-jsx-runtime@2.3.6:
+ resolution: {integrity: sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==}
+
+ hast-util-whitespace@3.0.0:
+ resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==}
hastscript@6.0.0:
resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==}
@@ -5038,9 +5154,6 @@ packages:
engines: {node: '>=16.x'}
hasBin: true
- immutable@5.0.3:
- resolution: {integrity: sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==}
-
import-fresh@2.0.0:
resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==}
engines: {node: '>=4'}
@@ -5068,8 +5181,8 @@ packages:
ini@1.3.8:
resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
- inline-style-parser@0.1.1:
- resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==}
+ inline-style-parser@0.2.4:
+ resolution: {integrity: sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==}
invariant@2.2.4:
resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
@@ -5197,9 +5310,6 @@ packages:
resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
engines: {node: '>=0.10.0'}
- is-reference@3.0.2:
- resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==}
-
is-stream@2.0.1:
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
engines: {node: '>=8'}
@@ -5634,10 +5744,6 @@ packages:
resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
engines: {node: '>=6.11.5'}
- loader-utils@2.0.4:
- resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==}
- engines: {node: '>=8.9.0'}
-
locate-path@3.0.0:
resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==}
engines: {node: '>=6'}
@@ -5751,9 +5857,9 @@ packages:
makeerror@1.0.12:
resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==}
- markdown-extensions@1.1.1:
- resolution: {integrity: sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==}
- engines: {node: '>=0.10.0'}
+ markdown-extensions@2.0.0:
+ resolution: {integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==}
+ engines: {node: '>=16'}
markdown-table@3.0.3:
resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==}
@@ -5761,11 +5867,8 @@ packages:
marky@1.2.5:
resolution: {integrity: sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==}
- mdast-util-definitions@5.1.2:
- resolution: {integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==}
-
- mdast-util-find-and-replace@2.2.2:
- resolution: {integrity: sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==}
+ mdast-util-find-and-replace@3.0.2:
+ resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==}
mdast-util-from-markdown@1.3.1:
resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==}
@@ -5773,38 +5876,32 @@ packages:
mdast-util-from-markdown@2.0.1:
resolution: {integrity: sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==}
- mdast-util-gfm-autolink-literal@1.0.3:
- resolution: {integrity: sha512-My8KJ57FYEy2W2LyNom4n3E7hKTuQk/0SES0u16tjA9Z3oFkF4RrC/hPAPgjlSpezsOvI8ObcXcElo92wn5IGA==}
-
- mdast-util-gfm-footnote@1.0.2:
- resolution: {integrity: sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==}
+ mdast-util-gfm-autolink-literal@2.0.1:
+ resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==}
- mdast-util-gfm-strikethrough@1.0.3:
- resolution: {integrity: sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==}
+ mdast-util-gfm-footnote@2.1.0:
+ resolution: {integrity: sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==}
- mdast-util-gfm-table@1.0.7:
- resolution: {integrity: sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==}
+ mdast-util-gfm-strikethrough@2.0.0:
+ resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==}
- mdast-util-gfm-task-list-item@1.0.2:
- resolution: {integrity: sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==}
+ mdast-util-gfm-table@2.0.0:
+ resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==}
- mdast-util-gfm@2.0.2:
- resolution: {integrity: sha512-qvZ608nBppZ4icQlhQQIAdc6S3Ffj9RGmzwUKUWuEICFnd1LVkN3EktF7ZHAgfcEdvZB5owU9tQgt99e2TlLjg==}
+ mdast-util-gfm-task-list-item@2.0.0:
+ resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==}
- mdast-util-mdx-expression@1.3.2:
- resolution: {integrity: sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==}
+ mdast-util-gfm@3.1.0:
+ resolution: {integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==}
- mdast-util-mdx-jsx@2.1.4:
- resolution: {integrity: sha512-DtMn9CmVhVzZx3f+optVDF8yFgQVt7FghCRNdlIaS3X5Bnym3hZwPbg/XW86vdpKjlc1PVj26SpnLGeJBXD3JA==}
+ mdast-util-mdx-expression@2.0.1:
+ resolution: {integrity: sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==}
mdast-util-mdx-jsx@3.1.2:
resolution: {integrity: sha512-eKMQDeywY2wlHc97k5eD8VC+9ASMjN8ItEZQNGwJ6E0XWKiW/Z0V5/H8pvoXUf+y+Mj0VIgeRRbujBmFn4FTyA==}
- mdast-util-mdx@2.0.1:
- resolution: {integrity: sha512-38w5y+r8nyKlGvNjSEqWrhG0w5PmnRA+wnBvm+ulYCct7nsGYhFVb0lljS9bQav4psDAS1eGkP2LMVcZBi/aqw==}
-
- mdast-util-mdxjs-esm@1.3.1:
- resolution: {integrity: sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==}
+ mdast-util-mdx@3.0.0:
+ resolution: {integrity: sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==}
mdast-util-mdxjs-esm@2.0.1:
resolution: {integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==}
@@ -5815,8 +5912,8 @@ packages:
mdast-util-phrasing@4.1.0:
resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==}
- mdast-util-to-hast@12.3.0:
- resolution: {integrity: sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==}
+ mdast-util-to-hast@13.2.0:
+ resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==}
mdast-util-to-markdown@1.5.0:
resolution: {integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==}
@@ -5928,41 +6025,41 @@ packages:
micromark-core-commonmark@2.0.1:
resolution: {integrity: sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==}
- micromark-extension-gfm-autolink-literal@1.0.5:
- resolution: {integrity: sha512-z3wJSLrDf8kRDOh2qBtoTRD53vJ+CWIyo7uyZuxf/JAbNJjiHsOpG1y5wxk8drtv3ETAHutCu6N3thkOOgueWg==}
+ micromark-extension-gfm-autolink-literal@2.1.0:
+ resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==}
- micromark-extension-gfm-footnote@1.1.2:
- resolution: {integrity: sha512-Yxn7z7SxgyGWRNa4wzf8AhYYWNrwl5q1Z8ii+CSTTIqVkmGZF1CElX2JI8g5yGoM3GAman9/PVCUFUSJ0kB/8Q==}
+ micromark-extension-gfm-footnote@2.1.0:
+ resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==}
- micromark-extension-gfm-strikethrough@1.0.7:
- resolution: {integrity: sha512-sX0FawVE1o3abGk3vRjOH50L5TTLr3b5XMqnP9YDRb34M0v5OoZhG+OHFz1OffZ9dlwgpTBKaT4XW/AsUVnSDw==}
+ micromark-extension-gfm-strikethrough@2.1.0:
+ resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==}
- micromark-extension-gfm-table@1.0.7:
- resolution: {integrity: sha512-3ZORTHtcSnMQEKtAOsBQ9/oHp9096pI/UvdPtN7ehKvrmZZ2+bbWhi0ln+I9drmwXMt5boocn6OlwQzNXeVeqw==}
+ micromark-extension-gfm-table@2.1.1:
+ resolution: {integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==}
- micromark-extension-gfm-tagfilter@1.0.2:
- resolution: {integrity: sha512-5XWB9GbAUSHTn8VPU8/1DBXMuKYT5uOgEjJb8gN3mW0PNW5OPHpSdojoqf+iq1xo7vWzw/P8bAHY0n6ijpXF7g==}
+ micromark-extension-gfm-tagfilter@2.0.0:
+ resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==}
- micromark-extension-gfm-task-list-item@1.0.5:
- resolution: {integrity: sha512-RMFXl2uQ0pNQy6Lun2YBYT9g9INXtWJULgbt01D/x8/6yJ2qpKyzdZD3pi6UIkzF++Da49xAelVKUeUMqd5eIQ==}
+ micromark-extension-gfm-task-list-item@2.1.0:
+ resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==}
- micromark-extension-gfm@2.0.3:
- resolution: {integrity: sha512-vb9OoHqrhCmbRidQv/2+Bc6pkP0FrtlhurxZofvOEy5o8RtuuvTq+RQ1Vw5ZDNrVraQZu3HixESqbG+0iKk/MQ==}
+ micromark-extension-gfm@3.0.0:
+ resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==}
- micromark-extension-mdx-expression@1.0.8:
- resolution: {integrity: sha512-zZpeQtc5wfWKdzDsHRBY003H2Smg+PUi2REhqgIhdzAa5xonhP03FcXxqFSerFiNUr5AWmHpaNPQTBVOS4lrXw==}
+ micromark-extension-mdx-expression@3.0.1:
+ resolution: {integrity: sha512-dD/ADLJ1AeMvSAKBwO22zG22N4ybhe7kFIZ3LsDI0GlsNr2A3KYxb0LdC1u5rj4Nw+CHKY0RVdnHX8vj8ejm4Q==}
- micromark-extension-mdx-jsx@1.0.5:
- resolution: {integrity: sha512-gPH+9ZdmDflbu19Xkb8+gheqEDqkSpdCEubQyxuz/Hn8DOXiXvrXeikOoBA71+e8Pfi0/UYmU3wW3H58kr7akA==}
+ micromark-extension-mdx-jsx@3.0.2:
+ resolution: {integrity: sha512-e5+q1DjMh62LZAJOnDraSSbDMvGJ8x3cbjygy2qFEi7HCeUT4BDKCvMozPozcD6WmOt6sVvYDNBKhFSz3kjOVQ==}
- micromark-extension-mdx-md@1.0.1:
- resolution: {integrity: sha512-7MSuj2S7xjOQXAjjkbjBsHkMtb+mDGVW6uI2dBL9snOBCbZmoNgDAeZ0nSn9j3T42UE/g2xVNMn18PJxZvkBEA==}
+ micromark-extension-mdx-md@2.0.0:
+ resolution: {integrity: sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==}
- micromark-extension-mdxjs-esm@1.0.5:
- resolution: {integrity: sha512-xNRBw4aoURcyz/S69B19WnZAkWJMxHMT5hE36GtDAyhoyn/8TuAeqjFJQlwk+MKQsUD7b3l7kFX+vlfVWgcX1w==}
+ micromark-extension-mdxjs-esm@3.0.0:
+ resolution: {integrity: sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==}
- micromark-extension-mdxjs@1.0.1:
- resolution: {integrity: sha512-7YA7hF6i5eKOfFUzZ+0z6avRG52GpWR8DL+kN47y3f2KhxbBZMhmxe7auOeaTBrW2DenbbZTf1ea9tA2hDpC2Q==}
+ micromark-extension-mdxjs@3.0.0:
+ resolution: {integrity: sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==}
micromark-factory-destination@1.1.0:
resolution: {integrity: sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==}
@@ -5976,8 +6073,8 @@ packages:
micromark-factory-label@2.0.0:
resolution: {integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==}
- micromark-factory-mdx-expression@1.0.9:
- resolution: {integrity: sha512-jGIWzSmNfdnkJq05c7b0+Wv0Kfz3NJ3N4cBjnbO4zjXIlxJr+f8lk+5ZmwFvqdAbUy2q6B5rCY//g0QAAaXDWA==}
+ micromark-factory-mdx-expression@2.0.3:
+ resolution: {integrity: sha512-kQnEtA3vzucU2BkrIa8/VaSAsP+EJ3CKOvhMuJgOEGg9KDC6OAY6nSnNDVRiVNRqj7Y4SlSzcStaH/5jge8JdQ==}
micromark-factory-space@1.1.0:
resolution: {integrity: sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==}
@@ -6039,8 +6136,8 @@ packages:
micromark-util-encode@2.0.0:
resolution: {integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==}
- micromark-util-events-to-acorn@1.2.3:
- resolution: {integrity: sha512-ij4X7Wuc4fED6UoLWkmo0xJQhsktfNh1J0m8g4PbIMPlx+ek/4YdW5mvbye8z/aZvAPUoxgXHrwVlXAPKMRp1w==}
+ micromark-util-events-to-acorn@2.0.3:
+ resolution: {integrity: sha512-jmsiEIiZ1n7X1Rr5k8wVExBQCg5jy4UXVADItHmNk1zkwEVhBuIUKRu3fqv+hs4nxLISi2DQGlqIOGiFxgbfHg==}
micromark-util-html-tag-name@1.2.0:
resolution: {integrity: sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==}
@@ -6498,9 +6595,6 @@ packages:
peberminta@0.9.0:
resolution: {integrity: sha512-XIxfHpEuSJbITd1H3EeQwpcZbTLHc+VVr8ANI9t5sit565tsI4/xK3KWTUFE2e6QiangUkh3B0jihzmGnNrRsQ==}
- periscopic@3.1.0:
- resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==}
-
picocolors@1.1.1:
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
@@ -6663,15 +6757,15 @@ packages:
resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
engines: {node: '>= 6'}
- prop-types@15.8.1:
- resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
-
property-information@5.6.0:
resolution: {integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==}
property-information@6.5.0:
resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==}
+ property-information@7.0.0:
+ resolution: {integrity: sha512-7D/qOz/+Y4X/rzSB6jKxKUsQnphO046ei8qxG59mtM3RG3DHgTK81HrxrmoDVINJb8NKT5ZsRbwHvQ6B68Iyhg==}
+
proxy-addr@2.0.7:
resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
engines: {node: '>= 0.10'}
@@ -6719,10 +6813,10 @@ packages:
react-devtools-core@6.1.1:
resolution: {integrity: sha512-TFo1MEnkqE6hzAbaztnyR5uLTMoz6wnEWwWBsCUzNt+sVXJycuRJdDqvL078M4/h65BI/YO5XWTaxZDWVsW0fw==}
- react-dom@18.3.1:
- resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==}
+ react-dom@19.1.0:
+ resolution: {integrity: sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g==}
peerDependencies:
- react: ^18.3.1
+ react: ^19.1.0
react-fast-compare@3.2.2:
resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==}
@@ -6733,12 +6827,6 @@ packages:
peerDependencies:
react: '>=17.0.0'
- react-helmet-async@1.3.0:
- resolution: {integrity: sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==}
- peerDependencies:
- react: ^16.6.0 || ^17.0.0 || ^18.0.0
- react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0
-
react-is@16.13.1:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
@@ -6856,14 +6944,14 @@ packages:
peerDependencies:
react: '>= 0.14.0'
- react@18.3.1:
- resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
- engines: {node: '>=0.10.0'}
-
react@19.0.0:
resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==}
engines: {node: '>=0.10.0'}
+ react@19.1.0:
+ resolution: {integrity: sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==}
+ engines: {node: '>=0.10.0'}
+
read-cache@1.0.0:
resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
@@ -6887,8 +6975,17 @@ packages:
resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==}
engines: {node: '>= 12.13.0'}
- reduce-configs@1.1.0:
- resolution: {integrity: sha512-DQxy6liNadHfrLahZR7lMdc227NYVaQZhY5FMsxLEjX8X0SCuH+ESHSLCoz2yDZFq1/CLMDOAHdsEHwOEXKtvg==}
+ recma-build-jsx@1.0.0:
+ resolution: {integrity: sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew==}
+
+ recma-jsx@1.0.0:
+ resolution: {integrity: sha512-5vwkv65qWwYxg+Atz95acp8DMu1JDSqdGkA2Of1j6rCreyFUE/gp15fC8MnGEuG1W68UKjM6x6+YTWIh7hZM/Q==}
+
+ recma-parse@1.0.0:
+ resolution: {integrity: sha512-OYLsIGBB5Y5wjnSnQW6t3Xg7q3fQ7FWbw/vcXtORTnyaSFscOtABg+7Pnz6YZ6c27fG1/aN8CjfwoUEUIdwqWQ==}
+
+ recma-stringify@1.0.0:
+ resolution: {integrity: sha512-cjwII1MdIIVloKvC9ErQ+OgAtwHBmcZ0Bg4ciz78FtbT8In39aAYbaA7zvxQ61xVMSPE8WxhLwLbhif4Js2C+g==}
refractor@3.6.0:
resolution: {integrity: sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA==}
@@ -6920,26 +7017,29 @@ packages:
rehype-external-links@3.0.0:
resolution: {integrity: sha512-yp+e5N9V3C6bwBeAC4n796kc86M4gJCdlVhiMTxIrJG5UHDMh+PJANf9heqORJbt1nrCbDwIlAZKjANIaVBbvw==}
- remark-gfm@3.0.1:
- resolution: {integrity: sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==}
+ rehype-recma@1.0.0:
+ resolution: {integrity: sha512-lqA4rGUf1JmacCNWWZx0Wv1dHqMwxzsDWYMTowuplHF3xH0N/MmrZ/G3BDZnzAkRmxDadujCjaKM2hqYdCBOGw==}
+
+ remark-gfm@4.0.1:
+ resolution: {integrity: sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==}
remark-mdc@1.2.0:
resolution: {integrity: sha512-zK0GYvlhl9fw5gg1TYA2BmC06+wQaeQ0QewhJZI/6rocsP0Rfw3s2kbC5yeIyu9//kpBAwh6kJPFSDLiQbcFQQ==}
- remark-mdx@2.3.0:
- resolution: {integrity: sha512-g53hMkpM0I98MU266IzDFMrTD980gNF3BJnkyFcmN+dD873mQeD5rdMO3Y2X+x8umQfbSE0PcoEDl7ledSA+2g==}
+ remark-mdx@3.1.0:
+ resolution: {integrity: sha512-Ngl/H3YXyBV9RcRNdlYsZujAmhsxwzxpDzpDEhFBVAGthS4GDgnctpDjgFl/ULx5UEDzqtW1cyBSNKqYYrqLBA==}
- remark-parse@10.0.2:
- resolution: {integrity: sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==}
+ remark-parse@11.0.0:
+ resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==}
- remark-rehype@10.1.0:
- resolution: {integrity: sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==}
+ remark-rehype@11.1.2:
+ resolution: {integrity: sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==}
- remark-stringify@10.0.3:
- resolution: {integrity: sha512-koyOzCMYoUHudypbj4XpnAKFbkddRMYZHwghnxd7ue5210WzGw6kOBwauJTRUMq16jsovXx8dYNvSSWP89kZ3A==}
+ remark-stringify@11.0.0:
+ resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==}
- remark@14.0.3:
- resolution: {integrity: sha512-bfmJW1dmR2LvaMJuAnE88pZP9DktIFYXazkTfOIKZzi3Knk9lT0roItIA24ydOucI3bV/g/tXBA6hzqq3FV9Ew==}
+ remark@15.0.1:
+ resolution: {integrity: sha512-Eht5w30ruCXgFmxVUSlNWQ9iiimq07URKeFS3hNc8cUWy1llX4KDWfyEDZRycMc+znsN9Ux5/tJ/BFdgdOwA3A==}
repeat-string@1.6.1:
resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==}
@@ -7051,13 +7151,16 @@ packages:
rspress-plugin-font-open-sans@1.0.0:
resolution: {integrity: sha512-4GP0pd7h3W8EWdqE0VkA62nzUJZNy4ZnYK7be8+lOKHQKsQ5nZ+22A/VurNssi1eZFx3kjwbmIuoAkgb5W8S9Q==}
+ rspress-plugin-sitemap@1.1.1:
+ resolution: {integrity: sha512-usb6zWoi5wFFmBeA9HKR6BhsnnsItudMBarc54GYpuRL55SWkLxyWyMijv14mUI04FI7J7lEmea08uZE0bVKxg==}
+
rspress-plugin-vercel-analytics@0.3.0:
resolution: {integrity: sha512-e3tt7pJeihgCRVT/8qft5hK6cuU9gYrl60ihAtchz1jMgcLmpyIyEMhP4dcux2MGboRMoknQEUacjFcwi5ZzZg==}
peerDependencies:
rspress: '*'
- rspress@1.42.0:
- resolution: {integrity: sha512-iCuWH13x3XugYA73fW1Po2JLH/+zKRy+qoJc7GGkAhLVIIXF+Ldng0kEmtGPQ9MYDe129977rTQYeJzqHOSJ3w==}
+ rspress@2.0.0-beta.3:
+ resolution: {integrity: sha512-D4a+WxtIQr512KkI+v815W4nvxCvLC0VCyq1YFHiOWkAnUrvRFYjetpviyPXzxm4er1IyHPo/6+blVH0/X48xQ==}
hasBin: true
run-applescript@7.0.0:
@@ -7067,9 +7170,6 @@ packages:
run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
- rxjs@7.8.1:
- resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
-
sade@1.8.1:
resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==}
engines: {node: '>=6'}
@@ -7090,137 +7190,12 @@ packages:
safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- sass-embedded-android-arm64@1.83.4:
- resolution: {integrity: sha512-tgX4FzmbVqnQmD67ZxQDvI+qFNABrboOQgwsG05E5bA/US42zGajW9AxpECJYiMXVOHmg+d81ICbjb0fsVHskw==}
- engines: {node: '>=14.0.0'}
- cpu: [arm64]
- os: [android]
-
- sass-embedded-android-arm@1.83.4:
- resolution: {integrity: sha512-9Z4pJAOgEkXa3VDY/o+U6l5XvV0mZTJcSl0l/mSPHihjAHSpLYnOW6+KOWeM8dxqrsqTYcd6COzhanI/a++5Gw==}
- engines: {node: '>=14.0.0'}
- cpu: [arm]
- os: [android]
-
- sass-embedded-android-ia32@1.83.4:
- resolution: {integrity: sha512-RsFOziFqPcfZXdFRULC4Ayzy9aK6R6FwQ411broCjlOBX+b0gurjRadkue3cfUEUR5mmy0KeCbp7zVKPLTK+5Q==}
- engines: {node: '>=14.0.0'}
- cpu: [ia32]
- os: [android]
-
- sass-embedded-android-riscv64@1.83.4:
- resolution: {integrity: sha512-EHwh0nmQarBBrMRU928eTZkFGx19k/XW2YwbPR4gBVdWLkbTgCA5aGe8hTE6/1zStyx++3nDGvTZ78+b/VvvLg==}
- engines: {node: '>=14.0.0'}
- cpu: [riscv64]
- os: [android]
-
- sass-embedded-android-x64@1.83.4:
- resolution: {integrity: sha512-0PgQNuPWYy1jEOEPDVsV89KfqOsMLIp9CSbjBY7jRcwRhyVAcigqrUG6bDeNtojHUYKA1kU+Eh/85WxOHUOgBw==}
- engines: {node: '>=14.0.0'}
- cpu: [x64]
- os: [android]
-
- sass-embedded-darwin-arm64@1.83.4:
- resolution: {integrity: sha512-rp2ywymWc3nymnSnAFG5R/8hvxWCsuhK3wOnD10IDlmNB7o4rzKby1c+2ZfpQGowlYGWsWWTgz8FW2qzmZsQRw==}
- engines: {node: '>=14.0.0'}
- cpu: [arm64]
- os: [darwin]
-
- sass-embedded-darwin-x64@1.83.4:
- resolution: {integrity: sha512-kLkN2lXz9PCgGfDS8Ev5YVcl/V2173L6379en/CaFuJJi7WiyPgBymW7hOmfCt4uO4R1y7CP2Uc08DRtZsBlAA==}
- engines: {node: '>=14.0.0'}
- cpu: [x64]
- os: [darwin]
-
- sass-embedded-linux-arm64@1.83.4:
- resolution: {integrity: sha512-E0zjsZX2HgESwyqw31EHtI39DKa7RgK7nvIhIRco1d0QEw227WnoR9pjH3M/ZQy4gQj3GKilOFHM5Krs/omeIA==}
- engines: {node: '>=14.0.0'}
- cpu: [arm64]
- os: [linux]
-
- sass-embedded-linux-arm@1.83.4:
- resolution: {integrity: sha512-nL90ryxX2lNmFucr9jYUyHHx21AoAgdCL1O5Ltx2rKg2xTdytAGHYo2MT5S0LIeKLa/yKP/hjuSvrbICYNDvtA==}
- engines: {node: '>=14.0.0'}
- cpu: [arm]
- os: [linux]
-
- sass-embedded-linux-ia32@1.83.4:
- resolution: {integrity: sha512-ew5HpchSzgAYbQoriRh8QhlWn5Kw2nQ2jHoV9YLwGKe3fwwOWA0KDedssvDv7FWnY/FCqXyymhLd6Bxae4Xquw==}
- engines: {node: '>=14.0.0'}
- cpu: [ia32]
- os: [linux]
-
- sass-embedded-linux-musl-arm64@1.83.4:
- resolution: {integrity: sha512-IzMgalf6MZOxgp4AVCgsaWAFDP/IVWOrgVXxkyhw29fyAEoSWBJH4k87wyPhEtxSuzVHLxKNbc8k3UzdWmlBFg==}
- engines: {node: '>=14.0.0'}
- cpu: [arm64]
- os: [linux]
-
- sass-embedded-linux-musl-arm@1.83.4:
- resolution: {integrity: sha512-0RrJRwMrmm+gG0VOB5b5Cjs7Sd+lhqpQJa6EJNEaZHljJokEfpE5GejZsGMRMIQLxEvVphZnnxl6sonCGFE/QQ==}
- engines: {node: '>=14.0.0'}
- cpu: [arm]
- os: [linux]
-
- sass-embedded-linux-musl-ia32@1.83.4:
- resolution: {integrity: sha512-LLb4lYbcxPzX4UaJymYXC+WwokxUlfTJEFUv5VF0OTuSsHAGNRs/rslPtzVBTvMeG9TtlOQDhku1F7G6iaDotA==}
- engines: {node: '>=14.0.0'}
- cpu: [ia32]
- os: [linux]
-
- sass-embedded-linux-musl-riscv64@1.83.4:
- resolution: {integrity: sha512-zoKlPzD5Z13HKin1UGR74QkEy+kZEk2AkGX5RelRG494mi+IWwRuWCppXIovor9+BQb9eDWPYPoMVahwN5F7VA==}
- engines: {node: '>=14.0.0'}
- cpu: [riscv64]
- os: [linux]
-
- sass-embedded-linux-musl-x64@1.83.4:
- resolution: {integrity: sha512-hB8+/PYhfEf2zTIcidO5Bpof9trK6WJjZ4T8g2MrxQh8REVtdPcgIkoxczRynqybf9+fbqbUwzXtiUao2GV+vQ==}
- engines: {node: '>=14.0.0'}
- cpu: [x64]
- os: [linux]
-
- sass-embedded-linux-riscv64@1.83.4:
- resolution: {integrity: sha512-83fL4n+oeDJ0Y4KjASmZ9jHS1Vl9ESVQYHMhJE0i4xDi/P3BNarm2rsKljq/QtrwGpbqwn8ujzOu7DsNCMDSHA==}
- engines: {node: '>=14.0.0'}
- cpu: [riscv64]
- os: [linux]
-
- sass-embedded-linux-x64@1.83.4:
- resolution: {integrity: sha512-NlnGdvCmTD5PK+LKXlK3sAuxOgbRIEoZfnHvxd157imCm/s2SYF/R28D0DAAjEViyI8DovIWghgbcqwuertXsA==}
- engines: {node: '>=14.0.0'}
- cpu: [x64]
- os: [linux]
-
- sass-embedded-win32-arm64@1.83.4:
- resolution: {integrity: sha512-J2BFKrEaeSrVazU2qTjyQdAk+MvbzJeTuCET0uAJEXSKtvQ3AzxvzndS7LqkDPbF32eXAHLw8GVpwcBwKbB3Uw==}
- engines: {node: '>=14.0.0'}
- cpu: [arm64]
- os: [win32]
-
- sass-embedded-win32-ia32@1.83.4:
- resolution: {integrity: sha512-uPAe9T/5sANFhJS5dcfAOhOJy8/l2TRYG4r+UO3Wp4yhqbN7bggPvY9c7zMYS0OC8tU/bCvfYUDFHYMCl91FgA==}
- engines: {node: '>=14.0.0'}
- cpu: [ia32]
- os: [win32]
-
- sass-embedded-win32-x64@1.83.4:
- resolution: {integrity: sha512-C9fkDY0jKITdJFij4UbfPFswxoXN9O/Dr79v17fJnstVwtUojzVJWKHUXvF0Zg2LIR7TCc4ju3adejKFxj7ueA==}
- engines: {node: '>=14.0.0'}
- cpu: [x64]
- os: [win32]
-
- sass-embedded@1.83.4:
- resolution: {integrity: sha512-Hf2burRA/y5PGxsg6jB9UpoK/xZ6g/pgrkOcdl6j+rRg1Zj8XhGKZ1MTysZGtTPUUmiiErqzkP5+Kzp95yv9GQ==}
- engines: {node: '>=16.0.0'}
- hasBin: true
-
- scheduler@0.23.2:
- resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
-
scheduler@0.25.0:
resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==}
+ scheduler@0.26.0:
+ resolution: {integrity: sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==}
+
schema-utils@4.3.0:
resolution: {integrity: sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==}
engines: {node: '>= 10.13.0'}
@@ -7520,8 +7495,11 @@ packages:
engines: {node: '>=4'}
hasBin: true
- style-to-object@0.4.4:
- resolution: {integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==}
+ style-to-js@1.1.16:
+ resolution: {integrity: sha512-/Q6ld50hKYPH3d/r6nr117TZkHR0w0kGGIVfpG9N6D8NymRPM9RqCUv4pRpJ62E5DqOYx2AFpbZMyCPnjQCnOw==}
+
+ style-to-object@1.0.8:
+ resolution: {integrity: sha512-xT47I/Eo0rwJmaXC4oilDGDWLohVhR6o/xAQcPQN8q6QBuZVL8qMYL85kLmST5cPjAorwvqIA4qXTRQoYHaL6g==}
sucrase@3.35.0:
resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
@@ -7556,14 +7534,6 @@ packages:
engines: {node: '>=14.0.0'}
hasBin: true
- sync-child-process@1.0.2:
- resolution: {integrity: sha512-8lD+t2KrrScJ/7KXCSyfhT3/hRq78rC0wBFqNJXv3mZyn6hW2ypM05JmlSvtqRbeq6jqA94oHbxAr2vYsJ8vDA==}
- engines: {node: '>=16.0.0'}
-
- sync-message-port@1.1.3:
- resolution: {integrity: sha512-GTt8rSKje5FilG+wEdfCkOcLL7LWqpMlr2c3LRuKt/YXxcJ52aGSbGBAdI4L3aaqfrBt6y711El53ItyH1NWzg==}
- engines: {node: '>=16.0.0'}
-
tailwind-merge@2.6.0:
resolution: {integrity: sha512-P+Vu1qXfzediirmHOC3xKGAYeZtPcV9g76X+xg2FD4tYgR71ewMA35Y3sCz3zhiN/dwefRpJX0yBcgwi1fXNQA==}
@@ -7645,6 +7615,10 @@ packages:
resolution: {integrity: sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==}
engines: {node: '>=12.0.0'}
+ tinyglobby@0.2.13:
+ resolution: {integrity: sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw==}
+ engines: {node: '>=12.0.0'}
+
tinygradient@1.1.5:
resolution: {integrity: sha512-8nIfc2vgQ4TeLnk2lFj4tRLvvJwEfQuabdsmvDdQPT0xlk9TaNtpGd6nNRxXoK6vQhN6RSzj+Cnp5tTQmpxmbw==}
@@ -7784,23 +7758,17 @@ packages:
resolution: {integrity: sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==}
engines: {node: '>= 0.8.0'}
- unist-util-generated@2.0.1:
- resolution: {integrity: sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==}
-
unist-util-is@5.2.1:
resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==}
unist-util-is@6.0.0:
resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==}
- unist-util-position-from-estree@1.1.2:
- resolution: {integrity: sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==}
+ unist-util-position-from-estree@2.0.0:
+ resolution: {integrity: sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==}
- unist-util-position@4.0.4:
- resolution: {integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==}
-
- unist-util-remove-position@4.0.2:
- resolution: {integrity: sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==}
+ unist-util-position@5.0.0:
+ resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==}
unist-util-remove-position@5.0.0:
resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==}
@@ -7883,9 +7851,6 @@ packages:
resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==}
engines: {node: '>=10.12.0'}
- varint@6.0.0:
- resolution: {integrity: sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg==}
-
vary@1.1.2:
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
engines: {node: '>= 0.8'}
@@ -9201,11 +9166,9 @@ snapshots:
'@biomejs/cli-win32-x64@1.9.4':
optional: true
- '@bufbuild/protobuf@2.2.0': {}
-
- '@callstack/rspress-theme@0.0.2(react@19.0.0)':
+ '@callstack/rspress-theme@0.0.3(react@19.1.0)':
dependencies:
- react: 19.0.0
+ react: 19.1.0
'@changesets/apply-release-plan@7.0.4':
dependencies:
@@ -9391,6 +9354,13 @@ snapshots:
'@discoveryjs/json-ext@0.5.7': {}
+ '@dr.pogodin/react-helmet@2.0.4(react@19.1.0)':
+ dependencies:
+ invariant: 2.2.4
+ react: 19.1.0
+ react-fast-compare: 3.2.2
+ shallowequal: 1.1.0
+
'@emnapi/core@1.2.0':
dependencies:
'@emnapi/wasi-threads': 1.0.1
@@ -9843,41 +9813,57 @@ snapshots:
jju: 1.4.0
js-yaml: 4.1.0
- '@mdx-js/loader@2.3.0(webpack@5.99.5)':
+ '@mdx-js/loader@3.1.0(acorn@8.14.0)(webpack@5.99.5)':
dependencies:
- '@mdx-js/mdx': 2.3.0
+ '@mdx-js/mdx': 3.1.0(acorn@8.14.0)
source-map: 0.7.4
+ optionalDependencies:
webpack: 5.99.5
transitivePeerDependencies:
+ - acorn
- supports-color
- '@mdx-js/mdx@2.3.0':
+ '@mdx-js/mdx@3.1.0(acorn@8.14.0)':
dependencies:
+ '@types/estree': 1.0.6
'@types/estree-jsx': 1.0.5
+ '@types/hast': 3.0.4
'@types/mdx': 2.0.13
- estree-util-build-jsx: 2.2.2
- estree-util-is-identifier-name: 2.1.0
- estree-util-to-js: 1.2.0
+ collapse-white-space: 2.1.0
+ devlop: 1.1.0
+ estree-util-is-identifier-name: 3.0.0
+ estree-util-scope: 1.0.0
estree-walker: 3.0.3
- hast-util-to-estree: 2.3.3
- markdown-extensions: 1.1.1
- periscopic: 3.1.0
- remark-mdx: 2.3.0
- remark-parse: 10.0.2
- remark-rehype: 10.1.0
- unified: 10.1.2
- unist-util-position-from-estree: 1.1.2
- unist-util-stringify-position: 3.0.3
- unist-util-visit: 4.1.2
- vfile: 5.3.7
+ hast-util-to-jsx-runtime: 2.3.6
+ markdown-extensions: 2.0.0
+ recma-build-jsx: 1.0.0
+ recma-jsx: 1.0.0(acorn@8.14.0)
+ recma-stringify: 1.0.0
+ rehype-recma: 1.0.0
+ remark-mdx: 3.1.0
+ remark-parse: 11.0.0
+ remark-rehype: 11.1.2
+ source-map: 0.7.4
+ unified: 11.0.5
+ unist-util-position-from-estree: 2.0.0
+ unist-util-stringify-position: 4.0.0
+ unist-util-visit: 5.0.0
+ vfile: 6.0.2
transitivePeerDependencies:
+ - acorn
- supports-color
- '@mdx-js/react@2.3.0(react@18.3.1)':
+ '@mdx-js/react@2.3.0(react@19.1.0)':
dependencies:
'@types/mdx': 2.0.13
'@types/react': 19.0.10
- react: 18.3.1
+ react: 19.1.0
+
+ '@mdx-js/react@3.1.0(@types/react@18.3.3)(react@19.1.0)':
+ dependencies:
+ '@types/mdx': 2.0.13
+ '@types/react': 18.3.3
+ react: 19.1.0
'@modern-js/node-bundle-require@2.65.1':
dependencies:
@@ -9919,21 +9905,21 @@ snapshots:
- utf-8-validate
- vue-tsc
- '@module-federation/data-prefetch@0.12.0(react-dom@18.3.1(react@19.0.0))(react@19.0.0)':
+ '@module-federation/data-prefetch@0.12.0(react-dom@19.1.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@module-federation/runtime': 0.12.0
'@module-federation/sdk': 0.12.0
fs-extra: 9.1.0
react: 19.0.0
- react-dom: 18.3.1(react@19.0.0)
+ react-dom: 19.1.0(react@19.0.0)
- '@module-federation/data-prefetch@0.8.9(react-dom@18.3.1(react@19.0.0))(react@19.0.0)':
+ '@module-federation/data-prefetch@0.8.9(react-dom@19.1.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@module-federation/runtime': 0.8.9
'@module-federation/sdk': 0.8.9
fs-extra: 9.1.0
react: 19.0.0
- react-dom: 18.3.1(react@19.0.0)
+ react-dom: 19.1.0(react@19.0.0)
'@module-federation/dts-plugin@0.12.0(typescript@5.8.3)':
dependencies:
@@ -9985,11 +9971,11 @@ snapshots:
- supports-color
- utf-8-validate
- '@module-federation/enhanced@0.12.0(@rspack/core@1.3.5(@swc/helpers@0.5.17))(react-dom@18.3.1(react@19.0.0))(react@19.0.0)(typescript@5.8.3)(webpack@5.99.5)':
+ '@module-federation/enhanced@0.12.0(@rspack/core@1.3.5(@swc/helpers@0.5.17))(react-dom@19.1.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)(webpack@5.99.5)':
dependencies:
'@module-federation/bridge-react-webpack-plugin': 0.12.0
'@module-federation/cli': 0.12.0(typescript@5.8.3)
- '@module-federation/data-prefetch': 0.12.0(react-dom@18.3.1(react@19.0.0))(react@19.0.0)
+ '@module-federation/data-prefetch': 0.12.0(react-dom@19.1.0(react@19.0.0))(react@19.0.0)
'@module-federation/dts-plugin': 0.12.0(typescript@5.8.3)
'@module-federation/error-codes': 0.12.0
'@module-federation/inject-external-runtime-core-plugin': 0.12.0(@module-federation/runtime-tools@0.12.0)
@@ -10013,10 +9999,10 @@ snapshots:
- supports-color
- utf-8-validate
- '@module-federation/enhanced@0.8.9(@rspack/core@1.3.5(@swc/helpers@0.5.17))(react-dom@18.3.1(react@19.0.0))(react@19.0.0)(typescript@5.8.3)(webpack@5.99.5)':
+ '@module-federation/enhanced@0.8.9(@rspack/core@1.3.5(@swc/helpers@0.5.17))(react-dom@19.1.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)(webpack@5.99.5)':
dependencies:
'@module-federation/bridge-react-webpack-plugin': 0.8.9
- '@module-federation/data-prefetch': 0.8.9(react-dom@18.3.1(react@19.0.0))(react@19.0.0)
+ '@module-federation/data-prefetch': 0.8.9(react-dom@19.1.0(react@19.0.0))(react@19.0.0)
'@module-federation/dts-plugin': 0.8.9(typescript@5.8.3)
'@module-federation/error-codes': 0.8.9
'@module-federation/inject-external-runtime-core-plugin': 0.8.9(@module-federation/runtime-tools@0.8.9)
@@ -10043,6 +10029,8 @@ snapshots:
'@module-federation/error-codes@0.12.0': {}
+ '@module-federation/error-codes@0.13.0': {}
+
'@module-federation/error-codes@0.8.4': {}
'@module-federation/error-codes@0.8.9': {}
@@ -10144,6 +10132,11 @@ snapshots:
'@module-federation/error-codes': 0.12.0
'@module-federation/sdk': 0.12.0
+ '@module-federation/runtime-core@0.13.0':
+ dependencies:
+ '@module-federation/error-codes': 0.13.0
+ '@module-federation/sdk': 0.13.0
+
'@module-federation/runtime-core@0.6.17':
dependencies:
'@module-federation/error-codes': 0.8.9
@@ -10159,6 +10152,11 @@ snapshots:
'@module-federation/runtime': 0.12.0
'@module-federation/webpack-bundler-runtime': 0.12.0
+ '@module-federation/runtime-tools@0.13.0':
+ dependencies:
+ '@module-federation/runtime': 0.13.0
+ '@module-federation/webpack-bundler-runtime': 0.13.0
+
'@module-federation/runtime-tools@0.8.4':
dependencies:
'@module-federation/runtime': 0.8.4
@@ -10181,6 +10179,12 @@ snapshots:
'@module-federation/runtime-core': 0.12.0
'@module-federation/sdk': 0.12.0
+ '@module-federation/runtime@0.13.0':
+ dependencies:
+ '@module-federation/error-codes': 0.13.0
+ '@module-federation/runtime-core': 0.13.0
+ '@module-federation/sdk': 0.13.0
+
'@module-federation/runtime@0.8.4':
dependencies:
'@module-federation/error-codes': 0.8.4
@@ -10196,6 +10200,8 @@ snapshots:
'@module-federation/sdk@0.12.0': {}
+ '@module-federation/sdk@0.13.0': {}
+
'@module-federation/sdk@0.6.10': {}
'@module-federation/sdk@0.8.4':
@@ -10228,6 +10234,11 @@ snapshots:
'@module-federation/runtime': 0.12.0
'@module-federation/sdk': 0.12.0
+ '@module-federation/webpack-bundler-runtime@0.13.0':
+ dependencies:
+ '@module-federation/runtime': 0.13.0
+ '@module-federation/sdk': 0.13.0
+
'@module-federation/webpack-bundler-runtime@0.8.4':
dependencies:
'@module-federation/runtime': 0.8.4
@@ -10586,6 +10597,15 @@ snapshots:
optionalDependencies:
'@types/react': 19.0.10
+ '@react-native/virtualized-lists@0.79.1(@types/react@19.0.10)(react-native@0.79.1(@babel/core@7.25.2)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@19.0.10)(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ invariant: 2.2.4
+ nullthrows: 1.1.1
+ react: 19.1.0
+ react-native: 0.79.1(@babel/core@7.25.2)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@19.0.10)(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.0.10
+
'@react-navigation/core@6.4.17(react@19.0.0)':
dependencies:
'@react-navigation/routers': 6.1.9
@@ -10707,6 +10727,14 @@ snapshots:
transitivePeerDependencies:
- '@rspack/tracing'
+ '@rsbuild/core@1.3.13':
+ dependencies:
+ '@rspack/core': 1.3.7(@swc/helpers@0.5.17)
+ '@rspack/lite-tapable': 1.0.1
+ '@swc/helpers': 0.5.17
+ core-js: 3.41.0
+ jiti: 2.4.2
+
'@rsbuild/core@1.3.5':
dependencies:
'@rspack/core': 1.3.3(@swc/helpers@0.5.17)
@@ -10717,26 +10745,13 @@ snapshots:
transitivePeerDependencies:
- '@rspack/tracing'
- '@rsbuild/plugin-less@1.1.0(@rsbuild/core@1.2.3)':
- dependencies:
- '@rsbuild/core': 1.2.3
- deepmerge: 4.3.1
- reduce-configs: 1.1.0
-
- '@rsbuild/plugin-react@1.1.0(@rsbuild/core@1.2.3)':
+ '@rsbuild/plugin-react@1.1.1(@rsbuild/core@1.3.13)':
dependencies:
- '@rsbuild/core': 1.2.3
- '@rspack/plugin-react-refresh': 1.0.0(react-refresh@0.16.0)
+ '@rsbuild/core': 1.3.13
+ '@rspack/plugin-react-refresh': 1.0.3(react-refresh@0.16.0)
react-refresh: 0.16.0
-
- '@rsbuild/plugin-sass@1.2.0(@rsbuild/core@1.2.3)':
- dependencies:
- '@rsbuild/core': 1.2.3
- deepmerge: 4.3.1
- loader-utils: 2.0.4
- postcss: 8.5.1
- reduce-configs: 1.1.0
- sass-embedded: 1.83.4
+ transitivePeerDependencies:
+ - webpack-hot-middleware
'@rsdoctor/client@0.4.11': {}
@@ -10872,6 +10887,9 @@ snapshots:
'@rspack/binding-darwin-arm64@1.3.5':
optional: true
+ '@rspack/binding-darwin-arm64@1.3.7':
+ optional: true
+
'@rspack/binding-darwin-x64@1.2.2':
optional: true
@@ -10881,6 +10899,9 @@ snapshots:
'@rspack/binding-darwin-x64@1.3.5':
optional: true
+ '@rspack/binding-darwin-x64@1.3.7':
+ optional: true
+
'@rspack/binding-linux-arm64-gnu@1.2.2':
optional: true
@@ -10890,6 +10911,9 @@ snapshots:
'@rspack/binding-linux-arm64-gnu@1.3.5':
optional: true
+ '@rspack/binding-linux-arm64-gnu@1.3.7':
+ optional: true
+
'@rspack/binding-linux-arm64-musl@1.2.2':
optional: true
@@ -10899,6 +10923,9 @@ snapshots:
'@rspack/binding-linux-arm64-musl@1.3.5':
optional: true
+ '@rspack/binding-linux-arm64-musl@1.3.7':
+ optional: true
+
'@rspack/binding-linux-x64-gnu@1.2.2':
optional: true
@@ -10908,6 +10935,9 @@ snapshots:
'@rspack/binding-linux-x64-gnu@1.3.5':
optional: true
+ '@rspack/binding-linux-x64-gnu@1.3.7':
+ optional: true
+
'@rspack/binding-linux-x64-musl@1.2.2':
optional: true
@@ -10917,6 +10947,9 @@ snapshots:
'@rspack/binding-linux-x64-musl@1.3.5':
optional: true
+ '@rspack/binding-linux-x64-musl@1.3.7':
+ optional: true
+
'@rspack/binding-win32-arm64-msvc@1.2.2':
optional: true
@@ -10926,6 +10959,9 @@ snapshots:
'@rspack/binding-win32-arm64-msvc@1.3.5':
optional: true
+ '@rspack/binding-win32-arm64-msvc@1.3.7':
+ optional: true
+
'@rspack/binding-win32-ia32-msvc@1.2.2':
optional: true
@@ -10935,6 +10971,9 @@ snapshots:
'@rspack/binding-win32-ia32-msvc@1.3.5':
optional: true
+ '@rspack/binding-win32-ia32-msvc@1.3.7':
+ optional: true
+
'@rspack/binding-win32-x64-msvc@1.2.2':
optional: true
@@ -10944,6 +10983,9 @@ snapshots:
'@rspack/binding-win32-x64-msvc@1.3.5':
optional: true
+ '@rspack/binding-win32-x64-msvc@1.3.7':
+ optional: true
+
'@rspack/binding@1.2.2':
optionalDependencies:
'@rspack/binding-darwin-arm64': 1.2.2
@@ -10980,6 +11022,18 @@ snapshots:
'@rspack/binding-win32-ia32-msvc': 1.3.5
'@rspack/binding-win32-x64-msvc': 1.3.5
+ '@rspack/binding@1.3.7':
+ optionalDependencies:
+ '@rspack/binding-darwin-arm64': 1.3.7
+ '@rspack/binding-darwin-x64': 1.3.7
+ '@rspack/binding-linux-arm64-gnu': 1.3.7
+ '@rspack/binding-linux-arm64-musl': 1.3.7
+ '@rspack/binding-linux-x64-gnu': 1.3.7
+ '@rspack/binding-linux-x64-musl': 1.3.7
+ '@rspack/binding-win32-arm64-msvc': 1.3.7
+ '@rspack/binding-win32-ia32-msvc': 1.3.7
+ '@rspack/binding-win32-x64-msvc': 1.3.7
+
'@rspack/core@1.2.2(@swc/helpers@0.5.17)':
dependencies:
'@module-federation/runtime-tools': 0.8.4
@@ -11007,6 +11061,15 @@ snapshots:
optionalDependencies:
'@swc/helpers': 0.5.17
+ '@rspack/core@1.3.7(@swc/helpers@0.5.17)':
+ dependencies:
+ '@module-federation/runtime-tools': 0.13.0
+ '@rspack/binding': 1.3.7
+ '@rspack/lite-tapable': 1.0.1
+ caniuse-lite: 1.0.30001716
+ optionalDependencies:
+ '@swc/helpers': 0.5.17
+
'@rspack/lite-tapable@1.0.1': {}
'@rspack/plugin-react-refresh@1.0.0(react-refresh@0.14.2)':
@@ -11016,57 +11079,55 @@ snapshots:
optionalDependencies:
react-refresh: 0.14.2
- '@rspack/plugin-react-refresh@1.0.0(react-refresh@0.16.0)':
+ '@rspack/plugin-react-refresh@1.0.3(react-refresh@0.16.0)':
dependencies:
error-stack-parser: 2.1.4
html-entities: 2.5.2
- optionalDependencies:
react-refresh: 0.16.0
- '@rspress/core@1.42.0(webpack@5.99.5)':
+ '@rspress/core@2.0.0-beta.3(@types/react@18.3.3)(acorn@8.14.0)(webpack@5.99.5)':
dependencies:
- '@mdx-js/loader': 2.3.0(webpack@5.99.5)
- '@mdx-js/mdx': 2.3.0
- '@mdx-js/react': 2.3.0(react@18.3.1)
- '@rsbuild/core': 1.2.3
- '@rsbuild/plugin-less': 1.1.0(@rsbuild/core@1.2.3)
- '@rsbuild/plugin-react': 1.1.0(@rsbuild/core@1.2.3)
- '@rsbuild/plugin-sass': 1.2.0(@rsbuild/core@1.2.3)
+ '@dr.pogodin/react-helmet': 2.0.4(react@19.1.0)
+ '@mdx-js/loader': 3.1.0(acorn@8.14.0)(webpack@5.99.5)
+ '@mdx-js/mdx': 3.1.0(acorn@8.14.0)
+ '@mdx-js/react': 3.1.0(@types/react@18.3.3)(react@19.1.0)
+ '@rsbuild/core': 1.3.13
+ '@rsbuild/plugin-react': 1.1.1(@rsbuild/core@1.3.13)
'@rspress/mdx-rs': 0.6.6
- '@rspress/plugin-auto-nav-sidebar': 1.42.0
- '@rspress/plugin-container-syntax': 1.42.0
- '@rspress/plugin-last-updated': 1.42.0
- '@rspress/plugin-medium-zoom': 1.42.0(@rspress/runtime@1.42.0)
- '@rspress/runtime': 1.42.0
- '@rspress/shared': 1.42.0
- '@rspress/theme-default': 1.42.0
- enhanced-resolve: 5.18.0
+ '@rspress/plugin-auto-nav-sidebar': 2.0.0-beta.3
+ '@rspress/plugin-container-syntax': 2.0.0-beta.3
+ '@rspress/plugin-last-updated': 2.0.0-beta.3
+ '@rspress/plugin-medium-zoom': 2.0.0-beta.3(@rspress/runtime@2.0.0-beta.3)
+ '@rspress/runtime': 2.0.0-beta.3
+ '@rspress/shared': 2.0.0-beta.3
+ '@rspress/theme-default': 2.0.0-beta.3
+ enhanced-resolve: 5.18.1
github-slugger: 2.0.0
hast-util-from-html: 2.0.3
hast-util-heading-rank: 3.0.0
html-to-text: 9.0.5
- htmr: 1.0.2(react@18.3.1)
lodash-es: 4.17.21
- mdast-util-mdxjs-esm: 1.3.1
- memfs: 4.17.0
+ mdast-util-mdxjs-esm: 2.0.1
picocolors: 1.1.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-helmet-async: 1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
react-lazy-with-preload: 2.2.1
- react-syntax-highlighter: 15.6.1(react@18.3.1)
+ react-router-dom: 6.29.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react-syntax-highlighter: 15.6.1(react@19.1.0)
rehype-external-links: 3.0.0
- remark: 14.0.3
- remark-gfm: 3.0.1
+ remark: 15.0.1
+ remark-gfm: 4.0.1
rspack-plugin-virtual-module: 0.1.13
- tinyglobby: 0.2.12
- unified: 10.1.2
- unist-util-visit: 4.1.2
+ tinyglobby: 0.2.13
+ unified: 11.0.5
+ unist-util-visit: 5.0.0
unist-util-visit-children: 3.0.0
transitivePeerDependencies:
- - '@rspack/tracing'
+ - '@types/react'
+ - acorn
- supports-color
- webpack
+ - webpack-hot-middleware
'@rspress/mdx-rs-darwin-arm64@0.6.6':
optional: true
@@ -11103,38 +11164,43 @@ snapshots:
'@rspress/mdx-rs-win32-arm64-msvc': 0.6.6
'@rspress/mdx-rs-win32-x64-msvc': 0.6.6
- '@rspress/plugin-auto-nav-sidebar@1.42.0':
+ '@rspress/plugin-auto-nav-sidebar@2.0.0-beta.3':
dependencies:
- '@rspress/shared': 1.42.0
- transitivePeerDependencies:
- - '@rspack/tracing'
+ '@rspress/shared': 2.0.0-beta.3
- '@rspress/plugin-container-syntax@1.42.0':
+ '@rspress/plugin-container-syntax@2.0.0-beta.3':
dependencies:
- '@rspress/shared': 1.42.0
- transitivePeerDependencies:
- - '@rspack/tracing'
+ '@rspress/shared': 2.0.0-beta.3
- '@rspress/plugin-last-updated@1.42.0':
+ '@rspress/plugin-last-updated@2.0.0-beta.3':
dependencies:
- '@rspress/shared': 1.42.0
+ '@rspress/shared': 2.0.0-beta.3
+
+ '@rspress/plugin-llms@2.0.0-beta.3(patch_hash=y76d3h7tmx5mdnkw7odsqesguu)(@rspress/core@2.0.0-beta.3(@types/react@18.3.3)(acorn@8.14.0)(webpack@5.99.5))':
+ dependencies:
+ '@rspress/core': 2.0.0-beta.3(@types/react@18.3.3)(acorn@8.14.0)(webpack@5.99.5)
+ '@rspress/shared': 2.0.0-beta.3
+ remark-mdx: 3.1.0
+ remark-parse: 11.0.0
+ remark-stringify: 11.0.0
+ unified: 11.0.5
+ unist-util-visit: 5.0.0
+ unist-util-visit-children: 3.0.0
transitivePeerDependencies:
- - '@rspack/tracing'
+ - supports-color
- '@rspress/plugin-medium-zoom@1.42.0(@rspress/runtime@1.42.0)':
+ '@rspress/plugin-medium-zoom@2.0.0-beta.3(@rspress/runtime@2.0.0-beta.3)':
dependencies:
- '@rspress/runtime': 1.42.0
+ '@rspress/runtime': 2.0.0-beta.3
medium-zoom: 1.1.0
- '@rspress/runtime@1.42.0':
+ '@rspress/runtime@2.0.0-beta.3':
dependencies:
- '@rspress/shared': 1.42.0
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-helmet-async: 1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react-router-dom: 6.29.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- transitivePeerDependencies:
- - '@rspack/tracing'
+ '@dr.pogodin/react-helmet': 2.0.4(react@19.1.0)
+ '@rspress/shared': 2.0.0-beta.3
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ react-router-dom: 6.29.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@rspress/shared@1.42.0':
dependencies:
@@ -11145,24 +11211,29 @@ snapshots:
transitivePeerDependencies:
- '@rspack/tracing'
- '@rspress/theme-default@1.42.0':
+ '@rspress/shared@2.0.0-beta.3':
dependencies:
- '@mdx-js/react': 2.3.0(react@18.3.1)
- '@rspress/runtime': 1.42.0
- '@rspress/shared': 1.42.0
+ '@rsbuild/core': 1.3.13
+ gray-matter: 4.0.3
+ lodash-es: 4.17.21
+ unified: 11.0.5
+
+ '@rspress/theme-default@2.0.0-beta.3':
+ dependencies:
+ '@dr.pogodin/react-helmet': 2.0.4(react@19.1.0)
+ '@mdx-js/react': 2.3.0(react@19.1.0)
+ '@rspress/runtime': 2.0.0-beta.3
+ '@rspress/shared': 2.0.0-beta.3
body-scroll-lock: 4.0.0-beta.0
copy-to-clipboard: 3.3.3
flexsearch: 0.7.43
github-slugger: 2.0.0
- htmr: 1.0.2(react@18.3.1)
+ htmr: 1.0.2(react@19.1.0)
lodash-es: 4.17.21
nprogress: 0.2.0
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-helmet-async: 1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react-syntax-highlighter: 15.6.1(react@18.3.1)
- transitivePeerDependencies:
- - '@rspack/tracing'
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ react-syntax-highlighter: 15.6.1(react@19.1.0)
'@sec-ant/readable-stream@0.4.1': {}
@@ -11309,10 +11380,6 @@ snapshots:
dependencies:
tslib: 2.8.1
- '@types/acorn@4.0.6':
- dependencies:
- '@types/estree': 1.0.6
-
'@types/babel__code-frame@7.0.6': {}
'@types/babel__core@7.20.5':
@@ -11507,11 +11574,11 @@ snapshots:
'@ungap/structured-clone@1.2.1': {}
- '@vercel/analytics@1.3.1(react@19.0.0)':
+ '@vercel/analytics@1.3.1(react@19.1.0)':
dependencies:
server-only: 0.0.1
optionalDependencies:
- react: 19.0.0
+ react: 19.1.0
'@vitest/expect@2.0.5':
dependencies:
@@ -11909,8 +11976,6 @@ snapshots:
big-integer@1.6.52: {}
- big.js@5.2.2: {}
-
binary-extensions@2.3.0: {}
bl@4.1.0:
@@ -11974,8 +12039,6 @@ snapshots:
btoa@1.2.1: {}
- buffer-builder@0.2.0: {}
-
buffer-equal-constant-time@1.0.1: {}
buffer-from@1.1.2: {}
@@ -12033,6 +12096,8 @@ snapshots:
caniuse-lite@1.0.30001714: {}
+ caniuse-lite@1.0.30001716: {}
+
ccount@2.0.1: {}
chai@5.1.1:
@@ -12165,6 +12230,8 @@ snapshots:
code-block-writer@13.0.1: {}
+ collapse-white-space@2.1.0: {}
+
collect-v8-coverage@1.0.2: {}
color-convert@1.9.3:
@@ -12183,8 +12250,6 @@ snapshots:
colorette@2.0.20: {}
- colorjs.io@0.5.2: {}
-
combined-stream@1.0.8:
dependencies:
delayed-stream: 1.0.0
@@ -12539,8 +12604,6 @@ snapshots:
emoji-regex@9.2.2: {}
- emojis-list@3.0.0: {}
-
encodeurl@1.0.2: {}
encodeurl@2.0.0: {}
@@ -12573,11 +12636,6 @@ snapshots:
graceful-fs: 4.2.11
tapable: 2.2.1
- enhanced-resolve@5.18.0:
- dependencies:
- graceful-fs: 4.2.11
- tapable: 2.2.1
-
enhanced-resolve@5.18.1:
dependencies:
graceful-fs: 4.2.11
@@ -12621,6 +12679,20 @@ snapshots:
es-module-lexer@1.5.4: {}
+ esast-util-from-estree@2.0.0:
+ dependencies:
+ '@types/estree-jsx': 1.0.5
+ devlop: 1.1.0
+ estree-util-visit: 2.0.0
+ unist-util-position-from-estree: 2.0.0
+
+ esast-util-from-js@2.0.1:
+ dependencies:
+ '@types/estree-jsx': 1.0.5
+ acorn: 8.14.0
+ esast-util-from-estree: 2.0.0
+ vfile-message: 4.0.2
+
esbuild@0.17.19:
optionalDependencies:
'@esbuild/android-arm': 0.17.19
@@ -12699,30 +12771,36 @@ snapshots:
estraverse@5.3.0: {}
- estree-util-attach-comments@2.1.1:
+ estree-util-attach-comments@3.0.0:
dependencies:
'@types/estree': 1.0.6
- estree-util-build-jsx@2.2.2:
+ estree-util-build-jsx@3.0.1:
dependencies:
'@types/estree-jsx': 1.0.5
- estree-util-is-identifier-name: 2.1.0
+ devlop: 1.1.0
+ estree-util-is-identifier-name: 3.0.0
estree-walker: 3.0.3
estree-util-is-identifier-name@1.1.0: {}
- estree-util-is-identifier-name@2.1.0: {}
+ estree-util-is-identifier-name@3.0.0: {}
+
+ estree-util-scope@1.0.0:
+ dependencies:
+ '@types/estree': 1.0.6
+ devlop: 1.1.0
- estree-util-to-js@1.2.0:
+ estree-util-to-js@2.0.0:
dependencies:
'@types/estree-jsx': 1.0.5
astring: 1.8.6
source-map: 0.7.4
- estree-util-visit@1.2.1:
+ estree-util-visit@2.0.0:
dependencies:
'@types/estree-jsx': 1.0.5
- '@types/unist': 2.0.10
+ '@types/unist': 3.0.2
estree-walker@3.0.3:
dependencies:
@@ -12888,6 +12966,10 @@ snapshots:
optionalDependencies:
picomatch: 4.0.2
+ fdir@6.4.4(picomatch@4.0.2):
+ optionalDependencies:
+ picomatch: 4.0.2
+
figures@3.2.0:
dependencies:
escape-string-regexp: 1.0.5
@@ -13225,27 +13307,50 @@ snapshots:
dependencies:
'@types/hast': 3.0.4
- hast-util-to-estree@2.3.3:
+ hast-util-to-estree@3.1.3:
dependencies:
'@types/estree': 1.0.6
'@types/estree-jsx': 1.0.5
- '@types/hast': 2.3.10
- '@types/unist': 2.0.10
+ '@types/hast': 3.0.4
comma-separated-tokens: 2.0.3
- estree-util-attach-comments: 2.1.1
- estree-util-is-identifier-name: 2.1.0
- hast-util-whitespace: 2.0.1
- mdast-util-mdx-expression: 1.3.2
- mdast-util-mdxjs-esm: 1.3.1
- property-information: 6.5.0
+ devlop: 1.1.0
+ estree-util-attach-comments: 3.0.0
+ estree-util-is-identifier-name: 3.0.0
+ hast-util-whitespace: 3.0.0
+ mdast-util-mdx-expression: 2.0.1
+ mdast-util-mdx-jsx: 3.1.2
+ mdast-util-mdxjs-esm: 2.0.1
+ property-information: 7.0.0
space-separated-tokens: 2.0.2
- style-to-object: 0.4.4
- unist-util-position: 4.0.4
+ style-to-js: 1.1.16
+ unist-util-position: 5.0.0
zwitch: 2.0.4
transitivePeerDependencies:
- supports-color
- hast-util-whitespace@2.0.1: {}
+ hast-util-to-jsx-runtime@2.3.6:
+ dependencies:
+ '@types/estree': 1.0.6
+ '@types/hast': 3.0.4
+ '@types/unist': 3.0.2
+ comma-separated-tokens: 2.0.3
+ devlop: 1.1.0
+ estree-util-is-identifier-name: 3.0.0
+ hast-util-whitespace: 3.0.0
+ mdast-util-mdx-expression: 2.0.1
+ mdast-util-mdx-jsx: 3.1.2
+ mdast-util-mdxjs-esm: 2.0.1
+ property-information: 7.0.0
+ space-separated-tokens: 2.0.2
+ style-to-js: 1.1.16
+ unist-util-position: 5.0.0
+ vfile-message: 4.0.2
+ transitivePeerDependencies:
+ - supports-color
+
+ hast-util-whitespace@3.0.0:
+ dependencies:
+ '@types/hast': 3.0.4
hastscript@6.0.0:
dependencies:
@@ -13321,11 +13426,11 @@ snapshots:
domutils: 3.1.0
entities: 4.5.0
- htmr@1.0.2(react@18.3.1):
+ htmr@1.0.2(react@19.1.0):
dependencies:
html-entities: 2.5.2
htmlparser2: 6.1.0
- react: 18.3.1
+ react: 19.1.0
http-assert@1.5.0:
dependencies:
@@ -13414,8 +13519,6 @@ snapshots:
dependencies:
queue: 6.0.2
- immutable@5.0.3: {}
-
import-fresh@2.0.0:
dependencies:
caller-path: 2.0.0
@@ -13442,7 +13545,7 @@ snapshots:
ini@1.3.8: {}
- inline-style-parser@0.1.1: {}
+ inline-style-parser@0.2.4: {}
invariant@2.2.4:
dependencies:
@@ -13530,10 +13633,6 @@ snapshots:
is-plain-object@5.0.0: {}
- is-reference@3.0.2:
- dependencies:
- '@types/estree': 1.0.6
-
is-stream@2.0.1: {}
is-stream@3.0.0: {}
@@ -14173,12 +14272,6 @@ snapshots:
loader-runner@4.3.0: {}
- loader-utils@2.0.4:
- dependencies:
- big.js: 5.2.2
- emojis-list: 3.0.0
- json5: 2.2.3
-
locate-path@3.0.0:
dependencies:
p-locate: 3.0.0
@@ -14294,24 +14387,18 @@ snapshots:
dependencies:
tmpl: 1.0.5
- markdown-extensions@1.1.1: {}
+ markdown-extensions@2.0.0: {}
markdown-table@3.0.3: {}
marky@1.2.5: {}
- mdast-util-definitions@5.1.2:
- dependencies:
- '@types/mdast': 3.0.15
- '@types/unist': 2.0.10
- unist-util-visit: 4.1.2
-
- mdast-util-find-and-replace@2.2.2:
+ mdast-util-find-and-replace@3.0.2:
dependencies:
- '@types/mdast': 3.0.15
+ '@types/mdast': 4.0.4
escape-string-regexp: 5.0.0
- unist-util-is: 5.2.1
- unist-util-visit-parents: 5.1.3
+ unist-util-is: 6.0.0
+ unist-util-visit-parents: 6.0.1
mdast-util-from-markdown@1.3.1:
dependencies:
@@ -14347,74 +14434,71 @@ snapshots:
transitivePeerDependencies:
- supports-color
- mdast-util-gfm-autolink-literal@1.0.3:
+ mdast-util-gfm-autolink-literal@2.0.1:
dependencies:
- '@types/mdast': 3.0.15
+ '@types/mdast': 4.0.4
ccount: 2.0.1
- mdast-util-find-and-replace: 2.2.2
- micromark-util-character: 1.2.0
+ devlop: 1.1.0
+ mdast-util-find-and-replace: 3.0.2
+ micromark-util-character: 2.1.0
- mdast-util-gfm-footnote@1.0.2:
+ mdast-util-gfm-footnote@2.1.0:
dependencies:
- '@types/mdast': 3.0.15
- mdast-util-to-markdown: 1.5.0
- micromark-util-normalize-identifier: 1.1.0
+ '@types/mdast': 4.0.4
+ devlop: 1.1.0
+ mdast-util-from-markdown: 2.0.1
+ mdast-util-to-markdown: 2.1.0
+ micromark-util-normalize-identifier: 2.0.0
+ transitivePeerDependencies:
+ - supports-color
- mdast-util-gfm-strikethrough@1.0.3:
+ mdast-util-gfm-strikethrough@2.0.0:
dependencies:
- '@types/mdast': 3.0.15
- mdast-util-to-markdown: 1.5.0
+ '@types/mdast': 4.0.4
+ mdast-util-from-markdown: 2.0.1
+ mdast-util-to-markdown: 2.1.0
+ transitivePeerDependencies:
+ - supports-color
- mdast-util-gfm-table@1.0.7:
+ mdast-util-gfm-table@2.0.0:
dependencies:
- '@types/mdast': 3.0.15
+ '@types/mdast': 4.0.4
+ devlop: 1.1.0
markdown-table: 3.0.3
- mdast-util-from-markdown: 1.3.1
- mdast-util-to-markdown: 1.5.0
+ mdast-util-from-markdown: 2.0.1
+ mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
- mdast-util-gfm-task-list-item@1.0.2:
- dependencies:
- '@types/mdast': 3.0.15
- mdast-util-to-markdown: 1.5.0
-
- mdast-util-gfm@2.0.2:
+ mdast-util-gfm-task-list-item@2.0.0:
dependencies:
- mdast-util-from-markdown: 1.3.1
- mdast-util-gfm-autolink-literal: 1.0.3
- mdast-util-gfm-footnote: 1.0.2
- mdast-util-gfm-strikethrough: 1.0.3
- mdast-util-gfm-table: 1.0.7
- mdast-util-gfm-task-list-item: 1.0.2
- mdast-util-to-markdown: 1.5.0
+ '@types/mdast': 4.0.4
+ devlop: 1.1.0
+ mdast-util-from-markdown: 2.0.1
+ mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
- mdast-util-mdx-expression@1.3.2:
+ mdast-util-gfm@3.1.0:
dependencies:
- '@types/estree-jsx': 1.0.5
- '@types/hast': 2.3.10
- '@types/mdast': 3.0.15
- mdast-util-from-markdown: 1.3.1
- mdast-util-to-markdown: 1.5.0
+ mdast-util-from-markdown: 2.0.1
+ mdast-util-gfm-autolink-literal: 2.0.1
+ mdast-util-gfm-footnote: 2.1.0
+ mdast-util-gfm-strikethrough: 2.0.0
+ mdast-util-gfm-table: 2.0.0
+ mdast-util-gfm-task-list-item: 2.0.0
+ mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
- mdast-util-mdx-jsx@2.1.4:
+ mdast-util-mdx-expression@2.0.1:
dependencies:
'@types/estree-jsx': 1.0.5
- '@types/hast': 2.3.10
- '@types/mdast': 3.0.15
- '@types/unist': 2.0.10
- ccount: 2.0.1
- mdast-util-from-markdown: 1.3.1
- mdast-util-to-markdown: 1.5.0
- parse-entities: 4.0.1
- stringify-entities: 4.0.4
- unist-util-remove-position: 4.0.2
- unist-util-stringify-position: 3.0.3
- vfile-message: 3.1.4
+ '@types/hast': 3.0.4
+ '@types/mdast': 4.0.4
+ devlop: 1.1.0
+ mdast-util-from-markdown: 2.0.1
+ mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
@@ -14436,23 +14520,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- mdast-util-mdx@2.0.1:
- dependencies:
- mdast-util-from-markdown: 1.3.1
- mdast-util-mdx-expression: 1.3.2
- mdast-util-mdx-jsx: 2.1.4
- mdast-util-mdxjs-esm: 1.3.1
- mdast-util-to-markdown: 1.5.0
- transitivePeerDependencies:
- - supports-color
-
- mdast-util-mdxjs-esm@1.3.1:
+ mdast-util-mdx@3.0.0:
dependencies:
- '@types/estree-jsx': 1.0.5
- '@types/hast': 2.3.10
- '@types/mdast': 3.0.15
- mdast-util-from-markdown: 1.3.1
- mdast-util-to-markdown: 1.5.0
+ mdast-util-from-markdown: 2.0.1
+ mdast-util-mdx-expression: 2.0.1
+ mdast-util-mdx-jsx: 3.1.2
+ mdast-util-mdxjs-esm: 2.0.1
+ mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
@@ -14477,16 +14551,17 @@ snapshots:
'@types/mdast': 4.0.4
unist-util-is: 6.0.0
- mdast-util-to-hast@12.3.0:
+ mdast-util-to-hast@13.2.0:
dependencies:
- '@types/hast': 2.3.10
- '@types/mdast': 3.0.15
- mdast-util-definitions: 5.1.2
- micromark-util-sanitize-uri: 1.2.0
+ '@types/hast': 3.0.4
+ '@types/mdast': 4.0.4
+ '@ungap/structured-clone': 1.2.1
+ devlop: 1.1.0
+ micromark-util-sanitize-uri: 2.0.0
trim-lines: 3.0.1
- unist-util-generated: 2.0.1
- unist-util-position: 4.0.4
- unist-util-visit: 4.1.2
+ unist-util-position: 5.0.0
+ unist-util-visit: 5.0.0
+ vfile: 6.0.2
mdast-util-to-markdown@1.5.0:
dependencies:
@@ -14755,114 +14830,114 @@ snapshots:
micromark-util-symbol: 2.0.0
micromark-util-types: 2.0.0
- micromark-extension-gfm-autolink-literal@1.0.5:
+ micromark-extension-gfm-autolink-literal@2.1.0:
dependencies:
- micromark-util-character: 1.2.0
- micromark-util-sanitize-uri: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
+ micromark-util-character: 2.1.0
+ micromark-util-sanitize-uri: 2.0.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
- micromark-extension-gfm-footnote@1.1.2:
+ micromark-extension-gfm-footnote@2.1.0:
dependencies:
- micromark-core-commonmark: 1.1.0
- micromark-factory-space: 1.1.0
- micromark-util-character: 1.2.0
- micromark-util-normalize-identifier: 1.1.0
- micromark-util-sanitize-uri: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
+ devlop: 1.1.0
+ micromark-core-commonmark: 2.0.1
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-normalize-identifier: 2.0.0
+ micromark-util-sanitize-uri: 2.0.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
- micromark-extension-gfm-strikethrough@1.0.7:
+ micromark-extension-gfm-strikethrough@2.1.0:
dependencies:
- micromark-util-chunked: 1.1.0
- micromark-util-classify-character: 1.1.0
- micromark-util-resolve-all: 1.1.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
+ devlop: 1.1.0
+ micromark-util-chunked: 2.0.0
+ micromark-util-classify-character: 2.0.0
+ micromark-util-resolve-all: 2.0.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
- micromark-extension-gfm-table@1.0.7:
+ micromark-extension-gfm-table@2.1.1:
dependencies:
- micromark-factory-space: 1.1.0
- micromark-util-character: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
+ devlop: 1.1.0
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
- micromark-extension-gfm-tagfilter@1.0.2:
+ micromark-extension-gfm-tagfilter@2.0.0:
dependencies:
- micromark-util-types: 1.1.0
+ micromark-util-types: 2.0.0
- micromark-extension-gfm-task-list-item@1.0.5:
+ micromark-extension-gfm-task-list-item@2.1.0:
dependencies:
- micromark-factory-space: 1.1.0
- micromark-util-character: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
+ devlop: 1.1.0
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
- micromark-extension-gfm@2.0.3:
+ micromark-extension-gfm@3.0.0:
dependencies:
- micromark-extension-gfm-autolink-literal: 1.0.5
- micromark-extension-gfm-footnote: 1.1.2
- micromark-extension-gfm-strikethrough: 1.0.7
- micromark-extension-gfm-table: 1.0.7
- micromark-extension-gfm-tagfilter: 1.0.2
- micromark-extension-gfm-task-list-item: 1.0.5
- micromark-util-combine-extensions: 1.1.0
- micromark-util-types: 1.1.0
+ micromark-extension-gfm-autolink-literal: 2.1.0
+ micromark-extension-gfm-footnote: 2.1.0
+ micromark-extension-gfm-strikethrough: 2.1.0
+ micromark-extension-gfm-table: 2.1.1
+ micromark-extension-gfm-tagfilter: 2.0.0
+ micromark-extension-gfm-task-list-item: 2.1.0
+ micromark-util-combine-extensions: 2.0.0
+ micromark-util-types: 2.0.0
- micromark-extension-mdx-expression@1.0.8:
+ micromark-extension-mdx-expression@3.0.1:
dependencies:
'@types/estree': 1.0.6
- micromark-factory-mdx-expression: 1.0.9
- micromark-factory-space: 1.1.0
- micromark-util-character: 1.2.0
- micromark-util-events-to-acorn: 1.2.3
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
+ devlop: 1.1.0
+ micromark-factory-mdx-expression: 2.0.3
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-events-to-acorn: 2.0.3
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
- micromark-extension-mdx-jsx@1.0.5:
+ micromark-extension-mdx-jsx@3.0.2:
dependencies:
- '@types/acorn': 4.0.6
'@types/estree': 1.0.6
- estree-util-is-identifier-name: 2.1.0
- micromark-factory-mdx-expression: 1.0.9
- micromark-factory-space: 1.1.0
- micromark-util-character: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
- vfile-message: 3.1.4
+ devlop: 1.1.0
+ estree-util-is-identifier-name: 3.0.0
+ micromark-factory-mdx-expression: 2.0.3
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-events-to-acorn: 2.0.3
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ vfile-message: 4.0.2
- micromark-extension-mdx-md@1.0.1:
+ micromark-extension-mdx-md@2.0.0:
dependencies:
- micromark-util-types: 1.1.0
+ micromark-util-types: 2.0.0
- micromark-extension-mdxjs-esm@1.0.5:
+ micromark-extension-mdxjs-esm@3.0.0:
dependencies:
'@types/estree': 1.0.6
- micromark-core-commonmark: 1.1.0
- micromark-util-character: 1.2.0
- micromark-util-events-to-acorn: 1.2.3
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- unist-util-position-from-estree: 1.1.2
- uvu: 0.5.6
- vfile-message: 3.1.4
+ devlop: 1.1.0
+ micromark-core-commonmark: 2.0.1
+ micromark-util-character: 2.1.0
+ micromark-util-events-to-acorn: 2.0.3
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ unist-util-position-from-estree: 2.0.0
+ vfile-message: 4.0.2
- micromark-extension-mdxjs@1.0.1:
+ micromark-extension-mdxjs@3.0.0:
dependencies:
acorn: 8.14.0
acorn-jsx: 5.3.2(acorn@8.14.0)
- micromark-extension-mdx-expression: 1.0.8
- micromark-extension-mdx-jsx: 1.0.5
- micromark-extension-mdx-md: 1.0.1
- micromark-extension-mdxjs-esm: 1.0.5
- micromark-util-combine-extensions: 1.1.0
- micromark-util-types: 1.1.0
+ micromark-extension-mdx-expression: 3.0.1
+ micromark-extension-mdx-jsx: 3.0.2
+ micromark-extension-mdx-md: 2.0.0
+ micromark-extension-mdxjs-esm: 3.0.0
+ micromark-util-combine-extensions: 2.0.0
+ micromark-util-types: 2.0.0
micromark-factory-destination@1.1.0:
dependencies:
@@ -14890,16 +14965,17 @@ snapshots:
micromark-util-symbol: 2.0.0
micromark-util-types: 2.0.0
- micromark-factory-mdx-expression@1.0.9:
+ micromark-factory-mdx-expression@2.0.3:
dependencies:
'@types/estree': 1.0.6
- micromark-util-character: 1.2.0
- micromark-util-events-to-acorn: 1.2.3
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- unist-util-position-from-estree: 1.1.2
- uvu: 0.5.6
- vfile-message: 3.1.4
+ devlop: 1.1.0
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-events-to-acorn: 2.0.3
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ unist-util-position-from-estree: 2.0.0
+ vfile-message: 4.0.2
micromark-factory-space@1.1.0:
dependencies:
@@ -15005,16 +15081,15 @@ snapshots:
micromark-util-encode@2.0.0: {}
- micromark-util-events-to-acorn@1.2.3:
+ micromark-util-events-to-acorn@2.0.3:
dependencies:
- '@types/acorn': 4.0.6
'@types/estree': 1.0.6
- '@types/unist': 2.0.10
- estree-util-visit: 1.2.1
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
- vfile-message: 3.1.4
+ '@types/unist': 3.0.2
+ devlop: 1.1.0
+ estree-util-visit: 2.0.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ vfile-message: 4.0.2
micromark-util-html-tag-name@1.2.0: {}
@@ -15197,6 +15272,20 @@ snapshots:
- react-native-svg
- supports-color
+ nativewind@4.1.23(react-native-reanimated@3.17.4(@babel/core@7.25.2)(react-native@0.79.1(@babel/core@7.25.2)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@19.0.10)(react@19.1.0))(react@19.1.0))(react-native@0.79.1(@babel/core@7.25.2)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@19.0.10)(react@19.1.0))(react@19.1.0)(tailwindcss@3.4.17):
+ dependencies:
+ comment-json: 4.2.5
+ debug: 4.4.0
+ react-native-css-interop: 0.1.22(react-native-reanimated@3.17.4(@babel/core@7.25.2)(react-native@0.79.1(@babel/core@7.25.2)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@19.0.10)(react@19.1.0))(react@19.1.0))(react-native@0.79.1(@babel/core@7.25.2)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@19.0.10)(react@19.1.0))(react@19.1.0)(tailwindcss@3.4.17)
+ tailwindcss: 3.4.17
+ transitivePeerDependencies:
+ - react
+ - react-native
+ - react-native-reanimated
+ - react-native-safe-area-context
+ - react-native-svg
+ - supports-color
+
natural-compare@1.4.0: {}
negotiator@0.6.3: {}
@@ -15515,12 +15604,6 @@ snapshots:
peberminta@0.9.0: {}
- periscopic@3.1.0:
- dependencies:
- '@types/estree': 1.0.6
- estree-walker: 3.0.3
- is-reference: 3.0.2
-
picocolors@1.1.1: {}
picomatch@2.3.1: {}
@@ -15689,18 +15772,14 @@ snapshots:
kleur: 3.0.3
sisteransi: 1.0.5
- prop-types@15.8.1:
- dependencies:
- loose-envify: 1.4.0
- object-assign: 4.1.1
- react-is: 16.13.1
-
property-information@5.6.0:
dependencies:
xtend: 4.0.2
property-information@6.5.0: {}
+ property-information@7.0.0: {}
+
proxy-addr@2.0.7:
dependencies:
forwarded: 0.2.0
@@ -15754,17 +15833,15 @@ snapshots:
- bufferutil
- utf-8-validate
- react-dom@18.3.1(react@18.3.1):
+ react-dom@19.1.0(react@19.0.0):
dependencies:
- loose-envify: 1.4.0
- react: 18.3.1
- scheduler: 0.23.2
+ react: 19.0.0
+ scheduler: 0.26.0
- react-dom@18.3.1(react@19.0.0):
+ react-dom@19.1.0(react@19.1.0):
dependencies:
- loose-envify: 1.4.0
- react: 19.0.0
- scheduler: 0.23.2
+ react: 19.1.0
+ scheduler: 0.26.0
react-fast-compare@3.2.2: {}
@@ -15772,16 +15849,6 @@ snapshots:
dependencies:
react: 19.0.0
- react-helmet-async@1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
- dependencies:
- '@babel/runtime': 7.25.6
- invariant: 2.2.4
- prop-types: 15.8.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-fast-compare: 3.2.2
- shallowequal: 1.1.0
-
react-is@16.13.1: {}
react-is@17.0.2: {}
@@ -15808,11 +15875,31 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ react-native-css-interop@0.1.22(react-native-reanimated@3.17.4(@babel/core@7.25.2)(react-native@0.79.1(@babel/core@7.25.2)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@19.0.10)(react@19.1.0))(react@19.1.0))(react-native@0.79.1(@babel/core@7.25.2)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@19.0.10)(react@19.1.0))(react@19.1.0)(tailwindcss@3.4.17):
+ dependencies:
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/traverse': 7.25.6
+ '@babel/types': 7.25.6
+ debug: 4.4.0
+ lightningcss: 1.28.2
+ react: 19.1.0
+ react-native: 0.79.1(@babel/core@7.25.2)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@19.0.10)(react@19.1.0)
+ react-native-reanimated: 3.17.4(@babel/core@7.25.2)(react-native@0.79.1(@babel/core@7.25.2)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@19.0.10)(react@19.1.0))(react@19.1.0)
+ semver: 7.6.3
+ tailwindcss: 3.4.17
+ transitivePeerDependencies:
+ - supports-color
+
react-native-is-edge-to-edge@1.1.7(react-native@0.79.1(@babel/core@7.25.2)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@19.0.10)(react@19.0.0))(react@19.0.0):
dependencies:
react: 19.0.0
react-native: 0.79.1(@babel/core@7.25.2)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@19.0.10)(react@19.0.0)
+ react-native-is-edge-to-edge@1.1.7(react-native@0.79.1(@babel/core@7.25.2)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@19.0.10)(react@19.1.0))(react@19.1.0):
+ dependencies:
+ react: 19.1.0
+ react-native: 0.79.1(@babel/core@7.25.2)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@19.0.10)(react@19.1.0)
+
react-native-reanimated@3.17.4(@babel/core@7.25.2)(react-native@0.79.1(@babel/core@7.25.2)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@19.0.10)(react@19.0.0))(react@19.0.0):
dependencies:
'@babel/core': 7.25.2
@@ -15833,6 +15920,26 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ react-native-reanimated@3.17.4(@babel/core@7.25.2)(react-native@0.79.1(@babel/core@7.25.2)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@19.0.10)(react@19.1.0))(react@19.1.0):
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-class-properties': 7.25.4(@babel/core@7.25.2)
+ '@babel/plugin-transform-classes': 7.25.4(@babel/core@7.25.2)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.25.2)
+ '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.25.2)
+ '@babel/preset-typescript': 7.24.7(@babel/core@7.25.2)
+ convert-source-map: 2.0.0
+ invariant: 2.2.4
+ react: 19.1.0
+ react-native: 0.79.1(@babel/core@7.25.2)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@19.0.10)(react@19.1.0)
+ react-native-is-edge-to-edge: 1.1.7(react-native@0.79.1(@babel/core@7.25.2)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@19.0.10)(react@19.1.0))(react@19.1.0)
+ transitivePeerDependencies:
+ - supports-color
+
react-native-safe-area-context@5.4.0(react-native@0.79.1(@babel/core@7.25.2)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@19.0.10)(react@19.0.0))(react@19.0.0):
dependencies:
react: 19.0.0
@@ -15914,38 +16021,84 @@ snapshots:
- supports-color
- utf-8-validate
+ react-native@0.79.1(@babel/core@7.25.2)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@19.0.10)(react@19.1.0):
+ dependencies:
+ '@jest/create-cache-key-function': 29.7.0
+ '@react-native/assets-registry': 0.79.1
+ '@react-native/codegen': 0.79.1(@babel/core@7.25.2)
+ '@react-native/community-cli-plugin': 0.79.1(@react-native-community/cli@18.0.0(typescript@5.8.3))
+ '@react-native/gradle-plugin': 0.79.1
+ '@react-native/js-polyfills': 0.79.1
+ '@react-native/normalize-colors': 0.79.1
+ '@react-native/virtualized-lists': 0.79.1(@types/react@19.0.10)(react-native@0.79.1(@babel/core@7.25.2)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@19.0.10)(react@19.1.0))(react@19.1.0)
+ abort-controller: 3.0.0
+ anser: 1.4.10
+ ansi-regex: 5.0.1
+ babel-jest: 29.7.0(@babel/core@7.25.2)
+ babel-plugin-syntax-hermes-parser: 0.25.1
+ base64-js: 1.5.1
+ chalk: 4.1.2
+ commander: 12.1.0
+ event-target-shim: 5.0.1
+ flow-enums-runtime: 0.0.6
+ glob: 7.2.3
+ invariant: 2.2.4
+ jest-environment-node: 29.7.0
+ memoize-one: 5.2.1
+ metro-runtime: 0.82.1
+ metro-source-map: 0.82.1
+ nullthrows: 1.1.1
+ pretty-format: 29.7.0
+ promise: 8.3.0
+ react: 19.1.0
+ react-devtools-core: 6.1.1
+ react-refresh: 0.14.2
+ regenerator-runtime: 0.13.11
+ scheduler: 0.25.0
+ semver: 7.6.3
+ stacktrace-parser: 0.1.10
+ whatwg-fetch: 3.6.20
+ ws: 6.2.3
+ yargs: 17.7.2
+ optionalDependencies:
+ '@types/react': 19.0.10
+ transitivePeerDependencies:
+ - '@babel/core'
+ - '@react-native-community/cli'
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+
react-refresh@0.14.2: {}
react-refresh@0.16.0: {}
- react-router-dom@6.29.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ react-router-dom@6.29.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
dependencies:
'@remix-run/router': 1.22.0
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-router: 6.29.0(react@18.3.1)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ react-router: 6.29.0(react@19.1.0)
- react-router@6.29.0(react@18.3.1):
+ react-router@6.29.0(react@19.1.0):
dependencies:
'@remix-run/router': 1.22.0
- react: 18.3.1
+ react: 19.1.0
- react-syntax-highlighter@15.6.1(react@18.3.1):
+ react-syntax-highlighter@15.6.1(react@19.1.0):
dependencies:
'@babel/runtime': 7.25.6
highlight.js: 10.7.3
highlightjs-vue: 1.0.0
lowlight: 1.20.0
prismjs: 1.29.0
- react: 18.3.1
+ react: 19.1.0
refractor: 3.6.0
- react@18.3.1:
- dependencies:
- loose-envify: 1.4.0
-
react@19.0.0: {}
+ react@19.1.0: {}
+
read-cache@1.0.0:
dependencies:
pify: 2.3.0
@@ -15977,7 +16130,35 @@ snapshots:
real-require@0.2.0: {}
- reduce-configs@1.1.0: {}
+ recma-build-jsx@1.0.0:
+ dependencies:
+ '@types/estree': 1.0.6
+ estree-util-build-jsx: 3.0.1
+ vfile: 6.0.2
+
+ recma-jsx@1.0.0(acorn@8.14.0):
+ dependencies:
+ acorn-jsx: 5.3.2(acorn@8.14.0)
+ estree-util-to-js: 2.0.0
+ recma-parse: 1.0.0
+ recma-stringify: 1.0.0
+ unified: 11.0.5
+ transitivePeerDependencies:
+ - acorn
+
+ recma-parse@1.0.0:
+ dependencies:
+ '@types/estree': 1.0.6
+ esast-util-from-js: 2.0.1
+ unified: 11.0.5
+ vfile: 6.0.2
+
+ recma-stringify@1.0.0:
+ dependencies:
+ '@types/estree': 1.0.6
+ estree-util-to-js: 2.0.0
+ unified: 11.0.5
+ vfile: 6.0.2
refractor@3.6.0:
dependencies:
@@ -16021,12 +16202,22 @@ snapshots:
space-separated-tokens: 2.0.2
unist-util-visit: 5.0.0
- remark-gfm@3.0.1:
+ rehype-recma@1.0.0:
dependencies:
- '@types/mdast': 3.0.15
- mdast-util-gfm: 2.0.2
- micromark-extension-gfm: 2.0.3
- unified: 10.1.2
+ '@types/estree': 1.0.6
+ '@types/hast': 3.0.4
+ hast-util-to-estree: 3.1.3
+ transitivePeerDependencies:
+ - supports-color
+
+ remark-gfm@4.0.1:
+ dependencies:
+ '@types/mdast': 4.0.4
+ mdast-util-gfm: 3.1.0
+ micromark-extension-gfm: 3.0.0
+ remark-parse: 11.0.0
+ remark-stringify: 11.0.0
+ unified: 11.0.5
transitivePeerDependencies:
- supports-color
@@ -16053,40 +16244,42 @@ snapshots:
transitivePeerDependencies:
- supports-color
- remark-mdx@2.3.0:
+ remark-mdx@3.1.0:
dependencies:
- mdast-util-mdx: 2.0.1
- micromark-extension-mdxjs: 1.0.1
+ mdast-util-mdx: 3.0.0
+ micromark-extension-mdxjs: 3.0.0
transitivePeerDependencies:
- supports-color
- remark-parse@10.0.2:
+ remark-parse@11.0.0:
dependencies:
- '@types/mdast': 3.0.15
- mdast-util-from-markdown: 1.3.1
- unified: 10.1.2
+ '@types/mdast': 4.0.4
+ mdast-util-from-markdown: 2.0.1
+ micromark-util-types: 2.0.0
+ unified: 11.0.5
transitivePeerDependencies:
- supports-color
- remark-rehype@10.1.0:
+ remark-rehype@11.1.2:
dependencies:
- '@types/hast': 2.3.10
- '@types/mdast': 3.0.15
- mdast-util-to-hast: 12.3.0
- unified: 10.1.2
+ '@types/hast': 3.0.4
+ '@types/mdast': 4.0.4
+ mdast-util-to-hast: 13.2.0
+ unified: 11.0.5
+ vfile: 6.0.2
- remark-stringify@10.0.3:
+ remark-stringify@11.0.0:
dependencies:
- '@types/mdast': 3.0.15
- mdast-util-to-markdown: 1.5.0
- unified: 10.1.2
+ '@types/mdast': 4.0.4
+ mdast-util-to-markdown: 2.1.0
+ unified: 11.0.5
- remark@14.0.3:
+ remark@15.0.1:
dependencies:
- '@types/mdast': 3.0.15
- remark-parse: 10.0.2
- remark-stringify: 10.0.3
- unified: 10.1.2
+ '@types/mdast': 4.0.4
+ remark-parse: 11.0.0
+ remark-stringify: 11.0.0
+ unified: 11.0.5
transitivePeerDependencies:
- supports-color
@@ -16173,9 +16366,9 @@ snapshots:
optionalDependencies:
typescript: 5.8.3
- rsbuild-plugin-open-graph@1.0.2(@rsbuild/core@1.3.5):
+ rsbuild-plugin-open-graph@1.0.2(@rsbuild/core@1.3.13):
optionalDependencies:
- '@rsbuild/core': 1.3.5
+ '@rsbuild/core': 1.3.13
rslog@1.2.3: {}
@@ -16183,7 +16376,7 @@ snapshots:
dependencies:
fs-extra: 11.2.0
- rspress-plugin-devkit@0.3.0(rspress@1.42.0(webpack@5.99.5)):
+ rspress-plugin-devkit@0.3.0(rspress@2.0.0-beta.3(@types/react@18.3.3)(acorn@8.14.0)(webpack@5.99.5)):
dependencies:
'@rspress/shared': 1.42.0
'@types/estree-jsx': 1.0.5
@@ -16198,7 +16391,7 @@ snapshots:
mdast-util-to-markdown: 1.5.0
mdast-util-to-string: 4.0.0
remark-mdc: 1.2.0
- rspress: 1.42.0(webpack@5.99.5)
+ rspress: 2.0.0-beta.3(@types/react@18.3.3)(acorn@8.14.0)(webpack@5.99.5)
ts-morph: 22.0.0
unified: 10.1.2
unist-util-visit: 5.0.0
@@ -16212,30 +16405,34 @@ snapshots:
rspress-plugin-font-open-sans@1.0.0: {}
- rspress-plugin-vercel-analytics@0.3.0(react@19.0.0)(rspress@1.42.0(webpack@5.99.5)):
+ rspress-plugin-sitemap@1.1.1: {}
+
+ rspress-plugin-vercel-analytics@0.3.0(react@19.1.0)(rspress@2.0.0-beta.3(@types/react@18.3.3)(acorn@8.14.0)(webpack@5.99.5)):
dependencies:
'@rspress/shared': 1.42.0
- '@vercel/analytics': 1.3.1(react@19.0.0)
- rspress: 1.42.0(webpack@5.99.5)
- rspress-plugin-devkit: 0.3.0(rspress@1.42.0(webpack@5.99.5))
+ '@vercel/analytics': 1.3.1(react@19.1.0)
+ rspress: 2.0.0-beta.3(@types/react@18.3.3)(acorn@8.14.0)(webpack@5.99.5)
+ rspress-plugin-devkit: 0.3.0(rspress@2.0.0-beta.3(@types/react@18.3.3)(acorn@8.14.0)(webpack@5.99.5))
transitivePeerDependencies:
- '@rspack/tracing'
- next
- react
- supports-color
- rspress@1.42.0(webpack@5.99.5):
+ rspress@2.0.0-beta.3(@types/react@18.3.3)(acorn@8.14.0)(webpack@5.99.5):
dependencies:
- '@rsbuild/core': 1.2.3
- '@rspress/core': 1.42.0(webpack@5.99.5)
- '@rspress/shared': 1.42.0
+ '@rsbuild/core': 1.3.13
+ '@rspress/core': 2.0.0-beta.3(@types/react@18.3.3)(acorn@8.14.0)(webpack@5.99.5)
+ '@rspress/shared': 2.0.0-beta.3
cac: 6.7.14
chokidar: 3.6.0
picocolors: 1.1.1
transitivePeerDependencies:
- - '@rspack/tracing'
+ - '@types/react'
+ - acorn
- supports-color
- webpack
+ - webpack-hot-middleware
run-applescript@7.0.0: {}
@@ -16243,10 +16440,6 @@ snapshots:
dependencies:
queue-microtask: 1.2.3
- rxjs@7.8.1:
- dependencies:
- tslib: 2.8.1
-
sade@1.8.1:
dependencies:
mri: 1.2.0
@@ -16263,104 +16456,10 @@ snapshots:
safer-buffer@2.1.2: {}
- sass-embedded-android-arm64@1.83.4:
- optional: true
-
- sass-embedded-android-arm@1.83.4:
- optional: true
-
- sass-embedded-android-ia32@1.83.4:
- optional: true
-
- sass-embedded-android-riscv64@1.83.4:
- optional: true
-
- sass-embedded-android-x64@1.83.4:
- optional: true
-
- sass-embedded-darwin-arm64@1.83.4:
- optional: true
-
- sass-embedded-darwin-x64@1.83.4:
- optional: true
-
- sass-embedded-linux-arm64@1.83.4:
- optional: true
-
- sass-embedded-linux-arm@1.83.4:
- optional: true
-
- sass-embedded-linux-ia32@1.83.4:
- optional: true
-
- sass-embedded-linux-musl-arm64@1.83.4:
- optional: true
-
- sass-embedded-linux-musl-arm@1.83.4:
- optional: true
-
- sass-embedded-linux-musl-ia32@1.83.4:
- optional: true
-
- sass-embedded-linux-musl-riscv64@1.83.4:
- optional: true
-
- sass-embedded-linux-musl-x64@1.83.4:
- optional: true
-
- sass-embedded-linux-riscv64@1.83.4:
- optional: true
-
- sass-embedded-linux-x64@1.83.4:
- optional: true
-
- sass-embedded-win32-arm64@1.83.4:
- optional: true
-
- sass-embedded-win32-ia32@1.83.4:
- optional: true
-
- sass-embedded-win32-x64@1.83.4:
- optional: true
-
- sass-embedded@1.83.4:
- dependencies:
- '@bufbuild/protobuf': 2.2.0
- buffer-builder: 0.2.0
- colorjs.io: 0.5.2
- immutable: 5.0.3
- rxjs: 7.8.1
- supports-color: 8.1.1
- sync-child-process: 1.0.2
- varint: 6.0.0
- optionalDependencies:
- sass-embedded-android-arm: 1.83.4
- sass-embedded-android-arm64: 1.83.4
- sass-embedded-android-ia32: 1.83.4
- sass-embedded-android-riscv64: 1.83.4
- sass-embedded-android-x64: 1.83.4
- sass-embedded-darwin-arm64: 1.83.4
- sass-embedded-darwin-x64: 1.83.4
- sass-embedded-linux-arm: 1.83.4
- sass-embedded-linux-arm64: 1.83.4
- sass-embedded-linux-ia32: 1.83.4
- sass-embedded-linux-musl-arm: 1.83.4
- sass-embedded-linux-musl-arm64: 1.83.4
- sass-embedded-linux-musl-ia32: 1.83.4
- sass-embedded-linux-musl-riscv64: 1.83.4
- sass-embedded-linux-musl-x64: 1.83.4
- sass-embedded-linux-riscv64: 1.83.4
- sass-embedded-linux-x64: 1.83.4
- sass-embedded-win32-arm64: 1.83.4
- sass-embedded-win32-ia32: 1.83.4
- sass-embedded-win32-x64: 1.83.4
-
- scheduler@0.23.2:
- dependencies:
- loose-envify: 1.4.0
-
scheduler@0.25.0: {}
+ scheduler@0.26.0: {}
+
schema-utils@4.3.0:
dependencies:
'@types/json-schema': 7.0.15
@@ -16667,9 +16766,13 @@ snapshots:
minimist: 1.2.8
through: 2.3.8
- style-to-object@0.4.4:
+ style-to-js@1.1.16:
dependencies:
- inline-style-parser: 0.1.1
+ style-to-object: 1.0.8
+
+ style-to-object@1.0.8:
+ dependencies:
+ inline-style-parser: 0.2.4
sucrase@3.35.0:
dependencies:
@@ -16709,12 +16812,6 @@ snapshots:
csso: 5.0.5
picocolors: 1.1.1
- sync-child-process@1.0.2:
- dependencies:
- sync-message-port: 1.1.3
-
- sync-message-port@1.1.3: {}
-
tailwind-merge@2.6.0: {}
tailwindcss@3.4.17:
@@ -16809,6 +16906,11 @@ snapshots:
fdir: 6.4.3(picomatch@4.0.2)
picomatch: 4.0.2
+ tinyglobby@0.2.13:
+ dependencies:
+ fdir: 6.4.4(picomatch@4.0.2)
+ picomatch: 4.0.2
+
tinygradient@1.1.5:
dependencies:
'@types/tinycolor2': 1.4.6
@@ -16923,8 +17025,6 @@ snapshots:
dependencies:
qs: 6.13.0
- unist-util-generated@2.0.1: {}
-
unist-util-is@5.2.1:
dependencies:
'@types/unist': 2.0.10
@@ -16933,18 +17033,13 @@ snapshots:
dependencies:
'@types/unist': 3.0.2
- unist-util-position-from-estree@1.1.2:
+ unist-util-position-from-estree@2.0.0:
dependencies:
- '@types/unist': 2.0.10
-
- unist-util-position@4.0.4:
- dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 3.0.2
- unist-util-remove-position@4.0.2:
+ unist-util-position@5.0.0:
dependencies:
- '@types/unist': 2.0.10
- unist-util-visit: 4.1.2
+ '@types/unist': 3.0.2
unist-util-remove-position@5.0.0:
dependencies:
@@ -17028,8 +17123,6 @@ snapshots:
'@types/istanbul-lib-coverage': 2.0.6
convert-source-map: 2.0.0
- varint@6.0.0: {}
-
vary@1.1.2: {}
vfile-location@5.0.3:
@@ -17081,13 +17174,13 @@ snapshots:
unist-util-stringify-position: 4.0.0
vfile-message: 4.0.2
- vite-node@2.0.5(@types/node@20.14.11)(lightningcss@1.28.2)(sass-embedded@1.83.4)(terser@5.31.3):
+ vite-node@2.0.5(@types/node@20.14.11)(lightningcss@1.28.2)(terser@5.31.3):
dependencies:
cac: 6.7.14
debug: 4.4.0
pathe: 1.1.2
tinyrainbow: 1.2.0
- vite: 5.4.3(@types/node@20.14.11)(lightningcss@1.28.2)(sass-embedded@1.83.4)(terser@5.31.3)
+ vite: 5.4.3(@types/node@20.14.11)(lightningcss@1.28.2)(terser@5.31.3)
transitivePeerDependencies:
- '@types/node'
- less
@@ -17099,7 +17192,7 @@ snapshots:
- supports-color
- terser
- vite@5.4.3(@types/node@20.14.11)(lightningcss@1.28.2)(sass-embedded@1.83.4)(terser@5.31.3):
+ vite@5.4.3(@types/node@20.14.11)(lightningcss@1.28.2)(terser@5.31.3):
dependencies:
esbuild: 0.21.5
postcss: 8.5.1
@@ -17108,10 +17201,9 @@ snapshots:
'@types/node': 20.14.11
fsevents: 2.3.3
lightningcss: 1.28.2
- sass-embedded: 1.83.4
terser: 5.31.3
- vitest@2.0.5(@types/node@20.14.11)(lightningcss@1.28.2)(sass-embedded@1.83.4)(terser@5.31.3):
+ vitest@2.0.5(@types/node@20.14.11)(lightningcss@1.28.2)(terser@5.31.3):
dependencies:
'@ampproject/remapping': 2.3.0
'@vitest/expect': 2.0.5
@@ -17129,8 +17221,8 @@ snapshots:
tinybench: 2.9.0
tinypool: 1.0.1
tinyrainbow: 1.2.0
- vite: 5.4.3(@types/node@20.14.11)(lightningcss@1.28.2)(sass-embedded@1.83.4)(terser@5.31.3)
- vite-node: 2.0.5(@types/node@20.14.11)(lightningcss@1.28.2)(sass-embedded@1.83.4)(terser@5.31.3)
+ vite: 5.4.3(@types/node@20.14.11)(lightningcss@1.28.2)(terser@5.31.3)
+ vite-node: 2.0.5(@types/node@20.14.11)(lightningcss@1.28.2)(terser@5.31.3)
why-is-node-running: 2.3.0
optionalDependencies:
'@types/node': 20.14.11
diff --git a/website/package.json b/website/package.json
index f497f14d6..0b482450e 100644
--- a/website/package.json
+++ b/website/package.json
@@ -10,15 +10,20 @@
"diff:v3-v4:mjs": "git diff @callstack/repack@3.0.0:templates/webpack.config.mjs HEAD:templates/webpack.config.mjs > src/public/diffs/repack_v3-v4_mjs.diff"
},
"dependencies": {
- "@callstack/rspress-theme": "^0.0.2",
+ "@callstack/rspress-theme": "^0.0.3",
+ "@rspress/plugin-llms": "2.0.0-beta.3",
"rsbuild-plugin-open-graph": "^1.0.2",
- "rspress": "1.42.0",
+ "rspress": "2.0.0-beta.3",
"rspress-plugin-font-open-sans": "^1.0.0",
+ "rspress-plugin-sitemap": "^1.1.1",
"rspress-plugin-vercel-analytics": "^0.3.0"
},
"devDependencies": {
"@types/node": "^18",
"@types/react": "^18.2.64",
"typescript": "catalog:"
+ },
+ "engines": {
+ "node": ">=22"
}
}
diff --git a/website/rspress.config.ts b/website/rspress.config.ts
index cf9c4cf9c..885392421 100644
--- a/website/rspress.config.ts
+++ b/website/rspress.config.ts
@@ -1,7 +1,9 @@
import * as path from 'node:path';
import { pluginCallstackTheme } from '@callstack/rspress-theme/plugin';
+import { pluginLlms } from '@rspress/plugin-llms';
import { pluginOpenGraph } from 'rsbuild-plugin-open-graph';
import { pluginFontOpenSans } from 'rspress-plugin-font-open-sans';
+import pluginSitemap from 'rspress-plugin-sitemap';
import vercelAnalytics from 'rspress-plugin-vercel-analytics';
import { defineConfig } from 'rspress/config';
@@ -12,16 +14,17 @@ const EDIT_ROOT_URL = `https://github.com/callstack/repack/tree/main/website/${D
export default defineConfig({
root: path.join(__dirname, DOCS_ROOT),
+ outDir: 'build',
title: process.env.REPACK_DOC_VERSION
? `[${process.env.REPACK_DOC_VERSION}] Re.Pack`
: 'Re.Pack',
- description: 'A toolkit to build your React Native application with Webpack.',
+ description:
+ 'A modern build tool for React Native that brings the Rspack and webpack ecosystem to mobile React Native apps',
icon: '/img/favicon.ico',
logo: {
light: '/img/logo_light.svg',
dark: '/img/logo_dark.svg',
},
- outDir: 'build',
markdown: {
checkDeadLinks: true,
codeHighlighter: 'prism',
@@ -71,6 +74,12 @@ export default defineConfig({
'global.__REPACK_DOC_LATEST_VERSION__': JSON.stringify(LATEST_VERSION),
},
},
+ output: {
+ distPath: {
+ // set explicitly for sitemap plugin
+ root: 'build',
+ },
+ },
plugins: [
pluginOpenGraph({
title: 'Re.Pack',
@@ -102,11 +111,20 @@ export default defineConfig({
? path.join(__dirname, DOCS_ROOT, 'styles', 'index.css')
: undefined,
plugins: [
+ // @ts-ignore
+ pluginSitemap({
+ domain: 'https://re-pack.dev',
+ }),
// @ts-ignore
pluginFontOpenSans(),
// @ts-ignore
vercelAnalytics(),
// @ts-ignore
pluginCallstackTheme(),
+ pluginLlms({
+ exclude: ({ page }) => {
+ return page.routePath.includes('404');
+ },
+ }),
],
});
diff --git a/website/src/latest/api/plugins/hermes-bytecode.md b/website/src/latest/api/plugins/hermes-bytecode.md
index e5d8c20ec..ff786e5c7 100644
--- a/website/src/latest/api/plugins/hermes-bytecode.md
+++ b/website/src/latest/api/plugins/hermes-bytecode.md
@@ -3,12 +3,12 @@
This plugin is converts JavaScript chunks into [Hermes](https://hermesengine.dev/) bytecode for production-level performance optimization.
It also converts related source maps to be compatible with bytecode bundles.
-:::warning title="Remember to exclude the main bundle!"
+:::warning Remember to exclude the main bundle!
If you enable Hermes in your project, your `index.bundle` file and it's source-map will be transformed by `react-native`.
You should exclude it from the plugin to avoid processing it twice.
:::
-:::details title="Implementation details"
+:::details Implementation details
This plugin will only transform assets that are emitted after the compilation. To ensure that asset is always emitted we disable the `compareBeforeEmit` option which is enabled by default in Rspack/webpack.
`compareBeforeEmit` option is used to skip emitting assets that are identical to the
diff --git a/website/src/latest/api/plugins/module-federation-v1.mdx b/website/src/latest/api/plugins/module-federation-v1.mdx
index 3d7b9c1d2..a7100b508 100644
--- a/website/src/latest/api/plugins/module-federation-v1.mdx
+++ b/website/src/latest/api/plugins/module-federation-v1.mdx
@@ -9,7 +9,7 @@ which provides enhanced features like dynamic type hinting, manifest support and
This plugin is designed to configure Module Federation. It's an enhanced version of the standard Module Federation plugin that's specifically tailored for React Native environments.
-:::info title="About configuration options"
+:::info About configuration options
This documentation describes only Re.Pack-specific configuration options.
diff --git a/website/src/latest/api/plugins/module-federation-v2.mdx b/website/src/latest/api/plugins/module-federation-v2.mdx
index fbefac044..bb829d1f9 100644
--- a/website/src/latest/api/plugins/module-federation-v2.mdx
+++ b/website/src/latest/api/plugins/module-federation-v2.mdx
@@ -3,7 +3,7 @@
This plugin is designed to configure Module Federation 2.0. It's an enhanced version of the standard Module Federation plugin that's specifically tailored for React Native environments.
-:::info title="About configuration options"
+:::info About configuration options
This documentation describes only Re.Pack-specific configuration options. For the complete configuration reference, please see the [official Module Federation 2.0 documentation](https://module-federation.io/configure/index.html#configuration-overview).
All standard Module Federation 2.0 options are supported in addition to the options described below.
@@ -35,7 +35,7 @@ you should install the `@module-federation/runtime` package as well:
-:::tip title="Having trouble?"
+:::tip Having trouble?
Check out the [official Module Federation 2.0 quick start guide](https://module-federation.io/guide/start/quick-start.html) for more information.
:::
diff --git a/website/src/latest/api/plugins/repack.md b/website/src/latest/api/plugins/repack.md
index 140d8e0b2..44b30f33a 100644
--- a/website/src/latest/api/plugins/repack.md
+++ b/website/src/latest/api/plugins/repack.md
@@ -2,7 +2,7 @@
This is the main plugin that enables React Native app development & bundling with Re.Pack and should be included in all of your configurations. It abstracts the configuration of other core internal plugins into one plugin.
-:::warning title="About internal plugins"
+:::warning About internal plugins
Plugins configured by the `RepackPlugin` are considered internal and there is no need to use or configure them directly. Their use is heavily discouraged and they are only included for the sake of completeness of the API.
@@ -47,7 +47,7 @@ Options to configure the logger's output. Setting this to `false` disables the L
Enable or disable logging to the console. When enabled, build progress, warnings, errors, and other messages will be displayed in the terminal.
-:::tip title="Verbose logging"
+:::tip Verbose logging
You can enable verbose logging by passing `--verbose` flag to either of CLI commands or by setting the `REPACK_VERBOSE` environment variable to `1` or `true`.
diff --git a/website/src/latest/api/runtime/script-manager.md b/website/src/latest/api/runtime/script-manager.md
index bac00e046..f34971c38 100644
--- a/website/src/latest/api/runtime/script-manager.md
+++ b/website/src/latest/api/runtime/script-manager.md
@@ -2,7 +2,7 @@
The `ScriptManager` is a low-level utility for managing script resolution, downloading, and execution in React Native applications. It's particularly useful when working with code splitting, dynamic imports, and Module Federation.
-:::info title="Why is it called ScriptManager?"
+:::info Why is it called ScriptManager?
It can be used to download, manage and execute external (either local or remote) JavaScript code.
diff --git a/website/src/latest/blog/repack-5-release.mdx b/website/src/latest/blog/repack-5-release.mdx
index d36a483fd..267a87539 100644
--- a/website/src/latest/blog/repack-5-release.mdx
+++ b/website/src/latest/blog/repack-5-release.mdx
@@ -28,7 +28,7 @@ One of the most exciting features in Re.Pack 5 is the introduction of first-clas
-:::note title="Rspack's own benchmark showing 3-20x improvement for web projects compared to Webpack. For React Native and Re.Pack it's consistently 5x faster across the board"
+:::note Rspack's own benchmark showing 3-20x improvement for web projects compared to Webpack. For React Native and Re.Pack it's consistently 5x faster across the board
:::
Most projects can switch with minimal changes to their configuration files. We've carefully tuned our Rspack integration to work with React Native's specific requirements, ensuring you get all the performance benefits without compatibility issues.
diff --git a/website/src/latest/docs/features/module-federation.md b/website/src/latest/docs/features/module-federation.md
index 12a241f22..6320e7b6b 100644
--- a/website/src/latest/docs/features/module-federation.md
+++ b/website/src/latest/docs/features/module-federation.md
@@ -1,6 +1,6 @@
# Module Federation
-:::warning title="Notice:"
+:::warning Notice:
The documentation for Re.Pack 5 is currently under development and some of the pages aren't ready yet.
Please use [latest stable version of Re.Pack 4.x documentation](https://re-pack.dev/docs/getting-started) for now.
diff --git a/website/src/latest/docs/features/module-resolution.md b/website/src/latest/docs/features/module-resolution.md
index 02372f696..99d54c3da 100644
--- a/website/src/latest/docs/features/module-resolution.md
+++ b/website/src/latest/docs/features/module-resolution.md
@@ -1,6 +1,6 @@
# Module resolution
-:::warning title="Notice:"
+:::warning Notice:
The documentation for Re.Pack 5 is currently under development and some of the pages aren't ready yet.
Please use [latest stable version of Re.Pack 4.x documentation](https://re-pack.dev/docs/getting-started) for now.
diff --git a/website/src/latest/docs/features/reanimated.mdx b/website/src/latest/docs/features/reanimated.mdx
index 219a4fccb..4c65bf1fb 100644
--- a/website/src/latest/docs/features/reanimated.mdx
+++ b/website/src/latest/docs/features/reanimated.mdx
@@ -4,7 +4,7 @@ import { PackageManagerTabs } from 'rspress/theme';
Re.Pack provides first-class support for [React Native Reanimated](https://docs.swmansion.com/react-native-reanimated/) through a dedicated plugin that simplifies integration and optimizes build performance.
-:::warning title="This plugin is primarily intended for Rspack users."
+:::warning This plugin is primarily intended for Rspack users.
The main purpose of this plugin is to limit the **build performance impact** of the `react-native-reanimated` babel plugin.
@@ -37,7 +37,7 @@ Our plugin takes a smarter approach by only applying the Reanimated transformati
In simple terms: we make your builds faster by only doing the heavy Reanimated processing where it's actually needed.
-:::note title="Credits"
+:::note Credits
Shoutout to [Nate Wienert](https://x.com/natebirdman) who came up with a similar approach in [one.dev](https://one.dev) - his work was the inspiration for this plugin.
:::
diff --git a/website/src/latest/docs/getting-started/bundlers.md b/website/src/latest/docs/getting-started/bundlers.md
index 524c57cdf..126cfd17f 100644
--- a/website/src/latest/docs/getting-started/bundlers.md
+++ b/website/src/latest/docs/getting-started/bundlers.md
@@ -1,6 +1,6 @@
# Rspack & webpack
-:::warning title="Notice:"
+:::warning Notice:
The documentation for Re.Pack 5 is currently under development and some of the pages aren't ready yet.
Please use [latest stable version of Re.Pack 4.x documentation](https://re-pack.dev/docs/getting-started) for now.
diff --git a/website/src/latest/docs/getting-started/introduction.md b/website/src/latest/docs/getting-started/introduction.md
index 4dda9bdab..df5877a4b 100644
--- a/website/src/latest/docs/getting-started/introduction.md
+++ b/website/src/latest/docs/getting-started/introduction.md
@@ -12,7 +12,7 @@ Therefore, we need to make changes to webpack configuration and change how and w
So to answer the question:
-:::info{title="Re.Pack is what makes webpack and webpack-produced bundle usable in React Native application."}
+:::info Re.Pack is what makes webpack and webpack-produced bundle usable in React Native application.
:::
## Why & when
diff --git a/website/src/latest/docs/getting-started/quick-start.mdx b/website/src/latest/docs/getting-started/quick-start.mdx
index 899dc4706..c80561257 100644
--- a/website/src/latest/docs/getting-started/quick-start.mdx
+++ b/website/src/latest/docs/getting-started/quick-start.mdx
@@ -22,7 +22,7 @@ To create a new React Native project with Re.Pack or adapt an existing one:
In case the command above didn't work for any reason, you can follow the manual migration guide [here](/docs/migration-guides/metro).
-:::tip title="The defaults work well for most projects"
+:::tip The defaults work well for most projects
If you need custom settings (like additional loaders or plugins), check out our [configuration guide](/docs/guides/configuration).
:::
@@ -58,7 +58,7 @@ When you are building the release version of your application, Re.Pack will be p
To learn about `bundle` command, check out the [bundle command documentation](/api/cli/bundle.mdx).
-:::tip title="🎉 Congratulations!"
+:::tip 🎉 Congratulations!
You've successfully set up Re.Pack in your project. We highly recommend to check out the following:
diff --git a/website/src/latest/docs/guides/bundle-analysis.mdx b/website/src/latest/docs/guides/bundle-analysis.mdx
index 16b32df63..00ab2d0ad 100644
--- a/website/src/latest/docs/guides/bundle-analysis.mdx
+++ b/website/src/latest/docs/guides/bundle-analysis.mdx
@@ -32,7 +32,7 @@ import { PackageManagerTabs, Tabs, Tab } from 'rspress/theme';
### Usage
-:::danger title="Only for development"
+:::danger Only for development
Please do not use Rsdoctor in production version.
The `process.env.RSDOCTOR` is used to conditionally enable the plugin just for the development environment.
@@ -79,7 +79,7 @@ Use the `RSDOCTOR` environment variable when running the build:
RSDOCTOR=true npx react-native bundle
```
-:::tip title="Specific platform analysis"
+:::tip Specific platform analysis
For better analysis results, it's recommended to run a single platform build using the `--platform` option:
```bash
diff --git a/website/src/latest/docs/guides/deploy.mdx b/website/src/latest/docs/guides/deploy.mdx
index f98476f31..66e1f5d55 100644
--- a/website/src/latest/docs/guides/deploy.mdx
+++ b/website/src/latest/docs/guides/deploy.mdx
@@ -23,7 +23,7 @@ npx create-zephyr-apps@latest
2. A Zephyr Cloud account: sign up at [Zephyr Cloud](https://app.zephyr-cloud.io?ref=repack) if you haven't already.
-:::info title="Related docs"
+:::info Related docs
For more details related to `create-zephyr-apps` CLI, please refer to the [Zephyr Cloud's documentation for React Native, Re.Pack and Module Federation](https://docs.zephyr-cloud.io/recipes/repack-mf).
@@ -83,7 +83,7 @@ The deploy URL is instantly sharable, available and able to be used, or auto-res
-:::tip title="Learn more about Zephyr Cloud"
+:::tip Learn more about Zephyr Cloud
- [Website](https://zephyr-cloud.io)
- [Documentation](https://docs.zephyr-cloud.io)
diff --git a/website/src/latest/docs/guides/inline-assets.md b/website/src/latest/docs/guides/inline-assets.md
index d3b03ffc6..87f9b6286 100644
--- a/website/src/latest/docs/guides/inline-assets.md
+++ b/website/src/latest/docs/guides/inline-assets.md
@@ -7,7 +7,7 @@ Common examples of such use cases are:
- Using assets inside of [Module Federation remotes](/docs/features/module-federation) where you can't have assets extracted and shipped with the host app bundle.
- Out-of-tree platforms that don't support static assets in a similar way as React Native on iOS/Android does or don't support static assets at all.
-:::tip title="Use sparingly and only when necessary"
+:::tip Use sparingly and only when necessary
Inlining assets into the bundle makes the **bundle size larger** and increases the **initial startup time** of an app. It's most noticable when you inline an asset which has 3 scales (e.g. `@1x`, `@2x` and `@3x`). In that scenario, all of the scales will be inlined into the bundle since it's not possible to determine which scale is needed at runtime.
@@ -93,7 +93,7 @@ module.exports = {
};
```
-:::tip title="Learn more about loader rules"
+:::tip Learn more about loader rules
You can read more about loader rules and how to configure them in:
diff --git a/website/src/latest/docs/guides/remote-assets.md b/website/src/latest/docs/guides/remote-assets.md
index 6c2920df7..4913be054 100644
--- a/website/src/latest/docs/guides/remote-assets.md
+++ b/website/src/latest/docs/guides/remote-assets.md
@@ -5,7 +5,7 @@ instead of bundling them directly into your application. When working with Modul
this is the recommended approach to handling the assets in federated modules, as inlining
the assets causes your bundle size to increase dramatically.
-:::tip title="Use remote assets only in production"
+:::tip Use remote assets only in production
During development, it's best to disable remote assets and load them locally. When you're ready to move to production, you can use `enabled: true` and then upload the assets to the CDN of your choosing.
:::
@@ -79,7 +79,7 @@ type Source = {
The `uri` prop will have a value of an URL that's constructed by joining `publicPath`, 'assets' and local path to the asset together. If `publicPath` is set to https://example.com and the local path to the asset is logo.png, then the resulting `uri` value would be: `https://example.com/assets/images/logo.png`.
-:::info title="Scaled assets are fully supported"
+:::info Scaled assets are fully supported
The asset will resolve to proper scale in runtime by constructing a relevant URL with scale suffix at the end of it.
diff --git a/website/src/latest/docs/migration-guides/metro.mdx b/website/src/latest/docs/migration-guides/metro.mdx
index 4db5eff22..ba987f5bf 100644
--- a/website/src/latest/docs/migration-guides/metro.mdx
+++ b/website/src/latest/docs/migration-guides/metro.mdx
@@ -79,7 +79,7 @@ Pick one of the templates below and create configuration file in the root direct
-:::info title="Go with ESM config by default"
+:::info Go with ESM config by default
We recommend to use ESM version of Rspack/webpack config with the `.mjs` extension. However, Re.Pack also supports ESM under `.js` and CJS variant under `.js` and `.cjs` extensions. Check our [templates](https://github.com/callstack/repack/blob/main/templates/) for CJS and ESM variants as well as the documentation on [Configuration](/docs/guides/configuration) to see the list of all available Rspack/webpack config location and extensions.
@@ -137,7 +137,7 @@ npx pod-install
This will install all the necessary iOS dependencies for your project, including the Re.Pack native module.
-:::tip title="🎉 Congratulations!"
+:::tip 🎉 Congratulations!
You've successfully set up Re.Pack in your project. We highly recommend to check out the following:
diff --git a/website/src/latest/docs/migration-guides/repack-v4.mdx b/website/src/latest/docs/migration-guides/repack-v4.mdx
index bd28f0d90..668b0b290 100644
--- a/website/src/latest/docs/migration-guides/repack-v4.mdx
+++ b/website/src/latest/docs/migration-guides/repack-v4.mdx
@@ -2,7 +2,7 @@ import { PackageManagerTabs } from "@theme";
# Migrating from Re.Pack 4
-:::info title="Re.Pack 5 now supports Rspack!"
+:::info Re.Pack 5 now supports Rspack!
Re.Pack 5 introduces support for [Rspack](https://rspack.dev/),
a high-performance webpack alternative with a highly compatible API.
This migration guide focuses solely on migrating from **V4** to **V5** while continuing to use webpack.
@@ -11,7 +11,7 @@ If you're interested in using Rspack (which is encouraged), we recommend first c
to **V5** with webpack and then following our separate [webpack to Rspack migration guide](/docs/migration-guides/rspack).
:::
-:::danger title="Changes to internal plugins are not covered"
+:::danger Changes to internal plugins are not covered
Plugins that are part of `RepackPlugin` are considered internal and are not covered by this migration guide.
:::
@@ -38,7 +38,7 @@ You can also remove `babel-loader` from your `devDependencies` as Re.Pack 5 now
}
```
-:::tip title="Good time to update webpack and terser-webpack-plugin"
+:::tip Good time to update webpack and terser-webpack-plugin
While not necessary, for the best experience with Re.Pack 5,
we recommend updating your `webpack` and `terser-webpack-plugin` dependencies to their latest versions:
@@ -75,7 +75,7 @@ module.exports = {
Below are the changes that you need to be aware of when migrating to Re.Pack 5. Most of the changes revolve around reducing the amount of configuration needed.
-:::info title="Re.Pack 5 makes webpack configuration much smaller"
+:::info Re.Pack 5 makes webpack configuration much smaller
In **V5** we've significantly simplified webpack configuration templates.
Many defaults are now configured out of the box, reducing the need for explicit
configuration and making your configuration files much cleaner and easier to maintain.
@@ -95,7 +95,7 @@ A strict configuration cascade system was introduced to provide clear and predic
4. Re.Pack defaults
5. Webpack/Rspack defaults (lowest precedence)
-:::warning title="CLI arguments now bypass config files!"
+:::warning CLI arguments now bypass config files!
CLI arguments now always take the highest precedence and cannot be overridden by config files. This change aligns Re.Pack behavior with other similar CLI tools. Make sure to update your configuration with this in mind.
:::
@@ -116,7 +116,7 @@ We've changed how sourcemaps are configured to align better with webpack's nativ
+ devtool: 'source-map',
```
-:::tip title="You can remove the devtool option altogether"
+:::tip You can remove the devtool option altogether
`devtool: 'source-map'` is now the default value in **V5**.
:::
diff --git a/website/src/latest/docs/migration-guides/rspack.mdx b/website/src/latest/docs/migration-guides/rspack.mdx
index 1f5d2dc3e..72e8d9c5b 100644
--- a/website/src/latest/docs/migration-guides/rspack.mdx
+++ b/website/src/latest/docs/migration-guides/rspack.mdx
@@ -4,14 +4,14 @@ import { PackageManagerTabs, Steps, Tabs, Tab } from 'rspress/theme';
This guide will help you migrate your React Native project from using webpack to Rspack with Re.Pack.
-:::warning title="⚠️ Migrate to Re.Pack 5 first!"
+:::warning ⚠️ Migrate to Re.Pack 5 first!
If your project is using version 4 of Re.Pack, you need to migrate it to use Re.Pack 5 first.
See the [Migration from Re.Pack 4 guide](/docs/migration-guides/repack-v4) for more details.
:::
-:::tip title="Why migrate to Rspack?"
+:::tip Why migrate to Rspack?
[Rspack](https://rspack.dev/) is a fast Rust-based bundler that's compatible with the webpack ecosystem, offering significantly faster build times for both development and production while maintaining webpack compatibility with minimal migration effort.
For more details on why Rspack was created and its advantages, see the [official rationale](https://rspack.dev/guide/start/introduction#why-rspack).
@@ -49,7 +49,7 @@ Rename your configuration file to match the Rspack convention:
When migrating from webpack to Rspack, you'll need to make several changes to your configuration file.
-:::warning title="Additional steps may be required for complex configurations"
+:::warning Additional steps may be required for complex configurations
The modifications outlined below cover the basic changes needed for most React Native projects. However, if you have a more complex webpack setup with custom loaders, plugins, or configurations, these changes might not be sufficient.
For more advanced migration scenarios, refer to the [official Rspack migration guide](https://rspack.dev/guide/migration/webpack), which provides detailed instructions for migrating various webpack features, plugins, and loaders to their Rspack equivalents.
@@ -100,7 +100,7 @@ module: {
},
```
-:::info title="About getJsTransformRules"
+:::info About getJsTransformRules
The `getJsTransformRules()` function returns the default rules for transforming JavaScript and TypeScript files using SWC. It handles both your application code and `node_modules`, and is functionally equivalent to the official `@react-native/babel-preset`. For more details, see the [API documentation for getJsTransformRules](/api/utils/get-js-transform-rules).
:::
@@ -128,7 +128,7 @@ module.exports = {
};
```
-:::tip title="Flow-typed libraries"
+:::tip Flow-typed libraries
There is no need to configure Flow support for libraries since `getJsTransformRules` handles them out of the box. In rare cases, you may need to configure Flow support for unhandled libraries.
@@ -181,7 +181,7 @@ Same goes for creating a production bundle:
bun: "bun react-native bundle",
}} />
-:::tip title="Having trouble?"
+:::tip Having trouble?
If you are having trouble migrating to Rspack reach out and open an issue on [GitHub](https://github.com/callstack/repack/issues/new/choose).
:::
diff --git a/website/theme/index.tsx b/website/theme/index.tsx
index 341f3a45b..3c0363ef8 100644
--- a/website/theme/index.tsx
+++ b/website/theme/index.tsx
@@ -1,9 +1,10 @@
import { Announcement } from '@callstack/rspress-theme';
-import { usePageData } from 'rspress/runtime';
-import Theme, {
+import { NoSSR, usePageData } from 'rspress/runtime';
+import {
Badge,
Link,
PrevNextPage,
+ Layout as RspressLayout,
getCustomMDXComponent,
} from 'rspress/theme';
@@ -48,30 +49,31 @@ const OldVersionAnnouncement = ({ version, latestVersion }) => (
);
const Layout = () => (
-
+
+
+
) : (
-
+
+
+
)
}
beforeDocContent={}
/>
);
-export default {
- ...Theme,
- Layout,
-};
+export { Layout };
const { code: Code, pre: Pre } = getCustomMDXComponent();