pnpm-lock.yaml 156 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. '@hookform/resolvers':
  9. specifier: ^3.3.4
  10. version: 3.3.4(react-hook-form@7.51.3)
  11. '@radix-ui/react-avatar':
  12. specifier: ^1.0.4
  13. version: 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  14. '@radix-ui/react-checkbox':
  15. specifier: ^1.0.4
  16. version: 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  17. '@radix-ui/react-collapsible':
  18. specifier: ^1.0.3
  19. version: 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  20. '@radix-ui/react-dialog':
  21. specifier: ^1.0.5
  22. version: 1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  23. '@radix-ui/react-dropdown-menu':
  24. specifier: ^2.0.6
  25. version: 2.0.6(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  26. '@radix-ui/react-icons':
  27. specifier: ^1.3.0
  28. version: 1.3.0(react@18.2.0)
  29. '@radix-ui/react-label':
  30. specifier: ^2.0.2
  31. version: 2.0.2(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  32. '@radix-ui/react-popover':
  33. specifier: ^1.0.7
  34. version: 1.0.7(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  35. '@radix-ui/react-radio-group':
  36. specifier: ^1.1.3
  37. version: 1.1.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  38. '@radix-ui/react-select':
  39. specifier: ^2.0.0
  40. version: 2.0.0(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  41. '@radix-ui/react-separator':
  42. specifier: ^1.0.3
  43. version: 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  44. '@radix-ui/react-slot':
  45. specifier: ^1.0.2
  46. version: 1.0.2(@types/react@18.2.79)(react@18.2.0)
  47. '@radix-ui/react-switch':
  48. specifier: ^1.0.3
  49. version: 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  50. '@radix-ui/react-tabs':
  51. specifier: ^1.0.4
  52. version: 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  53. '@radix-ui/react-toast':
  54. specifier: ^1.1.5
  55. version: 1.1.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  56. '@radix-ui/react-tooltip':
  57. specifier: ^1.0.7
  58. version: 1.0.7(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  59. '@tabler/icons-react':
  60. specifier: ^3.2.0
  61. version: 3.2.0(react@18.2.0)
  62. '@tanstack/react-table':
  63. specifier: ^8.16.0
  64. version: 8.16.0(react-dom@18.2.0)(react@18.2.0)
  65. class-variance-authority:
  66. specifier: ^0.7.0
  67. version: 0.7.0
  68. clsx:
  69. specifier: ^2.1.0
  70. version: 2.1.0
  71. cmdk:
  72. specifier: ^0.2.1
  73. version: 0.2.1(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  74. dayjs:
  75. specifier: ^1.11.10
  76. version: 1.11.10
  77. react:
  78. specifier: ^18.2.0
  79. version: 18.2.0
  80. react-day-picker:
  81. specifier: ^8.10.1
  82. version: 8.10.1(date-fns@3.3.1)(react@18.2.0)
  83. react-dom:
  84. specifier: ^18.2.0
  85. version: 18.2.0(react@18.2.0)
  86. react-hook-form:
  87. specifier: ^7.51.3
  88. version: 7.51.3(react@18.2.0)
  89. react-router-dom:
  90. specifier: ^6.22.3
  91. version: 6.22.3(react-dom@18.2.0)(react@18.2.0)
  92. react-syntax-highlighter:
  93. specifier: ^15.5.0
  94. version: 15.5.0(react@18.2.0)
  95. recharts:
  96. specifier: ^2.12.5
  97. version: 2.12.5(react-dom@18.2.0)(react@18.2.0)
  98. tailwind-merge:
  99. specifier: ^2.2.2
  100. version: 2.2.2
  101. tailwindcss-animate:
  102. specifier: ^1.0.7
  103. version: 1.0.7(tailwindcss@3.4.3)
  104. zod:
  105. specifier: ^3.22.4
  106. version: 3.22.4
  107. devDependencies:
  108. '@types/node':
  109. specifier: ^20.12.7
  110. version: 20.12.7
  111. '@types/react':
  112. specifier: ^18.2.79
  113. version: 18.2.79
  114. '@types/react-dom':
  115. specifier: ^18.2.25
  116. version: 18.2.25
  117. '@types/react-syntax-highlighter':
  118. specifier: ^15.5.11
  119. version: 15.5.11
  120. '@typescript-eslint/eslint-plugin':
  121. specifier: ^6.14.0
  122. version: 6.19.1(@typescript-eslint/parser@6.19.1)(eslint@8.56.0)(typescript@5.4.5)
  123. '@typescript-eslint/parser':
  124. specifier: ^6.14.0
  125. version: 6.19.1(eslint@8.56.0)(typescript@5.4.5)
  126. '@vitejs/plugin-react-swc':
  127. specifier: ^3.6.0
  128. version: 3.6.0(vite@5.2.9)
  129. autoprefixer:
  130. specifier: ^10.4.19
  131. version: 10.4.19(postcss@8.4.38)
  132. eslint:
  133. specifier: ^8.55.0
  134. version: 8.56.0
  135. eslint-plugin-react-hooks:
  136. specifier: ^4.6.0
  137. version: 4.6.0(eslint@8.56.0)
  138. eslint-plugin-react-refresh:
  139. specifier: ^0.4.5
  140. version: 0.4.5(eslint@8.56.0)
  141. postcss:
  142. specifier: ^8.4.38
  143. version: 8.4.38
  144. prettier:
  145. specifier: ^3.2.5
  146. version: 3.2.5
  147. prettier-plugin-tailwindcss:
  148. specifier: ^0.5.14
  149. version: 0.5.14(prettier@3.2.5)
  150. tailwindcss:
  151. specifier: ^3.4.3
  152. version: 3.4.3
  153. typescript:
  154. specifier: ^5.4.5
  155. version: 5.4.5
  156. vite:
  157. specifier: ^5.2.9
  158. version: 5.2.9(@types/node@20.12.7)
  159. packages:
  160. '@aashutoshrathi/word-wrap@1.2.6':
  161. resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
  162. engines: {node: '>=0.10.0'}
  163. '@alloc/quick-lru@5.2.0':
  164. resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
  165. engines: {node: '>=10'}
  166. '@babel/runtime@7.23.9':
  167. resolution: {integrity: sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==}
  168. engines: {node: '>=6.9.0'}
  169. '@babel/runtime@7.24.4':
  170. resolution: {integrity: sha512-dkxf7+hn8mFBwKjs9bvBlArzLVxVbS8usaPUDd5p2a9JCL9tB8OaOVN1isD4+Xyk4ns89/xeOmbQvgdK7IIVdA==}
  171. engines: {node: '>=6.9.0'}
  172. '@esbuild/aix-ppc64@0.20.2':
  173. resolution: {integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==}
  174. engines: {node: '>=12'}
  175. cpu: [ppc64]
  176. os: [aix]
  177. '@esbuild/android-arm64@0.20.2':
  178. resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==}
  179. engines: {node: '>=12'}
  180. cpu: [arm64]
  181. os: [android]
  182. '@esbuild/android-arm@0.20.2':
  183. resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==}
  184. engines: {node: '>=12'}
  185. cpu: [arm]
  186. os: [android]
  187. '@esbuild/android-x64@0.20.2':
  188. resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==}
  189. engines: {node: '>=12'}
  190. cpu: [x64]
  191. os: [android]
  192. '@esbuild/darwin-arm64@0.20.2':
  193. resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==}
  194. engines: {node: '>=12'}
  195. cpu: [arm64]
  196. os: [darwin]
  197. '@esbuild/darwin-x64@0.20.2':
  198. resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==}
  199. engines: {node: '>=12'}
  200. cpu: [x64]
  201. os: [darwin]
  202. '@esbuild/freebsd-arm64@0.20.2':
  203. resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==}
  204. engines: {node: '>=12'}
  205. cpu: [arm64]
  206. os: [freebsd]
  207. '@esbuild/freebsd-x64@0.20.2':
  208. resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==}
  209. engines: {node: '>=12'}
  210. cpu: [x64]
  211. os: [freebsd]
  212. '@esbuild/linux-arm64@0.20.2':
  213. resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==}
  214. engines: {node: '>=12'}
  215. cpu: [arm64]
  216. os: [linux]
  217. '@esbuild/linux-arm@0.20.2':
  218. resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==}
  219. engines: {node: '>=12'}
  220. cpu: [arm]
  221. os: [linux]
  222. '@esbuild/linux-ia32@0.20.2':
  223. resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==}
  224. engines: {node: '>=12'}
  225. cpu: [ia32]
  226. os: [linux]
  227. '@esbuild/linux-loong64@0.20.2':
  228. resolution: {integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==}
  229. engines: {node: '>=12'}
  230. cpu: [loong64]
  231. os: [linux]
  232. '@esbuild/linux-mips64el@0.20.2':
  233. resolution: {integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==}
  234. engines: {node: '>=12'}
  235. cpu: [mips64el]
  236. os: [linux]
  237. '@esbuild/linux-ppc64@0.20.2':
  238. resolution: {integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==}
  239. engines: {node: '>=12'}
  240. cpu: [ppc64]
  241. os: [linux]
  242. '@esbuild/linux-riscv64@0.20.2':
  243. resolution: {integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==}
  244. engines: {node: '>=12'}
  245. cpu: [riscv64]
  246. os: [linux]
  247. '@esbuild/linux-s390x@0.20.2':
  248. resolution: {integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==}
  249. engines: {node: '>=12'}
  250. cpu: [s390x]
  251. os: [linux]
  252. '@esbuild/linux-x64@0.20.2':
  253. resolution: {integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==}
  254. engines: {node: '>=12'}
  255. cpu: [x64]
  256. os: [linux]
  257. '@esbuild/netbsd-x64@0.20.2':
  258. resolution: {integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==}
  259. engines: {node: '>=12'}
  260. cpu: [x64]
  261. os: [netbsd]
  262. '@esbuild/openbsd-x64@0.20.2':
  263. resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==}
  264. engines: {node: '>=12'}
  265. cpu: [x64]
  266. os: [openbsd]
  267. '@esbuild/sunos-x64@0.20.2':
  268. resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==}
  269. engines: {node: '>=12'}
  270. cpu: [x64]
  271. os: [sunos]
  272. '@esbuild/win32-arm64@0.20.2':
  273. resolution: {integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==}
  274. engines: {node: '>=12'}
  275. cpu: [arm64]
  276. os: [win32]
  277. '@esbuild/win32-ia32@0.20.2':
  278. resolution: {integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==}
  279. engines: {node: '>=12'}
  280. cpu: [ia32]
  281. os: [win32]
  282. '@esbuild/win32-x64@0.20.2':
  283. resolution: {integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==}
  284. engines: {node: '>=12'}
  285. cpu: [x64]
  286. os: [win32]
  287. '@eslint-community/eslint-utils@4.4.0':
  288. resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
  289. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  290. peerDependencies:
  291. eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
  292. '@eslint-community/regexpp@4.10.0':
  293. resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==}
  294. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  295. '@eslint/eslintrc@2.1.4':
  296. resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
  297. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  298. '@eslint/js@8.56.0':
  299. resolution: {integrity: sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==}
  300. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  301. '@floating-ui/core@1.6.0':
  302. resolution: {integrity: sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==}
  303. '@floating-ui/dom@1.6.0':
  304. resolution: {integrity: sha512-SZ0BEXzsaaS6THZfZJUcAobbZTD+MvfGM42bxgeg0Tnkp4/an/avqwAXiVLsFtIBZtfsx3Ymvwx0+KnnhdA/9g==}
  305. '@floating-ui/react-dom@2.0.7':
  306. resolution: {integrity: sha512-B5GJxKUyPcGsvE1vua+Abvw0t6zVMyTbtG+Jk7BoI4hfc5Ahv50dstRIAn0nS0274kR9gnKwxIXyGA8EzBZJrA==}
  307. peerDependencies:
  308. react: '>=16.8.0'
  309. react-dom: '>=16.8.0'
  310. '@floating-ui/utils@0.2.1':
  311. resolution: {integrity: sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==}
  312. '@hookform/resolvers@3.3.4':
  313. resolution: {integrity: sha512-o5cgpGOuJYrd+iMKvkttOclgwRW86EsWJZZRC23prf0uU2i48Htq4PuT73AVb9ionFyZrwYEITuOFGF+BydEtQ==}
  314. peerDependencies:
  315. react-hook-form: ^7.0.0
  316. '@humanwhocodes/config-array@0.11.14':
  317. resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==}
  318. engines: {node: '>=10.10.0'}
  319. '@humanwhocodes/module-importer@1.0.1':
  320. resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
  321. engines: {node: '>=12.22'}
  322. '@humanwhocodes/object-schema@2.0.2':
  323. resolution: {integrity: sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==}
  324. '@isaacs/cliui@8.0.2':
  325. resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
  326. engines: {node: '>=12'}
  327. '@jridgewell/gen-mapping@0.3.3':
  328. resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==}
  329. engines: {node: '>=6.0.0'}
  330. '@jridgewell/resolve-uri@3.1.1':
  331. resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==}
  332. engines: {node: '>=6.0.0'}
  333. '@jridgewell/set-array@1.1.2':
  334. resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
  335. engines: {node: '>=6.0.0'}
  336. '@jridgewell/sourcemap-codec@1.4.15':
  337. resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
  338. '@jridgewell/trace-mapping@0.3.22':
  339. resolution: {integrity: sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw==}
  340. '@nodelib/fs.scandir@2.1.5':
  341. resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
  342. engines: {node: '>= 8'}
  343. '@nodelib/fs.stat@2.0.5':
  344. resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
  345. engines: {node: '>= 8'}
  346. '@nodelib/fs.walk@1.2.8':
  347. resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
  348. engines: {node: '>= 8'}
  349. '@pkgjs/parseargs@0.11.0':
  350. resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
  351. engines: {node: '>=14'}
  352. '@radix-ui/number@1.0.1':
  353. resolution: {integrity: sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg==}
  354. '@radix-ui/primitive@1.0.0':
  355. resolution: {integrity: sha512-3e7rn8FDMin4CgeL7Z/49smCA3rFYY3Ha2rUQ7HRWFadS5iCRw08ZgVT1LaNTCNqgvrUiyczLflrVrF0SRQtNA==}
  356. '@radix-ui/primitive@1.0.1':
  357. resolution: {integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==}
  358. '@radix-ui/react-arrow@1.0.3':
  359. resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==}
  360. peerDependencies:
  361. '@types/react': '*'
  362. '@types/react-dom': '*'
  363. react: ^16.8 || ^17.0 || ^18.0
  364. react-dom: ^16.8 || ^17.0 || ^18.0
  365. peerDependenciesMeta:
  366. '@types/react':
  367. optional: true
  368. '@types/react-dom':
  369. optional: true
  370. '@radix-ui/react-avatar@1.0.4':
  371. resolution: {integrity: sha512-kVK2K7ZD3wwj3qhle0ElXhOjbezIgyl2hVvgwfIdexL3rN6zJmy5AqqIf+D31lxVppdzV8CjAfZ6PklkmInZLw==}
  372. peerDependencies:
  373. '@types/react': '*'
  374. '@types/react-dom': '*'
  375. react: ^16.8 || ^17.0 || ^18.0
  376. react-dom: ^16.8 || ^17.0 || ^18.0
  377. peerDependenciesMeta:
  378. '@types/react':
  379. optional: true
  380. '@types/react-dom':
  381. optional: true
  382. '@radix-ui/react-checkbox@1.0.4':
  383. resolution: {integrity: sha512-CBuGQa52aAYnADZVt/KBQzXrwx6TqnlwtcIPGtVt5JkkzQwMOLJjPukimhfKEr4GQNd43C+djUh5Ikopj8pSLg==}
  384. peerDependencies:
  385. '@types/react': '*'
  386. '@types/react-dom': '*'
  387. react: ^16.8 || ^17.0 || ^18.0
  388. react-dom: ^16.8 || ^17.0 || ^18.0
  389. peerDependenciesMeta:
  390. '@types/react':
  391. optional: true
  392. '@types/react-dom':
  393. optional: true
  394. '@radix-ui/react-collapsible@1.0.3':
  395. resolution: {integrity: sha512-UBmVDkmR6IvDsloHVN+3rtx4Mi5TFvylYXpluuv0f37dtaz3H99bp8No0LGXRigVpl3UAT4l9j6bIchh42S/Gg==}
  396. peerDependencies:
  397. '@types/react': '*'
  398. '@types/react-dom': '*'
  399. react: ^16.8 || ^17.0 || ^18.0
  400. react-dom: ^16.8 || ^17.0 || ^18.0
  401. peerDependenciesMeta:
  402. '@types/react':
  403. optional: true
  404. '@types/react-dom':
  405. optional: true
  406. '@radix-ui/react-collection@1.0.3':
  407. resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==}
  408. peerDependencies:
  409. '@types/react': '*'
  410. '@types/react-dom': '*'
  411. react: ^16.8 || ^17.0 || ^18.0
  412. react-dom: ^16.8 || ^17.0 || ^18.0
  413. peerDependenciesMeta:
  414. '@types/react':
  415. optional: true
  416. '@types/react-dom':
  417. optional: true
  418. '@radix-ui/react-compose-refs@1.0.0':
  419. resolution: {integrity: sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA==}
  420. peerDependencies:
  421. react: ^16.8 || ^17.0 || ^18.0
  422. '@radix-ui/react-compose-refs@1.0.1':
  423. resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==}
  424. peerDependencies:
  425. '@types/react': '*'
  426. react: ^16.8 || ^17.0 || ^18.0
  427. peerDependenciesMeta:
  428. '@types/react':
  429. optional: true
  430. '@radix-ui/react-context@1.0.0':
  431. resolution: {integrity: sha512-1pVM9RfOQ+n/N5PJK33kRSKsr1glNxomxONs5c49MliinBY6Yw2Q995qfBUUo0/Mbg05B/sGA0gkgPI7kmSHBg==}
  432. peerDependencies:
  433. react: ^16.8 || ^17.0 || ^18.0
  434. '@radix-ui/react-context@1.0.1':
  435. resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==}
  436. peerDependencies:
  437. '@types/react': '*'
  438. react: ^16.8 || ^17.0 || ^18.0
  439. peerDependenciesMeta:
  440. '@types/react':
  441. optional: true
  442. '@radix-ui/react-dialog@1.0.0':
  443. resolution: {integrity: sha512-Yn9YU+QlHYLWwV1XfKiqnGVpWYWk6MeBVM6x/bcoyPvxgjQGoeT35482viLPctTMWoMw0PoHgqfSox7Ig+957Q==}
  444. peerDependencies:
  445. react: ^16.8 || ^17.0 || ^18.0
  446. react-dom: ^16.8 || ^17.0 || ^18.0
  447. '@radix-ui/react-dialog@1.0.5':
  448. resolution: {integrity: sha512-GjWJX/AUpB703eEBanuBnIWdIXg6NvJFCXcNlSZk4xdszCdhrJgBoUd1cGk67vFO+WdA2pfI/plOpqz/5GUP6Q==}
  449. peerDependencies:
  450. '@types/react': '*'
  451. '@types/react-dom': '*'
  452. react: ^16.8 || ^17.0 || ^18.0
  453. react-dom: ^16.8 || ^17.0 || ^18.0
  454. peerDependenciesMeta:
  455. '@types/react':
  456. optional: true
  457. '@types/react-dom':
  458. optional: true
  459. '@radix-ui/react-direction@1.0.1':
  460. resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==}
  461. peerDependencies:
  462. '@types/react': '*'
  463. react: ^16.8 || ^17.0 || ^18.0
  464. peerDependenciesMeta:
  465. '@types/react':
  466. optional: true
  467. '@radix-ui/react-dismissable-layer@1.0.0':
  468. resolution: {integrity: sha512-n7kDRfx+LB1zLueRDvZ1Pd0bxdJWDUZNQ/GWoxDn2prnuJKRdxsjulejX/ePkOsLi2tTm6P24mDqlMSgQpsT6g==}
  469. peerDependencies:
  470. react: ^16.8 || ^17.0 || ^18.0
  471. react-dom: ^16.8 || ^17.0 || ^18.0
  472. '@radix-ui/react-dismissable-layer@1.0.5':
  473. resolution: {integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==}
  474. peerDependencies:
  475. '@types/react': '*'
  476. '@types/react-dom': '*'
  477. react: ^16.8 || ^17.0 || ^18.0
  478. react-dom: ^16.8 || ^17.0 || ^18.0
  479. peerDependenciesMeta:
  480. '@types/react':
  481. optional: true
  482. '@types/react-dom':
  483. optional: true
  484. '@radix-ui/react-dropdown-menu@2.0.6':
  485. resolution: {integrity: sha512-i6TuFOoWmLWq+M/eCLGd/bQ2HfAX1RJgvrBQ6AQLmzfvsLdefxbWu8G9zczcPFfcSPehz9GcpF6K9QYreFV8hA==}
  486. peerDependencies:
  487. '@types/react': '*'
  488. '@types/react-dom': '*'
  489. react: ^16.8 || ^17.0 || ^18.0
  490. react-dom: ^16.8 || ^17.0 || ^18.0
  491. peerDependenciesMeta:
  492. '@types/react':
  493. optional: true
  494. '@types/react-dom':
  495. optional: true
  496. '@radix-ui/react-focus-guards@1.0.0':
  497. resolution: {integrity: sha512-UagjDk4ijOAnGu4WMUPj9ahi7/zJJqNZ9ZAiGPp7waUWJO0O1aWXi/udPphI0IUjvrhBsZJGSN66dR2dsueLWQ==}
  498. peerDependencies:
  499. react: ^16.8 || ^17.0 || ^18.0
  500. '@radix-ui/react-focus-guards@1.0.1':
  501. resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==}
  502. peerDependencies:
  503. '@types/react': '*'
  504. react: ^16.8 || ^17.0 || ^18.0
  505. peerDependenciesMeta:
  506. '@types/react':
  507. optional: true
  508. '@radix-ui/react-focus-scope@1.0.0':
  509. resolution: {integrity: sha512-C4SWtsULLGf/2L4oGeIHlvWQx7Rf+7cX/vKOAD2dXW0A1b5QXwi3wWeaEgW+wn+SEVrraMUk05vLU9fZZz5HbQ==}
  510. peerDependencies:
  511. react: ^16.8 || ^17.0 || ^18.0
  512. react-dom: ^16.8 || ^17.0 || ^18.0
  513. '@radix-ui/react-focus-scope@1.0.4':
  514. resolution: {integrity: sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==}
  515. peerDependencies:
  516. '@types/react': '*'
  517. '@types/react-dom': '*'
  518. react: ^16.8 || ^17.0 || ^18.0
  519. react-dom: ^16.8 || ^17.0 || ^18.0
  520. peerDependenciesMeta:
  521. '@types/react':
  522. optional: true
  523. '@types/react-dom':
  524. optional: true
  525. '@radix-ui/react-icons@1.3.0':
  526. resolution: {integrity: sha512-jQxj/0LKgp+j9BiTXz3O3sgs26RNet2iLWmsPyRz2SIcR4q/4SbazXfnYwbAr+vLYKSfc7qxzyGQA1HLlYiuNw==}
  527. peerDependencies:
  528. react: ^16.x || ^17.x || ^18.x
  529. '@radix-ui/react-id@1.0.0':
  530. resolution: {integrity: sha512-Q6iAB/U7Tq3NTolBBQbHTgclPmGWE3OlktGGqrClPozSw4vkQ1DfQAOtzgRPecKsMdJINE05iaoDUG8tRzCBjw==}
  531. peerDependencies:
  532. react: ^16.8 || ^17.0 || ^18.0
  533. '@radix-ui/react-id@1.0.1':
  534. resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==}
  535. peerDependencies:
  536. '@types/react': '*'
  537. react: ^16.8 || ^17.0 || ^18.0
  538. peerDependenciesMeta:
  539. '@types/react':
  540. optional: true
  541. '@radix-ui/react-label@2.0.2':
  542. resolution: {integrity: sha512-N5ehvlM7qoTLx7nWPodsPYPgMzA5WM8zZChQg8nyFJKnDO5WHdba1vv5/H6IO5LtJMfD2Q3wh1qHFGNtK0w3bQ==}
  543. peerDependencies:
  544. '@types/react': '*'
  545. '@types/react-dom': '*'
  546. react: ^16.8 || ^17.0 || ^18.0
  547. react-dom: ^16.8 || ^17.0 || ^18.0
  548. peerDependenciesMeta:
  549. '@types/react':
  550. optional: true
  551. '@types/react-dom':
  552. optional: true
  553. '@radix-ui/react-menu@2.0.6':
  554. resolution: {integrity: sha512-BVkFLS+bUC8HcImkRKPSiVumA1VPOOEC5WBMiT+QAVsPzW1FJzI9KnqgGxVDPBcql5xXrHkD3JOVoXWEXD8SYA==}
  555. peerDependencies:
  556. '@types/react': '*'
  557. '@types/react-dom': '*'
  558. react: ^16.8 || ^17.0 || ^18.0
  559. react-dom: ^16.8 || ^17.0 || ^18.0
  560. peerDependenciesMeta:
  561. '@types/react':
  562. optional: true
  563. '@types/react-dom':
  564. optional: true
  565. '@radix-ui/react-popover@1.0.7':
  566. resolution: {integrity: sha512-shtvVnlsxT6faMnK/a7n0wptwBD23xc1Z5mdrtKLwVEfsEMXodS0r5s0/g5P0hX//EKYZS2sxUjqfzlg52ZSnQ==}
  567. peerDependencies:
  568. '@types/react': '*'
  569. '@types/react-dom': '*'
  570. react: ^16.8 || ^17.0 || ^18.0
  571. react-dom: ^16.8 || ^17.0 || ^18.0
  572. peerDependenciesMeta:
  573. '@types/react':
  574. optional: true
  575. '@types/react-dom':
  576. optional: true
  577. '@radix-ui/react-popper@1.1.3':
  578. resolution: {integrity: sha512-cKpopj/5RHZWjrbF2846jBNacjQVwkP068DfmgrNJXpvVWrOvlAmE9xSiy5OqeE+Gi8D9fP+oDhUnPqNMY8/5w==}
  579. peerDependencies:
  580. '@types/react': '*'
  581. '@types/react-dom': '*'
  582. react: ^16.8 || ^17.0 || ^18.0
  583. react-dom: ^16.8 || ^17.0 || ^18.0
  584. peerDependenciesMeta:
  585. '@types/react':
  586. optional: true
  587. '@types/react-dom':
  588. optional: true
  589. '@radix-ui/react-portal@1.0.0':
  590. resolution: {integrity: sha512-a8qyFO/Xb99d8wQdu4o7qnigNjTPG123uADNecz0eX4usnQEj7o+cG4ZX4zkqq98NYekT7UoEQIjxBNWIFuqTA==}
  591. peerDependencies:
  592. react: ^16.8 || ^17.0 || ^18.0
  593. react-dom: ^16.8 || ^17.0 || ^18.0
  594. '@radix-ui/react-portal@1.0.4':
  595. resolution: {integrity: sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==}
  596. peerDependencies:
  597. '@types/react': '*'
  598. '@types/react-dom': '*'
  599. react: ^16.8 || ^17.0 || ^18.0
  600. react-dom: ^16.8 || ^17.0 || ^18.0
  601. peerDependenciesMeta:
  602. '@types/react':
  603. optional: true
  604. '@types/react-dom':
  605. optional: true
  606. '@radix-ui/react-presence@1.0.0':
  607. resolution: {integrity: sha512-A+6XEvN01NfVWiKu38ybawfHsBjWum42MRPnEuqPsBZ4eV7e/7K321B5VgYMPv3Xx5An6o1/l9ZuDBgmcmWK3w==}
  608. peerDependencies:
  609. react: ^16.8 || ^17.0 || ^18.0
  610. react-dom: ^16.8 || ^17.0 || ^18.0
  611. '@radix-ui/react-presence@1.0.1':
  612. resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==}
  613. peerDependencies:
  614. '@types/react': '*'
  615. '@types/react-dom': '*'
  616. react: ^16.8 || ^17.0 || ^18.0
  617. react-dom: ^16.8 || ^17.0 || ^18.0
  618. peerDependenciesMeta:
  619. '@types/react':
  620. optional: true
  621. '@types/react-dom':
  622. optional: true
  623. '@radix-ui/react-primitive@1.0.0':
  624. resolution: {integrity: sha512-EyXe6mnRlHZ8b6f4ilTDrXmkLShICIuOTTj0GX4w1rp+wSxf3+TD05u1UOITC8VsJ2a9nwHvdXtOXEOl0Cw/zQ==}
  625. peerDependencies:
  626. react: ^16.8 || ^17.0 || ^18.0
  627. react-dom: ^16.8 || ^17.0 || ^18.0
  628. '@radix-ui/react-primitive@1.0.3':
  629. resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==}
  630. peerDependencies:
  631. '@types/react': '*'
  632. '@types/react-dom': '*'
  633. react: ^16.8 || ^17.0 || ^18.0
  634. react-dom: ^16.8 || ^17.0 || ^18.0
  635. peerDependenciesMeta:
  636. '@types/react':
  637. optional: true
  638. '@types/react-dom':
  639. optional: true
  640. '@radix-ui/react-radio-group@1.1.3':
  641. resolution: {integrity: sha512-x+yELayyefNeKeTx4fjK6j99Fs6c4qKm3aY38G3swQVTN6xMpsrbigC0uHs2L//g8q4qR7qOcww8430jJmi2ag==}
  642. peerDependencies:
  643. '@types/react': '*'
  644. '@types/react-dom': '*'
  645. react: ^16.8 || ^17.0 || ^18.0
  646. react-dom: ^16.8 || ^17.0 || ^18.0
  647. peerDependenciesMeta:
  648. '@types/react':
  649. optional: true
  650. '@types/react-dom':
  651. optional: true
  652. '@radix-ui/react-roving-focus@1.0.4':
  653. resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==}
  654. peerDependencies:
  655. '@types/react': '*'
  656. '@types/react-dom': '*'
  657. react: ^16.8 || ^17.0 || ^18.0
  658. react-dom: ^16.8 || ^17.0 || ^18.0
  659. peerDependenciesMeta:
  660. '@types/react':
  661. optional: true
  662. '@types/react-dom':
  663. optional: true
  664. '@radix-ui/react-select@2.0.0':
  665. resolution: {integrity: sha512-RH5b7af4oHtkcHS7pG6Sgv5rk5Wxa7XI8W5gvB1N/yiuDGZxko1ynvOiVhFM7Cis2A8zxF9bTOUVbRDzPepe6w==}
  666. peerDependencies:
  667. '@types/react': '*'
  668. '@types/react-dom': '*'
  669. react: ^16.8 || ^17.0 || ^18.0
  670. react-dom: ^16.8 || ^17.0 || ^18.0
  671. peerDependenciesMeta:
  672. '@types/react':
  673. optional: true
  674. '@types/react-dom':
  675. optional: true
  676. '@radix-ui/react-separator@1.0.3':
  677. resolution: {integrity: sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==}
  678. peerDependencies:
  679. '@types/react': '*'
  680. '@types/react-dom': '*'
  681. react: ^16.8 || ^17.0 || ^18.0
  682. react-dom: ^16.8 || ^17.0 || ^18.0
  683. peerDependenciesMeta:
  684. '@types/react':
  685. optional: true
  686. '@types/react-dom':
  687. optional: true
  688. '@radix-ui/react-slot@1.0.0':
  689. resolution: {integrity: sha512-3mrKauI/tWXo1Ll+gN5dHcxDPdm/Df1ufcDLCecn+pnCIVcdWE7CujXo8QaXOWRJyZyQWWbpB8eFwHzWXlv5mQ==}
  690. peerDependencies:
  691. react: ^16.8 || ^17.0 || ^18.0
  692. '@radix-ui/react-slot@1.0.2':
  693. resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==}
  694. peerDependencies:
  695. '@types/react': '*'
  696. react: ^16.8 || ^17.0 || ^18.0
  697. peerDependenciesMeta:
  698. '@types/react':
  699. optional: true
  700. '@radix-ui/react-switch@1.0.3':
  701. resolution: {integrity: sha512-mxm87F88HyHztsI7N+ZUmEoARGkC22YVW5CaC+Byc+HRpuvCrOBPTAnXgf+tZ/7i0Sg/eOePGdMhUKhPaQEqow==}
  702. peerDependencies:
  703. '@types/react': '*'
  704. '@types/react-dom': '*'
  705. react: ^16.8 || ^17.0 || ^18.0
  706. react-dom: ^16.8 || ^17.0 || ^18.0
  707. peerDependenciesMeta:
  708. '@types/react':
  709. optional: true
  710. '@types/react-dom':
  711. optional: true
  712. '@radix-ui/react-tabs@1.0.4':
  713. resolution: {integrity: sha512-egZfYY/+wRNCflXNHx+dePvnz9FbmssDTJBtgRfDY7e8SE5oIo3Py2eCB1ckAbh1Q7cQ/6yJZThJ++sgbxibog==}
  714. peerDependencies:
  715. '@types/react': '*'
  716. '@types/react-dom': '*'
  717. react: ^16.8 || ^17.0 || ^18.0
  718. react-dom: ^16.8 || ^17.0 || ^18.0
  719. peerDependenciesMeta:
  720. '@types/react':
  721. optional: true
  722. '@types/react-dom':
  723. optional: true
  724. '@radix-ui/react-toast@1.1.5':
  725. resolution: {integrity: sha512-fRLn227WHIBRSzuRzGJ8W+5YALxofH23y0MlPLddaIpLpCDqdE0NZlS2NRQDRiptfxDeeCjgFIpexB1/zkxDlw==}
  726. peerDependencies:
  727. '@types/react': '*'
  728. '@types/react-dom': '*'
  729. react: ^16.8 || ^17.0 || ^18.0
  730. react-dom: ^16.8 || ^17.0 || ^18.0
  731. peerDependenciesMeta:
  732. '@types/react':
  733. optional: true
  734. '@types/react-dom':
  735. optional: true
  736. '@radix-ui/react-tooltip@1.0.7':
  737. resolution: {integrity: sha512-lPh5iKNFVQ/jav/j6ZrWq3blfDJ0OH9R6FlNUHPMqdLuQ9vwDgFsRxvl8b7Asuy5c8xmoojHUxKHQSOAvMHxyw==}
  738. peerDependencies:
  739. '@types/react': '*'
  740. '@types/react-dom': '*'
  741. react: ^16.8 || ^17.0 || ^18.0
  742. react-dom: ^16.8 || ^17.0 || ^18.0
  743. peerDependenciesMeta:
  744. '@types/react':
  745. optional: true
  746. '@types/react-dom':
  747. optional: true
  748. '@radix-ui/react-use-callback-ref@1.0.0':
  749. resolution: {integrity: sha512-GZtyzoHz95Rhs6S63D2t/eqvdFCm7I+yHMLVQheKM7nBD8mbZIt+ct1jz4536MDnaOGKIxynJ8eHTkVGVVkoTg==}
  750. peerDependencies:
  751. react: ^16.8 || ^17.0 || ^18.0
  752. '@radix-ui/react-use-callback-ref@1.0.1':
  753. resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==}
  754. peerDependencies:
  755. '@types/react': '*'
  756. react: ^16.8 || ^17.0 || ^18.0
  757. peerDependenciesMeta:
  758. '@types/react':
  759. optional: true
  760. '@radix-ui/react-use-controllable-state@1.0.0':
  761. resolution: {integrity: sha512-FohDoZvk3mEXh9AWAVyRTYR4Sq7/gavuofglmiXB2g1aKyboUD4YtgWxKj8O5n+Uak52gXQ4wKz5IFST4vtJHg==}
  762. peerDependencies:
  763. react: ^16.8 || ^17.0 || ^18.0
  764. '@radix-ui/react-use-controllable-state@1.0.1':
  765. resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==}
  766. peerDependencies:
  767. '@types/react': '*'
  768. react: ^16.8 || ^17.0 || ^18.0
  769. peerDependenciesMeta:
  770. '@types/react':
  771. optional: true
  772. '@radix-ui/react-use-escape-keydown@1.0.0':
  773. resolution: {integrity: sha512-JwfBCUIfhXRxKExgIqGa4CQsiMemo1Xt0W/B4ei3fpzpvPENKpMKQ8mZSB6Acj3ebrAEgi2xiQvcI1PAAodvyg==}
  774. peerDependencies:
  775. react: ^16.8 || ^17.0 || ^18.0
  776. '@radix-ui/react-use-escape-keydown@1.0.3':
  777. resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==}
  778. peerDependencies:
  779. '@types/react': '*'
  780. react: ^16.8 || ^17.0 || ^18.0
  781. peerDependenciesMeta:
  782. '@types/react':
  783. optional: true
  784. '@radix-ui/react-use-layout-effect@1.0.0':
  785. resolution: {integrity: sha512-6Tpkq+R6LOlmQb1R5NNETLG0B4YP0wc+klfXafpUCj6JGyaUc8il7/kUZ7m59rGbXGczE9Bs+iz2qloqsZBduQ==}
  786. peerDependencies:
  787. react: ^16.8 || ^17.0 || ^18.0
  788. '@radix-ui/react-use-layout-effect@1.0.1':
  789. resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==}
  790. peerDependencies:
  791. '@types/react': '*'
  792. react: ^16.8 || ^17.0 || ^18.0
  793. peerDependenciesMeta:
  794. '@types/react':
  795. optional: true
  796. '@radix-ui/react-use-previous@1.0.1':
  797. resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==}
  798. peerDependencies:
  799. '@types/react': '*'
  800. react: ^16.8 || ^17.0 || ^18.0
  801. peerDependenciesMeta:
  802. '@types/react':
  803. optional: true
  804. '@radix-ui/react-use-rect@1.0.1':
  805. resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==}
  806. peerDependencies:
  807. '@types/react': '*'
  808. react: ^16.8 || ^17.0 || ^18.0
  809. peerDependenciesMeta:
  810. '@types/react':
  811. optional: true
  812. '@radix-ui/react-use-size@1.0.1':
  813. resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==}
  814. peerDependencies:
  815. '@types/react': '*'
  816. react: ^16.8 || ^17.0 || ^18.0
  817. peerDependenciesMeta:
  818. '@types/react':
  819. optional: true
  820. '@radix-ui/react-visually-hidden@1.0.3':
  821. resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==}
  822. peerDependencies:
  823. '@types/react': '*'
  824. '@types/react-dom': '*'
  825. react: ^16.8 || ^17.0 || ^18.0
  826. react-dom: ^16.8 || ^17.0 || ^18.0
  827. peerDependenciesMeta:
  828. '@types/react':
  829. optional: true
  830. '@types/react-dom':
  831. optional: true
  832. '@radix-ui/rect@1.0.1':
  833. resolution: {integrity: sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==}
  834. '@remix-run/router@1.15.3':
  835. resolution: {integrity: sha512-Oy8rmScVrVxWZVOpEF57ovlnhpZ8CCPlnIIumVcV9nFdiSIrus99+Lw78ekXyGvVDlIsFJbSfmSovJUhCWYV3w==}
  836. engines: {node: '>=14.0.0'}
  837. '@rollup/rollup-android-arm-eabi@4.14.3':
  838. resolution: {integrity: sha512-X9alQ3XM6I9IlSlmC8ddAvMSyG1WuHk5oUnXGw+yUBs3BFoTizmG1La/Gr8fVJvDWAq+zlYTZ9DBgrlKRVY06g==}
  839. cpu: [arm]
  840. os: [android]
  841. '@rollup/rollup-android-arm64@4.14.3':
  842. resolution: {integrity: sha512-eQK5JIi+POhFpzk+LnjKIy4Ks+pwJ+NXmPxOCSvOKSNRPONzKuUvWE+P9JxGZVxrtzm6BAYMaL50FFuPe0oWMQ==}
  843. cpu: [arm64]
  844. os: [android]
  845. '@rollup/rollup-darwin-arm64@4.14.3':
  846. resolution: {integrity: sha512-Od4vE6f6CTT53yM1jgcLqNfItTsLt5zE46fdPaEmeFHvPs5SjZYlLpHrSiHEKR1+HdRfxuzXHjDOIxQyC3ptBA==}
  847. cpu: [arm64]
  848. os: [darwin]
  849. '@rollup/rollup-darwin-x64@4.14.3':
  850. resolution: {integrity: sha512-0IMAO21axJeNIrvS9lSe/PGthc8ZUS+zC53O0VhF5gMxfmcKAP4ESkKOCwEi6u2asUrt4mQv2rjY8QseIEb1aw==}
  851. cpu: [x64]
  852. os: [darwin]
  853. '@rollup/rollup-linux-arm-gnueabihf@4.14.3':
  854. resolution: {integrity: sha512-ge2DC7tHRHa3caVEoSbPRJpq7azhG+xYsd6u2MEnJ6XzPSzQsTKyXvh6iWjXRf7Rt9ykIUWHtl0Uz3T6yXPpKw==}
  855. cpu: [arm]
  856. os: [linux]
  857. '@rollup/rollup-linux-arm-musleabihf@4.14.3':
  858. resolution: {integrity: sha512-ljcuiDI4V3ySuc7eSk4lQ9wU8J8r8KrOUvB2U+TtK0TiW6OFDmJ+DdIjjwZHIw9CNxzbmXY39wwpzYuFDwNXuw==}
  859. cpu: [arm]
  860. os: [linux]
  861. '@rollup/rollup-linux-arm64-gnu@4.14.3':
  862. resolution: {integrity: sha512-Eci2us9VTHm1eSyn5/eEpaC7eP/mp5n46gTRB3Aar3BgSvDQGJZuicyq6TsH4HngNBgVqC5sDYxOzTExSU+NjA==}
  863. cpu: [arm64]
  864. os: [linux]
  865. '@rollup/rollup-linux-arm64-musl@4.14.3':
  866. resolution: {integrity: sha512-UrBoMLCq4E92/LCqlh+blpqMz5h1tJttPIniwUgOFJyjWI1qrtrDhhpHPuFxULlUmjFHfloWdixtDhSxJt5iKw==}
  867. cpu: [arm64]
  868. os: [linux]
  869. '@rollup/rollup-linux-powerpc64le-gnu@4.14.3':
  870. resolution: {integrity: sha512-5aRjvsS8q1nWN8AoRfrq5+9IflC3P1leMoy4r2WjXyFqf3qcqsxRCfxtZIV58tCxd+Yv7WELPcO9mY9aeQyAmw==}
  871. cpu: [ppc64]
  872. os: [linux]
  873. '@rollup/rollup-linux-riscv64-gnu@4.14.3':
  874. resolution: {integrity: sha512-sk/Qh1j2/RJSX7FhEpJn8n0ndxy/uf0kI/9Zc4b1ELhqULVdTfN6HL31CDaTChiBAOgLcsJ1sgVZjWv8XNEsAQ==}
  875. cpu: [riscv64]
  876. os: [linux]
  877. '@rollup/rollup-linux-s390x-gnu@4.14.3':
  878. resolution: {integrity: sha512-jOO/PEaDitOmY9TgkxF/TQIjXySQe5KVYB57H/8LRP/ux0ZoO8cSHCX17asMSv3ruwslXW/TLBcxyaUzGRHcqg==}
  879. cpu: [s390x]
  880. os: [linux]
  881. '@rollup/rollup-linux-x64-gnu@4.14.3':
  882. resolution: {integrity: sha512-8ybV4Xjy59xLMyWo3GCfEGqtKV5M5gCSrZlxkPGvEPCGDLNla7v48S662HSGwRd6/2cSneMQWiv+QzcttLrrOA==}
  883. cpu: [x64]
  884. os: [linux]
  885. '@rollup/rollup-linux-x64-musl@4.14.3':
  886. resolution: {integrity: sha512-s+xf1I46trOY10OqAtZ5Rm6lzHre/UiLA1J2uOhCFXWkbZrJRkYBPO6FhvGfHmdtQ3Bx793MNa7LvoWFAm93bg==}
  887. cpu: [x64]
  888. os: [linux]
  889. '@rollup/rollup-win32-arm64-msvc@4.14.3':
  890. resolution: {integrity: sha512-+4h2WrGOYsOumDQ5S2sYNyhVfrue+9tc9XcLWLh+Kw3UOxAvrfOrSMFon60KspcDdytkNDh7K2Vs6eMaYImAZg==}
  891. cpu: [arm64]
  892. os: [win32]
  893. '@rollup/rollup-win32-ia32-msvc@4.14.3':
  894. resolution: {integrity: sha512-T1l7y/bCeL/kUwh9OD4PQT4aM7Bq43vX05htPJJ46RTI4r5KNt6qJRzAfNfM+OYMNEVBWQzR2Gyk+FXLZfogGw==}
  895. cpu: [ia32]
  896. os: [win32]
  897. '@rollup/rollup-win32-x64-msvc@4.14.3':
  898. resolution: {integrity: sha512-/BypzV0H1y1HzgYpxqRaXGBRqfodgoBBCcsrujT6QRcakDQdfU+Lq9PENPh5jB4I44YWq+0C2eHsHya+nZY1sA==}
  899. cpu: [x64]
  900. os: [win32]
  901. '@swc/core-darwin-arm64@1.4.15':
  902. resolution: {integrity: sha512-m1D89yN82QTp8AcSm3p9YgcfbdOqc9WmhvnMwoS0lUs6RIIFekI2tEboc9Rp9gre/1lkgzPYI+KGge1BaQzScA==}
  903. engines: {node: '>=10'}
  904. cpu: [arm64]
  905. os: [darwin]
  906. '@swc/core-darwin-x64@1.4.15':
  907. resolution: {integrity: sha512-aQBTfKrXIKiBrZY5MtqMRtbXTYCnMxUir4qy0me0+sIWTVxQ7znBxrwQsXsbPHIIZ+pohcLCg0HKfybev0NqXA==}
  908. engines: {node: '>=10'}
  909. cpu: [x64]
  910. os: [darwin]
  911. '@swc/core-linux-arm-gnueabihf@1.4.15':
  912. resolution: {integrity: sha512-EZhdJBjzct/0UiF3sPD1w+LbLFJOsvym4b3njyl7jnP+py5rz2WlIJDxVKcS+b1RKEebLU7OsnYXzuXFjq0dwA==}
  913. engines: {node: '>=10'}
  914. cpu: [arm]
  915. os: [linux]
  916. '@swc/core-linux-arm64-gnu@1.4.15':
  917. resolution: {integrity: sha512-plKc41q8PgOm5rm3gEmPs+0skuddW0CrXPsERFzyaJ8gKTEwOVtg3sa3folXzsIgw0ODr61xzqYnh7zgJllMGg==}
  918. engines: {node: '>=10'}
  919. cpu: [arm64]
  920. os: [linux]
  921. '@swc/core-linux-arm64-musl@1.4.15':
  922. resolution: {integrity: sha512-4Gj0z1bo1rI3pKanqv5grH4EZ/pJRGZXG9LnkZ9FBrg4LUgptEumomca1UYFgBifHi3hirJsOQacuKFpw2NCEg==}
  923. engines: {node: '>=10'}
  924. cpu: [arm64]
  925. os: [linux]
  926. '@swc/core-linux-x64-gnu@1.4.15':
  927. resolution: {integrity: sha512-7nZrrYvHpklwrQboHGXMvpefOP4m5Jf46ncQSztprZ0Ah2Z8vZhehuEiUo9xOB3jl5Vdhw2KP4uAhzzppES+PA==}
  928. engines: {node: '>=10'}
  929. cpu: [x64]
  930. os: [linux]
  931. '@swc/core-linux-x64-musl@1.4.15':
  932. resolution: {integrity: sha512-LJYSnttiR5vhnn7D92HAEgy/D4Jc5MDpLurF4MHyhN/9wlhQPfa5/2fdF3ogtZTzr1cckxyipYdyuzfVF+WISg==}
  933. engines: {node: '>=10'}
  934. cpu: [x64]
  935. os: [linux]
  936. '@swc/core-win32-arm64-msvc@1.4.15':
  937. resolution: {integrity: sha512-q+u2toNPU9OQonSUI0pB6BIGkNsIrvok6AbUJYpmvZqawmNrngSs9quS2WDe58vfIe9r0lVenweY6WIRlGMFTg==}
  938. engines: {node: '>=10'}
  939. cpu: [arm64]
  940. os: [win32]
  941. '@swc/core-win32-ia32-msvc@1.4.15':
  942. resolution: {integrity: sha512-eEtU3yQXuBJO5tiokLz0sf0lABVNqR/l6p071v1ltDJGUD4vSer5kHOmm0Hn1zWB43EGda6b17Bb2DEHZ1DpKA==}
  943. engines: {node: '>=10'}
  944. cpu: [ia32]
  945. os: [win32]
  946. '@swc/core-win32-x64-msvc@1.4.15':
  947. resolution: {integrity: sha512-9CWhKyrDgrotsciAYFSsDIYgi/4LRbvJusyAtA3RBeXar1eNouFPwdlwj8zTqtJsOteZAUpbZSret0Z59cTqCQ==}
  948. engines: {node: '>=10'}
  949. cpu: [x64]
  950. os: [win32]
  951. '@swc/core@1.4.15':
  952. resolution: {integrity: sha512-7Wl4d4CCJ8xnhArfomHe+x5C0roewn0mRedtiZlTsV/9t61z2who18E9bSZI/IRjS00FGJCAlbbd7aWKLpyieg==}
  953. engines: {node: '>=10'}
  954. peerDependencies:
  955. '@swc/helpers': ^0.5.0
  956. peerDependenciesMeta:
  957. '@swc/helpers':
  958. optional: true
  959. '@swc/counter@0.1.2':
  960. resolution: {integrity: sha512-9F4ys4C74eSTEUNndnER3VJ15oru2NumfQxS8geE+f3eB5xvfxpWyqE5XlVnxb/R14uoXi6SLbBwwiDSkv+XEw==}
  961. '@swc/types@0.1.5':
  962. resolution: {integrity: sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==}
  963. '@tabler/icons-react@3.2.0':
  964. resolution: {integrity: sha512-b1mZT1XpZrzvbM+eFe1YbYbxkzgJ18tM4knZKqXh0gnHDZ6XVLIH3TzJZ3HZ7PTkUqZLZ7XcGae3qQVGburlBw==}
  965. peerDependencies:
  966. react: '>= 16'
  967. '@tabler/icons@3.2.0':
  968. resolution: {integrity: sha512-h8GQ2rtxgiSjltrVz4vcopAxTPSpUSUi5nBfJ09H3Bk4fJk6wZ/dVUjzhv/BHfDwGTkAxZBiYe/Q/T95cPeg5Q==}
  969. '@tanstack/react-table@8.16.0':
  970. resolution: {integrity: sha512-rKRjnt8ostqN2fercRVOIH/dq7MAmOENCMvVlKx6P9Iokhh6woBGnIZEkqsY/vEJf1jN3TqLOb34xQGLVRuhAg==}
  971. engines: {node: '>=12'}
  972. peerDependencies:
  973. react: '>=16.8'
  974. react-dom: '>=16.8'
  975. '@tanstack/table-core@8.16.0':
  976. resolution: {integrity: sha512-dCG8vQGk4js5v88/k83tTedWOwjGnIyONrKpHpfmSJB8jwFHl8GSu1sBBxbtACVAPtAQgwNxl0rw1d3RqRM1Tg==}
  977. engines: {node: '>=12'}
  978. '@types/d3-array@3.2.1':
  979. resolution: {integrity: sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==}
  980. '@types/d3-color@3.1.3':
  981. resolution: {integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==}
  982. '@types/d3-ease@3.0.2':
  983. resolution: {integrity: sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==}
  984. '@types/d3-interpolate@3.0.4':
  985. resolution: {integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==}
  986. '@types/d3-path@3.0.2':
  987. resolution: {integrity: sha512-WAIEVlOCdd/NKRYTsqCpOMHQHemKBEINf8YXMYOtXH0GA7SY0dqMB78P3Uhgfy+4X+/Mlw2wDtlETkN6kQUCMA==}
  988. '@types/d3-scale@4.0.8':
  989. resolution: {integrity: sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==}
  990. '@types/d3-shape@3.1.6':
  991. resolution: {integrity: sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA==}
  992. '@types/d3-time@3.0.3':
  993. resolution: {integrity: sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==}
  994. '@types/d3-timer@3.0.2':
  995. resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==}
  996. '@types/estree@1.0.5':
  997. resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
  998. '@types/hast@2.3.10':
  999. resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==}
  1000. '@types/json-schema@7.0.15':
  1001. resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
  1002. '@types/node@20.12.7':
  1003. resolution: {integrity: sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==}
  1004. '@types/prop-types@15.7.11':
  1005. resolution: {integrity: sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==}
  1006. '@types/react-dom@18.2.25':
  1007. resolution: {integrity: sha512-o/V48vf4MQh7juIKZU2QGDfli6p1+OOi5oXx36Hffpc9adsHeXjVp8rHuPkjd8VT8sOJ2Zp05HR7CdpGTIUFUA==}
  1008. '@types/react-syntax-highlighter@15.5.11':
  1009. resolution: {integrity: sha512-ZqIJl+Pg8kD+47kxUjvrlElrraSUrYa4h0dauY/U/FTUuprSCqvUj+9PNQNQzVc6AJgIWUUxn87/gqsMHNbRjw==}
  1010. '@types/react@18.2.79':
  1011. resolution: {integrity: sha512-RwGAGXPl9kSXwdNTafkOEuFrTBD5SA2B3iEB96xi8+xu5ddUa/cpvyVCSNn+asgLCTHkb5ZxN8gbuibYJi4s1w==}
  1012. '@types/semver@7.5.6':
  1013. resolution: {integrity: sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==}
  1014. '@types/unist@2.0.10':
  1015. resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==}
  1016. '@typescript-eslint/eslint-plugin@6.19.1':
  1017. resolution: {integrity: sha512-roQScUGFruWod9CEyoV5KlCYrubC/fvG8/1zXuT0WTcxX87GnMMmnksMwSg99lo1xiKrBzw2icsJPMAw1OtKxg==}
  1018. engines: {node: ^16.0.0 || >=18.0.0}
  1019. peerDependencies:
  1020. '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha
  1021. eslint: ^7.0.0 || ^8.0.0
  1022. typescript: '*'
  1023. peerDependenciesMeta:
  1024. typescript:
  1025. optional: true
  1026. '@typescript-eslint/parser@6.19.1':
  1027. resolution: {integrity: sha512-WEfX22ziAh6pRE9jnbkkLGp/4RhTpffr2ZK5bJ18M8mIfA8A+k97U9ZyaXCEJRlmMHh7R9MJZWXp/r73DzINVQ==}
  1028. engines: {node: ^16.0.0 || >=18.0.0}
  1029. peerDependencies:
  1030. eslint: ^7.0.0 || ^8.0.0
  1031. typescript: '*'
  1032. peerDependenciesMeta:
  1033. typescript:
  1034. optional: true
  1035. '@typescript-eslint/scope-manager@6.19.1':
  1036. resolution: {integrity: sha512-4CdXYjKf6/6aKNMSly/BP4iCSOpvMmqtDzRtqFyyAae3z5kkqEjKndR5vDHL8rSuMIIWP8u4Mw4VxLyxZW6D5w==}
  1037. engines: {node: ^16.0.0 || >=18.0.0}
  1038. '@typescript-eslint/type-utils@6.19.1':
  1039. resolution: {integrity: sha512-0vdyld3ecfxJuddDjACUvlAeYNrHP/pDeQk2pWBR2ESeEzQhg52DF53AbI9QCBkYE23lgkhLCZNkHn2hEXXYIg==}
  1040. engines: {node: ^16.0.0 || >=18.0.0}
  1041. peerDependencies:
  1042. eslint: ^7.0.0 || ^8.0.0
  1043. typescript: '*'
  1044. peerDependenciesMeta:
  1045. typescript:
  1046. optional: true
  1047. '@typescript-eslint/types@6.19.1':
  1048. resolution: {integrity: sha512-6+bk6FEtBhvfYvpHsDgAL3uo4BfvnTnoge5LrrCj2eJN8g3IJdLTD4B/jK3Q6vo4Ql/Hoip9I8aB6fF+6RfDqg==}
  1049. engines: {node: ^16.0.0 || >=18.0.0}
  1050. '@typescript-eslint/typescript-estree@6.19.1':
  1051. resolution: {integrity: sha512-aFdAxuhzBFRWhy+H20nYu19+Km+gFfwNO4TEqyszkMcgBDYQjmPJ61erHxuT2ESJXhlhrO7I5EFIlZ+qGR8oVA==}
  1052. engines: {node: ^16.0.0 || >=18.0.0}
  1053. peerDependencies:
  1054. typescript: '*'
  1055. peerDependenciesMeta:
  1056. typescript:
  1057. optional: true
  1058. '@typescript-eslint/utils@6.19.1':
  1059. resolution: {integrity: sha512-JvjfEZuP5WoMqwh9SPAPDSHSg9FBHHGhjPugSRxu5jMfjvBpq5/sGTD+9M9aQ5sh6iJ8AY/Kk/oUYVEMAPwi7w==}
  1060. engines: {node: ^16.0.0 || >=18.0.0}
  1061. peerDependencies:
  1062. eslint: ^7.0.0 || ^8.0.0
  1063. '@typescript-eslint/visitor-keys@6.19.1':
  1064. resolution: {integrity: sha512-gkdtIO+xSO/SmI0W68DBg4u1KElmIUo3vXzgHyGPs6cxgB0sa3TlptRAAE0hUY1hM6FcDKEv7aIwiTGm76cXfQ==}
  1065. engines: {node: ^16.0.0 || >=18.0.0}
  1066. '@ungap/structured-clone@1.2.0':
  1067. resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
  1068. '@vitejs/plugin-react-swc@3.6.0':
  1069. resolution: {integrity: sha512-XFRbsGgpGxGzEV5i5+vRiro1bwcIaZDIdBRP16qwm+jP68ue/S8FJTBEgOeojtVDYrbSua3XFp71kC8VJE6v+g==}
  1070. peerDependencies:
  1071. vite: ^4 || ^5
  1072. acorn-jsx@5.3.2:
  1073. resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
  1074. peerDependencies:
  1075. acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
  1076. acorn@8.11.3:
  1077. resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==}
  1078. engines: {node: '>=0.4.0'}
  1079. hasBin: true
  1080. ajv@6.12.6:
  1081. resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
  1082. ansi-regex@5.0.1:
  1083. resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
  1084. engines: {node: '>=8'}
  1085. ansi-regex@6.0.1:
  1086. resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
  1087. engines: {node: '>=12'}
  1088. ansi-styles@4.3.0:
  1089. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  1090. engines: {node: '>=8'}
  1091. ansi-styles@6.2.1:
  1092. resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
  1093. engines: {node: '>=12'}
  1094. any-promise@1.3.0:
  1095. resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
  1096. anymatch@3.1.3:
  1097. resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
  1098. engines: {node: '>= 8'}
  1099. arg@5.0.2:
  1100. resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
  1101. argparse@2.0.1:
  1102. resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
  1103. aria-hidden@1.2.3:
  1104. resolution: {integrity: sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ==}
  1105. engines: {node: '>=10'}
  1106. array-union@2.1.0:
  1107. resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
  1108. engines: {node: '>=8'}
  1109. autoprefixer@10.4.19:
  1110. resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==}
  1111. engines: {node: ^10 || ^12 || >=14}
  1112. hasBin: true
  1113. peerDependencies:
  1114. postcss: ^8.1.0
  1115. balanced-match@1.0.2:
  1116. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  1117. binary-extensions@2.2.0:
  1118. resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
  1119. engines: {node: '>=8'}
  1120. brace-expansion@1.1.11:
  1121. resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
  1122. brace-expansion@2.0.1:
  1123. resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
  1124. braces@3.0.2:
  1125. resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
  1126. engines: {node: '>=8'}
  1127. browserslist@4.23.0:
  1128. resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==}
  1129. engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
  1130. hasBin: true
  1131. callsites@3.1.0:
  1132. resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
  1133. engines: {node: '>=6'}
  1134. camelcase-css@2.0.1:
  1135. resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
  1136. engines: {node: '>= 6'}
  1137. caniuse-lite@1.0.30001611:
  1138. resolution: {integrity: sha512-19NuN1/3PjA3QI8Eki55N8my4LzfkMCRLgCVfrl/slbSAchQfV0+GwjPrK3rq37As4UCLlM/DHajbKkAqbv92Q==}
  1139. chalk@4.1.2:
  1140. resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
  1141. engines: {node: '>=10'}
  1142. character-entities-legacy@1.1.4:
  1143. resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==}
  1144. character-entities@1.2.4:
  1145. resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==}
  1146. character-reference-invalid@1.1.4:
  1147. resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==}
  1148. chokidar@3.5.3:
  1149. resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
  1150. engines: {node: '>= 8.10.0'}
  1151. class-variance-authority@0.7.0:
  1152. resolution: {integrity: sha512-jFI8IQw4hczaL4ALINxqLEXQbWcNjoSkloa4IaufXCJr6QawJyw7tuRysRsrE8w2p/4gGaxKIt/hX3qz/IbD1A==}
  1153. clsx@2.0.0:
  1154. resolution: {integrity: sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==}
  1155. engines: {node: '>=6'}
  1156. clsx@2.1.0:
  1157. resolution: {integrity: sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==}
  1158. engines: {node: '>=6'}
  1159. cmdk@0.2.1:
  1160. resolution: {integrity: sha512-U6//9lQ6JvT47+6OF6Gi8BvkxYQ8SCRRSKIJkthIMsFsLZRG0cKvTtuTaefyIKMQb8rvvXy0wGdpTNq/jPtm+g==}
  1161. peerDependencies:
  1162. react: ^18.0.0
  1163. react-dom: ^18.0.0
  1164. color-convert@2.0.1:
  1165. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  1166. engines: {node: '>=7.0.0'}
  1167. color-name@1.1.4:
  1168. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  1169. comma-separated-tokens@1.0.8:
  1170. resolution: {integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==}
  1171. commander@4.1.1:
  1172. resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
  1173. engines: {node: '>= 6'}
  1174. concat-map@0.0.1:
  1175. resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
  1176. cross-spawn@7.0.3:
  1177. resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
  1178. engines: {node: '>= 8'}
  1179. cssesc@3.0.0:
  1180. resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
  1181. engines: {node: '>=4'}
  1182. hasBin: true
  1183. csstype@3.1.3:
  1184. resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
  1185. d3-array@3.2.4:
  1186. resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==}
  1187. engines: {node: '>=12'}
  1188. d3-color@3.1.0:
  1189. resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==}
  1190. engines: {node: '>=12'}
  1191. d3-ease@3.0.1:
  1192. resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==}
  1193. engines: {node: '>=12'}
  1194. d3-format@3.1.0:
  1195. resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==}
  1196. engines: {node: '>=12'}
  1197. d3-interpolate@3.0.1:
  1198. resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==}
  1199. engines: {node: '>=12'}
  1200. d3-path@3.1.0:
  1201. resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==}
  1202. engines: {node: '>=12'}
  1203. d3-scale@4.0.2:
  1204. resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==}
  1205. engines: {node: '>=12'}
  1206. d3-shape@3.2.0:
  1207. resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==}
  1208. engines: {node: '>=12'}
  1209. d3-time-format@4.1.0:
  1210. resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==}
  1211. engines: {node: '>=12'}
  1212. d3-time@3.1.0:
  1213. resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==}
  1214. engines: {node: '>=12'}
  1215. d3-timer@3.0.1:
  1216. resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==}
  1217. engines: {node: '>=12'}
  1218. date-fns@3.3.1:
  1219. resolution: {integrity: sha512-y8e109LYGgoQDveiEBD3DYXKba1jWf5BA8YU1FL5Tvm0BTdEfy54WLCwnuYWZNnzzvALy/QQ4Hov+Q9RVRv+Zw==}
  1220. dayjs@1.11.10:
  1221. resolution: {integrity: sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==}
  1222. debug@4.3.4:
  1223. resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
  1224. engines: {node: '>=6.0'}
  1225. peerDependencies:
  1226. supports-color: '*'
  1227. peerDependenciesMeta:
  1228. supports-color:
  1229. optional: true
  1230. decimal.js-light@2.5.1:
  1231. resolution: {integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==}
  1232. deep-is@0.1.4:
  1233. resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
  1234. detect-node-es@1.1.0:
  1235. resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
  1236. didyoumean@1.2.2:
  1237. resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
  1238. dir-glob@3.0.1:
  1239. resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
  1240. engines: {node: '>=8'}
  1241. dlv@1.1.3:
  1242. resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
  1243. doctrine@3.0.0:
  1244. resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
  1245. engines: {node: '>=6.0.0'}
  1246. dom-helpers@5.2.1:
  1247. resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
  1248. eastasianwidth@0.2.0:
  1249. resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
  1250. electron-to-chromium@1.4.740:
  1251. resolution: {integrity: sha512-Yvg5i+iyv7Xm18BRdVPVm8lc7kgxM3r6iwqCH2zB7QZy1kZRNmd0Zqm0zcD9XoFREE5/5rwIuIAOT+/mzGcnZg==}
  1252. emoji-regex@8.0.0:
  1253. resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
  1254. emoji-regex@9.2.2:
  1255. resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
  1256. esbuild@0.20.2:
  1257. resolution: {integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==}
  1258. engines: {node: '>=12'}
  1259. hasBin: true
  1260. escalade@3.1.1:
  1261. resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
  1262. engines: {node: '>=6'}
  1263. escape-string-regexp@4.0.0:
  1264. resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
  1265. engines: {node: '>=10'}
  1266. eslint-plugin-react-hooks@4.6.0:
  1267. resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
  1268. engines: {node: '>=10'}
  1269. peerDependencies:
  1270. eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
  1271. eslint-plugin-react-refresh@0.4.5:
  1272. resolution: {integrity: sha512-D53FYKJa+fDmZMtriODxvhwrO+IOqrxoEo21gMA0sjHdU6dPVH4OhyFip9ypl8HOF5RV5KdTo+rBQLvnY2cO8w==}
  1273. peerDependencies:
  1274. eslint: '>=7'
  1275. eslint-scope@7.2.2:
  1276. resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
  1277. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  1278. eslint-visitor-keys@3.4.3:
  1279. resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
  1280. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  1281. eslint@8.56.0:
  1282. resolution: {integrity: sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==}
  1283. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  1284. hasBin: true
  1285. espree@9.6.1:
  1286. resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
  1287. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  1288. esquery@1.5.0:
  1289. resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
  1290. engines: {node: '>=0.10'}
  1291. esrecurse@4.3.0:
  1292. resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
  1293. engines: {node: '>=4.0'}
  1294. estraverse@5.3.0:
  1295. resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
  1296. engines: {node: '>=4.0'}
  1297. esutils@2.0.3:
  1298. resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
  1299. engines: {node: '>=0.10.0'}
  1300. eventemitter3@4.0.7:
  1301. resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
  1302. fast-deep-equal@3.1.3:
  1303. resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
  1304. fast-equals@5.0.1:
  1305. resolution: {integrity: sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ==}
  1306. engines: {node: '>=6.0.0'}
  1307. fast-glob@3.3.2:
  1308. resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
  1309. engines: {node: '>=8.6.0'}
  1310. fast-json-stable-stringify@2.1.0:
  1311. resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
  1312. fast-levenshtein@2.0.6:
  1313. resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
  1314. fastq@1.16.0:
  1315. resolution: {integrity: sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==}
  1316. fault@1.0.4:
  1317. resolution: {integrity: sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==}
  1318. file-entry-cache@6.0.1:
  1319. resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
  1320. engines: {node: ^10.12.0 || >=12.0.0}
  1321. fill-range@7.0.1:
  1322. resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
  1323. engines: {node: '>=8'}
  1324. find-up@5.0.0:
  1325. resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
  1326. engines: {node: '>=10'}
  1327. flat-cache@3.2.0:
  1328. resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
  1329. engines: {node: ^10.12.0 || >=12.0.0}
  1330. flatted@3.2.9:
  1331. resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==}
  1332. foreground-child@3.1.1:
  1333. resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==}
  1334. engines: {node: '>=14'}
  1335. format@0.2.2:
  1336. resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==}
  1337. engines: {node: '>=0.4.x'}
  1338. fraction.js@4.3.7:
  1339. resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
  1340. fs.realpath@1.0.0:
  1341. resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
  1342. fsevents@2.3.3:
  1343. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  1344. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  1345. os: [darwin]
  1346. function-bind@1.1.2:
  1347. resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
  1348. get-nonce@1.0.1:
  1349. resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
  1350. engines: {node: '>=6'}
  1351. glob-parent@5.1.2:
  1352. resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
  1353. engines: {node: '>= 6'}
  1354. glob-parent@6.0.2:
  1355. resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
  1356. engines: {node: '>=10.13.0'}
  1357. glob@10.3.10:
  1358. resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==}
  1359. engines: {node: '>=16 || 14 >=14.17'}
  1360. hasBin: true
  1361. glob@7.2.3:
  1362. resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
  1363. globals@13.24.0:
  1364. resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
  1365. engines: {node: '>=8'}
  1366. globby@11.1.0:
  1367. resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
  1368. engines: {node: '>=10'}
  1369. graphemer@1.4.0:
  1370. resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
  1371. has-flag@4.0.0:
  1372. resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
  1373. engines: {node: '>=8'}
  1374. hasown@2.0.0:
  1375. resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==}
  1376. engines: {node: '>= 0.4'}
  1377. hast-util-parse-selector@2.2.5:
  1378. resolution: {integrity: sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==}
  1379. hastscript@6.0.0:
  1380. resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==}
  1381. highlight.js@10.7.3:
  1382. resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==}
  1383. ignore@5.3.0:
  1384. resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==}
  1385. engines: {node: '>= 4'}
  1386. import-fresh@3.3.0:
  1387. resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
  1388. engines: {node: '>=6'}
  1389. imurmurhash@0.1.4:
  1390. resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
  1391. engines: {node: '>=0.8.19'}
  1392. inflight@1.0.6:
  1393. resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
  1394. inherits@2.0.4:
  1395. resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
  1396. internmap@2.0.3:
  1397. resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==}
  1398. engines: {node: '>=12'}
  1399. invariant@2.2.4:
  1400. resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
  1401. is-alphabetical@1.0.4:
  1402. resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==}
  1403. is-alphanumerical@1.0.4:
  1404. resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==}
  1405. is-binary-path@2.1.0:
  1406. resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
  1407. engines: {node: '>=8'}
  1408. is-core-module@2.13.1:
  1409. resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==}
  1410. is-decimal@1.0.4:
  1411. resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==}
  1412. is-extglob@2.1.1:
  1413. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  1414. engines: {node: '>=0.10.0'}
  1415. is-fullwidth-code-point@3.0.0:
  1416. resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
  1417. engines: {node: '>=8'}
  1418. is-glob@4.0.3:
  1419. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  1420. engines: {node: '>=0.10.0'}
  1421. is-hexadecimal@1.0.4:
  1422. resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==}
  1423. is-number@7.0.0:
  1424. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  1425. engines: {node: '>=0.12.0'}
  1426. is-path-inside@3.0.3:
  1427. resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
  1428. engines: {node: '>=8'}
  1429. isexe@2.0.0:
  1430. resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
  1431. jackspeak@2.3.6:
  1432. resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==}
  1433. engines: {node: '>=14'}
  1434. jiti@1.21.0:
  1435. resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==}
  1436. hasBin: true
  1437. js-tokens@4.0.0:
  1438. resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
  1439. js-yaml@4.1.0:
  1440. resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
  1441. hasBin: true
  1442. json-buffer@3.0.1:
  1443. resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
  1444. json-schema-traverse@0.4.1:
  1445. resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
  1446. json-stable-stringify-without-jsonify@1.0.1:
  1447. resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
  1448. keyv@4.5.4:
  1449. resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
  1450. levn@0.4.1:
  1451. resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
  1452. engines: {node: '>= 0.8.0'}
  1453. lilconfig@2.1.0:
  1454. resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
  1455. engines: {node: '>=10'}
  1456. lilconfig@3.0.0:
  1457. resolution: {integrity: sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==}
  1458. engines: {node: '>=14'}
  1459. lines-and-columns@1.2.4:
  1460. resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
  1461. locate-path@6.0.0:
  1462. resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
  1463. engines: {node: '>=10'}
  1464. lodash.merge@4.6.2:
  1465. resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
  1466. lodash@4.17.21:
  1467. resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
  1468. loose-envify@1.4.0:
  1469. resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
  1470. hasBin: true
  1471. lowlight@1.20.0:
  1472. resolution: {integrity: sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==}
  1473. lru-cache@10.2.0:
  1474. resolution: {integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==}
  1475. engines: {node: 14 || >=16.14}
  1476. lru-cache@6.0.0:
  1477. resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
  1478. engines: {node: '>=10'}
  1479. merge2@1.4.1:
  1480. resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
  1481. engines: {node: '>= 8'}
  1482. micromatch@4.0.5:
  1483. resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
  1484. engines: {node: '>=8.6'}
  1485. minimatch@3.1.2:
  1486. resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
  1487. minimatch@9.0.3:
  1488. resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
  1489. engines: {node: '>=16 || 14 >=14.17'}
  1490. minipass@7.0.4:
  1491. resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==}
  1492. engines: {node: '>=16 || 14 >=14.17'}
  1493. ms@2.1.2:
  1494. resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
  1495. mz@2.7.0:
  1496. resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
  1497. nanoid@3.3.7:
  1498. resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
  1499. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  1500. hasBin: true
  1501. natural-compare@1.4.0:
  1502. resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
  1503. node-releases@2.0.14:
  1504. resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
  1505. normalize-path@3.0.0:
  1506. resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
  1507. engines: {node: '>=0.10.0'}
  1508. normalize-range@0.1.2:
  1509. resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
  1510. engines: {node: '>=0.10.0'}
  1511. object-assign@4.1.1:
  1512. resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
  1513. engines: {node: '>=0.10.0'}
  1514. object-hash@3.0.0:
  1515. resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
  1516. engines: {node: '>= 6'}
  1517. once@1.4.0:
  1518. resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
  1519. optionator@0.9.3:
  1520. resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
  1521. engines: {node: '>= 0.8.0'}
  1522. p-limit@3.1.0:
  1523. resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
  1524. engines: {node: '>=10'}
  1525. p-locate@5.0.0:
  1526. resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
  1527. engines: {node: '>=10'}
  1528. parent-module@1.0.1:
  1529. resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
  1530. engines: {node: '>=6'}
  1531. parse-entities@2.0.0:
  1532. resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==}
  1533. path-exists@4.0.0:
  1534. resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
  1535. engines: {node: '>=8'}
  1536. path-is-absolute@1.0.1:
  1537. resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
  1538. engines: {node: '>=0.10.0'}
  1539. path-key@3.1.1:
  1540. resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
  1541. engines: {node: '>=8'}
  1542. path-parse@1.0.7:
  1543. resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
  1544. path-scurry@1.10.1:
  1545. resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==}
  1546. engines: {node: '>=16 || 14 >=14.17'}
  1547. path-type@4.0.0:
  1548. resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
  1549. engines: {node: '>=8'}
  1550. picocolors@1.0.0:
  1551. resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
  1552. picomatch@2.3.1:
  1553. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  1554. engines: {node: '>=8.6'}
  1555. pify@2.3.0:
  1556. resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
  1557. engines: {node: '>=0.10.0'}
  1558. pirates@4.0.6:
  1559. resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
  1560. engines: {node: '>= 6'}
  1561. postcss-import@15.1.0:
  1562. resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
  1563. engines: {node: '>=14.0.0'}
  1564. peerDependencies:
  1565. postcss: ^8.0.0
  1566. postcss-js@4.0.1:
  1567. resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
  1568. engines: {node: ^12 || ^14 || >= 16}
  1569. peerDependencies:
  1570. postcss: ^8.4.21
  1571. postcss-load-config@4.0.2:
  1572. resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
  1573. engines: {node: '>= 14'}
  1574. peerDependencies:
  1575. postcss: '>=8.0.9'
  1576. ts-node: '>=9.0.0'
  1577. peerDependenciesMeta:
  1578. postcss:
  1579. optional: true
  1580. ts-node:
  1581. optional: true
  1582. postcss-nested@6.0.1:
  1583. resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
  1584. engines: {node: '>=12.0'}
  1585. peerDependencies:
  1586. postcss: ^8.2.14
  1587. postcss-selector-parser@6.0.15:
  1588. resolution: {integrity: sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==}
  1589. engines: {node: '>=4'}
  1590. postcss-value-parser@4.2.0:
  1591. resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
  1592. postcss@8.4.38:
  1593. resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
  1594. engines: {node: ^10 || ^12 || >=14}
  1595. prelude-ls@1.2.1:
  1596. resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
  1597. engines: {node: '>= 0.8.0'}
  1598. prettier-plugin-tailwindcss@0.5.14:
  1599. resolution: {integrity: sha512-Puaz+wPUAhFp8Lo9HuciYKM2Y2XExESjeT+9NQoVFXZsPPnc9VYss2SpxdQ6vbatmt8/4+SN0oe0I1cPDABg9Q==}
  1600. engines: {node: '>=14.21.3'}
  1601. peerDependencies:
  1602. '@ianvs/prettier-plugin-sort-imports': '*'
  1603. '@prettier/plugin-pug': '*'
  1604. '@shopify/prettier-plugin-liquid': '*'
  1605. '@trivago/prettier-plugin-sort-imports': '*'
  1606. '@zackad/prettier-plugin-twig-melody': '*'
  1607. prettier: ^3.0
  1608. prettier-plugin-astro: '*'
  1609. prettier-plugin-css-order: '*'
  1610. prettier-plugin-import-sort: '*'
  1611. prettier-plugin-jsdoc: '*'
  1612. prettier-plugin-marko: '*'
  1613. prettier-plugin-organize-attributes: '*'
  1614. prettier-plugin-organize-imports: '*'
  1615. prettier-plugin-sort-imports: '*'
  1616. prettier-plugin-style-order: '*'
  1617. prettier-plugin-svelte: '*'
  1618. peerDependenciesMeta:
  1619. '@ianvs/prettier-plugin-sort-imports':
  1620. optional: true
  1621. '@prettier/plugin-pug':
  1622. optional: true
  1623. '@shopify/prettier-plugin-liquid':
  1624. optional: true
  1625. '@trivago/prettier-plugin-sort-imports':
  1626. optional: true
  1627. '@zackad/prettier-plugin-twig-melody':
  1628. optional: true
  1629. prettier-plugin-astro:
  1630. optional: true
  1631. prettier-plugin-css-order:
  1632. optional: true
  1633. prettier-plugin-import-sort:
  1634. optional: true
  1635. prettier-plugin-jsdoc:
  1636. optional: true
  1637. prettier-plugin-marko:
  1638. optional: true
  1639. prettier-plugin-organize-attributes:
  1640. optional: true
  1641. prettier-plugin-organize-imports:
  1642. optional: true
  1643. prettier-plugin-sort-imports:
  1644. optional: true
  1645. prettier-plugin-style-order:
  1646. optional: true
  1647. prettier-plugin-svelte:
  1648. optional: true
  1649. prettier@3.2.5:
  1650. resolution: {integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==}
  1651. engines: {node: '>=14'}
  1652. hasBin: true
  1653. prismjs@1.27.0:
  1654. resolution: {integrity: sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA==}
  1655. engines: {node: '>=6'}
  1656. prismjs@1.29.0:
  1657. resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==}
  1658. engines: {node: '>=6'}
  1659. prop-types@15.8.1:
  1660. resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
  1661. property-information@5.6.0:
  1662. resolution: {integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==}
  1663. punycode@2.3.1:
  1664. resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
  1665. engines: {node: '>=6'}
  1666. queue-microtask@1.2.3:
  1667. resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
  1668. react-day-picker@8.10.1:
  1669. resolution: {integrity: sha512-TMx7fNbhLk15eqcMt+7Z7S2KF7mfTId/XJDjKE8f+IUcFn0l08/kI4FiYTL/0yuOLmEcbR4Fwe3GJf/NiiMnPA==}
  1670. peerDependencies:
  1671. date-fns: ^2.28.0 || ^3.0.0
  1672. react: ^16.8.0 || ^17.0.0 || ^18.0.0
  1673. react-dom@18.2.0:
  1674. resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
  1675. peerDependencies:
  1676. react: ^18.2.0
  1677. react-hook-form@7.51.3:
  1678. resolution: {integrity: sha512-cvJ/wbHdhYx8aviSWh28w9ImjmVsb5Y05n1+FW786vEZQJV5STNM0pW6ujS+oiBecb0ARBxJFyAnXj9+GHXACQ==}
  1679. engines: {node: '>=12.22.0'}
  1680. peerDependencies:
  1681. react: ^16.8.0 || ^17 || ^18
  1682. react-is@16.13.1:
  1683. resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
  1684. react-remove-scroll-bar@2.3.4:
  1685. resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==}
  1686. engines: {node: '>=10'}
  1687. peerDependencies:
  1688. '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
  1689. react: ^16.8.0 || ^17.0.0 || ^18.0.0
  1690. peerDependenciesMeta:
  1691. '@types/react':
  1692. optional: true
  1693. react-remove-scroll@2.5.4:
  1694. resolution: {integrity: sha512-xGVKJJr0SJGQVirVFAUZ2k1QLyO6m+2fy0l8Qawbp5Jgrv3DeLalrfMNBFSlmz5kriGGzsVBtGVnf4pTKIhhWA==}
  1695. engines: {node: '>=10'}
  1696. peerDependencies:
  1697. '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
  1698. react: ^16.8.0 || ^17.0.0 || ^18.0.0
  1699. peerDependenciesMeta:
  1700. '@types/react':
  1701. optional: true
  1702. react-remove-scroll@2.5.5:
  1703. resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==}
  1704. engines: {node: '>=10'}
  1705. peerDependencies:
  1706. '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
  1707. react: ^16.8.0 || ^17.0.0 || ^18.0.0
  1708. peerDependenciesMeta:
  1709. '@types/react':
  1710. optional: true
  1711. react-router-dom@6.22.3:
  1712. resolution: {integrity: sha512-7ZILI7HjcE+p31oQvwbokjk6OA/bnFxrhJ19n82Ex9Ph8fNAq+Hm/7KchpMGlTgWhUxRHMMCut+vEtNpWpowKw==}
  1713. engines: {node: '>=14.0.0'}
  1714. peerDependencies:
  1715. react: '>=16.8'
  1716. react-dom: '>=16.8'
  1717. react-router@6.22.3:
  1718. resolution: {integrity: sha512-dr2eb3Mj5zK2YISHK++foM9w4eBnO23eKnZEDs7c880P6oKbrjz/Svg9+nxqtHQK+oMW4OtjZca0RqPglXxguQ==}
  1719. engines: {node: '>=14.0.0'}
  1720. peerDependencies:
  1721. react: '>=16.8'
  1722. react-smooth@4.0.1:
  1723. resolution: {integrity: sha512-OE4hm7XqR0jNOq3Qmk9mFLyd6p2+j6bvbPJ7qlB7+oo0eNcL2l7WQzG6MBnT3EXY6xzkLMUBec3AfewJdA0J8w==}
  1724. peerDependencies:
  1725. react: ^16.8.0 || ^17.0.0 || ^18.0.0
  1726. react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
  1727. react-style-singleton@2.2.1:
  1728. resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
  1729. engines: {node: '>=10'}
  1730. peerDependencies:
  1731. '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
  1732. react: ^16.8.0 || ^17.0.0 || ^18.0.0
  1733. peerDependenciesMeta:
  1734. '@types/react':
  1735. optional: true
  1736. react-syntax-highlighter@15.5.0:
  1737. resolution: {integrity: sha512-+zq2myprEnQmH5yw6Gqc8lD55QHnpKaU8TOcFeC/Lg/MQSs8UknEA0JC4nTZGFAXC2J2Hyj/ijJ7NlabyPi2gg==}
  1738. peerDependencies:
  1739. react: '>= 0.14.0'
  1740. react-transition-group@4.4.5:
  1741. resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==}
  1742. peerDependencies:
  1743. react: '>=16.6.0'
  1744. react-dom: '>=16.6.0'
  1745. react@18.2.0:
  1746. resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
  1747. engines: {node: '>=0.10.0'}
  1748. read-cache@1.0.0:
  1749. resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
  1750. readdirp@3.6.0:
  1751. resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
  1752. engines: {node: '>=8.10.0'}
  1753. recharts-scale@0.4.5:
  1754. resolution: {integrity: sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==}
  1755. recharts@2.12.5:
  1756. resolution: {integrity: sha512-Cy+BkqrFIYTHJCyKHJEPvbHE2kVQEP6PKbOHJ8ztRGTAhvHuUnCwDaKVb13OwRFZ0QNUk1QvGTDdgWSMbuMtKw==}
  1757. engines: {node: '>=14'}
  1758. peerDependencies:
  1759. react: ^16.0.0 || ^17.0.0 || ^18.0.0
  1760. react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0
  1761. refractor@3.6.0:
  1762. resolution: {integrity: sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA==}
  1763. regenerator-runtime@0.14.1:
  1764. resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
  1765. resolve-from@4.0.0:
  1766. resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
  1767. engines: {node: '>=4'}
  1768. resolve@1.22.8:
  1769. resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
  1770. hasBin: true
  1771. reusify@1.0.4:
  1772. resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
  1773. engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
  1774. rimraf@3.0.2:
  1775. resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
  1776. hasBin: true
  1777. rollup@4.14.3:
  1778. resolution: {integrity: sha512-ag5tTQKYsj1bhrFC9+OEWqb5O6VYgtQDO9hPDBMmIbePwhfSr+ExlcU741t8Dhw5DkPCQf6noz0jb36D6W9/hw==}
  1779. engines: {node: '>=18.0.0', npm: '>=8.0.0'}
  1780. hasBin: true
  1781. run-parallel@1.2.0:
  1782. resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
  1783. scheduler@0.23.0:
  1784. resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
  1785. semver@7.5.4:
  1786. resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==}
  1787. engines: {node: '>=10'}
  1788. hasBin: true
  1789. shebang-command@2.0.0:
  1790. resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
  1791. engines: {node: '>=8'}
  1792. shebang-regex@3.0.0:
  1793. resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
  1794. engines: {node: '>=8'}
  1795. signal-exit@4.1.0:
  1796. resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
  1797. engines: {node: '>=14'}
  1798. slash@3.0.0:
  1799. resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
  1800. engines: {node: '>=8'}
  1801. source-map-js@1.2.0:
  1802. resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
  1803. engines: {node: '>=0.10.0'}
  1804. space-separated-tokens@1.1.5:
  1805. resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==}
  1806. string-width@4.2.3:
  1807. resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
  1808. engines: {node: '>=8'}
  1809. string-width@5.1.2:
  1810. resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
  1811. engines: {node: '>=12'}
  1812. strip-ansi@6.0.1:
  1813. resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
  1814. engines: {node: '>=8'}
  1815. strip-ansi@7.1.0:
  1816. resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
  1817. engines: {node: '>=12'}
  1818. strip-json-comments@3.1.1:
  1819. resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
  1820. engines: {node: '>=8'}
  1821. sucrase@3.35.0:
  1822. resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
  1823. engines: {node: '>=16 || 14 >=14.17'}
  1824. hasBin: true
  1825. supports-color@7.2.0:
  1826. resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
  1827. engines: {node: '>=8'}
  1828. supports-preserve-symlinks-flag@1.0.0:
  1829. resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
  1830. engines: {node: '>= 0.4'}
  1831. tailwind-merge@2.2.2:
  1832. resolution: {integrity: sha512-tWANXsnmJzgw6mQ07nE3aCDkCK4QdT3ThPMCzawoYA2Pws7vSTCvz3Vrjg61jVUGfFZPJzxEP+NimbcW+EdaDw==}
  1833. tailwindcss-animate@1.0.7:
  1834. resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==}
  1835. peerDependencies:
  1836. tailwindcss: '>=3.0.0 || insiders'
  1837. tailwindcss@3.4.3:
  1838. resolution: {integrity: sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==}
  1839. engines: {node: '>=14.0.0'}
  1840. hasBin: true
  1841. text-table@0.2.0:
  1842. resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
  1843. thenify-all@1.6.0:
  1844. resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
  1845. engines: {node: '>=0.8'}
  1846. thenify@3.3.1:
  1847. resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
  1848. tiny-invariant@1.3.1:
  1849. resolution: {integrity: sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==}
  1850. to-regex-range@5.0.1:
  1851. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  1852. engines: {node: '>=8.0'}
  1853. ts-api-utils@1.0.3:
  1854. resolution: {integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==}
  1855. engines: {node: '>=16.13.0'}
  1856. peerDependencies:
  1857. typescript: '>=4.2.0'
  1858. ts-interface-checker@0.1.13:
  1859. resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
  1860. tslib@2.6.2:
  1861. resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
  1862. type-check@0.4.0:
  1863. resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
  1864. engines: {node: '>= 0.8.0'}
  1865. type-fest@0.20.2:
  1866. resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
  1867. engines: {node: '>=10'}
  1868. typescript@5.4.5:
  1869. resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==}
  1870. engines: {node: '>=14.17'}
  1871. hasBin: true
  1872. undici-types@5.26.5:
  1873. resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
  1874. update-browserslist-db@1.0.13:
  1875. resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
  1876. hasBin: true
  1877. peerDependencies:
  1878. browserslist: '>= 4.21.0'
  1879. uri-js@4.4.1:
  1880. resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
  1881. use-callback-ref@1.3.1:
  1882. resolution: {integrity: sha512-Lg4Vx1XZQauB42Hw3kK7JM6yjVjgFmFC5/Ab797s79aARomD2nEErc4mCgM8EZrARLmmbWpi5DGCadmK50DcAQ==}
  1883. engines: {node: '>=10'}
  1884. peerDependencies:
  1885. '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
  1886. react: ^16.8.0 || ^17.0.0 || ^18.0.0
  1887. peerDependenciesMeta:
  1888. '@types/react':
  1889. optional: true
  1890. use-sidecar@1.1.2:
  1891. resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
  1892. engines: {node: '>=10'}
  1893. peerDependencies:
  1894. '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0
  1895. react: ^16.8.0 || ^17.0.0 || ^18.0.0
  1896. peerDependenciesMeta:
  1897. '@types/react':
  1898. optional: true
  1899. util-deprecate@1.0.2:
  1900. resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
  1901. victory-vendor@36.8.2:
  1902. resolution: {integrity: sha512-NfSQi7ISCdBbDpn3b6rg+8RpFZmWIM9mcks48BbogHE2F6h1XKdA34oiCKP5hP1OGvTotDRzsexiJKzrK4Exuw==}
  1903. vite@5.2.9:
  1904. resolution: {integrity: sha512-uOQWfuZBlc6Y3W/DTuQ1Sr+oIXWvqljLvS881SVmAj00d5RdgShLcuXWxseWPd4HXwiYBFW/vXHfKFeqj9uQnw==}
  1905. engines: {node: ^18.0.0 || >=20.0.0}
  1906. hasBin: true
  1907. peerDependencies:
  1908. '@types/node': ^18.0.0 || >=20.0.0
  1909. less: '*'
  1910. lightningcss: ^1.21.0
  1911. sass: '*'
  1912. stylus: '*'
  1913. sugarss: '*'
  1914. terser: ^5.4.0
  1915. peerDependenciesMeta:
  1916. '@types/node':
  1917. optional: true
  1918. less:
  1919. optional: true
  1920. lightningcss:
  1921. optional: true
  1922. sass:
  1923. optional: true
  1924. stylus:
  1925. optional: true
  1926. sugarss:
  1927. optional: true
  1928. terser:
  1929. optional: true
  1930. which@2.0.2:
  1931. resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
  1932. engines: {node: '>= 8'}
  1933. hasBin: true
  1934. wrap-ansi@7.0.0:
  1935. resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
  1936. engines: {node: '>=10'}
  1937. wrap-ansi@8.1.0:
  1938. resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
  1939. engines: {node: '>=12'}
  1940. wrappy@1.0.2:
  1941. resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
  1942. xtend@4.0.2:
  1943. resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
  1944. engines: {node: '>=0.4'}
  1945. yallist@4.0.0:
  1946. resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
  1947. yaml@2.3.4:
  1948. resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==}
  1949. engines: {node: '>= 14'}
  1950. yocto-queue@0.1.0:
  1951. resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
  1952. engines: {node: '>=10'}
  1953. zod@3.22.4:
  1954. resolution: {integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==}
  1955. snapshots:
  1956. '@aashutoshrathi/word-wrap@1.2.6': {}
  1957. '@alloc/quick-lru@5.2.0': {}
  1958. '@babel/runtime@7.23.9':
  1959. dependencies:
  1960. regenerator-runtime: 0.14.1
  1961. '@babel/runtime@7.24.4':
  1962. dependencies:
  1963. regenerator-runtime: 0.14.1
  1964. '@esbuild/aix-ppc64@0.20.2':
  1965. optional: true
  1966. '@esbuild/android-arm64@0.20.2':
  1967. optional: true
  1968. '@esbuild/android-arm@0.20.2':
  1969. optional: true
  1970. '@esbuild/android-x64@0.20.2':
  1971. optional: true
  1972. '@esbuild/darwin-arm64@0.20.2':
  1973. optional: true
  1974. '@esbuild/darwin-x64@0.20.2':
  1975. optional: true
  1976. '@esbuild/freebsd-arm64@0.20.2':
  1977. optional: true
  1978. '@esbuild/freebsd-x64@0.20.2':
  1979. optional: true
  1980. '@esbuild/linux-arm64@0.20.2':
  1981. optional: true
  1982. '@esbuild/linux-arm@0.20.2':
  1983. optional: true
  1984. '@esbuild/linux-ia32@0.20.2':
  1985. optional: true
  1986. '@esbuild/linux-loong64@0.20.2':
  1987. optional: true
  1988. '@esbuild/linux-mips64el@0.20.2':
  1989. optional: true
  1990. '@esbuild/linux-ppc64@0.20.2':
  1991. optional: true
  1992. '@esbuild/linux-riscv64@0.20.2':
  1993. optional: true
  1994. '@esbuild/linux-s390x@0.20.2':
  1995. optional: true
  1996. '@esbuild/linux-x64@0.20.2':
  1997. optional: true
  1998. '@esbuild/netbsd-x64@0.20.2':
  1999. optional: true
  2000. '@esbuild/openbsd-x64@0.20.2':
  2001. optional: true
  2002. '@esbuild/sunos-x64@0.20.2':
  2003. optional: true
  2004. '@esbuild/win32-arm64@0.20.2':
  2005. optional: true
  2006. '@esbuild/win32-ia32@0.20.2':
  2007. optional: true
  2008. '@esbuild/win32-x64@0.20.2':
  2009. optional: true
  2010. '@eslint-community/eslint-utils@4.4.0(eslint@8.56.0)':
  2011. dependencies:
  2012. eslint: 8.56.0
  2013. eslint-visitor-keys: 3.4.3
  2014. '@eslint-community/regexpp@4.10.0': {}
  2015. '@eslint/eslintrc@2.1.4':
  2016. dependencies:
  2017. ajv: 6.12.6
  2018. debug: 4.3.4
  2019. espree: 9.6.1
  2020. globals: 13.24.0
  2021. ignore: 5.3.0
  2022. import-fresh: 3.3.0
  2023. js-yaml: 4.1.0
  2024. minimatch: 3.1.2
  2025. strip-json-comments: 3.1.1
  2026. transitivePeerDependencies:
  2027. - supports-color
  2028. '@eslint/js@8.56.0': {}
  2029. '@floating-ui/core@1.6.0':
  2030. dependencies:
  2031. '@floating-ui/utils': 0.2.1
  2032. '@floating-ui/dom@1.6.0':
  2033. dependencies:
  2034. '@floating-ui/core': 1.6.0
  2035. '@floating-ui/utils': 0.2.1
  2036. '@floating-ui/react-dom@2.0.7(react-dom@18.2.0)(react@18.2.0)':
  2037. dependencies:
  2038. '@floating-ui/dom': 1.6.0
  2039. react: 18.2.0
  2040. react-dom: 18.2.0(react@18.2.0)
  2041. '@floating-ui/utils@0.2.1': {}
  2042. '@hookform/resolvers@3.3.4(react-hook-form@7.51.3)':
  2043. dependencies:
  2044. react-hook-form: 7.51.3(react@18.2.0)
  2045. '@humanwhocodes/config-array@0.11.14':
  2046. dependencies:
  2047. '@humanwhocodes/object-schema': 2.0.2
  2048. debug: 4.3.4
  2049. minimatch: 3.1.2
  2050. transitivePeerDependencies:
  2051. - supports-color
  2052. '@humanwhocodes/module-importer@1.0.1': {}
  2053. '@humanwhocodes/object-schema@2.0.2': {}
  2054. '@isaacs/cliui@8.0.2':
  2055. dependencies:
  2056. string-width: 5.1.2
  2057. string-width-cjs: string-width@4.2.3
  2058. strip-ansi: 7.1.0
  2059. strip-ansi-cjs: strip-ansi@6.0.1
  2060. wrap-ansi: 8.1.0
  2061. wrap-ansi-cjs: wrap-ansi@7.0.0
  2062. '@jridgewell/gen-mapping@0.3.3':
  2063. dependencies:
  2064. '@jridgewell/set-array': 1.1.2
  2065. '@jridgewell/sourcemap-codec': 1.4.15
  2066. '@jridgewell/trace-mapping': 0.3.22
  2067. '@jridgewell/resolve-uri@3.1.1': {}
  2068. '@jridgewell/set-array@1.1.2': {}
  2069. '@jridgewell/sourcemap-codec@1.4.15': {}
  2070. '@jridgewell/trace-mapping@0.3.22':
  2071. dependencies:
  2072. '@jridgewell/resolve-uri': 3.1.1
  2073. '@jridgewell/sourcemap-codec': 1.4.15
  2074. '@nodelib/fs.scandir@2.1.5':
  2075. dependencies:
  2076. '@nodelib/fs.stat': 2.0.5
  2077. run-parallel: 1.2.0
  2078. '@nodelib/fs.stat@2.0.5': {}
  2079. '@nodelib/fs.walk@1.2.8':
  2080. dependencies:
  2081. '@nodelib/fs.scandir': 2.1.5
  2082. fastq: 1.16.0
  2083. '@pkgjs/parseargs@0.11.0':
  2084. optional: true
  2085. '@radix-ui/number@1.0.1':
  2086. dependencies:
  2087. '@babel/runtime': 7.23.9
  2088. '@radix-ui/primitive@1.0.0':
  2089. dependencies:
  2090. '@babel/runtime': 7.23.9
  2091. '@radix-ui/primitive@1.0.1':
  2092. dependencies:
  2093. '@babel/runtime': 7.23.9
  2094. '@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)':
  2095. dependencies:
  2096. '@babel/runtime': 7.23.9
  2097. '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2098. '@types/react': 18.2.79
  2099. '@types/react-dom': 18.2.25
  2100. react: 18.2.0
  2101. react-dom: 18.2.0(react@18.2.0)
  2102. '@radix-ui/react-avatar@1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)':
  2103. dependencies:
  2104. '@babel/runtime': 7.23.9
  2105. '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2106. '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2107. '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2108. '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2109. '@types/react': 18.2.79
  2110. '@types/react-dom': 18.2.25
  2111. react: 18.2.0
  2112. react-dom: 18.2.0(react@18.2.0)
  2113. '@radix-ui/react-checkbox@1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)':
  2114. dependencies:
  2115. '@babel/runtime': 7.23.9
  2116. '@radix-ui/primitive': 1.0.1
  2117. '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2118. '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2119. '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2120. '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2121. '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2122. '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2123. '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2124. '@types/react': 18.2.79
  2125. '@types/react-dom': 18.2.25
  2126. react: 18.2.0
  2127. react-dom: 18.2.0(react@18.2.0)
  2128. '@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)':
  2129. dependencies:
  2130. '@babel/runtime': 7.23.9
  2131. '@radix-ui/primitive': 1.0.1
  2132. '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2133. '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2134. '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2135. '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2136. '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2137. '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2138. '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2139. '@types/react': 18.2.79
  2140. '@types/react-dom': 18.2.25
  2141. react: 18.2.0
  2142. react-dom: 18.2.0(react@18.2.0)
  2143. '@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)':
  2144. dependencies:
  2145. '@babel/runtime': 7.23.9
  2146. '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2147. '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2148. '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2149. '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0)
  2150. '@types/react': 18.2.79
  2151. '@types/react-dom': 18.2.25
  2152. react: 18.2.0
  2153. react-dom: 18.2.0(react@18.2.0)
  2154. '@radix-ui/react-compose-refs@1.0.0(react@18.2.0)':
  2155. dependencies:
  2156. '@babel/runtime': 7.23.9
  2157. react: 18.2.0
  2158. '@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.79)(react@18.2.0)':
  2159. dependencies:
  2160. '@babel/runtime': 7.23.9
  2161. '@types/react': 18.2.79
  2162. react: 18.2.0
  2163. '@radix-ui/react-context@1.0.0(react@18.2.0)':
  2164. dependencies:
  2165. '@babel/runtime': 7.23.9
  2166. react: 18.2.0
  2167. '@radix-ui/react-context@1.0.1(@types/react@18.2.79)(react@18.2.0)':
  2168. dependencies:
  2169. '@babel/runtime': 7.23.9
  2170. '@types/react': 18.2.79
  2171. react: 18.2.0
  2172. '@radix-ui/react-dialog@1.0.0(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)':
  2173. dependencies:
  2174. '@babel/runtime': 7.23.9
  2175. '@radix-ui/primitive': 1.0.0
  2176. '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
  2177. '@radix-ui/react-context': 1.0.0(react@18.2.0)
  2178. '@radix-ui/react-dismissable-layer': 1.0.0(react-dom@18.2.0)(react@18.2.0)
  2179. '@radix-ui/react-focus-guards': 1.0.0(react@18.2.0)
  2180. '@radix-ui/react-focus-scope': 1.0.0(react-dom@18.2.0)(react@18.2.0)
  2181. '@radix-ui/react-id': 1.0.0(react@18.2.0)
  2182. '@radix-ui/react-portal': 1.0.0(react-dom@18.2.0)(react@18.2.0)
  2183. '@radix-ui/react-presence': 1.0.0(react-dom@18.2.0)(react@18.2.0)
  2184. '@radix-ui/react-primitive': 1.0.0(react-dom@18.2.0)(react@18.2.0)
  2185. '@radix-ui/react-slot': 1.0.0(react@18.2.0)
  2186. '@radix-ui/react-use-controllable-state': 1.0.0(react@18.2.0)
  2187. aria-hidden: 1.2.3
  2188. react: 18.2.0
  2189. react-dom: 18.2.0(react@18.2.0)
  2190. react-remove-scroll: 2.5.4(@types/react@18.2.79)(react@18.2.0)
  2191. transitivePeerDependencies:
  2192. - '@types/react'
  2193. '@radix-ui/react-dialog@1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)':
  2194. dependencies:
  2195. '@babel/runtime': 7.23.9
  2196. '@radix-ui/primitive': 1.0.1
  2197. '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2198. '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2199. '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2200. '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2201. '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2202. '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2203. '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2204. '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2205. '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2206. '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0)
  2207. '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2208. '@types/react': 18.2.79
  2209. '@types/react-dom': 18.2.25
  2210. aria-hidden: 1.2.3
  2211. react: 18.2.0
  2212. react-dom: 18.2.0(react@18.2.0)
  2213. react-remove-scroll: 2.5.5(@types/react@18.2.79)(react@18.2.0)
  2214. '@radix-ui/react-direction@1.0.1(@types/react@18.2.79)(react@18.2.0)':
  2215. dependencies:
  2216. '@babel/runtime': 7.23.9
  2217. '@types/react': 18.2.79
  2218. react: 18.2.0
  2219. '@radix-ui/react-dismissable-layer@1.0.0(react-dom@18.2.0)(react@18.2.0)':
  2220. dependencies:
  2221. '@babel/runtime': 7.23.9
  2222. '@radix-ui/primitive': 1.0.0
  2223. '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
  2224. '@radix-ui/react-primitive': 1.0.0(react-dom@18.2.0)(react@18.2.0)
  2225. '@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0)
  2226. '@radix-ui/react-use-escape-keydown': 1.0.0(react@18.2.0)
  2227. react: 18.2.0
  2228. react-dom: 18.2.0(react@18.2.0)
  2229. '@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)':
  2230. dependencies:
  2231. '@babel/runtime': 7.23.9
  2232. '@radix-ui/primitive': 1.0.1
  2233. '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2234. '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2235. '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2236. '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.79)(react@18.2.0)
  2237. '@types/react': 18.2.79
  2238. '@types/react-dom': 18.2.25
  2239. react: 18.2.0
  2240. react-dom: 18.2.0(react@18.2.0)
  2241. '@radix-ui/react-dropdown-menu@2.0.6(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)':
  2242. dependencies:
  2243. '@babel/runtime': 7.23.9
  2244. '@radix-ui/primitive': 1.0.1
  2245. '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2246. '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2247. '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2248. '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2249. '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2250. '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2251. '@types/react': 18.2.79
  2252. '@types/react-dom': 18.2.25
  2253. react: 18.2.0
  2254. react-dom: 18.2.0(react@18.2.0)
  2255. '@radix-ui/react-focus-guards@1.0.0(react@18.2.0)':
  2256. dependencies:
  2257. '@babel/runtime': 7.23.9
  2258. react: 18.2.0
  2259. '@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.79)(react@18.2.0)':
  2260. dependencies:
  2261. '@babel/runtime': 7.23.9
  2262. '@types/react': 18.2.79
  2263. react: 18.2.0
  2264. '@radix-ui/react-focus-scope@1.0.0(react-dom@18.2.0)(react@18.2.0)':
  2265. dependencies:
  2266. '@babel/runtime': 7.23.9
  2267. '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
  2268. '@radix-ui/react-primitive': 1.0.0(react-dom@18.2.0)(react@18.2.0)
  2269. '@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0)
  2270. react: 18.2.0
  2271. react-dom: 18.2.0(react@18.2.0)
  2272. '@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)':
  2273. dependencies:
  2274. '@babel/runtime': 7.23.9
  2275. '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2276. '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2277. '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2278. '@types/react': 18.2.79
  2279. '@types/react-dom': 18.2.25
  2280. react: 18.2.0
  2281. react-dom: 18.2.0(react@18.2.0)
  2282. '@radix-ui/react-icons@1.3.0(react@18.2.0)':
  2283. dependencies:
  2284. react: 18.2.0
  2285. '@radix-ui/react-id@1.0.0(react@18.2.0)':
  2286. dependencies:
  2287. '@babel/runtime': 7.23.9
  2288. '@radix-ui/react-use-layout-effect': 1.0.0(react@18.2.0)
  2289. react: 18.2.0
  2290. '@radix-ui/react-id@1.0.1(@types/react@18.2.79)(react@18.2.0)':
  2291. dependencies:
  2292. '@babel/runtime': 7.23.9
  2293. '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2294. '@types/react': 18.2.79
  2295. react: 18.2.0
  2296. '@radix-ui/react-label@2.0.2(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)':
  2297. dependencies:
  2298. '@babel/runtime': 7.23.9
  2299. '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2300. '@types/react': 18.2.79
  2301. '@types/react-dom': 18.2.25
  2302. react: 18.2.0
  2303. react-dom: 18.2.0(react@18.2.0)
  2304. '@radix-ui/react-menu@2.0.6(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)':
  2305. dependencies:
  2306. '@babel/runtime': 7.23.9
  2307. '@radix-ui/primitive': 1.0.1
  2308. '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2309. '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2310. '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2311. '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2312. '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2313. '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2314. '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2315. '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2316. '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2317. '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2318. '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2319. '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2320. '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2321. '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0)
  2322. '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2323. '@types/react': 18.2.79
  2324. '@types/react-dom': 18.2.25
  2325. aria-hidden: 1.2.3
  2326. react: 18.2.0
  2327. react-dom: 18.2.0(react@18.2.0)
  2328. react-remove-scroll: 2.5.5(@types/react@18.2.79)(react@18.2.0)
  2329. '@radix-ui/react-popover@1.0.7(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)':
  2330. dependencies:
  2331. '@babel/runtime': 7.23.9
  2332. '@radix-ui/primitive': 1.0.1
  2333. '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2334. '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2335. '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2336. '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2337. '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2338. '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2339. '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2340. '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2341. '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2342. '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2343. '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0)
  2344. '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2345. '@types/react': 18.2.79
  2346. '@types/react-dom': 18.2.25
  2347. aria-hidden: 1.2.3
  2348. react: 18.2.0
  2349. react-dom: 18.2.0(react@18.2.0)
  2350. react-remove-scroll: 2.5.5(@types/react@18.2.79)(react@18.2.0)
  2351. '@radix-ui/react-popper@1.1.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)':
  2352. dependencies:
  2353. '@babel/runtime': 7.23.9
  2354. '@floating-ui/react-dom': 2.0.7(react-dom@18.2.0)(react@18.2.0)
  2355. '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2356. '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2357. '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2358. '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2359. '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2360. '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2361. '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2362. '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2363. '@radix-ui/rect': 1.0.1
  2364. '@types/react': 18.2.79
  2365. '@types/react-dom': 18.2.25
  2366. react: 18.2.0
  2367. react-dom: 18.2.0(react@18.2.0)
  2368. '@radix-ui/react-portal@1.0.0(react-dom@18.2.0)(react@18.2.0)':
  2369. dependencies:
  2370. '@babel/runtime': 7.23.9
  2371. '@radix-ui/react-primitive': 1.0.0(react-dom@18.2.0)(react@18.2.0)
  2372. react: 18.2.0
  2373. react-dom: 18.2.0(react@18.2.0)
  2374. '@radix-ui/react-portal@1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)':
  2375. dependencies:
  2376. '@babel/runtime': 7.23.9
  2377. '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2378. '@types/react': 18.2.79
  2379. '@types/react-dom': 18.2.25
  2380. react: 18.2.0
  2381. react-dom: 18.2.0(react@18.2.0)
  2382. '@radix-ui/react-presence@1.0.0(react-dom@18.2.0)(react@18.2.0)':
  2383. dependencies:
  2384. '@babel/runtime': 7.23.9
  2385. '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
  2386. '@radix-ui/react-use-layout-effect': 1.0.0(react@18.2.0)
  2387. react: 18.2.0
  2388. react-dom: 18.2.0(react@18.2.0)
  2389. '@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)':
  2390. dependencies:
  2391. '@babel/runtime': 7.23.9
  2392. '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2393. '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2394. '@types/react': 18.2.79
  2395. '@types/react-dom': 18.2.25
  2396. react: 18.2.0
  2397. react-dom: 18.2.0(react@18.2.0)
  2398. '@radix-ui/react-primitive@1.0.0(react-dom@18.2.0)(react@18.2.0)':
  2399. dependencies:
  2400. '@babel/runtime': 7.23.9
  2401. '@radix-ui/react-slot': 1.0.0(react@18.2.0)
  2402. react: 18.2.0
  2403. react-dom: 18.2.0(react@18.2.0)
  2404. '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)':
  2405. dependencies:
  2406. '@babel/runtime': 7.23.9
  2407. '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0)
  2408. '@types/react': 18.2.79
  2409. '@types/react-dom': 18.2.25
  2410. react: 18.2.0
  2411. react-dom: 18.2.0(react@18.2.0)
  2412. '@radix-ui/react-radio-group@1.1.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)':
  2413. dependencies:
  2414. '@babel/runtime': 7.23.9
  2415. '@radix-ui/primitive': 1.0.1
  2416. '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2417. '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2418. '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2419. '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2420. '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2421. '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2422. '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2423. '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2424. '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2425. '@types/react': 18.2.79
  2426. '@types/react-dom': 18.2.25
  2427. react: 18.2.0
  2428. react-dom: 18.2.0(react@18.2.0)
  2429. '@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)':
  2430. dependencies:
  2431. '@babel/runtime': 7.23.9
  2432. '@radix-ui/primitive': 1.0.1
  2433. '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2434. '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2435. '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2436. '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2437. '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2438. '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2439. '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2440. '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2441. '@types/react': 18.2.79
  2442. '@types/react-dom': 18.2.25
  2443. react: 18.2.0
  2444. react-dom: 18.2.0(react@18.2.0)
  2445. '@radix-ui/react-select@2.0.0(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)':
  2446. dependencies:
  2447. '@babel/runtime': 7.23.9
  2448. '@radix-ui/number': 1.0.1
  2449. '@radix-ui/primitive': 1.0.1
  2450. '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2451. '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2452. '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2453. '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2454. '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2455. '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2456. '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2457. '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2458. '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2459. '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2460. '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2461. '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0)
  2462. '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2463. '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2464. '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2465. '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2466. '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2467. '@types/react': 18.2.79
  2468. '@types/react-dom': 18.2.25
  2469. aria-hidden: 1.2.3
  2470. react: 18.2.0
  2471. react-dom: 18.2.0(react@18.2.0)
  2472. react-remove-scroll: 2.5.5(@types/react@18.2.79)(react@18.2.0)
  2473. '@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)':
  2474. dependencies:
  2475. '@babel/runtime': 7.23.9
  2476. '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2477. '@types/react': 18.2.79
  2478. '@types/react-dom': 18.2.25
  2479. react: 18.2.0
  2480. react-dom: 18.2.0(react@18.2.0)
  2481. '@radix-ui/react-slot@1.0.0(react@18.2.0)':
  2482. dependencies:
  2483. '@babel/runtime': 7.23.9
  2484. '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
  2485. react: 18.2.0
  2486. '@radix-ui/react-slot@1.0.2(@types/react@18.2.79)(react@18.2.0)':
  2487. dependencies:
  2488. '@babel/runtime': 7.23.9
  2489. '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2490. '@types/react': 18.2.79
  2491. react: 18.2.0
  2492. '@radix-ui/react-switch@1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)':
  2493. dependencies:
  2494. '@babel/runtime': 7.23.9
  2495. '@radix-ui/primitive': 1.0.1
  2496. '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2497. '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2498. '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2499. '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2500. '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2501. '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2502. '@types/react': 18.2.79
  2503. '@types/react-dom': 18.2.25
  2504. react: 18.2.0
  2505. react-dom: 18.2.0(react@18.2.0)
  2506. '@radix-ui/react-tabs@1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)':
  2507. dependencies:
  2508. '@babel/runtime': 7.23.9
  2509. '@radix-ui/primitive': 1.0.1
  2510. '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2511. '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2512. '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2513. '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2514. '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2515. '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2516. '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2517. '@types/react': 18.2.79
  2518. '@types/react-dom': 18.2.25
  2519. react: 18.2.0
  2520. react-dom: 18.2.0(react@18.2.0)
  2521. '@radix-ui/react-toast@1.1.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)':
  2522. dependencies:
  2523. '@babel/runtime': 7.23.9
  2524. '@radix-ui/primitive': 1.0.1
  2525. '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2526. '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2527. '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2528. '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2529. '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2530. '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2531. '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2532. '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2533. '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2534. '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2535. '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2536. '@types/react': 18.2.79
  2537. '@types/react-dom': 18.2.25
  2538. react: 18.2.0
  2539. react-dom: 18.2.0(react@18.2.0)
  2540. '@radix-ui/react-tooltip@1.0.7(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)':
  2541. dependencies:
  2542. '@babel/runtime': 7.23.9
  2543. '@radix-ui/primitive': 1.0.1
  2544. '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2545. '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2546. '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2547. '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2548. '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2549. '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2550. '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2551. '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2552. '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0)
  2553. '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2554. '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2555. '@types/react': 18.2.79
  2556. '@types/react-dom': 18.2.25
  2557. react: 18.2.0
  2558. react-dom: 18.2.0(react@18.2.0)
  2559. '@radix-ui/react-use-callback-ref@1.0.0(react@18.2.0)':
  2560. dependencies:
  2561. '@babel/runtime': 7.23.9
  2562. react: 18.2.0
  2563. '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.79)(react@18.2.0)':
  2564. dependencies:
  2565. '@babel/runtime': 7.23.9
  2566. '@types/react': 18.2.79
  2567. react: 18.2.0
  2568. '@radix-ui/react-use-controllable-state@1.0.0(react@18.2.0)':
  2569. dependencies:
  2570. '@babel/runtime': 7.23.9
  2571. '@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0)
  2572. react: 18.2.0
  2573. '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.79)(react@18.2.0)':
  2574. dependencies:
  2575. '@babel/runtime': 7.23.9
  2576. '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2577. '@types/react': 18.2.79
  2578. react: 18.2.0
  2579. '@radix-ui/react-use-escape-keydown@1.0.0(react@18.2.0)':
  2580. dependencies:
  2581. '@babel/runtime': 7.23.9
  2582. '@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0)
  2583. react: 18.2.0
  2584. '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.79)(react@18.2.0)':
  2585. dependencies:
  2586. '@babel/runtime': 7.23.9
  2587. '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2588. '@types/react': 18.2.79
  2589. react: 18.2.0
  2590. '@radix-ui/react-use-layout-effect@1.0.0(react@18.2.0)':
  2591. dependencies:
  2592. '@babel/runtime': 7.23.9
  2593. react: 18.2.0
  2594. '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.79)(react@18.2.0)':
  2595. dependencies:
  2596. '@babel/runtime': 7.23.9
  2597. '@types/react': 18.2.79
  2598. react: 18.2.0
  2599. '@radix-ui/react-use-previous@1.0.1(@types/react@18.2.79)(react@18.2.0)':
  2600. dependencies:
  2601. '@babel/runtime': 7.23.9
  2602. '@types/react': 18.2.79
  2603. react: 18.2.0
  2604. '@radix-ui/react-use-rect@1.0.1(@types/react@18.2.79)(react@18.2.0)':
  2605. dependencies:
  2606. '@babel/runtime': 7.23.9
  2607. '@radix-ui/rect': 1.0.1
  2608. '@types/react': 18.2.79
  2609. react: 18.2.0
  2610. '@radix-ui/react-use-size@1.0.1(@types/react@18.2.79)(react@18.2.0)':
  2611. dependencies:
  2612. '@babel/runtime': 7.23.9
  2613. '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0)
  2614. '@types/react': 18.2.79
  2615. react: 18.2.0
  2616. '@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)':
  2617. dependencies:
  2618. '@babel/runtime': 7.23.9
  2619. '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2620. '@types/react': 18.2.79
  2621. '@types/react-dom': 18.2.25
  2622. react: 18.2.0
  2623. react-dom: 18.2.0(react@18.2.0)
  2624. '@radix-ui/rect@1.0.1':
  2625. dependencies:
  2626. '@babel/runtime': 7.23.9
  2627. '@remix-run/router@1.15.3': {}
  2628. '@rollup/rollup-android-arm-eabi@4.14.3':
  2629. optional: true
  2630. '@rollup/rollup-android-arm64@4.14.3':
  2631. optional: true
  2632. '@rollup/rollup-darwin-arm64@4.14.3':
  2633. optional: true
  2634. '@rollup/rollup-darwin-x64@4.14.3':
  2635. optional: true
  2636. '@rollup/rollup-linux-arm-gnueabihf@4.14.3':
  2637. optional: true
  2638. '@rollup/rollup-linux-arm-musleabihf@4.14.3':
  2639. optional: true
  2640. '@rollup/rollup-linux-arm64-gnu@4.14.3':
  2641. optional: true
  2642. '@rollup/rollup-linux-arm64-musl@4.14.3':
  2643. optional: true
  2644. '@rollup/rollup-linux-powerpc64le-gnu@4.14.3':
  2645. optional: true
  2646. '@rollup/rollup-linux-riscv64-gnu@4.14.3':
  2647. optional: true
  2648. '@rollup/rollup-linux-s390x-gnu@4.14.3':
  2649. optional: true
  2650. '@rollup/rollup-linux-x64-gnu@4.14.3':
  2651. optional: true
  2652. '@rollup/rollup-linux-x64-musl@4.14.3':
  2653. optional: true
  2654. '@rollup/rollup-win32-arm64-msvc@4.14.3':
  2655. optional: true
  2656. '@rollup/rollup-win32-ia32-msvc@4.14.3':
  2657. optional: true
  2658. '@rollup/rollup-win32-x64-msvc@4.14.3':
  2659. optional: true
  2660. '@swc/core-darwin-arm64@1.4.15':
  2661. optional: true
  2662. '@swc/core-darwin-x64@1.4.15':
  2663. optional: true
  2664. '@swc/core-linux-arm-gnueabihf@1.4.15':
  2665. optional: true
  2666. '@swc/core-linux-arm64-gnu@1.4.15':
  2667. optional: true
  2668. '@swc/core-linux-arm64-musl@1.4.15':
  2669. optional: true
  2670. '@swc/core-linux-x64-gnu@1.4.15':
  2671. optional: true
  2672. '@swc/core-linux-x64-musl@1.4.15':
  2673. optional: true
  2674. '@swc/core-win32-arm64-msvc@1.4.15':
  2675. optional: true
  2676. '@swc/core-win32-ia32-msvc@1.4.15':
  2677. optional: true
  2678. '@swc/core-win32-x64-msvc@1.4.15':
  2679. optional: true
  2680. '@swc/core@1.4.15':
  2681. dependencies:
  2682. '@swc/counter': 0.1.2
  2683. '@swc/types': 0.1.5
  2684. optionalDependencies:
  2685. '@swc/core-darwin-arm64': 1.4.15
  2686. '@swc/core-darwin-x64': 1.4.15
  2687. '@swc/core-linux-arm-gnueabihf': 1.4.15
  2688. '@swc/core-linux-arm64-gnu': 1.4.15
  2689. '@swc/core-linux-arm64-musl': 1.4.15
  2690. '@swc/core-linux-x64-gnu': 1.4.15
  2691. '@swc/core-linux-x64-musl': 1.4.15
  2692. '@swc/core-win32-arm64-msvc': 1.4.15
  2693. '@swc/core-win32-ia32-msvc': 1.4.15
  2694. '@swc/core-win32-x64-msvc': 1.4.15
  2695. '@swc/counter@0.1.2': {}
  2696. '@swc/types@0.1.5': {}
  2697. '@tabler/icons-react@3.2.0(react@18.2.0)':
  2698. dependencies:
  2699. '@tabler/icons': 3.2.0
  2700. react: 18.2.0
  2701. '@tabler/icons@3.2.0': {}
  2702. '@tanstack/react-table@8.16.0(react-dom@18.2.0)(react@18.2.0)':
  2703. dependencies:
  2704. '@tanstack/table-core': 8.16.0
  2705. react: 18.2.0
  2706. react-dom: 18.2.0(react@18.2.0)
  2707. '@tanstack/table-core@8.16.0': {}
  2708. '@types/d3-array@3.2.1': {}
  2709. '@types/d3-color@3.1.3': {}
  2710. '@types/d3-ease@3.0.2': {}
  2711. '@types/d3-interpolate@3.0.4':
  2712. dependencies:
  2713. '@types/d3-color': 3.1.3
  2714. '@types/d3-path@3.0.2': {}
  2715. '@types/d3-scale@4.0.8':
  2716. dependencies:
  2717. '@types/d3-time': 3.0.3
  2718. '@types/d3-shape@3.1.6':
  2719. dependencies:
  2720. '@types/d3-path': 3.0.2
  2721. '@types/d3-time@3.0.3': {}
  2722. '@types/d3-timer@3.0.2': {}
  2723. '@types/estree@1.0.5': {}
  2724. '@types/hast@2.3.10':
  2725. dependencies:
  2726. '@types/unist': 2.0.10
  2727. '@types/json-schema@7.0.15': {}
  2728. '@types/node@20.12.7':
  2729. dependencies:
  2730. undici-types: 5.26.5
  2731. '@types/prop-types@15.7.11': {}
  2732. '@types/react-dom@18.2.25':
  2733. dependencies:
  2734. '@types/react': 18.2.79
  2735. '@types/react-syntax-highlighter@15.5.11':
  2736. dependencies:
  2737. '@types/react': 18.2.79
  2738. '@types/react@18.2.79':
  2739. dependencies:
  2740. '@types/prop-types': 15.7.11
  2741. csstype: 3.1.3
  2742. '@types/semver@7.5.6': {}
  2743. '@types/unist@2.0.10': {}
  2744. '@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1)(eslint@8.56.0)(typescript@5.4.5)':
  2745. dependencies:
  2746. '@eslint-community/regexpp': 4.10.0
  2747. '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.4.5)
  2748. '@typescript-eslint/scope-manager': 6.19.1
  2749. '@typescript-eslint/type-utils': 6.19.1(eslint@8.56.0)(typescript@5.4.5)
  2750. '@typescript-eslint/utils': 6.19.1(eslint@8.56.0)(typescript@5.4.5)
  2751. '@typescript-eslint/visitor-keys': 6.19.1
  2752. debug: 4.3.4
  2753. eslint: 8.56.0
  2754. graphemer: 1.4.0
  2755. ignore: 5.3.0
  2756. natural-compare: 1.4.0
  2757. semver: 7.5.4
  2758. ts-api-utils: 1.0.3(typescript@5.4.5)
  2759. typescript: 5.4.5
  2760. transitivePeerDependencies:
  2761. - supports-color
  2762. '@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.4.5)':
  2763. dependencies:
  2764. '@typescript-eslint/scope-manager': 6.19.1
  2765. '@typescript-eslint/types': 6.19.1
  2766. '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.4.5)
  2767. '@typescript-eslint/visitor-keys': 6.19.1
  2768. debug: 4.3.4
  2769. eslint: 8.56.0
  2770. typescript: 5.4.5
  2771. transitivePeerDependencies:
  2772. - supports-color
  2773. '@typescript-eslint/scope-manager@6.19.1':
  2774. dependencies:
  2775. '@typescript-eslint/types': 6.19.1
  2776. '@typescript-eslint/visitor-keys': 6.19.1
  2777. '@typescript-eslint/type-utils@6.19.1(eslint@8.56.0)(typescript@5.4.5)':
  2778. dependencies:
  2779. '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.4.5)
  2780. '@typescript-eslint/utils': 6.19.1(eslint@8.56.0)(typescript@5.4.5)
  2781. debug: 4.3.4
  2782. eslint: 8.56.0
  2783. ts-api-utils: 1.0.3(typescript@5.4.5)
  2784. typescript: 5.4.5
  2785. transitivePeerDependencies:
  2786. - supports-color
  2787. '@typescript-eslint/types@6.19.1': {}
  2788. '@typescript-eslint/typescript-estree@6.19.1(typescript@5.4.5)':
  2789. dependencies:
  2790. '@typescript-eslint/types': 6.19.1
  2791. '@typescript-eslint/visitor-keys': 6.19.1
  2792. debug: 4.3.4
  2793. globby: 11.1.0
  2794. is-glob: 4.0.3
  2795. minimatch: 9.0.3
  2796. semver: 7.5.4
  2797. ts-api-utils: 1.0.3(typescript@5.4.5)
  2798. typescript: 5.4.5
  2799. transitivePeerDependencies:
  2800. - supports-color
  2801. '@typescript-eslint/utils@6.19.1(eslint@8.56.0)(typescript@5.4.5)':
  2802. dependencies:
  2803. '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0)
  2804. '@types/json-schema': 7.0.15
  2805. '@types/semver': 7.5.6
  2806. '@typescript-eslint/scope-manager': 6.19.1
  2807. '@typescript-eslint/types': 6.19.1
  2808. '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.4.5)
  2809. eslint: 8.56.0
  2810. semver: 7.5.4
  2811. transitivePeerDependencies:
  2812. - supports-color
  2813. - typescript
  2814. '@typescript-eslint/visitor-keys@6.19.1':
  2815. dependencies:
  2816. '@typescript-eslint/types': 6.19.1
  2817. eslint-visitor-keys: 3.4.3
  2818. '@ungap/structured-clone@1.2.0': {}
  2819. '@vitejs/plugin-react-swc@3.6.0(vite@5.2.9)':
  2820. dependencies:
  2821. '@swc/core': 1.4.15
  2822. vite: 5.2.9(@types/node@20.12.7)
  2823. transitivePeerDependencies:
  2824. - '@swc/helpers'
  2825. acorn-jsx@5.3.2(acorn@8.11.3):
  2826. dependencies:
  2827. acorn: 8.11.3
  2828. acorn@8.11.3: {}
  2829. ajv@6.12.6:
  2830. dependencies:
  2831. fast-deep-equal: 3.1.3
  2832. fast-json-stable-stringify: 2.1.0
  2833. json-schema-traverse: 0.4.1
  2834. uri-js: 4.4.1
  2835. ansi-regex@5.0.1: {}
  2836. ansi-regex@6.0.1: {}
  2837. ansi-styles@4.3.0:
  2838. dependencies:
  2839. color-convert: 2.0.1
  2840. ansi-styles@6.2.1: {}
  2841. any-promise@1.3.0: {}
  2842. anymatch@3.1.3:
  2843. dependencies:
  2844. normalize-path: 3.0.0
  2845. picomatch: 2.3.1
  2846. arg@5.0.2: {}
  2847. argparse@2.0.1: {}
  2848. aria-hidden@1.2.3:
  2849. dependencies:
  2850. tslib: 2.6.2
  2851. array-union@2.1.0: {}
  2852. autoprefixer@10.4.19(postcss@8.4.38):
  2853. dependencies:
  2854. browserslist: 4.23.0
  2855. caniuse-lite: 1.0.30001611
  2856. fraction.js: 4.3.7
  2857. normalize-range: 0.1.2
  2858. picocolors: 1.0.0
  2859. postcss: 8.4.38
  2860. postcss-value-parser: 4.2.0
  2861. balanced-match@1.0.2: {}
  2862. binary-extensions@2.2.0: {}
  2863. brace-expansion@1.1.11:
  2864. dependencies:
  2865. balanced-match: 1.0.2
  2866. concat-map: 0.0.1
  2867. brace-expansion@2.0.1:
  2868. dependencies:
  2869. balanced-match: 1.0.2
  2870. braces@3.0.2:
  2871. dependencies:
  2872. fill-range: 7.0.1
  2873. browserslist@4.23.0:
  2874. dependencies:
  2875. caniuse-lite: 1.0.30001611
  2876. electron-to-chromium: 1.4.740
  2877. node-releases: 2.0.14
  2878. update-browserslist-db: 1.0.13(browserslist@4.23.0)
  2879. callsites@3.1.0: {}
  2880. camelcase-css@2.0.1: {}
  2881. caniuse-lite@1.0.30001611: {}
  2882. chalk@4.1.2:
  2883. dependencies:
  2884. ansi-styles: 4.3.0
  2885. supports-color: 7.2.0
  2886. character-entities-legacy@1.1.4: {}
  2887. character-entities@1.2.4: {}
  2888. character-reference-invalid@1.1.4: {}
  2889. chokidar@3.5.3:
  2890. dependencies:
  2891. anymatch: 3.1.3
  2892. braces: 3.0.2
  2893. glob-parent: 5.1.2
  2894. is-binary-path: 2.1.0
  2895. is-glob: 4.0.3
  2896. normalize-path: 3.0.0
  2897. readdirp: 3.6.0
  2898. optionalDependencies:
  2899. fsevents: 2.3.3
  2900. class-variance-authority@0.7.0:
  2901. dependencies:
  2902. clsx: 2.0.0
  2903. clsx@2.0.0: {}
  2904. clsx@2.1.0: {}
  2905. cmdk@0.2.1(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0):
  2906. dependencies:
  2907. '@radix-ui/react-dialog': 1.0.0(@types/react@18.2.79)(react-dom@18.2.0)(react@18.2.0)
  2908. react: 18.2.0
  2909. react-dom: 18.2.0(react@18.2.0)
  2910. transitivePeerDependencies:
  2911. - '@types/react'
  2912. color-convert@2.0.1:
  2913. dependencies:
  2914. color-name: 1.1.4
  2915. color-name@1.1.4: {}
  2916. comma-separated-tokens@1.0.8: {}
  2917. commander@4.1.1: {}
  2918. concat-map@0.0.1: {}
  2919. cross-spawn@7.0.3:
  2920. dependencies:
  2921. path-key: 3.1.1
  2922. shebang-command: 2.0.0
  2923. which: 2.0.2
  2924. cssesc@3.0.0: {}
  2925. csstype@3.1.3: {}
  2926. d3-array@3.2.4:
  2927. dependencies:
  2928. internmap: 2.0.3
  2929. d3-color@3.1.0: {}
  2930. d3-ease@3.0.1: {}
  2931. d3-format@3.1.0: {}
  2932. d3-interpolate@3.0.1:
  2933. dependencies:
  2934. d3-color: 3.1.0
  2935. d3-path@3.1.0: {}
  2936. d3-scale@4.0.2:
  2937. dependencies:
  2938. d3-array: 3.2.4
  2939. d3-format: 3.1.0
  2940. d3-interpolate: 3.0.1
  2941. d3-time: 3.1.0
  2942. d3-time-format: 4.1.0
  2943. d3-shape@3.2.0:
  2944. dependencies:
  2945. d3-path: 3.1.0
  2946. d3-time-format@4.1.0:
  2947. dependencies:
  2948. d3-time: 3.1.0
  2949. d3-time@3.1.0:
  2950. dependencies:
  2951. d3-array: 3.2.4
  2952. d3-timer@3.0.1: {}
  2953. date-fns@3.3.1: {}
  2954. dayjs@1.11.10: {}
  2955. debug@4.3.4:
  2956. dependencies:
  2957. ms: 2.1.2
  2958. decimal.js-light@2.5.1: {}
  2959. deep-is@0.1.4: {}
  2960. detect-node-es@1.1.0: {}
  2961. didyoumean@1.2.2: {}
  2962. dir-glob@3.0.1:
  2963. dependencies:
  2964. path-type: 4.0.0
  2965. dlv@1.1.3: {}
  2966. doctrine@3.0.0:
  2967. dependencies:
  2968. esutils: 2.0.3
  2969. dom-helpers@5.2.1:
  2970. dependencies:
  2971. '@babel/runtime': 7.23.9
  2972. csstype: 3.1.3
  2973. eastasianwidth@0.2.0: {}
  2974. electron-to-chromium@1.4.740: {}
  2975. emoji-regex@8.0.0: {}
  2976. emoji-regex@9.2.2: {}
  2977. esbuild@0.20.2:
  2978. optionalDependencies:
  2979. '@esbuild/aix-ppc64': 0.20.2
  2980. '@esbuild/android-arm': 0.20.2
  2981. '@esbuild/android-arm64': 0.20.2
  2982. '@esbuild/android-x64': 0.20.2
  2983. '@esbuild/darwin-arm64': 0.20.2
  2984. '@esbuild/darwin-x64': 0.20.2
  2985. '@esbuild/freebsd-arm64': 0.20.2
  2986. '@esbuild/freebsd-x64': 0.20.2
  2987. '@esbuild/linux-arm': 0.20.2
  2988. '@esbuild/linux-arm64': 0.20.2
  2989. '@esbuild/linux-ia32': 0.20.2
  2990. '@esbuild/linux-loong64': 0.20.2
  2991. '@esbuild/linux-mips64el': 0.20.2
  2992. '@esbuild/linux-ppc64': 0.20.2
  2993. '@esbuild/linux-riscv64': 0.20.2
  2994. '@esbuild/linux-s390x': 0.20.2
  2995. '@esbuild/linux-x64': 0.20.2
  2996. '@esbuild/netbsd-x64': 0.20.2
  2997. '@esbuild/openbsd-x64': 0.20.2
  2998. '@esbuild/sunos-x64': 0.20.2
  2999. '@esbuild/win32-arm64': 0.20.2
  3000. '@esbuild/win32-ia32': 0.20.2
  3001. '@esbuild/win32-x64': 0.20.2
  3002. escalade@3.1.1: {}
  3003. escape-string-regexp@4.0.0: {}
  3004. eslint-plugin-react-hooks@4.6.0(eslint@8.56.0):
  3005. dependencies:
  3006. eslint: 8.56.0
  3007. eslint-plugin-react-refresh@0.4.5(eslint@8.56.0):
  3008. dependencies:
  3009. eslint: 8.56.0
  3010. eslint-scope@7.2.2:
  3011. dependencies:
  3012. esrecurse: 4.3.0
  3013. estraverse: 5.3.0
  3014. eslint-visitor-keys@3.4.3: {}
  3015. eslint@8.56.0:
  3016. dependencies:
  3017. '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0)
  3018. '@eslint-community/regexpp': 4.10.0
  3019. '@eslint/eslintrc': 2.1.4
  3020. '@eslint/js': 8.56.0
  3021. '@humanwhocodes/config-array': 0.11.14
  3022. '@humanwhocodes/module-importer': 1.0.1
  3023. '@nodelib/fs.walk': 1.2.8
  3024. '@ungap/structured-clone': 1.2.0
  3025. ajv: 6.12.6
  3026. chalk: 4.1.2
  3027. cross-spawn: 7.0.3
  3028. debug: 4.3.4
  3029. doctrine: 3.0.0
  3030. escape-string-regexp: 4.0.0
  3031. eslint-scope: 7.2.2
  3032. eslint-visitor-keys: 3.4.3
  3033. espree: 9.6.1
  3034. esquery: 1.5.0
  3035. esutils: 2.0.3
  3036. fast-deep-equal: 3.1.3
  3037. file-entry-cache: 6.0.1
  3038. find-up: 5.0.0
  3039. glob-parent: 6.0.2
  3040. globals: 13.24.0
  3041. graphemer: 1.4.0
  3042. ignore: 5.3.0
  3043. imurmurhash: 0.1.4
  3044. is-glob: 4.0.3
  3045. is-path-inside: 3.0.3
  3046. js-yaml: 4.1.0
  3047. json-stable-stringify-without-jsonify: 1.0.1
  3048. levn: 0.4.1
  3049. lodash.merge: 4.6.2
  3050. minimatch: 3.1.2
  3051. natural-compare: 1.4.0
  3052. optionator: 0.9.3
  3053. strip-ansi: 6.0.1
  3054. text-table: 0.2.0
  3055. transitivePeerDependencies:
  3056. - supports-color
  3057. espree@9.6.1:
  3058. dependencies:
  3059. acorn: 8.11.3
  3060. acorn-jsx: 5.3.2(acorn@8.11.3)
  3061. eslint-visitor-keys: 3.4.3
  3062. esquery@1.5.0:
  3063. dependencies:
  3064. estraverse: 5.3.0
  3065. esrecurse@4.3.0:
  3066. dependencies:
  3067. estraverse: 5.3.0
  3068. estraverse@5.3.0: {}
  3069. esutils@2.0.3: {}
  3070. eventemitter3@4.0.7: {}
  3071. fast-deep-equal@3.1.3: {}
  3072. fast-equals@5.0.1: {}
  3073. fast-glob@3.3.2:
  3074. dependencies:
  3075. '@nodelib/fs.stat': 2.0.5
  3076. '@nodelib/fs.walk': 1.2.8
  3077. glob-parent: 5.1.2
  3078. merge2: 1.4.1
  3079. micromatch: 4.0.5
  3080. fast-json-stable-stringify@2.1.0: {}
  3081. fast-levenshtein@2.0.6: {}
  3082. fastq@1.16.0:
  3083. dependencies:
  3084. reusify: 1.0.4
  3085. fault@1.0.4:
  3086. dependencies:
  3087. format: 0.2.2
  3088. file-entry-cache@6.0.1:
  3089. dependencies:
  3090. flat-cache: 3.2.0
  3091. fill-range@7.0.1:
  3092. dependencies:
  3093. to-regex-range: 5.0.1
  3094. find-up@5.0.0:
  3095. dependencies:
  3096. locate-path: 6.0.0
  3097. path-exists: 4.0.0
  3098. flat-cache@3.2.0:
  3099. dependencies:
  3100. flatted: 3.2.9
  3101. keyv: 4.5.4
  3102. rimraf: 3.0.2
  3103. flatted@3.2.9: {}
  3104. foreground-child@3.1.1:
  3105. dependencies:
  3106. cross-spawn: 7.0.3
  3107. signal-exit: 4.1.0
  3108. format@0.2.2: {}
  3109. fraction.js@4.3.7: {}
  3110. fs.realpath@1.0.0: {}
  3111. fsevents@2.3.3:
  3112. optional: true
  3113. function-bind@1.1.2: {}
  3114. get-nonce@1.0.1: {}
  3115. glob-parent@5.1.2:
  3116. dependencies:
  3117. is-glob: 4.0.3
  3118. glob-parent@6.0.2:
  3119. dependencies:
  3120. is-glob: 4.0.3
  3121. glob@10.3.10:
  3122. dependencies:
  3123. foreground-child: 3.1.1
  3124. jackspeak: 2.3.6
  3125. minimatch: 9.0.3
  3126. minipass: 7.0.4
  3127. path-scurry: 1.10.1
  3128. glob@7.2.3:
  3129. dependencies:
  3130. fs.realpath: 1.0.0
  3131. inflight: 1.0.6
  3132. inherits: 2.0.4
  3133. minimatch: 3.1.2
  3134. once: 1.4.0
  3135. path-is-absolute: 1.0.1
  3136. globals@13.24.0:
  3137. dependencies:
  3138. type-fest: 0.20.2
  3139. globby@11.1.0:
  3140. dependencies:
  3141. array-union: 2.1.0
  3142. dir-glob: 3.0.1
  3143. fast-glob: 3.3.2
  3144. ignore: 5.3.0
  3145. merge2: 1.4.1
  3146. slash: 3.0.0
  3147. graphemer@1.4.0: {}
  3148. has-flag@4.0.0: {}
  3149. hasown@2.0.0:
  3150. dependencies:
  3151. function-bind: 1.1.2
  3152. hast-util-parse-selector@2.2.5: {}
  3153. hastscript@6.0.0:
  3154. dependencies:
  3155. '@types/hast': 2.3.10
  3156. comma-separated-tokens: 1.0.8
  3157. hast-util-parse-selector: 2.2.5
  3158. property-information: 5.6.0
  3159. space-separated-tokens: 1.1.5
  3160. highlight.js@10.7.3: {}
  3161. ignore@5.3.0: {}
  3162. import-fresh@3.3.0:
  3163. dependencies:
  3164. parent-module: 1.0.1
  3165. resolve-from: 4.0.0
  3166. imurmurhash@0.1.4: {}
  3167. inflight@1.0.6:
  3168. dependencies:
  3169. once: 1.4.0
  3170. wrappy: 1.0.2
  3171. inherits@2.0.4: {}
  3172. internmap@2.0.3: {}
  3173. invariant@2.2.4:
  3174. dependencies:
  3175. loose-envify: 1.4.0
  3176. is-alphabetical@1.0.4: {}
  3177. is-alphanumerical@1.0.4:
  3178. dependencies:
  3179. is-alphabetical: 1.0.4
  3180. is-decimal: 1.0.4
  3181. is-binary-path@2.1.0:
  3182. dependencies:
  3183. binary-extensions: 2.2.0
  3184. is-core-module@2.13.1:
  3185. dependencies:
  3186. hasown: 2.0.0
  3187. is-decimal@1.0.4: {}
  3188. is-extglob@2.1.1: {}
  3189. is-fullwidth-code-point@3.0.0: {}
  3190. is-glob@4.0.3:
  3191. dependencies:
  3192. is-extglob: 2.1.1
  3193. is-hexadecimal@1.0.4: {}
  3194. is-number@7.0.0: {}
  3195. is-path-inside@3.0.3: {}
  3196. isexe@2.0.0: {}
  3197. jackspeak@2.3.6:
  3198. dependencies:
  3199. '@isaacs/cliui': 8.0.2
  3200. optionalDependencies:
  3201. '@pkgjs/parseargs': 0.11.0
  3202. jiti@1.21.0: {}
  3203. js-tokens@4.0.0: {}
  3204. js-yaml@4.1.0:
  3205. dependencies:
  3206. argparse: 2.0.1
  3207. json-buffer@3.0.1: {}
  3208. json-schema-traverse@0.4.1: {}
  3209. json-stable-stringify-without-jsonify@1.0.1: {}
  3210. keyv@4.5.4:
  3211. dependencies:
  3212. json-buffer: 3.0.1
  3213. levn@0.4.1:
  3214. dependencies:
  3215. prelude-ls: 1.2.1
  3216. type-check: 0.4.0
  3217. lilconfig@2.1.0: {}
  3218. lilconfig@3.0.0: {}
  3219. lines-and-columns@1.2.4: {}
  3220. locate-path@6.0.0:
  3221. dependencies:
  3222. p-locate: 5.0.0
  3223. lodash.merge@4.6.2: {}
  3224. lodash@4.17.21: {}
  3225. loose-envify@1.4.0:
  3226. dependencies:
  3227. js-tokens: 4.0.0
  3228. lowlight@1.20.0:
  3229. dependencies:
  3230. fault: 1.0.4
  3231. highlight.js: 10.7.3
  3232. lru-cache@10.2.0: {}
  3233. lru-cache@6.0.0:
  3234. dependencies:
  3235. yallist: 4.0.0
  3236. merge2@1.4.1: {}
  3237. micromatch@4.0.5:
  3238. dependencies:
  3239. braces: 3.0.2
  3240. picomatch: 2.3.1
  3241. minimatch@3.1.2:
  3242. dependencies:
  3243. brace-expansion: 1.1.11
  3244. minimatch@9.0.3:
  3245. dependencies:
  3246. brace-expansion: 2.0.1
  3247. minipass@7.0.4: {}
  3248. ms@2.1.2: {}
  3249. mz@2.7.0:
  3250. dependencies:
  3251. any-promise: 1.3.0
  3252. object-assign: 4.1.1
  3253. thenify-all: 1.6.0
  3254. nanoid@3.3.7: {}
  3255. natural-compare@1.4.0: {}
  3256. node-releases@2.0.14: {}
  3257. normalize-path@3.0.0: {}
  3258. normalize-range@0.1.2: {}
  3259. object-assign@4.1.1: {}
  3260. object-hash@3.0.0: {}
  3261. once@1.4.0:
  3262. dependencies:
  3263. wrappy: 1.0.2
  3264. optionator@0.9.3:
  3265. dependencies:
  3266. '@aashutoshrathi/word-wrap': 1.2.6
  3267. deep-is: 0.1.4
  3268. fast-levenshtein: 2.0.6
  3269. levn: 0.4.1
  3270. prelude-ls: 1.2.1
  3271. type-check: 0.4.0
  3272. p-limit@3.1.0:
  3273. dependencies:
  3274. yocto-queue: 0.1.0
  3275. p-locate@5.0.0:
  3276. dependencies:
  3277. p-limit: 3.1.0
  3278. parent-module@1.0.1:
  3279. dependencies:
  3280. callsites: 3.1.0
  3281. parse-entities@2.0.0:
  3282. dependencies:
  3283. character-entities: 1.2.4
  3284. character-entities-legacy: 1.1.4
  3285. character-reference-invalid: 1.1.4
  3286. is-alphanumerical: 1.0.4
  3287. is-decimal: 1.0.4
  3288. is-hexadecimal: 1.0.4
  3289. path-exists@4.0.0: {}
  3290. path-is-absolute@1.0.1: {}
  3291. path-key@3.1.1: {}
  3292. path-parse@1.0.7: {}
  3293. path-scurry@1.10.1:
  3294. dependencies:
  3295. lru-cache: 10.2.0
  3296. minipass: 7.0.4
  3297. path-type@4.0.0: {}
  3298. picocolors@1.0.0: {}
  3299. picomatch@2.3.1: {}
  3300. pify@2.3.0: {}
  3301. pirates@4.0.6: {}
  3302. postcss-import@15.1.0(postcss@8.4.38):
  3303. dependencies:
  3304. postcss: 8.4.38
  3305. postcss-value-parser: 4.2.0
  3306. read-cache: 1.0.0
  3307. resolve: 1.22.8
  3308. postcss-js@4.0.1(postcss@8.4.38):
  3309. dependencies:
  3310. camelcase-css: 2.0.1
  3311. postcss: 8.4.38
  3312. postcss-load-config@4.0.2(postcss@8.4.38):
  3313. dependencies:
  3314. lilconfig: 3.0.0
  3315. postcss: 8.4.38
  3316. yaml: 2.3.4
  3317. postcss-nested@6.0.1(postcss@8.4.38):
  3318. dependencies:
  3319. postcss: 8.4.38
  3320. postcss-selector-parser: 6.0.15
  3321. postcss-selector-parser@6.0.15:
  3322. dependencies:
  3323. cssesc: 3.0.0
  3324. util-deprecate: 1.0.2
  3325. postcss-value-parser@4.2.0: {}
  3326. postcss@8.4.38:
  3327. dependencies:
  3328. nanoid: 3.3.7
  3329. picocolors: 1.0.0
  3330. source-map-js: 1.2.0
  3331. prelude-ls@1.2.1: {}
  3332. prettier-plugin-tailwindcss@0.5.14(prettier@3.2.5):
  3333. dependencies:
  3334. prettier: 3.2.5
  3335. prettier@3.2.5: {}
  3336. prismjs@1.27.0: {}
  3337. prismjs@1.29.0: {}
  3338. prop-types@15.8.1:
  3339. dependencies:
  3340. loose-envify: 1.4.0
  3341. object-assign: 4.1.1
  3342. react-is: 16.13.1
  3343. property-information@5.6.0:
  3344. dependencies:
  3345. xtend: 4.0.2
  3346. punycode@2.3.1: {}
  3347. queue-microtask@1.2.3: {}
  3348. react-day-picker@8.10.1(date-fns@3.3.1)(react@18.2.0):
  3349. dependencies:
  3350. date-fns: 3.3.1
  3351. react: 18.2.0
  3352. react-dom@18.2.0(react@18.2.0):
  3353. dependencies:
  3354. loose-envify: 1.4.0
  3355. react: 18.2.0
  3356. scheduler: 0.23.0
  3357. react-hook-form@7.51.3(react@18.2.0):
  3358. dependencies:
  3359. react: 18.2.0
  3360. react-is@16.13.1: {}
  3361. react-remove-scroll-bar@2.3.4(@types/react@18.2.79)(react@18.2.0):
  3362. dependencies:
  3363. '@types/react': 18.2.79
  3364. react: 18.2.0
  3365. react-style-singleton: 2.2.1(@types/react@18.2.79)(react@18.2.0)
  3366. tslib: 2.6.2
  3367. react-remove-scroll@2.5.4(@types/react@18.2.79)(react@18.2.0):
  3368. dependencies:
  3369. '@types/react': 18.2.79
  3370. react: 18.2.0
  3371. react-remove-scroll-bar: 2.3.4(@types/react@18.2.79)(react@18.2.0)
  3372. react-style-singleton: 2.2.1(@types/react@18.2.79)(react@18.2.0)
  3373. tslib: 2.6.2
  3374. use-callback-ref: 1.3.1(@types/react@18.2.79)(react@18.2.0)
  3375. use-sidecar: 1.1.2(@types/react@18.2.79)(react@18.2.0)
  3376. react-remove-scroll@2.5.5(@types/react@18.2.79)(react@18.2.0):
  3377. dependencies:
  3378. '@types/react': 18.2.79
  3379. react: 18.2.0
  3380. react-remove-scroll-bar: 2.3.4(@types/react@18.2.79)(react@18.2.0)
  3381. react-style-singleton: 2.2.1(@types/react@18.2.79)(react@18.2.0)
  3382. tslib: 2.6.2
  3383. use-callback-ref: 1.3.1(@types/react@18.2.79)(react@18.2.0)
  3384. use-sidecar: 1.1.2(@types/react@18.2.79)(react@18.2.0)
  3385. react-router-dom@6.22.3(react-dom@18.2.0)(react@18.2.0):
  3386. dependencies:
  3387. '@remix-run/router': 1.15.3
  3388. react: 18.2.0
  3389. react-dom: 18.2.0(react@18.2.0)
  3390. react-router: 6.22.3(react@18.2.0)
  3391. react-router@6.22.3(react@18.2.0):
  3392. dependencies:
  3393. '@remix-run/router': 1.15.3
  3394. react: 18.2.0
  3395. react-smooth@4.0.1(react-dom@18.2.0)(react@18.2.0):
  3396. dependencies:
  3397. fast-equals: 5.0.1
  3398. prop-types: 15.8.1
  3399. react: 18.2.0
  3400. react-dom: 18.2.0(react@18.2.0)
  3401. react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0)
  3402. react-style-singleton@2.2.1(@types/react@18.2.79)(react@18.2.0):
  3403. dependencies:
  3404. '@types/react': 18.2.79
  3405. get-nonce: 1.0.1
  3406. invariant: 2.2.4
  3407. react: 18.2.0
  3408. tslib: 2.6.2
  3409. react-syntax-highlighter@15.5.0(react@18.2.0):
  3410. dependencies:
  3411. '@babel/runtime': 7.23.9
  3412. highlight.js: 10.7.3
  3413. lowlight: 1.20.0
  3414. prismjs: 1.29.0
  3415. react: 18.2.0
  3416. refractor: 3.6.0
  3417. react-transition-group@4.4.5(react-dom@18.2.0)(react@18.2.0):
  3418. dependencies:
  3419. '@babel/runtime': 7.23.9
  3420. dom-helpers: 5.2.1
  3421. loose-envify: 1.4.0
  3422. prop-types: 15.8.1
  3423. react: 18.2.0
  3424. react-dom: 18.2.0(react@18.2.0)
  3425. react@18.2.0:
  3426. dependencies:
  3427. loose-envify: 1.4.0
  3428. read-cache@1.0.0:
  3429. dependencies:
  3430. pify: 2.3.0
  3431. readdirp@3.6.0:
  3432. dependencies:
  3433. picomatch: 2.3.1
  3434. recharts-scale@0.4.5:
  3435. dependencies:
  3436. decimal.js-light: 2.5.1
  3437. recharts@2.12.5(react-dom@18.2.0)(react@18.2.0):
  3438. dependencies:
  3439. clsx: 2.1.0
  3440. eventemitter3: 4.0.7
  3441. lodash: 4.17.21
  3442. react: 18.2.0
  3443. react-dom: 18.2.0(react@18.2.0)
  3444. react-is: 16.13.1
  3445. react-smooth: 4.0.1(react-dom@18.2.0)(react@18.2.0)
  3446. recharts-scale: 0.4.5
  3447. tiny-invariant: 1.3.1
  3448. victory-vendor: 36.8.2
  3449. refractor@3.6.0:
  3450. dependencies:
  3451. hastscript: 6.0.0
  3452. parse-entities: 2.0.0
  3453. prismjs: 1.27.0
  3454. regenerator-runtime@0.14.1: {}
  3455. resolve-from@4.0.0: {}
  3456. resolve@1.22.8:
  3457. dependencies:
  3458. is-core-module: 2.13.1
  3459. path-parse: 1.0.7
  3460. supports-preserve-symlinks-flag: 1.0.0
  3461. reusify@1.0.4: {}
  3462. rimraf@3.0.2:
  3463. dependencies:
  3464. glob: 7.2.3
  3465. rollup@4.14.3:
  3466. dependencies:
  3467. '@types/estree': 1.0.5
  3468. optionalDependencies:
  3469. '@rollup/rollup-android-arm-eabi': 4.14.3
  3470. '@rollup/rollup-android-arm64': 4.14.3
  3471. '@rollup/rollup-darwin-arm64': 4.14.3
  3472. '@rollup/rollup-darwin-x64': 4.14.3
  3473. '@rollup/rollup-linux-arm-gnueabihf': 4.14.3
  3474. '@rollup/rollup-linux-arm-musleabihf': 4.14.3
  3475. '@rollup/rollup-linux-arm64-gnu': 4.14.3
  3476. '@rollup/rollup-linux-arm64-musl': 4.14.3
  3477. '@rollup/rollup-linux-powerpc64le-gnu': 4.14.3
  3478. '@rollup/rollup-linux-riscv64-gnu': 4.14.3
  3479. '@rollup/rollup-linux-s390x-gnu': 4.14.3
  3480. '@rollup/rollup-linux-x64-gnu': 4.14.3
  3481. '@rollup/rollup-linux-x64-musl': 4.14.3
  3482. '@rollup/rollup-win32-arm64-msvc': 4.14.3
  3483. '@rollup/rollup-win32-ia32-msvc': 4.14.3
  3484. '@rollup/rollup-win32-x64-msvc': 4.14.3
  3485. fsevents: 2.3.3
  3486. run-parallel@1.2.0:
  3487. dependencies:
  3488. queue-microtask: 1.2.3
  3489. scheduler@0.23.0:
  3490. dependencies:
  3491. loose-envify: 1.4.0
  3492. semver@7.5.4:
  3493. dependencies:
  3494. lru-cache: 6.0.0
  3495. shebang-command@2.0.0:
  3496. dependencies:
  3497. shebang-regex: 3.0.0
  3498. shebang-regex@3.0.0: {}
  3499. signal-exit@4.1.0: {}
  3500. slash@3.0.0: {}
  3501. source-map-js@1.2.0: {}
  3502. space-separated-tokens@1.1.5: {}
  3503. string-width@4.2.3:
  3504. dependencies:
  3505. emoji-regex: 8.0.0
  3506. is-fullwidth-code-point: 3.0.0
  3507. strip-ansi: 6.0.1
  3508. string-width@5.1.2:
  3509. dependencies:
  3510. eastasianwidth: 0.2.0
  3511. emoji-regex: 9.2.2
  3512. strip-ansi: 7.1.0
  3513. strip-ansi@6.0.1:
  3514. dependencies:
  3515. ansi-regex: 5.0.1
  3516. strip-ansi@7.1.0:
  3517. dependencies:
  3518. ansi-regex: 6.0.1
  3519. strip-json-comments@3.1.1: {}
  3520. sucrase@3.35.0:
  3521. dependencies:
  3522. '@jridgewell/gen-mapping': 0.3.3
  3523. commander: 4.1.1
  3524. glob: 10.3.10
  3525. lines-and-columns: 1.2.4
  3526. mz: 2.7.0
  3527. pirates: 4.0.6
  3528. ts-interface-checker: 0.1.13
  3529. supports-color@7.2.0:
  3530. dependencies:
  3531. has-flag: 4.0.0
  3532. supports-preserve-symlinks-flag@1.0.0: {}
  3533. tailwind-merge@2.2.2:
  3534. dependencies:
  3535. '@babel/runtime': 7.24.4
  3536. tailwindcss-animate@1.0.7(tailwindcss@3.4.3):
  3537. dependencies:
  3538. tailwindcss: 3.4.3
  3539. tailwindcss@3.4.3:
  3540. dependencies:
  3541. '@alloc/quick-lru': 5.2.0
  3542. arg: 5.0.2
  3543. chokidar: 3.5.3
  3544. didyoumean: 1.2.2
  3545. dlv: 1.1.3
  3546. fast-glob: 3.3.2
  3547. glob-parent: 6.0.2
  3548. is-glob: 4.0.3
  3549. jiti: 1.21.0
  3550. lilconfig: 2.1.0
  3551. micromatch: 4.0.5
  3552. normalize-path: 3.0.0
  3553. object-hash: 3.0.0
  3554. picocolors: 1.0.0
  3555. postcss: 8.4.38
  3556. postcss-import: 15.1.0(postcss@8.4.38)
  3557. postcss-js: 4.0.1(postcss@8.4.38)
  3558. postcss-load-config: 4.0.2(postcss@8.4.38)
  3559. postcss-nested: 6.0.1(postcss@8.4.38)
  3560. postcss-selector-parser: 6.0.15
  3561. resolve: 1.22.8
  3562. sucrase: 3.35.0
  3563. transitivePeerDependencies:
  3564. - ts-node
  3565. text-table@0.2.0: {}
  3566. thenify-all@1.6.0:
  3567. dependencies:
  3568. thenify: 3.3.1
  3569. thenify@3.3.1:
  3570. dependencies:
  3571. any-promise: 1.3.0
  3572. tiny-invariant@1.3.1: {}
  3573. to-regex-range@5.0.1:
  3574. dependencies:
  3575. is-number: 7.0.0
  3576. ts-api-utils@1.0.3(typescript@5.4.5):
  3577. dependencies:
  3578. typescript: 5.4.5
  3579. ts-interface-checker@0.1.13: {}
  3580. tslib@2.6.2: {}
  3581. type-check@0.4.0:
  3582. dependencies:
  3583. prelude-ls: 1.2.1
  3584. type-fest@0.20.2: {}
  3585. typescript@5.4.5: {}
  3586. undici-types@5.26.5: {}
  3587. update-browserslist-db@1.0.13(browserslist@4.23.0):
  3588. dependencies:
  3589. browserslist: 4.23.0
  3590. escalade: 3.1.1
  3591. picocolors: 1.0.0
  3592. uri-js@4.4.1:
  3593. dependencies:
  3594. punycode: 2.3.1
  3595. use-callback-ref@1.3.1(@types/react@18.2.79)(react@18.2.0):
  3596. dependencies:
  3597. '@types/react': 18.2.79
  3598. react: 18.2.0
  3599. tslib: 2.6.2
  3600. use-sidecar@1.1.2(@types/react@18.2.79)(react@18.2.0):
  3601. dependencies:
  3602. '@types/react': 18.2.79
  3603. detect-node-es: 1.1.0
  3604. react: 18.2.0
  3605. tslib: 2.6.2
  3606. util-deprecate@1.0.2: {}
  3607. victory-vendor@36.8.2:
  3608. dependencies:
  3609. '@types/d3-array': 3.2.1
  3610. '@types/d3-ease': 3.0.2
  3611. '@types/d3-interpolate': 3.0.4
  3612. '@types/d3-scale': 4.0.8
  3613. '@types/d3-shape': 3.1.6
  3614. '@types/d3-time': 3.0.3
  3615. '@types/d3-timer': 3.0.2
  3616. d3-array: 3.2.4
  3617. d3-ease: 3.0.1
  3618. d3-interpolate: 3.0.1
  3619. d3-scale: 4.0.2
  3620. d3-shape: 3.2.0
  3621. d3-time: 3.1.0
  3622. d3-timer: 3.0.1
  3623. vite@5.2.9(@types/node@20.12.7):
  3624. dependencies:
  3625. '@types/node': 20.12.7
  3626. esbuild: 0.20.2
  3627. postcss: 8.4.38
  3628. rollup: 4.14.3
  3629. optionalDependencies:
  3630. fsevents: 2.3.3
  3631. which@2.0.2:
  3632. dependencies:
  3633. isexe: 2.0.0
  3634. wrap-ansi@7.0.0:
  3635. dependencies:
  3636. ansi-styles: 4.3.0
  3637. string-width: 4.2.3
  3638. strip-ansi: 6.0.1
  3639. wrap-ansi@8.1.0:
  3640. dependencies:
  3641. ansi-styles: 6.2.1
  3642. string-width: 5.1.2
  3643. strip-ansi: 7.1.0
  3644. wrappy@1.0.2: {}
  3645. xtend@4.0.2: {}
  3646. yallist@4.0.0: {}
  3647. yaml@2.3.4: {}
  3648. yocto-queue@0.1.0: {}
  3649. zod@3.22.4: {}