pnpm-lock.yaml 114 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155
  1. lockfileVersion: "6.0"
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. dependencies:
  6. "@dnd-kit/core":
  7. specifier: ^6.1.0
  8. version: 6.1.0(react-dom@18.2.0)(react@18.2.0)
  9. "@dnd-kit/sortable":
  10. specifier: ^8.0.0
  11. version: 8.0.0(@dnd-kit/core@6.1.0)(react@18.2.0)
  12. "@dnd-kit/utilities":
  13. specifier: ^3.2.2
  14. version: 3.2.2(react@18.2.0)
  15. "@emotion/react":
  16. specifier: ^11.11.3
  17. version: 11.11.3(@types/react@18.2.48)(react@18.2.0)
  18. "@emotion/styled":
  19. specifier: ^11.11.0
  20. version: 11.11.0(@emotion/react@11.11.3)(@types/react@18.2.48)(react@18.2.0)
  21. "@juggle/resize-observer":
  22. specifier: ^3.4.0
  23. version: 3.4.0
  24. "@mui/icons-material":
  25. specifier: ^5.15.5
  26. version: 5.15.5(@mui/material@5.15.5)(@types/react@18.2.48)(react@18.2.0)
  27. "@mui/lab":
  28. specifier: 5.0.0-alpha.149
  29. version: 5.0.0-alpha.149(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@mui/material@5.15.5)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
  30. "@mui/material":
  31. specifier: ^5.15.5
  32. version: 5.15.5(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
  33. "@mui/x-data-grid":
  34. specifier: ^6.18.7
  35. version: 6.18.7(@mui/material@5.15.5)(@mui/system@5.15.5)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
  36. "@tauri-apps/api":
  37. specifier: ^1.5.3
  38. version: 1.5.3
  39. ahooks:
  40. specifier: ^3.7.8
  41. version: 3.7.8(react@18.2.0)
  42. axios:
  43. specifier: ^1.6.5
  44. version: 1.6.5
  45. dayjs:
  46. specifier: 1.11.5
  47. version: 1.11.5
  48. i18next:
  49. specifier: ^23.7.16
  50. version: 23.7.16
  51. lodash-es:
  52. specifier: ^4.17.21
  53. version: 4.17.21
  54. monaco-editor:
  55. specifier: ^0.34.1
  56. version: 0.34.1
  57. nanoid:
  58. specifier: ^5.0.4
  59. version: 5.0.4
  60. react:
  61. specifier: ^18.2.0
  62. version: 18.2.0
  63. react-dom:
  64. specifier: ^18.2.0
  65. version: 18.2.0(react@18.2.0)
  66. react-error-boundary:
  67. specifier: ^3.1.4
  68. version: 3.1.4(react@18.2.0)
  69. react-hook-form:
  70. specifier: ^7.49.3
  71. version: 7.49.3(react@18.2.0)
  72. react-i18next:
  73. specifier: ^13.5.0
  74. version: 13.5.0(i18next@23.7.16)(react-dom@18.2.0)(react@18.2.0)
  75. react-router-dom:
  76. specifier: ^6.21.2
  77. version: 6.21.2(react-dom@18.2.0)(react@18.2.0)
  78. react-transition-group:
  79. specifier: ^4.4.5
  80. version: 4.4.5(react-dom@18.2.0)(react@18.2.0)
  81. react-virtuoso:
  82. specifier: ^4.6.2
  83. version: 4.6.2(react-dom@18.2.0)(react@18.2.0)
  84. recoil:
  85. specifier: ^0.7.7
  86. version: 0.7.7(react-dom@18.2.0)(react@18.2.0)
  87. snarkdown:
  88. specifier: ^2.0.0
  89. version: 2.0.0
  90. swr:
  91. specifier: ^1.3.0
  92. version: 1.3.0(react@18.2.0)
  93. tar:
  94. specifier: ^6.2.0
  95. version: 6.2.0
  96. devDependencies:
  97. "@actions/github":
  98. specifier: ^5.1.1
  99. version: 5.1.1
  100. "@tauri-apps/cli":
  101. specifier: ^1.5.9
  102. version: 1.5.9
  103. "@types/fs-extra":
  104. specifier: ^9.0.13
  105. version: 9.0.13
  106. "@types/js-cookie":
  107. specifier: ^3.0.6
  108. version: 3.0.6
  109. "@types/lodash":
  110. specifier: ^4.14.202
  111. version: 4.14.202
  112. "@types/lodash-es":
  113. specifier: ^4.17.12
  114. version: 4.17.12
  115. "@types/react":
  116. specifier: ^18.2.48
  117. version: 18.2.48
  118. "@types/react-dom":
  119. specifier: ^18.2.18
  120. version: 18.2.18
  121. "@types/react-transition-group":
  122. specifier: ^4.4.10
  123. version: 4.4.10
  124. "@vitejs/plugin-react":
  125. specifier: ^4.2.1
  126. version: 4.2.1(vite@5.0.11)
  127. adm-zip:
  128. specifier: ^0.5.10
  129. version: 0.5.10
  130. cross-env:
  131. specifier: ^7.0.3
  132. version: 7.0.3
  133. fs-extra:
  134. specifier: ^11.2.0
  135. version: 11.2.0
  136. https-proxy-agent:
  137. specifier: ^5.0.1
  138. version: 5.0.1
  139. husky:
  140. specifier: ^7.0.4
  141. version: 7.0.4
  142. node-fetch:
  143. specifier: ^3.3.2
  144. version: 3.3.2
  145. prettier:
  146. specifier: ^2.8.8
  147. version: 2.8.8
  148. pretty-quick:
  149. specifier: ^3.3.1
  150. version: 3.3.1(prettier@2.8.8)
  151. sass:
  152. specifier: ^1.70.0
  153. version: 1.70.0
  154. typescript:
  155. specifier: ^5.3.3
  156. version: 5.3.3
  157. vite:
  158. specifier: ^5.0.11
  159. version: 5.0.11(sass@1.70.0)
  160. vite-plugin-monaco-editor:
  161. specifier: ^1.1.0
  162. version: 1.1.0(monaco-editor@0.34.1)
  163. vite-plugin-svgr:
  164. specifier: ^4.2.0
  165. version: 4.2.0(typescript@5.3.3)(vite@5.0.11)
  166. packages:
  167. /@actions/github@5.1.1:
  168. resolution:
  169. {
  170. integrity: sha512-Nk59rMDoJaV+mHCOJPXuvB1zIbomlKS0dmSIqPGxd0enAXBnOfn4VWF+CGtRCwXZG9Epa54tZA7VIRlJDS8A6g==,
  171. }
  172. dependencies:
  173. "@actions/http-client": 2.2.0
  174. "@octokit/core": 3.6.0
  175. "@octokit/plugin-paginate-rest": 2.21.3(@octokit/core@3.6.0)
  176. "@octokit/plugin-rest-endpoint-methods": 5.16.2(@octokit/core@3.6.0)
  177. transitivePeerDependencies:
  178. - encoding
  179. dev: true
  180. /@actions/http-client@2.2.0:
  181. resolution:
  182. {
  183. integrity: sha512-q+epW0trjVUUHboliPb4UF9g2msf+w61b32tAkFEwL/IwP0DQWgbCMM0Hbe3e3WXSKz5VcUXbzJQgy8Hkra/Lg==,
  184. }
  185. dependencies:
  186. tunnel: 0.0.6
  187. undici: 5.28.2
  188. dev: true
  189. /@ampproject/remapping@2.2.1:
  190. resolution:
  191. {
  192. integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==,
  193. }
  194. engines: { node: ">=6.0.0" }
  195. dependencies:
  196. "@jridgewell/gen-mapping": 0.3.3
  197. "@jridgewell/trace-mapping": 0.3.21
  198. dev: true
  199. /@babel/code-frame@7.23.5:
  200. resolution:
  201. {
  202. integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==,
  203. }
  204. engines: { node: ">=6.9.0" }
  205. dependencies:
  206. "@babel/highlight": 7.23.4
  207. chalk: 2.4.2
  208. /@babel/compat-data@7.23.5:
  209. resolution:
  210. {
  211. integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==,
  212. }
  213. engines: { node: ">=6.9.0" }
  214. dev: true
  215. /@babel/core@7.23.7:
  216. resolution:
  217. {
  218. integrity: sha512-+UpDgowcmqe36d4NwqvKsyPMlOLNGMsfMmQ5WGCu+siCe3t3dfe9njrzGfdN4qq+bcNUt0+Vw6haRxBOycs4dw==,
  219. }
  220. engines: { node: ">=6.9.0" }
  221. dependencies:
  222. "@ampproject/remapping": 2.2.1
  223. "@babel/code-frame": 7.23.5
  224. "@babel/generator": 7.23.6
  225. "@babel/helper-compilation-targets": 7.23.6
  226. "@babel/helper-module-transforms": 7.23.3(@babel/core@7.23.7)
  227. "@babel/helpers": 7.23.8
  228. "@babel/parser": 7.23.6
  229. "@babel/template": 7.22.15
  230. "@babel/traverse": 7.23.7
  231. "@babel/types": 7.23.6
  232. convert-source-map: 2.0.0
  233. debug: 4.3.4
  234. gensync: 1.0.0-beta.2
  235. json5: 2.2.3
  236. semver: 6.3.1
  237. transitivePeerDependencies:
  238. - supports-color
  239. dev: true
  240. /@babel/generator@7.23.6:
  241. resolution:
  242. {
  243. integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==,
  244. }
  245. engines: { node: ">=6.9.0" }
  246. dependencies:
  247. "@babel/types": 7.23.6
  248. "@jridgewell/gen-mapping": 0.3.3
  249. "@jridgewell/trace-mapping": 0.3.21
  250. jsesc: 2.5.2
  251. dev: true
  252. /@babel/helper-compilation-targets@7.23.6:
  253. resolution:
  254. {
  255. integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==,
  256. }
  257. engines: { node: ">=6.9.0" }
  258. dependencies:
  259. "@babel/compat-data": 7.23.5
  260. "@babel/helper-validator-option": 7.23.5
  261. browserslist: 4.22.2
  262. lru-cache: 5.1.1
  263. semver: 6.3.1
  264. dev: true
  265. /@babel/helper-environment-visitor@7.22.20:
  266. resolution:
  267. {
  268. integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==,
  269. }
  270. engines: { node: ">=6.9.0" }
  271. dev: true
  272. /@babel/helper-function-name@7.23.0:
  273. resolution:
  274. {
  275. integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==,
  276. }
  277. engines: { node: ">=6.9.0" }
  278. dependencies:
  279. "@babel/template": 7.22.15
  280. "@babel/types": 7.23.6
  281. dev: true
  282. /@babel/helper-hoist-variables@7.22.5:
  283. resolution:
  284. {
  285. integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==,
  286. }
  287. engines: { node: ">=6.9.0" }
  288. dependencies:
  289. "@babel/types": 7.23.6
  290. dev: true
  291. /@babel/helper-module-imports@7.22.15:
  292. resolution:
  293. {
  294. integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==,
  295. }
  296. engines: { node: ">=6.9.0" }
  297. dependencies:
  298. "@babel/types": 7.23.6
  299. /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.7):
  300. resolution:
  301. {
  302. integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==,
  303. }
  304. engines: { node: ">=6.9.0" }
  305. peerDependencies:
  306. "@babel/core": ^7.0.0
  307. dependencies:
  308. "@babel/core": 7.23.7
  309. "@babel/helper-environment-visitor": 7.22.20
  310. "@babel/helper-module-imports": 7.22.15
  311. "@babel/helper-simple-access": 7.22.5
  312. "@babel/helper-split-export-declaration": 7.22.6
  313. "@babel/helper-validator-identifier": 7.22.20
  314. dev: true
  315. /@babel/helper-plugin-utils@7.22.5:
  316. resolution:
  317. {
  318. integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==,
  319. }
  320. engines: { node: ">=6.9.0" }
  321. dev: true
  322. /@babel/helper-simple-access@7.22.5:
  323. resolution:
  324. {
  325. integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==,
  326. }
  327. engines: { node: ">=6.9.0" }
  328. dependencies:
  329. "@babel/types": 7.23.6
  330. dev: true
  331. /@babel/helper-split-export-declaration@7.22.6:
  332. resolution:
  333. {
  334. integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==,
  335. }
  336. engines: { node: ">=6.9.0" }
  337. dependencies:
  338. "@babel/types": 7.23.6
  339. dev: true
  340. /@babel/helper-string-parser@7.23.4:
  341. resolution:
  342. {
  343. integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==,
  344. }
  345. engines: { node: ">=6.9.0" }
  346. /@babel/helper-validator-identifier@7.22.20:
  347. resolution:
  348. {
  349. integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==,
  350. }
  351. engines: { node: ">=6.9.0" }
  352. /@babel/helper-validator-option@7.23.5:
  353. resolution:
  354. {
  355. integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==,
  356. }
  357. engines: { node: ">=6.9.0" }
  358. dev: true
  359. /@babel/helpers@7.23.8:
  360. resolution:
  361. {
  362. integrity: sha512-KDqYz4PiOWvDFrdHLPhKtCThtIcKVy6avWD2oG4GEvyQ+XDZwHD4YQd+H2vNMnq2rkdxsDkU82T+Vk8U/WXHRQ==,
  363. }
  364. engines: { node: ">=6.9.0" }
  365. dependencies:
  366. "@babel/template": 7.22.15
  367. "@babel/traverse": 7.23.7
  368. "@babel/types": 7.23.6
  369. transitivePeerDependencies:
  370. - supports-color
  371. dev: true
  372. /@babel/highlight@7.23.4:
  373. resolution:
  374. {
  375. integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==,
  376. }
  377. engines: { node: ">=6.9.0" }
  378. dependencies:
  379. "@babel/helper-validator-identifier": 7.22.20
  380. chalk: 2.4.2
  381. js-tokens: 4.0.0
  382. /@babel/parser@7.23.6:
  383. resolution:
  384. {
  385. integrity: sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==,
  386. }
  387. engines: { node: ">=6.0.0" }
  388. hasBin: true
  389. dependencies:
  390. "@babel/types": 7.23.6
  391. dev: true
  392. /@babel/plugin-transform-react-jsx-self@7.23.3(@babel/core@7.23.7):
  393. resolution:
  394. {
  395. integrity: sha512-qXRvbeKDSfwnlJnanVRp0SfuWE5DQhwQr5xtLBzp56Wabyo+4CMosF6Kfp+eOD/4FYpql64XVJ2W0pVLlJZxOQ==,
  396. }
  397. engines: { node: ">=6.9.0" }
  398. peerDependencies:
  399. "@babel/core": ^7.0.0-0
  400. dependencies:
  401. "@babel/core": 7.23.7
  402. "@babel/helper-plugin-utils": 7.22.5
  403. dev: true
  404. /@babel/plugin-transform-react-jsx-source@7.23.3(@babel/core@7.23.7):
  405. resolution:
  406. {
  407. integrity: sha512-91RS0MDnAWDNvGC6Wio5XYkyWI39FMFO+JK9+4AlgaTH+yWwVTsw7/sn6LK0lH7c5F+TFkpv/3LfCJ1Ydwof/g==,
  408. }
  409. engines: { node: ">=6.9.0" }
  410. peerDependencies:
  411. "@babel/core": ^7.0.0-0
  412. dependencies:
  413. "@babel/core": 7.23.7
  414. "@babel/helper-plugin-utils": 7.22.5
  415. dev: true
  416. /@babel/runtime@7.23.8:
  417. resolution:
  418. {
  419. integrity: sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw==,
  420. }
  421. engines: { node: ">=6.9.0" }
  422. dependencies:
  423. regenerator-runtime: 0.14.1
  424. dev: false
  425. /@babel/template@7.22.15:
  426. resolution:
  427. {
  428. integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==,
  429. }
  430. engines: { node: ">=6.9.0" }
  431. dependencies:
  432. "@babel/code-frame": 7.23.5
  433. "@babel/parser": 7.23.6
  434. "@babel/types": 7.23.6
  435. dev: true
  436. /@babel/traverse@7.23.7:
  437. resolution:
  438. {
  439. integrity: sha512-tY3mM8rH9jM0YHFGyfC0/xf+SB5eKUu7HPj7/k3fpi9dAlsMc5YbQvDi0Sh2QTPXqMhyaAtzAr807TIyfQrmyg==,
  440. }
  441. engines: { node: ">=6.9.0" }
  442. dependencies:
  443. "@babel/code-frame": 7.23.5
  444. "@babel/generator": 7.23.6
  445. "@babel/helper-environment-visitor": 7.22.20
  446. "@babel/helper-function-name": 7.23.0
  447. "@babel/helper-hoist-variables": 7.22.5
  448. "@babel/helper-split-export-declaration": 7.22.6
  449. "@babel/parser": 7.23.6
  450. "@babel/types": 7.23.6
  451. debug: 4.3.4
  452. globals: 11.12.0
  453. transitivePeerDependencies:
  454. - supports-color
  455. dev: true
  456. /@babel/types@7.23.6:
  457. resolution:
  458. {
  459. integrity: sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==,
  460. }
  461. engines: { node: ">=6.9.0" }
  462. dependencies:
  463. "@babel/helper-string-parser": 7.23.4
  464. "@babel/helper-validator-identifier": 7.22.20
  465. to-fast-properties: 2.0.0
  466. /@dnd-kit/accessibility@3.1.0(react@18.2.0):
  467. resolution:
  468. {
  469. integrity: sha512-ea7IkhKvlJUv9iSHJOnxinBcoOI3ppGnnL+VDJ75O45Nss6HtZd8IdN8touXPDtASfeI2T2LImb8VOZcL47wjQ==,
  470. }
  471. peerDependencies:
  472. react: ">=16.8.0"
  473. dependencies:
  474. react: 18.2.0
  475. tslib: 2.6.2
  476. dev: false
  477. /@dnd-kit/core@6.1.0(react-dom@18.2.0)(react@18.2.0):
  478. resolution:
  479. {
  480. integrity: sha512-J3cQBClB4TVxwGo3KEjssGEXNJqGVWx17aRTZ1ob0FliR5IjYgTxl5YJbKTzA6IzrtelotH19v6y7uoIRUZPSg==,
  481. }
  482. peerDependencies:
  483. react: ">=16.8.0"
  484. react-dom: ">=16.8.0"
  485. dependencies:
  486. "@dnd-kit/accessibility": 3.1.0(react@18.2.0)
  487. "@dnd-kit/utilities": 3.2.2(react@18.2.0)
  488. react: 18.2.0
  489. react-dom: 18.2.0(react@18.2.0)
  490. tslib: 2.6.2
  491. dev: false
  492. /@dnd-kit/sortable@8.0.0(@dnd-kit/core@6.1.0)(react@18.2.0):
  493. resolution:
  494. {
  495. integrity: sha512-U3jk5ebVXe1Lr7c2wU7SBZjcWdQP+j7peHJfCspnA81enlu88Mgd7CC8Q+pub9ubP7eKVETzJW+IBAhsqbSu/g==,
  496. }
  497. peerDependencies:
  498. "@dnd-kit/core": ^6.1.0
  499. react: ">=16.8.0"
  500. dependencies:
  501. "@dnd-kit/core": 6.1.0(react-dom@18.2.0)(react@18.2.0)
  502. "@dnd-kit/utilities": 3.2.2(react@18.2.0)
  503. react: 18.2.0
  504. tslib: 2.6.2
  505. dev: false
  506. /@dnd-kit/utilities@3.2.2(react@18.2.0):
  507. resolution:
  508. {
  509. integrity: sha512-+MKAJEOfaBe5SmV6t34p80MMKhjvUz0vRrvVJbPT0WElzaOJ/1xs+D+KDv+tD/NE5ujfrChEcshd4fLn0wpiqg==,
  510. }
  511. peerDependencies:
  512. react: ">=16.8.0"
  513. dependencies:
  514. react: 18.2.0
  515. tslib: 2.6.2
  516. dev: false
  517. /@emotion/babel-plugin@11.11.0:
  518. resolution:
  519. {
  520. integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==,
  521. }
  522. dependencies:
  523. "@babel/helper-module-imports": 7.22.15
  524. "@babel/runtime": 7.23.8
  525. "@emotion/hash": 0.9.1
  526. "@emotion/memoize": 0.8.1
  527. "@emotion/serialize": 1.1.3
  528. babel-plugin-macros: 3.1.0
  529. convert-source-map: 1.9.0
  530. escape-string-regexp: 4.0.0
  531. find-root: 1.1.0
  532. source-map: 0.5.7
  533. stylis: 4.2.0
  534. dev: false
  535. /@emotion/cache@11.11.0:
  536. resolution:
  537. {
  538. integrity: sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==,
  539. }
  540. dependencies:
  541. "@emotion/memoize": 0.8.1
  542. "@emotion/sheet": 1.2.2
  543. "@emotion/utils": 1.2.1
  544. "@emotion/weak-memoize": 0.3.1
  545. stylis: 4.2.0
  546. dev: false
  547. /@emotion/hash@0.9.1:
  548. resolution:
  549. {
  550. integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==,
  551. }
  552. dev: false
  553. /@emotion/is-prop-valid@1.2.1:
  554. resolution:
  555. {
  556. integrity: sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==,
  557. }
  558. dependencies:
  559. "@emotion/memoize": 0.8.1
  560. dev: false
  561. /@emotion/memoize@0.8.1:
  562. resolution:
  563. {
  564. integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==,
  565. }
  566. dev: false
  567. /@emotion/react@11.11.3(@types/react@18.2.48)(react@18.2.0):
  568. resolution:
  569. {
  570. integrity: sha512-Cnn0kuq4DoONOMcnoVsTOR8E+AdnKFf//6kUWc4LCdnxj31pZWn7rIULd6Y7/Js1PiPHzn7SKCM9vB/jBni8eA==,
  571. }
  572. peerDependencies:
  573. "@types/react": "*"
  574. react: ">=16.8.0"
  575. peerDependenciesMeta:
  576. "@types/react":
  577. optional: true
  578. dependencies:
  579. "@babel/runtime": 7.23.8
  580. "@emotion/babel-plugin": 11.11.0
  581. "@emotion/cache": 11.11.0
  582. "@emotion/serialize": 1.1.3
  583. "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.2.0)
  584. "@emotion/utils": 1.2.1
  585. "@emotion/weak-memoize": 0.3.1
  586. "@types/react": 18.2.48
  587. hoist-non-react-statics: 3.3.2
  588. react: 18.2.0
  589. dev: false
  590. /@emotion/serialize@1.1.3:
  591. resolution:
  592. {
  593. integrity: sha512-iD4D6QVZFDhcbH0RAG1uVu1CwVLMWUkCvAqqlewO/rxf8+87yIBAlt4+AxMiiKPLs5hFc0owNk/sLLAOROw3cA==,
  594. }
  595. dependencies:
  596. "@emotion/hash": 0.9.1
  597. "@emotion/memoize": 0.8.1
  598. "@emotion/unitless": 0.8.1
  599. "@emotion/utils": 1.2.1
  600. csstype: 3.1.3
  601. dev: false
  602. /@emotion/sheet@1.2.2:
  603. resolution:
  604. {
  605. integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==,
  606. }
  607. dev: false
  608. /@emotion/styled@11.11.0(@emotion/react@11.11.3)(@types/react@18.2.48)(react@18.2.0):
  609. resolution:
  610. {
  611. integrity: sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng==,
  612. }
  613. peerDependencies:
  614. "@emotion/react": ^11.0.0-rc.0
  615. "@types/react": "*"
  616. react: ">=16.8.0"
  617. peerDependenciesMeta:
  618. "@types/react":
  619. optional: true
  620. dependencies:
  621. "@babel/runtime": 7.23.8
  622. "@emotion/babel-plugin": 11.11.0
  623. "@emotion/is-prop-valid": 1.2.1
  624. "@emotion/react": 11.11.3(@types/react@18.2.48)(react@18.2.0)
  625. "@emotion/serialize": 1.1.3
  626. "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.2.0)
  627. "@emotion/utils": 1.2.1
  628. "@types/react": 18.2.48
  629. react: 18.2.0
  630. dev: false
  631. /@emotion/unitless@0.8.1:
  632. resolution:
  633. {
  634. integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==,
  635. }
  636. dev: false
  637. /@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.2.0):
  638. resolution:
  639. {
  640. integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==,
  641. }
  642. peerDependencies:
  643. react: ">=16.8.0"
  644. dependencies:
  645. react: 18.2.0
  646. dev: false
  647. /@emotion/utils@1.2.1:
  648. resolution:
  649. {
  650. integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==,
  651. }
  652. dev: false
  653. /@emotion/weak-memoize@0.3.1:
  654. resolution:
  655. {
  656. integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==,
  657. }
  658. dev: false
  659. /@esbuild/aix-ppc64@0.19.11:
  660. resolution:
  661. {
  662. integrity: sha512-FnzU0LyE3ySQk7UntJO4+qIiQgI7KoODnZg5xzXIrFJlKd2P2gwHsHY4927xj9y5PJmJSzULiUCWmv7iWnNa7g==,
  663. }
  664. engines: { node: ">=12" }
  665. cpu: [ppc64]
  666. os: [aix]
  667. requiresBuild: true
  668. dev: true
  669. optional: true
  670. /@esbuild/android-arm64@0.19.11:
  671. resolution:
  672. {
  673. integrity: sha512-aiu7K/5JnLj//KOnOfEZ0D90obUkRzDMyqd/wNAUQ34m4YUPVhRZpnqKV9uqDGxT7cToSDnIHsGooyIczu9T+Q==,
  674. }
  675. engines: { node: ">=12" }
  676. cpu: [arm64]
  677. os: [android]
  678. requiresBuild: true
  679. dev: true
  680. optional: true
  681. /@esbuild/android-arm@0.19.11:
  682. resolution:
  683. {
  684. integrity: sha512-5OVapq0ClabvKvQ58Bws8+wkLCV+Rxg7tUVbo9xu034Nm536QTII4YzhaFriQ7rMrorfnFKUsArD2lqKbFY4vw==,
  685. }
  686. engines: { node: ">=12" }
  687. cpu: [arm]
  688. os: [android]
  689. requiresBuild: true
  690. dev: true
  691. optional: true
  692. /@esbuild/android-x64@0.19.11:
  693. resolution:
  694. {
  695. integrity: sha512-eccxjlfGw43WYoY9QgB82SgGgDbibcqyDTlk3l3C0jOVHKxrjdc9CTwDUQd0vkvYg5um0OH+GpxYvp39r+IPOg==,
  696. }
  697. engines: { node: ">=12" }
  698. cpu: [x64]
  699. os: [android]
  700. requiresBuild: true
  701. dev: true
  702. optional: true
  703. /@esbuild/darwin-arm64@0.19.11:
  704. resolution:
  705. {
  706. integrity: sha512-ETp87DRWuSt9KdDVkqSoKoLFHYTrkyz2+65fj9nfXsaV3bMhTCjtQfw3y+um88vGRKRiF7erPrh/ZuIdLUIVxQ==,
  707. }
  708. engines: { node: ">=12" }
  709. cpu: [arm64]
  710. os: [darwin]
  711. requiresBuild: true
  712. dev: true
  713. optional: true
  714. /@esbuild/darwin-x64@0.19.11:
  715. resolution:
  716. {
  717. integrity: sha512-fkFUiS6IUK9WYUO/+22omwetaSNl5/A8giXvQlcinLIjVkxwTLSktbF5f/kJMftM2MJp9+fXqZ5ezS7+SALp4g==,
  718. }
  719. engines: { node: ">=12" }
  720. cpu: [x64]
  721. os: [darwin]
  722. requiresBuild: true
  723. dev: true
  724. optional: true
  725. /@esbuild/freebsd-arm64@0.19.11:
  726. resolution:
  727. {
  728. integrity: sha512-lhoSp5K6bxKRNdXUtHoNc5HhbXVCS8V0iZmDvyWvYq9S5WSfTIHU2UGjcGt7UeS6iEYp9eeymIl5mJBn0yiuxA==,
  729. }
  730. engines: { node: ">=12" }
  731. cpu: [arm64]
  732. os: [freebsd]
  733. requiresBuild: true
  734. dev: true
  735. optional: true
  736. /@esbuild/freebsd-x64@0.19.11:
  737. resolution:
  738. {
  739. integrity: sha512-JkUqn44AffGXitVI6/AbQdoYAq0TEullFdqcMY/PCUZ36xJ9ZJRtQabzMA+Vi7r78+25ZIBosLTOKnUXBSi1Kw==,
  740. }
  741. engines: { node: ">=12" }
  742. cpu: [x64]
  743. os: [freebsd]
  744. requiresBuild: true
  745. dev: true
  746. optional: true
  747. /@esbuild/linux-arm64@0.19.11:
  748. resolution:
  749. {
  750. integrity: sha512-LneLg3ypEeveBSMuoa0kwMpCGmpu8XQUh+mL8XXwoYZ6Be2qBnVtcDI5azSvh7vioMDhoJFZzp9GWp9IWpYoUg==,
  751. }
  752. engines: { node: ">=12" }
  753. cpu: [arm64]
  754. os: [linux]
  755. requiresBuild: true
  756. dev: true
  757. optional: true
  758. /@esbuild/linux-arm@0.19.11:
  759. resolution:
  760. {
  761. integrity: sha512-3CRkr9+vCV2XJbjwgzjPtO8T0SZUmRZla+UL1jw+XqHZPkPgZiyWvbDvl9rqAN8Zl7qJF0O/9ycMtjU67HN9/Q==,
  762. }
  763. engines: { node: ">=12" }
  764. cpu: [arm]
  765. os: [linux]
  766. requiresBuild: true
  767. dev: true
  768. optional: true
  769. /@esbuild/linux-ia32@0.19.11:
  770. resolution:
  771. {
  772. integrity: sha512-caHy++CsD8Bgq2V5CodbJjFPEiDPq8JJmBdeyZ8GWVQMjRD0sU548nNdwPNvKjVpamYYVL40AORekgfIubwHoA==,
  773. }
  774. engines: { node: ">=12" }
  775. cpu: [ia32]
  776. os: [linux]
  777. requiresBuild: true
  778. dev: true
  779. optional: true
  780. /@esbuild/linux-loong64@0.19.11:
  781. resolution:
  782. {
  783. integrity: sha512-ppZSSLVpPrwHccvC6nQVZaSHlFsvCQyjnvirnVjbKSHuE5N24Yl8F3UwYUUR1UEPaFObGD2tSvVKbvR+uT1Nrg==,
  784. }
  785. engines: { node: ">=12" }
  786. cpu: [loong64]
  787. os: [linux]
  788. requiresBuild: true
  789. dev: true
  790. optional: true
  791. /@esbuild/linux-mips64el@0.19.11:
  792. resolution:
  793. {
  794. integrity: sha512-B5x9j0OgjG+v1dF2DkH34lr+7Gmv0kzX6/V0afF41FkPMMqaQ77pH7CrhWeR22aEeHKaeZVtZ6yFwlxOKPVFyg==,
  795. }
  796. engines: { node: ">=12" }
  797. cpu: [mips64el]
  798. os: [linux]
  799. requiresBuild: true
  800. dev: true
  801. optional: true
  802. /@esbuild/linux-ppc64@0.19.11:
  803. resolution:
  804. {
  805. integrity: sha512-MHrZYLeCG8vXblMetWyttkdVRjQlQUb/oMgBNurVEnhj4YWOr4G5lmBfZjHYQHHN0g6yDmCAQRR8MUHldvvRDA==,
  806. }
  807. engines: { node: ">=12" }
  808. cpu: [ppc64]
  809. os: [linux]
  810. requiresBuild: true
  811. dev: true
  812. optional: true
  813. /@esbuild/linux-riscv64@0.19.11:
  814. resolution:
  815. {
  816. integrity: sha512-f3DY++t94uVg141dozDu4CCUkYW+09rWtaWfnb3bqe4w5NqmZd6nPVBm+qbz7WaHZCoqXqHz5p6CM6qv3qnSSQ==,
  817. }
  818. engines: { node: ">=12" }
  819. cpu: [riscv64]
  820. os: [linux]
  821. requiresBuild: true
  822. dev: true
  823. optional: true
  824. /@esbuild/linux-s390x@0.19.11:
  825. resolution:
  826. {
  827. integrity: sha512-A5xdUoyWJHMMlcSMcPGVLzYzpcY8QP1RtYzX5/bS4dvjBGVxdhuiYyFwp7z74ocV7WDc0n1harxmpq2ePOjI0Q==,
  828. }
  829. engines: { node: ">=12" }
  830. cpu: [s390x]
  831. os: [linux]
  832. requiresBuild: true
  833. dev: true
  834. optional: true
  835. /@esbuild/linux-x64@0.19.11:
  836. resolution:
  837. {
  838. integrity: sha512-grbyMlVCvJSfxFQUndw5mCtWs5LO1gUlwP4CDi4iJBbVpZcqLVT29FxgGuBJGSzyOxotFG4LoO5X+M1350zmPA==,
  839. }
  840. engines: { node: ">=12" }
  841. cpu: [x64]
  842. os: [linux]
  843. requiresBuild: true
  844. dev: true
  845. optional: true
  846. /@esbuild/netbsd-x64@0.19.11:
  847. resolution:
  848. {
  849. integrity: sha512-13jvrQZJc3P230OhU8xgwUnDeuC/9egsjTkXN49b3GcS5BKvJqZn86aGM8W9pd14Kd+u7HuFBMVtrNGhh6fHEQ==,
  850. }
  851. engines: { node: ">=12" }
  852. cpu: [x64]
  853. os: [netbsd]
  854. requiresBuild: true
  855. dev: true
  856. optional: true
  857. /@esbuild/openbsd-x64@0.19.11:
  858. resolution:
  859. {
  860. integrity: sha512-ysyOGZuTp6SNKPE11INDUeFVVQFrhcNDVUgSQVDzqsqX38DjhPEPATpid04LCoUr2WXhQTEZ8ct/EgJCUDpyNw==,
  861. }
  862. engines: { node: ">=12" }
  863. cpu: [x64]
  864. os: [openbsd]
  865. requiresBuild: true
  866. dev: true
  867. optional: true
  868. /@esbuild/sunos-x64@0.19.11:
  869. resolution:
  870. {
  871. integrity: sha512-Hf+Sad9nVwvtxy4DXCZQqLpgmRTQqyFyhT3bZ4F2XlJCjxGmRFF0Shwn9rzhOYRB61w9VMXUkxlBy56dk9JJiQ==,
  872. }
  873. engines: { node: ">=12" }
  874. cpu: [x64]
  875. os: [sunos]
  876. requiresBuild: true
  877. dev: true
  878. optional: true
  879. /@esbuild/win32-arm64@0.19.11:
  880. resolution:
  881. {
  882. integrity: sha512-0P58Sbi0LctOMOQbpEOvOL44Ne0sqbS0XWHMvvrg6NE5jQ1xguCSSw9jQeUk2lfrXYsKDdOe6K+oZiwKPilYPQ==,
  883. }
  884. engines: { node: ">=12" }
  885. cpu: [arm64]
  886. os: [win32]
  887. requiresBuild: true
  888. dev: true
  889. optional: true
  890. /@esbuild/win32-ia32@0.19.11:
  891. resolution:
  892. {
  893. integrity: sha512-6YOrWS+sDJDmshdBIQU+Uoyh7pQKrdykdefC1avn76ss5c+RN6gut3LZA4E2cH5xUEp5/cA0+YxRaVtRAb0xBg==,
  894. }
  895. engines: { node: ">=12" }
  896. cpu: [ia32]
  897. os: [win32]
  898. requiresBuild: true
  899. dev: true
  900. optional: true
  901. /@esbuild/win32-x64@0.19.11:
  902. resolution:
  903. {
  904. integrity: sha512-vfkhltrjCAb603XaFhqhAF4LGDi2M4OrCRrFusyQ+iTLQ/o60QQXxc9cZC/FFpihBI9N1Grn6SMKVJ4KP7Fuiw==,
  905. }
  906. engines: { node: ">=12" }
  907. cpu: [x64]
  908. os: [win32]
  909. requiresBuild: true
  910. dev: true
  911. optional: true
  912. /@fastify/busboy@2.1.0:
  913. resolution:
  914. {
  915. integrity: sha512-+KpH+QxZU7O4675t3mnkQKcZZg56u+K/Ct2K+N2AZYNVK8kyeo/bI18tI8aPm3tvNNRyTWfj6s5tnGNlcbQRsA==,
  916. }
  917. engines: { node: ">=14" }
  918. dev: true
  919. /@floating-ui/core@1.5.3:
  920. resolution:
  921. {
  922. integrity: sha512-O0WKDOo0yhJuugCx6trZQj5jVJ9yR0ystG2JaNAemYUWce+pmM6WUEFIibnWyEJKdrDxhm75NoSRME35FNaM/Q==,
  923. }
  924. dependencies:
  925. "@floating-ui/utils": 0.2.1
  926. dev: false
  927. /@floating-ui/dom@1.5.4:
  928. resolution:
  929. {
  930. integrity: sha512-jByEsHIY+eEdCjnTVu+E3ephzTOzkQ8hgUfGwos+bg7NlH33Zc5uO+QHz1mrQUOgIKKDD1RtS201P9NvAfq3XQ==,
  931. }
  932. dependencies:
  933. "@floating-ui/core": 1.5.3
  934. "@floating-ui/utils": 0.2.1
  935. dev: false
  936. /@floating-ui/react-dom@2.0.6(react-dom@18.2.0)(react@18.2.0):
  937. resolution:
  938. {
  939. integrity: sha512-IB8aCRFxr8nFkdYZgH+Otd9EVQPJoynxeFRGTB8voPoZMRWo8XjYuCRgpI1btvuKY69XMiLnW+ym7zoBHM90Rw==,
  940. }
  941. peerDependencies:
  942. react: ">=16.8.0"
  943. react-dom: ">=16.8.0"
  944. dependencies:
  945. "@floating-ui/dom": 1.5.4
  946. react: 18.2.0
  947. react-dom: 18.2.0(react@18.2.0)
  948. dev: false
  949. /@floating-ui/utils@0.2.1:
  950. resolution:
  951. {
  952. integrity: sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==,
  953. }
  954. dev: false
  955. /@jridgewell/gen-mapping@0.3.3:
  956. resolution:
  957. {
  958. integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==,
  959. }
  960. engines: { node: ">=6.0.0" }
  961. dependencies:
  962. "@jridgewell/set-array": 1.1.2
  963. "@jridgewell/sourcemap-codec": 1.4.15
  964. "@jridgewell/trace-mapping": 0.3.21
  965. dev: true
  966. /@jridgewell/resolve-uri@3.1.1:
  967. resolution:
  968. {
  969. integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==,
  970. }
  971. engines: { node: ">=6.0.0" }
  972. dev: true
  973. /@jridgewell/set-array@1.1.2:
  974. resolution:
  975. {
  976. integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==,
  977. }
  978. engines: { node: ">=6.0.0" }
  979. dev: true
  980. /@jridgewell/sourcemap-codec@1.4.15:
  981. resolution:
  982. {
  983. integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==,
  984. }
  985. dev: true
  986. /@jridgewell/trace-mapping@0.3.21:
  987. resolution:
  988. {
  989. integrity: sha512-SRfKmRe1KvYnxjEMtxEr+J4HIeMX5YBg/qhRHpxEIGjhX1rshcHlnFUE9K0GazhVKWM7B+nARSkV8LuvJdJ5/g==,
  990. }
  991. dependencies:
  992. "@jridgewell/resolve-uri": 3.1.1
  993. "@jridgewell/sourcemap-codec": 1.4.15
  994. dev: true
  995. /@juggle/resize-observer@3.4.0:
  996. resolution:
  997. {
  998. integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==,
  999. }
  1000. dev: false
  1001. /@mui/base@5.0.0-beta.20(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
  1002. resolution:
  1003. {
  1004. integrity: sha512-CS2pUuqxST7ch9VNDCklRYDbJ3rru20Tx7na92QvVVKfu3RL4z/QLuVIc8jYGsdCnauMaeUSlFNLAJNb0yXe6w==,
  1005. }
  1006. engines: { node: ">=12.0.0" }
  1007. peerDependencies:
  1008. "@types/react": ^17.0.0 || ^18.0.0
  1009. react: ^17.0.0 || ^18.0.0
  1010. react-dom: ^17.0.0 || ^18.0.0
  1011. peerDependenciesMeta:
  1012. "@types/react":
  1013. optional: true
  1014. dependencies:
  1015. "@babel/runtime": 7.23.8
  1016. "@floating-ui/react-dom": 2.0.6(react-dom@18.2.0)(react@18.2.0)
  1017. "@mui/types": 7.2.13(@types/react@18.2.48)
  1018. "@mui/utils": 5.15.5(@types/react@18.2.48)(react@18.2.0)
  1019. "@popperjs/core": 2.11.8
  1020. "@types/react": 18.2.48
  1021. clsx: 2.1.0
  1022. prop-types: 15.8.1
  1023. react: 18.2.0
  1024. react-dom: 18.2.0(react@18.2.0)
  1025. dev: false
  1026. /@mui/base@5.0.0-beta.32(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
  1027. resolution:
  1028. {
  1029. integrity: sha512-4VptvYeLUYMJhZapWBkD50GmKfOc0XT381KJcTK3ncZYIl8MdBhpR6l8jOyeP5cixUPBJhstjrnmQEAHjCLriw==,
  1030. }
  1031. engines: { node: ">=12.0.0" }
  1032. peerDependencies:
  1033. "@types/react": ^17.0.0 || ^18.0.0
  1034. react: ^17.0.0 || ^18.0.0
  1035. react-dom: ^17.0.0 || ^18.0.0
  1036. peerDependenciesMeta:
  1037. "@types/react":
  1038. optional: true
  1039. dependencies:
  1040. "@babel/runtime": 7.23.8
  1041. "@floating-ui/react-dom": 2.0.6(react-dom@18.2.0)(react@18.2.0)
  1042. "@mui/types": 7.2.13(@types/react@18.2.48)
  1043. "@mui/utils": 5.15.5(@types/react@18.2.48)(react@18.2.0)
  1044. "@popperjs/core": 2.11.8
  1045. "@types/react": 18.2.48
  1046. clsx: 2.1.0
  1047. prop-types: 15.8.1
  1048. react: 18.2.0
  1049. react-dom: 18.2.0(react@18.2.0)
  1050. dev: false
  1051. /@mui/core-downloads-tracker@5.15.5:
  1052. resolution:
  1053. {
  1054. integrity: sha512-VhT8klyXy8GrWrARqLMoM6Nzz809Jc3Wn5wd7WOZfre2vFO1rBV1dBANAPBhBqpaQI0HCMRTWEYoSyOFgRnz4A==,
  1055. }
  1056. dev: false
  1057. /@mui/icons-material@5.15.5(@mui/material@5.15.5)(@types/react@18.2.48)(react@18.2.0):
  1058. resolution:
  1059. {
  1060. integrity: sha512-qiql0fd1JY7TZ1wm1RldvU7sL8QUatE9OC12i/qm5rnm/caTFyAfOyTIR7qqxorsJvoZGyrzwoMkal6Ij9kM0A==,
  1061. }
  1062. engines: { node: ">=12.0.0" }
  1063. peerDependencies:
  1064. "@mui/material": ^5.0.0
  1065. "@types/react": ^17.0.0 || ^18.0.0
  1066. react: ^17.0.0 || ^18.0.0
  1067. peerDependenciesMeta:
  1068. "@types/react":
  1069. optional: true
  1070. dependencies:
  1071. "@babel/runtime": 7.23.8
  1072. "@mui/material": 5.15.5(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
  1073. "@types/react": 18.2.48
  1074. react: 18.2.0
  1075. dev: false
  1076. /@mui/lab@5.0.0-alpha.149(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@mui/material@5.15.5)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
  1077. resolution:
  1078. {
  1079. integrity: sha512-azOkKcyVX4KBZAqSp7eRD4OfKrUrvQXo7x2BjFJil+UeAJiMpB6I5lALo2PDZz3vjtJnHqlURnZtxZOHs1zfEA==,
  1080. }
  1081. engines: { node: ">=12.0.0" }
  1082. peerDependencies:
  1083. "@emotion/react": ^11.5.0
  1084. "@emotion/styled": ^11.3.0
  1085. "@mui/material": ^5.0.0
  1086. "@types/react": ^17.0.0 || ^18.0.0
  1087. react: ^17.0.0 || ^18.0.0
  1088. react-dom: ^17.0.0 || ^18.0.0
  1089. peerDependenciesMeta:
  1090. "@emotion/react":
  1091. optional: true
  1092. "@emotion/styled":
  1093. optional: true
  1094. "@types/react":
  1095. optional: true
  1096. dependencies:
  1097. "@babel/runtime": 7.23.8
  1098. "@emotion/react": 11.11.3(@types/react@18.2.48)(react@18.2.0)
  1099. "@emotion/styled": 11.11.0(@emotion/react@11.11.3)(@types/react@18.2.48)(react@18.2.0)
  1100. "@mui/base": 5.0.0-beta.20(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
  1101. "@mui/material": 5.15.5(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
  1102. "@mui/system": 5.15.5(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@types/react@18.2.48)(react@18.2.0)
  1103. "@mui/types": 7.2.13(@types/react@18.2.48)
  1104. "@mui/utils": 5.15.5(@types/react@18.2.48)(react@18.2.0)
  1105. "@mui/x-tree-view": 6.0.0-alpha.1(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@mui/base@5.0.0-beta.20)(@mui/material@5.15.5)(@mui/system@5.15.5)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
  1106. "@types/react": 18.2.48
  1107. clsx: 2.1.0
  1108. prop-types: 15.8.1
  1109. react: 18.2.0
  1110. react-dom: 18.2.0(react@18.2.0)
  1111. dev: false
  1112. /@mui/material@5.15.5(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
  1113. resolution:
  1114. {
  1115. integrity: sha512-2KfA39f/UWeQl0O22UJs3x1nG3chYlyu9wnux5vTnxUTLzkgYIzQIHaH+ZOGpv5JiZBMKktAPNfhqyhSaQ49qQ==,
  1116. }
  1117. engines: { node: ">=12.0.0" }
  1118. peerDependencies:
  1119. "@emotion/react": ^11.5.0
  1120. "@emotion/styled": ^11.3.0
  1121. "@types/react": ^17.0.0 || ^18.0.0
  1122. react: ^17.0.0 || ^18.0.0
  1123. react-dom: ^17.0.0 || ^18.0.0
  1124. peerDependenciesMeta:
  1125. "@emotion/react":
  1126. optional: true
  1127. "@emotion/styled":
  1128. optional: true
  1129. "@types/react":
  1130. optional: true
  1131. dependencies:
  1132. "@babel/runtime": 7.23.8
  1133. "@emotion/react": 11.11.3(@types/react@18.2.48)(react@18.2.0)
  1134. "@emotion/styled": 11.11.0(@emotion/react@11.11.3)(@types/react@18.2.48)(react@18.2.0)
  1135. "@mui/base": 5.0.0-beta.32(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
  1136. "@mui/core-downloads-tracker": 5.15.5
  1137. "@mui/system": 5.15.5(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@types/react@18.2.48)(react@18.2.0)
  1138. "@mui/types": 7.2.13(@types/react@18.2.48)
  1139. "@mui/utils": 5.15.5(@types/react@18.2.48)(react@18.2.0)
  1140. "@types/react": 18.2.48
  1141. "@types/react-transition-group": 4.4.10
  1142. clsx: 2.1.0
  1143. csstype: 3.1.3
  1144. prop-types: 15.8.1
  1145. react: 18.2.0
  1146. react-dom: 18.2.0(react@18.2.0)
  1147. react-is: 18.2.0
  1148. react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0)
  1149. dev: false
  1150. /@mui/private-theming@5.15.5(@types/react@18.2.48)(react@18.2.0):
  1151. resolution:
  1152. {
  1153. integrity: sha512-HU1KCyGNcJFsUamTbOM539ZDZJNI/XU7sZFdsN29glktUf+T6hNvDuO2ISinBiLTZy7Ab3R6DSSoYXRrLc4uwQ==,
  1154. }
  1155. engines: { node: ">=12.0.0" }
  1156. peerDependencies:
  1157. "@types/react": ^17.0.0 || ^18.0.0
  1158. react: ^17.0.0 || ^18.0.0
  1159. peerDependenciesMeta:
  1160. "@types/react":
  1161. optional: true
  1162. dependencies:
  1163. "@babel/runtime": 7.23.8
  1164. "@mui/utils": 5.15.5(@types/react@18.2.48)(react@18.2.0)
  1165. "@types/react": 18.2.48
  1166. prop-types: 15.8.1
  1167. react: 18.2.0
  1168. dev: false
  1169. /@mui/styled-engine@5.15.5(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(react@18.2.0):
  1170. resolution:
  1171. {
  1172. integrity: sha512-xoMUd8h270thNL7ZsOzmlluIAMsQg/HT7SCdRjPBVle+XHgTKaiWiRy1ekDOsrrF0rhjME3T7xeeUq2G269UUw==,
  1173. }
  1174. engines: { node: ">=12.0.0" }
  1175. peerDependencies:
  1176. "@emotion/react": ^11.4.1
  1177. "@emotion/styled": ^11.3.0
  1178. react: ^17.0.0 || ^18.0.0
  1179. peerDependenciesMeta:
  1180. "@emotion/react":
  1181. optional: true
  1182. "@emotion/styled":
  1183. optional: true
  1184. dependencies:
  1185. "@babel/runtime": 7.23.8
  1186. "@emotion/cache": 11.11.0
  1187. "@emotion/react": 11.11.3(@types/react@18.2.48)(react@18.2.0)
  1188. "@emotion/styled": 11.11.0(@emotion/react@11.11.3)(@types/react@18.2.48)(react@18.2.0)
  1189. csstype: 3.1.3
  1190. prop-types: 15.8.1
  1191. react: 18.2.0
  1192. dev: false
  1193. /@mui/system@5.15.5(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@types/react@18.2.48)(react@18.2.0):
  1194. resolution:
  1195. {
  1196. integrity: sha512-DMv2vGjUKaDt/m0RlzvLjpKiS5V0LoBhiMUHf5pWdj6uoNlN4FuKUe4pFeYmQMIO5DnVZKybmpPepfkdfEH+Og==,
  1197. }
  1198. engines: { node: ">=12.0.0" }
  1199. peerDependencies:
  1200. "@emotion/react": ^11.5.0
  1201. "@emotion/styled": ^11.3.0
  1202. "@types/react": ^17.0.0 || ^18.0.0
  1203. react: ^17.0.0 || ^18.0.0
  1204. peerDependenciesMeta:
  1205. "@emotion/react":
  1206. optional: true
  1207. "@emotion/styled":
  1208. optional: true
  1209. "@types/react":
  1210. optional: true
  1211. dependencies:
  1212. "@babel/runtime": 7.23.8
  1213. "@emotion/react": 11.11.3(@types/react@18.2.48)(react@18.2.0)
  1214. "@emotion/styled": 11.11.0(@emotion/react@11.11.3)(@types/react@18.2.48)(react@18.2.0)
  1215. "@mui/private-theming": 5.15.5(@types/react@18.2.48)(react@18.2.0)
  1216. "@mui/styled-engine": 5.15.5(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(react@18.2.0)
  1217. "@mui/types": 7.2.13(@types/react@18.2.48)
  1218. "@mui/utils": 5.15.5(@types/react@18.2.48)(react@18.2.0)
  1219. "@types/react": 18.2.48
  1220. clsx: 2.1.0
  1221. csstype: 3.1.3
  1222. prop-types: 15.8.1
  1223. react: 18.2.0
  1224. dev: false
  1225. /@mui/types@7.2.13(@types/react@18.2.48):
  1226. resolution:
  1227. {
  1228. integrity: sha512-qP9OgacN62s+l8rdDhSFRe05HWtLLJ5TGclC9I1+tQngbssu0m2dmFZs+Px53AcOs9fD7TbYd4gc9AXzVqO/+g==,
  1229. }
  1230. peerDependencies:
  1231. "@types/react": ^17.0.0 || ^18.0.0
  1232. peerDependenciesMeta:
  1233. "@types/react":
  1234. optional: true
  1235. dependencies:
  1236. "@types/react": 18.2.48
  1237. dev: false
  1238. /@mui/utils@5.15.5(@types/react@18.2.48)(react@18.2.0):
  1239. resolution:
  1240. {
  1241. integrity: sha512-jEywgaMGZWPSlVFO7ZZAyXxNeLmq5XBp5At9Ne/sGohRJdesUcdxvyi8TP3odJxwQuL5L6PJV+JQ4DyIDM849A==,
  1242. }
  1243. engines: { node: ">=12.0.0" }
  1244. peerDependencies:
  1245. "@types/react": ^17.0.0 || ^18.0.0
  1246. react: ^17.0.0 || ^18.0.0
  1247. peerDependenciesMeta:
  1248. "@types/react":
  1249. optional: true
  1250. dependencies:
  1251. "@babel/runtime": 7.23.8
  1252. "@types/prop-types": 15.7.11
  1253. "@types/react": 18.2.48
  1254. prop-types: 15.8.1
  1255. react: 18.2.0
  1256. react-is: 18.2.0
  1257. dev: false
  1258. /@mui/x-data-grid@6.18.7(@mui/material@5.15.5)(@mui/system@5.15.5)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
  1259. resolution:
  1260. {
  1261. integrity: sha512-K1A3pMUPxI4/Mt5A4vrK45fBBQK5rZvBVqRMrB5n8zX++Bj+WLWKvLTtfCmlriUtzuadr/Hl7Z+FDRXUJAx6qg==,
  1262. }
  1263. engines: { node: ">=14.0.0" }
  1264. peerDependencies:
  1265. "@mui/material": ^5.4.1
  1266. "@mui/system": ^5.4.1
  1267. react: ^17.0.0 || ^18.0.0
  1268. react-dom: ^17.0.0 || ^18.0.0
  1269. dependencies:
  1270. "@babel/runtime": 7.23.8
  1271. "@mui/material": 5.15.5(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
  1272. "@mui/system": 5.15.5(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@types/react@18.2.48)(react@18.2.0)
  1273. "@mui/utils": 5.15.5(@types/react@18.2.48)(react@18.2.0)
  1274. clsx: 2.1.0
  1275. prop-types: 15.8.1
  1276. react: 18.2.0
  1277. react-dom: 18.2.0(react@18.2.0)
  1278. reselect: 4.1.8
  1279. transitivePeerDependencies:
  1280. - "@types/react"
  1281. dev: false
  1282. /@mui/x-tree-view@6.0.0-alpha.1(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@mui/base@5.0.0-beta.20)(@mui/material@5.15.5)(@mui/system@5.15.5)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
  1283. resolution:
  1284. {
  1285. integrity: sha512-JUG3HmBrmGEALbCFg1b+i7h726e1dWYZs4db3syO1j+Q++E3nbvE4Lehp5yGTFm+8esH0Tny50tuJaa4WX6VSA==,
  1286. }
  1287. engines: { node: ">=14.0.0" }
  1288. peerDependencies:
  1289. "@emotion/react": ^11.9.0
  1290. "@emotion/styled": ^11.8.1
  1291. "@mui/base": ^5.0.0-alpha.87
  1292. "@mui/material": ^5.8.6
  1293. "@mui/system": ^5.8.0
  1294. react: ^17.0.0 || ^18.0.0
  1295. react-dom: ^17.0.0 || ^18.0.0
  1296. dependencies:
  1297. "@babel/runtime": 7.23.8
  1298. "@emotion/react": 11.11.3(@types/react@18.2.48)(react@18.2.0)
  1299. "@emotion/styled": 11.11.0(@emotion/react@11.11.3)(@types/react@18.2.48)(react@18.2.0)
  1300. "@mui/base": 5.0.0-beta.20(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
  1301. "@mui/material": 5.15.5(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
  1302. "@mui/system": 5.15.5(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@types/react@18.2.48)(react@18.2.0)
  1303. "@mui/utils": 5.15.5(@types/react@18.2.48)(react@18.2.0)
  1304. "@types/react-transition-group": 4.4.10
  1305. clsx: 2.1.0
  1306. prop-types: 15.8.1
  1307. react: 18.2.0
  1308. react-dom: 18.2.0(react@18.2.0)
  1309. react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0)
  1310. transitivePeerDependencies:
  1311. - "@types/react"
  1312. dev: false
  1313. /@octokit/auth-token@2.5.0:
  1314. resolution:
  1315. {
  1316. integrity: sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==,
  1317. }
  1318. dependencies:
  1319. "@octokit/types": 6.41.0
  1320. dev: true
  1321. /@octokit/core@3.6.0:
  1322. resolution:
  1323. {
  1324. integrity: sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q==,
  1325. }
  1326. dependencies:
  1327. "@octokit/auth-token": 2.5.0
  1328. "@octokit/graphql": 4.8.0
  1329. "@octokit/request": 5.6.3
  1330. "@octokit/request-error": 2.1.0
  1331. "@octokit/types": 6.41.0
  1332. before-after-hook: 2.2.3
  1333. universal-user-agent: 6.0.1
  1334. transitivePeerDependencies:
  1335. - encoding
  1336. dev: true
  1337. /@octokit/endpoint@6.0.12:
  1338. resolution:
  1339. {
  1340. integrity: sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==,
  1341. }
  1342. dependencies:
  1343. "@octokit/types": 6.41.0
  1344. is-plain-object: 5.0.0
  1345. universal-user-agent: 6.0.1
  1346. dev: true
  1347. /@octokit/graphql@4.8.0:
  1348. resolution:
  1349. {
  1350. integrity: sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==,
  1351. }
  1352. dependencies:
  1353. "@octokit/request": 5.6.3
  1354. "@octokit/types": 6.41.0
  1355. universal-user-agent: 6.0.1
  1356. transitivePeerDependencies:
  1357. - encoding
  1358. dev: true
  1359. /@octokit/openapi-types@12.11.0:
  1360. resolution:
  1361. {
  1362. integrity: sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==,
  1363. }
  1364. dev: true
  1365. /@octokit/plugin-paginate-rest@2.21.3(@octokit/core@3.6.0):
  1366. resolution:
  1367. {
  1368. integrity: sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw==,
  1369. }
  1370. peerDependencies:
  1371. "@octokit/core": ">=2"
  1372. dependencies:
  1373. "@octokit/core": 3.6.0
  1374. "@octokit/types": 6.41.0
  1375. dev: true
  1376. /@octokit/plugin-rest-endpoint-methods@5.16.2(@octokit/core@3.6.0):
  1377. resolution:
  1378. {
  1379. integrity: sha512-8QFz29Fg5jDuTPXVtey05BLm7OB+M8fnvE64RNegzX7U+5NUXcOcnpTIK0YfSHBg8gYd0oxIq3IZTe9SfPZiRw==,
  1380. }
  1381. peerDependencies:
  1382. "@octokit/core": ">=3"
  1383. dependencies:
  1384. "@octokit/core": 3.6.0
  1385. "@octokit/types": 6.41.0
  1386. deprecation: 2.3.1
  1387. dev: true
  1388. /@octokit/request-error@2.1.0:
  1389. resolution:
  1390. {
  1391. integrity: sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==,
  1392. }
  1393. dependencies:
  1394. "@octokit/types": 6.41.0
  1395. deprecation: 2.3.1
  1396. once: 1.4.0
  1397. dev: true
  1398. /@octokit/request@5.6.3:
  1399. resolution:
  1400. {
  1401. integrity: sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==,
  1402. }
  1403. dependencies:
  1404. "@octokit/endpoint": 6.0.12
  1405. "@octokit/request-error": 2.1.0
  1406. "@octokit/types": 6.41.0
  1407. is-plain-object: 5.0.0
  1408. node-fetch: 2.7.0
  1409. universal-user-agent: 6.0.1
  1410. transitivePeerDependencies:
  1411. - encoding
  1412. dev: true
  1413. /@octokit/types@6.41.0:
  1414. resolution:
  1415. {
  1416. integrity: sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==,
  1417. }
  1418. dependencies:
  1419. "@octokit/openapi-types": 12.11.0
  1420. dev: true
  1421. /@popperjs/core@2.11.8:
  1422. resolution:
  1423. {
  1424. integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==,
  1425. }
  1426. dev: false
  1427. /@remix-run/router@1.14.2:
  1428. resolution:
  1429. {
  1430. integrity: sha512-ACXpdMM9hmKZww21yEqWwiLws/UPLhNKvimN8RrYSqPSvB3ov7sLvAcfvaxePeLvccTQKGdkDIhLYApZVDFuKg==,
  1431. }
  1432. engines: { node: ">=14.0.0" }
  1433. dev: false
  1434. /@rollup/pluginutils@5.1.0:
  1435. resolution:
  1436. {
  1437. integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==,
  1438. }
  1439. engines: { node: ">=14.0.0" }
  1440. peerDependencies:
  1441. rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
  1442. peerDependenciesMeta:
  1443. rollup:
  1444. optional: true
  1445. dependencies:
  1446. "@types/estree": 1.0.5
  1447. estree-walker: 2.0.2
  1448. picomatch: 2.3.1
  1449. dev: true
  1450. /@rollup/rollup-android-arm-eabi@4.9.5:
  1451. resolution:
  1452. {
  1453. integrity: sha512-idWaG8xeSRCfRq9KpRysDHJ/rEHBEXcHuJ82XY0yYFIWnLMjZv9vF/7DOq8djQ2n3Lk6+3qfSH8AqlmHlmi1MA==,
  1454. }
  1455. cpu: [arm]
  1456. os: [android]
  1457. requiresBuild: true
  1458. dev: true
  1459. optional: true
  1460. /@rollup/rollup-android-arm64@4.9.5:
  1461. resolution:
  1462. {
  1463. integrity: sha512-f14d7uhAMtsCGjAYwZGv6TwuS3IFaM4ZnGMUn3aCBgkcHAYErhV1Ad97WzBvS2o0aaDv4mVz+syiN0ElMyfBPg==,
  1464. }
  1465. cpu: [arm64]
  1466. os: [android]
  1467. requiresBuild: true
  1468. dev: true
  1469. optional: true
  1470. /@rollup/rollup-darwin-arm64@4.9.5:
  1471. resolution:
  1472. {
  1473. integrity: sha512-ndoXeLx455FffL68OIUrVr89Xu1WLzAG4n65R8roDlCoYiQcGGg6MALvs2Ap9zs7AHg8mpHtMpwC8jBBjZrT/w==,
  1474. }
  1475. cpu: [arm64]
  1476. os: [darwin]
  1477. requiresBuild: true
  1478. dev: true
  1479. optional: true
  1480. /@rollup/rollup-darwin-x64@4.9.5:
  1481. resolution:
  1482. {
  1483. integrity: sha512-UmElV1OY2m/1KEEqTlIjieKfVwRg0Zwg4PLgNf0s3glAHXBN99KLpw5A5lrSYCa1Kp63czTpVll2MAqbZYIHoA==,
  1484. }
  1485. cpu: [x64]
  1486. os: [darwin]
  1487. requiresBuild: true
  1488. dev: true
  1489. optional: true
  1490. /@rollup/rollup-linux-arm-gnueabihf@4.9.5:
  1491. resolution:
  1492. {
  1493. integrity: sha512-Q0LcU61v92tQB6ae+udZvOyZ0wfpGojtAKrrpAaIqmJ7+psq4cMIhT/9lfV6UQIpeItnq/2QDROhNLo00lOD1g==,
  1494. }
  1495. cpu: [arm]
  1496. os: [linux]
  1497. requiresBuild: true
  1498. dev: true
  1499. optional: true
  1500. /@rollup/rollup-linux-arm64-gnu@4.9.5:
  1501. resolution:
  1502. {
  1503. integrity: sha512-dkRscpM+RrR2Ee3eOQmRWFjmV/payHEOrjyq1VZegRUa5OrZJ2MAxBNs05bZuY0YCtpqETDy1Ix4i/hRqX98cA==,
  1504. }
  1505. cpu: [arm64]
  1506. os: [linux]
  1507. libc: [glibc]
  1508. requiresBuild: true
  1509. dev: true
  1510. optional: true
  1511. /@rollup/rollup-linux-arm64-musl@4.9.5:
  1512. resolution:
  1513. {
  1514. integrity: sha512-QaKFVOzzST2xzY4MAmiDmURagWLFh+zZtttuEnuNn19AiZ0T3fhPyjPPGwLNdiDT82ZE91hnfJsUiDwF9DClIQ==,
  1515. }
  1516. cpu: [arm64]
  1517. os: [linux]
  1518. libc: [musl]
  1519. requiresBuild: true
  1520. dev: true
  1521. optional: true
  1522. /@rollup/rollup-linux-riscv64-gnu@4.9.5:
  1523. resolution:
  1524. {
  1525. integrity: sha512-HeGqmRJuyVg6/X6MpE2ur7GbymBPS8Np0S/vQFHDmocfORT+Zt76qu+69NUoxXzGqVP1pzaY6QIi0FJWLC3OPA==,
  1526. }
  1527. cpu: [riscv64]
  1528. os: [linux]
  1529. libc: [glibc]
  1530. requiresBuild: true
  1531. dev: true
  1532. optional: true
  1533. /@rollup/rollup-linux-x64-gnu@4.9.5:
  1534. resolution:
  1535. {
  1536. integrity: sha512-Dq1bqBdLaZ1Gb/l2e5/+o3B18+8TI9ANlA1SkejZqDgdU/jK/ThYaMPMJpVMMXy2uRHvGKbkz9vheVGdq3cJfA==,
  1537. }
  1538. cpu: [x64]
  1539. os: [linux]
  1540. libc: [glibc]
  1541. requiresBuild: true
  1542. dev: true
  1543. optional: true
  1544. /@rollup/rollup-linux-x64-musl@4.9.5:
  1545. resolution:
  1546. {
  1547. integrity: sha512-ezyFUOwldYpj7AbkwyW9AJ203peub81CaAIVvckdkyH8EvhEIoKzaMFJj0G4qYJ5sw3BpqhFrsCc30t54HV8vg==,
  1548. }
  1549. cpu: [x64]
  1550. os: [linux]
  1551. libc: [musl]
  1552. requiresBuild: true
  1553. dev: true
  1554. optional: true
  1555. /@rollup/rollup-win32-arm64-msvc@4.9.5:
  1556. resolution:
  1557. {
  1558. integrity: sha512-aHSsMnUw+0UETB0Hlv7B/ZHOGY5bQdwMKJSzGfDfvyhnpmVxLMGnQPGNE9wgqkLUs3+gbG1Qx02S2LLfJ5GaRQ==,
  1559. }
  1560. cpu: [arm64]
  1561. os: [win32]
  1562. requiresBuild: true
  1563. dev: true
  1564. optional: true
  1565. /@rollup/rollup-win32-ia32-msvc@4.9.5:
  1566. resolution:
  1567. {
  1568. integrity: sha512-AiqiLkb9KSf7Lj/o1U3SEP9Zn+5NuVKgFdRIZkvd4N0+bYrTOovVd0+LmYCPQGbocT4kvFyK+LXCDiXPBF3fyA==,
  1569. }
  1570. cpu: [ia32]
  1571. os: [win32]
  1572. requiresBuild: true
  1573. dev: true
  1574. optional: true
  1575. /@rollup/rollup-win32-x64-msvc@4.9.5:
  1576. resolution:
  1577. {
  1578. integrity: sha512-1q+mykKE3Vot1kaFJIDoUFv5TuW+QQVaf2FmTT9krg86pQrGStOSJJ0Zil7CFagyxDuouTepzt5Y5TVzyajOdQ==,
  1579. }
  1580. cpu: [x64]
  1581. os: [win32]
  1582. requiresBuild: true
  1583. dev: true
  1584. optional: true
  1585. /@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.23.7):
  1586. resolution:
  1587. {
  1588. integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==,
  1589. }
  1590. engines: { node: ">=14" }
  1591. peerDependencies:
  1592. "@babel/core": ^7.0.0-0
  1593. dependencies:
  1594. "@babel/core": 7.23.7
  1595. dev: true
  1596. /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.23.7):
  1597. resolution:
  1598. {
  1599. integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==,
  1600. }
  1601. engines: { node: ">=14" }
  1602. peerDependencies:
  1603. "@babel/core": ^7.0.0-0
  1604. dependencies:
  1605. "@babel/core": 7.23.7
  1606. dev: true
  1607. /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.23.7):
  1608. resolution:
  1609. {
  1610. integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==,
  1611. }
  1612. engines: { node: ">=14" }
  1613. peerDependencies:
  1614. "@babel/core": ^7.0.0-0
  1615. dependencies:
  1616. "@babel/core": 7.23.7
  1617. dev: true
  1618. /@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.23.7):
  1619. resolution:
  1620. {
  1621. integrity: sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==,
  1622. }
  1623. engines: { node: ">=14" }
  1624. peerDependencies:
  1625. "@babel/core": ^7.0.0-0
  1626. dependencies:
  1627. "@babel/core": 7.23.7
  1628. dev: true
  1629. /@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.23.7):
  1630. resolution:
  1631. {
  1632. integrity: sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==,
  1633. }
  1634. engines: { node: ">=14" }
  1635. peerDependencies:
  1636. "@babel/core": ^7.0.0-0
  1637. dependencies:
  1638. "@babel/core": 7.23.7
  1639. dev: true
  1640. /@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.23.7):
  1641. resolution:
  1642. {
  1643. integrity: sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==,
  1644. }
  1645. engines: { node: ">=14" }
  1646. peerDependencies:
  1647. "@babel/core": ^7.0.0-0
  1648. dependencies:
  1649. "@babel/core": 7.23.7
  1650. dev: true
  1651. /@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.23.7):
  1652. resolution:
  1653. {
  1654. integrity: sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==,
  1655. }
  1656. engines: { node: ">=14" }
  1657. peerDependencies:
  1658. "@babel/core": ^7.0.0-0
  1659. dependencies:
  1660. "@babel/core": 7.23.7
  1661. dev: true
  1662. /@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.23.7):
  1663. resolution:
  1664. {
  1665. integrity: sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==,
  1666. }
  1667. engines: { node: ">=12" }
  1668. peerDependencies:
  1669. "@babel/core": ^7.0.0-0
  1670. dependencies:
  1671. "@babel/core": 7.23.7
  1672. dev: true
  1673. /@svgr/babel-preset@8.1.0(@babel/core@7.23.7):
  1674. resolution:
  1675. {
  1676. integrity: sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==,
  1677. }
  1678. engines: { node: ">=14" }
  1679. peerDependencies:
  1680. "@babel/core": ^7.0.0-0
  1681. dependencies:
  1682. "@babel/core": 7.23.7
  1683. "@svgr/babel-plugin-add-jsx-attribute": 8.0.0(@babel/core@7.23.7)
  1684. "@svgr/babel-plugin-remove-jsx-attribute": 8.0.0(@babel/core@7.23.7)
  1685. "@svgr/babel-plugin-remove-jsx-empty-expression": 8.0.0(@babel/core@7.23.7)
  1686. "@svgr/babel-plugin-replace-jsx-attribute-value": 8.0.0(@babel/core@7.23.7)
  1687. "@svgr/babel-plugin-svg-dynamic-title": 8.0.0(@babel/core@7.23.7)
  1688. "@svgr/babel-plugin-svg-em-dimensions": 8.0.0(@babel/core@7.23.7)
  1689. "@svgr/babel-plugin-transform-react-native-svg": 8.1.0(@babel/core@7.23.7)
  1690. "@svgr/babel-plugin-transform-svg-component": 8.0.0(@babel/core@7.23.7)
  1691. dev: true
  1692. /@svgr/core@8.1.0(typescript@5.3.3):
  1693. resolution:
  1694. {
  1695. integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==,
  1696. }
  1697. engines: { node: ">=14" }
  1698. dependencies:
  1699. "@babel/core": 7.23.7
  1700. "@svgr/babel-preset": 8.1.0(@babel/core@7.23.7)
  1701. camelcase: 6.3.0
  1702. cosmiconfig: 8.3.6(typescript@5.3.3)
  1703. snake-case: 3.0.4
  1704. transitivePeerDependencies:
  1705. - supports-color
  1706. - typescript
  1707. dev: true
  1708. /@svgr/hast-util-to-babel-ast@8.0.0:
  1709. resolution:
  1710. {
  1711. integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==,
  1712. }
  1713. engines: { node: ">=14" }
  1714. dependencies:
  1715. "@babel/types": 7.23.6
  1716. entities: 4.5.0
  1717. dev: true
  1718. /@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0):
  1719. resolution:
  1720. {
  1721. integrity: sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==,
  1722. }
  1723. engines: { node: ">=14" }
  1724. peerDependencies:
  1725. "@svgr/core": "*"
  1726. dependencies:
  1727. "@babel/core": 7.23.7
  1728. "@svgr/babel-preset": 8.1.0(@babel/core@7.23.7)
  1729. "@svgr/core": 8.1.0(typescript@5.3.3)
  1730. "@svgr/hast-util-to-babel-ast": 8.0.0
  1731. svg-parser: 2.0.4
  1732. transitivePeerDependencies:
  1733. - supports-color
  1734. dev: true
  1735. /@tauri-apps/api@1.5.3:
  1736. resolution:
  1737. {
  1738. integrity: sha512-zxnDjHHKjOsrIzZm6nO5Xapb/BxqUq1tc7cGkFXsFkGTsSWgCPH1D8mm0XS9weJY2OaR73I3k3S+b7eSzJDfqA==,
  1739. }
  1740. engines: { node: ">= 14.6.0", npm: ">= 6.6.0", yarn: ">= 1.19.1" }
  1741. dev: false
  1742. /@tauri-apps/cli-darwin-arm64@1.5.9:
  1743. resolution:
  1744. {
  1745. integrity: sha512-7C2Jf8f0gzv778mLYb7Eszqqv1bm9Wzews81MRTqKrUIcC+eZEtDXLex+JaEkEzFEUrgIafdOvMBVEavF030IA==,
  1746. }
  1747. engines: { node: ">= 10" }
  1748. cpu: [arm64]
  1749. os: [darwin]
  1750. requiresBuild: true
  1751. dev: true
  1752. optional: true
  1753. /@tauri-apps/cli-darwin-x64@1.5.9:
  1754. resolution:
  1755. {
  1756. integrity: sha512-LHKytpkofPYgH8RShWvwDa3hD1ws131x7g7zNasJPfOiCWLqYVQFUuQVmjEUt8+dpHe/P/err5h4z+YZru2d0A==,
  1757. }
  1758. engines: { node: ">= 10" }
  1759. cpu: [x64]
  1760. os: [darwin]
  1761. requiresBuild: true
  1762. dev: true
  1763. optional: true
  1764. /@tauri-apps/cli-linux-arm-gnueabihf@1.5.9:
  1765. resolution:
  1766. {
  1767. integrity: sha512-teGK20IYKx+dVn8wFq/Lg57Q9ce7foq1KHSfyHi464LVt1T0V1rsmULSgZpQPPj/NYPF5BG78PcWYv64yH86jw==,
  1768. }
  1769. engines: { node: ">= 10" }
  1770. cpu: [arm]
  1771. os: [linux]
  1772. requiresBuild: true
  1773. dev: true
  1774. optional: true
  1775. /@tauri-apps/cli-linux-arm64-gnu@1.5.9:
  1776. resolution:
  1777. {
  1778. integrity: sha512-onJ/DW5Crw38qVx+wquY4uBbfCxVhzhdJmlCYqnYyXsZZmSiPUfSyhV58y+5TYB0q1hG8eYdB5x8VAwzByhGzw==,
  1779. }
  1780. engines: { node: ">= 10" }
  1781. cpu: [arm64]
  1782. os: [linux]
  1783. libc: [glibc]
  1784. requiresBuild: true
  1785. dev: true
  1786. optional: true
  1787. /@tauri-apps/cli-linux-arm64-musl@1.5.9:
  1788. resolution:
  1789. {
  1790. integrity: sha512-23AYoLD3acakLp9NtheKQDJl8F66eTOflxoPzdJNRy13hUSxb+W9qpz4rRA+CIzkjICFvO2i3UWjeV9QwDVpsQ==,
  1791. }
  1792. engines: { node: ">= 10" }
  1793. cpu: [arm64]
  1794. os: [linux]
  1795. libc: [musl]
  1796. requiresBuild: true
  1797. dev: true
  1798. optional: true
  1799. /@tauri-apps/cli-linux-x64-gnu@1.5.9:
  1800. resolution:
  1801. {
  1802. integrity: sha512-9PQA1rE7gh41W2ylyKd5qOGOds55ymaYPml9KOpM0g+cxmCXa+8Wf9K5NKvACnJldJJ6cekWzIyB4eN6o5T+yQ==,
  1803. }
  1804. engines: { node: ">= 10" }
  1805. cpu: [x64]
  1806. os: [linux]
  1807. libc: [glibc]
  1808. requiresBuild: true
  1809. dev: true
  1810. optional: true
  1811. /@tauri-apps/cli-linux-x64-musl@1.5.9:
  1812. resolution:
  1813. {
  1814. integrity: sha512-5hdbNFeDsrJ/pXZ4cSQV4bJwUXPPxXxN3/pAtNUqIph7q+vLcBXOXIMoS64iuyaluJC59lhEwlWZFz+EPv0Hqg==,
  1815. }
  1816. engines: { node: ">= 10" }
  1817. cpu: [x64]
  1818. os: [linux]
  1819. libc: [musl]
  1820. requiresBuild: true
  1821. dev: true
  1822. optional: true
  1823. /@tauri-apps/cli-win32-arm64-msvc@1.5.9:
  1824. resolution:
  1825. {
  1826. integrity: sha512-O18JufjSB3hSJYu5WWByONouGeX7DraLAtXLErsG1r/VS3zHd/zyuzycrVUaObNXk5bfGlIP0Ypt+RvZJILN2w==,
  1827. }
  1828. engines: { node: ">= 10" }
  1829. cpu: [arm64]
  1830. os: [win32]
  1831. requiresBuild: true
  1832. dev: true
  1833. optional: true
  1834. /@tauri-apps/cli-win32-ia32-msvc@1.5.9:
  1835. resolution:
  1836. {
  1837. integrity: sha512-FQxtxTZu0JVBihfd/lmpxo7jyMOesjWQehfyVUqtgMfm5+Pvvw0Y+ZioeDi1TZkFVrT3QDYy8R4LqDLSZVMQRA==,
  1838. }
  1839. engines: { node: ">= 10" }
  1840. cpu: [ia32]
  1841. os: [win32]
  1842. requiresBuild: true
  1843. dev: true
  1844. optional: true
  1845. /@tauri-apps/cli-win32-x64-msvc@1.5.9:
  1846. resolution:
  1847. {
  1848. integrity: sha512-EeI1+L518cIBLKw0qUFwnLIySBeSmPQjPLIlNwSukHSro4tAQPHycEVGgKrdToiCWgaZJBA0e5aRSds0Du2TWg==,
  1849. }
  1850. engines: { node: ">= 10" }
  1851. cpu: [x64]
  1852. os: [win32]
  1853. requiresBuild: true
  1854. dev: true
  1855. optional: true
  1856. /@tauri-apps/cli@1.5.9:
  1857. resolution:
  1858. {
  1859. integrity: sha512-knSt/9AvCTeyfC6wkyeouF9hBW/0Mzuw+5vBKEvzaGPQsfFJo1ZCp5FkdiZpGBBfnm09BhugasGRTGofzatfqQ==,
  1860. }
  1861. engines: { node: ">= 10" }
  1862. hasBin: true
  1863. optionalDependencies:
  1864. "@tauri-apps/cli-darwin-arm64": 1.5.9
  1865. "@tauri-apps/cli-darwin-x64": 1.5.9
  1866. "@tauri-apps/cli-linux-arm-gnueabihf": 1.5.9
  1867. "@tauri-apps/cli-linux-arm64-gnu": 1.5.9
  1868. "@tauri-apps/cli-linux-arm64-musl": 1.5.9
  1869. "@tauri-apps/cli-linux-x64-gnu": 1.5.9
  1870. "@tauri-apps/cli-linux-x64-musl": 1.5.9
  1871. "@tauri-apps/cli-win32-arm64-msvc": 1.5.9
  1872. "@tauri-apps/cli-win32-ia32-msvc": 1.5.9
  1873. "@tauri-apps/cli-win32-x64-msvc": 1.5.9
  1874. dev: true
  1875. /@types/babel__core@7.20.5:
  1876. resolution:
  1877. {
  1878. integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==,
  1879. }
  1880. dependencies:
  1881. "@babel/parser": 7.23.6
  1882. "@babel/types": 7.23.6
  1883. "@types/babel__generator": 7.6.8
  1884. "@types/babel__template": 7.4.4
  1885. "@types/babel__traverse": 7.20.5
  1886. dev: true
  1887. /@types/babel__generator@7.6.8:
  1888. resolution:
  1889. {
  1890. integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==,
  1891. }
  1892. dependencies:
  1893. "@babel/types": 7.23.6
  1894. dev: true
  1895. /@types/babel__template@7.4.4:
  1896. resolution:
  1897. {
  1898. integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==,
  1899. }
  1900. dependencies:
  1901. "@babel/parser": 7.23.6
  1902. "@babel/types": 7.23.6
  1903. dev: true
  1904. /@types/babel__traverse@7.20.5:
  1905. resolution:
  1906. {
  1907. integrity: sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==,
  1908. }
  1909. dependencies:
  1910. "@babel/types": 7.23.6
  1911. dev: true
  1912. /@types/estree@1.0.5:
  1913. resolution:
  1914. {
  1915. integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==,
  1916. }
  1917. dev: true
  1918. /@types/fs-extra@9.0.13:
  1919. resolution:
  1920. {
  1921. integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==,
  1922. }
  1923. dependencies:
  1924. "@types/node": 20.11.5
  1925. dev: true
  1926. /@types/js-cookie@2.2.7:
  1927. resolution:
  1928. {
  1929. integrity: sha512-aLkWa0C0vO5b4Sr798E26QgOkss68Un0bLjs7u9qxzPT5CG+8DuNTffWES58YzJs3hrVAOs1wonycqEBqNJubA==,
  1930. }
  1931. dev: false
  1932. /@types/js-cookie@3.0.6:
  1933. resolution:
  1934. {
  1935. integrity: sha512-wkw9yd1kEXOPnvEeEV1Go1MmxtBJL0RR79aOTAApecWFVu7w0NNXNqhcWgvw2YgZDYadliXkl14pa3WXw5jlCQ==,
  1936. }
  1937. dev: true
  1938. /@types/lodash-es@4.17.12:
  1939. resolution:
  1940. {
  1941. integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==,
  1942. }
  1943. dependencies:
  1944. "@types/lodash": 4.14.202
  1945. dev: true
  1946. /@types/lodash@4.14.202:
  1947. resolution:
  1948. {
  1949. integrity: sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==,
  1950. }
  1951. dev: true
  1952. /@types/node@20.11.5:
  1953. resolution:
  1954. {
  1955. integrity: sha512-g557vgQjUUfN76MZAN/dt1z3dzcUsimuysco0KeluHgrPdJXkP/XdAURgyO2W9fZWHRtRBiVKzKn8vyOAwlG+w==,
  1956. }
  1957. dependencies:
  1958. undici-types: 5.26.5
  1959. dev: true
  1960. /@types/parse-json@4.0.2:
  1961. resolution:
  1962. {
  1963. integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==,
  1964. }
  1965. dev: false
  1966. /@types/prop-types@15.7.11:
  1967. resolution:
  1968. {
  1969. integrity: sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==,
  1970. }
  1971. /@types/react-dom@18.2.18:
  1972. resolution:
  1973. {
  1974. integrity: sha512-TJxDm6OfAX2KJWJdMEVTwWke5Sc/E/RlnPGvGfS0W7+6ocy2xhDVQVh/KvC2Uf7kACs+gDytdusDSdWfWkaNzw==,
  1975. }
  1976. dependencies:
  1977. "@types/react": 18.2.48
  1978. dev: true
  1979. /@types/react-transition-group@4.4.10:
  1980. resolution:
  1981. {
  1982. integrity: sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q==,
  1983. }
  1984. dependencies:
  1985. "@types/react": 18.2.48
  1986. /@types/react@18.2.48:
  1987. resolution:
  1988. {
  1989. integrity: sha512-qboRCl6Ie70DQQG9hhNREz81jqC1cs9EVNcjQ1AU+jH6NFfSAhVVbrrY/+nSF+Bsk4AOwm9Qa61InvMCyV+H3w==,
  1990. }
  1991. dependencies:
  1992. "@types/prop-types": 15.7.11
  1993. "@types/scheduler": 0.16.8
  1994. csstype: 3.1.3
  1995. /@types/scheduler@0.16.8:
  1996. resolution:
  1997. {
  1998. integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==,
  1999. }
  2000. /@vitejs/plugin-react@4.2.1(vite@5.0.11):
  2001. resolution:
  2002. {
  2003. integrity: sha512-oojO9IDc4nCUUi8qIR11KoQm0XFFLIwsRBwHRR4d/88IWghn1y6ckz/bJ8GHDCsYEJee8mDzqtJxh15/cisJNQ==,
  2004. }
  2005. engines: { node: ^14.18.0 || >=16.0.0 }
  2006. peerDependencies:
  2007. vite: ^4.2.0 || ^5.0.0
  2008. dependencies:
  2009. "@babel/core": 7.23.7
  2010. "@babel/plugin-transform-react-jsx-self": 7.23.3(@babel/core@7.23.7)
  2011. "@babel/plugin-transform-react-jsx-source": 7.23.3(@babel/core@7.23.7)
  2012. "@types/babel__core": 7.20.5
  2013. react-refresh: 0.14.0
  2014. vite: 5.0.11(sass@1.70.0)
  2015. transitivePeerDependencies:
  2016. - supports-color
  2017. dev: true
  2018. /adm-zip@0.5.10:
  2019. resolution:
  2020. {
  2021. integrity: sha512-x0HvcHqVJNTPk/Bw8JbLWlWoo6Wwnsug0fnYYro1HBrjxZ3G7/AZk7Ahv8JwDe1uIcz8eBqvu86FuF1POiG7vQ==,
  2022. }
  2023. engines: { node: ">=6.0" }
  2024. dev: true
  2025. /agent-base@6.0.2:
  2026. resolution:
  2027. {
  2028. integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==,
  2029. }
  2030. engines: { node: ">= 6.0.0" }
  2031. dependencies:
  2032. debug: 4.3.4
  2033. transitivePeerDependencies:
  2034. - supports-color
  2035. dev: true
  2036. /ahooks-v3-count@1.0.0:
  2037. resolution:
  2038. {
  2039. integrity: sha512-V7uUvAwnimu6eh/PED4mCDjE7tokeZQLKlxg9lCTMPhN+NjsSbtdacByVlR1oluXQzD3MOw55wylDmQo4+S9ZQ==,
  2040. }
  2041. dev: false
  2042. /ahooks@3.7.8(react@18.2.0):
  2043. resolution:
  2044. {
  2045. integrity: sha512-e/NMlQWoCjaUtncNFIZk3FG1ImSkV/JhScQSkTqnftakRwdfZWSw6zzoWSG9OMYqPNs2MguDYBUFFC6THelWXA==,
  2046. }
  2047. engines: { node: ">=8.0.0" }
  2048. peerDependencies:
  2049. react: ^16.8.0 || ^17.0.0 || ^18.0.0
  2050. dependencies:
  2051. "@babel/runtime": 7.23.8
  2052. "@types/js-cookie": 2.2.7
  2053. ahooks-v3-count: 1.0.0
  2054. dayjs: 1.11.5
  2055. intersection-observer: 0.12.2
  2056. js-cookie: 2.2.1
  2057. lodash: 4.17.21
  2058. react: 18.2.0
  2059. resize-observer-polyfill: 1.5.1
  2060. screenfull: 5.2.0
  2061. tslib: 2.6.2
  2062. dev: false
  2063. /ansi-styles@3.2.1:
  2064. resolution:
  2065. {
  2066. integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==,
  2067. }
  2068. engines: { node: ">=4" }
  2069. dependencies:
  2070. color-convert: 1.9.3
  2071. /anymatch@3.1.3:
  2072. resolution:
  2073. {
  2074. integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==,
  2075. }
  2076. engines: { node: ">= 8" }
  2077. dependencies:
  2078. normalize-path: 3.0.0
  2079. picomatch: 2.3.1
  2080. dev: true
  2081. /argparse@2.0.1:
  2082. resolution:
  2083. {
  2084. integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==,
  2085. }
  2086. dev: true
  2087. /asynckit@0.4.0:
  2088. resolution:
  2089. {
  2090. integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==,
  2091. }
  2092. dev: false
  2093. /axios@1.6.5:
  2094. resolution:
  2095. {
  2096. integrity: sha512-Ii012v05KEVuUoFWmMW/UQv9aRIc3ZwkWDcM+h5Il8izZCtRVpDUfwpoFf7eOtajT3QiGR4yDUx7lPqHJULgbg==,
  2097. }
  2098. dependencies:
  2099. follow-redirects: 1.15.5
  2100. form-data: 4.0.0
  2101. proxy-from-env: 1.1.0
  2102. transitivePeerDependencies:
  2103. - debug
  2104. dev: false
  2105. /babel-plugin-macros@3.1.0:
  2106. resolution:
  2107. {
  2108. integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==,
  2109. }
  2110. engines: { node: ">=10", npm: ">=6" }
  2111. dependencies:
  2112. "@babel/runtime": 7.23.8
  2113. cosmiconfig: 7.1.0
  2114. resolve: 1.22.8
  2115. dev: false
  2116. /before-after-hook@2.2.3:
  2117. resolution:
  2118. {
  2119. integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==,
  2120. }
  2121. dev: true
  2122. /binary-extensions@2.2.0:
  2123. resolution:
  2124. {
  2125. integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==,
  2126. }
  2127. engines: { node: ">=8" }
  2128. dev: true
  2129. /braces@3.0.2:
  2130. resolution:
  2131. {
  2132. integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==,
  2133. }
  2134. engines: { node: ">=8" }
  2135. dependencies:
  2136. fill-range: 7.0.1
  2137. dev: true
  2138. /browserslist@4.22.2:
  2139. resolution:
  2140. {
  2141. integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==,
  2142. }
  2143. engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 }
  2144. hasBin: true
  2145. dependencies:
  2146. caniuse-lite: 1.0.30001579
  2147. electron-to-chromium: 1.4.637
  2148. node-releases: 2.0.14
  2149. update-browserslist-db: 1.0.13(browserslist@4.22.2)
  2150. dev: true
  2151. /callsites@3.1.0:
  2152. resolution:
  2153. {
  2154. integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==,
  2155. }
  2156. engines: { node: ">=6" }
  2157. /camelcase@6.3.0:
  2158. resolution:
  2159. {
  2160. integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==,
  2161. }
  2162. engines: { node: ">=10" }
  2163. dev: true
  2164. /caniuse-lite@1.0.30001579:
  2165. resolution:
  2166. {
  2167. integrity: sha512-u5AUVkixruKHJjw/pj9wISlcMpgFWzSrczLZbrqBSxukQixmg0SJ5sZTpvaFvxU0HoQKd4yoyAogyrAz9pzJnA==,
  2168. }
  2169. dev: true
  2170. /chalk@2.4.2:
  2171. resolution:
  2172. {
  2173. integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==,
  2174. }
  2175. engines: { node: ">=4" }
  2176. dependencies:
  2177. ansi-styles: 3.2.1
  2178. escape-string-regexp: 1.0.5
  2179. supports-color: 5.5.0
  2180. /chokidar@3.5.3:
  2181. resolution:
  2182. {
  2183. integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==,
  2184. }
  2185. engines: { node: ">= 8.10.0" }
  2186. dependencies:
  2187. anymatch: 3.1.3
  2188. braces: 3.0.2
  2189. glob-parent: 5.1.2
  2190. is-binary-path: 2.1.0
  2191. is-glob: 4.0.3
  2192. normalize-path: 3.0.0
  2193. readdirp: 3.6.0
  2194. optionalDependencies:
  2195. fsevents: 2.3.3
  2196. dev: true
  2197. /chownr@2.0.0:
  2198. resolution:
  2199. {
  2200. integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==,
  2201. }
  2202. engines: { node: ">=10" }
  2203. dev: false
  2204. /clsx@2.1.0:
  2205. resolution:
  2206. {
  2207. integrity: sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==,
  2208. }
  2209. engines: { node: ">=6" }
  2210. dev: false
  2211. /color-convert@1.9.3:
  2212. resolution:
  2213. {
  2214. integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==,
  2215. }
  2216. dependencies:
  2217. color-name: 1.1.3
  2218. /color-name@1.1.3:
  2219. resolution:
  2220. {
  2221. integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==,
  2222. }
  2223. /combined-stream@1.0.8:
  2224. resolution:
  2225. {
  2226. integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==,
  2227. }
  2228. engines: { node: ">= 0.8" }
  2229. dependencies:
  2230. delayed-stream: 1.0.0
  2231. dev: false
  2232. /convert-source-map@1.9.0:
  2233. resolution:
  2234. {
  2235. integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==,
  2236. }
  2237. dev: false
  2238. /convert-source-map@2.0.0:
  2239. resolution:
  2240. {
  2241. integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==,
  2242. }
  2243. dev: true
  2244. /cosmiconfig@7.1.0:
  2245. resolution:
  2246. {
  2247. integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==,
  2248. }
  2249. engines: { node: ">=10" }
  2250. dependencies:
  2251. "@types/parse-json": 4.0.2
  2252. import-fresh: 3.3.0
  2253. parse-json: 5.2.0
  2254. path-type: 4.0.0
  2255. yaml: 1.10.2
  2256. dev: false
  2257. /cosmiconfig@8.3.6(typescript@5.3.3):
  2258. resolution:
  2259. {
  2260. integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==,
  2261. }
  2262. engines: { node: ">=14" }
  2263. peerDependencies:
  2264. typescript: ">=4.9.5"
  2265. peerDependenciesMeta:
  2266. typescript:
  2267. optional: true
  2268. dependencies:
  2269. import-fresh: 3.3.0
  2270. js-yaml: 4.1.0
  2271. parse-json: 5.2.0
  2272. path-type: 4.0.0
  2273. typescript: 5.3.3
  2274. dev: true
  2275. /cross-env@7.0.3:
  2276. resolution:
  2277. {
  2278. integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==,
  2279. }
  2280. engines: { node: ">=10.14", npm: ">=6", yarn: ">=1" }
  2281. hasBin: true
  2282. dependencies:
  2283. cross-spawn: 7.0.3
  2284. dev: true
  2285. /cross-spawn@7.0.3:
  2286. resolution:
  2287. {
  2288. integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==,
  2289. }
  2290. engines: { node: ">= 8" }
  2291. dependencies:
  2292. path-key: 3.1.1
  2293. shebang-command: 2.0.0
  2294. which: 2.0.2
  2295. dev: true
  2296. /csstype@3.1.3:
  2297. resolution:
  2298. {
  2299. integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==,
  2300. }
  2301. /data-uri-to-buffer@4.0.1:
  2302. resolution:
  2303. {
  2304. integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==,
  2305. }
  2306. engines: { node: ">= 12" }
  2307. dev: true
  2308. /dayjs@1.11.5:
  2309. resolution:
  2310. {
  2311. integrity: sha512-CAdX5Q3YW3Gclyo5Vpqkgpj8fSdLQcRuzfX6mC6Phy0nfJ0eGYOeS7m4mt2plDWLAtA4TqTakvbboHvUxfe4iA==,
  2312. }
  2313. dev: false
  2314. /debug@4.3.4:
  2315. resolution:
  2316. {
  2317. integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==,
  2318. }
  2319. engines: { node: ">=6.0" }
  2320. peerDependencies:
  2321. supports-color: "*"
  2322. peerDependenciesMeta:
  2323. supports-color:
  2324. optional: true
  2325. dependencies:
  2326. ms: 2.1.2
  2327. dev: true
  2328. /delayed-stream@1.0.0:
  2329. resolution:
  2330. {
  2331. integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==,
  2332. }
  2333. engines: { node: ">=0.4.0" }
  2334. dev: false
  2335. /deprecation@2.3.1:
  2336. resolution:
  2337. {
  2338. integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==,
  2339. }
  2340. dev: true
  2341. /dom-helpers@5.2.1:
  2342. resolution:
  2343. {
  2344. integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==,
  2345. }
  2346. dependencies:
  2347. "@babel/runtime": 7.23.8
  2348. csstype: 3.1.3
  2349. dev: false
  2350. /dot-case@3.0.4:
  2351. resolution:
  2352. {
  2353. integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==,
  2354. }
  2355. dependencies:
  2356. no-case: 3.0.4
  2357. tslib: 2.6.2
  2358. dev: true
  2359. /electron-to-chromium@1.4.637:
  2360. resolution:
  2361. {
  2362. integrity: sha512-G7j3UCOukFtxVO1vWrPQUoDk3kL70mtvjc/DC/k2o7lE0wAdq+Vwp1ipagOow+BH0uVztFysLWbkM/RTIrbK3w==,
  2363. }
  2364. dev: true
  2365. /end-of-stream@1.4.4:
  2366. resolution:
  2367. {
  2368. integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==,
  2369. }
  2370. dependencies:
  2371. once: 1.4.0
  2372. dev: true
  2373. /entities@4.5.0:
  2374. resolution:
  2375. {
  2376. integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==,
  2377. }
  2378. engines: { node: ">=0.12" }
  2379. dev: true
  2380. /error-ex@1.3.2:
  2381. resolution:
  2382. {
  2383. integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==,
  2384. }
  2385. dependencies:
  2386. is-arrayish: 0.2.1
  2387. /esbuild@0.19.11:
  2388. resolution:
  2389. {
  2390. integrity: sha512-HJ96Hev2hX/6i5cDVwcqiJBBtuo9+FeIJOtZ9W1kA5M6AMJRHUZlpYZ1/SbEwtO0ioNAW8rUooVpC/WehY2SfA==,
  2391. }
  2392. engines: { node: ">=12" }
  2393. hasBin: true
  2394. requiresBuild: true
  2395. optionalDependencies:
  2396. "@esbuild/aix-ppc64": 0.19.11
  2397. "@esbuild/android-arm": 0.19.11
  2398. "@esbuild/android-arm64": 0.19.11
  2399. "@esbuild/android-x64": 0.19.11
  2400. "@esbuild/darwin-arm64": 0.19.11
  2401. "@esbuild/darwin-x64": 0.19.11
  2402. "@esbuild/freebsd-arm64": 0.19.11
  2403. "@esbuild/freebsd-x64": 0.19.11
  2404. "@esbuild/linux-arm": 0.19.11
  2405. "@esbuild/linux-arm64": 0.19.11
  2406. "@esbuild/linux-ia32": 0.19.11
  2407. "@esbuild/linux-loong64": 0.19.11
  2408. "@esbuild/linux-mips64el": 0.19.11
  2409. "@esbuild/linux-ppc64": 0.19.11
  2410. "@esbuild/linux-riscv64": 0.19.11
  2411. "@esbuild/linux-s390x": 0.19.11
  2412. "@esbuild/linux-x64": 0.19.11
  2413. "@esbuild/netbsd-x64": 0.19.11
  2414. "@esbuild/openbsd-x64": 0.19.11
  2415. "@esbuild/sunos-x64": 0.19.11
  2416. "@esbuild/win32-arm64": 0.19.11
  2417. "@esbuild/win32-ia32": 0.19.11
  2418. "@esbuild/win32-x64": 0.19.11
  2419. dev: true
  2420. /escalade@3.1.1:
  2421. resolution:
  2422. {
  2423. integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==,
  2424. }
  2425. engines: { node: ">=6" }
  2426. dev: true
  2427. /escape-string-regexp@1.0.5:
  2428. resolution:
  2429. {
  2430. integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==,
  2431. }
  2432. engines: { node: ">=0.8.0" }
  2433. /escape-string-regexp@4.0.0:
  2434. resolution:
  2435. {
  2436. integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==,
  2437. }
  2438. engines: { node: ">=10" }
  2439. dev: false
  2440. /estree-walker@2.0.2:
  2441. resolution:
  2442. {
  2443. integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==,
  2444. }
  2445. dev: true
  2446. /execa@4.1.0:
  2447. resolution:
  2448. {
  2449. integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==,
  2450. }
  2451. engines: { node: ">=10" }
  2452. dependencies:
  2453. cross-spawn: 7.0.3
  2454. get-stream: 5.2.0
  2455. human-signals: 1.1.1
  2456. is-stream: 2.0.1
  2457. merge-stream: 2.0.0
  2458. npm-run-path: 4.0.1
  2459. onetime: 5.1.2
  2460. signal-exit: 3.0.7
  2461. strip-final-newline: 2.0.0
  2462. dev: true
  2463. /fetch-blob@3.2.0:
  2464. resolution:
  2465. {
  2466. integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==,
  2467. }
  2468. engines: { node: ^12.20 || >= 14.13 }
  2469. dependencies:
  2470. node-domexception: 1.0.0
  2471. web-streams-polyfill: 3.3.2
  2472. dev: true
  2473. /fill-range@7.0.1:
  2474. resolution:
  2475. {
  2476. integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==,
  2477. }
  2478. engines: { node: ">=8" }
  2479. dependencies:
  2480. to-regex-range: 5.0.1
  2481. dev: true
  2482. /find-root@1.1.0:
  2483. resolution:
  2484. {
  2485. integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==,
  2486. }
  2487. dev: false
  2488. /find-up@4.1.0:
  2489. resolution:
  2490. {
  2491. integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==,
  2492. }
  2493. engines: { node: ">=8" }
  2494. dependencies:
  2495. locate-path: 5.0.0
  2496. path-exists: 4.0.0
  2497. dev: true
  2498. /follow-redirects@1.15.5:
  2499. resolution:
  2500. {
  2501. integrity: sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==,
  2502. }
  2503. engines: { node: ">=4.0" }
  2504. peerDependencies:
  2505. debug: "*"
  2506. peerDependenciesMeta:
  2507. debug:
  2508. optional: true
  2509. dev: false
  2510. /form-data@4.0.0:
  2511. resolution:
  2512. {
  2513. integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==,
  2514. }
  2515. engines: { node: ">= 6" }
  2516. dependencies:
  2517. asynckit: 0.4.0
  2518. combined-stream: 1.0.8
  2519. mime-types: 2.1.35
  2520. dev: false
  2521. /formdata-polyfill@4.0.10:
  2522. resolution:
  2523. {
  2524. integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==,
  2525. }
  2526. engines: { node: ">=12.20.0" }
  2527. dependencies:
  2528. fetch-blob: 3.2.0
  2529. dev: true
  2530. /fs-extra@11.2.0:
  2531. resolution:
  2532. {
  2533. integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==,
  2534. }
  2535. engines: { node: ">=14.14" }
  2536. dependencies:
  2537. graceful-fs: 4.2.11
  2538. jsonfile: 6.1.0
  2539. universalify: 2.0.1
  2540. dev: true
  2541. /fs-minipass@2.1.0:
  2542. resolution:
  2543. {
  2544. integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==,
  2545. }
  2546. engines: { node: ">= 8" }
  2547. dependencies:
  2548. minipass: 3.3.6
  2549. dev: false
  2550. /fsevents@2.3.3:
  2551. resolution:
  2552. {
  2553. integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==,
  2554. }
  2555. engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 }
  2556. os: [darwin]
  2557. requiresBuild: true
  2558. dev: true
  2559. optional: true
  2560. /function-bind@1.1.2:
  2561. resolution:
  2562. {
  2563. integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==,
  2564. }
  2565. dev: false
  2566. /gensync@1.0.0-beta.2:
  2567. resolution:
  2568. {
  2569. integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==,
  2570. }
  2571. engines: { node: ">=6.9.0" }
  2572. dev: true
  2573. /get-stream@5.2.0:
  2574. resolution:
  2575. {
  2576. integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==,
  2577. }
  2578. engines: { node: ">=8" }
  2579. dependencies:
  2580. pump: 3.0.0
  2581. dev: true
  2582. /glob-parent@5.1.2:
  2583. resolution:
  2584. {
  2585. integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==,
  2586. }
  2587. engines: { node: ">= 6" }
  2588. dependencies:
  2589. is-glob: 4.0.3
  2590. dev: true
  2591. /globals@11.12.0:
  2592. resolution:
  2593. {
  2594. integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==,
  2595. }
  2596. engines: { node: ">=4" }
  2597. dev: true
  2598. /graceful-fs@4.2.11:
  2599. resolution:
  2600. {
  2601. integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==,
  2602. }
  2603. dev: true
  2604. /hamt_plus@1.0.2:
  2605. resolution:
  2606. {
  2607. integrity: sha512-t2JXKaehnMb9paaYA7J0BX8QQAY8lwfQ9Gjf4pg/mk4krt+cmwmU652HOoWonf+7+EQV97ARPMhhVgU1ra2GhA==,
  2608. }
  2609. dev: false
  2610. /has-flag@3.0.0:
  2611. resolution:
  2612. {
  2613. integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==,
  2614. }
  2615. engines: { node: ">=4" }
  2616. /hasown@2.0.0:
  2617. resolution:
  2618. {
  2619. integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==,
  2620. }
  2621. engines: { node: ">= 0.4" }
  2622. dependencies:
  2623. function-bind: 1.1.2
  2624. dev: false
  2625. /hoist-non-react-statics@3.3.2:
  2626. resolution:
  2627. {
  2628. integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==,
  2629. }
  2630. dependencies:
  2631. react-is: 16.13.1
  2632. dev: false
  2633. /html-parse-stringify@3.0.1:
  2634. resolution:
  2635. {
  2636. integrity: sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==,
  2637. }
  2638. dependencies:
  2639. void-elements: 3.1.0
  2640. dev: false
  2641. /https-proxy-agent@5.0.1:
  2642. resolution:
  2643. {
  2644. integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==,
  2645. }
  2646. engines: { node: ">= 6" }
  2647. dependencies:
  2648. agent-base: 6.0.2
  2649. debug: 4.3.4
  2650. transitivePeerDependencies:
  2651. - supports-color
  2652. dev: true
  2653. /human-signals@1.1.1:
  2654. resolution:
  2655. {
  2656. integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==,
  2657. }
  2658. engines: { node: ">=8.12.0" }
  2659. dev: true
  2660. /husky@7.0.4:
  2661. resolution:
  2662. {
  2663. integrity: sha512-vbaCKN2QLtP/vD4yvs6iz6hBEo6wkSzs8HpRah1Z6aGmF2KW5PdYuAd7uX5a+OyBZHBhd+TFLqgjUgytQr4RvQ==,
  2664. }
  2665. engines: { node: ">=12" }
  2666. hasBin: true
  2667. dev: true
  2668. /i18next@23.7.16:
  2669. resolution:
  2670. {
  2671. integrity: sha512-SrqFkMn9W6Wb43ZJ9qrO6U2U4S80RsFMA7VYFSqp7oc7RllQOYDCdRfsse6A7Cq/V8MnpxKvJCYgM8++27n4Fw==,
  2672. }
  2673. dependencies:
  2674. "@babel/runtime": 7.23.8
  2675. dev: false
  2676. /ignore@5.3.0:
  2677. resolution:
  2678. {
  2679. integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==,
  2680. }
  2681. engines: { node: ">= 4" }
  2682. dev: true
  2683. /immutable@4.3.4:
  2684. resolution:
  2685. {
  2686. integrity: sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==,
  2687. }
  2688. dev: true
  2689. /import-fresh@3.3.0:
  2690. resolution:
  2691. {
  2692. integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==,
  2693. }
  2694. engines: { node: ">=6" }
  2695. dependencies:
  2696. parent-module: 1.0.1
  2697. resolve-from: 4.0.0
  2698. /intersection-observer@0.12.2:
  2699. resolution:
  2700. {
  2701. integrity: sha512-7m1vEcPCxXYI8HqnL8CKI6siDyD+eIWSwgB3DZA+ZTogxk9I4CDnj4wilt9x/+/QbHI4YG5YZNmC6458/e9Ktg==,
  2702. }
  2703. dev: false
  2704. /is-arrayish@0.2.1:
  2705. resolution:
  2706. {
  2707. integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==,
  2708. }
  2709. /is-binary-path@2.1.0:
  2710. resolution:
  2711. {
  2712. integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==,
  2713. }
  2714. engines: { node: ">=8" }
  2715. dependencies:
  2716. binary-extensions: 2.2.0
  2717. dev: true
  2718. /is-core-module@2.13.1:
  2719. resolution:
  2720. {
  2721. integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==,
  2722. }
  2723. dependencies:
  2724. hasown: 2.0.0
  2725. dev: false
  2726. /is-extglob@2.1.1:
  2727. resolution:
  2728. {
  2729. integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==,
  2730. }
  2731. engines: { node: ">=0.10.0" }
  2732. dev: true
  2733. /is-glob@4.0.3:
  2734. resolution:
  2735. {
  2736. integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==,
  2737. }
  2738. engines: { node: ">=0.10.0" }
  2739. dependencies:
  2740. is-extglob: 2.1.1
  2741. dev: true
  2742. /is-number@7.0.0:
  2743. resolution:
  2744. {
  2745. integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==,
  2746. }
  2747. engines: { node: ">=0.12.0" }
  2748. dev: true
  2749. /is-plain-object@5.0.0:
  2750. resolution:
  2751. {
  2752. integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==,
  2753. }
  2754. engines: { node: ">=0.10.0" }
  2755. dev: true
  2756. /is-stream@2.0.1:
  2757. resolution:
  2758. {
  2759. integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==,
  2760. }
  2761. engines: { node: ">=8" }
  2762. dev: true
  2763. /isexe@2.0.0:
  2764. resolution:
  2765. {
  2766. integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==,
  2767. }
  2768. dev: true
  2769. /js-cookie@2.2.1:
  2770. resolution:
  2771. {
  2772. integrity: sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ==,
  2773. }
  2774. dev: false
  2775. /js-tokens@4.0.0:
  2776. resolution:
  2777. {
  2778. integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==,
  2779. }
  2780. /js-yaml@4.1.0:
  2781. resolution:
  2782. {
  2783. integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==,
  2784. }
  2785. hasBin: true
  2786. dependencies:
  2787. argparse: 2.0.1
  2788. dev: true
  2789. /jsesc@2.5.2:
  2790. resolution:
  2791. {
  2792. integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==,
  2793. }
  2794. engines: { node: ">=4" }
  2795. hasBin: true
  2796. dev: true
  2797. /json-parse-even-better-errors@2.3.1:
  2798. resolution:
  2799. {
  2800. integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==,
  2801. }
  2802. /json5@2.2.3:
  2803. resolution:
  2804. {
  2805. integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==,
  2806. }
  2807. engines: { node: ">=6" }
  2808. hasBin: true
  2809. dev: true
  2810. /jsonfile@6.1.0:
  2811. resolution:
  2812. {
  2813. integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==,
  2814. }
  2815. dependencies:
  2816. universalify: 2.0.1
  2817. optionalDependencies:
  2818. graceful-fs: 4.2.11
  2819. dev: true
  2820. /lines-and-columns@1.2.4:
  2821. resolution:
  2822. {
  2823. integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==,
  2824. }
  2825. /locate-path@5.0.0:
  2826. resolution:
  2827. {
  2828. integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==,
  2829. }
  2830. engines: { node: ">=8" }
  2831. dependencies:
  2832. p-locate: 4.1.0
  2833. dev: true
  2834. /lodash-es@4.17.21:
  2835. resolution:
  2836. {
  2837. integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==,
  2838. }
  2839. dev: false
  2840. /lodash@4.17.21:
  2841. resolution:
  2842. {
  2843. integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==,
  2844. }
  2845. dev: false
  2846. /loose-envify@1.4.0:
  2847. resolution:
  2848. {
  2849. integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==,
  2850. }
  2851. hasBin: true
  2852. dependencies:
  2853. js-tokens: 4.0.0
  2854. dev: false
  2855. /lower-case@2.0.2:
  2856. resolution:
  2857. {
  2858. integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==,
  2859. }
  2860. dependencies:
  2861. tslib: 2.6.2
  2862. dev: true
  2863. /lru-cache@5.1.1:
  2864. resolution:
  2865. {
  2866. integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==,
  2867. }
  2868. dependencies:
  2869. yallist: 3.1.1
  2870. dev: true
  2871. /merge-stream@2.0.0:
  2872. resolution:
  2873. {
  2874. integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==,
  2875. }
  2876. dev: true
  2877. /mime-db@1.52.0:
  2878. resolution:
  2879. {
  2880. integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==,
  2881. }
  2882. engines: { node: ">= 0.6" }
  2883. dev: false
  2884. /mime-types@2.1.35:
  2885. resolution:
  2886. {
  2887. integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==,
  2888. }
  2889. engines: { node: ">= 0.6" }
  2890. dependencies:
  2891. mime-db: 1.52.0
  2892. dev: false
  2893. /mimic-fn@2.1.0:
  2894. resolution:
  2895. {
  2896. integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==,
  2897. }
  2898. engines: { node: ">=6" }
  2899. dev: true
  2900. /minipass@3.3.6:
  2901. resolution:
  2902. {
  2903. integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==,
  2904. }
  2905. engines: { node: ">=8" }
  2906. dependencies:
  2907. yallist: 4.0.0
  2908. dev: false
  2909. /minipass@5.0.0:
  2910. resolution:
  2911. {
  2912. integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==,
  2913. }
  2914. engines: { node: ">=8" }
  2915. dev: false
  2916. /minizlib@2.1.2:
  2917. resolution:
  2918. {
  2919. integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==,
  2920. }
  2921. engines: { node: ">= 8" }
  2922. dependencies:
  2923. minipass: 3.3.6
  2924. yallist: 4.0.0
  2925. dev: false
  2926. /mkdirp@1.0.4:
  2927. resolution:
  2928. {
  2929. integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==,
  2930. }
  2931. engines: { node: ">=10" }
  2932. hasBin: true
  2933. dev: false
  2934. /monaco-editor@0.34.1:
  2935. resolution:
  2936. {
  2937. integrity: sha512-FKc80TyiMaruhJKKPz5SpJPIjL+dflGvz4CpuThaPMc94AyN7SeC9HQ8hrvaxX7EyHdJcUY5i4D0gNyJj1vSZQ==,
  2938. }
  2939. /mri@1.2.0:
  2940. resolution:
  2941. {
  2942. integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==,
  2943. }
  2944. engines: { node: ">=4" }
  2945. dev: true
  2946. /ms@2.1.2:
  2947. resolution:
  2948. {
  2949. integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==,
  2950. }
  2951. dev: true
  2952. /nanoid@3.3.7:
  2953. resolution:
  2954. {
  2955. integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==,
  2956. }
  2957. engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 }
  2958. hasBin: true
  2959. dev: true
  2960. /nanoid@5.0.4:
  2961. resolution:
  2962. {
  2963. integrity: sha512-vAjmBf13gsmhXSgBrtIclinISzFFy22WwCYoyilZlsrRXNIHSwgFQ1bEdjRwMT3aoadeIF6HMuDRlOxzfXV8ig==,
  2964. }
  2965. engines: { node: ^18 || >=20 }
  2966. hasBin: true
  2967. dev: false
  2968. /no-case@3.0.4:
  2969. resolution:
  2970. {
  2971. integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==,
  2972. }
  2973. dependencies:
  2974. lower-case: 2.0.2
  2975. tslib: 2.6.2
  2976. dev: true
  2977. /node-domexception@1.0.0:
  2978. resolution:
  2979. {
  2980. integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==,
  2981. }
  2982. engines: { node: ">=10.5.0" }
  2983. dev: true
  2984. /node-fetch@2.7.0:
  2985. resolution:
  2986. {
  2987. integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==,
  2988. }
  2989. engines: { node: 4.x || >=6.0.0 }
  2990. peerDependencies:
  2991. encoding: ^0.1.0
  2992. peerDependenciesMeta:
  2993. encoding:
  2994. optional: true
  2995. dependencies:
  2996. whatwg-url: 5.0.0
  2997. dev: true
  2998. /node-fetch@3.3.2:
  2999. resolution:
  3000. {
  3001. integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==,
  3002. }
  3003. engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
  3004. dependencies:
  3005. data-uri-to-buffer: 4.0.1
  3006. fetch-blob: 3.2.0
  3007. formdata-polyfill: 4.0.10
  3008. dev: true
  3009. /node-releases@2.0.14:
  3010. resolution:
  3011. {
  3012. integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==,
  3013. }
  3014. dev: true
  3015. /normalize-path@3.0.0:
  3016. resolution:
  3017. {
  3018. integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==,
  3019. }
  3020. engines: { node: ">=0.10.0" }
  3021. dev: true
  3022. /npm-run-path@4.0.1:
  3023. resolution:
  3024. {
  3025. integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==,
  3026. }
  3027. engines: { node: ">=8" }
  3028. dependencies:
  3029. path-key: 3.1.1
  3030. dev: true
  3031. /object-assign@4.1.1:
  3032. resolution:
  3033. {
  3034. integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==,
  3035. }
  3036. engines: { node: ">=0.10.0" }
  3037. dev: false
  3038. /once@1.4.0:
  3039. resolution:
  3040. {
  3041. integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==,
  3042. }
  3043. dependencies:
  3044. wrappy: 1.0.2
  3045. dev: true
  3046. /onetime@5.1.2:
  3047. resolution:
  3048. {
  3049. integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==,
  3050. }
  3051. engines: { node: ">=6" }
  3052. dependencies:
  3053. mimic-fn: 2.1.0
  3054. dev: true
  3055. /p-limit@2.3.0:
  3056. resolution:
  3057. {
  3058. integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==,
  3059. }
  3060. engines: { node: ">=6" }
  3061. dependencies:
  3062. p-try: 2.2.0
  3063. dev: true
  3064. /p-locate@4.1.0:
  3065. resolution:
  3066. {
  3067. integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==,
  3068. }
  3069. engines: { node: ">=8" }
  3070. dependencies:
  3071. p-limit: 2.3.0
  3072. dev: true
  3073. /p-try@2.2.0:
  3074. resolution:
  3075. {
  3076. integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==,
  3077. }
  3078. engines: { node: ">=6" }
  3079. dev: true
  3080. /parent-module@1.0.1:
  3081. resolution:
  3082. {
  3083. integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==,
  3084. }
  3085. engines: { node: ">=6" }
  3086. dependencies:
  3087. callsites: 3.1.0
  3088. /parse-json@5.2.0:
  3089. resolution:
  3090. {
  3091. integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==,
  3092. }
  3093. engines: { node: ">=8" }
  3094. dependencies:
  3095. "@babel/code-frame": 7.23.5
  3096. error-ex: 1.3.2
  3097. json-parse-even-better-errors: 2.3.1
  3098. lines-and-columns: 1.2.4
  3099. /path-exists@4.0.0:
  3100. resolution:
  3101. {
  3102. integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==,
  3103. }
  3104. engines: { node: ">=8" }
  3105. dev: true
  3106. /path-key@3.1.1:
  3107. resolution:
  3108. {
  3109. integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==,
  3110. }
  3111. engines: { node: ">=8" }
  3112. dev: true
  3113. /path-parse@1.0.7:
  3114. resolution:
  3115. {
  3116. integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==,
  3117. }
  3118. dev: false
  3119. /path-type@4.0.0:
  3120. resolution:
  3121. {
  3122. integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==,
  3123. }
  3124. engines: { node: ">=8" }
  3125. /picocolors@1.0.0:
  3126. resolution:
  3127. {
  3128. integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==,
  3129. }
  3130. dev: true
  3131. /picomatch@2.3.1:
  3132. resolution:
  3133. {
  3134. integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==,
  3135. }
  3136. engines: { node: ">=8.6" }
  3137. dev: true
  3138. /picomatch@3.0.1:
  3139. resolution:
  3140. {
  3141. integrity: sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==,
  3142. }
  3143. engines: { node: ">=10" }
  3144. dev: true
  3145. /postcss@8.4.33:
  3146. resolution:
  3147. {
  3148. integrity: sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==,
  3149. }
  3150. engines: { node: ^10 || ^12 || >=14 }
  3151. dependencies:
  3152. nanoid: 3.3.7
  3153. picocolors: 1.0.0
  3154. source-map-js: 1.0.2
  3155. dev: true
  3156. /prettier@2.8.8:
  3157. resolution:
  3158. {
  3159. integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==,
  3160. }
  3161. engines: { node: ">=10.13.0" }
  3162. hasBin: true
  3163. dev: true
  3164. /pretty-quick@3.3.1(prettier@2.8.8):
  3165. resolution:
  3166. {
  3167. integrity: sha512-3b36UXfYQ+IXXqex6mCca89jC8u0mYLqFAN5eTQKoXO6oCQYcIVYZEB/5AlBHI7JPYygReM2Vv6Vom/Gln7fBg==,
  3168. }
  3169. engines: { node: ">=10.13" }
  3170. hasBin: true
  3171. peerDependencies:
  3172. prettier: ^2.0.0
  3173. dependencies:
  3174. execa: 4.1.0
  3175. find-up: 4.1.0
  3176. ignore: 5.3.0
  3177. mri: 1.2.0
  3178. picocolors: 1.0.0
  3179. picomatch: 3.0.1
  3180. prettier: 2.8.8
  3181. tslib: 2.6.2
  3182. dev: true
  3183. /prop-types@15.8.1:
  3184. resolution:
  3185. {
  3186. integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==,
  3187. }
  3188. dependencies:
  3189. loose-envify: 1.4.0
  3190. object-assign: 4.1.1
  3191. react-is: 16.13.1
  3192. dev: false
  3193. /proxy-from-env@1.1.0:
  3194. resolution:
  3195. {
  3196. integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==,
  3197. }
  3198. dev: false
  3199. /pump@3.0.0:
  3200. resolution:
  3201. {
  3202. integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==,
  3203. }
  3204. dependencies:
  3205. end-of-stream: 1.4.4
  3206. once: 1.4.0
  3207. dev: true
  3208. /react-dom@18.2.0(react@18.2.0):
  3209. resolution:
  3210. {
  3211. integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==,
  3212. }
  3213. peerDependencies:
  3214. react: ^18.2.0
  3215. dependencies:
  3216. loose-envify: 1.4.0
  3217. react: 18.2.0
  3218. scheduler: 0.23.0
  3219. dev: false
  3220. /react-error-boundary@3.1.4(react@18.2.0):
  3221. resolution:
  3222. {
  3223. integrity: sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==,
  3224. }
  3225. engines: { node: ">=10", npm: ">=6" }
  3226. peerDependencies:
  3227. react: ">=16.13.1"
  3228. dependencies:
  3229. "@babel/runtime": 7.23.8
  3230. react: 18.2.0
  3231. dev: false
  3232. /react-hook-form@7.49.3(react@18.2.0):
  3233. resolution:
  3234. {
  3235. integrity: sha512-foD6r3juidAT1cOZzpmD/gOKt7fRsDhXXZ0y28+Al1CHgX+AY1qIN9VSIIItXRq1dN68QrRwl1ORFlwjBaAqeQ==,
  3236. }
  3237. engines: { node: ">=18", pnpm: "8" }
  3238. peerDependencies:
  3239. react: ^16.8.0 || ^17 || ^18
  3240. dependencies:
  3241. react: 18.2.0
  3242. dev: false
  3243. /react-i18next@13.5.0(i18next@23.7.16)(react-dom@18.2.0)(react@18.2.0):
  3244. resolution:
  3245. {
  3246. integrity: sha512-CFJ5NDGJ2MUyBohEHxljOq/39NQ972rh1ajnadG9BjTk+UXbHLq4z5DKEbEQBDoIhUmmbuS/fIMJKo6VOax1HA==,
  3247. }
  3248. peerDependencies:
  3249. i18next: ">= 23.2.3"
  3250. react: ">= 16.8.0"
  3251. react-dom: "*"
  3252. react-native: "*"
  3253. peerDependenciesMeta:
  3254. react-dom:
  3255. optional: true
  3256. react-native:
  3257. optional: true
  3258. dependencies:
  3259. "@babel/runtime": 7.23.8
  3260. html-parse-stringify: 3.0.1
  3261. i18next: 23.7.16
  3262. react: 18.2.0
  3263. react-dom: 18.2.0(react@18.2.0)
  3264. dev: false
  3265. /react-is@16.13.1:
  3266. resolution:
  3267. {
  3268. integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==,
  3269. }
  3270. dev: false
  3271. /react-is@18.2.0:
  3272. resolution:
  3273. {
  3274. integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==,
  3275. }
  3276. dev: false
  3277. /react-refresh@0.14.0:
  3278. resolution:
  3279. {
  3280. integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==,
  3281. }
  3282. engines: { node: ">=0.10.0" }
  3283. dev: true
  3284. /react-router-dom@6.21.2(react-dom@18.2.0)(react@18.2.0):
  3285. resolution:
  3286. {
  3287. integrity: sha512-tE13UukgUOh2/sqYr6jPzZTzmzc70aGRP4pAjG2if0IP3aUT+sBtAKUJh0qMh0zylJHGLmzS+XWVaON4UklHeg==,
  3288. }
  3289. engines: { node: ">=14.0.0" }
  3290. peerDependencies:
  3291. react: ">=16.8"
  3292. react-dom: ">=16.8"
  3293. dependencies:
  3294. "@remix-run/router": 1.14.2
  3295. react: 18.2.0
  3296. react-dom: 18.2.0(react@18.2.0)
  3297. react-router: 6.21.2(react@18.2.0)
  3298. dev: false
  3299. /react-router@6.21.2(react@18.2.0):
  3300. resolution:
  3301. {
  3302. integrity: sha512-jJcgiwDsnaHIeC+IN7atO0XiSRCrOsQAHHbChtJxmgqG2IaYQXSnhqGb5vk2CU/wBQA12Zt+TkbuJjIn65gzbA==,
  3303. }
  3304. engines: { node: ">=14.0.0" }
  3305. peerDependencies:
  3306. react: ">=16.8"
  3307. dependencies:
  3308. "@remix-run/router": 1.14.2
  3309. react: 18.2.0
  3310. dev: false
  3311. /react-transition-group@4.4.5(react-dom@18.2.0)(react@18.2.0):
  3312. resolution:
  3313. {
  3314. integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==,
  3315. }
  3316. peerDependencies:
  3317. react: ">=16.6.0"
  3318. react-dom: ">=16.6.0"
  3319. dependencies:
  3320. "@babel/runtime": 7.23.8
  3321. dom-helpers: 5.2.1
  3322. loose-envify: 1.4.0
  3323. prop-types: 15.8.1
  3324. react: 18.2.0
  3325. react-dom: 18.2.0(react@18.2.0)
  3326. dev: false
  3327. /react-virtuoso@4.6.2(react-dom@18.2.0)(react@18.2.0):
  3328. resolution:
  3329. {
  3330. integrity: sha512-vvlqvzPif+MvBrJ09+hJJrVY0xJK9yran+A+/1iwY78k0YCVKsyoNPqoLxOxzYPggspNBNXqUXEcvckN29OxyQ==,
  3331. }
  3332. engines: { node: ">=10" }
  3333. peerDependencies:
  3334. react: ">=16 || >=17 || >= 18"
  3335. react-dom: ">=16 || >=17 || >= 18"
  3336. dependencies:
  3337. react: 18.2.0
  3338. react-dom: 18.2.0(react@18.2.0)
  3339. dev: false
  3340. /react@18.2.0:
  3341. resolution:
  3342. {
  3343. integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==,
  3344. }
  3345. engines: { node: ">=0.10.0" }
  3346. dependencies:
  3347. loose-envify: 1.4.0
  3348. dev: false
  3349. /readdirp@3.6.0:
  3350. resolution:
  3351. {
  3352. integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==,
  3353. }
  3354. engines: { node: ">=8.10.0" }
  3355. dependencies:
  3356. picomatch: 2.3.1
  3357. dev: true
  3358. /recoil@0.7.7(react-dom@18.2.0)(react@18.2.0):
  3359. resolution:
  3360. {
  3361. integrity: sha512-8Og5KPQW9LwC577Vc7Ug2P0vQshkv1y3zG3tSSkWMqkWSwHmE+by06L8JtnGocjW6gcCvfwB3YtrJG6/tWivNQ==,
  3362. }
  3363. peerDependencies:
  3364. react: ">=16.13.1"
  3365. react-dom: "*"
  3366. react-native: "*"
  3367. peerDependenciesMeta:
  3368. react-dom:
  3369. optional: true
  3370. react-native:
  3371. optional: true
  3372. dependencies:
  3373. hamt_plus: 1.0.2
  3374. react: 18.2.0
  3375. react-dom: 18.2.0(react@18.2.0)
  3376. dev: false
  3377. /regenerator-runtime@0.14.1:
  3378. resolution:
  3379. {
  3380. integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==,
  3381. }
  3382. dev: false
  3383. /reselect@4.1.8:
  3384. resolution:
  3385. {
  3386. integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==,
  3387. }
  3388. dev: false
  3389. /resize-observer-polyfill@1.5.1:
  3390. resolution:
  3391. {
  3392. integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==,
  3393. }
  3394. dev: false
  3395. /resolve-from@4.0.0:
  3396. resolution:
  3397. {
  3398. integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==,
  3399. }
  3400. engines: { node: ">=4" }
  3401. /resolve@1.22.8:
  3402. resolution:
  3403. {
  3404. integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==,
  3405. }
  3406. hasBin: true
  3407. dependencies:
  3408. is-core-module: 2.13.1
  3409. path-parse: 1.0.7
  3410. supports-preserve-symlinks-flag: 1.0.0
  3411. dev: false
  3412. /rollup@4.9.5:
  3413. resolution:
  3414. {
  3415. integrity: sha512-E4vQW0H/mbNMw2yLSqJyjtkHY9dslf/p0zuT1xehNRqUTBOFMqEjguDvqhXr7N7r/4ttb2jr4T41d3dncmIgbQ==,
  3416. }
  3417. engines: { node: ">=18.0.0", npm: ">=8.0.0" }
  3418. hasBin: true
  3419. dependencies:
  3420. "@types/estree": 1.0.5
  3421. optionalDependencies:
  3422. "@rollup/rollup-android-arm-eabi": 4.9.5
  3423. "@rollup/rollup-android-arm64": 4.9.5
  3424. "@rollup/rollup-darwin-arm64": 4.9.5
  3425. "@rollup/rollup-darwin-x64": 4.9.5
  3426. "@rollup/rollup-linux-arm-gnueabihf": 4.9.5
  3427. "@rollup/rollup-linux-arm64-gnu": 4.9.5
  3428. "@rollup/rollup-linux-arm64-musl": 4.9.5
  3429. "@rollup/rollup-linux-riscv64-gnu": 4.9.5
  3430. "@rollup/rollup-linux-x64-gnu": 4.9.5
  3431. "@rollup/rollup-linux-x64-musl": 4.9.5
  3432. "@rollup/rollup-win32-arm64-msvc": 4.9.5
  3433. "@rollup/rollup-win32-ia32-msvc": 4.9.5
  3434. "@rollup/rollup-win32-x64-msvc": 4.9.5
  3435. fsevents: 2.3.3
  3436. dev: true
  3437. /sass@1.70.0:
  3438. resolution:
  3439. {
  3440. integrity: sha512-uUxNQ3zAHeAx5nRFskBnrWzDUJrrvpCPD5FNAoRvTi0WwremlheES3tg+56PaVtCs5QDRX5CBLxxKMDJMEa1WQ==,
  3441. }
  3442. engines: { node: ">=14.0.0" }
  3443. hasBin: true
  3444. dependencies:
  3445. chokidar: 3.5.3
  3446. immutable: 4.3.4
  3447. source-map-js: 1.0.2
  3448. dev: true
  3449. /scheduler@0.23.0:
  3450. resolution:
  3451. {
  3452. integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==,
  3453. }
  3454. dependencies:
  3455. loose-envify: 1.4.0
  3456. dev: false
  3457. /screenfull@5.2.0:
  3458. resolution:
  3459. {
  3460. integrity: sha512-9BakfsO2aUQN2K9Fdbj87RJIEZ82Q9IGim7FqM5OsebfoFC6ZHXgDq/KvniuLTPdeM8wY2o6Dj3WQ7KeQCj3cA==,
  3461. }
  3462. engines: { node: ">=0.10.0" }
  3463. dev: false
  3464. /semver@6.3.1:
  3465. resolution:
  3466. {
  3467. integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==,
  3468. }
  3469. hasBin: true
  3470. dev: true
  3471. /shebang-command@2.0.0:
  3472. resolution:
  3473. {
  3474. integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==,
  3475. }
  3476. engines: { node: ">=8" }
  3477. dependencies:
  3478. shebang-regex: 3.0.0
  3479. dev: true
  3480. /shebang-regex@3.0.0:
  3481. resolution:
  3482. {
  3483. integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==,
  3484. }
  3485. engines: { node: ">=8" }
  3486. dev: true
  3487. /signal-exit@3.0.7:
  3488. resolution:
  3489. {
  3490. integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==,
  3491. }
  3492. dev: true
  3493. /snake-case@3.0.4:
  3494. resolution:
  3495. {
  3496. integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==,
  3497. }
  3498. dependencies:
  3499. dot-case: 3.0.4
  3500. tslib: 2.6.2
  3501. dev: true
  3502. /snarkdown@2.0.0:
  3503. resolution:
  3504. {
  3505. integrity: sha512-MgL/7k/AZdXCTJiNgrO7chgDqaB9FGM/1Tvlcenenb7div6obaDATzs16JhFyHHBGodHT3B7RzRc5qk8pFhg3A==,
  3506. }
  3507. dev: false
  3508. /source-map-js@1.0.2:
  3509. resolution:
  3510. {
  3511. integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==,
  3512. }
  3513. engines: { node: ">=0.10.0" }
  3514. dev: true
  3515. /source-map@0.5.7:
  3516. resolution:
  3517. {
  3518. integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==,
  3519. }
  3520. engines: { node: ">=0.10.0" }
  3521. dev: false
  3522. /strip-final-newline@2.0.0:
  3523. resolution:
  3524. {
  3525. integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==,
  3526. }
  3527. engines: { node: ">=6" }
  3528. dev: true
  3529. /stylis@4.2.0:
  3530. resolution:
  3531. {
  3532. integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==,
  3533. }
  3534. dev: false
  3535. /supports-color@5.5.0:
  3536. resolution:
  3537. {
  3538. integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==,
  3539. }
  3540. engines: { node: ">=4" }
  3541. dependencies:
  3542. has-flag: 3.0.0
  3543. /supports-preserve-symlinks-flag@1.0.0:
  3544. resolution:
  3545. {
  3546. integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==,
  3547. }
  3548. engines: { node: ">= 0.4" }
  3549. dev: false
  3550. /svg-parser@2.0.4:
  3551. resolution:
  3552. {
  3553. integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==,
  3554. }
  3555. dev: true
  3556. /swr@1.3.0(react@18.2.0):
  3557. resolution:
  3558. {
  3559. integrity: sha512-dkghQrOl2ORX9HYrMDtPa7LTVHJjCTeZoB1dqTbnnEDlSvN8JEKpYIYurDfvbQFUUS8Cg8PceFVZNkW0KNNYPw==,
  3560. }
  3561. peerDependencies:
  3562. react: ^16.11.0 || ^17.0.0 || ^18.0.0
  3563. dependencies:
  3564. react: 18.2.0
  3565. dev: false
  3566. /tar@6.2.0:
  3567. resolution:
  3568. {
  3569. integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==,
  3570. }
  3571. engines: { node: ">=10" }
  3572. dependencies:
  3573. chownr: 2.0.0
  3574. fs-minipass: 2.1.0
  3575. minipass: 5.0.0
  3576. minizlib: 2.1.2
  3577. mkdirp: 1.0.4
  3578. yallist: 4.0.0
  3579. dev: false
  3580. /to-fast-properties@2.0.0:
  3581. resolution:
  3582. {
  3583. integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==,
  3584. }
  3585. engines: { node: ">=4" }
  3586. /to-regex-range@5.0.1:
  3587. resolution:
  3588. {
  3589. integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==,
  3590. }
  3591. engines: { node: ">=8.0" }
  3592. dependencies:
  3593. is-number: 7.0.0
  3594. dev: true
  3595. /tr46@0.0.3:
  3596. resolution:
  3597. {
  3598. integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==,
  3599. }
  3600. dev: true
  3601. /tslib@2.6.2:
  3602. resolution:
  3603. {
  3604. integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==,
  3605. }
  3606. /tunnel@0.0.6:
  3607. resolution:
  3608. {
  3609. integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==,
  3610. }
  3611. engines: { node: ">=0.6.11 <=0.7.0 || >=0.7.3" }
  3612. dev: true
  3613. /typescript@5.3.3:
  3614. resolution:
  3615. {
  3616. integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==,
  3617. }
  3618. engines: { node: ">=14.17" }
  3619. hasBin: true
  3620. dev: true
  3621. /undici-types@5.26.5:
  3622. resolution:
  3623. {
  3624. integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==,
  3625. }
  3626. dev: true
  3627. /undici@5.28.2:
  3628. resolution:
  3629. {
  3630. integrity: sha512-wh1pHJHnUeQV5Xa8/kyQhO7WFa8M34l026L5P/+2TYiakvGy5Rdc8jWZVyG7ieht/0WgJLEd3kcU5gKx+6GC8w==,
  3631. }
  3632. engines: { node: ">=14.0" }
  3633. dependencies:
  3634. "@fastify/busboy": 2.1.0
  3635. dev: true
  3636. /universal-user-agent@6.0.1:
  3637. resolution:
  3638. {
  3639. integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==,
  3640. }
  3641. dev: true
  3642. /universalify@2.0.1:
  3643. resolution:
  3644. {
  3645. integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==,
  3646. }
  3647. engines: { node: ">= 10.0.0" }
  3648. dev: true
  3649. /update-browserslist-db@1.0.13(browserslist@4.22.2):
  3650. resolution:
  3651. {
  3652. integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==,
  3653. }
  3654. hasBin: true
  3655. peerDependencies:
  3656. browserslist: ">= 4.21.0"
  3657. dependencies:
  3658. browserslist: 4.22.2
  3659. escalade: 3.1.1
  3660. picocolors: 1.0.0
  3661. dev: true
  3662. /vite-plugin-monaco-editor@1.1.0(monaco-editor@0.34.1):
  3663. resolution:
  3664. {
  3665. integrity: sha512-IvtUqZotrRoVqwT0PBBDIZPNraya3BxN/bfcNfnxZ5rkJiGcNtO5eAOWWSgT7zullIAEqQwxMU83yL9J5k7gww==,
  3666. }
  3667. peerDependencies:
  3668. monaco-editor: ">=0.33.0"
  3669. dependencies:
  3670. monaco-editor: 0.34.1
  3671. dev: true
  3672. /vite-plugin-svgr@4.2.0(typescript@5.3.3)(vite@5.0.11):
  3673. resolution:
  3674. {
  3675. integrity: sha512-SC7+FfVtNQk7So0XMjrrtLAbEC8qjFPifyD7+fs/E6aaNdVde6umlVVh0QuwDLdOMu7vp5RiGFsB70nj5yo0XA==,
  3676. }
  3677. peerDependencies:
  3678. vite: ^2.6.0 || 3 || 4 || 5
  3679. dependencies:
  3680. "@rollup/pluginutils": 5.1.0
  3681. "@svgr/core": 8.1.0(typescript@5.3.3)
  3682. "@svgr/plugin-jsx": 8.1.0(@svgr/core@8.1.0)
  3683. vite: 5.0.11(sass@1.70.0)
  3684. transitivePeerDependencies:
  3685. - rollup
  3686. - supports-color
  3687. - typescript
  3688. dev: true
  3689. /vite@5.0.11(sass@1.70.0):
  3690. resolution:
  3691. {
  3692. integrity: sha512-XBMnDjZcNAw/G1gEiskiM1v6yzM4GE5aMGvhWTlHAYYhxb7S3/V1s3m2LDHa8Vh6yIWYYB0iJwsEaS523c4oYA==,
  3693. }
  3694. engines: { node: ^18.0.0 || >=20.0.0 }
  3695. hasBin: true
  3696. peerDependencies:
  3697. "@types/node": ^18.0.0 || >=20.0.0
  3698. less: "*"
  3699. lightningcss: ^1.21.0
  3700. sass: "*"
  3701. stylus: "*"
  3702. sugarss: "*"
  3703. terser: ^5.4.0
  3704. peerDependenciesMeta:
  3705. "@types/node":
  3706. optional: true
  3707. less:
  3708. optional: true
  3709. lightningcss:
  3710. optional: true
  3711. sass:
  3712. optional: true
  3713. stylus:
  3714. optional: true
  3715. sugarss:
  3716. optional: true
  3717. terser:
  3718. optional: true
  3719. dependencies:
  3720. esbuild: 0.19.11
  3721. postcss: 8.4.33
  3722. rollup: 4.9.5
  3723. sass: 1.70.0
  3724. optionalDependencies:
  3725. fsevents: 2.3.3
  3726. dev: true
  3727. /void-elements@3.1.0:
  3728. resolution:
  3729. {
  3730. integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==,
  3731. }
  3732. engines: { node: ">=0.10.0" }
  3733. dev: false
  3734. /web-streams-polyfill@3.3.2:
  3735. resolution:
  3736. {
  3737. integrity: sha512-3pRGuxRF5gpuZc0W+EpwQRmCD7gRqcDOMt688KmdlDAgAyaB1XlN0zq2njfDNm44XVdIouE7pZ6GzbdyH47uIQ==,
  3738. }
  3739. engines: { node: ">= 8" }
  3740. dev: true
  3741. /webidl-conversions@3.0.1:
  3742. resolution:
  3743. {
  3744. integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==,
  3745. }
  3746. dev: true
  3747. /whatwg-url@5.0.0:
  3748. resolution:
  3749. {
  3750. integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==,
  3751. }
  3752. dependencies:
  3753. tr46: 0.0.3
  3754. webidl-conversions: 3.0.1
  3755. dev: true
  3756. /which@2.0.2:
  3757. resolution:
  3758. {
  3759. integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==,
  3760. }
  3761. engines: { node: ">= 8" }
  3762. hasBin: true
  3763. dependencies:
  3764. isexe: 2.0.0
  3765. dev: true
  3766. /wrappy@1.0.2:
  3767. resolution:
  3768. {
  3769. integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==,
  3770. }
  3771. dev: true
  3772. /yallist@3.1.1:
  3773. resolution:
  3774. {
  3775. integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==,
  3776. }
  3777. dev: true
  3778. /yallist@4.0.0:
  3779. resolution:
  3780. {
  3781. integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==,
  3782. }
  3783. dev: false
  3784. /yaml@1.10.2:
  3785. resolution:
  3786. {
  3787. integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==,
  3788. }
  3789. engines: { node: ">= 6" }
  3790. dev: false