pnpm-lock.yaml 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. autoprefixer:
  9. specifier: ^10.4.23
  10. version: 10.4.23(postcss@8.5.6)
  11. i18next:
  12. specifier: ^25.8.0
  13. version: 25.8.0(typescript@5.9.3)
  14. i18next-browser-languagedetector:
  15. specifier: ^8.2.0
  16. version: 8.2.0
  17. lucide-react:
  18. specifier: ^0.563.0
  19. version: 0.563.0(react@19.2.3)
  20. postcss:
  21. specifier: ^8.5.6
  22. version: 8.5.6
  23. react:
  24. specifier: ^19.2.0
  25. version: 19.2.3
  26. react-dom:
  27. specifier: ^19.2.0
  28. version: 19.2.3(react@19.2.3)
  29. react-i18next:
  30. specifier: ^16.5.4
  31. version: 16.5.4(i18next@25.8.0(typescript@5.9.3))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@5.9.3)
  32. react-router-dom:
  33. specifier: ^7.13.0
  34. version: 7.13.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
  35. tailwindcss:
  36. specifier: ^4.1.18
  37. version: 4.1.18
  38. devDependencies:
  39. '@eslint/js':
  40. specifier: ^9.39.1
  41. version: 9.39.2
  42. '@tailwindcss/postcss':
  43. specifier: ^4.1.18
  44. version: 4.1.18
  45. '@types/node':
  46. specifier: ^24.10.1
  47. version: 24.10.9
  48. '@types/react':
  49. specifier: ^19.2.5
  50. version: 19.2.8
  51. '@types/react-dom':
  52. specifier: ^19.2.3
  53. version: 19.2.3(@types/react@19.2.8)
  54. '@vitejs/plugin-react':
  55. specifier: ^5.1.1
  56. version: 5.1.2(vite@7.3.1(@types/node@24.10.9)(jiti@2.6.1)(lightningcss@1.30.2))
  57. eslint:
  58. specifier: ^9.39.1
  59. version: 9.39.2(jiti@2.6.1)
  60. eslint-plugin-react-hooks:
  61. specifier: ^7.0.1
  62. version: 7.0.1(eslint@9.39.2(jiti@2.6.1))
  63. eslint-plugin-react-refresh:
  64. specifier: ^0.4.24
  65. version: 0.4.26(eslint@9.39.2(jiti@2.6.1))
  66. globals:
  67. specifier: ^16.5.0
  68. version: 16.5.0
  69. typescript:
  70. specifier: ~5.9.3
  71. version: 5.9.3
  72. typescript-eslint:
  73. specifier: ^8.46.4
  74. version: 8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
  75. vite:
  76. specifier: ^7.2.4
  77. version: 7.3.1(@types/node@24.10.9)(jiti@2.6.1)(lightningcss@1.30.2)
  78. packages:
  79. '@alloc/quick-lru@5.2.0':
  80. resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
  81. engines: {node: '>=10'}
  82. '@babel/code-frame@7.28.6':
  83. resolution: {integrity: sha512-JYgintcMjRiCvS8mMECzaEn+m3PfoQiyqukOMCCVQtoJGYJw8j/8LBJEiqkHLkfwCcs74E3pbAUFNg7d9VNJ+Q==}
  84. engines: {node: '>=6.9.0'}
  85. '@babel/compat-data@7.28.6':
  86. resolution: {integrity: sha512-2lfu57JtzctfIrcGMz992hyLlByuzgIk58+hhGCxjKZ3rWI82NnVLjXcaTqkI2NvlcvOskZaiZ5kjUALo3Lpxg==}
  87. engines: {node: '>=6.9.0'}
  88. '@babel/core@7.28.6':
  89. resolution: {integrity: sha512-H3mcG6ZDLTlYfaSNi0iOKkigqMFvkTKlGUYlD8GW7nNOYRrevuA46iTypPyv+06V3fEmvvazfntkBU34L0azAw==}
  90. engines: {node: '>=6.9.0'}
  91. '@babel/generator@7.28.6':
  92. resolution: {integrity: sha512-lOoVRwADj8hjf7al89tvQ2a1lf53Z+7tiXMgpZJL3maQPDxh0DgLMN62B2MKUOFcoodBHLMbDM6WAbKgNy5Suw==}
  93. engines: {node: '>=6.9.0'}
  94. '@babel/helper-compilation-targets@7.28.6':
  95. resolution: {integrity: sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==}
  96. engines: {node: '>=6.9.0'}
  97. '@babel/helper-globals@7.28.0':
  98. resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
  99. engines: {node: '>=6.9.0'}
  100. '@babel/helper-module-imports@7.28.6':
  101. resolution: {integrity: sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==}
  102. engines: {node: '>=6.9.0'}
  103. '@babel/helper-module-transforms@7.28.6':
  104. resolution: {integrity: sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==}
  105. engines: {node: '>=6.9.0'}
  106. peerDependencies:
  107. '@babel/core': ^7.0.0
  108. '@babel/helper-plugin-utils@7.28.6':
  109. resolution: {integrity: sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==}
  110. engines: {node: '>=6.9.0'}
  111. '@babel/helper-string-parser@7.27.1':
  112. resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
  113. engines: {node: '>=6.9.0'}
  114. '@babel/helper-validator-identifier@7.28.5':
  115. resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
  116. engines: {node: '>=6.9.0'}
  117. '@babel/helper-validator-option@7.27.1':
  118. resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
  119. engines: {node: '>=6.9.0'}
  120. '@babel/helpers@7.28.6':
  121. resolution: {integrity: sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==}
  122. engines: {node: '>=6.9.0'}
  123. '@babel/parser@7.28.6':
  124. resolution: {integrity: sha512-TeR9zWR18BvbfPmGbLampPMW+uW1NZnJlRuuHso8i87QZNq2JRF9i6RgxRqtEq+wQGsS19NNTWr2duhnE49mfQ==}
  125. engines: {node: '>=6.0.0'}
  126. hasBin: true
  127. '@babel/plugin-transform-react-jsx-self@7.27.1':
  128. resolution: {integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==}
  129. engines: {node: '>=6.9.0'}
  130. peerDependencies:
  131. '@babel/core': ^7.0.0-0
  132. '@babel/plugin-transform-react-jsx-source@7.27.1':
  133. resolution: {integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==}
  134. engines: {node: '>=6.9.0'}
  135. peerDependencies:
  136. '@babel/core': ^7.0.0-0
  137. '@babel/runtime@7.28.6':
  138. resolution: {integrity: sha512-05WQkdpL9COIMz4LjTxGpPNCdlpyimKppYNoJ5Di5EUObifl8t4tuLuUBBZEpoLYOmfvIWrsp9fCl0HoPRVTdA==}
  139. engines: {node: '>=6.9.0'}
  140. '@babel/template@7.28.6':
  141. resolution: {integrity: sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==}
  142. engines: {node: '>=6.9.0'}
  143. '@babel/traverse@7.28.6':
  144. resolution: {integrity: sha512-fgWX62k02qtjqdSNTAGxmKYY/7FSL9WAS1o2Hu5+I5m9T0yxZzr4cnrfXQ/MX0rIifthCSs6FKTlzYbJcPtMNg==}
  145. engines: {node: '>=6.9.0'}
  146. '@babel/types@7.28.6':
  147. resolution: {integrity: sha512-0ZrskXVEHSWIqZM/sQZ4EV3jZJXRkio/WCxaqKZP1g//CEWEPSfeZFcms4XeKBCHU0ZKnIkdJeU/kF+eRp5lBg==}
  148. engines: {node: '>=6.9.0'}
  149. '@esbuild/aix-ppc64@0.27.2':
  150. resolution: {integrity: sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==}
  151. engines: {node: '>=18'}
  152. cpu: [ppc64]
  153. os: [aix]
  154. '@esbuild/android-arm64@0.27.2':
  155. resolution: {integrity: sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA==}
  156. engines: {node: '>=18'}
  157. cpu: [arm64]
  158. os: [android]
  159. '@esbuild/android-arm@0.27.2':
  160. resolution: {integrity: sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA==}
  161. engines: {node: '>=18'}
  162. cpu: [arm]
  163. os: [android]
  164. '@esbuild/android-x64@0.27.2':
  165. resolution: {integrity: sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A==}
  166. engines: {node: '>=18'}
  167. cpu: [x64]
  168. os: [android]
  169. '@esbuild/darwin-arm64@0.27.2':
  170. resolution: {integrity: sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==}
  171. engines: {node: '>=18'}
  172. cpu: [arm64]
  173. os: [darwin]
  174. '@esbuild/darwin-x64@0.27.2':
  175. resolution: {integrity: sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA==}
  176. engines: {node: '>=18'}
  177. cpu: [x64]
  178. os: [darwin]
  179. '@esbuild/freebsd-arm64@0.27.2':
  180. resolution: {integrity: sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g==}
  181. engines: {node: '>=18'}
  182. cpu: [arm64]
  183. os: [freebsd]
  184. '@esbuild/freebsd-x64@0.27.2':
  185. resolution: {integrity: sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA==}
  186. engines: {node: '>=18'}
  187. cpu: [x64]
  188. os: [freebsd]
  189. '@esbuild/linux-arm64@0.27.2':
  190. resolution: {integrity: sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw==}
  191. engines: {node: '>=18'}
  192. cpu: [arm64]
  193. os: [linux]
  194. '@esbuild/linux-arm@0.27.2':
  195. resolution: {integrity: sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw==}
  196. engines: {node: '>=18'}
  197. cpu: [arm]
  198. os: [linux]
  199. '@esbuild/linux-ia32@0.27.2':
  200. resolution: {integrity: sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w==}
  201. engines: {node: '>=18'}
  202. cpu: [ia32]
  203. os: [linux]
  204. '@esbuild/linux-loong64@0.27.2':
  205. resolution: {integrity: sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg==}
  206. engines: {node: '>=18'}
  207. cpu: [loong64]
  208. os: [linux]
  209. '@esbuild/linux-mips64el@0.27.2':
  210. resolution: {integrity: sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw==}
  211. engines: {node: '>=18'}
  212. cpu: [mips64el]
  213. os: [linux]
  214. '@esbuild/linux-ppc64@0.27.2':
  215. resolution: {integrity: sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==}
  216. engines: {node: '>=18'}
  217. cpu: [ppc64]
  218. os: [linux]
  219. '@esbuild/linux-riscv64@0.27.2':
  220. resolution: {integrity: sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA==}
  221. engines: {node: '>=18'}
  222. cpu: [riscv64]
  223. os: [linux]
  224. '@esbuild/linux-s390x@0.27.2':
  225. resolution: {integrity: sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w==}
  226. engines: {node: '>=18'}
  227. cpu: [s390x]
  228. os: [linux]
  229. '@esbuild/linux-x64@0.27.2':
  230. resolution: {integrity: sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA==}
  231. engines: {node: '>=18'}
  232. cpu: [x64]
  233. os: [linux]
  234. '@esbuild/netbsd-arm64@0.27.2':
  235. resolution: {integrity: sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw==}
  236. engines: {node: '>=18'}
  237. cpu: [arm64]
  238. os: [netbsd]
  239. '@esbuild/netbsd-x64@0.27.2':
  240. resolution: {integrity: sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA==}
  241. engines: {node: '>=18'}
  242. cpu: [x64]
  243. os: [netbsd]
  244. '@esbuild/openbsd-arm64@0.27.2':
  245. resolution: {integrity: sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA==}
  246. engines: {node: '>=18'}
  247. cpu: [arm64]
  248. os: [openbsd]
  249. '@esbuild/openbsd-x64@0.27.2':
  250. resolution: {integrity: sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg==}
  251. engines: {node: '>=18'}
  252. cpu: [x64]
  253. os: [openbsd]
  254. '@esbuild/openharmony-arm64@0.27.2':
  255. resolution: {integrity: sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag==}
  256. engines: {node: '>=18'}
  257. cpu: [arm64]
  258. os: [openharmony]
  259. '@esbuild/sunos-x64@0.27.2':
  260. resolution: {integrity: sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==}
  261. engines: {node: '>=18'}
  262. cpu: [x64]
  263. os: [sunos]
  264. '@esbuild/win32-arm64@0.27.2':
  265. resolution: {integrity: sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg==}
  266. engines: {node: '>=18'}
  267. cpu: [arm64]
  268. os: [win32]
  269. '@esbuild/win32-ia32@0.27.2':
  270. resolution: {integrity: sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ==}
  271. engines: {node: '>=18'}
  272. cpu: [ia32]
  273. os: [win32]
  274. '@esbuild/win32-x64@0.27.2':
  275. resolution: {integrity: sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ==}
  276. engines: {node: '>=18'}
  277. cpu: [x64]
  278. os: [win32]
  279. '@eslint-community/eslint-utils@4.9.1':
  280. resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==}
  281. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  282. peerDependencies:
  283. eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
  284. '@eslint-community/regexpp@4.12.2':
  285. resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
  286. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  287. '@eslint/config-array@0.21.1':
  288. resolution: {integrity: sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==}
  289. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  290. '@eslint/config-helpers@0.4.2':
  291. resolution: {integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==}
  292. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  293. '@eslint/core@0.17.0':
  294. resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==}
  295. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  296. '@eslint/eslintrc@3.3.3':
  297. resolution: {integrity: sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ==}
  298. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  299. '@eslint/js@9.39.2':
  300. resolution: {integrity: sha512-q1mjIoW1VX4IvSocvM/vbTiveKC4k9eLrajNEuSsmjymSDEbpGddtpfOoN7YGAqBK3NG+uqo8ia4PDTt8buCYA==}
  301. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  302. '@eslint/object-schema@2.1.7':
  303. resolution: {integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==}
  304. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  305. '@eslint/plugin-kit@0.4.1':
  306. resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==}
  307. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  308. '@humanfs/core@0.19.1':
  309. resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
  310. engines: {node: '>=18.18.0'}
  311. '@humanfs/node@0.16.7':
  312. resolution: {integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==}
  313. engines: {node: '>=18.18.0'}
  314. '@humanwhocodes/module-importer@1.0.1':
  315. resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
  316. engines: {node: '>=12.22'}
  317. '@humanwhocodes/retry@0.4.3':
  318. resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
  319. engines: {node: '>=18.18'}
  320. '@jridgewell/gen-mapping@0.3.13':
  321. resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
  322. '@jridgewell/remapping@2.3.5':
  323. resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
  324. '@jridgewell/resolve-uri@3.1.2':
  325. resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
  326. engines: {node: '>=6.0.0'}
  327. '@jridgewell/sourcemap-codec@1.5.5':
  328. resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
  329. '@jridgewell/trace-mapping@0.3.31':
  330. resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
  331. '@rolldown/pluginutils@1.0.0-beta.53':
  332. resolution: {integrity: sha512-vENRlFU4YbrwVqNDZ7fLvy+JR1CRkyr01jhSiDpE1u6py3OMzQfztQU2jxykW3ALNxO4kSlqIDeYyD0Y9RcQeQ==}
  333. '@rollup/rollup-android-arm-eabi@4.55.1':
  334. resolution: {integrity: sha512-9R0DM/ykwfGIlNu6+2U09ga0WXeZ9MRC2Ter8jnz8415VbuIykVuc6bhdrbORFZANDmTDvq26mJrEVTl8TdnDg==}
  335. cpu: [arm]
  336. os: [android]
  337. '@rollup/rollup-android-arm64@4.55.1':
  338. resolution: {integrity: sha512-eFZCb1YUqhTysgW3sj/55du5cG57S7UTNtdMjCW7LwVcj3dTTcowCsC8p7uBdzKsZYa8J7IDE8lhMI+HX1vQvg==}
  339. cpu: [arm64]
  340. os: [android]
  341. '@rollup/rollup-darwin-arm64@4.55.1':
  342. resolution: {integrity: sha512-p3grE2PHcQm2e8PSGZdzIhCKbMCw/xi9XvMPErPhwO17vxtvCN5FEA2mSLgmKlCjHGMQTP6phuQTYWUnKewwGg==}
  343. cpu: [arm64]
  344. os: [darwin]
  345. '@rollup/rollup-darwin-x64@4.55.1':
  346. resolution: {integrity: sha512-rDUjG25C9qoTm+e02Esi+aqTKSBYwVTaoS1wxcN47/Luqef57Vgp96xNANwt5npq9GDxsH7kXxNkJVEsWEOEaQ==}
  347. cpu: [x64]
  348. os: [darwin]
  349. '@rollup/rollup-freebsd-arm64@4.55.1':
  350. resolution: {integrity: sha512-+JiU7Jbp5cdxekIgdte0jfcu5oqw4GCKr6i3PJTlXTCU5H5Fvtkpbs4XJHRmWNXF+hKmn4v7ogI5OQPaupJgOg==}
  351. cpu: [arm64]
  352. os: [freebsd]
  353. '@rollup/rollup-freebsd-x64@4.55.1':
  354. resolution: {integrity: sha512-V5xC1tOVWtLLmr3YUk2f6EJK4qksksOYiz/TCsFHu/R+woubcLWdC9nZQmwjOAbmExBIVKsm1/wKmEy4z4u4Bw==}
  355. cpu: [x64]
  356. os: [freebsd]
  357. '@rollup/rollup-linux-arm-gnueabihf@4.55.1':
  358. resolution: {integrity: sha512-Rn3n+FUk2J5VWx+ywrG/HGPTD9jXNbicRtTM11e/uorplArnXZYsVifnPPqNNP5BsO3roI4n8332ukpY/zN7rQ==}
  359. cpu: [arm]
  360. os: [linux]
  361. '@rollup/rollup-linux-arm-musleabihf@4.55.1':
  362. resolution: {integrity: sha512-grPNWydeKtc1aEdrJDWk4opD7nFtQbMmV7769hiAaYyUKCT1faPRm2av8CX1YJsZ4TLAZcg9gTR1KvEzoLjXkg==}
  363. cpu: [arm]
  364. os: [linux]
  365. '@rollup/rollup-linux-arm64-gnu@4.55.1':
  366. resolution: {integrity: sha512-a59mwd1k6x8tXKcUxSyISiquLwB5pX+fJW9TkWU46lCqD/GRDe9uDN31jrMmVP3feI3mhAdvcCClhV8V5MhJFQ==}
  367. cpu: [arm64]
  368. os: [linux]
  369. '@rollup/rollup-linux-arm64-musl@4.55.1':
  370. resolution: {integrity: sha512-puS1MEgWX5GsHSoiAsF0TYrpomdvkaXm0CofIMG5uVkP6IBV+ZO9xhC5YEN49nsgYo1DuuMquF9+7EDBVYu4uA==}
  371. cpu: [arm64]
  372. os: [linux]
  373. '@rollup/rollup-linux-loong64-gnu@4.55.1':
  374. resolution: {integrity: sha512-r3Wv40in+lTsULSb6nnoudVbARdOwb2u5fpeoOAZjFLznp6tDU8kd+GTHmJoqZ9lt6/Sys33KdIHUaQihFcu7g==}
  375. cpu: [loong64]
  376. os: [linux]
  377. '@rollup/rollup-linux-loong64-musl@4.55.1':
  378. resolution: {integrity: sha512-MR8c0+UxAlB22Fq4R+aQSPBayvYa3+9DrwG/i1TKQXFYEaoW3B5b/rkSRIypcZDdWjWnpcvxbNaAJDcSbJU3Lw==}
  379. cpu: [loong64]
  380. os: [linux]
  381. '@rollup/rollup-linux-ppc64-gnu@4.55.1':
  382. resolution: {integrity: sha512-3KhoECe1BRlSYpMTeVrD4sh2Pw2xgt4jzNSZIIPLFEsnQn9gAnZagW9+VqDqAHgm1Xc77LzJOo2LdigS5qZ+gw==}
  383. cpu: [ppc64]
  384. os: [linux]
  385. '@rollup/rollup-linux-ppc64-musl@4.55.1':
  386. resolution: {integrity: sha512-ziR1OuZx0vdYZZ30vueNZTg73alF59DicYrPViG0NEgDVN8/Jl87zkAPu4u6VjZST2llgEUjaiNl9JM6HH1Vdw==}
  387. cpu: [ppc64]
  388. os: [linux]
  389. '@rollup/rollup-linux-riscv64-gnu@4.55.1':
  390. resolution: {integrity: sha512-uW0Y12ih2XJRERZ4jAfKamTyIHVMPQnTZcQjme2HMVDAHY4amf5u414OqNYC+x+LzRdRcnIG1YodLrrtA8xsxw==}
  391. cpu: [riscv64]
  392. os: [linux]
  393. '@rollup/rollup-linux-riscv64-musl@4.55.1':
  394. resolution: {integrity: sha512-u9yZ0jUkOED1BFrqu3BwMQoixvGHGZ+JhJNkNKY/hyoEgOwlqKb62qu+7UjbPSHYjiVy8kKJHvXKv5coH4wDeg==}
  395. cpu: [riscv64]
  396. os: [linux]
  397. '@rollup/rollup-linux-s390x-gnu@4.55.1':
  398. resolution: {integrity: sha512-/0PenBCmqM4ZUd0190j7J0UsQ/1nsi735iPRakO8iPciE7BQ495Y6msPzaOmvx0/pn+eJVVlZrNrSh4WSYLxNg==}
  399. cpu: [s390x]
  400. os: [linux]
  401. '@rollup/rollup-linux-x64-gnu@4.55.1':
  402. resolution: {integrity: sha512-a8G4wiQxQG2BAvo+gU6XrReRRqj+pLS2NGXKm8io19goR+K8lw269eTrPkSdDTALwMmJp4th2Uh0D8J9bEV1vg==}
  403. cpu: [x64]
  404. os: [linux]
  405. '@rollup/rollup-linux-x64-musl@4.55.1':
  406. resolution: {integrity: sha512-bD+zjpFrMpP/hqkfEcnjXWHMw5BIghGisOKPj+2NaNDuVT+8Ds4mPf3XcPHuat1tz89WRL+1wbcxKY3WSbiT7w==}
  407. cpu: [x64]
  408. os: [linux]
  409. '@rollup/rollup-openbsd-x64@4.55.1':
  410. resolution: {integrity: sha512-eLXw0dOiqE4QmvikfQ6yjgkg/xDM+MdU9YJuP4ySTibXU0oAvnEWXt7UDJmD4UkYialMfOGFPJnIHSe/kdzPxg==}
  411. cpu: [x64]
  412. os: [openbsd]
  413. '@rollup/rollup-openharmony-arm64@4.55.1':
  414. resolution: {integrity: sha512-xzm44KgEP11te3S2HCSyYf5zIzWmx3n8HDCc7EE59+lTcswEWNpvMLfd9uJvVX8LCg9QWG67Xt75AuHn4vgsXw==}
  415. cpu: [arm64]
  416. os: [openharmony]
  417. '@rollup/rollup-win32-arm64-msvc@4.55.1':
  418. resolution: {integrity: sha512-yR6Bl3tMC/gBok5cz/Qi0xYnVbIxGx5Fcf/ca0eB6/6JwOY+SRUcJfI0OpeTpPls7f194as62thCt/2BjxYN8g==}
  419. cpu: [arm64]
  420. os: [win32]
  421. '@rollup/rollup-win32-ia32-msvc@4.55.1':
  422. resolution: {integrity: sha512-3fZBidchE0eY0oFZBnekYCfg+5wAB0mbpCBuofh5mZuzIU/4jIVkbESmd2dOsFNS78b53CYv3OAtwqkZZmU5nA==}
  423. cpu: [ia32]
  424. os: [win32]
  425. '@rollup/rollup-win32-x64-gnu@4.55.1':
  426. resolution: {integrity: sha512-xGGY5pXj69IxKb4yv/POoocPy/qmEGhimy/FoTpTSVju3FYXUQQMFCaZZXJVidsmGxRioZAwpThl/4zX41gRKg==}
  427. cpu: [x64]
  428. os: [win32]
  429. '@rollup/rollup-win32-x64-msvc@4.55.1':
  430. resolution: {integrity: sha512-SPEpaL6DX4rmcXtnhdrQYgzQ5W2uW3SCJch88lB2zImhJRhIIK44fkUrgIV/Q8yUNfw5oyZ5vkeQsZLhCb06lw==}
  431. cpu: [x64]
  432. os: [win32]
  433. '@tailwindcss/node@4.1.18':
  434. resolution: {integrity: sha512-DoR7U1P7iYhw16qJ49fgXUlry1t4CpXeErJHnQ44JgTSKMaZUdf17cfn5mHchfJ4KRBZRFA/Coo+MUF5+gOaCQ==}
  435. '@tailwindcss/oxide-android-arm64@4.1.18':
  436. resolution: {integrity: sha512-dJHz7+Ugr9U/diKJA0W6N/6/cjI+ZTAoxPf9Iz9BFRF2GzEX8IvXxFIi/dZBloVJX/MZGvRuFA9rqwdiIEZQ0Q==}
  437. engines: {node: '>= 10'}
  438. cpu: [arm64]
  439. os: [android]
  440. '@tailwindcss/oxide-darwin-arm64@4.1.18':
  441. resolution: {integrity: sha512-Gc2q4Qhs660bhjyBSKgq6BYvwDz4G+BuyJ5H1xfhmDR3D8HnHCmT/BSkvSL0vQLy/nkMLY20PQ2OoYMO15Jd0A==}
  442. engines: {node: '>= 10'}
  443. cpu: [arm64]
  444. os: [darwin]
  445. '@tailwindcss/oxide-darwin-x64@4.1.18':
  446. resolution: {integrity: sha512-FL5oxr2xQsFrc3X9o1fjHKBYBMD1QZNyc1Xzw/h5Qu4XnEBi3dZn96HcHm41c/euGV+GRiXFfh2hUCyKi/e+yw==}
  447. engines: {node: '>= 10'}
  448. cpu: [x64]
  449. os: [darwin]
  450. '@tailwindcss/oxide-freebsd-x64@4.1.18':
  451. resolution: {integrity: sha512-Fj+RHgu5bDodmV1dM9yAxlfJwkkWvLiRjbhuO2LEtwtlYlBgiAT4x/j5wQr1tC3SANAgD+0YcmWVrj8R9trVMA==}
  452. engines: {node: '>= 10'}
  453. cpu: [x64]
  454. os: [freebsd]
  455. '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.18':
  456. resolution: {integrity: sha512-Fp+Wzk/Ws4dZn+LV2Nqx3IilnhH51YZoRaYHQsVq3RQvEl+71VGKFpkfHrLM/Li+kt5c0DJe/bHXK1eHgDmdiA==}
  457. engines: {node: '>= 10'}
  458. cpu: [arm]
  459. os: [linux]
  460. '@tailwindcss/oxide-linux-arm64-gnu@4.1.18':
  461. resolution: {integrity: sha512-S0n3jboLysNbh55Vrt7pk9wgpyTTPD0fdQeh7wQfMqLPM/Hrxi+dVsLsPrycQjGKEQk85Kgbx+6+QnYNiHalnw==}
  462. engines: {node: '>= 10'}
  463. cpu: [arm64]
  464. os: [linux]
  465. '@tailwindcss/oxide-linux-arm64-musl@4.1.18':
  466. resolution: {integrity: sha512-1px92582HkPQlaaCkdRcio71p8bc8i/ap5807tPRDK/uw953cauQBT8c5tVGkOwrHMfc2Yh6UuxaH4vtTjGvHg==}
  467. engines: {node: '>= 10'}
  468. cpu: [arm64]
  469. os: [linux]
  470. '@tailwindcss/oxide-linux-x64-gnu@4.1.18':
  471. resolution: {integrity: sha512-v3gyT0ivkfBLoZGF9LyHmts0Isc8jHZyVcbzio6Wpzifg/+5ZJpDiRiUhDLkcr7f/r38SWNe7ucxmGW3j3Kb/g==}
  472. engines: {node: '>= 10'}
  473. cpu: [x64]
  474. os: [linux]
  475. '@tailwindcss/oxide-linux-x64-musl@4.1.18':
  476. resolution: {integrity: sha512-bhJ2y2OQNlcRwwgOAGMY0xTFStt4/wyU6pvI6LSuZpRgKQwxTec0/3Scu91O8ir7qCR3AuepQKLU/kX99FouqQ==}
  477. engines: {node: '>= 10'}
  478. cpu: [x64]
  479. os: [linux]
  480. '@tailwindcss/oxide-wasm32-wasi@4.1.18':
  481. resolution: {integrity: sha512-LffYTvPjODiP6PT16oNeUQJzNVyJl1cjIebq/rWWBF+3eDst5JGEFSc5cWxyRCJ0Mxl+KyIkqRxk1XPEs9x8TA==}
  482. engines: {node: '>=14.0.0'}
  483. cpu: [wasm32]
  484. bundledDependencies:
  485. - '@napi-rs/wasm-runtime'
  486. - '@emnapi/core'
  487. - '@emnapi/runtime'
  488. - '@tybys/wasm-util'
  489. - '@emnapi/wasi-threads'
  490. - tslib
  491. '@tailwindcss/oxide-win32-arm64-msvc@4.1.18':
  492. resolution: {integrity: sha512-HjSA7mr9HmC8fu6bdsZvZ+dhjyGCLdotjVOgLA2vEqxEBZaQo9YTX4kwgEvPCpRh8o4uWc4J/wEoFzhEmjvPbA==}
  493. engines: {node: '>= 10'}
  494. cpu: [arm64]
  495. os: [win32]
  496. '@tailwindcss/oxide-win32-x64-msvc@4.1.18':
  497. resolution: {integrity: sha512-bJWbyYpUlqamC8dpR7pfjA0I7vdF6t5VpUGMWRkXVE3AXgIZjYUYAK7II1GNaxR8J1SSrSrppRar8G++JekE3Q==}
  498. engines: {node: '>= 10'}
  499. cpu: [x64]
  500. os: [win32]
  501. '@tailwindcss/oxide@4.1.18':
  502. resolution: {integrity: sha512-EgCR5tTS5bUSKQgzeMClT6iCY3ToqE1y+ZB0AKldj809QXk1Y+3jB0upOYZrn9aGIzPtUsP7sX4QQ4XtjBB95A==}
  503. engines: {node: '>= 10'}
  504. '@tailwindcss/postcss@4.1.18':
  505. resolution: {integrity: sha512-Ce0GFnzAOuPyfV5SxjXGn0CubwGcuDB0zcdaPuCSzAa/2vII24JTkH+I6jcbXLb1ctjZMZZI6OjDaLPJQL1S0g==}
  506. '@types/babel__core@7.20.5':
  507. resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
  508. '@types/babel__generator@7.27.0':
  509. resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==}
  510. '@types/babel__template@7.4.4':
  511. resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
  512. '@types/babel__traverse@7.28.0':
  513. resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==}
  514. '@types/estree@1.0.8':
  515. resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
  516. '@types/json-schema@7.0.15':
  517. resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
  518. '@types/node@24.10.9':
  519. resolution: {integrity: sha512-ne4A0IpG3+2ETuREInjPNhUGis1SFjv1d5asp8MzEAGtOZeTeHVDOYqOgqfhvseqg/iXty2hjBf1zAOb7RNiNw==}
  520. '@types/react-dom@19.2.3':
  521. resolution: {integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==}
  522. peerDependencies:
  523. '@types/react': ^19.2.0
  524. '@types/react@19.2.8':
  525. resolution: {integrity: sha512-3MbSL37jEchWZz2p2mjntRZtPt837ij10ApxKfgmXCTuHWagYg7iA5bqPw6C8BMPfwidlvfPI/fxOc42HLhcyg==}
  526. '@typescript-eslint/eslint-plugin@8.53.0':
  527. resolution: {integrity: sha512-eEXsVvLPu8Z4PkFibtuFJLJOTAV/nPdgtSjkGoPpddpFk3/ym2oy97jynY6ic2m6+nc5M8SE1e9v/mHKsulcJg==}
  528. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  529. peerDependencies:
  530. '@typescript-eslint/parser': ^8.53.0
  531. eslint: ^8.57.0 || ^9.0.0
  532. typescript: '>=4.8.4 <6.0.0'
  533. '@typescript-eslint/parser@8.53.0':
  534. resolution: {integrity: sha512-npiaib8XzbjtzS2N4HlqPvlpxpmZ14FjSJrteZpPxGUaYPlvhzlzUZ4mZyABo0EFrOWnvyd0Xxroq//hKhtAWg==}
  535. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  536. peerDependencies:
  537. eslint: ^8.57.0 || ^9.0.0
  538. typescript: '>=4.8.4 <6.0.0'
  539. '@typescript-eslint/project-service@8.53.0':
  540. resolution: {integrity: sha512-Bl6Gdr7NqkqIP5yP9z1JU///Nmes4Eose6L1HwpuVHwScgDPPuEWbUVhvlZmb8hy0vX9syLk5EGNL700WcBlbg==}
  541. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  542. peerDependencies:
  543. typescript: '>=4.8.4 <6.0.0'
  544. '@typescript-eslint/scope-manager@8.53.0':
  545. resolution: {integrity: sha512-kWNj3l01eOGSdVBnfAF2K1BTh06WS0Yet6JUgb9Cmkqaz3Jlu0fdVUjj9UI8gPidBWSMqDIglmEXifSgDT/D0g==}
  546. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  547. '@typescript-eslint/tsconfig-utils@8.53.0':
  548. resolution: {integrity: sha512-K6Sc0R5GIG6dNoPdOooQ+KtvT5KCKAvTcY8h2rIuul19vxH5OTQk7ArKkd4yTzkw66WnNY0kPPzzcmWA+XRmiA==}
  549. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  550. peerDependencies:
  551. typescript: '>=4.8.4 <6.0.0'
  552. '@typescript-eslint/type-utils@8.53.0':
  553. resolution: {integrity: sha512-BBAUhlx7g4SmcLhn8cnbxoxtmS7hcq39xKCgiutL3oNx1TaIp+cny51s8ewnKMpVUKQUGb41RAUWZ9kxYdovuw==}
  554. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  555. peerDependencies:
  556. eslint: ^8.57.0 || ^9.0.0
  557. typescript: '>=4.8.4 <6.0.0'
  558. '@typescript-eslint/types@8.53.0':
  559. resolution: {integrity: sha512-Bmh9KX31Vlxa13+PqPvt4RzKRN1XORYSLlAE+sO1i28NkisGbTtSLFVB3l7PWdHtR3E0mVMuC7JilWJ99m2HxQ==}
  560. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  561. '@typescript-eslint/typescript-estree@8.53.0':
  562. resolution: {integrity: sha512-pw0c0Gdo7Z4xOG987u3nJ8akL9093yEEKv8QTJ+Bhkghj1xyj8cgPaavlr9rq8h7+s6plUJ4QJYw2gCZodqmGw==}
  563. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  564. peerDependencies:
  565. typescript: '>=4.8.4 <6.0.0'
  566. '@typescript-eslint/utils@8.53.0':
  567. resolution: {integrity: sha512-XDY4mXTez3Z1iRDI5mbRhH4DFSt46oaIFsLg+Zn97+sYrXACziXSQcSelMybnVZ5pa1P6xYkPr5cMJyunM1ZDA==}
  568. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  569. peerDependencies:
  570. eslint: ^8.57.0 || ^9.0.0
  571. typescript: '>=4.8.4 <6.0.0'
  572. '@typescript-eslint/visitor-keys@8.53.0':
  573. resolution: {integrity: sha512-LZ2NqIHFhvFwxG0qZeLL9DvdNAHPGCY5dIRwBhyYeU+LfLhcStE1ImjsuTG/WaVh3XysGaeLW8Rqq7cGkPCFvw==}
  574. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  575. '@vitejs/plugin-react@5.1.2':
  576. resolution: {integrity: sha512-EcA07pHJouywpzsoTUqNh5NwGayl2PPVEJKUSinGGSxFGYn+shYbqMGBg6FXDqgXum9Ou/ecb+411ssw8HImJQ==}
  577. engines: {node: ^20.19.0 || >=22.12.0}
  578. peerDependencies:
  579. vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
  580. acorn-jsx@5.3.2:
  581. resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
  582. peerDependencies:
  583. acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
  584. acorn@8.15.0:
  585. resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==}
  586. engines: {node: '>=0.4.0'}
  587. hasBin: true
  588. ajv@6.12.6:
  589. resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
  590. ansi-styles@4.3.0:
  591. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  592. engines: {node: '>=8'}
  593. argparse@2.0.1:
  594. resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
  595. autoprefixer@10.4.23:
  596. resolution: {integrity: sha512-YYTXSFulfwytnjAPlw8QHncHJmlvFKtczb8InXaAx9Q0LbfDnfEYDE55omerIJKihhmU61Ft+cAOSzQVaBUmeA==}
  597. engines: {node: ^10 || ^12 || >=14}
  598. hasBin: true
  599. peerDependencies:
  600. postcss: ^8.1.0
  601. balanced-match@1.0.2:
  602. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  603. baseline-browser-mapping@2.9.15:
  604. resolution: {integrity: sha512-kX8h7K2srmDyYnXRIppo4AH/wYgzWVCs+eKr3RusRSQ5PvRYoEFmR/I0PbdTjKFAoKqp5+kbxnNTFO9jOfSVJg==}
  605. hasBin: true
  606. brace-expansion@1.1.12:
  607. resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
  608. brace-expansion@2.0.2:
  609. resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
  610. browserslist@4.28.1:
  611. resolution: {integrity: sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==}
  612. engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
  613. hasBin: true
  614. callsites@3.1.0:
  615. resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
  616. engines: {node: '>=6'}
  617. caniuse-lite@1.0.30001764:
  618. resolution: {integrity: sha512-9JGuzl2M+vPL+pz70gtMF9sHdMFbY9FJaQBi186cHKH3pSzDvzoUJUPV6fqiKIMyXbud9ZLg4F3Yza1vJ1+93g==}
  619. chalk@4.1.2:
  620. resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
  621. engines: {node: '>=10'}
  622. color-convert@2.0.1:
  623. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  624. engines: {node: '>=7.0.0'}
  625. color-name@1.1.4:
  626. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  627. concat-map@0.0.1:
  628. resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
  629. convert-source-map@2.0.0:
  630. resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
  631. cookie@1.1.1:
  632. resolution: {integrity: sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==}
  633. engines: {node: '>=18'}
  634. cross-spawn@7.0.6:
  635. resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
  636. engines: {node: '>= 8'}
  637. csstype@3.2.3:
  638. resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
  639. debug@4.4.3:
  640. resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
  641. engines: {node: '>=6.0'}
  642. peerDependencies:
  643. supports-color: '*'
  644. peerDependenciesMeta:
  645. supports-color:
  646. optional: true
  647. deep-is@0.1.4:
  648. resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
  649. detect-libc@2.1.2:
  650. resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
  651. engines: {node: '>=8'}
  652. electron-to-chromium@1.5.267:
  653. resolution: {integrity: sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==}
  654. enhanced-resolve@5.18.4:
  655. resolution: {integrity: sha512-LgQMM4WXU3QI+SYgEc2liRgznaD5ojbmY3sb8LxyguVkIg5FxdpTkvk72te2R38/TGKxH634oLxXRGY6d7AP+Q==}
  656. engines: {node: '>=10.13.0'}
  657. esbuild@0.27.2:
  658. resolution: {integrity: sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==}
  659. engines: {node: '>=18'}
  660. hasBin: true
  661. escalade@3.2.0:
  662. resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
  663. engines: {node: '>=6'}
  664. escape-string-regexp@4.0.0:
  665. resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
  666. engines: {node: '>=10'}
  667. eslint-plugin-react-hooks@7.0.1:
  668. resolution: {integrity: sha512-O0d0m04evaNzEPoSW+59Mezf8Qt0InfgGIBJnpC0h3NH/WjUAR7BIKUfysC6todmtiZ/A0oUVS8Gce0WhBrHsA==}
  669. engines: {node: '>=18'}
  670. peerDependencies:
  671. eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
  672. eslint-plugin-react-refresh@0.4.26:
  673. resolution: {integrity: sha512-1RETEylht2O6FM/MvgnyvT+8K21wLqDNg4qD51Zj3guhjt433XbnnkVttHMyaVyAFD03QSV4LPS5iE3VQmO7XQ==}
  674. peerDependencies:
  675. eslint: '>=8.40'
  676. eslint-scope@8.4.0:
  677. resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==}
  678. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  679. eslint-visitor-keys@3.4.3:
  680. resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
  681. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  682. eslint-visitor-keys@4.2.1:
  683. resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
  684. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  685. eslint@9.39.2:
  686. resolution: {integrity: sha512-LEyamqS7W5HB3ujJyvi0HQK/dtVINZvd5mAAp9eT5S/ujByGjiZLCzPcHVzuXbpJDJF/cxwHlfceVUDZ2lnSTw==}
  687. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  688. hasBin: true
  689. peerDependencies:
  690. jiti: '*'
  691. peerDependenciesMeta:
  692. jiti:
  693. optional: true
  694. espree@10.4.0:
  695. resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==}
  696. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  697. esquery@1.7.0:
  698. resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==}
  699. engines: {node: '>=0.10'}
  700. esrecurse@4.3.0:
  701. resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
  702. engines: {node: '>=4.0'}
  703. estraverse@5.3.0:
  704. resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
  705. engines: {node: '>=4.0'}
  706. esutils@2.0.3:
  707. resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
  708. engines: {node: '>=0.10.0'}
  709. fast-deep-equal@3.1.3:
  710. resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
  711. fast-json-stable-stringify@2.1.0:
  712. resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
  713. fast-levenshtein@2.0.6:
  714. resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
  715. fdir@6.5.0:
  716. resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
  717. engines: {node: '>=12.0.0'}
  718. peerDependencies:
  719. picomatch: ^3 || ^4
  720. peerDependenciesMeta:
  721. picomatch:
  722. optional: true
  723. file-entry-cache@8.0.0:
  724. resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
  725. engines: {node: '>=16.0.0'}
  726. find-up@5.0.0:
  727. resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
  728. engines: {node: '>=10'}
  729. flat-cache@4.0.1:
  730. resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
  731. engines: {node: '>=16'}
  732. flatted@3.3.3:
  733. resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
  734. fraction.js@5.3.4:
  735. resolution: {integrity: sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==}
  736. fsevents@2.3.3:
  737. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  738. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  739. os: [darwin]
  740. gensync@1.0.0-beta.2:
  741. resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
  742. engines: {node: '>=6.9.0'}
  743. glob-parent@6.0.2:
  744. resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
  745. engines: {node: '>=10.13.0'}
  746. globals@14.0.0:
  747. resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
  748. engines: {node: '>=18'}
  749. globals@16.5.0:
  750. resolution: {integrity: sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==}
  751. engines: {node: '>=18'}
  752. graceful-fs@4.2.11:
  753. resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
  754. has-flag@4.0.0:
  755. resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
  756. engines: {node: '>=8'}
  757. hermes-estree@0.25.1:
  758. resolution: {integrity: sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==}
  759. hermes-parser@0.25.1:
  760. resolution: {integrity: sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==}
  761. html-parse-stringify@3.0.1:
  762. resolution: {integrity: sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==}
  763. i18next-browser-languagedetector@8.2.0:
  764. resolution: {integrity: sha512-P+3zEKLnOF0qmiesW383vsLdtQVyKtCNA9cjSoKCppTKPQVfKd2W8hbVo5ZhNJKDqeM7BOcvNoKJOjpHh4Js9g==}
  765. i18next@25.8.0:
  766. resolution: {integrity: sha512-urrg4HMFFMQZ2bbKRK7IZ8/CTE7D8H4JRlAwqA2ZwDRFfdd0K/4cdbNNLgfn9mo+I/h9wJu61qJzH7jCFAhUZQ==}
  767. peerDependencies:
  768. typescript: ^5
  769. peerDependenciesMeta:
  770. typescript:
  771. optional: true
  772. ignore@5.3.2:
  773. resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
  774. engines: {node: '>= 4'}
  775. ignore@7.0.5:
  776. resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
  777. engines: {node: '>= 4'}
  778. import-fresh@3.3.1:
  779. resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
  780. engines: {node: '>=6'}
  781. imurmurhash@0.1.4:
  782. resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
  783. engines: {node: '>=0.8.19'}
  784. is-extglob@2.1.1:
  785. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  786. engines: {node: '>=0.10.0'}
  787. is-glob@4.0.3:
  788. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  789. engines: {node: '>=0.10.0'}
  790. isexe@2.0.0:
  791. resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
  792. jiti@2.6.1:
  793. resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==}
  794. hasBin: true
  795. js-tokens@4.0.0:
  796. resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
  797. js-yaml@4.1.1:
  798. resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==}
  799. hasBin: true
  800. jsesc@3.1.0:
  801. resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
  802. engines: {node: '>=6'}
  803. hasBin: true
  804. json-buffer@3.0.1:
  805. resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
  806. json-schema-traverse@0.4.1:
  807. resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
  808. json-stable-stringify-without-jsonify@1.0.1:
  809. resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
  810. json5@2.2.3:
  811. resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
  812. engines: {node: '>=6'}
  813. hasBin: true
  814. keyv@4.5.4:
  815. resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
  816. levn@0.4.1:
  817. resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
  818. engines: {node: '>= 0.8.0'}
  819. lightningcss-android-arm64@1.30.2:
  820. resolution: {integrity: sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==}
  821. engines: {node: '>= 12.0.0'}
  822. cpu: [arm64]
  823. os: [android]
  824. lightningcss-darwin-arm64@1.30.2:
  825. resolution: {integrity: sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==}
  826. engines: {node: '>= 12.0.0'}
  827. cpu: [arm64]
  828. os: [darwin]
  829. lightningcss-darwin-x64@1.30.2:
  830. resolution: {integrity: sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==}
  831. engines: {node: '>= 12.0.0'}
  832. cpu: [x64]
  833. os: [darwin]
  834. lightningcss-freebsd-x64@1.30.2:
  835. resolution: {integrity: sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==}
  836. engines: {node: '>= 12.0.0'}
  837. cpu: [x64]
  838. os: [freebsd]
  839. lightningcss-linux-arm-gnueabihf@1.30.2:
  840. resolution: {integrity: sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==}
  841. engines: {node: '>= 12.0.0'}
  842. cpu: [arm]
  843. os: [linux]
  844. lightningcss-linux-arm64-gnu@1.30.2:
  845. resolution: {integrity: sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==}
  846. engines: {node: '>= 12.0.0'}
  847. cpu: [arm64]
  848. os: [linux]
  849. lightningcss-linux-arm64-musl@1.30.2:
  850. resolution: {integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==}
  851. engines: {node: '>= 12.0.0'}
  852. cpu: [arm64]
  853. os: [linux]
  854. lightningcss-linux-x64-gnu@1.30.2:
  855. resolution: {integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==}
  856. engines: {node: '>= 12.0.0'}
  857. cpu: [x64]
  858. os: [linux]
  859. lightningcss-linux-x64-musl@1.30.2:
  860. resolution: {integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==}
  861. engines: {node: '>= 12.0.0'}
  862. cpu: [x64]
  863. os: [linux]
  864. lightningcss-win32-arm64-msvc@1.30.2:
  865. resolution: {integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==}
  866. engines: {node: '>= 12.0.0'}
  867. cpu: [arm64]
  868. os: [win32]
  869. lightningcss-win32-x64-msvc@1.30.2:
  870. resolution: {integrity: sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==}
  871. engines: {node: '>= 12.0.0'}
  872. cpu: [x64]
  873. os: [win32]
  874. lightningcss@1.30.2:
  875. resolution: {integrity: sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==}
  876. engines: {node: '>= 12.0.0'}
  877. locate-path@6.0.0:
  878. resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
  879. engines: {node: '>=10'}
  880. lodash.merge@4.6.2:
  881. resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
  882. lru-cache@5.1.1:
  883. resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
  884. lucide-react@0.563.0:
  885. resolution: {integrity: sha512-8dXPB2GI4dI8jV4MgUDGBeLdGk8ekfqVZ0BdLcrRzocGgG75ltNEmWS+gE7uokKF/0oSUuczNDT+g9hFJ23FkA==}
  886. peerDependencies:
  887. react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0
  888. magic-string@0.30.21:
  889. resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
  890. minimatch@3.1.2:
  891. resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
  892. minimatch@9.0.5:
  893. resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
  894. engines: {node: '>=16 || 14 >=14.17'}
  895. ms@2.1.3:
  896. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  897. nanoid@3.3.11:
  898. resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
  899. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  900. hasBin: true
  901. natural-compare@1.4.0:
  902. resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
  903. node-releases@2.0.27:
  904. resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
  905. optionator@0.9.4:
  906. resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
  907. engines: {node: '>= 0.8.0'}
  908. p-limit@3.1.0:
  909. resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
  910. engines: {node: '>=10'}
  911. p-locate@5.0.0:
  912. resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
  913. engines: {node: '>=10'}
  914. parent-module@1.0.1:
  915. resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
  916. engines: {node: '>=6'}
  917. path-exists@4.0.0:
  918. resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
  919. engines: {node: '>=8'}
  920. path-key@3.1.1:
  921. resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
  922. engines: {node: '>=8'}
  923. picocolors@1.1.1:
  924. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  925. picomatch@4.0.3:
  926. resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
  927. engines: {node: '>=12'}
  928. postcss-value-parser@4.2.0:
  929. resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
  930. postcss@8.5.6:
  931. resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
  932. engines: {node: ^10 || ^12 || >=14}
  933. prelude-ls@1.2.1:
  934. resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
  935. engines: {node: '>= 0.8.0'}
  936. punycode@2.3.1:
  937. resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
  938. engines: {node: '>=6'}
  939. react-dom@19.2.3:
  940. resolution: {integrity: sha512-yELu4WmLPw5Mr/lmeEpox5rw3RETacE++JgHqQzd2dg+YbJuat3jH4ingc+WPZhxaoFzdv9y33G+F7Nl5O0GBg==}
  941. peerDependencies:
  942. react: ^19.2.3
  943. react-i18next@16.5.4:
  944. resolution: {integrity: sha512-6yj+dcfMncEC21QPhOTsW8mOSO+pzFmT6uvU7XXdvM/Cp38zJkmTeMeKmTrmCMD5ToT79FmiE/mRWiYWcJYW4g==}
  945. peerDependencies:
  946. i18next: '>= 25.6.2'
  947. react: '>= 16.8.0'
  948. react-dom: '*'
  949. react-native: '*'
  950. typescript: ^5
  951. peerDependenciesMeta:
  952. react-dom:
  953. optional: true
  954. react-native:
  955. optional: true
  956. typescript:
  957. optional: true
  958. react-refresh@0.18.0:
  959. resolution: {integrity: sha512-QgT5//D3jfjJb6Gsjxv0Slpj23ip+HtOpnNgnb2S5zU3CB26G/IDPGoy4RJB42wzFE46DRsstbW6tKHoKbhAxw==}
  960. engines: {node: '>=0.10.0'}
  961. react-router-dom@7.13.0:
  962. resolution: {integrity: sha512-5CO/l5Yahi2SKC6rGZ+HDEjpjkGaG/ncEP7eWFTvFxbHP8yeeI0PxTDjimtpXYlR3b3i9/WIL4VJttPrESIf2g==}
  963. engines: {node: '>=20.0.0'}
  964. peerDependencies:
  965. react: '>=18'
  966. react-dom: '>=18'
  967. react-router@7.13.0:
  968. resolution: {integrity: sha512-PZgus8ETambRT17BUm/LL8lX3Of+oiLaPuVTRH3l1eLvSPpKO3AvhAEb5N7ihAFZQrYDqkvvWfFh9p0z9VsjLw==}
  969. engines: {node: '>=20.0.0'}
  970. peerDependencies:
  971. react: '>=18'
  972. react-dom: '>=18'
  973. peerDependenciesMeta:
  974. react-dom:
  975. optional: true
  976. react@19.2.3:
  977. resolution: {integrity: sha512-Ku/hhYbVjOQnXDZFv2+RibmLFGwFdeeKHFcOTlrt7xplBnya5OGn/hIRDsqDiSUcfORsDC7MPxwork8jBwsIWA==}
  978. engines: {node: '>=0.10.0'}
  979. resolve-from@4.0.0:
  980. resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
  981. engines: {node: '>=4'}
  982. rollup@4.55.1:
  983. resolution: {integrity: sha512-wDv/Ht1BNHB4upNbK74s9usvl7hObDnvVzknxqY/E/O3X6rW1U1rV1aENEfJ54eFZDTNo7zv1f5N4edCluH7+A==}
  984. engines: {node: '>=18.0.0', npm: '>=8.0.0'}
  985. hasBin: true
  986. scheduler@0.27.0:
  987. resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==}
  988. semver@6.3.1:
  989. resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
  990. hasBin: true
  991. semver@7.7.3:
  992. resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
  993. engines: {node: '>=10'}
  994. hasBin: true
  995. set-cookie-parser@2.7.2:
  996. resolution: {integrity: sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==}
  997. shebang-command@2.0.0:
  998. resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
  999. engines: {node: '>=8'}
  1000. shebang-regex@3.0.0:
  1001. resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
  1002. engines: {node: '>=8'}
  1003. source-map-js@1.2.1:
  1004. resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  1005. engines: {node: '>=0.10.0'}
  1006. strip-json-comments@3.1.1:
  1007. resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
  1008. engines: {node: '>=8'}
  1009. supports-color@7.2.0:
  1010. resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
  1011. engines: {node: '>=8'}
  1012. tailwindcss@4.1.18:
  1013. resolution: {integrity: sha512-4+Z+0yiYyEtUVCScyfHCxOYP06L5Ne+JiHhY2IjR2KWMIWhJOYZKLSGZaP5HkZ8+bY0cxfzwDE5uOmzFXyIwxw==}
  1014. tapable@2.3.0:
  1015. resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
  1016. engines: {node: '>=6'}
  1017. tinyglobby@0.2.15:
  1018. resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
  1019. engines: {node: '>=12.0.0'}
  1020. ts-api-utils@2.4.0:
  1021. resolution: {integrity: sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==}
  1022. engines: {node: '>=18.12'}
  1023. peerDependencies:
  1024. typescript: '>=4.8.4'
  1025. type-check@0.4.0:
  1026. resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
  1027. engines: {node: '>= 0.8.0'}
  1028. typescript-eslint@8.53.0:
  1029. resolution: {integrity: sha512-xHURCQNxZ1dsWn0sdOaOfCSQG0HKeqSj9OexIxrz6ypU6wHYOdX2I3D2b8s8wFSsSOYJb+6q283cLiLlkEsBYw==}
  1030. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1031. peerDependencies:
  1032. eslint: ^8.57.0 || ^9.0.0
  1033. typescript: '>=4.8.4 <6.0.0'
  1034. typescript@5.9.3:
  1035. resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
  1036. engines: {node: '>=14.17'}
  1037. hasBin: true
  1038. undici-types@7.16.0:
  1039. resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==}
  1040. update-browserslist-db@1.2.3:
  1041. resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
  1042. hasBin: true
  1043. peerDependencies:
  1044. browserslist: '>= 4.21.0'
  1045. uri-js@4.4.1:
  1046. resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
  1047. use-sync-external-store@1.6.0:
  1048. resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==}
  1049. peerDependencies:
  1050. react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
  1051. vite@7.3.1:
  1052. resolution: {integrity: sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==}
  1053. engines: {node: ^20.19.0 || >=22.12.0}
  1054. hasBin: true
  1055. peerDependencies:
  1056. '@types/node': ^20.19.0 || >=22.12.0
  1057. jiti: '>=1.21.0'
  1058. less: ^4.0.0
  1059. lightningcss: ^1.21.0
  1060. sass: ^1.70.0
  1061. sass-embedded: ^1.70.0
  1062. stylus: '>=0.54.8'
  1063. sugarss: ^5.0.0
  1064. terser: ^5.16.0
  1065. tsx: ^4.8.1
  1066. yaml: ^2.4.2
  1067. peerDependenciesMeta:
  1068. '@types/node':
  1069. optional: true
  1070. jiti:
  1071. optional: true
  1072. less:
  1073. optional: true
  1074. lightningcss:
  1075. optional: true
  1076. sass:
  1077. optional: true
  1078. sass-embedded:
  1079. optional: true
  1080. stylus:
  1081. optional: true
  1082. sugarss:
  1083. optional: true
  1084. terser:
  1085. optional: true
  1086. tsx:
  1087. optional: true
  1088. yaml:
  1089. optional: true
  1090. void-elements@3.1.0:
  1091. resolution: {integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==}
  1092. engines: {node: '>=0.10.0'}
  1093. which@2.0.2:
  1094. resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
  1095. engines: {node: '>= 8'}
  1096. hasBin: true
  1097. word-wrap@1.2.5:
  1098. resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
  1099. engines: {node: '>=0.10.0'}
  1100. yallist@3.1.1:
  1101. resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
  1102. yocto-queue@0.1.0:
  1103. resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
  1104. engines: {node: '>=10'}
  1105. zod-validation-error@4.0.2:
  1106. resolution: {integrity: sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==}
  1107. engines: {node: '>=18.0.0'}
  1108. peerDependencies:
  1109. zod: ^3.25.0 || ^4.0.0
  1110. zod@4.3.5:
  1111. resolution: {integrity: sha512-k7Nwx6vuWx1IJ9Bjuf4Zt1PEllcwe7cls3VNzm4CQ1/hgtFUK2bRNG3rvnpPUhFjmqJKAKtjV576KnUkHocg/g==}
  1112. snapshots:
  1113. '@alloc/quick-lru@5.2.0': {}
  1114. '@babel/code-frame@7.28.6':
  1115. dependencies:
  1116. '@babel/helper-validator-identifier': 7.28.5
  1117. js-tokens: 4.0.0
  1118. picocolors: 1.1.1
  1119. '@babel/compat-data@7.28.6': {}
  1120. '@babel/core@7.28.6':
  1121. dependencies:
  1122. '@babel/code-frame': 7.28.6
  1123. '@babel/generator': 7.28.6
  1124. '@babel/helper-compilation-targets': 7.28.6
  1125. '@babel/helper-module-transforms': 7.28.6(@babel/core@7.28.6)
  1126. '@babel/helpers': 7.28.6
  1127. '@babel/parser': 7.28.6
  1128. '@babel/template': 7.28.6
  1129. '@babel/traverse': 7.28.6
  1130. '@babel/types': 7.28.6
  1131. '@jridgewell/remapping': 2.3.5
  1132. convert-source-map: 2.0.0
  1133. debug: 4.4.3
  1134. gensync: 1.0.0-beta.2
  1135. json5: 2.2.3
  1136. semver: 6.3.1
  1137. transitivePeerDependencies:
  1138. - supports-color
  1139. '@babel/generator@7.28.6':
  1140. dependencies:
  1141. '@babel/parser': 7.28.6
  1142. '@babel/types': 7.28.6
  1143. '@jridgewell/gen-mapping': 0.3.13
  1144. '@jridgewell/trace-mapping': 0.3.31
  1145. jsesc: 3.1.0
  1146. '@babel/helper-compilation-targets@7.28.6':
  1147. dependencies:
  1148. '@babel/compat-data': 7.28.6
  1149. '@babel/helper-validator-option': 7.27.1
  1150. browserslist: 4.28.1
  1151. lru-cache: 5.1.1
  1152. semver: 6.3.1
  1153. '@babel/helper-globals@7.28.0': {}
  1154. '@babel/helper-module-imports@7.28.6':
  1155. dependencies:
  1156. '@babel/traverse': 7.28.6
  1157. '@babel/types': 7.28.6
  1158. transitivePeerDependencies:
  1159. - supports-color
  1160. '@babel/helper-module-transforms@7.28.6(@babel/core@7.28.6)':
  1161. dependencies:
  1162. '@babel/core': 7.28.6
  1163. '@babel/helper-module-imports': 7.28.6
  1164. '@babel/helper-validator-identifier': 7.28.5
  1165. '@babel/traverse': 7.28.6
  1166. transitivePeerDependencies:
  1167. - supports-color
  1168. '@babel/helper-plugin-utils@7.28.6': {}
  1169. '@babel/helper-string-parser@7.27.1': {}
  1170. '@babel/helper-validator-identifier@7.28.5': {}
  1171. '@babel/helper-validator-option@7.27.1': {}
  1172. '@babel/helpers@7.28.6':
  1173. dependencies:
  1174. '@babel/template': 7.28.6
  1175. '@babel/types': 7.28.6
  1176. '@babel/parser@7.28.6':
  1177. dependencies:
  1178. '@babel/types': 7.28.6
  1179. '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.6)':
  1180. dependencies:
  1181. '@babel/core': 7.28.6
  1182. '@babel/helper-plugin-utils': 7.28.6
  1183. '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.6)':
  1184. dependencies:
  1185. '@babel/core': 7.28.6
  1186. '@babel/helper-plugin-utils': 7.28.6
  1187. '@babel/runtime@7.28.6': {}
  1188. '@babel/template@7.28.6':
  1189. dependencies:
  1190. '@babel/code-frame': 7.28.6
  1191. '@babel/parser': 7.28.6
  1192. '@babel/types': 7.28.6
  1193. '@babel/traverse@7.28.6':
  1194. dependencies:
  1195. '@babel/code-frame': 7.28.6
  1196. '@babel/generator': 7.28.6
  1197. '@babel/helper-globals': 7.28.0
  1198. '@babel/parser': 7.28.6
  1199. '@babel/template': 7.28.6
  1200. '@babel/types': 7.28.6
  1201. debug: 4.4.3
  1202. transitivePeerDependencies:
  1203. - supports-color
  1204. '@babel/types@7.28.6':
  1205. dependencies:
  1206. '@babel/helper-string-parser': 7.27.1
  1207. '@babel/helper-validator-identifier': 7.28.5
  1208. '@esbuild/aix-ppc64@0.27.2':
  1209. optional: true
  1210. '@esbuild/android-arm64@0.27.2':
  1211. optional: true
  1212. '@esbuild/android-arm@0.27.2':
  1213. optional: true
  1214. '@esbuild/android-x64@0.27.2':
  1215. optional: true
  1216. '@esbuild/darwin-arm64@0.27.2':
  1217. optional: true
  1218. '@esbuild/darwin-x64@0.27.2':
  1219. optional: true
  1220. '@esbuild/freebsd-arm64@0.27.2':
  1221. optional: true
  1222. '@esbuild/freebsd-x64@0.27.2':
  1223. optional: true
  1224. '@esbuild/linux-arm64@0.27.2':
  1225. optional: true
  1226. '@esbuild/linux-arm@0.27.2':
  1227. optional: true
  1228. '@esbuild/linux-ia32@0.27.2':
  1229. optional: true
  1230. '@esbuild/linux-loong64@0.27.2':
  1231. optional: true
  1232. '@esbuild/linux-mips64el@0.27.2':
  1233. optional: true
  1234. '@esbuild/linux-ppc64@0.27.2':
  1235. optional: true
  1236. '@esbuild/linux-riscv64@0.27.2':
  1237. optional: true
  1238. '@esbuild/linux-s390x@0.27.2':
  1239. optional: true
  1240. '@esbuild/linux-x64@0.27.2':
  1241. optional: true
  1242. '@esbuild/netbsd-arm64@0.27.2':
  1243. optional: true
  1244. '@esbuild/netbsd-x64@0.27.2':
  1245. optional: true
  1246. '@esbuild/openbsd-arm64@0.27.2':
  1247. optional: true
  1248. '@esbuild/openbsd-x64@0.27.2':
  1249. optional: true
  1250. '@esbuild/openharmony-arm64@0.27.2':
  1251. optional: true
  1252. '@esbuild/sunos-x64@0.27.2':
  1253. optional: true
  1254. '@esbuild/win32-arm64@0.27.2':
  1255. optional: true
  1256. '@esbuild/win32-ia32@0.27.2':
  1257. optional: true
  1258. '@esbuild/win32-x64@0.27.2':
  1259. optional: true
  1260. '@eslint-community/eslint-utils@4.9.1(eslint@9.39.2(jiti@2.6.1))':
  1261. dependencies:
  1262. eslint: 9.39.2(jiti@2.6.1)
  1263. eslint-visitor-keys: 3.4.3
  1264. '@eslint-community/regexpp@4.12.2': {}
  1265. '@eslint/config-array@0.21.1':
  1266. dependencies:
  1267. '@eslint/object-schema': 2.1.7
  1268. debug: 4.4.3
  1269. minimatch: 3.1.2
  1270. transitivePeerDependencies:
  1271. - supports-color
  1272. '@eslint/config-helpers@0.4.2':
  1273. dependencies:
  1274. '@eslint/core': 0.17.0
  1275. '@eslint/core@0.17.0':
  1276. dependencies:
  1277. '@types/json-schema': 7.0.15
  1278. '@eslint/eslintrc@3.3.3':
  1279. dependencies:
  1280. ajv: 6.12.6
  1281. debug: 4.4.3
  1282. espree: 10.4.0
  1283. globals: 14.0.0
  1284. ignore: 5.3.2
  1285. import-fresh: 3.3.1
  1286. js-yaml: 4.1.1
  1287. minimatch: 3.1.2
  1288. strip-json-comments: 3.1.1
  1289. transitivePeerDependencies:
  1290. - supports-color
  1291. '@eslint/js@9.39.2': {}
  1292. '@eslint/object-schema@2.1.7': {}
  1293. '@eslint/plugin-kit@0.4.1':
  1294. dependencies:
  1295. '@eslint/core': 0.17.0
  1296. levn: 0.4.1
  1297. '@humanfs/core@0.19.1': {}
  1298. '@humanfs/node@0.16.7':
  1299. dependencies:
  1300. '@humanfs/core': 0.19.1
  1301. '@humanwhocodes/retry': 0.4.3
  1302. '@humanwhocodes/module-importer@1.0.1': {}
  1303. '@humanwhocodes/retry@0.4.3': {}
  1304. '@jridgewell/gen-mapping@0.3.13':
  1305. dependencies:
  1306. '@jridgewell/sourcemap-codec': 1.5.5
  1307. '@jridgewell/trace-mapping': 0.3.31
  1308. '@jridgewell/remapping@2.3.5':
  1309. dependencies:
  1310. '@jridgewell/gen-mapping': 0.3.13
  1311. '@jridgewell/trace-mapping': 0.3.31
  1312. '@jridgewell/resolve-uri@3.1.2': {}
  1313. '@jridgewell/sourcemap-codec@1.5.5': {}
  1314. '@jridgewell/trace-mapping@0.3.31':
  1315. dependencies:
  1316. '@jridgewell/resolve-uri': 3.1.2
  1317. '@jridgewell/sourcemap-codec': 1.5.5
  1318. '@rolldown/pluginutils@1.0.0-beta.53': {}
  1319. '@rollup/rollup-android-arm-eabi@4.55.1':
  1320. optional: true
  1321. '@rollup/rollup-android-arm64@4.55.1':
  1322. optional: true
  1323. '@rollup/rollup-darwin-arm64@4.55.1':
  1324. optional: true
  1325. '@rollup/rollup-darwin-x64@4.55.1':
  1326. optional: true
  1327. '@rollup/rollup-freebsd-arm64@4.55.1':
  1328. optional: true
  1329. '@rollup/rollup-freebsd-x64@4.55.1':
  1330. optional: true
  1331. '@rollup/rollup-linux-arm-gnueabihf@4.55.1':
  1332. optional: true
  1333. '@rollup/rollup-linux-arm-musleabihf@4.55.1':
  1334. optional: true
  1335. '@rollup/rollup-linux-arm64-gnu@4.55.1':
  1336. optional: true
  1337. '@rollup/rollup-linux-arm64-musl@4.55.1':
  1338. optional: true
  1339. '@rollup/rollup-linux-loong64-gnu@4.55.1':
  1340. optional: true
  1341. '@rollup/rollup-linux-loong64-musl@4.55.1':
  1342. optional: true
  1343. '@rollup/rollup-linux-ppc64-gnu@4.55.1':
  1344. optional: true
  1345. '@rollup/rollup-linux-ppc64-musl@4.55.1':
  1346. optional: true
  1347. '@rollup/rollup-linux-riscv64-gnu@4.55.1':
  1348. optional: true
  1349. '@rollup/rollup-linux-riscv64-musl@4.55.1':
  1350. optional: true
  1351. '@rollup/rollup-linux-s390x-gnu@4.55.1':
  1352. optional: true
  1353. '@rollup/rollup-linux-x64-gnu@4.55.1':
  1354. optional: true
  1355. '@rollup/rollup-linux-x64-musl@4.55.1':
  1356. optional: true
  1357. '@rollup/rollup-openbsd-x64@4.55.1':
  1358. optional: true
  1359. '@rollup/rollup-openharmony-arm64@4.55.1':
  1360. optional: true
  1361. '@rollup/rollup-win32-arm64-msvc@4.55.1':
  1362. optional: true
  1363. '@rollup/rollup-win32-ia32-msvc@4.55.1':
  1364. optional: true
  1365. '@rollup/rollup-win32-x64-gnu@4.55.1':
  1366. optional: true
  1367. '@rollup/rollup-win32-x64-msvc@4.55.1':
  1368. optional: true
  1369. '@tailwindcss/node@4.1.18':
  1370. dependencies:
  1371. '@jridgewell/remapping': 2.3.5
  1372. enhanced-resolve: 5.18.4
  1373. jiti: 2.6.1
  1374. lightningcss: 1.30.2
  1375. magic-string: 0.30.21
  1376. source-map-js: 1.2.1
  1377. tailwindcss: 4.1.18
  1378. '@tailwindcss/oxide-android-arm64@4.1.18':
  1379. optional: true
  1380. '@tailwindcss/oxide-darwin-arm64@4.1.18':
  1381. optional: true
  1382. '@tailwindcss/oxide-darwin-x64@4.1.18':
  1383. optional: true
  1384. '@tailwindcss/oxide-freebsd-x64@4.1.18':
  1385. optional: true
  1386. '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.18':
  1387. optional: true
  1388. '@tailwindcss/oxide-linux-arm64-gnu@4.1.18':
  1389. optional: true
  1390. '@tailwindcss/oxide-linux-arm64-musl@4.1.18':
  1391. optional: true
  1392. '@tailwindcss/oxide-linux-x64-gnu@4.1.18':
  1393. optional: true
  1394. '@tailwindcss/oxide-linux-x64-musl@4.1.18':
  1395. optional: true
  1396. '@tailwindcss/oxide-wasm32-wasi@4.1.18':
  1397. optional: true
  1398. '@tailwindcss/oxide-win32-arm64-msvc@4.1.18':
  1399. optional: true
  1400. '@tailwindcss/oxide-win32-x64-msvc@4.1.18':
  1401. optional: true
  1402. '@tailwindcss/oxide@4.1.18':
  1403. optionalDependencies:
  1404. '@tailwindcss/oxide-android-arm64': 4.1.18
  1405. '@tailwindcss/oxide-darwin-arm64': 4.1.18
  1406. '@tailwindcss/oxide-darwin-x64': 4.1.18
  1407. '@tailwindcss/oxide-freebsd-x64': 4.1.18
  1408. '@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.18
  1409. '@tailwindcss/oxide-linux-arm64-gnu': 4.1.18
  1410. '@tailwindcss/oxide-linux-arm64-musl': 4.1.18
  1411. '@tailwindcss/oxide-linux-x64-gnu': 4.1.18
  1412. '@tailwindcss/oxide-linux-x64-musl': 4.1.18
  1413. '@tailwindcss/oxide-wasm32-wasi': 4.1.18
  1414. '@tailwindcss/oxide-win32-arm64-msvc': 4.1.18
  1415. '@tailwindcss/oxide-win32-x64-msvc': 4.1.18
  1416. '@tailwindcss/postcss@4.1.18':
  1417. dependencies:
  1418. '@alloc/quick-lru': 5.2.0
  1419. '@tailwindcss/node': 4.1.18
  1420. '@tailwindcss/oxide': 4.1.18
  1421. postcss: 8.5.6
  1422. tailwindcss: 4.1.18
  1423. '@types/babel__core@7.20.5':
  1424. dependencies:
  1425. '@babel/parser': 7.28.6
  1426. '@babel/types': 7.28.6
  1427. '@types/babel__generator': 7.27.0
  1428. '@types/babel__template': 7.4.4
  1429. '@types/babel__traverse': 7.28.0
  1430. '@types/babel__generator@7.27.0':
  1431. dependencies:
  1432. '@babel/types': 7.28.6
  1433. '@types/babel__template@7.4.4':
  1434. dependencies:
  1435. '@babel/parser': 7.28.6
  1436. '@babel/types': 7.28.6
  1437. '@types/babel__traverse@7.28.0':
  1438. dependencies:
  1439. '@babel/types': 7.28.6
  1440. '@types/estree@1.0.8': {}
  1441. '@types/json-schema@7.0.15': {}
  1442. '@types/node@24.10.9':
  1443. dependencies:
  1444. undici-types: 7.16.0
  1445. '@types/react-dom@19.2.3(@types/react@19.2.8)':
  1446. dependencies:
  1447. '@types/react': 19.2.8
  1448. '@types/react@19.2.8':
  1449. dependencies:
  1450. csstype: 3.2.3
  1451. '@typescript-eslint/eslint-plugin@8.53.0(@typescript-eslint/parser@8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)':
  1452. dependencies:
  1453. '@eslint-community/regexpp': 4.12.2
  1454. '@typescript-eslint/parser': 8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
  1455. '@typescript-eslint/scope-manager': 8.53.0
  1456. '@typescript-eslint/type-utils': 8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
  1457. '@typescript-eslint/utils': 8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
  1458. '@typescript-eslint/visitor-keys': 8.53.0
  1459. eslint: 9.39.2(jiti@2.6.1)
  1460. ignore: 7.0.5
  1461. natural-compare: 1.4.0
  1462. ts-api-utils: 2.4.0(typescript@5.9.3)
  1463. typescript: 5.9.3
  1464. transitivePeerDependencies:
  1465. - supports-color
  1466. '@typescript-eslint/parser@8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)':
  1467. dependencies:
  1468. '@typescript-eslint/scope-manager': 8.53.0
  1469. '@typescript-eslint/types': 8.53.0
  1470. '@typescript-eslint/typescript-estree': 8.53.0(typescript@5.9.3)
  1471. '@typescript-eslint/visitor-keys': 8.53.0
  1472. debug: 4.4.3
  1473. eslint: 9.39.2(jiti@2.6.1)
  1474. typescript: 5.9.3
  1475. transitivePeerDependencies:
  1476. - supports-color
  1477. '@typescript-eslint/project-service@8.53.0(typescript@5.9.3)':
  1478. dependencies:
  1479. '@typescript-eslint/tsconfig-utils': 8.53.0(typescript@5.9.3)
  1480. '@typescript-eslint/types': 8.53.0
  1481. debug: 4.4.3
  1482. typescript: 5.9.3
  1483. transitivePeerDependencies:
  1484. - supports-color
  1485. '@typescript-eslint/scope-manager@8.53.0':
  1486. dependencies:
  1487. '@typescript-eslint/types': 8.53.0
  1488. '@typescript-eslint/visitor-keys': 8.53.0
  1489. '@typescript-eslint/tsconfig-utils@8.53.0(typescript@5.9.3)':
  1490. dependencies:
  1491. typescript: 5.9.3
  1492. '@typescript-eslint/type-utils@8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)':
  1493. dependencies:
  1494. '@typescript-eslint/types': 8.53.0
  1495. '@typescript-eslint/typescript-estree': 8.53.0(typescript@5.9.3)
  1496. '@typescript-eslint/utils': 8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
  1497. debug: 4.4.3
  1498. eslint: 9.39.2(jiti@2.6.1)
  1499. ts-api-utils: 2.4.0(typescript@5.9.3)
  1500. typescript: 5.9.3
  1501. transitivePeerDependencies:
  1502. - supports-color
  1503. '@typescript-eslint/types@8.53.0': {}
  1504. '@typescript-eslint/typescript-estree@8.53.0(typescript@5.9.3)':
  1505. dependencies:
  1506. '@typescript-eslint/project-service': 8.53.0(typescript@5.9.3)
  1507. '@typescript-eslint/tsconfig-utils': 8.53.0(typescript@5.9.3)
  1508. '@typescript-eslint/types': 8.53.0
  1509. '@typescript-eslint/visitor-keys': 8.53.0
  1510. debug: 4.4.3
  1511. minimatch: 9.0.5
  1512. semver: 7.7.3
  1513. tinyglobby: 0.2.15
  1514. ts-api-utils: 2.4.0(typescript@5.9.3)
  1515. typescript: 5.9.3
  1516. transitivePeerDependencies:
  1517. - supports-color
  1518. '@typescript-eslint/utils@8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)':
  1519. dependencies:
  1520. '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@2.6.1))
  1521. '@typescript-eslint/scope-manager': 8.53.0
  1522. '@typescript-eslint/types': 8.53.0
  1523. '@typescript-eslint/typescript-estree': 8.53.0(typescript@5.9.3)
  1524. eslint: 9.39.2(jiti@2.6.1)
  1525. typescript: 5.9.3
  1526. transitivePeerDependencies:
  1527. - supports-color
  1528. '@typescript-eslint/visitor-keys@8.53.0':
  1529. dependencies:
  1530. '@typescript-eslint/types': 8.53.0
  1531. eslint-visitor-keys: 4.2.1
  1532. '@vitejs/plugin-react@5.1.2(vite@7.3.1(@types/node@24.10.9)(jiti@2.6.1)(lightningcss@1.30.2))':
  1533. dependencies:
  1534. '@babel/core': 7.28.6
  1535. '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.6)
  1536. '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.6)
  1537. '@rolldown/pluginutils': 1.0.0-beta.53
  1538. '@types/babel__core': 7.20.5
  1539. react-refresh: 0.18.0
  1540. vite: 7.3.1(@types/node@24.10.9)(jiti@2.6.1)(lightningcss@1.30.2)
  1541. transitivePeerDependencies:
  1542. - supports-color
  1543. acorn-jsx@5.3.2(acorn@8.15.0):
  1544. dependencies:
  1545. acorn: 8.15.0
  1546. acorn@8.15.0: {}
  1547. ajv@6.12.6:
  1548. dependencies:
  1549. fast-deep-equal: 3.1.3
  1550. fast-json-stable-stringify: 2.1.0
  1551. json-schema-traverse: 0.4.1
  1552. uri-js: 4.4.1
  1553. ansi-styles@4.3.0:
  1554. dependencies:
  1555. color-convert: 2.0.1
  1556. argparse@2.0.1: {}
  1557. autoprefixer@10.4.23(postcss@8.5.6):
  1558. dependencies:
  1559. browserslist: 4.28.1
  1560. caniuse-lite: 1.0.30001764
  1561. fraction.js: 5.3.4
  1562. picocolors: 1.1.1
  1563. postcss: 8.5.6
  1564. postcss-value-parser: 4.2.0
  1565. balanced-match@1.0.2: {}
  1566. baseline-browser-mapping@2.9.15: {}
  1567. brace-expansion@1.1.12:
  1568. dependencies:
  1569. balanced-match: 1.0.2
  1570. concat-map: 0.0.1
  1571. brace-expansion@2.0.2:
  1572. dependencies:
  1573. balanced-match: 1.0.2
  1574. browserslist@4.28.1:
  1575. dependencies:
  1576. baseline-browser-mapping: 2.9.15
  1577. caniuse-lite: 1.0.30001764
  1578. electron-to-chromium: 1.5.267
  1579. node-releases: 2.0.27
  1580. update-browserslist-db: 1.2.3(browserslist@4.28.1)
  1581. callsites@3.1.0: {}
  1582. caniuse-lite@1.0.30001764: {}
  1583. chalk@4.1.2:
  1584. dependencies:
  1585. ansi-styles: 4.3.0
  1586. supports-color: 7.2.0
  1587. color-convert@2.0.1:
  1588. dependencies:
  1589. color-name: 1.1.4
  1590. color-name@1.1.4: {}
  1591. concat-map@0.0.1: {}
  1592. convert-source-map@2.0.0: {}
  1593. cookie@1.1.1: {}
  1594. cross-spawn@7.0.6:
  1595. dependencies:
  1596. path-key: 3.1.1
  1597. shebang-command: 2.0.0
  1598. which: 2.0.2
  1599. csstype@3.2.3: {}
  1600. debug@4.4.3:
  1601. dependencies:
  1602. ms: 2.1.3
  1603. deep-is@0.1.4: {}
  1604. detect-libc@2.1.2: {}
  1605. electron-to-chromium@1.5.267: {}
  1606. enhanced-resolve@5.18.4:
  1607. dependencies:
  1608. graceful-fs: 4.2.11
  1609. tapable: 2.3.0
  1610. esbuild@0.27.2:
  1611. optionalDependencies:
  1612. '@esbuild/aix-ppc64': 0.27.2
  1613. '@esbuild/android-arm': 0.27.2
  1614. '@esbuild/android-arm64': 0.27.2
  1615. '@esbuild/android-x64': 0.27.2
  1616. '@esbuild/darwin-arm64': 0.27.2
  1617. '@esbuild/darwin-x64': 0.27.2
  1618. '@esbuild/freebsd-arm64': 0.27.2
  1619. '@esbuild/freebsd-x64': 0.27.2
  1620. '@esbuild/linux-arm': 0.27.2
  1621. '@esbuild/linux-arm64': 0.27.2
  1622. '@esbuild/linux-ia32': 0.27.2
  1623. '@esbuild/linux-loong64': 0.27.2
  1624. '@esbuild/linux-mips64el': 0.27.2
  1625. '@esbuild/linux-ppc64': 0.27.2
  1626. '@esbuild/linux-riscv64': 0.27.2
  1627. '@esbuild/linux-s390x': 0.27.2
  1628. '@esbuild/linux-x64': 0.27.2
  1629. '@esbuild/netbsd-arm64': 0.27.2
  1630. '@esbuild/netbsd-x64': 0.27.2
  1631. '@esbuild/openbsd-arm64': 0.27.2
  1632. '@esbuild/openbsd-x64': 0.27.2
  1633. '@esbuild/openharmony-arm64': 0.27.2
  1634. '@esbuild/sunos-x64': 0.27.2
  1635. '@esbuild/win32-arm64': 0.27.2
  1636. '@esbuild/win32-ia32': 0.27.2
  1637. '@esbuild/win32-x64': 0.27.2
  1638. escalade@3.2.0: {}
  1639. escape-string-regexp@4.0.0: {}
  1640. eslint-plugin-react-hooks@7.0.1(eslint@9.39.2(jiti@2.6.1)):
  1641. dependencies:
  1642. '@babel/core': 7.28.6
  1643. '@babel/parser': 7.28.6
  1644. eslint: 9.39.2(jiti@2.6.1)
  1645. hermes-parser: 0.25.1
  1646. zod: 4.3.5
  1647. zod-validation-error: 4.0.2(zod@4.3.5)
  1648. transitivePeerDependencies:
  1649. - supports-color
  1650. eslint-plugin-react-refresh@0.4.26(eslint@9.39.2(jiti@2.6.1)):
  1651. dependencies:
  1652. eslint: 9.39.2(jiti@2.6.1)
  1653. eslint-scope@8.4.0:
  1654. dependencies:
  1655. esrecurse: 4.3.0
  1656. estraverse: 5.3.0
  1657. eslint-visitor-keys@3.4.3: {}
  1658. eslint-visitor-keys@4.2.1: {}
  1659. eslint@9.39.2(jiti@2.6.1):
  1660. dependencies:
  1661. '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@2.6.1))
  1662. '@eslint-community/regexpp': 4.12.2
  1663. '@eslint/config-array': 0.21.1
  1664. '@eslint/config-helpers': 0.4.2
  1665. '@eslint/core': 0.17.0
  1666. '@eslint/eslintrc': 3.3.3
  1667. '@eslint/js': 9.39.2
  1668. '@eslint/plugin-kit': 0.4.1
  1669. '@humanfs/node': 0.16.7
  1670. '@humanwhocodes/module-importer': 1.0.1
  1671. '@humanwhocodes/retry': 0.4.3
  1672. '@types/estree': 1.0.8
  1673. ajv: 6.12.6
  1674. chalk: 4.1.2
  1675. cross-spawn: 7.0.6
  1676. debug: 4.4.3
  1677. escape-string-regexp: 4.0.0
  1678. eslint-scope: 8.4.0
  1679. eslint-visitor-keys: 4.2.1
  1680. espree: 10.4.0
  1681. esquery: 1.7.0
  1682. esutils: 2.0.3
  1683. fast-deep-equal: 3.1.3
  1684. file-entry-cache: 8.0.0
  1685. find-up: 5.0.0
  1686. glob-parent: 6.0.2
  1687. ignore: 5.3.2
  1688. imurmurhash: 0.1.4
  1689. is-glob: 4.0.3
  1690. json-stable-stringify-without-jsonify: 1.0.1
  1691. lodash.merge: 4.6.2
  1692. minimatch: 3.1.2
  1693. natural-compare: 1.4.0
  1694. optionator: 0.9.4
  1695. optionalDependencies:
  1696. jiti: 2.6.1
  1697. transitivePeerDependencies:
  1698. - supports-color
  1699. espree@10.4.0:
  1700. dependencies:
  1701. acorn: 8.15.0
  1702. acorn-jsx: 5.3.2(acorn@8.15.0)
  1703. eslint-visitor-keys: 4.2.1
  1704. esquery@1.7.0:
  1705. dependencies:
  1706. estraverse: 5.3.0
  1707. esrecurse@4.3.0:
  1708. dependencies:
  1709. estraverse: 5.3.0
  1710. estraverse@5.3.0: {}
  1711. esutils@2.0.3: {}
  1712. fast-deep-equal@3.1.3: {}
  1713. fast-json-stable-stringify@2.1.0: {}
  1714. fast-levenshtein@2.0.6: {}
  1715. fdir@6.5.0(picomatch@4.0.3):
  1716. optionalDependencies:
  1717. picomatch: 4.0.3
  1718. file-entry-cache@8.0.0:
  1719. dependencies:
  1720. flat-cache: 4.0.1
  1721. find-up@5.0.0:
  1722. dependencies:
  1723. locate-path: 6.0.0
  1724. path-exists: 4.0.0
  1725. flat-cache@4.0.1:
  1726. dependencies:
  1727. flatted: 3.3.3
  1728. keyv: 4.5.4
  1729. flatted@3.3.3: {}
  1730. fraction.js@5.3.4: {}
  1731. fsevents@2.3.3:
  1732. optional: true
  1733. gensync@1.0.0-beta.2: {}
  1734. glob-parent@6.0.2:
  1735. dependencies:
  1736. is-glob: 4.0.3
  1737. globals@14.0.0: {}
  1738. globals@16.5.0: {}
  1739. graceful-fs@4.2.11: {}
  1740. has-flag@4.0.0: {}
  1741. hermes-estree@0.25.1: {}
  1742. hermes-parser@0.25.1:
  1743. dependencies:
  1744. hermes-estree: 0.25.1
  1745. html-parse-stringify@3.0.1:
  1746. dependencies:
  1747. void-elements: 3.1.0
  1748. i18next-browser-languagedetector@8.2.0:
  1749. dependencies:
  1750. '@babel/runtime': 7.28.6
  1751. i18next@25.8.0(typescript@5.9.3):
  1752. dependencies:
  1753. '@babel/runtime': 7.28.6
  1754. optionalDependencies:
  1755. typescript: 5.9.3
  1756. ignore@5.3.2: {}
  1757. ignore@7.0.5: {}
  1758. import-fresh@3.3.1:
  1759. dependencies:
  1760. parent-module: 1.0.1
  1761. resolve-from: 4.0.0
  1762. imurmurhash@0.1.4: {}
  1763. is-extglob@2.1.1: {}
  1764. is-glob@4.0.3:
  1765. dependencies:
  1766. is-extglob: 2.1.1
  1767. isexe@2.0.0: {}
  1768. jiti@2.6.1: {}
  1769. js-tokens@4.0.0: {}
  1770. js-yaml@4.1.1:
  1771. dependencies:
  1772. argparse: 2.0.1
  1773. jsesc@3.1.0: {}
  1774. json-buffer@3.0.1: {}
  1775. json-schema-traverse@0.4.1: {}
  1776. json-stable-stringify-without-jsonify@1.0.1: {}
  1777. json5@2.2.3: {}
  1778. keyv@4.5.4:
  1779. dependencies:
  1780. json-buffer: 3.0.1
  1781. levn@0.4.1:
  1782. dependencies:
  1783. prelude-ls: 1.2.1
  1784. type-check: 0.4.0
  1785. lightningcss-android-arm64@1.30.2:
  1786. optional: true
  1787. lightningcss-darwin-arm64@1.30.2:
  1788. optional: true
  1789. lightningcss-darwin-x64@1.30.2:
  1790. optional: true
  1791. lightningcss-freebsd-x64@1.30.2:
  1792. optional: true
  1793. lightningcss-linux-arm-gnueabihf@1.30.2:
  1794. optional: true
  1795. lightningcss-linux-arm64-gnu@1.30.2:
  1796. optional: true
  1797. lightningcss-linux-arm64-musl@1.30.2:
  1798. optional: true
  1799. lightningcss-linux-x64-gnu@1.30.2:
  1800. optional: true
  1801. lightningcss-linux-x64-musl@1.30.2:
  1802. optional: true
  1803. lightningcss-win32-arm64-msvc@1.30.2:
  1804. optional: true
  1805. lightningcss-win32-x64-msvc@1.30.2:
  1806. optional: true
  1807. lightningcss@1.30.2:
  1808. dependencies:
  1809. detect-libc: 2.1.2
  1810. optionalDependencies:
  1811. lightningcss-android-arm64: 1.30.2
  1812. lightningcss-darwin-arm64: 1.30.2
  1813. lightningcss-darwin-x64: 1.30.2
  1814. lightningcss-freebsd-x64: 1.30.2
  1815. lightningcss-linux-arm-gnueabihf: 1.30.2
  1816. lightningcss-linux-arm64-gnu: 1.30.2
  1817. lightningcss-linux-arm64-musl: 1.30.2
  1818. lightningcss-linux-x64-gnu: 1.30.2
  1819. lightningcss-linux-x64-musl: 1.30.2
  1820. lightningcss-win32-arm64-msvc: 1.30.2
  1821. lightningcss-win32-x64-msvc: 1.30.2
  1822. locate-path@6.0.0:
  1823. dependencies:
  1824. p-locate: 5.0.0
  1825. lodash.merge@4.6.2: {}
  1826. lru-cache@5.1.1:
  1827. dependencies:
  1828. yallist: 3.1.1
  1829. lucide-react@0.563.0(react@19.2.3):
  1830. dependencies:
  1831. react: 19.2.3
  1832. magic-string@0.30.21:
  1833. dependencies:
  1834. '@jridgewell/sourcemap-codec': 1.5.5
  1835. minimatch@3.1.2:
  1836. dependencies:
  1837. brace-expansion: 1.1.12
  1838. minimatch@9.0.5:
  1839. dependencies:
  1840. brace-expansion: 2.0.2
  1841. ms@2.1.3: {}
  1842. nanoid@3.3.11: {}
  1843. natural-compare@1.4.0: {}
  1844. node-releases@2.0.27: {}
  1845. optionator@0.9.4:
  1846. dependencies:
  1847. deep-is: 0.1.4
  1848. fast-levenshtein: 2.0.6
  1849. levn: 0.4.1
  1850. prelude-ls: 1.2.1
  1851. type-check: 0.4.0
  1852. word-wrap: 1.2.5
  1853. p-limit@3.1.0:
  1854. dependencies:
  1855. yocto-queue: 0.1.0
  1856. p-locate@5.0.0:
  1857. dependencies:
  1858. p-limit: 3.1.0
  1859. parent-module@1.0.1:
  1860. dependencies:
  1861. callsites: 3.1.0
  1862. path-exists@4.0.0: {}
  1863. path-key@3.1.1: {}
  1864. picocolors@1.1.1: {}
  1865. picomatch@4.0.3: {}
  1866. postcss-value-parser@4.2.0: {}
  1867. postcss@8.5.6:
  1868. dependencies:
  1869. nanoid: 3.3.11
  1870. picocolors: 1.1.1
  1871. source-map-js: 1.2.1
  1872. prelude-ls@1.2.1: {}
  1873. punycode@2.3.1: {}
  1874. react-dom@19.2.3(react@19.2.3):
  1875. dependencies:
  1876. react: 19.2.3
  1877. scheduler: 0.27.0
  1878. react-i18next@16.5.4(i18next@25.8.0(typescript@5.9.3))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@5.9.3):
  1879. dependencies:
  1880. '@babel/runtime': 7.28.6
  1881. html-parse-stringify: 3.0.1
  1882. i18next: 25.8.0(typescript@5.9.3)
  1883. react: 19.2.3
  1884. use-sync-external-store: 1.6.0(react@19.2.3)
  1885. optionalDependencies:
  1886. react-dom: 19.2.3(react@19.2.3)
  1887. typescript: 5.9.3
  1888. react-refresh@0.18.0: {}
  1889. react-router-dom@7.13.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3):
  1890. dependencies:
  1891. react: 19.2.3
  1892. react-dom: 19.2.3(react@19.2.3)
  1893. react-router: 7.13.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
  1894. react-router@7.13.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3):
  1895. dependencies:
  1896. cookie: 1.1.1
  1897. react: 19.2.3
  1898. set-cookie-parser: 2.7.2
  1899. optionalDependencies:
  1900. react-dom: 19.2.3(react@19.2.3)
  1901. react@19.2.3: {}
  1902. resolve-from@4.0.0: {}
  1903. rollup@4.55.1:
  1904. dependencies:
  1905. '@types/estree': 1.0.8
  1906. optionalDependencies:
  1907. '@rollup/rollup-android-arm-eabi': 4.55.1
  1908. '@rollup/rollup-android-arm64': 4.55.1
  1909. '@rollup/rollup-darwin-arm64': 4.55.1
  1910. '@rollup/rollup-darwin-x64': 4.55.1
  1911. '@rollup/rollup-freebsd-arm64': 4.55.1
  1912. '@rollup/rollup-freebsd-x64': 4.55.1
  1913. '@rollup/rollup-linux-arm-gnueabihf': 4.55.1
  1914. '@rollup/rollup-linux-arm-musleabihf': 4.55.1
  1915. '@rollup/rollup-linux-arm64-gnu': 4.55.1
  1916. '@rollup/rollup-linux-arm64-musl': 4.55.1
  1917. '@rollup/rollup-linux-loong64-gnu': 4.55.1
  1918. '@rollup/rollup-linux-loong64-musl': 4.55.1
  1919. '@rollup/rollup-linux-ppc64-gnu': 4.55.1
  1920. '@rollup/rollup-linux-ppc64-musl': 4.55.1
  1921. '@rollup/rollup-linux-riscv64-gnu': 4.55.1
  1922. '@rollup/rollup-linux-riscv64-musl': 4.55.1
  1923. '@rollup/rollup-linux-s390x-gnu': 4.55.1
  1924. '@rollup/rollup-linux-x64-gnu': 4.55.1
  1925. '@rollup/rollup-linux-x64-musl': 4.55.1
  1926. '@rollup/rollup-openbsd-x64': 4.55.1
  1927. '@rollup/rollup-openharmony-arm64': 4.55.1
  1928. '@rollup/rollup-win32-arm64-msvc': 4.55.1
  1929. '@rollup/rollup-win32-ia32-msvc': 4.55.1
  1930. '@rollup/rollup-win32-x64-gnu': 4.55.1
  1931. '@rollup/rollup-win32-x64-msvc': 4.55.1
  1932. fsevents: 2.3.3
  1933. scheduler@0.27.0: {}
  1934. semver@6.3.1: {}
  1935. semver@7.7.3: {}
  1936. set-cookie-parser@2.7.2: {}
  1937. shebang-command@2.0.0:
  1938. dependencies:
  1939. shebang-regex: 3.0.0
  1940. shebang-regex@3.0.0: {}
  1941. source-map-js@1.2.1: {}
  1942. strip-json-comments@3.1.1: {}
  1943. supports-color@7.2.0:
  1944. dependencies:
  1945. has-flag: 4.0.0
  1946. tailwindcss@4.1.18: {}
  1947. tapable@2.3.0: {}
  1948. tinyglobby@0.2.15:
  1949. dependencies:
  1950. fdir: 6.5.0(picomatch@4.0.3)
  1951. picomatch: 4.0.3
  1952. ts-api-utils@2.4.0(typescript@5.9.3):
  1953. dependencies:
  1954. typescript: 5.9.3
  1955. type-check@0.4.0:
  1956. dependencies:
  1957. prelude-ls: 1.2.1
  1958. typescript-eslint@8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3):
  1959. dependencies:
  1960. '@typescript-eslint/eslint-plugin': 8.53.0(@typescript-eslint/parser@8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
  1961. '@typescript-eslint/parser': 8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
  1962. '@typescript-eslint/typescript-estree': 8.53.0(typescript@5.9.3)
  1963. '@typescript-eslint/utils': 8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
  1964. eslint: 9.39.2(jiti@2.6.1)
  1965. typescript: 5.9.3
  1966. transitivePeerDependencies:
  1967. - supports-color
  1968. typescript@5.9.3: {}
  1969. undici-types@7.16.0: {}
  1970. update-browserslist-db@1.2.3(browserslist@4.28.1):
  1971. dependencies:
  1972. browserslist: 4.28.1
  1973. escalade: 3.2.0
  1974. picocolors: 1.1.1
  1975. uri-js@4.4.1:
  1976. dependencies:
  1977. punycode: 2.3.1
  1978. use-sync-external-store@1.6.0(react@19.2.3):
  1979. dependencies:
  1980. react: 19.2.3
  1981. vite@7.3.1(@types/node@24.10.9)(jiti@2.6.1)(lightningcss@1.30.2):
  1982. dependencies:
  1983. esbuild: 0.27.2
  1984. fdir: 6.5.0(picomatch@4.0.3)
  1985. picomatch: 4.0.3
  1986. postcss: 8.5.6
  1987. rollup: 4.55.1
  1988. tinyglobby: 0.2.15
  1989. optionalDependencies:
  1990. '@types/node': 24.10.9
  1991. fsevents: 2.3.3
  1992. jiti: 2.6.1
  1993. lightningcss: 1.30.2
  1994. void-elements@3.1.0: {}
  1995. which@2.0.2:
  1996. dependencies:
  1997. isexe: 2.0.0
  1998. word-wrap@1.2.5: {}
  1999. yallist@3.1.1: {}
  2000. yocto-queue@0.1.0: {}
  2001. zod-validation-error@4.0.2(zod@4.3.5):
  2002. dependencies:
  2003. zod: 4.3.5
  2004. zod@4.3.5: {}