123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092 |
- lockfileVersion: "6.0"
- settings:
- autoInstallPeers: true
- excludeLinksFromLockfile: false
- dependencies:
- "@dnd-kit/core":
- specifier: ^6.1.0
- version: 6.1.0(react-dom@18.2.0)(react@18.2.0)
- "@dnd-kit/sortable":
- specifier: ^8.0.0
- version: 8.0.0(@dnd-kit/core@6.1.0)(react@18.2.0)
- "@dnd-kit/utilities":
- specifier: ^3.2.2
- version: 3.2.2(react@18.2.0)
- "@emotion/react":
- specifier: ^11.11.1
- version: 11.11.1(@types/react@18.2.39)(react@18.2.0)
- "@emotion/styled":
- specifier: ^11.11.0
- version: 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.39)(react@18.2.0)
- "@juggle/resize-observer":
- specifier: ^3.4.0
- version: 3.4.0
- "@mui/icons-material":
- specifier: ^5.14.19
- version: 5.14.19(@mui/material@5.14.19)(@types/react@18.2.39)(react@18.2.0)
- "@mui/lab":
- specifier: 5.0.0-alpha.149
- version: 5.0.0-alpha.149(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/material@5.14.19)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0)
- "@mui/material":
- specifier: ^5.14.19
- version: 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0)
- "@mui/x-data-grid":
- specifier: ^6.18.2
- version: 6.18.2(@mui/material@5.14.19)(@mui/system@5.14.19)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0)
- "@tauri-apps/api":
- specifier: ^1.5.1
- version: 1.5.1
- ahooks:
- specifier: ^3.7.8
- version: 3.7.8(react@18.2.0)
- axios:
- specifier: ^1.6.2
- version: 1.6.2
- dayjs:
- specifier: 1.11.5
- version: 1.11.5
- i18next:
- specifier: ^23.7.7
- version: 23.7.7
- lodash-es:
- specifier: ^4.17.21
- version: 4.17.21
- monaco-editor:
- specifier: ^0.34.1
- version: 0.34.1
- react:
- specifier: ^18.2.0
- version: 18.2.0
- react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
- react-error-boundary:
- specifier: ^3.1.4
- version: 3.1.4(react@18.2.0)
- react-hook-form:
- specifier: ^7.48.2
- version: 7.48.2(react@18.2.0)
- react-i18next:
- specifier: ^13.5.0
- version: 13.5.0(i18next@23.7.7)(react-dom@18.2.0)(react@18.2.0)
- react-router-dom:
- specifier: ^6.20.0
- version: 6.20.0(react-dom@18.2.0)(react@18.2.0)
- react-transition-group:
- specifier: ^4.4.5
- version: 4.4.5(react-dom@18.2.0)(react@18.2.0)
- react-virtuoso:
- specifier: ^4.6.2
- version: 4.6.2(react-dom@18.2.0)(react@18.2.0)
- recoil:
- specifier: ^0.7.7
- version: 0.7.7(react-dom@18.2.0)(react@18.2.0)
- snarkdown:
- specifier: ^2.0.0
- version: 2.0.0
- swr:
- specifier: ^1.3.0
- version: 1.3.0(react@18.2.0)
- tar:
- specifier: ^6.2.0
- version: 6.2.0
- devDependencies:
- "@actions/github":
- specifier: ^5.1.1
- version: 5.1.1
- "@tauri-apps/cli":
- specifier: ^1.5.6
- version: 1.5.6
- "@types/fs-extra":
- specifier: ^9.0.13
- version: 9.0.13
- "@types/js-cookie":
- specifier: ^3.0.6
- version: 3.0.6
- "@types/lodash":
- specifier: ^4.14.202
- version: 4.14.202
- "@types/lodash-es":
- specifier: ^4.17.12
- version: 4.17.12
- "@types/react":
- specifier: ^18.2.39
- version: 18.2.39
- "@types/react-dom":
- specifier: ^18.2.17
- version: 18.2.17
- "@types/react-transition-group":
- specifier: ^4.4.9
- version: 4.4.9
- "@vitejs/plugin-react":
- specifier: ^4.2.0
- version: 4.2.0(vite@4.5.0)
- adm-zip:
- specifier: ^0.5.10
- version: 0.5.10
- cross-env:
- specifier: ^7.0.3
- version: 7.0.3
- fs-extra:
- specifier: ^11.2.0
- version: 11.2.0
- https-proxy-agent:
- specifier: ^5.0.1
- version: 5.0.1
- husky:
- specifier: ^7.0.4
- version: 7.0.4
- node-fetch:
- specifier: ^3.3.2
- version: 3.3.2
- prettier:
- specifier: ^2.8.8
- version: 2.8.8
- pretty-quick:
- specifier: ^3.1.3
- version: 3.1.3(prettier@2.8.8)
- sass:
- specifier: ^1.69.5
- version: 1.69.5
- typescript:
- specifier: ^5.3.2
- version: 5.3.2
- vite:
- specifier: ^4.5.0
- version: 4.5.0(sass@1.69.5)
- vite-plugin-monaco-editor:
- specifier: ^1.1.0
- version: 1.1.0(monaco-editor@0.34.1)
- vite-plugin-svgr:
- specifier: ^4.2.0
- version: 4.2.0(typescript@5.3.2)(vite@4.5.0)
- packages:
- /@actions/github@5.1.1:
- resolution:
- {
- integrity: sha512-Nk59rMDoJaV+mHCOJPXuvB1zIbomlKS0dmSIqPGxd0enAXBnOfn4VWF+CGtRCwXZG9Epa54tZA7VIRlJDS8A6g==,
- }
- dependencies:
- "@actions/http-client": 2.2.0
- "@octokit/core": 3.6.0
- "@octokit/plugin-paginate-rest": 2.21.3(@octokit/core@3.6.0)
- "@octokit/plugin-rest-endpoint-methods": 5.16.2(@octokit/core@3.6.0)
- transitivePeerDependencies:
- - encoding
- dev: true
- /@actions/http-client@2.2.0:
- resolution:
- {
- integrity: sha512-q+epW0trjVUUHboliPb4UF9g2msf+w61b32tAkFEwL/IwP0DQWgbCMM0Hbe3e3WXSKz5VcUXbzJQgy8Hkra/Lg==,
- }
- dependencies:
- tunnel: 0.0.6
- undici: 5.28.2
- dev: true
- /@ampproject/remapping@2.2.1:
- resolution:
- {
- integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==,
- }
- engines: { node: ">=6.0.0" }
- dependencies:
- "@jridgewell/gen-mapping": 0.3.3
- "@jridgewell/trace-mapping": 0.3.20
- dev: true
- /@babel/code-frame@7.23.5:
- resolution:
- {
- integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==,
- }
- engines: { node: ">=6.9.0" }
- dependencies:
- "@babel/highlight": 7.23.4
- chalk: 2.4.2
- /@babel/compat-data@7.23.5:
- resolution:
- {
- integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==,
- }
- engines: { node: ">=6.9.0" }
- dev: true
- /@babel/core@7.23.5:
- resolution:
- {
- integrity: sha512-Cwc2XjUrG4ilcfOw4wBAK+enbdgwAcAJCfGUItPBKR7Mjw4aEfAFYrLxeRp4jWgtNIKn3n2AlBOfwwafl+42/g==,
- }
- engines: { node: ">=6.9.0" }
- dependencies:
- "@ampproject/remapping": 2.2.1
- "@babel/code-frame": 7.23.5
- "@babel/generator": 7.23.5
- "@babel/helper-compilation-targets": 7.22.15
- "@babel/helper-module-transforms": 7.23.3(@babel/core@7.23.5)
- "@babel/helpers": 7.23.5
- "@babel/parser": 7.23.5
- "@babel/template": 7.22.15
- "@babel/traverse": 7.23.5
- "@babel/types": 7.23.5
- convert-source-map: 2.0.0
- debug: 4.3.4
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@babel/generator@7.23.5:
- resolution:
- {
- integrity: sha512-BPssCHrBD+0YrxviOa3QzpqwhNIXKEtOa2jQrm4FlmkC2apYgRnQcmPWiGZDlGxiNtltnUFolMe8497Esry+jA==,
- }
- engines: { node: ">=6.9.0" }
- dependencies:
- "@babel/types": 7.23.5
- "@jridgewell/gen-mapping": 0.3.3
- "@jridgewell/trace-mapping": 0.3.20
- jsesc: 2.5.2
- dev: true
- /@babel/helper-compilation-targets@7.22.15:
- resolution:
- {
- integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==,
- }
- engines: { node: ">=6.9.0" }
- dependencies:
- "@babel/compat-data": 7.23.5
- "@babel/helper-validator-option": 7.23.5
- browserslist: 4.22.1
- lru-cache: 5.1.1
- semver: 6.3.1
- dev: true
- /@babel/helper-environment-visitor@7.22.20:
- resolution:
- {
- integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==,
- }
- engines: { node: ">=6.9.0" }
- dev: true
- /@babel/helper-function-name@7.23.0:
- resolution:
- {
- integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==,
- }
- engines: { node: ">=6.9.0" }
- dependencies:
- "@babel/template": 7.22.15
- "@babel/types": 7.23.5
- dev: true
- /@babel/helper-hoist-variables@7.22.5:
- resolution:
- {
- integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==,
- }
- engines: { node: ">=6.9.0" }
- dependencies:
- "@babel/types": 7.23.5
- dev: true
- /@babel/helper-module-imports@7.22.15:
- resolution:
- {
- integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==,
- }
- engines: { node: ">=6.9.0" }
- dependencies:
- "@babel/types": 7.23.5
- /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.5):
- resolution:
- {
- integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0
- dependencies:
- "@babel/core": 7.23.5
- "@babel/helper-environment-visitor": 7.22.20
- "@babel/helper-module-imports": 7.22.15
- "@babel/helper-simple-access": 7.22.5
- "@babel/helper-split-export-declaration": 7.22.6
- "@babel/helper-validator-identifier": 7.22.20
- dev: true
- /@babel/helper-plugin-utils@7.22.5:
- resolution:
- {
- integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==,
- }
- engines: { node: ">=6.9.0" }
- dev: true
- /@babel/helper-simple-access@7.22.5:
- resolution:
- {
- integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==,
- }
- engines: { node: ">=6.9.0" }
- dependencies:
- "@babel/types": 7.23.5
- dev: true
- /@babel/helper-split-export-declaration@7.22.6:
- resolution:
- {
- integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==,
- }
- engines: { node: ">=6.9.0" }
- dependencies:
- "@babel/types": 7.23.5
- dev: true
- /@babel/helper-string-parser@7.23.4:
- resolution:
- {
- integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==,
- }
- engines: { node: ">=6.9.0" }
- /@babel/helper-validator-identifier@7.22.20:
- resolution:
- {
- integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==,
- }
- engines: { node: ">=6.9.0" }
- /@babel/helper-validator-option@7.23.5:
- resolution:
- {
- integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==,
- }
- engines: { node: ">=6.9.0" }
- dev: true
- /@babel/helpers@7.23.5:
- resolution:
- {
- integrity: sha512-oO7us8FzTEsG3U6ag9MfdF1iA/7Z6dz+MtFhifZk8C8o453rGJFFWUP1t+ULM9TUIAzC9uxXEiXjOiVMyd7QPg==,
- }
- engines: { node: ">=6.9.0" }
- dependencies:
- "@babel/template": 7.22.15
- "@babel/traverse": 7.23.5
- "@babel/types": 7.23.5
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@babel/highlight@7.23.4:
- resolution:
- {
- integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==,
- }
- engines: { node: ">=6.9.0" }
- dependencies:
- "@babel/helper-validator-identifier": 7.22.20
- chalk: 2.4.2
- js-tokens: 4.0.0
- /@babel/parser@7.23.5:
- resolution:
- {
- integrity: sha512-hOOqoiNXrmGdFbhgCzu6GiURxUgM27Xwd/aPuu8RfHEZPBzL1Z54okAHAQjXfcQNwvrlkAmAp4SlRTZ45vlthQ==,
- }
- engines: { node: ">=6.0.0" }
- hasBin: true
- dependencies:
- "@babel/types": 7.23.5
- dev: true
- /@babel/plugin-transform-react-jsx-self@7.23.3(@babel/core@7.23.5):
- resolution:
- {
- integrity: sha512-qXRvbeKDSfwnlJnanVRp0SfuWE5DQhwQr5xtLBzp56Wabyo+4CMosF6Kfp+eOD/4FYpql64XVJ2W0pVLlJZxOQ==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
- dependencies:
- "@babel/core": 7.23.5
- "@babel/helper-plugin-utils": 7.22.5
- dev: true
- /@babel/plugin-transform-react-jsx-source@7.23.3(@babel/core@7.23.5):
- resolution:
- {
- integrity: sha512-91RS0MDnAWDNvGC6Wio5XYkyWI39FMFO+JK9+4AlgaTH+yWwVTsw7/sn6LK0lH7c5F+TFkpv/3LfCJ1Ydwof/g==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
- dependencies:
- "@babel/core": 7.23.5
- "@babel/helper-plugin-utils": 7.22.5
- dev: true
- /@babel/runtime@7.23.5:
- resolution:
- {
- integrity: sha512-NdUTHcPe4C99WxPub+K9l9tK5/lV4UXIoaHSYgzco9BCyjKAAwzdBI+wWtYqHt7LJdbo74ZjRPJgzVweq1sz0w==,
- }
- engines: { node: ">=6.9.0" }
- dependencies:
- regenerator-runtime: 0.14.0
- dev: false
- /@babel/template@7.22.15:
- resolution:
- {
- integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==,
- }
- engines: { node: ">=6.9.0" }
- dependencies:
- "@babel/code-frame": 7.23.5
- "@babel/parser": 7.23.5
- "@babel/types": 7.23.5
- dev: true
- /@babel/traverse@7.23.5:
- resolution:
- {
- integrity: sha512-czx7Xy5a6sapWWRx61m1Ke1Ra4vczu1mCTtJam5zRTBOonfdJ+S/B6HYmGYu3fJtr8GGET3si6IhgWVBhJ/m8w==,
- }
- engines: { node: ">=6.9.0" }
- dependencies:
- "@babel/code-frame": 7.23.5
- "@babel/generator": 7.23.5
- "@babel/helper-environment-visitor": 7.22.20
- "@babel/helper-function-name": 7.23.0
- "@babel/helper-hoist-variables": 7.22.5
- "@babel/helper-split-export-declaration": 7.22.6
- "@babel/parser": 7.23.5
- "@babel/types": 7.23.5
- debug: 4.3.4
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@babel/types@7.23.5:
- resolution:
- {
- integrity: sha512-ON5kSOJwVO6xXVRTvOI0eOnWe7VdUcIpsovGo9U/Br4Ie4UVFQTboO2cYnDhAGU6Fp+UxSiT+pMft0SMHfuq6w==,
- }
- engines: { node: ">=6.9.0" }
- dependencies:
- "@babel/helper-string-parser": 7.23.4
- "@babel/helper-validator-identifier": 7.22.20
- to-fast-properties: 2.0.0
- /@dnd-kit/accessibility@3.1.0(react@18.2.0):
- resolution:
- {
- integrity: sha512-ea7IkhKvlJUv9iSHJOnxinBcoOI3ppGnnL+VDJ75O45Nss6HtZd8IdN8touXPDtASfeI2T2LImb8VOZcL47wjQ==,
- }
- peerDependencies:
- react: ">=16.8.0"
- dependencies:
- react: 18.2.0
- tslib: 2.6.2
- dev: false
- /@dnd-kit/core@6.1.0(react-dom@18.2.0)(react@18.2.0):
- resolution:
- {
- integrity: sha512-J3cQBClB4TVxwGo3KEjssGEXNJqGVWx17aRTZ1ob0FliR5IjYgTxl5YJbKTzA6IzrtelotH19v6y7uoIRUZPSg==,
- }
- peerDependencies:
- react: ">=16.8.0"
- react-dom: ">=16.8.0"
- dependencies:
- "@dnd-kit/accessibility": 3.1.0(react@18.2.0)
- "@dnd-kit/utilities": 3.2.2(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- tslib: 2.6.2
- dev: false
- /@dnd-kit/sortable@8.0.0(@dnd-kit/core@6.1.0)(react@18.2.0):
- resolution:
- {
- integrity: sha512-U3jk5ebVXe1Lr7c2wU7SBZjcWdQP+j7peHJfCspnA81enlu88Mgd7CC8Q+pub9ubP7eKVETzJW+IBAhsqbSu/g==,
- }
- peerDependencies:
- "@dnd-kit/core": ^6.1.0
- react: ">=16.8.0"
- dependencies:
- "@dnd-kit/core": 6.1.0(react-dom@18.2.0)(react@18.2.0)
- "@dnd-kit/utilities": 3.2.2(react@18.2.0)
- react: 18.2.0
- tslib: 2.6.2
- dev: false
- /@dnd-kit/utilities@3.2.2(react@18.2.0):
- resolution:
- {
- integrity: sha512-+MKAJEOfaBe5SmV6t34p80MMKhjvUz0vRrvVJbPT0WElzaOJ/1xs+D+KDv+tD/NE5ujfrChEcshd4fLn0wpiqg==,
- }
- peerDependencies:
- react: ">=16.8.0"
- dependencies:
- react: 18.2.0
- tslib: 2.6.2
- dev: false
- /@emotion/babel-plugin@11.11.0:
- resolution:
- {
- integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==,
- }
- dependencies:
- "@babel/helper-module-imports": 7.22.15
- "@babel/runtime": 7.23.5
- "@emotion/hash": 0.9.1
- "@emotion/memoize": 0.8.1
- "@emotion/serialize": 1.1.2
- babel-plugin-macros: 3.1.0
- convert-source-map: 1.9.0
- escape-string-regexp: 4.0.0
- find-root: 1.1.0
- source-map: 0.5.7
- stylis: 4.2.0
- dev: false
- /@emotion/cache@11.11.0:
- resolution:
- {
- integrity: sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==,
- }
- dependencies:
- "@emotion/memoize": 0.8.1
- "@emotion/sheet": 1.2.2
- "@emotion/utils": 1.2.1
- "@emotion/weak-memoize": 0.3.1
- stylis: 4.2.0
- dev: false
- /@emotion/hash@0.9.1:
- resolution:
- {
- integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==,
- }
- dev: false
- /@emotion/is-prop-valid@1.2.1:
- resolution:
- {
- integrity: sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==,
- }
- dependencies:
- "@emotion/memoize": 0.8.1
- dev: false
- /@emotion/memoize@0.8.1:
- resolution:
- {
- integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==,
- }
- dev: false
- /@emotion/react@11.11.1(@types/react@18.2.39)(react@18.2.0):
- resolution:
- {
- integrity: sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA==,
- }
- peerDependencies:
- "@types/react": "*"
- react: ">=16.8.0"
- peerDependenciesMeta:
- "@types/react":
- optional: true
- dependencies:
- "@babel/runtime": 7.23.5
- "@emotion/babel-plugin": 11.11.0
- "@emotion/cache": 11.11.0
- "@emotion/serialize": 1.1.2
- "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.2.0)
- "@emotion/utils": 1.2.1
- "@emotion/weak-memoize": 0.3.1
- "@types/react": 18.2.39
- hoist-non-react-statics: 3.3.2
- react: 18.2.0
- dev: false
- /@emotion/serialize@1.1.2:
- resolution:
- {
- integrity: sha512-zR6a/fkFP4EAcCMQtLOhIgpprZOwNmCldtpaISpvz348+DP4Mz8ZoKaGGCQpbzepNIUWbq4w6hNZkwDyKoS+HA==,
- }
- dependencies:
- "@emotion/hash": 0.9.1
- "@emotion/memoize": 0.8.1
- "@emotion/unitless": 0.8.1
- "@emotion/utils": 1.2.1
- csstype: 3.1.2
- dev: false
- /@emotion/sheet@1.2.2:
- resolution:
- {
- integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==,
- }
- dev: false
- /@emotion/styled@11.11.0(@emotion/react@11.11.1)(@types/react@18.2.39)(react@18.2.0):
- resolution:
- {
- integrity: sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng==,
- }
- peerDependencies:
- "@emotion/react": ^11.0.0-rc.0
- "@types/react": "*"
- react: ">=16.8.0"
- peerDependenciesMeta:
- "@types/react":
- optional: true
- dependencies:
- "@babel/runtime": 7.23.5
- "@emotion/babel-plugin": 11.11.0
- "@emotion/is-prop-valid": 1.2.1
- "@emotion/react": 11.11.1(@types/react@18.2.39)(react@18.2.0)
- "@emotion/serialize": 1.1.2
- "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.2.0)
- "@emotion/utils": 1.2.1
- "@types/react": 18.2.39
- react: 18.2.0
- dev: false
- /@emotion/unitless@0.8.1:
- resolution:
- {
- integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==,
- }
- dev: false
- /@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.2.0):
- resolution:
- {
- integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==,
- }
- peerDependencies:
- react: ">=16.8.0"
- dependencies:
- react: 18.2.0
- dev: false
- /@emotion/utils@1.2.1:
- resolution:
- {
- integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==,
- }
- dev: false
- /@emotion/weak-memoize@0.3.1:
- resolution:
- {
- integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==,
- }
- dev: false
- /@esbuild/android-arm64@0.18.20:
- resolution:
- {
- integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==,
- }
- engines: { node: ">=12" }
- cpu: [arm64]
- os: [android]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/android-arm@0.18.20:
- resolution:
- {
- integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==,
- }
- engines: { node: ">=12" }
- cpu: [arm]
- os: [android]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/android-x64@0.18.20:
- resolution:
- {
- integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==,
- }
- engines: { node: ">=12" }
- cpu: [x64]
- os: [android]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/darwin-arm64@0.18.20:
- resolution:
- {
- integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==,
- }
- engines: { node: ">=12" }
- cpu: [arm64]
- os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/darwin-x64@0.18.20:
- resolution:
- {
- integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==,
- }
- engines: { node: ">=12" }
- cpu: [x64]
- os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/freebsd-arm64@0.18.20:
- resolution:
- {
- integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==,
- }
- engines: { node: ">=12" }
- cpu: [arm64]
- os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/freebsd-x64@0.18.20:
- resolution:
- {
- integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==,
- }
- engines: { node: ">=12" }
- cpu: [x64]
- os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/linux-arm64@0.18.20:
- resolution:
- {
- integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==,
- }
- engines: { node: ">=12" }
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/linux-arm@0.18.20:
- resolution:
- {
- integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==,
- }
- engines: { node: ">=12" }
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/linux-ia32@0.18.20:
- resolution:
- {
- integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==,
- }
- engines: { node: ">=12" }
- cpu: [ia32]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/linux-loong64@0.18.20:
- resolution:
- {
- integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==,
- }
- engines: { node: ">=12" }
- cpu: [loong64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/linux-mips64el@0.18.20:
- resolution:
- {
- integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==,
- }
- engines: { node: ">=12" }
- cpu: [mips64el]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/linux-ppc64@0.18.20:
- resolution:
- {
- integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==,
- }
- engines: { node: ">=12" }
- cpu: [ppc64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/linux-riscv64@0.18.20:
- resolution:
- {
- integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==,
- }
- engines: { node: ">=12" }
- cpu: [riscv64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/linux-s390x@0.18.20:
- resolution:
- {
- integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==,
- }
- engines: { node: ">=12" }
- cpu: [s390x]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/linux-x64@0.18.20:
- resolution:
- {
- integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==,
- }
- engines: { node: ">=12" }
- cpu: [x64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/netbsd-x64@0.18.20:
- resolution:
- {
- integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==,
- }
- engines: { node: ">=12" }
- cpu: [x64]
- os: [netbsd]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/openbsd-x64@0.18.20:
- resolution:
- {
- integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==,
- }
- engines: { node: ">=12" }
- cpu: [x64]
- os: [openbsd]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/sunos-x64@0.18.20:
- resolution:
- {
- integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==,
- }
- engines: { node: ">=12" }
- cpu: [x64]
- os: [sunos]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/win32-arm64@0.18.20:
- resolution:
- {
- integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==,
- }
- engines: { node: ">=12" }
- cpu: [arm64]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/win32-ia32@0.18.20:
- resolution:
- {
- integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==,
- }
- engines: { node: ">=12" }
- cpu: [ia32]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/win32-x64@0.18.20:
- resolution:
- {
- integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==,
- }
- engines: { node: ">=12" }
- cpu: [x64]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- /@fastify/busboy@2.1.0:
- resolution:
- {
- integrity: sha512-+KpH+QxZU7O4675t3mnkQKcZZg56u+K/Ct2K+N2AZYNVK8kyeo/bI18tI8aPm3tvNNRyTWfj6s5tnGNlcbQRsA==,
- }
- engines: { node: ">=14" }
- dev: true
- /@floating-ui/core@1.5.1:
- resolution:
- {
- integrity: sha512-QgcKYwzcc8vvZ4n/5uklchy8KVdjJwcOeI+HnnTNclJjs2nYsy23DOCf+sSV1kBwD9yDAoVKCkv/gEPzgQU3Pw==,
- }
- dependencies:
- "@floating-ui/utils": 0.1.6
- dev: false
- /@floating-ui/dom@1.5.3:
- resolution:
- {
- integrity: sha512-ClAbQnEqJAKCJOEbbLo5IUlZHkNszqhuxS4fHAVxRPXPya6Ysf2G8KypnYcOTpx6I8xcgF9bbHb6g/2KpbV8qA==,
- }
- dependencies:
- "@floating-ui/core": 1.5.1
- "@floating-ui/utils": 0.1.6
- dev: false
- /@floating-ui/react-dom@2.0.4(react-dom@18.2.0)(react@18.2.0):
- resolution:
- {
- integrity: sha512-CF8k2rgKeh/49UrnIBs4BdxPUV6vize/Db1d/YbCLyp9GiVZ0BEwf5AiDSxJRCr6yOkGqTFHtmrULxkEfYZ7dQ==,
- }
- peerDependencies:
- react: ">=16.8.0"
- react-dom: ">=16.8.0"
- dependencies:
- "@floating-ui/dom": 1.5.3
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- dev: false
- /@floating-ui/utils@0.1.6:
- resolution:
- {
- integrity: sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A==,
- }
- dev: false
- /@jridgewell/gen-mapping@0.3.3:
- resolution:
- {
- integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==,
- }
- engines: { node: ">=6.0.0" }
- dependencies:
- "@jridgewell/set-array": 1.1.2
- "@jridgewell/sourcemap-codec": 1.4.15
- "@jridgewell/trace-mapping": 0.3.20
- dev: true
- /@jridgewell/resolve-uri@3.1.1:
- resolution:
- {
- integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==,
- }
- engines: { node: ">=6.0.0" }
- dev: true
- /@jridgewell/set-array@1.1.2:
- resolution:
- {
- integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==,
- }
- engines: { node: ">=6.0.0" }
- dev: true
- /@jridgewell/sourcemap-codec@1.4.15:
- resolution:
- {
- integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==,
- }
- dev: true
- /@jridgewell/trace-mapping@0.3.20:
- resolution:
- {
- integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==,
- }
- dependencies:
- "@jridgewell/resolve-uri": 3.1.1
- "@jridgewell/sourcemap-codec": 1.4.15
- dev: true
- /@juggle/resize-observer@3.4.0:
- resolution:
- {
- integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==,
- }
- dev: false
- /@mui/base@5.0.0-beta.20(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0):
- resolution:
- {
- integrity: sha512-CS2pUuqxST7ch9VNDCklRYDbJ3rru20Tx7na92QvVVKfu3RL4z/QLuVIc8jYGsdCnauMaeUSlFNLAJNb0yXe6w==,
- }
- engines: { node: ">=12.0.0" }
- peerDependencies:
- "@types/react": ^17.0.0 || ^18.0.0
- react: ^17.0.0 || ^18.0.0
- react-dom: ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- "@types/react":
- optional: true
- dependencies:
- "@babel/runtime": 7.23.5
- "@floating-ui/react-dom": 2.0.4(react-dom@18.2.0)(react@18.2.0)
- "@mui/types": 7.2.10(@types/react@18.2.39)
- "@mui/utils": 5.14.19(@types/react@18.2.39)(react@18.2.0)
- "@popperjs/core": 2.11.8
- "@types/react": 18.2.39
- clsx: 2.0.0
- prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- dev: false
- /@mui/base@5.0.0-beta.25(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0):
- resolution:
- {
- integrity: sha512-Iiv+IcappRRv6IBlknIVmLkXxfp51NEX1+l9f+dIbBuPU4PaRULegr1lCeHKsC45KU5ruxM5xMg4R/de03aJQg==,
- }
- engines: { node: ">=12.0.0" }
- peerDependencies:
- "@types/react": ^17.0.0 || ^18.0.0
- react: ^17.0.0 || ^18.0.0
- react-dom: ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- "@types/react":
- optional: true
- dependencies:
- "@babel/runtime": 7.23.5
- "@floating-ui/react-dom": 2.0.4(react-dom@18.2.0)(react@18.2.0)
- "@mui/types": 7.2.10(@types/react@18.2.39)
- "@mui/utils": 5.14.19(@types/react@18.2.39)(react@18.2.0)
- "@popperjs/core": 2.11.8
- "@types/react": 18.2.39
- clsx: 2.0.0
- prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- dev: false
- /@mui/core-downloads-tracker@5.14.19:
- resolution:
- {
- integrity: sha512-y4JseIen5pmZs1n9hHy95HKKioKco8f6N2lford2AmjJigVJOv0KsU0qryiCpyuEUZmi/xCduVilHsK9DSkPcA==,
- }
- dev: false
- /@mui/icons-material@5.14.19(@mui/material@5.14.19)(@types/react@18.2.39)(react@18.2.0):
- resolution:
- {
- integrity: sha512-yjP8nluXxZGe3Y7pS+yxBV+hWZSsSBampCxkZwaw+1l+feL+rfP74vbEFbMrX/Kil9I/Y1tWfy5bs/eNvwNpWw==,
- }
- engines: { node: ">=12.0.0" }
- peerDependencies:
- "@mui/material": ^5.0.0
- "@types/react": ^17.0.0 || ^18.0.0
- react: ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- "@types/react":
- optional: true
- dependencies:
- "@babel/runtime": 7.23.5
- "@mui/material": 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0)
- "@types/react": 18.2.39
- react: 18.2.0
- dev: false
- /@mui/lab@5.0.0-alpha.149(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/material@5.14.19)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0):
- resolution:
- {
- integrity: sha512-azOkKcyVX4KBZAqSp7eRD4OfKrUrvQXo7x2BjFJil+UeAJiMpB6I5lALo2PDZz3vjtJnHqlURnZtxZOHs1zfEA==,
- }
- engines: { node: ">=12.0.0" }
- peerDependencies:
- "@emotion/react": ^11.5.0
- "@emotion/styled": ^11.3.0
- "@mui/material": ^5.0.0
- "@types/react": ^17.0.0 || ^18.0.0
- react: ^17.0.0 || ^18.0.0
- react-dom: ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- "@emotion/react":
- optional: true
- "@emotion/styled":
- optional: true
- "@types/react":
- optional: true
- dependencies:
- "@babel/runtime": 7.23.5
- "@emotion/react": 11.11.1(@types/react@18.2.39)(react@18.2.0)
- "@emotion/styled": 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.39)(react@18.2.0)
- "@mui/base": 5.0.0-beta.20(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0)
- "@mui/material": 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0)
- "@mui/system": 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.39)(react@18.2.0)
- "@mui/types": 7.2.10(@types/react@18.2.39)
- "@mui/utils": 5.14.19(@types/react@18.2.39)(react@18.2.0)
- "@mui/x-tree-view": 6.0.0-alpha.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/base@5.0.0-beta.20)(@mui/material@5.14.19)(@mui/system@5.14.19)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0)
- "@types/react": 18.2.39
- clsx: 2.0.0
- prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- dev: false
- /@mui/material@5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0):
- resolution:
- {
- integrity: sha512-jSPLXst/YPgDGolhiu4rbethKjLVrI1IkoK8YrFUv8ygxDuhQdsE6+ZqjSSRXk3ytTMf6ghPnQ88OFRk4XjpNw==,
- }
- engines: { node: ">=12.0.0" }
- peerDependencies:
- "@emotion/react": ^11.5.0
- "@emotion/styled": ^11.3.0
- "@types/react": ^17.0.0 || ^18.0.0
- react: ^17.0.0 || ^18.0.0
- react-dom: ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- "@emotion/react":
- optional: true
- "@emotion/styled":
- optional: true
- "@types/react":
- optional: true
- dependencies:
- "@babel/runtime": 7.23.5
- "@emotion/react": 11.11.1(@types/react@18.2.39)(react@18.2.0)
- "@emotion/styled": 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.39)(react@18.2.0)
- "@mui/base": 5.0.0-beta.25(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0)
- "@mui/core-downloads-tracker": 5.14.19
- "@mui/system": 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.39)(react@18.2.0)
- "@mui/types": 7.2.10(@types/react@18.2.39)
- "@mui/utils": 5.14.19(@types/react@18.2.39)(react@18.2.0)
- "@types/react": 18.2.39
- "@types/react-transition-group": 4.4.9
- clsx: 2.0.0
- csstype: 3.1.2
- prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- react-is: 18.2.0
- react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0)
- dev: false
- /@mui/private-theming@5.14.19(@types/react@18.2.39)(react@18.2.0):
- resolution:
- {
- integrity: sha512-U9w39VpXLGVM8wZlUU/47YGTsBSk60ZQRRxQZtdqPfN1N7OVllQeN4cEKZKR8PjqqR3aYRcSciQ4dc6CttRoXQ==,
- }
- engines: { node: ">=12.0.0" }
- peerDependencies:
- "@types/react": ^17.0.0 || ^18.0.0
- react: ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- "@types/react":
- optional: true
- dependencies:
- "@babel/runtime": 7.23.5
- "@mui/utils": 5.14.19(@types/react@18.2.39)(react@18.2.0)
- "@types/react": 18.2.39
- prop-types: 15.8.1
- react: 18.2.0
- dev: false
- /@mui/styled-engine@5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0):
- resolution:
- {
- integrity: sha512-jtj/Pyn/bS8PM7NXdFNTHWZfE3p+vItO4/HoQbUeAv3u+cnWXcTBGHHY/xdIn446lYGFDczTh1YyX8G4Ts0Rtg==,
- }
- engines: { node: ">=12.0.0" }
- peerDependencies:
- "@emotion/react": ^11.4.1
- "@emotion/styled": ^11.3.0
- react: ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- "@emotion/react":
- optional: true
- "@emotion/styled":
- optional: true
- dependencies:
- "@babel/runtime": 7.23.5
- "@emotion/cache": 11.11.0
- "@emotion/react": 11.11.1(@types/react@18.2.39)(react@18.2.0)
- "@emotion/styled": 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.39)(react@18.2.0)
- csstype: 3.1.2
- prop-types: 15.8.1
- react: 18.2.0
- dev: false
- /@mui/system@5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.39)(react@18.2.0):
- resolution:
- {
- integrity: sha512-4e3Q+2nx+vgEsd0h5ftxlZGB7XtkkPos/zWqCqnxUs1l/T70s0lF2YNrWHHdSQ7LgtBu0eQ0qweZG2pR7KwkAw==,
- }
- engines: { node: ">=12.0.0" }
- peerDependencies:
- "@emotion/react": ^11.5.0
- "@emotion/styled": ^11.3.0
- "@types/react": ^17.0.0 || ^18.0.0
- react: ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- "@emotion/react":
- optional: true
- "@emotion/styled":
- optional: true
- "@types/react":
- optional: true
- dependencies:
- "@babel/runtime": 7.23.5
- "@emotion/react": 11.11.1(@types/react@18.2.39)(react@18.2.0)
- "@emotion/styled": 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.39)(react@18.2.0)
- "@mui/private-theming": 5.14.19(@types/react@18.2.39)(react@18.2.0)
- "@mui/styled-engine": 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
- "@mui/types": 7.2.10(@types/react@18.2.39)
- "@mui/utils": 5.14.19(@types/react@18.2.39)(react@18.2.0)
- "@types/react": 18.2.39
- clsx: 2.0.0
- csstype: 3.1.2
- prop-types: 15.8.1
- react: 18.2.0
- dev: false
- /@mui/types@7.2.10(@types/react@18.2.39):
- resolution:
- {
- integrity: sha512-wX1vbDC+lzF7FlhT6A3ffRZgEoKWPF8VqRoTu4lZwouFX2t90KyCMsgepMw5DxLak1BSp/KP86CmtZttikb/gQ==,
- }
- peerDependencies:
- "@types/react": ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- "@types/react":
- optional: true
- dependencies:
- "@types/react": 18.2.39
- dev: false
- /@mui/utils@5.14.19(@types/react@18.2.39)(react@18.2.0):
- resolution:
- {
- integrity: sha512-qAHvTXzk7basbyqPvhgWqN6JbmI2wLB/mf97GkSlz5c76MiKYV6Ffjvw9BjKZQ1YRb8rDX9kgdjRezOcoB91oQ==,
- }
- engines: { node: ">=12.0.0" }
- peerDependencies:
- "@types/react": ^17.0.0 || ^18.0.0
- react: ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- "@types/react":
- optional: true
- dependencies:
- "@babel/runtime": 7.23.5
- "@types/prop-types": 15.7.11
- "@types/react": 18.2.39
- prop-types: 15.8.1
- react: 18.2.0
- react-is: 18.2.0
- dev: false
- /@mui/x-data-grid@6.18.2(@mui/material@5.14.19)(@mui/system@5.14.19)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0):
- resolution:
- {
- integrity: sha512-XsVX8OCcYRbSoDVfjoX6gi+KfBitTkUvlMZnI/YkWOyms+pEValJQousvwjhGN1coWp15Yoz9YTGmSGCBxo2HA==,
- }
- engines: { node: ">=14.0.0" }
- peerDependencies:
- "@mui/material": ^5.4.1
- "@mui/system": ^5.4.1
- react: ^17.0.0 || ^18.0.0
- react-dom: ^17.0.0 || ^18.0.0
- dependencies:
- "@babel/runtime": 7.23.5
- "@mui/material": 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0)
- "@mui/system": 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.39)(react@18.2.0)
- "@mui/utils": 5.14.19(@types/react@18.2.39)(react@18.2.0)
- clsx: 2.0.0
- prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- reselect: 4.1.8
- transitivePeerDependencies:
- - "@types/react"
- dev: false
- /@mui/x-tree-view@6.0.0-alpha.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/base@5.0.0-beta.20)(@mui/material@5.14.19)(@mui/system@5.14.19)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0):
- resolution:
- {
- integrity: sha512-JUG3HmBrmGEALbCFg1b+i7h726e1dWYZs4db3syO1j+Q++E3nbvE4Lehp5yGTFm+8esH0Tny50tuJaa4WX6VSA==,
- }
- engines: { node: ">=14.0.0" }
- peerDependencies:
- "@emotion/react": ^11.9.0
- "@emotion/styled": ^11.8.1
- "@mui/base": ^5.0.0-alpha.87
- "@mui/material": ^5.8.6
- "@mui/system": ^5.8.0
- react: ^17.0.0 || ^18.0.0
- react-dom: ^17.0.0 || ^18.0.0
- dependencies:
- "@babel/runtime": 7.23.5
- "@emotion/react": 11.11.1(@types/react@18.2.39)(react@18.2.0)
- "@emotion/styled": 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.39)(react@18.2.0)
- "@mui/base": 5.0.0-beta.20(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0)
- "@mui/material": 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0)
- "@mui/system": 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.39)(react@18.2.0)
- "@mui/utils": 5.14.19(@types/react@18.2.39)(react@18.2.0)
- "@types/react-transition-group": 4.4.9
- clsx: 2.0.0
- prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0)
- transitivePeerDependencies:
- - "@types/react"
- dev: false
- /@octokit/auth-token@2.5.0:
- resolution:
- {
- integrity: sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==,
- }
- dependencies:
- "@octokit/types": 6.41.0
- dev: true
- /@octokit/core@3.6.0:
- resolution:
- {
- integrity: sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q==,
- }
- dependencies:
- "@octokit/auth-token": 2.5.0
- "@octokit/graphql": 4.8.0
- "@octokit/request": 5.6.3
- "@octokit/request-error": 2.1.0
- "@octokit/types": 6.41.0
- before-after-hook: 2.2.3
- universal-user-agent: 6.0.1
- transitivePeerDependencies:
- - encoding
- dev: true
- /@octokit/endpoint@6.0.12:
- resolution:
- {
- integrity: sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==,
- }
- dependencies:
- "@octokit/types": 6.41.0
- is-plain-object: 5.0.0
- universal-user-agent: 6.0.1
- dev: true
- /@octokit/graphql@4.8.0:
- resolution:
- {
- integrity: sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==,
- }
- dependencies:
- "@octokit/request": 5.6.3
- "@octokit/types": 6.41.0
- universal-user-agent: 6.0.1
- transitivePeerDependencies:
- - encoding
- dev: true
- /@octokit/openapi-types@12.11.0:
- resolution:
- {
- integrity: sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==,
- }
- dev: true
- /@octokit/plugin-paginate-rest@2.21.3(@octokit/core@3.6.0):
- resolution:
- {
- integrity: sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw==,
- }
- peerDependencies:
- "@octokit/core": ">=2"
- dependencies:
- "@octokit/core": 3.6.0
- "@octokit/types": 6.41.0
- dev: true
- /@octokit/plugin-rest-endpoint-methods@5.16.2(@octokit/core@3.6.0):
- resolution:
- {
- integrity: sha512-8QFz29Fg5jDuTPXVtey05BLm7OB+M8fnvE64RNegzX7U+5NUXcOcnpTIK0YfSHBg8gYd0oxIq3IZTe9SfPZiRw==,
- }
- peerDependencies:
- "@octokit/core": ">=3"
- dependencies:
- "@octokit/core": 3.6.0
- "@octokit/types": 6.41.0
- deprecation: 2.3.1
- dev: true
- /@octokit/request-error@2.1.0:
- resolution:
- {
- integrity: sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==,
- }
- dependencies:
- "@octokit/types": 6.41.0
- deprecation: 2.3.1
- once: 1.4.0
- dev: true
- /@octokit/request@5.6.3:
- resolution:
- {
- integrity: sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==,
- }
- dependencies:
- "@octokit/endpoint": 6.0.12
- "@octokit/request-error": 2.1.0
- "@octokit/types": 6.41.0
- is-plain-object: 5.0.0
- node-fetch: 2.7.0
- universal-user-agent: 6.0.1
- transitivePeerDependencies:
- - encoding
- dev: true
- /@octokit/types@6.41.0:
- resolution:
- {
- integrity: sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==,
- }
- dependencies:
- "@octokit/openapi-types": 12.11.0
- dev: true
- /@popperjs/core@2.11.8:
- resolution:
- {
- integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==,
- }
- dev: false
- /@remix-run/router@1.13.0:
- resolution:
- {
- integrity: sha512-5dMOnVnefRsl4uRnAdoWjtVTdh8e6aZqgM4puy9nmEADH72ck+uXwzpJLEKE9Q6F8ZljNewLgmTfkxUrBdv4WA==,
- }
- engines: { node: ">=14.0.0" }
- dev: false
- /@rollup/pluginutils@5.1.0:
- resolution:
- {
- integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==,
- }
- engines: { node: ">=14.0.0" }
- peerDependencies:
- rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
- peerDependenciesMeta:
- rollup:
- optional: true
- dependencies:
- "@types/estree": 1.0.5
- estree-walker: 2.0.2
- picomatch: 2.3.1
- dev: true
- /@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.23.5):
- resolution:
- {
- integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==,
- }
- engines: { node: ">=14" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
- dependencies:
- "@babel/core": 7.23.5
- dev: true
- /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.23.5):
- resolution:
- {
- integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==,
- }
- engines: { node: ">=14" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
- dependencies:
- "@babel/core": 7.23.5
- dev: true
- /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.23.5):
- resolution:
- {
- integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==,
- }
- engines: { node: ">=14" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
- dependencies:
- "@babel/core": 7.23.5
- dev: true
- /@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.23.5):
- resolution:
- {
- integrity: sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==,
- }
- engines: { node: ">=14" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
- dependencies:
- "@babel/core": 7.23.5
- dev: true
- /@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.23.5):
- resolution:
- {
- integrity: sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==,
- }
- engines: { node: ">=14" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
- dependencies:
- "@babel/core": 7.23.5
- dev: true
- /@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.23.5):
- resolution:
- {
- integrity: sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==,
- }
- engines: { node: ">=14" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
- dependencies:
- "@babel/core": 7.23.5
- dev: true
- /@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.23.5):
- resolution:
- {
- integrity: sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==,
- }
- engines: { node: ">=14" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
- dependencies:
- "@babel/core": 7.23.5
- dev: true
- /@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.23.5):
- resolution:
- {
- integrity: sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==,
- }
- engines: { node: ">=12" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
- dependencies:
- "@babel/core": 7.23.5
- dev: true
- /@svgr/babel-preset@8.1.0(@babel/core@7.23.5):
- resolution:
- {
- integrity: sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==,
- }
- engines: { node: ">=14" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
- dependencies:
- "@babel/core": 7.23.5
- "@svgr/babel-plugin-add-jsx-attribute": 8.0.0(@babel/core@7.23.5)
- "@svgr/babel-plugin-remove-jsx-attribute": 8.0.0(@babel/core@7.23.5)
- "@svgr/babel-plugin-remove-jsx-empty-expression": 8.0.0(@babel/core@7.23.5)
- "@svgr/babel-plugin-replace-jsx-attribute-value": 8.0.0(@babel/core@7.23.5)
- "@svgr/babel-plugin-svg-dynamic-title": 8.0.0(@babel/core@7.23.5)
- "@svgr/babel-plugin-svg-em-dimensions": 8.0.0(@babel/core@7.23.5)
- "@svgr/babel-plugin-transform-react-native-svg": 8.1.0(@babel/core@7.23.5)
- "@svgr/babel-plugin-transform-svg-component": 8.0.0(@babel/core@7.23.5)
- dev: true
- /@svgr/core@8.1.0(typescript@5.3.2):
- resolution:
- {
- integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==,
- }
- engines: { node: ">=14" }
- dependencies:
- "@babel/core": 7.23.5
- "@svgr/babel-preset": 8.1.0(@babel/core@7.23.5)
- camelcase: 6.3.0
- cosmiconfig: 8.3.6(typescript@5.3.2)
- snake-case: 3.0.4
- transitivePeerDependencies:
- - supports-color
- - typescript
- dev: true
- /@svgr/hast-util-to-babel-ast@8.0.0:
- resolution:
- {
- integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==,
- }
- engines: { node: ">=14" }
- dependencies:
- "@babel/types": 7.23.5
- entities: 4.5.0
- dev: true
- /@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0):
- resolution:
- {
- integrity: sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==,
- }
- engines: { node: ">=14" }
- peerDependencies:
- "@svgr/core": "*"
- dependencies:
- "@babel/core": 7.23.5
- "@svgr/babel-preset": 8.1.0(@babel/core@7.23.5)
- "@svgr/core": 8.1.0(typescript@5.3.2)
- "@svgr/hast-util-to-babel-ast": 8.0.0
- svg-parser: 2.0.4
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@tauri-apps/api@1.5.1:
- resolution:
- {
- integrity: sha512-6unsZDOdlXTmauU3NhWhn+Cx0rODV+rvNvTdvolE5Kls5ybA6cqndQENDt1+FS0tF7ozCP66jwWoH6a5h90BrA==,
- }
- engines: { node: ">= 14.6.0", npm: ">= 6.6.0", yarn: ">= 1.19.1" }
- dev: false
- /@tauri-apps/cli-darwin-arm64@1.5.6:
- resolution:
- {
- integrity: sha512-NNvG3XLtciCMsBahbDNUEvq184VZmOveTGOuy0So2R33b/6FDkuWaSgWZsR1mISpOuP034htQYW0VITCLelfqg==,
- }
- engines: { node: ">= 10" }
- cpu: [arm64]
- os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
- /@tauri-apps/cli-darwin-x64@1.5.6:
- resolution:
- {
- integrity: sha512-nkiqmtUQw3N1j4WoVjv81q6zWuZFhBLya/RNGUL94oafORloOZoSY0uTZJAoeieb3Y1YK0rCHSDl02MyV2Fi4A==,
- }
- engines: { node: ">= 10" }
- cpu: [x64]
- os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
- /@tauri-apps/cli-linux-arm-gnueabihf@1.5.6:
- resolution:
- {
- integrity: sha512-z6SPx+axZexmWXTIVPNs4Tg7FtvdJl9EKxYN6JPjOmDZcqA13iyqWBQal2DA/GMZ1Xqo3vyJf6EoEaKaliymPQ==,
- }
- engines: { node: ">= 10" }
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@tauri-apps/cli-linux-arm64-gnu@1.5.6:
- resolution:
- {
- integrity: sha512-QuQjMQmpsCbzBrmtQiG4uhnfAbdFx3nzm+9LtqjuZlurc12+Mj5MTgqQ3AOwQedH3f7C+KlvbqD2AdXpwTg7VA==,
- }
- engines: { node: ">= 10" }
- cpu: [arm64]
- os: [linux]
- libc: [glibc]
- requiresBuild: true
- dev: true
- optional: true
- /@tauri-apps/cli-linux-arm64-musl@1.5.6:
- resolution:
- {
- integrity: sha512-8j5dH3odweFeom7bRGlfzDApWVOT4jIq8/214Wl+JeiNVehouIBo9lZGeghZBH3XKFRwEvU23i7sRVjuh2s8mg==,
- }
- engines: { node: ">= 10" }
- cpu: [arm64]
- os: [linux]
- libc: [musl]
- requiresBuild: true
- dev: true
- optional: true
- /@tauri-apps/cli-linux-x64-gnu@1.5.6:
- resolution:
- {
- integrity: sha512-gbFHYHfdEGW0ffk8SigDsoXks6USpilF6wR0nqB/JbWzbzFR/sBuLVNQlJl1RKNakyJHu+lsFxGy0fcTdoX8xA==,
- }
- engines: { node: ">= 10" }
- cpu: [x64]
- os: [linux]
- libc: [glibc]
- requiresBuild: true
- dev: true
- optional: true
- /@tauri-apps/cli-linux-x64-musl@1.5.6:
- resolution:
- {
- integrity: sha512-9v688ogoLkeFYQNgqiSErfhTreLUd8B3prIBSYUt+x4+5Kcw91zWvIh+VSxL1n3KCGGsM7cuXhkGPaxwlEh1ug==,
- }
- engines: { node: ">= 10" }
- cpu: [x64]
- os: [linux]
- libc: [musl]
- requiresBuild: true
- dev: true
- optional: true
- /@tauri-apps/cli-win32-arm64-msvc@1.5.6:
- resolution:
- {
- integrity: sha512-DRNDXFNZb6y5IZrw+lhTTA9l4wbzO4TNRBAlHAiXUrH+pRFZ/ZJtv5WEuAj9ocVSahVw2NaK5Yaold4NPAxHog==,
- }
- engines: { node: ">= 10" }
- cpu: [arm64]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- /@tauri-apps/cli-win32-ia32-msvc@1.5.6:
- resolution:
- {
- integrity: sha512-oUYKNR/IZjF4fsOzRpw0xesl2lOjhsQEyWlgbpT25T83EU113Xgck9UjtI7xemNI/OPCv1tPiaM1e7/ABdg5iA==,
- }
- engines: { node: ">= 10" }
- cpu: [ia32]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- /@tauri-apps/cli-win32-x64-msvc@1.5.6:
- resolution:
- {
- integrity: sha512-RmEf1os9C8//uq2hbjXi7Vgz9ne7798ZxqemAZdUwo1pv3oLVZSz1/IvZmUHPdy2e6zSeySqWu1D0Y3QRNN+dg==,
- }
- engines: { node: ">= 10" }
- cpu: [x64]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- /@tauri-apps/cli@1.5.6:
- resolution:
- {
- integrity: sha512-k4Y19oVCnt7WZb2TnDzLqfs7o98Jq0tUoVMv+JQSzuRDJqaVu2xMBZ8dYplEn+EccdR5SOMyzaLBJWu38TVK1A==,
- }
- engines: { node: ">= 10" }
- hasBin: true
- optionalDependencies:
- "@tauri-apps/cli-darwin-arm64": 1.5.6
- "@tauri-apps/cli-darwin-x64": 1.5.6
- "@tauri-apps/cli-linux-arm-gnueabihf": 1.5.6
- "@tauri-apps/cli-linux-arm64-gnu": 1.5.6
- "@tauri-apps/cli-linux-arm64-musl": 1.5.6
- "@tauri-apps/cli-linux-x64-gnu": 1.5.6
- "@tauri-apps/cli-linux-x64-musl": 1.5.6
- "@tauri-apps/cli-win32-arm64-msvc": 1.5.6
- "@tauri-apps/cli-win32-ia32-msvc": 1.5.6
- "@tauri-apps/cli-win32-x64-msvc": 1.5.6
- dev: true
- /@types/babel__core@7.20.5:
- resolution:
- {
- integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==,
- }
- dependencies:
- "@babel/parser": 7.23.5
- "@babel/types": 7.23.5
- "@types/babel__generator": 7.6.7
- "@types/babel__template": 7.4.4
- "@types/babel__traverse": 7.20.4
- dev: true
- /@types/babel__generator@7.6.7:
- resolution:
- {
- integrity: sha512-6Sfsq+EaaLrw4RmdFWE9Onp63TOUue71AWb4Gpa6JxzgTYtimbM086WnYTy2U67AofR++QKCo08ZP6pwx8YFHQ==,
- }
- dependencies:
- "@babel/types": 7.23.5
- dev: true
- /@types/babel__template@7.4.4:
- resolution:
- {
- integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==,
- }
- dependencies:
- "@babel/parser": 7.23.5
- "@babel/types": 7.23.5
- dev: true
- /@types/babel__traverse@7.20.4:
- resolution:
- {
- integrity: sha512-mSM/iKUk5fDDrEV/e83qY+Cr3I1+Q3qqTuEn++HAWYjEa1+NxZr6CNrcJGf2ZTnq4HoFGC3zaTPZTobCzCFukA==,
- }
- dependencies:
- "@babel/types": 7.23.5
- dev: true
- /@types/estree@1.0.5:
- resolution:
- {
- integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==,
- }
- dev: true
- /@types/fs-extra@9.0.13:
- resolution:
- {
- integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==,
- }
- dependencies:
- "@types/node": 20.10.1
- dev: true
- /@types/js-cookie@2.2.7:
- resolution:
- {
- integrity: sha512-aLkWa0C0vO5b4Sr798E26QgOkss68Un0bLjs7u9qxzPT5CG+8DuNTffWES58YzJs3hrVAOs1wonycqEBqNJubA==,
- }
- dev: false
- /@types/js-cookie@3.0.6:
- resolution:
- {
- integrity: sha512-wkw9yd1kEXOPnvEeEV1Go1MmxtBJL0RR79aOTAApecWFVu7w0NNXNqhcWgvw2YgZDYadliXkl14pa3WXw5jlCQ==,
- }
- dev: true
- /@types/lodash-es@4.17.12:
- resolution:
- {
- integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==,
- }
- dependencies:
- "@types/lodash": 4.14.202
- dev: true
- /@types/lodash@4.14.202:
- resolution:
- {
- integrity: sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==,
- }
- dev: true
- /@types/minimatch@3.0.5:
- resolution:
- {
- integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==,
- }
- dev: true
- /@types/node@20.10.1:
- resolution:
- {
- integrity: sha512-T2qwhjWwGH81vUEx4EXmBKsTJRXFXNZTL4v0gi01+zyBmCwzE6TyHszqX01m+QHTEq+EZNo13NeJIdEqf+Myrg==,
- }
- dependencies:
- undici-types: 5.26.5
- dev: true
- /@types/parse-json@4.0.2:
- resolution:
- {
- integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==,
- }
- dev: false
- /@types/prop-types@15.7.11:
- resolution:
- {
- integrity: sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==,
- }
- /@types/react-dom@18.2.17:
- resolution:
- {
- integrity: sha512-rvrT/M7Df5eykWFxn6MYt5Pem/Dbyc1N8Y0S9Mrkw2WFCRiqUgw9P7ul2NpwsXCSM1DVdENzdG9J5SreqfAIWg==,
- }
- dependencies:
- "@types/react": 18.2.39
- dev: true
- /@types/react-transition-group@4.4.9:
- resolution:
- {
- integrity: sha512-ZVNmWumUIh5NhH8aMD9CR2hdW0fNuYInlocZHaZ+dgk/1K49j1w/HoAuK1ki+pgscQrOFRTlXeoURtuzEkV3dg==,
- }
- dependencies:
- "@types/react": 18.2.39
- /@types/react@18.2.39:
- resolution:
- {
- integrity: sha512-Oiw+ppED6IremMInLV4HXGbfbG6GyziY3kqAwJYOR0PNbkYDmLWQA3a95EhdSmamsvbkJN96ZNN+YD+fGjzSBA==,
- }
- dependencies:
- "@types/prop-types": 15.7.11
- "@types/scheduler": 0.16.8
- csstype: 3.1.2
- /@types/scheduler@0.16.8:
- resolution:
- {
- integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==,
- }
- /@vitejs/plugin-react@4.2.0(vite@4.5.0):
- resolution:
- {
- integrity: sha512-+MHTH/e6H12kRp5HUkzOGqPMksezRMmW+TNzlh/QXfI8rRf6l2Z2yH/v12no1UvTwhZgEDMuQ7g7rrfMseU6FQ==,
- }
- engines: { node: ^14.18.0 || >=16.0.0 }
- peerDependencies:
- vite: ^4.2.0 || ^5.0.0
- dependencies:
- "@babel/core": 7.23.5
- "@babel/plugin-transform-react-jsx-self": 7.23.3(@babel/core@7.23.5)
- "@babel/plugin-transform-react-jsx-source": 7.23.3(@babel/core@7.23.5)
- "@types/babel__core": 7.20.5
- react-refresh: 0.14.0
- vite: 4.5.0(sass@1.69.5)
- transitivePeerDependencies:
- - supports-color
- dev: true
- /adm-zip@0.5.10:
- resolution:
- {
- integrity: sha512-x0HvcHqVJNTPk/Bw8JbLWlWoo6Wwnsug0fnYYro1HBrjxZ3G7/AZk7Ahv8JwDe1uIcz8eBqvu86FuF1POiG7vQ==,
- }
- engines: { node: ">=6.0" }
- dev: true
- /agent-base@6.0.2:
- resolution:
- {
- integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==,
- }
- engines: { node: ">= 6.0.0" }
- dependencies:
- debug: 4.3.4
- transitivePeerDependencies:
- - supports-color
- dev: true
- /ahooks-v3-count@1.0.0:
- resolution:
- {
- integrity: sha512-V7uUvAwnimu6eh/PED4mCDjE7tokeZQLKlxg9lCTMPhN+NjsSbtdacByVlR1oluXQzD3MOw55wylDmQo4+S9ZQ==,
- }
- dev: false
- /ahooks@3.7.8(react@18.2.0):
- resolution:
- {
- integrity: sha512-e/NMlQWoCjaUtncNFIZk3FG1ImSkV/JhScQSkTqnftakRwdfZWSw6zzoWSG9OMYqPNs2MguDYBUFFC6THelWXA==,
- }
- engines: { node: ">=8.0.0" }
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- dependencies:
- "@babel/runtime": 7.23.5
- "@types/js-cookie": 2.2.7
- ahooks-v3-count: 1.0.0
- dayjs: 1.11.5
- intersection-observer: 0.12.2
- js-cookie: 2.2.1
- lodash: 4.17.21
- react: 18.2.0
- resize-observer-polyfill: 1.5.1
- screenfull: 5.2.0
- tslib: 2.6.2
- dev: false
- /ansi-styles@3.2.1:
- resolution:
- {
- integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==,
- }
- engines: { node: ">=4" }
- dependencies:
- color-convert: 1.9.3
- /ansi-styles@4.3.0:
- resolution:
- {
- integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==,
- }
- engines: { node: ">=8" }
- dependencies:
- color-convert: 2.0.1
- dev: true
- /anymatch@3.1.3:
- resolution:
- {
- integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==,
- }
- engines: { node: ">= 8" }
- dependencies:
- normalize-path: 3.0.0
- picomatch: 2.3.1
- dev: true
- /argparse@2.0.1:
- resolution:
- {
- integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==,
- }
- dev: true
- /array-differ@3.0.0:
- resolution:
- {
- integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==,
- }
- engines: { node: ">=8" }
- dev: true
- /array-union@2.1.0:
- resolution:
- {
- integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==,
- }
- engines: { node: ">=8" }
- dev: true
- /arrify@2.0.1:
- resolution:
- {
- integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==,
- }
- engines: { node: ">=8" }
- dev: true
- /asynckit@0.4.0:
- resolution:
- {
- integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==,
- }
- dev: false
- /axios@1.6.2:
- resolution:
- {
- integrity: sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==,
- }
- dependencies:
- follow-redirects: 1.15.3
- form-data: 4.0.0
- proxy-from-env: 1.1.0
- transitivePeerDependencies:
- - debug
- dev: false
- /babel-plugin-macros@3.1.0:
- resolution:
- {
- integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==,
- }
- engines: { node: ">=10", npm: ">=6" }
- dependencies:
- "@babel/runtime": 7.23.5
- cosmiconfig: 7.1.0
- resolve: 1.22.8
- dev: false
- /balanced-match@1.0.2:
- resolution:
- {
- integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==,
- }
- dev: true
- /before-after-hook@2.2.3:
- resolution:
- {
- integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==,
- }
- dev: true
- /binary-extensions@2.2.0:
- resolution:
- {
- integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==,
- }
- engines: { node: ">=8" }
- dev: true
- /brace-expansion@1.1.11:
- resolution:
- {
- integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==,
- }
- dependencies:
- balanced-match: 1.0.2
- concat-map: 0.0.1
- dev: true
- /braces@3.0.2:
- resolution:
- {
- integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==,
- }
- engines: { node: ">=8" }
- dependencies:
- fill-range: 7.0.1
- dev: true
- /browserslist@4.22.1:
- resolution:
- {
- integrity: sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==,
- }
- engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 }
- hasBin: true
- dependencies:
- caniuse-lite: 1.0.30001565
- electron-to-chromium: 1.4.600
- node-releases: 2.0.14
- update-browserslist-db: 1.0.13(browserslist@4.22.1)
- dev: true
- /callsites@3.1.0:
- resolution:
- {
- integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==,
- }
- engines: { node: ">=6" }
- /camelcase@6.3.0:
- resolution:
- {
- integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==,
- }
- engines: { node: ">=10" }
- dev: true
- /caniuse-lite@1.0.30001565:
- resolution:
- {
- integrity: sha512-xrE//a3O7TP0vaJ8ikzkD2c2NgcVUvsEe2IvFTntV4Yd1Z9FVzh+gW+enX96L0psrbaFMcVcH2l90xNuGDWc8w==,
- }
- dev: true
- /chalk@2.4.2:
- resolution:
- {
- integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==,
- }
- engines: { node: ">=4" }
- dependencies:
- ansi-styles: 3.2.1
- escape-string-regexp: 1.0.5
- supports-color: 5.5.0
- /chalk@3.0.0:
- resolution:
- {
- integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==,
- }
- engines: { node: ">=8" }
- dependencies:
- ansi-styles: 4.3.0
- supports-color: 7.2.0
- dev: true
- /chokidar@3.5.3:
- resolution:
- {
- integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==,
- }
- engines: { node: ">= 8.10.0" }
- dependencies:
- anymatch: 3.1.3
- braces: 3.0.2
- glob-parent: 5.1.2
- is-binary-path: 2.1.0
- is-glob: 4.0.3
- normalize-path: 3.0.0
- readdirp: 3.6.0
- optionalDependencies:
- fsevents: 2.3.3
- dev: true
- /chownr@2.0.0:
- resolution:
- {
- integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==,
- }
- engines: { node: ">=10" }
- dev: false
- /clsx@2.0.0:
- resolution:
- {
- integrity: sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==,
- }
- engines: { node: ">=6" }
- dev: false
- /color-convert@1.9.3:
- resolution:
- {
- integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==,
- }
- dependencies:
- color-name: 1.1.3
- /color-convert@2.0.1:
- resolution:
- {
- integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==,
- }
- engines: { node: ">=7.0.0" }
- dependencies:
- color-name: 1.1.4
- dev: true
- /color-name@1.1.3:
- resolution:
- {
- integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==,
- }
- /color-name@1.1.4:
- resolution:
- {
- integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==,
- }
- dev: true
- /combined-stream@1.0.8:
- resolution:
- {
- integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==,
- }
- engines: { node: ">= 0.8" }
- dependencies:
- delayed-stream: 1.0.0
- dev: false
- /concat-map@0.0.1:
- resolution:
- {
- integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==,
- }
- dev: true
- /convert-source-map@1.9.0:
- resolution:
- {
- integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==,
- }
- dev: false
- /convert-source-map@2.0.0:
- resolution:
- {
- integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==,
- }
- dev: true
- /cosmiconfig@7.1.0:
- resolution:
- {
- integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==,
- }
- engines: { node: ">=10" }
- dependencies:
- "@types/parse-json": 4.0.2
- import-fresh: 3.3.0
- parse-json: 5.2.0
- path-type: 4.0.0
- yaml: 1.10.2
- dev: false
- /cosmiconfig@8.3.6(typescript@5.3.2):
- resolution:
- {
- integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==,
- }
- engines: { node: ">=14" }
- peerDependencies:
- typescript: ">=4.9.5"
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- import-fresh: 3.3.0
- js-yaml: 4.1.0
- parse-json: 5.2.0
- path-type: 4.0.0
- typescript: 5.3.2
- dev: true
- /cross-env@7.0.3:
- resolution:
- {
- integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==,
- }
- engines: { node: ">=10.14", npm: ">=6", yarn: ">=1" }
- hasBin: true
- dependencies:
- cross-spawn: 7.0.3
- dev: true
- /cross-spawn@7.0.3:
- resolution:
- {
- integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==,
- }
- engines: { node: ">= 8" }
- dependencies:
- path-key: 3.1.1
- shebang-command: 2.0.0
- which: 2.0.2
- dev: true
- /csstype@3.1.2:
- resolution:
- {
- integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==,
- }
- /data-uri-to-buffer@4.0.1:
- resolution:
- {
- integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==,
- }
- engines: { node: ">= 12" }
- dev: true
- /dayjs@1.11.5:
- resolution:
- {
- integrity: sha512-CAdX5Q3YW3Gclyo5Vpqkgpj8fSdLQcRuzfX6mC6Phy0nfJ0eGYOeS7m4mt2plDWLAtA4TqTakvbboHvUxfe4iA==,
- }
- dev: false
- /debug@4.3.4:
- resolution:
- {
- integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==,
- }
- engines: { node: ">=6.0" }
- peerDependencies:
- supports-color: "*"
- peerDependenciesMeta:
- supports-color:
- optional: true
- dependencies:
- ms: 2.1.2
- dev: true
- /delayed-stream@1.0.0:
- resolution:
- {
- integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==,
- }
- engines: { node: ">=0.4.0" }
- dev: false
- /deprecation@2.3.1:
- resolution:
- {
- integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==,
- }
- dev: true
- /dom-helpers@5.2.1:
- resolution:
- {
- integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==,
- }
- dependencies:
- "@babel/runtime": 7.23.5
- csstype: 3.1.2
- dev: false
- /dot-case@3.0.4:
- resolution:
- {
- integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==,
- }
- dependencies:
- no-case: 3.0.4
- tslib: 2.6.2
- dev: true
- /electron-to-chromium@1.4.600:
- resolution:
- {
- integrity: sha512-KD6CWjf1BnQG+NsXuyiTDDT1eV13sKuYsOUioXkQweYTQIbgHkXPry9K7M+7cKtYHnSUPitVaLrXYB1jTkkYrw==,
- }
- dev: true
- /end-of-stream@1.4.4:
- resolution:
- {
- integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==,
- }
- dependencies:
- once: 1.4.0
- dev: true
- /entities@4.5.0:
- resolution:
- {
- integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==,
- }
- engines: { node: ">=0.12" }
- dev: true
- /error-ex@1.3.2:
- resolution:
- {
- integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==,
- }
- dependencies:
- is-arrayish: 0.2.1
- /esbuild@0.18.20:
- resolution:
- {
- integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==,
- }
- engines: { node: ">=12" }
- hasBin: true
- requiresBuild: true
- optionalDependencies:
- "@esbuild/android-arm": 0.18.20
- "@esbuild/android-arm64": 0.18.20
- "@esbuild/android-x64": 0.18.20
- "@esbuild/darwin-arm64": 0.18.20
- "@esbuild/darwin-x64": 0.18.20
- "@esbuild/freebsd-arm64": 0.18.20
- "@esbuild/freebsd-x64": 0.18.20
- "@esbuild/linux-arm": 0.18.20
- "@esbuild/linux-arm64": 0.18.20
- "@esbuild/linux-ia32": 0.18.20
- "@esbuild/linux-loong64": 0.18.20
- "@esbuild/linux-mips64el": 0.18.20
- "@esbuild/linux-ppc64": 0.18.20
- "@esbuild/linux-riscv64": 0.18.20
- "@esbuild/linux-s390x": 0.18.20
- "@esbuild/linux-x64": 0.18.20
- "@esbuild/netbsd-x64": 0.18.20
- "@esbuild/openbsd-x64": 0.18.20
- "@esbuild/sunos-x64": 0.18.20
- "@esbuild/win32-arm64": 0.18.20
- "@esbuild/win32-ia32": 0.18.20
- "@esbuild/win32-x64": 0.18.20
- dev: true
- /escalade@3.1.1:
- resolution:
- {
- integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==,
- }
- engines: { node: ">=6" }
- dev: true
- /escape-string-regexp@1.0.5:
- resolution:
- {
- integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==,
- }
- engines: { node: ">=0.8.0" }
- /escape-string-regexp@4.0.0:
- resolution:
- {
- integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==,
- }
- engines: { node: ">=10" }
- dev: false
- /estree-walker@2.0.2:
- resolution:
- {
- integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==,
- }
- dev: true
- /execa@4.1.0:
- resolution:
- {
- integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==,
- }
- engines: { node: ">=10" }
- dependencies:
- cross-spawn: 7.0.3
- get-stream: 5.2.0
- human-signals: 1.1.1
- is-stream: 2.0.1
- merge-stream: 2.0.0
- npm-run-path: 4.0.1
- onetime: 5.1.2
- signal-exit: 3.0.7
- strip-final-newline: 2.0.0
- dev: true
- /fetch-blob@3.2.0:
- resolution:
- {
- integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==,
- }
- engines: { node: ^12.20 || >= 14.13 }
- dependencies:
- node-domexception: 1.0.0
- web-streams-polyfill: 3.2.1
- dev: true
- /fill-range@7.0.1:
- resolution:
- {
- integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==,
- }
- engines: { node: ">=8" }
- dependencies:
- to-regex-range: 5.0.1
- dev: true
- /find-root@1.1.0:
- resolution:
- {
- integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==,
- }
- dev: false
- /find-up@4.1.0:
- resolution:
- {
- integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==,
- }
- engines: { node: ">=8" }
- dependencies:
- locate-path: 5.0.0
- path-exists: 4.0.0
- dev: true
- /follow-redirects@1.15.3:
- resolution:
- {
- integrity: sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==,
- }
- engines: { node: ">=4.0" }
- peerDependencies:
- debug: "*"
- peerDependenciesMeta:
- debug:
- optional: true
- dev: false
- /form-data@4.0.0:
- resolution:
- {
- integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==,
- }
- engines: { node: ">= 6" }
- dependencies:
- asynckit: 0.4.0
- combined-stream: 1.0.8
- mime-types: 2.1.35
- dev: false
- /formdata-polyfill@4.0.10:
- resolution:
- {
- integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==,
- }
- engines: { node: ">=12.20.0" }
- dependencies:
- fetch-blob: 3.2.0
- dev: true
- /fs-extra@11.2.0:
- resolution:
- {
- integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==,
- }
- engines: { node: ">=14.14" }
- dependencies:
- graceful-fs: 4.2.11
- jsonfile: 6.1.0
- universalify: 2.0.1
- dev: true
- /fs-minipass@2.1.0:
- resolution:
- {
- integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==,
- }
- engines: { node: ">= 8" }
- dependencies:
- minipass: 3.3.6
- dev: false
- /fsevents@2.3.3:
- resolution:
- {
- integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==,
- }
- engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 }
- os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
- /function-bind@1.1.2:
- resolution:
- {
- integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==,
- }
- dev: false
- /gensync@1.0.0-beta.2:
- resolution:
- {
- integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==,
- }
- engines: { node: ">=6.9.0" }
- dev: true
- /get-stream@5.2.0:
- resolution:
- {
- integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==,
- }
- engines: { node: ">=8" }
- dependencies:
- pump: 3.0.0
- dev: true
- /glob-parent@5.1.2:
- resolution:
- {
- integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==,
- }
- engines: { node: ">= 6" }
- dependencies:
- is-glob: 4.0.3
- dev: true
- /globals@11.12.0:
- resolution:
- {
- integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==,
- }
- engines: { node: ">=4" }
- dev: true
- /graceful-fs@4.2.11:
- resolution:
- {
- integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==,
- }
- dev: true
- /hamt_plus@1.0.2:
- resolution:
- {
- integrity: sha512-t2JXKaehnMb9paaYA7J0BX8QQAY8lwfQ9Gjf4pg/mk4krt+cmwmU652HOoWonf+7+EQV97ARPMhhVgU1ra2GhA==,
- }
- dev: false
- /has-flag@3.0.0:
- resolution:
- {
- integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==,
- }
- engines: { node: ">=4" }
- /has-flag@4.0.0:
- resolution:
- {
- integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==,
- }
- engines: { node: ">=8" }
- dev: true
- /hasown@2.0.0:
- resolution:
- {
- integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==,
- }
- engines: { node: ">= 0.4" }
- dependencies:
- function-bind: 1.1.2
- dev: false
- /hoist-non-react-statics@3.3.2:
- resolution:
- {
- integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==,
- }
- dependencies:
- react-is: 16.13.1
- dev: false
- /html-parse-stringify@3.0.1:
- resolution:
- {
- integrity: sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==,
- }
- dependencies:
- void-elements: 3.1.0
- dev: false
- /https-proxy-agent@5.0.1:
- resolution:
- {
- integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==,
- }
- engines: { node: ">= 6" }
- dependencies:
- agent-base: 6.0.2
- debug: 4.3.4
- transitivePeerDependencies:
- - supports-color
- dev: true
- /human-signals@1.1.1:
- resolution:
- {
- integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==,
- }
- engines: { node: ">=8.12.0" }
- dev: true
- /husky@7.0.4:
- resolution:
- {
- integrity: sha512-vbaCKN2QLtP/vD4yvs6iz6hBEo6wkSzs8HpRah1Z6aGmF2KW5PdYuAd7uX5a+OyBZHBhd+TFLqgjUgytQr4RvQ==,
- }
- engines: { node: ">=12" }
- hasBin: true
- dev: true
- /i18next@23.7.7:
- resolution:
- {
- integrity: sha512-peTvdT+Lma+o0LfLFD7IC2M37N9DJ04dH0IJYOyOHRhDfLo6nK36v7LkrQH35C2l8NHiiXZqGirhKESlEb/5PA==,
- }
- dependencies:
- "@babel/runtime": 7.23.5
- dev: false
- /ignore@5.3.0:
- resolution:
- {
- integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==,
- }
- engines: { node: ">= 4" }
- dev: true
- /immutable@4.3.4:
- resolution:
- {
- integrity: sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==,
- }
- dev: true
- /import-fresh@3.3.0:
- resolution:
- {
- integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==,
- }
- engines: { node: ">=6" }
- dependencies:
- parent-module: 1.0.1
- resolve-from: 4.0.0
- /intersection-observer@0.12.2:
- resolution:
- {
- integrity: sha512-7m1vEcPCxXYI8HqnL8CKI6siDyD+eIWSwgB3DZA+ZTogxk9I4CDnj4wilt9x/+/QbHI4YG5YZNmC6458/e9Ktg==,
- }
- dev: false
- /is-arrayish@0.2.1:
- resolution:
- {
- integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==,
- }
- /is-binary-path@2.1.0:
- resolution:
- {
- integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==,
- }
- engines: { node: ">=8" }
- dependencies:
- binary-extensions: 2.2.0
- dev: true
- /is-core-module@2.13.1:
- resolution:
- {
- integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==,
- }
- dependencies:
- hasown: 2.0.0
- dev: false
- /is-extglob@2.1.1:
- resolution:
- {
- integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==,
- }
- engines: { node: ">=0.10.0" }
- dev: true
- /is-glob@4.0.3:
- resolution:
- {
- integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==,
- }
- engines: { node: ">=0.10.0" }
- dependencies:
- is-extglob: 2.1.1
- dev: true
- /is-number@7.0.0:
- resolution:
- {
- integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==,
- }
- engines: { node: ">=0.12.0" }
- dev: true
- /is-plain-object@5.0.0:
- resolution:
- {
- integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==,
- }
- engines: { node: ">=0.10.0" }
- dev: true
- /is-stream@2.0.1:
- resolution:
- {
- integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==,
- }
- engines: { node: ">=8" }
- dev: true
- /isexe@2.0.0:
- resolution:
- {
- integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==,
- }
- dev: true
- /js-cookie@2.2.1:
- resolution:
- {
- integrity: sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ==,
- }
- dev: false
- /js-tokens@4.0.0:
- resolution:
- {
- integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==,
- }
- /js-yaml@4.1.0:
- resolution:
- {
- integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==,
- }
- hasBin: true
- dependencies:
- argparse: 2.0.1
- dev: true
- /jsesc@2.5.2:
- resolution:
- {
- integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==,
- }
- engines: { node: ">=4" }
- hasBin: true
- dev: true
- /json-parse-even-better-errors@2.3.1:
- resolution:
- {
- integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==,
- }
- /json5@2.2.3:
- resolution:
- {
- integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==,
- }
- engines: { node: ">=6" }
- hasBin: true
- dev: true
- /jsonfile@6.1.0:
- resolution:
- {
- integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==,
- }
- dependencies:
- universalify: 2.0.1
- optionalDependencies:
- graceful-fs: 4.2.11
- dev: true
- /lines-and-columns@1.2.4:
- resolution:
- {
- integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==,
- }
- /locate-path@5.0.0:
- resolution:
- {
- integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==,
- }
- engines: { node: ">=8" }
- dependencies:
- p-locate: 4.1.0
- dev: true
- /lodash-es@4.17.21:
- resolution:
- {
- integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==,
- }
- dev: false
- /lodash@4.17.21:
- resolution:
- {
- integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==,
- }
- dev: false
- /loose-envify@1.4.0:
- resolution:
- {
- integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==,
- }
- hasBin: true
- dependencies:
- js-tokens: 4.0.0
- dev: false
- /lower-case@2.0.2:
- resolution:
- {
- integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==,
- }
- dependencies:
- tslib: 2.6.2
- dev: true
- /lru-cache@5.1.1:
- resolution:
- {
- integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==,
- }
- dependencies:
- yallist: 3.1.1
- dev: true
- /merge-stream@2.0.0:
- resolution:
- {
- integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==,
- }
- dev: true
- /mime-db@1.52.0:
- resolution:
- {
- integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==,
- }
- engines: { node: ">= 0.6" }
- dev: false
- /mime-types@2.1.35:
- resolution:
- {
- integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==,
- }
- engines: { node: ">= 0.6" }
- dependencies:
- mime-db: 1.52.0
- dev: false
- /mimic-fn@2.1.0:
- resolution:
- {
- integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==,
- }
- engines: { node: ">=6" }
- dev: true
- /minimatch@3.1.2:
- resolution:
- {
- integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==,
- }
- dependencies:
- brace-expansion: 1.1.11
- dev: true
- /minipass@3.3.6:
- resolution:
- {
- integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==,
- }
- engines: { node: ">=8" }
- dependencies:
- yallist: 4.0.0
- dev: false
- /minipass@5.0.0:
- resolution:
- {
- integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==,
- }
- engines: { node: ">=8" }
- dev: false
- /minizlib@2.1.2:
- resolution:
- {
- integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==,
- }
- engines: { node: ">= 8" }
- dependencies:
- minipass: 3.3.6
- yallist: 4.0.0
- dev: false
- /mkdirp@1.0.4:
- resolution:
- {
- integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==,
- }
- engines: { node: ">=10" }
- hasBin: true
- dev: false
- /monaco-editor@0.34.1:
- resolution:
- {
- integrity: sha512-FKc80TyiMaruhJKKPz5SpJPIjL+dflGvz4CpuThaPMc94AyN7SeC9HQ8hrvaxX7EyHdJcUY5i4D0gNyJj1vSZQ==,
- }
- /mri@1.2.0:
- resolution:
- {
- integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==,
- }
- engines: { node: ">=4" }
- dev: true
- /ms@2.1.2:
- resolution:
- {
- integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==,
- }
- dev: true
- /multimatch@4.0.0:
- resolution:
- {
- integrity: sha512-lDmx79y1z6i7RNx0ZGCPq1bzJ6ZoDDKbvh7jxr9SJcWLkShMzXrHbYVpTdnhNM5MXpDUxCQ4DgqVttVXlBgiBQ==,
- }
- engines: { node: ">=8" }
- dependencies:
- "@types/minimatch": 3.0.5
- array-differ: 3.0.0
- array-union: 2.1.0
- arrify: 2.0.1
- minimatch: 3.1.2
- dev: true
- /nanoid@3.3.7:
- resolution:
- {
- integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==,
- }
- engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 }
- hasBin: true
- dev: true
- /no-case@3.0.4:
- resolution:
- {
- integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==,
- }
- dependencies:
- lower-case: 2.0.2
- tslib: 2.6.2
- dev: true
- /node-domexception@1.0.0:
- resolution:
- {
- integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==,
- }
- engines: { node: ">=10.5.0" }
- dev: true
- /node-fetch@2.7.0:
- resolution:
- {
- integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==,
- }
- engines: { node: 4.x || >=6.0.0 }
- peerDependencies:
- encoding: ^0.1.0
- peerDependenciesMeta:
- encoding:
- optional: true
- dependencies:
- whatwg-url: 5.0.0
- dev: true
- /node-fetch@3.3.2:
- resolution:
- {
- integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==,
- }
- engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
- dependencies:
- data-uri-to-buffer: 4.0.1
- fetch-blob: 3.2.0
- formdata-polyfill: 4.0.10
- dev: true
- /node-releases@2.0.14:
- resolution:
- {
- integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==,
- }
- dev: true
- /normalize-path@3.0.0:
- resolution:
- {
- integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==,
- }
- engines: { node: ">=0.10.0" }
- dev: true
- /npm-run-path@4.0.1:
- resolution:
- {
- integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==,
- }
- engines: { node: ">=8" }
- dependencies:
- path-key: 3.1.1
- dev: true
- /object-assign@4.1.1:
- resolution:
- {
- integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==,
- }
- engines: { node: ">=0.10.0" }
- dev: false
- /once@1.4.0:
- resolution:
- {
- integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==,
- }
- dependencies:
- wrappy: 1.0.2
- dev: true
- /onetime@5.1.2:
- resolution:
- {
- integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==,
- }
- engines: { node: ">=6" }
- dependencies:
- mimic-fn: 2.1.0
- dev: true
- /p-limit@2.3.0:
- resolution:
- {
- integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==,
- }
- engines: { node: ">=6" }
- dependencies:
- p-try: 2.2.0
- dev: true
- /p-locate@4.1.0:
- resolution:
- {
- integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==,
- }
- engines: { node: ">=8" }
- dependencies:
- p-limit: 2.3.0
- dev: true
- /p-try@2.2.0:
- resolution:
- {
- integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==,
- }
- engines: { node: ">=6" }
- dev: true
- /parent-module@1.0.1:
- resolution:
- {
- integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==,
- }
- engines: { node: ">=6" }
- dependencies:
- callsites: 3.1.0
- /parse-json@5.2.0:
- resolution:
- {
- integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==,
- }
- engines: { node: ">=8" }
- dependencies:
- "@babel/code-frame": 7.23.5
- error-ex: 1.3.2
- json-parse-even-better-errors: 2.3.1
- lines-and-columns: 1.2.4
- /path-exists@4.0.0:
- resolution:
- {
- integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==,
- }
- engines: { node: ">=8" }
- dev: true
- /path-key@3.1.1:
- resolution:
- {
- integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==,
- }
- engines: { node: ">=8" }
- dev: true
- /path-parse@1.0.7:
- resolution:
- {
- integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==,
- }
- dev: false
- /path-type@4.0.0:
- resolution:
- {
- integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==,
- }
- engines: { node: ">=8" }
- /picocolors@1.0.0:
- resolution:
- {
- integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==,
- }
- dev: true
- /picomatch@2.3.1:
- resolution:
- {
- integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==,
- }
- engines: { node: ">=8.6" }
- dev: true
- /postcss@8.4.31:
- resolution:
- {
- integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==,
- }
- engines: { node: ^10 || ^12 || >=14 }
- dependencies:
- nanoid: 3.3.7
- picocolors: 1.0.0
- source-map-js: 1.0.2
- dev: true
- /prettier@2.8.8:
- resolution:
- {
- integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==,
- }
- engines: { node: ">=10.13.0" }
- hasBin: true
- dev: true
- /pretty-quick@3.1.3(prettier@2.8.8):
- resolution:
- {
- integrity: sha512-kOCi2FJabvuh1as9enxYmrnBC6tVMoVOenMaBqRfsvBHB0cbpYHjdQEpSglpASDFEXVwplpcGR4CLEaisYAFcA==,
- }
- engines: { node: ">=10.13" }
- hasBin: true
- peerDependencies:
- prettier: ">=2.0.0"
- dependencies:
- chalk: 3.0.0
- execa: 4.1.0
- find-up: 4.1.0
- ignore: 5.3.0
- mri: 1.2.0
- multimatch: 4.0.0
- prettier: 2.8.8
- dev: true
- /prop-types@15.8.1:
- resolution:
- {
- integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==,
- }
- dependencies:
- loose-envify: 1.4.0
- object-assign: 4.1.1
- react-is: 16.13.1
- dev: false
- /proxy-from-env@1.1.0:
- resolution:
- {
- integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==,
- }
- dev: false
- /pump@3.0.0:
- resolution:
- {
- integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==,
- }
- dependencies:
- end-of-stream: 1.4.4
- once: 1.4.0
- dev: true
- /react-dom@18.2.0(react@18.2.0):
- resolution:
- {
- integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==,
- }
- peerDependencies:
- react: ^18.2.0
- dependencies:
- loose-envify: 1.4.0
- react: 18.2.0
- scheduler: 0.23.0
- dev: false
- /react-error-boundary@3.1.4(react@18.2.0):
- resolution:
- {
- integrity: sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==,
- }
- engines: { node: ">=10", npm: ">=6" }
- peerDependencies:
- react: ">=16.13.1"
- dependencies:
- "@babel/runtime": 7.23.5
- react: 18.2.0
- dev: false
- /react-hook-form@7.48.2(react@18.2.0):
- resolution:
- {
- integrity: sha512-H0T2InFQb1hX7qKtDIZmvpU1Xfn/bdahWBN1fH19gSe4bBEqTfmlr7H3XWTaVtiK4/tpPaI1F3355GPMZYge+A==,
- }
- engines: { node: ">=12.22.0" }
- peerDependencies:
- react: ^16.8.0 || ^17 || ^18
- dependencies:
- react: 18.2.0
- dev: false
- /react-i18next@13.5.0(i18next@23.7.7)(react-dom@18.2.0)(react@18.2.0):
- resolution:
- {
- integrity: sha512-CFJ5NDGJ2MUyBohEHxljOq/39NQ972rh1ajnadG9BjTk+UXbHLq4z5DKEbEQBDoIhUmmbuS/fIMJKo6VOax1HA==,
- }
- peerDependencies:
- i18next: ">= 23.2.3"
- react: ">= 16.8.0"
- react-dom: "*"
- react-native: "*"
- peerDependenciesMeta:
- react-dom:
- optional: true
- react-native:
- optional: true
- dependencies:
- "@babel/runtime": 7.23.5
- html-parse-stringify: 3.0.1
- i18next: 23.7.7
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- dev: false
- /react-is@16.13.1:
- resolution:
- {
- integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==,
- }
- dev: false
- /react-is@18.2.0:
- resolution:
- {
- integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==,
- }
- dev: false
- /react-refresh@0.14.0:
- resolution:
- {
- integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==,
- }
- engines: { node: ">=0.10.0" }
- dev: true
- /react-router-dom@6.20.0(react-dom@18.2.0)(react@18.2.0):
- resolution:
- {
- integrity: sha512-CbcKjEyiSVpA6UtCHOIYLUYn/UJfwzp55va4yEfpk7JBN3GPqWfHrdLkAvNCcpXr8QoihcDMuk0dzWZxtlB/mQ==,
- }
- engines: { node: ">=14.0.0" }
- peerDependencies:
- react: ">=16.8"
- react-dom: ">=16.8"
- dependencies:
- "@remix-run/router": 1.13.0
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- react-router: 6.20.0(react@18.2.0)
- dev: false
- /react-router@6.20.0(react@18.2.0):
- resolution:
- {
- integrity: sha512-pVvzsSsgUxxtuNfTHC4IxjATs10UaAtvLGVSA1tbUE4GDaOSU1Esu2xF5nWLz7KPiMuW8BJWuPFdlGYJ7/rW0w==,
- }
- engines: { node: ">=14.0.0" }
- peerDependencies:
- react: ">=16.8"
- dependencies:
- "@remix-run/router": 1.13.0
- react: 18.2.0
- dev: false
- /react-transition-group@4.4.5(react-dom@18.2.0)(react@18.2.0):
- resolution:
- {
- integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==,
- }
- peerDependencies:
- react: ">=16.6.0"
- react-dom: ">=16.6.0"
- dependencies:
- "@babel/runtime": 7.23.5
- dom-helpers: 5.2.1
- loose-envify: 1.4.0
- prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- dev: false
- /react-virtuoso@4.6.2(react-dom@18.2.0)(react@18.2.0):
- resolution:
- {
- integrity: sha512-vvlqvzPif+MvBrJ09+hJJrVY0xJK9yran+A+/1iwY78k0YCVKsyoNPqoLxOxzYPggspNBNXqUXEcvckN29OxyQ==,
- }
- engines: { node: ">=10" }
- peerDependencies:
- react: ">=16 || >=17 || >= 18"
- react-dom: ">=16 || >=17 || >= 18"
- dependencies:
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- dev: false
- /react@18.2.0:
- resolution:
- {
- integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==,
- }
- engines: { node: ">=0.10.0" }
- dependencies:
- loose-envify: 1.4.0
- dev: false
- /readdirp@3.6.0:
- resolution:
- {
- integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==,
- }
- engines: { node: ">=8.10.0" }
- dependencies:
- picomatch: 2.3.1
- dev: true
- /recoil@0.7.7(react-dom@18.2.0)(react@18.2.0):
- resolution:
- {
- integrity: sha512-8Og5KPQW9LwC577Vc7Ug2P0vQshkv1y3zG3tSSkWMqkWSwHmE+by06L8JtnGocjW6gcCvfwB3YtrJG6/tWivNQ==,
- }
- peerDependencies:
- react: ">=16.13.1"
- react-dom: "*"
- react-native: "*"
- peerDependenciesMeta:
- react-dom:
- optional: true
- react-native:
- optional: true
- dependencies:
- hamt_plus: 1.0.2
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- dev: false
- /regenerator-runtime@0.14.0:
- resolution:
- {
- integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==,
- }
- dev: false
- /reselect@4.1.8:
- resolution:
- {
- integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==,
- }
- dev: false
- /resize-observer-polyfill@1.5.1:
- resolution:
- {
- integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==,
- }
- dev: false
- /resolve-from@4.0.0:
- resolution:
- {
- integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==,
- }
- engines: { node: ">=4" }
- /resolve@1.22.8:
- resolution:
- {
- integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==,
- }
- hasBin: true
- dependencies:
- is-core-module: 2.13.1
- path-parse: 1.0.7
- supports-preserve-symlinks-flag: 1.0.0
- dev: false
- /rollup@3.29.4:
- resolution:
- {
- integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==,
- }
- engines: { node: ">=14.18.0", npm: ">=8.0.0" }
- hasBin: true
- optionalDependencies:
- fsevents: 2.3.3
- dev: true
- /sass@1.69.5:
- resolution:
- {
- integrity: sha512-qg2+UCJibLr2LCVOt3OlPhr/dqVHWOa9XtZf2OjbLs/T4VPSJ00udtgJxH3neXZm+QqX8B+3cU7RaLqp1iVfcQ==,
- }
- engines: { node: ">=14.0.0" }
- hasBin: true
- dependencies:
- chokidar: 3.5.3
- immutable: 4.3.4
- source-map-js: 1.0.2
- dev: true
- /scheduler@0.23.0:
- resolution:
- {
- integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==,
- }
- dependencies:
- loose-envify: 1.4.0
- dev: false
- /screenfull@5.2.0:
- resolution:
- {
- integrity: sha512-9BakfsO2aUQN2K9Fdbj87RJIEZ82Q9IGim7FqM5OsebfoFC6ZHXgDq/KvniuLTPdeM8wY2o6Dj3WQ7KeQCj3cA==,
- }
- engines: { node: ">=0.10.0" }
- dev: false
- /semver@6.3.1:
- resolution:
- {
- integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==,
- }
- hasBin: true
- dev: true
- /shebang-command@2.0.0:
- resolution:
- {
- integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==,
- }
- engines: { node: ">=8" }
- dependencies:
- shebang-regex: 3.0.0
- dev: true
- /shebang-regex@3.0.0:
- resolution:
- {
- integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==,
- }
- engines: { node: ">=8" }
- dev: true
- /signal-exit@3.0.7:
- resolution:
- {
- integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==,
- }
- dev: true
- /snake-case@3.0.4:
- resolution:
- {
- integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==,
- }
- dependencies:
- dot-case: 3.0.4
- tslib: 2.6.2
- dev: true
- /snarkdown@2.0.0:
- resolution:
- {
- integrity: sha512-MgL/7k/AZdXCTJiNgrO7chgDqaB9FGM/1Tvlcenenb7div6obaDATzs16JhFyHHBGodHT3B7RzRc5qk8pFhg3A==,
- }
- dev: false
- /source-map-js@1.0.2:
- resolution:
- {
- integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==,
- }
- engines: { node: ">=0.10.0" }
- dev: true
- /source-map@0.5.7:
- resolution:
- {
- integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==,
- }
- engines: { node: ">=0.10.0" }
- dev: false
- /strip-final-newline@2.0.0:
- resolution:
- {
- integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==,
- }
- engines: { node: ">=6" }
- dev: true
- /stylis@4.2.0:
- resolution:
- {
- integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==,
- }
- dev: false
- /supports-color@5.5.0:
- resolution:
- {
- integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==,
- }
- engines: { node: ">=4" }
- dependencies:
- has-flag: 3.0.0
- /supports-color@7.2.0:
- resolution:
- {
- integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==,
- }
- engines: { node: ">=8" }
- dependencies:
- has-flag: 4.0.0
- dev: true
- /supports-preserve-symlinks-flag@1.0.0:
- resolution:
- {
- integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==,
- }
- engines: { node: ">= 0.4" }
- dev: false
- /svg-parser@2.0.4:
- resolution:
- {
- integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==,
- }
- dev: true
- /swr@1.3.0(react@18.2.0):
- resolution:
- {
- integrity: sha512-dkghQrOl2ORX9HYrMDtPa7LTVHJjCTeZoB1dqTbnnEDlSvN8JEKpYIYurDfvbQFUUS8Cg8PceFVZNkW0KNNYPw==,
- }
- peerDependencies:
- react: ^16.11.0 || ^17.0.0 || ^18.0.0
- dependencies:
- react: 18.2.0
- dev: false
- /tar@6.2.0:
- resolution:
- {
- integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==,
- }
- engines: { node: ">=10" }
- dependencies:
- chownr: 2.0.0
- fs-minipass: 2.1.0
- minipass: 5.0.0
- minizlib: 2.1.2
- mkdirp: 1.0.4
- yallist: 4.0.0
- dev: false
- /to-fast-properties@2.0.0:
- resolution:
- {
- integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==,
- }
- engines: { node: ">=4" }
- /to-regex-range@5.0.1:
- resolution:
- {
- integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==,
- }
- engines: { node: ">=8.0" }
- dependencies:
- is-number: 7.0.0
- dev: true
- /tr46@0.0.3:
- resolution:
- {
- integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==,
- }
- dev: true
- /tslib@2.6.2:
- resolution:
- {
- integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==,
- }
- /tunnel@0.0.6:
- resolution:
- {
- integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==,
- }
- engines: { node: ">=0.6.11 <=0.7.0 || >=0.7.3" }
- dev: true
- /typescript@5.3.2:
- resolution:
- {
- integrity: sha512-6l+RyNy7oAHDfxC4FzSJcz9vnjTKxrLpDG5M2Vu4SHRVNg6xzqZp6LYSR9zjqQTu8DU/f5xwxUdADOkbrIX2gQ==,
- }
- engines: { node: ">=14.17" }
- hasBin: true
- dev: true
- /undici-types@5.26.5:
- resolution:
- {
- integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==,
- }
- dev: true
- /undici@5.28.2:
- resolution:
- {
- integrity: sha512-wh1pHJHnUeQV5Xa8/kyQhO7WFa8M34l026L5P/+2TYiakvGy5Rdc8jWZVyG7ieht/0WgJLEd3kcU5gKx+6GC8w==,
- }
- engines: { node: ">=14.0" }
- dependencies:
- "@fastify/busboy": 2.1.0
- dev: true
- /universal-user-agent@6.0.1:
- resolution:
- {
- integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==,
- }
- dev: true
- /universalify@2.0.1:
- resolution:
- {
- integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==,
- }
- engines: { node: ">= 10.0.0" }
- dev: true
- /update-browserslist-db@1.0.13(browserslist@4.22.1):
- resolution:
- {
- integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==,
- }
- hasBin: true
- peerDependencies:
- browserslist: ">= 4.21.0"
- dependencies:
- browserslist: 4.22.1
- escalade: 3.1.1
- picocolors: 1.0.0
- dev: true
- /vite-plugin-monaco-editor@1.1.0(monaco-editor@0.34.1):
- resolution:
- {
- integrity: sha512-IvtUqZotrRoVqwT0PBBDIZPNraya3BxN/bfcNfnxZ5rkJiGcNtO5eAOWWSgT7zullIAEqQwxMU83yL9J5k7gww==,
- }
- peerDependencies:
- monaco-editor: ">=0.33.0"
- dependencies:
- monaco-editor: 0.34.1
- dev: true
- /vite-plugin-svgr@4.2.0(typescript@5.3.2)(vite@4.5.0):
- resolution:
- {
- integrity: sha512-SC7+FfVtNQk7So0XMjrrtLAbEC8qjFPifyD7+fs/E6aaNdVde6umlVVh0QuwDLdOMu7vp5RiGFsB70nj5yo0XA==,
- }
- peerDependencies:
- vite: ^2.6.0 || 3 || 4 || 5
- dependencies:
- "@rollup/pluginutils": 5.1.0
- "@svgr/core": 8.1.0(typescript@5.3.2)
- "@svgr/plugin-jsx": 8.1.0(@svgr/core@8.1.0)
- vite: 4.5.0(sass@1.69.5)
- transitivePeerDependencies:
- - rollup
- - supports-color
- - typescript
- dev: true
- /vite@4.5.0(sass@1.69.5):
- resolution:
- {
- integrity: sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw==,
- }
- engines: { node: ^14.18.0 || >=16.0.0 }
- hasBin: true
- peerDependencies:
- "@types/node": ">= 14"
- less: "*"
- lightningcss: ^1.21.0
- sass: "*"
- stylus: "*"
- sugarss: "*"
- terser: ^5.4.0
- peerDependenciesMeta:
- "@types/node":
- optional: true
- less:
- optional: true
- lightningcss:
- optional: true
- sass:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
- optional: true
- dependencies:
- esbuild: 0.18.20
- postcss: 8.4.31
- rollup: 3.29.4
- sass: 1.69.5
- optionalDependencies:
- fsevents: 2.3.3
- dev: true
- /void-elements@3.1.0:
- resolution:
- {
- integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==,
- }
- engines: { node: ">=0.10.0" }
- dev: false
- /web-streams-polyfill@3.2.1:
- resolution:
- {
- integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==,
- }
- engines: { node: ">= 8" }
- dev: true
- /webidl-conversions@3.0.1:
- resolution:
- {
- integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==,
- }
- dev: true
- /whatwg-url@5.0.0:
- resolution:
- {
- integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==,
- }
- dependencies:
- tr46: 0.0.3
- webidl-conversions: 3.0.1
- dev: true
- /which@2.0.2:
- resolution:
- {
- integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==,
- }
- engines: { node: ">= 8" }
- hasBin: true
- dependencies:
- isexe: 2.0.0
- dev: true
- /wrappy@1.0.2:
- resolution:
- {
- integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==,
- }
- dev: true
- /yallist@3.1.1:
- resolution:
- {
- integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==,
- }
- dev: true
- /yallist@4.0.0:
- resolution:
- {
- integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==,
- }
- dev: false
- /yaml@1.10.2:
- resolution:
- {
- integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==,
- }
- engines: { node: ">= 6" }
- dev: false
|