pnpm-lock.yaml 180 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. '@hookform/resolvers':
  9. specifier: ^5.0.1
  10. version: 5.0.1(react-hook-form@7.55.0(react@19.1.0))
  11. '@radix-ui/react-alert-dialog':
  12. specifier: ^1.1.7
  13. version: 1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  14. '@radix-ui/react-avatar':
  15. specifier: ^1.1.4
  16. version: 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  17. '@radix-ui/react-checkbox':
  18. specifier: ^1.1.5
  19. version: 1.1.5(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  20. '@radix-ui/react-collapsible':
  21. specifier: ^1.1.4
  22. version: 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  23. '@radix-ui/react-dialog':
  24. specifier: ^1.1.7
  25. version: 1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  26. '@radix-ui/react-dropdown-menu':
  27. specifier: ^2.1.7
  28. version: 2.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  29. '@radix-ui/react-icons':
  30. specifier: ^1.3.2
  31. version: 1.3.2(react@19.1.0)
  32. '@radix-ui/react-label':
  33. specifier: ^2.1.3
  34. version: 2.1.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  35. '@radix-ui/react-popover':
  36. specifier: ^1.1.7
  37. version: 1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  38. '@radix-ui/react-radio-group':
  39. specifier: ^1.2.4
  40. version: 1.2.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  41. '@radix-ui/react-scroll-area':
  42. specifier: ^1.2.4
  43. version: 1.2.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  44. '@radix-ui/react-select':
  45. specifier: ^2.1.7
  46. version: 2.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  47. '@radix-ui/react-separator':
  48. specifier: ^1.1.3
  49. version: 1.1.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  50. '@radix-ui/react-slot':
  51. specifier: ^1.2.0
  52. version: 1.2.0(@types/react@19.1.2)(react@19.1.0)
  53. '@radix-ui/react-switch':
  54. specifier: ^1.1.4
  55. version: 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  56. '@radix-ui/react-tabs':
  57. specifier: ^1.1.4
  58. version: 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  59. '@radix-ui/react-tooltip':
  60. specifier: ^1.2.0
  61. version: 1.2.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  62. '@tabler/icons-react':
  63. specifier: ^3.31.0
  64. version: 3.31.0(react@19.1.0)
  65. '@tailwindcss/vite':
  66. specifier: ^4.1.4
  67. version: 4.1.4(vite@6.2.6(@types/node@22.14.1)(jiti@2.4.2)(lightningcss@1.29.2)(tsx@4.19.3))
  68. '@tanstack/react-query':
  69. specifier: ^5.74.3
  70. version: 5.74.3(react@19.1.0)
  71. '@tanstack/react-router':
  72. specifier: ^1.116.0
  73. version: 1.116.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  74. '@tanstack/react-table':
  75. specifier: ^8.21.3
  76. version: 8.21.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  77. axios:
  78. specifier: ^1.8.4
  79. version: 1.8.4
  80. class-variance-authority:
  81. specifier: ^0.7.1
  82. version: 0.7.1
  83. clsx:
  84. specifier: ^2.1.1
  85. version: 2.1.1
  86. cmdk:
  87. specifier: 1.1.1
  88. version: 1.1.1(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  89. date-fns:
  90. specifier: ^4.1.0
  91. version: 4.1.0
  92. js-cookie:
  93. specifier: ^3.0.5
  94. version: 3.0.5
  95. lucide-react:
  96. specifier: ^0.488.0
  97. version: 0.488.0(react@19.1.0)
  98. react:
  99. specifier: ^19.1.0
  100. version: 19.1.0
  101. react-day-picker:
  102. specifier: 9.6.6
  103. version: 9.6.6(react@19.1.0)
  104. react-dom:
  105. specifier: ^19.1.0
  106. version: 19.1.0(react@19.1.0)
  107. react-hook-form:
  108. specifier: ^7.55.0
  109. version: 7.55.0(react@19.1.0)
  110. react-top-loading-bar:
  111. specifier: ^3.0.2
  112. version: 3.0.2(react@19.1.0)
  113. recharts:
  114. specifier: ^2.15.2
  115. version: 2.15.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  116. sonner:
  117. specifier: ^2.0.3
  118. version: 2.0.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  119. tailwind-merge:
  120. specifier: ^3.2.0
  121. version: 3.2.0
  122. tailwindcss:
  123. specifier: ^4.1.4
  124. version: 4.1.4
  125. tw-animate-css:
  126. specifier: ^1.2.5
  127. version: 1.2.5
  128. zod:
  129. specifier: ^3.24.2
  130. version: 3.24.2
  131. zustand:
  132. specifier: ^5.0.3
  133. version: 5.0.3(@types/react@19.1.2)(react@19.1.0)(use-sync-external-store@1.5.0(react@19.1.0))
  134. devDependencies:
  135. '@eslint/js':
  136. specifier: ^9.24.0
  137. version: 9.24.0
  138. '@faker-js/faker':
  139. specifier: ^9.7.0
  140. version: 9.7.0
  141. '@tanstack/eslint-plugin-query':
  142. specifier: ^5.73.3
  143. version: 5.73.3(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)
  144. '@tanstack/react-query-devtools':
  145. specifier: ^5.74.3
  146. version: 5.74.3(@tanstack/react-query@5.74.3(react@19.1.0))(react@19.1.0)
  147. '@tanstack/router-devtools':
  148. specifier: ^1.116.0
  149. version: 1.116.0(@tanstack/react-router@1.116.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@tanstack/router-core@1.115.3)(csstype@3.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(tiny-invariant@1.3.3)
  150. '@tanstack/router-plugin':
  151. specifier: ^1.116.1
  152. version: 1.116.1(@tanstack/react-router@1.116.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(vite@6.2.6(@types/node@22.14.1)(jiti@2.4.2)(lightningcss@1.29.2)(tsx@4.19.3))
  153. '@trivago/prettier-plugin-sort-imports':
  154. specifier: ^5.2.2
  155. version: 5.2.2(prettier@3.5.3)
  156. '@types/js-cookie':
  157. specifier: ^3.0.6
  158. version: 3.0.6
  159. '@types/node':
  160. specifier: ^22.14.1
  161. version: 22.14.1
  162. '@types/react':
  163. specifier: ^19.1.2
  164. version: 19.1.2
  165. '@types/react-dom':
  166. specifier: ^19.1.2
  167. version: 19.1.2(@types/react@19.1.2)
  168. '@vitejs/plugin-react-swc':
  169. specifier: ^3.9.0
  170. version: 3.9.0(vite@6.2.6(@types/node@22.14.1)(jiti@2.4.2)(lightningcss@1.29.2)(tsx@4.19.3))
  171. eslint:
  172. specifier: ^9.24.0
  173. version: 9.24.0(jiti@2.4.2)
  174. eslint-plugin-react-hooks:
  175. specifier: ^5.2.0
  176. version: 5.2.0(eslint@9.24.0(jiti@2.4.2))
  177. eslint-plugin-react-refresh:
  178. specifier: ^0.4.19
  179. version: 0.4.19(eslint@9.24.0(jiti@2.4.2))
  180. globals:
  181. specifier: ^16.0.0
  182. version: 16.0.0
  183. knip:
  184. specifier: ^5.50.4
  185. version: 5.50.4(@types/node@22.14.1)(typescript@5.8.3)
  186. prettier:
  187. specifier: ^3.5.3
  188. version: 3.5.3
  189. prettier-plugin-tailwindcss:
  190. specifier: ^0.6.11
  191. version: 0.6.11(@trivago/prettier-plugin-sort-imports@5.2.2(prettier@3.5.3))(prettier@3.5.3)
  192. typescript:
  193. specifier: ~5.8.3
  194. version: 5.8.3
  195. typescript-eslint:
  196. specifier: ^8.30.1
  197. version: 8.30.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)
  198. vite:
  199. specifier: ^6.2.6
  200. version: 6.2.6(@types/node@22.14.1)(jiti@2.4.2)(lightningcss@1.29.2)(tsx@4.19.3)
  201. packages:
  202. '@ampproject/remapping@2.3.0':
  203. resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
  204. engines: {node: '>=6.0.0'}
  205. '@babel/code-frame@7.26.2':
  206. resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
  207. engines: {node: '>=6.9.0'}
  208. '@babel/compat-data@7.26.8':
  209. resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==}
  210. engines: {node: '>=6.9.0'}
  211. '@babel/core@7.26.10':
  212. resolution: {integrity: sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==}
  213. engines: {node: '>=6.9.0'}
  214. '@babel/generator@7.27.0':
  215. resolution: {integrity: sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw==}
  216. engines: {node: '>=6.9.0'}
  217. '@babel/helper-compilation-targets@7.27.0':
  218. resolution: {integrity: sha512-LVk7fbXml0H2xH34dFzKQ7TDZ2G4/rVTOrq9V+icbbadjbVxxeFeDsNHv2SrZeWoA+6ZiTyWYWtScEIW07EAcA==}
  219. engines: {node: '>=6.9.0'}
  220. '@babel/helper-module-imports@7.25.9':
  221. resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
  222. engines: {node: '>=6.9.0'}
  223. '@babel/helper-module-transforms@7.26.0':
  224. resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
  225. engines: {node: '>=6.9.0'}
  226. peerDependencies:
  227. '@babel/core': ^7.0.0
  228. '@babel/helper-plugin-utils@7.26.5':
  229. resolution: {integrity: sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==}
  230. engines: {node: '>=6.9.0'}
  231. '@babel/helper-string-parser@7.25.9':
  232. resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
  233. engines: {node: '>=6.9.0'}
  234. '@babel/helper-validator-identifier@7.25.9':
  235. resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
  236. engines: {node: '>=6.9.0'}
  237. '@babel/helper-validator-option@7.25.9':
  238. resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
  239. engines: {node: '>=6.9.0'}
  240. '@babel/helpers@7.27.0':
  241. resolution: {integrity: sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg==}
  242. engines: {node: '>=6.9.0'}
  243. '@babel/parser@7.27.0':
  244. resolution: {integrity: sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==}
  245. engines: {node: '>=6.0.0'}
  246. hasBin: true
  247. '@babel/plugin-syntax-jsx@7.25.9':
  248. resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==}
  249. engines: {node: '>=6.9.0'}
  250. peerDependencies:
  251. '@babel/core': ^7.0.0-0
  252. '@babel/plugin-syntax-typescript@7.25.9':
  253. resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==}
  254. engines: {node: '>=6.9.0'}
  255. peerDependencies:
  256. '@babel/core': ^7.0.0-0
  257. '@babel/runtime@7.27.0':
  258. resolution: {integrity: sha512-VtPOkrdPHZsKc/clNqyi9WUA8TINkZ4cGk63UUE3u4pmB2k+ZMQRDuIOagv8UVd6j7k0T3+RRIb7beKTebNbcw==}
  259. engines: {node: '>=6.9.0'}
  260. '@babel/template@7.27.0':
  261. resolution: {integrity: sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA==}
  262. engines: {node: '>=6.9.0'}
  263. '@babel/traverse@7.27.0':
  264. resolution: {integrity: sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA==}
  265. engines: {node: '>=6.9.0'}
  266. '@babel/types@7.27.0':
  267. resolution: {integrity: sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==}
  268. engines: {node: '>=6.9.0'}
  269. '@date-fns/tz@1.2.0':
  270. resolution: {integrity: sha512-LBrd7MiJZ9McsOgxqWX7AaxrDjcFVjWH/tIKJd7pnR7McaslGYOP1QmmiBXdJH/H/yLCT+rcQ7FaPBUxRGUtrg==}
  271. '@esbuild/aix-ppc64@0.25.2':
  272. resolution: {integrity: sha512-wCIboOL2yXZym2cgm6mlA742s9QeJ8DjGVaL39dLN4rRwrOgOyYSnOaFPhKZGLb2ngj4EyfAFjsNJwPXZvseag==}
  273. engines: {node: '>=18'}
  274. cpu: [ppc64]
  275. os: [aix]
  276. '@esbuild/android-arm64@0.25.2':
  277. resolution: {integrity: sha512-5ZAX5xOmTligeBaeNEPnPaeEuah53Id2tX4c2CVP3JaROTH+j4fnfHCkr1PjXMd78hMst+TlkfKcW/DlTq0i4w==}
  278. engines: {node: '>=18'}
  279. cpu: [arm64]
  280. os: [android]
  281. '@esbuild/android-arm@0.25.2':
  282. resolution: {integrity: sha512-NQhH7jFstVY5x8CKbcfa166GoV0EFkaPkCKBQkdPJFvo5u+nGXLEH/ooniLb3QI8Fk58YAx7nsPLozUWfCBOJA==}
  283. engines: {node: '>=18'}
  284. cpu: [arm]
  285. os: [android]
  286. '@esbuild/android-x64@0.25.2':
  287. resolution: {integrity: sha512-Ffcx+nnma8Sge4jzddPHCZVRvIfQ0kMsUsCMcJRHkGJ1cDmhe4SsrYIjLUKn1xpHZybmOqCWwB0zQvsjdEHtkg==}
  288. engines: {node: '>=18'}
  289. cpu: [x64]
  290. os: [android]
  291. '@esbuild/darwin-arm64@0.25.2':
  292. resolution: {integrity: sha512-MpM6LUVTXAzOvN4KbjzU/q5smzryuoNjlriAIx+06RpecwCkL9JpenNzpKd2YMzLJFOdPqBpuub6eVRP5IgiSA==}
  293. engines: {node: '>=18'}
  294. cpu: [arm64]
  295. os: [darwin]
  296. '@esbuild/darwin-x64@0.25.2':
  297. resolution: {integrity: sha512-5eRPrTX7wFyuWe8FqEFPG2cU0+butQQVNcT4sVipqjLYQjjh8a8+vUTfgBKM88ObB85ahsnTwF7PSIt6PG+QkA==}
  298. engines: {node: '>=18'}
  299. cpu: [x64]
  300. os: [darwin]
  301. '@esbuild/freebsd-arm64@0.25.2':
  302. resolution: {integrity: sha512-mLwm4vXKiQ2UTSX4+ImyiPdiHjiZhIaE9QvC7sw0tZ6HoNMjYAqQpGyui5VRIi5sGd+uWq940gdCbY3VLvsO1w==}
  303. engines: {node: '>=18'}
  304. cpu: [arm64]
  305. os: [freebsd]
  306. '@esbuild/freebsd-x64@0.25.2':
  307. resolution: {integrity: sha512-6qyyn6TjayJSwGpm8J9QYYGQcRgc90nmfdUb0O7pp1s4lTY+9D0H9O02v5JqGApUyiHOtkz6+1hZNvNtEhbwRQ==}
  308. engines: {node: '>=18'}
  309. cpu: [x64]
  310. os: [freebsd]
  311. '@esbuild/linux-arm64@0.25.2':
  312. resolution: {integrity: sha512-gq/sjLsOyMT19I8obBISvhoYiZIAaGF8JpeXu1u8yPv8BE5HlWYobmlsfijFIZ9hIVGYkbdFhEqC0NvM4kNO0g==}
  313. engines: {node: '>=18'}
  314. cpu: [arm64]
  315. os: [linux]
  316. '@esbuild/linux-arm@0.25.2':
  317. resolution: {integrity: sha512-UHBRgJcmjJv5oeQF8EpTRZs/1knq6loLxTsjc3nxO9eXAPDLcWW55flrMVc97qFPbmZP31ta1AZVUKQzKTzb0g==}
  318. engines: {node: '>=18'}
  319. cpu: [arm]
  320. os: [linux]
  321. '@esbuild/linux-ia32@0.25.2':
  322. resolution: {integrity: sha512-bBYCv9obgW2cBP+2ZWfjYTU+f5cxRoGGQ5SeDbYdFCAZpYWrfjjfYwvUpP8MlKbP0nwZ5gyOU/0aUzZ5HWPuvQ==}
  323. engines: {node: '>=18'}
  324. cpu: [ia32]
  325. os: [linux]
  326. '@esbuild/linux-loong64@0.25.2':
  327. resolution: {integrity: sha512-SHNGiKtvnU2dBlM5D8CXRFdd+6etgZ9dXfaPCeJtz+37PIUlixvlIhI23L5khKXs3DIzAn9V8v+qb1TRKrgT5w==}
  328. engines: {node: '>=18'}
  329. cpu: [loong64]
  330. os: [linux]
  331. '@esbuild/linux-mips64el@0.25.2':
  332. resolution: {integrity: sha512-hDDRlzE6rPeoj+5fsADqdUZl1OzqDYow4TB4Y/3PlKBD0ph1e6uPHzIQcv2Z65u2K0kpeByIyAjCmjn1hJgG0Q==}
  333. engines: {node: '>=18'}
  334. cpu: [mips64el]
  335. os: [linux]
  336. '@esbuild/linux-ppc64@0.25.2':
  337. resolution: {integrity: sha512-tsHu2RRSWzipmUi9UBDEzc0nLc4HtpZEI5Ba+Omms5456x5WaNuiG3u7xh5AO6sipnJ9r4cRWQB2tUjPyIkc6g==}
  338. engines: {node: '>=18'}
  339. cpu: [ppc64]
  340. os: [linux]
  341. '@esbuild/linux-riscv64@0.25.2':
  342. resolution: {integrity: sha512-k4LtpgV7NJQOml/10uPU0s4SAXGnowi5qBSjaLWMojNCUICNu7TshqHLAEbkBdAszL5TabfvQ48kK84hyFzjnw==}
  343. engines: {node: '>=18'}
  344. cpu: [riscv64]
  345. os: [linux]
  346. '@esbuild/linux-s390x@0.25.2':
  347. resolution: {integrity: sha512-GRa4IshOdvKY7M/rDpRR3gkiTNp34M0eLTaC1a08gNrh4u488aPhuZOCpkF6+2wl3zAN7L7XIpOFBhnaE3/Q8Q==}
  348. engines: {node: '>=18'}
  349. cpu: [s390x]
  350. os: [linux]
  351. '@esbuild/linux-x64@0.25.2':
  352. resolution: {integrity: sha512-QInHERlqpTTZ4FRB0fROQWXcYRD64lAoiegezDunLpalZMjcUcld3YzZmVJ2H/Cp0wJRZ8Xtjtj0cEHhYc/uUg==}
  353. engines: {node: '>=18'}
  354. cpu: [x64]
  355. os: [linux]
  356. '@esbuild/netbsd-arm64@0.25.2':
  357. resolution: {integrity: sha512-talAIBoY5M8vHc6EeI2WW9d/CkiO9MQJ0IOWX8hrLhxGbro/vBXJvaQXefW2cP0z0nQVTdQ/eNyGFV1GSKrxfw==}
  358. engines: {node: '>=18'}
  359. cpu: [arm64]
  360. os: [netbsd]
  361. '@esbuild/netbsd-x64@0.25.2':
  362. resolution: {integrity: sha512-voZT9Z+tpOxrvfKFyfDYPc4DO4rk06qamv1a/fkuzHpiVBMOhpjK+vBmWM8J1eiB3OLSMFYNaOaBNLXGChf5tg==}
  363. engines: {node: '>=18'}
  364. cpu: [x64]
  365. os: [netbsd]
  366. '@esbuild/openbsd-arm64@0.25.2':
  367. resolution: {integrity: sha512-dcXYOC6NXOqcykeDlwId9kB6OkPUxOEqU+rkrYVqJbK2hagWOMrsTGsMr8+rW02M+d5Op5NNlgMmjzecaRf7Tg==}
  368. engines: {node: '>=18'}
  369. cpu: [arm64]
  370. os: [openbsd]
  371. '@esbuild/openbsd-x64@0.25.2':
  372. resolution: {integrity: sha512-t/TkWwahkH0Tsgoq1Ju7QfgGhArkGLkF1uYz8nQS/PPFlXbP5YgRpqQR3ARRiC2iXoLTWFxc6DJMSK10dVXluw==}
  373. engines: {node: '>=18'}
  374. cpu: [x64]
  375. os: [openbsd]
  376. '@esbuild/sunos-x64@0.25.2':
  377. resolution: {integrity: sha512-cfZH1co2+imVdWCjd+D1gf9NjkchVhhdpgb1q5y6Hcv9TP6Zi9ZG/beI3ig8TvwT9lH9dlxLq5MQBBgwuj4xvA==}
  378. engines: {node: '>=18'}
  379. cpu: [x64]
  380. os: [sunos]
  381. '@esbuild/win32-arm64@0.25.2':
  382. resolution: {integrity: sha512-7Loyjh+D/Nx/sOTzV8vfbB3GJuHdOQyrOryFdZvPHLf42Tk9ivBU5Aedi7iyX+x6rbn2Mh68T4qq1SDqJBQO5Q==}
  383. engines: {node: '>=18'}
  384. cpu: [arm64]
  385. os: [win32]
  386. '@esbuild/win32-ia32@0.25.2':
  387. resolution: {integrity: sha512-WRJgsz9un0nqZJ4MfhabxaD9Ft8KioqU3JMinOTvobbX6MOSUigSBlogP8QB3uxpJDsFS6yN+3FDBdqE5lg9kg==}
  388. engines: {node: '>=18'}
  389. cpu: [ia32]
  390. os: [win32]
  391. '@esbuild/win32-x64@0.25.2':
  392. resolution: {integrity: sha512-kM3HKb16VIXZyIeVrM1ygYmZBKybX8N4p754bw390wGO3Tf2j4L2/WYL+4suWujpgf6GBYs3jv7TyUivdd05JA==}
  393. engines: {node: '>=18'}
  394. cpu: [x64]
  395. os: [win32]
  396. '@eslint-community/eslint-utils@4.6.0':
  397. resolution: {integrity: sha512-WhCn7Z7TauhBtmzhvKpoQs0Wwb/kBcy4CwpuI0/eEIr2Lx2auxmulAzLr91wVZJaz47iUZdkXOK7WlAfxGKCnA==}
  398. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  399. peerDependencies:
  400. eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
  401. '@eslint-community/regexpp@4.12.1':
  402. resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
  403. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  404. '@eslint/config-array@0.20.0':
  405. resolution: {integrity: sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ==}
  406. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  407. '@eslint/config-helpers@0.2.1':
  408. resolution: {integrity: sha512-RI17tsD2frtDu/3dmI7QRrD4bedNKPM08ziRYaC5AhkGrzIAJelm9kJU1TznK+apx6V+cqRz8tfpEeG3oIyjxw==}
  409. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  410. '@eslint/core@0.12.0':
  411. resolution: {integrity: sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==}
  412. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  413. '@eslint/core@0.13.0':
  414. resolution: {integrity: sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw==}
  415. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  416. '@eslint/eslintrc@3.3.1':
  417. resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
  418. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  419. '@eslint/js@9.24.0':
  420. resolution: {integrity: sha512-uIY/y3z0uvOGX8cp1C2fiC4+ZmBhp6yZWkojtHL1YEMnRt1Y63HB9TM17proGEmeG7HeUY+UP36F0aknKYTpYA==}
  421. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  422. '@eslint/object-schema@2.1.6':
  423. resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==}
  424. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  425. '@eslint/plugin-kit@0.2.8':
  426. resolution: {integrity: sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA==}
  427. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  428. '@faker-js/faker@9.7.0':
  429. resolution: {integrity: sha512-aozo5vqjCmDoXLNUJarFZx2IN/GgGaogY4TMJ6so/WLZOWpSV7fvj2dmrV6sEAnUm1O7aCrhTibjpzeDFgNqbg==}
  430. engines: {node: '>=18.0.0', npm: '>=9.0.0'}
  431. '@floating-ui/core@1.6.9':
  432. resolution: {integrity: sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==}
  433. '@floating-ui/dom@1.6.13':
  434. resolution: {integrity: sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==}
  435. '@floating-ui/react-dom@2.1.2':
  436. resolution: {integrity: sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==}
  437. peerDependencies:
  438. react: '>=16.8.0'
  439. react-dom: '>=16.8.0'
  440. '@floating-ui/utils@0.2.9':
  441. resolution: {integrity: sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==}
  442. '@hookform/resolvers@5.0.1':
  443. resolution: {integrity: sha512-u/+Jp83luQNx9AdyW2fIPGY6Y7NG68eN2ZW8FOJYL+M0i4s49+refdJdOp/A9n9HFQtQs3HIDHQvX3ZET2o7YA==}
  444. peerDependencies:
  445. react-hook-form: ^7.55.0
  446. '@humanfs/core@0.19.1':
  447. resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
  448. engines: {node: '>=18.18.0'}
  449. '@humanfs/node@0.16.6':
  450. resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==}
  451. engines: {node: '>=18.18.0'}
  452. '@humanwhocodes/module-importer@1.0.1':
  453. resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
  454. engines: {node: '>=12.22'}
  455. '@humanwhocodes/retry@0.3.1':
  456. resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
  457. engines: {node: '>=18.18'}
  458. '@humanwhocodes/retry@0.4.2':
  459. resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==}
  460. engines: {node: '>=18.18'}
  461. '@jridgewell/gen-mapping@0.3.8':
  462. resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==}
  463. engines: {node: '>=6.0.0'}
  464. '@jridgewell/resolve-uri@3.1.2':
  465. resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
  466. engines: {node: '>=6.0.0'}
  467. '@jridgewell/set-array@1.2.1':
  468. resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
  469. engines: {node: '>=6.0.0'}
  470. '@jridgewell/sourcemap-codec@1.5.0':
  471. resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
  472. '@jridgewell/trace-mapping@0.3.25':
  473. resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
  474. '@nodelib/fs.scandir@2.1.5':
  475. resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
  476. engines: {node: '>= 8'}
  477. '@nodelib/fs.stat@2.0.5':
  478. resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
  479. engines: {node: '>= 8'}
  480. '@nodelib/fs.walk@1.2.8':
  481. resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
  482. engines: {node: '>= 8'}
  483. '@radix-ui/number@1.1.1':
  484. resolution: {integrity: sha512-MkKCwxlXTgz6CFoJx3pCwn07GKp36+aZyu/u2Ln2VrA5DcdyCZkASEDBTd8x5whTQQL5CiYf4prXKLcgQdv29g==}
  485. '@radix-ui/primitive@1.1.2':
  486. resolution: {integrity: sha512-XnbHrrprsNqZKQhStrSwgRUQzoCI1glLzdw79xiZPoofhGICeZRSQ3dIxAKH1gb3OHfNf4d6f+vAv3kil2eggA==}
  487. '@radix-ui/react-alert-dialog@1.1.7':
  488. resolution: {integrity: sha512-7Gx1gcoltd0VxKoR8mc+TAVbzvChJyZryZsTam0UhoL92z0L+W8ovxvcgvd+nkz24y7Qc51JQKBAGe4+825tYw==}
  489. peerDependencies:
  490. '@types/react': '*'
  491. '@types/react-dom': '*'
  492. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  493. react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  494. peerDependenciesMeta:
  495. '@types/react':
  496. optional: true
  497. '@types/react-dom':
  498. optional: true
  499. '@radix-ui/react-arrow@1.1.3':
  500. resolution: {integrity: sha512-2dvVU4jva0qkNZH6HHWuSz5FN5GeU5tymvCgutF8WaXz9WnD1NgUhy73cqzkjkN4Zkn8lfTPv5JIfrC221W+Nw==}
  501. peerDependencies:
  502. '@types/react': '*'
  503. '@types/react-dom': '*'
  504. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  505. react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  506. peerDependenciesMeta:
  507. '@types/react':
  508. optional: true
  509. '@types/react-dom':
  510. optional: true
  511. '@radix-ui/react-avatar@1.1.4':
  512. resolution: {integrity: sha512-+kBesLBzwqyDiYCtYFK+6Ktf+N7+Y6QOTUueLGLIbLZ/YeyFW6bsBGDsN+5HxHpM55C90u5fxsg0ErxzXTcwKA==}
  513. peerDependencies:
  514. '@types/react': '*'
  515. '@types/react-dom': '*'
  516. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  517. react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  518. peerDependenciesMeta:
  519. '@types/react':
  520. optional: true
  521. '@types/react-dom':
  522. optional: true
  523. '@radix-ui/react-checkbox@1.1.5':
  524. resolution: {integrity: sha512-B0gYIVxl77KYDR25AY9EGe/G//ef85RVBIxQvK+m5pxAC7XihAc/8leMHhDvjvhDu02SBSb6BuytlWr/G7F3+g==}
  525. peerDependencies:
  526. '@types/react': '*'
  527. '@types/react-dom': '*'
  528. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  529. react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  530. peerDependenciesMeta:
  531. '@types/react':
  532. optional: true
  533. '@types/react-dom':
  534. optional: true
  535. '@radix-ui/react-collapsible@1.1.4':
  536. resolution: {integrity: sha512-u7LCw1EYInQtBNLGjm9nZ89S/4GcvX1UR5XbekEgnQae2Hkpq39ycJ1OhdeN1/JDfVNG91kWaWoest127TaEKQ==}
  537. peerDependencies:
  538. '@types/react': '*'
  539. '@types/react-dom': '*'
  540. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  541. react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  542. peerDependenciesMeta:
  543. '@types/react':
  544. optional: true
  545. '@types/react-dom':
  546. optional: true
  547. '@radix-ui/react-collection@1.1.3':
  548. resolution: {integrity: sha512-mM2pxoQw5HJ49rkzwOs7Y6J4oYH22wS8BfK2/bBxROlI4xuR0c4jEenQP63LlTlDkO6Buj2Vt+QYAYcOgqtrXA==}
  549. peerDependencies:
  550. '@types/react': '*'
  551. '@types/react-dom': '*'
  552. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  553. react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  554. peerDependenciesMeta:
  555. '@types/react':
  556. optional: true
  557. '@types/react-dom':
  558. optional: true
  559. '@radix-ui/react-compose-refs@1.1.2':
  560. resolution: {integrity: sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==}
  561. peerDependencies:
  562. '@types/react': '*'
  563. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  564. peerDependenciesMeta:
  565. '@types/react':
  566. optional: true
  567. '@radix-ui/react-context@1.1.2':
  568. resolution: {integrity: sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==}
  569. peerDependencies:
  570. '@types/react': '*'
  571. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  572. peerDependenciesMeta:
  573. '@types/react':
  574. optional: true
  575. '@radix-ui/react-dialog@1.1.7':
  576. resolution: {integrity: sha512-EIdma8C0C/I6kL6sO02avaCRqi3fmWJpxH6mqbVScorW6nNktzKJT/le7VPho3o/7wCsyRg3z0+Q+Obr0Gy/VQ==}
  577. peerDependencies:
  578. '@types/react': '*'
  579. '@types/react-dom': '*'
  580. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  581. react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  582. peerDependenciesMeta:
  583. '@types/react':
  584. optional: true
  585. '@types/react-dom':
  586. optional: true
  587. '@radix-ui/react-direction@1.1.1':
  588. resolution: {integrity: sha512-1UEWRX6jnOA2y4H5WczZ44gOOjTEmlqv1uNW4GAJEO5+bauCBhv8snY65Iw5/VOS/ghKN9gr2KjnLKxrsvoMVw==}
  589. peerDependencies:
  590. '@types/react': '*'
  591. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  592. peerDependenciesMeta:
  593. '@types/react':
  594. optional: true
  595. '@radix-ui/react-dismissable-layer@1.1.6':
  596. resolution: {integrity: sha512-7gpgMT2gyKym9Jz2ZhlRXSg2y6cNQIK8d/cqBZ0RBCaps8pFryCWXiUKI+uHGFrhMrbGUP7U6PWgiXzIxoyF3Q==}
  597. peerDependencies:
  598. '@types/react': '*'
  599. '@types/react-dom': '*'
  600. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  601. react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  602. peerDependenciesMeta:
  603. '@types/react':
  604. optional: true
  605. '@types/react-dom':
  606. optional: true
  607. '@radix-ui/react-dropdown-menu@2.1.7':
  608. resolution: {integrity: sha512-7/1LiuNZuCQE3IzdicGoHdQOHkS2Q08+7p8w6TXZ6ZjgAULaCI85ZY15yPl4o4FVgoKLRT43/rsfNVN8osClQQ==}
  609. peerDependencies:
  610. '@types/react': '*'
  611. '@types/react-dom': '*'
  612. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  613. react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  614. peerDependenciesMeta:
  615. '@types/react':
  616. optional: true
  617. '@types/react-dom':
  618. optional: true
  619. '@radix-ui/react-focus-guards@1.1.2':
  620. resolution: {integrity: sha512-fyjAACV62oPV925xFCrH8DR5xWhg9KYtJT4s3u54jxp+L/hbpTY2kIeEFFbFe+a/HCE94zGQMZLIpVTPVZDhaA==}
  621. peerDependencies:
  622. '@types/react': '*'
  623. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  624. peerDependenciesMeta:
  625. '@types/react':
  626. optional: true
  627. '@radix-ui/react-focus-scope@1.1.3':
  628. resolution: {integrity: sha512-4XaDlq0bPt7oJwR+0k0clCiCO/7lO7NKZTAaJBYxDNQT/vj4ig0/UvctrRscZaFREpRvUTkpKR96ov1e6jptQg==}
  629. peerDependencies:
  630. '@types/react': '*'
  631. '@types/react-dom': '*'
  632. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  633. react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  634. peerDependenciesMeta:
  635. '@types/react':
  636. optional: true
  637. '@types/react-dom':
  638. optional: true
  639. '@radix-ui/react-icons@1.3.2':
  640. resolution: {integrity: sha512-fyQIhGDhzfc9pK2kH6Pl9c4BDJGfMkPqkyIgYDthyNYoNg3wVhoJMMh19WS4Up/1KMPFVpNsT2q3WmXn2N1m6g==}
  641. peerDependencies:
  642. react: ^16.x || ^17.x || ^18.x || ^19.0.0 || ^19.0.0-rc
  643. '@radix-ui/react-id@1.1.1':
  644. resolution: {integrity: sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==}
  645. peerDependencies:
  646. '@types/react': '*'
  647. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  648. peerDependenciesMeta:
  649. '@types/react':
  650. optional: true
  651. '@radix-ui/react-label@2.1.3':
  652. resolution: {integrity: sha512-zwSQ1NzSKG95yA0tvBMgv6XPHoqapJCcg9nsUBaQQ66iRBhZNhlpaQG2ERYYX4O4stkYFK5rxj5NsWfO9CS+Hg==}
  653. peerDependencies:
  654. '@types/react': '*'
  655. '@types/react-dom': '*'
  656. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  657. react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  658. peerDependenciesMeta:
  659. '@types/react':
  660. optional: true
  661. '@types/react-dom':
  662. optional: true
  663. '@radix-ui/react-menu@2.1.7':
  664. resolution: {integrity: sha512-tBODsrk68rOi1/iQzbM54toFF+gSw/y+eQgttFflqlGekuSebNqvFNHjJgjqPhiMb4Fw9A0zNFly1QT6ZFdQ+Q==}
  665. peerDependencies:
  666. '@types/react': '*'
  667. '@types/react-dom': '*'
  668. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  669. react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  670. peerDependenciesMeta:
  671. '@types/react':
  672. optional: true
  673. '@types/react-dom':
  674. optional: true
  675. '@radix-ui/react-popover@1.1.7':
  676. resolution: {integrity: sha512-I38OYWDmJF2kbO74LX8UsFydSHWOJuQ7LxPnTefjxxvdvPLempvAnmsyX9UsBlywcbSGpRH7oMLfkUf+ij4nrw==}
  677. peerDependencies:
  678. '@types/react': '*'
  679. '@types/react-dom': '*'
  680. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  681. react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  682. peerDependenciesMeta:
  683. '@types/react':
  684. optional: true
  685. '@types/react-dom':
  686. optional: true
  687. '@radix-ui/react-popper@1.2.3':
  688. resolution: {integrity: sha512-iNb9LYUMkne9zIahukgQmHlSBp9XWGeQQ7FvUGNk45ywzOb6kQa+Ca38OphXlWDiKvyneo9S+KSJsLfLt8812A==}
  689. peerDependencies:
  690. '@types/react': '*'
  691. '@types/react-dom': '*'
  692. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  693. react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  694. peerDependenciesMeta:
  695. '@types/react':
  696. optional: true
  697. '@types/react-dom':
  698. optional: true
  699. '@radix-ui/react-portal@1.1.5':
  700. resolution: {integrity: sha512-ps/67ZqsFm+Mb6lSPJpfhRLrVL2i2fntgCmGMqqth4eaGUf+knAuuRtWVJrNjUhExgmdRqftSgzpf0DF0n6yXA==}
  701. peerDependencies:
  702. '@types/react': '*'
  703. '@types/react-dom': '*'
  704. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  705. react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  706. peerDependenciesMeta:
  707. '@types/react':
  708. optional: true
  709. '@types/react-dom':
  710. optional: true
  711. '@radix-ui/react-presence@1.1.3':
  712. resolution: {integrity: sha512-IrVLIhskYhH3nLvtcBLQFZr61tBG7wx7O3kEmdzcYwRGAEBmBicGGL7ATzNgruYJ3xBTbuzEEq9OXJM3PAX3tA==}
  713. peerDependencies:
  714. '@types/react': '*'
  715. '@types/react-dom': '*'
  716. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  717. react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  718. peerDependenciesMeta:
  719. '@types/react':
  720. optional: true
  721. '@types/react-dom':
  722. optional: true
  723. '@radix-ui/react-primitive@2.0.3':
  724. resolution: {integrity: sha512-Pf/t/GkndH7CQ8wE2hbkXA+WyZ83fhQQn5DDmwDiDo6AwN/fhaH8oqZ0jRjMrO2iaMhDi6P1HRx6AZwyMinY1g==}
  725. peerDependencies:
  726. '@types/react': '*'
  727. '@types/react-dom': '*'
  728. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  729. react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  730. peerDependenciesMeta:
  731. '@types/react':
  732. optional: true
  733. '@types/react-dom':
  734. optional: true
  735. '@radix-ui/react-radio-group@1.2.4':
  736. resolution: {integrity: sha512-oLz7ATfKgVTUbpr5OBu6Q7hQcnV22uPT306bmG0QwgnKqBStR98RfWfJGCfW/MmhL4ISmrmmBPBW+c77SDwV9g==}
  737. peerDependencies:
  738. '@types/react': '*'
  739. '@types/react-dom': '*'
  740. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  741. react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  742. peerDependenciesMeta:
  743. '@types/react':
  744. optional: true
  745. '@types/react-dom':
  746. optional: true
  747. '@radix-ui/react-roving-focus@1.1.3':
  748. resolution: {integrity: sha512-ufbpLUjZiOg4iYgb2hQrWXEPYX6jOLBbR27bDyAff5GYMRrCzcze8lukjuXVUQvJ6HZe8+oL+hhswDcjmcgVyg==}
  749. peerDependencies:
  750. '@types/react': '*'
  751. '@types/react-dom': '*'
  752. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  753. react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  754. peerDependenciesMeta:
  755. '@types/react':
  756. optional: true
  757. '@types/react-dom':
  758. optional: true
  759. '@radix-ui/react-scroll-area@1.2.4':
  760. resolution: {integrity: sha512-G9rdWTQjOR4sk76HwSdROhPU0jZWpfozn9skU1v4N0/g9k7TmswrJn8W8WMU+aYktnLLpk5LX6fofj2bGe5NFQ==}
  761. peerDependencies:
  762. '@types/react': '*'
  763. '@types/react-dom': '*'
  764. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  765. react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  766. peerDependenciesMeta:
  767. '@types/react':
  768. optional: true
  769. '@types/react-dom':
  770. optional: true
  771. '@radix-ui/react-select@2.1.7':
  772. resolution: {integrity: sha512-exzGIRtc7S8EIM2KjFg+7lJZsH7O7tpaBaJbBNVDnOZNhtoQ2iV+iSNfi2Wth0m6h3trJkMVvzAehB3c6xj/3Q==}
  773. peerDependencies:
  774. '@types/react': '*'
  775. '@types/react-dom': '*'
  776. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  777. react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  778. peerDependenciesMeta:
  779. '@types/react':
  780. optional: true
  781. '@types/react-dom':
  782. optional: true
  783. '@radix-ui/react-separator@1.1.3':
  784. resolution: {integrity: sha512-2omrWKJvxR0U/tkIXezcc1nFMwtLU0+b/rDK40gnzJqTLWQ/TD/D5IYVefp9sC3QWfeQbpSbEA6op9MQKyaALQ==}
  785. peerDependencies:
  786. '@types/react': '*'
  787. '@types/react-dom': '*'
  788. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  789. react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  790. peerDependenciesMeta:
  791. '@types/react':
  792. optional: true
  793. '@types/react-dom':
  794. optional: true
  795. '@radix-ui/react-slot@1.2.0':
  796. resolution: {integrity: sha512-ujc+V6r0HNDviYqIK3rW4ffgYiZ8g5DEHrGJVk4x7kTlLXRDILnKX9vAUYeIsLOoDpDJ0ujpqMkjH4w2ofuo6w==}
  797. peerDependencies:
  798. '@types/react': '*'
  799. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  800. peerDependenciesMeta:
  801. '@types/react':
  802. optional: true
  803. '@radix-ui/react-switch@1.1.4':
  804. resolution: {integrity: sha512-zGP6W8plLeogoeGMiTHJ/uvf+TE1C2chVsEwfP8YlvpQKJHktG+iCkUtCLGPAuDV8/qDSmIRPm4NggaTxFMVBQ==}
  805. peerDependencies:
  806. '@types/react': '*'
  807. '@types/react-dom': '*'
  808. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  809. react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  810. peerDependenciesMeta:
  811. '@types/react':
  812. optional: true
  813. '@types/react-dom':
  814. optional: true
  815. '@radix-ui/react-tabs@1.1.4':
  816. resolution: {integrity: sha512-fuHMHWSf5SRhXke+DbHXj2wVMo+ghVH30vhX3XVacdXqDl+J4XWafMIGOOER861QpBx1jxgwKXL2dQnfrsd8MQ==}
  817. peerDependencies:
  818. '@types/react': '*'
  819. '@types/react-dom': '*'
  820. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  821. react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  822. peerDependenciesMeta:
  823. '@types/react':
  824. optional: true
  825. '@types/react-dom':
  826. optional: true
  827. '@radix-ui/react-tooltip@1.2.0':
  828. resolution: {integrity: sha512-b1Sdc75s7zN9B8ONQTGBSHL3XS8+IcjcOIY51fhM4R1Hx8s0YbgqgyNZiri4qcYMVZK8hfCZVBiyCm7N9rs0rw==}
  829. peerDependencies:
  830. '@types/react': '*'
  831. '@types/react-dom': '*'
  832. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  833. react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  834. peerDependenciesMeta:
  835. '@types/react':
  836. optional: true
  837. '@types/react-dom':
  838. optional: true
  839. '@radix-ui/react-use-callback-ref@1.1.1':
  840. resolution: {integrity: sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==}
  841. peerDependencies:
  842. '@types/react': '*'
  843. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  844. peerDependenciesMeta:
  845. '@types/react':
  846. optional: true
  847. '@radix-ui/react-use-controllable-state@1.1.1':
  848. resolution: {integrity: sha512-YnEXIy8/ga01Y1PN0VfaNH//MhA91JlEGVBDxDzROqwrAtG5Yr2QGEPz8A/rJA3C7ZAHryOYGaUv8fLSW2H/mg==}
  849. peerDependencies:
  850. '@types/react': '*'
  851. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  852. peerDependenciesMeta:
  853. '@types/react':
  854. optional: true
  855. '@radix-ui/react-use-escape-keydown@1.1.1':
  856. resolution: {integrity: sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g==}
  857. peerDependencies:
  858. '@types/react': '*'
  859. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  860. peerDependenciesMeta:
  861. '@types/react':
  862. optional: true
  863. '@radix-ui/react-use-layout-effect@1.1.1':
  864. resolution: {integrity: sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==}
  865. peerDependencies:
  866. '@types/react': '*'
  867. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  868. peerDependenciesMeta:
  869. '@types/react':
  870. optional: true
  871. '@radix-ui/react-use-previous@1.1.1':
  872. resolution: {integrity: sha512-2dHfToCj/pzca2Ck724OZ5L0EVrr3eHRNsG/b3xQJLA2hZpVCS99bLAX+hm1IHXDEnzU6by5z/5MIY794/a8NQ==}
  873. peerDependencies:
  874. '@types/react': '*'
  875. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  876. peerDependenciesMeta:
  877. '@types/react':
  878. optional: true
  879. '@radix-ui/react-use-rect@1.1.1':
  880. resolution: {integrity: sha512-QTYuDesS0VtuHNNvMh+CjlKJ4LJickCMUAqjlE3+j8w+RlRpwyX3apEQKGFzbZGdo7XNG1tXa+bQqIE7HIXT2w==}
  881. peerDependencies:
  882. '@types/react': '*'
  883. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  884. peerDependenciesMeta:
  885. '@types/react':
  886. optional: true
  887. '@radix-ui/react-use-size@1.1.1':
  888. resolution: {integrity: sha512-ewrXRDTAqAXlkl6t/fkXWNAhFX9I+CkKlw6zjEwk86RSPKwZr3xpBRso655aqYafwtnbpHLj6toFzmd6xdVptQ==}
  889. peerDependencies:
  890. '@types/react': '*'
  891. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  892. peerDependenciesMeta:
  893. '@types/react':
  894. optional: true
  895. '@radix-ui/react-visually-hidden@1.1.3':
  896. resolution: {integrity: sha512-oXSF3ZQRd5fvomd9hmUCb2EHSZbPp3ZSHAHJJU/DlF9XoFkJBBW8RHU/E8WEH+RbSfJd/QFA0sl8ClJXknBwHQ==}
  897. peerDependencies:
  898. '@types/react': '*'
  899. '@types/react-dom': '*'
  900. react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  901. react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
  902. peerDependenciesMeta:
  903. '@types/react':
  904. optional: true
  905. '@types/react-dom':
  906. optional: true
  907. '@radix-ui/rect@1.1.1':
  908. resolution: {integrity: sha512-HPwpGIzkl28mWyZqG52jiqDJ12waP11Pa1lGoiyUkIEuMLBP0oeK/C89esbXrxsky5we7dfd8U58nm0SgAWpVw==}
  909. '@rollup/rollup-android-arm-eabi@4.40.0':
  910. resolution: {integrity: sha512-+Fbls/diZ0RDerhE8kyC6hjADCXA1K4yVNlH0EYfd2XjyH0UGgzaQ8MlT0pCXAThfxv3QUAczHaL+qSv1E4/Cg==}
  911. cpu: [arm]
  912. os: [android]
  913. '@rollup/rollup-android-arm64@4.40.0':
  914. resolution: {integrity: sha512-PPA6aEEsTPRz+/4xxAmaoWDqh67N7wFbgFUJGMnanCFs0TV99M0M8QhhaSCks+n6EbQoFvLQgYOGXxlMGQe/6w==}
  915. cpu: [arm64]
  916. os: [android]
  917. '@rollup/rollup-darwin-arm64@4.40.0':
  918. resolution: {integrity: sha512-GwYOcOakYHdfnjjKwqpTGgn5a6cUX7+Ra2HeNj/GdXvO2VJOOXCiYYlRFU4CubFM67EhbmzLOmACKEfvp3J1kQ==}
  919. cpu: [arm64]
  920. os: [darwin]
  921. '@rollup/rollup-darwin-x64@4.40.0':
  922. resolution: {integrity: sha512-CoLEGJ+2eheqD9KBSxmma6ld01czS52Iw0e2qMZNpPDlf7Z9mj8xmMemxEucinev4LgHalDPczMyxzbq+Q+EtA==}
  923. cpu: [x64]
  924. os: [darwin]
  925. '@rollup/rollup-freebsd-arm64@4.40.0':
  926. resolution: {integrity: sha512-r7yGiS4HN/kibvESzmrOB/PxKMhPTlz+FcGvoUIKYoTyGd5toHp48g1uZy1o1xQvybwwpqpe010JrcGG2s5nkg==}
  927. cpu: [arm64]
  928. os: [freebsd]
  929. '@rollup/rollup-freebsd-x64@4.40.0':
  930. resolution: {integrity: sha512-mVDxzlf0oLzV3oZOr0SMJ0lSDd3xC4CmnWJ8Val8isp9jRGl5Dq//LLDSPFrasS7pSm6m5xAcKaw3sHXhBjoRw==}
  931. cpu: [x64]
  932. os: [freebsd]
  933. '@rollup/rollup-linux-arm-gnueabihf@4.40.0':
  934. resolution: {integrity: sha512-y/qUMOpJxBMy8xCXD++jeu8t7kzjlOCkoxxajL58G62PJGBZVl/Gwpm7JK9+YvlB701rcQTzjUZ1JgUoPTnoQA==}
  935. cpu: [arm]
  936. os: [linux]
  937. '@rollup/rollup-linux-arm-musleabihf@4.40.0':
  938. resolution: {integrity: sha512-GoCsPibtVdJFPv/BOIvBKO/XmwZLwaNWdyD8TKlXuqp0veo2sHE+A/vpMQ5iSArRUz/uaoj4h5S6Pn0+PdhRjg==}
  939. cpu: [arm]
  940. os: [linux]
  941. '@rollup/rollup-linux-arm64-gnu@4.40.0':
  942. resolution: {integrity: sha512-L5ZLphTjjAD9leJzSLI7rr8fNqJMlGDKlazW2tX4IUF9P7R5TMQPElpH82Q7eNIDQnQlAyiNVfRPfP2vM5Avvg==}
  943. cpu: [arm64]
  944. os: [linux]
  945. '@rollup/rollup-linux-arm64-musl@4.40.0':
  946. resolution: {integrity: sha512-ATZvCRGCDtv1Y4gpDIXsS+wfFeFuLwVxyUBSLawjgXK2tRE6fnsQEkE4csQQYWlBlsFztRzCnBvWVfcae/1qxQ==}
  947. cpu: [arm64]
  948. os: [linux]
  949. '@rollup/rollup-linux-loongarch64-gnu@4.40.0':
  950. resolution: {integrity: sha512-wG9e2XtIhd++QugU5MD9i7OnpaVb08ji3P1y/hNbxrQ3sYEelKJOq1UJ5dXczeo6Hj2rfDEL5GdtkMSVLa/AOg==}
  951. cpu: [loong64]
  952. os: [linux]
  953. '@rollup/rollup-linux-powerpc64le-gnu@4.40.0':
  954. resolution: {integrity: sha512-vgXfWmj0f3jAUvC7TZSU/m/cOE558ILWDzS7jBhiCAFpY2WEBn5jqgbqvmzlMjtp8KlLcBlXVD2mkTSEQE6Ixw==}
  955. cpu: [ppc64]
  956. os: [linux]
  957. '@rollup/rollup-linux-riscv64-gnu@4.40.0':
  958. resolution: {integrity: sha512-uJkYTugqtPZBS3Z136arevt/FsKTF/J9dEMTX/cwR7lsAW4bShzI2R0pJVw+hcBTWF4dxVckYh72Hk3/hWNKvA==}
  959. cpu: [riscv64]
  960. os: [linux]
  961. '@rollup/rollup-linux-riscv64-musl@4.40.0':
  962. resolution: {integrity: sha512-rKmSj6EXQRnhSkE22+WvrqOqRtk733x3p5sWpZilhmjnkHkpeCgWsFFo0dGnUGeA+OZjRl3+VYq+HyCOEuwcxQ==}
  963. cpu: [riscv64]
  964. os: [linux]
  965. '@rollup/rollup-linux-s390x-gnu@4.40.0':
  966. resolution: {integrity: sha512-SpnYlAfKPOoVsQqmTFJ0usx0z84bzGOS9anAC0AZ3rdSo3snecihbhFTlJZ8XMwzqAcodjFU4+/SM311dqE5Sw==}
  967. cpu: [s390x]
  968. os: [linux]
  969. '@rollup/rollup-linux-x64-gnu@4.40.0':
  970. resolution: {integrity: sha512-RcDGMtqF9EFN8i2RYN2W+64CdHruJ5rPqrlYw+cgM3uOVPSsnAQps7cpjXe9be/yDp8UC7VLoCoKC8J3Kn2FkQ==}
  971. cpu: [x64]
  972. os: [linux]
  973. '@rollup/rollup-linux-x64-musl@4.40.0':
  974. resolution: {integrity: sha512-HZvjpiUmSNx5zFgwtQAV1GaGazT2RWvqeDi0hV+AtC8unqqDSsaFjPxfsO6qPtKRRg25SisACWnJ37Yio8ttaw==}
  975. cpu: [x64]
  976. os: [linux]
  977. '@rollup/rollup-win32-arm64-msvc@4.40.0':
  978. resolution: {integrity: sha512-UtZQQI5k/b8d7d3i9AZmA/t+Q4tk3hOC0tMOMSq2GlMYOfxbesxG4mJSeDp0EHs30N9bsfwUvs3zF4v/RzOeTQ==}
  979. cpu: [arm64]
  980. os: [win32]
  981. '@rollup/rollup-win32-ia32-msvc@4.40.0':
  982. resolution: {integrity: sha512-+m03kvI2f5syIqHXCZLPVYplP8pQch9JHyXKZ3AGMKlg8dCyr2PKHjwRLiW53LTrN/Nc3EqHOKxUxzoSPdKddA==}
  983. cpu: [ia32]
  984. os: [win32]
  985. '@rollup/rollup-win32-x64-msvc@4.40.0':
  986. resolution: {integrity: sha512-lpPE1cLfP5oPzVjKMx10pgBmKELQnFJXHgvtHCtuJWOv8MxqdEIMNtgHgBFf7Ea2/7EuVwa9fodWUfXAlXZLZQ==}
  987. cpu: [x64]
  988. os: [win32]
  989. '@standard-schema/utils@0.3.0':
  990. resolution: {integrity: sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==}
  991. '@swc/core-darwin-arm64@1.11.21':
  992. resolution: {integrity: sha512-v6gjw9YFWvKulCw3ZA1dY+LGMafYzJksm1mD4UZFZ9b36CyHFowYVYug1ajYRIRqEvvfIhHUNV660zTLoVFR8g==}
  993. engines: {node: '>=10'}
  994. cpu: [arm64]
  995. os: [darwin]
  996. '@swc/core-darwin-x64@1.11.21':
  997. resolution: {integrity: sha512-CUiTiqKlzskwswrx9Ve5NhNoab30L1/ScOfQwr1duvNlFvarC8fvQSgdtpw2Zh3MfnfNPpyLZnYg7ah4kbT9JQ==}
  998. engines: {node: '>=10'}
  999. cpu: [x64]
  1000. os: [darwin]
  1001. '@swc/core-linux-arm-gnueabihf@1.11.21':
  1002. resolution: {integrity: sha512-YyBTAFM/QPqt1PscD8hDmCLnqPGKmUZpqeE25HXY8OLjl2MUs8+O4KjwPZZ+OGxpdTbwuWFyMoxjcLy80JODvg==}
  1003. engines: {node: '>=10'}
  1004. cpu: [arm]
  1005. os: [linux]
  1006. '@swc/core-linux-arm64-gnu@1.11.21':
  1007. resolution: {integrity: sha512-DQD+ooJmwpNsh4acrftdkuwl5LNxxg8U4+C/RJNDd7m5FP9Wo4c0URi5U0a9Vk/6sQNh9aSGcYChDpqCDWEcBw==}
  1008. engines: {node: '>=10'}
  1009. cpu: [arm64]
  1010. os: [linux]
  1011. '@swc/core-linux-arm64-musl@1.11.21':
  1012. resolution: {integrity: sha512-y1L49+snt1a1gLTYPY641slqy55QotPdtRK9Y6jMi4JBQyZwxC8swWYlQWb+MyILwxA614fi62SCNZNznB3XSA==}
  1013. engines: {node: '>=10'}
  1014. cpu: [arm64]
  1015. os: [linux]
  1016. '@swc/core-linux-x64-gnu@1.11.21':
  1017. resolution: {integrity: sha512-NesdBXv4CvVEaFUlqKj+GA4jJMNUzK2NtKOrUNEtTbXaVyNiXjFCSaDajMTedEB0jTAd9ybB0aBvwhgkJUWkWA==}
  1018. engines: {node: '>=10'}
  1019. cpu: [x64]
  1020. os: [linux]
  1021. '@swc/core-linux-x64-musl@1.11.21':
  1022. resolution: {integrity: sha512-qFV60pwpKVOdmX67wqQzgtSrUGWX9Cibnp1CXyqZ9Mmt8UyYGvmGu7p6PMbTyX7vdpVUvWVRf8DzrW2//wmVHg==}
  1023. engines: {node: '>=10'}
  1024. cpu: [x64]
  1025. os: [linux]
  1026. '@swc/core-win32-arm64-msvc@1.11.21':
  1027. resolution: {integrity: sha512-DJJe9k6gXR/15ZZVLv1SKhXkFst8lYCeZRNHH99SlBodvu4slhh/MKQ6YCixINRhCwliHrpXPym8/5fOq8b7Ig==}
  1028. engines: {node: '>=10'}
  1029. cpu: [arm64]
  1030. os: [win32]
  1031. '@swc/core-win32-ia32-msvc@1.11.21':
  1032. resolution: {integrity: sha512-TqEXuy6wedId7bMwLIr9byds+mKsaXVHctTN88R1UIBPwJA92Pdk0uxDgip0pEFzHB/ugU27g6d8cwUH3h2eIw==}
  1033. engines: {node: '>=10'}
  1034. cpu: [ia32]
  1035. os: [win32]
  1036. '@swc/core-win32-x64-msvc@1.11.21':
  1037. resolution: {integrity: sha512-BT9BNNbMxdpUM1PPAkYtviaV0A8QcXttjs2MDtOeSqqvSJaPtyM+Fof2/+xSwQDmDEFzbGCcn75M5+xy3lGqpA==}
  1038. engines: {node: '>=10'}
  1039. cpu: [x64]
  1040. os: [win32]
  1041. '@swc/core@1.11.21':
  1042. resolution: {integrity: sha512-/Y3BJLcwd40pExmdar8MH2UGGvCBrqNN7hauOMckrEX2Ivcbv3IMhrbGX4od1dnF880Ed8y/E9aStZCIQi0EGw==}
  1043. engines: {node: '>=10'}
  1044. peerDependencies:
  1045. '@swc/helpers': '>=0.5.17'
  1046. peerDependenciesMeta:
  1047. '@swc/helpers':
  1048. optional: true
  1049. '@swc/counter@0.1.3':
  1050. resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
  1051. '@swc/types@0.1.21':
  1052. resolution: {integrity: sha512-2YEtj5HJVbKivud9N4bpPBAyZhj4S2Ipe5LkUG94alTpr7in/GU/EARgPAd3BwU+YOmFVJC2+kjqhGRi3r0ZpQ==}
  1053. '@tabler/icons-react@3.31.0':
  1054. resolution: {integrity: sha512-2rrCM5y/VnaVKnORpDdAua9SEGuJKVqPtWxeQ/vUVsgaUx30LDgBZph7/lterXxDY1IKR6NO//HDhWiifXTi3w==}
  1055. peerDependencies:
  1056. react: '>= 16'
  1057. '@tabler/icons@3.31.0':
  1058. resolution: {integrity: sha512-dblAdeKY3+GA1U+Q9eziZ0ooVlZMHsE8dqP0RkwvRtEsAULoKOYaCUOcJ4oW1DjWegdxk++UAt2SlQVnmeHv+g==}
  1059. '@tailwindcss/node@4.1.4':
  1060. resolution: {integrity: sha512-MT5118zaiO6x6hNA04OWInuAiP1YISXql8Z+/Y8iisV5nuhM8VXlyhRuqc2PEviPszcXI66W44bCIk500Oolhw==}
  1061. '@tailwindcss/oxide-android-arm64@4.1.4':
  1062. resolution: {integrity: sha512-xMMAe/SaCN/vHfQYui3fqaBDEXMu22BVwQ33veLc8ep+DNy7CWN52L+TTG9y1K397w9nkzv+Mw+mZWISiqhmlA==}
  1063. engines: {node: '>= 10'}
  1064. cpu: [arm64]
  1065. os: [android]
  1066. '@tailwindcss/oxide-darwin-arm64@4.1.4':
  1067. resolution: {integrity: sha512-JGRj0SYFuDuAGilWFBlshcexev2hOKfNkoX+0QTksKYq2zgF9VY/vVMq9m8IObYnLna0Xlg+ytCi2FN2rOL0Sg==}
  1068. engines: {node: '>= 10'}
  1069. cpu: [arm64]
  1070. os: [darwin]
  1071. '@tailwindcss/oxide-darwin-x64@4.1.4':
  1072. resolution: {integrity: sha512-sdDeLNvs3cYeWsEJ4H1DvjOzaGios4QbBTNLVLVs0XQ0V95bffT3+scptzYGPMjm7xv4+qMhCDrkHwhnUySEzA==}
  1073. engines: {node: '>= 10'}
  1074. cpu: [x64]
  1075. os: [darwin]
  1076. '@tailwindcss/oxide-freebsd-x64@4.1.4':
  1077. resolution: {integrity: sha512-VHxAqxqdghM83HslPhRsNhHo91McsxRJaEnShJOMu8mHmEj9Ig7ToHJtDukkuLWLzLboh2XSjq/0zO6wgvykNA==}
  1078. engines: {node: '>= 10'}
  1079. cpu: [x64]
  1080. os: [freebsd]
  1081. '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.4':
  1082. resolution: {integrity: sha512-OTU/m/eV4gQKxy9r5acuesqaymyeSCnsx1cFto/I1WhPmi5HDxX1nkzb8KYBiwkHIGg7CTfo/AcGzoXAJBxLfg==}
  1083. engines: {node: '>= 10'}
  1084. cpu: [arm]
  1085. os: [linux]
  1086. '@tailwindcss/oxide-linux-arm64-gnu@4.1.4':
  1087. resolution: {integrity: sha512-hKlLNvbmUC6z5g/J4H+Zx7f7w15whSVImokLPmP6ff1QqTVE+TxUM9PGuNsjHvkvlHUtGTdDnOvGNSEUiXI1Ww==}
  1088. engines: {node: '>= 10'}
  1089. cpu: [arm64]
  1090. os: [linux]
  1091. '@tailwindcss/oxide-linux-arm64-musl@4.1.4':
  1092. resolution: {integrity: sha512-X3As2xhtgPTY/m5edUtddmZ8rCruvBvtxYLMw9OsZdH01L2gS2icsHRwxdU0dMItNfVmrBezueXZCHxVeeb7Aw==}
  1093. engines: {node: '>= 10'}
  1094. cpu: [arm64]
  1095. os: [linux]
  1096. '@tailwindcss/oxide-linux-x64-gnu@4.1.4':
  1097. resolution: {integrity: sha512-2VG4DqhGaDSmYIu6C4ua2vSLXnJsb/C9liej7TuSO04NK+JJJgJucDUgmX6sn7Gw3Cs5ZJ9ZLrnI0QRDOjLfNQ==}
  1098. engines: {node: '>= 10'}
  1099. cpu: [x64]
  1100. os: [linux]
  1101. '@tailwindcss/oxide-linux-x64-musl@4.1.4':
  1102. resolution: {integrity: sha512-v+mxVgH2kmur/X5Mdrz9m7TsoVjbdYQT0b4Z+dr+I4RvreCNXyCFELZL/DO0M1RsidZTrm6O1eMnV6zlgEzTMQ==}
  1103. engines: {node: '>= 10'}
  1104. cpu: [x64]
  1105. os: [linux]
  1106. '@tailwindcss/oxide-wasm32-wasi@4.1.4':
  1107. resolution: {integrity: sha512-2TLe9ir+9esCf6Wm+lLWTMbgklIjiF0pbmDnwmhR9MksVOq+e8aP3TSsXySnBDDvTTVd/vKu1aNttEGj3P6l8Q==}
  1108. engines: {node: '>=14.0.0'}
  1109. cpu: [wasm32]
  1110. bundledDependencies:
  1111. - '@napi-rs/wasm-runtime'
  1112. - '@emnapi/core'
  1113. - '@emnapi/runtime'
  1114. - '@tybys/wasm-util'
  1115. - '@emnapi/wasi-threads'
  1116. - tslib
  1117. '@tailwindcss/oxide-win32-arm64-msvc@4.1.4':
  1118. resolution: {integrity: sha512-VlnhfilPlO0ltxW9/BgfLI5547PYzqBMPIzRrk4W7uupgCt8z6Trw/tAj6QUtF2om+1MH281Pg+HHUJoLesmng==}
  1119. engines: {node: '>= 10'}
  1120. cpu: [arm64]
  1121. os: [win32]
  1122. '@tailwindcss/oxide-win32-x64-msvc@4.1.4':
  1123. resolution: {integrity: sha512-+7S63t5zhYjslUGb8NcgLpFXD+Kq1F/zt5Xv5qTv7HaFTG/DHyHD9GA6ieNAxhgyA4IcKa/zy7Xx4Oad2/wuhw==}
  1124. engines: {node: '>= 10'}
  1125. cpu: [x64]
  1126. os: [win32]
  1127. '@tailwindcss/oxide@4.1.4':
  1128. resolution: {integrity: sha512-p5wOpXyOJx7mKh5MXh5oKk+kqcz8T+bA3z/5VWWeQwFrmuBItGwz8Y2CHk/sJ+dNb9B0nYFfn0rj/cKHZyjahQ==}
  1129. engines: {node: '>= 10'}
  1130. '@tailwindcss/vite@4.1.4':
  1131. resolution: {integrity: sha512-4UQeMrONbvrsXKXXp/uxmdEN5JIJ9RkH7YVzs6AMxC/KC1+Np7WZBaNIco7TEjlkthqxZbt8pU/ipD+hKjm80A==}
  1132. peerDependencies:
  1133. vite: ^5.2.0 || ^6
  1134. '@tanstack/eslint-plugin-query@5.73.3':
  1135. resolution: {integrity: sha512-GmUtnOkRzDuNOq96g3eW5ADKC1nWfrM9RI0kRyQVr87rOl6y+PUgkuVaPxh3R2C0EVODxCS07b9aaWphidl/OA==}
  1136. peerDependencies:
  1137. eslint: ^8.57.0 || ^9.0.0
  1138. '@tanstack/history@1.115.0':
  1139. resolution: {integrity: sha512-K7JJNrRVvyjAVnbXOH2XLRhFXDkeP54Kt2P4FR1Kl2KDGlIbkua5VqZQD2rot3qaDrpufyUa63nuLai1kOLTsQ==}
  1140. engines: {node: '>=12'}
  1141. '@tanstack/query-core@5.74.3':
  1142. resolution: {integrity: sha512-Mqk+5o3qTuAiZML248XpNH8r2cOzl15+LTbUsZQEwvSvn1GU4VQhvqzAbil36p+MBxpr/58oBSnRzhrBevDhfg==}
  1143. '@tanstack/query-devtools@5.73.3':
  1144. resolution: {integrity: sha512-hBQyYwsOuO7QOprK75NzfrWs/EQYjgFA0yykmcvsV62q0t6Ua97CU3sYgjHx0ZvxkXSOMkY24VRJ5uv9f5Ik4w==}
  1145. '@tanstack/react-query-devtools@5.74.3':
  1146. resolution: {integrity: sha512-H7TsOBB1fRCuuawrBzKMoIszqqILr2IN5oGLYMl7QG7ERJpMdc4hH8OwzBhVxJnmKeGwgtTQgcdKepfoJCWvFg==}
  1147. peerDependencies:
  1148. '@tanstack/react-query': ^5.74.3
  1149. react: ^18 || ^19
  1150. '@tanstack/react-query@5.74.3':
  1151. resolution: {integrity: sha512-QrycUn0wxjVPzITvQvOxFRdhlAwIoOQSuav7qWD4SWCoKCdLbyRZ2vji2GuBq/glaxbF4wBx3fqcYRDOt8KDTA==}
  1152. peerDependencies:
  1153. react: ^18 || ^19
  1154. '@tanstack/react-router-devtools@1.116.0':
  1155. resolution: {integrity: sha512-PsJZWPjcmwZGe71kUvH4bI1ozkv1FgBuBEE0hTYlTCSJ3uG+qv3ndGEI+AiFyuF5OStrbfg0otW1OxeNq5vdGQ==}
  1156. engines: {node: '>=12'}
  1157. peerDependencies:
  1158. '@tanstack/react-router': ^1.116.0
  1159. react: '>=18.0.0 || >=19.0.0'
  1160. react-dom: '>=18.0.0 || >=19.0.0'
  1161. '@tanstack/react-router@1.116.0':
  1162. resolution: {integrity: sha512-ZBAg5Q6zJf0mnP9DYPiaaQ/wLDH2ujCMi/2RllpH86VUkdkyvQQzpAyKoiYJ891wh9OPgj6W6tPrzB4qy5FpRA==}
  1163. engines: {node: '>=12'}
  1164. peerDependencies:
  1165. react: '>=18.0.0 || >=19.0.0'
  1166. react-dom: '>=18.0.0 || >=19.0.0'
  1167. '@tanstack/react-store@0.7.0':
  1168. resolution: {integrity: sha512-S/Rq17HaGOk+tQHV/yrePMnG1xbsKZIl/VsNWnNXt4XW+tTY8dTlvpJH2ZQ3GRALsusG5K6Q3unAGJ2pd9W/Ng==}
  1169. peerDependencies:
  1170. react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
  1171. react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
  1172. '@tanstack/react-table@8.21.3':
  1173. resolution: {integrity: sha512-5nNMTSETP4ykGegmVkhjcS8tTLW6Vl4axfEGQN3v0zdHYbK4UfoqfPChclTrJ4EoK9QynqAu9oUf8VEmrpZ5Ww==}
  1174. engines: {node: '>=12'}
  1175. peerDependencies:
  1176. react: '>=16.8'
  1177. react-dom: '>=16.8'
  1178. '@tanstack/router-core@1.115.3':
  1179. resolution: {integrity: sha512-gynHs72LHVg05fuJTwZZYhDL4VNEAK0sXz7IqiBv7a3qsYeEmIZsGaFr9sVjTkuF1kbrFBdJd5JYutzBh9Uuhw==}
  1180. engines: {node: '>=12'}
  1181. '@tanstack/router-devtools-core@1.115.3':
  1182. resolution: {integrity: sha512-VBdgw1qxeOD/6FlZ9gitrWPUKGW83CuAW31gf32E0dxL7sIXP+yEFyPlNsVlENan1oSaEuV8tjKkuq5s4MfaPw==}
  1183. engines: {node: '>=12'}
  1184. peerDependencies:
  1185. '@tanstack/router-core': ^1.115.3
  1186. csstype: ^3.0.10
  1187. solid-js: '>=1.9.5'
  1188. tiny-invariant: ^1.3.3
  1189. peerDependenciesMeta:
  1190. csstype:
  1191. optional: true
  1192. '@tanstack/router-devtools@1.116.0':
  1193. resolution: {integrity: sha512-Tx8UD+JbRA8Fgo0fDLcfdnH43+CVhbFi6KSUvdhHFBSdDfQnrrNQsDfNqml2fAI89VBEDsfxrwU2lwAF2R/1qw==}
  1194. engines: {node: '>=12'}
  1195. peerDependencies:
  1196. '@tanstack/react-router': ^1.116.0
  1197. csstype: ^3.0.10
  1198. react: '>=18.0.0 || >=19.0.0'
  1199. react-dom: '>=18.0.0 || >=19.0.0'
  1200. peerDependenciesMeta:
  1201. csstype:
  1202. optional: true
  1203. '@tanstack/router-generator@1.116.0':
  1204. resolution: {integrity: sha512-XhCp85zP87G2bpSXnosiP3fiMo8HMQD2mvWqFFTFKz87WocabQYGlfhmNYWmBwI50EuS7Ph9lwXsSkV0oKh0xw==}
  1205. engines: {node: '>=12'}
  1206. peerDependencies:
  1207. '@tanstack/react-router': ^1.116.0
  1208. peerDependenciesMeta:
  1209. '@tanstack/react-router':
  1210. optional: true
  1211. '@tanstack/router-plugin@1.116.1':
  1212. resolution: {integrity: sha512-9A8DAyRejTzvkVOzgVPUY6l2aH7xOMEXSJJtV9GNbi4NtE6AXUCoFe3mtvYnHSzRqAUMCO0wnfVENCjXQoQYZw==}
  1213. engines: {node: '>=12'}
  1214. peerDependencies:
  1215. '@rsbuild/core': '>=1.0.2'
  1216. '@tanstack/react-router': ^1.116.0
  1217. vite: '>=5.0.0 || >=6.0.0'
  1218. vite-plugin-solid: ^2.11.2
  1219. webpack: '>=5.92.0'
  1220. peerDependenciesMeta:
  1221. '@rsbuild/core':
  1222. optional: true
  1223. '@tanstack/react-router':
  1224. optional: true
  1225. vite:
  1226. optional: true
  1227. vite-plugin-solid:
  1228. optional: true
  1229. webpack:
  1230. optional: true
  1231. '@tanstack/router-utils@1.115.0':
  1232. resolution: {integrity: sha512-Dng4y+uLR9b5zPGg7dHReHOTHQa6x+G6nCoZshsDtWrYsrdCcJEtLyhwZ5wG8OyYS6dVr/Cn+E5Bd2b6BhJ89w==}
  1233. engines: {node: '>=12'}
  1234. '@tanstack/store@0.7.0':
  1235. resolution: {integrity: sha512-CNIhdoUsmD2NolYuaIs8VfWM467RK6oIBAW4nPEKZhg1smZ+/CwtCdpURgp7nxSqOaV9oKkzdWD80+bC66F/Jg==}
  1236. '@tanstack/table-core@8.21.3':
  1237. resolution: {integrity: sha512-ldZXEhOBb8Is7xLs01fR3YEc3DERiz5silj8tnGkFZytt1abEvl/GhUmCE0PMLaMPTa3Jk4HbKmRlHmu+gCftg==}
  1238. engines: {node: '>=12'}
  1239. '@tanstack/virtual-file-routes@1.115.0':
  1240. resolution: {integrity: sha512-XLUh1Py3AftcERrxkxC5Y5m5mfllRH3YR6YVlyjFgI2Tc2Ssy2NKmQFQIafoxfW459UJ8Dn81nWKETEIJifE4g==}
  1241. engines: {node: '>=12'}
  1242. '@trivago/prettier-plugin-sort-imports@5.2.2':
  1243. resolution: {integrity: sha512-fYDQA9e6yTNmA13TLVSA+WMQRc5Bn/c0EUBditUHNfMMxN7M82c38b1kEggVE3pLpZ0FwkwJkUEKMiOi52JXFA==}
  1244. engines: {node: '>18.12'}
  1245. peerDependencies:
  1246. '@vue/compiler-sfc': 3.x
  1247. prettier: 2.x - 3.x
  1248. prettier-plugin-svelte: 3.x
  1249. svelte: 4.x || 5.x
  1250. peerDependenciesMeta:
  1251. '@vue/compiler-sfc':
  1252. optional: true
  1253. prettier-plugin-svelte:
  1254. optional: true
  1255. svelte:
  1256. optional: true
  1257. '@types/babel__core@7.20.5':
  1258. resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
  1259. '@types/babel__generator@7.27.0':
  1260. resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==}
  1261. '@types/babel__template@7.4.4':
  1262. resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
  1263. '@types/babel__traverse@7.20.7':
  1264. resolution: {integrity: sha512-dkO5fhS7+/oos4ciWxyEyjWe48zmG6wbCheo/G2ZnHx4fs3EU6YC6UM8rk56gAjNJ9P3MTH2jo5jb92/K6wbng==}
  1265. '@types/d3-array@3.2.1':
  1266. resolution: {integrity: sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==}
  1267. '@types/d3-color@3.1.3':
  1268. resolution: {integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==}
  1269. '@types/d3-ease@3.0.2':
  1270. resolution: {integrity: sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==}
  1271. '@types/d3-interpolate@3.0.4':
  1272. resolution: {integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==}
  1273. '@types/d3-path@3.1.1':
  1274. resolution: {integrity: sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==}
  1275. '@types/d3-scale@4.0.9':
  1276. resolution: {integrity: sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==}
  1277. '@types/d3-shape@3.1.7':
  1278. resolution: {integrity: sha512-VLvUQ33C+3J+8p+Daf+nYSOsjB4GXp19/S/aGo60m9h1v6XaxjiT82lKVWJCfzhtuZ3yD7i/TPeC/fuKLLOSmg==}
  1279. '@types/d3-time@3.0.4':
  1280. resolution: {integrity: sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==}
  1281. '@types/d3-timer@3.0.2':
  1282. resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==}
  1283. '@types/estree@1.0.7':
  1284. resolution: {integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==}
  1285. '@types/js-cookie@3.0.6':
  1286. resolution: {integrity: sha512-wkw9yd1kEXOPnvEeEV1Go1MmxtBJL0RR79aOTAApecWFVu7w0NNXNqhcWgvw2YgZDYadliXkl14pa3WXw5jlCQ==}
  1287. '@types/json-schema@7.0.15':
  1288. resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
  1289. '@types/node@22.14.1':
  1290. resolution: {integrity: sha512-u0HuPQwe/dHrItgHHpmw3N2fYCR6x4ivMNbPHRkBVP4CvN+kiRrKHWk3i8tXiO/joPwXLMYvF9TTF0eqgHIuOw==}
  1291. '@types/react-dom@19.1.2':
  1292. resolution: {integrity: sha512-XGJkWF41Qq305SKWEILa1O8vzhb3aOo3ogBlSmiqNko/WmRb6QIaweuZCXjKygVDXpzXb5wyxKTSOsmkuqj+Qw==}
  1293. peerDependencies:
  1294. '@types/react': ^19.0.0
  1295. '@types/react@19.1.2':
  1296. resolution: {integrity: sha512-oxLPMytKchWGbnQM9O7D67uPa9paTNxO7jVoNMXgkkErULBPhPARCfkKL9ytcIJJRGjbsVwW4ugJzyFFvm/Tiw==}
  1297. '@typescript-eslint/eslint-plugin@8.30.1':
  1298. resolution: {integrity: sha512-v+VWphxMjn+1t48/jO4t950D6KR8JaJuNXzi33Ve6P8sEmPr5k6CEXjdGwT6+LodVnEa91EQCtwjWNUCPweo+Q==}
  1299. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1300. peerDependencies:
  1301. '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
  1302. eslint: ^8.57.0 || ^9.0.0
  1303. typescript: '>=4.8.4 <5.9.0'
  1304. '@typescript-eslint/parser@8.30.1':
  1305. resolution: {integrity: sha512-H+vqmWwT5xoNrXqWs/fesmssOW70gxFlgcMlYcBaWNPIEWDgLa4W9nkSPmhuOgLnXq9QYgkZ31fhDyLhleCsAg==}
  1306. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1307. peerDependencies:
  1308. eslint: ^8.57.0 || ^9.0.0
  1309. typescript: '>=4.8.4 <5.9.0'
  1310. '@typescript-eslint/scope-manager@8.30.1':
  1311. resolution: {integrity: sha512-+C0B6ChFXZkuaNDl73FJxRYT0G7ufVPOSQkqkpM/U198wUwUFOtgo1k/QzFh1KjpBitaK7R1tgjVz6o9HmsRPg==}
  1312. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1313. '@typescript-eslint/type-utils@8.30.1':
  1314. resolution: {integrity: sha512-64uBF76bfQiJyHgZISC7vcNz3adqQKIccVoKubyQcOnNcdJBvYOILV1v22Qhsw3tw3VQu5ll8ND6hycgAR5fEA==}
  1315. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1316. peerDependencies:
  1317. eslint: ^8.57.0 || ^9.0.0
  1318. typescript: '>=4.8.4 <5.9.0'
  1319. '@typescript-eslint/types@8.30.1':
  1320. resolution: {integrity: sha512-81KawPfkuulyWo5QdyG/LOKbspyyiW+p4vpn4bYO7DM/hZImlVnFwrpCTnmNMOt8CvLRr5ojI9nU1Ekpw4RcEw==}
  1321. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1322. '@typescript-eslint/typescript-estree@8.30.1':
  1323. resolution: {integrity: sha512-kQQnxymiUy9tTb1F2uep9W6aBiYODgq5EMSk6Nxh4Z+BDUoYUSa029ISs5zTzKBFnexQEh71KqwjKnRz58lusQ==}
  1324. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1325. peerDependencies:
  1326. typescript: '>=4.8.4 <5.9.0'
  1327. '@typescript-eslint/utils@8.30.1':
  1328. resolution: {integrity: sha512-T/8q4R9En2tcEsWPQgB5BQ0XJVOtfARcUvOa8yJP3fh9M/mXraLxZrkCfGb6ChrO/V3W+Xbd04RacUEqk1CFEQ==}
  1329. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1330. peerDependencies:
  1331. eslint: ^8.57.0 || ^9.0.0
  1332. typescript: '>=4.8.4 <5.9.0'
  1333. '@typescript-eslint/visitor-keys@8.30.1':
  1334. resolution: {integrity: sha512-aEhgas7aJ6vZnNFC7K4/vMGDGyOiqWcYZPpIWrTKuTAlsvDNKy2GFDqh9smL+iq069ZvR0YzEeq0B8NJlLzjFA==}
  1335. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1336. '@vitejs/plugin-react-swc@3.9.0':
  1337. resolution: {integrity: sha512-jYFUSXhwMCYsh/aQTgSGLIN3Foz5wMbH9ahb0Zva//UzwZYbMiZd7oT3AU9jHT9DLswYDswsRwPU9jVF3yA48Q==}
  1338. peerDependencies:
  1339. vite: ^4 || ^5 || ^6
  1340. acorn-jsx@5.3.2:
  1341. resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
  1342. peerDependencies:
  1343. acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
  1344. acorn@8.14.1:
  1345. resolution: {integrity: sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==}
  1346. engines: {node: '>=0.4.0'}
  1347. hasBin: true
  1348. ajv@6.12.6:
  1349. resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
  1350. ansi-regex@5.0.1:
  1351. resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
  1352. engines: {node: '>=8'}
  1353. ansi-styles@4.3.0:
  1354. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  1355. engines: {node: '>=8'}
  1356. ansis@3.17.0:
  1357. resolution: {integrity: sha512-0qWUglt9JEqLFr3w1I1pbrChn1grhaiAR2ocX1PP/flRmxgtwTzPFFFnfIlD6aMOLQZgSuCRlidD70lvx8yhzg==}
  1358. engines: {node: '>=14'}
  1359. anymatch@3.1.3:
  1360. resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
  1361. engines: {node: '>= 8'}
  1362. argparse@2.0.1:
  1363. resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
  1364. aria-hidden@1.2.4:
  1365. resolution: {integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==}
  1366. engines: {node: '>=10'}
  1367. asynckit@0.4.0:
  1368. resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
  1369. axios@1.8.4:
  1370. resolution: {integrity: sha512-eBSYY4Y68NNlHbHBMdeDmKNtDgXWhQsJcGqzO3iLUM0GraQFSS9cVgPX5I9b3lbdFKyYoAEGAZF1DwhTaljNAw==}
  1371. babel-dead-code-elimination@1.0.10:
  1372. resolution: {integrity: sha512-DV5bdJZTzZ0zn0DC24v3jD7Mnidh6xhKa4GfKCbq3sfW8kaWhDdZjP3i81geA8T33tdYqWKw4D3fVv0CwEgKVA==}
  1373. balanced-match@1.0.2:
  1374. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  1375. binary-extensions@2.3.0:
  1376. resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
  1377. engines: {node: '>=8'}
  1378. brace-expansion@1.1.11:
  1379. resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
  1380. brace-expansion@2.0.1:
  1381. resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
  1382. braces@3.0.3:
  1383. resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
  1384. engines: {node: '>=8'}
  1385. browserslist@4.24.4:
  1386. resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==}
  1387. engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
  1388. hasBin: true
  1389. call-bind-apply-helpers@1.0.2:
  1390. resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
  1391. engines: {node: '>= 0.4'}
  1392. callsites@3.1.0:
  1393. resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
  1394. engines: {node: '>=6'}
  1395. caniuse-lite@1.0.30001713:
  1396. resolution: {integrity: sha512-wCIWIg+A4Xr7NfhTuHdX+/FKh3+Op3LBbSp2N5Pfx6T/LhdQy3GTyoTg48BReaW/MyMNZAkTadsBtai3ldWK0Q==}
  1397. chalk@4.1.2:
  1398. resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
  1399. engines: {node: '>=10'}
  1400. chokidar@3.6.0:
  1401. resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
  1402. engines: {node: '>= 8.10.0'}
  1403. class-variance-authority@0.7.1:
  1404. resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==}
  1405. clone@1.0.4:
  1406. resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
  1407. engines: {node: '>=0.8'}
  1408. clsx@2.1.1:
  1409. resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
  1410. engines: {node: '>=6'}
  1411. cmdk@1.1.1:
  1412. resolution: {integrity: sha512-Vsv7kFaXm+ptHDMZ7izaRsP70GgrW9NBNGswt9OZaVBLlE0SNpDq8eu/VGXyF9r7M0azK3Wy7OlYXsuyYLFzHg==}
  1413. peerDependencies:
  1414. react: ^18 || ^19 || ^19.0.0-rc
  1415. react-dom: ^18 || ^19 || ^19.0.0-rc
  1416. color-convert@2.0.1:
  1417. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  1418. engines: {node: '>=7.0.0'}
  1419. color-name@1.1.4:
  1420. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  1421. combined-stream@1.0.8:
  1422. resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
  1423. engines: {node: '>= 0.8'}
  1424. concat-map@0.0.1:
  1425. resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
  1426. convert-source-map@2.0.0:
  1427. resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
  1428. cross-spawn@7.0.6:
  1429. resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
  1430. engines: {node: '>= 8'}
  1431. csstype@3.1.3:
  1432. resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
  1433. d3-array@3.2.4:
  1434. resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==}
  1435. engines: {node: '>=12'}
  1436. d3-color@3.1.0:
  1437. resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==}
  1438. engines: {node: '>=12'}
  1439. d3-ease@3.0.1:
  1440. resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==}
  1441. engines: {node: '>=12'}
  1442. d3-format@3.1.0:
  1443. resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==}
  1444. engines: {node: '>=12'}
  1445. d3-interpolate@3.0.1:
  1446. resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==}
  1447. engines: {node: '>=12'}
  1448. d3-path@3.1.0:
  1449. resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==}
  1450. engines: {node: '>=12'}
  1451. d3-scale@4.0.2:
  1452. resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==}
  1453. engines: {node: '>=12'}
  1454. d3-shape@3.2.0:
  1455. resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==}
  1456. engines: {node: '>=12'}
  1457. d3-time-format@4.1.0:
  1458. resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==}
  1459. engines: {node: '>=12'}
  1460. d3-time@3.1.0:
  1461. resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==}
  1462. engines: {node: '>=12'}
  1463. d3-timer@3.0.1:
  1464. resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==}
  1465. engines: {node: '>=12'}
  1466. date-fns-jalali@4.1.0-0:
  1467. resolution: {integrity: sha512-hTIP/z+t+qKwBDcmmsnmjWTduxCg+5KfdqWQvb2X/8C9+knYY6epN/pfxdDuyVlSVeFz0sM5eEfwIUQ70U4ckg==}
  1468. date-fns@4.1.0:
  1469. resolution: {integrity: sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==}
  1470. debug@4.4.0:
  1471. resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
  1472. engines: {node: '>=6.0'}
  1473. peerDependencies:
  1474. supports-color: '*'
  1475. peerDependenciesMeta:
  1476. supports-color:
  1477. optional: true
  1478. decimal.js-light@2.5.1:
  1479. resolution: {integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==}
  1480. deep-is@0.1.4:
  1481. resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
  1482. defaults@1.0.4:
  1483. resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==}
  1484. delayed-stream@1.0.0:
  1485. resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
  1486. engines: {node: '>=0.4.0'}
  1487. detect-libc@2.0.3:
  1488. resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
  1489. engines: {node: '>=8'}
  1490. detect-node-es@1.1.0:
  1491. resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
  1492. diff@7.0.0:
  1493. resolution: {integrity: sha512-PJWHUb1RFevKCwaFA9RlG5tCd+FO5iRh9A8HEtkmBH2Li03iJriB6m6JIN4rGz3K3JLawI7/veA1xzRKP6ISBw==}
  1494. engines: {node: '>=0.3.1'}
  1495. dom-helpers@5.2.1:
  1496. resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
  1497. dunder-proto@1.0.1:
  1498. resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
  1499. engines: {node: '>= 0.4'}
  1500. easy-table@1.2.0:
  1501. resolution: {integrity: sha512-OFzVOv03YpvtcWGe5AayU5G2hgybsg3iqA6drU8UaoZyB9jLGMTrz9+asnLp/E+6qPh88yEI1gvyZFZ41dmgww==}
  1502. electron-to-chromium@1.5.137:
  1503. resolution: {integrity: sha512-/QSJaU2JyIuTbbABAo/crOs+SuAZLS+fVVS10PVrIT9hrRkmZl8Hb0xPSkKRUUWHQtYzXHpQUW3Dy5hwMzGZkA==}
  1504. enhanced-resolve@5.18.1:
  1505. resolution: {integrity: sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==}
  1506. engines: {node: '>=10.13.0'}
  1507. es-define-property@1.0.1:
  1508. resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
  1509. engines: {node: '>= 0.4'}
  1510. es-errors@1.3.0:
  1511. resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
  1512. engines: {node: '>= 0.4'}
  1513. es-object-atoms@1.1.1:
  1514. resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
  1515. engines: {node: '>= 0.4'}
  1516. es-set-tostringtag@2.1.0:
  1517. resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
  1518. engines: {node: '>= 0.4'}
  1519. esbuild@0.25.2:
  1520. resolution: {integrity: sha512-16854zccKPnC+toMywC+uKNeYSv+/eXkevRAfwRD/G9Cleq66m8XFIrigkbvauLLlCfDL45Q2cWegSg53gGBnQ==}
  1521. engines: {node: '>=18'}
  1522. hasBin: true
  1523. escalade@3.2.0:
  1524. resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
  1525. engines: {node: '>=6'}
  1526. escape-string-regexp@4.0.0:
  1527. resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
  1528. engines: {node: '>=10'}
  1529. eslint-plugin-react-hooks@5.2.0:
  1530. resolution: {integrity: sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==}
  1531. engines: {node: '>=10'}
  1532. peerDependencies:
  1533. eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
  1534. eslint-plugin-react-refresh@0.4.19:
  1535. resolution: {integrity: sha512-eyy8pcr/YxSYjBoqIFSrlbn9i/xvxUFa8CjzAYo9cFjgGXqq1hyjihcpZvxRLalpaWmueWR81xn7vuKmAFijDQ==}
  1536. peerDependencies:
  1537. eslint: '>=8.40'
  1538. eslint-scope@8.3.0:
  1539. resolution: {integrity: sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==}
  1540. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1541. eslint-visitor-keys@3.4.3:
  1542. resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
  1543. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  1544. eslint-visitor-keys@4.2.0:
  1545. resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
  1546. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1547. eslint@9.24.0:
  1548. resolution: {integrity: sha512-eh/jxIEJyZrvbWRe4XuVclLPDYSYYYgLy5zXGGxD6j8zjSAxFEzI2fL/8xNq6O2yKqVt+eF2YhV+hxjV6UKXwQ==}
  1549. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1550. hasBin: true
  1551. peerDependencies:
  1552. jiti: '*'
  1553. peerDependenciesMeta:
  1554. jiti:
  1555. optional: true
  1556. espree@10.3.0:
  1557. resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
  1558. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1559. esquery@1.6.0:
  1560. resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
  1561. engines: {node: '>=0.10'}
  1562. esrecurse@4.3.0:
  1563. resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
  1564. engines: {node: '>=4.0'}
  1565. estraverse@5.3.0:
  1566. resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
  1567. engines: {node: '>=4.0'}
  1568. esutils@2.0.3:
  1569. resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
  1570. engines: {node: '>=0.10.0'}
  1571. eventemitter3@4.0.7:
  1572. resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
  1573. fast-deep-equal@3.1.3:
  1574. resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
  1575. fast-equals@5.2.2:
  1576. resolution: {integrity: sha512-V7/RktU11J3I36Nwq2JnZEM7tNm17eBJz+u25qdxBZeCKiX6BkVSZQjwWIr+IobgnZy+ag73tTZgZi7tr0LrBw==}
  1577. engines: {node: '>=6.0.0'}
  1578. fast-glob@3.3.3:
  1579. resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
  1580. engines: {node: '>=8.6.0'}
  1581. fast-json-stable-stringify@2.1.0:
  1582. resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
  1583. fast-levenshtein@2.0.6:
  1584. resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
  1585. fastq@1.19.1:
  1586. resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==}
  1587. file-entry-cache@8.0.0:
  1588. resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
  1589. engines: {node: '>=16.0.0'}
  1590. fill-range@7.1.1:
  1591. resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
  1592. engines: {node: '>=8'}
  1593. find-up@5.0.0:
  1594. resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
  1595. engines: {node: '>=10'}
  1596. flat-cache@4.0.1:
  1597. resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
  1598. engines: {node: '>=16'}
  1599. flatted@3.3.3:
  1600. resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
  1601. follow-redirects@1.15.9:
  1602. resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
  1603. engines: {node: '>=4.0'}
  1604. peerDependencies:
  1605. debug: '*'
  1606. peerDependenciesMeta:
  1607. debug:
  1608. optional: true
  1609. form-data@4.0.2:
  1610. resolution: {integrity: sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==}
  1611. engines: {node: '>= 6'}
  1612. fsevents@2.3.3:
  1613. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  1614. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  1615. os: [darwin]
  1616. function-bind@1.1.2:
  1617. resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
  1618. gensync@1.0.0-beta.2:
  1619. resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
  1620. engines: {node: '>=6.9.0'}
  1621. get-intrinsic@1.3.0:
  1622. resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
  1623. engines: {node: '>= 0.4'}
  1624. get-nonce@1.0.1:
  1625. resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
  1626. engines: {node: '>=6'}
  1627. get-proto@1.0.1:
  1628. resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
  1629. engines: {node: '>= 0.4'}
  1630. get-tsconfig@4.10.0:
  1631. resolution: {integrity: sha512-kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A==}
  1632. glob-parent@5.1.2:
  1633. resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
  1634. engines: {node: '>= 6'}
  1635. glob-parent@6.0.2:
  1636. resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
  1637. engines: {node: '>=10.13.0'}
  1638. globals@11.12.0:
  1639. resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
  1640. engines: {node: '>=4'}
  1641. globals@14.0.0:
  1642. resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
  1643. engines: {node: '>=18'}
  1644. globals@16.0.0:
  1645. resolution: {integrity: sha512-iInW14XItCXET01CQFqudPOWP2jYMl7T+QRQT+UNcR/iQncN/F0UNpgd76iFkBPgNQb4+X3LV9tLJYzwh+Gl3A==}
  1646. engines: {node: '>=18'}
  1647. goober@2.1.16:
  1648. resolution: {integrity: sha512-erjk19y1U33+XAMe1VTvIONHYoSqE4iS7BYUZfHaqeohLmnC0FdxEh7rQU+6MZ4OajItzjZFSRtVANrQwNq6/g==}
  1649. peerDependencies:
  1650. csstype: ^3.0.10
  1651. gopd@1.2.0:
  1652. resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
  1653. engines: {node: '>= 0.4'}
  1654. graceful-fs@4.2.11:
  1655. resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
  1656. graphemer@1.4.0:
  1657. resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
  1658. has-flag@4.0.0:
  1659. resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
  1660. engines: {node: '>=8'}
  1661. has-symbols@1.1.0:
  1662. resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
  1663. engines: {node: '>= 0.4'}
  1664. has-tostringtag@1.0.2:
  1665. resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
  1666. engines: {node: '>= 0.4'}
  1667. hasown@2.0.2:
  1668. resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
  1669. engines: {node: '>= 0.4'}
  1670. ignore@5.3.2:
  1671. resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
  1672. engines: {node: '>= 4'}
  1673. import-fresh@3.3.1:
  1674. resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
  1675. engines: {node: '>=6'}
  1676. imurmurhash@0.1.4:
  1677. resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
  1678. engines: {node: '>=0.8.19'}
  1679. internmap@2.0.3:
  1680. resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==}
  1681. engines: {node: '>=12'}
  1682. is-binary-path@2.1.0:
  1683. resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
  1684. engines: {node: '>=8'}
  1685. is-extglob@2.1.1:
  1686. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  1687. engines: {node: '>=0.10.0'}
  1688. is-glob@4.0.3:
  1689. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  1690. engines: {node: '>=0.10.0'}
  1691. is-number@7.0.0:
  1692. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  1693. engines: {node: '>=0.12.0'}
  1694. isexe@2.0.0:
  1695. resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
  1696. javascript-natural-sort@0.7.1:
  1697. resolution: {integrity: sha512-nO6jcEfZWQXDhOiBtG2KvKyEptz7RVbpGP4vTD2hLBdmNQSsCiicO2Ioinv6UI4y9ukqnBpy+XZ9H6uLNgJTlw==}
  1698. jiti@2.4.2:
  1699. resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==}
  1700. hasBin: true
  1701. js-cookie@3.0.5:
  1702. resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==}
  1703. engines: {node: '>=14'}
  1704. js-tokens@4.0.0:
  1705. resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
  1706. js-yaml@4.1.0:
  1707. resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
  1708. hasBin: true
  1709. jsesc@3.1.0:
  1710. resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
  1711. engines: {node: '>=6'}
  1712. hasBin: true
  1713. json-buffer@3.0.1:
  1714. resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
  1715. json-schema-traverse@0.4.1:
  1716. resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
  1717. json-stable-stringify-without-jsonify@1.0.1:
  1718. resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
  1719. json5@2.2.3:
  1720. resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
  1721. engines: {node: '>=6'}
  1722. hasBin: true
  1723. keyv@4.5.4:
  1724. resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
  1725. knip@5.50.4:
  1726. resolution: {integrity: sha512-In+GjPpd2P3IDZnBBP4QF27vhQOhuBkICiuN9j+DMOf/m/qAFLGcbvuAGxco8IDvf26pvBnfeSmm1f6iNCkgOA==}
  1727. engines: {node: '>=18.18.0'}
  1728. hasBin: true
  1729. peerDependencies:
  1730. '@types/node': '>=18'
  1731. typescript: '>=5.0.4'
  1732. levn@0.4.1:
  1733. resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
  1734. engines: {node: '>= 0.8.0'}
  1735. lightningcss-darwin-arm64@1.29.2:
  1736. resolution: {integrity: sha512-cK/eMabSViKn/PG8U/a7aCorpeKLMlK0bQeNHmdb7qUnBkNPnL+oV5DjJUo0kqWsJUapZsM4jCfYItbqBDvlcA==}
  1737. engines: {node: '>= 12.0.0'}
  1738. cpu: [arm64]
  1739. os: [darwin]
  1740. lightningcss-darwin-x64@1.29.2:
  1741. resolution: {integrity: sha512-j5qYxamyQw4kDXX5hnnCKMf3mLlHvG44f24Qyi2965/Ycz829MYqjrVg2H8BidybHBp9kom4D7DR5VqCKDXS0w==}
  1742. engines: {node: '>= 12.0.0'}
  1743. cpu: [x64]
  1744. os: [darwin]
  1745. lightningcss-freebsd-x64@1.29.2:
  1746. resolution: {integrity: sha512-wDk7M2tM78Ii8ek9YjnY8MjV5f5JN2qNVO+/0BAGZRvXKtQrBC4/cn4ssQIpKIPP44YXw6gFdpUF+Ps+RGsCwg==}
  1747. engines: {node: '>= 12.0.0'}
  1748. cpu: [x64]
  1749. os: [freebsd]
  1750. lightningcss-linux-arm-gnueabihf@1.29.2:
  1751. resolution: {integrity: sha512-IRUrOrAF2Z+KExdExe3Rz7NSTuuJ2HvCGlMKoquK5pjvo2JY4Rybr+NrKnq0U0hZnx5AnGsuFHjGnNT14w26sg==}
  1752. engines: {node: '>= 12.0.0'}
  1753. cpu: [arm]
  1754. os: [linux]
  1755. lightningcss-linux-arm64-gnu@1.29.2:
  1756. resolution: {integrity: sha512-KKCpOlmhdjvUTX/mBuaKemp0oeDIBBLFiU5Fnqxh1/DZ4JPZi4evEH7TKoSBFOSOV3J7iEmmBaw/8dpiUvRKlQ==}
  1757. engines: {node: '>= 12.0.0'}
  1758. cpu: [arm64]
  1759. os: [linux]
  1760. lightningcss-linux-arm64-musl@1.29.2:
  1761. resolution: {integrity: sha512-Q64eM1bPlOOUgxFmoPUefqzY1yV3ctFPE6d/Vt7WzLW4rKTv7MyYNky+FWxRpLkNASTnKQUaiMJ87zNODIrrKQ==}
  1762. engines: {node: '>= 12.0.0'}
  1763. cpu: [arm64]
  1764. os: [linux]
  1765. lightningcss-linux-x64-gnu@1.29.2:
  1766. resolution: {integrity: sha512-0v6idDCPG6epLXtBH/RPkHvYx74CVziHo6TMYga8O2EiQApnUPZsbR9nFNrg2cgBzk1AYqEd95TlrsL7nYABQg==}
  1767. engines: {node: '>= 12.0.0'}
  1768. cpu: [x64]
  1769. os: [linux]
  1770. lightningcss-linux-x64-musl@1.29.2:
  1771. resolution: {integrity: sha512-rMpz2yawkgGT8RULc5S4WiZopVMOFWjiItBT7aSfDX4NQav6M44rhn5hjtkKzB+wMTRlLLqxkeYEtQ3dd9696w==}
  1772. engines: {node: '>= 12.0.0'}
  1773. cpu: [x64]
  1774. os: [linux]
  1775. lightningcss-win32-arm64-msvc@1.29.2:
  1776. resolution: {integrity: sha512-nL7zRW6evGQqYVu/bKGK+zShyz8OVzsCotFgc7judbt6wnB2KbiKKJwBE4SGoDBQ1O94RjW4asrCjQL4i8Fhbw==}
  1777. engines: {node: '>= 12.0.0'}
  1778. cpu: [arm64]
  1779. os: [win32]
  1780. lightningcss-win32-x64-msvc@1.29.2:
  1781. resolution: {integrity: sha512-EdIUW3B2vLuHmv7urfzMI/h2fmlnOQBk1xlsDxkN1tCWKjNFjfLhGxYk8C8mzpSfr+A6jFFIi8fU6LbQGsRWjA==}
  1782. engines: {node: '>= 12.0.0'}
  1783. cpu: [x64]
  1784. os: [win32]
  1785. lightningcss@1.29.2:
  1786. resolution: {integrity: sha512-6b6gd/RUXKaw5keVdSEtqFVdzWnU5jMxTUjA2bVcMNPLwSQ08Sv/UodBVtETLCn7k4S1Ibxwh7k68IwLZPgKaA==}
  1787. engines: {node: '>= 12.0.0'}
  1788. locate-path@6.0.0:
  1789. resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
  1790. engines: {node: '>=10'}
  1791. lodash.merge@4.6.2:
  1792. resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
  1793. lodash@4.17.21:
  1794. resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
  1795. loose-envify@1.4.0:
  1796. resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
  1797. hasBin: true
  1798. lru-cache@5.1.1:
  1799. resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
  1800. lucide-react@0.488.0:
  1801. resolution: {integrity: sha512-ronlL0MyKut4CEzBY/ai2ZpKPxyWO4jUqdAkm2GNK5Zn3Rj+swDz+3lvyAUXN0PNqPKIX6XM9Xadwz/skLs/pQ==}
  1802. peerDependencies:
  1803. react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0
  1804. math-intrinsics@1.1.0:
  1805. resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
  1806. engines: {node: '>= 0.4'}
  1807. merge2@1.4.1:
  1808. resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
  1809. engines: {node: '>= 8'}
  1810. micromatch@4.0.8:
  1811. resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
  1812. engines: {node: '>=8.6'}
  1813. mime-db@1.52.0:
  1814. resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
  1815. engines: {node: '>= 0.6'}
  1816. mime-types@2.1.35:
  1817. resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
  1818. engines: {node: '>= 0.6'}
  1819. minimatch@3.1.2:
  1820. resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
  1821. minimatch@9.0.5:
  1822. resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
  1823. engines: {node: '>=16 || 14 >=14.17'}
  1824. minimist@1.2.8:
  1825. resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
  1826. ms@2.1.3:
  1827. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  1828. nanoid@3.3.11:
  1829. resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
  1830. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  1831. hasBin: true
  1832. natural-compare@1.4.0:
  1833. resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
  1834. node-releases@2.0.19:
  1835. resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
  1836. normalize-path@3.0.0:
  1837. resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
  1838. engines: {node: '>=0.10.0'}
  1839. object-assign@4.1.1:
  1840. resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
  1841. engines: {node: '>=0.10.0'}
  1842. optionator@0.9.4:
  1843. resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
  1844. engines: {node: '>= 0.8.0'}
  1845. p-limit@3.1.0:
  1846. resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
  1847. engines: {node: '>=10'}
  1848. p-locate@5.0.0:
  1849. resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
  1850. engines: {node: '>=10'}
  1851. parent-module@1.0.1:
  1852. resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
  1853. engines: {node: '>=6'}
  1854. parse-ms@4.0.0:
  1855. resolution: {integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==}
  1856. engines: {node: '>=18'}
  1857. path-exists@4.0.0:
  1858. resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
  1859. engines: {node: '>=8'}
  1860. path-key@3.1.1:
  1861. resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
  1862. engines: {node: '>=8'}
  1863. picocolors@1.1.1:
  1864. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  1865. picomatch@2.3.1:
  1866. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  1867. engines: {node: '>=8.6'}
  1868. picomatch@4.0.2:
  1869. resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
  1870. engines: {node: '>=12'}
  1871. postcss@8.5.3:
  1872. resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
  1873. engines: {node: ^10 || ^12 || >=14}
  1874. prelude-ls@1.2.1:
  1875. resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
  1876. engines: {node: '>= 0.8.0'}
  1877. prettier-plugin-tailwindcss@0.6.11:
  1878. resolution: {integrity: sha512-YxaYSIvZPAqhrrEpRtonnrXdghZg1irNg4qrjboCXrpybLWVs55cW2N3juhspVJiO0JBvYJT8SYsJpc8OQSnsA==}
  1879. engines: {node: '>=14.21.3'}
  1880. peerDependencies:
  1881. '@ianvs/prettier-plugin-sort-imports': '*'
  1882. '@prettier/plugin-pug': '*'
  1883. '@shopify/prettier-plugin-liquid': '*'
  1884. '@trivago/prettier-plugin-sort-imports': '*'
  1885. '@zackad/prettier-plugin-twig': '*'
  1886. prettier: ^3.0
  1887. prettier-plugin-astro: '*'
  1888. prettier-plugin-css-order: '*'
  1889. prettier-plugin-import-sort: '*'
  1890. prettier-plugin-jsdoc: '*'
  1891. prettier-plugin-marko: '*'
  1892. prettier-plugin-multiline-arrays: '*'
  1893. prettier-plugin-organize-attributes: '*'
  1894. prettier-plugin-organize-imports: '*'
  1895. prettier-plugin-sort-imports: '*'
  1896. prettier-plugin-style-order: '*'
  1897. prettier-plugin-svelte: '*'
  1898. peerDependenciesMeta:
  1899. '@ianvs/prettier-plugin-sort-imports':
  1900. optional: true
  1901. '@prettier/plugin-pug':
  1902. optional: true
  1903. '@shopify/prettier-plugin-liquid':
  1904. optional: true
  1905. '@trivago/prettier-plugin-sort-imports':
  1906. optional: true
  1907. '@zackad/prettier-plugin-twig':
  1908. optional: true
  1909. prettier-plugin-astro:
  1910. optional: true
  1911. prettier-plugin-css-order:
  1912. optional: true
  1913. prettier-plugin-import-sort:
  1914. optional: true
  1915. prettier-plugin-jsdoc:
  1916. optional: true
  1917. prettier-plugin-marko:
  1918. optional: true
  1919. prettier-plugin-multiline-arrays:
  1920. optional: true
  1921. prettier-plugin-organize-attributes:
  1922. optional: true
  1923. prettier-plugin-organize-imports:
  1924. optional: true
  1925. prettier-plugin-sort-imports:
  1926. optional: true
  1927. prettier-plugin-style-order:
  1928. optional: true
  1929. prettier-plugin-svelte:
  1930. optional: true
  1931. prettier@3.5.3:
  1932. resolution: {integrity: sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==}
  1933. engines: {node: '>=14'}
  1934. hasBin: true
  1935. pretty-ms@9.2.0:
  1936. resolution: {integrity: sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==}
  1937. engines: {node: '>=18'}
  1938. prop-types@15.8.1:
  1939. resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
  1940. proxy-from-env@1.1.0:
  1941. resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
  1942. punycode@2.3.1:
  1943. resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
  1944. engines: {node: '>=6'}
  1945. queue-microtask@1.2.3:
  1946. resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
  1947. react-day-picker@9.6.6:
  1948. resolution: {integrity: sha512-BIbhJu9yqQt8/13mTJIorEC4xpwGTa3JDW0C3UoVwNHhJsb2uWNveXmGYy7n8oV/uBsoEOGTitJOl+XpPzKsOQ==}
  1949. engines: {node: '>=18'}
  1950. peerDependencies:
  1951. react: '>=16.8.0'
  1952. react-dom@19.1.0:
  1953. resolution: {integrity: sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g==}
  1954. peerDependencies:
  1955. react: ^19.1.0
  1956. react-hook-form@7.55.0:
  1957. resolution: {integrity: sha512-XRnjsH3GVMQz1moZTW53MxfoWN7aDpUg/GpVNc4A3eXRVNdGXfbzJ4vM4aLQ8g6XCUh1nIbx70aaNCl7kxnjog==}
  1958. engines: {node: '>=18.0.0'}
  1959. peerDependencies:
  1960. react: ^16.8.0 || ^17 || ^18 || ^19
  1961. react-is@16.13.1:
  1962. resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
  1963. react-is@18.3.1:
  1964. resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
  1965. react-remove-scroll-bar@2.3.8:
  1966. resolution: {integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==}
  1967. engines: {node: '>=10'}
  1968. peerDependencies:
  1969. '@types/react': '*'
  1970. react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
  1971. peerDependenciesMeta:
  1972. '@types/react':
  1973. optional: true
  1974. react-remove-scroll@2.6.3:
  1975. resolution: {integrity: sha512-pnAi91oOk8g8ABQKGF5/M9qxmmOPxaAnopyTHYfqYEwJhyFrbbBtHuSgtKEoH0jpcxx5o3hXqH1mNd9/Oi+8iQ==}
  1976. engines: {node: '>=10'}
  1977. peerDependencies:
  1978. '@types/react': '*'
  1979. react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
  1980. peerDependenciesMeta:
  1981. '@types/react':
  1982. optional: true
  1983. react-smooth@4.0.4:
  1984. resolution: {integrity: sha512-gnGKTpYwqL0Iii09gHobNolvX4Kiq4PKx6eWBCYYix+8cdw+cGo3do906l1NBPKkSWx1DghC1dlWG9L2uGd61Q==}
  1985. peerDependencies:
  1986. react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
  1987. react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
  1988. react-style-singleton@2.2.3:
  1989. resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==}
  1990. engines: {node: '>=10'}
  1991. peerDependencies:
  1992. '@types/react': '*'
  1993. react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
  1994. peerDependenciesMeta:
  1995. '@types/react':
  1996. optional: true
  1997. react-top-loading-bar@3.0.2:
  1998. resolution: {integrity: sha512-hW0CHrHqKdBOBsVhms73ka0rgb9/aoiRfqo7jiS1vwIYDK7VkyMj52ypo5ewhshTQGHKE6mRvR99GZBZ+FuM/Q==}
  1999. engines: {node: '>=14'}
  2000. peerDependencies:
  2001. react: ^16 || ^17 || ^18 || ^19
  2002. react-transition-group@4.4.5:
  2003. resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==}
  2004. peerDependencies:
  2005. react: '>=16.6.0'
  2006. react-dom: '>=16.6.0'
  2007. react@19.1.0:
  2008. resolution: {integrity: sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==}
  2009. engines: {node: '>=0.10.0'}
  2010. readdirp@3.6.0:
  2011. resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
  2012. engines: {node: '>=8.10.0'}
  2013. recharts-scale@0.4.5:
  2014. resolution: {integrity: sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==}
  2015. recharts@2.15.2:
  2016. resolution: {integrity: sha512-xv9lVztv3ingk7V3Jf05wfAZbM9Q2umJzu5t/cfnAK7LUslNrGT7LPBr74G+ok8kSCeFMaePmWMg0rcYOnczTw==}
  2017. engines: {node: '>=14'}
  2018. peerDependencies:
  2019. react: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
  2020. react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
  2021. regenerator-runtime@0.14.1:
  2022. resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
  2023. resolve-from@4.0.0:
  2024. resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
  2025. engines: {node: '>=4'}
  2026. resolve-pkg-maps@1.0.0:
  2027. resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
  2028. reusify@1.1.0:
  2029. resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
  2030. engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
  2031. rollup@4.40.0:
  2032. resolution: {integrity: sha512-Noe455xmA96nnqH5piFtLobsGbCij7Tu+tb3c1vYjNbTkfzGqXqQXG3wJaYXkRZuQ0vEYN4bhwg7QnIrqB5B+w==}
  2033. engines: {node: '>=18.0.0', npm: '>=8.0.0'}
  2034. hasBin: true
  2035. run-parallel@1.2.0:
  2036. resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
  2037. scheduler@0.26.0:
  2038. resolution: {integrity: sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==}
  2039. semver@6.3.1:
  2040. resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
  2041. hasBin: true
  2042. semver@7.7.1:
  2043. resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==}
  2044. engines: {node: '>=10'}
  2045. hasBin: true
  2046. seroval-plugins@1.2.1:
  2047. resolution: {integrity: sha512-H5vs53+39+x4Udwp4J5rNZfgFuA+Lt+uU+09w1gYBVWomtAl98B+E9w7yC05Xc81/HgLvJdlyqJbU0fJCKCmdw==}
  2048. engines: {node: '>=10'}
  2049. peerDependencies:
  2050. seroval: ^1.0
  2051. seroval@1.2.1:
  2052. resolution: {integrity: sha512-yBxFFs3zmkvKNmR0pFSU//rIsYjuX418TnlDmc2weaq5XFDqDIV/NOMPBoLrbxjLH42p4UzRuXHryXh9dYcKcw==}
  2053. engines: {node: '>=10'}
  2054. shebang-command@2.0.0:
  2055. resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
  2056. engines: {node: '>=8'}
  2057. shebang-regex@3.0.0:
  2058. resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
  2059. engines: {node: '>=8'}
  2060. smol-toml@1.3.1:
  2061. resolution: {integrity: sha512-tEYNll18pPKHroYSmLLrksq233j021G0giwW7P3D24jC54pQ5W5BXMsQ/Mvw1OJCmEYDgY+lrzT+3nNUtoNfXQ==}
  2062. engines: {node: '>= 18'}
  2063. solid-js@1.9.5:
  2064. resolution: {integrity: sha512-ogI3DaFcyn6UhYhrgcyRAMbu/buBJitYQASZz5WzfQVPP10RD2AbCoRZ517psnezrasyCbWzIxZ6kVqet768xw==}
  2065. sonner@2.0.3:
  2066. resolution: {integrity: sha512-njQ4Hht92m0sMqqHVDL32V2Oun9W1+PHO9NDv9FHfJjT3JT22IG4Jpo3FPQy+mouRKCXFWO+r67v6MrHX2zeIA==}
  2067. peerDependencies:
  2068. react: ^18.0.0 || ^19.0.0 || ^19.0.0-rc
  2069. react-dom: ^18.0.0 || ^19.0.0 || ^19.0.0-rc
  2070. source-map-js@1.2.1:
  2071. resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  2072. engines: {node: '>=0.10.0'}
  2073. strip-json-comments@3.1.1:
  2074. resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
  2075. engines: {node: '>=8'}
  2076. strip-json-comments@5.0.1:
  2077. resolution: {integrity: sha512-0fk9zBqO67Nq5M/m45qHCJxylV/DhBlIOVExqgOMiCCrzrhU6tCibRXNqE3jwJLftzE9SNuZtYbpzcO+i9FiKw==}
  2078. engines: {node: '>=14.16'}
  2079. supports-color@7.2.0:
  2080. resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
  2081. engines: {node: '>=8'}
  2082. tailwind-merge@3.2.0:
  2083. resolution: {integrity: sha512-FQT/OVqCD+7edmmJpsgCsY820RTD5AkBryuG5IUqR5YQZSdj5xlH5nLgH7YPths7WsLPSpSBNneJdM8aS8aeFA==}
  2084. tailwindcss@4.1.4:
  2085. resolution: {integrity: sha512-1ZIUqtPITFbv/DxRmDr5/agPqJwF69d24m9qmM1939TJehgY539CtzeZRjbLt5G6fSy/7YqqYsfvoTEw9xUI2A==}
  2086. tapable@2.2.1:
  2087. resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
  2088. engines: {node: '>=6'}
  2089. tiny-invariant@1.3.3:
  2090. resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
  2091. tiny-warning@1.0.3:
  2092. resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==}
  2093. to-regex-range@5.0.1:
  2094. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  2095. engines: {node: '>=8.0'}
  2096. ts-api-utils@2.1.0:
  2097. resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==}
  2098. engines: {node: '>=18.12'}
  2099. peerDependencies:
  2100. typescript: '>=4.8.4'
  2101. tslib@2.8.1:
  2102. resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
  2103. tsx@4.19.3:
  2104. resolution: {integrity: sha512-4H8vUNGNjQ4V2EOoGw005+c+dGuPSnhpPBPHBtsZdGZBk/iJb4kguGlPWaZTZ3q5nMtFOEsY0nRDlh9PJyd6SQ==}
  2105. engines: {node: '>=18.0.0'}
  2106. hasBin: true
  2107. tw-animate-css@1.2.5:
  2108. resolution: {integrity: sha512-ABzjfgVo+fDbhRREGL4KQZUqqdPgvc5zVrLyeW9/6mVqvaDepXc7EvedA+pYmMnIOsUAQMwcWzNvom26J2qYvQ==}
  2109. type-check@0.4.0:
  2110. resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
  2111. engines: {node: '>= 0.8.0'}
  2112. typescript-eslint@8.30.1:
  2113. resolution: {integrity: sha512-D7lC0kcehVH7Mb26MRQi64LMyRJsj3dToJxM1+JVTl53DQSV5/7oUGWQLcKl1C1KnoVHxMMU2FNQMffr7F3Row==}
  2114. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  2115. peerDependencies:
  2116. eslint: ^8.57.0 || ^9.0.0
  2117. typescript: '>=4.8.4 <5.9.0'
  2118. typescript@5.8.3:
  2119. resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==}
  2120. engines: {node: '>=14.17'}
  2121. hasBin: true
  2122. undici-types@6.21.0:
  2123. resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
  2124. unplugin@2.3.2:
  2125. resolution: {integrity: sha512-3n7YA46rROb3zSj8fFxtxC/PqoyvYQ0llwz9wtUPUutr9ig09C8gGo5CWCwHrUzlqC1LLR43kxp5vEIyH1ac1w==}
  2126. engines: {node: '>=18.12.0'}
  2127. update-browserslist-db@1.1.3:
  2128. resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==}
  2129. hasBin: true
  2130. peerDependencies:
  2131. browserslist: '>= 4.21.0'
  2132. uri-js@4.4.1:
  2133. resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
  2134. use-callback-ref@1.3.3:
  2135. resolution: {integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==}
  2136. engines: {node: '>=10'}
  2137. peerDependencies:
  2138. '@types/react': '*'
  2139. react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
  2140. peerDependenciesMeta:
  2141. '@types/react':
  2142. optional: true
  2143. use-sidecar@1.1.3:
  2144. resolution: {integrity: sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==}
  2145. engines: {node: '>=10'}
  2146. peerDependencies:
  2147. '@types/react': '*'
  2148. react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
  2149. peerDependenciesMeta:
  2150. '@types/react':
  2151. optional: true
  2152. use-sync-external-store@1.5.0:
  2153. resolution: {integrity: sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A==}
  2154. peerDependencies:
  2155. react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
  2156. victory-vendor@36.9.2:
  2157. resolution: {integrity: sha512-PnpQQMuxlwYdocC8fIJqVXvkeViHYzotI+NJrCuav0ZYFoq912ZHBk3mCeuj+5/VpodOjPe1z0Fk2ihgzlXqjQ==}
  2158. vite@6.2.6:
  2159. resolution: {integrity: sha512-9xpjNl3kR4rVDZgPNdTL0/c6ao4km69a/2ihNQbcANz8RuCOK3hQBmLSJf3bRKVQjVMda+YvizNE8AwvogcPbw==}
  2160. engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
  2161. hasBin: true
  2162. peerDependencies:
  2163. '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
  2164. jiti: '>=1.21.0'
  2165. less: '*'
  2166. lightningcss: ^1.21.0
  2167. sass: '*'
  2168. sass-embedded: '*'
  2169. stylus: '*'
  2170. sugarss: '*'
  2171. terser: ^5.16.0
  2172. tsx: ^4.8.1
  2173. yaml: ^2.4.2
  2174. peerDependenciesMeta:
  2175. '@types/node':
  2176. optional: true
  2177. jiti:
  2178. optional: true
  2179. less:
  2180. optional: true
  2181. lightningcss:
  2182. optional: true
  2183. sass:
  2184. optional: true
  2185. sass-embedded:
  2186. optional: true
  2187. stylus:
  2188. optional: true
  2189. sugarss:
  2190. optional: true
  2191. terser:
  2192. optional: true
  2193. tsx:
  2194. optional: true
  2195. yaml:
  2196. optional: true
  2197. wcwidth@1.0.1:
  2198. resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
  2199. webpack-virtual-modules@0.6.2:
  2200. resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
  2201. which@2.0.2:
  2202. resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
  2203. engines: {node: '>= 8'}
  2204. hasBin: true
  2205. word-wrap@1.2.5:
  2206. resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
  2207. engines: {node: '>=0.10.0'}
  2208. yallist@3.1.1:
  2209. resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
  2210. yocto-queue@0.1.0:
  2211. resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
  2212. engines: {node: '>=10'}
  2213. zod-validation-error@3.4.0:
  2214. resolution: {integrity: sha512-ZOPR9SVY6Pb2qqO5XHt+MkkTRxGXb4EVtnjc9JpXUOtUB1T9Ru7mZOT361AN3MsetVe7R0a1KZshJDZdgp9miQ==}
  2215. engines: {node: '>=18.0.0'}
  2216. peerDependencies:
  2217. zod: ^3.18.0
  2218. zod@3.24.2:
  2219. resolution: {integrity: sha512-lY7CDW43ECgW9u1TcT3IoXHflywfVqDYze4waEz812jR/bZ8FHDsl7pFQoSZTz5N+2NqRXs8GBwnAwo3ZNxqhQ==}
  2220. zustand@5.0.3:
  2221. resolution: {integrity: sha512-14fwWQtU3pH4dE0dOpdMiWjddcH+QzKIgk1cl8epwSE7yag43k/AD/m4L6+K7DytAOr9gGBe3/EXj9g7cdostg==}
  2222. engines: {node: '>=12.20.0'}
  2223. peerDependencies:
  2224. '@types/react': '>=18.0.0'
  2225. immer: '>=9.0.6'
  2226. react: '>=18.0.0'
  2227. use-sync-external-store: '>=1.2.0'
  2228. peerDependenciesMeta:
  2229. '@types/react':
  2230. optional: true
  2231. immer:
  2232. optional: true
  2233. react:
  2234. optional: true
  2235. use-sync-external-store:
  2236. optional: true
  2237. snapshots:
  2238. '@ampproject/remapping@2.3.0':
  2239. dependencies:
  2240. '@jridgewell/gen-mapping': 0.3.8
  2241. '@jridgewell/trace-mapping': 0.3.25
  2242. '@babel/code-frame@7.26.2':
  2243. dependencies:
  2244. '@babel/helper-validator-identifier': 7.25.9
  2245. js-tokens: 4.0.0
  2246. picocolors: 1.1.1
  2247. '@babel/compat-data@7.26.8': {}
  2248. '@babel/core@7.26.10':
  2249. dependencies:
  2250. '@ampproject/remapping': 2.3.0
  2251. '@babel/code-frame': 7.26.2
  2252. '@babel/generator': 7.27.0
  2253. '@babel/helper-compilation-targets': 7.27.0
  2254. '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10)
  2255. '@babel/helpers': 7.27.0
  2256. '@babel/parser': 7.27.0
  2257. '@babel/template': 7.27.0
  2258. '@babel/traverse': 7.27.0
  2259. '@babel/types': 7.27.0
  2260. convert-source-map: 2.0.0
  2261. debug: 4.4.0
  2262. gensync: 1.0.0-beta.2
  2263. json5: 2.2.3
  2264. semver: 6.3.1
  2265. transitivePeerDependencies:
  2266. - supports-color
  2267. '@babel/generator@7.27.0':
  2268. dependencies:
  2269. '@babel/parser': 7.27.0
  2270. '@babel/types': 7.27.0
  2271. '@jridgewell/gen-mapping': 0.3.8
  2272. '@jridgewell/trace-mapping': 0.3.25
  2273. jsesc: 3.1.0
  2274. '@babel/helper-compilation-targets@7.27.0':
  2275. dependencies:
  2276. '@babel/compat-data': 7.26.8
  2277. '@babel/helper-validator-option': 7.25.9
  2278. browserslist: 4.24.4
  2279. lru-cache: 5.1.1
  2280. semver: 6.3.1
  2281. '@babel/helper-module-imports@7.25.9':
  2282. dependencies:
  2283. '@babel/traverse': 7.27.0
  2284. '@babel/types': 7.27.0
  2285. transitivePeerDependencies:
  2286. - supports-color
  2287. '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.10)':
  2288. dependencies:
  2289. '@babel/core': 7.26.10
  2290. '@babel/helper-module-imports': 7.25.9
  2291. '@babel/helper-validator-identifier': 7.25.9
  2292. '@babel/traverse': 7.27.0
  2293. transitivePeerDependencies:
  2294. - supports-color
  2295. '@babel/helper-plugin-utils@7.26.5': {}
  2296. '@babel/helper-string-parser@7.25.9': {}
  2297. '@babel/helper-validator-identifier@7.25.9': {}
  2298. '@babel/helper-validator-option@7.25.9': {}
  2299. '@babel/helpers@7.27.0':
  2300. dependencies:
  2301. '@babel/template': 7.27.0
  2302. '@babel/types': 7.27.0
  2303. '@babel/parser@7.27.0':
  2304. dependencies:
  2305. '@babel/types': 7.27.0
  2306. '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.10)':
  2307. dependencies:
  2308. '@babel/core': 7.26.10
  2309. '@babel/helper-plugin-utils': 7.26.5
  2310. '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.10)':
  2311. dependencies:
  2312. '@babel/core': 7.26.10
  2313. '@babel/helper-plugin-utils': 7.26.5
  2314. '@babel/runtime@7.27.0':
  2315. dependencies:
  2316. regenerator-runtime: 0.14.1
  2317. '@babel/template@7.27.0':
  2318. dependencies:
  2319. '@babel/code-frame': 7.26.2
  2320. '@babel/parser': 7.27.0
  2321. '@babel/types': 7.27.0
  2322. '@babel/traverse@7.27.0':
  2323. dependencies:
  2324. '@babel/code-frame': 7.26.2
  2325. '@babel/generator': 7.27.0
  2326. '@babel/parser': 7.27.0
  2327. '@babel/template': 7.27.0
  2328. '@babel/types': 7.27.0
  2329. debug: 4.4.0
  2330. globals: 11.12.0
  2331. transitivePeerDependencies:
  2332. - supports-color
  2333. '@babel/types@7.27.0':
  2334. dependencies:
  2335. '@babel/helper-string-parser': 7.25.9
  2336. '@babel/helper-validator-identifier': 7.25.9
  2337. '@date-fns/tz@1.2.0': {}
  2338. '@esbuild/aix-ppc64@0.25.2':
  2339. optional: true
  2340. '@esbuild/android-arm64@0.25.2':
  2341. optional: true
  2342. '@esbuild/android-arm@0.25.2':
  2343. optional: true
  2344. '@esbuild/android-x64@0.25.2':
  2345. optional: true
  2346. '@esbuild/darwin-arm64@0.25.2':
  2347. optional: true
  2348. '@esbuild/darwin-x64@0.25.2':
  2349. optional: true
  2350. '@esbuild/freebsd-arm64@0.25.2':
  2351. optional: true
  2352. '@esbuild/freebsd-x64@0.25.2':
  2353. optional: true
  2354. '@esbuild/linux-arm64@0.25.2':
  2355. optional: true
  2356. '@esbuild/linux-arm@0.25.2':
  2357. optional: true
  2358. '@esbuild/linux-ia32@0.25.2':
  2359. optional: true
  2360. '@esbuild/linux-loong64@0.25.2':
  2361. optional: true
  2362. '@esbuild/linux-mips64el@0.25.2':
  2363. optional: true
  2364. '@esbuild/linux-ppc64@0.25.2':
  2365. optional: true
  2366. '@esbuild/linux-riscv64@0.25.2':
  2367. optional: true
  2368. '@esbuild/linux-s390x@0.25.2':
  2369. optional: true
  2370. '@esbuild/linux-x64@0.25.2':
  2371. optional: true
  2372. '@esbuild/netbsd-arm64@0.25.2':
  2373. optional: true
  2374. '@esbuild/netbsd-x64@0.25.2':
  2375. optional: true
  2376. '@esbuild/openbsd-arm64@0.25.2':
  2377. optional: true
  2378. '@esbuild/openbsd-x64@0.25.2':
  2379. optional: true
  2380. '@esbuild/sunos-x64@0.25.2':
  2381. optional: true
  2382. '@esbuild/win32-arm64@0.25.2':
  2383. optional: true
  2384. '@esbuild/win32-ia32@0.25.2':
  2385. optional: true
  2386. '@esbuild/win32-x64@0.25.2':
  2387. optional: true
  2388. '@eslint-community/eslint-utils@4.6.0(eslint@9.24.0(jiti@2.4.2))':
  2389. dependencies:
  2390. eslint: 9.24.0(jiti@2.4.2)
  2391. eslint-visitor-keys: 3.4.3
  2392. '@eslint-community/regexpp@4.12.1': {}
  2393. '@eslint/config-array@0.20.0':
  2394. dependencies:
  2395. '@eslint/object-schema': 2.1.6
  2396. debug: 4.4.0
  2397. minimatch: 3.1.2
  2398. transitivePeerDependencies:
  2399. - supports-color
  2400. '@eslint/config-helpers@0.2.1': {}
  2401. '@eslint/core@0.12.0':
  2402. dependencies:
  2403. '@types/json-schema': 7.0.15
  2404. '@eslint/core@0.13.0':
  2405. dependencies:
  2406. '@types/json-schema': 7.0.15
  2407. '@eslint/eslintrc@3.3.1':
  2408. dependencies:
  2409. ajv: 6.12.6
  2410. debug: 4.4.0
  2411. espree: 10.3.0
  2412. globals: 14.0.0
  2413. ignore: 5.3.2
  2414. import-fresh: 3.3.1
  2415. js-yaml: 4.1.0
  2416. minimatch: 3.1.2
  2417. strip-json-comments: 3.1.1
  2418. transitivePeerDependencies:
  2419. - supports-color
  2420. '@eslint/js@9.24.0': {}
  2421. '@eslint/object-schema@2.1.6': {}
  2422. '@eslint/plugin-kit@0.2.8':
  2423. dependencies:
  2424. '@eslint/core': 0.13.0
  2425. levn: 0.4.1
  2426. '@faker-js/faker@9.7.0': {}
  2427. '@floating-ui/core@1.6.9':
  2428. dependencies:
  2429. '@floating-ui/utils': 0.2.9
  2430. '@floating-ui/dom@1.6.13':
  2431. dependencies:
  2432. '@floating-ui/core': 1.6.9
  2433. '@floating-ui/utils': 0.2.9
  2434. '@floating-ui/react-dom@2.1.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
  2435. dependencies:
  2436. '@floating-ui/dom': 1.6.13
  2437. react: 19.1.0
  2438. react-dom: 19.1.0(react@19.1.0)
  2439. '@floating-ui/utils@0.2.9': {}
  2440. '@hookform/resolvers@5.0.1(react-hook-form@7.55.0(react@19.1.0))':
  2441. dependencies:
  2442. '@standard-schema/utils': 0.3.0
  2443. react-hook-form: 7.55.0(react@19.1.0)
  2444. '@humanfs/core@0.19.1': {}
  2445. '@humanfs/node@0.16.6':
  2446. dependencies:
  2447. '@humanfs/core': 0.19.1
  2448. '@humanwhocodes/retry': 0.3.1
  2449. '@humanwhocodes/module-importer@1.0.1': {}
  2450. '@humanwhocodes/retry@0.3.1': {}
  2451. '@humanwhocodes/retry@0.4.2': {}
  2452. '@jridgewell/gen-mapping@0.3.8':
  2453. dependencies:
  2454. '@jridgewell/set-array': 1.2.1
  2455. '@jridgewell/sourcemap-codec': 1.5.0
  2456. '@jridgewell/trace-mapping': 0.3.25
  2457. '@jridgewell/resolve-uri@3.1.2': {}
  2458. '@jridgewell/set-array@1.2.1': {}
  2459. '@jridgewell/sourcemap-codec@1.5.0': {}
  2460. '@jridgewell/trace-mapping@0.3.25':
  2461. dependencies:
  2462. '@jridgewell/resolve-uri': 3.1.2
  2463. '@jridgewell/sourcemap-codec': 1.5.0
  2464. '@nodelib/fs.scandir@2.1.5':
  2465. dependencies:
  2466. '@nodelib/fs.stat': 2.0.5
  2467. run-parallel: 1.2.0
  2468. '@nodelib/fs.stat@2.0.5': {}
  2469. '@nodelib/fs.walk@1.2.8':
  2470. dependencies:
  2471. '@nodelib/fs.scandir': 2.1.5
  2472. fastq: 1.19.1
  2473. '@radix-ui/number@1.1.1': {}
  2474. '@radix-ui/primitive@1.1.2': {}
  2475. '@radix-ui/react-alert-dialog@1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
  2476. dependencies:
  2477. '@radix-ui/primitive': 1.1.2
  2478. '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2479. '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2480. '@radix-ui/react-dialog': 1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2481. '@radix-ui/react-primitive': 2.0.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2482. '@radix-ui/react-slot': 1.2.0(@types/react@19.1.2)(react@19.1.0)
  2483. react: 19.1.0
  2484. react-dom: 19.1.0(react@19.1.0)
  2485. optionalDependencies:
  2486. '@types/react': 19.1.2
  2487. '@types/react-dom': 19.1.2(@types/react@19.1.2)
  2488. '@radix-ui/react-arrow@1.1.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
  2489. dependencies:
  2490. '@radix-ui/react-primitive': 2.0.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2491. react: 19.1.0
  2492. react-dom: 19.1.0(react@19.1.0)
  2493. optionalDependencies:
  2494. '@types/react': 19.1.2
  2495. '@types/react-dom': 19.1.2(@types/react@19.1.2)
  2496. '@radix-ui/react-avatar@1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
  2497. dependencies:
  2498. '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2499. '@radix-ui/react-primitive': 2.0.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2500. '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2501. '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2502. react: 19.1.0
  2503. react-dom: 19.1.0(react@19.1.0)
  2504. optionalDependencies:
  2505. '@types/react': 19.1.2
  2506. '@types/react-dom': 19.1.2(@types/react@19.1.2)
  2507. '@radix-ui/react-checkbox@1.1.5(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
  2508. dependencies:
  2509. '@radix-ui/primitive': 1.1.2
  2510. '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2511. '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2512. '@radix-ui/react-presence': 1.1.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2513. '@radix-ui/react-primitive': 2.0.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2514. '@radix-ui/react-use-controllable-state': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2515. '@radix-ui/react-use-previous': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2516. '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2517. react: 19.1.0
  2518. react-dom: 19.1.0(react@19.1.0)
  2519. optionalDependencies:
  2520. '@types/react': 19.1.2
  2521. '@types/react-dom': 19.1.2(@types/react@19.1.2)
  2522. '@radix-ui/react-collapsible@1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
  2523. dependencies:
  2524. '@radix-ui/primitive': 1.1.2
  2525. '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2526. '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2527. '@radix-ui/react-id': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2528. '@radix-ui/react-presence': 1.1.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2529. '@radix-ui/react-primitive': 2.0.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2530. '@radix-ui/react-use-controllable-state': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2531. '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2532. react: 19.1.0
  2533. react-dom: 19.1.0(react@19.1.0)
  2534. optionalDependencies:
  2535. '@types/react': 19.1.2
  2536. '@types/react-dom': 19.1.2(@types/react@19.1.2)
  2537. '@radix-ui/react-collection@1.1.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
  2538. dependencies:
  2539. '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2540. '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2541. '@radix-ui/react-primitive': 2.0.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2542. '@radix-ui/react-slot': 1.2.0(@types/react@19.1.2)(react@19.1.0)
  2543. react: 19.1.0
  2544. react-dom: 19.1.0(react@19.1.0)
  2545. optionalDependencies:
  2546. '@types/react': 19.1.2
  2547. '@types/react-dom': 19.1.2(@types/react@19.1.2)
  2548. '@radix-ui/react-compose-refs@1.1.2(@types/react@19.1.2)(react@19.1.0)':
  2549. dependencies:
  2550. react: 19.1.0
  2551. optionalDependencies:
  2552. '@types/react': 19.1.2
  2553. '@radix-ui/react-context@1.1.2(@types/react@19.1.2)(react@19.1.0)':
  2554. dependencies:
  2555. react: 19.1.0
  2556. optionalDependencies:
  2557. '@types/react': 19.1.2
  2558. '@radix-ui/react-dialog@1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
  2559. dependencies:
  2560. '@radix-ui/primitive': 1.1.2
  2561. '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2562. '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2563. '@radix-ui/react-dismissable-layer': 1.1.6(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2564. '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2565. '@radix-ui/react-focus-scope': 1.1.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2566. '@radix-ui/react-id': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2567. '@radix-ui/react-portal': 1.1.5(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2568. '@radix-ui/react-presence': 1.1.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2569. '@radix-ui/react-primitive': 2.0.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2570. '@radix-ui/react-slot': 1.2.0(@types/react@19.1.2)(react@19.1.0)
  2571. '@radix-ui/react-use-controllable-state': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2572. aria-hidden: 1.2.4
  2573. react: 19.1.0
  2574. react-dom: 19.1.0(react@19.1.0)
  2575. react-remove-scroll: 2.6.3(@types/react@19.1.2)(react@19.1.0)
  2576. optionalDependencies:
  2577. '@types/react': 19.1.2
  2578. '@types/react-dom': 19.1.2(@types/react@19.1.2)
  2579. '@radix-ui/react-direction@1.1.1(@types/react@19.1.2)(react@19.1.0)':
  2580. dependencies:
  2581. react: 19.1.0
  2582. optionalDependencies:
  2583. '@types/react': 19.1.2
  2584. '@radix-ui/react-dismissable-layer@1.1.6(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
  2585. dependencies:
  2586. '@radix-ui/primitive': 1.1.2
  2587. '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2588. '@radix-ui/react-primitive': 2.0.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2589. '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2590. '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2591. react: 19.1.0
  2592. react-dom: 19.1.0(react@19.1.0)
  2593. optionalDependencies:
  2594. '@types/react': 19.1.2
  2595. '@types/react-dom': 19.1.2(@types/react@19.1.2)
  2596. '@radix-ui/react-dropdown-menu@2.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
  2597. dependencies:
  2598. '@radix-ui/primitive': 1.1.2
  2599. '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2600. '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2601. '@radix-ui/react-id': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2602. '@radix-ui/react-menu': 2.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2603. '@radix-ui/react-primitive': 2.0.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2604. '@radix-ui/react-use-controllable-state': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2605. react: 19.1.0
  2606. react-dom: 19.1.0(react@19.1.0)
  2607. optionalDependencies:
  2608. '@types/react': 19.1.2
  2609. '@types/react-dom': 19.1.2(@types/react@19.1.2)
  2610. '@radix-ui/react-focus-guards@1.1.2(@types/react@19.1.2)(react@19.1.0)':
  2611. dependencies:
  2612. react: 19.1.0
  2613. optionalDependencies:
  2614. '@types/react': 19.1.2
  2615. '@radix-ui/react-focus-scope@1.1.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
  2616. dependencies:
  2617. '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2618. '@radix-ui/react-primitive': 2.0.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2619. '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2620. react: 19.1.0
  2621. react-dom: 19.1.0(react@19.1.0)
  2622. optionalDependencies:
  2623. '@types/react': 19.1.2
  2624. '@types/react-dom': 19.1.2(@types/react@19.1.2)
  2625. '@radix-ui/react-icons@1.3.2(react@19.1.0)':
  2626. dependencies:
  2627. react: 19.1.0
  2628. '@radix-ui/react-id@1.1.1(@types/react@19.1.2)(react@19.1.0)':
  2629. dependencies:
  2630. '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2631. react: 19.1.0
  2632. optionalDependencies:
  2633. '@types/react': 19.1.2
  2634. '@radix-ui/react-label@2.1.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
  2635. dependencies:
  2636. '@radix-ui/react-primitive': 2.0.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2637. react: 19.1.0
  2638. react-dom: 19.1.0(react@19.1.0)
  2639. optionalDependencies:
  2640. '@types/react': 19.1.2
  2641. '@types/react-dom': 19.1.2(@types/react@19.1.2)
  2642. '@radix-ui/react-menu@2.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
  2643. dependencies:
  2644. '@radix-ui/primitive': 1.1.2
  2645. '@radix-ui/react-collection': 1.1.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2646. '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2647. '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2648. '@radix-ui/react-direction': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2649. '@radix-ui/react-dismissable-layer': 1.1.6(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2650. '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2651. '@radix-ui/react-focus-scope': 1.1.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2652. '@radix-ui/react-id': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2653. '@radix-ui/react-popper': 1.2.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2654. '@radix-ui/react-portal': 1.1.5(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2655. '@radix-ui/react-presence': 1.1.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2656. '@radix-ui/react-primitive': 2.0.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2657. '@radix-ui/react-roving-focus': 1.1.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2658. '@radix-ui/react-slot': 1.2.0(@types/react@19.1.2)(react@19.1.0)
  2659. '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2660. aria-hidden: 1.2.4
  2661. react: 19.1.0
  2662. react-dom: 19.1.0(react@19.1.0)
  2663. react-remove-scroll: 2.6.3(@types/react@19.1.2)(react@19.1.0)
  2664. optionalDependencies:
  2665. '@types/react': 19.1.2
  2666. '@types/react-dom': 19.1.2(@types/react@19.1.2)
  2667. '@radix-ui/react-popover@1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
  2668. dependencies:
  2669. '@radix-ui/primitive': 1.1.2
  2670. '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2671. '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2672. '@radix-ui/react-dismissable-layer': 1.1.6(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2673. '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2674. '@radix-ui/react-focus-scope': 1.1.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2675. '@radix-ui/react-id': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2676. '@radix-ui/react-popper': 1.2.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2677. '@radix-ui/react-portal': 1.1.5(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2678. '@radix-ui/react-presence': 1.1.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2679. '@radix-ui/react-primitive': 2.0.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2680. '@radix-ui/react-slot': 1.2.0(@types/react@19.1.2)(react@19.1.0)
  2681. '@radix-ui/react-use-controllable-state': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2682. aria-hidden: 1.2.4
  2683. react: 19.1.0
  2684. react-dom: 19.1.0(react@19.1.0)
  2685. react-remove-scroll: 2.6.3(@types/react@19.1.2)(react@19.1.0)
  2686. optionalDependencies:
  2687. '@types/react': 19.1.2
  2688. '@types/react-dom': 19.1.2(@types/react@19.1.2)
  2689. '@radix-ui/react-popper@1.2.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
  2690. dependencies:
  2691. '@floating-ui/react-dom': 2.1.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2692. '@radix-ui/react-arrow': 1.1.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2693. '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2694. '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2695. '@radix-ui/react-primitive': 2.0.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2696. '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2697. '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2698. '@radix-ui/react-use-rect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2699. '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2700. '@radix-ui/rect': 1.1.1
  2701. react: 19.1.0
  2702. react-dom: 19.1.0(react@19.1.0)
  2703. optionalDependencies:
  2704. '@types/react': 19.1.2
  2705. '@types/react-dom': 19.1.2(@types/react@19.1.2)
  2706. '@radix-ui/react-portal@1.1.5(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
  2707. dependencies:
  2708. '@radix-ui/react-primitive': 2.0.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2709. '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2710. react: 19.1.0
  2711. react-dom: 19.1.0(react@19.1.0)
  2712. optionalDependencies:
  2713. '@types/react': 19.1.2
  2714. '@types/react-dom': 19.1.2(@types/react@19.1.2)
  2715. '@radix-ui/react-presence@1.1.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
  2716. dependencies:
  2717. '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2718. '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2719. react: 19.1.0
  2720. react-dom: 19.1.0(react@19.1.0)
  2721. optionalDependencies:
  2722. '@types/react': 19.1.2
  2723. '@types/react-dom': 19.1.2(@types/react@19.1.2)
  2724. '@radix-ui/react-primitive@2.0.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
  2725. dependencies:
  2726. '@radix-ui/react-slot': 1.2.0(@types/react@19.1.2)(react@19.1.0)
  2727. react: 19.1.0
  2728. react-dom: 19.1.0(react@19.1.0)
  2729. optionalDependencies:
  2730. '@types/react': 19.1.2
  2731. '@types/react-dom': 19.1.2(@types/react@19.1.2)
  2732. '@radix-ui/react-radio-group@1.2.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
  2733. dependencies:
  2734. '@radix-ui/primitive': 1.1.2
  2735. '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2736. '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2737. '@radix-ui/react-direction': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2738. '@radix-ui/react-presence': 1.1.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2739. '@radix-ui/react-primitive': 2.0.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2740. '@radix-ui/react-roving-focus': 1.1.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2741. '@radix-ui/react-use-controllable-state': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2742. '@radix-ui/react-use-previous': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2743. '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2744. react: 19.1.0
  2745. react-dom: 19.1.0(react@19.1.0)
  2746. optionalDependencies:
  2747. '@types/react': 19.1.2
  2748. '@types/react-dom': 19.1.2(@types/react@19.1.2)
  2749. '@radix-ui/react-roving-focus@1.1.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
  2750. dependencies:
  2751. '@radix-ui/primitive': 1.1.2
  2752. '@radix-ui/react-collection': 1.1.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2753. '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2754. '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2755. '@radix-ui/react-direction': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2756. '@radix-ui/react-id': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2757. '@radix-ui/react-primitive': 2.0.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2758. '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2759. '@radix-ui/react-use-controllable-state': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2760. react: 19.1.0
  2761. react-dom: 19.1.0(react@19.1.0)
  2762. optionalDependencies:
  2763. '@types/react': 19.1.2
  2764. '@types/react-dom': 19.1.2(@types/react@19.1.2)
  2765. '@radix-ui/react-scroll-area@1.2.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
  2766. dependencies:
  2767. '@radix-ui/number': 1.1.1
  2768. '@radix-ui/primitive': 1.1.2
  2769. '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2770. '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2771. '@radix-ui/react-direction': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2772. '@radix-ui/react-presence': 1.1.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2773. '@radix-ui/react-primitive': 2.0.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2774. '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2775. '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2776. react: 19.1.0
  2777. react-dom: 19.1.0(react@19.1.0)
  2778. optionalDependencies:
  2779. '@types/react': 19.1.2
  2780. '@types/react-dom': 19.1.2(@types/react@19.1.2)
  2781. '@radix-ui/react-select@2.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
  2782. dependencies:
  2783. '@radix-ui/number': 1.1.1
  2784. '@radix-ui/primitive': 1.1.2
  2785. '@radix-ui/react-collection': 1.1.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2786. '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2787. '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2788. '@radix-ui/react-direction': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2789. '@radix-ui/react-dismissable-layer': 1.1.6(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2790. '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2791. '@radix-ui/react-focus-scope': 1.1.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2792. '@radix-ui/react-id': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2793. '@radix-ui/react-popper': 1.2.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2794. '@radix-ui/react-portal': 1.1.5(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2795. '@radix-ui/react-primitive': 2.0.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2796. '@radix-ui/react-slot': 1.2.0(@types/react@19.1.2)(react@19.1.0)
  2797. '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2798. '@radix-ui/react-use-controllable-state': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2799. '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2800. '@radix-ui/react-use-previous': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2801. '@radix-ui/react-visually-hidden': 1.1.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2802. aria-hidden: 1.2.4
  2803. react: 19.1.0
  2804. react-dom: 19.1.0(react@19.1.0)
  2805. react-remove-scroll: 2.6.3(@types/react@19.1.2)(react@19.1.0)
  2806. optionalDependencies:
  2807. '@types/react': 19.1.2
  2808. '@types/react-dom': 19.1.2(@types/react@19.1.2)
  2809. '@radix-ui/react-separator@1.1.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
  2810. dependencies:
  2811. '@radix-ui/react-primitive': 2.0.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2812. react: 19.1.0
  2813. react-dom: 19.1.0(react@19.1.0)
  2814. optionalDependencies:
  2815. '@types/react': 19.1.2
  2816. '@types/react-dom': 19.1.2(@types/react@19.1.2)
  2817. '@radix-ui/react-slot@1.2.0(@types/react@19.1.2)(react@19.1.0)':
  2818. dependencies:
  2819. '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2820. react: 19.1.0
  2821. optionalDependencies:
  2822. '@types/react': 19.1.2
  2823. '@radix-ui/react-switch@1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
  2824. dependencies:
  2825. '@radix-ui/primitive': 1.1.2
  2826. '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2827. '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2828. '@radix-ui/react-primitive': 2.0.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2829. '@radix-ui/react-use-controllable-state': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2830. '@radix-ui/react-use-previous': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2831. '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2832. react: 19.1.0
  2833. react-dom: 19.1.0(react@19.1.0)
  2834. optionalDependencies:
  2835. '@types/react': 19.1.2
  2836. '@types/react-dom': 19.1.2(@types/react@19.1.2)
  2837. '@radix-ui/react-tabs@1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
  2838. dependencies:
  2839. '@radix-ui/primitive': 1.1.2
  2840. '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2841. '@radix-ui/react-direction': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2842. '@radix-ui/react-id': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2843. '@radix-ui/react-presence': 1.1.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2844. '@radix-ui/react-primitive': 2.0.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2845. '@radix-ui/react-roving-focus': 1.1.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2846. '@radix-ui/react-use-controllable-state': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2847. react: 19.1.0
  2848. react-dom: 19.1.0(react@19.1.0)
  2849. optionalDependencies:
  2850. '@types/react': 19.1.2
  2851. '@types/react-dom': 19.1.2(@types/react@19.1.2)
  2852. '@radix-ui/react-tooltip@1.2.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
  2853. dependencies:
  2854. '@radix-ui/primitive': 1.1.2
  2855. '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2856. '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  2857. '@radix-ui/react-dismissable-layer': 1.1.6(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2858. '@radix-ui/react-id': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2859. '@radix-ui/react-popper': 1.2.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2860. '@radix-ui/react-portal': 1.1.5(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2861. '@radix-ui/react-presence': 1.1.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2862. '@radix-ui/react-primitive': 2.0.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2863. '@radix-ui/react-slot': 1.2.0(@types/react@19.1.2)(react@19.1.0)
  2864. '@radix-ui/react-use-controllable-state': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2865. '@radix-ui/react-visually-hidden': 1.1.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2866. react: 19.1.0
  2867. react-dom: 19.1.0(react@19.1.0)
  2868. optionalDependencies:
  2869. '@types/react': 19.1.2
  2870. '@types/react-dom': 19.1.2(@types/react@19.1.2)
  2871. '@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.1.2)(react@19.1.0)':
  2872. dependencies:
  2873. react: 19.1.0
  2874. optionalDependencies:
  2875. '@types/react': 19.1.2
  2876. '@radix-ui/react-use-controllable-state@1.1.1(@types/react@19.1.2)(react@19.1.0)':
  2877. dependencies:
  2878. '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2879. react: 19.1.0
  2880. optionalDependencies:
  2881. '@types/react': 19.1.2
  2882. '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.1.2)(react@19.1.0)':
  2883. dependencies:
  2884. '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2885. react: 19.1.0
  2886. optionalDependencies:
  2887. '@types/react': 19.1.2
  2888. '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.1.2)(react@19.1.0)':
  2889. dependencies:
  2890. react: 19.1.0
  2891. optionalDependencies:
  2892. '@types/react': 19.1.2
  2893. '@radix-ui/react-use-previous@1.1.1(@types/react@19.1.2)(react@19.1.0)':
  2894. dependencies:
  2895. react: 19.1.0
  2896. optionalDependencies:
  2897. '@types/react': 19.1.2
  2898. '@radix-ui/react-use-rect@1.1.1(@types/react@19.1.2)(react@19.1.0)':
  2899. dependencies:
  2900. '@radix-ui/rect': 1.1.1
  2901. react: 19.1.0
  2902. optionalDependencies:
  2903. '@types/react': 19.1.2
  2904. '@radix-ui/react-use-size@1.1.1(@types/react@19.1.2)(react@19.1.0)':
  2905. dependencies:
  2906. '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  2907. react: 19.1.0
  2908. optionalDependencies:
  2909. '@types/react': 19.1.2
  2910. '@radix-ui/react-visually-hidden@1.1.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
  2911. dependencies:
  2912. '@radix-ui/react-primitive': 2.0.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  2913. react: 19.1.0
  2914. react-dom: 19.1.0(react@19.1.0)
  2915. optionalDependencies:
  2916. '@types/react': 19.1.2
  2917. '@types/react-dom': 19.1.2(@types/react@19.1.2)
  2918. '@radix-ui/rect@1.1.1': {}
  2919. '@rollup/rollup-android-arm-eabi@4.40.0':
  2920. optional: true
  2921. '@rollup/rollup-android-arm64@4.40.0':
  2922. optional: true
  2923. '@rollup/rollup-darwin-arm64@4.40.0':
  2924. optional: true
  2925. '@rollup/rollup-darwin-x64@4.40.0':
  2926. optional: true
  2927. '@rollup/rollup-freebsd-arm64@4.40.0':
  2928. optional: true
  2929. '@rollup/rollup-freebsd-x64@4.40.0':
  2930. optional: true
  2931. '@rollup/rollup-linux-arm-gnueabihf@4.40.0':
  2932. optional: true
  2933. '@rollup/rollup-linux-arm-musleabihf@4.40.0':
  2934. optional: true
  2935. '@rollup/rollup-linux-arm64-gnu@4.40.0':
  2936. optional: true
  2937. '@rollup/rollup-linux-arm64-musl@4.40.0':
  2938. optional: true
  2939. '@rollup/rollup-linux-loongarch64-gnu@4.40.0':
  2940. optional: true
  2941. '@rollup/rollup-linux-powerpc64le-gnu@4.40.0':
  2942. optional: true
  2943. '@rollup/rollup-linux-riscv64-gnu@4.40.0':
  2944. optional: true
  2945. '@rollup/rollup-linux-riscv64-musl@4.40.0':
  2946. optional: true
  2947. '@rollup/rollup-linux-s390x-gnu@4.40.0':
  2948. optional: true
  2949. '@rollup/rollup-linux-x64-gnu@4.40.0':
  2950. optional: true
  2951. '@rollup/rollup-linux-x64-musl@4.40.0':
  2952. optional: true
  2953. '@rollup/rollup-win32-arm64-msvc@4.40.0':
  2954. optional: true
  2955. '@rollup/rollup-win32-ia32-msvc@4.40.0':
  2956. optional: true
  2957. '@rollup/rollup-win32-x64-msvc@4.40.0':
  2958. optional: true
  2959. '@standard-schema/utils@0.3.0': {}
  2960. '@swc/core-darwin-arm64@1.11.21':
  2961. optional: true
  2962. '@swc/core-darwin-x64@1.11.21':
  2963. optional: true
  2964. '@swc/core-linux-arm-gnueabihf@1.11.21':
  2965. optional: true
  2966. '@swc/core-linux-arm64-gnu@1.11.21':
  2967. optional: true
  2968. '@swc/core-linux-arm64-musl@1.11.21':
  2969. optional: true
  2970. '@swc/core-linux-x64-gnu@1.11.21':
  2971. optional: true
  2972. '@swc/core-linux-x64-musl@1.11.21':
  2973. optional: true
  2974. '@swc/core-win32-arm64-msvc@1.11.21':
  2975. optional: true
  2976. '@swc/core-win32-ia32-msvc@1.11.21':
  2977. optional: true
  2978. '@swc/core-win32-x64-msvc@1.11.21':
  2979. optional: true
  2980. '@swc/core@1.11.21':
  2981. dependencies:
  2982. '@swc/counter': 0.1.3
  2983. '@swc/types': 0.1.21
  2984. optionalDependencies:
  2985. '@swc/core-darwin-arm64': 1.11.21
  2986. '@swc/core-darwin-x64': 1.11.21
  2987. '@swc/core-linux-arm-gnueabihf': 1.11.21
  2988. '@swc/core-linux-arm64-gnu': 1.11.21
  2989. '@swc/core-linux-arm64-musl': 1.11.21
  2990. '@swc/core-linux-x64-gnu': 1.11.21
  2991. '@swc/core-linux-x64-musl': 1.11.21
  2992. '@swc/core-win32-arm64-msvc': 1.11.21
  2993. '@swc/core-win32-ia32-msvc': 1.11.21
  2994. '@swc/core-win32-x64-msvc': 1.11.21
  2995. '@swc/counter@0.1.3': {}
  2996. '@swc/types@0.1.21':
  2997. dependencies:
  2998. '@swc/counter': 0.1.3
  2999. '@tabler/icons-react@3.31.0(react@19.1.0)':
  3000. dependencies:
  3001. '@tabler/icons': 3.31.0
  3002. react: 19.1.0
  3003. '@tabler/icons@3.31.0': {}
  3004. '@tailwindcss/node@4.1.4':
  3005. dependencies:
  3006. enhanced-resolve: 5.18.1
  3007. jiti: 2.4.2
  3008. lightningcss: 1.29.2
  3009. tailwindcss: 4.1.4
  3010. '@tailwindcss/oxide-android-arm64@4.1.4':
  3011. optional: true
  3012. '@tailwindcss/oxide-darwin-arm64@4.1.4':
  3013. optional: true
  3014. '@tailwindcss/oxide-darwin-x64@4.1.4':
  3015. optional: true
  3016. '@tailwindcss/oxide-freebsd-x64@4.1.4':
  3017. optional: true
  3018. '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.4':
  3019. optional: true
  3020. '@tailwindcss/oxide-linux-arm64-gnu@4.1.4':
  3021. optional: true
  3022. '@tailwindcss/oxide-linux-arm64-musl@4.1.4':
  3023. optional: true
  3024. '@tailwindcss/oxide-linux-x64-gnu@4.1.4':
  3025. optional: true
  3026. '@tailwindcss/oxide-linux-x64-musl@4.1.4':
  3027. optional: true
  3028. '@tailwindcss/oxide-wasm32-wasi@4.1.4':
  3029. optional: true
  3030. '@tailwindcss/oxide-win32-arm64-msvc@4.1.4':
  3031. optional: true
  3032. '@tailwindcss/oxide-win32-x64-msvc@4.1.4':
  3033. optional: true
  3034. '@tailwindcss/oxide@4.1.4':
  3035. optionalDependencies:
  3036. '@tailwindcss/oxide-android-arm64': 4.1.4
  3037. '@tailwindcss/oxide-darwin-arm64': 4.1.4
  3038. '@tailwindcss/oxide-darwin-x64': 4.1.4
  3039. '@tailwindcss/oxide-freebsd-x64': 4.1.4
  3040. '@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.4
  3041. '@tailwindcss/oxide-linux-arm64-gnu': 4.1.4
  3042. '@tailwindcss/oxide-linux-arm64-musl': 4.1.4
  3043. '@tailwindcss/oxide-linux-x64-gnu': 4.1.4
  3044. '@tailwindcss/oxide-linux-x64-musl': 4.1.4
  3045. '@tailwindcss/oxide-wasm32-wasi': 4.1.4
  3046. '@tailwindcss/oxide-win32-arm64-msvc': 4.1.4
  3047. '@tailwindcss/oxide-win32-x64-msvc': 4.1.4
  3048. '@tailwindcss/vite@4.1.4(vite@6.2.6(@types/node@22.14.1)(jiti@2.4.2)(lightningcss@1.29.2)(tsx@4.19.3))':
  3049. dependencies:
  3050. '@tailwindcss/node': 4.1.4
  3051. '@tailwindcss/oxide': 4.1.4
  3052. tailwindcss: 4.1.4
  3053. vite: 6.2.6(@types/node@22.14.1)(jiti@2.4.2)(lightningcss@1.29.2)(tsx@4.19.3)
  3054. '@tanstack/eslint-plugin-query@5.73.3(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)':
  3055. dependencies:
  3056. '@typescript-eslint/utils': 8.30.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)
  3057. eslint: 9.24.0(jiti@2.4.2)
  3058. transitivePeerDependencies:
  3059. - supports-color
  3060. - typescript
  3061. '@tanstack/history@1.115.0': {}
  3062. '@tanstack/query-core@5.74.3': {}
  3063. '@tanstack/query-devtools@5.73.3': {}
  3064. '@tanstack/react-query-devtools@5.74.3(@tanstack/react-query@5.74.3(react@19.1.0))(react@19.1.0)':
  3065. dependencies:
  3066. '@tanstack/query-devtools': 5.73.3
  3067. '@tanstack/react-query': 5.74.3(react@19.1.0)
  3068. react: 19.1.0
  3069. '@tanstack/react-query@5.74.3(react@19.1.0)':
  3070. dependencies:
  3071. '@tanstack/query-core': 5.74.3
  3072. react: 19.1.0
  3073. '@tanstack/react-router-devtools@1.116.0(@tanstack/react-router@1.116.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@tanstack/router-core@1.115.3)(csstype@3.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(tiny-invariant@1.3.3)':
  3074. dependencies:
  3075. '@tanstack/react-router': 1.116.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  3076. '@tanstack/router-devtools-core': 1.115.3(@tanstack/router-core@1.115.3)(csstype@3.1.3)(solid-js@1.9.5)(tiny-invariant@1.3.3)
  3077. react: 19.1.0
  3078. react-dom: 19.1.0(react@19.1.0)
  3079. solid-js: 1.9.5
  3080. transitivePeerDependencies:
  3081. - '@tanstack/router-core'
  3082. - csstype
  3083. - tiny-invariant
  3084. '@tanstack/react-router@1.116.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
  3085. dependencies:
  3086. '@tanstack/history': 1.115.0
  3087. '@tanstack/react-store': 0.7.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  3088. '@tanstack/router-core': 1.115.3
  3089. jsesc: 3.1.0
  3090. react: 19.1.0
  3091. react-dom: 19.1.0(react@19.1.0)
  3092. tiny-invariant: 1.3.3
  3093. tiny-warning: 1.0.3
  3094. '@tanstack/react-store@0.7.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
  3095. dependencies:
  3096. '@tanstack/store': 0.7.0
  3097. react: 19.1.0
  3098. react-dom: 19.1.0(react@19.1.0)
  3099. use-sync-external-store: 1.5.0(react@19.1.0)
  3100. '@tanstack/react-table@8.21.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
  3101. dependencies:
  3102. '@tanstack/table-core': 8.21.3
  3103. react: 19.1.0
  3104. react-dom: 19.1.0(react@19.1.0)
  3105. '@tanstack/router-core@1.115.3':
  3106. dependencies:
  3107. '@tanstack/history': 1.115.0
  3108. '@tanstack/store': 0.7.0
  3109. tiny-invariant: 1.3.3
  3110. '@tanstack/router-devtools-core@1.115.3(@tanstack/router-core@1.115.3)(csstype@3.1.3)(solid-js@1.9.5)(tiny-invariant@1.3.3)':
  3111. dependencies:
  3112. '@tanstack/router-core': 1.115.3
  3113. clsx: 2.1.1
  3114. goober: 2.1.16(csstype@3.1.3)
  3115. solid-js: 1.9.5
  3116. tiny-invariant: 1.3.3
  3117. optionalDependencies:
  3118. csstype: 3.1.3
  3119. '@tanstack/router-devtools@1.116.0(@tanstack/react-router@1.116.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@tanstack/router-core@1.115.3)(csstype@3.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(tiny-invariant@1.3.3)':
  3120. dependencies:
  3121. '@tanstack/react-router': 1.116.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  3122. '@tanstack/react-router-devtools': 1.116.0(@tanstack/react-router@1.116.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@tanstack/router-core@1.115.3)(csstype@3.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(tiny-invariant@1.3.3)
  3123. clsx: 2.1.1
  3124. goober: 2.1.16(csstype@3.1.3)
  3125. react: 19.1.0
  3126. react-dom: 19.1.0(react@19.1.0)
  3127. optionalDependencies:
  3128. csstype: 3.1.3
  3129. transitivePeerDependencies:
  3130. - '@tanstack/router-core'
  3131. - tiny-invariant
  3132. '@tanstack/router-generator@1.116.0(@tanstack/react-router@1.116.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0))':
  3133. dependencies:
  3134. '@tanstack/virtual-file-routes': 1.115.0
  3135. prettier: 3.5.3
  3136. tsx: 4.19.3
  3137. zod: 3.24.2
  3138. optionalDependencies:
  3139. '@tanstack/react-router': 1.116.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  3140. '@tanstack/router-plugin@1.116.1(@tanstack/react-router@1.116.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(vite@6.2.6(@types/node@22.14.1)(jiti@2.4.2)(lightningcss@1.29.2)(tsx@4.19.3))':
  3141. dependencies:
  3142. '@babel/core': 7.26.10
  3143. '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.10)
  3144. '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.10)
  3145. '@babel/template': 7.27.0
  3146. '@babel/traverse': 7.27.0
  3147. '@babel/types': 7.27.0
  3148. '@tanstack/router-core': 1.115.3
  3149. '@tanstack/router-generator': 1.116.0(@tanstack/react-router@1.116.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0))
  3150. '@tanstack/router-utils': 1.115.0
  3151. '@tanstack/virtual-file-routes': 1.115.0
  3152. '@types/babel__core': 7.20.5
  3153. '@types/babel__template': 7.4.4
  3154. '@types/babel__traverse': 7.20.7
  3155. babel-dead-code-elimination: 1.0.10
  3156. chokidar: 3.6.0
  3157. unplugin: 2.3.2
  3158. zod: 3.24.2
  3159. optionalDependencies:
  3160. '@tanstack/react-router': 1.116.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  3161. vite: 6.2.6(@types/node@22.14.1)(jiti@2.4.2)(lightningcss@1.29.2)(tsx@4.19.3)
  3162. transitivePeerDependencies:
  3163. - supports-color
  3164. '@tanstack/router-utils@1.115.0':
  3165. dependencies:
  3166. '@babel/generator': 7.27.0
  3167. '@babel/parser': 7.27.0
  3168. ansis: 3.17.0
  3169. diff: 7.0.0
  3170. '@tanstack/store@0.7.0': {}
  3171. '@tanstack/table-core@8.21.3': {}
  3172. '@tanstack/virtual-file-routes@1.115.0': {}
  3173. '@trivago/prettier-plugin-sort-imports@5.2.2(prettier@3.5.3)':
  3174. dependencies:
  3175. '@babel/generator': 7.27.0
  3176. '@babel/parser': 7.27.0
  3177. '@babel/traverse': 7.27.0
  3178. '@babel/types': 7.27.0
  3179. javascript-natural-sort: 0.7.1
  3180. lodash: 4.17.21
  3181. prettier: 3.5.3
  3182. transitivePeerDependencies:
  3183. - supports-color
  3184. '@types/babel__core@7.20.5':
  3185. dependencies:
  3186. '@babel/parser': 7.27.0
  3187. '@babel/types': 7.27.0
  3188. '@types/babel__generator': 7.27.0
  3189. '@types/babel__template': 7.4.4
  3190. '@types/babel__traverse': 7.20.7
  3191. '@types/babel__generator@7.27.0':
  3192. dependencies:
  3193. '@babel/types': 7.27.0
  3194. '@types/babel__template@7.4.4':
  3195. dependencies:
  3196. '@babel/parser': 7.27.0
  3197. '@babel/types': 7.27.0
  3198. '@types/babel__traverse@7.20.7':
  3199. dependencies:
  3200. '@babel/types': 7.27.0
  3201. '@types/d3-array@3.2.1': {}
  3202. '@types/d3-color@3.1.3': {}
  3203. '@types/d3-ease@3.0.2': {}
  3204. '@types/d3-interpolate@3.0.4':
  3205. dependencies:
  3206. '@types/d3-color': 3.1.3
  3207. '@types/d3-path@3.1.1': {}
  3208. '@types/d3-scale@4.0.9':
  3209. dependencies:
  3210. '@types/d3-time': 3.0.4
  3211. '@types/d3-shape@3.1.7':
  3212. dependencies:
  3213. '@types/d3-path': 3.1.1
  3214. '@types/d3-time@3.0.4': {}
  3215. '@types/d3-timer@3.0.2': {}
  3216. '@types/estree@1.0.7': {}
  3217. '@types/js-cookie@3.0.6': {}
  3218. '@types/json-schema@7.0.15': {}
  3219. '@types/node@22.14.1':
  3220. dependencies:
  3221. undici-types: 6.21.0
  3222. '@types/react-dom@19.1.2(@types/react@19.1.2)':
  3223. dependencies:
  3224. '@types/react': 19.1.2
  3225. '@types/react@19.1.2':
  3226. dependencies:
  3227. csstype: 3.1.3
  3228. '@typescript-eslint/eslint-plugin@8.30.1(@typescript-eslint/parser@8.30.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)':
  3229. dependencies:
  3230. '@eslint-community/regexpp': 4.12.1
  3231. '@typescript-eslint/parser': 8.30.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)
  3232. '@typescript-eslint/scope-manager': 8.30.1
  3233. '@typescript-eslint/type-utils': 8.30.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)
  3234. '@typescript-eslint/utils': 8.30.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)
  3235. '@typescript-eslint/visitor-keys': 8.30.1
  3236. eslint: 9.24.0(jiti@2.4.2)
  3237. graphemer: 1.4.0
  3238. ignore: 5.3.2
  3239. natural-compare: 1.4.0
  3240. ts-api-utils: 2.1.0(typescript@5.8.3)
  3241. typescript: 5.8.3
  3242. transitivePeerDependencies:
  3243. - supports-color
  3244. '@typescript-eslint/parser@8.30.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)':
  3245. dependencies:
  3246. '@typescript-eslint/scope-manager': 8.30.1
  3247. '@typescript-eslint/types': 8.30.1
  3248. '@typescript-eslint/typescript-estree': 8.30.1(typescript@5.8.3)
  3249. '@typescript-eslint/visitor-keys': 8.30.1
  3250. debug: 4.4.0
  3251. eslint: 9.24.0(jiti@2.4.2)
  3252. typescript: 5.8.3
  3253. transitivePeerDependencies:
  3254. - supports-color
  3255. '@typescript-eslint/scope-manager@8.30.1':
  3256. dependencies:
  3257. '@typescript-eslint/types': 8.30.1
  3258. '@typescript-eslint/visitor-keys': 8.30.1
  3259. '@typescript-eslint/type-utils@8.30.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)':
  3260. dependencies:
  3261. '@typescript-eslint/typescript-estree': 8.30.1(typescript@5.8.3)
  3262. '@typescript-eslint/utils': 8.30.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)
  3263. debug: 4.4.0
  3264. eslint: 9.24.0(jiti@2.4.2)
  3265. ts-api-utils: 2.1.0(typescript@5.8.3)
  3266. typescript: 5.8.3
  3267. transitivePeerDependencies:
  3268. - supports-color
  3269. '@typescript-eslint/types@8.30.1': {}
  3270. '@typescript-eslint/typescript-estree@8.30.1(typescript@5.8.3)':
  3271. dependencies:
  3272. '@typescript-eslint/types': 8.30.1
  3273. '@typescript-eslint/visitor-keys': 8.30.1
  3274. debug: 4.4.0
  3275. fast-glob: 3.3.3
  3276. is-glob: 4.0.3
  3277. minimatch: 9.0.5
  3278. semver: 7.7.1
  3279. ts-api-utils: 2.1.0(typescript@5.8.3)
  3280. typescript: 5.8.3
  3281. transitivePeerDependencies:
  3282. - supports-color
  3283. '@typescript-eslint/utils@8.30.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)':
  3284. dependencies:
  3285. '@eslint-community/eslint-utils': 4.6.0(eslint@9.24.0(jiti@2.4.2))
  3286. '@typescript-eslint/scope-manager': 8.30.1
  3287. '@typescript-eslint/types': 8.30.1
  3288. '@typescript-eslint/typescript-estree': 8.30.1(typescript@5.8.3)
  3289. eslint: 9.24.0(jiti@2.4.2)
  3290. typescript: 5.8.3
  3291. transitivePeerDependencies:
  3292. - supports-color
  3293. '@typescript-eslint/visitor-keys@8.30.1':
  3294. dependencies:
  3295. '@typescript-eslint/types': 8.30.1
  3296. eslint-visitor-keys: 4.2.0
  3297. '@vitejs/plugin-react-swc@3.9.0(vite@6.2.6(@types/node@22.14.1)(jiti@2.4.2)(lightningcss@1.29.2)(tsx@4.19.3))':
  3298. dependencies:
  3299. '@swc/core': 1.11.21
  3300. vite: 6.2.6(@types/node@22.14.1)(jiti@2.4.2)(lightningcss@1.29.2)(tsx@4.19.3)
  3301. transitivePeerDependencies:
  3302. - '@swc/helpers'
  3303. acorn-jsx@5.3.2(acorn@8.14.1):
  3304. dependencies:
  3305. acorn: 8.14.1
  3306. acorn@8.14.1: {}
  3307. ajv@6.12.6:
  3308. dependencies:
  3309. fast-deep-equal: 3.1.3
  3310. fast-json-stable-stringify: 2.1.0
  3311. json-schema-traverse: 0.4.1
  3312. uri-js: 4.4.1
  3313. ansi-regex@5.0.1: {}
  3314. ansi-styles@4.3.0:
  3315. dependencies:
  3316. color-convert: 2.0.1
  3317. ansis@3.17.0: {}
  3318. anymatch@3.1.3:
  3319. dependencies:
  3320. normalize-path: 3.0.0
  3321. picomatch: 2.3.1
  3322. argparse@2.0.1: {}
  3323. aria-hidden@1.2.4:
  3324. dependencies:
  3325. tslib: 2.8.1
  3326. asynckit@0.4.0: {}
  3327. axios@1.8.4:
  3328. dependencies:
  3329. follow-redirects: 1.15.9
  3330. form-data: 4.0.2
  3331. proxy-from-env: 1.1.0
  3332. transitivePeerDependencies:
  3333. - debug
  3334. babel-dead-code-elimination@1.0.10:
  3335. dependencies:
  3336. '@babel/core': 7.26.10
  3337. '@babel/parser': 7.27.0
  3338. '@babel/traverse': 7.27.0
  3339. '@babel/types': 7.27.0
  3340. transitivePeerDependencies:
  3341. - supports-color
  3342. balanced-match@1.0.2: {}
  3343. binary-extensions@2.3.0: {}
  3344. brace-expansion@1.1.11:
  3345. dependencies:
  3346. balanced-match: 1.0.2
  3347. concat-map: 0.0.1
  3348. brace-expansion@2.0.1:
  3349. dependencies:
  3350. balanced-match: 1.0.2
  3351. braces@3.0.3:
  3352. dependencies:
  3353. fill-range: 7.1.1
  3354. browserslist@4.24.4:
  3355. dependencies:
  3356. caniuse-lite: 1.0.30001713
  3357. electron-to-chromium: 1.5.137
  3358. node-releases: 2.0.19
  3359. update-browserslist-db: 1.1.3(browserslist@4.24.4)
  3360. call-bind-apply-helpers@1.0.2:
  3361. dependencies:
  3362. es-errors: 1.3.0
  3363. function-bind: 1.1.2
  3364. callsites@3.1.0: {}
  3365. caniuse-lite@1.0.30001713: {}
  3366. chalk@4.1.2:
  3367. dependencies:
  3368. ansi-styles: 4.3.0
  3369. supports-color: 7.2.0
  3370. chokidar@3.6.0:
  3371. dependencies:
  3372. anymatch: 3.1.3
  3373. braces: 3.0.3
  3374. glob-parent: 5.1.2
  3375. is-binary-path: 2.1.0
  3376. is-glob: 4.0.3
  3377. normalize-path: 3.0.0
  3378. readdirp: 3.6.0
  3379. optionalDependencies:
  3380. fsevents: 2.3.3
  3381. class-variance-authority@0.7.1:
  3382. dependencies:
  3383. clsx: 2.1.1
  3384. clone@1.0.4:
  3385. optional: true
  3386. clsx@2.1.1: {}
  3387. cmdk@1.1.1(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
  3388. dependencies:
  3389. '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
  3390. '@radix-ui/react-dialog': 1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  3391. '@radix-ui/react-id': 1.1.1(@types/react@19.1.2)(react@19.1.0)
  3392. '@radix-ui/react-primitive': 2.0.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  3393. react: 19.1.0
  3394. react-dom: 19.1.0(react@19.1.0)
  3395. transitivePeerDependencies:
  3396. - '@types/react'
  3397. - '@types/react-dom'
  3398. color-convert@2.0.1:
  3399. dependencies:
  3400. color-name: 1.1.4
  3401. color-name@1.1.4: {}
  3402. combined-stream@1.0.8:
  3403. dependencies:
  3404. delayed-stream: 1.0.0
  3405. concat-map@0.0.1: {}
  3406. convert-source-map@2.0.0: {}
  3407. cross-spawn@7.0.6:
  3408. dependencies:
  3409. path-key: 3.1.1
  3410. shebang-command: 2.0.0
  3411. which: 2.0.2
  3412. csstype@3.1.3: {}
  3413. d3-array@3.2.4:
  3414. dependencies:
  3415. internmap: 2.0.3
  3416. d3-color@3.1.0: {}
  3417. d3-ease@3.0.1: {}
  3418. d3-format@3.1.0: {}
  3419. d3-interpolate@3.0.1:
  3420. dependencies:
  3421. d3-color: 3.1.0
  3422. d3-path@3.1.0: {}
  3423. d3-scale@4.0.2:
  3424. dependencies:
  3425. d3-array: 3.2.4
  3426. d3-format: 3.1.0
  3427. d3-interpolate: 3.0.1
  3428. d3-time: 3.1.0
  3429. d3-time-format: 4.1.0
  3430. d3-shape@3.2.0:
  3431. dependencies:
  3432. d3-path: 3.1.0
  3433. d3-time-format@4.1.0:
  3434. dependencies:
  3435. d3-time: 3.1.0
  3436. d3-time@3.1.0:
  3437. dependencies:
  3438. d3-array: 3.2.4
  3439. d3-timer@3.0.1: {}
  3440. date-fns-jalali@4.1.0-0: {}
  3441. date-fns@4.1.0: {}
  3442. debug@4.4.0:
  3443. dependencies:
  3444. ms: 2.1.3
  3445. decimal.js-light@2.5.1: {}
  3446. deep-is@0.1.4: {}
  3447. defaults@1.0.4:
  3448. dependencies:
  3449. clone: 1.0.4
  3450. optional: true
  3451. delayed-stream@1.0.0: {}
  3452. detect-libc@2.0.3: {}
  3453. detect-node-es@1.1.0: {}
  3454. diff@7.0.0: {}
  3455. dom-helpers@5.2.1:
  3456. dependencies:
  3457. '@babel/runtime': 7.27.0
  3458. csstype: 3.1.3
  3459. dunder-proto@1.0.1:
  3460. dependencies:
  3461. call-bind-apply-helpers: 1.0.2
  3462. es-errors: 1.3.0
  3463. gopd: 1.2.0
  3464. easy-table@1.2.0:
  3465. dependencies:
  3466. ansi-regex: 5.0.1
  3467. optionalDependencies:
  3468. wcwidth: 1.0.1
  3469. electron-to-chromium@1.5.137: {}
  3470. enhanced-resolve@5.18.1:
  3471. dependencies:
  3472. graceful-fs: 4.2.11
  3473. tapable: 2.2.1
  3474. es-define-property@1.0.1: {}
  3475. es-errors@1.3.0: {}
  3476. es-object-atoms@1.1.1:
  3477. dependencies:
  3478. es-errors: 1.3.0
  3479. es-set-tostringtag@2.1.0:
  3480. dependencies:
  3481. es-errors: 1.3.0
  3482. get-intrinsic: 1.3.0
  3483. has-tostringtag: 1.0.2
  3484. hasown: 2.0.2
  3485. esbuild@0.25.2:
  3486. optionalDependencies:
  3487. '@esbuild/aix-ppc64': 0.25.2
  3488. '@esbuild/android-arm': 0.25.2
  3489. '@esbuild/android-arm64': 0.25.2
  3490. '@esbuild/android-x64': 0.25.2
  3491. '@esbuild/darwin-arm64': 0.25.2
  3492. '@esbuild/darwin-x64': 0.25.2
  3493. '@esbuild/freebsd-arm64': 0.25.2
  3494. '@esbuild/freebsd-x64': 0.25.2
  3495. '@esbuild/linux-arm': 0.25.2
  3496. '@esbuild/linux-arm64': 0.25.2
  3497. '@esbuild/linux-ia32': 0.25.2
  3498. '@esbuild/linux-loong64': 0.25.2
  3499. '@esbuild/linux-mips64el': 0.25.2
  3500. '@esbuild/linux-ppc64': 0.25.2
  3501. '@esbuild/linux-riscv64': 0.25.2
  3502. '@esbuild/linux-s390x': 0.25.2
  3503. '@esbuild/linux-x64': 0.25.2
  3504. '@esbuild/netbsd-arm64': 0.25.2
  3505. '@esbuild/netbsd-x64': 0.25.2
  3506. '@esbuild/openbsd-arm64': 0.25.2
  3507. '@esbuild/openbsd-x64': 0.25.2
  3508. '@esbuild/sunos-x64': 0.25.2
  3509. '@esbuild/win32-arm64': 0.25.2
  3510. '@esbuild/win32-ia32': 0.25.2
  3511. '@esbuild/win32-x64': 0.25.2
  3512. escalade@3.2.0: {}
  3513. escape-string-regexp@4.0.0: {}
  3514. eslint-plugin-react-hooks@5.2.0(eslint@9.24.0(jiti@2.4.2)):
  3515. dependencies:
  3516. eslint: 9.24.0(jiti@2.4.2)
  3517. eslint-plugin-react-refresh@0.4.19(eslint@9.24.0(jiti@2.4.2)):
  3518. dependencies:
  3519. eslint: 9.24.0(jiti@2.4.2)
  3520. eslint-scope@8.3.0:
  3521. dependencies:
  3522. esrecurse: 4.3.0
  3523. estraverse: 5.3.0
  3524. eslint-visitor-keys@3.4.3: {}
  3525. eslint-visitor-keys@4.2.0: {}
  3526. eslint@9.24.0(jiti@2.4.2):
  3527. dependencies:
  3528. '@eslint-community/eslint-utils': 4.6.0(eslint@9.24.0(jiti@2.4.2))
  3529. '@eslint-community/regexpp': 4.12.1
  3530. '@eslint/config-array': 0.20.0
  3531. '@eslint/config-helpers': 0.2.1
  3532. '@eslint/core': 0.12.0
  3533. '@eslint/eslintrc': 3.3.1
  3534. '@eslint/js': 9.24.0
  3535. '@eslint/plugin-kit': 0.2.8
  3536. '@humanfs/node': 0.16.6
  3537. '@humanwhocodes/module-importer': 1.0.1
  3538. '@humanwhocodes/retry': 0.4.2
  3539. '@types/estree': 1.0.7
  3540. '@types/json-schema': 7.0.15
  3541. ajv: 6.12.6
  3542. chalk: 4.1.2
  3543. cross-spawn: 7.0.6
  3544. debug: 4.4.0
  3545. escape-string-regexp: 4.0.0
  3546. eslint-scope: 8.3.0
  3547. eslint-visitor-keys: 4.2.0
  3548. espree: 10.3.0
  3549. esquery: 1.6.0
  3550. esutils: 2.0.3
  3551. fast-deep-equal: 3.1.3
  3552. file-entry-cache: 8.0.0
  3553. find-up: 5.0.0
  3554. glob-parent: 6.0.2
  3555. ignore: 5.3.2
  3556. imurmurhash: 0.1.4
  3557. is-glob: 4.0.3
  3558. json-stable-stringify-without-jsonify: 1.0.1
  3559. lodash.merge: 4.6.2
  3560. minimatch: 3.1.2
  3561. natural-compare: 1.4.0
  3562. optionator: 0.9.4
  3563. optionalDependencies:
  3564. jiti: 2.4.2
  3565. transitivePeerDependencies:
  3566. - supports-color
  3567. espree@10.3.0:
  3568. dependencies:
  3569. acorn: 8.14.1
  3570. acorn-jsx: 5.3.2(acorn@8.14.1)
  3571. eslint-visitor-keys: 4.2.0
  3572. esquery@1.6.0:
  3573. dependencies:
  3574. estraverse: 5.3.0
  3575. esrecurse@4.3.0:
  3576. dependencies:
  3577. estraverse: 5.3.0
  3578. estraverse@5.3.0: {}
  3579. esutils@2.0.3: {}
  3580. eventemitter3@4.0.7: {}
  3581. fast-deep-equal@3.1.3: {}
  3582. fast-equals@5.2.2: {}
  3583. fast-glob@3.3.3:
  3584. dependencies:
  3585. '@nodelib/fs.stat': 2.0.5
  3586. '@nodelib/fs.walk': 1.2.8
  3587. glob-parent: 5.1.2
  3588. merge2: 1.4.1
  3589. micromatch: 4.0.8
  3590. fast-json-stable-stringify@2.1.0: {}
  3591. fast-levenshtein@2.0.6: {}
  3592. fastq@1.19.1:
  3593. dependencies:
  3594. reusify: 1.1.0
  3595. file-entry-cache@8.0.0:
  3596. dependencies:
  3597. flat-cache: 4.0.1
  3598. fill-range@7.1.1:
  3599. dependencies:
  3600. to-regex-range: 5.0.1
  3601. find-up@5.0.0:
  3602. dependencies:
  3603. locate-path: 6.0.0
  3604. path-exists: 4.0.0
  3605. flat-cache@4.0.1:
  3606. dependencies:
  3607. flatted: 3.3.3
  3608. keyv: 4.5.4
  3609. flatted@3.3.3: {}
  3610. follow-redirects@1.15.9: {}
  3611. form-data@4.0.2:
  3612. dependencies:
  3613. asynckit: 0.4.0
  3614. combined-stream: 1.0.8
  3615. es-set-tostringtag: 2.1.0
  3616. mime-types: 2.1.35
  3617. fsevents@2.3.3:
  3618. optional: true
  3619. function-bind@1.1.2: {}
  3620. gensync@1.0.0-beta.2: {}
  3621. get-intrinsic@1.3.0:
  3622. dependencies:
  3623. call-bind-apply-helpers: 1.0.2
  3624. es-define-property: 1.0.1
  3625. es-errors: 1.3.0
  3626. es-object-atoms: 1.1.1
  3627. function-bind: 1.1.2
  3628. get-proto: 1.0.1
  3629. gopd: 1.2.0
  3630. has-symbols: 1.1.0
  3631. hasown: 2.0.2
  3632. math-intrinsics: 1.1.0
  3633. get-nonce@1.0.1: {}
  3634. get-proto@1.0.1:
  3635. dependencies:
  3636. dunder-proto: 1.0.1
  3637. es-object-atoms: 1.1.1
  3638. get-tsconfig@4.10.0:
  3639. dependencies:
  3640. resolve-pkg-maps: 1.0.0
  3641. glob-parent@5.1.2:
  3642. dependencies:
  3643. is-glob: 4.0.3
  3644. glob-parent@6.0.2:
  3645. dependencies:
  3646. is-glob: 4.0.3
  3647. globals@11.12.0: {}
  3648. globals@14.0.0: {}
  3649. globals@16.0.0: {}
  3650. goober@2.1.16(csstype@3.1.3):
  3651. dependencies:
  3652. csstype: 3.1.3
  3653. gopd@1.2.0: {}
  3654. graceful-fs@4.2.11: {}
  3655. graphemer@1.4.0: {}
  3656. has-flag@4.0.0: {}
  3657. has-symbols@1.1.0: {}
  3658. has-tostringtag@1.0.2:
  3659. dependencies:
  3660. has-symbols: 1.1.0
  3661. hasown@2.0.2:
  3662. dependencies:
  3663. function-bind: 1.1.2
  3664. ignore@5.3.2: {}
  3665. import-fresh@3.3.1:
  3666. dependencies:
  3667. parent-module: 1.0.1
  3668. resolve-from: 4.0.0
  3669. imurmurhash@0.1.4: {}
  3670. internmap@2.0.3: {}
  3671. is-binary-path@2.1.0:
  3672. dependencies:
  3673. binary-extensions: 2.3.0
  3674. is-extglob@2.1.1: {}
  3675. is-glob@4.0.3:
  3676. dependencies:
  3677. is-extglob: 2.1.1
  3678. is-number@7.0.0: {}
  3679. isexe@2.0.0: {}
  3680. javascript-natural-sort@0.7.1: {}
  3681. jiti@2.4.2: {}
  3682. js-cookie@3.0.5: {}
  3683. js-tokens@4.0.0: {}
  3684. js-yaml@4.1.0:
  3685. dependencies:
  3686. argparse: 2.0.1
  3687. jsesc@3.1.0: {}
  3688. json-buffer@3.0.1: {}
  3689. json-schema-traverse@0.4.1: {}
  3690. json-stable-stringify-without-jsonify@1.0.1: {}
  3691. json5@2.2.3: {}
  3692. keyv@4.5.4:
  3693. dependencies:
  3694. json-buffer: 3.0.1
  3695. knip@5.50.4(@types/node@22.14.1)(typescript@5.8.3):
  3696. dependencies:
  3697. '@nodelib/fs.walk': 1.2.8
  3698. '@types/node': 22.14.1
  3699. easy-table: 1.2.0
  3700. enhanced-resolve: 5.18.1
  3701. fast-glob: 3.3.3
  3702. jiti: 2.4.2
  3703. js-yaml: 4.1.0
  3704. minimist: 1.2.8
  3705. picocolors: 1.1.1
  3706. picomatch: 4.0.2
  3707. pretty-ms: 9.2.0
  3708. smol-toml: 1.3.1
  3709. strip-json-comments: 5.0.1
  3710. typescript: 5.8.3
  3711. zod: 3.24.2
  3712. zod-validation-error: 3.4.0(zod@3.24.2)
  3713. levn@0.4.1:
  3714. dependencies:
  3715. prelude-ls: 1.2.1
  3716. type-check: 0.4.0
  3717. lightningcss-darwin-arm64@1.29.2:
  3718. optional: true
  3719. lightningcss-darwin-x64@1.29.2:
  3720. optional: true
  3721. lightningcss-freebsd-x64@1.29.2:
  3722. optional: true
  3723. lightningcss-linux-arm-gnueabihf@1.29.2:
  3724. optional: true
  3725. lightningcss-linux-arm64-gnu@1.29.2:
  3726. optional: true
  3727. lightningcss-linux-arm64-musl@1.29.2:
  3728. optional: true
  3729. lightningcss-linux-x64-gnu@1.29.2:
  3730. optional: true
  3731. lightningcss-linux-x64-musl@1.29.2:
  3732. optional: true
  3733. lightningcss-win32-arm64-msvc@1.29.2:
  3734. optional: true
  3735. lightningcss-win32-x64-msvc@1.29.2:
  3736. optional: true
  3737. lightningcss@1.29.2:
  3738. dependencies:
  3739. detect-libc: 2.0.3
  3740. optionalDependencies:
  3741. lightningcss-darwin-arm64: 1.29.2
  3742. lightningcss-darwin-x64: 1.29.2
  3743. lightningcss-freebsd-x64: 1.29.2
  3744. lightningcss-linux-arm-gnueabihf: 1.29.2
  3745. lightningcss-linux-arm64-gnu: 1.29.2
  3746. lightningcss-linux-arm64-musl: 1.29.2
  3747. lightningcss-linux-x64-gnu: 1.29.2
  3748. lightningcss-linux-x64-musl: 1.29.2
  3749. lightningcss-win32-arm64-msvc: 1.29.2
  3750. lightningcss-win32-x64-msvc: 1.29.2
  3751. locate-path@6.0.0:
  3752. dependencies:
  3753. p-locate: 5.0.0
  3754. lodash.merge@4.6.2: {}
  3755. lodash@4.17.21: {}
  3756. loose-envify@1.4.0:
  3757. dependencies:
  3758. js-tokens: 4.0.0
  3759. lru-cache@5.1.1:
  3760. dependencies:
  3761. yallist: 3.1.1
  3762. lucide-react@0.488.0(react@19.1.0):
  3763. dependencies:
  3764. react: 19.1.0
  3765. math-intrinsics@1.1.0: {}
  3766. merge2@1.4.1: {}
  3767. micromatch@4.0.8:
  3768. dependencies:
  3769. braces: 3.0.3
  3770. picomatch: 2.3.1
  3771. mime-db@1.52.0: {}
  3772. mime-types@2.1.35:
  3773. dependencies:
  3774. mime-db: 1.52.0
  3775. minimatch@3.1.2:
  3776. dependencies:
  3777. brace-expansion: 1.1.11
  3778. minimatch@9.0.5:
  3779. dependencies:
  3780. brace-expansion: 2.0.1
  3781. minimist@1.2.8: {}
  3782. ms@2.1.3: {}
  3783. nanoid@3.3.11: {}
  3784. natural-compare@1.4.0: {}
  3785. node-releases@2.0.19: {}
  3786. normalize-path@3.0.0: {}
  3787. object-assign@4.1.1: {}
  3788. optionator@0.9.4:
  3789. dependencies:
  3790. deep-is: 0.1.4
  3791. fast-levenshtein: 2.0.6
  3792. levn: 0.4.1
  3793. prelude-ls: 1.2.1
  3794. type-check: 0.4.0
  3795. word-wrap: 1.2.5
  3796. p-limit@3.1.0:
  3797. dependencies:
  3798. yocto-queue: 0.1.0
  3799. p-locate@5.0.0:
  3800. dependencies:
  3801. p-limit: 3.1.0
  3802. parent-module@1.0.1:
  3803. dependencies:
  3804. callsites: 3.1.0
  3805. parse-ms@4.0.0: {}
  3806. path-exists@4.0.0: {}
  3807. path-key@3.1.1: {}
  3808. picocolors@1.1.1: {}
  3809. picomatch@2.3.1: {}
  3810. picomatch@4.0.2: {}
  3811. postcss@8.5.3:
  3812. dependencies:
  3813. nanoid: 3.3.11
  3814. picocolors: 1.1.1
  3815. source-map-js: 1.2.1
  3816. prelude-ls@1.2.1: {}
  3817. prettier-plugin-tailwindcss@0.6.11(@trivago/prettier-plugin-sort-imports@5.2.2(prettier@3.5.3))(prettier@3.5.3):
  3818. dependencies:
  3819. prettier: 3.5.3
  3820. optionalDependencies:
  3821. '@trivago/prettier-plugin-sort-imports': 5.2.2(prettier@3.5.3)
  3822. prettier@3.5.3: {}
  3823. pretty-ms@9.2.0:
  3824. dependencies:
  3825. parse-ms: 4.0.0
  3826. prop-types@15.8.1:
  3827. dependencies:
  3828. loose-envify: 1.4.0
  3829. object-assign: 4.1.1
  3830. react-is: 16.13.1
  3831. proxy-from-env@1.1.0: {}
  3832. punycode@2.3.1: {}
  3833. queue-microtask@1.2.3: {}
  3834. react-day-picker@9.6.6(react@19.1.0):
  3835. dependencies:
  3836. '@date-fns/tz': 1.2.0
  3837. date-fns: 4.1.0
  3838. date-fns-jalali: 4.1.0-0
  3839. react: 19.1.0
  3840. react-dom@19.1.0(react@19.1.0):
  3841. dependencies:
  3842. react: 19.1.0
  3843. scheduler: 0.26.0
  3844. react-hook-form@7.55.0(react@19.1.0):
  3845. dependencies:
  3846. react: 19.1.0
  3847. react-is@16.13.1: {}
  3848. react-is@18.3.1: {}
  3849. react-remove-scroll-bar@2.3.8(@types/react@19.1.2)(react@19.1.0):
  3850. dependencies:
  3851. react: 19.1.0
  3852. react-style-singleton: 2.2.3(@types/react@19.1.2)(react@19.1.0)
  3853. tslib: 2.8.1
  3854. optionalDependencies:
  3855. '@types/react': 19.1.2
  3856. react-remove-scroll@2.6.3(@types/react@19.1.2)(react@19.1.0):
  3857. dependencies:
  3858. react: 19.1.0
  3859. react-remove-scroll-bar: 2.3.8(@types/react@19.1.2)(react@19.1.0)
  3860. react-style-singleton: 2.2.3(@types/react@19.1.2)(react@19.1.0)
  3861. tslib: 2.8.1
  3862. use-callback-ref: 1.3.3(@types/react@19.1.2)(react@19.1.0)
  3863. use-sidecar: 1.1.3(@types/react@19.1.2)(react@19.1.0)
  3864. optionalDependencies:
  3865. '@types/react': 19.1.2
  3866. react-smooth@4.0.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
  3867. dependencies:
  3868. fast-equals: 5.2.2
  3869. prop-types: 15.8.1
  3870. react: 19.1.0
  3871. react-dom: 19.1.0(react@19.1.0)
  3872. react-transition-group: 4.4.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  3873. react-style-singleton@2.2.3(@types/react@19.1.2)(react@19.1.0):
  3874. dependencies:
  3875. get-nonce: 1.0.1
  3876. react: 19.1.0
  3877. tslib: 2.8.1
  3878. optionalDependencies:
  3879. '@types/react': 19.1.2
  3880. react-top-loading-bar@3.0.2(react@19.1.0):
  3881. dependencies:
  3882. react: 19.1.0
  3883. react-transition-group@4.4.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
  3884. dependencies:
  3885. '@babel/runtime': 7.27.0
  3886. dom-helpers: 5.2.1
  3887. loose-envify: 1.4.0
  3888. prop-types: 15.8.1
  3889. react: 19.1.0
  3890. react-dom: 19.1.0(react@19.1.0)
  3891. react@19.1.0: {}
  3892. readdirp@3.6.0:
  3893. dependencies:
  3894. picomatch: 2.3.1
  3895. recharts-scale@0.4.5:
  3896. dependencies:
  3897. decimal.js-light: 2.5.1
  3898. recharts@2.15.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
  3899. dependencies:
  3900. clsx: 2.1.1
  3901. eventemitter3: 4.0.7
  3902. lodash: 4.17.21
  3903. react: 19.1.0
  3904. react-dom: 19.1.0(react@19.1.0)
  3905. react-is: 18.3.1
  3906. react-smooth: 4.0.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
  3907. recharts-scale: 0.4.5
  3908. tiny-invariant: 1.3.3
  3909. victory-vendor: 36.9.2
  3910. regenerator-runtime@0.14.1: {}
  3911. resolve-from@4.0.0: {}
  3912. resolve-pkg-maps@1.0.0: {}
  3913. reusify@1.1.0: {}
  3914. rollup@4.40.0:
  3915. dependencies:
  3916. '@types/estree': 1.0.7
  3917. optionalDependencies:
  3918. '@rollup/rollup-android-arm-eabi': 4.40.0
  3919. '@rollup/rollup-android-arm64': 4.40.0
  3920. '@rollup/rollup-darwin-arm64': 4.40.0
  3921. '@rollup/rollup-darwin-x64': 4.40.0
  3922. '@rollup/rollup-freebsd-arm64': 4.40.0
  3923. '@rollup/rollup-freebsd-x64': 4.40.0
  3924. '@rollup/rollup-linux-arm-gnueabihf': 4.40.0
  3925. '@rollup/rollup-linux-arm-musleabihf': 4.40.0
  3926. '@rollup/rollup-linux-arm64-gnu': 4.40.0
  3927. '@rollup/rollup-linux-arm64-musl': 4.40.0
  3928. '@rollup/rollup-linux-loongarch64-gnu': 4.40.0
  3929. '@rollup/rollup-linux-powerpc64le-gnu': 4.40.0
  3930. '@rollup/rollup-linux-riscv64-gnu': 4.40.0
  3931. '@rollup/rollup-linux-riscv64-musl': 4.40.0
  3932. '@rollup/rollup-linux-s390x-gnu': 4.40.0
  3933. '@rollup/rollup-linux-x64-gnu': 4.40.0
  3934. '@rollup/rollup-linux-x64-musl': 4.40.0
  3935. '@rollup/rollup-win32-arm64-msvc': 4.40.0
  3936. '@rollup/rollup-win32-ia32-msvc': 4.40.0
  3937. '@rollup/rollup-win32-x64-msvc': 4.40.0
  3938. fsevents: 2.3.3
  3939. run-parallel@1.2.0:
  3940. dependencies:
  3941. queue-microtask: 1.2.3
  3942. scheduler@0.26.0: {}
  3943. semver@6.3.1: {}
  3944. semver@7.7.1: {}
  3945. seroval-plugins@1.2.1(seroval@1.2.1):
  3946. dependencies:
  3947. seroval: 1.2.1
  3948. seroval@1.2.1: {}
  3949. shebang-command@2.0.0:
  3950. dependencies:
  3951. shebang-regex: 3.0.0
  3952. shebang-regex@3.0.0: {}
  3953. smol-toml@1.3.1: {}
  3954. solid-js@1.9.5:
  3955. dependencies:
  3956. csstype: 3.1.3
  3957. seroval: 1.2.1
  3958. seroval-plugins: 1.2.1(seroval@1.2.1)
  3959. sonner@2.0.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
  3960. dependencies:
  3961. react: 19.1.0
  3962. react-dom: 19.1.0(react@19.1.0)
  3963. source-map-js@1.2.1: {}
  3964. strip-json-comments@3.1.1: {}
  3965. strip-json-comments@5.0.1: {}
  3966. supports-color@7.2.0:
  3967. dependencies:
  3968. has-flag: 4.0.0
  3969. tailwind-merge@3.2.0: {}
  3970. tailwindcss@4.1.4: {}
  3971. tapable@2.2.1: {}
  3972. tiny-invariant@1.3.3: {}
  3973. tiny-warning@1.0.3: {}
  3974. to-regex-range@5.0.1:
  3975. dependencies:
  3976. is-number: 7.0.0
  3977. ts-api-utils@2.1.0(typescript@5.8.3):
  3978. dependencies:
  3979. typescript: 5.8.3
  3980. tslib@2.8.1: {}
  3981. tsx@4.19.3:
  3982. dependencies:
  3983. esbuild: 0.25.2
  3984. get-tsconfig: 4.10.0
  3985. optionalDependencies:
  3986. fsevents: 2.3.3
  3987. tw-animate-css@1.2.5: {}
  3988. type-check@0.4.0:
  3989. dependencies:
  3990. prelude-ls: 1.2.1
  3991. typescript-eslint@8.30.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3):
  3992. dependencies:
  3993. '@typescript-eslint/eslint-plugin': 8.30.1(@typescript-eslint/parser@8.30.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)
  3994. '@typescript-eslint/parser': 8.30.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)
  3995. '@typescript-eslint/utils': 8.30.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)
  3996. eslint: 9.24.0(jiti@2.4.2)
  3997. typescript: 5.8.3
  3998. transitivePeerDependencies:
  3999. - supports-color
  4000. typescript@5.8.3: {}
  4001. undici-types@6.21.0: {}
  4002. unplugin@2.3.2:
  4003. dependencies:
  4004. acorn: 8.14.1
  4005. picomatch: 4.0.2
  4006. webpack-virtual-modules: 0.6.2
  4007. update-browserslist-db@1.1.3(browserslist@4.24.4):
  4008. dependencies:
  4009. browserslist: 4.24.4
  4010. escalade: 3.2.0
  4011. picocolors: 1.1.1
  4012. uri-js@4.4.1:
  4013. dependencies:
  4014. punycode: 2.3.1
  4015. use-callback-ref@1.3.3(@types/react@19.1.2)(react@19.1.0):
  4016. dependencies:
  4017. react: 19.1.0
  4018. tslib: 2.8.1
  4019. optionalDependencies:
  4020. '@types/react': 19.1.2
  4021. use-sidecar@1.1.3(@types/react@19.1.2)(react@19.1.0):
  4022. dependencies:
  4023. detect-node-es: 1.1.0
  4024. react: 19.1.0
  4025. tslib: 2.8.1
  4026. optionalDependencies:
  4027. '@types/react': 19.1.2
  4028. use-sync-external-store@1.5.0(react@19.1.0):
  4029. dependencies:
  4030. react: 19.1.0
  4031. victory-vendor@36.9.2:
  4032. dependencies:
  4033. '@types/d3-array': 3.2.1
  4034. '@types/d3-ease': 3.0.2
  4035. '@types/d3-interpolate': 3.0.4
  4036. '@types/d3-scale': 4.0.9
  4037. '@types/d3-shape': 3.1.7
  4038. '@types/d3-time': 3.0.4
  4039. '@types/d3-timer': 3.0.2
  4040. d3-array: 3.2.4
  4041. d3-ease: 3.0.1
  4042. d3-interpolate: 3.0.1
  4043. d3-scale: 4.0.2
  4044. d3-shape: 3.2.0
  4045. d3-time: 3.1.0
  4046. d3-timer: 3.0.1
  4047. vite@6.2.6(@types/node@22.14.1)(jiti@2.4.2)(lightningcss@1.29.2)(tsx@4.19.3):
  4048. dependencies:
  4049. esbuild: 0.25.2
  4050. postcss: 8.5.3
  4051. rollup: 4.40.0
  4052. optionalDependencies:
  4053. '@types/node': 22.14.1
  4054. fsevents: 2.3.3
  4055. jiti: 2.4.2
  4056. lightningcss: 1.29.2
  4057. tsx: 4.19.3
  4058. wcwidth@1.0.1:
  4059. dependencies:
  4060. defaults: 1.0.4
  4061. optional: true
  4062. webpack-virtual-modules@0.6.2: {}
  4063. which@2.0.2:
  4064. dependencies:
  4065. isexe: 2.0.0
  4066. word-wrap@1.2.5: {}
  4067. yallist@3.1.1: {}
  4068. yocto-queue@0.1.0: {}
  4069. zod-validation-error@3.4.0(zod@3.24.2):
  4070. dependencies:
  4071. zod: 3.24.2
  4072. zod@3.24.2: {}
  4073. zustand@5.0.3(@types/react@19.1.2)(react@19.1.0)(use-sync-external-store@1.5.0(react@19.1.0)):
  4074. optionalDependencies:
  4075. '@types/react': 19.1.2
  4076. react: 19.1.0
  4077. use-sync-external-store: 1.5.0(react@19.1.0)