pnpm-lock.yaml 153 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. '@docsearch/react':
  9. specifier: ^3.8.0
  10. version: 3.8.0(@algolia/client-search@5.19.0)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.17.3)
  11. '@headlessui/react':
  12. specifier: 2.2.0
  13. version: 2.2.0(react-dom@18.2.0)(react@18.2.0)
  14. '@heroicons/react':
  15. specifier: ^2.2.0
  16. version: 2.2.0(react@18.2.0)
  17. '@hotjar/browser':
  18. specifier: ^1.0.9
  19. version: 1.0.9
  20. '@markdoc/markdoc':
  21. specifier: 0.3.0
  22. version: 0.3.0(react@18.2.0)
  23. '@markdoc/next.js':
  24. specifier: 0.2.3
  25. version: 0.2.3(@markdoc/markdoc@0.3.0)(next@13.4.7)(react@18.2.0)
  26. '@sindresorhus/slugify':
  27. specifier: ^2.2.1
  28. version: 2.2.1
  29. '@tailwindcss/typography':
  30. specifier: ^0.5.15
  31. version: 0.5.15(tailwindcss@3.4.16)
  32. autoprefixer:
  33. specifier: ^10.4.20
  34. version: 10.4.20(postcss@8.4.49)
  35. clsx:
  36. specifier: ^1.2.1
  37. version: 1.2.1
  38. focus-visible:
  39. specifier: ^5.2.1
  40. version: 5.2.1
  41. html-to-image:
  42. specifier: ^1.11.11
  43. version: 1.11.11
  44. lightense-images:
  45. specifier: ^1.0.17
  46. version: 1.0.17
  47. next:
  48. specifier: 13.4.7
  49. version: 13.4.7(react-dom@18.2.0)(react@18.2.0)
  50. postcss-focus-visible:
  51. specifier: ^6.0.4
  52. version: 6.0.4(postcss@8.4.49)
  53. postcss-import:
  54. specifier: ^14.1.0
  55. version: 14.1.0(postcss@8.4.49)
  56. prism-react-renderer:
  57. specifier: ^1.3.5
  58. version: 1.3.5(react@18.2.0)
  59. prismjs:
  60. specifier: ^1.29.0
  61. version: 1.29.0
  62. react:
  63. specifier: 18.2.0
  64. version: 18.2.0
  65. react-dom:
  66. specifier: 18.2.0
  67. version: 18.2.0(react@18.2.0)
  68. reactflow:
  69. specifier: ^11.11.4
  70. version: 11.11.4(react-dom@18.2.0)(react@18.2.0)
  71. tailwindcss:
  72. specifier: ^3.4.16
  73. version: 3.4.16
  74. devDependencies:
  75. eslint:
  76. specifier: 8.26.0
  77. version: 8.26.0
  78. eslint-config-next:
  79. specifier: 13.0.2
  80. version: 13.0.2(eslint@8.26.0)(typescript@5.7.3)
  81. prettier:
  82. specifier: ^2.8.8
  83. version: 2.8.8
  84. prettier-plugin-tailwindcss:
  85. specifier: ^0.2.8
  86. version: 0.2.8(prettier@2.8.8)
  87. sharp:
  88. specifier: ^0.32.6
  89. version: 0.32.6
  90. packages:
  91. '@algolia/autocomplete-core@1.17.7':
  92. resolution: {integrity: sha512-BjiPOW6ks90UKl7TwMv7oNQMnzU+t/wk9mgIDi6b1tXpUek7MW0lbNOUHpvam9pe3lVCf4xPFT+lK7s+e+fs7Q==}
  93. '@algolia/autocomplete-plugin-algolia-insights@1.17.7':
  94. resolution: {integrity: sha512-Jca5Ude6yUOuyzjnz57og7Et3aXjbwCSDf/8onLHSQgw1qW3ALl9mrMWaXb5FmPVkV3EtkD2F/+NkT6VHyPu9A==}
  95. peerDependencies:
  96. search-insights: '>= 1 < 3'
  97. '@algolia/autocomplete-preset-algolia@1.17.7':
  98. resolution: {integrity: sha512-ggOQ950+nwbWROq2MOCIL71RE0DdQZsceqrg32UqnhDz8FlO9rL8ONHNsI2R1MH0tkgVIDKI/D0sMiUchsFdWA==}
  99. peerDependencies:
  100. '@algolia/client-search': '>= 4.9.1 < 6'
  101. algoliasearch: '>= 4.9.1 < 6'
  102. '@algolia/autocomplete-shared@1.17.7':
  103. resolution: {integrity: sha512-o/1Vurr42U/qskRSuhBH+VKxMvkkUVTLU6WZQr+L5lGZZLYWyhdzWjW0iGXY7EkwRTjBqvN2EsR81yCTGV/kmg==}
  104. peerDependencies:
  105. '@algolia/client-search': '>= 4.9.1 < 6'
  106. algoliasearch: '>= 4.9.1 < 6'
  107. '@algolia/client-abtesting@5.17.1':
  108. resolution: {integrity: sha512-Os/xkQbDp5A5RdGYq1yS3fF69GoBJH5FIfrkVh+fXxCSe714i1Xdl9XoXhS4xG76DGKm6EFMlUqP024qjps8cg==}
  109. engines: {node: '>= 14.0.0'}
  110. '@algolia/client-analytics@5.17.1':
  111. resolution: {integrity: sha512-WKpGC+cUhmdm3wndIlTh8RJXoVabUH+4HrvZHC4hXtvCYojEXYeep8RZstatwSZ7Ocg6Y2u67bLw90NEINuYEw==}
  112. engines: {node: '>= 14.0.0'}
  113. '@algolia/client-common@5.17.1':
  114. resolution: {integrity: sha512-5rb5+yPIie6912riAypTSyzbE23a7UM1UpESvD8GEPI4CcWQvA9DBlkRNx9qbq/nJ5pvv8VjZjUxJj7rFkzEAA==}
  115. engines: {node: '>= 14.0.0'}
  116. '@algolia/client-common@5.19.0':
  117. resolution: {integrity: sha512-2ERRbICHXvtj5kfFpY5r8qu9pJII/NAHsdgUXnUitQFwPdPL7wXiupcvZJC7DSntOnE8AE0lM7oDsPhrJfj5nQ==}
  118. engines: {node: '>= 14.0.0'}
  119. '@algolia/client-insights@5.17.1':
  120. resolution: {integrity: sha512-nb/tfwBMn209TzFv1DDTprBKt/wl5btHVKoAww9fdEVdoKK02R2KAqxe5tuXLdEzAsS+LevRyOM/YjXuLmPtjQ==}
  121. engines: {node: '>= 14.0.0'}
  122. '@algolia/client-personalization@5.17.1':
  123. resolution: {integrity: sha512-JuNlZe1SdW9KbV0gcgdsiVkFfXt0mmPassdS3cBSGvZGbPB9JsHthD719k5Y6YOY4dGvw1JmC1i9CwCQHAS8hg==}
  124. engines: {node: '>= 14.0.0'}
  125. '@algolia/client-query-suggestions@5.17.1':
  126. resolution: {integrity: sha512-RBIFIv1QE3IlAikJKWTOpd6pwE4d2dY6t02iXH7r/SLXWn0HzJtsAPPeFg/OKkFvWAXt0H7In2/Mp7a1/Dy2pw==}
  127. engines: {node: '>= 14.0.0'}
  128. '@algolia/client-search@5.17.1':
  129. resolution: {integrity: sha512-bd5JBUOP71kPsxwDcvOxqtqXXVo/706NFifZ/O5Rx5GB8ZNVAhg4l7aGoT6jBvEfgmrp2fqPbkdIZ6JnuOpGcw==}
  130. engines: {node: '>= 14.0.0'}
  131. '@algolia/client-search@5.19.0':
  132. resolution: {integrity: sha512-Ctg3xXD/1VtcwmkulR5+cKGOMj4r0wC49Y/KZdGQcqpydKn+e86F6l3tb3utLJQVq4lpEJud6kdRykFgcNsp8Q==}
  133. engines: {node: '>= 14.0.0'}
  134. '@algolia/ingestion@1.17.1':
  135. resolution: {integrity: sha512-T18tvePi1rjRYcIKhd82oRukrPWHxG/Iy1qFGaxCplgRm9Im5z96qnYOq75MSKGOUHkFxaBKJOLmtn8xDR+Mcw==}
  136. engines: {node: '>= 14.0.0'}
  137. '@algolia/monitoring@1.17.1':
  138. resolution: {integrity: sha512-gDtow+AUywTehRP8S1tWKx2IvhcJOxldAoqBxzN3asuQobF7er5n72auBeL++HY4ImEuzMi7PDOA/Iuwxs2IcA==}
  139. engines: {node: '>= 14.0.0'}
  140. '@algolia/recommend@5.17.1':
  141. resolution: {integrity: sha512-2992tTHkRe18qmf5SP57N78kN1D3e5t4PO1rt10sJncWtXBZWiNOK6K/UcvWsFbNSGAogFcIcvIMAl5mNp6RWA==}
  142. engines: {node: '>= 14.0.0'}
  143. '@algolia/requester-browser-xhr@5.17.1':
  144. resolution: {integrity: sha512-XpKgBfyczVesKgr7DOShNyPPu5kqlboimRRPjdqAw5grSyHhCmb8yoTIKy0TCqBABZeXRPMYT13SMruUVRXvHA==}
  145. engines: {node: '>= 14.0.0'}
  146. '@algolia/requester-browser-xhr@5.19.0':
  147. resolution: {integrity: sha512-GfnhnQBT23mW/VMNs7m1qyEyZzhZz093aY2x8p0era96MMyNv8+FxGek5pjVX0b57tmSCZPf4EqNCpkGcGsmbw==}
  148. engines: {node: '>= 14.0.0'}
  149. '@algolia/requester-fetch@5.17.1':
  150. resolution: {integrity: sha512-EhUomH+DZP5vb6DnEjT0GvXaXBSwzZnuU6hPGNU1EYKRXDouRjII/bIWpVjt7ycMgL2D2oQruqDh6rAWUhQwRw==}
  151. engines: {node: '>= 14.0.0'}
  152. '@algolia/requester-fetch@5.19.0':
  153. resolution: {integrity: sha512-oyTt8ZJ4T4fYvW5avAnuEc6Laedcme9fAFryMD9ndUTIUe/P0kn3BuGcCLFjN3FDmdrETHSFkgPPf1hGy3sLCw==}
  154. engines: {node: '>= 14.0.0'}
  155. '@algolia/requester-node-http@5.17.1':
  156. resolution: {integrity: sha512-PSnENJtl4/wBWXlGyOODbLYm6lSiFqrtww7UpQRCJdsHXlJKF8XAP6AME8NxvbE0Qo/RJUxK0mvyEh9sQcx6bg==}
  157. engines: {node: '>= 14.0.0'}
  158. '@algolia/requester-node-http@5.19.0':
  159. resolution: {integrity: sha512-p6t8ue0XZNjcRiqNkb5QAM0qQRAKsCiebZ6n9JjWA+p8fWf8BvnhO55y2fO28g3GW0Imj7PrAuyBuxq8aDVQwQ==}
  160. engines: {node: '>= 14.0.0'}
  161. '@alloc/quick-lru@5.2.0':
  162. resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
  163. engines: {node: '>=10'}
  164. '@docsearch/css@3.8.0':
  165. resolution: {integrity: sha512-pieeipSOW4sQ0+bE5UFC51AOZp9NGxg89wAlZ1BAQFaiRAGK1IKUaPQ0UGZeNctJXyqZ1UvBtOQh2HH+U5GtmA==}
  166. '@docsearch/react@3.8.0':
  167. resolution: {integrity: sha512-WnFK720+iwTVt94CxY3u+FgX6exb3BfN5kE9xUY6uuAH/9W/UFboBZFLlrw/zxFRHoHZCOXRtOylsXF+6LHI+Q==}
  168. peerDependencies:
  169. '@types/react': '>= 16.8.0 < 19.0.0'
  170. react: '>= 16.8.0 < 19.0.0'
  171. react-dom: '>= 16.8.0 < 19.0.0'
  172. search-insights: '>= 1 < 3'
  173. peerDependenciesMeta:
  174. '@types/react':
  175. optional: true
  176. react:
  177. optional: true
  178. react-dom:
  179. optional: true
  180. search-insights:
  181. optional: true
  182. '@eslint/eslintrc@1.4.1':
  183. resolution: {integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==}
  184. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  185. '@floating-ui/core@1.6.8':
  186. resolution: {integrity: sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==}
  187. '@floating-ui/dom@1.6.12':
  188. resolution: {integrity: sha512-NP83c0HjokcGVEMeoStg317VD9W7eDlGK7457dMBANbKA6GJZdc7rjujdgqzTaz93jkGgc5P/jeWbaCHnMNc+w==}
  189. '@floating-ui/react-dom@2.1.2':
  190. resolution: {integrity: sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==}
  191. peerDependencies:
  192. react: '>=16.8.0'
  193. react-dom: '>=16.8.0'
  194. '@floating-ui/react@0.26.28':
  195. resolution: {integrity: sha512-yORQuuAtVpiRjpMhdc0wJj06b9JFjrYF4qp96j++v2NBpbi6SEGF7donUJ3TMieerQ6qVkAv1tgr7L4r5roTqw==}
  196. peerDependencies:
  197. react: '>=16.8.0'
  198. react-dom: '>=16.8.0'
  199. '@floating-ui/utils@0.2.8':
  200. resolution: {integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==}
  201. '@headlessui/react@2.2.0':
  202. resolution: {integrity: sha512-RzCEg+LXsuI7mHiSomsu/gBJSjpupm6A1qIZ5sWjd7JhARNlMiSA4kKfJpCKwU9tE+zMRterhhrP74PvfJrpXQ==}
  203. engines: {node: '>=10'}
  204. peerDependencies:
  205. react: ^18 || ^19 || ^19.0.0-rc
  206. react-dom: ^18 || ^19 || ^19.0.0-rc
  207. '@heroicons/react@2.2.0':
  208. resolution: {integrity: sha512-LMcepvRaS9LYHJGsF0zzmgKCUim/X3N/DQKc4jepAXJ7l8QxJ1PmxJzqplF2Z3FE4PqBAIGyJAQ/w4B5dsqbtQ==}
  209. peerDependencies:
  210. react: '>= 16 || ^19.0.0-rc'
  211. '@hotjar/browser@1.0.9':
  212. resolution: {integrity: sha512-n9akDMod8BLGpYEQCrHwlYWWd63c1HlhUSXNIDfClZtKYXbUjIUOFlNZNNcUxgHTCsi4l2i+SWKsGsO0t93S8w==}
  213. '@humanwhocodes/config-array@0.11.14':
  214. resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==}
  215. engines: {node: '>=10.10.0'}
  216. deprecated: Use @eslint/config-array instead
  217. '@humanwhocodes/module-importer@1.0.1':
  218. resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
  219. engines: {node: '>=12.22'}
  220. '@humanwhocodes/object-schema@2.0.3':
  221. resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
  222. deprecated: Use @eslint/object-schema instead
  223. '@isaacs/cliui@8.0.2':
  224. resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
  225. engines: {node: '>=12'}
  226. '@jridgewell/gen-mapping@0.3.8':
  227. resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==}
  228. engines: {node: '>=6.0.0'}
  229. '@jridgewell/resolve-uri@3.1.2':
  230. resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
  231. engines: {node: '>=6.0.0'}
  232. '@jridgewell/set-array@1.2.1':
  233. resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
  234. engines: {node: '>=6.0.0'}
  235. '@jridgewell/sourcemap-codec@1.5.0':
  236. resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
  237. '@jridgewell/trace-mapping@0.3.25':
  238. resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
  239. '@markdoc/markdoc@0.3.0':
  240. resolution: {integrity: sha512-QWCF8krIIw52ulflfnoff0yG1eKl9CCGA3KAiOjHyYtHNzSEouFh8lO52nAaO3qV2Ctj1GTB8TTb2rTfvISQfA==}
  241. engines: {node: '>=14.7.0'}
  242. peerDependencies:
  243. '@types/react': '*'
  244. react: '*'
  245. peerDependenciesMeta:
  246. '@types/react':
  247. optional: true
  248. react:
  249. optional: true
  250. '@markdoc/next.js@0.2.3':
  251. resolution: {integrity: sha512-O9WWGi/VHfGn70/BzqYYwsqcxidN1BpvKaO4Uf4AKC0z1d16TU0ADl/CepAeM/V2D8pDBmYALTMtiQoTWuObaw==}
  252. peerDependencies:
  253. '@markdoc/markdoc': '*'
  254. next: '*'
  255. react: '*'
  256. '@next/env@13.4.7':
  257. resolution: {integrity: sha512-ZlbiFulnwiFsW9UV1ku1OvX/oyIPLtMk9p/nnvDSwI0s7vSoZdRtxXNsaO+ZXrLv/pMbXVGq4lL8TbY9iuGmVw==}
  258. '@next/eslint-plugin-next@13.0.2':
  259. resolution: {integrity: sha512-W+fIIIaFU7Kct7Okx91C7XDRGolv/w2RUenX2yZFeeNVcuVzDIKUcNmckrYbYcwrNQUSXmtwrs3g8xwast0YtA==}
  260. '@next/swc-darwin-arm64@13.4.7':
  261. resolution: {integrity: sha512-VZTxPv1b59KGiv/pZHTO5Gbsdeoxcj2rU2cqJu03btMhHpn3vwzEK0gUSVC/XW96aeGO67X+cMahhwHzef24/w==}
  262. engines: {node: '>= 10'}
  263. cpu: [arm64]
  264. os: [darwin]
  265. '@next/swc-darwin-x64@13.4.7':
  266. resolution: {integrity: sha512-gO2bw+2Ymmga+QYujjvDz9955xvYGrWofmxTq7m70b9pDPvl7aDFABJOZ2a8SRCuSNB5mXU8eTOmVVwyp/nAew==}
  267. engines: {node: '>= 10'}
  268. cpu: [x64]
  269. os: [darwin]
  270. '@next/swc-linux-arm64-gnu@13.4.7':
  271. resolution: {integrity: sha512-6cqp3vf1eHxjIDhEOc7Mh/s8z1cwc/l5B6ZNkOofmZVyu1zsbEM5Hmx64s12Rd9AYgGoiCz4OJ4M/oRnkE16/Q==}
  272. engines: {node: '>= 10'}
  273. cpu: [arm64]
  274. os: [linux]
  275. '@next/swc-linux-arm64-musl@13.4.7':
  276. resolution: {integrity: sha512-T1kD2FWOEy5WPidOn1si0rYmWORNch4a/NR52Ghyp4q7KyxOCuiOfZzyhVC5tsLIBDH3+cNdB5DkD9afpNDaOw==}
  277. engines: {node: '>= 10'}
  278. cpu: [arm64]
  279. os: [linux]
  280. '@next/swc-linux-x64-gnu@13.4.7':
  281. resolution: {integrity: sha512-zaEC+iEiAHNdhl6fuwl0H0shnTzQoAoJiDYBUze8QTntE/GNPfTYpYboxF5LRYIjBwETUatvE0T64W6SKDipvg==}
  282. engines: {node: '>= 10'}
  283. cpu: [x64]
  284. os: [linux]
  285. '@next/swc-linux-x64-musl@13.4.7':
  286. resolution: {integrity: sha512-X6r12F8d8SKAtYJqLZBBMIwEqcTRvUdVm+xIq+l6pJqlgT2tNsLLf2i5Cl88xSsIytBICGsCNNHd+siD2fbWBA==}
  287. engines: {node: '>= 10'}
  288. cpu: [x64]
  289. os: [linux]
  290. '@next/swc-win32-arm64-msvc@13.4.7':
  291. resolution: {integrity: sha512-NPnmnV+vEIxnu6SUvjnuaWRglZzw4ox5n/MQTxeUhb5iwVWFedolPFebMNwgrWu4AELwvTdGtWjqof53AiWHcw==}
  292. engines: {node: '>= 10'}
  293. cpu: [arm64]
  294. os: [win32]
  295. '@next/swc-win32-ia32-msvc@13.4.7':
  296. resolution: {integrity: sha512-6Hxijm6/a8XqLQpOOf/XuwWRhcuc/g4rBB2oxjgCMuV9Xlr2bLs5+lXyh8w9YbAUMYR3iC9mgOlXbHa79elmXw==}
  297. engines: {node: '>= 10'}
  298. cpu: [ia32]
  299. os: [win32]
  300. '@next/swc-win32-x64-msvc@13.4.7':
  301. resolution: {integrity: sha512-sW9Yt36Db1nXJL+mTr2Wo0y+VkPWeYhygvcHj1FF0srVtV+VoDjxleKtny21QHaG05zdeZnw2fCtf2+dEqgwqA==}
  302. engines: {node: '>= 10'}
  303. cpu: [x64]
  304. os: [win32]
  305. '@nodelib/fs.scandir@2.1.5':
  306. resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
  307. engines: {node: '>= 8'}
  308. '@nodelib/fs.stat@2.0.5':
  309. resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
  310. engines: {node: '>= 8'}
  311. '@nodelib/fs.walk@1.2.8':
  312. resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
  313. engines: {node: '>= 8'}
  314. '@pkgjs/parseargs@0.11.0':
  315. resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
  316. engines: {node: '>=14'}
  317. '@react-aria/focus@3.19.0':
  318. resolution: {integrity: sha512-hPF9EXoUQeQl1Y21/rbV2H4FdUR2v+4/I0/vB+8U3bT1CJ+1AFj1hc/rqx2DqEwDlEwOHN+E4+mRahQmlybq0A==}
  319. peerDependencies:
  320. react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
  321. '@react-aria/interactions@3.22.5':
  322. resolution: {integrity: sha512-kMwiAD9E0TQp+XNnOs13yVJghiy8ET8L0cbkeuTgNI96sOAp/63EJ1FSrDf17iD8sdjt41LafwX/dKXW9nCcLQ==}
  323. peerDependencies:
  324. react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
  325. '@react-aria/ssr@3.9.7':
  326. resolution: {integrity: sha512-GQygZaGlmYjmYM+tiNBA5C6acmiDWF52Nqd40bBp0Znk4M4hP+LTmI0lpI1BuKMw45T8RIhrAsICIfKwZvi2Gg==}
  327. engines: {node: '>= 12'}
  328. peerDependencies:
  329. react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
  330. '@react-aria/utils@3.26.0':
  331. resolution: {integrity: sha512-LkZouGSjjQ0rEqo4XJosS4L3YC/zzQkfRM3KoqK6fUOmUJ9t0jQ09WjiF+uOoG9u+p30AVg3TrZRUWmoTS+koQ==}
  332. peerDependencies:
  333. react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
  334. '@react-stately/utils@3.10.5':
  335. resolution: {integrity: sha512-iMQSGcpaecghDIh3mZEpZfoFH3ExBwTtuBEcvZ2XnGzCgQjeYXcMdIUwAfVQLXFTdHUHGF6Gu6/dFrYsCzySBQ==}
  336. peerDependencies:
  337. react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
  338. '@react-types/shared@3.26.0':
  339. resolution: {integrity: sha512-6FuPqvhmjjlpEDLTiYx29IJCbCNWPlsyO+ZUmCUXzhUv2ttShOXfw8CmeHWHftT/b2KweAWuzqSlfeXPR76jpw==}
  340. peerDependencies:
  341. react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
  342. '@reactflow/background@11.3.14':
  343. resolution: {integrity: sha512-Gewd7blEVT5Lh6jqrvOgd4G6Qk17eGKQfsDXgyRSqM+CTwDqRldG2LsWN4sNeno6sbqVIC2fZ+rAUBFA9ZEUDA==}
  344. peerDependencies:
  345. react: '>=17'
  346. react-dom: '>=17'
  347. '@reactflow/controls@11.2.14':
  348. resolution: {integrity: sha512-MiJp5VldFD7FrqaBNIrQ85dxChrG6ivuZ+dcFhPQUwOK3HfYgX2RHdBua+gx+40p5Vw5It3dVNp/my4Z3jF0dw==}
  349. peerDependencies:
  350. react: '>=17'
  351. react-dom: '>=17'
  352. '@reactflow/core@11.11.4':
  353. resolution: {integrity: sha512-H4vODklsjAq3AMq6Np4LE12i1I4Ta9PrDHuBR9GmL8uzTt2l2jh4CiQbEMpvMDcp7xi4be0hgXj+Ysodde/i7Q==}
  354. peerDependencies:
  355. react: '>=17'
  356. react-dom: '>=17'
  357. '@reactflow/minimap@11.7.14':
  358. resolution: {integrity: sha512-mpwLKKrEAofgFJdkhwR5UQ1JYWlcAAL/ZU/bctBkuNTT1yqV+y0buoNVImsRehVYhJwffSWeSHaBR5/GJjlCSQ==}
  359. peerDependencies:
  360. react: '>=17'
  361. react-dom: '>=17'
  362. '@reactflow/node-resizer@2.2.14':
  363. resolution: {integrity: sha512-fwqnks83jUlYr6OHcdFEedumWKChTHRGw/kbCxj0oqBd+ekfs+SIp4ddyNU0pdx96JIm5iNFS0oNrmEiJbbSaA==}
  364. peerDependencies:
  365. react: '>=17'
  366. react-dom: '>=17'
  367. '@reactflow/node-toolbar@1.3.14':
  368. resolution: {integrity: sha512-rbynXQnH/xFNu4P9H+hVqlEUafDCkEoCy0Dg9mG22Sg+rY/0ck6KkrAQrYrTgXusd+cEJOMK0uOOFCK2/5rSGQ==}
  369. peerDependencies:
  370. react: '>=17'
  371. react-dom: '>=17'
  372. '@rtsao/scc@1.1.0':
  373. resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
  374. '@rushstack/eslint-patch@1.10.4':
  375. resolution: {integrity: sha512-WJgX9nzTqknM393q1QJDJmoW28kUfEnybeTfVNcNAPnIx210RXm2DiXiHzfNPJNIUUb1tJnz/l4QGtJ30PgWmA==}
  376. '@sindresorhus/slugify@2.2.1':
  377. resolution: {integrity: sha512-MkngSCRZ8JdSOCHRaYd+D01XhvU3Hjy6MGl06zhOk614hp9EOAp5gIkBeQg7wtmxpitU6eAL4kdiRMcJa2dlrw==}
  378. engines: {node: '>=12'}
  379. '@sindresorhus/transliterate@1.6.0':
  380. resolution: {integrity: sha512-doH1gimEu3A46VX6aVxpHTeHrytJAG6HgdxntYnCFiIFHEM/ZGpG8KiZGBChchjQmG0XFIBL552kBTjVcMZXwQ==}
  381. engines: {node: '>=12'}
  382. '@swc/helpers@0.5.1':
  383. resolution: {integrity: sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==}
  384. '@swc/helpers@0.5.15':
  385. resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
  386. '@tailwindcss/typography@0.5.15':
  387. resolution: {integrity: sha512-AqhlCXl+8grUz8uqExv5OTtgpjuVIwFTSXTrh8y9/pw6q2ek7fJ+Y8ZEVw7EB2DCcuCOtEjf9w3+J3rzts01uA==}
  388. peerDependencies:
  389. tailwindcss: '>=3.0.0 || insiders || >=4.0.0-alpha.20'
  390. '@tanstack/react-virtual@3.11.1':
  391. resolution: {integrity: sha512-orn2QNe5tF6SqjucHJ6cKTKcRDe3GG7bcYqPNn72Yejj7noECdzgAyRfGt2pGDPemhYim3d1HIR/dgruCnLfUA==}
  392. peerDependencies:
  393. react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
  394. react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
  395. '@tanstack/virtual-core@3.10.9':
  396. resolution: {integrity: sha512-kBknKOKzmeR7lN+vSadaKWXaLS0SZZG+oqpQ/k80Q6g9REn6zRHS/ZYdrIzHnpHgy/eWs00SujveUN/GJT2qTw==}
  397. '@types/d3-array@3.2.1':
  398. resolution: {integrity: sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==}
  399. '@types/d3-axis@3.0.6':
  400. resolution: {integrity: sha512-pYeijfZuBd87T0hGn0FO1vQ/cgLk6E1ALJjfkC0oJ8cbwkZl3TpgS8bVBLZN+2jjGgg38epgxb2zmoGtSfvgMw==}
  401. '@types/d3-brush@3.0.6':
  402. resolution: {integrity: sha512-nH60IZNNxEcrh6L1ZSMNA28rj27ut/2ZmI3r96Zd+1jrZD++zD3LsMIjWlvg4AYrHn/Pqz4CF3veCxGjtbqt7A==}
  403. '@types/d3-chord@3.0.6':
  404. resolution: {integrity: sha512-LFYWWd8nwfwEmTZG9PfQxd17HbNPksHBiJHaKuY1XeqscXacsS2tyoo6OdRsjf+NQYeB6XrNL3a25E3gH69lcg==}
  405. '@types/d3-color@3.1.3':
  406. resolution: {integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==}
  407. '@types/d3-contour@3.0.6':
  408. resolution: {integrity: sha512-BjzLgXGnCWjUSYGfH1cpdo41/hgdWETu4YxpezoztawmqsvCeep+8QGfiY6YbDvfgHz/DkjeIkkZVJavB4a3rg==}
  409. '@types/d3-delaunay@6.0.4':
  410. resolution: {integrity: sha512-ZMaSKu4THYCU6sV64Lhg6qjf1orxBthaC161plr5KuPHo3CNm8DTHiLw/5Eq2b6TsNP0W0iJrUOFscY6Q450Hw==}
  411. '@types/d3-dispatch@3.0.6':
  412. resolution: {integrity: sha512-4fvZhzMeeuBJYZXRXrRIQnvUYfyXwYmLsdiN7XXmVNQKKw1cM8a5WdID0g1hVFZDqT9ZqZEY5pD44p24VS7iZQ==}
  413. '@types/d3-drag@3.0.7':
  414. resolution: {integrity: sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==}
  415. '@types/d3-dsv@3.0.7':
  416. resolution: {integrity: sha512-n6QBF9/+XASqcKK6waudgL0pf/S5XHPPI8APyMLLUHd8NqouBGLsU8MgtO7NINGtPBtk9Kko/W4ea0oAspwh9g==}
  417. '@types/d3-ease@3.0.2':
  418. resolution: {integrity: sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==}
  419. '@types/d3-fetch@3.0.7':
  420. resolution: {integrity: sha512-fTAfNmxSb9SOWNB9IoG5c8Hg6R+AzUHDRlsXsDZsNp6sxAEOP0tkP3gKkNSO/qmHPoBFTxNrjDprVHDQDvo5aA==}
  421. '@types/d3-force@3.0.10':
  422. resolution: {integrity: sha512-ZYeSaCF3p73RdOKcjj+swRlZfnYpK1EbaDiYICEEp5Q6sUiqFaFQ9qgoshp5CzIyyb/yD09kD9o2zEltCexlgw==}
  423. '@types/d3-format@3.0.4':
  424. resolution: {integrity: sha512-fALi2aI6shfg7vM5KiR1wNJnZ7r6UuggVqtDA+xiEdPZQwy/trcQaHnwShLuLdta2rTymCNpxYTiMZX/e09F4g==}
  425. '@types/d3-geo@3.1.0':
  426. resolution: {integrity: sha512-856sckF0oP/diXtS4jNsiQw/UuK5fQG8l/a9VVLeSouf1/PPbBE1i1W852zVwKwYCBkFJJB7nCFTbk6UMEXBOQ==}
  427. '@types/d3-hierarchy@3.1.7':
  428. resolution: {integrity: sha512-tJFtNoYBtRtkNysX1Xq4sxtjK8YgoWUNpIiUee0/jHGRwqvzYxkq0hGVbbOGSz+JgFxxRu4K8nb3YpG3CMARtg==}
  429. '@types/d3-interpolate@3.0.4':
  430. resolution: {integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==}
  431. '@types/d3-path@3.1.0':
  432. resolution: {integrity: sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ==}
  433. '@types/d3-polygon@3.0.2':
  434. resolution: {integrity: sha512-ZuWOtMaHCkN9xoeEMr1ubW2nGWsp4nIql+OPQRstu4ypeZ+zk3YKqQT0CXVe/PYqrKpZAi+J9mTs05TKwjXSRA==}
  435. '@types/d3-quadtree@3.0.6':
  436. resolution: {integrity: sha512-oUzyO1/Zm6rsxKRHA1vH0NEDG58HrT5icx/azi9MF1TWdtttWl0UIUsjEQBBh+SIkrpd21ZjEv7ptxWys1ncsg==}
  437. '@types/d3-random@3.0.3':
  438. resolution: {integrity: sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ==}
  439. '@types/d3-scale-chromatic@3.1.0':
  440. resolution: {integrity: sha512-iWMJgwkK7yTRmWqRB5plb1kadXyQ5Sj8V/zYlFGMUBbIPKQScw+Dku9cAAMgJG+z5GYDoMjWGLVOvjghDEFnKQ==}
  441. '@types/d3-scale@4.0.8':
  442. resolution: {integrity: sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==}
  443. '@types/d3-selection@3.0.11':
  444. resolution: {integrity: sha512-bhAXu23DJWsrI45xafYpkQ4NtcKMwWnAC/vKrd2l+nxMFuvOT3XMYTIj2opv8vq8AO5Yh7Qac/nSeP/3zjTK0w==}
  445. '@types/d3-shape@3.1.6':
  446. resolution: {integrity: sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA==}
  447. '@types/d3-time-format@4.0.3':
  448. resolution: {integrity: sha512-5xg9rC+wWL8kdDj153qZcsJ0FWiFt0J5RB6LYUNZjwSnesfblqrI/bJ1wBdJ8OQfncgbJG5+2F+qfqnqyzYxyg==}
  449. '@types/d3-time@3.0.4':
  450. resolution: {integrity: sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==}
  451. '@types/d3-timer@3.0.2':
  452. resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==}
  453. '@types/d3-transition@3.0.9':
  454. resolution: {integrity: sha512-uZS5shfxzO3rGlu0cC3bjmMFKsXv+SmZZcgp0KD22ts4uGXp5EVYGzu/0YdwZeKmddhcAccYtREJKkPfXkZuCg==}
  455. '@types/d3-zoom@3.0.8':
  456. resolution: {integrity: sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==}
  457. '@types/d3@7.4.3':
  458. resolution: {integrity: sha512-lZXZ9ckh5R8uiFVt8ogUNf+pIrK4EsWrx2Np75WvF/eTpJ0FMHNhjXk8CKEx/+gpHbNQyJWehbFaTvqmHWB3ww==}
  459. '@types/geojson@7946.0.15':
  460. resolution: {integrity: sha512-9oSxFzDCT2Rj6DfcHF8G++jxBKS7mBqXl5xrRW+Kbvjry6Uduya2iiwqHPhVXpasAVMBYKkEPGgKhd3+/HZ6xA==}
  461. '@types/json5@0.0.29':
  462. resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
  463. '@types/linkify-it@5.0.0':
  464. resolution: {integrity: sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==}
  465. '@types/markdown-it@12.2.3':
  466. resolution: {integrity: sha512-GKMHFfv3458yYy+v/N8gjufHO6MSZKCOXpZc5GXIWWy8uldwfmPn98vp81gZ5f9SVw8YYBctgfJ22a2d7AOMeQ==}
  467. '@types/mdurl@2.0.0':
  468. resolution: {integrity: sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==}
  469. '@typescript-eslint/parser@5.62.0':
  470. resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==}
  471. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  472. peerDependencies:
  473. eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
  474. typescript: '*'
  475. peerDependenciesMeta:
  476. typescript:
  477. optional: true
  478. '@typescript-eslint/scope-manager@5.62.0':
  479. resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==}
  480. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  481. '@typescript-eslint/types@5.62.0':
  482. resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==}
  483. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  484. '@typescript-eslint/typescript-estree@5.62.0':
  485. resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==}
  486. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  487. peerDependencies:
  488. typescript: '*'
  489. peerDependenciesMeta:
  490. typescript:
  491. optional: true
  492. '@typescript-eslint/visitor-keys@5.62.0':
  493. resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==}
  494. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  495. acorn-jsx@5.3.2:
  496. resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
  497. peerDependencies:
  498. acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
  499. acorn@8.14.0:
  500. resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
  501. engines: {node: '>=0.4.0'}
  502. hasBin: true
  503. ajv@6.12.6:
  504. resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
  505. algoliasearch@5.17.1:
  506. resolution: {integrity: sha512-3CcbT5yTWJDIcBe9ZHgsPi184SkT1kyZi3GWlQU5EFgvq1V73X2sqHRkPCQMe0RA/uvZbB+1sFeAk73eWygeLg==}
  507. engines: {node: '>= 14.0.0'}
  508. ansi-regex@5.0.1:
  509. resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
  510. engines: {node: '>=8'}
  511. ansi-regex@6.1.0:
  512. resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
  513. engines: {node: '>=12'}
  514. ansi-styles@4.3.0:
  515. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  516. engines: {node: '>=8'}
  517. ansi-styles@6.2.1:
  518. resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
  519. engines: {node: '>=12'}
  520. any-promise@1.3.0:
  521. resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
  522. anymatch@3.1.3:
  523. resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
  524. engines: {node: '>= 8'}
  525. arg@5.0.2:
  526. resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
  527. argparse@2.0.1:
  528. resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
  529. aria-query@5.3.2:
  530. resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==}
  531. engines: {node: '>= 0.4'}
  532. array-buffer-byte-length@1.0.1:
  533. resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==}
  534. engines: {node: '>= 0.4'}
  535. array-includes@3.1.8:
  536. resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==}
  537. engines: {node: '>= 0.4'}
  538. array-union@2.1.0:
  539. resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
  540. engines: {node: '>=8'}
  541. array.prototype.findlast@1.2.5:
  542. resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==}
  543. engines: {node: '>= 0.4'}
  544. array.prototype.findlastindex@1.2.5:
  545. resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==}
  546. engines: {node: '>= 0.4'}
  547. array.prototype.flat@1.3.2:
  548. resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==}
  549. engines: {node: '>= 0.4'}
  550. array.prototype.flatmap@1.3.2:
  551. resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==}
  552. engines: {node: '>= 0.4'}
  553. array.prototype.tosorted@1.1.4:
  554. resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==}
  555. engines: {node: '>= 0.4'}
  556. arraybuffer.prototype.slice@1.0.3:
  557. resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==}
  558. engines: {node: '>= 0.4'}
  559. ast-types-flow@0.0.8:
  560. resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==}
  561. autoprefixer@10.4.20:
  562. resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==}
  563. engines: {node: ^10 || ^12 || >=14}
  564. hasBin: true
  565. peerDependencies:
  566. postcss: ^8.1.0
  567. available-typed-arrays@1.0.7:
  568. resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
  569. engines: {node: '>= 0.4'}
  570. axe-core@4.10.2:
  571. resolution: {integrity: sha512-RE3mdQ7P3FRSe7eqCWoeQ/Z9QXrtniSjp1wUjt5nRC3WIpz5rSCve6o3fsZ2aCpJtrZjSZgjwXAoTO5k4tEI0w==}
  572. engines: {node: '>=4'}
  573. axobject-query@4.1.0:
  574. resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
  575. engines: {node: '>= 0.4'}
  576. b4a@1.6.7:
  577. resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==}
  578. balanced-match@1.0.2:
  579. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  580. bare-events@2.5.0:
  581. resolution: {integrity: sha512-/E8dDe9dsbLyh2qrZ64PEPadOQ0F4gbl1sUJOrmph7xOiIxfY8vwab/4bFLh4Y88/Hk/ujKcrQKc+ps0mv873A==}
  582. bare-events@2.5.3:
  583. resolution: {integrity: sha512-pCO3aoRJ0MBiRMu8B7vUga0qL3L7gO1+SW7ku6qlSsMLwuhaawnuvZDyzJY/kyC63Un0XAB0OPUcfF1eTO/V+Q==}
  584. bare-fs@2.3.5:
  585. resolution: {integrity: sha512-SlE9eTxifPDJrT6YgemQ1WGFleevzwY+XAP1Xqgl56HtcrisC2CHCZ2tq6dBpcH2TnNxwUEUGhweo+lrQtYuiw==}
  586. bare-os@2.4.4:
  587. resolution: {integrity: sha512-z3UiI2yi1mK0sXeRdc4O1Kk8aOa/e+FNWZcTiPB/dfTWyLypuE99LibgRaQki914Jq//yAWylcAt+mknKdixRQ==}
  588. bare-path@2.1.3:
  589. resolution: {integrity: sha512-lh/eITfU8hrj9Ru5quUp0Io1kJWIk1bTjzo7JH1P5dWmQ2EL4hFUlfI8FonAhSlgIfhn63p84CDY/x+PisgcXA==}
  590. bare-stream@2.6.1:
  591. resolution: {integrity: sha512-eVZbtKM+4uehzrsj49KtCy3Pbg7kO1pJ3SKZ1SFrIH/0pnj9scuGGgUlNDf/7qS8WKtGdiJY5Kyhs/ivYPTB/g==}
  592. base64-js@1.5.1:
  593. resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
  594. binary-extensions@2.3.0:
  595. resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
  596. engines: {node: '>=8'}
  597. bl@4.1.0:
  598. resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
  599. brace-expansion@1.1.11:
  600. resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
  601. brace-expansion@2.0.1:
  602. resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
  603. braces@3.0.3:
  604. resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
  605. engines: {node: '>=8'}
  606. browserslist@4.24.3:
  607. resolution: {integrity: sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA==}
  608. engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
  609. hasBin: true
  610. buffer@5.7.1:
  611. resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
  612. busboy@1.6.0:
  613. resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
  614. engines: {node: '>=10.16.0'}
  615. call-bind-apply-helpers@1.0.1:
  616. resolution: {integrity: sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==}
  617. engines: {node: '>= 0.4'}
  618. call-bind@1.0.8:
  619. resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==}
  620. engines: {node: '>= 0.4'}
  621. call-bound@1.0.2:
  622. resolution: {integrity: sha512-0lk0PHFe/uz0vl527fG9CgdE9WdafjDbCXvBbs+LUv000TVt2Jjhqbs4Jwm8gz070w8xXyEAxrPOMullsxXeGg==}
  623. engines: {node: '>= 0.4'}
  624. callsites@3.1.0:
  625. resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
  626. engines: {node: '>=6'}
  627. camelcase-css@2.0.1:
  628. resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
  629. engines: {node: '>= 6'}
  630. caniuse-lite@1.0.30001692:
  631. resolution: {integrity: sha512-A95VKan0kdtrsnMubMKxEKUKImOPSuCpYgxSQBo036P5YYgVIcOYJEgt/txJWqObiRQeISNCfef9nvlQ0vbV7A==}
  632. chalk@4.1.2:
  633. resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
  634. engines: {node: '>=10'}
  635. chokidar@3.6.0:
  636. resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
  637. engines: {node: '>= 8.10.0'}
  638. chownr@1.1.4:
  639. resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
  640. classcat@5.0.5:
  641. resolution: {integrity: sha512-JhZUT7JFcQy/EzW605k/ktHtncoo9vnyW/2GspNYwFlN1C/WmjuV/xtS04e9SOkL2sTdw0VAZ2UGCcQ9lR6p6w==}
  642. client-only@0.0.1:
  643. resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
  644. clsx@1.2.1:
  645. resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==}
  646. engines: {node: '>=6'}
  647. clsx@2.1.1:
  648. resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
  649. engines: {node: '>=6'}
  650. color-convert@2.0.1:
  651. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  652. engines: {node: '>=7.0.0'}
  653. color-name@1.1.4:
  654. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  655. color-string@1.9.1:
  656. resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
  657. color@4.2.3:
  658. resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
  659. engines: {node: '>=12.5.0'}
  660. commander@4.1.1:
  661. resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
  662. engines: {node: '>= 6'}
  663. concat-map@0.0.1:
  664. resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
  665. cross-spawn@7.0.6:
  666. resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
  667. engines: {node: '>= 8'}
  668. cssesc@3.0.0:
  669. resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
  670. engines: {node: '>=4'}
  671. hasBin: true
  672. d3-color@3.1.0:
  673. resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==}
  674. engines: {node: '>=12'}
  675. d3-dispatch@3.0.1:
  676. resolution: {integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==}
  677. engines: {node: '>=12'}
  678. d3-drag@3.0.0:
  679. resolution: {integrity: sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==}
  680. engines: {node: '>=12'}
  681. d3-ease@3.0.1:
  682. resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==}
  683. engines: {node: '>=12'}
  684. d3-interpolate@3.0.1:
  685. resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==}
  686. engines: {node: '>=12'}
  687. d3-selection@3.0.0:
  688. resolution: {integrity: sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==}
  689. engines: {node: '>=12'}
  690. d3-timer@3.0.1:
  691. resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==}
  692. engines: {node: '>=12'}
  693. d3-transition@3.0.1:
  694. resolution: {integrity: sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==}
  695. engines: {node: '>=12'}
  696. peerDependencies:
  697. d3-selection: 2 - 3
  698. d3-zoom@3.0.0:
  699. resolution: {integrity: sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==}
  700. engines: {node: '>=12'}
  701. damerau-levenshtein@1.0.8:
  702. resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
  703. data-view-buffer@1.0.1:
  704. resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==}
  705. engines: {node: '>= 0.4'}
  706. data-view-byte-length@1.0.1:
  707. resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==}
  708. engines: {node: '>= 0.4'}
  709. data-view-byte-offset@1.0.0:
  710. resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==}
  711. engines: {node: '>= 0.4'}
  712. debug@3.2.7:
  713. resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
  714. peerDependencies:
  715. supports-color: '*'
  716. peerDependenciesMeta:
  717. supports-color:
  718. optional: true
  719. debug@4.4.0:
  720. resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
  721. engines: {node: '>=6.0'}
  722. peerDependencies:
  723. supports-color: '*'
  724. peerDependenciesMeta:
  725. supports-color:
  726. optional: true
  727. decompress-response@6.0.0:
  728. resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
  729. engines: {node: '>=10'}
  730. deep-extend@0.6.0:
  731. resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
  732. engines: {node: '>=4.0.0'}
  733. deep-is@0.1.4:
  734. resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
  735. define-data-property@1.1.4:
  736. resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
  737. engines: {node: '>= 0.4'}
  738. define-properties@1.2.1:
  739. resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
  740. engines: {node: '>= 0.4'}
  741. detect-libc@2.0.3:
  742. resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
  743. engines: {node: '>=8'}
  744. didyoumean@1.2.2:
  745. resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
  746. dir-glob@3.0.1:
  747. resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
  748. engines: {node: '>=8'}
  749. dlv@1.1.3:
  750. resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
  751. doctrine@2.1.0:
  752. resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
  753. engines: {node: '>=0.10.0'}
  754. doctrine@3.0.0:
  755. resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
  756. engines: {node: '>=6.0.0'}
  757. dunder-proto@1.0.0:
  758. resolution: {integrity: sha512-9+Sj30DIu+4KvHqMfLUGLFYL2PkURSYMVXJyXe92nFRvlYq5hBjLEhblKB+vkd/WVlUYMWigiY07T91Fkk0+4A==}
  759. engines: {node: '>= 0.4'}
  760. eastasianwidth@0.2.0:
  761. resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
  762. electron-to-chromium@1.5.73:
  763. resolution: {integrity: sha512-8wGNxG9tAG5KhGd3eeA0o6ixhiNdgr0DcHWm85XPCphwZgD1lIEoi6t3VERayWao7SF7AAZTw6oARGJeVjH8Kg==}
  764. emoji-regex@8.0.0:
  765. resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
  766. emoji-regex@9.2.2:
  767. resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
  768. end-of-stream@1.4.4:
  769. resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
  770. es-abstract@1.23.5:
  771. resolution: {integrity: sha512-vlmniQ0WNPwXqA0BnmwV3Ng7HxiGlh6r5U6JcTMNx8OilcAGqVJBHJcPjqOMaczU9fRuRK5Px2BdVyPRnKMMVQ==}
  772. engines: {node: '>= 0.4'}
  773. es-define-property@1.0.1:
  774. resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
  775. engines: {node: '>= 0.4'}
  776. es-errors@1.3.0:
  777. resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
  778. engines: {node: '>= 0.4'}
  779. es-iterator-helpers@1.2.0:
  780. resolution: {integrity: sha512-tpxqxncxnpw3c93u8n3VOzACmRFoVmWJqbWXvX/JfKbkhBw1oslgPrUfeSt2psuqyEJFD6N/9lg5i7bsKpoq+Q==}
  781. engines: {node: '>= 0.4'}
  782. es-object-atoms@1.0.0:
  783. resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
  784. engines: {node: '>= 0.4'}
  785. es-set-tostringtag@2.0.3:
  786. resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==}
  787. engines: {node: '>= 0.4'}
  788. es-shim-unscopables@1.0.2:
  789. resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==}
  790. es-to-primitive@1.3.0:
  791. resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==}
  792. engines: {node: '>= 0.4'}
  793. escalade@3.2.0:
  794. resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
  795. engines: {node: '>=6'}
  796. escape-string-regexp@4.0.0:
  797. resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
  798. engines: {node: '>=10'}
  799. escape-string-regexp@5.0.0:
  800. resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
  801. engines: {node: '>=12'}
  802. eslint-config-next@13.0.2:
  803. resolution: {integrity: sha512-SrrHp+zBDYLjOFZdM5b9aW/pliK687Xxfa+qpDuL08Z04ReHhmz3L+maXaAqgrEVZHQximP7nh0El4yNDJW+CA==}
  804. peerDependencies:
  805. eslint: ^7.23.0 || ^8.0.0
  806. typescript: '>=3.3.1'
  807. peerDependenciesMeta:
  808. typescript:
  809. optional: true
  810. eslint-import-resolver-node@0.3.9:
  811. resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
  812. eslint-import-resolver-typescript@2.7.1:
  813. resolution: {integrity: sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ==}
  814. engines: {node: '>=4'}
  815. peerDependencies:
  816. eslint: '*'
  817. eslint-plugin-import: '*'
  818. eslint-module-utils@2.12.0:
  819. resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==}
  820. engines: {node: '>=4'}
  821. peerDependencies:
  822. '@typescript-eslint/parser': '*'
  823. eslint: '*'
  824. eslint-import-resolver-node: '*'
  825. eslint-import-resolver-typescript: '*'
  826. eslint-import-resolver-webpack: '*'
  827. peerDependenciesMeta:
  828. '@typescript-eslint/parser':
  829. optional: true
  830. eslint:
  831. optional: true
  832. eslint-import-resolver-node:
  833. optional: true
  834. eslint-import-resolver-typescript:
  835. optional: true
  836. eslint-import-resolver-webpack:
  837. optional: true
  838. eslint-plugin-import@2.31.0:
  839. resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==}
  840. engines: {node: '>=4'}
  841. peerDependencies:
  842. '@typescript-eslint/parser': '*'
  843. eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9
  844. peerDependenciesMeta:
  845. '@typescript-eslint/parser':
  846. optional: true
  847. eslint-plugin-jsx-a11y@6.10.2:
  848. resolution: {integrity: sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==}
  849. engines: {node: '>=4.0'}
  850. peerDependencies:
  851. eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9
  852. eslint-plugin-react-hooks@4.6.2:
  853. resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==}
  854. engines: {node: '>=10'}
  855. peerDependencies:
  856. eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
  857. eslint-plugin-react@7.37.2:
  858. resolution: {integrity: sha512-EsTAnj9fLVr/GZleBLFbj/sSuXeWmp1eXIN60ceYnZveqEaUCyW4X+Vh4WTdUhCkW4xutXYqTXCUSyqD4rB75w==}
  859. engines: {node: '>=4'}
  860. peerDependencies:
  861. eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
  862. eslint-scope@7.2.2:
  863. resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
  864. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  865. eslint-utils@3.0.0:
  866. resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
  867. engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
  868. peerDependencies:
  869. eslint: '>=5'
  870. eslint-visitor-keys@2.1.0:
  871. resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==}
  872. engines: {node: '>=10'}
  873. eslint-visitor-keys@3.4.3:
  874. resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
  875. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  876. eslint@8.26.0:
  877. resolution: {integrity: sha512-kzJkpaw1Bfwheq4VXUezFriD1GxszX6dUekM7Z3aC2o4hju+tsR/XyTC3RcoSD7jmy9VkPU3+N6YjVU2e96Oyg==}
  878. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  879. deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options.
  880. hasBin: true
  881. espree@9.6.1:
  882. resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
  883. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  884. esquery@1.6.0:
  885. resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
  886. engines: {node: '>=0.10'}
  887. esrecurse@4.3.0:
  888. resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
  889. engines: {node: '>=4.0'}
  890. estraverse@5.3.0:
  891. resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
  892. engines: {node: '>=4.0'}
  893. esutils@2.0.3:
  894. resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
  895. engines: {node: '>=0.10.0'}
  896. expand-template@2.0.3:
  897. resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==}
  898. engines: {node: '>=6'}
  899. fast-deep-equal@3.1.3:
  900. resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
  901. fast-fifo@1.3.2:
  902. resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==}
  903. fast-glob@3.3.2:
  904. resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
  905. engines: {node: '>=8.6.0'}
  906. fast-json-stable-stringify@2.1.0:
  907. resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
  908. fast-levenshtein@2.0.6:
  909. resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
  910. fastq@1.17.1:
  911. resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
  912. file-entry-cache@6.0.1:
  913. resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
  914. engines: {node: ^10.12.0 || >=12.0.0}
  915. fill-range@7.1.1:
  916. resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
  917. engines: {node: '>=8'}
  918. find-up@5.0.0:
  919. resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
  920. engines: {node: '>=10'}
  921. flat-cache@3.2.0:
  922. resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
  923. engines: {node: ^10.12.0 || >=12.0.0}
  924. flatted@3.3.2:
  925. resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==}
  926. focus-visible@5.2.1:
  927. resolution: {integrity: sha512-8Bx950VD1bWTQJEH/AM6SpEk+SU55aVnp4Ujhuuxy3eMEBCRwBnTBnVXr9YAPvZL3/CNjCa8u4IWfNmEO53whA==}
  928. for-each@0.3.3:
  929. resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
  930. foreground-child@3.3.0:
  931. resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==}
  932. engines: {node: '>=14'}
  933. fraction.js@4.3.7:
  934. resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
  935. fs-constants@1.0.0:
  936. resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
  937. fs.realpath@1.0.0:
  938. resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
  939. fsevents@2.3.3:
  940. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  941. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  942. os: [darwin]
  943. function-bind@1.1.2:
  944. resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
  945. function.prototype.name@1.1.6:
  946. resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
  947. engines: {node: '>= 0.4'}
  948. functions-have-names@1.2.3:
  949. resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
  950. get-intrinsic@1.2.6:
  951. resolution: {integrity: sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA==}
  952. engines: {node: '>= 0.4'}
  953. get-symbol-description@1.0.2:
  954. resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==}
  955. engines: {node: '>= 0.4'}
  956. github-from-package@0.0.0:
  957. resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==}
  958. glob-parent@5.1.2:
  959. resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
  960. engines: {node: '>= 6'}
  961. glob-parent@6.0.2:
  962. resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
  963. engines: {node: '>=10.13.0'}
  964. glob-to-regexp@0.4.1:
  965. resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
  966. glob@10.4.5:
  967. resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
  968. hasBin: true
  969. glob@7.1.7:
  970. resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==}
  971. deprecated: Glob versions prior to v9 are no longer supported
  972. glob@7.2.3:
  973. resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
  974. deprecated: Glob versions prior to v9 are no longer supported
  975. globals@13.24.0:
  976. resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
  977. engines: {node: '>=8'}
  978. globalthis@1.0.4:
  979. resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
  980. engines: {node: '>= 0.4'}
  981. globby@11.1.0:
  982. resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
  983. engines: {node: '>=10'}
  984. gopd@1.2.0:
  985. resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
  986. engines: {node: '>= 0.4'}
  987. graceful-fs@4.2.11:
  988. resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
  989. grapheme-splitter@1.0.4:
  990. resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==}
  991. has-bigints@1.0.2:
  992. resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
  993. has-flag@4.0.0:
  994. resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
  995. engines: {node: '>=8'}
  996. has-property-descriptors@1.0.2:
  997. resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
  998. has-proto@1.2.0:
  999. resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==}
  1000. engines: {node: '>= 0.4'}
  1001. has-symbols@1.1.0:
  1002. resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
  1003. engines: {node: '>= 0.4'}
  1004. has-tostringtag@1.0.2:
  1005. resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
  1006. engines: {node: '>= 0.4'}
  1007. hasown@2.0.2:
  1008. resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
  1009. engines: {node: '>= 0.4'}
  1010. html-to-image@1.11.11:
  1011. resolution: {integrity: sha512-9gux8QhvjRO/erSnDPv28noDZcPZmYE7e1vFsBLKLlRlKDSqNJYebj6Qz1TGd5lsRV+X+xYyjCKjuZdABinWjA==}
  1012. ieee754@1.2.1:
  1013. resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
  1014. ignore@5.3.2:
  1015. resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
  1016. engines: {node: '>= 4'}
  1017. import-fresh@3.3.0:
  1018. resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
  1019. engines: {node: '>=6'}
  1020. imurmurhash@0.1.4:
  1021. resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
  1022. engines: {node: '>=0.8.19'}
  1023. inflight@1.0.6:
  1024. resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
  1025. deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
  1026. inherits@2.0.4:
  1027. resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
  1028. ini@1.3.8:
  1029. resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
  1030. internal-slot@1.1.0:
  1031. resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==}
  1032. engines: {node: '>= 0.4'}
  1033. is-array-buffer@3.0.4:
  1034. resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==}
  1035. engines: {node: '>= 0.4'}
  1036. is-arrayish@0.3.2:
  1037. resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
  1038. is-async-function@2.0.0:
  1039. resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==}
  1040. engines: {node: '>= 0.4'}
  1041. is-bigint@1.1.0:
  1042. resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==}
  1043. engines: {node: '>= 0.4'}
  1044. is-binary-path@2.1.0:
  1045. resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
  1046. engines: {node: '>=8'}
  1047. is-boolean-object@1.2.1:
  1048. resolution: {integrity: sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng==}
  1049. engines: {node: '>= 0.4'}
  1050. is-callable@1.2.7:
  1051. resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
  1052. engines: {node: '>= 0.4'}
  1053. is-core-module@2.15.1:
  1054. resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==}
  1055. engines: {node: '>= 0.4'}
  1056. is-data-view@1.0.2:
  1057. resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==}
  1058. engines: {node: '>= 0.4'}
  1059. is-date-object@1.1.0:
  1060. resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==}
  1061. engines: {node: '>= 0.4'}
  1062. is-extglob@2.1.1:
  1063. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  1064. engines: {node: '>=0.10.0'}
  1065. is-finalizationregistry@1.1.0:
  1066. resolution: {integrity: sha512-qfMdqbAQEwBw78ZyReKnlA8ezmPdb9BemzIIip/JkjaZUhitfXDkkr+3QTboW0JrSXT1QWyYShpvnNHGZ4c4yA==}
  1067. engines: {node: '>= 0.4'}
  1068. is-fullwidth-code-point@3.0.0:
  1069. resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
  1070. engines: {node: '>=8'}
  1071. is-generator-function@1.0.10:
  1072. resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==}
  1073. engines: {node: '>= 0.4'}
  1074. is-glob@4.0.3:
  1075. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  1076. engines: {node: '>=0.10.0'}
  1077. is-map@2.0.3:
  1078. resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
  1079. engines: {node: '>= 0.4'}
  1080. is-negative-zero@2.0.3:
  1081. resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
  1082. engines: {node: '>= 0.4'}
  1083. is-number-object@1.1.0:
  1084. resolution: {integrity: sha512-KVSZV0Dunv9DTPkhXwcZ3Q+tUc9TsaE1ZwX5J2WMvsSGS6Md8TFPun5uwh0yRdrNerI6vf/tbJxqSx4c1ZI1Lw==}
  1085. engines: {node: '>= 0.4'}
  1086. is-number@7.0.0:
  1087. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  1088. engines: {node: '>=0.12.0'}
  1089. is-path-inside@3.0.3:
  1090. resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
  1091. engines: {node: '>=8'}
  1092. is-regex@1.2.1:
  1093. resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==}
  1094. engines: {node: '>= 0.4'}
  1095. is-set@2.0.3:
  1096. resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
  1097. engines: {node: '>= 0.4'}
  1098. is-shared-array-buffer@1.0.3:
  1099. resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==}
  1100. engines: {node: '>= 0.4'}
  1101. is-string@1.1.0:
  1102. resolution: {integrity: sha512-PlfzajuF9vSo5wErv3MJAKD/nqf9ngAs1NFQYm16nUYFO2IzxJ2hcm+IOCg+EEopdykNNUhVq5cz35cAUxU8+g==}
  1103. engines: {node: '>= 0.4'}
  1104. is-symbol@1.1.1:
  1105. resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==}
  1106. engines: {node: '>= 0.4'}
  1107. is-typed-array@1.1.13:
  1108. resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==}
  1109. engines: {node: '>= 0.4'}
  1110. is-weakmap@2.0.2:
  1111. resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
  1112. engines: {node: '>= 0.4'}
  1113. is-weakref@1.1.0:
  1114. resolution: {integrity: sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q==}
  1115. engines: {node: '>= 0.4'}
  1116. is-weakset@2.0.3:
  1117. resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==}
  1118. engines: {node: '>= 0.4'}
  1119. isarray@2.0.5:
  1120. resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
  1121. isexe@2.0.0:
  1122. resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
  1123. iterator.prototype@1.1.4:
  1124. resolution: {integrity: sha512-x4WH0BWmrMmg4oHHl+duwubhrvczGlyuGAZu3nvrf0UXOfPu8IhZObFEr7DE/iv01YgVZrsOiRcqw2srkKEDIA==}
  1125. engines: {node: '>= 0.4'}
  1126. jackspeak@3.4.3:
  1127. resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
  1128. jiti@1.21.6:
  1129. resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==}
  1130. hasBin: true
  1131. js-sdsl@4.4.2:
  1132. resolution: {integrity: sha512-dwXFwByc/ajSV6m5bcKAPwe4yDDF6D614pxmIi5odytzxRlwqF6nwoiCek80Ixc7Cvma5awClxrzFtxCQvcM8w==}
  1133. js-tokens@4.0.0:
  1134. resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
  1135. js-yaml@4.1.0:
  1136. resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
  1137. hasBin: true
  1138. json-buffer@3.0.1:
  1139. resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
  1140. json-schema-traverse@0.4.1:
  1141. resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
  1142. json-stable-stringify-without-jsonify@1.0.1:
  1143. resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
  1144. json5@1.0.2:
  1145. resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
  1146. hasBin: true
  1147. jsx-ast-utils@3.3.5:
  1148. resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==}
  1149. engines: {node: '>=4.0'}
  1150. keyv@4.5.4:
  1151. resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
  1152. language-subtag-registry@0.3.23:
  1153. resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==}
  1154. language-tags@1.0.9:
  1155. resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==}
  1156. engines: {node: '>=0.10'}
  1157. levn@0.4.1:
  1158. resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
  1159. engines: {node: '>= 0.8.0'}
  1160. lightense-images@1.0.17:
  1161. resolution: {integrity: sha512-onaXGhmKWFxnihtb0XOCIHs7ubyaFerFQ6uBal7BXhvZtLwGa6kClFI0/Kw0puQCZb7SY8gYFh9coYWZ7HhMXQ==}
  1162. lilconfig@3.1.3:
  1163. resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
  1164. engines: {node: '>=14'}
  1165. lines-and-columns@1.2.4:
  1166. resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
  1167. locate-path@6.0.0:
  1168. resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
  1169. engines: {node: '>=10'}
  1170. lodash.castarray@4.4.0:
  1171. resolution: {integrity: sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==}
  1172. lodash.isplainobject@4.0.6:
  1173. resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==}
  1174. lodash.merge@4.6.2:
  1175. resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
  1176. loose-envify@1.4.0:
  1177. resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
  1178. hasBin: true
  1179. lru-cache@10.4.3:
  1180. resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
  1181. math-intrinsics@1.0.0:
  1182. resolution: {integrity: sha512-4MqMiKP90ybymYvsut0CH2g4XWbfLtmlCkXmtmdcDCxNB+mQcu1w/1+L/VD7vi/PSv7X2JYV7SCcR+jiPXnQtA==}
  1183. engines: {node: '>= 0.4'}
  1184. merge2@1.4.1:
  1185. resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
  1186. engines: {node: '>= 8'}
  1187. micromatch@4.0.8:
  1188. resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
  1189. engines: {node: '>=8.6'}
  1190. mimic-response@3.1.0:
  1191. resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
  1192. engines: {node: '>=10'}
  1193. minimatch@3.1.2:
  1194. resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
  1195. minimatch@9.0.5:
  1196. resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
  1197. engines: {node: '>=16 || 14 >=14.17'}
  1198. minimist@1.2.8:
  1199. resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
  1200. minipass@7.1.2:
  1201. resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
  1202. engines: {node: '>=16 || 14 >=14.17'}
  1203. mkdirp-classic@0.5.3:
  1204. resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
  1205. ms@2.1.3:
  1206. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  1207. mz@2.7.0:
  1208. resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
  1209. nanoid@3.3.8:
  1210. resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==}
  1211. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  1212. hasBin: true
  1213. napi-build-utils@1.0.2:
  1214. resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==}
  1215. natural-compare@1.4.0:
  1216. resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
  1217. next@13.4.7:
  1218. resolution: {integrity: sha512-M8z3k9VmG51SRT6v5uDKdJXcAqLzP3C+vaKfLIAM0Mhx1um1G7MDnO63+m52qPdZfrTFzMZNzfsgvm3ghuVHIQ==}
  1219. engines: {node: '>=16.8.0'}
  1220. hasBin: true
  1221. peerDependencies:
  1222. '@opentelemetry/api': ^1.1.0
  1223. fibers: '>= 3.1.0'
  1224. react: ^18.2.0
  1225. react-dom: ^18.2.0
  1226. sass: ^1.3.0
  1227. peerDependenciesMeta:
  1228. '@opentelemetry/api':
  1229. optional: true
  1230. fibers:
  1231. optional: true
  1232. sass:
  1233. optional: true
  1234. node-abi@3.71.0:
  1235. resolution: {integrity: sha512-SZ40vRiy/+wRTf21hxkkEjPJZpARzUMVcJoQse2EF8qkUWbbO2z7vd5oA/H6bVH6SZQ5STGcu0KRDS7biNRfxw==}
  1236. engines: {node: '>=10'}
  1237. node-addon-api@6.1.0:
  1238. resolution: {integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==}
  1239. node-releases@2.0.19:
  1240. resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
  1241. normalize-path@3.0.0:
  1242. resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
  1243. engines: {node: '>=0.10.0'}
  1244. normalize-range@0.1.2:
  1245. resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
  1246. engines: {node: '>=0.10.0'}
  1247. object-assign@4.1.1:
  1248. resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
  1249. engines: {node: '>=0.10.0'}
  1250. object-hash@3.0.0:
  1251. resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
  1252. engines: {node: '>= 6'}
  1253. object-inspect@1.13.3:
  1254. resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==}
  1255. engines: {node: '>= 0.4'}
  1256. object-keys@1.1.1:
  1257. resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
  1258. engines: {node: '>= 0.4'}
  1259. object.assign@4.1.5:
  1260. resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
  1261. engines: {node: '>= 0.4'}
  1262. object.entries@1.1.8:
  1263. resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==}
  1264. engines: {node: '>= 0.4'}
  1265. object.fromentries@2.0.8:
  1266. resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==}
  1267. engines: {node: '>= 0.4'}
  1268. object.groupby@1.0.3:
  1269. resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==}
  1270. engines: {node: '>= 0.4'}
  1271. object.values@1.2.0:
  1272. resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==}
  1273. engines: {node: '>= 0.4'}
  1274. once@1.4.0:
  1275. resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
  1276. optionator@0.9.4:
  1277. resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
  1278. engines: {node: '>= 0.8.0'}
  1279. p-limit@3.1.0:
  1280. resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
  1281. engines: {node: '>=10'}
  1282. p-locate@5.0.0:
  1283. resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
  1284. engines: {node: '>=10'}
  1285. package-json-from-dist@1.0.1:
  1286. resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
  1287. parent-module@1.0.1:
  1288. resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
  1289. engines: {node: '>=6'}
  1290. path-exists@4.0.0:
  1291. resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
  1292. engines: {node: '>=8'}
  1293. path-is-absolute@1.0.1:
  1294. resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
  1295. engines: {node: '>=0.10.0'}
  1296. path-key@3.1.1:
  1297. resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
  1298. engines: {node: '>=8'}
  1299. path-parse@1.0.7:
  1300. resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
  1301. path-scurry@1.11.1:
  1302. resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
  1303. engines: {node: '>=16 || 14 >=14.18'}
  1304. path-type@4.0.0:
  1305. resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
  1306. engines: {node: '>=8'}
  1307. picocolors@1.1.1:
  1308. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  1309. picomatch@2.3.1:
  1310. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  1311. engines: {node: '>=8.6'}
  1312. pify@2.3.0:
  1313. resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
  1314. engines: {node: '>=0.10.0'}
  1315. pirates@4.0.6:
  1316. resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
  1317. engines: {node: '>= 6'}
  1318. possible-typed-array-names@1.0.0:
  1319. resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
  1320. engines: {node: '>= 0.4'}
  1321. postcss-focus-visible@6.0.4:
  1322. resolution: {integrity: sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==}
  1323. engines: {node: ^12 || ^14 || >=16}
  1324. peerDependencies:
  1325. postcss: ^8.4
  1326. postcss-import@14.1.0:
  1327. resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==}
  1328. engines: {node: '>=10.0.0'}
  1329. peerDependencies:
  1330. postcss: ^8.0.0
  1331. postcss-import@15.1.0:
  1332. resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
  1333. engines: {node: '>=14.0.0'}
  1334. peerDependencies:
  1335. postcss: ^8.0.0
  1336. postcss-js@4.0.1:
  1337. resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
  1338. engines: {node: ^12 || ^14 || >= 16}
  1339. peerDependencies:
  1340. postcss: ^8.4.21
  1341. postcss-load-config@4.0.2:
  1342. resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
  1343. engines: {node: '>= 14'}
  1344. peerDependencies:
  1345. postcss: '>=8.0.9'
  1346. ts-node: '>=9.0.0'
  1347. peerDependenciesMeta:
  1348. postcss:
  1349. optional: true
  1350. ts-node:
  1351. optional: true
  1352. postcss-nested@6.2.0:
  1353. resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==}
  1354. engines: {node: '>=12.0'}
  1355. peerDependencies:
  1356. postcss: ^8.2.14
  1357. postcss-selector-parser@6.0.10:
  1358. resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==}
  1359. engines: {node: '>=4'}
  1360. postcss-selector-parser@6.1.2:
  1361. resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
  1362. engines: {node: '>=4'}
  1363. postcss-value-parser@4.2.0:
  1364. resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
  1365. postcss@8.4.14:
  1366. resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==}
  1367. engines: {node: ^10 || ^12 || >=14}
  1368. postcss@8.4.49:
  1369. resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==}
  1370. engines: {node: ^10 || ^12 || >=14}
  1371. prebuild-install@7.1.2:
  1372. resolution: {integrity: sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ==}
  1373. engines: {node: '>=10'}
  1374. hasBin: true
  1375. prelude-ls@1.2.1:
  1376. resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
  1377. engines: {node: '>= 0.8.0'}
  1378. prettier-plugin-tailwindcss@0.2.8:
  1379. resolution: {integrity: sha512-KgPcEnJeIijlMjsA6WwYgRs5rh3/q76oInqtMXBA/EMcamrcYJpyhtRhyX1ayT9hnHlHTuO8sIifHF10WuSDKg==}
  1380. engines: {node: '>=12.17.0'}
  1381. peerDependencies:
  1382. '@ianvs/prettier-plugin-sort-imports': '*'
  1383. '@prettier/plugin-pug': '*'
  1384. '@shopify/prettier-plugin-liquid': '*'
  1385. '@shufo/prettier-plugin-blade': '*'
  1386. '@trivago/prettier-plugin-sort-imports': '*'
  1387. prettier: '>=2.2.0'
  1388. prettier-plugin-astro: '*'
  1389. prettier-plugin-css-order: '*'
  1390. prettier-plugin-import-sort: '*'
  1391. prettier-plugin-jsdoc: '*'
  1392. prettier-plugin-organize-attributes: '*'
  1393. prettier-plugin-organize-imports: '*'
  1394. prettier-plugin-style-order: '*'
  1395. prettier-plugin-svelte: '*'
  1396. prettier-plugin-twig-melody: '*'
  1397. peerDependenciesMeta:
  1398. '@ianvs/prettier-plugin-sort-imports':
  1399. optional: true
  1400. '@prettier/plugin-pug':
  1401. optional: true
  1402. '@shopify/prettier-plugin-liquid':
  1403. optional: true
  1404. '@shufo/prettier-plugin-blade':
  1405. optional: true
  1406. '@trivago/prettier-plugin-sort-imports':
  1407. optional: true
  1408. prettier-plugin-astro:
  1409. optional: true
  1410. prettier-plugin-css-order:
  1411. optional: true
  1412. prettier-plugin-import-sort:
  1413. optional: true
  1414. prettier-plugin-jsdoc:
  1415. optional: true
  1416. prettier-plugin-organize-attributes:
  1417. optional: true
  1418. prettier-plugin-organize-imports:
  1419. optional: true
  1420. prettier-plugin-style-order:
  1421. optional: true
  1422. prettier-plugin-svelte:
  1423. optional: true
  1424. prettier-plugin-twig-melody:
  1425. optional: true
  1426. prettier@2.8.8:
  1427. resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
  1428. engines: {node: '>=10.13.0'}
  1429. hasBin: true
  1430. prism-react-renderer@1.3.5:
  1431. resolution: {integrity: sha512-IJ+MSwBWKG+SM3b2SUfdrhC+gu01QkV2KmRQgREThBfSQRoufqRfxfHUxpG1WcaFjP+kojcFyO9Qqtpgt3qLCg==}
  1432. peerDependencies:
  1433. react: '>=0.14.9'
  1434. prismjs@1.29.0:
  1435. resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==}
  1436. engines: {node: '>=6'}
  1437. prop-types@15.8.1:
  1438. resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
  1439. pump@3.0.2:
  1440. resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==}
  1441. punycode@2.3.1:
  1442. resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
  1443. engines: {node: '>=6'}
  1444. queue-microtask@1.2.3:
  1445. resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
  1446. queue-tick@1.0.1:
  1447. resolution: {integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==}
  1448. rc@1.2.8:
  1449. resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
  1450. hasBin: true
  1451. react-dom@18.2.0:
  1452. resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
  1453. peerDependencies:
  1454. react: ^18.2.0
  1455. react-is@16.13.1:
  1456. resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
  1457. react@18.2.0:
  1458. resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
  1459. engines: {node: '>=0.10.0'}
  1460. reactflow@11.11.4:
  1461. resolution: {integrity: sha512-70FOtJkUWH3BAOsN+LU9lCrKoKbtOPnz2uq0CV2PLdNSwxTXOhCbsZr50GmZ+Rtw3jx8Uv7/vBFtCGixLfd4Og==}
  1462. peerDependencies:
  1463. react: '>=17'
  1464. react-dom: '>=17'
  1465. read-cache@1.0.0:
  1466. resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
  1467. readable-stream@3.6.2:
  1468. resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
  1469. engines: {node: '>= 6'}
  1470. readdirp@3.6.0:
  1471. resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
  1472. engines: {node: '>=8.10.0'}
  1473. reflect.getprototypeof@1.0.8:
  1474. resolution: {integrity: sha512-B5dj6usc5dkk8uFliwjwDHM8To5/QwdKz9JcBZ8Ic4G1f0YmeeJTtE/ZTdgRFPAfxZFiUaPhZ1Jcs4qeagItGQ==}
  1475. engines: {node: '>= 0.4'}
  1476. regexp.prototype.flags@1.5.3:
  1477. resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==}
  1478. engines: {node: '>= 0.4'}
  1479. regexpp@3.2.0:
  1480. resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==}
  1481. engines: {node: '>=8'}
  1482. resolve-from@4.0.0:
  1483. resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
  1484. engines: {node: '>=4'}
  1485. resolve@1.22.8:
  1486. resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
  1487. hasBin: true
  1488. resolve@2.0.0-next.5:
  1489. resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
  1490. hasBin: true
  1491. reusify@1.0.4:
  1492. resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
  1493. engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
  1494. rimraf@3.0.2:
  1495. resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
  1496. deprecated: Rimraf versions prior to v4 are no longer supported
  1497. hasBin: true
  1498. run-parallel@1.2.0:
  1499. resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
  1500. safe-array-concat@1.1.3:
  1501. resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==}
  1502. engines: {node: '>=0.4'}
  1503. safe-buffer@5.2.1:
  1504. resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
  1505. safe-regex-test@1.1.0:
  1506. resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==}
  1507. engines: {node: '>= 0.4'}
  1508. scheduler@0.23.2:
  1509. resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
  1510. search-insights@2.17.3:
  1511. resolution: {integrity: sha512-RQPdCYTa8A68uM2jwxoY842xDhvx3E5LFL1LxvxCNMev4o5mLuokczhzjAgGwUZBAmOKZknArSxLKmXtIi2AxQ==}
  1512. semver@6.3.1:
  1513. resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
  1514. hasBin: true
  1515. semver@7.6.3:
  1516. resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
  1517. engines: {node: '>=10'}
  1518. hasBin: true
  1519. set-function-length@1.2.2:
  1520. resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
  1521. engines: {node: '>= 0.4'}
  1522. set-function-name@2.0.2:
  1523. resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
  1524. engines: {node: '>= 0.4'}
  1525. sharp@0.32.6:
  1526. resolution: {integrity: sha512-KyLTWwgcR9Oe4d9HwCwNM2l7+J0dUQwn/yf7S0EnTtb0eVS4RxO0eUSvxPtzT4F3SY+C4K6fqdv/DO27sJ/v/w==}
  1527. engines: {node: '>=14.15.0'}
  1528. shebang-command@2.0.0:
  1529. resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
  1530. engines: {node: '>=8'}
  1531. shebang-regex@3.0.0:
  1532. resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
  1533. engines: {node: '>=8'}
  1534. side-channel-list@1.0.0:
  1535. resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
  1536. engines: {node: '>= 0.4'}
  1537. side-channel-map@1.0.1:
  1538. resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
  1539. engines: {node: '>= 0.4'}
  1540. side-channel-weakmap@1.0.2:
  1541. resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
  1542. engines: {node: '>= 0.4'}
  1543. side-channel@1.1.0:
  1544. resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
  1545. engines: {node: '>= 0.4'}
  1546. signal-exit@4.1.0:
  1547. resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
  1548. engines: {node: '>=14'}
  1549. simple-concat@1.0.1:
  1550. resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==}
  1551. simple-get@4.0.1:
  1552. resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==}
  1553. simple-swizzle@0.2.2:
  1554. resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
  1555. slash@3.0.0:
  1556. resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
  1557. engines: {node: '>=8'}
  1558. source-map-js@1.2.1:
  1559. resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  1560. engines: {node: '>=0.10.0'}
  1561. streamsearch@1.1.0:
  1562. resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
  1563. engines: {node: '>=10.0.0'}
  1564. streamx@2.21.1:
  1565. resolution: {integrity: sha512-PhP9wUnFLa+91CPy3N6tiQsK+gnYyUNuk15S3YG/zjYE7RuPeCjJngqnzpC31ow0lzBHQ+QGO4cNJnd0djYUsw==}
  1566. string-width@4.2.3:
  1567. resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
  1568. engines: {node: '>=8'}
  1569. string-width@5.1.2:
  1570. resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
  1571. engines: {node: '>=12'}
  1572. string.prototype.includes@2.0.1:
  1573. resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==}
  1574. engines: {node: '>= 0.4'}
  1575. string.prototype.matchall@4.0.11:
  1576. resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==}
  1577. engines: {node: '>= 0.4'}
  1578. string.prototype.repeat@1.0.0:
  1579. resolution: {integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==}
  1580. string.prototype.trim@1.2.10:
  1581. resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==}
  1582. engines: {node: '>= 0.4'}
  1583. string.prototype.trimend@1.0.9:
  1584. resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==}
  1585. engines: {node: '>= 0.4'}
  1586. string.prototype.trimstart@1.0.8:
  1587. resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
  1588. engines: {node: '>= 0.4'}
  1589. string_decoder@1.3.0:
  1590. resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
  1591. strip-ansi@6.0.1:
  1592. resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
  1593. engines: {node: '>=8'}
  1594. strip-ansi@7.1.0:
  1595. resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
  1596. engines: {node: '>=12'}
  1597. strip-bom@3.0.0:
  1598. resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
  1599. engines: {node: '>=4'}
  1600. strip-json-comments@2.0.1:
  1601. resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
  1602. engines: {node: '>=0.10.0'}
  1603. strip-json-comments@3.1.1:
  1604. resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
  1605. engines: {node: '>=8'}
  1606. styled-jsx@5.1.1:
  1607. resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
  1608. engines: {node: '>= 12.0.0'}
  1609. peerDependencies:
  1610. '@babel/core': '*'
  1611. babel-plugin-macros: '*'
  1612. react: '>= 16.8.0 || 17.x.x || ^18.0.0-0'
  1613. peerDependenciesMeta:
  1614. '@babel/core':
  1615. optional: true
  1616. babel-plugin-macros:
  1617. optional: true
  1618. sucrase@3.35.0:
  1619. resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
  1620. engines: {node: '>=16 || 14 >=14.17'}
  1621. hasBin: true
  1622. supports-color@7.2.0:
  1623. resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
  1624. engines: {node: '>=8'}
  1625. supports-preserve-symlinks-flag@1.0.0:
  1626. resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
  1627. engines: {node: '>= 0.4'}
  1628. tabbable@6.2.0:
  1629. resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==}
  1630. tailwindcss@3.4.16:
  1631. resolution: {integrity: sha512-TI4Cyx7gDiZ6r44ewaJmt0o6BrMCT5aK5e0rmJ/G9Xq3w7CX/5VXl/zIPEJZFUK5VEqwByyhqNPycPlvcK4ZNw==}
  1632. engines: {node: '>=14.0.0'}
  1633. hasBin: true
  1634. tar-fs@2.1.1:
  1635. resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==}
  1636. tar-fs@3.0.6:
  1637. resolution: {integrity: sha512-iokBDQQkUyeXhgPYaZxmczGPhnhXZ0CmrqI+MOb/WFGS9DW5wnfrLgtjUJBvz50vQ3qfRwJ62QVoCFu8mPVu5w==}
  1638. tar-stream@2.2.0:
  1639. resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
  1640. engines: {node: '>=6'}
  1641. tar-stream@3.1.7:
  1642. resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==}
  1643. text-decoder@1.2.2:
  1644. resolution: {integrity: sha512-/MDslo7ZyWTA2vnk1j7XoDVfXsGk3tp+zFEJHJGm0UjIlQifonVFwlVbQDFh8KJzTBnT8ie115TYqir6bclddA==}
  1645. text-table@0.2.0:
  1646. resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
  1647. thenify-all@1.6.0:
  1648. resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
  1649. engines: {node: '>=0.8'}
  1650. thenify@3.3.1:
  1651. resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
  1652. to-regex-range@5.0.1:
  1653. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  1654. engines: {node: '>=8.0'}
  1655. ts-interface-checker@0.1.13:
  1656. resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
  1657. tsconfig-paths@3.15.0:
  1658. resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
  1659. tslib@1.14.1:
  1660. resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
  1661. tslib@2.8.1:
  1662. resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
  1663. tsutils@3.21.0:
  1664. resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
  1665. engines: {node: '>= 6'}
  1666. peerDependencies:
  1667. typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
  1668. tunnel-agent@0.6.0:
  1669. resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
  1670. type-check@0.4.0:
  1671. resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
  1672. engines: {node: '>= 0.8.0'}
  1673. type-fest@0.20.2:
  1674. resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
  1675. engines: {node: '>=10'}
  1676. typed-array-buffer@1.0.2:
  1677. resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==}
  1678. engines: {node: '>= 0.4'}
  1679. typed-array-byte-length@1.0.1:
  1680. resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==}
  1681. engines: {node: '>= 0.4'}
  1682. typed-array-byte-offset@1.0.3:
  1683. resolution: {integrity: sha512-GsvTyUHTriq6o/bHcTd0vM7OQ9JEdlvluu9YISaA7+KzDzPaIzEeDFNkTfhdE3MYcNhNi0vq/LlegYgIs5yPAw==}
  1684. engines: {node: '>= 0.4'}
  1685. typed-array-length@1.0.7:
  1686. resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==}
  1687. engines: {node: '>= 0.4'}
  1688. typescript@5.7.3:
  1689. resolution: {integrity: sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==}
  1690. engines: {node: '>=14.17'}
  1691. hasBin: true
  1692. unbox-primitive@1.0.2:
  1693. resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
  1694. update-browserslist-db@1.1.1:
  1695. resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==}
  1696. hasBin: true
  1697. peerDependencies:
  1698. browserslist: '>= 4.21.0'
  1699. uri-js@4.4.1:
  1700. resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
  1701. use-sync-external-store@1.2.2:
  1702. resolution: {integrity: sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==}
  1703. peerDependencies:
  1704. react: ^16.8.0 || ^17.0.0 || ^18.0.0
  1705. util-deprecate@1.0.2:
  1706. resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
  1707. watchpack@2.4.0:
  1708. resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==}
  1709. engines: {node: '>=10.13.0'}
  1710. which-boxed-primitive@1.1.0:
  1711. resolution: {integrity: sha512-Ei7Miu/AXe2JJ4iNF5j/UphAgRoma4trE6PtisM09bPygb3egMH3YLW/befsWb1A1AxvNSFidOFTB18XtnIIng==}
  1712. engines: {node: '>= 0.4'}
  1713. which-builtin-type@1.2.1:
  1714. resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==}
  1715. engines: {node: '>= 0.4'}
  1716. which-collection@1.0.2:
  1717. resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
  1718. engines: {node: '>= 0.4'}
  1719. which-typed-array@1.1.16:
  1720. resolution: {integrity: sha512-g+N+GAWiRj66DngFwHvISJd+ITsyphZvD1vChfVg6cEdnzy53GzB3oy0fUNlvhz7H7+MiqhYr26qxQShCpKTTQ==}
  1721. engines: {node: '>= 0.4'}
  1722. which@2.0.2:
  1723. resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
  1724. engines: {node: '>= 8'}
  1725. hasBin: true
  1726. word-wrap@1.2.5:
  1727. resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
  1728. engines: {node: '>=0.10.0'}
  1729. wrap-ansi@7.0.0:
  1730. resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
  1731. engines: {node: '>=10'}
  1732. wrap-ansi@8.1.0:
  1733. resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
  1734. engines: {node: '>=12'}
  1735. wrappy@1.0.2:
  1736. resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
  1737. yaml@2.6.1:
  1738. resolution: {integrity: sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==}
  1739. engines: {node: '>= 14'}
  1740. hasBin: true
  1741. yocto-queue@0.1.0:
  1742. resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
  1743. engines: {node: '>=10'}
  1744. zod@3.21.4:
  1745. resolution: {integrity: sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==}
  1746. zustand@4.5.5:
  1747. resolution: {integrity: sha512-+0PALYNJNgK6hldkgDq2vLrw5f6g/jCInz52n9RTpropGgeAf/ioFUCdtsjCqu4gNhW9D01rUQBROoRjdzyn2Q==}
  1748. engines: {node: '>=12.7.0'}
  1749. peerDependencies:
  1750. '@types/react': '>=16.8'
  1751. immer: '>=9.0.6'
  1752. react: '>=16.8'
  1753. peerDependenciesMeta:
  1754. '@types/react':
  1755. optional: true
  1756. immer:
  1757. optional: true
  1758. react:
  1759. optional: true
  1760. snapshots:
  1761. '@algolia/autocomplete-core@1.17.7(@algolia/client-search@5.19.0)(algoliasearch@5.17.1)(search-insights@2.17.3)':
  1762. dependencies:
  1763. '@algolia/autocomplete-plugin-algolia-insights': 1.17.7(@algolia/client-search@5.19.0)(algoliasearch@5.17.1)(search-insights@2.17.3)
  1764. '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.19.0)(algoliasearch@5.17.1)
  1765. transitivePeerDependencies:
  1766. - '@algolia/client-search'
  1767. - algoliasearch
  1768. - search-insights
  1769. '@algolia/autocomplete-plugin-algolia-insights@1.17.7(@algolia/client-search@5.19.0)(algoliasearch@5.17.1)(search-insights@2.17.3)':
  1770. dependencies:
  1771. '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.19.0)(algoliasearch@5.17.1)
  1772. search-insights: 2.17.3
  1773. transitivePeerDependencies:
  1774. - '@algolia/client-search'
  1775. - algoliasearch
  1776. '@algolia/autocomplete-preset-algolia@1.17.7(@algolia/client-search@5.19.0)(algoliasearch@5.17.1)':
  1777. dependencies:
  1778. '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.19.0)(algoliasearch@5.17.1)
  1779. '@algolia/client-search': 5.19.0
  1780. algoliasearch: 5.17.1
  1781. '@algolia/autocomplete-shared@1.17.7(@algolia/client-search@5.19.0)(algoliasearch@5.17.1)':
  1782. dependencies:
  1783. '@algolia/client-search': 5.19.0
  1784. algoliasearch: 5.17.1
  1785. '@algolia/client-abtesting@5.17.1':
  1786. dependencies:
  1787. '@algolia/client-common': 5.17.1
  1788. '@algolia/requester-browser-xhr': 5.17.1
  1789. '@algolia/requester-fetch': 5.17.1
  1790. '@algolia/requester-node-http': 5.17.1
  1791. '@algolia/client-analytics@5.17.1':
  1792. dependencies:
  1793. '@algolia/client-common': 5.17.1
  1794. '@algolia/requester-browser-xhr': 5.17.1
  1795. '@algolia/requester-fetch': 5.17.1
  1796. '@algolia/requester-node-http': 5.17.1
  1797. '@algolia/client-common@5.17.1': {}
  1798. '@algolia/client-common@5.19.0': {}
  1799. '@algolia/client-insights@5.17.1':
  1800. dependencies:
  1801. '@algolia/client-common': 5.17.1
  1802. '@algolia/requester-browser-xhr': 5.17.1
  1803. '@algolia/requester-fetch': 5.17.1
  1804. '@algolia/requester-node-http': 5.17.1
  1805. '@algolia/client-personalization@5.17.1':
  1806. dependencies:
  1807. '@algolia/client-common': 5.17.1
  1808. '@algolia/requester-browser-xhr': 5.17.1
  1809. '@algolia/requester-fetch': 5.17.1
  1810. '@algolia/requester-node-http': 5.17.1
  1811. '@algolia/client-query-suggestions@5.17.1':
  1812. dependencies:
  1813. '@algolia/client-common': 5.17.1
  1814. '@algolia/requester-browser-xhr': 5.17.1
  1815. '@algolia/requester-fetch': 5.17.1
  1816. '@algolia/requester-node-http': 5.17.1
  1817. '@algolia/client-search@5.17.1':
  1818. dependencies:
  1819. '@algolia/client-common': 5.17.1
  1820. '@algolia/requester-browser-xhr': 5.17.1
  1821. '@algolia/requester-fetch': 5.17.1
  1822. '@algolia/requester-node-http': 5.17.1
  1823. '@algolia/client-search@5.19.0':
  1824. dependencies:
  1825. '@algolia/client-common': 5.19.0
  1826. '@algolia/requester-browser-xhr': 5.19.0
  1827. '@algolia/requester-fetch': 5.19.0
  1828. '@algolia/requester-node-http': 5.19.0
  1829. '@algolia/ingestion@1.17.1':
  1830. dependencies:
  1831. '@algolia/client-common': 5.17.1
  1832. '@algolia/requester-browser-xhr': 5.17.1
  1833. '@algolia/requester-fetch': 5.17.1
  1834. '@algolia/requester-node-http': 5.17.1
  1835. '@algolia/monitoring@1.17.1':
  1836. dependencies:
  1837. '@algolia/client-common': 5.17.1
  1838. '@algolia/requester-browser-xhr': 5.17.1
  1839. '@algolia/requester-fetch': 5.17.1
  1840. '@algolia/requester-node-http': 5.17.1
  1841. '@algolia/recommend@5.17.1':
  1842. dependencies:
  1843. '@algolia/client-common': 5.17.1
  1844. '@algolia/requester-browser-xhr': 5.17.1
  1845. '@algolia/requester-fetch': 5.17.1
  1846. '@algolia/requester-node-http': 5.17.1
  1847. '@algolia/requester-browser-xhr@5.17.1':
  1848. dependencies:
  1849. '@algolia/client-common': 5.17.1
  1850. '@algolia/requester-browser-xhr@5.19.0':
  1851. dependencies:
  1852. '@algolia/client-common': 5.19.0
  1853. '@algolia/requester-fetch@5.17.1':
  1854. dependencies:
  1855. '@algolia/client-common': 5.17.1
  1856. '@algolia/requester-fetch@5.19.0':
  1857. dependencies:
  1858. '@algolia/client-common': 5.19.0
  1859. '@algolia/requester-node-http@5.17.1':
  1860. dependencies:
  1861. '@algolia/client-common': 5.17.1
  1862. '@algolia/requester-node-http@5.19.0':
  1863. dependencies:
  1864. '@algolia/client-common': 5.19.0
  1865. '@alloc/quick-lru@5.2.0': {}
  1866. '@docsearch/css@3.8.0': {}
  1867. '@docsearch/react@3.8.0(@algolia/client-search@5.19.0)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.17.3)':
  1868. dependencies:
  1869. '@algolia/autocomplete-core': 1.17.7(@algolia/client-search@5.19.0)(algoliasearch@5.17.1)(search-insights@2.17.3)
  1870. '@algolia/autocomplete-preset-algolia': 1.17.7(@algolia/client-search@5.19.0)(algoliasearch@5.17.1)
  1871. '@docsearch/css': 3.8.0
  1872. algoliasearch: 5.17.1
  1873. react: 18.2.0
  1874. react-dom: 18.2.0(react@18.2.0)
  1875. search-insights: 2.17.3
  1876. transitivePeerDependencies:
  1877. - '@algolia/client-search'
  1878. '@eslint/eslintrc@1.4.1':
  1879. dependencies:
  1880. ajv: 6.12.6
  1881. debug: 4.4.0
  1882. espree: 9.6.1
  1883. globals: 13.24.0
  1884. ignore: 5.3.2
  1885. import-fresh: 3.3.0
  1886. js-yaml: 4.1.0
  1887. minimatch: 3.1.2
  1888. strip-json-comments: 3.1.1
  1889. transitivePeerDependencies:
  1890. - supports-color
  1891. '@floating-ui/core@1.6.8':
  1892. dependencies:
  1893. '@floating-ui/utils': 0.2.8
  1894. '@floating-ui/dom@1.6.12':
  1895. dependencies:
  1896. '@floating-ui/core': 1.6.8
  1897. '@floating-ui/utils': 0.2.8
  1898. '@floating-ui/react-dom@2.1.2(react-dom@18.2.0)(react@18.2.0)':
  1899. dependencies:
  1900. '@floating-ui/dom': 1.6.12
  1901. react: 18.2.0
  1902. react-dom: 18.2.0(react@18.2.0)
  1903. '@floating-ui/react@0.26.28(react-dom@18.2.0)(react@18.2.0)':
  1904. dependencies:
  1905. '@floating-ui/react-dom': 2.1.2(react-dom@18.2.0)(react@18.2.0)
  1906. '@floating-ui/utils': 0.2.8
  1907. react: 18.2.0
  1908. react-dom: 18.2.0(react@18.2.0)
  1909. tabbable: 6.2.0
  1910. '@floating-ui/utils@0.2.8': {}
  1911. '@headlessui/react@2.2.0(react-dom@18.2.0)(react@18.2.0)':
  1912. dependencies:
  1913. '@floating-ui/react': 0.26.28(react-dom@18.2.0)(react@18.2.0)
  1914. '@react-aria/focus': 3.19.0(react@18.2.0)
  1915. '@react-aria/interactions': 3.22.5(react@18.2.0)
  1916. '@tanstack/react-virtual': 3.11.1(react-dom@18.2.0)(react@18.2.0)
  1917. react: 18.2.0
  1918. react-dom: 18.2.0(react@18.2.0)
  1919. '@heroicons/react@2.2.0(react@18.2.0)':
  1920. dependencies:
  1921. react: 18.2.0
  1922. '@hotjar/browser@1.0.9': {}
  1923. '@humanwhocodes/config-array@0.11.14':
  1924. dependencies:
  1925. '@humanwhocodes/object-schema': 2.0.3
  1926. debug: 4.4.0
  1927. minimatch: 3.1.2
  1928. transitivePeerDependencies:
  1929. - supports-color
  1930. '@humanwhocodes/module-importer@1.0.1': {}
  1931. '@humanwhocodes/object-schema@2.0.3': {}
  1932. '@isaacs/cliui@8.0.2':
  1933. dependencies:
  1934. string-width: 5.1.2
  1935. string-width-cjs: string-width@4.2.3
  1936. strip-ansi: 7.1.0
  1937. strip-ansi-cjs: strip-ansi@6.0.1
  1938. wrap-ansi: 8.1.0
  1939. wrap-ansi-cjs: wrap-ansi@7.0.0
  1940. '@jridgewell/gen-mapping@0.3.8':
  1941. dependencies:
  1942. '@jridgewell/set-array': 1.2.1
  1943. '@jridgewell/sourcemap-codec': 1.5.0
  1944. '@jridgewell/trace-mapping': 0.3.25
  1945. '@jridgewell/resolve-uri@3.1.2': {}
  1946. '@jridgewell/set-array@1.2.1': {}
  1947. '@jridgewell/sourcemap-codec@1.5.0': {}
  1948. '@jridgewell/trace-mapping@0.3.25':
  1949. dependencies:
  1950. '@jridgewell/resolve-uri': 3.1.2
  1951. '@jridgewell/sourcemap-codec': 1.5.0
  1952. '@markdoc/markdoc@0.3.0(react@18.2.0)':
  1953. dependencies:
  1954. react: 18.2.0
  1955. optionalDependencies:
  1956. '@types/markdown-it': 12.2.3
  1957. '@markdoc/next.js@0.2.3(@markdoc/markdoc@0.3.0)(next@13.4.7)(react@18.2.0)':
  1958. dependencies:
  1959. '@markdoc/markdoc': 0.3.0(react@18.2.0)
  1960. js-yaml: 4.1.0
  1961. next: 13.4.7(react-dom@18.2.0)(react@18.2.0)
  1962. react: 18.2.0
  1963. '@next/env@13.4.7': {}
  1964. '@next/eslint-plugin-next@13.0.2':
  1965. dependencies:
  1966. glob: 7.1.7
  1967. '@next/swc-darwin-arm64@13.4.7':
  1968. optional: true
  1969. '@next/swc-darwin-x64@13.4.7':
  1970. optional: true
  1971. '@next/swc-linux-arm64-gnu@13.4.7':
  1972. optional: true
  1973. '@next/swc-linux-arm64-musl@13.4.7':
  1974. optional: true
  1975. '@next/swc-linux-x64-gnu@13.4.7':
  1976. optional: true
  1977. '@next/swc-linux-x64-musl@13.4.7':
  1978. optional: true
  1979. '@next/swc-win32-arm64-msvc@13.4.7':
  1980. optional: true
  1981. '@next/swc-win32-ia32-msvc@13.4.7':
  1982. optional: true
  1983. '@next/swc-win32-x64-msvc@13.4.7':
  1984. optional: true
  1985. '@nodelib/fs.scandir@2.1.5':
  1986. dependencies:
  1987. '@nodelib/fs.stat': 2.0.5
  1988. run-parallel: 1.2.0
  1989. '@nodelib/fs.stat@2.0.5': {}
  1990. '@nodelib/fs.walk@1.2.8':
  1991. dependencies:
  1992. '@nodelib/fs.scandir': 2.1.5
  1993. fastq: 1.17.1
  1994. '@pkgjs/parseargs@0.11.0':
  1995. optional: true
  1996. '@react-aria/focus@3.19.0(react@18.2.0)':
  1997. dependencies:
  1998. '@react-aria/interactions': 3.22.5(react@18.2.0)
  1999. '@react-aria/utils': 3.26.0(react@18.2.0)
  2000. '@react-types/shared': 3.26.0(react@18.2.0)
  2001. '@swc/helpers': 0.5.15
  2002. clsx: 2.1.1
  2003. react: 18.2.0
  2004. '@react-aria/interactions@3.22.5(react@18.2.0)':
  2005. dependencies:
  2006. '@react-aria/ssr': 3.9.7(react@18.2.0)
  2007. '@react-aria/utils': 3.26.0(react@18.2.0)
  2008. '@react-types/shared': 3.26.0(react@18.2.0)
  2009. '@swc/helpers': 0.5.15
  2010. react: 18.2.0
  2011. '@react-aria/ssr@3.9.7(react@18.2.0)':
  2012. dependencies:
  2013. '@swc/helpers': 0.5.15
  2014. react: 18.2.0
  2015. '@react-aria/utils@3.26.0(react@18.2.0)':
  2016. dependencies:
  2017. '@react-aria/ssr': 3.9.7(react@18.2.0)
  2018. '@react-stately/utils': 3.10.5(react@18.2.0)
  2019. '@react-types/shared': 3.26.0(react@18.2.0)
  2020. '@swc/helpers': 0.5.15
  2021. clsx: 2.1.1
  2022. react: 18.2.0
  2023. '@react-stately/utils@3.10.5(react@18.2.0)':
  2024. dependencies:
  2025. '@swc/helpers': 0.5.15
  2026. react: 18.2.0
  2027. '@react-types/shared@3.26.0(react@18.2.0)':
  2028. dependencies:
  2029. react: 18.2.0
  2030. '@reactflow/background@11.3.14(react-dom@18.2.0)(react@18.2.0)':
  2031. dependencies:
  2032. '@reactflow/core': 11.11.4(react-dom@18.2.0)(react@18.2.0)
  2033. classcat: 5.0.5
  2034. react: 18.2.0
  2035. react-dom: 18.2.0(react@18.2.0)
  2036. zustand: 4.5.5(react@18.2.0)
  2037. transitivePeerDependencies:
  2038. - '@types/react'
  2039. - immer
  2040. '@reactflow/controls@11.2.14(react-dom@18.2.0)(react@18.2.0)':
  2041. dependencies:
  2042. '@reactflow/core': 11.11.4(react-dom@18.2.0)(react@18.2.0)
  2043. classcat: 5.0.5
  2044. react: 18.2.0
  2045. react-dom: 18.2.0(react@18.2.0)
  2046. zustand: 4.5.5(react@18.2.0)
  2047. transitivePeerDependencies:
  2048. - '@types/react'
  2049. - immer
  2050. '@reactflow/core@11.11.4(react-dom@18.2.0)(react@18.2.0)':
  2051. dependencies:
  2052. '@types/d3': 7.4.3
  2053. '@types/d3-drag': 3.0.7
  2054. '@types/d3-selection': 3.0.11
  2055. '@types/d3-zoom': 3.0.8
  2056. classcat: 5.0.5
  2057. d3-drag: 3.0.0
  2058. d3-selection: 3.0.0
  2059. d3-zoom: 3.0.0
  2060. react: 18.2.0
  2061. react-dom: 18.2.0(react@18.2.0)
  2062. zustand: 4.5.5(react@18.2.0)
  2063. transitivePeerDependencies:
  2064. - '@types/react'
  2065. - immer
  2066. '@reactflow/minimap@11.7.14(react-dom@18.2.0)(react@18.2.0)':
  2067. dependencies:
  2068. '@reactflow/core': 11.11.4(react-dom@18.2.0)(react@18.2.0)
  2069. '@types/d3-selection': 3.0.11
  2070. '@types/d3-zoom': 3.0.8
  2071. classcat: 5.0.5
  2072. d3-selection: 3.0.0
  2073. d3-zoom: 3.0.0
  2074. react: 18.2.0
  2075. react-dom: 18.2.0(react@18.2.0)
  2076. zustand: 4.5.5(react@18.2.0)
  2077. transitivePeerDependencies:
  2078. - '@types/react'
  2079. - immer
  2080. '@reactflow/node-resizer@2.2.14(react-dom@18.2.0)(react@18.2.0)':
  2081. dependencies:
  2082. '@reactflow/core': 11.11.4(react-dom@18.2.0)(react@18.2.0)
  2083. classcat: 5.0.5
  2084. d3-drag: 3.0.0
  2085. d3-selection: 3.0.0
  2086. react: 18.2.0
  2087. react-dom: 18.2.0(react@18.2.0)
  2088. zustand: 4.5.5(react@18.2.0)
  2089. transitivePeerDependencies:
  2090. - '@types/react'
  2091. - immer
  2092. '@reactflow/node-toolbar@1.3.14(react-dom@18.2.0)(react@18.2.0)':
  2093. dependencies:
  2094. '@reactflow/core': 11.11.4(react-dom@18.2.0)(react@18.2.0)
  2095. classcat: 5.0.5
  2096. react: 18.2.0
  2097. react-dom: 18.2.0(react@18.2.0)
  2098. zustand: 4.5.5(react@18.2.0)
  2099. transitivePeerDependencies:
  2100. - '@types/react'
  2101. - immer
  2102. '@rtsao/scc@1.1.0': {}
  2103. '@rushstack/eslint-patch@1.10.4': {}
  2104. '@sindresorhus/slugify@2.2.1':
  2105. dependencies:
  2106. '@sindresorhus/transliterate': 1.6.0
  2107. escape-string-regexp: 5.0.0
  2108. '@sindresorhus/transliterate@1.6.0':
  2109. dependencies:
  2110. escape-string-regexp: 5.0.0
  2111. '@swc/helpers@0.5.1':
  2112. dependencies:
  2113. tslib: 2.8.1
  2114. '@swc/helpers@0.5.15':
  2115. dependencies:
  2116. tslib: 2.8.1
  2117. '@tailwindcss/typography@0.5.15(tailwindcss@3.4.16)':
  2118. dependencies:
  2119. lodash.castarray: 4.4.0
  2120. lodash.isplainobject: 4.0.6
  2121. lodash.merge: 4.6.2
  2122. postcss-selector-parser: 6.0.10
  2123. tailwindcss: 3.4.16
  2124. '@tanstack/react-virtual@3.11.1(react-dom@18.2.0)(react@18.2.0)':
  2125. dependencies:
  2126. '@tanstack/virtual-core': 3.10.9
  2127. react: 18.2.0
  2128. react-dom: 18.2.0(react@18.2.0)
  2129. '@tanstack/virtual-core@3.10.9': {}
  2130. '@types/d3-array@3.2.1': {}
  2131. '@types/d3-axis@3.0.6':
  2132. dependencies:
  2133. '@types/d3-selection': 3.0.11
  2134. '@types/d3-brush@3.0.6':
  2135. dependencies:
  2136. '@types/d3-selection': 3.0.11
  2137. '@types/d3-chord@3.0.6': {}
  2138. '@types/d3-color@3.1.3': {}
  2139. '@types/d3-contour@3.0.6':
  2140. dependencies:
  2141. '@types/d3-array': 3.2.1
  2142. '@types/geojson': 7946.0.15
  2143. '@types/d3-delaunay@6.0.4': {}
  2144. '@types/d3-dispatch@3.0.6': {}
  2145. '@types/d3-drag@3.0.7':
  2146. dependencies:
  2147. '@types/d3-selection': 3.0.11
  2148. '@types/d3-dsv@3.0.7': {}
  2149. '@types/d3-ease@3.0.2': {}
  2150. '@types/d3-fetch@3.0.7':
  2151. dependencies:
  2152. '@types/d3-dsv': 3.0.7
  2153. '@types/d3-force@3.0.10': {}
  2154. '@types/d3-format@3.0.4': {}
  2155. '@types/d3-geo@3.1.0':
  2156. dependencies:
  2157. '@types/geojson': 7946.0.15
  2158. '@types/d3-hierarchy@3.1.7': {}
  2159. '@types/d3-interpolate@3.0.4':
  2160. dependencies:
  2161. '@types/d3-color': 3.1.3
  2162. '@types/d3-path@3.1.0': {}
  2163. '@types/d3-polygon@3.0.2': {}
  2164. '@types/d3-quadtree@3.0.6': {}
  2165. '@types/d3-random@3.0.3': {}
  2166. '@types/d3-scale-chromatic@3.1.0': {}
  2167. '@types/d3-scale@4.0.8':
  2168. dependencies:
  2169. '@types/d3-time': 3.0.4
  2170. '@types/d3-selection@3.0.11': {}
  2171. '@types/d3-shape@3.1.6':
  2172. dependencies:
  2173. '@types/d3-path': 3.1.0
  2174. '@types/d3-time-format@4.0.3': {}
  2175. '@types/d3-time@3.0.4': {}
  2176. '@types/d3-timer@3.0.2': {}
  2177. '@types/d3-transition@3.0.9':
  2178. dependencies:
  2179. '@types/d3-selection': 3.0.11
  2180. '@types/d3-zoom@3.0.8':
  2181. dependencies:
  2182. '@types/d3-interpolate': 3.0.4
  2183. '@types/d3-selection': 3.0.11
  2184. '@types/d3@7.4.3':
  2185. dependencies:
  2186. '@types/d3-array': 3.2.1
  2187. '@types/d3-axis': 3.0.6
  2188. '@types/d3-brush': 3.0.6
  2189. '@types/d3-chord': 3.0.6
  2190. '@types/d3-color': 3.1.3
  2191. '@types/d3-contour': 3.0.6
  2192. '@types/d3-delaunay': 6.0.4
  2193. '@types/d3-dispatch': 3.0.6
  2194. '@types/d3-drag': 3.0.7
  2195. '@types/d3-dsv': 3.0.7
  2196. '@types/d3-ease': 3.0.2
  2197. '@types/d3-fetch': 3.0.7
  2198. '@types/d3-force': 3.0.10
  2199. '@types/d3-format': 3.0.4
  2200. '@types/d3-geo': 3.1.0
  2201. '@types/d3-hierarchy': 3.1.7
  2202. '@types/d3-interpolate': 3.0.4
  2203. '@types/d3-path': 3.1.0
  2204. '@types/d3-polygon': 3.0.2
  2205. '@types/d3-quadtree': 3.0.6
  2206. '@types/d3-random': 3.0.3
  2207. '@types/d3-scale': 4.0.8
  2208. '@types/d3-scale-chromatic': 3.1.0
  2209. '@types/d3-selection': 3.0.11
  2210. '@types/d3-shape': 3.1.6
  2211. '@types/d3-time': 3.0.4
  2212. '@types/d3-time-format': 4.0.3
  2213. '@types/d3-timer': 3.0.2
  2214. '@types/d3-transition': 3.0.9
  2215. '@types/d3-zoom': 3.0.8
  2216. '@types/geojson@7946.0.15': {}
  2217. '@types/json5@0.0.29': {}
  2218. '@types/linkify-it@5.0.0':
  2219. optional: true
  2220. '@types/markdown-it@12.2.3':
  2221. dependencies:
  2222. '@types/linkify-it': 5.0.0
  2223. '@types/mdurl': 2.0.0
  2224. optional: true
  2225. '@types/mdurl@2.0.0':
  2226. optional: true
  2227. '@typescript-eslint/parser@5.62.0(eslint@8.26.0)(typescript@5.7.3)':
  2228. dependencies:
  2229. '@typescript-eslint/scope-manager': 5.62.0
  2230. '@typescript-eslint/types': 5.62.0
  2231. '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.7.3)
  2232. debug: 4.4.0
  2233. eslint: 8.26.0
  2234. typescript: 5.7.3
  2235. transitivePeerDependencies:
  2236. - supports-color
  2237. '@typescript-eslint/scope-manager@5.62.0':
  2238. dependencies:
  2239. '@typescript-eslint/types': 5.62.0
  2240. '@typescript-eslint/visitor-keys': 5.62.0
  2241. '@typescript-eslint/types@5.62.0': {}
  2242. '@typescript-eslint/typescript-estree@5.62.0(typescript@5.7.3)':
  2243. dependencies:
  2244. '@typescript-eslint/types': 5.62.0
  2245. '@typescript-eslint/visitor-keys': 5.62.0
  2246. debug: 4.4.0
  2247. globby: 11.1.0
  2248. is-glob: 4.0.3
  2249. semver: 7.6.3
  2250. tsutils: 3.21.0(typescript@5.7.3)
  2251. typescript: 5.7.3
  2252. transitivePeerDependencies:
  2253. - supports-color
  2254. '@typescript-eslint/visitor-keys@5.62.0':
  2255. dependencies:
  2256. '@typescript-eslint/types': 5.62.0
  2257. eslint-visitor-keys: 3.4.3
  2258. acorn-jsx@5.3.2(acorn@8.14.0):
  2259. dependencies:
  2260. acorn: 8.14.0
  2261. acorn@8.14.0: {}
  2262. ajv@6.12.6:
  2263. dependencies:
  2264. fast-deep-equal: 3.1.3
  2265. fast-json-stable-stringify: 2.1.0
  2266. json-schema-traverse: 0.4.1
  2267. uri-js: 4.4.1
  2268. algoliasearch@5.17.1:
  2269. dependencies:
  2270. '@algolia/client-abtesting': 5.17.1
  2271. '@algolia/client-analytics': 5.17.1
  2272. '@algolia/client-common': 5.17.1
  2273. '@algolia/client-insights': 5.17.1
  2274. '@algolia/client-personalization': 5.17.1
  2275. '@algolia/client-query-suggestions': 5.17.1
  2276. '@algolia/client-search': 5.17.1
  2277. '@algolia/ingestion': 1.17.1
  2278. '@algolia/monitoring': 1.17.1
  2279. '@algolia/recommend': 5.17.1
  2280. '@algolia/requester-browser-xhr': 5.17.1
  2281. '@algolia/requester-fetch': 5.17.1
  2282. '@algolia/requester-node-http': 5.17.1
  2283. ansi-regex@5.0.1: {}
  2284. ansi-regex@6.1.0: {}
  2285. ansi-styles@4.3.0:
  2286. dependencies:
  2287. color-convert: 2.0.1
  2288. ansi-styles@6.2.1: {}
  2289. any-promise@1.3.0: {}
  2290. anymatch@3.1.3:
  2291. dependencies:
  2292. normalize-path: 3.0.0
  2293. picomatch: 2.3.1
  2294. arg@5.0.2: {}
  2295. argparse@2.0.1: {}
  2296. aria-query@5.3.2: {}
  2297. array-buffer-byte-length@1.0.1:
  2298. dependencies:
  2299. call-bind: 1.0.8
  2300. is-array-buffer: 3.0.4
  2301. array-includes@3.1.8:
  2302. dependencies:
  2303. call-bind: 1.0.8
  2304. define-properties: 1.2.1
  2305. es-abstract: 1.23.5
  2306. es-object-atoms: 1.0.0
  2307. get-intrinsic: 1.2.6
  2308. is-string: 1.1.0
  2309. array-union@2.1.0: {}
  2310. array.prototype.findlast@1.2.5:
  2311. dependencies:
  2312. call-bind: 1.0.8
  2313. define-properties: 1.2.1
  2314. es-abstract: 1.23.5
  2315. es-errors: 1.3.0
  2316. es-object-atoms: 1.0.0
  2317. es-shim-unscopables: 1.0.2
  2318. array.prototype.findlastindex@1.2.5:
  2319. dependencies:
  2320. call-bind: 1.0.8
  2321. define-properties: 1.2.1
  2322. es-abstract: 1.23.5
  2323. es-errors: 1.3.0
  2324. es-object-atoms: 1.0.0
  2325. es-shim-unscopables: 1.0.2
  2326. array.prototype.flat@1.3.2:
  2327. dependencies:
  2328. call-bind: 1.0.8
  2329. define-properties: 1.2.1
  2330. es-abstract: 1.23.5
  2331. es-shim-unscopables: 1.0.2
  2332. array.prototype.flatmap@1.3.2:
  2333. dependencies:
  2334. call-bind: 1.0.8
  2335. define-properties: 1.2.1
  2336. es-abstract: 1.23.5
  2337. es-shim-unscopables: 1.0.2
  2338. array.prototype.tosorted@1.1.4:
  2339. dependencies:
  2340. call-bind: 1.0.8
  2341. define-properties: 1.2.1
  2342. es-abstract: 1.23.5
  2343. es-errors: 1.3.0
  2344. es-shim-unscopables: 1.0.2
  2345. arraybuffer.prototype.slice@1.0.3:
  2346. dependencies:
  2347. array-buffer-byte-length: 1.0.1
  2348. call-bind: 1.0.8
  2349. define-properties: 1.2.1
  2350. es-abstract: 1.23.5
  2351. es-errors: 1.3.0
  2352. get-intrinsic: 1.2.6
  2353. is-array-buffer: 3.0.4
  2354. is-shared-array-buffer: 1.0.3
  2355. ast-types-flow@0.0.8: {}
  2356. autoprefixer@10.4.20(postcss@8.4.49):
  2357. dependencies:
  2358. browserslist: 4.24.3
  2359. caniuse-lite: 1.0.30001692
  2360. fraction.js: 4.3.7
  2361. normalize-range: 0.1.2
  2362. picocolors: 1.1.1
  2363. postcss: 8.4.49
  2364. postcss-value-parser: 4.2.0
  2365. available-typed-arrays@1.0.7:
  2366. dependencies:
  2367. possible-typed-array-names: 1.0.0
  2368. axe-core@4.10.2: {}
  2369. axobject-query@4.1.0: {}
  2370. b4a@1.6.7: {}
  2371. balanced-match@1.0.2: {}
  2372. bare-events@2.5.0:
  2373. optional: true
  2374. bare-events@2.5.3:
  2375. optional: true
  2376. bare-fs@2.3.5:
  2377. dependencies:
  2378. bare-events: 2.5.0
  2379. bare-path: 2.1.3
  2380. bare-stream: 2.6.1
  2381. optional: true
  2382. bare-os@2.4.4:
  2383. optional: true
  2384. bare-path@2.1.3:
  2385. dependencies:
  2386. bare-os: 2.4.4
  2387. optional: true
  2388. bare-stream@2.6.1:
  2389. dependencies:
  2390. streamx: 2.21.1
  2391. optional: true
  2392. base64-js@1.5.1: {}
  2393. binary-extensions@2.3.0: {}
  2394. bl@4.1.0:
  2395. dependencies:
  2396. buffer: 5.7.1
  2397. inherits: 2.0.4
  2398. readable-stream: 3.6.2
  2399. brace-expansion@1.1.11:
  2400. dependencies:
  2401. balanced-match: 1.0.2
  2402. concat-map: 0.0.1
  2403. brace-expansion@2.0.1:
  2404. dependencies:
  2405. balanced-match: 1.0.2
  2406. braces@3.0.3:
  2407. dependencies:
  2408. fill-range: 7.1.1
  2409. browserslist@4.24.3:
  2410. dependencies:
  2411. caniuse-lite: 1.0.30001692
  2412. electron-to-chromium: 1.5.73
  2413. node-releases: 2.0.19
  2414. update-browserslist-db: 1.1.1(browserslist@4.24.3)
  2415. buffer@5.7.1:
  2416. dependencies:
  2417. base64-js: 1.5.1
  2418. ieee754: 1.2.1
  2419. busboy@1.6.0:
  2420. dependencies:
  2421. streamsearch: 1.1.0
  2422. call-bind-apply-helpers@1.0.1:
  2423. dependencies:
  2424. es-errors: 1.3.0
  2425. function-bind: 1.1.2
  2426. call-bind@1.0.8:
  2427. dependencies:
  2428. call-bind-apply-helpers: 1.0.1
  2429. es-define-property: 1.0.1
  2430. get-intrinsic: 1.2.6
  2431. set-function-length: 1.2.2
  2432. call-bound@1.0.2:
  2433. dependencies:
  2434. call-bind: 1.0.8
  2435. get-intrinsic: 1.2.6
  2436. callsites@3.1.0: {}
  2437. camelcase-css@2.0.1: {}
  2438. caniuse-lite@1.0.30001692: {}
  2439. chalk@4.1.2:
  2440. dependencies:
  2441. ansi-styles: 4.3.0
  2442. supports-color: 7.2.0
  2443. chokidar@3.6.0:
  2444. dependencies:
  2445. anymatch: 3.1.3
  2446. braces: 3.0.3
  2447. glob-parent: 5.1.2
  2448. is-binary-path: 2.1.0
  2449. is-glob: 4.0.3
  2450. normalize-path: 3.0.0
  2451. readdirp: 3.6.0
  2452. optionalDependencies:
  2453. fsevents: 2.3.3
  2454. chownr@1.1.4: {}
  2455. classcat@5.0.5: {}
  2456. client-only@0.0.1: {}
  2457. clsx@1.2.1: {}
  2458. clsx@2.1.1: {}
  2459. color-convert@2.0.1:
  2460. dependencies:
  2461. color-name: 1.1.4
  2462. color-name@1.1.4: {}
  2463. color-string@1.9.1:
  2464. dependencies:
  2465. color-name: 1.1.4
  2466. simple-swizzle: 0.2.2
  2467. color@4.2.3:
  2468. dependencies:
  2469. color-convert: 2.0.1
  2470. color-string: 1.9.1
  2471. commander@4.1.1: {}
  2472. concat-map@0.0.1: {}
  2473. cross-spawn@7.0.6:
  2474. dependencies:
  2475. path-key: 3.1.1
  2476. shebang-command: 2.0.0
  2477. which: 2.0.2
  2478. cssesc@3.0.0: {}
  2479. d3-color@3.1.0: {}
  2480. d3-dispatch@3.0.1: {}
  2481. d3-drag@3.0.0:
  2482. dependencies:
  2483. d3-dispatch: 3.0.1
  2484. d3-selection: 3.0.0
  2485. d3-ease@3.0.1: {}
  2486. d3-interpolate@3.0.1:
  2487. dependencies:
  2488. d3-color: 3.1.0
  2489. d3-selection@3.0.0: {}
  2490. d3-timer@3.0.1: {}
  2491. d3-transition@3.0.1(d3-selection@3.0.0):
  2492. dependencies:
  2493. d3-color: 3.1.0
  2494. d3-dispatch: 3.0.1
  2495. d3-ease: 3.0.1
  2496. d3-interpolate: 3.0.1
  2497. d3-selection: 3.0.0
  2498. d3-timer: 3.0.1
  2499. d3-zoom@3.0.0:
  2500. dependencies:
  2501. d3-dispatch: 3.0.1
  2502. d3-drag: 3.0.0
  2503. d3-interpolate: 3.0.1
  2504. d3-selection: 3.0.0
  2505. d3-transition: 3.0.1(d3-selection@3.0.0)
  2506. damerau-levenshtein@1.0.8: {}
  2507. data-view-buffer@1.0.1:
  2508. dependencies:
  2509. call-bind: 1.0.8
  2510. es-errors: 1.3.0
  2511. is-data-view: 1.0.2
  2512. data-view-byte-length@1.0.1:
  2513. dependencies:
  2514. call-bind: 1.0.8
  2515. es-errors: 1.3.0
  2516. is-data-view: 1.0.2
  2517. data-view-byte-offset@1.0.0:
  2518. dependencies:
  2519. call-bind: 1.0.8
  2520. es-errors: 1.3.0
  2521. is-data-view: 1.0.2
  2522. debug@3.2.7:
  2523. dependencies:
  2524. ms: 2.1.3
  2525. debug@4.4.0:
  2526. dependencies:
  2527. ms: 2.1.3
  2528. decompress-response@6.0.0:
  2529. dependencies:
  2530. mimic-response: 3.1.0
  2531. deep-extend@0.6.0: {}
  2532. deep-is@0.1.4: {}
  2533. define-data-property@1.1.4:
  2534. dependencies:
  2535. es-define-property: 1.0.1
  2536. es-errors: 1.3.0
  2537. gopd: 1.2.0
  2538. define-properties@1.2.1:
  2539. dependencies:
  2540. define-data-property: 1.1.4
  2541. has-property-descriptors: 1.0.2
  2542. object-keys: 1.1.1
  2543. detect-libc@2.0.3: {}
  2544. didyoumean@1.2.2: {}
  2545. dir-glob@3.0.1:
  2546. dependencies:
  2547. path-type: 4.0.0
  2548. dlv@1.1.3: {}
  2549. doctrine@2.1.0:
  2550. dependencies:
  2551. esutils: 2.0.3
  2552. doctrine@3.0.0:
  2553. dependencies:
  2554. esutils: 2.0.3
  2555. dunder-proto@1.0.0:
  2556. dependencies:
  2557. call-bind-apply-helpers: 1.0.1
  2558. es-errors: 1.3.0
  2559. gopd: 1.2.0
  2560. eastasianwidth@0.2.0: {}
  2561. electron-to-chromium@1.5.73: {}
  2562. emoji-regex@8.0.0: {}
  2563. emoji-regex@9.2.2: {}
  2564. end-of-stream@1.4.4:
  2565. dependencies:
  2566. once: 1.4.0
  2567. es-abstract@1.23.5:
  2568. dependencies:
  2569. array-buffer-byte-length: 1.0.1
  2570. arraybuffer.prototype.slice: 1.0.3
  2571. available-typed-arrays: 1.0.7
  2572. call-bind: 1.0.8
  2573. data-view-buffer: 1.0.1
  2574. data-view-byte-length: 1.0.1
  2575. data-view-byte-offset: 1.0.0
  2576. es-define-property: 1.0.1
  2577. es-errors: 1.3.0
  2578. es-object-atoms: 1.0.0
  2579. es-set-tostringtag: 2.0.3
  2580. es-to-primitive: 1.3.0
  2581. function.prototype.name: 1.1.6
  2582. get-intrinsic: 1.2.6
  2583. get-symbol-description: 1.0.2
  2584. globalthis: 1.0.4
  2585. gopd: 1.2.0
  2586. has-property-descriptors: 1.0.2
  2587. has-proto: 1.2.0
  2588. has-symbols: 1.1.0
  2589. hasown: 2.0.2
  2590. internal-slot: 1.1.0
  2591. is-array-buffer: 3.0.4
  2592. is-callable: 1.2.7
  2593. is-data-view: 1.0.2
  2594. is-negative-zero: 2.0.3
  2595. is-regex: 1.2.1
  2596. is-shared-array-buffer: 1.0.3
  2597. is-string: 1.1.0
  2598. is-typed-array: 1.1.13
  2599. is-weakref: 1.1.0
  2600. object-inspect: 1.13.3
  2601. object-keys: 1.1.1
  2602. object.assign: 4.1.5
  2603. regexp.prototype.flags: 1.5.3
  2604. safe-array-concat: 1.1.3
  2605. safe-regex-test: 1.1.0
  2606. string.prototype.trim: 1.2.10
  2607. string.prototype.trimend: 1.0.9
  2608. string.prototype.trimstart: 1.0.8
  2609. typed-array-buffer: 1.0.2
  2610. typed-array-byte-length: 1.0.1
  2611. typed-array-byte-offset: 1.0.3
  2612. typed-array-length: 1.0.7
  2613. unbox-primitive: 1.0.2
  2614. which-typed-array: 1.1.16
  2615. es-define-property@1.0.1: {}
  2616. es-errors@1.3.0: {}
  2617. es-iterator-helpers@1.2.0:
  2618. dependencies:
  2619. call-bind: 1.0.8
  2620. define-properties: 1.2.1
  2621. es-abstract: 1.23.5
  2622. es-errors: 1.3.0
  2623. es-set-tostringtag: 2.0.3
  2624. function-bind: 1.1.2
  2625. get-intrinsic: 1.2.6
  2626. globalthis: 1.0.4
  2627. gopd: 1.2.0
  2628. has-property-descriptors: 1.0.2
  2629. has-proto: 1.2.0
  2630. has-symbols: 1.1.0
  2631. internal-slot: 1.1.0
  2632. iterator.prototype: 1.1.4
  2633. safe-array-concat: 1.1.3
  2634. es-object-atoms@1.0.0:
  2635. dependencies:
  2636. es-errors: 1.3.0
  2637. es-set-tostringtag@2.0.3:
  2638. dependencies:
  2639. get-intrinsic: 1.2.6
  2640. has-tostringtag: 1.0.2
  2641. hasown: 2.0.2
  2642. es-shim-unscopables@1.0.2:
  2643. dependencies:
  2644. hasown: 2.0.2
  2645. es-to-primitive@1.3.0:
  2646. dependencies:
  2647. is-callable: 1.2.7
  2648. is-date-object: 1.1.0
  2649. is-symbol: 1.1.1
  2650. escalade@3.2.0: {}
  2651. escape-string-regexp@4.0.0: {}
  2652. escape-string-regexp@5.0.0: {}
  2653. eslint-config-next@13.0.2(eslint@8.26.0)(typescript@5.7.3):
  2654. dependencies:
  2655. '@next/eslint-plugin-next': 13.0.2
  2656. '@rushstack/eslint-patch': 1.10.4
  2657. '@typescript-eslint/parser': 5.62.0(eslint@8.26.0)(typescript@5.7.3)
  2658. eslint: 8.26.0
  2659. eslint-import-resolver-node: 0.3.9
  2660. eslint-import-resolver-typescript: 2.7.1(eslint-plugin-import@2.31.0)(eslint@8.26.0)
  2661. eslint-plugin-import: 2.31.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@2.7.1)(eslint@8.26.0)
  2662. eslint-plugin-jsx-a11y: 6.10.2(eslint@8.26.0)
  2663. eslint-plugin-react: 7.37.2(eslint@8.26.0)
  2664. eslint-plugin-react-hooks: 4.6.2(eslint@8.26.0)
  2665. typescript: 5.7.3
  2666. transitivePeerDependencies:
  2667. - eslint-import-resolver-webpack
  2668. - supports-color
  2669. eslint-import-resolver-node@0.3.9:
  2670. dependencies:
  2671. debug: 3.2.7
  2672. is-core-module: 2.15.1
  2673. resolve: 1.22.8
  2674. transitivePeerDependencies:
  2675. - supports-color
  2676. eslint-import-resolver-typescript@2.7.1(eslint-plugin-import@2.31.0)(eslint@8.26.0):
  2677. dependencies:
  2678. debug: 4.4.0
  2679. eslint: 8.26.0
  2680. eslint-plugin-import: 2.31.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@2.7.1)(eslint@8.26.0)
  2681. glob: 7.2.3
  2682. is-glob: 4.0.3
  2683. resolve: 1.22.8
  2684. tsconfig-paths: 3.15.0
  2685. transitivePeerDependencies:
  2686. - supports-color
  2687. eslint-module-utils@2.12.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@2.7.1)(eslint@8.26.0):
  2688. dependencies:
  2689. '@typescript-eslint/parser': 5.62.0(eslint@8.26.0)(typescript@5.7.3)
  2690. debug: 3.2.7
  2691. eslint: 8.26.0
  2692. eslint-import-resolver-node: 0.3.9
  2693. eslint-import-resolver-typescript: 2.7.1(eslint-plugin-import@2.31.0)(eslint@8.26.0)
  2694. transitivePeerDependencies:
  2695. - supports-color
  2696. eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@2.7.1)(eslint@8.26.0):
  2697. dependencies:
  2698. '@rtsao/scc': 1.1.0
  2699. '@typescript-eslint/parser': 5.62.0(eslint@8.26.0)(typescript@5.7.3)
  2700. array-includes: 3.1.8
  2701. array.prototype.findlastindex: 1.2.5
  2702. array.prototype.flat: 1.3.2
  2703. array.prototype.flatmap: 1.3.2
  2704. debug: 3.2.7
  2705. doctrine: 2.1.0
  2706. eslint: 8.26.0
  2707. eslint-import-resolver-node: 0.3.9
  2708. eslint-module-utils: 2.12.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@2.7.1)(eslint@8.26.0)
  2709. hasown: 2.0.2
  2710. is-core-module: 2.15.1
  2711. is-glob: 4.0.3
  2712. minimatch: 3.1.2
  2713. object.fromentries: 2.0.8
  2714. object.groupby: 1.0.3
  2715. object.values: 1.2.0
  2716. semver: 6.3.1
  2717. string.prototype.trimend: 1.0.9
  2718. tsconfig-paths: 3.15.0
  2719. transitivePeerDependencies:
  2720. - eslint-import-resolver-typescript
  2721. - eslint-import-resolver-webpack
  2722. - supports-color
  2723. eslint-plugin-jsx-a11y@6.10.2(eslint@8.26.0):
  2724. dependencies:
  2725. aria-query: 5.3.2
  2726. array-includes: 3.1.8
  2727. array.prototype.flatmap: 1.3.2
  2728. ast-types-flow: 0.0.8
  2729. axe-core: 4.10.2
  2730. axobject-query: 4.1.0
  2731. damerau-levenshtein: 1.0.8
  2732. emoji-regex: 9.2.2
  2733. eslint: 8.26.0
  2734. hasown: 2.0.2
  2735. jsx-ast-utils: 3.3.5
  2736. language-tags: 1.0.9
  2737. minimatch: 3.1.2
  2738. object.fromentries: 2.0.8
  2739. safe-regex-test: 1.1.0
  2740. string.prototype.includes: 2.0.1
  2741. eslint-plugin-react-hooks@4.6.2(eslint@8.26.0):
  2742. dependencies:
  2743. eslint: 8.26.0
  2744. eslint-plugin-react@7.37.2(eslint@8.26.0):
  2745. dependencies:
  2746. array-includes: 3.1.8
  2747. array.prototype.findlast: 1.2.5
  2748. array.prototype.flatmap: 1.3.2
  2749. array.prototype.tosorted: 1.1.4
  2750. doctrine: 2.1.0
  2751. es-iterator-helpers: 1.2.0
  2752. eslint: 8.26.0
  2753. estraverse: 5.3.0
  2754. hasown: 2.0.2
  2755. jsx-ast-utils: 3.3.5
  2756. minimatch: 3.1.2
  2757. object.entries: 1.1.8
  2758. object.fromentries: 2.0.8
  2759. object.values: 1.2.0
  2760. prop-types: 15.8.1
  2761. resolve: 2.0.0-next.5
  2762. semver: 6.3.1
  2763. string.prototype.matchall: 4.0.11
  2764. string.prototype.repeat: 1.0.0
  2765. eslint-scope@7.2.2:
  2766. dependencies:
  2767. esrecurse: 4.3.0
  2768. estraverse: 5.3.0
  2769. eslint-utils@3.0.0(eslint@8.26.0):
  2770. dependencies:
  2771. eslint: 8.26.0
  2772. eslint-visitor-keys: 2.1.0
  2773. eslint-visitor-keys@2.1.0: {}
  2774. eslint-visitor-keys@3.4.3: {}
  2775. eslint@8.26.0:
  2776. dependencies:
  2777. '@eslint/eslintrc': 1.4.1
  2778. '@humanwhocodes/config-array': 0.11.14
  2779. '@humanwhocodes/module-importer': 1.0.1
  2780. '@nodelib/fs.walk': 1.2.8
  2781. ajv: 6.12.6
  2782. chalk: 4.1.2
  2783. cross-spawn: 7.0.6
  2784. debug: 4.4.0
  2785. doctrine: 3.0.0
  2786. escape-string-regexp: 4.0.0
  2787. eslint-scope: 7.2.2
  2788. eslint-utils: 3.0.0(eslint@8.26.0)
  2789. eslint-visitor-keys: 3.4.3
  2790. espree: 9.6.1
  2791. esquery: 1.6.0
  2792. esutils: 2.0.3
  2793. fast-deep-equal: 3.1.3
  2794. file-entry-cache: 6.0.1
  2795. find-up: 5.0.0
  2796. glob-parent: 6.0.2
  2797. globals: 13.24.0
  2798. grapheme-splitter: 1.0.4
  2799. ignore: 5.3.2
  2800. import-fresh: 3.3.0
  2801. imurmurhash: 0.1.4
  2802. is-glob: 4.0.3
  2803. is-path-inside: 3.0.3
  2804. js-sdsl: 4.4.2
  2805. js-yaml: 4.1.0
  2806. json-stable-stringify-without-jsonify: 1.0.1
  2807. levn: 0.4.1
  2808. lodash.merge: 4.6.2
  2809. minimatch: 3.1.2
  2810. natural-compare: 1.4.0
  2811. optionator: 0.9.4
  2812. regexpp: 3.2.0
  2813. strip-ansi: 6.0.1
  2814. strip-json-comments: 3.1.1
  2815. text-table: 0.2.0
  2816. transitivePeerDependencies:
  2817. - supports-color
  2818. espree@9.6.1:
  2819. dependencies:
  2820. acorn: 8.14.0
  2821. acorn-jsx: 5.3.2(acorn@8.14.0)
  2822. eslint-visitor-keys: 3.4.3
  2823. esquery@1.6.0:
  2824. dependencies:
  2825. estraverse: 5.3.0
  2826. esrecurse@4.3.0:
  2827. dependencies:
  2828. estraverse: 5.3.0
  2829. estraverse@5.3.0: {}
  2830. esutils@2.0.3: {}
  2831. expand-template@2.0.3: {}
  2832. fast-deep-equal@3.1.3: {}
  2833. fast-fifo@1.3.2: {}
  2834. fast-glob@3.3.2:
  2835. dependencies:
  2836. '@nodelib/fs.stat': 2.0.5
  2837. '@nodelib/fs.walk': 1.2.8
  2838. glob-parent: 5.1.2
  2839. merge2: 1.4.1
  2840. micromatch: 4.0.8
  2841. fast-json-stable-stringify@2.1.0: {}
  2842. fast-levenshtein@2.0.6: {}
  2843. fastq@1.17.1:
  2844. dependencies:
  2845. reusify: 1.0.4
  2846. file-entry-cache@6.0.1:
  2847. dependencies:
  2848. flat-cache: 3.2.0
  2849. fill-range@7.1.1:
  2850. dependencies:
  2851. to-regex-range: 5.0.1
  2852. find-up@5.0.0:
  2853. dependencies:
  2854. locate-path: 6.0.0
  2855. path-exists: 4.0.0
  2856. flat-cache@3.2.0:
  2857. dependencies:
  2858. flatted: 3.3.2
  2859. keyv: 4.5.4
  2860. rimraf: 3.0.2
  2861. flatted@3.3.2: {}
  2862. focus-visible@5.2.1: {}
  2863. for-each@0.3.3:
  2864. dependencies:
  2865. is-callable: 1.2.7
  2866. foreground-child@3.3.0:
  2867. dependencies:
  2868. cross-spawn: 7.0.6
  2869. signal-exit: 4.1.0
  2870. fraction.js@4.3.7: {}
  2871. fs-constants@1.0.0: {}
  2872. fs.realpath@1.0.0: {}
  2873. fsevents@2.3.3:
  2874. optional: true
  2875. function-bind@1.1.2: {}
  2876. function.prototype.name@1.1.6:
  2877. dependencies:
  2878. call-bind: 1.0.8
  2879. define-properties: 1.2.1
  2880. es-abstract: 1.23.5
  2881. functions-have-names: 1.2.3
  2882. functions-have-names@1.2.3: {}
  2883. get-intrinsic@1.2.6:
  2884. dependencies:
  2885. call-bind-apply-helpers: 1.0.1
  2886. dunder-proto: 1.0.0
  2887. es-define-property: 1.0.1
  2888. es-errors: 1.3.0
  2889. es-object-atoms: 1.0.0
  2890. function-bind: 1.1.2
  2891. gopd: 1.2.0
  2892. has-symbols: 1.1.0
  2893. hasown: 2.0.2
  2894. math-intrinsics: 1.0.0
  2895. get-symbol-description@1.0.2:
  2896. dependencies:
  2897. call-bind: 1.0.8
  2898. es-errors: 1.3.0
  2899. get-intrinsic: 1.2.6
  2900. github-from-package@0.0.0: {}
  2901. glob-parent@5.1.2:
  2902. dependencies:
  2903. is-glob: 4.0.3
  2904. glob-parent@6.0.2:
  2905. dependencies:
  2906. is-glob: 4.0.3
  2907. glob-to-regexp@0.4.1: {}
  2908. glob@10.4.5:
  2909. dependencies:
  2910. foreground-child: 3.3.0
  2911. jackspeak: 3.4.3
  2912. minimatch: 9.0.5
  2913. minipass: 7.1.2
  2914. package-json-from-dist: 1.0.1
  2915. path-scurry: 1.11.1
  2916. glob@7.1.7:
  2917. dependencies:
  2918. fs.realpath: 1.0.0
  2919. inflight: 1.0.6
  2920. inherits: 2.0.4
  2921. minimatch: 3.1.2
  2922. once: 1.4.0
  2923. path-is-absolute: 1.0.1
  2924. glob@7.2.3:
  2925. dependencies:
  2926. fs.realpath: 1.0.0
  2927. inflight: 1.0.6
  2928. inherits: 2.0.4
  2929. minimatch: 3.1.2
  2930. once: 1.4.0
  2931. path-is-absolute: 1.0.1
  2932. globals@13.24.0:
  2933. dependencies:
  2934. type-fest: 0.20.2
  2935. globalthis@1.0.4:
  2936. dependencies:
  2937. define-properties: 1.2.1
  2938. gopd: 1.2.0
  2939. globby@11.1.0:
  2940. dependencies:
  2941. array-union: 2.1.0
  2942. dir-glob: 3.0.1
  2943. fast-glob: 3.3.2
  2944. ignore: 5.3.2
  2945. merge2: 1.4.1
  2946. slash: 3.0.0
  2947. gopd@1.2.0: {}
  2948. graceful-fs@4.2.11: {}
  2949. grapheme-splitter@1.0.4: {}
  2950. has-bigints@1.0.2: {}
  2951. has-flag@4.0.0: {}
  2952. has-property-descriptors@1.0.2:
  2953. dependencies:
  2954. es-define-property: 1.0.1
  2955. has-proto@1.2.0:
  2956. dependencies:
  2957. dunder-proto: 1.0.0
  2958. has-symbols@1.1.0: {}
  2959. has-tostringtag@1.0.2:
  2960. dependencies:
  2961. has-symbols: 1.1.0
  2962. hasown@2.0.2:
  2963. dependencies:
  2964. function-bind: 1.1.2
  2965. html-to-image@1.11.11: {}
  2966. ieee754@1.2.1: {}
  2967. ignore@5.3.2: {}
  2968. import-fresh@3.3.0:
  2969. dependencies:
  2970. parent-module: 1.0.1
  2971. resolve-from: 4.0.0
  2972. imurmurhash@0.1.4: {}
  2973. inflight@1.0.6:
  2974. dependencies:
  2975. once: 1.4.0
  2976. wrappy: 1.0.2
  2977. inherits@2.0.4: {}
  2978. ini@1.3.8: {}
  2979. internal-slot@1.1.0:
  2980. dependencies:
  2981. es-errors: 1.3.0
  2982. hasown: 2.0.2
  2983. side-channel: 1.1.0
  2984. is-array-buffer@3.0.4:
  2985. dependencies:
  2986. call-bind: 1.0.8
  2987. get-intrinsic: 1.2.6
  2988. is-arrayish@0.3.2: {}
  2989. is-async-function@2.0.0:
  2990. dependencies:
  2991. has-tostringtag: 1.0.2
  2992. is-bigint@1.1.0:
  2993. dependencies:
  2994. has-bigints: 1.0.2
  2995. is-binary-path@2.1.0:
  2996. dependencies:
  2997. binary-extensions: 2.3.0
  2998. is-boolean-object@1.2.1:
  2999. dependencies:
  3000. call-bound: 1.0.2
  3001. has-tostringtag: 1.0.2
  3002. is-callable@1.2.7: {}
  3003. is-core-module@2.15.1:
  3004. dependencies:
  3005. hasown: 2.0.2
  3006. is-data-view@1.0.2:
  3007. dependencies:
  3008. call-bound: 1.0.2
  3009. get-intrinsic: 1.2.6
  3010. is-typed-array: 1.1.13
  3011. is-date-object@1.1.0:
  3012. dependencies:
  3013. call-bound: 1.0.2
  3014. has-tostringtag: 1.0.2
  3015. is-extglob@2.1.1: {}
  3016. is-finalizationregistry@1.1.0:
  3017. dependencies:
  3018. call-bind: 1.0.8
  3019. is-fullwidth-code-point@3.0.0: {}
  3020. is-generator-function@1.0.10:
  3021. dependencies:
  3022. has-tostringtag: 1.0.2
  3023. is-glob@4.0.3:
  3024. dependencies:
  3025. is-extglob: 2.1.1
  3026. is-map@2.0.3: {}
  3027. is-negative-zero@2.0.3: {}
  3028. is-number-object@1.1.0:
  3029. dependencies:
  3030. call-bind: 1.0.8
  3031. has-tostringtag: 1.0.2
  3032. is-number@7.0.0: {}
  3033. is-path-inside@3.0.3: {}
  3034. is-regex@1.2.1:
  3035. dependencies:
  3036. call-bound: 1.0.2
  3037. gopd: 1.2.0
  3038. has-tostringtag: 1.0.2
  3039. hasown: 2.0.2
  3040. is-set@2.0.3: {}
  3041. is-shared-array-buffer@1.0.3:
  3042. dependencies:
  3043. call-bind: 1.0.8
  3044. is-string@1.1.0:
  3045. dependencies:
  3046. call-bind: 1.0.8
  3047. has-tostringtag: 1.0.2
  3048. is-symbol@1.1.1:
  3049. dependencies:
  3050. call-bound: 1.0.2
  3051. has-symbols: 1.1.0
  3052. safe-regex-test: 1.1.0
  3053. is-typed-array@1.1.13:
  3054. dependencies:
  3055. which-typed-array: 1.1.16
  3056. is-weakmap@2.0.2: {}
  3057. is-weakref@1.1.0:
  3058. dependencies:
  3059. call-bound: 1.0.2
  3060. is-weakset@2.0.3:
  3061. dependencies:
  3062. call-bind: 1.0.8
  3063. get-intrinsic: 1.2.6
  3064. isarray@2.0.5: {}
  3065. isexe@2.0.0: {}
  3066. iterator.prototype@1.1.4:
  3067. dependencies:
  3068. define-data-property: 1.1.4
  3069. es-object-atoms: 1.0.0
  3070. get-intrinsic: 1.2.6
  3071. has-symbols: 1.1.0
  3072. reflect.getprototypeof: 1.0.8
  3073. set-function-name: 2.0.2
  3074. jackspeak@3.4.3:
  3075. dependencies:
  3076. '@isaacs/cliui': 8.0.2
  3077. optionalDependencies:
  3078. '@pkgjs/parseargs': 0.11.0
  3079. jiti@1.21.6: {}
  3080. js-sdsl@4.4.2: {}
  3081. js-tokens@4.0.0: {}
  3082. js-yaml@4.1.0:
  3083. dependencies:
  3084. argparse: 2.0.1
  3085. json-buffer@3.0.1: {}
  3086. json-schema-traverse@0.4.1: {}
  3087. json-stable-stringify-without-jsonify@1.0.1: {}
  3088. json5@1.0.2:
  3089. dependencies:
  3090. minimist: 1.2.8
  3091. jsx-ast-utils@3.3.5:
  3092. dependencies:
  3093. array-includes: 3.1.8
  3094. array.prototype.flat: 1.3.2
  3095. object.assign: 4.1.5
  3096. object.values: 1.2.0
  3097. keyv@4.5.4:
  3098. dependencies:
  3099. json-buffer: 3.0.1
  3100. language-subtag-registry@0.3.23: {}
  3101. language-tags@1.0.9:
  3102. dependencies:
  3103. language-subtag-registry: 0.3.23
  3104. levn@0.4.1:
  3105. dependencies:
  3106. prelude-ls: 1.2.1
  3107. type-check: 0.4.0
  3108. lightense-images@1.0.17: {}
  3109. lilconfig@3.1.3: {}
  3110. lines-and-columns@1.2.4: {}
  3111. locate-path@6.0.0:
  3112. dependencies:
  3113. p-locate: 5.0.0
  3114. lodash.castarray@4.4.0: {}
  3115. lodash.isplainobject@4.0.6: {}
  3116. lodash.merge@4.6.2: {}
  3117. loose-envify@1.4.0:
  3118. dependencies:
  3119. js-tokens: 4.0.0
  3120. lru-cache@10.4.3: {}
  3121. math-intrinsics@1.0.0: {}
  3122. merge2@1.4.1: {}
  3123. micromatch@4.0.8:
  3124. dependencies:
  3125. braces: 3.0.3
  3126. picomatch: 2.3.1
  3127. mimic-response@3.1.0: {}
  3128. minimatch@3.1.2:
  3129. dependencies:
  3130. brace-expansion: 1.1.11
  3131. minimatch@9.0.5:
  3132. dependencies:
  3133. brace-expansion: 2.0.1
  3134. minimist@1.2.8: {}
  3135. minipass@7.1.2: {}
  3136. mkdirp-classic@0.5.3: {}
  3137. ms@2.1.3: {}
  3138. mz@2.7.0:
  3139. dependencies:
  3140. any-promise: 1.3.0
  3141. object-assign: 4.1.1
  3142. thenify-all: 1.6.0
  3143. nanoid@3.3.8: {}
  3144. napi-build-utils@1.0.2: {}
  3145. natural-compare@1.4.0: {}
  3146. next@13.4.7(react-dom@18.2.0)(react@18.2.0):
  3147. dependencies:
  3148. '@next/env': 13.4.7
  3149. '@swc/helpers': 0.5.1
  3150. busboy: 1.6.0
  3151. caniuse-lite: 1.0.30001692
  3152. postcss: 8.4.14
  3153. react: 18.2.0
  3154. react-dom: 18.2.0(react@18.2.0)
  3155. styled-jsx: 5.1.1(react@18.2.0)
  3156. watchpack: 2.4.0
  3157. zod: 3.21.4
  3158. optionalDependencies:
  3159. '@next/swc-darwin-arm64': 13.4.7
  3160. '@next/swc-darwin-x64': 13.4.7
  3161. '@next/swc-linux-arm64-gnu': 13.4.7
  3162. '@next/swc-linux-arm64-musl': 13.4.7
  3163. '@next/swc-linux-x64-gnu': 13.4.7
  3164. '@next/swc-linux-x64-musl': 13.4.7
  3165. '@next/swc-win32-arm64-msvc': 13.4.7
  3166. '@next/swc-win32-ia32-msvc': 13.4.7
  3167. '@next/swc-win32-x64-msvc': 13.4.7
  3168. transitivePeerDependencies:
  3169. - '@babel/core'
  3170. - babel-plugin-macros
  3171. node-abi@3.71.0:
  3172. dependencies:
  3173. semver: 7.6.3
  3174. node-addon-api@6.1.0: {}
  3175. node-releases@2.0.19: {}
  3176. normalize-path@3.0.0: {}
  3177. normalize-range@0.1.2: {}
  3178. object-assign@4.1.1: {}
  3179. object-hash@3.0.0: {}
  3180. object-inspect@1.13.3: {}
  3181. object-keys@1.1.1: {}
  3182. object.assign@4.1.5:
  3183. dependencies:
  3184. call-bind: 1.0.8
  3185. define-properties: 1.2.1
  3186. has-symbols: 1.1.0
  3187. object-keys: 1.1.1
  3188. object.entries@1.1.8:
  3189. dependencies:
  3190. call-bind: 1.0.8
  3191. define-properties: 1.2.1
  3192. es-object-atoms: 1.0.0
  3193. object.fromentries@2.0.8:
  3194. dependencies:
  3195. call-bind: 1.0.8
  3196. define-properties: 1.2.1
  3197. es-abstract: 1.23.5
  3198. es-object-atoms: 1.0.0
  3199. object.groupby@1.0.3:
  3200. dependencies:
  3201. call-bind: 1.0.8
  3202. define-properties: 1.2.1
  3203. es-abstract: 1.23.5
  3204. object.values@1.2.0:
  3205. dependencies:
  3206. call-bind: 1.0.8
  3207. define-properties: 1.2.1
  3208. es-object-atoms: 1.0.0
  3209. once@1.4.0:
  3210. dependencies:
  3211. wrappy: 1.0.2
  3212. optionator@0.9.4:
  3213. dependencies:
  3214. deep-is: 0.1.4
  3215. fast-levenshtein: 2.0.6
  3216. levn: 0.4.1
  3217. prelude-ls: 1.2.1
  3218. type-check: 0.4.0
  3219. word-wrap: 1.2.5
  3220. p-limit@3.1.0:
  3221. dependencies:
  3222. yocto-queue: 0.1.0
  3223. p-locate@5.0.0:
  3224. dependencies:
  3225. p-limit: 3.1.0
  3226. package-json-from-dist@1.0.1: {}
  3227. parent-module@1.0.1:
  3228. dependencies:
  3229. callsites: 3.1.0
  3230. path-exists@4.0.0: {}
  3231. path-is-absolute@1.0.1: {}
  3232. path-key@3.1.1: {}
  3233. path-parse@1.0.7: {}
  3234. path-scurry@1.11.1:
  3235. dependencies:
  3236. lru-cache: 10.4.3
  3237. minipass: 7.1.2
  3238. path-type@4.0.0: {}
  3239. picocolors@1.1.1: {}
  3240. picomatch@2.3.1: {}
  3241. pify@2.3.0: {}
  3242. pirates@4.0.6: {}
  3243. possible-typed-array-names@1.0.0: {}
  3244. postcss-focus-visible@6.0.4(postcss@8.4.49):
  3245. dependencies:
  3246. postcss: 8.4.49
  3247. postcss-selector-parser: 6.1.2
  3248. postcss-import@14.1.0(postcss@8.4.49):
  3249. dependencies:
  3250. postcss: 8.4.49
  3251. postcss-value-parser: 4.2.0
  3252. read-cache: 1.0.0
  3253. resolve: 1.22.8
  3254. postcss-import@15.1.0(postcss@8.4.49):
  3255. dependencies:
  3256. postcss: 8.4.49
  3257. postcss-value-parser: 4.2.0
  3258. read-cache: 1.0.0
  3259. resolve: 1.22.8
  3260. postcss-js@4.0.1(postcss@8.4.49):
  3261. dependencies:
  3262. camelcase-css: 2.0.1
  3263. postcss: 8.4.49
  3264. postcss-load-config@4.0.2(postcss@8.4.49):
  3265. dependencies:
  3266. lilconfig: 3.1.3
  3267. postcss: 8.4.49
  3268. yaml: 2.6.1
  3269. postcss-nested@6.2.0(postcss@8.4.49):
  3270. dependencies:
  3271. postcss: 8.4.49
  3272. postcss-selector-parser: 6.1.2
  3273. postcss-selector-parser@6.0.10:
  3274. dependencies:
  3275. cssesc: 3.0.0
  3276. util-deprecate: 1.0.2
  3277. postcss-selector-parser@6.1.2:
  3278. dependencies:
  3279. cssesc: 3.0.0
  3280. util-deprecate: 1.0.2
  3281. postcss-value-parser@4.2.0: {}
  3282. postcss@8.4.14:
  3283. dependencies:
  3284. nanoid: 3.3.8
  3285. picocolors: 1.1.1
  3286. source-map-js: 1.2.1
  3287. postcss@8.4.49:
  3288. dependencies:
  3289. nanoid: 3.3.8
  3290. picocolors: 1.1.1
  3291. source-map-js: 1.2.1
  3292. prebuild-install@7.1.2:
  3293. dependencies:
  3294. detect-libc: 2.0.3
  3295. expand-template: 2.0.3
  3296. github-from-package: 0.0.0
  3297. minimist: 1.2.8
  3298. mkdirp-classic: 0.5.3
  3299. napi-build-utils: 1.0.2
  3300. node-abi: 3.71.0
  3301. pump: 3.0.2
  3302. rc: 1.2.8
  3303. simple-get: 4.0.1
  3304. tar-fs: 2.1.1
  3305. tunnel-agent: 0.6.0
  3306. prelude-ls@1.2.1: {}
  3307. prettier-plugin-tailwindcss@0.2.8(prettier@2.8.8):
  3308. dependencies:
  3309. prettier: 2.8.8
  3310. prettier@2.8.8: {}
  3311. prism-react-renderer@1.3.5(react@18.2.0):
  3312. dependencies:
  3313. react: 18.2.0
  3314. prismjs@1.29.0: {}
  3315. prop-types@15.8.1:
  3316. dependencies:
  3317. loose-envify: 1.4.0
  3318. object-assign: 4.1.1
  3319. react-is: 16.13.1
  3320. pump@3.0.2:
  3321. dependencies:
  3322. end-of-stream: 1.4.4
  3323. once: 1.4.0
  3324. punycode@2.3.1: {}
  3325. queue-microtask@1.2.3: {}
  3326. queue-tick@1.0.1: {}
  3327. rc@1.2.8:
  3328. dependencies:
  3329. deep-extend: 0.6.0
  3330. ini: 1.3.8
  3331. minimist: 1.2.8
  3332. strip-json-comments: 2.0.1
  3333. react-dom@18.2.0(react@18.2.0):
  3334. dependencies:
  3335. loose-envify: 1.4.0
  3336. react: 18.2.0
  3337. scheduler: 0.23.2
  3338. react-is@16.13.1: {}
  3339. react@18.2.0:
  3340. dependencies:
  3341. loose-envify: 1.4.0
  3342. reactflow@11.11.4(react-dom@18.2.0)(react@18.2.0):
  3343. dependencies:
  3344. '@reactflow/background': 11.3.14(react-dom@18.2.0)(react@18.2.0)
  3345. '@reactflow/controls': 11.2.14(react-dom@18.2.0)(react@18.2.0)
  3346. '@reactflow/core': 11.11.4(react-dom@18.2.0)(react@18.2.0)
  3347. '@reactflow/minimap': 11.7.14(react-dom@18.2.0)(react@18.2.0)
  3348. '@reactflow/node-resizer': 2.2.14(react-dom@18.2.0)(react@18.2.0)
  3349. '@reactflow/node-toolbar': 1.3.14(react-dom@18.2.0)(react@18.2.0)
  3350. react: 18.2.0
  3351. react-dom: 18.2.0(react@18.2.0)
  3352. transitivePeerDependencies:
  3353. - '@types/react'
  3354. - immer
  3355. read-cache@1.0.0:
  3356. dependencies:
  3357. pify: 2.3.0
  3358. readable-stream@3.6.2:
  3359. dependencies:
  3360. inherits: 2.0.4
  3361. string_decoder: 1.3.0
  3362. util-deprecate: 1.0.2
  3363. readdirp@3.6.0:
  3364. dependencies:
  3365. picomatch: 2.3.1
  3366. reflect.getprototypeof@1.0.8:
  3367. dependencies:
  3368. call-bind: 1.0.8
  3369. define-properties: 1.2.1
  3370. dunder-proto: 1.0.0
  3371. es-abstract: 1.23.5
  3372. es-errors: 1.3.0
  3373. get-intrinsic: 1.2.6
  3374. gopd: 1.2.0
  3375. which-builtin-type: 1.2.1
  3376. regexp.prototype.flags@1.5.3:
  3377. dependencies:
  3378. call-bind: 1.0.8
  3379. define-properties: 1.2.1
  3380. es-errors: 1.3.0
  3381. set-function-name: 2.0.2
  3382. regexpp@3.2.0: {}
  3383. resolve-from@4.0.0: {}
  3384. resolve@1.22.8:
  3385. dependencies:
  3386. is-core-module: 2.15.1
  3387. path-parse: 1.0.7
  3388. supports-preserve-symlinks-flag: 1.0.0
  3389. resolve@2.0.0-next.5:
  3390. dependencies:
  3391. is-core-module: 2.15.1
  3392. path-parse: 1.0.7
  3393. supports-preserve-symlinks-flag: 1.0.0
  3394. reusify@1.0.4: {}
  3395. rimraf@3.0.2:
  3396. dependencies:
  3397. glob: 7.2.3
  3398. run-parallel@1.2.0:
  3399. dependencies:
  3400. queue-microtask: 1.2.3
  3401. safe-array-concat@1.1.3:
  3402. dependencies:
  3403. call-bind: 1.0.8
  3404. call-bound: 1.0.2
  3405. get-intrinsic: 1.2.6
  3406. has-symbols: 1.1.0
  3407. isarray: 2.0.5
  3408. safe-buffer@5.2.1: {}
  3409. safe-regex-test@1.1.0:
  3410. dependencies:
  3411. call-bound: 1.0.2
  3412. es-errors: 1.3.0
  3413. is-regex: 1.2.1
  3414. scheduler@0.23.2:
  3415. dependencies:
  3416. loose-envify: 1.4.0
  3417. search-insights@2.17.3: {}
  3418. semver@6.3.1: {}
  3419. semver@7.6.3: {}
  3420. set-function-length@1.2.2:
  3421. dependencies:
  3422. define-data-property: 1.1.4
  3423. es-errors: 1.3.0
  3424. function-bind: 1.1.2
  3425. get-intrinsic: 1.2.6
  3426. gopd: 1.2.0
  3427. has-property-descriptors: 1.0.2
  3428. set-function-name@2.0.2:
  3429. dependencies:
  3430. define-data-property: 1.1.4
  3431. es-errors: 1.3.0
  3432. functions-have-names: 1.2.3
  3433. has-property-descriptors: 1.0.2
  3434. sharp@0.32.6:
  3435. dependencies:
  3436. color: 4.2.3
  3437. detect-libc: 2.0.3
  3438. node-addon-api: 6.1.0
  3439. prebuild-install: 7.1.2
  3440. semver: 7.6.3
  3441. simple-get: 4.0.1
  3442. tar-fs: 3.0.6
  3443. tunnel-agent: 0.6.0
  3444. shebang-command@2.0.0:
  3445. dependencies:
  3446. shebang-regex: 3.0.0
  3447. shebang-regex@3.0.0: {}
  3448. side-channel-list@1.0.0:
  3449. dependencies:
  3450. es-errors: 1.3.0
  3451. object-inspect: 1.13.3
  3452. side-channel-map@1.0.1:
  3453. dependencies:
  3454. call-bound: 1.0.2
  3455. es-errors: 1.3.0
  3456. get-intrinsic: 1.2.6
  3457. object-inspect: 1.13.3
  3458. side-channel-weakmap@1.0.2:
  3459. dependencies:
  3460. call-bound: 1.0.2
  3461. es-errors: 1.3.0
  3462. get-intrinsic: 1.2.6
  3463. object-inspect: 1.13.3
  3464. side-channel-map: 1.0.1
  3465. side-channel@1.1.0:
  3466. dependencies:
  3467. es-errors: 1.3.0
  3468. object-inspect: 1.13.3
  3469. side-channel-list: 1.0.0
  3470. side-channel-map: 1.0.1
  3471. side-channel-weakmap: 1.0.2
  3472. signal-exit@4.1.0: {}
  3473. simple-concat@1.0.1: {}
  3474. simple-get@4.0.1:
  3475. dependencies:
  3476. decompress-response: 6.0.0
  3477. once: 1.4.0
  3478. simple-concat: 1.0.1
  3479. simple-swizzle@0.2.2:
  3480. dependencies:
  3481. is-arrayish: 0.3.2
  3482. slash@3.0.0: {}
  3483. source-map-js@1.2.1: {}
  3484. streamsearch@1.1.0: {}
  3485. streamx@2.21.1:
  3486. dependencies:
  3487. fast-fifo: 1.3.2
  3488. queue-tick: 1.0.1
  3489. text-decoder: 1.2.2
  3490. optionalDependencies:
  3491. bare-events: 2.5.3
  3492. string-width@4.2.3:
  3493. dependencies:
  3494. emoji-regex: 8.0.0
  3495. is-fullwidth-code-point: 3.0.0
  3496. strip-ansi: 6.0.1
  3497. string-width@5.1.2:
  3498. dependencies:
  3499. eastasianwidth: 0.2.0
  3500. emoji-regex: 9.2.2
  3501. strip-ansi: 7.1.0
  3502. string.prototype.includes@2.0.1:
  3503. dependencies:
  3504. call-bind: 1.0.8
  3505. define-properties: 1.2.1
  3506. es-abstract: 1.23.5
  3507. string.prototype.matchall@4.0.11:
  3508. dependencies:
  3509. call-bind: 1.0.8
  3510. define-properties: 1.2.1
  3511. es-abstract: 1.23.5
  3512. es-errors: 1.3.0
  3513. es-object-atoms: 1.0.0
  3514. get-intrinsic: 1.2.6
  3515. gopd: 1.2.0
  3516. has-symbols: 1.1.0
  3517. internal-slot: 1.1.0
  3518. regexp.prototype.flags: 1.5.3
  3519. set-function-name: 2.0.2
  3520. side-channel: 1.1.0
  3521. string.prototype.repeat@1.0.0:
  3522. dependencies:
  3523. define-properties: 1.2.1
  3524. es-abstract: 1.23.5
  3525. string.prototype.trim@1.2.10:
  3526. dependencies:
  3527. call-bind: 1.0.8
  3528. call-bound: 1.0.2
  3529. define-data-property: 1.1.4
  3530. define-properties: 1.2.1
  3531. es-abstract: 1.23.5
  3532. es-object-atoms: 1.0.0
  3533. has-property-descriptors: 1.0.2
  3534. string.prototype.trimend@1.0.9:
  3535. dependencies:
  3536. call-bind: 1.0.8
  3537. call-bound: 1.0.2
  3538. define-properties: 1.2.1
  3539. es-object-atoms: 1.0.0
  3540. string.prototype.trimstart@1.0.8:
  3541. dependencies:
  3542. call-bind: 1.0.8
  3543. define-properties: 1.2.1
  3544. es-object-atoms: 1.0.0
  3545. string_decoder@1.3.0:
  3546. dependencies:
  3547. safe-buffer: 5.2.1
  3548. strip-ansi@6.0.1:
  3549. dependencies:
  3550. ansi-regex: 5.0.1
  3551. strip-ansi@7.1.0:
  3552. dependencies:
  3553. ansi-regex: 6.1.0
  3554. strip-bom@3.0.0: {}
  3555. strip-json-comments@2.0.1: {}
  3556. strip-json-comments@3.1.1: {}
  3557. styled-jsx@5.1.1(react@18.2.0):
  3558. dependencies:
  3559. client-only: 0.0.1
  3560. react: 18.2.0
  3561. sucrase@3.35.0:
  3562. dependencies:
  3563. '@jridgewell/gen-mapping': 0.3.8
  3564. commander: 4.1.1
  3565. glob: 10.4.5
  3566. lines-and-columns: 1.2.4
  3567. mz: 2.7.0
  3568. pirates: 4.0.6
  3569. ts-interface-checker: 0.1.13
  3570. supports-color@7.2.0:
  3571. dependencies:
  3572. has-flag: 4.0.0
  3573. supports-preserve-symlinks-flag@1.0.0: {}
  3574. tabbable@6.2.0: {}
  3575. tailwindcss@3.4.16:
  3576. dependencies:
  3577. '@alloc/quick-lru': 5.2.0
  3578. arg: 5.0.2
  3579. chokidar: 3.6.0
  3580. didyoumean: 1.2.2
  3581. dlv: 1.1.3
  3582. fast-glob: 3.3.2
  3583. glob-parent: 6.0.2
  3584. is-glob: 4.0.3
  3585. jiti: 1.21.6
  3586. lilconfig: 3.1.3
  3587. micromatch: 4.0.8
  3588. normalize-path: 3.0.0
  3589. object-hash: 3.0.0
  3590. picocolors: 1.1.1
  3591. postcss: 8.4.49
  3592. postcss-import: 15.1.0(postcss@8.4.49)
  3593. postcss-js: 4.0.1(postcss@8.4.49)
  3594. postcss-load-config: 4.0.2(postcss@8.4.49)
  3595. postcss-nested: 6.2.0(postcss@8.4.49)
  3596. postcss-selector-parser: 6.1.2
  3597. resolve: 1.22.8
  3598. sucrase: 3.35.0
  3599. transitivePeerDependencies:
  3600. - ts-node
  3601. tar-fs@2.1.1:
  3602. dependencies:
  3603. chownr: 1.1.4
  3604. mkdirp-classic: 0.5.3
  3605. pump: 3.0.2
  3606. tar-stream: 2.2.0
  3607. tar-fs@3.0.6:
  3608. dependencies:
  3609. pump: 3.0.2
  3610. tar-stream: 3.1.7
  3611. optionalDependencies:
  3612. bare-fs: 2.3.5
  3613. bare-path: 2.1.3
  3614. tar-stream@2.2.0:
  3615. dependencies:
  3616. bl: 4.1.0
  3617. end-of-stream: 1.4.4
  3618. fs-constants: 1.0.0
  3619. inherits: 2.0.4
  3620. readable-stream: 3.6.2
  3621. tar-stream@3.1.7:
  3622. dependencies:
  3623. b4a: 1.6.7
  3624. fast-fifo: 1.3.2
  3625. streamx: 2.21.1
  3626. text-decoder@1.2.2:
  3627. dependencies:
  3628. b4a: 1.6.7
  3629. text-table@0.2.0: {}
  3630. thenify-all@1.6.0:
  3631. dependencies:
  3632. thenify: 3.3.1
  3633. thenify@3.3.1:
  3634. dependencies:
  3635. any-promise: 1.3.0
  3636. to-regex-range@5.0.1:
  3637. dependencies:
  3638. is-number: 7.0.0
  3639. ts-interface-checker@0.1.13: {}
  3640. tsconfig-paths@3.15.0:
  3641. dependencies:
  3642. '@types/json5': 0.0.29
  3643. json5: 1.0.2
  3644. minimist: 1.2.8
  3645. strip-bom: 3.0.0
  3646. tslib@1.14.1: {}
  3647. tslib@2.8.1: {}
  3648. tsutils@3.21.0(typescript@5.7.3):
  3649. dependencies:
  3650. tslib: 1.14.1
  3651. typescript: 5.7.3
  3652. tunnel-agent@0.6.0:
  3653. dependencies:
  3654. safe-buffer: 5.2.1
  3655. type-check@0.4.0:
  3656. dependencies:
  3657. prelude-ls: 1.2.1
  3658. type-fest@0.20.2: {}
  3659. typed-array-buffer@1.0.2:
  3660. dependencies:
  3661. call-bind: 1.0.8
  3662. es-errors: 1.3.0
  3663. is-typed-array: 1.1.13
  3664. typed-array-byte-length@1.0.1:
  3665. dependencies:
  3666. call-bind: 1.0.8
  3667. for-each: 0.3.3
  3668. gopd: 1.2.0
  3669. has-proto: 1.2.0
  3670. is-typed-array: 1.1.13
  3671. typed-array-byte-offset@1.0.3:
  3672. dependencies:
  3673. available-typed-arrays: 1.0.7
  3674. call-bind: 1.0.8
  3675. for-each: 0.3.3
  3676. gopd: 1.2.0
  3677. has-proto: 1.2.0
  3678. is-typed-array: 1.1.13
  3679. reflect.getprototypeof: 1.0.8
  3680. typed-array-length@1.0.7:
  3681. dependencies:
  3682. call-bind: 1.0.8
  3683. for-each: 0.3.3
  3684. gopd: 1.2.0
  3685. is-typed-array: 1.1.13
  3686. possible-typed-array-names: 1.0.0
  3687. reflect.getprototypeof: 1.0.8
  3688. typescript@5.7.3: {}
  3689. unbox-primitive@1.0.2:
  3690. dependencies:
  3691. call-bind: 1.0.8
  3692. has-bigints: 1.0.2
  3693. has-symbols: 1.1.0
  3694. which-boxed-primitive: 1.1.0
  3695. update-browserslist-db@1.1.1(browserslist@4.24.3):
  3696. dependencies:
  3697. browserslist: 4.24.3
  3698. escalade: 3.2.0
  3699. picocolors: 1.1.1
  3700. uri-js@4.4.1:
  3701. dependencies:
  3702. punycode: 2.3.1
  3703. use-sync-external-store@1.2.2(react@18.2.0):
  3704. dependencies:
  3705. react: 18.2.0
  3706. util-deprecate@1.0.2: {}
  3707. watchpack@2.4.0:
  3708. dependencies:
  3709. glob-to-regexp: 0.4.1
  3710. graceful-fs: 4.2.11
  3711. which-boxed-primitive@1.1.0:
  3712. dependencies:
  3713. is-bigint: 1.1.0
  3714. is-boolean-object: 1.2.1
  3715. is-number-object: 1.1.0
  3716. is-string: 1.1.0
  3717. is-symbol: 1.1.1
  3718. which-builtin-type@1.2.1:
  3719. dependencies:
  3720. call-bound: 1.0.2
  3721. function.prototype.name: 1.1.6
  3722. has-tostringtag: 1.0.2
  3723. is-async-function: 2.0.0
  3724. is-date-object: 1.1.0
  3725. is-finalizationregistry: 1.1.0
  3726. is-generator-function: 1.0.10
  3727. is-regex: 1.2.1
  3728. is-weakref: 1.1.0
  3729. isarray: 2.0.5
  3730. which-boxed-primitive: 1.1.0
  3731. which-collection: 1.0.2
  3732. which-typed-array: 1.1.16
  3733. which-collection@1.0.2:
  3734. dependencies:
  3735. is-map: 2.0.3
  3736. is-set: 2.0.3
  3737. is-weakmap: 2.0.2
  3738. is-weakset: 2.0.3
  3739. which-typed-array@1.1.16:
  3740. dependencies:
  3741. available-typed-arrays: 1.0.7
  3742. call-bind: 1.0.8
  3743. for-each: 0.3.3
  3744. gopd: 1.2.0
  3745. has-tostringtag: 1.0.2
  3746. which@2.0.2:
  3747. dependencies:
  3748. isexe: 2.0.0
  3749. word-wrap@1.2.5: {}
  3750. wrap-ansi@7.0.0:
  3751. dependencies:
  3752. ansi-styles: 4.3.0
  3753. string-width: 4.2.3
  3754. strip-ansi: 6.0.1
  3755. wrap-ansi@8.1.0:
  3756. dependencies:
  3757. ansi-styles: 6.2.1
  3758. string-width: 5.1.2
  3759. strip-ansi: 7.1.0
  3760. wrappy@1.0.2: {}
  3761. yaml@2.6.1: {}
  3762. yocto-queue@0.1.0: {}
  3763. zod@3.21.4: {}
  3764. zustand@4.5.5(react@18.2.0):
  3765. dependencies:
  3766. react: 18.2.0
  3767. use-sync-external-store: 1.2.2(react@18.2.0)