package-lock.json 103 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955
  1. {
  2. "name": "frontend",
  3. "version": "0.0.0",
  4. "lockfileVersion": 3,
  5. "requires": true,
  6. "packages": {
  7. "": {
  8. "name": "frontend",
  9. "version": "0.0.0",
  10. "dependencies": {
  11. "axios": "^1.14.0",
  12. "clsx": "^2.1.1",
  13. "lucide-react": "^1.7.0",
  14. "react": "^19.2.4",
  15. "react-dom": "^19.2.4",
  16. "react-router-dom": "^7.14.0",
  17. "react-zoom-pan-pinch": "^4.0.2",
  18. "tailwind-merge": "^3.5.0"
  19. },
  20. "devDependencies": {
  21. "@eslint/js": "^9.39.4",
  22. "@tailwindcss/vite": "^4.2.2",
  23. "@types/node": "^24.12.0",
  24. "@types/react": "^19.2.14",
  25. "@types/react-dom": "^19.2.3",
  26. "@vitejs/plugin-react": "^6.0.1",
  27. "eslint": "^9.39.4",
  28. "eslint-plugin-react-hooks": "^7.0.1",
  29. "eslint-plugin-react-refresh": "^0.5.2",
  30. "globals": "^17.4.0",
  31. "tailwindcss": "^4.2.2",
  32. "typescript": "~5.9.3",
  33. "typescript-eslint": "^8.57.0",
  34. "vite": "^8.0.1"
  35. }
  36. },
  37. "node_modules/@babel/code-frame": {
  38. "version": "7.29.0",
  39. "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz",
  40. "integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==",
  41. "dev": true,
  42. "license": "MIT",
  43. "dependencies": {
  44. "@babel/helper-validator-identifier": "^7.28.5",
  45. "js-tokens": "^4.0.0",
  46. "picocolors": "^1.1.1"
  47. },
  48. "engines": {
  49. "node": ">=6.9.0"
  50. }
  51. },
  52. "node_modules/@babel/compat-data": {
  53. "version": "7.29.0",
  54. "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.0.tgz",
  55. "integrity": "sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==",
  56. "dev": true,
  57. "license": "MIT",
  58. "engines": {
  59. "node": ">=6.9.0"
  60. }
  61. },
  62. "node_modules/@babel/core": {
  63. "version": "7.29.0",
  64. "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz",
  65. "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==",
  66. "dev": true,
  67. "license": "MIT",
  68. "dependencies": {
  69. "@babel/code-frame": "^7.29.0",
  70. "@babel/generator": "^7.29.0",
  71. "@babel/helper-compilation-targets": "^7.28.6",
  72. "@babel/helper-module-transforms": "^7.28.6",
  73. "@babel/helpers": "^7.28.6",
  74. "@babel/parser": "^7.29.0",
  75. "@babel/template": "^7.28.6",
  76. "@babel/traverse": "^7.29.0",
  77. "@babel/types": "^7.29.0",
  78. "@jridgewell/remapping": "^2.3.5",
  79. "convert-source-map": "^2.0.0",
  80. "debug": "^4.1.0",
  81. "gensync": "^1.0.0-beta.2",
  82. "json5": "^2.2.3",
  83. "semver": "^6.3.1"
  84. },
  85. "engines": {
  86. "node": ">=6.9.0"
  87. },
  88. "funding": {
  89. "type": "opencollective",
  90. "url": "https://opencollective.com/babel"
  91. }
  92. },
  93. "node_modules/@babel/generator": {
  94. "version": "7.29.1",
  95. "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz",
  96. "integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==",
  97. "dev": true,
  98. "license": "MIT",
  99. "dependencies": {
  100. "@babel/parser": "^7.29.0",
  101. "@babel/types": "^7.29.0",
  102. "@jridgewell/gen-mapping": "^0.3.12",
  103. "@jridgewell/trace-mapping": "^0.3.28",
  104. "jsesc": "^3.0.2"
  105. },
  106. "engines": {
  107. "node": ">=6.9.0"
  108. }
  109. },
  110. "node_modules/@babel/helper-compilation-targets": {
  111. "version": "7.28.6",
  112. "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz",
  113. "integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==",
  114. "dev": true,
  115. "license": "MIT",
  116. "dependencies": {
  117. "@babel/compat-data": "^7.28.6",
  118. "@babel/helper-validator-option": "^7.27.1",
  119. "browserslist": "^4.24.0",
  120. "lru-cache": "^5.1.1",
  121. "semver": "^6.3.1"
  122. },
  123. "engines": {
  124. "node": ">=6.9.0"
  125. }
  126. },
  127. "node_modules/@babel/helper-globals": {
  128. "version": "7.28.0",
  129. "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz",
  130. "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==",
  131. "dev": true,
  132. "license": "MIT",
  133. "engines": {
  134. "node": ">=6.9.0"
  135. }
  136. },
  137. "node_modules/@babel/helper-module-imports": {
  138. "version": "7.28.6",
  139. "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz",
  140. "integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==",
  141. "dev": true,
  142. "license": "MIT",
  143. "dependencies": {
  144. "@babel/traverse": "^7.28.6",
  145. "@babel/types": "^7.28.6"
  146. },
  147. "engines": {
  148. "node": ">=6.9.0"
  149. }
  150. },
  151. "node_modules/@babel/helper-module-transforms": {
  152. "version": "7.28.6",
  153. "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz",
  154. "integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==",
  155. "dev": true,
  156. "license": "MIT",
  157. "dependencies": {
  158. "@babel/helper-module-imports": "^7.28.6",
  159. "@babel/helper-validator-identifier": "^7.28.5",
  160. "@babel/traverse": "^7.28.6"
  161. },
  162. "engines": {
  163. "node": ">=6.9.0"
  164. },
  165. "peerDependencies": {
  166. "@babel/core": "^7.0.0"
  167. }
  168. },
  169. "node_modules/@babel/helper-string-parser": {
  170. "version": "7.27.1",
  171. "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
  172. "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
  173. "dev": true,
  174. "license": "MIT",
  175. "engines": {
  176. "node": ">=6.9.0"
  177. }
  178. },
  179. "node_modules/@babel/helper-validator-identifier": {
  180. "version": "7.28.5",
  181. "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
  182. "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
  183. "dev": true,
  184. "license": "MIT",
  185. "engines": {
  186. "node": ">=6.9.0"
  187. }
  188. },
  189. "node_modules/@babel/helper-validator-option": {
  190. "version": "7.27.1",
  191. "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz",
  192. "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==",
  193. "dev": true,
  194. "license": "MIT",
  195. "engines": {
  196. "node": ">=6.9.0"
  197. }
  198. },
  199. "node_modules/@babel/helpers": {
  200. "version": "7.29.2",
  201. "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.2.tgz",
  202. "integrity": "sha512-HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw==",
  203. "dev": true,
  204. "license": "MIT",
  205. "dependencies": {
  206. "@babel/template": "^7.28.6",
  207. "@babel/types": "^7.29.0"
  208. },
  209. "engines": {
  210. "node": ">=6.9.0"
  211. }
  212. },
  213. "node_modules/@babel/parser": {
  214. "version": "7.29.2",
  215. "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.2.tgz",
  216. "integrity": "sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==",
  217. "dev": true,
  218. "license": "MIT",
  219. "dependencies": {
  220. "@babel/types": "^7.29.0"
  221. },
  222. "bin": {
  223. "parser": "bin/babel-parser.js"
  224. },
  225. "engines": {
  226. "node": ">=6.0.0"
  227. }
  228. },
  229. "node_modules/@babel/template": {
  230. "version": "7.28.6",
  231. "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz",
  232. "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==",
  233. "dev": true,
  234. "license": "MIT",
  235. "dependencies": {
  236. "@babel/code-frame": "^7.28.6",
  237. "@babel/parser": "^7.28.6",
  238. "@babel/types": "^7.28.6"
  239. },
  240. "engines": {
  241. "node": ">=6.9.0"
  242. }
  243. },
  244. "node_modules/@babel/traverse": {
  245. "version": "7.29.0",
  246. "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.0.tgz",
  247. "integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==",
  248. "dev": true,
  249. "license": "MIT",
  250. "dependencies": {
  251. "@babel/code-frame": "^7.29.0",
  252. "@babel/generator": "^7.29.0",
  253. "@babel/helper-globals": "^7.28.0",
  254. "@babel/parser": "^7.29.0",
  255. "@babel/template": "^7.28.6",
  256. "@babel/types": "^7.29.0",
  257. "debug": "^4.3.1"
  258. },
  259. "engines": {
  260. "node": ">=6.9.0"
  261. }
  262. },
  263. "node_modules/@babel/types": {
  264. "version": "7.29.0",
  265. "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz",
  266. "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
  267. "dev": true,
  268. "license": "MIT",
  269. "dependencies": {
  270. "@babel/helper-string-parser": "^7.27.1",
  271. "@babel/helper-validator-identifier": "^7.28.5"
  272. },
  273. "engines": {
  274. "node": ">=6.9.0"
  275. }
  276. },
  277. "node_modules/@eslint-community/eslint-utils": {
  278. "version": "4.9.1",
  279. "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz",
  280. "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==",
  281. "dev": true,
  282. "license": "MIT",
  283. "dependencies": {
  284. "eslint-visitor-keys": "^3.4.3"
  285. },
  286. "engines": {
  287. "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
  288. },
  289. "funding": {
  290. "url": "https://opencollective.com/eslint"
  291. },
  292. "peerDependencies": {
  293. "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
  294. }
  295. },
  296. "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": {
  297. "version": "3.4.3",
  298. "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
  299. "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
  300. "dev": true,
  301. "license": "Apache-2.0",
  302. "engines": {
  303. "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
  304. },
  305. "funding": {
  306. "url": "https://opencollective.com/eslint"
  307. }
  308. },
  309. "node_modules/@eslint-community/regexpp": {
  310. "version": "4.12.2",
  311. "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz",
  312. "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==",
  313. "dev": true,
  314. "license": "MIT",
  315. "engines": {
  316. "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
  317. }
  318. },
  319. "node_modules/@eslint/config-array": {
  320. "version": "0.21.2",
  321. "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.2.tgz",
  322. "integrity": "sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==",
  323. "dev": true,
  324. "license": "Apache-2.0",
  325. "dependencies": {
  326. "@eslint/object-schema": "^2.1.7",
  327. "debug": "^4.3.1",
  328. "minimatch": "^3.1.5"
  329. },
  330. "engines": {
  331. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  332. }
  333. },
  334. "node_modules/@eslint/config-helpers": {
  335. "version": "0.4.2",
  336. "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz",
  337. "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==",
  338. "dev": true,
  339. "license": "Apache-2.0",
  340. "dependencies": {
  341. "@eslint/core": "^0.17.0"
  342. },
  343. "engines": {
  344. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  345. }
  346. },
  347. "node_modules/@eslint/core": {
  348. "version": "0.17.0",
  349. "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz",
  350. "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==",
  351. "dev": true,
  352. "license": "Apache-2.0",
  353. "dependencies": {
  354. "@types/json-schema": "^7.0.15"
  355. },
  356. "engines": {
  357. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  358. }
  359. },
  360. "node_modules/@eslint/eslintrc": {
  361. "version": "3.3.5",
  362. "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.5.tgz",
  363. "integrity": "sha512-4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg==",
  364. "dev": true,
  365. "license": "MIT",
  366. "dependencies": {
  367. "ajv": "^6.14.0",
  368. "debug": "^4.3.2",
  369. "espree": "^10.0.1",
  370. "globals": "^14.0.0",
  371. "ignore": "^5.2.0",
  372. "import-fresh": "^3.2.1",
  373. "js-yaml": "^4.1.1",
  374. "minimatch": "^3.1.5",
  375. "strip-json-comments": "^3.1.1"
  376. },
  377. "engines": {
  378. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  379. },
  380. "funding": {
  381. "url": "https://opencollective.com/eslint"
  382. }
  383. },
  384. "node_modules/@eslint/eslintrc/node_modules/globals": {
  385. "version": "14.0.0",
  386. "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz",
  387. "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==",
  388. "dev": true,
  389. "license": "MIT",
  390. "engines": {
  391. "node": ">=18"
  392. },
  393. "funding": {
  394. "url": "https://github.com/sponsors/sindresorhus"
  395. }
  396. },
  397. "node_modules/@eslint/js": {
  398. "version": "9.39.4",
  399. "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.4.tgz",
  400. "integrity": "sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==",
  401. "dev": true,
  402. "license": "MIT",
  403. "engines": {
  404. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  405. },
  406. "funding": {
  407. "url": "https://eslint.org/donate"
  408. }
  409. },
  410. "node_modules/@eslint/object-schema": {
  411. "version": "2.1.7",
  412. "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz",
  413. "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==",
  414. "dev": true,
  415. "license": "Apache-2.0",
  416. "engines": {
  417. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  418. }
  419. },
  420. "node_modules/@eslint/plugin-kit": {
  421. "version": "0.4.1",
  422. "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz",
  423. "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==",
  424. "dev": true,
  425. "license": "Apache-2.0",
  426. "dependencies": {
  427. "@eslint/core": "^0.17.0",
  428. "levn": "^0.4.1"
  429. },
  430. "engines": {
  431. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  432. }
  433. },
  434. "node_modules/@humanfs/core": {
  435. "version": "0.19.1",
  436. "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz",
  437. "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==",
  438. "dev": true,
  439. "license": "Apache-2.0",
  440. "engines": {
  441. "node": ">=18.18.0"
  442. }
  443. },
  444. "node_modules/@humanfs/node": {
  445. "version": "0.16.7",
  446. "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.7.tgz",
  447. "integrity": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==",
  448. "dev": true,
  449. "license": "Apache-2.0",
  450. "dependencies": {
  451. "@humanfs/core": "^0.19.1",
  452. "@humanwhocodes/retry": "^0.4.0"
  453. },
  454. "engines": {
  455. "node": ">=18.18.0"
  456. }
  457. },
  458. "node_modules/@humanwhocodes/module-importer": {
  459. "version": "1.0.1",
  460. "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
  461. "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
  462. "dev": true,
  463. "license": "Apache-2.0",
  464. "engines": {
  465. "node": ">=12.22"
  466. },
  467. "funding": {
  468. "type": "github",
  469. "url": "https://github.com/sponsors/nzakas"
  470. }
  471. },
  472. "node_modules/@humanwhocodes/retry": {
  473. "version": "0.4.3",
  474. "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz",
  475. "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==",
  476. "dev": true,
  477. "license": "Apache-2.0",
  478. "engines": {
  479. "node": ">=18.18"
  480. },
  481. "funding": {
  482. "type": "github",
  483. "url": "https://github.com/sponsors/nzakas"
  484. }
  485. },
  486. "node_modules/@jridgewell/gen-mapping": {
  487. "version": "0.3.13",
  488. "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
  489. "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
  490. "dev": true,
  491. "license": "MIT",
  492. "dependencies": {
  493. "@jridgewell/sourcemap-codec": "^1.5.0",
  494. "@jridgewell/trace-mapping": "^0.3.24"
  495. }
  496. },
  497. "node_modules/@jridgewell/remapping": {
  498. "version": "2.3.5",
  499. "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
  500. "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
  501. "dev": true,
  502. "license": "MIT",
  503. "dependencies": {
  504. "@jridgewell/gen-mapping": "^0.3.5",
  505. "@jridgewell/trace-mapping": "^0.3.24"
  506. }
  507. },
  508. "node_modules/@jridgewell/resolve-uri": {
  509. "version": "3.1.2",
  510. "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
  511. "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
  512. "dev": true,
  513. "license": "MIT",
  514. "engines": {
  515. "node": ">=6.0.0"
  516. }
  517. },
  518. "node_modules/@jridgewell/sourcemap-codec": {
  519. "version": "1.5.5",
  520. "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
  521. "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
  522. "dev": true,
  523. "license": "MIT"
  524. },
  525. "node_modules/@jridgewell/trace-mapping": {
  526. "version": "0.3.31",
  527. "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
  528. "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
  529. "dev": true,
  530. "license": "MIT",
  531. "dependencies": {
  532. "@jridgewell/resolve-uri": "^3.1.0",
  533. "@jridgewell/sourcemap-codec": "^1.4.14"
  534. }
  535. },
  536. "node_modules/@oxc-project/types": {
  537. "version": "0.122.0",
  538. "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.122.0.tgz",
  539. "integrity": "sha512-oLAl5kBpV4w69UtFZ9xqcmTi+GENWOcPF7FCrczTiBbmC0ibXxCwyvZGbO39rCVEuLGAZM84DH0pUIyyv/YJzA==",
  540. "dev": true,
  541. "license": "MIT",
  542. "funding": {
  543. "url": "https://github.com/sponsors/Boshen"
  544. }
  545. },
  546. "node_modules/@rolldown/binding-win32-x64-msvc": {
  547. "version": "1.0.0-rc.12",
  548. "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.0-rc.12.tgz",
  549. "integrity": "sha512-PyqoipaswDLAZtot351MLhrlrh6lcZPo2LSYE+VDxbVk24LVKAGOuE4hb8xZQmrPAuEtTZW8E6D2zc5EUZX4Lw==",
  550. "cpu": [
  551. "x64"
  552. ],
  553. "dev": true,
  554. "license": "MIT",
  555. "optional": true,
  556. "os": [
  557. "win32"
  558. ],
  559. "engines": {
  560. "node": "^20.19.0 || >=22.12.0"
  561. }
  562. },
  563. "node_modules/@rolldown/pluginutils": {
  564. "version": "1.0.0-rc.7",
  565. "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.7.tgz",
  566. "integrity": "sha512-qujRfC8sFVInYSPPMLQByRh7zhwkGFS4+tyMQ83srV1qrxL4g8E2tyxVVyxd0+8QeBM1mIk9KbWxkegRr76XzA==",
  567. "dev": true,
  568. "license": "MIT"
  569. },
  570. "node_modules/@tailwindcss/node": {
  571. "version": "4.2.2",
  572. "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.2.2.tgz",
  573. "integrity": "sha512-pXS+wJ2gZpVXqFaUEjojq7jzMpTGf8rU6ipJz5ovJV6PUGmlJ+jvIwGrzdHdQ80Sg+wmQxUFuoW1UAAwHNEdFA==",
  574. "dev": true,
  575. "license": "MIT",
  576. "dependencies": {
  577. "@jridgewell/remapping": "^2.3.5",
  578. "enhanced-resolve": "^5.19.0",
  579. "jiti": "^2.6.1",
  580. "lightningcss": "1.32.0",
  581. "magic-string": "^0.30.21",
  582. "source-map-js": "^1.2.1",
  583. "tailwindcss": "4.2.2"
  584. }
  585. },
  586. "node_modules/@tailwindcss/oxide": {
  587. "version": "4.2.2",
  588. "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.2.2.tgz",
  589. "integrity": "sha512-qEUA07+E5kehxYp9BVMpq9E8vnJuBHfJEC0vPC5e7iL/hw7HR61aDKoVoKzrG+QKp56vhNZe4qwkRmMC0zDLvg==",
  590. "dev": true,
  591. "license": "MIT",
  592. "engines": {
  593. "node": ">= 20"
  594. },
  595. "optionalDependencies": {
  596. "@tailwindcss/oxide-android-arm64": "4.2.2",
  597. "@tailwindcss/oxide-darwin-arm64": "4.2.2",
  598. "@tailwindcss/oxide-darwin-x64": "4.2.2",
  599. "@tailwindcss/oxide-freebsd-x64": "4.2.2",
  600. "@tailwindcss/oxide-linux-arm-gnueabihf": "4.2.2",
  601. "@tailwindcss/oxide-linux-arm64-gnu": "4.2.2",
  602. "@tailwindcss/oxide-linux-arm64-musl": "4.2.2",
  603. "@tailwindcss/oxide-linux-x64-gnu": "4.2.2",
  604. "@tailwindcss/oxide-linux-x64-musl": "4.2.2",
  605. "@tailwindcss/oxide-wasm32-wasi": "4.2.2",
  606. "@tailwindcss/oxide-win32-arm64-msvc": "4.2.2",
  607. "@tailwindcss/oxide-win32-x64-msvc": "4.2.2"
  608. }
  609. },
  610. "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
  611. "version": "4.2.2",
  612. "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.2.2.tgz",
  613. "integrity": "sha512-1T/37VvI7WyH66b+vqHj/cLwnCxt7Qt3WFu5Q8hk65aOvlwAhs7rAp1VkulBJw/N4tMirXjVnylTR72uI0HGcA==",
  614. "cpu": [
  615. "x64"
  616. ],
  617. "dev": true,
  618. "license": "MIT",
  619. "optional": true,
  620. "os": [
  621. "win32"
  622. ],
  623. "engines": {
  624. "node": ">= 20"
  625. }
  626. },
  627. "node_modules/@tailwindcss/vite": {
  628. "version": "4.2.2",
  629. "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.2.2.tgz",
  630. "integrity": "sha512-mEiF5HO1QqCLXoNEfXVA1Tzo+cYsrqV7w9Juj2wdUFyW07JRenqMG225MvPwr3ZD9N1bFQj46X7r33iHxLUW0w==",
  631. "dev": true,
  632. "license": "MIT",
  633. "dependencies": {
  634. "@tailwindcss/node": "4.2.2",
  635. "@tailwindcss/oxide": "4.2.2",
  636. "tailwindcss": "4.2.2"
  637. },
  638. "peerDependencies": {
  639. "vite": "^5.2.0 || ^6 || ^7 || ^8"
  640. }
  641. },
  642. "node_modules/@types/estree": {
  643. "version": "1.0.8",
  644. "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
  645. "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
  646. "dev": true,
  647. "license": "MIT"
  648. },
  649. "node_modules/@types/json-schema": {
  650. "version": "7.0.15",
  651. "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
  652. "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
  653. "dev": true,
  654. "license": "MIT"
  655. },
  656. "node_modules/@types/node": {
  657. "version": "24.12.1",
  658. "resolved": "https://registry.npmjs.org/@types/node/-/node-24.12.1.tgz",
  659. "integrity": "sha512-v6Ct1W1Fdz7xg5jYCg4FTrbNcIqzds2jv/HL6+5Rs/Cyjf0oljAgW59zvDZXyYG7nt9MLrAFJv9erP/fLjwt+g==",
  660. "dev": true,
  661. "license": "MIT",
  662. "dependencies": {
  663. "undici-types": "~7.16.0"
  664. }
  665. },
  666. "node_modules/@types/react": {
  667. "version": "19.2.14",
  668. "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.14.tgz",
  669. "integrity": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==",
  670. "dev": true,
  671. "license": "MIT",
  672. "dependencies": {
  673. "csstype": "^3.2.2"
  674. }
  675. },
  676. "node_modules/@types/react-dom": {
  677. "version": "19.2.3",
  678. "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz",
  679. "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
  680. "dev": true,
  681. "license": "MIT",
  682. "peerDependencies": {
  683. "@types/react": "^19.2.0"
  684. }
  685. },
  686. "node_modules/@typescript-eslint/eslint-plugin": {
  687. "version": "8.58.0",
  688. "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.58.0.tgz",
  689. "integrity": "sha512-RLkVSiNuUP1C2ROIWfqX+YcUfLaSnxGE/8M+Y57lopVwg9VTYYfhuz15Yf1IzCKgZj6/rIbYTmJCUSqr76r0Wg==",
  690. "dev": true,
  691. "license": "MIT",
  692. "dependencies": {
  693. "@eslint-community/regexpp": "^4.12.2",
  694. "@typescript-eslint/scope-manager": "8.58.0",
  695. "@typescript-eslint/type-utils": "8.58.0",
  696. "@typescript-eslint/utils": "8.58.0",
  697. "@typescript-eslint/visitor-keys": "8.58.0",
  698. "ignore": "^7.0.5",
  699. "natural-compare": "^1.4.0",
  700. "ts-api-utils": "^2.5.0"
  701. },
  702. "engines": {
  703. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  704. },
  705. "funding": {
  706. "type": "opencollective",
  707. "url": "https://opencollective.com/typescript-eslint"
  708. },
  709. "peerDependencies": {
  710. "@typescript-eslint/parser": "^8.58.0",
  711. "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
  712. "typescript": ">=4.8.4 <6.1.0"
  713. }
  714. },
  715. "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": {
  716. "version": "7.0.5",
  717. "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz",
  718. "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==",
  719. "dev": true,
  720. "license": "MIT",
  721. "engines": {
  722. "node": ">= 4"
  723. }
  724. },
  725. "node_modules/@typescript-eslint/parser": {
  726. "version": "8.58.0",
  727. "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.58.0.tgz",
  728. "integrity": "sha512-rLoGZIf9afaRBYsPUMtvkDWykwXwUPL60HebR4JgTI8mxfFe2cQTu3AGitANp4b9B2QlVru6WzjgB2IzJKiCSA==",
  729. "dev": true,
  730. "license": "MIT",
  731. "dependencies": {
  732. "@typescript-eslint/scope-manager": "8.58.0",
  733. "@typescript-eslint/types": "8.58.0",
  734. "@typescript-eslint/typescript-estree": "8.58.0",
  735. "@typescript-eslint/visitor-keys": "8.58.0",
  736. "debug": "^4.4.3"
  737. },
  738. "engines": {
  739. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  740. },
  741. "funding": {
  742. "type": "opencollective",
  743. "url": "https://opencollective.com/typescript-eslint"
  744. },
  745. "peerDependencies": {
  746. "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
  747. "typescript": ">=4.8.4 <6.1.0"
  748. }
  749. },
  750. "node_modules/@typescript-eslint/project-service": {
  751. "version": "8.58.0",
  752. "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.58.0.tgz",
  753. "integrity": "sha512-8Q/wBPWLQP1j16NxoPNIKpDZFMaxl7yWIoqXWYeWO+Bbd2mjgvoF0dxP2jKZg5+x49rgKdf7Ck473M8PC3V9lg==",
  754. "dev": true,
  755. "license": "MIT",
  756. "dependencies": {
  757. "@typescript-eslint/tsconfig-utils": "^8.58.0",
  758. "@typescript-eslint/types": "^8.58.0",
  759. "debug": "^4.4.3"
  760. },
  761. "engines": {
  762. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  763. },
  764. "funding": {
  765. "type": "opencollective",
  766. "url": "https://opencollective.com/typescript-eslint"
  767. },
  768. "peerDependencies": {
  769. "typescript": ">=4.8.4 <6.1.0"
  770. }
  771. },
  772. "node_modules/@typescript-eslint/scope-manager": {
  773. "version": "8.58.0",
  774. "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.58.0.tgz",
  775. "integrity": "sha512-W1Lur1oF50FxSnNdGp3Vs6P+yBRSmZiw4IIjEeYxd8UQJwhUF0gDgDD/W/Tgmh73mxgEU3qX0Bzdl/NGuSPEpQ==",
  776. "dev": true,
  777. "license": "MIT",
  778. "dependencies": {
  779. "@typescript-eslint/types": "8.58.0",
  780. "@typescript-eslint/visitor-keys": "8.58.0"
  781. },
  782. "engines": {
  783. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  784. },
  785. "funding": {
  786. "type": "opencollective",
  787. "url": "https://opencollective.com/typescript-eslint"
  788. }
  789. },
  790. "node_modules/@typescript-eslint/tsconfig-utils": {
  791. "version": "8.58.0",
  792. "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.58.0.tgz",
  793. "integrity": "sha512-doNSZEVJsWEu4htiVC+PR6NpM+pa+a4ClH9INRWOWCUzMst/VA9c4gXq92F8GUD1rwhNvRLkgjfYtFXegXQF7A==",
  794. "dev": true,
  795. "license": "MIT",
  796. "engines": {
  797. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  798. },
  799. "funding": {
  800. "type": "opencollective",
  801. "url": "https://opencollective.com/typescript-eslint"
  802. },
  803. "peerDependencies": {
  804. "typescript": ">=4.8.4 <6.1.0"
  805. }
  806. },
  807. "node_modules/@typescript-eslint/type-utils": {
  808. "version": "8.58.0",
  809. "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.58.0.tgz",
  810. "integrity": "sha512-aGsCQImkDIqMyx1u4PrVlbi/krmDsQUs4zAcCV6M7yPcPev+RqVlndsJy9kJ8TLihW9TZ0kbDAzctpLn5o+lOg==",
  811. "dev": true,
  812. "license": "MIT",
  813. "dependencies": {
  814. "@typescript-eslint/types": "8.58.0",
  815. "@typescript-eslint/typescript-estree": "8.58.0",
  816. "@typescript-eslint/utils": "8.58.0",
  817. "debug": "^4.4.3",
  818. "ts-api-utils": "^2.5.0"
  819. },
  820. "engines": {
  821. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  822. },
  823. "funding": {
  824. "type": "opencollective",
  825. "url": "https://opencollective.com/typescript-eslint"
  826. },
  827. "peerDependencies": {
  828. "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
  829. "typescript": ">=4.8.4 <6.1.0"
  830. }
  831. },
  832. "node_modules/@typescript-eslint/types": {
  833. "version": "8.58.0",
  834. "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.58.0.tgz",
  835. "integrity": "sha512-O9CjxypDT89fbHxRfETNoAnHj/i6IpRK0CvbVN3qibxlLdo5p5hcLmUuCCrHMpxiWSwKyI8mCP7qRNYuOJ0Uww==",
  836. "dev": true,
  837. "license": "MIT",
  838. "engines": {
  839. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  840. },
  841. "funding": {
  842. "type": "opencollective",
  843. "url": "https://opencollective.com/typescript-eslint"
  844. }
  845. },
  846. "node_modules/@typescript-eslint/typescript-estree": {
  847. "version": "8.58.0",
  848. "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.58.0.tgz",
  849. "integrity": "sha512-7vv5UWbHqew/dvs+D3e1RvLv1v2eeZ9txRHPnEEBUgSNLx5ghdzjHa0sgLWYVKssH+lYmV0JaWdoubo0ncGYLA==",
  850. "dev": true,
  851. "license": "MIT",
  852. "dependencies": {
  853. "@typescript-eslint/project-service": "8.58.0",
  854. "@typescript-eslint/tsconfig-utils": "8.58.0",
  855. "@typescript-eslint/types": "8.58.0",
  856. "@typescript-eslint/visitor-keys": "8.58.0",
  857. "debug": "^4.4.3",
  858. "minimatch": "^10.2.2",
  859. "semver": "^7.7.3",
  860. "tinyglobby": "^0.2.15",
  861. "ts-api-utils": "^2.5.0"
  862. },
  863. "engines": {
  864. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  865. },
  866. "funding": {
  867. "type": "opencollective",
  868. "url": "https://opencollective.com/typescript-eslint"
  869. },
  870. "peerDependencies": {
  871. "typescript": ">=4.8.4 <6.1.0"
  872. }
  873. },
  874. "node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match": {
  875. "version": "4.0.4",
  876. "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz",
  877. "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
  878. "dev": true,
  879. "license": "MIT",
  880. "engines": {
  881. "node": "18 || 20 || >=22"
  882. }
  883. },
  884. "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": {
  885. "version": "5.0.5",
  886. "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.5.tgz",
  887. "integrity": "sha512-VZznLgtwhn+Mact9tfiwx64fA9erHH/MCXEUfB/0bX/6Fz6ny5EGTXYltMocqg4xFAQZtnO3DHWWXi8RiuN7cQ==",
  888. "dev": true,
  889. "license": "MIT",
  890. "dependencies": {
  891. "balanced-match": "^4.0.2"
  892. },
  893. "engines": {
  894. "node": "18 || 20 || >=22"
  895. }
  896. },
  897. "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": {
  898. "version": "10.2.5",
  899. "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz",
  900. "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
  901. "dev": true,
  902. "license": "BlueOak-1.0.0",
  903. "dependencies": {
  904. "brace-expansion": "^5.0.5"
  905. },
  906. "engines": {
  907. "node": "18 || 20 || >=22"
  908. },
  909. "funding": {
  910. "url": "https://github.com/sponsors/isaacs"
  911. }
  912. },
  913. "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": {
  914. "version": "7.7.4",
  915. "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz",
  916. "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
  917. "dev": true,
  918. "license": "ISC",
  919. "bin": {
  920. "semver": "bin/semver.js"
  921. },
  922. "engines": {
  923. "node": ">=10"
  924. }
  925. },
  926. "node_modules/@typescript-eslint/utils": {
  927. "version": "8.58.0",
  928. "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.58.0.tgz",
  929. "integrity": "sha512-RfeSqcFeHMHlAWzt4TBjWOAtoW9lnsAGiP3GbaX9uVgTYYrMbVnGONEfUCiSss+xMHFl+eHZiipmA8WkQ7FuNA==",
  930. "dev": true,
  931. "license": "MIT",
  932. "dependencies": {
  933. "@eslint-community/eslint-utils": "^4.9.1",
  934. "@typescript-eslint/scope-manager": "8.58.0",
  935. "@typescript-eslint/types": "8.58.0",
  936. "@typescript-eslint/typescript-estree": "8.58.0"
  937. },
  938. "engines": {
  939. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  940. },
  941. "funding": {
  942. "type": "opencollective",
  943. "url": "https://opencollective.com/typescript-eslint"
  944. },
  945. "peerDependencies": {
  946. "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
  947. "typescript": ">=4.8.4 <6.1.0"
  948. }
  949. },
  950. "node_modules/@typescript-eslint/visitor-keys": {
  951. "version": "8.58.0",
  952. "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.58.0.tgz",
  953. "integrity": "sha512-XJ9UD9+bbDo4a4epraTwG3TsNPeiB9aShrUneAVXy8q4LuwowN+qu89/6ByLMINqvIMeI9H9hOHQtg/ijrYXzQ==",
  954. "dev": true,
  955. "license": "MIT",
  956. "dependencies": {
  957. "@typescript-eslint/types": "8.58.0",
  958. "eslint-visitor-keys": "^5.0.0"
  959. },
  960. "engines": {
  961. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  962. },
  963. "funding": {
  964. "type": "opencollective",
  965. "url": "https://opencollective.com/typescript-eslint"
  966. }
  967. },
  968. "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": {
  969. "version": "5.0.1",
  970. "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz",
  971. "integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==",
  972. "dev": true,
  973. "license": "Apache-2.0",
  974. "engines": {
  975. "node": "^20.19.0 || ^22.13.0 || >=24"
  976. },
  977. "funding": {
  978. "url": "https://opencollective.com/eslint"
  979. }
  980. },
  981. "node_modules/@vitejs/plugin-react": {
  982. "version": "6.0.1",
  983. "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-6.0.1.tgz",
  984. "integrity": "sha512-l9X/E3cDb+xY3SWzlG1MOGt2usfEHGMNIaegaUGFsLkb3RCn/k8/TOXBcab+OndDI4TBtktT8/9BwwW8Vi9KUQ==",
  985. "dev": true,
  986. "license": "MIT",
  987. "dependencies": {
  988. "@rolldown/pluginutils": "1.0.0-rc.7"
  989. },
  990. "engines": {
  991. "node": "^20.19.0 || >=22.12.0"
  992. },
  993. "peerDependencies": {
  994. "@rolldown/plugin-babel": "^0.1.7 || ^0.2.0",
  995. "babel-plugin-react-compiler": "^1.0.0",
  996. "vite": "^8.0.0"
  997. },
  998. "peerDependenciesMeta": {
  999. "@rolldown/plugin-babel": {
  1000. "optional": true
  1001. },
  1002. "babel-plugin-react-compiler": {
  1003. "optional": true
  1004. }
  1005. }
  1006. },
  1007. "node_modules/acorn": {
  1008. "version": "8.16.0",
  1009. "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz",
  1010. "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==",
  1011. "dev": true,
  1012. "license": "MIT",
  1013. "bin": {
  1014. "acorn": "bin/acorn"
  1015. },
  1016. "engines": {
  1017. "node": ">=0.4.0"
  1018. }
  1019. },
  1020. "node_modules/acorn-jsx": {
  1021. "version": "5.3.2",
  1022. "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
  1023. "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
  1024. "dev": true,
  1025. "license": "MIT",
  1026. "peerDependencies": {
  1027. "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
  1028. }
  1029. },
  1030. "node_modules/ajv": {
  1031. "version": "6.14.0",
  1032. "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.14.0.tgz",
  1033. "integrity": "sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==",
  1034. "dev": true,
  1035. "license": "MIT",
  1036. "dependencies": {
  1037. "fast-deep-equal": "^3.1.1",
  1038. "fast-json-stable-stringify": "^2.0.0",
  1039. "json-schema-traverse": "^0.4.1",
  1040. "uri-js": "^4.2.2"
  1041. },
  1042. "funding": {
  1043. "type": "github",
  1044. "url": "https://github.com/sponsors/epoberezkin"
  1045. }
  1046. },
  1047. "node_modules/ansi-styles": {
  1048. "version": "4.3.0",
  1049. "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
  1050. "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
  1051. "dev": true,
  1052. "license": "MIT",
  1053. "dependencies": {
  1054. "color-convert": "^2.0.1"
  1055. },
  1056. "engines": {
  1057. "node": ">=8"
  1058. },
  1059. "funding": {
  1060. "url": "https://github.com/chalk/ansi-styles?sponsor=1"
  1061. }
  1062. },
  1063. "node_modules/argparse": {
  1064. "version": "2.0.1",
  1065. "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
  1066. "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
  1067. "dev": true,
  1068. "license": "Python-2.0"
  1069. },
  1070. "node_modules/asynckit": {
  1071. "version": "0.4.0",
  1072. "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
  1073. "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
  1074. "license": "MIT"
  1075. },
  1076. "node_modules/axios": {
  1077. "version": "1.14.0",
  1078. "resolved": "https://registry.npmjs.org/axios/-/axios-1.14.0.tgz",
  1079. "integrity": "sha512-3Y8yrqLSwjuzpXuZ0oIYZ/XGgLwUIBU3uLvbcpb0pidD9ctpShJd43KSlEEkVQg6DS0G9NKyzOvBfUtDKEyHvQ==",
  1080. "license": "MIT",
  1081. "dependencies": {
  1082. "follow-redirects": "^1.15.11",
  1083. "form-data": "^4.0.5",
  1084. "proxy-from-env": "^2.1.0"
  1085. }
  1086. },
  1087. "node_modules/balanced-match": {
  1088. "version": "1.0.2",
  1089. "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
  1090. "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
  1091. "dev": true,
  1092. "license": "MIT"
  1093. },
  1094. "node_modules/baseline-browser-mapping": {
  1095. "version": "2.10.13",
  1096. "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.13.tgz",
  1097. "integrity": "sha512-BL2sTuHOdy0YT1lYieUxTw/QMtPBC3pmlJC6xk8BBYVv6vcw3SGdKemQ+Xsx9ik2F/lYDO9tqsFQH1r9PFuHKw==",
  1098. "dev": true,
  1099. "license": "Apache-2.0",
  1100. "bin": {
  1101. "baseline-browser-mapping": "dist/cli.cjs"
  1102. },
  1103. "engines": {
  1104. "node": ">=6.0.0"
  1105. }
  1106. },
  1107. "node_modules/brace-expansion": {
  1108. "version": "1.1.13",
  1109. "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.13.tgz",
  1110. "integrity": "sha512-9ZLprWS6EENmhEOpjCYW2c8VkmOvckIJZfkr7rBW6dObmfgJ/L1GpSYW5Hpo9lDz4D1+n0Ckz8rU7FwHDQiG/w==",
  1111. "dev": true,
  1112. "license": "MIT",
  1113. "dependencies": {
  1114. "balanced-match": "^1.0.0",
  1115. "concat-map": "0.0.1"
  1116. }
  1117. },
  1118. "node_modules/browserslist": {
  1119. "version": "4.28.2",
  1120. "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.2.tgz",
  1121. "integrity": "sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==",
  1122. "dev": true,
  1123. "funding": [
  1124. {
  1125. "type": "opencollective",
  1126. "url": "https://opencollective.com/browserslist"
  1127. },
  1128. {
  1129. "type": "tidelift",
  1130. "url": "https://tidelift.com/funding/github/npm/browserslist"
  1131. },
  1132. {
  1133. "type": "github",
  1134. "url": "https://github.com/sponsors/ai"
  1135. }
  1136. ],
  1137. "license": "MIT",
  1138. "dependencies": {
  1139. "baseline-browser-mapping": "^2.10.12",
  1140. "caniuse-lite": "^1.0.30001782",
  1141. "electron-to-chromium": "^1.5.328",
  1142. "node-releases": "^2.0.36",
  1143. "update-browserslist-db": "^1.2.3"
  1144. },
  1145. "bin": {
  1146. "browserslist": "cli.js"
  1147. },
  1148. "engines": {
  1149. "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
  1150. }
  1151. },
  1152. "node_modules/call-bind-apply-helpers": {
  1153. "version": "1.0.2",
  1154. "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
  1155. "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
  1156. "license": "MIT",
  1157. "dependencies": {
  1158. "es-errors": "^1.3.0",
  1159. "function-bind": "^1.1.2"
  1160. },
  1161. "engines": {
  1162. "node": ">= 0.4"
  1163. }
  1164. },
  1165. "node_modules/callsites": {
  1166. "version": "3.1.0",
  1167. "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
  1168. "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
  1169. "dev": true,
  1170. "license": "MIT",
  1171. "engines": {
  1172. "node": ">=6"
  1173. }
  1174. },
  1175. "node_modules/caniuse-lite": {
  1176. "version": "1.0.30001784",
  1177. "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001784.tgz",
  1178. "integrity": "sha512-WU346nBTklUV9YfUl60fqRbU5ZqyXlqvo1SgigE1OAXK5bFL8LL9q1K7aap3N739l4BvNqnkm3YrGHiY9sfUQw==",
  1179. "dev": true,
  1180. "funding": [
  1181. {
  1182. "type": "opencollective",
  1183. "url": "https://opencollective.com/browserslist"
  1184. },
  1185. {
  1186. "type": "tidelift",
  1187. "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
  1188. },
  1189. {
  1190. "type": "github",
  1191. "url": "https://github.com/sponsors/ai"
  1192. }
  1193. ],
  1194. "license": "CC-BY-4.0"
  1195. },
  1196. "node_modules/chalk": {
  1197. "version": "4.1.2",
  1198. "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
  1199. "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
  1200. "dev": true,
  1201. "license": "MIT",
  1202. "dependencies": {
  1203. "ansi-styles": "^4.1.0",
  1204. "supports-color": "^7.1.0"
  1205. },
  1206. "engines": {
  1207. "node": ">=10"
  1208. },
  1209. "funding": {
  1210. "url": "https://github.com/chalk/chalk?sponsor=1"
  1211. }
  1212. },
  1213. "node_modules/clsx": {
  1214. "version": "2.1.1",
  1215. "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
  1216. "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
  1217. "license": "MIT",
  1218. "engines": {
  1219. "node": ">=6"
  1220. }
  1221. },
  1222. "node_modules/color-convert": {
  1223. "version": "2.0.1",
  1224. "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
  1225. "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
  1226. "dev": true,
  1227. "license": "MIT",
  1228. "dependencies": {
  1229. "color-name": "~1.1.4"
  1230. },
  1231. "engines": {
  1232. "node": ">=7.0.0"
  1233. }
  1234. },
  1235. "node_modules/color-name": {
  1236. "version": "1.1.4",
  1237. "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
  1238. "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
  1239. "dev": true,
  1240. "license": "MIT"
  1241. },
  1242. "node_modules/combined-stream": {
  1243. "version": "1.0.8",
  1244. "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
  1245. "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
  1246. "license": "MIT",
  1247. "dependencies": {
  1248. "delayed-stream": "~1.0.0"
  1249. },
  1250. "engines": {
  1251. "node": ">= 0.8"
  1252. }
  1253. },
  1254. "node_modules/concat-map": {
  1255. "version": "0.0.1",
  1256. "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
  1257. "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
  1258. "dev": true,
  1259. "license": "MIT"
  1260. },
  1261. "node_modules/convert-source-map": {
  1262. "version": "2.0.0",
  1263. "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
  1264. "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
  1265. "dev": true,
  1266. "license": "MIT"
  1267. },
  1268. "node_modules/cookie": {
  1269. "version": "1.1.1",
  1270. "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.1.1.tgz",
  1271. "integrity": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==",
  1272. "license": "MIT",
  1273. "engines": {
  1274. "node": ">=18"
  1275. },
  1276. "funding": {
  1277. "type": "opencollective",
  1278. "url": "https://opencollective.com/express"
  1279. }
  1280. },
  1281. "node_modules/cross-spawn": {
  1282. "version": "7.0.6",
  1283. "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
  1284. "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
  1285. "dev": true,
  1286. "license": "MIT",
  1287. "dependencies": {
  1288. "path-key": "^3.1.0",
  1289. "shebang-command": "^2.0.0",
  1290. "which": "^2.0.1"
  1291. },
  1292. "engines": {
  1293. "node": ">= 8"
  1294. }
  1295. },
  1296. "node_modules/csstype": {
  1297. "version": "3.2.3",
  1298. "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
  1299. "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
  1300. "dev": true,
  1301. "license": "MIT"
  1302. },
  1303. "node_modules/debug": {
  1304. "version": "4.4.3",
  1305. "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
  1306. "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
  1307. "dev": true,
  1308. "license": "MIT",
  1309. "dependencies": {
  1310. "ms": "^2.1.3"
  1311. },
  1312. "engines": {
  1313. "node": ">=6.0"
  1314. },
  1315. "peerDependenciesMeta": {
  1316. "supports-color": {
  1317. "optional": true
  1318. }
  1319. }
  1320. },
  1321. "node_modules/deep-is": {
  1322. "version": "0.1.4",
  1323. "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
  1324. "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
  1325. "dev": true,
  1326. "license": "MIT"
  1327. },
  1328. "node_modules/delayed-stream": {
  1329. "version": "1.0.0",
  1330. "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
  1331. "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
  1332. "license": "MIT",
  1333. "engines": {
  1334. "node": ">=0.4.0"
  1335. }
  1336. },
  1337. "node_modules/detect-libc": {
  1338. "version": "2.1.2",
  1339. "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
  1340. "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
  1341. "dev": true,
  1342. "license": "Apache-2.0",
  1343. "engines": {
  1344. "node": ">=8"
  1345. }
  1346. },
  1347. "node_modules/dunder-proto": {
  1348. "version": "1.0.1",
  1349. "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
  1350. "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
  1351. "license": "MIT",
  1352. "dependencies": {
  1353. "call-bind-apply-helpers": "^1.0.1",
  1354. "es-errors": "^1.3.0",
  1355. "gopd": "^1.2.0"
  1356. },
  1357. "engines": {
  1358. "node": ">= 0.4"
  1359. }
  1360. },
  1361. "node_modules/electron-to-chromium": {
  1362. "version": "1.5.331",
  1363. "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.331.tgz",
  1364. "integrity": "sha512-IbxXrsTlD3hRodkLnbxAPP4OuJYdWCeM3IOdT+CpcMoIwIoDfCmRpEtSPfwBXxVkg9xmBeY7Lz2Eo2TDn/HC3Q==",
  1365. "dev": true,
  1366. "license": "ISC"
  1367. },
  1368. "node_modules/enhanced-resolve": {
  1369. "version": "5.20.1",
  1370. "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.20.1.tgz",
  1371. "integrity": "sha512-Qohcme7V1inbAfvjItgw0EaxVX5q2rdVEZHRBrEQdRZTssLDGsL8Lwrznl8oQ/6kuTJONLaDcGjkNP247XEhcA==",
  1372. "dev": true,
  1373. "license": "MIT",
  1374. "dependencies": {
  1375. "graceful-fs": "^4.2.4",
  1376. "tapable": "^2.3.0"
  1377. },
  1378. "engines": {
  1379. "node": ">=10.13.0"
  1380. }
  1381. },
  1382. "node_modules/es-define-property": {
  1383. "version": "1.0.1",
  1384. "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
  1385. "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
  1386. "license": "MIT",
  1387. "engines": {
  1388. "node": ">= 0.4"
  1389. }
  1390. },
  1391. "node_modules/es-errors": {
  1392. "version": "1.3.0",
  1393. "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
  1394. "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
  1395. "license": "MIT",
  1396. "engines": {
  1397. "node": ">= 0.4"
  1398. }
  1399. },
  1400. "node_modules/es-object-atoms": {
  1401. "version": "1.1.1",
  1402. "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
  1403. "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
  1404. "license": "MIT",
  1405. "dependencies": {
  1406. "es-errors": "^1.3.0"
  1407. },
  1408. "engines": {
  1409. "node": ">= 0.4"
  1410. }
  1411. },
  1412. "node_modules/es-set-tostringtag": {
  1413. "version": "2.1.0",
  1414. "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
  1415. "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
  1416. "license": "MIT",
  1417. "dependencies": {
  1418. "es-errors": "^1.3.0",
  1419. "get-intrinsic": "^1.2.6",
  1420. "has-tostringtag": "^1.0.2",
  1421. "hasown": "^2.0.2"
  1422. },
  1423. "engines": {
  1424. "node": ">= 0.4"
  1425. }
  1426. },
  1427. "node_modules/escalade": {
  1428. "version": "3.2.0",
  1429. "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
  1430. "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
  1431. "dev": true,
  1432. "license": "MIT",
  1433. "engines": {
  1434. "node": ">=6"
  1435. }
  1436. },
  1437. "node_modules/escape-string-regexp": {
  1438. "version": "4.0.0",
  1439. "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
  1440. "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
  1441. "dev": true,
  1442. "license": "MIT",
  1443. "engines": {
  1444. "node": ">=10"
  1445. },
  1446. "funding": {
  1447. "url": "https://github.com/sponsors/sindresorhus"
  1448. }
  1449. },
  1450. "node_modules/eslint": {
  1451. "version": "9.39.4",
  1452. "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.4.tgz",
  1453. "integrity": "sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ==",
  1454. "dev": true,
  1455. "license": "MIT",
  1456. "dependencies": {
  1457. "@eslint-community/eslint-utils": "^4.8.0",
  1458. "@eslint-community/regexpp": "^4.12.1",
  1459. "@eslint/config-array": "^0.21.2",
  1460. "@eslint/config-helpers": "^0.4.2",
  1461. "@eslint/core": "^0.17.0",
  1462. "@eslint/eslintrc": "^3.3.5",
  1463. "@eslint/js": "9.39.4",
  1464. "@eslint/plugin-kit": "^0.4.1",
  1465. "@humanfs/node": "^0.16.6",
  1466. "@humanwhocodes/module-importer": "^1.0.1",
  1467. "@humanwhocodes/retry": "^0.4.2",
  1468. "@types/estree": "^1.0.6",
  1469. "ajv": "^6.14.0",
  1470. "chalk": "^4.0.0",
  1471. "cross-spawn": "^7.0.6",
  1472. "debug": "^4.3.2",
  1473. "escape-string-regexp": "^4.0.0",
  1474. "eslint-scope": "^8.4.0",
  1475. "eslint-visitor-keys": "^4.2.1",
  1476. "espree": "^10.4.0",
  1477. "esquery": "^1.5.0",
  1478. "esutils": "^2.0.2",
  1479. "fast-deep-equal": "^3.1.3",
  1480. "file-entry-cache": "^8.0.0",
  1481. "find-up": "^5.0.0",
  1482. "glob-parent": "^6.0.2",
  1483. "ignore": "^5.2.0",
  1484. "imurmurhash": "^0.1.4",
  1485. "is-glob": "^4.0.0",
  1486. "json-stable-stringify-without-jsonify": "^1.0.1",
  1487. "lodash.merge": "^4.6.2",
  1488. "minimatch": "^3.1.5",
  1489. "natural-compare": "^1.4.0",
  1490. "optionator": "^0.9.3"
  1491. },
  1492. "bin": {
  1493. "eslint": "bin/eslint.js"
  1494. },
  1495. "engines": {
  1496. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  1497. },
  1498. "funding": {
  1499. "url": "https://eslint.org/donate"
  1500. },
  1501. "peerDependencies": {
  1502. "jiti": "*"
  1503. },
  1504. "peerDependenciesMeta": {
  1505. "jiti": {
  1506. "optional": true
  1507. }
  1508. }
  1509. },
  1510. "node_modules/eslint-plugin-react-hooks": {
  1511. "version": "7.0.1",
  1512. "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-7.0.1.tgz",
  1513. "integrity": "sha512-O0d0m04evaNzEPoSW+59Mezf8Qt0InfgGIBJnpC0h3NH/WjUAR7BIKUfysC6todmtiZ/A0oUVS8Gce0WhBrHsA==",
  1514. "dev": true,
  1515. "license": "MIT",
  1516. "dependencies": {
  1517. "@babel/core": "^7.24.4",
  1518. "@babel/parser": "^7.24.4",
  1519. "hermes-parser": "^0.25.1",
  1520. "zod": "^3.25.0 || ^4.0.0",
  1521. "zod-validation-error": "^3.5.0 || ^4.0.0"
  1522. },
  1523. "engines": {
  1524. "node": ">=18"
  1525. },
  1526. "peerDependencies": {
  1527. "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0"
  1528. }
  1529. },
  1530. "node_modules/eslint-plugin-react-refresh": {
  1531. "version": "0.5.2",
  1532. "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.5.2.tgz",
  1533. "integrity": "sha512-hmgTH57GfzoTFjVN0yBwTggnsVUF2tcqi7RJZHqi9lIezSs4eFyAMktA68YD4r5kNw1mxyY4dmkyoFDb3FIqrA==",
  1534. "dev": true,
  1535. "license": "MIT",
  1536. "peerDependencies": {
  1537. "eslint": "^9 || ^10"
  1538. }
  1539. },
  1540. "node_modules/eslint-scope": {
  1541. "version": "8.4.0",
  1542. "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz",
  1543. "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==",
  1544. "dev": true,
  1545. "license": "BSD-2-Clause",
  1546. "dependencies": {
  1547. "esrecurse": "^4.3.0",
  1548. "estraverse": "^5.2.0"
  1549. },
  1550. "engines": {
  1551. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  1552. },
  1553. "funding": {
  1554. "url": "https://opencollective.com/eslint"
  1555. }
  1556. },
  1557. "node_modules/eslint-visitor-keys": {
  1558. "version": "4.2.1",
  1559. "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz",
  1560. "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==",
  1561. "dev": true,
  1562. "license": "Apache-2.0",
  1563. "engines": {
  1564. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  1565. },
  1566. "funding": {
  1567. "url": "https://opencollective.com/eslint"
  1568. }
  1569. },
  1570. "node_modules/espree": {
  1571. "version": "10.4.0",
  1572. "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz",
  1573. "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==",
  1574. "dev": true,
  1575. "license": "BSD-2-Clause",
  1576. "dependencies": {
  1577. "acorn": "^8.15.0",
  1578. "acorn-jsx": "^5.3.2",
  1579. "eslint-visitor-keys": "^4.2.1"
  1580. },
  1581. "engines": {
  1582. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  1583. },
  1584. "funding": {
  1585. "url": "https://opencollective.com/eslint"
  1586. }
  1587. },
  1588. "node_modules/esquery": {
  1589. "version": "1.7.0",
  1590. "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.7.0.tgz",
  1591. "integrity": "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==",
  1592. "dev": true,
  1593. "license": "BSD-3-Clause",
  1594. "dependencies": {
  1595. "estraverse": "^5.1.0"
  1596. },
  1597. "engines": {
  1598. "node": ">=0.10"
  1599. }
  1600. },
  1601. "node_modules/esrecurse": {
  1602. "version": "4.3.0",
  1603. "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
  1604. "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
  1605. "dev": true,
  1606. "license": "BSD-2-Clause",
  1607. "dependencies": {
  1608. "estraverse": "^5.2.0"
  1609. },
  1610. "engines": {
  1611. "node": ">=4.0"
  1612. }
  1613. },
  1614. "node_modules/estraverse": {
  1615. "version": "5.3.0",
  1616. "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
  1617. "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
  1618. "dev": true,
  1619. "license": "BSD-2-Clause",
  1620. "engines": {
  1621. "node": ">=4.0"
  1622. }
  1623. },
  1624. "node_modules/esutils": {
  1625. "version": "2.0.3",
  1626. "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
  1627. "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
  1628. "dev": true,
  1629. "license": "BSD-2-Clause",
  1630. "engines": {
  1631. "node": ">=0.10.0"
  1632. }
  1633. },
  1634. "node_modules/fast-deep-equal": {
  1635. "version": "3.1.3",
  1636. "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
  1637. "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
  1638. "dev": true,
  1639. "license": "MIT"
  1640. },
  1641. "node_modules/fast-json-stable-stringify": {
  1642. "version": "2.1.0",
  1643. "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
  1644. "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
  1645. "dev": true,
  1646. "license": "MIT"
  1647. },
  1648. "node_modules/fast-levenshtein": {
  1649. "version": "2.0.6",
  1650. "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
  1651. "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
  1652. "dev": true,
  1653. "license": "MIT"
  1654. },
  1655. "node_modules/fdir": {
  1656. "version": "6.5.0",
  1657. "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
  1658. "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
  1659. "dev": true,
  1660. "license": "MIT",
  1661. "engines": {
  1662. "node": ">=12.0.0"
  1663. },
  1664. "peerDependencies": {
  1665. "picomatch": "^3 || ^4"
  1666. },
  1667. "peerDependenciesMeta": {
  1668. "picomatch": {
  1669. "optional": true
  1670. }
  1671. }
  1672. },
  1673. "node_modules/file-entry-cache": {
  1674. "version": "8.0.0",
  1675. "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz",
  1676. "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==",
  1677. "dev": true,
  1678. "license": "MIT",
  1679. "dependencies": {
  1680. "flat-cache": "^4.0.0"
  1681. },
  1682. "engines": {
  1683. "node": ">=16.0.0"
  1684. }
  1685. },
  1686. "node_modules/find-up": {
  1687. "version": "5.0.0",
  1688. "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
  1689. "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
  1690. "dev": true,
  1691. "license": "MIT",
  1692. "dependencies": {
  1693. "locate-path": "^6.0.0",
  1694. "path-exists": "^4.0.0"
  1695. },
  1696. "engines": {
  1697. "node": ">=10"
  1698. },
  1699. "funding": {
  1700. "url": "https://github.com/sponsors/sindresorhus"
  1701. }
  1702. },
  1703. "node_modules/flat-cache": {
  1704. "version": "4.0.1",
  1705. "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz",
  1706. "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==",
  1707. "dev": true,
  1708. "license": "MIT",
  1709. "dependencies": {
  1710. "flatted": "^3.2.9",
  1711. "keyv": "^4.5.4"
  1712. },
  1713. "engines": {
  1714. "node": ">=16"
  1715. }
  1716. },
  1717. "node_modules/flatted": {
  1718. "version": "3.4.2",
  1719. "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz",
  1720. "integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==",
  1721. "dev": true,
  1722. "license": "ISC"
  1723. },
  1724. "node_modules/follow-redirects": {
  1725. "version": "1.15.11",
  1726. "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz",
  1727. "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==",
  1728. "funding": [
  1729. {
  1730. "type": "individual",
  1731. "url": "https://github.com/sponsors/RubenVerborgh"
  1732. }
  1733. ],
  1734. "license": "MIT",
  1735. "engines": {
  1736. "node": ">=4.0"
  1737. },
  1738. "peerDependenciesMeta": {
  1739. "debug": {
  1740. "optional": true
  1741. }
  1742. }
  1743. },
  1744. "node_modules/form-data": {
  1745. "version": "4.0.5",
  1746. "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz",
  1747. "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==",
  1748. "license": "MIT",
  1749. "dependencies": {
  1750. "asynckit": "^0.4.0",
  1751. "combined-stream": "^1.0.8",
  1752. "es-set-tostringtag": "^2.1.0",
  1753. "hasown": "^2.0.2",
  1754. "mime-types": "^2.1.12"
  1755. },
  1756. "engines": {
  1757. "node": ">= 6"
  1758. }
  1759. },
  1760. "node_modules/function-bind": {
  1761. "version": "1.1.2",
  1762. "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
  1763. "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
  1764. "license": "MIT",
  1765. "funding": {
  1766. "url": "https://github.com/sponsors/ljharb"
  1767. }
  1768. },
  1769. "node_modules/gensync": {
  1770. "version": "1.0.0-beta.2",
  1771. "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
  1772. "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
  1773. "dev": true,
  1774. "license": "MIT",
  1775. "engines": {
  1776. "node": ">=6.9.0"
  1777. }
  1778. },
  1779. "node_modules/get-intrinsic": {
  1780. "version": "1.3.0",
  1781. "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
  1782. "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
  1783. "license": "MIT",
  1784. "dependencies": {
  1785. "call-bind-apply-helpers": "^1.0.2",
  1786. "es-define-property": "^1.0.1",
  1787. "es-errors": "^1.3.0",
  1788. "es-object-atoms": "^1.1.1",
  1789. "function-bind": "^1.1.2",
  1790. "get-proto": "^1.0.1",
  1791. "gopd": "^1.2.0",
  1792. "has-symbols": "^1.1.0",
  1793. "hasown": "^2.0.2",
  1794. "math-intrinsics": "^1.1.0"
  1795. },
  1796. "engines": {
  1797. "node": ">= 0.4"
  1798. },
  1799. "funding": {
  1800. "url": "https://github.com/sponsors/ljharb"
  1801. }
  1802. },
  1803. "node_modules/get-proto": {
  1804. "version": "1.0.1",
  1805. "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
  1806. "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
  1807. "license": "MIT",
  1808. "dependencies": {
  1809. "dunder-proto": "^1.0.1",
  1810. "es-object-atoms": "^1.0.0"
  1811. },
  1812. "engines": {
  1813. "node": ">= 0.4"
  1814. }
  1815. },
  1816. "node_modules/glob-parent": {
  1817. "version": "6.0.2",
  1818. "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
  1819. "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
  1820. "dev": true,
  1821. "license": "ISC",
  1822. "dependencies": {
  1823. "is-glob": "^4.0.3"
  1824. },
  1825. "engines": {
  1826. "node": ">=10.13.0"
  1827. }
  1828. },
  1829. "node_modules/globals": {
  1830. "version": "17.4.0",
  1831. "resolved": "https://registry.npmjs.org/globals/-/globals-17.4.0.tgz",
  1832. "integrity": "sha512-hjrNztw/VajQwOLsMNT1cbJiH2muO3OROCHnbehc8eY5JyD2gqz4AcMHPqgaOR59DjgUjYAYLeH699g/eWi2jw==",
  1833. "dev": true,
  1834. "license": "MIT",
  1835. "engines": {
  1836. "node": ">=18"
  1837. },
  1838. "funding": {
  1839. "url": "https://github.com/sponsors/sindresorhus"
  1840. }
  1841. },
  1842. "node_modules/gopd": {
  1843. "version": "1.2.0",
  1844. "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
  1845. "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
  1846. "license": "MIT",
  1847. "engines": {
  1848. "node": ">= 0.4"
  1849. },
  1850. "funding": {
  1851. "url": "https://github.com/sponsors/ljharb"
  1852. }
  1853. },
  1854. "node_modules/graceful-fs": {
  1855. "version": "4.2.11",
  1856. "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
  1857. "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
  1858. "dev": true,
  1859. "license": "ISC"
  1860. },
  1861. "node_modules/has-flag": {
  1862. "version": "4.0.0",
  1863. "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
  1864. "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
  1865. "dev": true,
  1866. "license": "MIT",
  1867. "engines": {
  1868. "node": ">=8"
  1869. }
  1870. },
  1871. "node_modules/has-symbols": {
  1872. "version": "1.1.0",
  1873. "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
  1874. "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
  1875. "license": "MIT",
  1876. "engines": {
  1877. "node": ">= 0.4"
  1878. },
  1879. "funding": {
  1880. "url": "https://github.com/sponsors/ljharb"
  1881. }
  1882. },
  1883. "node_modules/has-tostringtag": {
  1884. "version": "1.0.2",
  1885. "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
  1886. "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
  1887. "license": "MIT",
  1888. "dependencies": {
  1889. "has-symbols": "^1.0.3"
  1890. },
  1891. "engines": {
  1892. "node": ">= 0.4"
  1893. },
  1894. "funding": {
  1895. "url": "https://github.com/sponsors/ljharb"
  1896. }
  1897. },
  1898. "node_modules/hasown": {
  1899. "version": "2.0.2",
  1900. "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
  1901. "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
  1902. "license": "MIT",
  1903. "dependencies": {
  1904. "function-bind": "^1.1.2"
  1905. },
  1906. "engines": {
  1907. "node": ">= 0.4"
  1908. }
  1909. },
  1910. "node_modules/hermes-estree": {
  1911. "version": "0.25.1",
  1912. "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz",
  1913. "integrity": "sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==",
  1914. "dev": true,
  1915. "license": "MIT"
  1916. },
  1917. "node_modules/hermes-parser": {
  1918. "version": "0.25.1",
  1919. "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.25.1.tgz",
  1920. "integrity": "sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==",
  1921. "dev": true,
  1922. "license": "MIT",
  1923. "dependencies": {
  1924. "hermes-estree": "0.25.1"
  1925. }
  1926. },
  1927. "node_modules/ignore": {
  1928. "version": "5.3.2",
  1929. "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
  1930. "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
  1931. "dev": true,
  1932. "license": "MIT",
  1933. "engines": {
  1934. "node": ">= 4"
  1935. }
  1936. },
  1937. "node_modules/import-fresh": {
  1938. "version": "3.3.1",
  1939. "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz",
  1940. "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==",
  1941. "dev": true,
  1942. "license": "MIT",
  1943. "dependencies": {
  1944. "parent-module": "^1.0.0",
  1945. "resolve-from": "^4.0.0"
  1946. },
  1947. "engines": {
  1948. "node": ">=6"
  1949. },
  1950. "funding": {
  1951. "url": "https://github.com/sponsors/sindresorhus"
  1952. }
  1953. },
  1954. "node_modules/imurmurhash": {
  1955. "version": "0.1.4",
  1956. "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
  1957. "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
  1958. "dev": true,
  1959. "license": "MIT",
  1960. "engines": {
  1961. "node": ">=0.8.19"
  1962. }
  1963. },
  1964. "node_modules/is-extglob": {
  1965. "version": "2.1.1",
  1966. "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
  1967. "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
  1968. "dev": true,
  1969. "license": "MIT",
  1970. "engines": {
  1971. "node": ">=0.10.0"
  1972. }
  1973. },
  1974. "node_modules/is-glob": {
  1975. "version": "4.0.3",
  1976. "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
  1977. "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
  1978. "dev": true,
  1979. "license": "MIT",
  1980. "dependencies": {
  1981. "is-extglob": "^2.1.1"
  1982. },
  1983. "engines": {
  1984. "node": ">=0.10.0"
  1985. }
  1986. },
  1987. "node_modules/isexe": {
  1988. "version": "2.0.0",
  1989. "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
  1990. "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
  1991. "dev": true,
  1992. "license": "ISC"
  1993. },
  1994. "node_modules/jiti": {
  1995. "version": "2.6.1",
  1996. "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz",
  1997. "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==",
  1998. "dev": true,
  1999. "license": "MIT",
  2000. "bin": {
  2001. "jiti": "lib/jiti-cli.mjs"
  2002. }
  2003. },
  2004. "node_modules/js-tokens": {
  2005. "version": "4.0.0",
  2006. "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
  2007. "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
  2008. "dev": true,
  2009. "license": "MIT"
  2010. },
  2011. "node_modules/js-yaml": {
  2012. "version": "4.1.1",
  2013. "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz",
  2014. "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==",
  2015. "dev": true,
  2016. "license": "MIT",
  2017. "dependencies": {
  2018. "argparse": "^2.0.1"
  2019. },
  2020. "bin": {
  2021. "js-yaml": "bin/js-yaml.js"
  2022. }
  2023. },
  2024. "node_modules/jsesc": {
  2025. "version": "3.1.0",
  2026. "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
  2027. "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
  2028. "dev": true,
  2029. "license": "MIT",
  2030. "bin": {
  2031. "jsesc": "bin/jsesc"
  2032. },
  2033. "engines": {
  2034. "node": ">=6"
  2035. }
  2036. },
  2037. "node_modules/json-buffer": {
  2038. "version": "3.0.1",
  2039. "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
  2040. "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
  2041. "dev": true,
  2042. "license": "MIT"
  2043. },
  2044. "node_modules/json-schema-traverse": {
  2045. "version": "0.4.1",
  2046. "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
  2047. "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
  2048. "dev": true,
  2049. "license": "MIT"
  2050. },
  2051. "node_modules/json-stable-stringify-without-jsonify": {
  2052. "version": "1.0.1",
  2053. "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
  2054. "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
  2055. "dev": true,
  2056. "license": "MIT"
  2057. },
  2058. "node_modules/json5": {
  2059. "version": "2.2.3",
  2060. "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
  2061. "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
  2062. "dev": true,
  2063. "license": "MIT",
  2064. "bin": {
  2065. "json5": "lib/cli.js"
  2066. },
  2067. "engines": {
  2068. "node": ">=6"
  2069. }
  2070. },
  2071. "node_modules/keyv": {
  2072. "version": "4.5.4",
  2073. "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
  2074. "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
  2075. "dev": true,
  2076. "license": "MIT",
  2077. "dependencies": {
  2078. "json-buffer": "3.0.1"
  2079. }
  2080. },
  2081. "node_modules/levn": {
  2082. "version": "0.4.1",
  2083. "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
  2084. "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
  2085. "dev": true,
  2086. "license": "MIT",
  2087. "dependencies": {
  2088. "prelude-ls": "^1.2.1",
  2089. "type-check": "~0.4.0"
  2090. },
  2091. "engines": {
  2092. "node": ">= 0.8.0"
  2093. }
  2094. },
  2095. "node_modules/lightningcss": {
  2096. "version": "1.32.0",
  2097. "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
  2098. "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
  2099. "dev": true,
  2100. "license": "MPL-2.0",
  2101. "dependencies": {
  2102. "detect-libc": "^2.0.3"
  2103. },
  2104. "engines": {
  2105. "node": ">= 12.0.0"
  2106. },
  2107. "funding": {
  2108. "type": "opencollective",
  2109. "url": "https://opencollective.com/parcel"
  2110. },
  2111. "optionalDependencies": {
  2112. "lightningcss-android-arm64": "1.32.0",
  2113. "lightningcss-darwin-arm64": "1.32.0",
  2114. "lightningcss-darwin-x64": "1.32.0",
  2115. "lightningcss-freebsd-x64": "1.32.0",
  2116. "lightningcss-linux-arm-gnueabihf": "1.32.0",
  2117. "lightningcss-linux-arm64-gnu": "1.32.0",
  2118. "lightningcss-linux-arm64-musl": "1.32.0",
  2119. "lightningcss-linux-x64-gnu": "1.32.0",
  2120. "lightningcss-linux-x64-musl": "1.32.0",
  2121. "lightningcss-win32-arm64-msvc": "1.32.0",
  2122. "lightningcss-win32-x64-msvc": "1.32.0"
  2123. }
  2124. },
  2125. "node_modules/lightningcss-win32-x64-msvc": {
  2126. "version": "1.32.0",
  2127. "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
  2128. "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
  2129. "cpu": [
  2130. "x64"
  2131. ],
  2132. "dev": true,
  2133. "license": "MPL-2.0",
  2134. "optional": true,
  2135. "os": [
  2136. "win32"
  2137. ],
  2138. "engines": {
  2139. "node": ">= 12.0.0"
  2140. },
  2141. "funding": {
  2142. "type": "opencollective",
  2143. "url": "https://opencollective.com/parcel"
  2144. }
  2145. },
  2146. "node_modules/locate-path": {
  2147. "version": "6.0.0",
  2148. "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
  2149. "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
  2150. "dev": true,
  2151. "license": "MIT",
  2152. "dependencies": {
  2153. "p-locate": "^5.0.0"
  2154. },
  2155. "engines": {
  2156. "node": ">=10"
  2157. },
  2158. "funding": {
  2159. "url": "https://github.com/sponsors/sindresorhus"
  2160. }
  2161. },
  2162. "node_modules/lodash.merge": {
  2163. "version": "4.6.2",
  2164. "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
  2165. "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
  2166. "dev": true,
  2167. "license": "MIT"
  2168. },
  2169. "node_modules/lru-cache": {
  2170. "version": "5.1.1",
  2171. "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
  2172. "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
  2173. "dev": true,
  2174. "license": "ISC",
  2175. "dependencies": {
  2176. "yallist": "^3.0.2"
  2177. }
  2178. },
  2179. "node_modules/lucide-react": {
  2180. "version": "1.7.0",
  2181. "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-1.7.0.tgz",
  2182. "integrity": "sha512-yI7BeItCLZJTXikmK4KNUGCKoGzSvbKlfCvw44bU4fXAL6v3gYS4uHD1jzsLkfwODYwI6Drw5Tu9Z5ulDe0TSg==",
  2183. "license": "ISC",
  2184. "peerDependencies": {
  2185. "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0"
  2186. }
  2187. },
  2188. "node_modules/magic-string": {
  2189. "version": "0.30.21",
  2190. "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
  2191. "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
  2192. "dev": true,
  2193. "license": "MIT",
  2194. "dependencies": {
  2195. "@jridgewell/sourcemap-codec": "^1.5.5"
  2196. }
  2197. },
  2198. "node_modules/math-intrinsics": {
  2199. "version": "1.1.0",
  2200. "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
  2201. "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
  2202. "license": "MIT",
  2203. "engines": {
  2204. "node": ">= 0.4"
  2205. }
  2206. },
  2207. "node_modules/mime-db": {
  2208. "version": "1.52.0",
  2209. "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
  2210. "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
  2211. "license": "MIT",
  2212. "engines": {
  2213. "node": ">= 0.6"
  2214. }
  2215. },
  2216. "node_modules/mime-types": {
  2217. "version": "2.1.35",
  2218. "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
  2219. "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
  2220. "license": "MIT",
  2221. "dependencies": {
  2222. "mime-db": "1.52.0"
  2223. },
  2224. "engines": {
  2225. "node": ">= 0.6"
  2226. }
  2227. },
  2228. "node_modules/minimatch": {
  2229. "version": "3.1.5",
  2230. "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz",
  2231. "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==",
  2232. "dev": true,
  2233. "license": "ISC",
  2234. "dependencies": {
  2235. "brace-expansion": "^1.1.7"
  2236. },
  2237. "engines": {
  2238. "node": "*"
  2239. }
  2240. },
  2241. "node_modules/ms": {
  2242. "version": "2.1.3",
  2243. "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
  2244. "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
  2245. "dev": true,
  2246. "license": "MIT"
  2247. },
  2248. "node_modules/nanoid": {
  2249. "version": "3.3.11",
  2250. "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
  2251. "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
  2252. "dev": true,
  2253. "funding": [
  2254. {
  2255. "type": "github",
  2256. "url": "https://github.com/sponsors/ai"
  2257. }
  2258. ],
  2259. "license": "MIT",
  2260. "bin": {
  2261. "nanoid": "bin/nanoid.cjs"
  2262. },
  2263. "engines": {
  2264. "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
  2265. }
  2266. },
  2267. "node_modules/natural-compare": {
  2268. "version": "1.4.0",
  2269. "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
  2270. "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
  2271. "dev": true,
  2272. "license": "MIT"
  2273. },
  2274. "node_modules/node-releases": {
  2275. "version": "2.0.37",
  2276. "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.37.tgz",
  2277. "integrity": "sha512-1h5gKZCF+pO/o3Iqt5Jp7wc9rH3eJJ0+nh/CIoiRwjRxde/hAHyLPXYN4V3CqKAbiZPSeJFSWHmJsbkicta0Eg==",
  2278. "dev": true,
  2279. "license": "MIT"
  2280. },
  2281. "node_modules/optionator": {
  2282. "version": "0.9.4",
  2283. "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz",
  2284. "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==",
  2285. "dev": true,
  2286. "license": "MIT",
  2287. "dependencies": {
  2288. "deep-is": "^0.1.3",
  2289. "fast-levenshtein": "^2.0.6",
  2290. "levn": "^0.4.1",
  2291. "prelude-ls": "^1.2.1",
  2292. "type-check": "^0.4.0",
  2293. "word-wrap": "^1.2.5"
  2294. },
  2295. "engines": {
  2296. "node": ">= 0.8.0"
  2297. }
  2298. },
  2299. "node_modules/p-limit": {
  2300. "version": "3.1.0",
  2301. "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
  2302. "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
  2303. "dev": true,
  2304. "license": "MIT",
  2305. "dependencies": {
  2306. "yocto-queue": "^0.1.0"
  2307. },
  2308. "engines": {
  2309. "node": ">=10"
  2310. },
  2311. "funding": {
  2312. "url": "https://github.com/sponsors/sindresorhus"
  2313. }
  2314. },
  2315. "node_modules/p-locate": {
  2316. "version": "5.0.0",
  2317. "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
  2318. "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
  2319. "dev": true,
  2320. "license": "MIT",
  2321. "dependencies": {
  2322. "p-limit": "^3.0.2"
  2323. },
  2324. "engines": {
  2325. "node": ">=10"
  2326. },
  2327. "funding": {
  2328. "url": "https://github.com/sponsors/sindresorhus"
  2329. }
  2330. },
  2331. "node_modules/parent-module": {
  2332. "version": "1.0.1",
  2333. "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
  2334. "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
  2335. "dev": true,
  2336. "license": "MIT",
  2337. "dependencies": {
  2338. "callsites": "^3.0.0"
  2339. },
  2340. "engines": {
  2341. "node": ">=6"
  2342. }
  2343. },
  2344. "node_modules/path-exists": {
  2345. "version": "4.0.0",
  2346. "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
  2347. "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
  2348. "dev": true,
  2349. "license": "MIT",
  2350. "engines": {
  2351. "node": ">=8"
  2352. }
  2353. },
  2354. "node_modules/path-key": {
  2355. "version": "3.1.1",
  2356. "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
  2357. "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
  2358. "dev": true,
  2359. "license": "MIT",
  2360. "engines": {
  2361. "node": ">=8"
  2362. }
  2363. },
  2364. "node_modules/picocolors": {
  2365. "version": "1.1.1",
  2366. "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
  2367. "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
  2368. "dev": true,
  2369. "license": "ISC"
  2370. },
  2371. "node_modules/picomatch": {
  2372. "version": "4.0.4",
  2373. "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
  2374. "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
  2375. "dev": true,
  2376. "license": "MIT",
  2377. "engines": {
  2378. "node": ">=12"
  2379. },
  2380. "funding": {
  2381. "url": "https://github.com/sponsors/jonschlinkert"
  2382. }
  2383. },
  2384. "node_modules/postcss": {
  2385. "version": "8.5.8",
  2386. "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.8.tgz",
  2387. "integrity": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==",
  2388. "dev": true,
  2389. "funding": [
  2390. {
  2391. "type": "opencollective",
  2392. "url": "https://opencollective.com/postcss/"
  2393. },
  2394. {
  2395. "type": "tidelift",
  2396. "url": "https://tidelift.com/funding/github/npm/postcss"
  2397. },
  2398. {
  2399. "type": "github",
  2400. "url": "https://github.com/sponsors/ai"
  2401. }
  2402. ],
  2403. "license": "MIT",
  2404. "dependencies": {
  2405. "nanoid": "^3.3.11",
  2406. "picocolors": "^1.1.1",
  2407. "source-map-js": "^1.2.1"
  2408. },
  2409. "engines": {
  2410. "node": "^10 || ^12 || >=14"
  2411. }
  2412. },
  2413. "node_modules/prelude-ls": {
  2414. "version": "1.2.1",
  2415. "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
  2416. "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
  2417. "dev": true,
  2418. "license": "MIT",
  2419. "engines": {
  2420. "node": ">= 0.8.0"
  2421. }
  2422. },
  2423. "node_modules/proxy-from-env": {
  2424. "version": "2.1.0",
  2425. "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-2.1.0.tgz",
  2426. "integrity": "sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==",
  2427. "license": "MIT",
  2428. "engines": {
  2429. "node": ">=10"
  2430. }
  2431. },
  2432. "node_modules/punycode": {
  2433. "version": "2.3.1",
  2434. "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
  2435. "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
  2436. "dev": true,
  2437. "license": "MIT",
  2438. "engines": {
  2439. "node": ">=6"
  2440. }
  2441. },
  2442. "node_modules/react": {
  2443. "version": "19.2.4",
  2444. "resolved": "https://registry.npmjs.org/react/-/react-19.2.4.tgz",
  2445. "integrity": "sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==",
  2446. "license": "MIT",
  2447. "engines": {
  2448. "node": ">=0.10.0"
  2449. }
  2450. },
  2451. "node_modules/react-dom": {
  2452. "version": "19.2.4",
  2453. "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.4.tgz",
  2454. "integrity": "sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==",
  2455. "license": "MIT",
  2456. "dependencies": {
  2457. "scheduler": "^0.27.0"
  2458. },
  2459. "peerDependencies": {
  2460. "react": "^19.2.4"
  2461. }
  2462. },
  2463. "node_modules/react-router": {
  2464. "version": "7.14.0",
  2465. "resolved": "https://registry.npmjs.org/react-router/-/react-router-7.14.0.tgz",
  2466. "integrity": "sha512-m/xR9N4LQLmAS0ZhkY2nkPA1N7gQ5TUVa5n8TgANuDTARbn1gt+zLPXEm7W0XDTbrQ2AJSJKhoa6yx1D8BcpxQ==",
  2467. "license": "MIT",
  2468. "dependencies": {
  2469. "cookie": "^1.0.1",
  2470. "set-cookie-parser": "^2.6.0"
  2471. },
  2472. "engines": {
  2473. "node": ">=20.0.0"
  2474. },
  2475. "peerDependencies": {
  2476. "react": ">=18",
  2477. "react-dom": ">=18"
  2478. },
  2479. "peerDependenciesMeta": {
  2480. "react-dom": {
  2481. "optional": true
  2482. }
  2483. }
  2484. },
  2485. "node_modules/react-router-dom": {
  2486. "version": "7.14.0",
  2487. "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-7.14.0.tgz",
  2488. "integrity": "sha512-2G3ajSVSZMEtmTjIklRWlNvo8wICEpLihfD/0YMDxbWK2UyP5EGfnoIn9AIQGnF3G/FX0MRbHXdFcD+rL1ZreQ==",
  2489. "license": "MIT",
  2490. "dependencies": {
  2491. "react-router": "7.14.0"
  2492. },
  2493. "engines": {
  2494. "node": ">=20.0.0"
  2495. },
  2496. "peerDependencies": {
  2497. "react": ">=18",
  2498. "react-dom": ">=18"
  2499. }
  2500. },
  2501. "node_modules/react-zoom-pan-pinch": {
  2502. "version": "4.0.2",
  2503. "resolved": "https://registry.npmjs.org/react-zoom-pan-pinch/-/react-zoom-pan-pinch-4.0.2.tgz",
  2504. "integrity": "sha512-PJc40z45IDAaLMYEpXzGrCJo6G+rmALjxtf8yY1XmKILwNQcTOyz5KyPqXyXqKG+04VtAPAl1WKhdHSE/c3gNg==",
  2505. "license": "MIT",
  2506. "engines": {
  2507. "node": ">=8",
  2508. "npm": ">=5"
  2509. },
  2510. "peerDependencies": {
  2511. "react": "*",
  2512. "react-dom": "*"
  2513. }
  2514. },
  2515. "node_modules/resolve-from": {
  2516. "version": "4.0.0",
  2517. "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
  2518. "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
  2519. "dev": true,
  2520. "license": "MIT",
  2521. "engines": {
  2522. "node": ">=4"
  2523. }
  2524. },
  2525. "node_modules/rolldown": {
  2526. "version": "1.0.0-rc.12",
  2527. "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.0-rc.12.tgz",
  2528. "integrity": "sha512-yP4USLIMYrwpPHEFB5JGH1uxhcslv6/hL0OyvTuY+3qlOSJvZ7ntYnoWpehBxufkgN0cvXxppuTu5hHa/zPh+A==",
  2529. "dev": true,
  2530. "license": "MIT",
  2531. "dependencies": {
  2532. "@oxc-project/types": "=0.122.0",
  2533. "@rolldown/pluginutils": "1.0.0-rc.12"
  2534. },
  2535. "bin": {
  2536. "rolldown": "bin/cli.mjs"
  2537. },
  2538. "engines": {
  2539. "node": "^20.19.0 || >=22.12.0"
  2540. },
  2541. "optionalDependencies": {
  2542. "@rolldown/binding-android-arm64": "1.0.0-rc.12",
  2543. "@rolldown/binding-darwin-arm64": "1.0.0-rc.12",
  2544. "@rolldown/binding-darwin-x64": "1.0.0-rc.12",
  2545. "@rolldown/binding-freebsd-x64": "1.0.0-rc.12",
  2546. "@rolldown/binding-linux-arm-gnueabihf": "1.0.0-rc.12",
  2547. "@rolldown/binding-linux-arm64-gnu": "1.0.0-rc.12",
  2548. "@rolldown/binding-linux-arm64-musl": "1.0.0-rc.12",
  2549. "@rolldown/binding-linux-ppc64-gnu": "1.0.0-rc.12",
  2550. "@rolldown/binding-linux-s390x-gnu": "1.0.0-rc.12",
  2551. "@rolldown/binding-linux-x64-gnu": "1.0.0-rc.12",
  2552. "@rolldown/binding-linux-x64-musl": "1.0.0-rc.12",
  2553. "@rolldown/binding-openharmony-arm64": "1.0.0-rc.12",
  2554. "@rolldown/binding-wasm32-wasi": "1.0.0-rc.12",
  2555. "@rolldown/binding-win32-arm64-msvc": "1.0.0-rc.12",
  2556. "@rolldown/binding-win32-x64-msvc": "1.0.0-rc.12"
  2557. }
  2558. },
  2559. "node_modules/rolldown/node_modules/@rolldown/pluginutils": {
  2560. "version": "1.0.0-rc.12",
  2561. "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.12.tgz",
  2562. "integrity": "sha512-HHMwmarRKvoFsJorqYlFeFRzXZqCt2ETQlEDOb9aqssrnVBB1/+xgTGtuTrIk5vzLNX1MjMtTf7W9z3tsSbrxw==",
  2563. "dev": true,
  2564. "license": "MIT"
  2565. },
  2566. "node_modules/scheduler": {
  2567. "version": "0.27.0",
  2568. "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
  2569. "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
  2570. "license": "MIT"
  2571. },
  2572. "node_modules/semver": {
  2573. "version": "6.3.1",
  2574. "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
  2575. "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
  2576. "dev": true,
  2577. "license": "ISC",
  2578. "bin": {
  2579. "semver": "bin/semver.js"
  2580. }
  2581. },
  2582. "node_modules/set-cookie-parser": {
  2583. "version": "2.7.2",
  2584. "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.2.tgz",
  2585. "integrity": "sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==",
  2586. "license": "MIT"
  2587. },
  2588. "node_modules/shebang-command": {
  2589. "version": "2.0.0",
  2590. "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
  2591. "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
  2592. "dev": true,
  2593. "license": "MIT",
  2594. "dependencies": {
  2595. "shebang-regex": "^3.0.0"
  2596. },
  2597. "engines": {
  2598. "node": ">=8"
  2599. }
  2600. },
  2601. "node_modules/shebang-regex": {
  2602. "version": "3.0.0",
  2603. "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
  2604. "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
  2605. "dev": true,
  2606. "license": "MIT",
  2607. "engines": {
  2608. "node": ">=8"
  2609. }
  2610. },
  2611. "node_modules/source-map-js": {
  2612. "version": "1.2.1",
  2613. "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
  2614. "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
  2615. "dev": true,
  2616. "license": "BSD-3-Clause",
  2617. "engines": {
  2618. "node": ">=0.10.0"
  2619. }
  2620. },
  2621. "node_modules/strip-json-comments": {
  2622. "version": "3.1.1",
  2623. "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
  2624. "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
  2625. "dev": true,
  2626. "license": "MIT",
  2627. "engines": {
  2628. "node": ">=8"
  2629. },
  2630. "funding": {
  2631. "url": "https://github.com/sponsors/sindresorhus"
  2632. }
  2633. },
  2634. "node_modules/supports-color": {
  2635. "version": "7.2.0",
  2636. "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
  2637. "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
  2638. "dev": true,
  2639. "license": "MIT",
  2640. "dependencies": {
  2641. "has-flag": "^4.0.0"
  2642. },
  2643. "engines": {
  2644. "node": ">=8"
  2645. }
  2646. },
  2647. "node_modules/tailwind-merge": {
  2648. "version": "3.5.0",
  2649. "resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-3.5.0.tgz",
  2650. "integrity": "sha512-I8K9wewnVDkL1NTGoqWmVEIlUcB9gFriAEkXkfCjX5ib8ezGxtR3xD7iZIxrfArjEsH7F1CHD4RFUtxefdqV/A==",
  2651. "license": "MIT",
  2652. "funding": {
  2653. "type": "github",
  2654. "url": "https://github.com/sponsors/dcastil"
  2655. }
  2656. },
  2657. "node_modules/tailwindcss": {
  2658. "version": "4.2.2",
  2659. "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.2.2.tgz",
  2660. "integrity": "sha512-KWBIxs1Xb6NoLdMVqhbhgwZf2PGBpPEiwOqgI4pFIYbNTfBXiKYyWoTsXgBQ9WFg/OlhnvHaY+AEpW7wSmFo2Q==",
  2661. "dev": true,
  2662. "license": "MIT"
  2663. },
  2664. "node_modules/tapable": {
  2665. "version": "2.3.2",
  2666. "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.2.tgz",
  2667. "integrity": "sha512-1MOpMXuhGzGL5TTCZFItxCc0AARf1EZFQkGqMm7ERKj8+Hgr5oLvJOVFcC+lRmR8hCe2S3jC4T5D7Vg/d7/fhA==",
  2668. "dev": true,
  2669. "license": "MIT",
  2670. "engines": {
  2671. "node": ">=6"
  2672. },
  2673. "funding": {
  2674. "type": "opencollective",
  2675. "url": "https://opencollective.com/webpack"
  2676. }
  2677. },
  2678. "node_modules/tinyglobby": {
  2679. "version": "0.2.15",
  2680. "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
  2681. "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
  2682. "dev": true,
  2683. "license": "MIT",
  2684. "dependencies": {
  2685. "fdir": "^6.5.0",
  2686. "picomatch": "^4.0.3"
  2687. },
  2688. "engines": {
  2689. "node": ">=12.0.0"
  2690. },
  2691. "funding": {
  2692. "url": "https://github.com/sponsors/SuperchupuDev"
  2693. }
  2694. },
  2695. "node_modules/ts-api-utils": {
  2696. "version": "2.5.0",
  2697. "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.5.0.tgz",
  2698. "integrity": "sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==",
  2699. "dev": true,
  2700. "license": "MIT",
  2701. "engines": {
  2702. "node": ">=18.12"
  2703. },
  2704. "peerDependencies": {
  2705. "typescript": ">=4.8.4"
  2706. }
  2707. },
  2708. "node_modules/type-check": {
  2709. "version": "0.4.0",
  2710. "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
  2711. "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
  2712. "dev": true,
  2713. "license": "MIT",
  2714. "dependencies": {
  2715. "prelude-ls": "^1.2.1"
  2716. },
  2717. "engines": {
  2718. "node": ">= 0.8.0"
  2719. }
  2720. },
  2721. "node_modules/typescript": {
  2722. "version": "5.9.3",
  2723. "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
  2724. "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
  2725. "dev": true,
  2726. "license": "Apache-2.0",
  2727. "bin": {
  2728. "tsc": "bin/tsc",
  2729. "tsserver": "bin/tsserver"
  2730. },
  2731. "engines": {
  2732. "node": ">=14.17"
  2733. }
  2734. },
  2735. "node_modules/typescript-eslint": {
  2736. "version": "8.58.0",
  2737. "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.58.0.tgz",
  2738. "integrity": "sha512-e2TQzKfaI85fO+F3QywtX+tCTsu/D3WW5LVU6nz8hTFKFZ8yBJ6mSYRpXqdR3mFjPWmO0eWsTa5f+UpAOe/FMA==",
  2739. "dev": true,
  2740. "license": "MIT",
  2741. "dependencies": {
  2742. "@typescript-eslint/eslint-plugin": "8.58.0",
  2743. "@typescript-eslint/parser": "8.58.0",
  2744. "@typescript-eslint/typescript-estree": "8.58.0",
  2745. "@typescript-eslint/utils": "8.58.0"
  2746. },
  2747. "engines": {
  2748. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  2749. },
  2750. "funding": {
  2751. "type": "opencollective",
  2752. "url": "https://opencollective.com/typescript-eslint"
  2753. },
  2754. "peerDependencies": {
  2755. "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
  2756. "typescript": ">=4.8.4 <6.1.0"
  2757. }
  2758. },
  2759. "node_modules/undici-types": {
  2760. "version": "7.16.0",
  2761. "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz",
  2762. "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==",
  2763. "dev": true,
  2764. "license": "MIT"
  2765. },
  2766. "node_modules/update-browserslist-db": {
  2767. "version": "1.2.3",
  2768. "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz",
  2769. "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
  2770. "dev": true,
  2771. "funding": [
  2772. {
  2773. "type": "opencollective",
  2774. "url": "https://opencollective.com/browserslist"
  2775. },
  2776. {
  2777. "type": "tidelift",
  2778. "url": "https://tidelift.com/funding/github/npm/browserslist"
  2779. },
  2780. {
  2781. "type": "github",
  2782. "url": "https://github.com/sponsors/ai"
  2783. }
  2784. ],
  2785. "license": "MIT",
  2786. "dependencies": {
  2787. "escalade": "^3.2.0",
  2788. "picocolors": "^1.1.1"
  2789. },
  2790. "bin": {
  2791. "update-browserslist-db": "cli.js"
  2792. },
  2793. "peerDependencies": {
  2794. "browserslist": ">= 4.21.0"
  2795. }
  2796. },
  2797. "node_modules/uri-js": {
  2798. "version": "4.4.1",
  2799. "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
  2800. "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
  2801. "dev": true,
  2802. "license": "BSD-2-Clause",
  2803. "dependencies": {
  2804. "punycode": "^2.1.0"
  2805. }
  2806. },
  2807. "node_modules/vite": {
  2808. "version": "8.0.3",
  2809. "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.3.tgz",
  2810. "integrity": "sha512-B9ifbFudT1TFhfltfaIPgjo9Z3mDynBTJSUYxTjOQruf/zHH+ezCQKcoqO+h7a9Pw9Nm/OtlXAiGT1axBgwqrQ==",
  2811. "dev": true,
  2812. "license": "MIT",
  2813. "dependencies": {
  2814. "lightningcss": "^1.32.0",
  2815. "picomatch": "^4.0.4",
  2816. "postcss": "^8.5.8",
  2817. "rolldown": "1.0.0-rc.12",
  2818. "tinyglobby": "^0.2.15"
  2819. },
  2820. "bin": {
  2821. "vite": "bin/vite.js"
  2822. },
  2823. "engines": {
  2824. "node": "^20.19.0 || >=22.12.0"
  2825. },
  2826. "funding": {
  2827. "url": "https://github.com/vitejs/vite?sponsor=1"
  2828. },
  2829. "optionalDependencies": {
  2830. "fsevents": "~2.3.3"
  2831. },
  2832. "peerDependencies": {
  2833. "@types/node": "^20.19.0 || >=22.12.0",
  2834. "@vitejs/devtools": "^0.1.0",
  2835. "esbuild": "^0.27.0",
  2836. "jiti": ">=1.21.0",
  2837. "less": "^4.0.0",
  2838. "sass": "^1.70.0",
  2839. "sass-embedded": "^1.70.0",
  2840. "stylus": ">=0.54.8",
  2841. "sugarss": "^5.0.0",
  2842. "terser": "^5.16.0",
  2843. "tsx": "^4.8.1",
  2844. "yaml": "^2.4.2"
  2845. },
  2846. "peerDependenciesMeta": {
  2847. "@types/node": {
  2848. "optional": true
  2849. },
  2850. "@vitejs/devtools": {
  2851. "optional": true
  2852. },
  2853. "esbuild": {
  2854. "optional": true
  2855. },
  2856. "jiti": {
  2857. "optional": true
  2858. },
  2859. "less": {
  2860. "optional": true
  2861. },
  2862. "sass": {
  2863. "optional": true
  2864. },
  2865. "sass-embedded": {
  2866. "optional": true
  2867. },
  2868. "stylus": {
  2869. "optional": true
  2870. },
  2871. "sugarss": {
  2872. "optional": true
  2873. },
  2874. "terser": {
  2875. "optional": true
  2876. },
  2877. "tsx": {
  2878. "optional": true
  2879. },
  2880. "yaml": {
  2881. "optional": true
  2882. }
  2883. }
  2884. },
  2885. "node_modules/which": {
  2886. "version": "2.0.2",
  2887. "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
  2888. "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
  2889. "dev": true,
  2890. "license": "ISC",
  2891. "dependencies": {
  2892. "isexe": "^2.0.0"
  2893. },
  2894. "bin": {
  2895. "node-which": "bin/node-which"
  2896. },
  2897. "engines": {
  2898. "node": ">= 8"
  2899. }
  2900. },
  2901. "node_modules/word-wrap": {
  2902. "version": "1.2.5",
  2903. "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
  2904. "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
  2905. "dev": true,
  2906. "license": "MIT",
  2907. "engines": {
  2908. "node": ">=0.10.0"
  2909. }
  2910. },
  2911. "node_modules/yallist": {
  2912. "version": "3.1.1",
  2913. "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
  2914. "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
  2915. "dev": true,
  2916. "license": "ISC"
  2917. },
  2918. "node_modules/yocto-queue": {
  2919. "version": "0.1.0",
  2920. "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
  2921. "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
  2922. "dev": true,
  2923. "license": "MIT",
  2924. "engines": {
  2925. "node": ">=10"
  2926. },
  2927. "funding": {
  2928. "url": "https://github.com/sponsors/sindresorhus"
  2929. }
  2930. },
  2931. "node_modules/zod": {
  2932. "version": "4.3.6",
  2933. "resolved": "https://registry.npmjs.org/zod/-/zod-4.3.6.tgz",
  2934. "integrity": "sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==",
  2935. "dev": true,
  2936. "license": "MIT",
  2937. "funding": {
  2938. "url": "https://github.com/sponsors/colinhacks"
  2939. }
  2940. },
  2941. "node_modules/zod-validation-error": {
  2942. "version": "4.0.2",
  2943. "resolved": "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-4.0.2.tgz",
  2944. "integrity": "sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==",
  2945. "dev": true,
  2946. "license": "MIT",
  2947. "engines": {
  2948. "node": ">=18.0.0"
  2949. },
  2950. "peerDependencies": {
  2951. "zod": "^3.25.0 || ^4.0.0"
  2952. }
  2953. }
  2954. }
  2955. }