pnpm-lock.yaml 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987
  1. lockfileVersion: "6.0"
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. dependencies:
  6. "@emotion/react":
  7. specifier: ^11.11.1
  8. version: 11.11.1(@types/react@18.2.37)(react@18.2.0)
  9. "@emotion/styled":
  10. specifier: ^11.11.0
  11. version: 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.37)(react@18.2.0)
  12. "@juggle/resize-observer":
  13. specifier: ^3.4.0
  14. version: 3.4.0
  15. "@mui/icons-material":
  16. specifier: ^5.14.14
  17. version: 5.14.14(@mui/material@5.14.14)(@types/react@18.2.37)(react@18.2.0)
  18. "@mui/lab":
  19. specifier: 5.0.0-alpha.149
  20. version: 5.0.0-alpha.149(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/material@5.14.14)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
  21. "@mui/material":
  22. specifier: ^5.14.14
  23. version: 5.14.14(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
  24. "@mui/x-data-grid":
  25. specifier: ^6.16.3
  26. version: 6.16.3(@mui/material@5.14.14)(@mui/system@5.14.14)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
  27. "@tauri-apps/api":
  28. specifier: ^1.3.0
  29. version: 1.3.0
  30. ahooks:
  31. specifier: ^3.7.2
  32. version: 3.7.2(react@18.2.0)
  33. axios:
  34. specifier: ^1.1.3
  35. version: 1.1.3
  36. dayjs:
  37. specifier: 1.11.5
  38. version: 1.11.5
  39. i18next:
  40. specifier: ^22.0.4
  41. version: 22.0.4
  42. lodash-es:
  43. specifier: ^4.17.21
  44. version: 4.17.21
  45. monaco-editor:
  46. specifier: ^0.34.1
  47. version: 0.34.1
  48. react:
  49. specifier: ^18.2.0
  50. version: 18.2.0
  51. react-dom:
  52. specifier: ^18.2.0
  53. version: 18.2.0(react@18.2.0)
  54. react-error-boundary:
  55. specifier: ^3.1.4
  56. version: 3.1.4(react@18.2.0)
  57. react-hook-form:
  58. specifier: ^7.39.5
  59. version: 7.39.5(react@18.2.0)
  60. react-i18next:
  61. specifier: ^12.0.0
  62. version: 12.0.0(i18next@22.0.4)(react-dom@18.2.0)(react@18.2.0)
  63. react-router-dom:
  64. specifier: ^6.4.3
  65. version: 6.4.3(react-dom@18.2.0)(react@18.2.0)
  66. react-transition-group:
  67. specifier: ^4.4.5
  68. version: 4.4.5(react-dom@18.2.0)(react@18.2.0)
  69. react-virtuoso:
  70. specifier: ^3.1.3
  71. version: 3.1.3(react-dom@18.2.0)(react@18.2.0)
  72. recoil:
  73. specifier: ^0.7.6
  74. version: 0.7.6(react-dom@18.2.0)(react@18.2.0)
  75. snarkdown:
  76. specifier: ^2.0.0
  77. version: 2.0.0
  78. swr:
  79. specifier: ^1.3.0
  80. version: 1.3.0(react@18.2.0)
  81. tar:
  82. specifier: ^6.2.0
  83. version: 6.2.0
  84. devDependencies:
  85. "@actions/github":
  86. specifier: ^5.0.3
  87. version: 5.0.3
  88. "@tauri-apps/cli":
  89. specifier: ^1.3.1
  90. version: 1.3.1
  91. "@types/fs-extra":
  92. specifier: ^9.0.13
  93. version: 9.0.13
  94. "@types/js-cookie":
  95. specifier: ^3.0.2
  96. version: 3.0.2
  97. "@types/lodash":
  98. specifier: ^4.14.180
  99. version: 4.14.191
  100. "@types/lodash-es":
  101. specifier: ^4.17.7
  102. version: 4.17.7
  103. "@types/react":
  104. specifier: ^18.2.37
  105. version: 18.2.37
  106. "@types/react-dom":
  107. specifier: ^18.0.11
  108. version: 18.0.11
  109. "@types/react-transition-group":
  110. specifier: ^4.4.9
  111. version: 4.4.9
  112. "@vitejs/plugin-react":
  113. specifier: ^4.1.0
  114. version: 4.1.0(vite@4.5.0)
  115. adm-zip:
  116. specifier: ^0.5.9
  117. version: 0.5.9
  118. cross-env:
  119. specifier: ^7.0.3
  120. version: 7.0.3
  121. fs-extra:
  122. specifier: ^10.0.0
  123. version: 10.0.1
  124. https-proxy-agent:
  125. specifier: ^5.0.1
  126. version: 5.0.1
  127. husky:
  128. specifier: ^7.0.0
  129. version: 7.0.4
  130. node-fetch:
  131. specifier: ^3.2.6
  132. version: 3.2.6
  133. prettier:
  134. specifier: ^2.7.1
  135. version: 2.7.1
  136. pretty-quick:
  137. specifier: ^3.1.3
  138. version: 3.1.3(prettier@2.7.1)
  139. sass:
  140. specifier: ^1.54.0
  141. version: 1.54.8
  142. typescript:
  143. specifier: ^4.7.4
  144. version: 4.7.4
  145. vite:
  146. specifier: ^4.5.0
  147. version: 4.5.0(sass@1.54.8)
  148. vite-plugin-monaco-editor:
  149. specifier: ^1.1.0
  150. version: 1.1.0(monaco-editor@0.34.1)
  151. vite-plugin-svgr:
  152. specifier: ^4.1.0
  153. version: 4.1.0(typescript@4.7.4)(vite@4.5.0)
  154. packages:
  155. /@actions/github@5.0.3:
  156. resolution:
  157. {
  158. integrity: sha512-myjA/pdLQfhUGLtRZC/J4L1RXOG4o6aYdiEq+zr5wVVKljzbFld+xv10k1FX6IkIJtNxbAq44BdwSNpQ015P0A==,
  159. }
  160. dependencies:
  161. "@actions/http-client": 2.0.1
  162. "@octokit/core": 3.6.0
  163. "@octokit/plugin-paginate-rest": 2.17.0(@octokit/core@3.6.0)
  164. "@octokit/plugin-rest-endpoint-methods": 5.13.0(@octokit/core@3.6.0)
  165. transitivePeerDependencies:
  166. - encoding
  167. dev: true
  168. /@actions/http-client@2.0.1:
  169. resolution:
  170. {
  171. integrity: sha512-PIXiMVtz6VvyaRsGY268qvj57hXQEpsYogYOu2nrQhlf+XCGmZstmuZBbAybUl1nQGnvS1k1eEsQ69ZoD7xlSw==,
  172. }
  173. dependencies:
  174. tunnel: 0.0.6
  175. dev: true
  176. /@ampproject/remapping@2.2.1:
  177. resolution:
  178. {
  179. integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==,
  180. }
  181. engines: { node: ">=6.0.0" }
  182. dependencies:
  183. "@jridgewell/gen-mapping": 0.3.3
  184. "@jridgewell/trace-mapping": 0.3.20
  185. dev: true
  186. /@babel/code-frame@7.22.13:
  187. resolution:
  188. {
  189. integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==,
  190. }
  191. engines: { node: ">=6.9.0" }
  192. dependencies:
  193. "@babel/highlight": 7.22.20
  194. chalk: 2.4.2
  195. /@babel/compat-data@7.23.2:
  196. resolution:
  197. {
  198. integrity: sha512-0S9TQMmDHlqAZ2ITT95irXKfxN9bncq8ZCoJhun3nHL/lLUxd2NKBJYoNGWH7S0hz6fRQwWlAWn/ILM0C70KZQ==,
  199. }
  200. engines: { node: ">=6.9.0" }
  201. dev: true
  202. /@babel/core@7.23.2:
  203. resolution:
  204. {
  205. integrity: sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==,
  206. }
  207. engines: { node: ">=6.9.0" }
  208. dependencies:
  209. "@ampproject/remapping": 2.2.1
  210. "@babel/code-frame": 7.22.13
  211. "@babel/generator": 7.23.0
  212. "@babel/helper-compilation-targets": 7.22.15
  213. "@babel/helper-module-transforms": 7.23.0(@babel/core@7.23.2)
  214. "@babel/helpers": 7.23.2
  215. "@babel/parser": 7.23.0
  216. "@babel/template": 7.22.15
  217. "@babel/traverse": 7.23.2
  218. "@babel/types": 7.23.0
  219. convert-source-map: 2.0.0
  220. debug: 4.3.4
  221. gensync: 1.0.0-beta.2
  222. json5: 2.2.3
  223. semver: 6.3.1
  224. transitivePeerDependencies:
  225. - supports-color
  226. dev: true
  227. /@babel/generator@7.23.0:
  228. resolution:
  229. {
  230. integrity: sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==,
  231. }
  232. engines: { node: ">=6.9.0" }
  233. dependencies:
  234. "@babel/types": 7.23.0
  235. "@jridgewell/gen-mapping": 0.3.3
  236. "@jridgewell/trace-mapping": 0.3.20
  237. jsesc: 2.5.2
  238. dev: true
  239. /@babel/helper-compilation-targets@7.22.15:
  240. resolution:
  241. {
  242. integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==,
  243. }
  244. engines: { node: ">=6.9.0" }
  245. dependencies:
  246. "@babel/compat-data": 7.23.2
  247. "@babel/helper-validator-option": 7.22.15
  248. browserslist: 4.22.1
  249. lru-cache: 5.1.1
  250. semver: 6.3.1
  251. dev: true
  252. /@babel/helper-environment-visitor@7.22.20:
  253. resolution:
  254. {
  255. integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==,
  256. }
  257. engines: { node: ">=6.9.0" }
  258. dev: true
  259. /@babel/helper-function-name@7.23.0:
  260. resolution:
  261. {
  262. integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==,
  263. }
  264. engines: { node: ">=6.9.0" }
  265. dependencies:
  266. "@babel/template": 7.22.15
  267. "@babel/types": 7.23.0
  268. dev: true
  269. /@babel/helper-hoist-variables@7.22.5:
  270. resolution:
  271. {
  272. integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==,
  273. }
  274. engines: { node: ">=6.9.0" }
  275. dependencies:
  276. "@babel/types": 7.23.0
  277. dev: true
  278. /@babel/helper-module-imports@7.22.15:
  279. resolution:
  280. {
  281. integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==,
  282. }
  283. engines: { node: ">=6.9.0" }
  284. dependencies:
  285. "@babel/types": 7.23.0
  286. /@babel/helper-module-transforms@7.23.0(@babel/core@7.23.2):
  287. resolution:
  288. {
  289. integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==,
  290. }
  291. engines: { node: ">=6.9.0" }
  292. peerDependencies:
  293. "@babel/core": ^7.0.0
  294. dependencies:
  295. "@babel/core": 7.23.2
  296. "@babel/helper-environment-visitor": 7.22.20
  297. "@babel/helper-module-imports": 7.22.15
  298. "@babel/helper-simple-access": 7.22.5
  299. "@babel/helper-split-export-declaration": 7.22.6
  300. "@babel/helper-validator-identifier": 7.22.20
  301. dev: true
  302. /@babel/helper-plugin-utils@7.22.5:
  303. resolution:
  304. {
  305. integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==,
  306. }
  307. engines: { node: ">=6.9.0" }
  308. dev: true
  309. /@babel/helper-simple-access@7.22.5:
  310. resolution:
  311. {
  312. integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==,
  313. }
  314. engines: { node: ">=6.9.0" }
  315. dependencies:
  316. "@babel/types": 7.23.0
  317. dev: true
  318. /@babel/helper-split-export-declaration@7.22.6:
  319. resolution:
  320. {
  321. integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==,
  322. }
  323. engines: { node: ">=6.9.0" }
  324. dependencies:
  325. "@babel/types": 7.23.0
  326. dev: true
  327. /@babel/helper-string-parser@7.22.5:
  328. resolution:
  329. {
  330. integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==,
  331. }
  332. engines: { node: ">=6.9.0" }
  333. /@babel/helper-validator-identifier@7.22.20:
  334. resolution:
  335. {
  336. integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==,
  337. }
  338. engines: { node: ">=6.9.0" }
  339. /@babel/helper-validator-option@7.22.15:
  340. resolution:
  341. {
  342. integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==,
  343. }
  344. engines: { node: ">=6.9.0" }
  345. dev: true
  346. /@babel/helpers@7.23.2:
  347. resolution:
  348. {
  349. integrity: sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==,
  350. }
  351. engines: { node: ">=6.9.0" }
  352. dependencies:
  353. "@babel/template": 7.22.15
  354. "@babel/traverse": 7.23.2
  355. "@babel/types": 7.23.0
  356. transitivePeerDependencies:
  357. - supports-color
  358. dev: true
  359. /@babel/highlight@7.22.20:
  360. resolution:
  361. {
  362. integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==,
  363. }
  364. engines: { node: ">=6.9.0" }
  365. dependencies:
  366. "@babel/helper-validator-identifier": 7.22.20
  367. chalk: 2.4.2
  368. js-tokens: 4.0.0
  369. /@babel/parser@7.23.0:
  370. resolution:
  371. {
  372. integrity: sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==,
  373. }
  374. engines: { node: ">=6.0.0" }
  375. hasBin: true
  376. dependencies:
  377. "@babel/types": 7.23.0
  378. dev: true
  379. /@babel/plugin-transform-react-jsx-self@7.22.5(@babel/core@7.23.2):
  380. resolution:
  381. {
  382. integrity: sha512-nTh2ogNUtxbiSbxaT4Ds6aXnXEipHweN9YRgOX/oNXdf0cCrGn/+2LozFa3lnPV5D90MkjhgckCPBrsoSc1a7g==,
  383. }
  384. engines: { node: ">=6.9.0" }
  385. peerDependencies:
  386. "@babel/core": ^7.0.0-0
  387. dependencies:
  388. "@babel/core": 7.23.2
  389. "@babel/helper-plugin-utils": 7.22.5
  390. dev: true
  391. /@babel/plugin-transform-react-jsx-source@7.22.5(@babel/core@7.23.2):
  392. resolution:
  393. {
  394. integrity: sha512-yIiRO6yobeEIaI0RTbIr8iAK9FcBHLtZq0S89ZPjDLQXBA4xvghaKqI0etp/tF3htTM0sazJKKLz9oEiGRtu7w==,
  395. }
  396. engines: { node: ">=6.9.0" }
  397. peerDependencies:
  398. "@babel/core": ^7.0.0-0
  399. dependencies:
  400. "@babel/core": 7.23.2
  401. "@babel/helper-plugin-utils": 7.22.5
  402. dev: true
  403. /@babel/runtime@7.23.2:
  404. resolution:
  405. {
  406. integrity: sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==,
  407. }
  408. engines: { node: ">=6.9.0" }
  409. dependencies:
  410. regenerator-runtime: 0.14.0
  411. dev: false
  412. /@babel/template@7.22.15:
  413. resolution:
  414. {
  415. integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==,
  416. }
  417. engines: { node: ">=6.9.0" }
  418. dependencies:
  419. "@babel/code-frame": 7.22.13
  420. "@babel/parser": 7.23.0
  421. "@babel/types": 7.23.0
  422. dev: true
  423. /@babel/traverse@7.23.2:
  424. resolution:
  425. {
  426. integrity: sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==,
  427. }
  428. engines: { node: ">=6.9.0" }
  429. dependencies:
  430. "@babel/code-frame": 7.22.13
  431. "@babel/generator": 7.23.0
  432. "@babel/helper-environment-visitor": 7.22.20
  433. "@babel/helper-function-name": 7.23.0
  434. "@babel/helper-hoist-variables": 7.22.5
  435. "@babel/helper-split-export-declaration": 7.22.6
  436. "@babel/parser": 7.23.0
  437. "@babel/types": 7.23.0
  438. debug: 4.3.4
  439. globals: 11.12.0
  440. transitivePeerDependencies:
  441. - supports-color
  442. dev: true
  443. /@babel/types@7.23.0:
  444. resolution:
  445. {
  446. integrity: sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==,
  447. }
  448. engines: { node: ">=6.9.0" }
  449. dependencies:
  450. "@babel/helper-string-parser": 7.22.5
  451. "@babel/helper-validator-identifier": 7.22.20
  452. to-fast-properties: 2.0.0
  453. /@emotion/babel-plugin@11.11.0:
  454. resolution:
  455. {
  456. integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==,
  457. }
  458. dependencies:
  459. "@babel/helper-module-imports": 7.22.15
  460. "@babel/runtime": 7.23.2
  461. "@emotion/hash": 0.9.1
  462. "@emotion/memoize": 0.8.1
  463. "@emotion/serialize": 1.1.2
  464. babel-plugin-macros: 3.1.0
  465. convert-source-map: 1.8.0
  466. escape-string-regexp: 4.0.0
  467. find-root: 1.1.0
  468. source-map: 0.5.7
  469. stylis: 4.2.0
  470. dev: false
  471. /@emotion/cache@11.11.0:
  472. resolution:
  473. {
  474. integrity: sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==,
  475. }
  476. dependencies:
  477. "@emotion/memoize": 0.8.1
  478. "@emotion/sheet": 1.2.2
  479. "@emotion/utils": 1.2.1
  480. "@emotion/weak-memoize": 0.3.1
  481. stylis: 4.2.0
  482. dev: false
  483. /@emotion/hash@0.9.1:
  484. resolution:
  485. {
  486. integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==,
  487. }
  488. dev: false
  489. /@emotion/is-prop-valid@1.2.1:
  490. resolution:
  491. {
  492. integrity: sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==,
  493. }
  494. dependencies:
  495. "@emotion/memoize": 0.8.1
  496. dev: false
  497. /@emotion/memoize@0.8.1:
  498. resolution:
  499. {
  500. integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==,
  501. }
  502. dev: false
  503. /@emotion/react@11.11.1(@types/react@18.2.37)(react@18.2.0):
  504. resolution:
  505. {
  506. integrity: sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA==,
  507. }
  508. peerDependencies:
  509. "@types/react": "*"
  510. react: ">=16.8.0"
  511. peerDependenciesMeta:
  512. "@types/react":
  513. optional: true
  514. dependencies:
  515. "@babel/runtime": 7.23.2
  516. "@emotion/babel-plugin": 11.11.0
  517. "@emotion/cache": 11.11.0
  518. "@emotion/serialize": 1.1.2
  519. "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.2.0)
  520. "@emotion/utils": 1.2.1
  521. "@emotion/weak-memoize": 0.3.1
  522. "@types/react": 18.2.37
  523. hoist-non-react-statics: 3.3.2
  524. react: 18.2.0
  525. dev: false
  526. /@emotion/serialize@1.1.2:
  527. resolution:
  528. {
  529. integrity: sha512-zR6a/fkFP4EAcCMQtLOhIgpprZOwNmCldtpaISpvz348+DP4Mz8ZoKaGGCQpbzepNIUWbq4w6hNZkwDyKoS+HA==,
  530. }
  531. dependencies:
  532. "@emotion/hash": 0.9.1
  533. "@emotion/memoize": 0.8.1
  534. "@emotion/unitless": 0.8.1
  535. "@emotion/utils": 1.2.1
  536. csstype: 3.1.2
  537. dev: false
  538. /@emotion/sheet@1.2.2:
  539. resolution:
  540. {
  541. integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==,
  542. }
  543. dev: false
  544. /@emotion/styled@11.11.0(@emotion/react@11.11.1)(@types/react@18.2.37)(react@18.2.0):
  545. resolution:
  546. {
  547. integrity: sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng==,
  548. }
  549. peerDependencies:
  550. "@emotion/react": ^11.0.0-rc.0
  551. "@types/react": "*"
  552. react: ">=16.8.0"
  553. peerDependenciesMeta:
  554. "@types/react":
  555. optional: true
  556. dependencies:
  557. "@babel/runtime": 7.23.2
  558. "@emotion/babel-plugin": 11.11.0
  559. "@emotion/is-prop-valid": 1.2.1
  560. "@emotion/react": 11.11.1(@types/react@18.2.37)(react@18.2.0)
  561. "@emotion/serialize": 1.1.2
  562. "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.2.0)
  563. "@emotion/utils": 1.2.1
  564. "@types/react": 18.2.37
  565. react: 18.2.0
  566. dev: false
  567. /@emotion/unitless@0.8.1:
  568. resolution:
  569. {
  570. integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==,
  571. }
  572. dev: false
  573. /@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.2.0):
  574. resolution:
  575. {
  576. integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==,
  577. }
  578. peerDependencies:
  579. react: ">=16.8.0"
  580. dependencies:
  581. react: 18.2.0
  582. dev: false
  583. /@emotion/utils@1.2.1:
  584. resolution:
  585. {
  586. integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==,
  587. }
  588. dev: false
  589. /@emotion/weak-memoize@0.3.1:
  590. resolution:
  591. {
  592. integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==,
  593. }
  594. dev: false
  595. /@esbuild/android-arm64@0.18.20:
  596. resolution:
  597. {
  598. integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==,
  599. }
  600. engines: { node: ">=12" }
  601. cpu: [arm64]
  602. os: [android]
  603. requiresBuild: true
  604. dev: true
  605. optional: true
  606. /@esbuild/android-arm@0.18.20:
  607. resolution:
  608. {
  609. integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==,
  610. }
  611. engines: { node: ">=12" }
  612. cpu: [arm]
  613. os: [android]
  614. requiresBuild: true
  615. dev: true
  616. optional: true
  617. /@esbuild/android-x64@0.18.20:
  618. resolution:
  619. {
  620. integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==,
  621. }
  622. engines: { node: ">=12" }
  623. cpu: [x64]
  624. os: [android]
  625. requiresBuild: true
  626. dev: true
  627. optional: true
  628. /@esbuild/darwin-arm64@0.18.20:
  629. resolution:
  630. {
  631. integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==,
  632. }
  633. engines: { node: ">=12" }
  634. cpu: [arm64]
  635. os: [darwin]
  636. requiresBuild: true
  637. dev: true
  638. optional: true
  639. /@esbuild/darwin-x64@0.18.20:
  640. resolution:
  641. {
  642. integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==,
  643. }
  644. engines: { node: ">=12" }
  645. cpu: [x64]
  646. os: [darwin]
  647. requiresBuild: true
  648. dev: true
  649. optional: true
  650. /@esbuild/freebsd-arm64@0.18.20:
  651. resolution:
  652. {
  653. integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==,
  654. }
  655. engines: { node: ">=12" }
  656. cpu: [arm64]
  657. os: [freebsd]
  658. requiresBuild: true
  659. dev: true
  660. optional: true
  661. /@esbuild/freebsd-x64@0.18.20:
  662. resolution:
  663. {
  664. integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==,
  665. }
  666. engines: { node: ">=12" }
  667. cpu: [x64]
  668. os: [freebsd]
  669. requiresBuild: true
  670. dev: true
  671. optional: true
  672. /@esbuild/linux-arm64@0.18.20:
  673. resolution:
  674. {
  675. integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==,
  676. }
  677. engines: { node: ">=12" }
  678. cpu: [arm64]
  679. os: [linux]
  680. requiresBuild: true
  681. dev: true
  682. optional: true
  683. /@esbuild/linux-arm@0.18.20:
  684. resolution:
  685. {
  686. integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==,
  687. }
  688. engines: { node: ">=12" }
  689. cpu: [arm]
  690. os: [linux]
  691. requiresBuild: true
  692. dev: true
  693. optional: true
  694. /@esbuild/linux-ia32@0.18.20:
  695. resolution:
  696. {
  697. integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==,
  698. }
  699. engines: { node: ">=12" }
  700. cpu: [ia32]
  701. os: [linux]
  702. requiresBuild: true
  703. dev: true
  704. optional: true
  705. /@esbuild/linux-loong64@0.18.20:
  706. resolution:
  707. {
  708. integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==,
  709. }
  710. engines: { node: ">=12" }
  711. cpu: [loong64]
  712. os: [linux]
  713. requiresBuild: true
  714. dev: true
  715. optional: true
  716. /@esbuild/linux-mips64el@0.18.20:
  717. resolution:
  718. {
  719. integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==,
  720. }
  721. engines: { node: ">=12" }
  722. cpu: [mips64el]
  723. os: [linux]
  724. requiresBuild: true
  725. dev: true
  726. optional: true
  727. /@esbuild/linux-ppc64@0.18.20:
  728. resolution:
  729. {
  730. integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==,
  731. }
  732. engines: { node: ">=12" }
  733. cpu: [ppc64]
  734. os: [linux]
  735. requiresBuild: true
  736. dev: true
  737. optional: true
  738. /@esbuild/linux-riscv64@0.18.20:
  739. resolution:
  740. {
  741. integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==,
  742. }
  743. engines: { node: ">=12" }
  744. cpu: [riscv64]
  745. os: [linux]
  746. requiresBuild: true
  747. dev: true
  748. optional: true
  749. /@esbuild/linux-s390x@0.18.20:
  750. resolution:
  751. {
  752. integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==,
  753. }
  754. engines: { node: ">=12" }
  755. cpu: [s390x]
  756. os: [linux]
  757. requiresBuild: true
  758. dev: true
  759. optional: true
  760. /@esbuild/linux-x64@0.18.20:
  761. resolution:
  762. {
  763. integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==,
  764. }
  765. engines: { node: ">=12" }
  766. cpu: [x64]
  767. os: [linux]
  768. requiresBuild: true
  769. dev: true
  770. optional: true
  771. /@esbuild/netbsd-x64@0.18.20:
  772. resolution:
  773. {
  774. integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==,
  775. }
  776. engines: { node: ">=12" }
  777. cpu: [x64]
  778. os: [netbsd]
  779. requiresBuild: true
  780. dev: true
  781. optional: true
  782. /@esbuild/openbsd-x64@0.18.20:
  783. resolution:
  784. {
  785. integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==,
  786. }
  787. engines: { node: ">=12" }
  788. cpu: [x64]
  789. os: [openbsd]
  790. requiresBuild: true
  791. dev: true
  792. optional: true
  793. /@esbuild/sunos-x64@0.18.20:
  794. resolution:
  795. {
  796. integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==,
  797. }
  798. engines: { node: ">=12" }
  799. cpu: [x64]
  800. os: [sunos]
  801. requiresBuild: true
  802. dev: true
  803. optional: true
  804. /@esbuild/win32-arm64@0.18.20:
  805. resolution:
  806. {
  807. integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==,
  808. }
  809. engines: { node: ">=12" }
  810. cpu: [arm64]
  811. os: [win32]
  812. requiresBuild: true
  813. dev: true
  814. optional: true
  815. /@esbuild/win32-ia32@0.18.20:
  816. resolution:
  817. {
  818. integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==,
  819. }
  820. engines: { node: ">=12" }
  821. cpu: [ia32]
  822. os: [win32]
  823. requiresBuild: true
  824. dev: true
  825. optional: true
  826. /@esbuild/win32-x64@0.18.20:
  827. resolution:
  828. {
  829. integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==,
  830. }
  831. engines: { node: ">=12" }
  832. cpu: [x64]
  833. os: [win32]
  834. requiresBuild: true
  835. dev: true
  836. optional: true
  837. /@floating-ui/core@1.5.0:
  838. resolution:
  839. {
  840. integrity: sha512-kK1h4m36DQ0UHGj5Ah4db7R0rHemTqqO0QLvUqi1/mUUp3LuAWbWxdxSIf/XsnH9VS6rRVPLJCncjRzUvyCLXg==,
  841. }
  842. dependencies:
  843. "@floating-ui/utils": 0.1.6
  844. dev: false
  845. /@floating-ui/dom@1.5.3:
  846. resolution:
  847. {
  848. integrity: sha512-ClAbQnEqJAKCJOEbbLo5IUlZHkNszqhuxS4fHAVxRPXPya6Ysf2G8KypnYcOTpx6I8xcgF9bbHb6g/2KpbV8qA==,
  849. }
  850. dependencies:
  851. "@floating-ui/core": 1.5.0
  852. "@floating-ui/utils": 0.1.6
  853. dev: false
  854. /@floating-ui/react-dom@2.0.2(react-dom@18.2.0)(react@18.2.0):
  855. resolution:
  856. {
  857. integrity: sha512-5qhlDvjaLmAst/rKb3VdlCinwTF4EYMiVxuuc/HVUjs46W0zgtbMmAZ1UTsDrRTxRmUEzl92mOtWbeeXL26lSQ==,
  858. }
  859. peerDependencies:
  860. react: ">=16.8.0"
  861. react-dom: ">=16.8.0"
  862. dependencies:
  863. "@floating-ui/dom": 1.5.3
  864. react: 18.2.0
  865. react-dom: 18.2.0(react@18.2.0)
  866. dev: false
  867. /@floating-ui/utils@0.1.6:
  868. resolution:
  869. {
  870. integrity: sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A==,
  871. }
  872. dev: false
  873. /@jridgewell/gen-mapping@0.3.3:
  874. resolution:
  875. {
  876. integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==,
  877. }
  878. engines: { node: ">=6.0.0" }
  879. dependencies:
  880. "@jridgewell/set-array": 1.1.2
  881. "@jridgewell/sourcemap-codec": 1.4.15
  882. "@jridgewell/trace-mapping": 0.3.20
  883. dev: true
  884. /@jridgewell/resolve-uri@3.1.1:
  885. resolution:
  886. {
  887. integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==,
  888. }
  889. engines: { node: ">=6.0.0" }
  890. dev: true
  891. /@jridgewell/set-array@1.1.2:
  892. resolution:
  893. {
  894. integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==,
  895. }
  896. engines: { node: ">=6.0.0" }
  897. dev: true
  898. /@jridgewell/sourcemap-codec@1.4.15:
  899. resolution:
  900. {
  901. integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==,
  902. }
  903. dev: true
  904. /@jridgewell/trace-mapping@0.3.20:
  905. resolution:
  906. {
  907. integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==,
  908. }
  909. dependencies:
  910. "@jridgewell/resolve-uri": 3.1.1
  911. "@jridgewell/sourcemap-codec": 1.4.15
  912. dev: true
  913. /@juggle/resize-observer@3.4.0:
  914. resolution:
  915. {
  916. integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==,
  917. }
  918. dev: false
  919. /@mui/base@5.0.0-beta.20(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
  920. resolution:
  921. {
  922. integrity: sha512-CS2pUuqxST7ch9VNDCklRYDbJ3rru20Tx7na92QvVVKfu3RL4z/QLuVIc8jYGsdCnauMaeUSlFNLAJNb0yXe6w==,
  923. }
  924. engines: { node: ">=12.0.0" }
  925. peerDependencies:
  926. "@types/react": ^17.0.0 || ^18.0.0
  927. react: ^17.0.0 || ^18.0.0
  928. react-dom: ^17.0.0 || ^18.0.0
  929. peerDependenciesMeta:
  930. "@types/react":
  931. optional: true
  932. dependencies:
  933. "@babel/runtime": 7.23.2
  934. "@floating-ui/react-dom": 2.0.2(react-dom@18.2.0)(react@18.2.0)
  935. "@mui/types": 7.2.6(@types/react@18.2.37)
  936. "@mui/utils": 5.14.14(@types/react@18.2.37)(react@18.2.0)
  937. "@popperjs/core": 2.11.8
  938. "@types/react": 18.2.37
  939. clsx: 2.0.0
  940. prop-types: 15.8.1
  941. react: 18.2.0
  942. react-dom: 18.2.0(react@18.2.0)
  943. dev: false
  944. /@mui/core-downloads-tracker@5.14.14:
  945. resolution:
  946. {
  947. integrity: sha512-Rw/xKiTOUgXD8hdKqj60aC6QcGprMipG7ne2giK6Mz7b4PlhL/xog9xLeclY3BxsRLkZQ05egFnIEY1CSibTbw==,
  948. }
  949. dev: false
  950. /@mui/icons-material@5.14.14(@mui/material@5.14.14)(@types/react@18.2.37)(react@18.2.0):
  951. resolution:
  952. {
  953. integrity: sha512-vwuaMsKvI7AWTeYqR8wYbpXijuU8PzMAJWRAq2DDIuOZPxjKyHlr8WQ25+azZYkIXtJ7AqnVb1ZmHdEyB4/kug==,
  954. }
  955. engines: { node: ">=12.0.0" }
  956. peerDependencies:
  957. "@mui/material": ^5.0.0
  958. "@types/react": ^17.0.0 || ^18.0.0
  959. react: ^17.0.0 || ^18.0.0
  960. peerDependenciesMeta:
  961. "@types/react":
  962. optional: true
  963. dependencies:
  964. "@babel/runtime": 7.23.2
  965. "@mui/material": 5.14.14(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
  966. "@types/react": 18.2.37
  967. react: 18.2.0
  968. dev: false
  969. /@mui/lab@5.0.0-alpha.149(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/material@5.14.14)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
  970. resolution:
  971. {
  972. integrity: sha512-azOkKcyVX4KBZAqSp7eRD4OfKrUrvQXo7x2BjFJil+UeAJiMpB6I5lALo2PDZz3vjtJnHqlURnZtxZOHs1zfEA==,
  973. }
  974. engines: { node: ">=12.0.0" }
  975. peerDependencies:
  976. "@emotion/react": ^11.5.0
  977. "@emotion/styled": ^11.3.0
  978. "@mui/material": ^5.0.0
  979. "@types/react": ^17.0.0 || ^18.0.0
  980. react: ^17.0.0 || ^18.0.0
  981. react-dom: ^17.0.0 || ^18.0.0
  982. peerDependenciesMeta:
  983. "@emotion/react":
  984. optional: true
  985. "@emotion/styled":
  986. optional: true
  987. "@types/react":
  988. optional: true
  989. dependencies:
  990. "@babel/runtime": 7.23.2
  991. "@emotion/react": 11.11.1(@types/react@18.2.37)(react@18.2.0)
  992. "@emotion/styled": 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.37)(react@18.2.0)
  993. "@mui/base": 5.0.0-beta.20(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
  994. "@mui/material": 5.14.14(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
  995. "@mui/system": 5.14.14(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.37)(react@18.2.0)
  996. "@mui/types": 7.2.6(@types/react@18.2.37)
  997. "@mui/utils": 5.14.14(@types/react@18.2.37)(react@18.2.0)
  998. "@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.14)(@mui/system@5.14.14)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
  999. "@types/react": 18.2.37
  1000. clsx: 2.0.0
  1001. prop-types: 15.8.1
  1002. react: 18.2.0
  1003. react-dom: 18.2.0(react@18.2.0)
  1004. dev: false
  1005. /@mui/material@5.14.14(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
  1006. resolution:
  1007. {
  1008. integrity: sha512-cAmCwAHFQXxb44kWbVFkhKATN8tACgMsFwrXo8ro6WzYW73U/qsR5AcCiJIhCyYYg+gcftfkmNcpRaV3JjhHCg==,
  1009. }
  1010. engines: { node: ">=12.0.0" }
  1011. peerDependencies:
  1012. "@emotion/react": ^11.5.0
  1013. "@emotion/styled": ^11.3.0
  1014. "@types/react": ^17.0.0 || ^18.0.0
  1015. react: ^17.0.0 || ^18.0.0
  1016. react-dom: ^17.0.0 || ^18.0.0
  1017. peerDependenciesMeta:
  1018. "@emotion/react":
  1019. optional: true
  1020. "@emotion/styled":
  1021. optional: true
  1022. "@types/react":
  1023. optional: true
  1024. dependencies:
  1025. "@babel/runtime": 7.23.2
  1026. "@emotion/react": 11.11.1(@types/react@18.2.37)(react@18.2.0)
  1027. "@emotion/styled": 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.37)(react@18.2.0)
  1028. "@mui/base": 5.0.0-beta.20(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
  1029. "@mui/core-downloads-tracker": 5.14.14
  1030. "@mui/system": 5.14.14(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.37)(react@18.2.0)
  1031. "@mui/types": 7.2.6(@types/react@18.2.37)
  1032. "@mui/utils": 5.14.14(@types/react@18.2.37)(react@18.2.0)
  1033. "@types/react": 18.2.37
  1034. "@types/react-transition-group": 4.4.9
  1035. clsx: 2.0.0
  1036. csstype: 3.1.2
  1037. prop-types: 15.8.1
  1038. react: 18.2.0
  1039. react-dom: 18.2.0(react@18.2.0)
  1040. react-is: 18.2.0
  1041. react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0)
  1042. dev: false
  1043. /@mui/private-theming@5.14.14(@types/react@18.2.37)(react@18.2.0):
  1044. resolution:
  1045. {
  1046. integrity: sha512-n77au3CQj9uu16hak2Y+rvbGSBaJKxziG/gEbOLVGrAuqZ+ycVSkorCfN6Y/4XgYOpG/xvmuiY3JwhAEOzY3iA==,
  1047. }
  1048. engines: { node: ">=12.0.0" }
  1049. peerDependencies:
  1050. "@types/react": ^17.0.0 || ^18.0.0
  1051. react: ^17.0.0 || ^18.0.0
  1052. peerDependenciesMeta:
  1053. "@types/react":
  1054. optional: true
  1055. dependencies:
  1056. "@babel/runtime": 7.23.2
  1057. "@mui/utils": 5.14.14(@types/react@18.2.37)(react@18.2.0)
  1058. "@types/react": 18.2.37
  1059. prop-types: 15.8.1
  1060. react: 18.2.0
  1061. dev: false
  1062. /@mui/styled-engine@5.14.14(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0):
  1063. resolution:
  1064. {
  1065. integrity: sha512-sF3DS2PVG+cFWvkVHQQaGFpL1h6gSwOW3L91pdxPLQDHDZ5mZ/X0SlXU5XA+WjypoysG4urdAQC7CH/BRvUiqg==,
  1066. }
  1067. engines: { node: ">=12.0.0" }
  1068. peerDependencies:
  1069. "@emotion/react": ^11.4.1
  1070. "@emotion/styled": ^11.3.0
  1071. react: ^17.0.0 || ^18.0.0
  1072. peerDependenciesMeta:
  1073. "@emotion/react":
  1074. optional: true
  1075. "@emotion/styled":
  1076. optional: true
  1077. dependencies:
  1078. "@babel/runtime": 7.23.2
  1079. "@emotion/cache": 11.11.0
  1080. "@emotion/react": 11.11.1(@types/react@18.2.37)(react@18.2.0)
  1081. "@emotion/styled": 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.37)(react@18.2.0)
  1082. csstype: 3.1.2
  1083. prop-types: 15.8.1
  1084. react: 18.2.0
  1085. dev: false
  1086. /@mui/system@5.14.14(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.37)(react@18.2.0):
  1087. resolution:
  1088. {
  1089. integrity: sha512-y4InFmCgGGWXnz+iK4jRTWVikY0HgYnABjz4wgiUgEa2W1H8M4ow+27BegExUWPkj4TWthQ2qG9FOGSMtI+PKA==,
  1090. }
  1091. engines: { node: ">=12.0.0" }
  1092. peerDependencies:
  1093. "@emotion/react": ^11.5.0
  1094. "@emotion/styled": ^11.3.0
  1095. "@types/react": ^17.0.0 || ^18.0.0
  1096. react: ^17.0.0 || ^18.0.0
  1097. peerDependenciesMeta:
  1098. "@emotion/react":
  1099. optional: true
  1100. "@emotion/styled":
  1101. optional: true
  1102. "@types/react":
  1103. optional: true
  1104. dependencies:
  1105. "@babel/runtime": 7.23.2
  1106. "@emotion/react": 11.11.1(@types/react@18.2.37)(react@18.2.0)
  1107. "@emotion/styled": 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.37)(react@18.2.0)
  1108. "@mui/private-theming": 5.14.14(@types/react@18.2.37)(react@18.2.0)
  1109. "@mui/styled-engine": 5.14.14(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
  1110. "@mui/types": 7.2.6(@types/react@18.2.37)
  1111. "@mui/utils": 5.14.14(@types/react@18.2.37)(react@18.2.0)
  1112. "@types/react": 18.2.37
  1113. clsx: 2.0.0
  1114. csstype: 3.1.2
  1115. prop-types: 15.8.1
  1116. react: 18.2.0
  1117. dev: false
  1118. /@mui/types@7.2.6(@types/react@18.2.37):
  1119. resolution:
  1120. {
  1121. integrity: sha512-7sjLQrUmBwufm/M7jw/quNiPK/oor2+pGUQP2CULRcFCArYTq78oJ3D5esTaL0UMkXKJvDqXn6Ike69yAOBQng==,
  1122. }
  1123. peerDependencies:
  1124. "@types/react": ^17.0.0 || ^18.0.0
  1125. peerDependenciesMeta:
  1126. "@types/react":
  1127. optional: true
  1128. dependencies:
  1129. "@types/react": 18.2.37
  1130. dev: false
  1131. /@mui/utils@5.14.14(@types/react@18.2.37)(react@18.2.0):
  1132. resolution:
  1133. {
  1134. integrity: sha512-3AKp8uksje5sRfVrtgG9Q/2TBsHWVBUtA0NaXliZqGcXo8J+A+Agp0qUW2rJ+ivgPWTCCubz9FZVT2IQZ3bGsw==,
  1135. }
  1136. engines: { node: ">=12.0.0" }
  1137. peerDependencies:
  1138. "@types/react": ^17.0.0 || ^18.0.0
  1139. react: ^17.0.0 || ^18.0.0
  1140. peerDependenciesMeta:
  1141. "@types/react":
  1142. optional: true
  1143. dependencies:
  1144. "@babel/runtime": 7.23.2
  1145. "@types/prop-types": 15.7.9
  1146. "@types/react": 18.2.37
  1147. prop-types: 15.8.1
  1148. react: 18.2.0
  1149. react-is: 18.2.0
  1150. dev: false
  1151. /@mui/x-data-grid@6.16.3(@mui/material@5.14.14)(@mui/system@5.14.14)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
  1152. resolution:
  1153. {
  1154. integrity: sha512-msohYxn11JHzeQOywaH5wGSCb/fESootqHLKG6LuET7xOxjHS8GlN/GuW/4kKcbQRunSVh/ADwqpqq+SmWrSeQ==,
  1155. }
  1156. engines: { node: ">=14.0.0" }
  1157. peerDependencies:
  1158. "@mui/material": ^5.4.1
  1159. "@mui/system": ^5.4.1
  1160. react: ^17.0.0 || ^18.0.0
  1161. react-dom: ^17.0.0 || ^18.0.0
  1162. dependencies:
  1163. "@babel/runtime": 7.23.2
  1164. "@mui/material": 5.14.14(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
  1165. "@mui/system": 5.14.14(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.37)(react@18.2.0)
  1166. "@mui/utils": 5.14.14(@types/react@18.2.37)(react@18.2.0)
  1167. clsx: 2.0.0
  1168. prop-types: 15.8.1
  1169. react: 18.2.0
  1170. react-dom: 18.2.0(react@18.2.0)
  1171. reselect: 4.1.8
  1172. transitivePeerDependencies:
  1173. - "@types/react"
  1174. dev: false
  1175. /@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.14)(@mui/system@5.14.14)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
  1176. resolution:
  1177. {
  1178. integrity: sha512-JUG3HmBrmGEALbCFg1b+i7h726e1dWYZs4db3syO1j+Q++E3nbvE4Lehp5yGTFm+8esH0Tny50tuJaa4WX6VSA==,
  1179. }
  1180. engines: { node: ">=14.0.0" }
  1181. peerDependencies:
  1182. "@emotion/react": ^11.9.0
  1183. "@emotion/styled": ^11.8.1
  1184. "@mui/base": ^5.0.0-alpha.87
  1185. "@mui/material": ^5.8.6
  1186. "@mui/system": ^5.8.0
  1187. react: ^17.0.0 || ^18.0.0
  1188. react-dom: ^17.0.0 || ^18.0.0
  1189. dependencies:
  1190. "@babel/runtime": 7.23.2
  1191. "@emotion/react": 11.11.1(@types/react@18.2.37)(react@18.2.0)
  1192. "@emotion/styled": 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.37)(react@18.2.0)
  1193. "@mui/base": 5.0.0-beta.20(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
  1194. "@mui/material": 5.14.14(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
  1195. "@mui/system": 5.14.14(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.37)(react@18.2.0)
  1196. "@mui/utils": 5.14.14(@types/react@18.2.37)(react@18.2.0)
  1197. "@types/react-transition-group": 4.4.9
  1198. clsx: 2.0.0
  1199. prop-types: 15.8.1
  1200. react: 18.2.0
  1201. react-dom: 18.2.0(react@18.2.0)
  1202. react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0)
  1203. transitivePeerDependencies:
  1204. - "@types/react"
  1205. dev: false
  1206. /@octokit/auth-token@2.5.0:
  1207. resolution:
  1208. {
  1209. integrity: sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==,
  1210. }
  1211. dependencies:
  1212. "@octokit/types": 6.34.0
  1213. dev: true
  1214. /@octokit/core@3.6.0:
  1215. resolution:
  1216. {
  1217. integrity: sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q==,
  1218. }
  1219. dependencies:
  1220. "@octokit/auth-token": 2.5.0
  1221. "@octokit/graphql": 4.8.0
  1222. "@octokit/request": 5.6.3
  1223. "@octokit/request-error": 2.1.0
  1224. "@octokit/types": 6.34.0
  1225. before-after-hook: 2.2.2
  1226. universal-user-agent: 6.0.0
  1227. transitivePeerDependencies:
  1228. - encoding
  1229. dev: true
  1230. /@octokit/endpoint@6.0.12:
  1231. resolution:
  1232. {
  1233. integrity: sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==,
  1234. }
  1235. dependencies:
  1236. "@octokit/types": 6.34.0
  1237. is-plain-object: 5.0.0
  1238. universal-user-agent: 6.0.0
  1239. dev: true
  1240. /@octokit/graphql@4.8.0:
  1241. resolution:
  1242. {
  1243. integrity: sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==,
  1244. }
  1245. dependencies:
  1246. "@octokit/request": 5.6.3
  1247. "@octokit/types": 6.34.0
  1248. universal-user-agent: 6.0.0
  1249. transitivePeerDependencies:
  1250. - encoding
  1251. dev: true
  1252. /@octokit/openapi-types@11.2.0:
  1253. resolution:
  1254. {
  1255. integrity: sha512-PBsVO+15KSlGmiI8QAzaqvsNlZlrDlyAJYcrXBCvVUxCp7VnXjkwPoFHgjEJXx3WF9BAwkA6nfCUA7i9sODzKA==,
  1256. }
  1257. dev: true
  1258. /@octokit/plugin-paginate-rest@2.17.0(@octokit/core@3.6.0):
  1259. resolution:
  1260. {
  1261. integrity: sha512-tzMbrbnam2Mt4AhuyCHvpRkS0oZ5MvwwcQPYGtMv4tUa5kkzG58SVB0fcsLulOZQeRnOgdkZWkRUiyBlh0Bkyw==,
  1262. }
  1263. peerDependencies:
  1264. "@octokit/core": ">=2"
  1265. dependencies:
  1266. "@octokit/core": 3.6.0
  1267. "@octokit/types": 6.34.0
  1268. dev: true
  1269. /@octokit/plugin-rest-endpoint-methods@5.13.0(@octokit/core@3.6.0):
  1270. resolution:
  1271. {
  1272. integrity: sha512-uJjMTkN1KaOIgNtUPMtIXDOjx6dGYysdIFhgA52x4xSadQCz3b/zJexvITDVpANnfKPW/+E0xkOvLntqMYpviA==,
  1273. }
  1274. peerDependencies:
  1275. "@octokit/core": ">=3"
  1276. dependencies:
  1277. "@octokit/core": 3.6.0
  1278. "@octokit/types": 6.34.0
  1279. deprecation: 2.3.1
  1280. dev: true
  1281. /@octokit/request-error@2.1.0:
  1282. resolution:
  1283. {
  1284. integrity: sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==,
  1285. }
  1286. dependencies:
  1287. "@octokit/types": 6.34.0
  1288. deprecation: 2.3.1
  1289. once: 1.4.0
  1290. dev: true
  1291. /@octokit/request@5.6.3:
  1292. resolution:
  1293. {
  1294. integrity: sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==,
  1295. }
  1296. dependencies:
  1297. "@octokit/endpoint": 6.0.12
  1298. "@octokit/request-error": 2.1.0
  1299. "@octokit/types": 6.34.0
  1300. is-plain-object: 5.0.0
  1301. node-fetch: 2.6.7
  1302. universal-user-agent: 6.0.0
  1303. transitivePeerDependencies:
  1304. - encoding
  1305. dev: true
  1306. /@octokit/types@6.34.0:
  1307. resolution:
  1308. {
  1309. integrity: sha512-s1zLBjWhdEI2zwaoSgyOFoKSl109CUcVBCc7biPJ3aAf6LGLU6szDvi31JPU7bxfla2lqfhjbbg/5DdFNxOwHw==,
  1310. }
  1311. dependencies:
  1312. "@octokit/openapi-types": 11.2.0
  1313. dev: true
  1314. /@popperjs/core@2.11.8:
  1315. resolution:
  1316. {
  1317. integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==,
  1318. }
  1319. dev: false
  1320. /@remix-run/router@1.0.3:
  1321. resolution:
  1322. {
  1323. integrity: sha512-ceuyTSs7PZ/tQqi19YZNBc5X7kj1f8p+4DIyrcIYFY9h+hd1OKm4RqtiWldR9eGEvIiJfsqwM4BsuCtRIuEw6Q==,
  1324. }
  1325. engines: { node: ">=14" }
  1326. dev: false
  1327. /@rollup/pluginutils@5.0.5:
  1328. resolution:
  1329. {
  1330. integrity: sha512-6aEYR910NyP73oHiJglti74iRyOwgFU4x3meH/H8OJx6Ry0j6cOVZ5X/wTvub7G7Ao6qaHBEaNsV3GLJkSsF+Q==,
  1331. }
  1332. engines: { node: ">=14.0.0" }
  1333. peerDependencies:
  1334. rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
  1335. peerDependenciesMeta:
  1336. rollup:
  1337. optional: true
  1338. dependencies:
  1339. "@types/estree": 1.0.3
  1340. estree-walker: 2.0.2
  1341. picomatch: 2.3.1
  1342. dev: true
  1343. /@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.23.2):
  1344. resolution:
  1345. {
  1346. integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==,
  1347. }
  1348. engines: { node: ">=14" }
  1349. peerDependencies:
  1350. "@babel/core": ^7.0.0-0
  1351. dependencies:
  1352. "@babel/core": 7.23.2
  1353. dev: true
  1354. /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.23.2):
  1355. resolution:
  1356. {
  1357. integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==,
  1358. }
  1359. engines: { node: ">=14" }
  1360. peerDependencies:
  1361. "@babel/core": ^7.0.0-0
  1362. dependencies:
  1363. "@babel/core": 7.23.2
  1364. dev: true
  1365. /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.23.2):
  1366. resolution:
  1367. {
  1368. integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==,
  1369. }
  1370. engines: { node: ">=14" }
  1371. peerDependencies:
  1372. "@babel/core": ^7.0.0-0
  1373. dependencies:
  1374. "@babel/core": 7.23.2
  1375. dev: true
  1376. /@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.23.2):
  1377. resolution:
  1378. {
  1379. integrity: sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==,
  1380. }
  1381. engines: { node: ">=14" }
  1382. peerDependencies:
  1383. "@babel/core": ^7.0.0-0
  1384. dependencies:
  1385. "@babel/core": 7.23.2
  1386. dev: true
  1387. /@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.23.2):
  1388. resolution:
  1389. {
  1390. integrity: sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==,
  1391. }
  1392. engines: { node: ">=14" }
  1393. peerDependencies:
  1394. "@babel/core": ^7.0.0-0
  1395. dependencies:
  1396. "@babel/core": 7.23.2
  1397. dev: true
  1398. /@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.23.2):
  1399. resolution:
  1400. {
  1401. integrity: sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==,
  1402. }
  1403. engines: { node: ">=14" }
  1404. peerDependencies:
  1405. "@babel/core": ^7.0.0-0
  1406. dependencies:
  1407. "@babel/core": 7.23.2
  1408. dev: true
  1409. /@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.23.2):
  1410. resolution:
  1411. {
  1412. integrity: sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==,
  1413. }
  1414. engines: { node: ">=14" }
  1415. peerDependencies:
  1416. "@babel/core": ^7.0.0-0
  1417. dependencies:
  1418. "@babel/core": 7.23.2
  1419. dev: true
  1420. /@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.23.2):
  1421. resolution:
  1422. {
  1423. integrity: sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==,
  1424. }
  1425. engines: { node: ">=12" }
  1426. peerDependencies:
  1427. "@babel/core": ^7.0.0-0
  1428. dependencies:
  1429. "@babel/core": 7.23.2
  1430. dev: true
  1431. /@svgr/babel-preset@8.1.0(@babel/core@7.23.2):
  1432. resolution:
  1433. {
  1434. integrity: sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==,
  1435. }
  1436. engines: { node: ">=14" }
  1437. peerDependencies:
  1438. "@babel/core": ^7.0.0-0
  1439. dependencies:
  1440. "@babel/core": 7.23.2
  1441. "@svgr/babel-plugin-add-jsx-attribute": 8.0.0(@babel/core@7.23.2)
  1442. "@svgr/babel-plugin-remove-jsx-attribute": 8.0.0(@babel/core@7.23.2)
  1443. "@svgr/babel-plugin-remove-jsx-empty-expression": 8.0.0(@babel/core@7.23.2)
  1444. "@svgr/babel-plugin-replace-jsx-attribute-value": 8.0.0(@babel/core@7.23.2)
  1445. "@svgr/babel-plugin-svg-dynamic-title": 8.0.0(@babel/core@7.23.2)
  1446. "@svgr/babel-plugin-svg-em-dimensions": 8.0.0(@babel/core@7.23.2)
  1447. "@svgr/babel-plugin-transform-react-native-svg": 8.1.0(@babel/core@7.23.2)
  1448. "@svgr/babel-plugin-transform-svg-component": 8.0.0(@babel/core@7.23.2)
  1449. dev: true
  1450. /@svgr/core@8.1.0(typescript@4.7.4):
  1451. resolution:
  1452. {
  1453. integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==,
  1454. }
  1455. engines: { node: ">=14" }
  1456. dependencies:
  1457. "@babel/core": 7.23.2
  1458. "@svgr/babel-preset": 8.1.0(@babel/core@7.23.2)
  1459. camelcase: 6.3.0
  1460. cosmiconfig: 8.3.6(typescript@4.7.4)
  1461. snake-case: 3.0.4
  1462. transitivePeerDependencies:
  1463. - supports-color
  1464. - typescript
  1465. dev: true
  1466. /@svgr/hast-util-to-babel-ast@8.0.0:
  1467. resolution:
  1468. {
  1469. integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==,
  1470. }
  1471. engines: { node: ">=14" }
  1472. dependencies:
  1473. "@babel/types": 7.23.0
  1474. entities: 4.5.0
  1475. dev: true
  1476. /@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0):
  1477. resolution:
  1478. {
  1479. integrity: sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==,
  1480. }
  1481. engines: { node: ">=14" }
  1482. peerDependencies:
  1483. "@svgr/core": "*"
  1484. dependencies:
  1485. "@babel/core": 7.23.2
  1486. "@svgr/babel-preset": 8.1.0(@babel/core@7.23.2)
  1487. "@svgr/core": 8.1.0(typescript@4.7.4)
  1488. "@svgr/hast-util-to-babel-ast": 8.0.0
  1489. svg-parser: 2.0.4
  1490. transitivePeerDependencies:
  1491. - supports-color
  1492. dev: true
  1493. /@tauri-apps/api@1.3.0:
  1494. resolution:
  1495. {
  1496. integrity: sha512-AH+3FonkKZNtfRtGrObY38PrzEj4d+1emCbwNGu0V2ENbXjlLHMZQlUh+Bhu/CRmjaIwZMGJ3yFvWaZZgTHoog==,
  1497. }
  1498. engines: { node: ">= 14.6.0", npm: ">= 6.6.0", yarn: ">= 1.19.1" }
  1499. dev: false
  1500. /@tauri-apps/cli-darwin-arm64@1.3.1:
  1501. resolution:
  1502. {
  1503. integrity: sha512-QlepYVPgOgspcwA/u4kGG4ZUijlXfdRtno00zEy+LxinN/IRXtk+6ErVtsmoLi1ZC9WbuMwzAcsRvqsD+RtNAg==,
  1504. }
  1505. engines: { node: ">= 10" }
  1506. cpu: [arm64]
  1507. os: [darwin]
  1508. requiresBuild: true
  1509. dev: true
  1510. optional: true
  1511. /@tauri-apps/cli-darwin-x64@1.3.1:
  1512. resolution:
  1513. {
  1514. integrity: sha512-fKcAUPVFO3jfDKXCSDGY0MhZFF/wDtx3rgFnogWYu4knk38o9RaqRkvMvqJhLYPuWaEM5h6/z1dRrr9KKCbrVg==,
  1515. }
  1516. engines: { node: ">= 10" }
  1517. cpu: [x64]
  1518. os: [darwin]
  1519. requiresBuild: true
  1520. dev: true
  1521. optional: true
  1522. /@tauri-apps/cli-linux-arm-gnueabihf@1.3.1:
  1523. resolution:
  1524. {
  1525. integrity: sha512-+4H0dv8ltJHYu/Ma1h9ixUPUWka9EjaYa8nJfiMsdCI4LJLNE6cPveE7RmhZ59v9GW1XB108/k083JUC/OtGvA==,
  1526. }
  1527. engines: { node: ">= 10" }
  1528. cpu: [arm]
  1529. os: [linux]
  1530. requiresBuild: true
  1531. dev: true
  1532. optional: true
  1533. /@tauri-apps/cli-linux-arm64-gnu@1.3.1:
  1534. resolution:
  1535. {
  1536. integrity: sha512-Pj3odVO1JAxLjYmoXKxcrpj/tPxcA8UP8N06finhNtBtBaxAjrjjxKjO4968KB0BUH7AASIss9EL4Tr0FGnDuw==,
  1537. }
  1538. engines: { node: ">= 10" }
  1539. cpu: [arm64]
  1540. os: [linux]
  1541. requiresBuild: true
  1542. dev: true
  1543. optional: true
  1544. /@tauri-apps/cli-linux-arm64-musl@1.3.1:
  1545. resolution:
  1546. {
  1547. integrity: sha512-tA0JdDLPFaj42UDIVcF2t8V0tSha40rppcmAR/MfQpTCxih6399iMjwihz9kZE1n4b5O4KTq9GliYo50a8zYlQ==,
  1548. }
  1549. engines: { node: ">= 10" }
  1550. cpu: [arm64]
  1551. os: [linux]
  1552. requiresBuild: true
  1553. dev: true
  1554. optional: true
  1555. /@tauri-apps/cli-linux-x64-gnu@1.3.1:
  1556. resolution:
  1557. {
  1558. integrity: sha512-FDU+Mnvk6NLkqQimcNojdKpMN4Y3W51+SQl+NqG9AFCWprCcSg62yRb84751ujZuf2MGT8HQOfmd0i77F4Q3tQ==,
  1559. }
  1560. engines: { node: ">= 10" }
  1561. cpu: [x64]
  1562. os: [linux]
  1563. requiresBuild: true
  1564. dev: true
  1565. optional: true
  1566. /@tauri-apps/cli-linux-x64-musl@1.3.1:
  1567. resolution:
  1568. {
  1569. integrity: sha512-MpO3akXFmK8lZYEbyQRDfhdxz1JkTBhonVuz5rRqxwA7gnGWHa1aF1+/2zsy7ahjB2tQ9x8DDFDMdVE20o9HrA==,
  1570. }
  1571. engines: { node: ">= 10" }
  1572. cpu: [x64]
  1573. os: [linux]
  1574. requiresBuild: true
  1575. dev: true
  1576. optional: true
  1577. /@tauri-apps/cli-win32-ia32-msvc@1.3.1:
  1578. resolution:
  1579. {
  1580. integrity: sha512-9Boeo3K5sOrSBAZBuYyGkpV2RfnGQz3ZhGJt4hE6P+HxRd62lS6+qDKAiw1GmkZ0l1drc2INWrNeT50gwOKwIQ==,
  1581. }
  1582. engines: { node: ">= 10" }
  1583. cpu: [ia32]
  1584. os: [win32]
  1585. requiresBuild: true
  1586. dev: true
  1587. optional: true
  1588. /@tauri-apps/cli-win32-x64-msvc@1.3.1:
  1589. resolution:
  1590. {
  1591. integrity: sha512-wMrTo91hUu5CdpbElrOmcZEoJR4aooTG+fbtcc87SMyPGQy1Ux62b+ZdwLvL1sVTxnIm//7v6QLRIWGiUjCPwA==,
  1592. }
  1593. engines: { node: ">= 10" }
  1594. cpu: [x64]
  1595. os: [win32]
  1596. requiresBuild: true
  1597. dev: true
  1598. optional: true
  1599. /@tauri-apps/cli@1.3.1:
  1600. resolution:
  1601. {
  1602. integrity: sha512-o4I0JujdITsVRm3/0spfJX7FcKYrYV1DXJqzlWIn6IY25/RltjU6qbC1TPgVww3RsRX63jyVUTcWpj5wwFl+EQ==,
  1603. }
  1604. engines: { node: ">= 10" }
  1605. hasBin: true
  1606. optionalDependencies:
  1607. "@tauri-apps/cli-darwin-arm64": 1.3.1
  1608. "@tauri-apps/cli-darwin-x64": 1.3.1
  1609. "@tauri-apps/cli-linux-arm-gnueabihf": 1.3.1
  1610. "@tauri-apps/cli-linux-arm64-gnu": 1.3.1
  1611. "@tauri-apps/cli-linux-arm64-musl": 1.3.1
  1612. "@tauri-apps/cli-linux-x64-gnu": 1.3.1
  1613. "@tauri-apps/cli-linux-x64-musl": 1.3.1
  1614. "@tauri-apps/cli-win32-ia32-msvc": 1.3.1
  1615. "@tauri-apps/cli-win32-x64-msvc": 1.3.1
  1616. dev: true
  1617. /@types/babel__core@7.20.3:
  1618. resolution:
  1619. {
  1620. integrity: sha512-54fjTSeSHwfan8AyHWrKbfBWiEUrNTZsUwPTDSNaaP1QDQIZbeNUg3a59E9D+375MzUw/x1vx2/0F5LBz+AeYA==,
  1621. }
  1622. dependencies:
  1623. "@babel/parser": 7.23.0
  1624. "@babel/types": 7.23.0
  1625. "@types/babel__generator": 7.6.6
  1626. "@types/babel__template": 7.4.3
  1627. "@types/babel__traverse": 7.20.3
  1628. dev: true
  1629. /@types/babel__generator@7.6.6:
  1630. resolution:
  1631. {
  1632. integrity: sha512-66BXMKb/sUWbMdBNdMvajU7i/44RkrA3z/Yt1c7R5xejt8qh84iU54yUWCtm0QwGJlDcf/gg4zd/x4mpLAlb/w==,
  1633. }
  1634. dependencies:
  1635. "@babel/types": 7.23.0
  1636. dev: true
  1637. /@types/babel__template@7.4.3:
  1638. resolution:
  1639. {
  1640. integrity: sha512-ciwyCLeuRfxboZ4isgdNZi/tkt06m8Tw6uGbBSBgWrnnZGNXiEyM27xc/PjXGQLqlZ6ylbgHMnm7ccF9tCkOeQ==,
  1641. }
  1642. dependencies:
  1643. "@babel/parser": 7.23.0
  1644. "@babel/types": 7.23.0
  1645. dev: true
  1646. /@types/babel__traverse@7.20.3:
  1647. resolution:
  1648. {
  1649. integrity: sha512-Lsh766rGEFbaxMIDH7Qa+Yha8cMVI3qAK6CHt3OR0YfxOIn5Z54iHiyDRycHrBqeIiqGa20Kpsv1cavfBKkRSw==,
  1650. }
  1651. dependencies:
  1652. "@babel/types": 7.23.0
  1653. dev: true
  1654. /@types/estree@1.0.3:
  1655. resolution:
  1656. {
  1657. integrity: sha512-CS2rOaoQ/eAgAfcTfq6amKG7bsN+EMcgGY4FAFQdvSj2y1ixvOZTUA9mOtCai7E1SYu283XNw7urKK30nP3wkQ==,
  1658. }
  1659. dev: true
  1660. /@types/fs-extra@9.0.13:
  1661. resolution:
  1662. {
  1663. integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==,
  1664. }
  1665. dependencies:
  1666. "@types/node": 17.0.23
  1667. dev: true
  1668. /@types/js-cookie@2.2.7:
  1669. resolution:
  1670. {
  1671. integrity: sha512-aLkWa0C0vO5b4Sr798E26QgOkss68Un0bLjs7u9qxzPT5CG+8DuNTffWES58YzJs3hrVAOs1wonycqEBqNJubA==,
  1672. }
  1673. dev: false
  1674. /@types/js-cookie@3.0.2:
  1675. resolution:
  1676. {
  1677. integrity: sha512-6+0ekgfusHftJNYpihfkMu8BWdeHs9EOJuGcSofErjstGPfPGEu9yTu4t460lTzzAMl2cM5zngQJqPMHbbnvYA==,
  1678. }
  1679. dev: true
  1680. /@types/lodash-es@4.17.7:
  1681. resolution:
  1682. {
  1683. integrity: sha512-z0ptr6UI10VlU6l5MYhGwS4mC8DZyYer2mCoyysZtSF7p26zOX8UpbrV0YpNYLGS8K4PUFIyEr62IMFFjveSiQ==,
  1684. }
  1685. dependencies:
  1686. "@types/lodash": 4.14.191
  1687. dev: true
  1688. /@types/lodash@4.14.191:
  1689. resolution:
  1690. {
  1691. integrity: sha512-BdZ5BCCvho3EIXw6wUCXHe7rS53AIDPLE+JzwgT+OsJk53oBfbSmZZ7CX4VaRoN78N+TJpFi9QPlfIVNmJYWxQ==,
  1692. }
  1693. dev: true
  1694. /@types/minimatch@3.0.5:
  1695. resolution:
  1696. {
  1697. integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==,
  1698. }
  1699. dev: true
  1700. /@types/node@17.0.23:
  1701. resolution:
  1702. {
  1703. integrity: sha512-UxDxWn7dl97rKVeVS61vErvw086aCYhDLyvRQZ5Rk65rZKepaFdm53GeqXaKBuOhED4e9uWq34IC3TdSdJJ2Gw==,
  1704. }
  1705. dev: true
  1706. /@types/parse-json@4.0.0:
  1707. resolution:
  1708. {
  1709. integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==,
  1710. }
  1711. dev: false
  1712. /@types/prop-types@15.7.9:
  1713. resolution:
  1714. {
  1715. integrity: sha512-n1yyPsugYNSmHgxDFjicaI2+gCNjsBck8UX9kuofAKlc0h1bL+20oSF72KeNaW2DUlesbEVCFgyV2dPGTiY42g==,
  1716. }
  1717. /@types/react-dom@18.0.11:
  1718. resolution:
  1719. {
  1720. integrity: sha512-O38bPbI2CWtgw/OoQoY+BRelw7uysmXbWvw3nLWO21H1HSh+GOlqPuXshJfjmpNlKiiSDG9cc1JZAaMmVdcTlw==,
  1721. }
  1722. dependencies:
  1723. "@types/react": 18.2.37
  1724. dev: true
  1725. /@types/react-transition-group@4.4.9:
  1726. resolution:
  1727. {
  1728. integrity: sha512-ZVNmWumUIh5NhH8aMD9CR2hdW0fNuYInlocZHaZ+dgk/1K49j1w/HoAuK1ki+pgscQrOFRTlXeoURtuzEkV3dg==,
  1729. }
  1730. dependencies:
  1731. "@types/react": 18.2.37
  1732. /@types/react@18.2.37:
  1733. resolution:
  1734. {
  1735. integrity: sha512-RGAYMi2bhRgEXT3f4B92WTohopH6bIXw05FuGlmJEnv/omEn190+QYEIYxIAuIBdKgboYYdVved2p1AxZVQnaw==,
  1736. }
  1737. dependencies:
  1738. "@types/prop-types": 15.7.9
  1739. "@types/scheduler": 0.16.2
  1740. csstype: 3.1.2
  1741. /@types/scheduler@0.16.2:
  1742. resolution:
  1743. {
  1744. integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==,
  1745. }
  1746. /@virtuoso.dev/react-urx@0.2.13(react@18.2.0):
  1747. resolution:
  1748. {
  1749. integrity: sha512-MY0ugBDjFb5Xt8v2HY7MKcRGqw/3gTpMlLXId2EwQvYJoC8sP7nnXjAxcBtTB50KTZhO0SbzsFimaZ7pSdApwA==,
  1750. }
  1751. engines: { node: ">=10" }
  1752. peerDependencies:
  1753. react: ">=16"
  1754. dependencies:
  1755. "@virtuoso.dev/urx": 0.2.13
  1756. react: 18.2.0
  1757. dev: false
  1758. /@virtuoso.dev/urx@0.2.13:
  1759. resolution:
  1760. {
  1761. integrity: sha512-iirJNv92A1ZWxoOHHDYW/1KPoi83939o83iUBQHIim0i3tMeSKEh+bxhJdTHQ86Mr4uXx9xGUTq69cp52ZP8Xw==,
  1762. }
  1763. dev: false
  1764. /@vitejs/plugin-react@4.1.0(vite@4.5.0):
  1765. resolution:
  1766. {
  1767. integrity: sha512-rM0SqazU9iqPUraQ2JlIvReeaxOoRj6n+PzB1C0cBzIbd8qP336nC39/R9yPi3wVcah7E7j/kdU1uCUqMEU4OQ==,
  1768. }
  1769. engines: { node: ^14.18.0 || >=16.0.0 }
  1770. peerDependencies:
  1771. vite: ^4.2.0
  1772. dependencies:
  1773. "@babel/core": 7.23.2
  1774. "@babel/plugin-transform-react-jsx-self": 7.22.5(@babel/core@7.23.2)
  1775. "@babel/plugin-transform-react-jsx-source": 7.22.5(@babel/core@7.23.2)
  1776. "@types/babel__core": 7.20.3
  1777. react-refresh: 0.14.0
  1778. vite: 4.5.0(sass@1.54.8)
  1779. transitivePeerDependencies:
  1780. - supports-color
  1781. dev: true
  1782. /adm-zip@0.5.9:
  1783. resolution:
  1784. {
  1785. integrity: sha512-s+3fXLkeeLjZ2kLjCBwQufpI5fuN+kIGBxu6530nVQZGVol0d7Y/M88/xw9HGGUcJjKf8LutN3VPRUBq6N7Ajg==,
  1786. }
  1787. engines: { node: ">=6.0" }
  1788. dev: true
  1789. /agent-base@6.0.2:
  1790. resolution:
  1791. {
  1792. integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==,
  1793. }
  1794. engines: { node: ">= 6.0.0" }
  1795. dependencies:
  1796. debug: 4.3.4
  1797. transitivePeerDependencies:
  1798. - supports-color
  1799. dev: true
  1800. /ahooks-v3-count@1.0.0:
  1801. resolution:
  1802. {
  1803. integrity: sha512-V7uUvAwnimu6eh/PED4mCDjE7tokeZQLKlxg9lCTMPhN+NjsSbtdacByVlR1oluXQzD3MOw55wylDmQo4+S9ZQ==,
  1804. }
  1805. dev: false
  1806. /ahooks@3.7.2(react@18.2.0):
  1807. resolution:
  1808. {
  1809. integrity: sha512-nJPsQJcmJnGaNXiqgZdfO7UMs+o926LQg6VyDYt2vzKhXU8Ze/U87NsA/FeIvlIZB0rQr/j7uotFb1bGPp627A==,
  1810. }
  1811. engines: { node: ">=8.0.0" }
  1812. peerDependencies:
  1813. react: ^16.8.0 || ^17.0.0 || ^18.0.0
  1814. dependencies:
  1815. "@types/js-cookie": 2.2.7
  1816. ahooks-v3-count: 1.0.0
  1817. dayjs: 1.11.5
  1818. intersection-observer: 0.12.0
  1819. js-cookie: 2.2.1
  1820. lodash: 4.17.21
  1821. react: 18.2.0
  1822. resize-observer-polyfill: 1.5.1
  1823. screenfull: 5.2.0
  1824. dev: false
  1825. /ansi-styles@3.2.1:
  1826. resolution:
  1827. {
  1828. integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==,
  1829. }
  1830. engines: { node: ">=4" }
  1831. dependencies:
  1832. color-convert: 1.9.3
  1833. /ansi-styles@4.3.0:
  1834. resolution:
  1835. {
  1836. integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==,
  1837. }
  1838. engines: { node: ">=8" }
  1839. dependencies:
  1840. color-convert: 2.0.1
  1841. dev: true
  1842. /anymatch@3.1.2:
  1843. resolution:
  1844. {
  1845. integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==,
  1846. }
  1847. engines: { node: ">= 8" }
  1848. dependencies:
  1849. normalize-path: 3.0.0
  1850. picomatch: 2.3.1
  1851. dev: true
  1852. /argparse@2.0.1:
  1853. resolution:
  1854. {
  1855. integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==,
  1856. }
  1857. dev: true
  1858. /array-differ@3.0.0:
  1859. resolution:
  1860. {
  1861. integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==,
  1862. }
  1863. engines: { node: ">=8" }
  1864. dev: true
  1865. /array-union@2.1.0:
  1866. resolution:
  1867. {
  1868. integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==,
  1869. }
  1870. engines: { node: ">=8" }
  1871. dev: true
  1872. /arrify@2.0.1:
  1873. resolution:
  1874. {
  1875. integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==,
  1876. }
  1877. engines: { node: ">=8" }
  1878. dev: true
  1879. /asynckit@0.4.0:
  1880. resolution:
  1881. {
  1882. integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==,
  1883. }
  1884. dev: false
  1885. /axios@1.1.3:
  1886. resolution:
  1887. {
  1888. integrity: sha512-00tXVRwKx/FZr/IDVFt4C+f9FYairX517WoGCL6dpOntqLkZofjhu43F/Xl44UOpqa+9sLFDrG/XAnFsUYgkDA==,
  1889. }
  1890. dependencies:
  1891. follow-redirects: 1.15.2
  1892. form-data: 4.0.0
  1893. proxy-from-env: 1.1.0
  1894. transitivePeerDependencies:
  1895. - debug
  1896. dev: false
  1897. /babel-plugin-macros@3.1.0:
  1898. resolution:
  1899. {
  1900. integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==,
  1901. }
  1902. engines: { node: ">=10", npm: ">=6" }
  1903. dependencies:
  1904. "@babel/runtime": 7.23.2
  1905. cosmiconfig: 7.0.1
  1906. resolve: 1.22.1
  1907. dev: false
  1908. /balanced-match@1.0.2:
  1909. resolution:
  1910. {
  1911. integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==,
  1912. }
  1913. dev: true
  1914. /before-after-hook@2.2.2:
  1915. resolution:
  1916. {
  1917. integrity: sha512-3pZEU3NT5BFUo/AD5ERPWOgQOCZITni6iavr5AUw5AUwQjMlI0kzu5btnyD39AF0gUEsDPwJT+oY1ORBJijPjQ==,
  1918. }
  1919. dev: true
  1920. /binary-extensions@2.2.0:
  1921. resolution:
  1922. {
  1923. integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==,
  1924. }
  1925. engines: { node: ">=8" }
  1926. dev: true
  1927. /brace-expansion@1.1.11:
  1928. resolution:
  1929. {
  1930. integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==,
  1931. }
  1932. dependencies:
  1933. balanced-match: 1.0.2
  1934. concat-map: 0.0.1
  1935. dev: true
  1936. /braces@3.0.2:
  1937. resolution:
  1938. {
  1939. integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==,
  1940. }
  1941. engines: { node: ">=8" }
  1942. dependencies:
  1943. fill-range: 7.0.1
  1944. dev: true
  1945. /browserslist@4.22.1:
  1946. resolution:
  1947. {
  1948. integrity: sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==,
  1949. }
  1950. engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 }
  1951. hasBin: true
  1952. dependencies:
  1953. caniuse-lite: 1.0.30001551
  1954. electron-to-chromium: 1.4.563
  1955. node-releases: 2.0.13
  1956. update-browserslist-db: 1.0.13(browserslist@4.22.1)
  1957. dev: true
  1958. /callsites@3.1.0:
  1959. resolution:
  1960. {
  1961. integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==,
  1962. }
  1963. engines: { node: ">=6" }
  1964. /camelcase@6.3.0:
  1965. resolution:
  1966. {
  1967. integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==,
  1968. }
  1969. engines: { node: ">=10" }
  1970. dev: true
  1971. /caniuse-lite@1.0.30001551:
  1972. resolution:
  1973. {
  1974. integrity: sha512-vtBAez47BoGMMzlbYhfXrMV1kvRF2WP/lqiMuDu1Sb4EE4LKEgjopFDSRtZfdVnslNRpOqV/woE+Xgrwj6VQlg==,
  1975. }
  1976. dev: true
  1977. /chalk@2.4.2:
  1978. resolution:
  1979. {
  1980. integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==,
  1981. }
  1982. engines: { node: ">=4" }
  1983. dependencies:
  1984. ansi-styles: 3.2.1
  1985. escape-string-regexp: 1.0.5
  1986. supports-color: 5.5.0
  1987. /chalk@3.0.0:
  1988. resolution:
  1989. {
  1990. integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==,
  1991. }
  1992. engines: { node: ">=8" }
  1993. dependencies:
  1994. ansi-styles: 4.3.0
  1995. supports-color: 7.2.0
  1996. dev: true
  1997. /chokidar@3.5.3:
  1998. resolution:
  1999. {
  2000. integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==,
  2001. }
  2002. engines: { node: ">= 8.10.0" }
  2003. dependencies:
  2004. anymatch: 3.1.2
  2005. braces: 3.0.2
  2006. glob-parent: 5.1.2
  2007. is-binary-path: 2.1.0
  2008. is-glob: 4.0.3
  2009. normalize-path: 3.0.0
  2010. readdirp: 3.6.0
  2011. optionalDependencies:
  2012. fsevents: 2.3.2
  2013. dev: true
  2014. /chownr@2.0.0:
  2015. resolution:
  2016. {
  2017. integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==,
  2018. }
  2019. engines: { node: ">=10" }
  2020. dev: false
  2021. /clsx@2.0.0:
  2022. resolution:
  2023. {
  2024. integrity: sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==,
  2025. }
  2026. engines: { node: ">=6" }
  2027. dev: false
  2028. /color-convert@1.9.3:
  2029. resolution:
  2030. {
  2031. integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==,
  2032. }
  2033. dependencies:
  2034. color-name: 1.1.3
  2035. /color-convert@2.0.1:
  2036. resolution:
  2037. {
  2038. integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==,
  2039. }
  2040. engines: { node: ">=7.0.0" }
  2041. dependencies:
  2042. color-name: 1.1.4
  2043. dev: true
  2044. /color-name@1.1.3:
  2045. resolution:
  2046. {
  2047. integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==,
  2048. }
  2049. /color-name@1.1.4:
  2050. resolution:
  2051. {
  2052. integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==,
  2053. }
  2054. dev: true
  2055. /combined-stream@1.0.8:
  2056. resolution:
  2057. {
  2058. integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==,
  2059. }
  2060. engines: { node: ">= 0.8" }
  2061. dependencies:
  2062. delayed-stream: 1.0.0
  2063. dev: false
  2064. /concat-map@0.0.1:
  2065. resolution:
  2066. {
  2067. integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==,
  2068. }
  2069. dev: true
  2070. /convert-source-map@1.8.0:
  2071. resolution:
  2072. {
  2073. integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==,
  2074. }
  2075. dependencies:
  2076. safe-buffer: 5.1.2
  2077. dev: false
  2078. /convert-source-map@2.0.0:
  2079. resolution:
  2080. {
  2081. integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==,
  2082. }
  2083. dev: true
  2084. /cosmiconfig@7.0.1:
  2085. resolution:
  2086. {
  2087. integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==,
  2088. }
  2089. engines: { node: ">=10" }
  2090. dependencies:
  2091. "@types/parse-json": 4.0.0
  2092. import-fresh: 3.3.0
  2093. parse-json: 5.2.0
  2094. path-type: 4.0.0
  2095. yaml: 1.10.2
  2096. dev: false
  2097. /cosmiconfig@8.3.6(typescript@4.7.4):
  2098. resolution:
  2099. {
  2100. integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==,
  2101. }
  2102. engines: { node: ">=14" }
  2103. peerDependencies:
  2104. typescript: ">=4.9.5"
  2105. peerDependenciesMeta:
  2106. typescript:
  2107. optional: true
  2108. dependencies:
  2109. import-fresh: 3.3.0
  2110. js-yaml: 4.1.0
  2111. parse-json: 5.2.0
  2112. path-type: 4.0.0
  2113. typescript: 4.7.4
  2114. dev: true
  2115. /cross-env@7.0.3:
  2116. resolution:
  2117. {
  2118. integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==,
  2119. }
  2120. engines: { node: ">=10.14", npm: ">=6", yarn: ">=1" }
  2121. hasBin: true
  2122. dependencies:
  2123. cross-spawn: 7.0.3
  2124. dev: true
  2125. /cross-spawn@7.0.3:
  2126. resolution:
  2127. {
  2128. integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==,
  2129. }
  2130. engines: { node: ">= 8" }
  2131. dependencies:
  2132. path-key: 3.1.1
  2133. shebang-command: 2.0.0
  2134. which: 2.0.2
  2135. dev: true
  2136. /csstype@3.1.2:
  2137. resolution:
  2138. {
  2139. integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==,
  2140. }
  2141. /data-uri-to-buffer@4.0.0:
  2142. resolution:
  2143. {
  2144. integrity: sha512-Vr3mLBA8qWmcuschSLAOogKgQ/Jwxulv3RNE4FXnYWRGujzrRWQI4m12fQqRkwX06C0KanhLr4hK+GydchZsaA==,
  2145. }
  2146. engines: { node: ">= 12" }
  2147. dev: true
  2148. /dayjs@1.11.5:
  2149. resolution:
  2150. {
  2151. integrity: sha512-CAdX5Q3YW3Gclyo5Vpqkgpj8fSdLQcRuzfX6mC6Phy0nfJ0eGYOeS7m4mt2plDWLAtA4TqTakvbboHvUxfe4iA==,
  2152. }
  2153. dev: false
  2154. /debug@4.3.4:
  2155. resolution:
  2156. {
  2157. integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==,
  2158. }
  2159. engines: { node: ">=6.0" }
  2160. peerDependencies:
  2161. supports-color: "*"
  2162. peerDependenciesMeta:
  2163. supports-color:
  2164. optional: true
  2165. dependencies:
  2166. ms: 2.1.2
  2167. dev: true
  2168. /delayed-stream@1.0.0:
  2169. resolution:
  2170. {
  2171. integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==,
  2172. }
  2173. engines: { node: ">=0.4.0" }
  2174. dev: false
  2175. /deprecation@2.3.1:
  2176. resolution:
  2177. {
  2178. integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==,
  2179. }
  2180. dev: true
  2181. /dom-helpers@5.2.1:
  2182. resolution:
  2183. {
  2184. integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==,
  2185. }
  2186. dependencies:
  2187. "@babel/runtime": 7.23.2
  2188. csstype: 3.1.2
  2189. dev: false
  2190. /dot-case@3.0.4:
  2191. resolution:
  2192. {
  2193. integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==,
  2194. }
  2195. dependencies:
  2196. no-case: 3.0.4
  2197. tslib: 2.6.2
  2198. dev: true
  2199. /electron-to-chromium@1.4.563:
  2200. resolution:
  2201. {
  2202. integrity: sha512-dg5gj5qOgfZNkPNeyKBZQAQitIQ/xwfIDmEQJHCbXaD9ebTZxwJXUsDYcBlAvZGZLi+/354l35J1wkmP6CqYaw==,
  2203. }
  2204. dev: true
  2205. /end-of-stream@1.4.4:
  2206. resolution:
  2207. {
  2208. integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==,
  2209. }
  2210. dependencies:
  2211. once: 1.4.0
  2212. dev: true
  2213. /entities@4.5.0:
  2214. resolution:
  2215. {
  2216. integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==,
  2217. }
  2218. engines: { node: ">=0.12" }
  2219. dev: true
  2220. /error-ex@1.3.2:
  2221. resolution:
  2222. {
  2223. integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==,
  2224. }
  2225. dependencies:
  2226. is-arrayish: 0.2.1
  2227. /esbuild@0.18.20:
  2228. resolution:
  2229. {
  2230. integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==,
  2231. }
  2232. engines: { node: ">=12" }
  2233. hasBin: true
  2234. requiresBuild: true
  2235. optionalDependencies:
  2236. "@esbuild/android-arm": 0.18.20
  2237. "@esbuild/android-arm64": 0.18.20
  2238. "@esbuild/android-x64": 0.18.20
  2239. "@esbuild/darwin-arm64": 0.18.20
  2240. "@esbuild/darwin-x64": 0.18.20
  2241. "@esbuild/freebsd-arm64": 0.18.20
  2242. "@esbuild/freebsd-x64": 0.18.20
  2243. "@esbuild/linux-arm": 0.18.20
  2244. "@esbuild/linux-arm64": 0.18.20
  2245. "@esbuild/linux-ia32": 0.18.20
  2246. "@esbuild/linux-loong64": 0.18.20
  2247. "@esbuild/linux-mips64el": 0.18.20
  2248. "@esbuild/linux-ppc64": 0.18.20
  2249. "@esbuild/linux-riscv64": 0.18.20
  2250. "@esbuild/linux-s390x": 0.18.20
  2251. "@esbuild/linux-x64": 0.18.20
  2252. "@esbuild/netbsd-x64": 0.18.20
  2253. "@esbuild/openbsd-x64": 0.18.20
  2254. "@esbuild/sunos-x64": 0.18.20
  2255. "@esbuild/win32-arm64": 0.18.20
  2256. "@esbuild/win32-ia32": 0.18.20
  2257. "@esbuild/win32-x64": 0.18.20
  2258. dev: true
  2259. /escalade@3.1.1:
  2260. resolution:
  2261. {
  2262. integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==,
  2263. }
  2264. engines: { node: ">=6" }
  2265. dev: true
  2266. /escape-string-regexp@1.0.5:
  2267. resolution:
  2268. {
  2269. integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==,
  2270. }
  2271. engines: { node: ">=0.8.0" }
  2272. /escape-string-regexp@4.0.0:
  2273. resolution:
  2274. {
  2275. integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==,
  2276. }
  2277. engines: { node: ">=10" }
  2278. dev: false
  2279. /estree-walker@2.0.2:
  2280. resolution:
  2281. {
  2282. integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==,
  2283. }
  2284. dev: true
  2285. /execa@4.1.0:
  2286. resolution:
  2287. {
  2288. integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==,
  2289. }
  2290. engines: { node: ">=10" }
  2291. dependencies:
  2292. cross-spawn: 7.0.3
  2293. get-stream: 5.2.0
  2294. human-signals: 1.1.1
  2295. is-stream: 2.0.1
  2296. merge-stream: 2.0.0
  2297. npm-run-path: 4.0.1
  2298. onetime: 5.1.2
  2299. signal-exit: 3.0.7
  2300. strip-final-newline: 2.0.0
  2301. dev: true
  2302. /fetch-blob@3.1.5:
  2303. resolution:
  2304. {
  2305. integrity: sha512-N64ZpKqoLejlrwkIAnb9iLSA3Vx/kjgzpcDhygcqJ2KKjky8nCgUQ+dzXtbrLaWZGZNmNfQTsiQ0weZ1svglHg==,
  2306. }
  2307. engines: { node: ^12.20 || >= 14.13 }
  2308. dependencies:
  2309. node-domexception: 1.0.0
  2310. web-streams-polyfill: 3.2.0
  2311. dev: true
  2312. /fill-range@7.0.1:
  2313. resolution:
  2314. {
  2315. integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==,
  2316. }
  2317. engines: { node: ">=8" }
  2318. dependencies:
  2319. to-regex-range: 5.0.1
  2320. dev: true
  2321. /find-root@1.1.0:
  2322. resolution:
  2323. {
  2324. integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==,
  2325. }
  2326. dev: false
  2327. /find-up@4.1.0:
  2328. resolution:
  2329. {
  2330. integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==,
  2331. }
  2332. engines: { node: ">=8" }
  2333. dependencies:
  2334. locate-path: 5.0.0
  2335. path-exists: 4.0.0
  2336. dev: true
  2337. /follow-redirects@1.15.2:
  2338. resolution:
  2339. {
  2340. integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==,
  2341. }
  2342. engines: { node: ">=4.0" }
  2343. peerDependencies:
  2344. debug: "*"
  2345. peerDependenciesMeta:
  2346. debug:
  2347. optional: true
  2348. dev: false
  2349. /form-data@4.0.0:
  2350. resolution:
  2351. {
  2352. integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==,
  2353. }
  2354. engines: { node: ">= 6" }
  2355. dependencies:
  2356. asynckit: 0.4.0
  2357. combined-stream: 1.0.8
  2358. mime-types: 2.1.35
  2359. dev: false
  2360. /formdata-polyfill@4.0.10:
  2361. resolution:
  2362. {
  2363. integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==,
  2364. }
  2365. engines: { node: ">=12.20.0" }
  2366. dependencies:
  2367. fetch-blob: 3.1.5
  2368. dev: true
  2369. /fs-extra@10.0.1:
  2370. resolution:
  2371. {
  2372. integrity: sha512-NbdoVMZso2Lsrn/QwLXOy6rm0ufY2zEOKCDzJR/0kBsb0E6qed0P3iYK+Ath3BfvXEeu4JhEtXLgILx5psUfag==,
  2373. }
  2374. engines: { node: ">=12" }
  2375. dependencies:
  2376. graceful-fs: 4.2.9
  2377. jsonfile: 6.1.0
  2378. universalify: 2.0.0
  2379. dev: true
  2380. /fs-minipass@2.1.0:
  2381. resolution:
  2382. {
  2383. integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==,
  2384. }
  2385. engines: { node: ">= 8" }
  2386. dependencies:
  2387. minipass: 3.3.6
  2388. dev: false
  2389. /fsevents@2.3.2:
  2390. resolution:
  2391. {
  2392. integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==,
  2393. }
  2394. engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 }
  2395. os: [darwin]
  2396. requiresBuild: true
  2397. dev: true
  2398. optional: true
  2399. /function-bind@1.1.1:
  2400. resolution:
  2401. {
  2402. integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==,
  2403. }
  2404. dev: false
  2405. /gensync@1.0.0-beta.2:
  2406. resolution:
  2407. {
  2408. integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==,
  2409. }
  2410. engines: { node: ">=6.9.0" }
  2411. dev: true
  2412. /get-stream@5.2.0:
  2413. resolution:
  2414. {
  2415. integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==,
  2416. }
  2417. engines: { node: ">=8" }
  2418. dependencies:
  2419. pump: 3.0.0
  2420. dev: true
  2421. /glob-parent@5.1.2:
  2422. resolution:
  2423. {
  2424. integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==,
  2425. }
  2426. engines: { node: ">= 6" }
  2427. dependencies:
  2428. is-glob: 4.0.3
  2429. dev: true
  2430. /globals@11.12.0:
  2431. resolution:
  2432. {
  2433. integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==,
  2434. }
  2435. engines: { node: ">=4" }
  2436. dev: true
  2437. /graceful-fs@4.2.9:
  2438. resolution:
  2439. {
  2440. integrity: sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==,
  2441. }
  2442. dev: true
  2443. /hamt_plus@1.0.2:
  2444. resolution:
  2445. {
  2446. integrity: sha512-t2JXKaehnMb9paaYA7J0BX8QQAY8lwfQ9Gjf4pg/mk4krt+cmwmU652HOoWonf+7+EQV97ARPMhhVgU1ra2GhA==,
  2447. }
  2448. dev: false
  2449. /has-flag@3.0.0:
  2450. resolution:
  2451. {
  2452. integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==,
  2453. }
  2454. engines: { node: ">=4" }
  2455. /has-flag@4.0.0:
  2456. resolution:
  2457. {
  2458. integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==,
  2459. }
  2460. engines: { node: ">=8" }
  2461. dev: true
  2462. /has@1.0.3:
  2463. resolution:
  2464. {
  2465. integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==,
  2466. }
  2467. engines: { node: ">= 0.4.0" }
  2468. dependencies:
  2469. function-bind: 1.1.1
  2470. dev: false
  2471. /hoist-non-react-statics@3.3.2:
  2472. resolution:
  2473. {
  2474. integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==,
  2475. }
  2476. dependencies:
  2477. react-is: 16.13.1
  2478. dev: false
  2479. /html-parse-stringify@3.0.1:
  2480. resolution:
  2481. {
  2482. integrity: sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==,
  2483. }
  2484. dependencies:
  2485. void-elements: 3.1.0
  2486. dev: false
  2487. /https-proxy-agent@5.0.1:
  2488. resolution:
  2489. {
  2490. integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==,
  2491. }
  2492. engines: { node: ">= 6" }
  2493. dependencies:
  2494. agent-base: 6.0.2
  2495. debug: 4.3.4
  2496. transitivePeerDependencies:
  2497. - supports-color
  2498. dev: true
  2499. /human-signals@1.1.1:
  2500. resolution:
  2501. {
  2502. integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==,
  2503. }
  2504. engines: { node: ">=8.12.0" }
  2505. dev: true
  2506. /husky@7.0.4:
  2507. resolution:
  2508. {
  2509. integrity: sha512-vbaCKN2QLtP/vD4yvs6iz6hBEo6wkSzs8HpRah1Z6aGmF2KW5PdYuAd7uX5a+OyBZHBhd+TFLqgjUgytQr4RvQ==,
  2510. }
  2511. engines: { node: ">=12" }
  2512. hasBin: true
  2513. dev: true
  2514. /i18next@22.0.4:
  2515. resolution:
  2516. {
  2517. integrity: sha512-TOp7BTMKDbUkOHMzDlVsCYWpyaFkKakrrO3HNXfSz4EeJaWwnBScRmgQSTaWHScXVHBUFXTvShrCW8uryBYFcg==,
  2518. }
  2519. dependencies:
  2520. "@babel/runtime": 7.23.2
  2521. dev: false
  2522. /ignore@5.2.0:
  2523. resolution:
  2524. {
  2525. integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==,
  2526. }
  2527. engines: { node: ">= 4" }
  2528. dev: true
  2529. /immutable@4.0.0:
  2530. resolution:
  2531. {
  2532. integrity: sha512-zIE9hX70qew5qTUjSS7wi1iwj/l7+m54KWU247nhM3v806UdGj1yDndXj+IOYxxtW9zyLI+xqFNZjTuDaLUqFw==,
  2533. }
  2534. dev: true
  2535. /import-fresh@3.3.0:
  2536. resolution:
  2537. {
  2538. integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==,
  2539. }
  2540. engines: { node: ">=6" }
  2541. dependencies:
  2542. parent-module: 1.0.1
  2543. resolve-from: 4.0.0
  2544. /intersection-observer@0.12.0:
  2545. resolution:
  2546. {
  2547. integrity: sha512-2Vkz8z46Dv401zTWudDGwO7KiGHNDkMv417T5ItcNYfmvHR/1qCTVBO9vwH8zZmQ0WkA/1ARwpysR9bsnop4NQ==,
  2548. }
  2549. dev: false
  2550. /is-arrayish@0.2.1:
  2551. resolution:
  2552. {
  2553. integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==,
  2554. }
  2555. /is-binary-path@2.1.0:
  2556. resolution:
  2557. {
  2558. integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==,
  2559. }
  2560. engines: { node: ">=8" }
  2561. dependencies:
  2562. binary-extensions: 2.2.0
  2563. dev: true
  2564. /is-core-module@2.10.0:
  2565. resolution:
  2566. {
  2567. integrity: sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==,
  2568. }
  2569. dependencies:
  2570. has: 1.0.3
  2571. dev: false
  2572. /is-extglob@2.1.1:
  2573. resolution:
  2574. {
  2575. integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==,
  2576. }
  2577. engines: { node: ">=0.10.0" }
  2578. dev: true
  2579. /is-glob@4.0.3:
  2580. resolution:
  2581. {
  2582. integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==,
  2583. }
  2584. engines: { node: ">=0.10.0" }
  2585. dependencies:
  2586. is-extglob: 2.1.1
  2587. dev: true
  2588. /is-number@7.0.0:
  2589. resolution:
  2590. {
  2591. integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==,
  2592. }
  2593. engines: { node: ">=0.12.0" }
  2594. dev: true
  2595. /is-plain-object@5.0.0:
  2596. resolution:
  2597. {
  2598. integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==,
  2599. }
  2600. engines: { node: ">=0.10.0" }
  2601. dev: true
  2602. /is-stream@2.0.1:
  2603. resolution:
  2604. {
  2605. integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==,
  2606. }
  2607. engines: { node: ">=8" }
  2608. dev: true
  2609. /isexe@2.0.0:
  2610. resolution:
  2611. {
  2612. integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==,
  2613. }
  2614. dev: true
  2615. /js-cookie@2.2.1:
  2616. resolution:
  2617. {
  2618. integrity: sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ==,
  2619. }
  2620. dev: false
  2621. /js-tokens@4.0.0:
  2622. resolution:
  2623. {
  2624. integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==,
  2625. }
  2626. /js-yaml@4.1.0:
  2627. resolution:
  2628. {
  2629. integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==,
  2630. }
  2631. hasBin: true
  2632. dependencies:
  2633. argparse: 2.0.1
  2634. dev: true
  2635. /jsesc@2.5.2:
  2636. resolution:
  2637. {
  2638. integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==,
  2639. }
  2640. engines: { node: ">=4" }
  2641. hasBin: true
  2642. dev: true
  2643. /json-parse-even-better-errors@2.3.1:
  2644. resolution:
  2645. {
  2646. integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==,
  2647. }
  2648. /json5@2.2.3:
  2649. resolution:
  2650. {
  2651. integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==,
  2652. }
  2653. engines: { node: ">=6" }
  2654. hasBin: true
  2655. dev: true
  2656. /jsonfile@6.1.0:
  2657. resolution:
  2658. {
  2659. integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==,
  2660. }
  2661. dependencies:
  2662. universalify: 2.0.0
  2663. optionalDependencies:
  2664. graceful-fs: 4.2.9
  2665. dev: true
  2666. /lines-and-columns@1.2.4:
  2667. resolution:
  2668. {
  2669. integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==,
  2670. }
  2671. /locate-path@5.0.0:
  2672. resolution:
  2673. {
  2674. integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==,
  2675. }
  2676. engines: { node: ">=8" }
  2677. dependencies:
  2678. p-locate: 4.1.0
  2679. dev: true
  2680. /lodash-es@4.17.21:
  2681. resolution:
  2682. {
  2683. integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==,
  2684. }
  2685. dev: false
  2686. /lodash@4.17.21:
  2687. resolution:
  2688. {
  2689. integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==,
  2690. }
  2691. dev: false
  2692. /loose-envify@1.4.0:
  2693. resolution:
  2694. {
  2695. integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==,
  2696. }
  2697. hasBin: true
  2698. dependencies:
  2699. js-tokens: 4.0.0
  2700. dev: false
  2701. /lower-case@2.0.2:
  2702. resolution:
  2703. {
  2704. integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==,
  2705. }
  2706. dependencies:
  2707. tslib: 2.6.2
  2708. dev: true
  2709. /lru-cache@5.1.1:
  2710. resolution:
  2711. {
  2712. integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==,
  2713. }
  2714. dependencies:
  2715. yallist: 3.1.1
  2716. dev: true
  2717. /merge-stream@2.0.0:
  2718. resolution:
  2719. {
  2720. integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==,
  2721. }
  2722. dev: true
  2723. /mime-db@1.52.0:
  2724. resolution:
  2725. {
  2726. integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==,
  2727. }
  2728. engines: { node: ">= 0.6" }
  2729. dev: false
  2730. /mime-types@2.1.35:
  2731. resolution:
  2732. {
  2733. integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==,
  2734. }
  2735. engines: { node: ">= 0.6" }
  2736. dependencies:
  2737. mime-db: 1.52.0
  2738. dev: false
  2739. /mimic-fn@2.1.0:
  2740. resolution:
  2741. {
  2742. integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==,
  2743. }
  2744. engines: { node: ">=6" }
  2745. dev: true
  2746. /minimatch@3.1.2:
  2747. resolution:
  2748. {
  2749. integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==,
  2750. }
  2751. dependencies:
  2752. brace-expansion: 1.1.11
  2753. dev: true
  2754. /minipass@3.3.6:
  2755. resolution:
  2756. {
  2757. integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==,
  2758. }
  2759. engines: { node: ">=8" }
  2760. dependencies:
  2761. yallist: 4.0.0
  2762. dev: false
  2763. /minipass@5.0.0:
  2764. resolution:
  2765. {
  2766. integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==,
  2767. }
  2768. engines: { node: ">=8" }
  2769. dev: false
  2770. /minizlib@2.1.2:
  2771. resolution:
  2772. {
  2773. integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==,
  2774. }
  2775. engines: { node: ">= 8" }
  2776. dependencies:
  2777. minipass: 3.3.6
  2778. yallist: 4.0.0
  2779. dev: false
  2780. /mkdirp@1.0.4:
  2781. resolution:
  2782. {
  2783. integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==,
  2784. }
  2785. engines: { node: ">=10" }
  2786. hasBin: true
  2787. dev: false
  2788. /monaco-editor@0.34.1:
  2789. resolution:
  2790. {
  2791. integrity: sha512-FKc80TyiMaruhJKKPz5SpJPIjL+dflGvz4CpuThaPMc94AyN7SeC9HQ8hrvaxX7EyHdJcUY5i4D0gNyJj1vSZQ==,
  2792. }
  2793. /mri@1.2.0:
  2794. resolution:
  2795. {
  2796. integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==,
  2797. }
  2798. engines: { node: ">=4" }
  2799. dev: true
  2800. /ms@2.1.2:
  2801. resolution:
  2802. {
  2803. integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==,
  2804. }
  2805. dev: true
  2806. /multimatch@4.0.0:
  2807. resolution:
  2808. {
  2809. integrity: sha512-lDmx79y1z6i7RNx0ZGCPq1bzJ6ZoDDKbvh7jxr9SJcWLkShMzXrHbYVpTdnhNM5MXpDUxCQ4DgqVttVXlBgiBQ==,
  2810. }
  2811. engines: { node: ">=8" }
  2812. dependencies:
  2813. "@types/minimatch": 3.0.5
  2814. array-differ: 3.0.0
  2815. array-union: 2.1.0
  2816. arrify: 2.0.1
  2817. minimatch: 3.1.2
  2818. dev: true
  2819. /nanoid@3.3.6:
  2820. resolution:
  2821. {
  2822. integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==,
  2823. }
  2824. engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 }
  2825. hasBin: true
  2826. dev: true
  2827. /no-case@3.0.4:
  2828. resolution:
  2829. {
  2830. integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==,
  2831. }
  2832. dependencies:
  2833. lower-case: 2.0.2
  2834. tslib: 2.6.2
  2835. dev: true
  2836. /node-domexception@1.0.0:
  2837. resolution:
  2838. {
  2839. integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==,
  2840. }
  2841. engines: { node: ">=10.5.0" }
  2842. dev: true
  2843. /node-fetch@2.6.7:
  2844. resolution:
  2845. {
  2846. integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==,
  2847. }
  2848. engines: { node: 4.x || >=6.0.0 }
  2849. peerDependencies:
  2850. encoding: ^0.1.0
  2851. peerDependenciesMeta:
  2852. encoding:
  2853. optional: true
  2854. dependencies:
  2855. whatwg-url: 5.0.0
  2856. dev: true
  2857. /node-fetch@3.2.6:
  2858. resolution:
  2859. {
  2860. integrity: sha512-LAy/HZnLADOVkVPubaxHDft29booGglPFDr2Hw0J1AercRh01UiVFm++KMDnJeH9sHgNB4hsXPii7Sgym/sTbw==,
  2861. }
  2862. engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
  2863. dependencies:
  2864. data-uri-to-buffer: 4.0.0
  2865. fetch-blob: 3.1.5
  2866. formdata-polyfill: 4.0.10
  2867. dev: true
  2868. /node-releases@2.0.13:
  2869. resolution:
  2870. {
  2871. integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==,
  2872. }
  2873. dev: true
  2874. /normalize-path@3.0.0:
  2875. resolution:
  2876. {
  2877. integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==,
  2878. }
  2879. engines: { node: ">=0.10.0" }
  2880. dev: true
  2881. /npm-run-path@4.0.1:
  2882. resolution:
  2883. {
  2884. integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==,
  2885. }
  2886. engines: { node: ">=8" }
  2887. dependencies:
  2888. path-key: 3.1.1
  2889. dev: true
  2890. /object-assign@4.1.1:
  2891. resolution:
  2892. {
  2893. integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==,
  2894. }
  2895. engines: { node: ">=0.10.0" }
  2896. dev: false
  2897. /once@1.4.0:
  2898. resolution:
  2899. {
  2900. integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==,
  2901. }
  2902. dependencies:
  2903. wrappy: 1.0.2
  2904. dev: true
  2905. /onetime@5.1.2:
  2906. resolution:
  2907. {
  2908. integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==,
  2909. }
  2910. engines: { node: ">=6" }
  2911. dependencies:
  2912. mimic-fn: 2.1.0
  2913. dev: true
  2914. /p-limit@2.3.0:
  2915. resolution:
  2916. {
  2917. integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==,
  2918. }
  2919. engines: { node: ">=6" }
  2920. dependencies:
  2921. p-try: 2.2.0
  2922. dev: true
  2923. /p-locate@4.1.0:
  2924. resolution:
  2925. {
  2926. integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==,
  2927. }
  2928. engines: { node: ">=8" }
  2929. dependencies:
  2930. p-limit: 2.3.0
  2931. dev: true
  2932. /p-try@2.2.0:
  2933. resolution:
  2934. {
  2935. integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==,
  2936. }
  2937. engines: { node: ">=6" }
  2938. dev: true
  2939. /parent-module@1.0.1:
  2940. resolution:
  2941. {
  2942. integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==,
  2943. }
  2944. engines: { node: ">=6" }
  2945. dependencies:
  2946. callsites: 3.1.0
  2947. /parse-json@5.2.0:
  2948. resolution:
  2949. {
  2950. integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==,
  2951. }
  2952. engines: { node: ">=8" }
  2953. dependencies:
  2954. "@babel/code-frame": 7.22.13
  2955. error-ex: 1.3.2
  2956. json-parse-even-better-errors: 2.3.1
  2957. lines-and-columns: 1.2.4
  2958. /path-exists@4.0.0:
  2959. resolution:
  2960. {
  2961. integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==,
  2962. }
  2963. engines: { node: ">=8" }
  2964. dev: true
  2965. /path-key@3.1.1:
  2966. resolution:
  2967. {
  2968. integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==,
  2969. }
  2970. engines: { node: ">=8" }
  2971. dev: true
  2972. /path-parse@1.0.7:
  2973. resolution:
  2974. {
  2975. integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==,
  2976. }
  2977. dev: false
  2978. /path-type@4.0.0:
  2979. resolution:
  2980. {
  2981. integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==,
  2982. }
  2983. engines: { node: ">=8" }
  2984. /picocolors@1.0.0:
  2985. resolution:
  2986. {
  2987. integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==,
  2988. }
  2989. dev: true
  2990. /picomatch@2.3.1:
  2991. resolution:
  2992. {
  2993. integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==,
  2994. }
  2995. engines: { node: ">=8.6" }
  2996. dev: true
  2997. /postcss@8.4.31:
  2998. resolution:
  2999. {
  3000. integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==,
  3001. }
  3002. engines: { node: ^10 || ^12 || >=14 }
  3003. dependencies:
  3004. nanoid: 3.3.6
  3005. picocolors: 1.0.0
  3006. source-map-js: 1.0.2
  3007. dev: true
  3008. /prettier@2.7.1:
  3009. resolution:
  3010. {
  3011. integrity: sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==,
  3012. }
  3013. engines: { node: ">=10.13.0" }
  3014. hasBin: true
  3015. dev: true
  3016. /pretty-quick@3.1.3(prettier@2.7.1):
  3017. resolution:
  3018. {
  3019. integrity: sha512-kOCi2FJabvuh1as9enxYmrnBC6tVMoVOenMaBqRfsvBHB0cbpYHjdQEpSglpASDFEXVwplpcGR4CLEaisYAFcA==,
  3020. }
  3021. engines: { node: ">=10.13" }
  3022. hasBin: true
  3023. peerDependencies:
  3024. prettier: ">=2.0.0"
  3025. dependencies:
  3026. chalk: 3.0.0
  3027. execa: 4.1.0
  3028. find-up: 4.1.0
  3029. ignore: 5.2.0
  3030. mri: 1.2.0
  3031. multimatch: 4.0.0
  3032. prettier: 2.7.1
  3033. dev: true
  3034. /prop-types@15.8.1:
  3035. resolution:
  3036. {
  3037. integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==,
  3038. }
  3039. dependencies:
  3040. loose-envify: 1.4.0
  3041. object-assign: 4.1.1
  3042. react-is: 16.13.1
  3043. dev: false
  3044. /proxy-from-env@1.1.0:
  3045. resolution:
  3046. {
  3047. integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==,
  3048. }
  3049. dev: false
  3050. /pump@3.0.0:
  3051. resolution:
  3052. {
  3053. integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==,
  3054. }
  3055. dependencies:
  3056. end-of-stream: 1.4.4
  3057. once: 1.4.0
  3058. dev: true
  3059. /react-dom@18.2.0(react@18.2.0):
  3060. resolution:
  3061. {
  3062. integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==,
  3063. }
  3064. peerDependencies:
  3065. react: ^18.2.0
  3066. dependencies:
  3067. loose-envify: 1.4.0
  3068. react: 18.2.0
  3069. scheduler: 0.23.0
  3070. dev: false
  3071. /react-error-boundary@3.1.4(react@18.2.0):
  3072. resolution:
  3073. {
  3074. integrity: sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==,
  3075. }
  3076. engines: { node: ">=10", npm: ">=6" }
  3077. peerDependencies:
  3078. react: ">=16.13.1"
  3079. dependencies:
  3080. "@babel/runtime": 7.23.2
  3081. react: 18.2.0
  3082. dev: false
  3083. /react-hook-form@7.39.5(react@18.2.0):
  3084. resolution:
  3085. {
  3086. integrity: sha512-OE0HKyz5IPc6svN2wd+e+evidZrw4O4WZWAWYzQVZuHi+hYnHFSLnxOq0ddjbdmaLIsLHut/ab7j72y2QT3+KA==,
  3087. }
  3088. engines: { node: ">=12.22.0" }
  3089. peerDependencies:
  3090. react: ^16.8.0 || ^17 || ^18
  3091. dependencies:
  3092. react: 18.2.0
  3093. dev: false
  3094. /react-i18next@12.0.0(i18next@22.0.4)(react-dom@18.2.0)(react@18.2.0):
  3095. resolution:
  3096. {
  3097. integrity: sha512-/O7N6aIEAl1FaWZBNvhdIo9itvF/MO/nRKr9pYqRc9LhuC1u21SlfwpiYQqvaeNSEW3g3qUXLREOWMt+gxrWbg==,
  3098. }
  3099. peerDependencies:
  3100. i18next: ">= 19.0.0"
  3101. react: ">= 16.8.0"
  3102. react-dom: "*"
  3103. react-native: "*"
  3104. peerDependenciesMeta:
  3105. react-dom:
  3106. optional: true
  3107. react-native:
  3108. optional: true
  3109. dependencies:
  3110. "@babel/runtime": 7.23.2
  3111. html-parse-stringify: 3.0.1
  3112. i18next: 22.0.4
  3113. react: 18.2.0
  3114. react-dom: 18.2.0(react@18.2.0)
  3115. dev: false
  3116. /react-is@16.13.1:
  3117. resolution:
  3118. {
  3119. integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==,
  3120. }
  3121. dev: false
  3122. /react-is@18.2.0:
  3123. resolution:
  3124. {
  3125. integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==,
  3126. }
  3127. dev: false
  3128. /react-refresh@0.14.0:
  3129. resolution:
  3130. {
  3131. integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==,
  3132. }
  3133. engines: { node: ">=0.10.0" }
  3134. dev: true
  3135. /react-router-dom@6.4.3(react-dom@18.2.0)(react@18.2.0):
  3136. resolution:
  3137. {
  3138. integrity: sha512-MiaYQU8CwVCaOfJdYvt84KQNjT78VF0TJrA17SIQgNHRvLnXDJO6qsFqq8F/zzB1BWZjCFIrQpu4QxcshitziQ==,
  3139. }
  3140. engines: { node: ">=14" }
  3141. peerDependencies:
  3142. react: ">=16.8"
  3143. react-dom: ">=16.8"
  3144. dependencies:
  3145. "@remix-run/router": 1.0.3
  3146. react: 18.2.0
  3147. react-dom: 18.2.0(react@18.2.0)
  3148. react-router: 6.4.3(react@18.2.0)
  3149. dev: false
  3150. /react-router@6.4.3(react@18.2.0):
  3151. resolution:
  3152. {
  3153. integrity: sha512-BT6DoGn6aV1FVP5yfODMOiieakp3z46P1Fk0RNzJMACzE7C339sFuHebfvWtnB4pzBvXXkHP2vscJzWRuUjTtA==,
  3154. }
  3155. engines: { node: ">=14" }
  3156. peerDependencies:
  3157. react: ">=16.8"
  3158. dependencies:
  3159. "@remix-run/router": 1.0.3
  3160. react: 18.2.0
  3161. dev: false
  3162. /react-transition-group@4.4.5(react-dom@18.2.0)(react@18.2.0):
  3163. resolution:
  3164. {
  3165. integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==,
  3166. }
  3167. peerDependencies:
  3168. react: ">=16.6.0"
  3169. react-dom: ">=16.6.0"
  3170. dependencies:
  3171. "@babel/runtime": 7.23.2
  3172. dom-helpers: 5.2.1
  3173. loose-envify: 1.4.0
  3174. prop-types: 15.8.1
  3175. react: 18.2.0
  3176. react-dom: 18.2.0(react@18.2.0)
  3177. dev: false
  3178. /react-virtuoso@3.1.3(react-dom@18.2.0)(react@18.2.0):
  3179. resolution:
  3180. {
  3181. integrity: sha512-sc4WICEZkyT+XdVc7gA/61UT43ZnMSX0ugh+xBG2cX+EDWs31wP1dSKQ2HSQ0YFLhZXRJ+Jqndqa8MTu4NE4CQ==,
  3182. }
  3183. engines: { node: ">=10" }
  3184. peerDependencies:
  3185. react: ">=16 || >=17 || >= 18"
  3186. react-dom: ">=16 || >=17 || >= 18"
  3187. dependencies:
  3188. "@virtuoso.dev/react-urx": 0.2.13(react@18.2.0)
  3189. "@virtuoso.dev/urx": 0.2.13
  3190. react: 18.2.0
  3191. react-dom: 18.2.0(react@18.2.0)
  3192. dev: false
  3193. /react@18.2.0:
  3194. resolution:
  3195. {
  3196. integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==,
  3197. }
  3198. engines: { node: ">=0.10.0" }
  3199. dependencies:
  3200. loose-envify: 1.4.0
  3201. dev: false
  3202. /readdirp@3.6.0:
  3203. resolution:
  3204. {
  3205. integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==,
  3206. }
  3207. engines: { node: ">=8.10.0" }
  3208. dependencies:
  3209. picomatch: 2.3.1
  3210. dev: true
  3211. /recoil@0.7.6(react-dom@18.2.0)(react@18.2.0):
  3212. resolution:
  3213. {
  3214. integrity: sha512-hsBEw7jFdpBCY/tu2GweiyaqHKxVj6EqF2/SfrglbKvJHhpN57SANWvPW+gE90i3Awi+A5gssOd3u+vWlT+g7g==,
  3215. }
  3216. peerDependencies:
  3217. react: ">=16.13.1"
  3218. react-dom: "*"
  3219. react-native: "*"
  3220. peerDependenciesMeta:
  3221. react-dom:
  3222. optional: true
  3223. react-native:
  3224. optional: true
  3225. dependencies:
  3226. hamt_plus: 1.0.2
  3227. react: 18.2.0
  3228. react-dom: 18.2.0(react@18.2.0)
  3229. dev: false
  3230. /regenerator-runtime@0.14.0:
  3231. resolution:
  3232. {
  3233. integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==,
  3234. }
  3235. dev: false
  3236. /reselect@4.1.8:
  3237. resolution:
  3238. {
  3239. integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==,
  3240. }
  3241. dev: false
  3242. /resize-observer-polyfill@1.5.1:
  3243. resolution:
  3244. {
  3245. integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==,
  3246. }
  3247. dev: false
  3248. /resolve-from@4.0.0:
  3249. resolution:
  3250. {
  3251. integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==,
  3252. }
  3253. engines: { node: ">=4" }
  3254. /resolve@1.22.1:
  3255. resolution:
  3256. {
  3257. integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==,
  3258. }
  3259. hasBin: true
  3260. dependencies:
  3261. is-core-module: 2.10.0
  3262. path-parse: 1.0.7
  3263. supports-preserve-symlinks-flag: 1.0.0
  3264. dev: false
  3265. /rollup@3.29.4:
  3266. resolution:
  3267. {
  3268. integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==,
  3269. }
  3270. engines: { node: ">=14.18.0", npm: ">=8.0.0" }
  3271. hasBin: true
  3272. optionalDependencies:
  3273. fsevents: 2.3.2
  3274. dev: true
  3275. /safe-buffer@5.1.2:
  3276. resolution:
  3277. {
  3278. integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==,
  3279. }
  3280. dev: false
  3281. /sass@1.54.8:
  3282. resolution:
  3283. {
  3284. integrity: sha512-ib4JhLRRgbg6QVy6bsv5uJxnJMTS2soVcCp9Y88Extyy13A8vV0G1fAwujOzmNkFQbR3LvedudAMbtuNRPbQww==,
  3285. }
  3286. engines: { node: ">=12.0.0" }
  3287. hasBin: true
  3288. dependencies:
  3289. chokidar: 3.5.3
  3290. immutable: 4.0.0
  3291. source-map-js: 1.0.2
  3292. dev: true
  3293. /scheduler@0.23.0:
  3294. resolution:
  3295. {
  3296. integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==,
  3297. }
  3298. dependencies:
  3299. loose-envify: 1.4.0
  3300. dev: false
  3301. /screenfull@5.2.0:
  3302. resolution:
  3303. {
  3304. integrity: sha512-9BakfsO2aUQN2K9Fdbj87RJIEZ82Q9IGim7FqM5OsebfoFC6ZHXgDq/KvniuLTPdeM8wY2o6Dj3WQ7KeQCj3cA==,
  3305. }
  3306. engines: { node: ">=0.10.0" }
  3307. dev: false
  3308. /semver@6.3.1:
  3309. resolution:
  3310. {
  3311. integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==,
  3312. }
  3313. hasBin: true
  3314. dev: true
  3315. /shebang-command@2.0.0:
  3316. resolution:
  3317. {
  3318. integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==,
  3319. }
  3320. engines: { node: ">=8" }
  3321. dependencies:
  3322. shebang-regex: 3.0.0
  3323. dev: true
  3324. /shebang-regex@3.0.0:
  3325. resolution:
  3326. {
  3327. integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==,
  3328. }
  3329. engines: { node: ">=8" }
  3330. dev: true
  3331. /signal-exit@3.0.7:
  3332. resolution:
  3333. {
  3334. integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==,
  3335. }
  3336. dev: true
  3337. /snake-case@3.0.4:
  3338. resolution:
  3339. {
  3340. integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==,
  3341. }
  3342. dependencies:
  3343. dot-case: 3.0.4
  3344. tslib: 2.6.2
  3345. dev: true
  3346. /snarkdown@2.0.0:
  3347. resolution:
  3348. {
  3349. integrity: sha512-MgL/7k/AZdXCTJiNgrO7chgDqaB9FGM/1Tvlcenenb7div6obaDATzs16JhFyHHBGodHT3B7RzRc5qk8pFhg3A==,
  3350. }
  3351. dev: false
  3352. /source-map-js@1.0.2:
  3353. resolution:
  3354. {
  3355. integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==,
  3356. }
  3357. engines: { node: ">=0.10.0" }
  3358. dev: true
  3359. /source-map@0.5.7:
  3360. resolution:
  3361. {
  3362. integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==,
  3363. }
  3364. engines: { node: ">=0.10.0" }
  3365. dev: false
  3366. /strip-final-newline@2.0.0:
  3367. resolution:
  3368. {
  3369. integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==,
  3370. }
  3371. engines: { node: ">=6" }
  3372. dev: true
  3373. /stylis@4.2.0:
  3374. resolution:
  3375. {
  3376. integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==,
  3377. }
  3378. dev: false
  3379. /supports-color@5.5.0:
  3380. resolution:
  3381. {
  3382. integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==,
  3383. }
  3384. engines: { node: ">=4" }
  3385. dependencies:
  3386. has-flag: 3.0.0
  3387. /supports-color@7.2.0:
  3388. resolution:
  3389. {
  3390. integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==,
  3391. }
  3392. engines: { node: ">=8" }
  3393. dependencies:
  3394. has-flag: 4.0.0
  3395. dev: true
  3396. /supports-preserve-symlinks-flag@1.0.0:
  3397. resolution:
  3398. {
  3399. integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==,
  3400. }
  3401. engines: { node: ">= 0.4" }
  3402. dev: false
  3403. /svg-parser@2.0.4:
  3404. resolution:
  3405. {
  3406. integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==,
  3407. }
  3408. dev: true
  3409. /swr@1.3.0(react@18.2.0):
  3410. resolution:
  3411. {
  3412. integrity: sha512-dkghQrOl2ORX9HYrMDtPa7LTVHJjCTeZoB1dqTbnnEDlSvN8JEKpYIYurDfvbQFUUS8Cg8PceFVZNkW0KNNYPw==,
  3413. }
  3414. peerDependencies:
  3415. react: ^16.11.0 || ^17.0.0 || ^18.0.0
  3416. dependencies:
  3417. react: 18.2.0
  3418. dev: false
  3419. /tar@6.2.0:
  3420. resolution:
  3421. {
  3422. integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==,
  3423. }
  3424. engines: { node: ">=10" }
  3425. dependencies:
  3426. chownr: 2.0.0
  3427. fs-minipass: 2.1.0
  3428. minipass: 5.0.0
  3429. minizlib: 2.1.2
  3430. mkdirp: 1.0.4
  3431. yallist: 4.0.0
  3432. dev: false
  3433. /to-fast-properties@2.0.0:
  3434. resolution:
  3435. {
  3436. integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==,
  3437. }
  3438. engines: { node: ">=4" }
  3439. /to-regex-range@5.0.1:
  3440. resolution:
  3441. {
  3442. integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==,
  3443. }
  3444. engines: { node: ">=8.0" }
  3445. dependencies:
  3446. is-number: 7.0.0
  3447. dev: true
  3448. /tr46@0.0.3:
  3449. resolution:
  3450. {
  3451. integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==,
  3452. }
  3453. dev: true
  3454. /tslib@2.6.2:
  3455. resolution:
  3456. {
  3457. integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==,
  3458. }
  3459. dev: true
  3460. /tunnel@0.0.6:
  3461. resolution:
  3462. {
  3463. integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==,
  3464. }
  3465. engines: { node: ">=0.6.11 <=0.7.0 || >=0.7.3" }
  3466. dev: true
  3467. /typescript@4.7.4:
  3468. resolution:
  3469. {
  3470. integrity: sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==,
  3471. }
  3472. engines: { node: ">=4.2.0" }
  3473. hasBin: true
  3474. dev: true
  3475. /universal-user-agent@6.0.0:
  3476. resolution:
  3477. {
  3478. integrity: sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==,
  3479. }
  3480. dev: true
  3481. /universalify@2.0.0:
  3482. resolution:
  3483. {
  3484. integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==,
  3485. }
  3486. engines: { node: ">= 10.0.0" }
  3487. dev: true
  3488. /update-browserslist-db@1.0.13(browserslist@4.22.1):
  3489. resolution:
  3490. {
  3491. integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==,
  3492. }
  3493. hasBin: true
  3494. peerDependencies:
  3495. browserslist: ">= 4.21.0"
  3496. dependencies:
  3497. browserslist: 4.22.1
  3498. escalade: 3.1.1
  3499. picocolors: 1.0.0
  3500. dev: true
  3501. /vite-plugin-monaco-editor@1.1.0(monaco-editor@0.34.1):
  3502. resolution:
  3503. {
  3504. integrity: sha512-IvtUqZotrRoVqwT0PBBDIZPNraya3BxN/bfcNfnxZ5rkJiGcNtO5eAOWWSgT7zullIAEqQwxMU83yL9J5k7gww==,
  3505. }
  3506. peerDependencies:
  3507. monaco-editor: ">=0.33.0"
  3508. dependencies:
  3509. monaco-editor: 0.34.1
  3510. dev: true
  3511. /vite-plugin-svgr@4.1.0(typescript@4.7.4)(vite@4.5.0):
  3512. resolution:
  3513. {
  3514. integrity: sha512-v7Qic+FWmCChgQNGSI4V8X63OEYsdUoLt66iqIcHozq9bfK/Dwmr0V+LBy1NE8CE98Y8HouEBJ+pto4AMfN5xw==,
  3515. }
  3516. peerDependencies:
  3517. vite: ^2.6.0 || 3 || 4
  3518. dependencies:
  3519. "@rollup/pluginutils": 5.0.5
  3520. "@svgr/core": 8.1.0(typescript@4.7.4)
  3521. "@svgr/plugin-jsx": 8.1.0(@svgr/core@8.1.0)
  3522. vite: 4.5.0(sass@1.54.8)
  3523. transitivePeerDependencies:
  3524. - rollup
  3525. - supports-color
  3526. - typescript
  3527. dev: true
  3528. /vite@4.5.0(sass@1.54.8):
  3529. resolution:
  3530. {
  3531. integrity: sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw==,
  3532. }
  3533. engines: { node: ^14.18.0 || >=16.0.0 }
  3534. hasBin: true
  3535. peerDependencies:
  3536. "@types/node": ">= 14"
  3537. less: "*"
  3538. lightningcss: ^1.21.0
  3539. sass: "*"
  3540. stylus: "*"
  3541. sugarss: "*"
  3542. terser: ^5.4.0
  3543. peerDependenciesMeta:
  3544. "@types/node":
  3545. optional: true
  3546. less:
  3547. optional: true
  3548. lightningcss:
  3549. optional: true
  3550. sass:
  3551. optional: true
  3552. stylus:
  3553. optional: true
  3554. sugarss:
  3555. optional: true
  3556. terser:
  3557. optional: true
  3558. dependencies:
  3559. esbuild: 0.18.20
  3560. postcss: 8.4.31
  3561. rollup: 3.29.4
  3562. sass: 1.54.8
  3563. optionalDependencies:
  3564. fsevents: 2.3.2
  3565. dev: true
  3566. /void-elements@3.1.0:
  3567. resolution:
  3568. {
  3569. integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==,
  3570. }
  3571. engines: { node: ">=0.10.0" }
  3572. dev: false
  3573. /web-streams-polyfill@3.2.0:
  3574. resolution:
  3575. {
  3576. integrity: sha512-EqPmREeOzttaLRm5HS7io98goBgZ7IVz79aDvqjD0kYXLtFZTc0T/U6wHTPKyIjb+MdN7DFIIX6hgdBEpWmfPA==,
  3577. }
  3578. engines: { node: ">= 8" }
  3579. dev: true
  3580. /webidl-conversions@3.0.1:
  3581. resolution:
  3582. {
  3583. integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==,
  3584. }
  3585. dev: true
  3586. /whatwg-url@5.0.0:
  3587. resolution:
  3588. {
  3589. integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==,
  3590. }
  3591. dependencies:
  3592. tr46: 0.0.3
  3593. webidl-conversions: 3.0.1
  3594. dev: true
  3595. /which@2.0.2:
  3596. resolution:
  3597. {
  3598. integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==,
  3599. }
  3600. engines: { node: ">= 8" }
  3601. hasBin: true
  3602. dependencies:
  3603. isexe: 2.0.0
  3604. dev: true
  3605. /wrappy@1.0.2:
  3606. resolution:
  3607. {
  3608. integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==,
  3609. }
  3610. dev: true
  3611. /yallist@3.1.1:
  3612. resolution:
  3613. {
  3614. integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==,
  3615. }
  3616. dev: true
  3617. /yallist@4.0.0:
  3618. resolution:
  3619. {
  3620. integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==,
  3621. }
  3622. dev: false
  3623. /yaml@1.10.2:
  3624. resolution:
  3625. {
  3626. integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==,
  3627. }
  3628. engines: { node: ">= 6" }
  3629. dev: false