pnpm-lock.yaml 149 KB

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