package-installer-cli 2.3.0 → 2.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (372) hide show
  1. checksums.yaml +4 -4
  2. data/bundle-standalone/cli-with-packages.js +568 -369
  3. data/bundle-standalone/template.json +87 -14
  4. data/bundle-standalone/templates/c++_c/crow/template/CMakeLists.txt +18 -0
  5. data/bundle-standalone/templates/c++_c/crow/template/README.md +11 -0
  6. data/bundle-standalone/templates/c++_c/crow/template/include/routes.hpp +19 -0
  7. data/bundle-standalone/templates/c++_c/crow/template/main.cpp +12 -0
  8. data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/README.md +36 -0
  9. data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/eslint.config.mjs +16 -0
  10. data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/middleware.ts +18 -0
  11. data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/next.config.ts +7 -0
  12. data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/package.json +28 -0
  13. data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/pnpm-lock.yaml +3819 -0
  14. data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/postcss.config.mjs +5 -0
  15. data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/public/file.svg +1 -0
  16. data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/public/globe.svg +1 -0
  17. data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/public/next.svg +1 -0
  18. data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/public/vercel.svg +1 -0
  19. data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/public/window.svg +1 -0
  20. data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/src/app/favicon.ico +0 -0
  21. data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/src/app/globals.css +26 -0
  22. data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/src/app/layout.tsx +34 -0
  23. data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/src/app/page.tsx +33 -0
  24. data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/src/lib/auth0.ts +3 -0
  25. data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/tsconfig.json +27 -0
  26. data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/README.md +36 -0
  27. data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/components.json +21 -0
  28. data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/eslint.config.mjs +16 -0
  29. data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/middleware.ts +12 -0
  30. data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/next.config.ts +7 -0
  31. data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/package.json +37 -0
  32. data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/pnpm-lock.yaml +4113 -0
  33. data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/postcss.config.mjs +5 -0
  34. data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/public/file.svg +1 -0
  35. data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/public/globe.svg +1 -0
  36. data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/public/next.svg +1 -0
  37. data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/public/vercel.svg +1 -0
  38. data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/public/window.svg +1 -0
  39. data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/src/app/favicon.ico +0 -0
  40. data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/src/app/globals.css +122 -0
  41. data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/src/app/layout.tsx +55 -0
  42. data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/src/app/page.tsx +10 -0
  43. data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/src/components/ui/button.tsx +59 -0
  44. data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/src/components/ui/card.tsx +92 -0
  45. data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/src/components/ui/input.tsx +21 -0
  46. data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/src/components/ui/textarea.tsx +18 -0
  47. data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/src/lib/utils.ts +6 -0
  48. data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/src/middleware.ts +12 -0
  49. data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/tsconfig.json +27 -0
  50. data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/README.md +36 -0
  51. data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/eslint.config.mjs +16 -0
  52. data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/middleware.ts +0 -0
  53. data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/next.config.ts +7 -0
  54. data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/package.json +28 -0
  55. data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/pnpm-lock.yaml +3862 -0
  56. data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/postcss.config.mjs +5 -0
  57. data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/public/file.svg +1 -0
  58. data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/public/globe.svg +1 -0
  59. data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/public/next.svg +1 -0
  60. data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/public/vercel.svg +1 -0
  61. data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/public/window.svg +1 -0
  62. data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/src/app/api/auth/[...nextauth]/route.ts +6 -0
  63. data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/src/app/favicon.ico +0 -0
  64. data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/src/app/globals.css +26 -0
  65. data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/src/app/layout.tsx +39 -0
  66. data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/src/app/page.tsx +10 -0
  67. data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/src/lib/auth-provider.tsx +7 -0
  68. data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/src/lib/auth.ts +126 -0
  69. data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/tsconfig.json +27 -0
  70. data/bundle-standalone/templates/game/unity/template/README.md +3 -0
  71. data/bundle-standalone/templates/game/unity/template/Scripts/PlayerController.cs +25 -0
  72. data/bundle-standalone/templates/game/unreal/template/README.md +3 -0
  73. data/bundle-standalone/templates/game/unreal/template/Source/PlayerCharacter.cpp +33 -0
  74. data/bundle-standalone/templates/game/unreal/template/Source/PlayerCharacter.h +20 -0
  75. data/bundle-standalone/templates/javascript/preactjs/javascript/template/index.html +13 -0
  76. data/bundle-standalone/templates/javascript/preactjs/javascript/template/package.json +18 -0
  77. data/bundle-standalone/templates/javascript/preactjs/javascript/template/public/vite.svg +1 -0
  78. data/bundle-standalone/templates/javascript/preactjs/javascript/template/src/app.css +25 -0
  79. data/bundle-standalone/templates/javascript/preactjs/javascript/template/src/app.jsx +43 -0
  80. data/bundle-standalone/templates/javascript/preactjs/javascript/template/src/assets/preact.svg +1 -0
  81. data/bundle-standalone/templates/javascript/preactjs/javascript/template/src/index.css +68 -0
  82. data/bundle-standalone/templates/javascript/preactjs/javascript/template/src/main.jsx +5 -0
  83. data/bundle-standalone/templates/javascript/preactjs/javascript/template/vite.config.js +7 -0
  84. data/bundle-standalone/templates/javascript/preactjs/typescript/template/index.html +13 -0
  85. data/bundle-standalone/templates/javascript/preactjs/typescript/template/package.json +20 -0
  86. data/bundle-standalone/templates/javascript/preactjs/typescript/template/public/vite.svg +1 -0
  87. data/bundle-standalone/templates/javascript/preactjs/typescript/template/src/app.css +25 -0
  88. data/bundle-standalone/templates/javascript/preactjs/typescript/template/src/app.tsx +43 -0
  89. data/bundle-standalone/templates/javascript/preactjs/typescript/template/src/assets/preact.svg +1 -0
  90. data/bundle-standalone/templates/javascript/preactjs/typescript/template/src/index.css +68 -0
  91. data/bundle-standalone/templates/javascript/preactjs/typescript/template/src/main.tsx +5 -0
  92. data/bundle-standalone/templates/javascript/preactjs/typescript/template/tsconfig.app.json +33 -0
  93. data/bundle-standalone/templates/javascript/preactjs/typescript/template/tsconfig.json +7 -0
  94. data/bundle-standalone/templates/javascript/preactjs/typescript/template/tsconfig.node.json +26 -0
  95. data/bundle-standalone/templates/javascript/preactjs/typescript/template/vite.config.ts +7 -0
  96. data/bundle-standalone/templates/javascript/solidjs/javascript/template/README.md +28 -0
  97. data/bundle-standalone/templates/javascript/solidjs/javascript/template/index.html +13 -0
  98. data/bundle-standalone/templates/javascript/solidjs/javascript/template/package.json +18 -0
  99. data/bundle-standalone/templates/javascript/solidjs/javascript/template/public/vite.svg +1 -0
  100. data/bundle-standalone/templates/javascript/solidjs/javascript/template/src/App.css +27 -0
  101. data/bundle-standalone/templates/javascript/solidjs/javascript/template/src/App.jsx +35 -0
  102. data/bundle-standalone/templates/javascript/solidjs/javascript/template/src/assets/solid.svg +1 -0
  103. data/bundle-standalone/templates/javascript/solidjs/javascript/template/src/index.css +68 -0
  104. data/bundle-standalone/templates/javascript/solidjs/javascript/template/src/index.jsx +8 -0
  105. data/bundle-standalone/templates/javascript/solidjs/javascript/template/vite.config.js +6 -0
  106. data/bundle-standalone/templates/javascript/solidjs/typescript/template/README.md +28 -0
  107. data/bundle-standalone/templates/javascript/solidjs/typescript/template/index.html +13 -0
  108. data/bundle-standalone/templates/javascript/solidjs/typescript/template/package.json +20 -0
  109. data/bundle-standalone/templates/javascript/solidjs/typescript/template/public/vite.svg +1 -0
  110. data/bundle-standalone/templates/javascript/solidjs/typescript/template/src/App.css +27 -0
  111. data/bundle-standalone/templates/javascript/solidjs/typescript/template/src/App.tsx +35 -0
  112. data/bundle-standalone/templates/javascript/solidjs/typescript/template/src/assets/solid.svg +1 -0
  113. data/bundle-standalone/templates/javascript/solidjs/typescript/template/src/index.css +68 -0
  114. data/bundle-standalone/templates/javascript/solidjs/typescript/template/src/index.tsx +8 -0
  115. data/bundle-standalone/templates/javascript/solidjs/typescript/template/tsconfig.app.json +29 -0
  116. data/bundle-standalone/templates/javascript/solidjs/typescript/template/tsconfig.json +7 -0
  117. data/bundle-standalone/templates/javascript/solidjs/typescript/template/tsconfig.node.json +26 -0
  118. data/bundle-standalone/templates/javascript/solidjs/typescript/template/vite.config.ts +6 -0
  119. data/bundle-standalone/templates/javascript/sveltejs/javascript/template/README.md +43 -0
  120. data/bundle-standalone/templates/javascript/sveltejs/javascript/template/index.html +13 -0
  121. data/bundle-standalone/templates/javascript/sveltejs/javascript/template/jsconfig.json +33 -0
  122. data/bundle-standalone/templates/javascript/sveltejs/javascript/template/package.json +16 -0
  123. data/bundle-standalone/templates/javascript/sveltejs/javascript/template/public/vite.svg +1 -0
  124. data/bundle-standalone/templates/javascript/sveltejs/javascript/template/src/App.svelte +47 -0
  125. data/bundle-standalone/templates/javascript/sveltejs/javascript/template/src/app.css +79 -0
  126. data/bundle-standalone/templates/javascript/sveltejs/javascript/template/src/assets/svelte.svg +1 -0
  127. data/bundle-standalone/templates/javascript/sveltejs/javascript/template/src/lib/Counter.svelte +10 -0
  128. data/bundle-standalone/templates/javascript/sveltejs/javascript/template/src/main.js +9 -0
  129. data/bundle-standalone/templates/javascript/sveltejs/javascript/template/svelte.config.js +8 -0
  130. data/bundle-standalone/templates/javascript/sveltejs/javascript/template/vite.config.js +7 -0
  131. data/bundle-standalone/templates/javascript/sveltejs/typescript/template/README.md +47 -0
  132. data/bundle-standalone/templates/javascript/sveltejs/typescript/template/index.html +13 -0
  133. data/bundle-standalone/templates/javascript/sveltejs/typescript/template/package.json +21 -0
  134. data/bundle-standalone/templates/javascript/sveltejs/typescript/template/public/vite.svg +1 -0
  135. data/bundle-standalone/templates/javascript/sveltejs/typescript/template/src/App.svelte +47 -0
  136. data/bundle-standalone/templates/javascript/sveltejs/typescript/template/src/app.css +79 -0
  137. data/bundle-standalone/templates/javascript/sveltejs/typescript/template/src/assets/svelte.svg +1 -0
  138. data/bundle-standalone/templates/javascript/sveltejs/typescript/template/src/lib/Counter.svelte +10 -0
  139. data/bundle-standalone/templates/javascript/sveltejs/typescript/template/src/main.ts +9 -0
  140. data/bundle-standalone/templates/javascript/sveltejs/typescript/template/svelte.config.js +8 -0
  141. data/bundle-standalone/templates/javascript/sveltejs/typescript/template/tsconfig.app.json +21 -0
  142. data/bundle-standalone/templates/javascript/sveltejs/typescript/template/tsconfig.json +7 -0
  143. data/bundle-standalone/templates/javascript/sveltejs/typescript/template/tsconfig.node.json +26 -0
  144. data/bundle-standalone/templates/javascript/sveltejs/typescript/template/vite.config.ts +7 -0
  145. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/README.md +50 -0
  146. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/app/(tabs)/_layout.jsx +35 -0
  147. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/app/(tabs)/explore.jsx +112 -0
  148. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/app/(tabs)/index.jsx +98 -0
  149. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/app/_layout.jsx +24 -0
  150. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/app/modal.jsx +29 -0
  151. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/app.json +48 -0
  152. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/assets/images/android-icon-background.png +0 -0
  153. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/assets/images/android-icon-foreground.png +0 -0
  154. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/assets/images/android-icon-monochrome.png +0 -0
  155. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/assets/images/favicon.png +0 -0
  156. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/assets/images/icon.png +0 -0
  157. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/assets/images/partial-react-logo.png +0 -0
  158. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/assets/images/react-logo.png +0 -0
  159. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/assets/images/react-logo@2x.png +0 -0
  160. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/assets/images/react-logo@3x.png +0 -0
  161. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/assets/images/splash-icon.png +0 -0
  162. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/components/external-link.jsx +25 -0
  163. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/components/haptic-tab.jsx +18 -0
  164. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/components/hello-wave.jsx +19 -0
  165. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/components/parallax-scroll-view.jsx +79 -0
  166. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/components/themed-text.jsx +60 -0
  167. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/components/themed-view.jsx +14 -0
  168. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/components/ui/collapsible.jsx +45 -0
  169. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/components/ui/icon-symbol.ios.jsx +32 -0
  170. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/components/ui/icon-symbol.jsx +41 -0
  171. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/constants/theme.js +53 -0
  172. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/eslint.config.js +10 -0
  173. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/hooks/use-color-scheme.js +1 -0
  174. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/hooks/use-color-scheme.web.js +21 -0
  175. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/hooks/use-theme-color.js +21 -0
  176. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/jsconfig.json +17 -0
  177. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/package.json +47 -0
  178. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/pnpm-workspace.yaml +1 -0
  179. data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/scripts/reset-project.js +112 -0
  180. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/README.md +50 -0
  181. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/app/(tabs)/_layout.tsx +35 -0
  182. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/app/(tabs)/explore.tsx +112 -0
  183. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/app/(tabs)/index.tsx +98 -0
  184. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/app/_layout.tsx +24 -0
  185. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/app/modal.tsx +29 -0
  186. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/app.json +48 -0
  187. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/assets/images/android-icon-background.png +0 -0
  188. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/assets/images/android-icon-foreground.png +0 -0
  189. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/assets/images/android-icon-monochrome.png +0 -0
  190. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/assets/images/favicon.png +0 -0
  191. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/assets/images/icon.png +0 -0
  192. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/assets/images/partial-react-logo.png +0 -0
  193. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/assets/images/react-logo.png +0 -0
  194. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/assets/images/react-logo@2x.png +0 -0
  195. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/assets/images/react-logo@3x.png +0 -0
  196. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/assets/images/splash-icon.png +0 -0
  197. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/components/external-link.tsx +25 -0
  198. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/components/haptic-tab.tsx +18 -0
  199. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/components/hello-wave.tsx +19 -0
  200. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/components/parallax-scroll-view.tsx +79 -0
  201. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/components/themed-text.tsx +60 -0
  202. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/components/themed-view.tsx +14 -0
  203. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/components/ui/collapsible.tsx +45 -0
  204. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/components/ui/icon-symbol.ios.tsx +32 -0
  205. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/components/ui/icon-symbol.tsx +41 -0
  206. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/constants/theme.ts +53 -0
  207. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/eslint.config.js +10 -0
  208. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/hooks/use-color-scheme.ts +1 -0
  209. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/hooks/use-color-scheme.web.ts +21 -0
  210. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/hooks/use-theme-color.ts +21 -0
  211. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/package.json +47 -0
  212. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/pnpm-workspace.yaml +1 -0
  213. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/scripts/reset-project.js +112 -0
  214. data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/tsconfig.json +17 -0
  215. data/bundle-standalone/templates/python/bottle/template/README.md +0 -0
  216. data/bundle-standalone/templates/python/bottle/template/main.py +6 -0
  217. data/bundle-standalone/templates/python/bottle/template/pyproject.toml +7 -0
  218. data/bundle-standalone/templates/python/dash/template/README.md +0 -0
  219. data/bundle-standalone/templates/python/dash/template/main.py +6 -0
  220. data/bundle-standalone/templates/python/dash/template/pyproject.toml +7 -0
  221. data/bundle-standalone/templates/python/falcon/template/README.md +0 -0
  222. data/bundle-standalone/templates/python/falcon/template/main.py +6 -0
  223. data/bundle-standalone/templates/python/falcon/template/pyproject.toml +7 -0
  224. data/bundle-standalone/templates/python/fastapi/template/README.md +0 -0
  225. data/bundle-standalone/templates/python/fastapi/template/main.py +27 -0
  226. data/bundle-standalone/templates/python/fastapi/template/pyproject.toml +7 -0
  227. data/bundle-standalone/templates/python/pyramid/template/README.md +0 -0
  228. data/bundle-standalone/templates/python/pyramid/template/main.py +6 -0
  229. data/bundle-standalone/templates/python/pyramid/template/pyproject.toml +7 -0
  230. data/bundle-standalone/templates/python/quart/template/README.md +0 -0
  231. data/bundle-standalone/templates/python/quart/template/main.py +6 -0
  232. data/bundle-standalone/templates/python/quart/template/pyproject.toml +7 -0
  233. data/bundle-standalone/templates/python/streamlit/template/README.md +0 -0
  234. data/bundle-standalone/templates/python/streamlit/template/main.py +6 -0
  235. data/bundle-standalone/templates/python/streamlit/template/pyproject.toml +7 -0
  236. data/bundle-standalone/templates/python/tornado/template/README.md +0 -0
  237. data/bundle-standalone/templates/python/tornado/template/main.py +6 -0
  238. data/bundle-standalone/templates/python/tornado/template/pyproject.toml +7 -0
  239. data/bundle-standalone/templates/template.json +87 -14
  240. data/bundle-standalone/templates/web3/anchor/template/Anchor.toml +6 -0
  241. data/bundle-standalone/templates/web3/anchor/template/Cargo.toml +23 -0
  242. data/bundle-standalone/templates/web3/anchor/template/README.md +10 -0
  243. data/bundle-standalone/templates/web3/anchor/template/migrations/deploy.ts +27 -0
  244. data/bundle-standalone/templates/web3/anchor/template/programs/mysolanaapp/src/lib.rs +40 -0
  245. data/bundle-standalone/templates/web3/anchor/template/tests/mysolanaapp.ts +26 -0
  246. data/bundle-standalone/templates/web3/ethersjs/template/README.md +12 -0
  247. data/bundle-standalone/templates/web3/ethersjs/template/contracts/SimpleStorage.sol +17 -0
  248. data/bundle-standalone/templates/web3/ethersjs/template/hardhat.config.js +8 -0
  249. data/bundle-standalone/templates/web3/ethersjs/template/package.json +29 -0
  250. data/bundle-standalone/templates/web3/ethersjs/template/scripts/deploy.ts +18 -0
  251. data/bundle-standalone/templates/web3/ethersjs/template/scripts/interact.ts +17 -0
  252. data/bundle-standalone/templates/web3/solidity/solidity-learning/01_data-types/DataTypes.sol +37 -0
  253. data/bundle-standalone/templates/web3/solidity/solidity-learning/01_data-types/SolidityOperations.sol +48 -0
  254. data/bundle-standalone/templates/web3/solidity/solidity-learning/02_contructors/Constructor.sol +16 -0
  255. data/bundle-standalone/templates/web3/solidity/solidity-learning/03_variables/Variables.sol +31 -0
  256. data/bundle-standalone/templates/web3/solidity/solidity-learning/04_functions/Functions.sol +19 -0
  257. data/bundle-standalone/templates/web3/solidity/solidity-learning/05_visibility/FunctionVisibility.sol +39 -0
  258. data/bundle-standalone/templates/web3/solidity/solidity-learning/06_pure_and_view_functions/PureAndViewFunction.sol +19 -0
  259. data/bundle-standalone/templates/web3/solidity/solidity-learning/07_function_modifiers/Modifiers.sol +27 -0
  260. data/bundle-standalone/templates/web3/solidity/solidity-learning/09_events/Events.sol +19 -0
  261. data/bundle-standalone/templates/web3/solidity/solidity-learning/10_error_handling/ErrorHandling.sol +25 -0
  262. data/bundle-standalone/templates/web3/solidity/solidity-learning/11_fallback_function/Fallback.sol +7 -0
  263. data/bundle-standalone/templates/web3/solidity/solidity-learning/12_for_loop/ForLoop.sol +15 -0
  264. data/bundle-standalone/templates/web3/solidity/solidity-learning/13_array/Array.sol +40 -0
  265. data/bundle-standalone/templates/web3/solidity/solidity-learning/14_mapping/Mapping.sol +21 -0
  266. data/bundle-standalone/templates/web3/solidity/solidity-learning/14_mapping/NestedMapping.sol +25 -0
  267. data/bundle-standalone/templates/web3/solidity/solidity-learning/15_enum/Enum.sol +22 -0
  268. data/bundle-standalone/templates/web3/solidity/solidity-learning/16_struct/Struct.sol +23 -0
  269. data/bundle-standalone/templates/web3/solidity/solidity-learning/17_payable_modifier/Payable.sol +26 -0
  270. data/bundle-standalone/templates/web3/solidity/solidity-learning/18_imports/Contract1.sol +15 -0
  271. data/bundle-standalone/templates/web3/solidity/solidity-learning/18_imports/Contract2.sol +11 -0
  272. data/bundle-standalone/templates/web3/solidity/solidity-learning/19_contract_cleanup/Cleanup.sol +18 -0
  273. data/bundle-standalone/templates/web3/solidity/solidity-learning/20_memory_and_storage/MemoryAndStorage.sol +20 -0
  274. data/bundle-standalone/templates/web3/solidity/solidity-learning/21_inheritance/Inheritance.sol +67 -0
  275. data/bundle-standalone/templates/web3/solidity/solidity-learning/22_if_statement/if-statement.sol +22 -0
  276. data/bundle-standalone/templates/web3/solidity/solidity-learning/23_libraries/libraries.sol +31 -0
  277. data/bundle-standalone/templates/web3/solidity/solidity-learning/23_libraries/safemath.sol +116 -0
  278. data/bundle-standalone/templates/web3/solidity/solidity-learning/24_interface/interface.sol +88 -0
  279. data/bundle-standalone/templates/web3/solidity/solidity-learning/README.md +423 -0
  280. data/bundle-standalone/templates/web3/solidity/uniswap-simple-swap/SimpleSwap.sol +46 -0
  281. metadata +369 -93
  282. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/App.jsx +0 -0
  283. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/Gemfile +0 -0
  284. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/README.md +0 -0
  285. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/__tests__/App.test.tsx +0 -0
  286. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/build.gradle +0 -0
  287. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/debug.keystore +0 -0
  288. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/proguard-rules.pro +0 -0
  289. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/src/main/AndroidManifest.xml +0 -0
  290. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/src/main/java/com/template/MainActivity.kt +0 -0
  291. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/src/main/java/com/template/MainApplication.kt +0 -0
  292. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/src/main/res/drawable/rn_edit_text_material.xml +0 -0
  293. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  294. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  295. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  296. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  297. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  298. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  299. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  300. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  301. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  302. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  303. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/src/main/res/values/strings.xml +0 -0
  304. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/src/main/res/values/styles.xml +0 -0
  305. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/build.gradle +0 -0
  306. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  307. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/gradle/wrapper/gradle-wrapper.properties +0 -0
  308. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/gradle.properties +0 -0
  309. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/gradlew +0 -0
  310. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/gradlew.bat +0 -0
  311. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/settings.gradle +0 -0
  312. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/app.json +0 -0
  313. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/babel.config.js +0 -0
  314. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/index.js +0 -0
  315. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/ios/Podfile +0 -0
  316. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/ios/template/AppDelegate.swift +0 -0
  317. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/ios/template/Images.xcassets/AppIcon.appiconset/Contents.json +0 -0
  318. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/ios/template/Images.xcassets/Contents.json +0 -0
  319. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/ios/template/Info.plist +0 -0
  320. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/ios/template/LaunchScreen.storyboard +0 -0
  321. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/ios/template/PrivacyInfo.xcprivacy +0 -0
  322. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/ios/template.xcodeproj/project.pbxproj +0 -0
  323. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/ios/template.xcodeproj/xcshareddata/xcschemes/template.xcscheme +0 -0
  324. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/jest.config.js +0 -0
  325. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/metro.config.js +0 -0
  326. /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/package.json +0 -0
  327. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/App.tsx +0 -0
  328. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/Gemfile +0 -0
  329. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/README.md +0 -0
  330. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/__tests__/App.test.tsx +0 -0
  331. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/build.gradle +0 -0
  332. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/debug.keystore +0 -0
  333. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/proguard-rules.pro +0 -0
  334. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/src/main/AndroidManifest.xml +0 -0
  335. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/src/main/java/com/template/MainActivity.kt +0 -0
  336. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/src/main/java/com/template/MainApplication.kt +0 -0
  337. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/src/main/res/drawable/rn_edit_text_material.xml +0 -0
  338. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  339. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  340. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  341. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  342. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  343. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  344. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  345. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  346. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  347. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  348. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/src/main/res/values/strings.xml +0 -0
  349. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/src/main/res/values/styles.xml +0 -0
  350. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/build.gradle +0 -0
  351. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  352. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/gradle/wrapper/gradle-wrapper.properties +0 -0
  353. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/gradle.properties +0 -0
  354. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/gradlew +0 -0
  355. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/gradlew.bat +0 -0
  356. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/settings.gradle +0 -0
  357. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/app.json +0 -0
  358. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/babel.config.js +0 -0
  359. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/index.js +0 -0
  360. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/ios/Podfile +0 -0
  361. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/ios/template/AppDelegate.swift +0 -0
  362. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/ios/template/Images.xcassets/AppIcon.appiconset/Contents.json +0 -0
  363. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/ios/template/Images.xcassets/Contents.json +0 -0
  364. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/ios/template/Info.plist +0 -0
  365. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/ios/template/LaunchScreen.storyboard +0 -0
  366. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/ios/template/PrivacyInfo.xcprivacy +0 -0
  367. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/ios/template.xcodeproj/project.pbxproj +0 -0
  368. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/ios/template.xcodeproj/xcshareddata/xcschemes/template.xcscheme +0 -0
  369. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/jest.config.js +0 -0
  370. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/metro.config.js +0 -0
  371. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/package.json +0 -0
  372. /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/tsconfig.json +0 -0
@@ -0,0 +1,4113 @@
1
+ lockfileVersion: '9.0'
2
+
3
+ settings:
4
+ autoInstallPeers: true
5
+ excludeLinksFromLockfile: false
6
+
7
+ importers:
8
+
9
+ .:
10
+ dependencies:
11
+ '@clerk/nextjs':
12
+ specifier: ^6.33.6
13
+ version: 6.33.6(next@15.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
14
+ '@radix-ui/react-slot':
15
+ specifier: ^1.2.3
16
+ version: 1.2.3(@types/react@19.2.2)(react@19.1.0)
17
+ class-variance-authority:
18
+ specifier: ^0.7.1
19
+ version: 0.7.1
20
+ clsx:
21
+ specifier: ^2.1.1
22
+ version: 2.1.1
23
+ lucide-react:
24
+ specifier: ^0.527.0
25
+ version: 0.527.0(react@19.1.0)
26
+ next:
27
+ specifier: 15.4.4
28
+ version: 15.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
29
+ react:
30
+ specifier: 19.1.0
31
+ version: 19.1.0
32
+ react-dom:
33
+ specifier: 19.1.0
34
+ version: 19.1.0(react@19.1.0)
35
+ tailwind-merge:
36
+ specifier: ^3.3.1
37
+ version: 3.3.1
38
+ devDependencies:
39
+ '@clerk/types':
40
+ specifier: ^4.94.0
41
+ version: 4.94.0
42
+ '@eslint/eslintrc':
43
+ specifier: ^3
44
+ version: 3.3.1
45
+ '@tailwindcss/postcss':
46
+ specifier: ^4
47
+ version: 4.1.14
48
+ '@types/next':
49
+ specifier: ^9.0.0
50
+ version: 9.0.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
51
+ '@types/node':
52
+ specifier: ^20
53
+ version: 20.19.22
54
+ '@types/react':
55
+ specifier: ^19
56
+ version: 19.2.2
57
+ '@types/react-dom':
58
+ specifier: ^19
59
+ version: 19.2.2(@types/react@19.2.2)
60
+ eslint:
61
+ specifier: ^9
62
+ version: 9.37.0(jiti@2.6.1)
63
+ eslint-config-next:
64
+ specifier: 15.4.4
65
+ version: 15.4.4(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
66
+ tailwindcss:
67
+ specifier: ^4
68
+ version: 4.1.14
69
+ ts-node:
70
+ specifier: ^10.9.2
71
+ version: 10.9.2(@types/node@20.19.22)(typescript@5.9.3)
72
+ tw-animate-css:
73
+ specifier: ^1.3.6
74
+ version: 1.4.0
75
+ typescript:
76
+ specifier: ^5
77
+ version: 5.9.3
78
+
79
+ packages:
80
+
81
+ '@alloc/quick-lru@5.2.0':
82
+ resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
83
+ engines: {node: '>=10'}
84
+
85
+ '@clerk/backend@2.18.2':
86
+ resolution: {integrity: sha512-wAdwJO9SIpG3THR/t0mq1PvxOGPl6eicPOV9TAIkaTVGzYJ4toVL0poYHRE5k/C0nUeGeS6W0WyBhHj4Ak4YXw==}
87
+ engines: {node: '>=18.17.0'}
88
+
89
+ '@clerk/clerk-react@5.53.1':
90
+ resolution: {integrity: sha512-VLyzfJbqgvCsylwGzIqUN3iLDC+CKd+lFgsr4Q0APPZ9OlKwon355oH8qG++2/ECB/p6l6og5ICZulS31U52Hg==}
91
+ engines: {node: '>=18.17.0'}
92
+ peerDependencies:
93
+ react: ^18.0.0 || ^19.0.0 || ^19.0.0-0
94
+ react-dom: ^18.0.0 || ^19.0.0 || ^19.0.0-0
95
+
96
+ '@clerk/nextjs@6.33.6':
97
+ resolution: {integrity: sha512-jFdOIIMSClhLkFcxqxrRlgghFqqU+mViyoVqPgRQ12p7ftncTCCfECzFD4kViy6+8BrGkYXw0WdZZBEp5PZ87A==}
98
+ engines: {node: '>=18.17.0'}
99
+ peerDependencies:
100
+ next: ^13.5.7 || ^14.2.25 || ^15.2.3
101
+ react: ^18.0.0 || ^19.0.0 || ^19.0.0-0
102
+ react-dom: ^18.0.0 || ^19.0.0 || ^19.0.0-0
103
+
104
+ '@clerk/shared@3.28.1':
105
+ resolution: {integrity: sha512-jlrBSmxPMjigR0pU/Jp6rzJeTQLTqGvJva2/HpXNrrpliMgWyfRcVArT24fb46+HNanKNTFd6eqA1T+rIpNGnA==}
106
+ engines: {node: '>=18.17.0'}
107
+ peerDependencies:
108
+ react: ^18.0.0 || ^19.0.0 || ^19.0.0-0
109
+ react-dom: ^18.0.0 || ^19.0.0 || ^19.0.0-0
110
+ peerDependenciesMeta:
111
+ react:
112
+ optional: true
113
+ react-dom:
114
+ optional: true
115
+
116
+ '@clerk/types@4.94.0':
117
+ resolution: {integrity: sha512-gl2WR1+G/4QdykJvbJcBwAhRsPs/8G2q4mRaBaYTLtApaPPKb6GM1XLoYQOMKnYbmlUK6faPDtto9np8MYKaYA==}
118
+ engines: {node: '>=18.17.0'}
119
+
120
+ '@cspotcode/source-map-support@0.8.1':
121
+ resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
122
+ engines: {node: '>=12'}
123
+
124
+ '@emnapi/core@1.5.0':
125
+ resolution: {integrity: sha512-sbP8GzB1WDzacS8fgNPpHlp6C9VZe+SJP3F90W9rLemaQj2PzIuTEl1qDOYQf58YIpyjViI24y9aPWCjEzY2cg==}
126
+
127
+ '@emnapi/runtime@1.5.0':
128
+ resolution: {integrity: sha512-97/BJ3iXHww3djw6hYIfErCZFee7qCtrneuLa20UXFCOTCfBM2cvQHjWJ2EG0s0MtdNwInarqCTz35i4wWXHsQ==}
129
+
130
+ '@emnapi/wasi-threads@1.1.0':
131
+ resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==}
132
+
133
+ '@eslint-community/eslint-utils@4.9.0':
134
+ resolution: {integrity: sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==}
135
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
136
+ peerDependencies:
137
+ eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
138
+
139
+ '@eslint-community/regexpp@4.12.1':
140
+ resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
141
+ engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
142
+
143
+ '@eslint/config-array@0.21.0':
144
+ resolution: {integrity: sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==}
145
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
146
+
147
+ '@eslint/config-helpers@0.4.0':
148
+ resolution: {integrity: sha512-WUFvV4WoIwW8Bv0KeKCIIEgdSiFOsulyN0xrMu+7z43q/hkOLXjvb5u7UC9jDxvRzcrbEmuZBX5yJZz1741jog==}
149
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
150
+
151
+ '@eslint/core@0.16.0':
152
+ resolution: {integrity: sha512-nmC8/totwobIiFcGkDza3GIKfAw1+hLiYVrh3I1nIomQ8PEr5cxg34jnkmGawul/ep52wGRAcyeDCNtWKSOj4Q==}
153
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
154
+
155
+ '@eslint/eslintrc@3.3.1':
156
+ resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
157
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
158
+
159
+ '@eslint/js@9.37.0':
160
+ resolution: {integrity: sha512-jaS+NJ+hximswBG6pjNX0uEJZkrT0zwpVi3BA3vX22aFGjJjmgSTSmPpZCRKmoBL5VY/M6p0xsSJx7rk7sy5gg==}
161
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
162
+
163
+ '@eslint/object-schema@2.1.6':
164
+ resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==}
165
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
166
+
167
+ '@eslint/plugin-kit@0.4.0':
168
+ resolution: {integrity: sha512-sB5uyeq+dwCWyPi31B2gQlVlo+j5brPlWx4yZBrEaRo/nhdDE8Xke1gsGgtiBdaBTxuTkceLVuVt/pclrasb0A==}
169
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
170
+
171
+ '@humanfs/core@0.19.1':
172
+ resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
173
+ engines: {node: '>=18.18.0'}
174
+
175
+ '@humanfs/node@0.16.7':
176
+ resolution: {integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==}
177
+ engines: {node: '>=18.18.0'}
178
+
179
+ '@humanwhocodes/module-importer@1.0.1':
180
+ resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
181
+ engines: {node: '>=12.22'}
182
+
183
+ '@humanwhocodes/retry@0.4.3':
184
+ resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
185
+ engines: {node: '>=18.18'}
186
+
187
+ '@img/colour@1.0.0':
188
+ resolution: {integrity: sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==}
189
+ engines: {node: '>=18'}
190
+
191
+ '@img/sharp-darwin-arm64@0.34.4':
192
+ resolution: {integrity: sha512-sitdlPzDVyvmINUdJle3TNHl+AG9QcwiAMsXmccqsCOMZNIdW2/7S26w0LyU8euiLVzFBL3dXPwVCq/ODnf2vA==}
193
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
194
+ cpu: [arm64]
195
+ os: [darwin]
196
+
197
+ '@img/sharp-darwin-x64@0.34.4':
198
+ resolution: {integrity: sha512-rZheupWIoa3+SOdF/IcUe1ah4ZDpKBGWcsPX6MT0lYniH9micvIU7HQkYTfrx5Xi8u+YqwLtxC/3vl8TQN6rMg==}
199
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
200
+ cpu: [x64]
201
+ os: [darwin]
202
+
203
+ '@img/sharp-libvips-darwin-arm64@1.2.3':
204
+ resolution: {integrity: sha512-QzWAKo7kpHxbuHqUC28DZ9pIKpSi2ts2OJnoIGI26+HMgq92ZZ4vk8iJd4XsxN+tYfNJxzH6W62X5eTcsBymHw==}
205
+ cpu: [arm64]
206
+ os: [darwin]
207
+
208
+ '@img/sharp-libvips-darwin-x64@1.2.3':
209
+ resolution: {integrity: sha512-Ju+g2xn1E2AKO6YBhxjj+ACcsPQRHT0bhpglxcEf+3uyPY+/gL8veniKoo96335ZaPo03bdDXMv0t+BBFAbmRA==}
210
+ cpu: [x64]
211
+ os: [darwin]
212
+
213
+ '@img/sharp-libvips-linux-arm64@1.2.3':
214
+ resolution: {integrity: sha512-I4RxkXU90cpufazhGPyVujYwfIm9Nk1QDEmiIsaPwdnm013F7RIceaCc87kAH+oUB1ezqEvC6ga4m7MSlqsJvQ==}
215
+ cpu: [arm64]
216
+ os: [linux]
217
+
218
+ '@img/sharp-libvips-linux-arm@1.2.3':
219
+ resolution: {integrity: sha512-x1uE93lyP6wEwGvgAIV0gP6zmaL/a0tGzJs/BIDDG0zeBhMnuUPm7ptxGhUbcGs4okDJrk4nxgrmxpib9g6HpA==}
220
+ cpu: [arm]
221
+ os: [linux]
222
+
223
+ '@img/sharp-libvips-linux-ppc64@1.2.3':
224
+ resolution: {integrity: sha512-Y2T7IsQvJLMCBM+pmPbM3bKT/yYJvVtLJGfCs4Sp95SjvnFIjynbjzsa7dY1fRJX45FTSfDksbTp6AGWudiyCg==}
225
+ cpu: [ppc64]
226
+ os: [linux]
227
+
228
+ '@img/sharp-libvips-linux-s390x@1.2.3':
229
+ resolution: {integrity: sha512-RgWrs/gVU7f+K7P+KeHFaBAJlNkD1nIZuVXdQv6S+fNA6syCcoboNjsV2Pou7zNlVdNQoQUpQTk8SWDHUA3y/w==}
230
+ cpu: [s390x]
231
+ os: [linux]
232
+
233
+ '@img/sharp-libvips-linux-x64@1.2.3':
234
+ resolution: {integrity: sha512-3JU7LmR85K6bBiRzSUc/Ff9JBVIFVvq6bomKE0e63UXGeRw2HPVEjoJke1Yx+iU4rL7/7kUjES4dZ/81Qjhyxg==}
235
+ cpu: [x64]
236
+ os: [linux]
237
+
238
+ '@img/sharp-libvips-linuxmusl-arm64@1.2.3':
239
+ resolution: {integrity: sha512-F9q83RZ8yaCwENw1GieztSfj5msz7GGykG/BA+MOUefvER69K/ubgFHNeSyUu64amHIYKGDs4sRCMzXVj8sEyw==}
240
+ cpu: [arm64]
241
+ os: [linux]
242
+
243
+ '@img/sharp-libvips-linuxmusl-x64@1.2.3':
244
+ resolution: {integrity: sha512-U5PUY5jbc45ANM6tSJpsgqmBF/VsL6LnxJmIf11kB7J5DctHgqm0SkuXzVWtIY90GnJxKnC/JT251TDnk1fu/g==}
245
+ cpu: [x64]
246
+ os: [linux]
247
+
248
+ '@img/sharp-linux-arm64@0.34.4':
249
+ resolution: {integrity: sha512-YXU1F/mN/Wu786tl72CyJjP/Ngl8mGHN1hST4BGl+hiW5jhCnV2uRVTNOcaYPs73NeT/H8Upm3y9582JVuZHrQ==}
250
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
251
+ cpu: [arm64]
252
+ os: [linux]
253
+
254
+ '@img/sharp-linux-arm@0.34.4':
255
+ resolution: {integrity: sha512-Xyam4mlqM0KkTHYVSuc6wXRmM7LGN0P12li03jAnZ3EJWZqj83+hi8Y9UxZUbxsgsK1qOEwg7O0Bc0LjqQVtxA==}
256
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
257
+ cpu: [arm]
258
+ os: [linux]
259
+
260
+ '@img/sharp-linux-ppc64@0.34.4':
261
+ resolution: {integrity: sha512-F4PDtF4Cy8L8hXA2p3TO6s4aDt93v+LKmpcYFLAVdkkD3hSxZzee0rh6/+94FpAynsuMpLX5h+LRsSG3rIciUQ==}
262
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
263
+ cpu: [ppc64]
264
+ os: [linux]
265
+
266
+ '@img/sharp-linux-s390x@0.34.4':
267
+ resolution: {integrity: sha512-qVrZKE9Bsnzy+myf7lFKvng6bQzhNUAYcVORq2P7bDlvmF6u2sCmK2KyEQEBdYk+u3T01pVsPrkj943T1aJAsw==}
268
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
269
+ cpu: [s390x]
270
+ os: [linux]
271
+
272
+ '@img/sharp-linux-x64@0.34.4':
273
+ resolution: {integrity: sha512-ZfGtcp2xS51iG79c6Vhw9CWqQC8l2Ot8dygxoDoIQPTat/Ov3qAa8qpxSrtAEAJW+UjTXc4yxCjNfxm4h6Xm2A==}
274
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
275
+ cpu: [x64]
276
+ os: [linux]
277
+
278
+ '@img/sharp-linuxmusl-arm64@0.34.4':
279
+ resolution: {integrity: sha512-8hDVvW9eu4yHWnjaOOR8kHVrew1iIX+MUgwxSuH2XyYeNRtLUe4VNioSqbNkB7ZYQJj9rUTT4PyRscyk2PXFKA==}
280
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
281
+ cpu: [arm64]
282
+ os: [linux]
283
+
284
+ '@img/sharp-linuxmusl-x64@0.34.4':
285
+ resolution: {integrity: sha512-lU0aA5L8QTlfKjpDCEFOZsTYGn3AEiO6db8W5aQDxj0nQkVrZWmN3ZP9sYKWJdtq3PWPhUNlqehWyXpYDcI9Sg==}
286
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
287
+ cpu: [x64]
288
+ os: [linux]
289
+
290
+ '@img/sharp-wasm32@0.34.4':
291
+ resolution: {integrity: sha512-33QL6ZO/qpRyG7woB/HUALz28WnTMI2W1jgX3Nu2bypqLIKx/QKMILLJzJjI+SIbvXdG9fUnmrxR7vbi1sTBeA==}
292
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
293
+ cpu: [wasm32]
294
+
295
+ '@img/sharp-win32-arm64@0.34.4':
296
+ resolution: {integrity: sha512-2Q250do/5WXTwxW3zjsEuMSv5sUU4Tq9VThWKlU2EYLm4MB7ZeMwF+SFJutldYODXF6jzc6YEOC+VfX0SZQPqA==}
297
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
298
+ cpu: [arm64]
299
+ os: [win32]
300
+
301
+ '@img/sharp-win32-ia32@0.34.4':
302
+ resolution: {integrity: sha512-3ZeLue5V82dT92CNL6rsal6I2weKw1cYu+rGKm8fOCCtJTR2gYeUfY3FqUnIJsMUPIH68oS5jmZ0NiJ508YpEw==}
303
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
304
+ cpu: [ia32]
305
+ os: [win32]
306
+
307
+ '@img/sharp-win32-x64@0.34.4':
308
+ resolution: {integrity: sha512-xIyj4wpYs8J18sVN3mSQjwrw7fKUqRw+Z5rnHNCy5fYTxigBz81u5mOMPmFumwjcn8+ld1ppptMBCLic1nz6ig==}
309
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
310
+ cpu: [x64]
311
+ os: [win32]
312
+
313
+ '@isaacs/fs-minipass@4.0.1':
314
+ resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==}
315
+ engines: {node: '>=18.0.0'}
316
+
317
+ '@jridgewell/gen-mapping@0.3.13':
318
+ resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
319
+
320
+ '@jridgewell/remapping@2.3.5':
321
+ resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
322
+
323
+ '@jridgewell/resolve-uri@3.1.2':
324
+ resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
325
+ engines: {node: '>=6.0.0'}
326
+
327
+ '@jridgewell/sourcemap-codec@1.5.5':
328
+ resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
329
+
330
+ '@jridgewell/trace-mapping@0.3.31':
331
+ resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
332
+
333
+ '@jridgewell/trace-mapping@0.3.9':
334
+ resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
335
+
336
+ '@napi-rs/wasm-runtime@0.2.12':
337
+ resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==}
338
+
339
+ '@next/env@15.4.4':
340
+ resolution: {integrity: sha512-SJKOOkULKENyHSYXE5+KiFU6itcIb6wSBjgM92meK0HVKpo94dNOLZVdLLuS7/BxImROkGoPsjR4EnuDucqiiA==}
341
+
342
+ '@next/eslint-plugin-next@15.4.4':
343
+ resolution: {integrity: sha512-1FDsyN//ai3Jd97SEd7scw5h1yLdzDACGOPRofr2GD3sEFsBylEEoL0MHSerd4n2dq9Zm/mFMqi4+NRMOreOKA==}
344
+
345
+ '@next/swc-darwin-arm64@15.4.4':
346
+ resolution: {integrity: sha512-eVG55dnGwfUuG+TtnUCt+mEJ+8TGgul6nHEvdb8HEH7dmJIFYOCApAaFrIrxwtEq2Cdf+0m5sG1Np8cNpw9EAw==}
347
+ engines: {node: '>= 10'}
348
+ cpu: [arm64]
349
+ os: [darwin]
350
+
351
+ '@next/swc-darwin-x64@15.4.4':
352
+ resolution: {integrity: sha512-zqG+/8apsu49CltEj4NAmCGZvHcZbOOOsNoTVeIXphYWIbE4l6A/vuQHyqll0flU2o3dmYCXsBW5FmbrGDgljQ==}
353
+ engines: {node: '>= 10'}
354
+ cpu: [x64]
355
+ os: [darwin]
356
+
357
+ '@next/swc-linux-arm64-gnu@15.4.4':
358
+ resolution: {integrity: sha512-LRD4l2lq4R+2QCHBQVC0wjxxkLlALGJCwigaJ5FSRSqnje+MRKHljQNZgDCaKUZQzO/TXxlmUdkZP/X3KNGZaw==}
359
+ engines: {node: '>= 10'}
360
+ cpu: [arm64]
361
+ os: [linux]
362
+
363
+ '@next/swc-linux-arm64-musl@15.4.4':
364
+ resolution: {integrity: sha512-LsGUCTvuZ0690fFWerA4lnQvjkYg9gHo12A3wiPUR4kCxbx/d+SlwmonuTH2SWZI+RVGA9VL3N0S03WTYv6bYg==}
365
+ engines: {node: '>= 10'}
366
+ cpu: [arm64]
367
+ os: [linux]
368
+
369
+ '@next/swc-linux-x64-gnu@15.4.4':
370
+ resolution: {integrity: sha512-aOy5yNRpLL3wNiJVkFYl6w22hdREERNjvegE6vvtix8LHRdsTHhWTpgvcYdCK7AIDCQW5ATmzr9XkPHvSoAnvg==}
371
+ engines: {node: '>= 10'}
372
+ cpu: [x64]
373
+ os: [linux]
374
+
375
+ '@next/swc-linux-x64-musl@15.4.4':
376
+ resolution: {integrity: sha512-FL7OAn4UkR8hKQRGBmlHiHinzOb07tsfARdGh7v0Z0jEJ3sz8/7L5bR23ble9E6DZMabSStqlATHlSxv1fuzAg==}
377
+ engines: {node: '>= 10'}
378
+ cpu: [x64]
379
+ os: [linux]
380
+
381
+ '@next/swc-win32-arm64-msvc@15.4.4':
382
+ resolution: {integrity: sha512-eEdNW/TXwjYhOulQh0pffTMMItWVwKCQpbziSBmgBNFZIIRn2GTXrhrewevs8wP8KXWYMx8Z+mNU0X+AfvtrRg==}
383
+ engines: {node: '>= 10'}
384
+ cpu: [arm64]
385
+ os: [win32]
386
+
387
+ '@next/swc-win32-x64-msvc@15.4.4':
388
+ resolution: {integrity: sha512-SE5pYNbn/xZKMy1RE3pAs+4xD32OI4rY6mzJa4XUkp/ItZY+OMjIgilskmErt8ls/fVJ+Ihopi2QIeW6O3TrMw==}
389
+ engines: {node: '>= 10'}
390
+ cpu: [x64]
391
+ os: [win32]
392
+
393
+ '@nodelib/fs.scandir@2.1.5':
394
+ resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
395
+ engines: {node: '>= 8'}
396
+
397
+ '@nodelib/fs.stat@2.0.5':
398
+ resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
399
+ engines: {node: '>= 8'}
400
+
401
+ '@nodelib/fs.walk@1.2.8':
402
+ resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
403
+ engines: {node: '>= 8'}
404
+
405
+ '@nolyfill/is-core-module@1.0.39':
406
+ resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==}
407
+ engines: {node: '>=12.4.0'}
408
+
409
+ '@radix-ui/react-compose-refs@1.1.2':
410
+ resolution: {integrity: sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==}
411
+ peerDependencies:
412
+ '@types/react': '*'
413
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
414
+ peerDependenciesMeta:
415
+ '@types/react':
416
+ optional: true
417
+
418
+ '@radix-ui/react-slot@1.2.3':
419
+ resolution: {integrity: sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==}
420
+ peerDependencies:
421
+ '@types/react': '*'
422
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
423
+ peerDependenciesMeta:
424
+ '@types/react':
425
+ optional: true
426
+
427
+ '@rtsao/scc@1.1.0':
428
+ resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
429
+
430
+ '@rushstack/eslint-patch@1.14.0':
431
+ resolution: {integrity: sha512-WJFej426qe4RWOm9MMtP4V3CV4AucXolQty+GRgAWLgQXmpCuwzs7hEpxxhSc/znXUSxum9d/P/32MW0FlAAlA==}
432
+
433
+ '@stablelib/base64@1.0.1':
434
+ resolution: {integrity: sha512-1bnPQqSxSuc3Ii6MhBysoWCg58j97aUjuCSZrGSmDxNqtytIi0k8utUenAwTZN4V5mXXYGsVUI9zeBqy+jBOSQ==}
435
+
436
+ '@swc/helpers@0.5.15':
437
+ resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
438
+
439
+ '@tailwindcss/node@4.1.14':
440
+ resolution: {integrity: sha512-hpz+8vFk3Ic2xssIA3e01R6jkmsAhvkQdXlEbRTk6S10xDAtiQiM3FyvZVGsucefq764euO/b8WUW9ysLdThHw==}
441
+
442
+ '@tailwindcss/oxide-android-arm64@4.1.14':
443
+ resolution: {integrity: sha512-a94ifZrGwMvbdeAxWoSuGcIl6/DOP5cdxagid7xJv6bwFp3oebp7y2ImYsnZBMTwjn5Ev5xESvS3FFYUGgPODQ==}
444
+ engines: {node: '>= 10'}
445
+ cpu: [arm64]
446
+ os: [android]
447
+
448
+ '@tailwindcss/oxide-darwin-arm64@4.1.14':
449
+ resolution: {integrity: sha512-HkFP/CqfSh09xCnrPJA7jud7hij5ahKyWomrC3oiO2U9i0UjP17o9pJbxUN0IJ471GTQQmzwhp0DEcpbp4MZTA==}
450
+ engines: {node: '>= 10'}
451
+ cpu: [arm64]
452
+ os: [darwin]
453
+
454
+ '@tailwindcss/oxide-darwin-x64@4.1.14':
455
+ resolution: {integrity: sha512-eVNaWmCgdLf5iv6Qd3s7JI5SEFBFRtfm6W0mphJYXgvnDEAZ5sZzqmI06bK6xo0IErDHdTA5/t7d4eTfWbWOFw==}
456
+ engines: {node: '>= 10'}
457
+ cpu: [x64]
458
+ os: [darwin]
459
+
460
+ '@tailwindcss/oxide-freebsd-x64@4.1.14':
461
+ resolution: {integrity: sha512-QWLoRXNikEuqtNb0dhQN6wsSVVjX6dmUFzuuiL09ZeXju25dsei2uIPl71y2Ic6QbNBsB4scwBoFnlBfabHkEw==}
462
+ engines: {node: '>= 10'}
463
+ cpu: [x64]
464
+ os: [freebsd]
465
+
466
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.14':
467
+ resolution: {integrity: sha512-VB4gjQni9+F0VCASU+L8zSIyjrLLsy03sjcR3bM0V2g4SNamo0FakZFKyUQ96ZVwGK4CaJsc9zd/obQy74o0Fw==}
468
+ engines: {node: '>= 10'}
469
+ cpu: [arm]
470
+ os: [linux]
471
+
472
+ '@tailwindcss/oxide-linux-arm64-gnu@4.1.14':
473
+ resolution: {integrity: sha512-qaEy0dIZ6d9vyLnmeg24yzA8XuEAD9WjpM5nIM1sUgQ/Zv7cVkharPDQcmm/t/TvXoKo/0knI3me3AGfdx6w1w==}
474
+ engines: {node: '>= 10'}
475
+ cpu: [arm64]
476
+ os: [linux]
477
+
478
+ '@tailwindcss/oxide-linux-arm64-musl@4.1.14':
479
+ resolution: {integrity: sha512-ISZjT44s59O8xKsPEIesiIydMG/sCXoMBCqsphDm/WcbnuWLxxb+GcvSIIA5NjUw6F8Tex7s5/LM2yDy8RqYBQ==}
480
+ engines: {node: '>= 10'}
481
+ cpu: [arm64]
482
+ os: [linux]
483
+
484
+ '@tailwindcss/oxide-linux-x64-gnu@4.1.14':
485
+ resolution: {integrity: sha512-02c6JhLPJj10L2caH4U0zF8Hji4dOeahmuMl23stk0MU1wfd1OraE7rOloidSF8W5JTHkFdVo/O7uRUJJnUAJg==}
486
+ engines: {node: '>= 10'}
487
+ cpu: [x64]
488
+ os: [linux]
489
+
490
+ '@tailwindcss/oxide-linux-x64-musl@4.1.14':
491
+ resolution: {integrity: sha512-TNGeLiN1XS66kQhxHG/7wMeQDOoL0S33x9BgmydbrWAb9Qw0KYdd8o1ifx4HOGDWhVmJ+Ul+JQ7lyknQFilO3Q==}
492
+ engines: {node: '>= 10'}
493
+ cpu: [x64]
494
+ os: [linux]
495
+
496
+ '@tailwindcss/oxide-wasm32-wasi@4.1.14':
497
+ resolution: {integrity: sha512-uZYAsaW/jS/IYkd6EWPJKW/NlPNSkWkBlaeVBi/WsFQNP05/bzkebUL8FH1pdsqx4f2fH/bWFcUABOM9nfiJkQ==}
498
+ engines: {node: '>=14.0.0'}
499
+ cpu: [wasm32]
500
+ bundledDependencies:
501
+ - '@napi-rs/wasm-runtime'
502
+ - '@emnapi/core'
503
+ - '@emnapi/runtime'
504
+ - '@tybys/wasm-util'
505
+ - '@emnapi/wasi-threads'
506
+ - tslib
507
+
508
+ '@tailwindcss/oxide-win32-arm64-msvc@4.1.14':
509
+ resolution: {integrity: sha512-Az0RnnkcvRqsuoLH2Z4n3JfAef0wElgzHD5Aky/e+0tBUxUhIeIqFBTMNQvmMRSP15fWwmvjBxZ3Q8RhsDnxAA==}
510
+ engines: {node: '>= 10'}
511
+ cpu: [arm64]
512
+ os: [win32]
513
+
514
+ '@tailwindcss/oxide-win32-x64-msvc@4.1.14':
515
+ resolution: {integrity: sha512-ttblVGHgf68kEE4om1n/n44I0yGPkCPbLsqzjvybhpwa6mKKtgFfAzy6btc3HRmuW7nHe0OOrSeNP9sQmmH9XA==}
516
+ engines: {node: '>= 10'}
517
+ cpu: [x64]
518
+ os: [win32]
519
+
520
+ '@tailwindcss/oxide@4.1.14':
521
+ resolution: {integrity: sha512-23yx+VUbBwCg2x5XWdB8+1lkPajzLmALEfMb51zZUBYaYVPDQvBSD/WYDqiVyBIo2BZFa3yw1Rpy3G2Jp+K0dw==}
522
+ engines: {node: '>= 10'}
523
+
524
+ '@tailwindcss/postcss@4.1.14':
525
+ resolution: {integrity: sha512-BdMjIxy7HUNThK87C7BC8I1rE8BVUsfNQSI5siQ4JK3iIa3w0XyVvVL9SXLWO//CtYTcp1v7zci0fYwJOjB+Zg==}
526
+
527
+ '@tsconfig/node10@1.0.11':
528
+ resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==}
529
+
530
+ '@tsconfig/node12@1.0.11':
531
+ resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==}
532
+
533
+ '@tsconfig/node14@1.0.3':
534
+ resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
535
+
536
+ '@tsconfig/node16@1.0.4':
537
+ resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==}
538
+
539
+ '@tybys/wasm-util@0.10.1':
540
+ resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==}
541
+
542
+ '@types/estree@1.0.8':
543
+ resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
544
+
545
+ '@types/json-schema@7.0.15':
546
+ resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
547
+
548
+ '@types/json5@0.0.29':
549
+ resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
550
+
551
+ '@types/next@9.0.0':
552
+ resolution: {integrity: sha512-gnBXM8rP1mnCgT1uE2z8SnpFTKRWReJlhbZLZkOLq/CH1ifvTNwjIVtXvsywTy1dwVklf+y/MB0Eh6FOa94yrg==}
553
+ deprecated: This is a stub types definition. next provides its own type definitions, so you do not need this installed.
554
+
555
+ '@types/node@20.19.22':
556
+ resolution: {integrity: sha512-hRnu+5qggKDSyWHlnmThnUqg62l29Aj/6vcYgUaSFL9oc7DVjeWEQN3PRgdSc6F8d9QRMWkf36CLMch1Do/+RQ==}
557
+
558
+ '@types/react-dom@19.2.2':
559
+ resolution: {integrity: sha512-9KQPoO6mZCi7jcIStSnlOWn2nEF3mNmyr3rIAsGnAbQKYbRLyqmeSc39EVgtxXVia+LMT8j3knZLAZAh+xLmrw==}
560
+ peerDependencies:
561
+ '@types/react': ^19.2.0
562
+
563
+ '@types/react@19.2.2':
564
+ resolution: {integrity: sha512-6mDvHUFSjyT2B2yeNx2nUgMxh9LtOWvkhIU3uePn2I2oyNymUAX1NIsdgviM4CH+JSrp2D2hsMvJOkxY+0wNRA==}
565
+
566
+ '@typescript-eslint/eslint-plugin@8.46.1':
567
+ resolution: {integrity: sha512-rUsLh8PXmBjdiPY+Emjz9NX2yHvhS11v0SR6xNJkm5GM1MO9ea/1GoDKlHHZGrOJclL/cZ2i/vRUYVtjRhrHVQ==}
568
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
569
+ peerDependencies:
570
+ '@typescript-eslint/parser': ^8.46.1
571
+ eslint: ^8.57.0 || ^9.0.0
572
+ typescript: '>=4.8.4 <6.0.0'
573
+
574
+ '@typescript-eslint/parser@8.46.1':
575
+ resolution: {integrity: sha512-6JSSaBZmsKvEkbRUkf7Zj7dru/8ZCrJxAqArcLaVMee5907JdtEbKGsZ7zNiIm/UAkpGUkaSMZEXShnN2D1HZA==}
576
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
577
+ peerDependencies:
578
+ eslint: ^8.57.0 || ^9.0.0
579
+ typescript: '>=4.8.4 <6.0.0'
580
+
581
+ '@typescript-eslint/project-service@8.46.1':
582
+ resolution: {integrity: sha512-FOIaFVMHzRskXr5J4Jp8lFVV0gz5ngv3RHmn+E4HYxSJ3DgDzU7fVI1/M7Ijh1zf6S7HIoaIOtln1H5y8V+9Zg==}
583
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
584
+ peerDependencies:
585
+ typescript: '>=4.8.4 <6.0.0'
586
+
587
+ '@typescript-eslint/scope-manager@8.46.1':
588
+ resolution: {integrity: sha512-weL9Gg3/5F0pVQKiF8eOXFZp8emqWzZsOJuWRUNtHT+UNV2xSJegmpCNQHy37aEQIbToTq7RHKhWvOsmbM680A==}
589
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
590
+
591
+ '@typescript-eslint/tsconfig-utils@8.46.1':
592
+ resolution: {integrity: sha512-X88+J/CwFvlJB+mK09VFqx5FE4H5cXD+H/Bdza2aEWkSb8hnWIQorNcscRl4IEo1Cz9VI/+/r/jnGWkbWPx54g==}
593
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
594
+ peerDependencies:
595
+ typescript: '>=4.8.4 <6.0.0'
596
+
597
+ '@typescript-eslint/type-utils@8.46.1':
598
+ resolution: {integrity: sha512-+BlmiHIiqufBxkVnOtFwjah/vrkF4MtKKvpXrKSPLCkCtAp8H01/VV43sfqA98Od7nJpDcFnkwgyfQbOG0AMvw==}
599
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
600
+ peerDependencies:
601
+ eslint: ^8.57.0 || ^9.0.0
602
+ typescript: '>=4.8.4 <6.0.0'
603
+
604
+ '@typescript-eslint/types@8.46.1':
605
+ resolution: {integrity: sha512-C+soprGBHwWBdkDpbaRC4paGBrkIXxVlNohadL5o0kfhsXqOC6GYH2S/Obmig+I0HTDl8wMaRySwrfrXVP8/pQ==}
606
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
607
+
608
+ '@typescript-eslint/typescript-estree@8.46.1':
609
+ resolution: {integrity: sha512-uIifjT4s8cQKFQ8ZBXXyoUODtRoAd7F7+G8MKmtzj17+1UbdzFl52AzRyZRyKqPHhgzvXunnSckVu36flGy8cg==}
610
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
611
+ peerDependencies:
612
+ typescript: '>=4.8.4 <6.0.0'
613
+
614
+ '@typescript-eslint/utils@8.46.1':
615
+ resolution: {integrity: sha512-vkYUy6LdZS7q1v/Gxb2Zs7zziuXN0wxqsetJdeZdRe/f5dwJFglmuvZBfTUivCtjH725C1jWCDfpadadD95EDQ==}
616
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
617
+ peerDependencies:
618
+ eslint: ^8.57.0 || ^9.0.0
619
+ typescript: '>=4.8.4 <6.0.0'
620
+
621
+ '@typescript-eslint/visitor-keys@8.46.1':
622
+ resolution: {integrity: sha512-ptkmIf2iDkNUjdeu2bQqhFPV1m6qTnFFjg7PPDjxKWaMaP0Z6I9l30Jr3g5QqbZGdw8YdYvLp+XnqnWWZOg/NA==}
623
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
624
+
625
+ '@unrs/resolver-binding-android-arm-eabi@1.11.1':
626
+ resolution: {integrity: sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==}
627
+ cpu: [arm]
628
+ os: [android]
629
+
630
+ '@unrs/resolver-binding-android-arm64@1.11.1':
631
+ resolution: {integrity: sha512-lCxkVtb4wp1v+EoN+HjIG9cIIzPkX5OtM03pQYkG+U5O/wL53LC4QbIeazgiKqluGeVEeBlZahHalCaBvU1a2g==}
632
+ cpu: [arm64]
633
+ os: [android]
634
+
635
+ '@unrs/resolver-binding-darwin-arm64@1.11.1':
636
+ resolution: {integrity: sha512-gPVA1UjRu1Y/IsB/dQEsp2V1pm44Of6+LWvbLc9SDk1c2KhhDRDBUkQCYVWe6f26uJb3fOK8saWMgtX8IrMk3g==}
637
+ cpu: [arm64]
638
+ os: [darwin]
639
+
640
+ '@unrs/resolver-binding-darwin-x64@1.11.1':
641
+ resolution: {integrity: sha512-cFzP7rWKd3lZaCsDze07QX1SC24lO8mPty9vdP+YVa3MGdVgPmFc59317b2ioXtgCMKGiCLxJ4HQs62oz6GfRQ==}
642
+ cpu: [x64]
643
+ os: [darwin]
644
+
645
+ '@unrs/resolver-binding-freebsd-x64@1.11.1':
646
+ resolution: {integrity: sha512-fqtGgak3zX4DCB6PFpsH5+Kmt/8CIi4Bry4rb1ho6Av2QHTREM+47y282Uqiu3ZRF5IQioJQ5qWRV6jduA+iGw==}
647
+ cpu: [x64]
648
+ os: [freebsd]
649
+
650
+ '@unrs/resolver-binding-linux-arm-gnueabihf@1.11.1':
651
+ resolution: {integrity: sha512-u92mvlcYtp9MRKmP+ZvMmtPN34+/3lMHlyMj7wXJDeXxuM0Vgzz0+PPJNsro1m3IZPYChIkn944wW8TYgGKFHw==}
652
+ cpu: [arm]
653
+ os: [linux]
654
+
655
+ '@unrs/resolver-binding-linux-arm-musleabihf@1.11.1':
656
+ resolution: {integrity: sha512-cINaoY2z7LVCrfHkIcmvj7osTOtm6VVT16b5oQdS4beibX2SYBwgYLmqhBjA1t51CarSaBuX5YNsWLjsqfW5Cw==}
657
+ cpu: [arm]
658
+ os: [linux]
659
+
660
+ '@unrs/resolver-binding-linux-arm64-gnu@1.11.1':
661
+ resolution: {integrity: sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==}
662
+ cpu: [arm64]
663
+ os: [linux]
664
+
665
+ '@unrs/resolver-binding-linux-arm64-musl@1.11.1':
666
+ resolution: {integrity: sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==}
667
+ cpu: [arm64]
668
+ os: [linux]
669
+
670
+ '@unrs/resolver-binding-linux-ppc64-gnu@1.11.1':
671
+ resolution: {integrity: sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==}
672
+ cpu: [ppc64]
673
+ os: [linux]
674
+
675
+ '@unrs/resolver-binding-linux-riscv64-gnu@1.11.1':
676
+ resolution: {integrity: sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==}
677
+ cpu: [riscv64]
678
+ os: [linux]
679
+
680
+ '@unrs/resolver-binding-linux-riscv64-musl@1.11.1':
681
+ resolution: {integrity: sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==}
682
+ cpu: [riscv64]
683
+ os: [linux]
684
+
685
+ '@unrs/resolver-binding-linux-s390x-gnu@1.11.1':
686
+ resolution: {integrity: sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==}
687
+ cpu: [s390x]
688
+ os: [linux]
689
+
690
+ '@unrs/resolver-binding-linux-x64-gnu@1.11.1':
691
+ resolution: {integrity: sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==}
692
+ cpu: [x64]
693
+ os: [linux]
694
+
695
+ '@unrs/resolver-binding-linux-x64-musl@1.11.1':
696
+ resolution: {integrity: sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==}
697
+ cpu: [x64]
698
+ os: [linux]
699
+
700
+ '@unrs/resolver-binding-wasm32-wasi@1.11.1':
701
+ resolution: {integrity: sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==}
702
+ engines: {node: '>=14.0.0'}
703
+ cpu: [wasm32]
704
+
705
+ '@unrs/resolver-binding-win32-arm64-msvc@1.11.1':
706
+ resolution: {integrity: sha512-nRcz5Il4ln0kMhfL8S3hLkxI85BXs3o8EYoattsJNdsX4YUU89iOkVn7g0VHSRxFuVMdM4Q1jEpIId1Ihim/Uw==}
707
+ cpu: [arm64]
708
+ os: [win32]
709
+
710
+ '@unrs/resolver-binding-win32-ia32-msvc@1.11.1':
711
+ resolution: {integrity: sha512-DCEI6t5i1NmAZp6pFonpD5m7i6aFrpofcp4LA2i8IIq60Jyo28hamKBxNrZcyOwVOZkgsRp9O2sXWBWP8MnvIQ==}
712
+ cpu: [ia32]
713
+ os: [win32]
714
+
715
+ '@unrs/resolver-binding-win32-x64-msvc@1.11.1':
716
+ resolution: {integrity: sha512-lrW200hZdbfRtztbygyaq/6jP6AKE8qQN2KvPcJ+x7wiD038YtnYtZ82IMNJ69GJibV7bwL3y9FgK+5w/pYt6g==}
717
+ cpu: [x64]
718
+ os: [win32]
719
+
720
+ acorn-jsx@5.3.2:
721
+ resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
722
+ peerDependencies:
723
+ acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
724
+
725
+ acorn-walk@8.3.4:
726
+ resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==}
727
+ engines: {node: '>=0.4.0'}
728
+
729
+ acorn@8.15.0:
730
+ resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==}
731
+ engines: {node: '>=0.4.0'}
732
+ hasBin: true
733
+
734
+ ajv@6.12.6:
735
+ resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
736
+
737
+ ansi-styles@4.3.0:
738
+ resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
739
+ engines: {node: '>=8'}
740
+
741
+ arg@4.1.3:
742
+ resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
743
+
744
+ argparse@2.0.1:
745
+ resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
746
+
747
+ aria-query@5.3.2:
748
+ resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==}
749
+ engines: {node: '>= 0.4'}
750
+
751
+ array-buffer-byte-length@1.0.2:
752
+ resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==}
753
+ engines: {node: '>= 0.4'}
754
+
755
+ array-includes@3.1.9:
756
+ resolution: {integrity: sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==}
757
+ engines: {node: '>= 0.4'}
758
+
759
+ array.prototype.findlast@1.2.5:
760
+ resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==}
761
+ engines: {node: '>= 0.4'}
762
+
763
+ array.prototype.findlastindex@1.2.6:
764
+ resolution: {integrity: sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==}
765
+ engines: {node: '>= 0.4'}
766
+
767
+ array.prototype.flat@1.3.3:
768
+ resolution: {integrity: sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==}
769
+ engines: {node: '>= 0.4'}
770
+
771
+ array.prototype.flatmap@1.3.3:
772
+ resolution: {integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==}
773
+ engines: {node: '>= 0.4'}
774
+
775
+ array.prototype.tosorted@1.1.4:
776
+ resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==}
777
+ engines: {node: '>= 0.4'}
778
+
779
+ arraybuffer.prototype.slice@1.0.4:
780
+ resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==}
781
+ engines: {node: '>= 0.4'}
782
+
783
+ ast-types-flow@0.0.8:
784
+ resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==}
785
+
786
+ async-function@1.0.0:
787
+ resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==}
788
+ engines: {node: '>= 0.4'}
789
+
790
+ available-typed-arrays@1.0.7:
791
+ resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
792
+ engines: {node: '>= 0.4'}
793
+
794
+ axe-core@4.11.0:
795
+ resolution: {integrity: sha512-ilYanEU8vxxBexpJd8cWM4ElSQq4QctCLKih0TSfjIfCQTeyH/6zVrmIJfLPrKTKJRbiG+cfnZbQIjAlJmF1jQ==}
796
+ engines: {node: '>=4'}
797
+
798
+ axobject-query@4.1.0:
799
+ resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
800
+ engines: {node: '>= 0.4'}
801
+
802
+ balanced-match@1.0.2:
803
+ resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
804
+
805
+ brace-expansion@1.1.12:
806
+ resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
807
+
808
+ brace-expansion@2.0.2:
809
+ resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
810
+
811
+ braces@3.0.3:
812
+ resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
813
+ engines: {node: '>=8'}
814
+
815
+ call-bind-apply-helpers@1.0.2:
816
+ resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
817
+ engines: {node: '>= 0.4'}
818
+
819
+ call-bind@1.0.8:
820
+ resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==}
821
+ engines: {node: '>= 0.4'}
822
+
823
+ call-bound@1.0.4:
824
+ resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==}
825
+ engines: {node: '>= 0.4'}
826
+
827
+ callsites@3.1.0:
828
+ resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
829
+ engines: {node: '>=6'}
830
+
831
+ caniuse-lite@1.0.30001751:
832
+ resolution: {integrity: sha512-A0QJhug0Ly64Ii3eIqHu5X51ebln3k4yTUkY1j8drqpWHVreg/VLijN48cZ1bYPiqOQuqpkIKnzr/Ul8V+p6Cw==}
833
+
834
+ chalk@4.1.2:
835
+ resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
836
+ engines: {node: '>=10'}
837
+
838
+ chownr@3.0.0:
839
+ resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==}
840
+ engines: {node: '>=18'}
841
+
842
+ class-variance-authority@0.7.1:
843
+ resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==}
844
+
845
+ client-only@0.0.1:
846
+ resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
847
+
848
+ clsx@2.1.1:
849
+ resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
850
+ engines: {node: '>=6'}
851
+
852
+ color-convert@2.0.1:
853
+ resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
854
+ engines: {node: '>=7.0.0'}
855
+
856
+ color-name@1.1.4:
857
+ resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
858
+
859
+ concat-map@0.0.1:
860
+ resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
861
+
862
+ cookie@1.0.2:
863
+ resolution: {integrity: sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==}
864
+ engines: {node: '>=18'}
865
+
866
+ create-require@1.1.1:
867
+ resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
868
+
869
+ cross-spawn@7.0.6:
870
+ resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
871
+ engines: {node: '>= 8'}
872
+
873
+ csstype@3.1.3:
874
+ resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
875
+
876
+ damerau-levenshtein@1.0.8:
877
+ resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
878
+
879
+ data-view-buffer@1.0.2:
880
+ resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==}
881
+ engines: {node: '>= 0.4'}
882
+
883
+ data-view-byte-length@1.0.2:
884
+ resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==}
885
+ engines: {node: '>= 0.4'}
886
+
887
+ data-view-byte-offset@1.0.1:
888
+ resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==}
889
+ engines: {node: '>= 0.4'}
890
+
891
+ debug@3.2.7:
892
+ resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
893
+ peerDependencies:
894
+ supports-color: '*'
895
+ peerDependenciesMeta:
896
+ supports-color:
897
+ optional: true
898
+
899
+ debug@4.4.3:
900
+ resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
901
+ engines: {node: '>=6.0'}
902
+ peerDependencies:
903
+ supports-color: '*'
904
+ peerDependenciesMeta:
905
+ supports-color:
906
+ optional: true
907
+
908
+ deep-is@0.1.4:
909
+ resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
910
+
911
+ define-data-property@1.1.4:
912
+ resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
913
+ engines: {node: '>= 0.4'}
914
+
915
+ define-properties@1.2.1:
916
+ resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
917
+ engines: {node: '>= 0.4'}
918
+
919
+ dequal@2.0.3:
920
+ resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
921
+ engines: {node: '>=6'}
922
+
923
+ detect-libc@2.1.2:
924
+ resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
925
+ engines: {node: '>=8'}
926
+
927
+ diff@4.0.2:
928
+ resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==}
929
+ engines: {node: '>=0.3.1'}
930
+
931
+ doctrine@2.1.0:
932
+ resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
933
+ engines: {node: '>=0.10.0'}
934
+
935
+ dunder-proto@1.0.1:
936
+ resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
937
+ engines: {node: '>= 0.4'}
938
+
939
+ emoji-regex@9.2.2:
940
+ resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
941
+
942
+ enhanced-resolve@5.18.3:
943
+ resolution: {integrity: sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==}
944
+ engines: {node: '>=10.13.0'}
945
+
946
+ es-abstract@1.24.0:
947
+ resolution: {integrity: sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==}
948
+ engines: {node: '>= 0.4'}
949
+
950
+ es-define-property@1.0.1:
951
+ resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
952
+ engines: {node: '>= 0.4'}
953
+
954
+ es-errors@1.3.0:
955
+ resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
956
+ engines: {node: '>= 0.4'}
957
+
958
+ es-iterator-helpers@1.2.1:
959
+ resolution: {integrity: sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==}
960
+ engines: {node: '>= 0.4'}
961
+
962
+ es-object-atoms@1.1.1:
963
+ resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
964
+ engines: {node: '>= 0.4'}
965
+
966
+ es-set-tostringtag@2.1.0:
967
+ resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
968
+ engines: {node: '>= 0.4'}
969
+
970
+ es-shim-unscopables@1.1.0:
971
+ resolution: {integrity: sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==}
972
+ engines: {node: '>= 0.4'}
973
+
974
+ es-to-primitive@1.3.0:
975
+ resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==}
976
+ engines: {node: '>= 0.4'}
977
+
978
+ escape-string-regexp@4.0.0:
979
+ resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
980
+ engines: {node: '>=10'}
981
+
982
+ eslint-config-next@15.4.4:
983
+ resolution: {integrity: sha512-sK/lWLUVF5om18O5w76Jt3F8uzu/LP5mVa6TprCMWkjWHUmByq80iHGHcdH7k1dLiJlj+DRIWf98d5piwRsSuA==}
984
+ peerDependencies:
985
+ eslint: ^7.23.0 || ^8.0.0 || ^9.0.0
986
+ typescript: '>=3.3.1'
987
+ peerDependenciesMeta:
988
+ typescript:
989
+ optional: true
990
+
991
+ eslint-import-resolver-node@0.3.9:
992
+ resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
993
+
994
+ eslint-import-resolver-typescript@3.10.1:
995
+ resolution: {integrity: sha512-A1rHYb06zjMGAxdLSkN2fXPBwuSaQ0iO5M/hdyS0Ajj1VBaRp0sPD3dn1FhME3c/JluGFbwSxyCfqdSbtQLAHQ==}
996
+ engines: {node: ^14.18.0 || >=16.0.0}
997
+ peerDependencies:
998
+ eslint: '*'
999
+ eslint-plugin-import: '*'
1000
+ eslint-plugin-import-x: '*'
1001
+ peerDependenciesMeta:
1002
+ eslint-plugin-import:
1003
+ optional: true
1004
+ eslint-plugin-import-x:
1005
+ optional: true
1006
+
1007
+ eslint-module-utils@2.12.1:
1008
+ resolution: {integrity: sha512-L8jSWTze7K2mTg0vos/RuLRS5soomksDPoJLXIslC7c8Wmut3bx7CPpJijDcBZtxQ5lrbUdM+s0OlNbz0DCDNw==}
1009
+ engines: {node: '>=4'}
1010
+ peerDependencies:
1011
+ '@typescript-eslint/parser': '*'
1012
+ eslint: '*'
1013
+ eslint-import-resolver-node: '*'
1014
+ eslint-import-resolver-typescript: '*'
1015
+ eslint-import-resolver-webpack: '*'
1016
+ peerDependenciesMeta:
1017
+ '@typescript-eslint/parser':
1018
+ optional: true
1019
+ eslint:
1020
+ optional: true
1021
+ eslint-import-resolver-node:
1022
+ optional: true
1023
+ eslint-import-resolver-typescript:
1024
+ optional: true
1025
+ eslint-import-resolver-webpack:
1026
+ optional: true
1027
+
1028
+ eslint-plugin-import@2.32.0:
1029
+ resolution: {integrity: sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==}
1030
+ engines: {node: '>=4'}
1031
+ peerDependencies:
1032
+ '@typescript-eslint/parser': '*'
1033
+ eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9
1034
+ peerDependenciesMeta:
1035
+ '@typescript-eslint/parser':
1036
+ optional: true
1037
+
1038
+ eslint-plugin-jsx-a11y@6.10.2:
1039
+ resolution: {integrity: sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==}
1040
+ engines: {node: '>=4.0'}
1041
+ peerDependencies:
1042
+ eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9
1043
+
1044
+ eslint-plugin-react-hooks@5.2.0:
1045
+ resolution: {integrity: sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==}
1046
+ engines: {node: '>=10'}
1047
+ peerDependencies:
1048
+ eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
1049
+
1050
+ eslint-plugin-react@7.37.5:
1051
+ resolution: {integrity: sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==}
1052
+ engines: {node: '>=4'}
1053
+ peerDependencies:
1054
+ eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
1055
+
1056
+ eslint-scope@8.4.0:
1057
+ resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==}
1058
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1059
+
1060
+ eslint-visitor-keys@3.4.3:
1061
+ resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
1062
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1063
+
1064
+ eslint-visitor-keys@4.2.1:
1065
+ resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
1066
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1067
+
1068
+ eslint@9.37.0:
1069
+ resolution: {integrity: sha512-XyLmROnACWqSxiGYArdef1fItQd47weqB7iwtfr9JHwRrqIXZdcFMvvEcL9xHCmL0SNsOvF0c42lWyM1U5dgig==}
1070
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1071
+ hasBin: true
1072
+ peerDependencies:
1073
+ jiti: '*'
1074
+ peerDependenciesMeta:
1075
+ jiti:
1076
+ optional: true
1077
+
1078
+ espree@10.4.0:
1079
+ resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==}
1080
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1081
+
1082
+ esquery@1.6.0:
1083
+ resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
1084
+ engines: {node: '>=0.10'}
1085
+
1086
+ esrecurse@4.3.0:
1087
+ resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
1088
+ engines: {node: '>=4.0'}
1089
+
1090
+ estraverse@5.3.0:
1091
+ resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
1092
+ engines: {node: '>=4.0'}
1093
+
1094
+ esutils@2.0.3:
1095
+ resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
1096
+ engines: {node: '>=0.10.0'}
1097
+
1098
+ fast-deep-equal@3.1.3:
1099
+ resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
1100
+
1101
+ fast-glob@3.3.1:
1102
+ resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==}
1103
+ engines: {node: '>=8.6.0'}
1104
+
1105
+ fast-glob@3.3.3:
1106
+ resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
1107
+ engines: {node: '>=8.6.0'}
1108
+
1109
+ fast-json-stable-stringify@2.1.0:
1110
+ resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
1111
+
1112
+ fast-levenshtein@2.0.6:
1113
+ resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
1114
+
1115
+ fast-sha256@1.3.0:
1116
+ resolution: {integrity: sha512-n11RGP/lrWEFI/bWdygLxhI+pVeo1ZYIVwvvPkW7azl/rOy+F3HYRZ2K5zeE9mmkhQppyv9sQFx0JM9UabnpPQ==}
1117
+
1118
+ fastq@1.19.1:
1119
+ resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==}
1120
+
1121
+ fdir@6.5.0:
1122
+ resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
1123
+ engines: {node: '>=12.0.0'}
1124
+ peerDependencies:
1125
+ picomatch: ^3 || ^4
1126
+ peerDependenciesMeta:
1127
+ picomatch:
1128
+ optional: true
1129
+
1130
+ file-entry-cache@8.0.0:
1131
+ resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
1132
+ engines: {node: '>=16.0.0'}
1133
+
1134
+ fill-range@7.1.1:
1135
+ resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
1136
+ engines: {node: '>=8'}
1137
+
1138
+ find-up@5.0.0:
1139
+ resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
1140
+ engines: {node: '>=10'}
1141
+
1142
+ flat-cache@4.0.1:
1143
+ resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
1144
+ engines: {node: '>=16'}
1145
+
1146
+ flatted@3.3.3:
1147
+ resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
1148
+
1149
+ for-each@0.3.5:
1150
+ resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==}
1151
+ engines: {node: '>= 0.4'}
1152
+
1153
+ function-bind@1.1.2:
1154
+ resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
1155
+
1156
+ function.prototype.name@1.1.8:
1157
+ resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==}
1158
+ engines: {node: '>= 0.4'}
1159
+
1160
+ functions-have-names@1.2.3:
1161
+ resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
1162
+
1163
+ generator-function@2.0.1:
1164
+ resolution: {integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==}
1165
+ engines: {node: '>= 0.4'}
1166
+
1167
+ get-intrinsic@1.3.0:
1168
+ resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
1169
+ engines: {node: '>= 0.4'}
1170
+
1171
+ get-proto@1.0.1:
1172
+ resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
1173
+ engines: {node: '>= 0.4'}
1174
+
1175
+ get-symbol-description@1.1.0:
1176
+ resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==}
1177
+ engines: {node: '>= 0.4'}
1178
+
1179
+ get-tsconfig@4.12.0:
1180
+ resolution: {integrity: sha512-LScr2aNr2FbjAjZh2C6X6BxRx1/x+aTDExct/xyq2XKbYOiG5c0aK7pMsSuyc0brz3ibr/lbQiHD9jzt4lccJw==}
1181
+
1182
+ glob-parent@5.1.2:
1183
+ resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
1184
+ engines: {node: '>= 6'}
1185
+
1186
+ glob-parent@6.0.2:
1187
+ resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
1188
+ engines: {node: '>=10.13.0'}
1189
+
1190
+ glob-to-regexp@0.4.1:
1191
+ resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
1192
+
1193
+ globals@14.0.0:
1194
+ resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
1195
+ engines: {node: '>=18'}
1196
+
1197
+ globalthis@1.0.4:
1198
+ resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
1199
+ engines: {node: '>= 0.4'}
1200
+
1201
+ gopd@1.2.0:
1202
+ resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
1203
+ engines: {node: '>= 0.4'}
1204
+
1205
+ graceful-fs@4.2.11:
1206
+ resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
1207
+
1208
+ graphemer@1.4.0:
1209
+ resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
1210
+
1211
+ has-bigints@1.1.0:
1212
+ resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==}
1213
+ engines: {node: '>= 0.4'}
1214
+
1215
+ has-flag@4.0.0:
1216
+ resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
1217
+ engines: {node: '>=8'}
1218
+
1219
+ has-property-descriptors@1.0.2:
1220
+ resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
1221
+
1222
+ has-proto@1.2.0:
1223
+ resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==}
1224
+ engines: {node: '>= 0.4'}
1225
+
1226
+ has-symbols@1.1.0:
1227
+ resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
1228
+ engines: {node: '>= 0.4'}
1229
+
1230
+ has-tostringtag@1.0.2:
1231
+ resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
1232
+ engines: {node: '>= 0.4'}
1233
+
1234
+ hasown@2.0.2:
1235
+ resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
1236
+ engines: {node: '>= 0.4'}
1237
+
1238
+ ignore@5.3.2:
1239
+ resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
1240
+ engines: {node: '>= 4'}
1241
+
1242
+ ignore@7.0.5:
1243
+ resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
1244
+ engines: {node: '>= 4'}
1245
+
1246
+ import-fresh@3.3.1:
1247
+ resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
1248
+ engines: {node: '>=6'}
1249
+
1250
+ imurmurhash@0.1.4:
1251
+ resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
1252
+ engines: {node: '>=0.8.19'}
1253
+
1254
+ internal-slot@1.1.0:
1255
+ resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==}
1256
+ engines: {node: '>= 0.4'}
1257
+
1258
+ is-array-buffer@3.0.5:
1259
+ resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==}
1260
+ engines: {node: '>= 0.4'}
1261
+
1262
+ is-async-function@2.1.1:
1263
+ resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==}
1264
+ engines: {node: '>= 0.4'}
1265
+
1266
+ is-bigint@1.1.0:
1267
+ resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==}
1268
+ engines: {node: '>= 0.4'}
1269
+
1270
+ is-boolean-object@1.2.2:
1271
+ resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==}
1272
+ engines: {node: '>= 0.4'}
1273
+
1274
+ is-bun-module@2.0.0:
1275
+ resolution: {integrity: sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==}
1276
+
1277
+ is-callable@1.2.7:
1278
+ resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
1279
+ engines: {node: '>= 0.4'}
1280
+
1281
+ is-core-module@2.16.1:
1282
+ resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
1283
+ engines: {node: '>= 0.4'}
1284
+
1285
+ is-data-view@1.0.2:
1286
+ resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==}
1287
+ engines: {node: '>= 0.4'}
1288
+
1289
+ is-date-object@1.1.0:
1290
+ resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==}
1291
+ engines: {node: '>= 0.4'}
1292
+
1293
+ is-extglob@2.1.1:
1294
+ resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
1295
+ engines: {node: '>=0.10.0'}
1296
+
1297
+ is-finalizationregistry@1.1.1:
1298
+ resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==}
1299
+ engines: {node: '>= 0.4'}
1300
+
1301
+ is-generator-function@1.1.2:
1302
+ resolution: {integrity: sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==}
1303
+ engines: {node: '>= 0.4'}
1304
+
1305
+ is-glob@4.0.3:
1306
+ resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
1307
+ engines: {node: '>=0.10.0'}
1308
+
1309
+ is-map@2.0.3:
1310
+ resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
1311
+ engines: {node: '>= 0.4'}
1312
+
1313
+ is-negative-zero@2.0.3:
1314
+ resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
1315
+ engines: {node: '>= 0.4'}
1316
+
1317
+ is-number-object@1.1.1:
1318
+ resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==}
1319
+ engines: {node: '>= 0.4'}
1320
+
1321
+ is-number@7.0.0:
1322
+ resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
1323
+ engines: {node: '>=0.12.0'}
1324
+
1325
+ is-regex@1.2.1:
1326
+ resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==}
1327
+ engines: {node: '>= 0.4'}
1328
+
1329
+ is-set@2.0.3:
1330
+ resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
1331
+ engines: {node: '>= 0.4'}
1332
+
1333
+ is-shared-array-buffer@1.0.4:
1334
+ resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==}
1335
+ engines: {node: '>= 0.4'}
1336
+
1337
+ is-string@1.1.1:
1338
+ resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==}
1339
+ engines: {node: '>= 0.4'}
1340
+
1341
+ is-symbol@1.1.1:
1342
+ resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==}
1343
+ engines: {node: '>= 0.4'}
1344
+
1345
+ is-typed-array@1.1.15:
1346
+ resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==}
1347
+ engines: {node: '>= 0.4'}
1348
+
1349
+ is-weakmap@2.0.2:
1350
+ resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
1351
+ engines: {node: '>= 0.4'}
1352
+
1353
+ is-weakref@1.1.1:
1354
+ resolution: {integrity: sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==}
1355
+ engines: {node: '>= 0.4'}
1356
+
1357
+ is-weakset@2.0.4:
1358
+ resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==}
1359
+ engines: {node: '>= 0.4'}
1360
+
1361
+ isarray@2.0.5:
1362
+ resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
1363
+
1364
+ isexe@2.0.0:
1365
+ resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
1366
+
1367
+ iterator.prototype@1.1.5:
1368
+ resolution: {integrity: sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==}
1369
+ engines: {node: '>= 0.4'}
1370
+
1371
+ jiti@2.6.1:
1372
+ resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==}
1373
+ hasBin: true
1374
+
1375
+ js-cookie@3.0.5:
1376
+ resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==}
1377
+ engines: {node: '>=14'}
1378
+
1379
+ js-tokens@4.0.0:
1380
+ resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
1381
+
1382
+ js-yaml@4.1.0:
1383
+ resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
1384
+ hasBin: true
1385
+
1386
+ json-buffer@3.0.1:
1387
+ resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
1388
+
1389
+ json-schema-traverse@0.4.1:
1390
+ resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
1391
+
1392
+ json-stable-stringify-without-jsonify@1.0.1:
1393
+ resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
1394
+
1395
+ json5@1.0.2:
1396
+ resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
1397
+ hasBin: true
1398
+
1399
+ jsx-ast-utils@3.3.5:
1400
+ resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==}
1401
+ engines: {node: '>=4.0'}
1402
+
1403
+ keyv@4.5.4:
1404
+ resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
1405
+
1406
+ language-subtag-registry@0.3.23:
1407
+ resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==}
1408
+
1409
+ language-tags@1.0.9:
1410
+ resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==}
1411
+ engines: {node: '>=0.10'}
1412
+
1413
+ levn@0.4.1:
1414
+ resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
1415
+ engines: {node: '>= 0.8.0'}
1416
+
1417
+ lightningcss-darwin-arm64@1.30.1:
1418
+ resolution: {integrity: sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ==}
1419
+ engines: {node: '>= 12.0.0'}
1420
+ cpu: [arm64]
1421
+ os: [darwin]
1422
+
1423
+ lightningcss-darwin-x64@1.30.1:
1424
+ resolution: {integrity: sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA==}
1425
+ engines: {node: '>= 12.0.0'}
1426
+ cpu: [x64]
1427
+ os: [darwin]
1428
+
1429
+ lightningcss-freebsd-x64@1.30.1:
1430
+ resolution: {integrity: sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig==}
1431
+ engines: {node: '>= 12.0.0'}
1432
+ cpu: [x64]
1433
+ os: [freebsd]
1434
+
1435
+ lightningcss-linux-arm-gnueabihf@1.30.1:
1436
+ resolution: {integrity: sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q==}
1437
+ engines: {node: '>= 12.0.0'}
1438
+ cpu: [arm]
1439
+ os: [linux]
1440
+
1441
+ lightningcss-linux-arm64-gnu@1.30.1:
1442
+ resolution: {integrity: sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw==}
1443
+ engines: {node: '>= 12.0.0'}
1444
+ cpu: [arm64]
1445
+ os: [linux]
1446
+
1447
+ lightningcss-linux-arm64-musl@1.30.1:
1448
+ resolution: {integrity: sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==}
1449
+ engines: {node: '>= 12.0.0'}
1450
+ cpu: [arm64]
1451
+ os: [linux]
1452
+
1453
+ lightningcss-linux-x64-gnu@1.30.1:
1454
+ resolution: {integrity: sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==}
1455
+ engines: {node: '>= 12.0.0'}
1456
+ cpu: [x64]
1457
+ os: [linux]
1458
+
1459
+ lightningcss-linux-x64-musl@1.30.1:
1460
+ resolution: {integrity: sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==}
1461
+ engines: {node: '>= 12.0.0'}
1462
+ cpu: [x64]
1463
+ os: [linux]
1464
+
1465
+ lightningcss-win32-arm64-msvc@1.30.1:
1466
+ resolution: {integrity: sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==}
1467
+ engines: {node: '>= 12.0.0'}
1468
+ cpu: [arm64]
1469
+ os: [win32]
1470
+
1471
+ lightningcss-win32-x64-msvc@1.30.1:
1472
+ resolution: {integrity: sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg==}
1473
+ engines: {node: '>= 12.0.0'}
1474
+ cpu: [x64]
1475
+ os: [win32]
1476
+
1477
+ lightningcss@1.30.1:
1478
+ resolution: {integrity: sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==}
1479
+ engines: {node: '>= 12.0.0'}
1480
+
1481
+ locate-path@6.0.0:
1482
+ resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
1483
+ engines: {node: '>=10'}
1484
+
1485
+ lodash.merge@4.6.2:
1486
+ resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
1487
+
1488
+ loose-envify@1.4.0:
1489
+ resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
1490
+ hasBin: true
1491
+
1492
+ lucide-react@0.527.0:
1493
+ resolution: {integrity: sha512-tyqW8gfeeDfpBjZpQ2vv1S6n9OzvkrDcs6pyLJLvB3eyHoz8BNkkR7WbYePlq6ZbNmFA911YJlbTtWkEdvXGgA==}
1494
+ peerDependencies:
1495
+ react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0
1496
+
1497
+ magic-string@0.30.19:
1498
+ resolution: {integrity: sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==}
1499
+
1500
+ make-error@1.3.6:
1501
+ resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
1502
+
1503
+ math-intrinsics@1.1.0:
1504
+ resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
1505
+ engines: {node: '>= 0.4'}
1506
+
1507
+ merge2@1.4.1:
1508
+ resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
1509
+ engines: {node: '>= 8'}
1510
+
1511
+ micromatch@4.0.8:
1512
+ resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
1513
+ engines: {node: '>=8.6'}
1514
+
1515
+ minimatch@3.1.2:
1516
+ resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
1517
+
1518
+ minimatch@9.0.5:
1519
+ resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
1520
+ engines: {node: '>=16 || 14 >=14.17'}
1521
+
1522
+ minimist@1.2.8:
1523
+ resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
1524
+
1525
+ minipass@7.1.2:
1526
+ resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
1527
+ engines: {node: '>=16 || 14 >=14.17'}
1528
+
1529
+ minizlib@3.1.0:
1530
+ resolution: {integrity: sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==}
1531
+ engines: {node: '>= 18'}
1532
+
1533
+ ms@2.1.3:
1534
+ resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
1535
+
1536
+ nanoid@3.3.11:
1537
+ resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
1538
+ engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
1539
+ hasBin: true
1540
+
1541
+ napi-postinstall@0.3.4:
1542
+ resolution: {integrity: sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==}
1543
+ engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
1544
+ hasBin: true
1545
+
1546
+ natural-compare@1.4.0:
1547
+ resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
1548
+
1549
+ next@15.4.4:
1550
+ resolution: {integrity: sha512-kNcubvJjOL9yUOfwtZF3HfDhuhp+kVD+FM2A6Tyua1eI/xfmY4r/8ZS913MMz+oWKDlbps/dQOWdDricuIkXLw==}
1551
+ engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0}
1552
+ hasBin: true
1553
+ peerDependencies:
1554
+ '@opentelemetry/api': ^1.1.0
1555
+ '@playwright/test': ^1.51.1
1556
+ babel-plugin-react-compiler: '*'
1557
+ react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
1558
+ react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
1559
+ sass: ^1.3.0
1560
+ peerDependenciesMeta:
1561
+ '@opentelemetry/api':
1562
+ optional: true
1563
+ '@playwright/test':
1564
+ optional: true
1565
+ babel-plugin-react-compiler:
1566
+ optional: true
1567
+ sass:
1568
+ optional: true
1569
+
1570
+ object-assign@4.1.1:
1571
+ resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
1572
+ engines: {node: '>=0.10.0'}
1573
+
1574
+ object-inspect@1.13.4:
1575
+ resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
1576
+ engines: {node: '>= 0.4'}
1577
+
1578
+ object-keys@1.1.1:
1579
+ resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
1580
+ engines: {node: '>= 0.4'}
1581
+
1582
+ object.assign@4.1.7:
1583
+ resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==}
1584
+ engines: {node: '>= 0.4'}
1585
+
1586
+ object.entries@1.1.9:
1587
+ resolution: {integrity: sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==}
1588
+ engines: {node: '>= 0.4'}
1589
+
1590
+ object.fromentries@2.0.8:
1591
+ resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==}
1592
+ engines: {node: '>= 0.4'}
1593
+
1594
+ object.groupby@1.0.3:
1595
+ resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==}
1596
+ engines: {node: '>= 0.4'}
1597
+
1598
+ object.values@1.2.1:
1599
+ resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==}
1600
+ engines: {node: '>= 0.4'}
1601
+
1602
+ optionator@0.9.4:
1603
+ resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
1604
+ engines: {node: '>= 0.8.0'}
1605
+
1606
+ own-keys@1.0.1:
1607
+ resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==}
1608
+ engines: {node: '>= 0.4'}
1609
+
1610
+ p-limit@3.1.0:
1611
+ resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
1612
+ engines: {node: '>=10'}
1613
+
1614
+ p-locate@5.0.0:
1615
+ resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
1616
+ engines: {node: '>=10'}
1617
+
1618
+ parent-module@1.0.1:
1619
+ resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
1620
+ engines: {node: '>=6'}
1621
+
1622
+ path-exists@4.0.0:
1623
+ resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
1624
+ engines: {node: '>=8'}
1625
+
1626
+ path-key@3.1.1:
1627
+ resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
1628
+ engines: {node: '>=8'}
1629
+
1630
+ path-parse@1.0.7:
1631
+ resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
1632
+
1633
+ picocolors@1.1.1:
1634
+ resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
1635
+
1636
+ picomatch@2.3.1:
1637
+ resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
1638
+ engines: {node: '>=8.6'}
1639
+
1640
+ picomatch@4.0.3:
1641
+ resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
1642
+ engines: {node: '>=12'}
1643
+
1644
+ possible-typed-array-names@1.1.0:
1645
+ resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==}
1646
+ engines: {node: '>= 0.4'}
1647
+
1648
+ postcss@8.4.31:
1649
+ resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
1650
+ engines: {node: ^10 || ^12 || >=14}
1651
+
1652
+ postcss@8.5.6:
1653
+ resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
1654
+ engines: {node: ^10 || ^12 || >=14}
1655
+
1656
+ prelude-ls@1.2.1:
1657
+ resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
1658
+ engines: {node: '>= 0.8.0'}
1659
+
1660
+ prop-types@15.8.1:
1661
+ resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
1662
+
1663
+ punycode@2.3.1:
1664
+ resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
1665
+ engines: {node: '>=6'}
1666
+
1667
+ queue-microtask@1.2.3:
1668
+ resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
1669
+
1670
+ react-dom@19.1.0:
1671
+ resolution: {integrity: sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g==}
1672
+ peerDependencies:
1673
+ react: ^19.1.0
1674
+
1675
+ react-is@16.13.1:
1676
+ resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
1677
+
1678
+ react@19.1.0:
1679
+ resolution: {integrity: sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==}
1680
+ engines: {node: '>=0.10.0'}
1681
+
1682
+ reflect.getprototypeof@1.0.10:
1683
+ resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==}
1684
+ engines: {node: '>= 0.4'}
1685
+
1686
+ regexp.prototype.flags@1.5.4:
1687
+ resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==}
1688
+ engines: {node: '>= 0.4'}
1689
+
1690
+ resolve-from@4.0.0:
1691
+ resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
1692
+ engines: {node: '>=4'}
1693
+
1694
+ resolve-pkg-maps@1.0.0:
1695
+ resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
1696
+
1697
+ resolve@1.22.10:
1698
+ resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
1699
+ engines: {node: '>= 0.4'}
1700
+ hasBin: true
1701
+
1702
+ resolve@2.0.0-next.5:
1703
+ resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
1704
+ hasBin: true
1705
+
1706
+ reusify@1.1.0:
1707
+ resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
1708
+ engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
1709
+
1710
+ run-parallel@1.2.0:
1711
+ resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
1712
+
1713
+ safe-array-concat@1.1.3:
1714
+ resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==}
1715
+ engines: {node: '>=0.4'}
1716
+
1717
+ safe-push-apply@1.0.0:
1718
+ resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==}
1719
+ engines: {node: '>= 0.4'}
1720
+
1721
+ safe-regex-test@1.1.0:
1722
+ resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==}
1723
+ engines: {node: '>= 0.4'}
1724
+
1725
+ scheduler@0.26.0:
1726
+ resolution: {integrity: sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==}
1727
+
1728
+ semver@6.3.1:
1729
+ resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
1730
+ hasBin: true
1731
+
1732
+ semver@7.7.3:
1733
+ resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
1734
+ engines: {node: '>=10'}
1735
+ hasBin: true
1736
+
1737
+ server-only@0.0.1:
1738
+ resolution: {integrity: sha512-qepMx2JxAa5jjfzxG79yPPq+8BuFToHd1hm7kI+Z4zAq1ftQiP7HcxMhDDItrbtwVeLg/cY2JnKnrcFkmiswNA==}
1739
+
1740
+ set-function-length@1.2.2:
1741
+ resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
1742
+ engines: {node: '>= 0.4'}
1743
+
1744
+ set-function-name@2.0.2:
1745
+ resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
1746
+ engines: {node: '>= 0.4'}
1747
+
1748
+ set-proto@1.0.0:
1749
+ resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==}
1750
+ engines: {node: '>= 0.4'}
1751
+
1752
+ sharp@0.34.4:
1753
+ resolution: {integrity: sha512-FUH39xp3SBPnxWvd5iib1X8XY7J0K0X7d93sie9CJg2PO8/7gmg89Nve6OjItK53/MlAushNNxteBYfM6DEuoA==}
1754
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
1755
+
1756
+ shebang-command@2.0.0:
1757
+ resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
1758
+ engines: {node: '>=8'}
1759
+
1760
+ shebang-regex@3.0.0:
1761
+ resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
1762
+ engines: {node: '>=8'}
1763
+
1764
+ side-channel-list@1.0.0:
1765
+ resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
1766
+ engines: {node: '>= 0.4'}
1767
+
1768
+ side-channel-map@1.0.1:
1769
+ resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
1770
+ engines: {node: '>= 0.4'}
1771
+
1772
+ side-channel-weakmap@1.0.2:
1773
+ resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
1774
+ engines: {node: '>= 0.4'}
1775
+
1776
+ side-channel@1.1.0:
1777
+ resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
1778
+ engines: {node: '>= 0.4'}
1779
+
1780
+ source-map-js@1.2.1:
1781
+ resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
1782
+ engines: {node: '>=0.10.0'}
1783
+
1784
+ stable-hash@0.0.5:
1785
+ resolution: {integrity: sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==}
1786
+
1787
+ standardwebhooks@1.0.0:
1788
+ resolution: {integrity: sha512-BbHGOQK9olHPMvQNHWul6MYlrRTAOKn03rOe4A8O3CLWhNf4YHBqq2HJKKC+sfqpxiBY52pNeesD6jIiLDz8jg==}
1789
+
1790
+ std-env@3.10.0:
1791
+ resolution: {integrity: sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==}
1792
+
1793
+ stop-iteration-iterator@1.1.0:
1794
+ resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==}
1795
+ engines: {node: '>= 0.4'}
1796
+
1797
+ string.prototype.includes@2.0.1:
1798
+ resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==}
1799
+ engines: {node: '>= 0.4'}
1800
+
1801
+ string.prototype.matchall@4.0.12:
1802
+ resolution: {integrity: sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==}
1803
+ engines: {node: '>= 0.4'}
1804
+
1805
+ string.prototype.repeat@1.0.0:
1806
+ resolution: {integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==}
1807
+
1808
+ string.prototype.trim@1.2.10:
1809
+ resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==}
1810
+ engines: {node: '>= 0.4'}
1811
+
1812
+ string.prototype.trimend@1.0.9:
1813
+ resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==}
1814
+ engines: {node: '>= 0.4'}
1815
+
1816
+ string.prototype.trimstart@1.0.8:
1817
+ resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
1818
+ engines: {node: '>= 0.4'}
1819
+
1820
+ strip-bom@3.0.0:
1821
+ resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
1822
+ engines: {node: '>=4'}
1823
+
1824
+ strip-json-comments@3.1.1:
1825
+ resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
1826
+ engines: {node: '>=8'}
1827
+
1828
+ styled-jsx@5.1.6:
1829
+ resolution: {integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==}
1830
+ engines: {node: '>= 12.0.0'}
1831
+ peerDependencies:
1832
+ '@babel/core': '*'
1833
+ babel-plugin-macros: '*'
1834
+ react: '>= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0'
1835
+ peerDependenciesMeta:
1836
+ '@babel/core':
1837
+ optional: true
1838
+ babel-plugin-macros:
1839
+ optional: true
1840
+
1841
+ supports-color@7.2.0:
1842
+ resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
1843
+ engines: {node: '>=8'}
1844
+
1845
+ supports-preserve-symlinks-flag@1.0.0:
1846
+ resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
1847
+ engines: {node: '>= 0.4'}
1848
+
1849
+ swr@2.3.4:
1850
+ resolution: {integrity: sha512-bYd2lrhc+VarcpkgWclcUi92wYCpOgMws9Sd1hG1ntAu0NEy+14CbotuFjshBU2kt9rYj9TSmDcybpxpeTU1fg==}
1851
+ peerDependencies:
1852
+ react: ^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
1853
+
1854
+ tailwind-merge@3.3.1:
1855
+ resolution: {integrity: sha512-gBXpgUm/3rp1lMZZrM/w7D8GKqshif0zAymAhbCyIt8KMe+0v9DQ7cdYLR4FHH/cKpdTXb+A/tKKU3eolfsI+g==}
1856
+
1857
+ tailwindcss@4.1.14:
1858
+ resolution: {integrity: sha512-b7pCxjGO98LnxVkKjaZSDeNuljC4ueKUddjENJOADtubtdo8llTaJy7HwBMeLNSSo2N5QIAgklslK1+Ir8r6CA==}
1859
+
1860
+ tapable@2.3.0:
1861
+ resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
1862
+ engines: {node: '>=6'}
1863
+
1864
+ tar@7.5.1:
1865
+ resolution: {integrity: sha512-nlGpxf+hv0v7GkWBK2V9spgactGOp0qvfWRxUMjqHyzrt3SgwE48DIv/FhqPHJYLHpgW1opq3nERbz5Anq7n1g==}
1866
+ engines: {node: '>=18'}
1867
+
1868
+ tinyglobby@0.2.15:
1869
+ resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
1870
+ engines: {node: '>=12.0.0'}
1871
+
1872
+ to-regex-range@5.0.1:
1873
+ resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
1874
+ engines: {node: '>=8.0'}
1875
+
1876
+ ts-api-utils@2.1.0:
1877
+ resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==}
1878
+ engines: {node: '>=18.12'}
1879
+ peerDependencies:
1880
+ typescript: '>=4.8.4'
1881
+
1882
+ ts-node@10.9.2:
1883
+ resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==}
1884
+ hasBin: true
1885
+ peerDependencies:
1886
+ '@swc/core': '>=1.2.50'
1887
+ '@swc/wasm': '>=1.2.50'
1888
+ '@types/node': '*'
1889
+ typescript: '>=2.7'
1890
+ peerDependenciesMeta:
1891
+ '@swc/core':
1892
+ optional: true
1893
+ '@swc/wasm':
1894
+ optional: true
1895
+
1896
+ tsconfig-paths@3.15.0:
1897
+ resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
1898
+
1899
+ tslib@2.8.1:
1900
+ resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
1901
+
1902
+ tw-animate-css@1.4.0:
1903
+ resolution: {integrity: sha512-7bziOlRqH0hJx80h/3mbicLW7o8qLsH5+RaLR2t+OHM3D0JlWGODQKQ4cxbK7WlvmUxpcj6Kgu6EKqjrGFe3QQ==}
1904
+
1905
+ type-check@0.4.0:
1906
+ resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
1907
+ engines: {node: '>= 0.8.0'}
1908
+
1909
+ typed-array-buffer@1.0.3:
1910
+ resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==}
1911
+ engines: {node: '>= 0.4'}
1912
+
1913
+ typed-array-byte-length@1.0.3:
1914
+ resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==}
1915
+ engines: {node: '>= 0.4'}
1916
+
1917
+ typed-array-byte-offset@1.0.4:
1918
+ resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==}
1919
+ engines: {node: '>= 0.4'}
1920
+
1921
+ typed-array-length@1.0.7:
1922
+ resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==}
1923
+ engines: {node: '>= 0.4'}
1924
+
1925
+ typescript@5.9.3:
1926
+ resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
1927
+ engines: {node: '>=14.17'}
1928
+ hasBin: true
1929
+
1930
+ unbox-primitive@1.1.0:
1931
+ resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==}
1932
+ engines: {node: '>= 0.4'}
1933
+
1934
+ undici-types@6.21.0:
1935
+ resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
1936
+
1937
+ unrs-resolver@1.11.1:
1938
+ resolution: {integrity: sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==}
1939
+
1940
+ uri-js@4.4.1:
1941
+ resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
1942
+
1943
+ use-sync-external-store@1.6.0:
1944
+ resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==}
1945
+ peerDependencies:
1946
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
1947
+
1948
+ v8-compile-cache-lib@3.0.1:
1949
+ resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
1950
+
1951
+ which-boxed-primitive@1.1.1:
1952
+ resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==}
1953
+ engines: {node: '>= 0.4'}
1954
+
1955
+ which-builtin-type@1.2.1:
1956
+ resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==}
1957
+ engines: {node: '>= 0.4'}
1958
+
1959
+ which-collection@1.0.2:
1960
+ resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
1961
+ engines: {node: '>= 0.4'}
1962
+
1963
+ which-typed-array@1.1.19:
1964
+ resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==}
1965
+ engines: {node: '>= 0.4'}
1966
+
1967
+ which@2.0.2:
1968
+ resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
1969
+ engines: {node: '>= 8'}
1970
+ hasBin: true
1971
+
1972
+ word-wrap@1.2.5:
1973
+ resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
1974
+ engines: {node: '>=0.10.0'}
1975
+
1976
+ yallist@5.0.0:
1977
+ resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==}
1978
+ engines: {node: '>=18'}
1979
+
1980
+ yn@3.1.1:
1981
+ resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==}
1982
+ engines: {node: '>=6'}
1983
+
1984
+ yocto-queue@0.1.0:
1985
+ resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
1986
+ engines: {node: '>=10'}
1987
+
1988
+ snapshots:
1989
+
1990
+ '@alloc/quick-lru@5.2.0': {}
1991
+
1992
+ '@clerk/backend@2.18.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
1993
+ dependencies:
1994
+ '@clerk/shared': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
1995
+ '@clerk/types': 4.94.0
1996
+ cookie: 1.0.2
1997
+ standardwebhooks: 1.0.0
1998
+ tslib: 2.8.1
1999
+ transitivePeerDependencies:
2000
+ - react
2001
+ - react-dom
2002
+
2003
+ '@clerk/clerk-react@5.53.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
2004
+ dependencies:
2005
+ '@clerk/shared': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
2006
+ '@clerk/types': 4.94.0
2007
+ react: 19.1.0
2008
+ react-dom: 19.1.0(react@19.1.0)
2009
+ tslib: 2.8.1
2010
+
2011
+ '@clerk/nextjs@6.33.6(next@15.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
2012
+ dependencies:
2013
+ '@clerk/backend': 2.18.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
2014
+ '@clerk/clerk-react': 5.53.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
2015
+ '@clerk/shared': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
2016
+ '@clerk/types': 4.94.0
2017
+ next: 15.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
2018
+ react: 19.1.0
2019
+ react-dom: 19.1.0(react@19.1.0)
2020
+ server-only: 0.0.1
2021
+ tslib: 2.8.1
2022
+
2023
+ '@clerk/shared@3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
2024
+ dependencies:
2025
+ '@clerk/types': 4.94.0
2026
+ dequal: 2.0.3
2027
+ glob-to-regexp: 0.4.1
2028
+ js-cookie: 3.0.5
2029
+ std-env: 3.10.0
2030
+ swr: 2.3.4(react@19.1.0)
2031
+ optionalDependencies:
2032
+ react: 19.1.0
2033
+ react-dom: 19.1.0(react@19.1.0)
2034
+
2035
+ '@clerk/types@4.94.0':
2036
+ dependencies:
2037
+ csstype: 3.1.3
2038
+
2039
+ '@cspotcode/source-map-support@0.8.1':
2040
+ dependencies:
2041
+ '@jridgewell/trace-mapping': 0.3.9
2042
+
2043
+ '@emnapi/core@1.5.0':
2044
+ dependencies:
2045
+ '@emnapi/wasi-threads': 1.1.0
2046
+ tslib: 2.8.1
2047
+ optional: true
2048
+
2049
+ '@emnapi/runtime@1.5.0':
2050
+ dependencies:
2051
+ tslib: 2.8.1
2052
+ optional: true
2053
+
2054
+ '@emnapi/wasi-threads@1.1.0':
2055
+ dependencies:
2056
+ tslib: 2.8.1
2057
+ optional: true
2058
+
2059
+ '@eslint-community/eslint-utils@4.9.0(eslint@9.37.0(jiti@2.6.1))':
2060
+ dependencies:
2061
+ eslint: 9.37.0(jiti@2.6.1)
2062
+ eslint-visitor-keys: 3.4.3
2063
+
2064
+ '@eslint-community/regexpp@4.12.1': {}
2065
+
2066
+ '@eslint/config-array@0.21.0':
2067
+ dependencies:
2068
+ '@eslint/object-schema': 2.1.6
2069
+ debug: 4.4.3
2070
+ minimatch: 3.1.2
2071
+ transitivePeerDependencies:
2072
+ - supports-color
2073
+
2074
+ '@eslint/config-helpers@0.4.0':
2075
+ dependencies:
2076
+ '@eslint/core': 0.16.0
2077
+
2078
+ '@eslint/core@0.16.0':
2079
+ dependencies:
2080
+ '@types/json-schema': 7.0.15
2081
+
2082
+ '@eslint/eslintrc@3.3.1':
2083
+ dependencies:
2084
+ ajv: 6.12.6
2085
+ debug: 4.4.3
2086
+ espree: 10.4.0
2087
+ globals: 14.0.0
2088
+ ignore: 5.3.2
2089
+ import-fresh: 3.3.1
2090
+ js-yaml: 4.1.0
2091
+ minimatch: 3.1.2
2092
+ strip-json-comments: 3.1.1
2093
+ transitivePeerDependencies:
2094
+ - supports-color
2095
+
2096
+ '@eslint/js@9.37.0': {}
2097
+
2098
+ '@eslint/object-schema@2.1.6': {}
2099
+
2100
+ '@eslint/plugin-kit@0.4.0':
2101
+ dependencies:
2102
+ '@eslint/core': 0.16.0
2103
+ levn: 0.4.1
2104
+
2105
+ '@humanfs/core@0.19.1': {}
2106
+
2107
+ '@humanfs/node@0.16.7':
2108
+ dependencies:
2109
+ '@humanfs/core': 0.19.1
2110
+ '@humanwhocodes/retry': 0.4.3
2111
+
2112
+ '@humanwhocodes/module-importer@1.0.1': {}
2113
+
2114
+ '@humanwhocodes/retry@0.4.3': {}
2115
+
2116
+ '@img/colour@1.0.0':
2117
+ optional: true
2118
+
2119
+ '@img/sharp-darwin-arm64@0.34.4':
2120
+ optionalDependencies:
2121
+ '@img/sharp-libvips-darwin-arm64': 1.2.3
2122
+ optional: true
2123
+
2124
+ '@img/sharp-darwin-x64@0.34.4':
2125
+ optionalDependencies:
2126
+ '@img/sharp-libvips-darwin-x64': 1.2.3
2127
+ optional: true
2128
+
2129
+ '@img/sharp-libvips-darwin-arm64@1.2.3':
2130
+ optional: true
2131
+
2132
+ '@img/sharp-libvips-darwin-x64@1.2.3':
2133
+ optional: true
2134
+
2135
+ '@img/sharp-libvips-linux-arm64@1.2.3':
2136
+ optional: true
2137
+
2138
+ '@img/sharp-libvips-linux-arm@1.2.3':
2139
+ optional: true
2140
+
2141
+ '@img/sharp-libvips-linux-ppc64@1.2.3':
2142
+ optional: true
2143
+
2144
+ '@img/sharp-libvips-linux-s390x@1.2.3':
2145
+ optional: true
2146
+
2147
+ '@img/sharp-libvips-linux-x64@1.2.3':
2148
+ optional: true
2149
+
2150
+ '@img/sharp-libvips-linuxmusl-arm64@1.2.3':
2151
+ optional: true
2152
+
2153
+ '@img/sharp-libvips-linuxmusl-x64@1.2.3':
2154
+ optional: true
2155
+
2156
+ '@img/sharp-linux-arm64@0.34.4':
2157
+ optionalDependencies:
2158
+ '@img/sharp-libvips-linux-arm64': 1.2.3
2159
+ optional: true
2160
+
2161
+ '@img/sharp-linux-arm@0.34.4':
2162
+ optionalDependencies:
2163
+ '@img/sharp-libvips-linux-arm': 1.2.3
2164
+ optional: true
2165
+
2166
+ '@img/sharp-linux-ppc64@0.34.4':
2167
+ optionalDependencies:
2168
+ '@img/sharp-libvips-linux-ppc64': 1.2.3
2169
+ optional: true
2170
+
2171
+ '@img/sharp-linux-s390x@0.34.4':
2172
+ optionalDependencies:
2173
+ '@img/sharp-libvips-linux-s390x': 1.2.3
2174
+ optional: true
2175
+
2176
+ '@img/sharp-linux-x64@0.34.4':
2177
+ optionalDependencies:
2178
+ '@img/sharp-libvips-linux-x64': 1.2.3
2179
+ optional: true
2180
+
2181
+ '@img/sharp-linuxmusl-arm64@0.34.4':
2182
+ optionalDependencies:
2183
+ '@img/sharp-libvips-linuxmusl-arm64': 1.2.3
2184
+ optional: true
2185
+
2186
+ '@img/sharp-linuxmusl-x64@0.34.4':
2187
+ optionalDependencies:
2188
+ '@img/sharp-libvips-linuxmusl-x64': 1.2.3
2189
+ optional: true
2190
+
2191
+ '@img/sharp-wasm32@0.34.4':
2192
+ dependencies:
2193
+ '@emnapi/runtime': 1.5.0
2194
+ optional: true
2195
+
2196
+ '@img/sharp-win32-arm64@0.34.4':
2197
+ optional: true
2198
+
2199
+ '@img/sharp-win32-ia32@0.34.4':
2200
+ optional: true
2201
+
2202
+ '@img/sharp-win32-x64@0.34.4':
2203
+ optional: true
2204
+
2205
+ '@isaacs/fs-minipass@4.0.1':
2206
+ dependencies:
2207
+ minipass: 7.1.2
2208
+
2209
+ '@jridgewell/gen-mapping@0.3.13':
2210
+ dependencies:
2211
+ '@jridgewell/sourcemap-codec': 1.5.5
2212
+ '@jridgewell/trace-mapping': 0.3.31
2213
+
2214
+ '@jridgewell/remapping@2.3.5':
2215
+ dependencies:
2216
+ '@jridgewell/gen-mapping': 0.3.13
2217
+ '@jridgewell/trace-mapping': 0.3.31
2218
+
2219
+ '@jridgewell/resolve-uri@3.1.2': {}
2220
+
2221
+ '@jridgewell/sourcemap-codec@1.5.5': {}
2222
+
2223
+ '@jridgewell/trace-mapping@0.3.31':
2224
+ dependencies:
2225
+ '@jridgewell/resolve-uri': 3.1.2
2226
+ '@jridgewell/sourcemap-codec': 1.5.5
2227
+
2228
+ '@jridgewell/trace-mapping@0.3.9':
2229
+ dependencies:
2230
+ '@jridgewell/resolve-uri': 3.1.2
2231
+ '@jridgewell/sourcemap-codec': 1.5.5
2232
+
2233
+ '@napi-rs/wasm-runtime@0.2.12':
2234
+ dependencies:
2235
+ '@emnapi/core': 1.5.0
2236
+ '@emnapi/runtime': 1.5.0
2237
+ '@tybys/wasm-util': 0.10.1
2238
+ optional: true
2239
+
2240
+ '@next/env@15.4.4': {}
2241
+
2242
+ '@next/eslint-plugin-next@15.4.4':
2243
+ dependencies:
2244
+ fast-glob: 3.3.1
2245
+
2246
+ '@next/swc-darwin-arm64@15.4.4':
2247
+ optional: true
2248
+
2249
+ '@next/swc-darwin-x64@15.4.4':
2250
+ optional: true
2251
+
2252
+ '@next/swc-linux-arm64-gnu@15.4.4':
2253
+ optional: true
2254
+
2255
+ '@next/swc-linux-arm64-musl@15.4.4':
2256
+ optional: true
2257
+
2258
+ '@next/swc-linux-x64-gnu@15.4.4':
2259
+ optional: true
2260
+
2261
+ '@next/swc-linux-x64-musl@15.4.4':
2262
+ optional: true
2263
+
2264
+ '@next/swc-win32-arm64-msvc@15.4.4':
2265
+ optional: true
2266
+
2267
+ '@next/swc-win32-x64-msvc@15.4.4':
2268
+ optional: true
2269
+
2270
+ '@nodelib/fs.scandir@2.1.5':
2271
+ dependencies:
2272
+ '@nodelib/fs.stat': 2.0.5
2273
+ run-parallel: 1.2.0
2274
+
2275
+ '@nodelib/fs.stat@2.0.5': {}
2276
+
2277
+ '@nodelib/fs.walk@1.2.8':
2278
+ dependencies:
2279
+ '@nodelib/fs.scandir': 2.1.5
2280
+ fastq: 1.19.1
2281
+
2282
+ '@nolyfill/is-core-module@1.0.39': {}
2283
+
2284
+ '@radix-ui/react-compose-refs@1.1.2(@types/react@19.2.2)(react@19.1.0)':
2285
+ dependencies:
2286
+ react: 19.1.0
2287
+ optionalDependencies:
2288
+ '@types/react': 19.2.2
2289
+
2290
+ '@radix-ui/react-slot@1.2.3(@types/react@19.2.2)(react@19.1.0)':
2291
+ dependencies:
2292
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.2)(react@19.1.0)
2293
+ react: 19.1.0
2294
+ optionalDependencies:
2295
+ '@types/react': 19.2.2
2296
+
2297
+ '@rtsao/scc@1.1.0': {}
2298
+
2299
+ '@rushstack/eslint-patch@1.14.0': {}
2300
+
2301
+ '@stablelib/base64@1.0.1': {}
2302
+
2303
+ '@swc/helpers@0.5.15':
2304
+ dependencies:
2305
+ tslib: 2.8.1
2306
+
2307
+ '@tailwindcss/node@4.1.14':
2308
+ dependencies:
2309
+ '@jridgewell/remapping': 2.3.5
2310
+ enhanced-resolve: 5.18.3
2311
+ jiti: 2.6.1
2312
+ lightningcss: 1.30.1
2313
+ magic-string: 0.30.19
2314
+ source-map-js: 1.2.1
2315
+ tailwindcss: 4.1.14
2316
+
2317
+ '@tailwindcss/oxide-android-arm64@4.1.14':
2318
+ optional: true
2319
+
2320
+ '@tailwindcss/oxide-darwin-arm64@4.1.14':
2321
+ optional: true
2322
+
2323
+ '@tailwindcss/oxide-darwin-x64@4.1.14':
2324
+ optional: true
2325
+
2326
+ '@tailwindcss/oxide-freebsd-x64@4.1.14':
2327
+ optional: true
2328
+
2329
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.14':
2330
+ optional: true
2331
+
2332
+ '@tailwindcss/oxide-linux-arm64-gnu@4.1.14':
2333
+ optional: true
2334
+
2335
+ '@tailwindcss/oxide-linux-arm64-musl@4.1.14':
2336
+ optional: true
2337
+
2338
+ '@tailwindcss/oxide-linux-x64-gnu@4.1.14':
2339
+ optional: true
2340
+
2341
+ '@tailwindcss/oxide-linux-x64-musl@4.1.14':
2342
+ optional: true
2343
+
2344
+ '@tailwindcss/oxide-wasm32-wasi@4.1.14':
2345
+ optional: true
2346
+
2347
+ '@tailwindcss/oxide-win32-arm64-msvc@4.1.14':
2348
+ optional: true
2349
+
2350
+ '@tailwindcss/oxide-win32-x64-msvc@4.1.14':
2351
+ optional: true
2352
+
2353
+ '@tailwindcss/oxide@4.1.14':
2354
+ dependencies:
2355
+ detect-libc: 2.1.2
2356
+ tar: 7.5.1
2357
+ optionalDependencies:
2358
+ '@tailwindcss/oxide-android-arm64': 4.1.14
2359
+ '@tailwindcss/oxide-darwin-arm64': 4.1.14
2360
+ '@tailwindcss/oxide-darwin-x64': 4.1.14
2361
+ '@tailwindcss/oxide-freebsd-x64': 4.1.14
2362
+ '@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.14
2363
+ '@tailwindcss/oxide-linux-arm64-gnu': 4.1.14
2364
+ '@tailwindcss/oxide-linux-arm64-musl': 4.1.14
2365
+ '@tailwindcss/oxide-linux-x64-gnu': 4.1.14
2366
+ '@tailwindcss/oxide-linux-x64-musl': 4.1.14
2367
+ '@tailwindcss/oxide-wasm32-wasi': 4.1.14
2368
+ '@tailwindcss/oxide-win32-arm64-msvc': 4.1.14
2369
+ '@tailwindcss/oxide-win32-x64-msvc': 4.1.14
2370
+
2371
+ '@tailwindcss/postcss@4.1.14':
2372
+ dependencies:
2373
+ '@alloc/quick-lru': 5.2.0
2374
+ '@tailwindcss/node': 4.1.14
2375
+ '@tailwindcss/oxide': 4.1.14
2376
+ postcss: 8.5.6
2377
+ tailwindcss: 4.1.14
2378
+
2379
+ '@tsconfig/node10@1.0.11': {}
2380
+
2381
+ '@tsconfig/node12@1.0.11': {}
2382
+
2383
+ '@tsconfig/node14@1.0.3': {}
2384
+
2385
+ '@tsconfig/node16@1.0.4': {}
2386
+
2387
+ '@tybys/wasm-util@0.10.1':
2388
+ dependencies:
2389
+ tslib: 2.8.1
2390
+ optional: true
2391
+
2392
+ '@types/estree@1.0.8': {}
2393
+
2394
+ '@types/json-schema@7.0.15': {}
2395
+
2396
+ '@types/json5@0.0.29': {}
2397
+
2398
+ '@types/next@9.0.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
2399
+ dependencies:
2400
+ next: 15.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
2401
+ transitivePeerDependencies:
2402
+ - '@babel/core'
2403
+ - '@opentelemetry/api'
2404
+ - '@playwright/test'
2405
+ - babel-plugin-macros
2406
+ - babel-plugin-react-compiler
2407
+ - react
2408
+ - react-dom
2409
+ - sass
2410
+
2411
+ '@types/node@20.19.22':
2412
+ dependencies:
2413
+ undici-types: 6.21.0
2414
+
2415
+ '@types/react-dom@19.2.2(@types/react@19.2.2)':
2416
+ dependencies:
2417
+ '@types/react': 19.2.2
2418
+
2419
+ '@types/react@19.2.2':
2420
+ dependencies:
2421
+ csstype: 3.1.3
2422
+
2423
+ '@typescript-eslint/eslint-plugin@8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)':
2424
+ dependencies:
2425
+ '@eslint-community/regexpp': 4.12.1
2426
+ '@typescript-eslint/parser': 8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
2427
+ '@typescript-eslint/scope-manager': 8.46.1
2428
+ '@typescript-eslint/type-utils': 8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
2429
+ '@typescript-eslint/utils': 8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
2430
+ '@typescript-eslint/visitor-keys': 8.46.1
2431
+ eslint: 9.37.0(jiti@2.6.1)
2432
+ graphemer: 1.4.0
2433
+ ignore: 7.0.5
2434
+ natural-compare: 1.4.0
2435
+ ts-api-utils: 2.1.0(typescript@5.9.3)
2436
+ typescript: 5.9.3
2437
+ transitivePeerDependencies:
2438
+ - supports-color
2439
+
2440
+ '@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)':
2441
+ dependencies:
2442
+ '@typescript-eslint/scope-manager': 8.46.1
2443
+ '@typescript-eslint/types': 8.46.1
2444
+ '@typescript-eslint/typescript-estree': 8.46.1(typescript@5.9.3)
2445
+ '@typescript-eslint/visitor-keys': 8.46.1
2446
+ debug: 4.4.3
2447
+ eslint: 9.37.0(jiti@2.6.1)
2448
+ typescript: 5.9.3
2449
+ transitivePeerDependencies:
2450
+ - supports-color
2451
+
2452
+ '@typescript-eslint/project-service@8.46.1(typescript@5.9.3)':
2453
+ dependencies:
2454
+ '@typescript-eslint/tsconfig-utils': 8.46.1(typescript@5.9.3)
2455
+ '@typescript-eslint/types': 8.46.1
2456
+ debug: 4.4.3
2457
+ typescript: 5.9.3
2458
+ transitivePeerDependencies:
2459
+ - supports-color
2460
+
2461
+ '@typescript-eslint/scope-manager@8.46.1':
2462
+ dependencies:
2463
+ '@typescript-eslint/types': 8.46.1
2464
+ '@typescript-eslint/visitor-keys': 8.46.1
2465
+
2466
+ '@typescript-eslint/tsconfig-utils@8.46.1(typescript@5.9.3)':
2467
+ dependencies:
2468
+ typescript: 5.9.3
2469
+
2470
+ '@typescript-eslint/type-utils@8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)':
2471
+ dependencies:
2472
+ '@typescript-eslint/types': 8.46.1
2473
+ '@typescript-eslint/typescript-estree': 8.46.1(typescript@5.9.3)
2474
+ '@typescript-eslint/utils': 8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
2475
+ debug: 4.4.3
2476
+ eslint: 9.37.0(jiti@2.6.1)
2477
+ ts-api-utils: 2.1.0(typescript@5.9.3)
2478
+ typescript: 5.9.3
2479
+ transitivePeerDependencies:
2480
+ - supports-color
2481
+
2482
+ '@typescript-eslint/types@8.46.1': {}
2483
+
2484
+ '@typescript-eslint/typescript-estree@8.46.1(typescript@5.9.3)':
2485
+ dependencies:
2486
+ '@typescript-eslint/project-service': 8.46.1(typescript@5.9.3)
2487
+ '@typescript-eslint/tsconfig-utils': 8.46.1(typescript@5.9.3)
2488
+ '@typescript-eslint/types': 8.46.1
2489
+ '@typescript-eslint/visitor-keys': 8.46.1
2490
+ debug: 4.4.3
2491
+ fast-glob: 3.3.3
2492
+ is-glob: 4.0.3
2493
+ minimatch: 9.0.5
2494
+ semver: 7.7.3
2495
+ ts-api-utils: 2.1.0(typescript@5.9.3)
2496
+ typescript: 5.9.3
2497
+ transitivePeerDependencies:
2498
+ - supports-color
2499
+
2500
+ '@typescript-eslint/utils@8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)':
2501
+ dependencies:
2502
+ '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.6.1))
2503
+ '@typescript-eslint/scope-manager': 8.46.1
2504
+ '@typescript-eslint/types': 8.46.1
2505
+ '@typescript-eslint/typescript-estree': 8.46.1(typescript@5.9.3)
2506
+ eslint: 9.37.0(jiti@2.6.1)
2507
+ typescript: 5.9.3
2508
+ transitivePeerDependencies:
2509
+ - supports-color
2510
+
2511
+ '@typescript-eslint/visitor-keys@8.46.1':
2512
+ dependencies:
2513
+ '@typescript-eslint/types': 8.46.1
2514
+ eslint-visitor-keys: 4.2.1
2515
+
2516
+ '@unrs/resolver-binding-android-arm-eabi@1.11.1':
2517
+ optional: true
2518
+
2519
+ '@unrs/resolver-binding-android-arm64@1.11.1':
2520
+ optional: true
2521
+
2522
+ '@unrs/resolver-binding-darwin-arm64@1.11.1':
2523
+ optional: true
2524
+
2525
+ '@unrs/resolver-binding-darwin-x64@1.11.1':
2526
+ optional: true
2527
+
2528
+ '@unrs/resolver-binding-freebsd-x64@1.11.1':
2529
+ optional: true
2530
+
2531
+ '@unrs/resolver-binding-linux-arm-gnueabihf@1.11.1':
2532
+ optional: true
2533
+
2534
+ '@unrs/resolver-binding-linux-arm-musleabihf@1.11.1':
2535
+ optional: true
2536
+
2537
+ '@unrs/resolver-binding-linux-arm64-gnu@1.11.1':
2538
+ optional: true
2539
+
2540
+ '@unrs/resolver-binding-linux-arm64-musl@1.11.1':
2541
+ optional: true
2542
+
2543
+ '@unrs/resolver-binding-linux-ppc64-gnu@1.11.1':
2544
+ optional: true
2545
+
2546
+ '@unrs/resolver-binding-linux-riscv64-gnu@1.11.1':
2547
+ optional: true
2548
+
2549
+ '@unrs/resolver-binding-linux-riscv64-musl@1.11.1':
2550
+ optional: true
2551
+
2552
+ '@unrs/resolver-binding-linux-s390x-gnu@1.11.1':
2553
+ optional: true
2554
+
2555
+ '@unrs/resolver-binding-linux-x64-gnu@1.11.1':
2556
+ optional: true
2557
+
2558
+ '@unrs/resolver-binding-linux-x64-musl@1.11.1':
2559
+ optional: true
2560
+
2561
+ '@unrs/resolver-binding-wasm32-wasi@1.11.1':
2562
+ dependencies:
2563
+ '@napi-rs/wasm-runtime': 0.2.12
2564
+ optional: true
2565
+
2566
+ '@unrs/resolver-binding-win32-arm64-msvc@1.11.1':
2567
+ optional: true
2568
+
2569
+ '@unrs/resolver-binding-win32-ia32-msvc@1.11.1':
2570
+ optional: true
2571
+
2572
+ '@unrs/resolver-binding-win32-x64-msvc@1.11.1':
2573
+ optional: true
2574
+
2575
+ acorn-jsx@5.3.2(acorn@8.15.0):
2576
+ dependencies:
2577
+ acorn: 8.15.0
2578
+
2579
+ acorn-walk@8.3.4:
2580
+ dependencies:
2581
+ acorn: 8.15.0
2582
+
2583
+ acorn@8.15.0: {}
2584
+
2585
+ ajv@6.12.6:
2586
+ dependencies:
2587
+ fast-deep-equal: 3.1.3
2588
+ fast-json-stable-stringify: 2.1.0
2589
+ json-schema-traverse: 0.4.1
2590
+ uri-js: 4.4.1
2591
+
2592
+ ansi-styles@4.3.0:
2593
+ dependencies:
2594
+ color-convert: 2.0.1
2595
+
2596
+ arg@4.1.3: {}
2597
+
2598
+ argparse@2.0.1: {}
2599
+
2600
+ aria-query@5.3.2: {}
2601
+
2602
+ array-buffer-byte-length@1.0.2:
2603
+ dependencies:
2604
+ call-bound: 1.0.4
2605
+ is-array-buffer: 3.0.5
2606
+
2607
+ array-includes@3.1.9:
2608
+ dependencies:
2609
+ call-bind: 1.0.8
2610
+ call-bound: 1.0.4
2611
+ define-properties: 1.2.1
2612
+ es-abstract: 1.24.0
2613
+ es-object-atoms: 1.1.1
2614
+ get-intrinsic: 1.3.0
2615
+ is-string: 1.1.1
2616
+ math-intrinsics: 1.1.0
2617
+
2618
+ array.prototype.findlast@1.2.5:
2619
+ dependencies:
2620
+ call-bind: 1.0.8
2621
+ define-properties: 1.2.1
2622
+ es-abstract: 1.24.0
2623
+ es-errors: 1.3.0
2624
+ es-object-atoms: 1.1.1
2625
+ es-shim-unscopables: 1.1.0
2626
+
2627
+ array.prototype.findlastindex@1.2.6:
2628
+ dependencies:
2629
+ call-bind: 1.0.8
2630
+ call-bound: 1.0.4
2631
+ define-properties: 1.2.1
2632
+ es-abstract: 1.24.0
2633
+ es-errors: 1.3.0
2634
+ es-object-atoms: 1.1.1
2635
+ es-shim-unscopables: 1.1.0
2636
+
2637
+ array.prototype.flat@1.3.3:
2638
+ dependencies:
2639
+ call-bind: 1.0.8
2640
+ define-properties: 1.2.1
2641
+ es-abstract: 1.24.0
2642
+ es-shim-unscopables: 1.1.0
2643
+
2644
+ array.prototype.flatmap@1.3.3:
2645
+ dependencies:
2646
+ call-bind: 1.0.8
2647
+ define-properties: 1.2.1
2648
+ es-abstract: 1.24.0
2649
+ es-shim-unscopables: 1.1.0
2650
+
2651
+ array.prototype.tosorted@1.1.4:
2652
+ dependencies:
2653
+ call-bind: 1.0.8
2654
+ define-properties: 1.2.1
2655
+ es-abstract: 1.24.0
2656
+ es-errors: 1.3.0
2657
+ es-shim-unscopables: 1.1.0
2658
+
2659
+ arraybuffer.prototype.slice@1.0.4:
2660
+ dependencies:
2661
+ array-buffer-byte-length: 1.0.2
2662
+ call-bind: 1.0.8
2663
+ define-properties: 1.2.1
2664
+ es-abstract: 1.24.0
2665
+ es-errors: 1.3.0
2666
+ get-intrinsic: 1.3.0
2667
+ is-array-buffer: 3.0.5
2668
+
2669
+ ast-types-flow@0.0.8: {}
2670
+
2671
+ async-function@1.0.0: {}
2672
+
2673
+ available-typed-arrays@1.0.7:
2674
+ dependencies:
2675
+ possible-typed-array-names: 1.1.0
2676
+
2677
+ axe-core@4.11.0: {}
2678
+
2679
+ axobject-query@4.1.0: {}
2680
+
2681
+ balanced-match@1.0.2: {}
2682
+
2683
+ brace-expansion@1.1.12:
2684
+ dependencies:
2685
+ balanced-match: 1.0.2
2686
+ concat-map: 0.0.1
2687
+
2688
+ brace-expansion@2.0.2:
2689
+ dependencies:
2690
+ balanced-match: 1.0.2
2691
+
2692
+ braces@3.0.3:
2693
+ dependencies:
2694
+ fill-range: 7.1.1
2695
+
2696
+ call-bind-apply-helpers@1.0.2:
2697
+ dependencies:
2698
+ es-errors: 1.3.0
2699
+ function-bind: 1.1.2
2700
+
2701
+ call-bind@1.0.8:
2702
+ dependencies:
2703
+ call-bind-apply-helpers: 1.0.2
2704
+ es-define-property: 1.0.1
2705
+ get-intrinsic: 1.3.0
2706
+ set-function-length: 1.2.2
2707
+
2708
+ call-bound@1.0.4:
2709
+ dependencies:
2710
+ call-bind-apply-helpers: 1.0.2
2711
+ get-intrinsic: 1.3.0
2712
+
2713
+ callsites@3.1.0: {}
2714
+
2715
+ caniuse-lite@1.0.30001751: {}
2716
+
2717
+ chalk@4.1.2:
2718
+ dependencies:
2719
+ ansi-styles: 4.3.0
2720
+ supports-color: 7.2.0
2721
+
2722
+ chownr@3.0.0: {}
2723
+
2724
+ class-variance-authority@0.7.1:
2725
+ dependencies:
2726
+ clsx: 2.1.1
2727
+
2728
+ client-only@0.0.1: {}
2729
+
2730
+ clsx@2.1.1: {}
2731
+
2732
+ color-convert@2.0.1:
2733
+ dependencies:
2734
+ color-name: 1.1.4
2735
+
2736
+ color-name@1.1.4: {}
2737
+
2738
+ concat-map@0.0.1: {}
2739
+
2740
+ cookie@1.0.2: {}
2741
+
2742
+ create-require@1.1.1: {}
2743
+
2744
+ cross-spawn@7.0.6:
2745
+ dependencies:
2746
+ path-key: 3.1.1
2747
+ shebang-command: 2.0.0
2748
+ which: 2.0.2
2749
+
2750
+ csstype@3.1.3: {}
2751
+
2752
+ damerau-levenshtein@1.0.8: {}
2753
+
2754
+ data-view-buffer@1.0.2:
2755
+ dependencies:
2756
+ call-bound: 1.0.4
2757
+ es-errors: 1.3.0
2758
+ is-data-view: 1.0.2
2759
+
2760
+ data-view-byte-length@1.0.2:
2761
+ dependencies:
2762
+ call-bound: 1.0.4
2763
+ es-errors: 1.3.0
2764
+ is-data-view: 1.0.2
2765
+
2766
+ data-view-byte-offset@1.0.1:
2767
+ dependencies:
2768
+ call-bound: 1.0.4
2769
+ es-errors: 1.3.0
2770
+ is-data-view: 1.0.2
2771
+
2772
+ debug@3.2.7:
2773
+ dependencies:
2774
+ ms: 2.1.3
2775
+
2776
+ debug@4.4.3:
2777
+ dependencies:
2778
+ ms: 2.1.3
2779
+
2780
+ deep-is@0.1.4: {}
2781
+
2782
+ define-data-property@1.1.4:
2783
+ dependencies:
2784
+ es-define-property: 1.0.1
2785
+ es-errors: 1.3.0
2786
+ gopd: 1.2.0
2787
+
2788
+ define-properties@1.2.1:
2789
+ dependencies:
2790
+ define-data-property: 1.1.4
2791
+ has-property-descriptors: 1.0.2
2792
+ object-keys: 1.1.1
2793
+
2794
+ dequal@2.0.3: {}
2795
+
2796
+ detect-libc@2.1.2: {}
2797
+
2798
+ diff@4.0.2: {}
2799
+
2800
+ doctrine@2.1.0:
2801
+ dependencies:
2802
+ esutils: 2.0.3
2803
+
2804
+ dunder-proto@1.0.1:
2805
+ dependencies:
2806
+ call-bind-apply-helpers: 1.0.2
2807
+ es-errors: 1.3.0
2808
+ gopd: 1.2.0
2809
+
2810
+ emoji-regex@9.2.2: {}
2811
+
2812
+ enhanced-resolve@5.18.3:
2813
+ dependencies:
2814
+ graceful-fs: 4.2.11
2815
+ tapable: 2.3.0
2816
+
2817
+ es-abstract@1.24.0:
2818
+ dependencies:
2819
+ array-buffer-byte-length: 1.0.2
2820
+ arraybuffer.prototype.slice: 1.0.4
2821
+ available-typed-arrays: 1.0.7
2822
+ call-bind: 1.0.8
2823
+ call-bound: 1.0.4
2824
+ data-view-buffer: 1.0.2
2825
+ data-view-byte-length: 1.0.2
2826
+ data-view-byte-offset: 1.0.1
2827
+ es-define-property: 1.0.1
2828
+ es-errors: 1.3.0
2829
+ es-object-atoms: 1.1.1
2830
+ es-set-tostringtag: 2.1.0
2831
+ es-to-primitive: 1.3.0
2832
+ function.prototype.name: 1.1.8
2833
+ get-intrinsic: 1.3.0
2834
+ get-proto: 1.0.1
2835
+ get-symbol-description: 1.1.0
2836
+ globalthis: 1.0.4
2837
+ gopd: 1.2.0
2838
+ has-property-descriptors: 1.0.2
2839
+ has-proto: 1.2.0
2840
+ has-symbols: 1.1.0
2841
+ hasown: 2.0.2
2842
+ internal-slot: 1.1.0
2843
+ is-array-buffer: 3.0.5
2844
+ is-callable: 1.2.7
2845
+ is-data-view: 1.0.2
2846
+ is-negative-zero: 2.0.3
2847
+ is-regex: 1.2.1
2848
+ is-set: 2.0.3
2849
+ is-shared-array-buffer: 1.0.4
2850
+ is-string: 1.1.1
2851
+ is-typed-array: 1.1.15
2852
+ is-weakref: 1.1.1
2853
+ math-intrinsics: 1.1.0
2854
+ object-inspect: 1.13.4
2855
+ object-keys: 1.1.1
2856
+ object.assign: 4.1.7
2857
+ own-keys: 1.0.1
2858
+ regexp.prototype.flags: 1.5.4
2859
+ safe-array-concat: 1.1.3
2860
+ safe-push-apply: 1.0.0
2861
+ safe-regex-test: 1.1.0
2862
+ set-proto: 1.0.0
2863
+ stop-iteration-iterator: 1.1.0
2864
+ string.prototype.trim: 1.2.10
2865
+ string.prototype.trimend: 1.0.9
2866
+ string.prototype.trimstart: 1.0.8
2867
+ typed-array-buffer: 1.0.3
2868
+ typed-array-byte-length: 1.0.3
2869
+ typed-array-byte-offset: 1.0.4
2870
+ typed-array-length: 1.0.7
2871
+ unbox-primitive: 1.1.0
2872
+ which-typed-array: 1.1.19
2873
+
2874
+ es-define-property@1.0.1: {}
2875
+
2876
+ es-errors@1.3.0: {}
2877
+
2878
+ es-iterator-helpers@1.2.1:
2879
+ dependencies:
2880
+ call-bind: 1.0.8
2881
+ call-bound: 1.0.4
2882
+ define-properties: 1.2.1
2883
+ es-abstract: 1.24.0
2884
+ es-errors: 1.3.0
2885
+ es-set-tostringtag: 2.1.0
2886
+ function-bind: 1.1.2
2887
+ get-intrinsic: 1.3.0
2888
+ globalthis: 1.0.4
2889
+ gopd: 1.2.0
2890
+ has-property-descriptors: 1.0.2
2891
+ has-proto: 1.2.0
2892
+ has-symbols: 1.1.0
2893
+ internal-slot: 1.1.0
2894
+ iterator.prototype: 1.1.5
2895
+ safe-array-concat: 1.1.3
2896
+
2897
+ es-object-atoms@1.1.1:
2898
+ dependencies:
2899
+ es-errors: 1.3.0
2900
+
2901
+ es-set-tostringtag@2.1.0:
2902
+ dependencies:
2903
+ es-errors: 1.3.0
2904
+ get-intrinsic: 1.3.0
2905
+ has-tostringtag: 1.0.2
2906
+ hasown: 2.0.2
2907
+
2908
+ es-shim-unscopables@1.1.0:
2909
+ dependencies:
2910
+ hasown: 2.0.2
2911
+
2912
+ es-to-primitive@1.3.0:
2913
+ dependencies:
2914
+ is-callable: 1.2.7
2915
+ is-date-object: 1.1.0
2916
+ is-symbol: 1.1.1
2917
+
2918
+ escape-string-regexp@4.0.0: {}
2919
+
2920
+ eslint-config-next@15.4.4(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3):
2921
+ dependencies:
2922
+ '@next/eslint-plugin-next': 15.4.4
2923
+ '@rushstack/eslint-patch': 1.14.0
2924
+ '@typescript-eslint/eslint-plugin': 8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
2925
+ '@typescript-eslint/parser': 8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
2926
+ eslint: 9.37.0(jiti@2.6.1)
2927
+ eslint-import-resolver-node: 0.3.9
2928
+ eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@9.37.0(jiti@2.6.1))
2929
+ eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.37.0(jiti@2.6.1))
2930
+ eslint-plugin-jsx-a11y: 6.10.2(eslint@9.37.0(jiti@2.6.1))
2931
+ eslint-plugin-react: 7.37.5(eslint@9.37.0(jiti@2.6.1))
2932
+ eslint-plugin-react-hooks: 5.2.0(eslint@9.37.0(jiti@2.6.1))
2933
+ optionalDependencies:
2934
+ typescript: 5.9.3
2935
+ transitivePeerDependencies:
2936
+ - eslint-import-resolver-webpack
2937
+ - eslint-plugin-import-x
2938
+ - supports-color
2939
+
2940
+ eslint-import-resolver-node@0.3.9:
2941
+ dependencies:
2942
+ debug: 3.2.7
2943
+ is-core-module: 2.16.1
2944
+ resolve: 1.22.10
2945
+ transitivePeerDependencies:
2946
+ - supports-color
2947
+
2948
+ eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0)(eslint@9.37.0(jiti@2.6.1)):
2949
+ dependencies:
2950
+ '@nolyfill/is-core-module': 1.0.39
2951
+ debug: 4.4.3
2952
+ eslint: 9.37.0(jiti@2.6.1)
2953
+ get-tsconfig: 4.12.0
2954
+ is-bun-module: 2.0.0
2955
+ stable-hash: 0.0.5
2956
+ tinyglobby: 0.2.15
2957
+ unrs-resolver: 1.11.1
2958
+ optionalDependencies:
2959
+ eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.37.0(jiti@2.6.1))
2960
+ transitivePeerDependencies:
2961
+ - supports-color
2962
+
2963
+ eslint-module-utils@2.12.1(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.37.0(jiti@2.6.1)):
2964
+ dependencies:
2965
+ debug: 3.2.7
2966
+ optionalDependencies:
2967
+ '@typescript-eslint/parser': 8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
2968
+ eslint: 9.37.0(jiti@2.6.1)
2969
+ eslint-import-resolver-node: 0.3.9
2970
+ eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@9.37.0(jiti@2.6.1))
2971
+ transitivePeerDependencies:
2972
+ - supports-color
2973
+
2974
+ eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.37.0(jiti@2.6.1)):
2975
+ dependencies:
2976
+ '@rtsao/scc': 1.1.0
2977
+ array-includes: 3.1.9
2978
+ array.prototype.findlastindex: 1.2.6
2979
+ array.prototype.flat: 1.3.3
2980
+ array.prototype.flatmap: 1.3.3
2981
+ debug: 3.2.7
2982
+ doctrine: 2.1.0
2983
+ eslint: 9.37.0(jiti@2.6.1)
2984
+ eslint-import-resolver-node: 0.3.9
2985
+ eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.37.0(jiti@2.6.1))
2986
+ hasown: 2.0.2
2987
+ is-core-module: 2.16.1
2988
+ is-glob: 4.0.3
2989
+ minimatch: 3.1.2
2990
+ object.fromentries: 2.0.8
2991
+ object.groupby: 1.0.3
2992
+ object.values: 1.2.1
2993
+ semver: 6.3.1
2994
+ string.prototype.trimend: 1.0.9
2995
+ tsconfig-paths: 3.15.0
2996
+ optionalDependencies:
2997
+ '@typescript-eslint/parser': 8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
2998
+ transitivePeerDependencies:
2999
+ - eslint-import-resolver-typescript
3000
+ - eslint-import-resolver-webpack
3001
+ - supports-color
3002
+
3003
+ eslint-plugin-jsx-a11y@6.10.2(eslint@9.37.0(jiti@2.6.1)):
3004
+ dependencies:
3005
+ aria-query: 5.3.2
3006
+ array-includes: 3.1.9
3007
+ array.prototype.flatmap: 1.3.3
3008
+ ast-types-flow: 0.0.8
3009
+ axe-core: 4.11.0
3010
+ axobject-query: 4.1.0
3011
+ damerau-levenshtein: 1.0.8
3012
+ emoji-regex: 9.2.2
3013
+ eslint: 9.37.0(jiti@2.6.1)
3014
+ hasown: 2.0.2
3015
+ jsx-ast-utils: 3.3.5
3016
+ language-tags: 1.0.9
3017
+ minimatch: 3.1.2
3018
+ object.fromentries: 2.0.8
3019
+ safe-regex-test: 1.1.0
3020
+ string.prototype.includes: 2.0.1
3021
+
3022
+ eslint-plugin-react-hooks@5.2.0(eslint@9.37.0(jiti@2.6.1)):
3023
+ dependencies:
3024
+ eslint: 9.37.0(jiti@2.6.1)
3025
+
3026
+ eslint-plugin-react@7.37.5(eslint@9.37.0(jiti@2.6.1)):
3027
+ dependencies:
3028
+ array-includes: 3.1.9
3029
+ array.prototype.findlast: 1.2.5
3030
+ array.prototype.flatmap: 1.3.3
3031
+ array.prototype.tosorted: 1.1.4
3032
+ doctrine: 2.1.0
3033
+ es-iterator-helpers: 1.2.1
3034
+ eslint: 9.37.0(jiti@2.6.1)
3035
+ estraverse: 5.3.0
3036
+ hasown: 2.0.2
3037
+ jsx-ast-utils: 3.3.5
3038
+ minimatch: 3.1.2
3039
+ object.entries: 1.1.9
3040
+ object.fromentries: 2.0.8
3041
+ object.values: 1.2.1
3042
+ prop-types: 15.8.1
3043
+ resolve: 2.0.0-next.5
3044
+ semver: 6.3.1
3045
+ string.prototype.matchall: 4.0.12
3046
+ string.prototype.repeat: 1.0.0
3047
+
3048
+ eslint-scope@8.4.0:
3049
+ dependencies:
3050
+ esrecurse: 4.3.0
3051
+ estraverse: 5.3.0
3052
+
3053
+ eslint-visitor-keys@3.4.3: {}
3054
+
3055
+ eslint-visitor-keys@4.2.1: {}
3056
+
3057
+ eslint@9.37.0(jiti@2.6.1):
3058
+ dependencies:
3059
+ '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.6.1))
3060
+ '@eslint-community/regexpp': 4.12.1
3061
+ '@eslint/config-array': 0.21.0
3062
+ '@eslint/config-helpers': 0.4.0
3063
+ '@eslint/core': 0.16.0
3064
+ '@eslint/eslintrc': 3.3.1
3065
+ '@eslint/js': 9.37.0
3066
+ '@eslint/plugin-kit': 0.4.0
3067
+ '@humanfs/node': 0.16.7
3068
+ '@humanwhocodes/module-importer': 1.0.1
3069
+ '@humanwhocodes/retry': 0.4.3
3070
+ '@types/estree': 1.0.8
3071
+ '@types/json-schema': 7.0.15
3072
+ ajv: 6.12.6
3073
+ chalk: 4.1.2
3074
+ cross-spawn: 7.0.6
3075
+ debug: 4.4.3
3076
+ escape-string-regexp: 4.0.0
3077
+ eslint-scope: 8.4.0
3078
+ eslint-visitor-keys: 4.2.1
3079
+ espree: 10.4.0
3080
+ esquery: 1.6.0
3081
+ esutils: 2.0.3
3082
+ fast-deep-equal: 3.1.3
3083
+ file-entry-cache: 8.0.0
3084
+ find-up: 5.0.0
3085
+ glob-parent: 6.0.2
3086
+ ignore: 5.3.2
3087
+ imurmurhash: 0.1.4
3088
+ is-glob: 4.0.3
3089
+ json-stable-stringify-without-jsonify: 1.0.1
3090
+ lodash.merge: 4.6.2
3091
+ minimatch: 3.1.2
3092
+ natural-compare: 1.4.0
3093
+ optionator: 0.9.4
3094
+ optionalDependencies:
3095
+ jiti: 2.6.1
3096
+ transitivePeerDependencies:
3097
+ - supports-color
3098
+
3099
+ espree@10.4.0:
3100
+ dependencies:
3101
+ acorn: 8.15.0
3102
+ acorn-jsx: 5.3.2(acorn@8.15.0)
3103
+ eslint-visitor-keys: 4.2.1
3104
+
3105
+ esquery@1.6.0:
3106
+ dependencies:
3107
+ estraverse: 5.3.0
3108
+
3109
+ esrecurse@4.3.0:
3110
+ dependencies:
3111
+ estraverse: 5.3.0
3112
+
3113
+ estraverse@5.3.0: {}
3114
+
3115
+ esutils@2.0.3: {}
3116
+
3117
+ fast-deep-equal@3.1.3: {}
3118
+
3119
+ fast-glob@3.3.1:
3120
+ dependencies:
3121
+ '@nodelib/fs.stat': 2.0.5
3122
+ '@nodelib/fs.walk': 1.2.8
3123
+ glob-parent: 5.1.2
3124
+ merge2: 1.4.1
3125
+ micromatch: 4.0.8
3126
+
3127
+ fast-glob@3.3.3:
3128
+ dependencies:
3129
+ '@nodelib/fs.stat': 2.0.5
3130
+ '@nodelib/fs.walk': 1.2.8
3131
+ glob-parent: 5.1.2
3132
+ merge2: 1.4.1
3133
+ micromatch: 4.0.8
3134
+
3135
+ fast-json-stable-stringify@2.1.0: {}
3136
+
3137
+ fast-levenshtein@2.0.6: {}
3138
+
3139
+ fast-sha256@1.3.0: {}
3140
+
3141
+ fastq@1.19.1:
3142
+ dependencies:
3143
+ reusify: 1.1.0
3144
+
3145
+ fdir@6.5.0(picomatch@4.0.3):
3146
+ optionalDependencies:
3147
+ picomatch: 4.0.3
3148
+
3149
+ file-entry-cache@8.0.0:
3150
+ dependencies:
3151
+ flat-cache: 4.0.1
3152
+
3153
+ fill-range@7.1.1:
3154
+ dependencies:
3155
+ to-regex-range: 5.0.1
3156
+
3157
+ find-up@5.0.0:
3158
+ dependencies:
3159
+ locate-path: 6.0.0
3160
+ path-exists: 4.0.0
3161
+
3162
+ flat-cache@4.0.1:
3163
+ dependencies:
3164
+ flatted: 3.3.3
3165
+ keyv: 4.5.4
3166
+
3167
+ flatted@3.3.3: {}
3168
+
3169
+ for-each@0.3.5:
3170
+ dependencies:
3171
+ is-callable: 1.2.7
3172
+
3173
+ function-bind@1.1.2: {}
3174
+
3175
+ function.prototype.name@1.1.8:
3176
+ dependencies:
3177
+ call-bind: 1.0.8
3178
+ call-bound: 1.0.4
3179
+ define-properties: 1.2.1
3180
+ functions-have-names: 1.2.3
3181
+ hasown: 2.0.2
3182
+ is-callable: 1.2.7
3183
+
3184
+ functions-have-names@1.2.3: {}
3185
+
3186
+ generator-function@2.0.1: {}
3187
+
3188
+ get-intrinsic@1.3.0:
3189
+ dependencies:
3190
+ call-bind-apply-helpers: 1.0.2
3191
+ es-define-property: 1.0.1
3192
+ es-errors: 1.3.0
3193
+ es-object-atoms: 1.1.1
3194
+ function-bind: 1.1.2
3195
+ get-proto: 1.0.1
3196
+ gopd: 1.2.0
3197
+ has-symbols: 1.1.0
3198
+ hasown: 2.0.2
3199
+ math-intrinsics: 1.1.0
3200
+
3201
+ get-proto@1.0.1:
3202
+ dependencies:
3203
+ dunder-proto: 1.0.1
3204
+ es-object-atoms: 1.1.1
3205
+
3206
+ get-symbol-description@1.1.0:
3207
+ dependencies:
3208
+ call-bound: 1.0.4
3209
+ es-errors: 1.3.0
3210
+ get-intrinsic: 1.3.0
3211
+
3212
+ get-tsconfig@4.12.0:
3213
+ dependencies:
3214
+ resolve-pkg-maps: 1.0.0
3215
+
3216
+ glob-parent@5.1.2:
3217
+ dependencies:
3218
+ is-glob: 4.0.3
3219
+
3220
+ glob-parent@6.0.2:
3221
+ dependencies:
3222
+ is-glob: 4.0.3
3223
+
3224
+ glob-to-regexp@0.4.1: {}
3225
+
3226
+ globals@14.0.0: {}
3227
+
3228
+ globalthis@1.0.4:
3229
+ dependencies:
3230
+ define-properties: 1.2.1
3231
+ gopd: 1.2.0
3232
+
3233
+ gopd@1.2.0: {}
3234
+
3235
+ graceful-fs@4.2.11: {}
3236
+
3237
+ graphemer@1.4.0: {}
3238
+
3239
+ has-bigints@1.1.0: {}
3240
+
3241
+ has-flag@4.0.0: {}
3242
+
3243
+ has-property-descriptors@1.0.2:
3244
+ dependencies:
3245
+ es-define-property: 1.0.1
3246
+
3247
+ has-proto@1.2.0:
3248
+ dependencies:
3249
+ dunder-proto: 1.0.1
3250
+
3251
+ has-symbols@1.1.0: {}
3252
+
3253
+ has-tostringtag@1.0.2:
3254
+ dependencies:
3255
+ has-symbols: 1.1.0
3256
+
3257
+ hasown@2.0.2:
3258
+ dependencies:
3259
+ function-bind: 1.1.2
3260
+
3261
+ ignore@5.3.2: {}
3262
+
3263
+ ignore@7.0.5: {}
3264
+
3265
+ import-fresh@3.3.1:
3266
+ dependencies:
3267
+ parent-module: 1.0.1
3268
+ resolve-from: 4.0.0
3269
+
3270
+ imurmurhash@0.1.4: {}
3271
+
3272
+ internal-slot@1.1.0:
3273
+ dependencies:
3274
+ es-errors: 1.3.0
3275
+ hasown: 2.0.2
3276
+ side-channel: 1.1.0
3277
+
3278
+ is-array-buffer@3.0.5:
3279
+ dependencies:
3280
+ call-bind: 1.0.8
3281
+ call-bound: 1.0.4
3282
+ get-intrinsic: 1.3.0
3283
+
3284
+ is-async-function@2.1.1:
3285
+ dependencies:
3286
+ async-function: 1.0.0
3287
+ call-bound: 1.0.4
3288
+ get-proto: 1.0.1
3289
+ has-tostringtag: 1.0.2
3290
+ safe-regex-test: 1.1.0
3291
+
3292
+ is-bigint@1.1.0:
3293
+ dependencies:
3294
+ has-bigints: 1.1.0
3295
+
3296
+ is-boolean-object@1.2.2:
3297
+ dependencies:
3298
+ call-bound: 1.0.4
3299
+ has-tostringtag: 1.0.2
3300
+
3301
+ is-bun-module@2.0.0:
3302
+ dependencies:
3303
+ semver: 7.7.3
3304
+
3305
+ is-callable@1.2.7: {}
3306
+
3307
+ is-core-module@2.16.1:
3308
+ dependencies:
3309
+ hasown: 2.0.2
3310
+
3311
+ is-data-view@1.0.2:
3312
+ dependencies:
3313
+ call-bound: 1.0.4
3314
+ get-intrinsic: 1.3.0
3315
+ is-typed-array: 1.1.15
3316
+
3317
+ is-date-object@1.1.0:
3318
+ dependencies:
3319
+ call-bound: 1.0.4
3320
+ has-tostringtag: 1.0.2
3321
+
3322
+ is-extglob@2.1.1: {}
3323
+
3324
+ is-finalizationregistry@1.1.1:
3325
+ dependencies:
3326
+ call-bound: 1.0.4
3327
+
3328
+ is-generator-function@1.1.2:
3329
+ dependencies:
3330
+ call-bound: 1.0.4
3331
+ generator-function: 2.0.1
3332
+ get-proto: 1.0.1
3333
+ has-tostringtag: 1.0.2
3334
+ safe-regex-test: 1.1.0
3335
+
3336
+ is-glob@4.0.3:
3337
+ dependencies:
3338
+ is-extglob: 2.1.1
3339
+
3340
+ is-map@2.0.3: {}
3341
+
3342
+ is-negative-zero@2.0.3: {}
3343
+
3344
+ is-number-object@1.1.1:
3345
+ dependencies:
3346
+ call-bound: 1.0.4
3347
+ has-tostringtag: 1.0.2
3348
+
3349
+ is-number@7.0.0: {}
3350
+
3351
+ is-regex@1.2.1:
3352
+ dependencies:
3353
+ call-bound: 1.0.4
3354
+ gopd: 1.2.0
3355
+ has-tostringtag: 1.0.2
3356
+ hasown: 2.0.2
3357
+
3358
+ is-set@2.0.3: {}
3359
+
3360
+ is-shared-array-buffer@1.0.4:
3361
+ dependencies:
3362
+ call-bound: 1.0.4
3363
+
3364
+ is-string@1.1.1:
3365
+ dependencies:
3366
+ call-bound: 1.0.4
3367
+ has-tostringtag: 1.0.2
3368
+
3369
+ is-symbol@1.1.1:
3370
+ dependencies:
3371
+ call-bound: 1.0.4
3372
+ has-symbols: 1.1.0
3373
+ safe-regex-test: 1.1.0
3374
+
3375
+ is-typed-array@1.1.15:
3376
+ dependencies:
3377
+ which-typed-array: 1.1.19
3378
+
3379
+ is-weakmap@2.0.2: {}
3380
+
3381
+ is-weakref@1.1.1:
3382
+ dependencies:
3383
+ call-bound: 1.0.4
3384
+
3385
+ is-weakset@2.0.4:
3386
+ dependencies:
3387
+ call-bound: 1.0.4
3388
+ get-intrinsic: 1.3.0
3389
+
3390
+ isarray@2.0.5: {}
3391
+
3392
+ isexe@2.0.0: {}
3393
+
3394
+ iterator.prototype@1.1.5:
3395
+ dependencies:
3396
+ define-data-property: 1.1.4
3397
+ es-object-atoms: 1.1.1
3398
+ get-intrinsic: 1.3.0
3399
+ get-proto: 1.0.1
3400
+ has-symbols: 1.1.0
3401
+ set-function-name: 2.0.2
3402
+
3403
+ jiti@2.6.1: {}
3404
+
3405
+ js-cookie@3.0.5: {}
3406
+
3407
+ js-tokens@4.0.0: {}
3408
+
3409
+ js-yaml@4.1.0:
3410
+ dependencies:
3411
+ argparse: 2.0.1
3412
+
3413
+ json-buffer@3.0.1: {}
3414
+
3415
+ json-schema-traverse@0.4.1: {}
3416
+
3417
+ json-stable-stringify-without-jsonify@1.0.1: {}
3418
+
3419
+ json5@1.0.2:
3420
+ dependencies:
3421
+ minimist: 1.2.8
3422
+
3423
+ jsx-ast-utils@3.3.5:
3424
+ dependencies:
3425
+ array-includes: 3.1.9
3426
+ array.prototype.flat: 1.3.3
3427
+ object.assign: 4.1.7
3428
+ object.values: 1.2.1
3429
+
3430
+ keyv@4.5.4:
3431
+ dependencies:
3432
+ json-buffer: 3.0.1
3433
+
3434
+ language-subtag-registry@0.3.23: {}
3435
+
3436
+ language-tags@1.0.9:
3437
+ dependencies:
3438
+ language-subtag-registry: 0.3.23
3439
+
3440
+ levn@0.4.1:
3441
+ dependencies:
3442
+ prelude-ls: 1.2.1
3443
+ type-check: 0.4.0
3444
+
3445
+ lightningcss-darwin-arm64@1.30.1:
3446
+ optional: true
3447
+
3448
+ lightningcss-darwin-x64@1.30.1:
3449
+ optional: true
3450
+
3451
+ lightningcss-freebsd-x64@1.30.1:
3452
+ optional: true
3453
+
3454
+ lightningcss-linux-arm-gnueabihf@1.30.1:
3455
+ optional: true
3456
+
3457
+ lightningcss-linux-arm64-gnu@1.30.1:
3458
+ optional: true
3459
+
3460
+ lightningcss-linux-arm64-musl@1.30.1:
3461
+ optional: true
3462
+
3463
+ lightningcss-linux-x64-gnu@1.30.1:
3464
+ optional: true
3465
+
3466
+ lightningcss-linux-x64-musl@1.30.1:
3467
+ optional: true
3468
+
3469
+ lightningcss-win32-arm64-msvc@1.30.1:
3470
+ optional: true
3471
+
3472
+ lightningcss-win32-x64-msvc@1.30.1:
3473
+ optional: true
3474
+
3475
+ lightningcss@1.30.1:
3476
+ dependencies:
3477
+ detect-libc: 2.1.2
3478
+ optionalDependencies:
3479
+ lightningcss-darwin-arm64: 1.30.1
3480
+ lightningcss-darwin-x64: 1.30.1
3481
+ lightningcss-freebsd-x64: 1.30.1
3482
+ lightningcss-linux-arm-gnueabihf: 1.30.1
3483
+ lightningcss-linux-arm64-gnu: 1.30.1
3484
+ lightningcss-linux-arm64-musl: 1.30.1
3485
+ lightningcss-linux-x64-gnu: 1.30.1
3486
+ lightningcss-linux-x64-musl: 1.30.1
3487
+ lightningcss-win32-arm64-msvc: 1.30.1
3488
+ lightningcss-win32-x64-msvc: 1.30.1
3489
+
3490
+ locate-path@6.0.0:
3491
+ dependencies:
3492
+ p-locate: 5.0.0
3493
+
3494
+ lodash.merge@4.6.2: {}
3495
+
3496
+ loose-envify@1.4.0:
3497
+ dependencies:
3498
+ js-tokens: 4.0.0
3499
+
3500
+ lucide-react@0.527.0(react@19.1.0):
3501
+ dependencies:
3502
+ react: 19.1.0
3503
+
3504
+ magic-string@0.30.19:
3505
+ dependencies:
3506
+ '@jridgewell/sourcemap-codec': 1.5.5
3507
+
3508
+ make-error@1.3.6: {}
3509
+
3510
+ math-intrinsics@1.1.0: {}
3511
+
3512
+ merge2@1.4.1: {}
3513
+
3514
+ micromatch@4.0.8:
3515
+ dependencies:
3516
+ braces: 3.0.3
3517
+ picomatch: 2.3.1
3518
+
3519
+ minimatch@3.1.2:
3520
+ dependencies:
3521
+ brace-expansion: 1.1.12
3522
+
3523
+ minimatch@9.0.5:
3524
+ dependencies:
3525
+ brace-expansion: 2.0.2
3526
+
3527
+ minimist@1.2.8: {}
3528
+
3529
+ minipass@7.1.2: {}
3530
+
3531
+ minizlib@3.1.0:
3532
+ dependencies:
3533
+ minipass: 7.1.2
3534
+
3535
+ ms@2.1.3: {}
3536
+
3537
+ nanoid@3.3.11: {}
3538
+
3539
+ napi-postinstall@0.3.4: {}
3540
+
3541
+ natural-compare@1.4.0: {}
3542
+
3543
+ next@15.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
3544
+ dependencies:
3545
+ '@next/env': 15.4.4
3546
+ '@swc/helpers': 0.5.15
3547
+ caniuse-lite: 1.0.30001751
3548
+ postcss: 8.4.31
3549
+ react: 19.1.0
3550
+ react-dom: 19.1.0(react@19.1.0)
3551
+ styled-jsx: 5.1.6(react@19.1.0)
3552
+ optionalDependencies:
3553
+ '@next/swc-darwin-arm64': 15.4.4
3554
+ '@next/swc-darwin-x64': 15.4.4
3555
+ '@next/swc-linux-arm64-gnu': 15.4.4
3556
+ '@next/swc-linux-arm64-musl': 15.4.4
3557
+ '@next/swc-linux-x64-gnu': 15.4.4
3558
+ '@next/swc-linux-x64-musl': 15.4.4
3559
+ '@next/swc-win32-arm64-msvc': 15.4.4
3560
+ '@next/swc-win32-x64-msvc': 15.4.4
3561
+ sharp: 0.34.4
3562
+ transitivePeerDependencies:
3563
+ - '@babel/core'
3564
+ - babel-plugin-macros
3565
+
3566
+ object-assign@4.1.1: {}
3567
+
3568
+ object-inspect@1.13.4: {}
3569
+
3570
+ object-keys@1.1.1: {}
3571
+
3572
+ object.assign@4.1.7:
3573
+ dependencies:
3574
+ call-bind: 1.0.8
3575
+ call-bound: 1.0.4
3576
+ define-properties: 1.2.1
3577
+ es-object-atoms: 1.1.1
3578
+ has-symbols: 1.1.0
3579
+ object-keys: 1.1.1
3580
+
3581
+ object.entries@1.1.9:
3582
+ dependencies:
3583
+ call-bind: 1.0.8
3584
+ call-bound: 1.0.4
3585
+ define-properties: 1.2.1
3586
+ es-object-atoms: 1.1.1
3587
+
3588
+ object.fromentries@2.0.8:
3589
+ dependencies:
3590
+ call-bind: 1.0.8
3591
+ define-properties: 1.2.1
3592
+ es-abstract: 1.24.0
3593
+ es-object-atoms: 1.1.1
3594
+
3595
+ object.groupby@1.0.3:
3596
+ dependencies:
3597
+ call-bind: 1.0.8
3598
+ define-properties: 1.2.1
3599
+ es-abstract: 1.24.0
3600
+
3601
+ object.values@1.2.1:
3602
+ dependencies:
3603
+ call-bind: 1.0.8
3604
+ call-bound: 1.0.4
3605
+ define-properties: 1.2.1
3606
+ es-object-atoms: 1.1.1
3607
+
3608
+ optionator@0.9.4:
3609
+ dependencies:
3610
+ deep-is: 0.1.4
3611
+ fast-levenshtein: 2.0.6
3612
+ levn: 0.4.1
3613
+ prelude-ls: 1.2.1
3614
+ type-check: 0.4.0
3615
+ word-wrap: 1.2.5
3616
+
3617
+ own-keys@1.0.1:
3618
+ dependencies:
3619
+ get-intrinsic: 1.3.0
3620
+ object-keys: 1.1.1
3621
+ safe-push-apply: 1.0.0
3622
+
3623
+ p-limit@3.1.0:
3624
+ dependencies:
3625
+ yocto-queue: 0.1.0
3626
+
3627
+ p-locate@5.0.0:
3628
+ dependencies:
3629
+ p-limit: 3.1.0
3630
+
3631
+ parent-module@1.0.1:
3632
+ dependencies:
3633
+ callsites: 3.1.0
3634
+
3635
+ path-exists@4.0.0: {}
3636
+
3637
+ path-key@3.1.1: {}
3638
+
3639
+ path-parse@1.0.7: {}
3640
+
3641
+ picocolors@1.1.1: {}
3642
+
3643
+ picomatch@2.3.1: {}
3644
+
3645
+ picomatch@4.0.3: {}
3646
+
3647
+ possible-typed-array-names@1.1.0: {}
3648
+
3649
+ postcss@8.4.31:
3650
+ dependencies:
3651
+ nanoid: 3.3.11
3652
+ picocolors: 1.1.1
3653
+ source-map-js: 1.2.1
3654
+
3655
+ postcss@8.5.6:
3656
+ dependencies:
3657
+ nanoid: 3.3.11
3658
+ picocolors: 1.1.1
3659
+ source-map-js: 1.2.1
3660
+
3661
+ prelude-ls@1.2.1: {}
3662
+
3663
+ prop-types@15.8.1:
3664
+ dependencies:
3665
+ loose-envify: 1.4.0
3666
+ object-assign: 4.1.1
3667
+ react-is: 16.13.1
3668
+
3669
+ punycode@2.3.1: {}
3670
+
3671
+ queue-microtask@1.2.3: {}
3672
+
3673
+ react-dom@19.1.0(react@19.1.0):
3674
+ dependencies:
3675
+ react: 19.1.0
3676
+ scheduler: 0.26.0
3677
+
3678
+ react-is@16.13.1: {}
3679
+
3680
+ react@19.1.0: {}
3681
+
3682
+ reflect.getprototypeof@1.0.10:
3683
+ dependencies:
3684
+ call-bind: 1.0.8
3685
+ define-properties: 1.2.1
3686
+ es-abstract: 1.24.0
3687
+ es-errors: 1.3.0
3688
+ es-object-atoms: 1.1.1
3689
+ get-intrinsic: 1.3.0
3690
+ get-proto: 1.0.1
3691
+ which-builtin-type: 1.2.1
3692
+
3693
+ regexp.prototype.flags@1.5.4:
3694
+ dependencies:
3695
+ call-bind: 1.0.8
3696
+ define-properties: 1.2.1
3697
+ es-errors: 1.3.0
3698
+ get-proto: 1.0.1
3699
+ gopd: 1.2.0
3700
+ set-function-name: 2.0.2
3701
+
3702
+ resolve-from@4.0.0: {}
3703
+
3704
+ resolve-pkg-maps@1.0.0: {}
3705
+
3706
+ resolve@1.22.10:
3707
+ dependencies:
3708
+ is-core-module: 2.16.1
3709
+ path-parse: 1.0.7
3710
+ supports-preserve-symlinks-flag: 1.0.0
3711
+
3712
+ resolve@2.0.0-next.5:
3713
+ dependencies:
3714
+ is-core-module: 2.16.1
3715
+ path-parse: 1.0.7
3716
+ supports-preserve-symlinks-flag: 1.0.0
3717
+
3718
+ reusify@1.1.0: {}
3719
+
3720
+ run-parallel@1.2.0:
3721
+ dependencies:
3722
+ queue-microtask: 1.2.3
3723
+
3724
+ safe-array-concat@1.1.3:
3725
+ dependencies:
3726
+ call-bind: 1.0.8
3727
+ call-bound: 1.0.4
3728
+ get-intrinsic: 1.3.0
3729
+ has-symbols: 1.1.0
3730
+ isarray: 2.0.5
3731
+
3732
+ safe-push-apply@1.0.0:
3733
+ dependencies:
3734
+ es-errors: 1.3.0
3735
+ isarray: 2.0.5
3736
+
3737
+ safe-regex-test@1.1.0:
3738
+ dependencies:
3739
+ call-bound: 1.0.4
3740
+ es-errors: 1.3.0
3741
+ is-regex: 1.2.1
3742
+
3743
+ scheduler@0.26.0: {}
3744
+
3745
+ semver@6.3.1: {}
3746
+
3747
+ semver@7.7.3: {}
3748
+
3749
+ server-only@0.0.1: {}
3750
+
3751
+ set-function-length@1.2.2:
3752
+ dependencies:
3753
+ define-data-property: 1.1.4
3754
+ es-errors: 1.3.0
3755
+ function-bind: 1.1.2
3756
+ get-intrinsic: 1.3.0
3757
+ gopd: 1.2.0
3758
+ has-property-descriptors: 1.0.2
3759
+
3760
+ set-function-name@2.0.2:
3761
+ dependencies:
3762
+ define-data-property: 1.1.4
3763
+ es-errors: 1.3.0
3764
+ functions-have-names: 1.2.3
3765
+ has-property-descriptors: 1.0.2
3766
+
3767
+ set-proto@1.0.0:
3768
+ dependencies:
3769
+ dunder-proto: 1.0.1
3770
+ es-errors: 1.3.0
3771
+ es-object-atoms: 1.1.1
3772
+
3773
+ sharp@0.34.4:
3774
+ dependencies:
3775
+ '@img/colour': 1.0.0
3776
+ detect-libc: 2.1.2
3777
+ semver: 7.7.3
3778
+ optionalDependencies:
3779
+ '@img/sharp-darwin-arm64': 0.34.4
3780
+ '@img/sharp-darwin-x64': 0.34.4
3781
+ '@img/sharp-libvips-darwin-arm64': 1.2.3
3782
+ '@img/sharp-libvips-darwin-x64': 1.2.3
3783
+ '@img/sharp-libvips-linux-arm': 1.2.3
3784
+ '@img/sharp-libvips-linux-arm64': 1.2.3
3785
+ '@img/sharp-libvips-linux-ppc64': 1.2.3
3786
+ '@img/sharp-libvips-linux-s390x': 1.2.3
3787
+ '@img/sharp-libvips-linux-x64': 1.2.3
3788
+ '@img/sharp-libvips-linuxmusl-arm64': 1.2.3
3789
+ '@img/sharp-libvips-linuxmusl-x64': 1.2.3
3790
+ '@img/sharp-linux-arm': 0.34.4
3791
+ '@img/sharp-linux-arm64': 0.34.4
3792
+ '@img/sharp-linux-ppc64': 0.34.4
3793
+ '@img/sharp-linux-s390x': 0.34.4
3794
+ '@img/sharp-linux-x64': 0.34.4
3795
+ '@img/sharp-linuxmusl-arm64': 0.34.4
3796
+ '@img/sharp-linuxmusl-x64': 0.34.4
3797
+ '@img/sharp-wasm32': 0.34.4
3798
+ '@img/sharp-win32-arm64': 0.34.4
3799
+ '@img/sharp-win32-ia32': 0.34.4
3800
+ '@img/sharp-win32-x64': 0.34.4
3801
+ optional: true
3802
+
3803
+ shebang-command@2.0.0:
3804
+ dependencies:
3805
+ shebang-regex: 3.0.0
3806
+
3807
+ shebang-regex@3.0.0: {}
3808
+
3809
+ side-channel-list@1.0.0:
3810
+ dependencies:
3811
+ es-errors: 1.3.0
3812
+ object-inspect: 1.13.4
3813
+
3814
+ side-channel-map@1.0.1:
3815
+ dependencies:
3816
+ call-bound: 1.0.4
3817
+ es-errors: 1.3.0
3818
+ get-intrinsic: 1.3.0
3819
+ object-inspect: 1.13.4
3820
+
3821
+ side-channel-weakmap@1.0.2:
3822
+ dependencies:
3823
+ call-bound: 1.0.4
3824
+ es-errors: 1.3.0
3825
+ get-intrinsic: 1.3.0
3826
+ object-inspect: 1.13.4
3827
+ side-channel-map: 1.0.1
3828
+
3829
+ side-channel@1.1.0:
3830
+ dependencies:
3831
+ es-errors: 1.3.0
3832
+ object-inspect: 1.13.4
3833
+ side-channel-list: 1.0.0
3834
+ side-channel-map: 1.0.1
3835
+ side-channel-weakmap: 1.0.2
3836
+
3837
+ source-map-js@1.2.1: {}
3838
+
3839
+ stable-hash@0.0.5: {}
3840
+
3841
+ standardwebhooks@1.0.0:
3842
+ dependencies:
3843
+ '@stablelib/base64': 1.0.1
3844
+ fast-sha256: 1.3.0
3845
+
3846
+ std-env@3.10.0: {}
3847
+
3848
+ stop-iteration-iterator@1.1.0:
3849
+ dependencies:
3850
+ es-errors: 1.3.0
3851
+ internal-slot: 1.1.0
3852
+
3853
+ string.prototype.includes@2.0.1:
3854
+ dependencies:
3855
+ call-bind: 1.0.8
3856
+ define-properties: 1.2.1
3857
+ es-abstract: 1.24.0
3858
+
3859
+ string.prototype.matchall@4.0.12:
3860
+ dependencies:
3861
+ call-bind: 1.0.8
3862
+ call-bound: 1.0.4
3863
+ define-properties: 1.2.1
3864
+ es-abstract: 1.24.0
3865
+ es-errors: 1.3.0
3866
+ es-object-atoms: 1.1.1
3867
+ get-intrinsic: 1.3.0
3868
+ gopd: 1.2.0
3869
+ has-symbols: 1.1.0
3870
+ internal-slot: 1.1.0
3871
+ regexp.prototype.flags: 1.5.4
3872
+ set-function-name: 2.0.2
3873
+ side-channel: 1.1.0
3874
+
3875
+ string.prototype.repeat@1.0.0:
3876
+ dependencies:
3877
+ define-properties: 1.2.1
3878
+ es-abstract: 1.24.0
3879
+
3880
+ string.prototype.trim@1.2.10:
3881
+ dependencies:
3882
+ call-bind: 1.0.8
3883
+ call-bound: 1.0.4
3884
+ define-data-property: 1.1.4
3885
+ define-properties: 1.2.1
3886
+ es-abstract: 1.24.0
3887
+ es-object-atoms: 1.1.1
3888
+ has-property-descriptors: 1.0.2
3889
+
3890
+ string.prototype.trimend@1.0.9:
3891
+ dependencies:
3892
+ call-bind: 1.0.8
3893
+ call-bound: 1.0.4
3894
+ define-properties: 1.2.1
3895
+ es-object-atoms: 1.1.1
3896
+
3897
+ string.prototype.trimstart@1.0.8:
3898
+ dependencies:
3899
+ call-bind: 1.0.8
3900
+ define-properties: 1.2.1
3901
+ es-object-atoms: 1.1.1
3902
+
3903
+ strip-bom@3.0.0: {}
3904
+
3905
+ strip-json-comments@3.1.1: {}
3906
+
3907
+ styled-jsx@5.1.6(react@19.1.0):
3908
+ dependencies:
3909
+ client-only: 0.0.1
3910
+ react: 19.1.0
3911
+
3912
+ supports-color@7.2.0:
3913
+ dependencies:
3914
+ has-flag: 4.0.0
3915
+
3916
+ supports-preserve-symlinks-flag@1.0.0: {}
3917
+
3918
+ swr@2.3.4(react@19.1.0):
3919
+ dependencies:
3920
+ dequal: 2.0.3
3921
+ react: 19.1.0
3922
+ use-sync-external-store: 1.6.0(react@19.1.0)
3923
+
3924
+ tailwind-merge@3.3.1: {}
3925
+
3926
+ tailwindcss@4.1.14: {}
3927
+
3928
+ tapable@2.3.0: {}
3929
+
3930
+ tar@7.5.1:
3931
+ dependencies:
3932
+ '@isaacs/fs-minipass': 4.0.1
3933
+ chownr: 3.0.0
3934
+ minipass: 7.1.2
3935
+ minizlib: 3.1.0
3936
+ yallist: 5.0.0
3937
+
3938
+ tinyglobby@0.2.15:
3939
+ dependencies:
3940
+ fdir: 6.5.0(picomatch@4.0.3)
3941
+ picomatch: 4.0.3
3942
+
3943
+ to-regex-range@5.0.1:
3944
+ dependencies:
3945
+ is-number: 7.0.0
3946
+
3947
+ ts-api-utils@2.1.0(typescript@5.9.3):
3948
+ dependencies:
3949
+ typescript: 5.9.3
3950
+
3951
+ ts-node@10.9.2(@types/node@20.19.22)(typescript@5.9.3):
3952
+ dependencies:
3953
+ '@cspotcode/source-map-support': 0.8.1
3954
+ '@tsconfig/node10': 1.0.11
3955
+ '@tsconfig/node12': 1.0.11
3956
+ '@tsconfig/node14': 1.0.3
3957
+ '@tsconfig/node16': 1.0.4
3958
+ '@types/node': 20.19.22
3959
+ acorn: 8.15.0
3960
+ acorn-walk: 8.3.4
3961
+ arg: 4.1.3
3962
+ create-require: 1.1.1
3963
+ diff: 4.0.2
3964
+ make-error: 1.3.6
3965
+ typescript: 5.9.3
3966
+ v8-compile-cache-lib: 3.0.1
3967
+ yn: 3.1.1
3968
+
3969
+ tsconfig-paths@3.15.0:
3970
+ dependencies:
3971
+ '@types/json5': 0.0.29
3972
+ json5: 1.0.2
3973
+ minimist: 1.2.8
3974
+ strip-bom: 3.0.0
3975
+
3976
+ tslib@2.8.1: {}
3977
+
3978
+ tw-animate-css@1.4.0: {}
3979
+
3980
+ type-check@0.4.0:
3981
+ dependencies:
3982
+ prelude-ls: 1.2.1
3983
+
3984
+ typed-array-buffer@1.0.3:
3985
+ dependencies:
3986
+ call-bound: 1.0.4
3987
+ es-errors: 1.3.0
3988
+ is-typed-array: 1.1.15
3989
+
3990
+ typed-array-byte-length@1.0.3:
3991
+ dependencies:
3992
+ call-bind: 1.0.8
3993
+ for-each: 0.3.5
3994
+ gopd: 1.2.0
3995
+ has-proto: 1.2.0
3996
+ is-typed-array: 1.1.15
3997
+
3998
+ typed-array-byte-offset@1.0.4:
3999
+ dependencies:
4000
+ available-typed-arrays: 1.0.7
4001
+ call-bind: 1.0.8
4002
+ for-each: 0.3.5
4003
+ gopd: 1.2.0
4004
+ has-proto: 1.2.0
4005
+ is-typed-array: 1.1.15
4006
+ reflect.getprototypeof: 1.0.10
4007
+
4008
+ typed-array-length@1.0.7:
4009
+ dependencies:
4010
+ call-bind: 1.0.8
4011
+ for-each: 0.3.5
4012
+ gopd: 1.2.0
4013
+ is-typed-array: 1.1.15
4014
+ possible-typed-array-names: 1.1.0
4015
+ reflect.getprototypeof: 1.0.10
4016
+
4017
+ typescript@5.9.3: {}
4018
+
4019
+ unbox-primitive@1.1.0:
4020
+ dependencies:
4021
+ call-bound: 1.0.4
4022
+ has-bigints: 1.1.0
4023
+ has-symbols: 1.1.0
4024
+ which-boxed-primitive: 1.1.1
4025
+
4026
+ undici-types@6.21.0: {}
4027
+
4028
+ unrs-resolver@1.11.1:
4029
+ dependencies:
4030
+ napi-postinstall: 0.3.4
4031
+ optionalDependencies:
4032
+ '@unrs/resolver-binding-android-arm-eabi': 1.11.1
4033
+ '@unrs/resolver-binding-android-arm64': 1.11.1
4034
+ '@unrs/resolver-binding-darwin-arm64': 1.11.1
4035
+ '@unrs/resolver-binding-darwin-x64': 1.11.1
4036
+ '@unrs/resolver-binding-freebsd-x64': 1.11.1
4037
+ '@unrs/resolver-binding-linux-arm-gnueabihf': 1.11.1
4038
+ '@unrs/resolver-binding-linux-arm-musleabihf': 1.11.1
4039
+ '@unrs/resolver-binding-linux-arm64-gnu': 1.11.1
4040
+ '@unrs/resolver-binding-linux-arm64-musl': 1.11.1
4041
+ '@unrs/resolver-binding-linux-ppc64-gnu': 1.11.1
4042
+ '@unrs/resolver-binding-linux-riscv64-gnu': 1.11.1
4043
+ '@unrs/resolver-binding-linux-riscv64-musl': 1.11.1
4044
+ '@unrs/resolver-binding-linux-s390x-gnu': 1.11.1
4045
+ '@unrs/resolver-binding-linux-x64-gnu': 1.11.1
4046
+ '@unrs/resolver-binding-linux-x64-musl': 1.11.1
4047
+ '@unrs/resolver-binding-wasm32-wasi': 1.11.1
4048
+ '@unrs/resolver-binding-win32-arm64-msvc': 1.11.1
4049
+ '@unrs/resolver-binding-win32-ia32-msvc': 1.11.1
4050
+ '@unrs/resolver-binding-win32-x64-msvc': 1.11.1
4051
+
4052
+ uri-js@4.4.1:
4053
+ dependencies:
4054
+ punycode: 2.3.1
4055
+
4056
+ use-sync-external-store@1.6.0(react@19.1.0):
4057
+ dependencies:
4058
+ react: 19.1.0
4059
+
4060
+ v8-compile-cache-lib@3.0.1: {}
4061
+
4062
+ which-boxed-primitive@1.1.1:
4063
+ dependencies:
4064
+ is-bigint: 1.1.0
4065
+ is-boolean-object: 1.2.2
4066
+ is-number-object: 1.1.1
4067
+ is-string: 1.1.1
4068
+ is-symbol: 1.1.1
4069
+
4070
+ which-builtin-type@1.2.1:
4071
+ dependencies:
4072
+ call-bound: 1.0.4
4073
+ function.prototype.name: 1.1.8
4074
+ has-tostringtag: 1.0.2
4075
+ is-async-function: 2.1.1
4076
+ is-date-object: 1.1.0
4077
+ is-finalizationregistry: 1.1.1
4078
+ is-generator-function: 1.1.2
4079
+ is-regex: 1.2.1
4080
+ is-weakref: 1.1.1
4081
+ isarray: 2.0.5
4082
+ which-boxed-primitive: 1.1.1
4083
+ which-collection: 1.0.2
4084
+ which-typed-array: 1.1.19
4085
+
4086
+ which-collection@1.0.2:
4087
+ dependencies:
4088
+ is-map: 2.0.3
4089
+ is-set: 2.0.3
4090
+ is-weakmap: 2.0.2
4091
+ is-weakset: 2.0.4
4092
+
4093
+ which-typed-array@1.1.19:
4094
+ dependencies:
4095
+ available-typed-arrays: 1.0.7
4096
+ call-bind: 1.0.8
4097
+ call-bound: 1.0.4
4098
+ for-each: 0.3.5
4099
+ get-proto: 1.0.1
4100
+ gopd: 1.2.0
4101
+ has-tostringtag: 1.0.2
4102
+
4103
+ which@2.0.2:
4104
+ dependencies:
4105
+ isexe: 2.0.0
4106
+
4107
+ word-wrap@1.2.5: {}
4108
+
4109
+ yallist@5.0.0: {}
4110
+
4111
+ yn@3.1.1: {}
4112
+
4113
+ yocto-queue@0.1.0: {}