pnpm-lock.yaml 180 KB

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