pnpm-lock.yaml 113 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104
  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.1
  17. version: 11.11.1(@types/react@18.2.39)(react@18.2.0)
  18. "@emotion/styled":
  19. specifier: ^11.11.0
  20. version: 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.39)(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.14.19
  26. version: 5.14.19(@mui/material@5.14.19)(@types/react@18.2.39)(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.1)(@emotion/styled@11.11.0)(@mui/material@5.14.19)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0)
  30. "@mui/material":
  31. specifier: ^5.14.19
  32. version: 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0)
  33. "@mui/x-data-grid":
  34. specifier: ^6.18.2
  35. version: 6.18.2(@mui/material@5.14.19)(@mui/system@5.14.19)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0)
  36. "@tauri-apps/api":
  37. specifier: ^1.5.1
  38. version: 1.5.1
  39. ahooks:
  40. specifier: ^3.7.8
  41. version: 3.7.8(react@18.2.0)
  42. axios:
  43. specifier: ^1.6.2
  44. version: 1.6.2
  45. dayjs:
  46. specifier: 1.11.5
  47. version: 1.11.5
  48. i18next:
  49. specifier: ^23.7.7
  50. version: 23.7.7
  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.48.2
  71. version: 7.48.2(react@18.2.0)
  72. react-i18next:
  73. specifier: ^13.5.0
  74. version: 13.5.0(i18next@23.7.7)(react-dom@18.2.0)(react@18.2.0)
  75. react-router-dom:
  76. specifier: ^6.20.0
  77. version: 6.20.0(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.6
  102. version: 1.5.6
  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.39
  117. version: 18.2.39
  118. "@types/react-dom":
  119. specifier: ^18.2.17
  120. version: 18.2.17
  121. "@types/react-transition-group":
  122. specifier: ^4.4.9
  123. version: 4.4.9
  124. "@vitejs/plugin-react":
  125. specifier: ^4.2.0
  126. version: 4.2.0(vite@4.5.0)
  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.1.3
  150. version: 3.1.3(prettier@2.8.8)
  151. sass:
  152. specifier: ^1.69.5
  153. version: 1.69.5
  154. typescript:
  155. specifier: ^5.3.2
  156. version: 5.3.2
  157. vite:
  158. specifier: ^4.5.0
  159. version: 4.5.0(sass@1.69.5)
  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.2)(vite@4.5.0)
  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.20
  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.5:
  216. resolution:
  217. {
  218. integrity: sha512-Cwc2XjUrG4ilcfOw4wBAK+enbdgwAcAJCfGUItPBKR7Mjw4aEfAFYrLxeRp4jWgtNIKn3n2AlBOfwwafl+42/g==,
  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.5
  225. "@babel/helper-compilation-targets": 7.22.15
  226. "@babel/helper-module-transforms": 7.23.3(@babel/core@7.23.5)
  227. "@babel/helpers": 7.23.5
  228. "@babel/parser": 7.23.5
  229. "@babel/template": 7.22.15
  230. "@babel/traverse": 7.23.5
  231. "@babel/types": 7.23.5
  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.5:
  241. resolution:
  242. {
  243. integrity: sha512-BPssCHrBD+0YrxviOa3QzpqwhNIXKEtOa2jQrm4FlmkC2apYgRnQcmPWiGZDlGxiNtltnUFolMe8497Esry+jA==,
  244. }
  245. engines: { node: ">=6.9.0" }
  246. dependencies:
  247. "@babel/types": 7.23.5
  248. "@jridgewell/gen-mapping": 0.3.3
  249. "@jridgewell/trace-mapping": 0.3.20
  250. jsesc: 2.5.2
  251. dev: true
  252. /@babel/helper-compilation-targets@7.22.15:
  253. resolution:
  254. {
  255. integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==,
  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.1
  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.5
  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.5
  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.5
  299. /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.5):
  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.5
  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.5
  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.5
  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.5:
  360. resolution:
  361. {
  362. integrity: sha512-oO7us8FzTEsG3U6ag9MfdF1iA/7Z6dz+MtFhifZk8C8o453rGJFFWUP1t+ULM9TUIAzC9uxXEiXjOiVMyd7QPg==,
  363. }
  364. engines: { node: ">=6.9.0" }
  365. dependencies:
  366. "@babel/template": 7.22.15
  367. "@babel/traverse": 7.23.5
  368. "@babel/types": 7.23.5
  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.5:
  383. resolution:
  384. {
  385. integrity: sha512-hOOqoiNXrmGdFbhgCzu6GiURxUgM27Xwd/aPuu8RfHEZPBzL1Z54okAHAQjXfcQNwvrlkAmAp4SlRTZ45vlthQ==,
  386. }
  387. engines: { node: ">=6.0.0" }
  388. hasBin: true
  389. dependencies:
  390. "@babel/types": 7.23.5
  391. dev: true
  392. /@babel/plugin-transform-react-jsx-self@7.23.3(@babel/core@7.23.5):
  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.5
  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.5):
  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.5
  414. "@babel/helper-plugin-utils": 7.22.5
  415. dev: true
  416. /@babel/runtime@7.23.5:
  417. resolution:
  418. {
  419. integrity: sha512-NdUTHcPe4C99WxPub+K9l9tK5/lV4UXIoaHSYgzco9BCyjKAAwzdBI+wWtYqHt7LJdbo74ZjRPJgzVweq1sz0w==,
  420. }
  421. engines: { node: ">=6.9.0" }
  422. dependencies:
  423. regenerator-runtime: 0.14.0
  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.5
  434. "@babel/types": 7.23.5
  435. dev: true
  436. /@babel/traverse@7.23.5:
  437. resolution:
  438. {
  439. integrity: sha512-czx7Xy5a6sapWWRx61m1Ke1Ra4vczu1mCTtJam5zRTBOonfdJ+S/B6HYmGYu3fJtr8GGET3si6IhgWVBhJ/m8w==,
  440. }
  441. engines: { node: ">=6.9.0" }
  442. dependencies:
  443. "@babel/code-frame": 7.23.5
  444. "@babel/generator": 7.23.5
  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.5
  450. "@babel/types": 7.23.5
  451. debug: 4.3.4
  452. globals: 11.12.0
  453. transitivePeerDependencies:
  454. - supports-color
  455. dev: true
  456. /@babel/types@7.23.5:
  457. resolution:
  458. {
  459. integrity: sha512-ON5kSOJwVO6xXVRTvOI0eOnWe7VdUcIpsovGo9U/Br4Ie4UVFQTboO2cYnDhAGU6Fp+UxSiT+pMft0SMHfuq6w==,
  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.5
  525. "@emotion/hash": 0.9.1
  526. "@emotion/memoize": 0.8.1
  527. "@emotion/serialize": 1.1.2
  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.1(@types/react@18.2.39)(react@18.2.0):
  568. resolution:
  569. {
  570. integrity: sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA==,
  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.5
  580. "@emotion/babel-plugin": 11.11.0
  581. "@emotion/cache": 11.11.0
  582. "@emotion/serialize": 1.1.2
  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.39
  587. hoist-non-react-statics: 3.3.2
  588. react: 18.2.0
  589. dev: false
  590. /@emotion/serialize@1.1.2:
  591. resolution:
  592. {
  593. integrity: sha512-zR6a/fkFP4EAcCMQtLOhIgpprZOwNmCldtpaISpvz348+DP4Mz8ZoKaGGCQpbzepNIUWbq4w6hNZkwDyKoS+HA==,
  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.2
  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.1)(@types/react@18.2.39)(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.5
  622. "@emotion/babel-plugin": 11.11.0
  623. "@emotion/is-prop-valid": 1.2.1
  624. "@emotion/react": 11.11.1(@types/react@18.2.39)(react@18.2.0)
  625. "@emotion/serialize": 1.1.2
  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.39
  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/android-arm64@0.18.20:
  660. resolution:
  661. {
  662. integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==,
  663. }
  664. engines: { node: ">=12" }
  665. cpu: [arm64]
  666. os: [android]
  667. requiresBuild: true
  668. dev: true
  669. optional: true
  670. /@esbuild/android-arm@0.18.20:
  671. resolution:
  672. {
  673. integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==,
  674. }
  675. engines: { node: ">=12" }
  676. cpu: [arm]
  677. os: [android]
  678. requiresBuild: true
  679. dev: true
  680. optional: true
  681. /@esbuild/android-x64@0.18.20:
  682. resolution:
  683. {
  684. integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==,
  685. }
  686. engines: { node: ">=12" }
  687. cpu: [x64]
  688. os: [android]
  689. requiresBuild: true
  690. dev: true
  691. optional: true
  692. /@esbuild/darwin-arm64@0.18.20:
  693. resolution:
  694. {
  695. integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==,
  696. }
  697. engines: { node: ">=12" }
  698. cpu: [arm64]
  699. os: [darwin]
  700. requiresBuild: true
  701. dev: true
  702. optional: true
  703. /@esbuild/darwin-x64@0.18.20:
  704. resolution:
  705. {
  706. integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==,
  707. }
  708. engines: { node: ">=12" }
  709. cpu: [x64]
  710. os: [darwin]
  711. requiresBuild: true
  712. dev: true
  713. optional: true
  714. /@esbuild/freebsd-arm64@0.18.20:
  715. resolution:
  716. {
  717. integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==,
  718. }
  719. engines: { node: ">=12" }
  720. cpu: [arm64]
  721. os: [freebsd]
  722. requiresBuild: true
  723. dev: true
  724. optional: true
  725. /@esbuild/freebsd-x64@0.18.20:
  726. resolution:
  727. {
  728. integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==,
  729. }
  730. engines: { node: ">=12" }
  731. cpu: [x64]
  732. os: [freebsd]
  733. requiresBuild: true
  734. dev: true
  735. optional: true
  736. /@esbuild/linux-arm64@0.18.20:
  737. resolution:
  738. {
  739. integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==,
  740. }
  741. engines: { node: ">=12" }
  742. cpu: [arm64]
  743. os: [linux]
  744. requiresBuild: true
  745. dev: true
  746. optional: true
  747. /@esbuild/linux-arm@0.18.20:
  748. resolution:
  749. {
  750. integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==,
  751. }
  752. engines: { node: ">=12" }
  753. cpu: [arm]
  754. os: [linux]
  755. requiresBuild: true
  756. dev: true
  757. optional: true
  758. /@esbuild/linux-ia32@0.18.20:
  759. resolution:
  760. {
  761. integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==,
  762. }
  763. engines: { node: ">=12" }
  764. cpu: [ia32]
  765. os: [linux]
  766. requiresBuild: true
  767. dev: true
  768. optional: true
  769. /@esbuild/linux-loong64@0.18.20:
  770. resolution:
  771. {
  772. integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==,
  773. }
  774. engines: { node: ">=12" }
  775. cpu: [loong64]
  776. os: [linux]
  777. requiresBuild: true
  778. dev: true
  779. optional: true
  780. /@esbuild/linux-mips64el@0.18.20:
  781. resolution:
  782. {
  783. integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==,
  784. }
  785. engines: { node: ">=12" }
  786. cpu: [mips64el]
  787. os: [linux]
  788. requiresBuild: true
  789. dev: true
  790. optional: true
  791. /@esbuild/linux-ppc64@0.18.20:
  792. resolution:
  793. {
  794. integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==,
  795. }
  796. engines: { node: ">=12" }
  797. cpu: [ppc64]
  798. os: [linux]
  799. requiresBuild: true
  800. dev: true
  801. optional: true
  802. /@esbuild/linux-riscv64@0.18.20:
  803. resolution:
  804. {
  805. integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==,
  806. }
  807. engines: { node: ">=12" }
  808. cpu: [riscv64]
  809. os: [linux]
  810. requiresBuild: true
  811. dev: true
  812. optional: true
  813. /@esbuild/linux-s390x@0.18.20:
  814. resolution:
  815. {
  816. integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==,
  817. }
  818. engines: { node: ">=12" }
  819. cpu: [s390x]
  820. os: [linux]
  821. requiresBuild: true
  822. dev: true
  823. optional: true
  824. /@esbuild/linux-x64@0.18.20:
  825. resolution:
  826. {
  827. integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==,
  828. }
  829. engines: { node: ">=12" }
  830. cpu: [x64]
  831. os: [linux]
  832. requiresBuild: true
  833. dev: true
  834. optional: true
  835. /@esbuild/netbsd-x64@0.18.20:
  836. resolution:
  837. {
  838. integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==,
  839. }
  840. engines: { node: ">=12" }
  841. cpu: [x64]
  842. os: [netbsd]
  843. requiresBuild: true
  844. dev: true
  845. optional: true
  846. /@esbuild/openbsd-x64@0.18.20:
  847. resolution:
  848. {
  849. integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==,
  850. }
  851. engines: { node: ">=12" }
  852. cpu: [x64]
  853. os: [openbsd]
  854. requiresBuild: true
  855. dev: true
  856. optional: true
  857. /@esbuild/sunos-x64@0.18.20:
  858. resolution:
  859. {
  860. integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==,
  861. }
  862. engines: { node: ">=12" }
  863. cpu: [x64]
  864. os: [sunos]
  865. requiresBuild: true
  866. dev: true
  867. optional: true
  868. /@esbuild/win32-arm64@0.18.20:
  869. resolution:
  870. {
  871. integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==,
  872. }
  873. engines: { node: ">=12" }
  874. cpu: [arm64]
  875. os: [win32]
  876. requiresBuild: true
  877. dev: true
  878. optional: true
  879. /@esbuild/win32-ia32@0.18.20:
  880. resolution:
  881. {
  882. integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==,
  883. }
  884. engines: { node: ">=12" }
  885. cpu: [ia32]
  886. os: [win32]
  887. requiresBuild: true
  888. dev: true
  889. optional: true
  890. /@esbuild/win32-x64@0.18.20:
  891. resolution:
  892. {
  893. integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==,
  894. }
  895. engines: { node: ">=12" }
  896. cpu: [x64]
  897. os: [win32]
  898. requiresBuild: true
  899. dev: true
  900. optional: true
  901. /@fastify/busboy@2.1.0:
  902. resolution:
  903. {
  904. integrity: sha512-+KpH+QxZU7O4675t3mnkQKcZZg56u+K/Ct2K+N2AZYNVK8kyeo/bI18tI8aPm3tvNNRyTWfj6s5tnGNlcbQRsA==,
  905. }
  906. engines: { node: ">=14" }
  907. dev: true
  908. /@floating-ui/core@1.5.1:
  909. resolution:
  910. {
  911. integrity: sha512-QgcKYwzcc8vvZ4n/5uklchy8KVdjJwcOeI+HnnTNclJjs2nYsy23DOCf+sSV1kBwD9yDAoVKCkv/gEPzgQU3Pw==,
  912. }
  913. dependencies:
  914. "@floating-ui/utils": 0.1.6
  915. dev: false
  916. /@floating-ui/dom@1.5.3:
  917. resolution:
  918. {
  919. integrity: sha512-ClAbQnEqJAKCJOEbbLo5IUlZHkNszqhuxS4fHAVxRPXPya6Ysf2G8KypnYcOTpx6I8xcgF9bbHb6g/2KpbV8qA==,
  920. }
  921. dependencies:
  922. "@floating-ui/core": 1.5.1
  923. "@floating-ui/utils": 0.1.6
  924. dev: false
  925. /@floating-ui/react-dom@2.0.4(react-dom@18.2.0)(react@18.2.0):
  926. resolution:
  927. {
  928. integrity: sha512-CF8k2rgKeh/49UrnIBs4BdxPUV6vize/Db1d/YbCLyp9GiVZ0BEwf5AiDSxJRCr6yOkGqTFHtmrULxkEfYZ7dQ==,
  929. }
  930. peerDependencies:
  931. react: ">=16.8.0"
  932. react-dom: ">=16.8.0"
  933. dependencies:
  934. "@floating-ui/dom": 1.5.3
  935. react: 18.2.0
  936. react-dom: 18.2.0(react@18.2.0)
  937. dev: false
  938. /@floating-ui/utils@0.1.6:
  939. resolution:
  940. {
  941. integrity: sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A==,
  942. }
  943. dev: false
  944. /@jridgewell/gen-mapping@0.3.3:
  945. resolution:
  946. {
  947. integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==,
  948. }
  949. engines: { node: ">=6.0.0" }
  950. dependencies:
  951. "@jridgewell/set-array": 1.1.2
  952. "@jridgewell/sourcemap-codec": 1.4.15
  953. "@jridgewell/trace-mapping": 0.3.20
  954. dev: true
  955. /@jridgewell/resolve-uri@3.1.1:
  956. resolution:
  957. {
  958. integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==,
  959. }
  960. engines: { node: ">=6.0.0" }
  961. dev: true
  962. /@jridgewell/set-array@1.1.2:
  963. resolution:
  964. {
  965. integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==,
  966. }
  967. engines: { node: ">=6.0.0" }
  968. dev: true
  969. /@jridgewell/sourcemap-codec@1.4.15:
  970. resolution:
  971. {
  972. integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==,
  973. }
  974. dev: true
  975. /@jridgewell/trace-mapping@0.3.20:
  976. resolution:
  977. {
  978. integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==,
  979. }
  980. dependencies:
  981. "@jridgewell/resolve-uri": 3.1.1
  982. "@jridgewell/sourcemap-codec": 1.4.15
  983. dev: true
  984. /@juggle/resize-observer@3.4.0:
  985. resolution:
  986. {
  987. integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==,
  988. }
  989. dev: false
  990. /@mui/base@5.0.0-beta.20(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0):
  991. resolution:
  992. {
  993. integrity: sha512-CS2pUuqxST7ch9VNDCklRYDbJ3rru20Tx7na92QvVVKfu3RL4z/QLuVIc8jYGsdCnauMaeUSlFNLAJNb0yXe6w==,
  994. }
  995. engines: { node: ">=12.0.0" }
  996. peerDependencies:
  997. "@types/react": ^17.0.0 || ^18.0.0
  998. react: ^17.0.0 || ^18.0.0
  999. react-dom: ^17.0.0 || ^18.0.0
  1000. peerDependenciesMeta:
  1001. "@types/react":
  1002. optional: true
  1003. dependencies:
  1004. "@babel/runtime": 7.23.5
  1005. "@floating-ui/react-dom": 2.0.4(react-dom@18.2.0)(react@18.2.0)
  1006. "@mui/types": 7.2.10(@types/react@18.2.39)
  1007. "@mui/utils": 5.14.19(@types/react@18.2.39)(react@18.2.0)
  1008. "@popperjs/core": 2.11.8
  1009. "@types/react": 18.2.39
  1010. clsx: 2.0.0
  1011. prop-types: 15.8.1
  1012. react: 18.2.0
  1013. react-dom: 18.2.0(react@18.2.0)
  1014. dev: false
  1015. /@mui/base@5.0.0-beta.25(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0):
  1016. resolution:
  1017. {
  1018. integrity: sha512-Iiv+IcappRRv6IBlknIVmLkXxfp51NEX1+l9f+dIbBuPU4PaRULegr1lCeHKsC45KU5ruxM5xMg4R/de03aJQg==,
  1019. }
  1020. engines: { node: ">=12.0.0" }
  1021. peerDependencies:
  1022. "@types/react": ^17.0.0 || ^18.0.0
  1023. react: ^17.0.0 || ^18.0.0
  1024. react-dom: ^17.0.0 || ^18.0.0
  1025. peerDependenciesMeta:
  1026. "@types/react":
  1027. optional: true
  1028. dependencies:
  1029. "@babel/runtime": 7.23.5
  1030. "@floating-ui/react-dom": 2.0.4(react-dom@18.2.0)(react@18.2.0)
  1031. "@mui/types": 7.2.10(@types/react@18.2.39)
  1032. "@mui/utils": 5.14.19(@types/react@18.2.39)(react@18.2.0)
  1033. "@popperjs/core": 2.11.8
  1034. "@types/react": 18.2.39
  1035. clsx: 2.0.0
  1036. prop-types: 15.8.1
  1037. react: 18.2.0
  1038. react-dom: 18.2.0(react@18.2.0)
  1039. dev: false
  1040. /@mui/core-downloads-tracker@5.14.19:
  1041. resolution:
  1042. {
  1043. integrity: sha512-y4JseIen5pmZs1n9hHy95HKKioKco8f6N2lford2AmjJigVJOv0KsU0qryiCpyuEUZmi/xCduVilHsK9DSkPcA==,
  1044. }
  1045. dev: false
  1046. /@mui/icons-material@5.14.19(@mui/material@5.14.19)(@types/react@18.2.39)(react@18.2.0):
  1047. resolution:
  1048. {
  1049. integrity: sha512-yjP8nluXxZGe3Y7pS+yxBV+hWZSsSBampCxkZwaw+1l+feL+rfP74vbEFbMrX/Kil9I/Y1tWfy5bs/eNvwNpWw==,
  1050. }
  1051. engines: { node: ">=12.0.0" }
  1052. peerDependencies:
  1053. "@mui/material": ^5.0.0
  1054. "@types/react": ^17.0.0 || ^18.0.0
  1055. react: ^17.0.0 || ^18.0.0
  1056. peerDependenciesMeta:
  1057. "@types/react":
  1058. optional: true
  1059. dependencies:
  1060. "@babel/runtime": 7.23.5
  1061. "@mui/material": 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0)
  1062. "@types/react": 18.2.39
  1063. react: 18.2.0
  1064. dev: false
  1065. /@mui/lab@5.0.0-alpha.149(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/material@5.14.19)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0):
  1066. resolution:
  1067. {
  1068. integrity: sha512-azOkKcyVX4KBZAqSp7eRD4OfKrUrvQXo7x2BjFJil+UeAJiMpB6I5lALo2PDZz3vjtJnHqlURnZtxZOHs1zfEA==,
  1069. }
  1070. engines: { node: ">=12.0.0" }
  1071. peerDependencies:
  1072. "@emotion/react": ^11.5.0
  1073. "@emotion/styled": ^11.3.0
  1074. "@mui/material": ^5.0.0
  1075. "@types/react": ^17.0.0 || ^18.0.0
  1076. react: ^17.0.0 || ^18.0.0
  1077. react-dom: ^17.0.0 || ^18.0.0
  1078. peerDependenciesMeta:
  1079. "@emotion/react":
  1080. optional: true
  1081. "@emotion/styled":
  1082. optional: true
  1083. "@types/react":
  1084. optional: true
  1085. dependencies:
  1086. "@babel/runtime": 7.23.5
  1087. "@emotion/react": 11.11.1(@types/react@18.2.39)(react@18.2.0)
  1088. "@emotion/styled": 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.39)(react@18.2.0)
  1089. "@mui/base": 5.0.0-beta.20(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0)
  1090. "@mui/material": 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0)
  1091. "@mui/system": 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.39)(react@18.2.0)
  1092. "@mui/types": 7.2.10(@types/react@18.2.39)
  1093. "@mui/utils": 5.14.19(@types/react@18.2.39)(react@18.2.0)
  1094. "@mui/x-tree-view": 6.0.0-alpha.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/base@5.0.0-beta.20)(@mui/material@5.14.19)(@mui/system@5.14.19)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0)
  1095. "@types/react": 18.2.39
  1096. clsx: 2.0.0
  1097. prop-types: 15.8.1
  1098. react: 18.2.0
  1099. react-dom: 18.2.0(react@18.2.0)
  1100. dev: false
  1101. /@mui/material@5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0):
  1102. resolution:
  1103. {
  1104. integrity: sha512-jSPLXst/YPgDGolhiu4rbethKjLVrI1IkoK8YrFUv8ygxDuhQdsE6+ZqjSSRXk3ytTMf6ghPnQ88OFRk4XjpNw==,
  1105. }
  1106. engines: { node: ">=12.0.0" }
  1107. peerDependencies:
  1108. "@emotion/react": ^11.5.0
  1109. "@emotion/styled": ^11.3.0
  1110. "@types/react": ^17.0.0 || ^18.0.0
  1111. react: ^17.0.0 || ^18.0.0
  1112. react-dom: ^17.0.0 || ^18.0.0
  1113. peerDependenciesMeta:
  1114. "@emotion/react":
  1115. optional: true
  1116. "@emotion/styled":
  1117. optional: true
  1118. "@types/react":
  1119. optional: true
  1120. dependencies:
  1121. "@babel/runtime": 7.23.5
  1122. "@emotion/react": 11.11.1(@types/react@18.2.39)(react@18.2.0)
  1123. "@emotion/styled": 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.39)(react@18.2.0)
  1124. "@mui/base": 5.0.0-beta.25(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0)
  1125. "@mui/core-downloads-tracker": 5.14.19
  1126. "@mui/system": 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.39)(react@18.2.0)
  1127. "@mui/types": 7.2.10(@types/react@18.2.39)
  1128. "@mui/utils": 5.14.19(@types/react@18.2.39)(react@18.2.0)
  1129. "@types/react": 18.2.39
  1130. "@types/react-transition-group": 4.4.9
  1131. clsx: 2.0.0
  1132. csstype: 3.1.2
  1133. prop-types: 15.8.1
  1134. react: 18.2.0
  1135. react-dom: 18.2.0(react@18.2.0)
  1136. react-is: 18.2.0
  1137. react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0)
  1138. dev: false
  1139. /@mui/private-theming@5.14.19(@types/react@18.2.39)(react@18.2.0):
  1140. resolution:
  1141. {
  1142. integrity: sha512-U9w39VpXLGVM8wZlUU/47YGTsBSk60ZQRRxQZtdqPfN1N7OVllQeN4cEKZKR8PjqqR3aYRcSciQ4dc6CttRoXQ==,
  1143. }
  1144. engines: { node: ">=12.0.0" }
  1145. peerDependencies:
  1146. "@types/react": ^17.0.0 || ^18.0.0
  1147. react: ^17.0.0 || ^18.0.0
  1148. peerDependenciesMeta:
  1149. "@types/react":
  1150. optional: true
  1151. dependencies:
  1152. "@babel/runtime": 7.23.5
  1153. "@mui/utils": 5.14.19(@types/react@18.2.39)(react@18.2.0)
  1154. "@types/react": 18.2.39
  1155. prop-types: 15.8.1
  1156. react: 18.2.0
  1157. dev: false
  1158. /@mui/styled-engine@5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0):
  1159. resolution:
  1160. {
  1161. integrity: sha512-jtj/Pyn/bS8PM7NXdFNTHWZfE3p+vItO4/HoQbUeAv3u+cnWXcTBGHHY/xdIn446lYGFDczTh1YyX8G4Ts0Rtg==,
  1162. }
  1163. engines: { node: ">=12.0.0" }
  1164. peerDependencies:
  1165. "@emotion/react": ^11.4.1
  1166. "@emotion/styled": ^11.3.0
  1167. react: ^17.0.0 || ^18.0.0
  1168. peerDependenciesMeta:
  1169. "@emotion/react":
  1170. optional: true
  1171. "@emotion/styled":
  1172. optional: true
  1173. dependencies:
  1174. "@babel/runtime": 7.23.5
  1175. "@emotion/cache": 11.11.0
  1176. "@emotion/react": 11.11.1(@types/react@18.2.39)(react@18.2.0)
  1177. "@emotion/styled": 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.39)(react@18.2.0)
  1178. csstype: 3.1.2
  1179. prop-types: 15.8.1
  1180. react: 18.2.0
  1181. dev: false
  1182. /@mui/system@5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.39)(react@18.2.0):
  1183. resolution:
  1184. {
  1185. integrity: sha512-4e3Q+2nx+vgEsd0h5ftxlZGB7XtkkPos/zWqCqnxUs1l/T70s0lF2YNrWHHdSQ7LgtBu0eQ0qweZG2pR7KwkAw==,
  1186. }
  1187. engines: { node: ">=12.0.0" }
  1188. peerDependencies:
  1189. "@emotion/react": ^11.5.0
  1190. "@emotion/styled": ^11.3.0
  1191. "@types/react": ^17.0.0 || ^18.0.0
  1192. react: ^17.0.0 || ^18.0.0
  1193. peerDependenciesMeta:
  1194. "@emotion/react":
  1195. optional: true
  1196. "@emotion/styled":
  1197. optional: true
  1198. "@types/react":
  1199. optional: true
  1200. dependencies:
  1201. "@babel/runtime": 7.23.5
  1202. "@emotion/react": 11.11.1(@types/react@18.2.39)(react@18.2.0)
  1203. "@emotion/styled": 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.39)(react@18.2.0)
  1204. "@mui/private-theming": 5.14.19(@types/react@18.2.39)(react@18.2.0)
  1205. "@mui/styled-engine": 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
  1206. "@mui/types": 7.2.10(@types/react@18.2.39)
  1207. "@mui/utils": 5.14.19(@types/react@18.2.39)(react@18.2.0)
  1208. "@types/react": 18.2.39
  1209. clsx: 2.0.0
  1210. csstype: 3.1.2
  1211. prop-types: 15.8.1
  1212. react: 18.2.0
  1213. dev: false
  1214. /@mui/types@7.2.10(@types/react@18.2.39):
  1215. resolution:
  1216. {
  1217. integrity: sha512-wX1vbDC+lzF7FlhT6A3ffRZgEoKWPF8VqRoTu4lZwouFX2t90KyCMsgepMw5DxLak1BSp/KP86CmtZttikb/gQ==,
  1218. }
  1219. peerDependencies:
  1220. "@types/react": ^17.0.0 || ^18.0.0
  1221. peerDependenciesMeta:
  1222. "@types/react":
  1223. optional: true
  1224. dependencies:
  1225. "@types/react": 18.2.39
  1226. dev: false
  1227. /@mui/utils@5.14.19(@types/react@18.2.39)(react@18.2.0):
  1228. resolution:
  1229. {
  1230. integrity: sha512-qAHvTXzk7basbyqPvhgWqN6JbmI2wLB/mf97GkSlz5c76MiKYV6Ffjvw9BjKZQ1YRb8rDX9kgdjRezOcoB91oQ==,
  1231. }
  1232. engines: { node: ">=12.0.0" }
  1233. peerDependencies:
  1234. "@types/react": ^17.0.0 || ^18.0.0
  1235. react: ^17.0.0 || ^18.0.0
  1236. peerDependenciesMeta:
  1237. "@types/react":
  1238. optional: true
  1239. dependencies:
  1240. "@babel/runtime": 7.23.5
  1241. "@types/prop-types": 15.7.11
  1242. "@types/react": 18.2.39
  1243. prop-types: 15.8.1
  1244. react: 18.2.0
  1245. react-is: 18.2.0
  1246. dev: false
  1247. /@mui/x-data-grid@6.18.2(@mui/material@5.14.19)(@mui/system@5.14.19)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0):
  1248. resolution:
  1249. {
  1250. integrity: sha512-XsVX8OCcYRbSoDVfjoX6gi+KfBitTkUvlMZnI/YkWOyms+pEValJQousvwjhGN1coWp15Yoz9YTGmSGCBxo2HA==,
  1251. }
  1252. engines: { node: ">=14.0.0" }
  1253. peerDependencies:
  1254. "@mui/material": ^5.4.1
  1255. "@mui/system": ^5.4.1
  1256. react: ^17.0.0 || ^18.0.0
  1257. react-dom: ^17.0.0 || ^18.0.0
  1258. dependencies:
  1259. "@babel/runtime": 7.23.5
  1260. "@mui/material": 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0)
  1261. "@mui/system": 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.39)(react@18.2.0)
  1262. "@mui/utils": 5.14.19(@types/react@18.2.39)(react@18.2.0)
  1263. clsx: 2.0.0
  1264. prop-types: 15.8.1
  1265. react: 18.2.0
  1266. react-dom: 18.2.0(react@18.2.0)
  1267. reselect: 4.1.8
  1268. transitivePeerDependencies:
  1269. - "@types/react"
  1270. dev: false
  1271. /@mui/x-tree-view@6.0.0-alpha.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/base@5.0.0-beta.20)(@mui/material@5.14.19)(@mui/system@5.14.19)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0):
  1272. resolution:
  1273. {
  1274. integrity: sha512-JUG3HmBrmGEALbCFg1b+i7h726e1dWYZs4db3syO1j+Q++E3nbvE4Lehp5yGTFm+8esH0Tny50tuJaa4WX6VSA==,
  1275. }
  1276. engines: { node: ">=14.0.0" }
  1277. peerDependencies:
  1278. "@emotion/react": ^11.9.0
  1279. "@emotion/styled": ^11.8.1
  1280. "@mui/base": ^5.0.0-alpha.87
  1281. "@mui/material": ^5.8.6
  1282. "@mui/system": ^5.8.0
  1283. react: ^17.0.0 || ^18.0.0
  1284. react-dom: ^17.0.0 || ^18.0.0
  1285. dependencies:
  1286. "@babel/runtime": 7.23.5
  1287. "@emotion/react": 11.11.1(@types/react@18.2.39)(react@18.2.0)
  1288. "@emotion/styled": 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.39)(react@18.2.0)
  1289. "@mui/base": 5.0.0-beta.20(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0)
  1290. "@mui/material": 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0)
  1291. "@mui/system": 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.39)(react@18.2.0)
  1292. "@mui/utils": 5.14.19(@types/react@18.2.39)(react@18.2.0)
  1293. "@types/react-transition-group": 4.4.9
  1294. clsx: 2.0.0
  1295. prop-types: 15.8.1
  1296. react: 18.2.0
  1297. react-dom: 18.2.0(react@18.2.0)
  1298. react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0)
  1299. transitivePeerDependencies:
  1300. - "@types/react"
  1301. dev: false
  1302. /@octokit/auth-token@2.5.0:
  1303. resolution:
  1304. {
  1305. integrity: sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==,
  1306. }
  1307. dependencies:
  1308. "@octokit/types": 6.41.0
  1309. dev: true
  1310. /@octokit/core@3.6.0:
  1311. resolution:
  1312. {
  1313. integrity: sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q==,
  1314. }
  1315. dependencies:
  1316. "@octokit/auth-token": 2.5.0
  1317. "@octokit/graphql": 4.8.0
  1318. "@octokit/request": 5.6.3
  1319. "@octokit/request-error": 2.1.0
  1320. "@octokit/types": 6.41.0
  1321. before-after-hook: 2.2.3
  1322. universal-user-agent: 6.0.1
  1323. transitivePeerDependencies:
  1324. - encoding
  1325. dev: true
  1326. /@octokit/endpoint@6.0.12:
  1327. resolution:
  1328. {
  1329. integrity: sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==,
  1330. }
  1331. dependencies:
  1332. "@octokit/types": 6.41.0
  1333. is-plain-object: 5.0.0
  1334. universal-user-agent: 6.0.1
  1335. dev: true
  1336. /@octokit/graphql@4.8.0:
  1337. resolution:
  1338. {
  1339. integrity: sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==,
  1340. }
  1341. dependencies:
  1342. "@octokit/request": 5.6.3
  1343. "@octokit/types": 6.41.0
  1344. universal-user-agent: 6.0.1
  1345. transitivePeerDependencies:
  1346. - encoding
  1347. dev: true
  1348. /@octokit/openapi-types@12.11.0:
  1349. resolution:
  1350. {
  1351. integrity: sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==,
  1352. }
  1353. dev: true
  1354. /@octokit/plugin-paginate-rest@2.21.3(@octokit/core@3.6.0):
  1355. resolution:
  1356. {
  1357. integrity: sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw==,
  1358. }
  1359. peerDependencies:
  1360. "@octokit/core": ">=2"
  1361. dependencies:
  1362. "@octokit/core": 3.6.0
  1363. "@octokit/types": 6.41.0
  1364. dev: true
  1365. /@octokit/plugin-rest-endpoint-methods@5.16.2(@octokit/core@3.6.0):
  1366. resolution:
  1367. {
  1368. integrity: sha512-8QFz29Fg5jDuTPXVtey05BLm7OB+M8fnvE64RNegzX7U+5NUXcOcnpTIK0YfSHBg8gYd0oxIq3IZTe9SfPZiRw==,
  1369. }
  1370. peerDependencies:
  1371. "@octokit/core": ">=3"
  1372. dependencies:
  1373. "@octokit/core": 3.6.0
  1374. "@octokit/types": 6.41.0
  1375. deprecation: 2.3.1
  1376. dev: true
  1377. /@octokit/request-error@2.1.0:
  1378. resolution:
  1379. {
  1380. integrity: sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==,
  1381. }
  1382. dependencies:
  1383. "@octokit/types": 6.41.0
  1384. deprecation: 2.3.1
  1385. once: 1.4.0
  1386. dev: true
  1387. /@octokit/request@5.6.3:
  1388. resolution:
  1389. {
  1390. integrity: sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==,
  1391. }
  1392. dependencies:
  1393. "@octokit/endpoint": 6.0.12
  1394. "@octokit/request-error": 2.1.0
  1395. "@octokit/types": 6.41.0
  1396. is-plain-object: 5.0.0
  1397. node-fetch: 2.7.0
  1398. universal-user-agent: 6.0.1
  1399. transitivePeerDependencies:
  1400. - encoding
  1401. dev: true
  1402. /@octokit/types@6.41.0:
  1403. resolution:
  1404. {
  1405. integrity: sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==,
  1406. }
  1407. dependencies:
  1408. "@octokit/openapi-types": 12.11.0
  1409. dev: true
  1410. /@popperjs/core@2.11.8:
  1411. resolution:
  1412. {
  1413. integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==,
  1414. }
  1415. dev: false
  1416. /@remix-run/router@1.13.0:
  1417. resolution:
  1418. {
  1419. integrity: sha512-5dMOnVnefRsl4uRnAdoWjtVTdh8e6aZqgM4puy9nmEADH72ck+uXwzpJLEKE9Q6F8ZljNewLgmTfkxUrBdv4WA==,
  1420. }
  1421. engines: { node: ">=14.0.0" }
  1422. dev: false
  1423. /@rollup/pluginutils@5.1.0:
  1424. resolution:
  1425. {
  1426. integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==,
  1427. }
  1428. engines: { node: ">=14.0.0" }
  1429. peerDependencies:
  1430. rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
  1431. peerDependenciesMeta:
  1432. rollup:
  1433. optional: true
  1434. dependencies:
  1435. "@types/estree": 1.0.5
  1436. estree-walker: 2.0.2
  1437. picomatch: 2.3.1
  1438. dev: true
  1439. /@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.23.5):
  1440. resolution:
  1441. {
  1442. integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==,
  1443. }
  1444. engines: { node: ">=14" }
  1445. peerDependencies:
  1446. "@babel/core": ^7.0.0-0
  1447. dependencies:
  1448. "@babel/core": 7.23.5
  1449. dev: true
  1450. /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.23.5):
  1451. resolution:
  1452. {
  1453. integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==,
  1454. }
  1455. engines: { node: ">=14" }
  1456. peerDependencies:
  1457. "@babel/core": ^7.0.0-0
  1458. dependencies:
  1459. "@babel/core": 7.23.5
  1460. dev: true
  1461. /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.23.5):
  1462. resolution:
  1463. {
  1464. integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==,
  1465. }
  1466. engines: { node: ">=14" }
  1467. peerDependencies:
  1468. "@babel/core": ^7.0.0-0
  1469. dependencies:
  1470. "@babel/core": 7.23.5
  1471. dev: true
  1472. /@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.23.5):
  1473. resolution:
  1474. {
  1475. integrity: sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==,
  1476. }
  1477. engines: { node: ">=14" }
  1478. peerDependencies:
  1479. "@babel/core": ^7.0.0-0
  1480. dependencies:
  1481. "@babel/core": 7.23.5
  1482. dev: true
  1483. /@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.23.5):
  1484. resolution:
  1485. {
  1486. integrity: sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==,
  1487. }
  1488. engines: { node: ">=14" }
  1489. peerDependencies:
  1490. "@babel/core": ^7.0.0-0
  1491. dependencies:
  1492. "@babel/core": 7.23.5
  1493. dev: true
  1494. /@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.23.5):
  1495. resolution:
  1496. {
  1497. integrity: sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==,
  1498. }
  1499. engines: { node: ">=14" }
  1500. peerDependencies:
  1501. "@babel/core": ^7.0.0-0
  1502. dependencies:
  1503. "@babel/core": 7.23.5
  1504. dev: true
  1505. /@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.23.5):
  1506. resolution:
  1507. {
  1508. integrity: sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==,
  1509. }
  1510. engines: { node: ">=14" }
  1511. peerDependencies:
  1512. "@babel/core": ^7.0.0-0
  1513. dependencies:
  1514. "@babel/core": 7.23.5
  1515. dev: true
  1516. /@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.23.5):
  1517. resolution:
  1518. {
  1519. integrity: sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==,
  1520. }
  1521. engines: { node: ">=12" }
  1522. peerDependencies:
  1523. "@babel/core": ^7.0.0-0
  1524. dependencies:
  1525. "@babel/core": 7.23.5
  1526. dev: true
  1527. /@svgr/babel-preset@8.1.0(@babel/core@7.23.5):
  1528. resolution:
  1529. {
  1530. integrity: sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==,
  1531. }
  1532. engines: { node: ">=14" }
  1533. peerDependencies:
  1534. "@babel/core": ^7.0.0-0
  1535. dependencies:
  1536. "@babel/core": 7.23.5
  1537. "@svgr/babel-plugin-add-jsx-attribute": 8.0.0(@babel/core@7.23.5)
  1538. "@svgr/babel-plugin-remove-jsx-attribute": 8.0.0(@babel/core@7.23.5)
  1539. "@svgr/babel-plugin-remove-jsx-empty-expression": 8.0.0(@babel/core@7.23.5)
  1540. "@svgr/babel-plugin-replace-jsx-attribute-value": 8.0.0(@babel/core@7.23.5)
  1541. "@svgr/babel-plugin-svg-dynamic-title": 8.0.0(@babel/core@7.23.5)
  1542. "@svgr/babel-plugin-svg-em-dimensions": 8.0.0(@babel/core@7.23.5)
  1543. "@svgr/babel-plugin-transform-react-native-svg": 8.1.0(@babel/core@7.23.5)
  1544. "@svgr/babel-plugin-transform-svg-component": 8.0.0(@babel/core@7.23.5)
  1545. dev: true
  1546. /@svgr/core@8.1.0(typescript@5.3.2):
  1547. resolution:
  1548. {
  1549. integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==,
  1550. }
  1551. engines: { node: ">=14" }
  1552. dependencies:
  1553. "@babel/core": 7.23.5
  1554. "@svgr/babel-preset": 8.1.0(@babel/core@7.23.5)
  1555. camelcase: 6.3.0
  1556. cosmiconfig: 8.3.6(typescript@5.3.2)
  1557. snake-case: 3.0.4
  1558. transitivePeerDependencies:
  1559. - supports-color
  1560. - typescript
  1561. dev: true
  1562. /@svgr/hast-util-to-babel-ast@8.0.0:
  1563. resolution:
  1564. {
  1565. integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==,
  1566. }
  1567. engines: { node: ">=14" }
  1568. dependencies:
  1569. "@babel/types": 7.23.5
  1570. entities: 4.5.0
  1571. dev: true
  1572. /@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0):
  1573. resolution:
  1574. {
  1575. integrity: sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==,
  1576. }
  1577. engines: { node: ">=14" }
  1578. peerDependencies:
  1579. "@svgr/core": "*"
  1580. dependencies:
  1581. "@babel/core": 7.23.5
  1582. "@svgr/babel-preset": 8.1.0(@babel/core@7.23.5)
  1583. "@svgr/core": 8.1.0(typescript@5.3.2)
  1584. "@svgr/hast-util-to-babel-ast": 8.0.0
  1585. svg-parser: 2.0.4
  1586. transitivePeerDependencies:
  1587. - supports-color
  1588. dev: true
  1589. /@tauri-apps/api@1.5.1:
  1590. resolution:
  1591. {
  1592. integrity: sha512-6unsZDOdlXTmauU3NhWhn+Cx0rODV+rvNvTdvolE5Kls5ybA6cqndQENDt1+FS0tF7ozCP66jwWoH6a5h90BrA==,
  1593. }
  1594. engines: { node: ">= 14.6.0", npm: ">= 6.6.0", yarn: ">= 1.19.1" }
  1595. dev: false
  1596. /@tauri-apps/cli-darwin-arm64@1.5.6:
  1597. resolution:
  1598. {
  1599. integrity: sha512-NNvG3XLtciCMsBahbDNUEvq184VZmOveTGOuy0So2R33b/6FDkuWaSgWZsR1mISpOuP034htQYW0VITCLelfqg==,
  1600. }
  1601. engines: { node: ">= 10" }
  1602. cpu: [arm64]
  1603. os: [darwin]
  1604. requiresBuild: true
  1605. dev: true
  1606. optional: true
  1607. /@tauri-apps/cli-darwin-x64@1.5.6:
  1608. resolution:
  1609. {
  1610. integrity: sha512-nkiqmtUQw3N1j4WoVjv81q6zWuZFhBLya/RNGUL94oafORloOZoSY0uTZJAoeieb3Y1YK0rCHSDl02MyV2Fi4A==,
  1611. }
  1612. engines: { node: ">= 10" }
  1613. cpu: [x64]
  1614. os: [darwin]
  1615. requiresBuild: true
  1616. dev: true
  1617. optional: true
  1618. /@tauri-apps/cli-linux-arm-gnueabihf@1.5.6:
  1619. resolution:
  1620. {
  1621. integrity: sha512-z6SPx+axZexmWXTIVPNs4Tg7FtvdJl9EKxYN6JPjOmDZcqA13iyqWBQal2DA/GMZ1Xqo3vyJf6EoEaKaliymPQ==,
  1622. }
  1623. engines: { node: ">= 10" }
  1624. cpu: [arm]
  1625. os: [linux]
  1626. requiresBuild: true
  1627. dev: true
  1628. optional: true
  1629. /@tauri-apps/cli-linux-arm64-gnu@1.5.6:
  1630. resolution:
  1631. {
  1632. integrity: sha512-QuQjMQmpsCbzBrmtQiG4uhnfAbdFx3nzm+9LtqjuZlurc12+Mj5MTgqQ3AOwQedH3f7C+KlvbqD2AdXpwTg7VA==,
  1633. }
  1634. engines: { node: ">= 10" }
  1635. cpu: [arm64]
  1636. os: [linux]
  1637. libc: [glibc]
  1638. requiresBuild: true
  1639. dev: true
  1640. optional: true
  1641. /@tauri-apps/cli-linux-arm64-musl@1.5.6:
  1642. resolution:
  1643. {
  1644. integrity: sha512-8j5dH3odweFeom7bRGlfzDApWVOT4jIq8/214Wl+JeiNVehouIBo9lZGeghZBH3XKFRwEvU23i7sRVjuh2s8mg==,
  1645. }
  1646. engines: { node: ">= 10" }
  1647. cpu: [arm64]
  1648. os: [linux]
  1649. libc: [musl]
  1650. requiresBuild: true
  1651. dev: true
  1652. optional: true
  1653. /@tauri-apps/cli-linux-x64-gnu@1.5.6:
  1654. resolution:
  1655. {
  1656. integrity: sha512-gbFHYHfdEGW0ffk8SigDsoXks6USpilF6wR0nqB/JbWzbzFR/sBuLVNQlJl1RKNakyJHu+lsFxGy0fcTdoX8xA==,
  1657. }
  1658. engines: { node: ">= 10" }
  1659. cpu: [x64]
  1660. os: [linux]
  1661. libc: [glibc]
  1662. requiresBuild: true
  1663. dev: true
  1664. optional: true
  1665. /@tauri-apps/cli-linux-x64-musl@1.5.6:
  1666. resolution:
  1667. {
  1668. integrity: sha512-9v688ogoLkeFYQNgqiSErfhTreLUd8B3prIBSYUt+x4+5Kcw91zWvIh+VSxL1n3KCGGsM7cuXhkGPaxwlEh1ug==,
  1669. }
  1670. engines: { node: ">= 10" }
  1671. cpu: [x64]
  1672. os: [linux]
  1673. libc: [musl]
  1674. requiresBuild: true
  1675. dev: true
  1676. optional: true
  1677. /@tauri-apps/cli-win32-arm64-msvc@1.5.6:
  1678. resolution:
  1679. {
  1680. integrity: sha512-DRNDXFNZb6y5IZrw+lhTTA9l4wbzO4TNRBAlHAiXUrH+pRFZ/ZJtv5WEuAj9ocVSahVw2NaK5Yaold4NPAxHog==,
  1681. }
  1682. engines: { node: ">= 10" }
  1683. cpu: [arm64]
  1684. os: [win32]
  1685. requiresBuild: true
  1686. dev: true
  1687. optional: true
  1688. /@tauri-apps/cli-win32-ia32-msvc@1.5.6:
  1689. resolution:
  1690. {
  1691. integrity: sha512-oUYKNR/IZjF4fsOzRpw0xesl2lOjhsQEyWlgbpT25T83EU113Xgck9UjtI7xemNI/OPCv1tPiaM1e7/ABdg5iA==,
  1692. }
  1693. engines: { node: ">= 10" }
  1694. cpu: [ia32]
  1695. os: [win32]
  1696. requiresBuild: true
  1697. dev: true
  1698. optional: true
  1699. /@tauri-apps/cli-win32-x64-msvc@1.5.6:
  1700. resolution:
  1701. {
  1702. integrity: sha512-RmEf1os9C8//uq2hbjXi7Vgz9ne7798ZxqemAZdUwo1pv3oLVZSz1/IvZmUHPdy2e6zSeySqWu1D0Y3QRNN+dg==,
  1703. }
  1704. engines: { node: ">= 10" }
  1705. cpu: [x64]
  1706. os: [win32]
  1707. requiresBuild: true
  1708. dev: true
  1709. optional: true
  1710. /@tauri-apps/cli@1.5.6:
  1711. resolution:
  1712. {
  1713. integrity: sha512-k4Y19oVCnt7WZb2TnDzLqfs7o98Jq0tUoVMv+JQSzuRDJqaVu2xMBZ8dYplEn+EccdR5SOMyzaLBJWu38TVK1A==,
  1714. }
  1715. engines: { node: ">= 10" }
  1716. hasBin: true
  1717. optionalDependencies:
  1718. "@tauri-apps/cli-darwin-arm64": 1.5.6
  1719. "@tauri-apps/cli-darwin-x64": 1.5.6
  1720. "@tauri-apps/cli-linux-arm-gnueabihf": 1.5.6
  1721. "@tauri-apps/cli-linux-arm64-gnu": 1.5.6
  1722. "@tauri-apps/cli-linux-arm64-musl": 1.5.6
  1723. "@tauri-apps/cli-linux-x64-gnu": 1.5.6
  1724. "@tauri-apps/cli-linux-x64-musl": 1.5.6
  1725. "@tauri-apps/cli-win32-arm64-msvc": 1.5.6
  1726. "@tauri-apps/cli-win32-ia32-msvc": 1.5.6
  1727. "@tauri-apps/cli-win32-x64-msvc": 1.5.6
  1728. dev: true
  1729. /@types/babel__core@7.20.5:
  1730. resolution:
  1731. {
  1732. integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==,
  1733. }
  1734. dependencies:
  1735. "@babel/parser": 7.23.5
  1736. "@babel/types": 7.23.5
  1737. "@types/babel__generator": 7.6.7
  1738. "@types/babel__template": 7.4.4
  1739. "@types/babel__traverse": 7.20.4
  1740. dev: true
  1741. /@types/babel__generator@7.6.7:
  1742. resolution:
  1743. {
  1744. integrity: sha512-6Sfsq+EaaLrw4RmdFWE9Onp63TOUue71AWb4Gpa6JxzgTYtimbM086WnYTy2U67AofR++QKCo08ZP6pwx8YFHQ==,
  1745. }
  1746. dependencies:
  1747. "@babel/types": 7.23.5
  1748. dev: true
  1749. /@types/babel__template@7.4.4:
  1750. resolution:
  1751. {
  1752. integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==,
  1753. }
  1754. dependencies:
  1755. "@babel/parser": 7.23.5
  1756. "@babel/types": 7.23.5
  1757. dev: true
  1758. /@types/babel__traverse@7.20.4:
  1759. resolution:
  1760. {
  1761. integrity: sha512-mSM/iKUk5fDDrEV/e83qY+Cr3I1+Q3qqTuEn++HAWYjEa1+NxZr6CNrcJGf2ZTnq4HoFGC3zaTPZTobCzCFukA==,
  1762. }
  1763. dependencies:
  1764. "@babel/types": 7.23.5
  1765. dev: true
  1766. /@types/estree@1.0.5:
  1767. resolution:
  1768. {
  1769. integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==,
  1770. }
  1771. dev: true
  1772. /@types/fs-extra@9.0.13:
  1773. resolution:
  1774. {
  1775. integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==,
  1776. }
  1777. dependencies:
  1778. "@types/node": 20.10.1
  1779. dev: true
  1780. /@types/js-cookie@2.2.7:
  1781. resolution:
  1782. {
  1783. integrity: sha512-aLkWa0C0vO5b4Sr798E26QgOkss68Un0bLjs7u9qxzPT5CG+8DuNTffWES58YzJs3hrVAOs1wonycqEBqNJubA==,
  1784. }
  1785. dev: false
  1786. /@types/js-cookie@3.0.6:
  1787. resolution:
  1788. {
  1789. integrity: sha512-wkw9yd1kEXOPnvEeEV1Go1MmxtBJL0RR79aOTAApecWFVu7w0NNXNqhcWgvw2YgZDYadliXkl14pa3WXw5jlCQ==,
  1790. }
  1791. dev: true
  1792. /@types/lodash-es@4.17.12:
  1793. resolution:
  1794. {
  1795. integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==,
  1796. }
  1797. dependencies:
  1798. "@types/lodash": 4.14.202
  1799. dev: true
  1800. /@types/lodash@4.14.202:
  1801. resolution:
  1802. {
  1803. integrity: sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==,
  1804. }
  1805. dev: true
  1806. /@types/minimatch@3.0.5:
  1807. resolution:
  1808. {
  1809. integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==,
  1810. }
  1811. dev: true
  1812. /@types/node@20.10.1:
  1813. resolution:
  1814. {
  1815. integrity: sha512-T2qwhjWwGH81vUEx4EXmBKsTJRXFXNZTL4v0gi01+zyBmCwzE6TyHszqX01m+QHTEq+EZNo13NeJIdEqf+Myrg==,
  1816. }
  1817. dependencies:
  1818. undici-types: 5.26.5
  1819. dev: true
  1820. /@types/parse-json@4.0.2:
  1821. resolution:
  1822. {
  1823. integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==,
  1824. }
  1825. dev: false
  1826. /@types/prop-types@15.7.11:
  1827. resolution:
  1828. {
  1829. integrity: sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==,
  1830. }
  1831. /@types/react-dom@18.2.17:
  1832. resolution:
  1833. {
  1834. integrity: sha512-rvrT/M7Df5eykWFxn6MYt5Pem/Dbyc1N8Y0S9Mrkw2WFCRiqUgw9P7ul2NpwsXCSM1DVdENzdG9J5SreqfAIWg==,
  1835. }
  1836. dependencies:
  1837. "@types/react": 18.2.39
  1838. dev: true
  1839. /@types/react-transition-group@4.4.9:
  1840. resolution:
  1841. {
  1842. integrity: sha512-ZVNmWumUIh5NhH8aMD9CR2hdW0fNuYInlocZHaZ+dgk/1K49j1w/HoAuK1ki+pgscQrOFRTlXeoURtuzEkV3dg==,
  1843. }
  1844. dependencies:
  1845. "@types/react": 18.2.39
  1846. /@types/react@18.2.39:
  1847. resolution:
  1848. {
  1849. integrity: sha512-Oiw+ppED6IremMInLV4HXGbfbG6GyziY3kqAwJYOR0PNbkYDmLWQA3a95EhdSmamsvbkJN96ZNN+YD+fGjzSBA==,
  1850. }
  1851. dependencies:
  1852. "@types/prop-types": 15.7.11
  1853. "@types/scheduler": 0.16.8
  1854. csstype: 3.1.2
  1855. /@types/scheduler@0.16.8:
  1856. resolution:
  1857. {
  1858. integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==,
  1859. }
  1860. /@vitejs/plugin-react@4.2.0(vite@4.5.0):
  1861. resolution:
  1862. {
  1863. integrity: sha512-+MHTH/e6H12kRp5HUkzOGqPMksezRMmW+TNzlh/QXfI8rRf6l2Z2yH/v12no1UvTwhZgEDMuQ7g7rrfMseU6FQ==,
  1864. }
  1865. engines: { node: ^14.18.0 || >=16.0.0 }
  1866. peerDependencies:
  1867. vite: ^4.2.0 || ^5.0.0
  1868. dependencies:
  1869. "@babel/core": 7.23.5
  1870. "@babel/plugin-transform-react-jsx-self": 7.23.3(@babel/core@7.23.5)
  1871. "@babel/plugin-transform-react-jsx-source": 7.23.3(@babel/core@7.23.5)
  1872. "@types/babel__core": 7.20.5
  1873. react-refresh: 0.14.0
  1874. vite: 4.5.0(sass@1.69.5)
  1875. transitivePeerDependencies:
  1876. - supports-color
  1877. dev: true
  1878. /adm-zip@0.5.10:
  1879. resolution:
  1880. {
  1881. integrity: sha512-x0HvcHqVJNTPk/Bw8JbLWlWoo6Wwnsug0fnYYro1HBrjxZ3G7/AZk7Ahv8JwDe1uIcz8eBqvu86FuF1POiG7vQ==,
  1882. }
  1883. engines: { node: ">=6.0" }
  1884. dev: true
  1885. /agent-base@6.0.2:
  1886. resolution:
  1887. {
  1888. integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==,
  1889. }
  1890. engines: { node: ">= 6.0.0" }
  1891. dependencies:
  1892. debug: 4.3.4
  1893. transitivePeerDependencies:
  1894. - supports-color
  1895. dev: true
  1896. /ahooks-v3-count@1.0.0:
  1897. resolution:
  1898. {
  1899. integrity: sha512-V7uUvAwnimu6eh/PED4mCDjE7tokeZQLKlxg9lCTMPhN+NjsSbtdacByVlR1oluXQzD3MOw55wylDmQo4+S9ZQ==,
  1900. }
  1901. dev: false
  1902. /ahooks@3.7.8(react@18.2.0):
  1903. resolution:
  1904. {
  1905. integrity: sha512-e/NMlQWoCjaUtncNFIZk3FG1ImSkV/JhScQSkTqnftakRwdfZWSw6zzoWSG9OMYqPNs2MguDYBUFFC6THelWXA==,
  1906. }
  1907. engines: { node: ">=8.0.0" }
  1908. peerDependencies:
  1909. react: ^16.8.0 || ^17.0.0 || ^18.0.0
  1910. dependencies:
  1911. "@babel/runtime": 7.23.5
  1912. "@types/js-cookie": 2.2.7
  1913. ahooks-v3-count: 1.0.0
  1914. dayjs: 1.11.5
  1915. intersection-observer: 0.12.2
  1916. js-cookie: 2.2.1
  1917. lodash: 4.17.21
  1918. react: 18.2.0
  1919. resize-observer-polyfill: 1.5.1
  1920. screenfull: 5.2.0
  1921. tslib: 2.6.2
  1922. dev: false
  1923. /ansi-styles@3.2.1:
  1924. resolution:
  1925. {
  1926. integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==,
  1927. }
  1928. engines: { node: ">=4" }
  1929. dependencies:
  1930. color-convert: 1.9.3
  1931. /ansi-styles@4.3.0:
  1932. resolution:
  1933. {
  1934. integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==,
  1935. }
  1936. engines: { node: ">=8" }
  1937. dependencies:
  1938. color-convert: 2.0.1
  1939. dev: true
  1940. /anymatch@3.1.3:
  1941. resolution:
  1942. {
  1943. integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==,
  1944. }
  1945. engines: { node: ">= 8" }
  1946. dependencies:
  1947. normalize-path: 3.0.0
  1948. picomatch: 2.3.1
  1949. dev: true
  1950. /argparse@2.0.1:
  1951. resolution:
  1952. {
  1953. integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==,
  1954. }
  1955. dev: true
  1956. /array-differ@3.0.0:
  1957. resolution:
  1958. {
  1959. integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==,
  1960. }
  1961. engines: { node: ">=8" }
  1962. dev: true
  1963. /array-union@2.1.0:
  1964. resolution:
  1965. {
  1966. integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==,
  1967. }
  1968. engines: { node: ">=8" }
  1969. dev: true
  1970. /arrify@2.0.1:
  1971. resolution:
  1972. {
  1973. integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==,
  1974. }
  1975. engines: { node: ">=8" }
  1976. dev: true
  1977. /asynckit@0.4.0:
  1978. resolution:
  1979. {
  1980. integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==,
  1981. }
  1982. dev: false
  1983. /axios@1.6.2:
  1984. resolution:
  1985. {
  1986. integrity: sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==,
  1987. }
  1988. dependencies:
  1989. follow-redirects: 1.15.3
  1990. form-data: 4.0.0
  1991. proxy-from-env: 1.1.0
  1992. transitivePeerDependencies:
  1993. - debug
  1994. dev: false
  1995. /babel-plugin-macros@3.1.0:
  1996. resolution:
  1997. {
  1998. integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==,
  1999. }
  2000. engines: { node: ">=10", npm: ">=6" }
  2001. dependencies:
  2002. "@babel/runtime": 7.23.5
  2003. cosmiconfig: 7.1.0
  2004. resolve: 1.22.8
  2005. dev: false
  2006. /balanced-match@1.0.2:
  2007. resolution:
  2008. {
  2009. integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==,
  2010. }
  2011. dev: true
  2012. /before-after-hook@2.2.3:
  2013. resolution:
  2014. {
  2015. integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==,
  2016. }
  2017. dev: true
  2018. /binary-extensions@2.2.0:
  2019. resolution:
  2020. {
  2021. integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==,
  2022. }
  2023. engines: { node: ">=8" }
  2024. dev: true
  2025. /brace-expansion@1.1.11:
  2026. resolution:
  2027. {
  2028. integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==,
  2029. }
  2030. dependencies:
  2031. balanced-match: 1.0.2
  2032. concat-map: 0.0.1
  2033. dev: true
  2034. /braces@3.0.2:
  2035. resolution:
  2036. {
  2037. integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==,
  2038. }
  2039. engines: { node: ">=8" }
  2040. dependencies:
  2041. fill-range: 7.0.1
  2042. dev: true
  2043. /browserslist@4.22.1:
  2044. resolution:
  2045. {
  2046. integrity: sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==,
  2047. }
  2048. engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 }
  2049. hasBin: true
  2050. dependencies:
  2051. caniuse-lite: 1.0.30001565
  2052. electron-to-chromium: 1.4.600
  2053. node-releases: 2.0.14
  2054. update-browserslist-db: 1.0.13(browserslist@4.22.1)
  2055. dev: true
  2056. /callsites@3.1.0:
  2057. resolution:
  2058. {
  2059. integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==,
  2060. }
  2061. engines: { node: ">=6" }
  2062. /camelcase@6.3.0:
  2063. resolution:
  2064. {
  2065. integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==,
  2066. }
  2067. engines: { node: ">=10" }
  2068. dev: true
  2069. /caniuse-lite@1.0.30001565:
  2070. resolution:
  2071. {
  2072. integrity: sha512-xrE//a3O7TP0vaJ8ikzkD2c2NgcVUvsEe2IvFTntV4Yd1Z9FVzh+gW+enX96L0psrbaFMcVcH2l90xNuGDWc8w==,
  2073. }
  2074. dev: true
  2075. /chalk@2.4.2:
  2076. resolution:
  2077. {
  2078. integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==,
  2079. }
  2080. engines: { node: ">=4" }
  2081. dependencies:
  2082. ansi-styles: 3.2.1
  2083. escape-string-regexp: 1.0.5
  2084. supports-color: 5.5.0
  2085. /chalk@3.0.0:
  2086. resolution:
  2087. {
  2088. integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==,
  2089. }
  2090. engines: { node: ">=8" }
  2091. dependencies:
  2092. ansi-styles: 4.3.0
  2093. supports-color: 7.2.0
  2094. dev: true
  2095. /chokidar@3.5.3:
  2096. resolution:
  2097. {
  2098. integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==,
  2099. }
  2100. engines: { node: ">= 8.10.0" }
  2101. dependencies:
  2102. anymatch: 3.1.3
  2103. braces: 3.0.2
  2104. glob-parent: 5.1.2
  2105. is-binary-path: 2.1.0
  2106. is-glob: 4.0.3
  2107. normalize-path: 3.0.0
  2108. readdirp: 3.6.0
  2109. optionalDependencies:
  2110. fsevents: 2.3.3
  2111. dev: true
  2112. /chownr@2.0.0:
  2113. resolution:
  2114. {
  2115. integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==,
  2116. }
  2117. engines: { node: ">=10" }
  2118. dev: false
  2119. /clsx@2.0.0:
  2120. resolution:
  2121. {
  2122. integrity: sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==,
  2123. }
  2124. engines: { node: ">=6" }
  2125. dev: false
  2126. /color-convert@1.9.3:
  2127. resolution:
  2128. {
  2129. integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==,
  2130. }
  2131. dependencies:
  2132. color-name: 1.1.3
  2133. /color-convert@2.0.1:
  2134. resolution:
  2135. {
  2136. integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==,
  2137. }
  2138. engines: { node: ">=7.0.0" }
  2139. dependencies:
  2140. color-name: 1.1.4
  2141. dev: true
  2142. /color-name@1.1.3:
  2143. resolution:
  2144. {
  2145. integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==,
  2146. }
  2147. /color-name@1.1.4:
  2148. resolution:
  2149. {
  2150. integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==,
  2151. }
  2152. dev: true
  2153. /combined-stream@1.0.8:
  2154. resolution:
  2155. {
  2156. integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==,
  2157. }
  2158. engines: { node: ">= 0.8" }
  2159. dependencies:
  2160. delayed-stream: 1.0.0
  2161. dev: false
  2162. /concat-map@0.0.1:
  2163. resolution:
  2164. {
  2165. integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==,
  2166. }
  2167. dev: true
  2168. /convert-source-map@1.9.0:
  2169. resolution:
  2170. {
  2171. integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==,
  2172. }
  2173. dev: false
  2174. /convert-source-map@2.0.0:
  2175. resolution:
  2176. {
  2177. integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==,
  2178. }
  2179. dev: true
  2180. /cosmiconfig@7.1.0:
  2181. resolution:
  2182. {
  2183. integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==,
  2184. }
  2185. engines: { node: ">=10" }
  2186. dependencies:
  2187. "@types/parse-json": 4.0.2
  2188. import-fresh: 3.3.0
  2189. parse-json: 5.2.0
  2190. path-type: 4.0.0
  2191. yaml: 1.10.2
  2192. dev: false
  2193. /cosmiconfig@8.3.6(typescript@5.3.2):
  2194. resolution:
  2195. {
  2196. integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==,
  2197. }
  2198. engines: { node: ">=14" }
  2199. peerDependencies:
  2200. typescript: ">=4.9.5"
  2201. peerDependenciesMeta:
  2202. typescript:
  2203. optional: true
  2204. dependencies:
  2205. import-fresh: 3.3.0
  2206. js-yaml: 4.1.0
  2207. parse-json: 5.2.0
  2208. path-type: 4.0.0
  2209. typescript: 5.3.2
  2210. dev: true
  2211. /cross-env@7.0.3:
  2212. resolution:
  2213. {
  2214. integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==,
  2215. }
  2216. engines: { node: ">=10.14", npm: ">=6", yarn: ">=1" }
  2217. hasBin: true
  2218. dependencies:
  2219. cross-spawn: 7.0.3
  2220. dev: true
  2221. /cross-spawn@7.0.3:
  2222. resolution:
  2223. {
  2224. integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==,
  2225. }
  2226. engines: { node: ">= 8" }
  2227. dependencies:
  2228. path-key: 3.1.1
  2229. shebang-command: 2.0.0
  2230. which: 2.0.2
  2231. dev: true
  2232. /csstype@3.1.2:
  2233. resolution:
  2234. {
  2235. integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==,
  2236. }
  2237. /data-uri-to-buffer@4.0.1:
  2238. resolution:
  2239. {
  2240. integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==,
  2241. }
  2242. engines: { node: ">= 12" }
  2243. dev: true
  2244. /dayjs@1.11.5:
  2245. resolution:
  2246. {
  2247. integrity: sha512-CAdX5Q3YW3Gclyo5Vpqkgpj8fSdLQcRuzfX6mC6Phy0nfJ0eGYOeS7m4mt2plDWLAtA4TqTakvbboHvUxfe4iA==,
  2248. }
  2249. dev: false
  2250. /debug@4.3.4:
  2251. resolution:
  2252. {
  2253. integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==,
  2254. }
  2255. engines: { node: ">=6.0" }
  2256. peerDependencies:
  2257. supports-color: "*"
  2258. peerDependenciesMeta:
  2259. supports-color:
  2260. optional: true
  2261. dependencies:
  2262. ms: 2.1.2
  2263. dev: true
  2264. /delayed-stream@1.0.0:
  2265. resolution:
  2266. {
  2267. integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==,
  2268. }
  2269. engines: { node: ">=0.4.0" }
  2270. dev: false
  2271. /deprecation@2.3.1:
  2272. resolution:
  2273. {
  2274. integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==,
  2275. }
  2276. dev: true
  2277. /dom-helpers@5.2.1:
  2278. resolution:
  2279. {
  2280. integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==,
  2281. }
  2282. dependencies:
  2283. "@babel/runtime": 7.23.5
  2284. csstype: 3.1.2
  2285. dev: false
  2286. /dot-case@3.0.4:
  2287. resolution:
  2288. {
  2289. integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==,
  2290. }
  2291. dependencies:
  2292. no-case: 3.0.4
  2293. tslib: 2.6.2
  2294. dev: true
  2295. /electron-to-chromium@1.4.600:
  2296. resolution:
  2297. {
  2298. integrity: sha512-KD6CWjf1BnQG+NsXuyiTDDT1eV13sKuYsOUioXkQweYTQIbgHkXPry9K7M+7cKtYHnSUPitVaLrXYB1jTkkYrw==,
  2299. }
  2300. dev: true
  2301. /end-of-stream@1.4.4:
  2302. resolution:
  2303. {
  2304. integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==,
  2305. }
  2306. dependencies:
  2307. once: 1.4.0
  2308. dev: true
  2309. /entities@4.5.0:
  2310. resolution:
  2311. {
  2312. integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==,
  2313. }
  2314. engines: { node: ">=0.12" }
  2315. dev: true
  2316. /error-ex@1.3.2:
  2317. resolution:
  2318. {
  2319. integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==,
  2320. }
  2321. dependencies:
  2322. is-arrayish: 0.2.1
  2323. /esbuild@0.18.20:
  2324. resolution:
  2325. {
  2326. integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==,
  2327. }
  2328. engines: { node: ">=12" }
  2329. hasBin: true
  2330. requiresBuild: true
  2331. optionalDependencies:
  2332. "@esbuild/android-arm": 0.18.20
  2333. "@esbuild/android-arm64": 0.18.20
  2334. "@esbuild/android-x64": 0.18.20
  2335. "@esbuild/darwin-arm64": 0.18.20
  2336. "@esbuild/darwin-x64": 0.18.20
  2337. "@esbuild/freebsd-arm64": 0.18.20
  2338. "@esbuild/freebsd-x64": 0.18.20
  2339. "@esbuild/linux-arm": 0.18.20
  2340. "@esbuild/linux-arm64": 0.18.20
  2341. "@esbuild/linux-ia32": 0.18.20
  2342. "@esbuild/linux-loong64": 0.18.20
  2343. "@esbuild/linux-mips64el": 0.18.20
  2344. "@esbuild/linux-ppc64": 0.18.20
  2345. "@esbuild/linux-riscv64": 0.18.20
  2346. "@esbuild/linux-s390x": 0.18.20
  2347. "@esbuild/linux-x64": 0.18.20
  2348. "@esbuild/netbsd-x64": 0.18.20
  2349. "@esbuild/openbsd-x64": 0.18.20
  2350. "@esbuild/sunos-x64": 0.18.20
  2351. "@esbuild/win32-arm64": 0.18.20
  2352. "@esbuild/win32-ia32": 0.18.20
  2353. "@esbuild/win32-x64": 0.18.20
  2354. dev: true
  2355. /escalade@3.1.1:
  2356. resolution:
  2357. {
  2358. integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==,
  2359. }
  2360. engines: { node: ">=6" }
  2361. dev: true
  2362. /escape-string-regexp@1.0.5:
  2363. resolution:
  2364. {
  2365. integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==,
  2366. }
  2367. engines: { node: ">=0.8.0" }
  2368. /escape-string-regexp@4.0.0:
  2369. resolution:
  2370. {
  2371. integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==,
  2372. }
  2373. engines: { node: ">=10" }
  2374. dev: false
  2375. /estree-walker@2.0.2:
  2376. resolution:
  2377. {
  2378. integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==,
  2379. }
  2380. dev: true
  2381. /execa@4.1.0:
  2382. resolution:
  2383. {
  2384. integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==,
  2385. }
  2386. engines: { node: ">=10" }
  2387. dependencies:
  2388. cross-spawn: 7.0.3
  2389. get-stream: 5.2.0
  2390. human-signals: 1.1.1
  2391. is-stream: 2.0.1
  2392. merge-stream: 2.0.0
  2393. npm-run-path: 4.0.1
  2394. onetime: 5.1.2
  2395. signal-exit: 3.0.7
  2396. strip-final-newline: 2.0.0
  2397. dev: true
  2398. /fetch-blob@3.2.0:
  2399. resolution:
  2400. {
  2401. integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==,
  2402. }
  2403. engines: { node: ^12.20 || >= 14.13 }
  2404. dependencies:
  2405. node-domexception: 1.0.0
  2406. web-streams-polyfill: 3.2.1
  2407. dev: true
  2408. /fill-range@7.0.1:
  2409. resolution:
  2410. {
  2411. integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==,
  2412. }
  2413. engines: { node: ">=8" }
  2414. dependencies:
  2415. to-regex-range: 5.0.1
  2416. dev: true
  2417. /find-root@1.1.0:
  2418. resolution:
  2419. {
  2420. integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==,
  2421. }
  2422. dev: false
  2423. /find-up@4.1.0:
  2424. resolution:
  2425. {
  2426. integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==,
  2427. }
  2428. engines: { node: ">=8" }
  2429. dependencies:
  2430. locate-path: 5.0.0
  2431. path-exists: 4.0.0
  2432. dev: true
  2433. /follow-redirects@1.15.3:
  2434. resolution:
  2435. {
  2436. integrity: sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==,
  2437. }
  2438. engines: { node: ">=4.0" }
  2439. peerDependencies:
  2440. debug: "*"
  2441. peerDependenciesMeta:
  2442. debug:
  2443. optional: true
  2444. dev: false
  2445. /form-data@4.0.0:
  2446. resolution:
  2447. {
  2448. integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==,
  2449. }
  2450. engines: { node: ">= 6" }
  2451. dependencies:
  2452. asynckit: 0.4.0
  2453. combined-stream: 1.0.8
  2454. mime-types: 2.1.35
  2455. dev: false
  2456. /formdata-polyfill@4.0.10:
  2457. resolution:
  2458. {
  2459. integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==,
  2460. }
  2461. engines: { node: ">=12.20.0" }
  2462. dependencies:
  2463. fetch-blob: 3.2.0
  2464. dev: true
  2465. /fs-extra@11.2.0:
  2466. resolution:
  2467. {
  2468. integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==,
  2469. }
  2470. engines: { node: ">=14.14" }
  2471. dependencies:
  2472. graceful-fs: 4.2.11
  2473. jsonfile: 6.1.0
  2474. universalify: 2.0.1
  2475. dev: true
  2476. /fs-minipass@2.1.0:
  2477. resolution:
  2478. {
  2479. integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==,
  2480. }
  2481. engines: { node: ">= 8" }
  2482. dependencies:
  2483. minipass: 3.3.6
  2484. dev: false
  2485. /fsevents@2.3.3:
  2486. resolution:
  2487. {
  2488. integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==,
  2489. }
  2490. engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 }
  2491. os: [darwin]
  2492. requiresBuild: true
  2493. dev: true
  2494. optional: true
  2495. /function-bind@1.1.2:
  2496. resolution:
  2497. {
  2498. integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==,
  2499. }
  2500. dev: false
  2501. /gensync@1.0.0-beta.2:
  2502. resolution:
  2503. {
  2504. integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==,
  2505. }
  2506. engines: { node: ">=6.9.0" }
  2507. dev: true
  2508. /get-stream@5.2.0:
  2509. resolution:
  2510. {
  2511. integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==,
  2512. }
  2513. engines: { node: ">=8" }
  2514. dependencies:
  2515. pump: 3.0.0
  2516. dev: true
  2517. /glob-parent@5.1.2:
  2518. resolution:
  2519. {
  2520. integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==,
  2521. }
  2522. engines: { node: ">= 6" }
  2523. dependencies:
  2524. is-glob: 4.0.3
  2525. dev: true
  2526. /globals@11.12.0:
  2527. resolution:
  2528. {
  2529. integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==,
  2530. }
  2531. engines: { node: ">=4" }
  2532. dev: true
  2533. /graceful-fs@4.2.11:
  2534. resolution:
  2535. {
  2536. integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==,
  2537. }
  2538. dev: true
  2539. /hamt_plus@1.0.2:
  2540. resolution:
  2541. {
  2542. integrity: sha512-t2JXKaehnMb9paaYA7J0BX8QQAY8lwfQ9Gjf4pg/mk4krt+cmwmU652HOoWonf+7+EQV97ARPMhhVgU1ra2GhA==,
  2543. }
  2544. dev: false
  2545. /has-flag@3.0.0:
  2546. resolution:
  2547. {
  2548. integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==,
  2549. }
  2550. engines: { node: ">=4" }
  2551. /has-flag@4.0.0:
  2552. resolution:
  2553. {
  2554. integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==,
  2555. }
  2556. engines: { node: ">=8" }
  2557. dev: true
  2558. /hasown@2.0.0:
  2559. resolution:
  2560. {
  2561. integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==,
  2562. }
  2563. engines: { node: ">= 0.4" }
  2564. dependencies:
  2565. function-bind: 1.1.2
  2566. dev: false
  2567. /hoist-non-react-statics@3.3.2:
  2568. resolution:
  2569. {
  2570. integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==,
  2571. }
  2572. dependencies:
  2573. react-is: 16.13.1
  2574. dev: false
  2575. /html-parse-stringify@3.0.1:
  2576. resolution:
  2577. {
  2578. integrity: sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==,
  2579. }
  2580. dependencies:
  2581. void-elements: 3.1.0
  2582. dev: false
  2583. /https-proxy-agent@5.0.1:
  2584. resolution:
  2585. {
  2586. integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==,
  2587. }
  2588. engines: { node: ">= 6" }
  2589. dependencies:
  2590. agent-base: 6.0.2
  2591. debug: 4.3.4
  2592. transitivePeerDependencies:
  2593. - supports-color
  2594. dev: true
  2595. /human-signals@1.1.1:
  2596. resolution:
  2597. {
  2598. integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==,
  2599. }
  2600. engines: { node: ">=8.12.0" }
  2601. dev: true
  2602. /husky@7.0.4:
  2603. resolution:
  2604. {
  2605. integrity: sha512-vbaCKN2QLtP/vD4yvs6iz6hBEo6wkSzs8HpRah1Z6aGmF2KW5PdYuAd7uX5a+OyBZHBhd+TFLqgjUgytQr4RvQ==,
  2606. }
  2607. engines: { node: ">=12" }
  2608. hasBin: true
  2609. dev: true
  2610. /i18next@23.7.7:
  2611. resolution:
  2612. {
  2613. integrity: sha512-peTvdT+Lma+o0LfLFD7IC2M37N9DJ04dH0IJYOyOHRhDfLo6nK36v7LkrQH35C2l8NHiiXZqGirhKESlEb/5PA==,
  2614. }
  2615. dependencies:
  2616. "@babel/runtime": 7.23.5
  2617. dev: false
  2618. /ignore@5.3.0:
  2619. resolution:
  2620. {
  2621. integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==,
  2622. }
  2623. engines: { node: ">= 4" }
  2624. dev: true
  2625. /immutable@4.3.4:
  2626. resolution:
  2627. {
  2628. integrity: sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==,
  2629. }
  2630. dev: true
  2631. /import-fresh@3.3.0:
  2632. resolution:
  2633. {
  2634. integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==,
  2635. }
  2636. engines: { node: ">=6" }
  2637. dependencies:
  2638. parent-module: 1.0.1
  2639. resolve-from: 4.0.0
  2640. /intersection-observer@0.12.2:
  2641. resolution:
  2642. {
  2643. integrity: sha512-7m1vEcPCxXYI8HqnL8CKI6siDyD+eIWSwgB3DZA+ZTogxk9I4CDnj4wilt9x/+/QbHI4YG5YZNmC6458/e9Ktg==,
  2644. }
  2645. dev: false
  2646. /is-arrayish@0.2.1:
  2647. resolution:
  2648. {
  2649. integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==,
  2650. }
  2651. /is-binary-path@2.1.0:
  2652. resolution:
  2653. {
  2654. integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==,
  2655. }
  2656. engines: { node: ">=8" }
  2657. dependencies:
  2658. binary-extensions: 2.2.0
  2659. dev: true
  2660. /is-core-module@2.13.1:
  2661. resolution:
  2662. {
  2663. integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==,
  2664. }
  2665. dependencies:
  2666. hasown: 2.0.0
  2667. dev: false
  2668. /is-extglob@2.1.1:
  2669. resolution:
  2670. {
  2671. integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==,
  2672. }
  2673. engines: { node: ">=0.10.0" }
  2674. dev: true
  2675. /is-glob@4.0.3:
  2676. resolution:
  2677. {
  2678. integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==,
  2679. }
  2680. engines: { node: ">=0.10.0" }
  2681. dependencies:
  2682. is-extglob: 2.1.1
  2683. dev: true
  2684. /is-number@7.0.0:
  2685. resolution:
  2686. {
  2687. integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==,
  2688. }
  2689. engines: { node: ">=0.12.0" }
  2690. dev: true
  2691. /is-plain-object@5.0.0:
  2692. resolution:
  2693. {
  2694. integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==,
  2695. }
  2696. engines: { node: ">=0.10.0" }
  2697. dev: true
  2698. /is-stream@2.0.1:
  2699. resolution:
  2700. {
  2701. integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==,
  2702. }
  2703. engines: { node: ">=8" }
  2704. dev: true
  2705. /isexe@2.0.0:
  2706. resolution:
  2707. {
  2708. integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==,
  2709. }
  2710. dev: true
  2711. /js-cookie@2.2.1:
  2712. resolution:
  2713. {
  2714. integrity: sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ==,
  2715. }
  2716. dev: false
  2717. /js-tokens@4.0.0:
  2718. resolution:
  2719. {
  2720. integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==,
  2721. }
  2722. /js-yaml@4.1.0:
  2723. resolution:
  2724. {
  2725. integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==,
  2726. }
  2727. hasBin: true
  2728. dependencies:
  2729. argparse: 2.0.1
  2730. dev: true
  2731. /jsesc@2.5.2:
  2732. resolution:
  2733. {
  2734. integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==,
  2735. }
  2736. engines: { node: ">=4" }
  2737. hasBin: true
  2738. dev: true
  2739. /json-parse-even-better-errors@2.3.1:
  2740. resolution:
  2741. {
  2742. integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==,
  2743. }
  2744. /json5@2.2.3:
  2745. resolution:
  2746. {
  2747. integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==,
  2748. }
  2749. engines: { node: ">=6" }
  2750. hasBin: true
  2751. dev: true
  2752. /jsonfile@6.1.0:
  2753. resolution:
  2754. {
  2755. integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==,
  2756. }
  2757. dependencies:
  2758. universalify: 2.0.1
  2759. optionalDependencies:
  2760. graceful-fs: 4.2.11
  2761. dev: true
  2762. /lines-and-columns@1.2.4:
  2763. resolution:
  2764. {
  2765. integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==,
  2766. }
  2767. /locate-path@5.0.0:
  2768. resolution:
  2769. {
  2770. integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==,
  2771. }
  2772. engines: { node: ">=8" }
  2773. dependencies:
  2774. p-locate: 4.1.0
  2775. dev: true
  2776. /lodash-es@4.17.21:
  2777. resolution:
  2778. {
  2779. integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==,
  2780. }
  2781. dev: false
  2782. /lodash@4.17.21:
  2783. resolution:
  2784. {
  2785. integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==,
  2786. }
  2787. dev: false
  2788. /loose-envify@1.4.0:
  2789. resolution:
  2790. {
  2791. integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==,
  2792. }
  2793. hasBin: true
  2794. dependencies:
  2795. js-tokens: 4.0.0
  2796. dev: false
  2797. /lower-case@2.0.2:
  2798. resolution:
  2799. {
  2800. integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==,
  2801. }
  2802. dependencies:
  2803. tslib: 2.6.2
  2804. dev: true
  2805. /lru-cache@5.1.1:
  2806. resolution:
  2807. {
  2808. integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==,
  2809. }
  2810. dependencies:
  2811. yallist: 3.1.1
  2812. dev: true
  2813. /merge-stream@2.0.0:
  2814. resolution:
  2815. {
  2816. integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==,
  2817. }
  2818. dev: true
  2819. /mime-db@1.52.0:
  2820. resolution:
  2821. {
  2822. integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==,
  2823. }
  2824. engines: { node: ">= 0.6" }
  2825. dev: false
  2826. /mime-types@2.1.35:
  2827. resolution:
  2828. {
  2829. integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==,
  2830. }
  2831. engines: { node: ">= 0.6" }
  2832. dependencies:
  2833. mime-db: 1.52.0
  2834. dev: false
  2835. /mimic-fn@2.1.0:
  2836. resolution:
  2837. {
  2838. integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==,
  2839. }
  2840. engines: { node: ">=6" }
  2841. dev: true
  2842. /minimatch@3.1.2:
  2843. resolution:
  2844. {
  2845. integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==,
  2846. }
  2847. dependencies:
  2848. brace-expansion: 1.1.11
  2849. dev: true
  2850. /minipass@3.3.6:
  2851. resolution:
  2852. {
  2853. integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==,
  2854. }
  2855. engines: { node: ">=8" }
  2856. dependencies:
  2857. yallist: 4.0.0
  2858. dev: false
  2859. /minipass@5.0.0:
  2860. resolution:
  2861. {
  2862. integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==,
  2863. }
  2864. engines: { node: ">=8" }
  2865. dev: false
  2866. /minizlib@2.1.2:
  2867. resolution:
  2868. {
  2869. integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==,
  2870. }
  2871. engines: { node: ">= 8" }
  2872. dependencies:
  2873. minipass: 3.3.6
  2874. yallist: 4.0.0
  2875. dev: false
  2876. /mkdirp@1.0.4:
  2877. resolution:
  2878. {
  2879. integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==,
  2880. }
  2881. engines: { node: ">=10" }
  2882. hasBin: true
  2883. dev: false
  2884. /monaco-editor@0.34.1:
  2885. resolution:
  2886. {
  2887. integrity: sha512-FKc80TyiMaruhJKKPz5SpJPIjL+dflGvz4CpuThaPMc94AyN7SeC9HQ8hrvaxX7EyHdJcUY5i4D0gNyJj1vSZQ==,
  2888. }
  2889. /mri@1.2.0:
  2890. resolution:
  2891. {
  2892. integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==,
  2893. }
  2894. engines: { node: ">=4" }
  2895. dev: true
  2896. /ms@2.1.2:
  2897. resolution:
  2898. {
  2899. integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==,
  2900. }
  2901. dev: true
  2902. /multimatch@4.0.0:
  2903. resolution:
  2904. {
  2905. integrity: sha512-lDmx79y1z6i7RNx0ZGCPq1bzJ6ZoDDKbvh7jxr9SJcWLkShMzXrHbYVpTdnhNM5MXpDUxCQ4DgqVttVXlBgiBQ==,
  2906. }
  2907. engines: { node: ">=8" }
  2908. dependencies:
  2909. "@types/minimatch": 3.0.5
  2910. array-differ: 3.0.0
  2911. array-union: 2.1.0
  2912. arrify: 2.0.1
  2913. minimatch: 3.1.2
  2914. dev: true
  2915. /nanoid@3.3.7:
  2916. resolution:
  2917. {
  2918. integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==,
  2919. }
  2920. engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 }
  2921. hasBin: true
  2922. dev: true
  2923. /nanoid@5.0.4:
  2924. resolution:
  2925. {
  2926. integrity: sha512-vAjmBf13gsmhXSgBrtIclinISzFFy22WwCYoyilZlsrRXNIHSwgFQ1bEdjRwMT3aoadeIF6HMuDRlOxzfXV8ig==,
  2927. }
  2928. engines: { node: ^18 || >=20 }
  2929. hasBin: true
  2930. dev: false
  2931. /no-case@3.0.4:
  2932. resolution:
  2933. {
  2934. integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==,
  2935. }
  2936. dependencies:
  2937. lower-case: 2.0.2
  2938. tslib: 2.6.2
  2939. dev: true
  2940. /node-domexception@1.0.0:
  2941. resolution:
  2942. {
  2943. integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==,
  2944. }
  2945. engines: { node: ">=10.5.0" }
  2946. dev: true
  2947. /node-fetch@2.7.0:
  2948. resolution:
  2949. {
  2950. integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==,
  2951. }
  2952. engines: { node: 4.x || >=6.0.0 }
  2953. peerDependencies:
  2954. encoding: ^0.1.0
  2955. peerDependenciesMeta:
  2956. encoding:
  2957. optional: true
  2958. dependencies:
  2959. whatwg-url: 5.0.0
  2960. dev: true
  2961. /node-fetch@3.3.2:
  2962. resolution:
  2963. {
  2964. integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==,
  2965. }
  2966. engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
  2967. dependencies:
  2968. data-uri-to-buffer: 4.0.1
  2969. fetch-blob: 3.2.0
  2970. formdata-polyfill: 4.0.10
  2971. dev: true
  2972. /node-releases@2.0.14:
  2973. resolution:
  2974. {
  2975. integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==,
  2976. }
  2977. dev: true
  2978. /normalize-path@3.0.0:
  2979. resolution:
  2980. {
  2981. integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==,
  2982. }
  2983. engines: { node: ">=0.10.0" }
  2984. dev: true
  2985. /npm-run-path@4.0.1:
  2986. resolution:
  2987. {
  2988. integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==,
  2989. }
  2990. engines: { node: ">=8" }
  2991. dependencies:
  2992. path-key: 3.1.1
  2993. dev: true
  2994. /object-assign@4.1.1:
  2995. resolution:
  2996. {
  2997. integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==,
  2998. }
  2999. engines: { node: ">=0.10.0" }
  3000. dev: false
  3001. /once@1.4.0:
  3002. resolution:
  3003. {
  3004. integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==,
  3005. }
  3006. dependencies:
  3007. wrappy: 1.0.2
  3008. dev: true
  3009. /onetime@5.1.2:
  3010. resolution:
  3011. {
  3012. integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==,
  3013. }
  3014. engines: { node: ">=6" }
  3015. dependencies:
  3016. mimic-fn: 2.1.0
  3017. dev: true
  3018. /p-limit@2.3.0:
  3019. resolution:
  3020. {
  3021. integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==,
  3022. }
  3023. engines: { node: ">=6" }
  3024. dependencies:
  3025. p-try: 2.2.0
  3026. dev: true
  3027. /p-locate@4.1.0:
  3028. resolution:
  3029. {
  3030. integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==,
  3031. }
  3032. engines: { node: ">=8" }
  3033. dependencies:
  3034. p-limit: 2.3.0
  3035. dev: true
  3036. /p-try@2.2.0:
  3037. resolution:
  3038. {
  3039. integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==,
  3040. }
  3041. engines: { node: ">=6" }
  3042. dev: true
  3043. /parent-module@1.0.1:
  3044. resolution:
  3045. {
  3046. integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==,
  3047. }
  3048. engines: { node: ">=6" }
  3049. dependencies:
  3050. callsites: 3.1.0
  3051. /parse-json@5.2.0:
  3052. resolution:
  3053. {
  3054. integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==,
  3055. }
  3056. engines: { node: ">=8" }
  3057. dependencies:
  3058. "@babel/code-frame": 7.23.5
  3059. error-ex: 1.3.2
  3060. json-parse-even-better-errors: 2.3.1
  3061. lines-and-columns: 1.2.4
  3062. /path-exists@4.0.0:
  3063. resolution:
  3064. {
  3065. integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==,
  3066. }
  3067. engines: { node: ">=8" }
  3068. dev: true
  3069. /path-key@3.1.1:
  3070. resolution:
  3071. {
  3072. integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==,
  3073. }
  3074. engines: { node: ">=8" }
  3075. dev: true
  3076. /path-parse@1.0.7:
  3077. resolution:
  3078. {
  3079. integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==,
  3080. }
  3081. dev: false
  3082. /path-type@4.0.0:
  3083. resolution:
  3084. {
  3085. integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==,
  3086. }
  3087. engines: { node: ">=8" }
  3088. /picocolors@1.0.0:
  3089. resolution:
  3090. {
  3091. integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==,
  3092. }
  3093. dev: true
  3094. /picomatch@2.3.1:
  3095. resolution:
  3096. {
  3097. integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==,
  3098. }
  3099. engines: { node: ">=8.6" }
  3100. dev: true
  3101. /postcss@8.4.31:
  3102. resolution:
  3103. {
  3104. integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==,
  3105. }
  3106. engines: { node: ^10 || ^12 || >=14 }
  3107. dependencies:
  3108. nanoid: 3.3.7
  3109. picocolors: 1.0.0
  3110. source-map-js: 1.0.2
  3111. dev: true
  3112. /prettier@2.8.8:
  3113. resolution:
  3114. {
  3115. integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==,
  3116. }
  3117. engines: { node: ">=10.13.0" }
  3118. hasBin: true
  3119. dev: true
  3120. /pretty-quick@3.1.3(prettier@2.8.8):
  3121. resolution:
  3122. {
  3123. integrity: sha512-kOCi2FJabvuh1as9enxYmrnBC6tVMoVOenMaBqRfsvBHB0cbpYHjdQEpSglpASDFEXVwplpcGR4CLEaisYAFcA==,
  3124. }
  3125. engines: { node: ">=10.13" }
  3126. hasBin: true
  3127. peerDependencies:
  3128. prettier: ">=2.0.0"
  3129. dependencies:
  3130. chalk: 3.0.0
  3131. execa: 4.1.0
  3132. find-up: 4.1.0
  3133. ignore: 5.3.0
  3134. mri: 1.2.0
  3135. multimatch: 4.0.0
  3136. prettier: 2.8.8
  3137. dev: true
  3138. /prop-types@15.8.1:
  3139. resolution:
  3140. {
  3141. integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==,
  3142. }
  3143. dependencies:
  3144. loose-envify: 1.4.0
  3145. object-assign: 4.1.1
  3146. react-is: 16.13.1
  3147. dev: false
  3148. /proxy-from-env@1.1.0:
  3149. resolution:
  3150. {
  3151. integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==,
  3152. }
  3153. dev: false
  3154. /pump@3.0.0:
  3155. resolution:
  3156. {
  3157. integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==,
  3158. }
  3159. dependencies:
  3160. end-of-stream: 1.4.4
  3161. once: 1.4.0
  3162. dev: true
  3163. /react-dom@18.2.0(react@18.2.0):
  3164. resolution:
  3165. {
  3166. integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==,
  3167. }
  3168. peerDependencies:
  3169. react: ^18.2.0
  3170. dependencies:
  3171. loose-envify: 1.4.0
  3172. react: 18.2.0
  3173. scheduler: 0.23.0
  3174. dev: false
  3175. /react-error-boundary@3.1.4(react@18.2.0):
  3176. resolution:
  3177. {
  3178. integrity: sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==,
  3179. }
  3180. engines: { node: ">=10", npm: ">=6" }
  3181. peerDependencies:
  3182. react: ">=16.13.1"
  3183. dependencies:
  3184. "@babel/runtime": 7.23.5
  3185. react: 18.2.0
  3186. dev: false
  3187. /react-hook-form@7.48.2(react@18.2.0):
  3188. resolution:
  3189. {
  3190. integrity: sha512-H0T2InFQb1hX7qKtDIZmvpU1Xfn/bdahWBN1fH19gSe4bBEqTfmlr7H3XWTaVtiK4/tpPaI1F3355GPMZYge+A==,
  3191. }
  3192. engines: { node: ">=12.22.0" }
  3193. peerDependencies:
  3194. react: ^16.8.0 || ^17 || ^18
  3195. dependencies:
  3196. react: 18.2.0
  3197. dev: false
  3198. /react-i18next@13.5.0(i18next@23.7.7)(react-dom@18.2.0)(react@18.2.0):
  3199. resolution:
  3200. {
  3201. integrity: sha512-CFJ5NDGJ2MUyBohEHxljOq/39NQ972rh1ajnadG9BjTk+UXbHLq4z5DKEbEQBDoIhUmmbuS/fIMJKo6VOax1HA==,
  3202. }
  3203. peerDependencies:
  3204. i18next: ">= 23.2.3"
  3205. react: ">= 16.8.0"
  3206. react-dom: "*"
  3207. react-native: "*"
  3208. peerDependenciesMeta:
  3209. react-dom:
  3210. optional: true
  3211. react-native:
  3212. optional: true
  3213. dependencies:
  3214. "@babel/runtime": 7.23.5
  3215. html-parse-stringify: 3.0.1
  3216. i18next: 23.7.7
  3217. react: 18.2.0
  3218. react-dom: 18.2.0(react@18.2.0)
  3219. dev: false
  3220. /react-is@16.13.1:
  3221. resolution:
  3222. {
  3223. integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==,
  3224. }
  3225. dev: false
  3226. /react-is@18.2.0:
  3227. resolution:
  3228. {
  3229. integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==,
  3230. }
  3231. dev: false
  3232. /react-refresh@0.14.0:
  3233. resolution:
  3234. {
  3235. integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==,
  3236. }
  3237. engines: { node: ">=0.10.0" }
  3238. dev: true
  3239. /react-router-dom@6.20.0(react-dom@18.2.0)(react@18.2.0):
  3240. resolution:
  3241. {
  3242. integrity: sha512-CbcKjEyiSVpA6UtCHOIYLUYn/UJfwzp55va4yEfpk7JBN3GPqWfHrdLkAvNCcpXr8QoihcDMuk0dzWZxtlB/mQ==,
  3243. }
  3244. engines: { node: ">=14.0.0" }
  3245. peerDependencies:
  3246. react: ">=16.8"
  3247. react-dom: ">=16.8"
  3248. dependencies:
  3249. "@remix-run/router": 1.13.0
  3250. react: 18.2.0
  3251. react-dom: 18.2.0(react@18.2.0)
  3252. react-router: 6.20.0(react@18.2.0)
  3253. dev: false
  3254. /react-router@6.20.0(react@18.2.0):
  3255. resolution:
  3256. {
  3257. integrity: sha512-pVvzsSsgUxxtuNfTHC4IxjATs10UaAtvLGVSA1tbUE4GDaOSU1Esu2xF5nWLz7KPiMuW8BJWuPFdlGYJ7/rW0w==,
  3258. }
  3259. engines: { node: ">=14.0.0" }
  3260. peerDependencies:
  3261. react: ">=16.8"
  3262. dependencies:
  3263. "@remix-run/router": 1.13.0
  3264. react: 18.2.0
  3265. dev: false
  3266. /react-transition-group@4.4.5(react-dom@18.2.0)(react@18.2.0):
  3267. resolution:
  3268. {
  3269. integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==,
  3270. }
  3271. peerDependencies:
  3272. react: ">=16.6.0"
  3273. react-dom: ">=16.6.0"
  3274. dependencies:
  3275. "@babel/runtime": 7.23.5
  3276. dom-helpers: 5.2.1
  3277. loose-envify: 1.4.0
  3278. prop-types: 15.8.1
  3279. react: 18.2.0
  3280. react-dom: 18.2.0(react@18.2.0)
  3281. dev: false
  3282. /react-virtuoso@4.6.2(react-dom@18.2.0)(react@18.2.0):
  3283. resolution:
  3284. {
  3285. integrity: sha512-vvlqvzPif+MvBrJ09+hJJrVY0xJK9yran+A+/1iwY78k0YCVKsyoNPqoLxOxzYPggspNBNXqUXEcvckN29OxyQ==,
  3286. }
  3287. engines: { node: ">=10" }
  3288. peerDependencies:
  3289. react: ">=16 || >=17 || >= 18"
  3290. react-dom: ">=16 || >=17 || >= 18"
  3291. dependencies:
  3292. react: 18.2.0
  3293. react-dom: 18.2.0(react@18.2.0)
  3294. dev: false
  3295. /react@18.2.0:
  3296. resolution:
  3297. {
  3298. integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==,
  3299. }
  3300. engines: { node: ">=0.10.0" }
  3301. dependencies:
  3302. loose-envify: 1.4.0
  3303. dev: false
  3304. /readdirp@3.6.0:
  3305. resolution:
  3306. {
  3307. integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==,
  3308. }
  3309. engines: { node: ">=8.10.0" }
  3310. dependencies:
  3311. picomatch: 2.3.1
  3312. dev: true
  3313. /recoil@0.7.7(react-dom@18.2.0)(react@18.2.0):
  3314. resolution:
  3315. {
  3316. integrity: sha512-8Og5KPQW9LwC577Vc7Ug2P0vQshkv1y3zG3tSSkWMqkWSwHmE+by06L8JtnGocjW6gcCvfwB3YtrJG6/tWivNQ==,
  3317. }
  3318. peerDependencies:
  3319. react: ">=16.13.1"
  3320. react-dom: "*"
  3321. react-native: "*"
  3322. peerDependenciesMeta:
  3323. react-dom:
  3324. optional: true
  3325. react-native:
  3326. optional: true
  3327. dependencies:
  3328. hamt_plus: 1.0.2
  3329. react: 18.2.0
  3330. react-dom: 18.2.0(react@18.2.0)
  3331. dev: false
  3332. /regenerator-runtime@0.14.0:
  3333. resolution:
  3334. {
  3335. integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==,
  3336. }
  3337. dev: false
  3338. /reselect@4.1.8:
  3339. resolution:
  3340. {
  3341. integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==,
  3342. }
  3343. dev: false
  3344. /resize-observer-polyfill@1.5.1:
  3345. resolution:
  3346. {
  3347. integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==,
  3348. }
  3349. dev: false
  3350. /resolve-from@4.0.0:
  3351. resolution:
  3352. {
  3353. integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==,
  3354. }
  3355. engines: { node: ">=4" }
  3356. /resolve@1.22.8:
  3357. resolution:
  3358. {
  3359. integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==,
  3360. }
  3361. hasBin: true
  3362. dependencies:
  3363. is-core-module: 2.13.1
  3364. path-parse: 1.0.7
  3365. supports-preserve-symlinks-flag: 1.0.0
  3366. dev: false
  3367. /rollup@3.29.4:
  3368. resolution:
  3369. {
  3370. integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==,
  3371. }
  3372. engines: { node: ">=14.18.0", npm: ">=8.0.0" }
  3373. hasBin: true
  3374. optionalDependencies:
  3375. fsevents: 2.3.3
  3376. dev: true
  3377. /sass@1.69.5:
  3378. resolution:
  3379. {
  3380. integrity: sha512-qg2+UCJibLr2LCVOt3OlPhr/dqVHWOa9XtZf2OjbLs/T4VPSJ00udtgJxH3neXZm+QqX8B+3cU7RaLqp1iVfcQ==,
  3381. }
  3382. engines: { node: ">=14.0.0" }
  3383. hasBin: true
  3384. dependencies:
  3385. chokidar: 3.5.3
  3386. immutable: 4.3.4
  3387. source-map-js: 1.0.2
  3388. dev: true
  3389. /scheduler@0.23.0:
  3390. resolution:
  3391. {
  3392. integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==,
  3393. }
  3394. dependencies:
  3395. loose-envify: 1.4.0
  3396. dev: false
  3397. /screenfull@5.2.0:
  3398. resolution:
  3399. {
  3400. integrity: sha512-9BakfsO2aUQN2K9Fdbj87RJIEZ82Q9IGim7FqM5OsebfoFC6ZHXgDq/KvniuLTPdeM8wY2o6Dj3WQ7KeQCj3cA==,
  3401. }
  3402. engines: { node: ">=0.10.0" }
  3403. dev: false
  3404. /semver@6.3.1:
  3405. resolution:
  3406. {
  3407. integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==,
  3408. }
  3409. hasBin: true
  3410. dev: true
  3411. /shebang-command@2.0.0:
  3412. resolution:
  3413. {
  3414. integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==,
  3415. }
  3416. engines: { node: ">=8" }
  3417. dependencies:
  3418. shebang-regex: 3.0.0
  3419. dev: true
  3420. /shebang-regex@3.0.0:
  3421. resolution:
  3422. {
  3423. integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==,
  3424. }
  3425. engines: { node: ">=8" }
  3426. dev: true
  3427. /signal-exit@3.0.7:
  3428. resolution:
  3429. {
  3430. integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==,
  3431. }
  3432. dev: true
  3433. /snake-case@3.0.4:
  3434. resolution:
  3435. {
  3436. integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==,
  3437. }
  3438. dependencies:
  3439. dot-case: 3.0.4
  3440. tslib: 2.6.2
  3441. dev: true
  3442. /snarkdown@2.0.0:
  3443. resolution:
  3444. {
  3445. integrity: sha512-MgL/7k/AZdXCTJiNgrO7chgDqaB9FGM/1Tvlcenenb7div6obaDATzs16JhFyHHBGodHT3B7RzRc5qk8pFhg3A==,
  3446. }
  3447. dev: false
  3448. /source-map-js@1.0.2:
  3449. resolution:
  3450. {
  3451. integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==,
  3452. }
  3453. engines: { node: ">=0.10.0" }
  3454. dev: true
  3455. /source-map@0.5.7:
  3456. resolution:
  3457. {
  3458. integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==,
  3459. }
  3460. engines: { node: ">=0.10.0" }
  3461. dev: false
  3462. /strip-final-newline@2.0.0:
  3463. resolution:
  3464. {
  3465. integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==,
  3466. }
  3467. engines: { node: ">=6" }
  3468. dev: true
  3469. /stylis@4.2.0:
  3470. resolution:
  3471. {
  3472. integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==,
  3473. }
  3474. dev: false
  3475. /supports-color@5.5.0:
  3476. resolution:
  3477. {
  3478. integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==,
  3479. }
  3480. engines: { node: ">=4" }
  3481. dependencies:
  3482. has-flag: 3.0.0
  3483. /supports-color@7.2.0:
  3484. resolution:
  3485. {
  3486. integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==,
  3487. }
  3488. engines: { node: ">=8" }
  3489. dependencies:
  3490. has-flag: 4.0.0
  3491. dev: true
  3492. /supports-preserve-symlinks-flag@1.0.0:
  3493. resolution:
  3494. {
  3495. integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==,
  3496. }
  3497. engines: { node: ">= 0.4" }
  3498. dev: false
  3499. /svg-parser@2.0.4:
  3500. resolution:
  3501. {
  3502. integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==,
  3503. }
  3504. dev: true
  3505. /swr@1.3.0(react@18.2.0):
  3506. resolution:
  3507. {
  3508. integrity: sha512-dkghQrOl2ORX9HYrMDtPa7LTVHJjCTeZoB1dqTbnnEDlSvN8JEKpYIYurDfvbQFUUS8Cg8PceFVZNkW0KNNYPw==,
  3509. }
  3510. peerDependencies:
  3511. react: ^16.11.0 || ^17.0.0 || ^18.0.0
  3512. dependencies:
  3513. react: 18.2.0
  3514. dev: false
  3515. /tar@6.2.0:
  3516. resolution:
  3517. {
  3518. integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==,
  3519. }
  3520. engines: { node: ">=10" }
  3521. dependencies:
  3522. chownr: 2.0.0
  3523. fs-minipass: 2.1.0
  3524. minipass: 5.0.0
  3525. minizlib: 2.1.2
  3526. mkdirp: 1.0.4
  3527. yallist: 4.0.0
  3528. dev: false
  3529. /to-fast-properties@2.0.0:
  3530. resolution:
  3531. {
  3532. integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==,
  3533. }
  3534. engines: { node: ">=4" }
  3535. /to-regex-range@5.0.1:
  3536. resolution:
  3537. {
  3538. integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==,
  3539. }
  3540. engines: { node: ">=8.0" }
  3541. dependencies:
  3542. is-number: 7.0.0
  3543. dev: true
  3544. /tr46@0.0.3:
  3545. resolution:
  3546. {
  3547. integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==,
  3548. }
  3549. dev: true
  3550. /tslib@2.6.2:
  3551. resolution:
  3552. {
  3553. integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==,
  3554. }
  3555. /tunnel@0.0.6:
  3556. resolution:
  3557. {
  3558. integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==,
  3559. }
  3560. engines: { node: ">=0.6.11 <=0.7.0 || >=0.7.3" }
  3561. dev: true
  3562. /typescript@5.3.2:
  3563. resolution:
  3564. {
  3565. integrity: sha512-6l+RyNy7oAHDfxC4FzSJcz9vnjTKxrLpDG5M2Vu4SHRVNg6xzqZp6LYSR9zjqQTu8DU/f5xwxUdADOkbrIX2gQ==,
  3566. }
  3567. engines: { node: ">=14.17" }
  3568. hasBin: true
  3569. dev: true
  3570. /undici-types@5.26.5:
  3571. resolution:
  3572. {
  3573. integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==,
  3574. }
  3575. dev: true
  3576. /undici@5.28.2:
  3577. resolution:
  3578. {
  3579. integrity: sha512-wh1pHJHnUeQV5Xa8/kyQhO7WFa8M34l026L5P/+2TYiakvGy5Rdc8jWZVyG7ieht/0WgJLEd3kcU5gKx+6GC8w==,
  3580. }
  3581. engines: { node: ">=14.0" }
  3582. dependencies:
  3583. "@fastify/busboy": 2.1.0
  3584. dev: true
  3585. /universal-user-agent@6.0.1:
  3586. resolution:
  3587. {
  3588. integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==,
  3589. }
  3590. dev: true
  3591. /universalify@2.0.1:
  3592. resolution:
  3593. {
  3594. integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==,
  3595. }
  3596. engines: { node: ">= 10.0.0" }
  3597. dev: true
  3598. /update-browserslist-db@1.0.13(browserslist@4.22.1):
  3599. resolution:
  3600. {
  3601. integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==,
  3602. }
  3603. hasBin: true
  3604. peerDependencies:
  3605. browserslist: ">= 4.21.0"
  3606. dependencies:
  3607. browserslist: 4.22.1
  3608. escalade: 3.1.1
  3609. picocolors: 1.0.0
  3610. dev: true
  3611. /vite-plugin-monaco-editor@1.1.0(monaco-editor@0.34.1):
  3612. resolution:
  3613. {
  3614. integrity: sha512-IvtUqZotrRoVqwT0PBBDIZPNraya3BxN/bfcNfnxZ5rkJiGcNtO5eAOWWSgT7zullIAEqQwxMU83yL9J5k7gww==,
  3615. }
  3616. peerDependencies:
  3617. monaco-editor: ">=0.33.0"
  3618. dependencies:
  3619. monaco-editor: 0.34.1
  3620. dev: true
  3621. /vite-plugin-svgr@4.2.0(typescript@5.3.2)(vite@4.5.0):
  3622. resolution:
  3623. {
  3624. integrity: sha512-SC7+FfVtNQk7So0XMjrrtLAbEC8qjFPifyD7+fs/E6aaNdVde6umlVVh0QuwDLdOMu7vp5RiGFsB70nj5yo0XA==,
  3625. }
  3626. peerDependencies:
  3627. vite: ^2.6.0 || 3 || 4 || 5
  3628. dependencies:
  3629. "@rollup/pluginutils": 5.1.0
  3630. "@svgr/core": 8.1.0(typescript@5.3.2)
  3631. "@svgr/plugin-jsx": 8.1.0(@svgr/core@8.1.0)
  3632. vite: 4.5.0(sass@1.69.5)
  3633. transitivePeerDependencies:
  3634. - rollup
  3635. - supports-color
  3636. - typescript
  3637. dev: true
  3638. /vite@4.5.0(sass@1.69.5):
  3639. resolution:
  3640. {
  3641. integrity: sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw==,
  3642. }
  3643. engines: { node: ^14.18.0 || >=16.0.0 }
  3644. hasBin: true
  3645. peerDependencies:
  3646. "@types/node": ">= 14"
  3647. less: "*"
  3648. lightningcss: ^1.21.0
  3649. sass: "*"
  3650. stylus: "*"
  3651. sugarss: "*"
  3652. terser: ^5.4.0
  3653. peerDependenciesMeta:
  3654. "@types/node":
  3655. optional: true
  3656. less:
  3657. optional: true
  3658. lightningcss:
  3659. optional: true
  3660. sass:
  3661. optional: true
  3662. stylus:
  3663. optional: true
  3664. sugarss:
  3665. optional: true
  3666. terser:
  3667. optional: true
  3668. dependencies:
  3669. esbuild: 0.18.20
  3670. postcss: 8.4.31
  3671. rollup: 3.29.4
  3672. sass: 1.69.5
  3673. optionalDependencies:
  3674. fsevents: 2.3.3
  3675. dev: true
  3676. /void-elements@3.1.0:
  3677. resolution:
  3678. {
  3679. integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==,
  3680. }
  3681. engines: { node: ">=0.10.0" }
  3682. dev: false
  3683. /web-streams-polyfill@3.2.1:
  3684. resolution:
  3685. {
  3686. integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==,
  3687. }
  3688. engines: { node: ">= 8" }
  3689. dev: true
  3690. /webidl-conversions@3.0.1:
  3691. resolution:
  3692. {
  3693. integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==,
  3694. }
  3695. dev: true
  3696. /whatwg-url@5.0.0:
  3697. resolution:
  3698. {
  3699. integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==,
  3700. }
  3701. dependencies:
  3702. tr46: 0.0.3
  3703. webidl-conversions: 3.0.1
  3704. dev: true
  3705. /which@2.0.2:
  3706. resolution:
  3707. {
  3708. integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==,
  3709. }
  3710. engines: { node: ">= 8" }
  3711. hasBin: true
  3712. dependencies:
  3713. isexe: 2.0.0
  3714. dev: true
  3715. /wrappy@1.0.2:
  3716. resolution:
  3717. {
  3718. integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==,
  3719. }
  3720. dev: true
  3721. /yallist@3.1.1:
  3722. resolution:
  3723. {
  3724. integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==,
  3725. }
  3726. dev: true
  3727. /yallist@4.0.0:
  3728. resolution:
  3729. {
  3730. integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==,
  3731. }
  3732. dev: false
  3733. /yaml@1.10.2:
  3734. resolution:
  3735. {
  3736. integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==,
  3737. }
  3738. engines: { node: ">= 6" }
  3739. dev: false