pnpm-lock.yaml 156 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. '@babel/core':
  9. specifier: ^7.25.2
  10. version: 7.25.2
  11. '@babel/preset-env':
  12. specifier: ^7.25.3
  13. version: 7.25.4(@babel/core@7.25.2)
  14. '@rollup/plugin-babel':
  15. specifier: ^6.0.4
  16. version: 6.0.4(@babel/core@7.25.2)(rollup@4.22.4)
  17. '@rollup/plugin-commonjs':
  18. specifier: ^14.0.0
  19. version: 14.0.0(rollup@4.22.4)
  20. '@rollup/plugin-node-resolve':
  21. specifier: 13.0.6
  22. version: 13.0.6(rollup@4.22.4)
  23. '@rollup/plugin-wasm':
  24. specifier: ^6.2.2
  25. version: 6.2.2(rollup@4.22.4)
  26. '@surma/rollup-plugin-off-main-thread':
  27. specifier: ^2.2.3
  28. version: 2.2.3
  29. babel-preset-latest:
  30. specifier: ^6.24.1
  31. version: 6.24.1
  32. glob:
  33. specifier: ^11.0.0
  34. version: 11.0.0
  35. jquery:
  36. specifier: ^3.7.1
  37. version: 3.7.1
  38. mp4box:
  39. specifier: ^0.5.2
  40. version: 0.5.2
  41. rollup-plugin-progress:
  42. specifier: ^1.1.2
  43. version: 1.1.2
  44. devDependencies:
  45. '@ffmpeg/ffmpeg':
  46. specifier: ^0.12.10
  47. version: 0.12.10
  48. '@ffmpeg/util':
  49. specifier: ^0.12.1
  50. version: 0.12.1
  51. '@rollup/plugin-alias':
  52. specifier: ^5.1.1
  53. version: 5.1.1(rollup@4.22.4)
  54. '@rollup/plugin-url':
  55. specifier: ^8.0.2
  56. version: 8.0.2(rollup@4.22.4)
  57. native-file-system-adapter:
  58. specifier: ^3.0.1
  59. version: 3.0.1
  60. rollup:
  61. specifier: ^4.18.0
  62. version: 4.22.4
  63. rollup-plugin-copy:
  64. specifier: ^3.5.0
  65. version: 3.5.0
  66. rollup-plugin-delete:
  67. specifier: ^2.0.0
  68. version: 2.1.0(rollup@4.22.4)
  69. rollup-plugin-import-alias:
  70. specifier: ^1.0.10
  71. version: 1.0.10
  72. rollup-plugin-json:
  73. specifier: ^4.0.0
  74. version: 4.0.0
  75. rollup-plugin-multi-input:
  76. specifier: ^1.4.2
  77. version: 1.5.0
  78. rollup-plugin-node-resolve:
  79. specifier: ^5.2.0
  80. version: 5.2.0(rollup@4.22.4)
  81. rollup-plugin-terser:
  82. specifier: ^7.0.2
  83. version: 7.0.2(rollup@4.22.4)
  84. rollup-plugin-web-worker-loader:
  85. specifier: ^1.6.1
  86. version: 1.6.1(rollup@4.22.4)
  87. packages:
  88. '@ampproject/remapping@2.3.0':
  89. resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
  90. engines: {node: '>=6.0.0'}
  91. '@babel/code-frame@7.24.7':
  92. resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==}
  93. engines: {node: '>=6.9.0'}
  94. '@babel/compat-data@7.25.4':
  95. resolution: {integrity: sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ==}
  96. engines: {node: '>=6.9.0'}
  97. '@babel/core@7.25.2':
  98. resolution: {integrity: sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==}
  99. engines: {node: '>=6.9.0'}
  100. '@babel/generator@7.25.6':
  101. resolution: {integrity: sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw==}
  102. engines: {node: '>=6.9.0'}
  103. '@babel/helper-annotate-as-pure@7.24.7':
  104. resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==}
  105. engines: {node: '>=6.9.0'}
  106. '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7':
  107. resolution: {integrity: sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==}
  108. engines: {node: '>=6.9.0'}
  109. '@babel/helper-compilation-targets@7.25.2':
  110. resolution: {integrity: sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==}
  111. engines: {node: '>=6.9.0'}
  112. '@babel/helper-create-class-features-plugin@7.25.4':
  113. resolution: {integrity: sha512-ro/bFs3/84MDgDmMwbcHgDa8/E6J3QKNTk4xJJnVeFtGE+tL0K26E3pNxhYz2b67fJpt7Aphw5XcploKXuCvCQ==}
  114. engines: {node: '>=6.9.0'}
  115. peerDependencies:
  116. '@babel/core': ^7.0.0
  117. '@babel/helper-create-regexp-features-plugin@7.25.2':
  118. resolution: {integrity: sha512-+wqVGP+DFmqwFD3EH6TMTfUNeqDehV3E/dl+Sd54eaXqm17tEUNbEIn4sVivVowbvUpOtIGxdo3GoXyDH9N/9g==}
  119. engines: {node: '>=6.9.0'}
  120. peerDependencies:
  121. '@babel/core': ^7.0.0
  122. '@babel/helper-define-polyfill-provider@0.6.2':
  123. resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==}
  124. peerDependencies:
  125. '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
  126. '@babel/helper-member-expression-to-functions@7.24.8':
  127. resolution: {integrity: sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==}
  128. engines: {node: '>=6.9.0'}
  129. '@babel/helper-module-imports@7.24.7':
  130. resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
  131. engines: {node: '>=6.9.0'}
  132. '@babel/helper-module-transforms@7.25.2':
  133. resolution: {integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==}
  134. engines: {node: '>=6.9.0'}
  135. peerDependencies:
  136. '@babel/core': ^7.0.0
  137. '@babel/helper-optimise-call-expression@7.24.7':
  138. resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==}
  139. engines: {node: '>=6.9.0'}
  140. '@babel/helper-plugin-utils@7.24.8':
  141. resolution: {integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==}
  142. engines: {node: '>=6.9.0'}
  143. '@babel/helper-remap-async-to-generator@7.25.0':
  144. resolution: {integrity: sha512-NhavI2eWEIz/H9dbrG0TuOicDhNexze43i5z7lEqwYm0WEZVTwnPpA0EafUTP7+6/W79HWIP2cTe3Z5NiSTVpw==}
  145. engines: {node: '>=6.9.0'}
  146. peerDependencies:
  147. '@babel/core': ^7.0.0
  148. '@babel/helper-replace-supers@7.25.0':
  149. resolution: {integrity: sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==}
  150. engines: {node: '>=6.9.0'}
  151. peerDependencies:
  152. '@babel/core': ^7.0.0
  153. '@babel/helper-simple-access@7.24.7':
  154. resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==}
  155. engines: {node: '>=6.9.0'}
  156. '@babel/helper-skip-transparent-expression-wrappers@7.24.7':
  157. resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==}
  158. engines: {node: '>=6.9.0'}
  159. '@babel/helper-string-parser@7.24.8':
  160. resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==}
  161. engines: {node: '>=6.9.0'}
  162. '@babel/helper-validator-identifier@7.24.7':
  163. resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==}
  164. engines: {node: '>=6.9.0'}
  165. '@babel/helper-validator-option@7.24.8':
  166. resolution: {integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==}
  167. engines: {node: '>=6.9.0'}
  168. '@babel/helper-wrap-function@7.25.0':
  169. resolution: {integrity: sha512-s6Q1ebqutSiZnEjaofc/UKDyC4SbzV5n5SrA2Gq8UawLycr3i04f1dX4OzoQVnexm6aOCh37SQNYlJ/8Ku+PMQ==}
  170. engines: {node: '>=6.9.0'}
  171. '@babel/helpers@7.25.6':
  172. resolution: {integrity: sha512-Xg0tn4HcfTijTwfDwYlvVCl43V6h4KyVVX2aEm4qdO/PC6L2YvzLHFdmxhoeSA3eslcE6+ZVXHgWwopXYLNq4Q==}
  173. engines: {node: '>=6.9.0'}
  174. '@babel/highlight@7.24.7':
  175. resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==}
  176. engines: {node: '>=6.9.0'}
  177. '@babel/parser@7.25.6':
  178. resolution: {integrity: sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==}
  179. engines: {node: '>=6.0.0'}
  180. hasBin: true
  181. '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.3':
  182. resolution: {integrity: sha512-wUrcsxZg6rqBXG05HG1FPYgsP6EvwF4WpBbxIpWIIYnH8wG0gzx3yZY3dtEHas4sTAOGkbTsc9EGPxwff8lRoA==}
  183. engines: {node: '>=6.9.0'}
  184. peerDependencies:
  185. '@babel/core': ^7.0.0
  186. '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.0':
  187. resolution: {integrity: sha512-Bm4bH2qsX880b/3ziJ8KD711LT7z4u8CFudmjqle65AZj/HNUFhEf90dqYv6O86buWvSBmeQDjv0Tn2aF/bIBA==}
  188. engines: {node: '>=6.9.0'}
  189. peerDependencies:
  190. '@babel/core': ^7.0.0
  191. '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.0':
  192. resolution: {integrity: sha512-lXwdNZtTmeVOOFtwM/WDe7yg1PL8sYhRk/XH0FzbR2HDQ0xC+EnQ/JHeoMYSavtU115tnUk0q9CDyq8si+LMAA==}
  193. engines: {node: '>=6.9.0'}
  194. peerDependencies:
  195. '@babel/core': ^7.0.0
  196. '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7':
  197. resolution: {integrity: sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==}
  198. engines: {node: '>=6.9.0'}
  199. peerDependencies:
  200. '@babel/core': ^7.13.0
  201. '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.0':
  202. resolution: {integrity: sha512-tggFrk1AIShG/RUQbEwt2Tr/E+ObkfwrPjR6BjbRvsx24+PSjK8zrq0GWPNCjo8qpRx4DuJzlcvWJqlm+0h3kw==}
  203. engines: {node: '>=6.9.0'}
  204. peerDependencies:
  205. '@babel/core': ^7.0.0
  206. '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2':
  207. resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
  208. engines: {node: '>=6.9.0'}
  209. peerDependencies:
  210. '@babel/core': ^7.0.0-0
  211. '@babel/plugin-syntax-async-generators@7.8.4':
  212. resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
  213. peerDependencies:
  214. '@babel/core': ^7.0.0-0
  215. '@babel/plugin-syntax-class-properties@7.12.13':
  216. resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
  217. peerDependencies:
  218. '@babel/core': ^7.0.0-0
  219. '@babel/plugin-syntax-class-static-block@7.14.5':
  220. resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
  221. engines: {node: '>=6.9.0'}
  222. peerDependencies:
  223. '@babel/core': ^7.0.0-0
  224. '@babel/plugin-syntax-dynamic-import@7.8.3':
  225. resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
  226. peerDependencies:
  227. '@babel/core': ^7.0.0-0
  228. '@babel/plugin-syntax-export-namespace-from@7.8.3':
  229. resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
  230. peerDependencies:
  231. '@babel/core': ^7.0.0-0
  232. '@babel/plugin-syntax-import-assertions@7.25.6':
  233. resolution: {integrity: sha512-aABl0jHw9bZ2karQ/uUD6XP4u0SG22SJrOHFoL6XB1R7dTovOP4TzTlsxOYC5yQ1pdscVK2JTUnF6QL3ARoAiQ==}
  234. engines: {node: '>=6.9.0'}
  235. peerDependencies:
  236. '@babel/core': ^7.0.0-0
  237. '@babel/plugin-syntax-import-attributes@7.25.6':
  238. resolution: {integrity: sha512-sXaDXaJN9SNLymBdlWFA+bjzBhFD617ZaFiY13dGt7TVslVvVgA6fkZOP7Ki3IGElC45lwHdOTrCtKZGVAWeLQ==}
  239. engines: {node: '>=6.9.0'}
  240. peerDependencies:
  241. '@babel/core': ^7.0.0-0
  242. '@babel/plugin-syntax-import-meta@7.10.4':
  243. resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
  244. peerDependencies:
  245. '@babel/core': ^7.0.0-0
  246. '@babel/plugin-syntax-json-strings@7.8.3':
  247. resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
  248. peerDependencies:
  249. '@babel/core': ^7.0.0-0
  250. '@babel/plugin-syntax-logical-assignment-operators@7.10.4':
  251. resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
  252. peerDependencies:
  253. '@babel/core': ^7.0.0-0
  254. '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3':
  255. resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
  256. peerDependencies:
  257. '@babel/core': ^7.0.0-0
  258. '@babel/plugin-syntax-numeric-separator@7.10.4':
  259. resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
  260. peerDependencies:
  261. '@babel/core': ^7.0.0-0
  262. '@babel/plugin-syntax-object-rest-spread@7.8.3':
  263. resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
  264. peerDependencies:
  265. '@babel/core': ^7.0.0-0
  266. '@babel/plugin-syntax-optional-catch-binding@7.8.3':
  267. resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
  268. peerDependencies:
  269. '@babel/core': ^7.0.0-0
  270. '@babel/plugin-syntax-optional-chaining@7.8.3':
  271. resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
  272. peerDependencies:
  273. '@babel/core': ^7.0.0-0
  274. '@babel/plugin-syntax-private-property-in-object@7.14.5':
  275. resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
  276. engines: {node: '>=6.9.0'}
  277. peerDependencies:
  278. '@babel/core': ^7.0.0-0
  279. '@babel/plugin-syntax-top-level-await@7.14.5':
  280. resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
  281. engines: {node: '>=6.9.0'}
  282. peerDependencies:
  283. '@babel/core': ^7.0.0-0
  284. '@babel/plugin-syntax-unicode-sets-regex@7.18.6':
  285. resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
  286. engines: {node: '>=6.9.0'}
  287. peerDependencies:
  288. '@babel/core': ^7.0.0
  289. '@babel/plugin-transform-arrow-functions@7.24.7':
  290. resolution: {integrity: sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==}
  291. engines: {node: '>=6.9.0'}
  292. peerDependencies:
  293. '@babel/core': ^7.0.0-0
  294. '@babel/plugin-transform-async-generator-functions@7.25.4':
  295. resolution: {integrity: sha512-jz8cV2XDDTqjKPwVPJBIjORVEmSGYhdRa8e5k5+vN+uwcjSrSxUaebBRa4ko1jqNF2uxyg8G6XYk30Jv285xzg==}
  296. engines: {node: '>=6.9.0'}
  297. peerDependencies:
  298. '@babel/core': ^7.0.0-0
  299. '@babel/plugin-transform-async-to-generator@7.24.7':
  300. resolution: {integrity: sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==}
  301. engines: {node: '>=6.9.0'}
  302. peerDependencies:
  303. '@babel/core': ^7.0.0-0
  304. '@babel/plugin-transform-block-scoped-functions@7.24.7':
  305. resolution: {integrity: sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==}
  306. engines: {node: '>=6.9.0'}
  307. peerDependencies:
  308. '@babel/core': ^7.0.0-0
  309. '@babel/plugin-transform-block-scoping@7.25.0':
  310. resolution: {integrity: sha512-yBQjYoOjXlFv9nlXb3f1casSHOZkWr29NX+zChVanLg5Nc157CrbEX9D7hxxtTpuFy7Q0YzmmWfJxzvps4kXrQ==}
  311. engines: {node: '>=6.9.0'}
  312. peerDependencies:
  313. '@babel/core': ^7.0.0-0
  314. '@babel/plugin-transform-class-properties@7.25.4':
  315. resolution: {integrity: sha512-nZeZHyCWPfjkdU5pA/uHiTaDAFUEqkpzf1YoQT2NeSynCGYq9rxfyI3XpQbfx/a0hSnFH6TGlEXvae5Vi7GD8g==}
  316. engines: {node: '>=6.9.0'}
  317. peerDependencies:
  318. '@babel/core': ^7.0.0-0
  319. '@babel/plugin-transform-class-static-block@7.24.7':
  320. resolution: {integrity: sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==}
  321. engines: {node: '>=6.9.0'}
  322. peerDependencies:
  323. '@babel/core': ^7.12.0
  324. '@babel/plugin-transform-classes@7.25.4':
  325. resolution: {integrity: sha512-oexUfaQle2pF/b6E0dwsxQtAol9TLSO88kQvym6HHBWFliV2lGdrPieX+WgMRLSJDVzdYywk7jXbLPuO2KLTLg==}
  326. engines: {node: '>=6.9.0'}
  327. peerDependencies:
  328. '@babel/core': ^7.0.0-0
  329. '@babel/plugin-transform-computed-properties@7.24.7':
  330. resolution: {integrity: sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==}
  331. engines: {node: '>=6.9.0'}
  332. peerDependencies:
  333. '@babel/core': ^7.0.0-0
  334. '@babel/plugin-transform-destructuring@7.24.8':
  335. resolution: {integrity: sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ==}
  336. engines: {node: '>=6.9.0'}
  337. peerDependencies:
  338. '@babel/core': ^7.0.0-0
  339. '@babel/plugin-transform-dotall-regex@7.24.7':
  340. resolution: {integrity: sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==}
  341. engines: {node: '>=6.9.0'}
  342. peerDependencies:
  343. '@babel/core': ^7.0.0-0
  344. '@babel/plugin-transform-duplicate-keys@7.24.7':
  345. resolution: {integrity: sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==}
  346. engines: {node: '>=6.9.0'}
  347. peerDependencies:
  348. '@babel/core': ^7.0.0-0
  349. '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.0':
  350. resolution: {integrity: sha512-YLpb4LlYSc3sCUa35un84poXoraOiQucUTTu8X1j18JV+gNa8E0nyUf/CjZ171IRGr4jEguF+vzJU66QZhn29g==}
  351. engines: {node: '>=6.9.0'}
  352. peerDependencies:
  353. '@babel/core': ^7.0.0
  354. '@babel/plugin-transform-dynamic-import@7.24.7':
  355. resolution: {integrity: sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==}
  356. engines: {node: '>=6.9.0'}
  357. peerDependencies:
  358. '@babel/core': ^7.0.0-0
  359. '@babel/plugin-transform-exponentiation-operator@7.24.7':
  360. resolution: {integrity: sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==}
  361. engines: {node: '>=6.9.0'}
  362. peerDependencies:
  363. '@babel/core': ^7.0.0-0
  364. '@babel/plugin-transform-export-namespace-from@7.24.7':
  365. resolution: {integrity: sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==}
  366. engines: {node: '>=6.9.0'}
  367. peerDependencies:
  368. '@babel/core': ^7.0.0-0
  369. '@babel/plugin-transform-for-of@7.24.7':
  370. resolution: {integrity: sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==}
  371. engines: {node: '>=6.9.0'}
  372. peerDependencies:
  373. '@babel/core': ^7.0.0-0
  374. '@babel/plugin-transform-function-name@7.25.1':
  375. resolution: {integrity: sha512-TVVJVdW9RKMNgJJlLtHsKDTydjZAbwIsn6ySBPQaEAUU5+gVvlJt/9nRmqVbsV/IBanRjzWoaAQKLoamWVOUuA==}
  376. engines: {node: '>=6.9.0'}
  377. peerDependencies:
  378. '@babel/core': ^7.0.0-0
  379. '@babel/plugin-transform-json-strings@7.24.7':
  380. resolution: {integrity: sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==}
  381. engines: {node: '>=6.9.0'}
  382. peerDependencies:
  383. '@babel/core': ^7.0.0-0
  384. '@babel/plugin-transform-literals@7.25.2':
  385. resolution: {integrity: sha512-HQI+HcTbm9ur3Z2DkO+jgESMAMcYLuN/A7NRw9juzxAezN9AvqvUTnpKP/9kkYANz6u7dFlAyOu44ejuGySlfw==}
  386. engines: {node: '>=6.9.0'}
  387. peerDependencies:
  388. '@babel/core': ^7.0.0-0
  389. '@babel/plugin-transform-logical-assignment-operators@7.24.7':
  390. resolution: {integrity: sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==}
  391. engines: {node: '>=6.9.0'}
  392. peerDependencies:
  393. '@babel/core': ^7.0.0-0
  394. '@babel/plugin-transform-member-expression-literals@7.24.7':
  395. resolution: {integrity: sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==}
  396. engines: {node: '>=6.9.0'}
  397. peerDependencies:
  398. '@babel/core': ^7.0.0-0
  399. '@babel/plugin-transform-modules-amd@7.24.7':
  400. resolution: {integrity: sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==}
  401. engines: {node: '>=6.9.0'}
  402. peerDependencies:
  403. '@babel/core': ^7.0.0-0
  404. '@babel/plugin-transform-modules-commonjs@7.24.8':
  405. resolution: {integrity: sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==}
  406. engines: {node: '>=6.9.0'}
  407. peerDependencies:
  408. '@babel/core': ^7.0.0-0
  409. '@babel/plugin-transform-modules-systemjs@7.25.0':
  410. resolution: {integrity: sha512-YPJfjQPDXxyQWg/0+jHKj1llnY5f/R6a0p/vP4lPymxLu7Lvl4k2WMitqi08yxwQcCVUUdG9LCUj4TNEgAp3Jw==}
  411. engines: {node: '>=6.9.0'}
  412. peerDependencies:
  413. '@babel/core': ^7.0.0-0
  414. '@babel/plugin-transform-modules-umd@7.24.7':
  415. resolution: {integrity: sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==}
  416. engines: {node: '>=6.9.0'}
  417. peerDependencies:
  418. '@babel/core': ^7.0.0-0
  419. '@babel/plugin-transform-named-capturing-groups-regex@7.24.7':
  420. resolution: {integrity: sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==}
  421. engines: {node: '>=6.9.0'}
  422. peerDependencies:
  423. '@babel/core': ^7.0.0
  424. '@babel/plugin-transform-new-target@7.24.7':
  425. resolution: {integrity: sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==}
  426. engines: {node: '>=6.9.0'}
  427. peerDependencies:
  428. '@babel/core': ^7.0.0-0
  429. '@babel/plugin-transform-nullish-coalescing-operator@7.24.7':
  430. resolution: {integrity: sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==}
  431. engines: {node: '>=6.9.0'}
  432. peerDependencies:
  433. '@babel/core': ^7.0.0-0
  434. '@babel/plugin-transform-numeric-separator@7.24.7':
  435. resolution: {integrity: sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==}
  436. engines: {node: '>=6.9.0'}
  437. peerDependencies:
  438. '@babel/core': ^7.0.0-0
  439. '@babel/plugin-transform-object-rest-spread@7.24.7':
  440. resolution: {integrity: sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==}
  441. engines: {node: '>=6.9.0'}
  442. peerDependencies:
  443. '@babel/core': ^7.0.0-0
  444. '@babel/plugin-transform-object-super@7.24.7':
  445. resolution: {integrity: sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==}
  446. engines: {node: '>=6.9.0'}
  447. peerDependencies:
  448. '@babel/core': ^7.0.0-0
  449. '@babel/plugin-transform-optional-catch-binding@7.24.7':
  450. resolution: {integrity: sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==}
  451. engines: {node: '>=6.9.0'}
  452. peerDependencies:
  453. '@babel/core': ^7.0.0-0
  454. '@babel/plugin-transform-optional-chaining@7.24.8':
  455. resolution: {integrity: sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw==}
  456. engines: {node: '>=6.9.0'}
  457. peerDependencies:
  458. '@babel/core': ^7.0.0-0
  459. '@babel/plugin-transform-parameters@7.24.7':
  460. resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==}
  461. engines: {node: '>=6.9.0'}
  462. peerDependencies:
  463. '@babel/core': ^7.0.0-0
  464. '@babel/plugin-transform-private-methods@7.25.4':
  465. resolution: {integrity: sha512-ao8BG7E2b/URaUQGqN3Tlsg+M3KlHY6rJ1O1gXAEUnZoyNQnvKyH87Kfg+FoxSeyWUB8ISZZsC91C44ZuBFytw==}
  466. engines: {node: '>=6.9.0'}
  467. peerDependencies:
  468. '@babel/core': ^7.0.0-0
  469. '@babel/plugin-transform-private-property-in-object@7.24.7':
  470. resolution: {integrity: sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==}
  471. engines: {node: '>=6.9.0'}
  472. peerDependencies:
  473. '@babel/core': ^7.0.0-0
  474. '@babel/plugin-transform-property-literals@7.24.7':
  475. resolution: {integrity: sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==}
  476. engines: {node: '>=6.9.0'}
  477. peerDependencies:
  478. '@babel/core': ^7.0.0-0
  479. '@babel/plugin-transform-regenerator@7.24.7':
  480. resolution: {integrity: sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==}
  481. engines: {node: '>=6.9.0'}
  482. peerDependencies:
  483. '@babel/core': ^7.0.0-0
  484. '@babel/plugin-transform-reserved-words@7.24.7':
  485. resolution: {integrity: sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==}
  486. engines: {node: '>=6.9.0'}
  487. peerDependencies:
  488. '@babel/core': ^7.0.0-0
  489. '@babel/plugin-transform-shorthand-properties@7.24.7':
  490. resolution: {integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==}
  491. engines: {node: '>=6.9.0'}
  492. peerDependencies:
  493. '@babel/core': ^7.0.0-0
  494. '@babel/plugin-transform-spread@7.24.7':
  495. resolution: {integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==}
  496. engines: {node: '>=6.9.0'}
  497. peerDependencies:
  498. '@babel/core': ^7.0.0-0
  499. '@babel/plugin-transform-sticky-regex@7.24.7':
  500. resolution: {integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==}
  501. engines: {node: '>=6.9.0'}
  502. peerDependencies:
  503. '@babel/core': ^7.0.0-0
  504. '@babel/plugin-transform-template-literals@7.24.7':
  505. resolution: {integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==}
  506. engines: {node: '>=6.9.0'}
  507. peerDependencies:
  508. '@babel/core': ^7.0.0-0
  509. '@babel/plugin-transform-typeof-symbol@7.24.8':
  510. resolution: {integrity: sha512-adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw==}
  511. engines: {node: '>=6.9.0'}
  512. peerDependencies:
  513. '@babel/core': ^7.0.0-0
  514. '@babel/plugin-transform-unicode-escapes@7.24.7':
  515. resolution: {integrity: sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==}
  516. engines: {node: '>=6.9.0'}
  517. peerDependencies:
  518. '@babel/core': ^7.0.0-0
  519. '@babel/plugin-transform-unicode-property-regex@7.24.7':
  520. resolution: {integrity: sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==}
  521. engines: {node: '>=6.9.0'}
  522. peerDependencies:
  523. '@babel/core': ^7.0.0-0
  524. '@babel/plugin-transform-unicode-regex@7.24.7':
  525. resolution: {integrity: sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==}
  526. engines: {node: '>=6.9.0'}
  527. peerDependencies:
  528. '@babel/core': ^7.0.0-0
  529. '@babel/plugin-transform-unicode-sets-regex@7.25.4':
  530. resolution: {integrity: sha512-qesBxiWkgN1Q+31xUE9RcMk79eOXXDCv6tfyGMRSs4RGlioSg2WVyQAm07k726cSE56pa+Kb0y9epX2qaXzTvA==}
  531. engines: {node: '>=6.9.0'}
  532. peerDependencies:
  533. '@babel/core': ^7.0.0
  534. '@babel/preset-env@7.25.4':
  535. resolution: {integrity: sha512-W9Gyo+KmcxjGahtt3t9fb14vFRWvPpu5pT6GBlovAK6BTBcxgjfVMSQCfJl4oi35ODrxP6xx2Wr8LNST57Mraw==}
  536. engines: {node: '>=6.9.0'}
  537. peerDependencies:
  538. '@babel/core': ^7.0.0-0
  539. '@babel/preset-modules@0.1.6-no-external-plugins':
  540. resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
  541. peerDependencies:
  542. '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
  543. '@babel/regjsgen@0.8.0':
  544. resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
  545. '@babel/runtime@7.25.6':
  546. resolution: {integrity: sha512-VBj9MYyDb9tuLq7yzqjgzt6Q+IBQLrGZfdjOekyEirZPHxXWoTSGUTMrpsfi58Up73d13NfYLv8HT9vmznjzhQ==}
  547. engines: {node: '>=6.9.0'}
  548. '@babel/template@7.25.0':
  549. resolution: {integrity: sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==}
  550. engines: {node: '>=6.9.0'}
  551. '@babel/traverse@7.25.6':
  552. resolution: {integrity: sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ==}
  553. engines: {node: '>=6.9.0'}
  554. '@babel/types@7.25.6':
  555. resolution: {integrity: sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==}
  556. engines: {node: '>=6.9.0'}
  557. '@ffmpeg/ffmpeg@0.12.10':
  558. resolution: {integrity: sha512-lVtk8PW8e+NUzGZhPTWj2P1J4/NyuCrbDD3O9IGpSeLYtUZKBqZO8CNj1WYGghep/MXoM8e1qVY1GztTkf8YYQ==}
  559. engines: {node: '>=18.x'}
  560. '@ffmpeg/types@0.12.2':
  561. resolution: {integrity: sha512-NJtxwPoLb60/z1Klv0ueshguWQ/7mNm106qdHkB4HL49LXszjhjCCiL+ldHJGQ9ai2Igx0s4F24ghigy//ERdA==}
  562. engines: {node: '>=16.x'}
  563. '@ffmpeg/util@0.12.1':
  564. resolution: {integrity: sha512-10jjfAKWaDyb8+nAkijcsi9wgz/y26LOc1NKJradNMyCIl6usQcBbhkjX5qhALrSBcOy6TOeksunTYa+a03qNQ==}
  565. engines: {node: '>=18.x'}
  566. '@isaacs/cliui@8.0.2':
  567. resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
  568. engines: {node: '>=12'}
  569. '@jridgewell/gen-mapping@0.3.5':
  570. resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
  571. engines: {node: '>=6.0.0'}
  572. '@jridgewell/resolve-uri@3.1.2':
  573. resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
  574. engines: {node: '>=6.0.0'}
  575. '@jridgewell/set-array@1.2.1':
  576. resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
  577. engines: {node: '>=6.0.0'}
  578. '@jridgewell/source-map@0.3.6':
  579. resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==}
  580. '@jridgewell/sourcemap-codec@1.5.0':
  581. resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
  582. '@jridgewell/trace-mapping@0.3.25':
  583. resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
  584. '@nodelib/fs.scandir@2.1.5':
  585. resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
  586. engines: {node: '>= 8'}
  587. '@nodelib/fs.stat@2.0.5':
  588. resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
  589. engines: {node: '>= 8'}
  590. '@nodelib/fs.walk@1.2.8':
  591. resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
  592. engines: {node: '>= 8'}
  593. '@rollup/plugin-alias@5.1.1':
  594. resolution: {integrity: sha512-PR9zDb+rOzkRb2VD+EuKB7UC41vU5DIwZ5qqCpk0KJudcWAyi8rvYOhS7+L5aZCspw1stTViLgN5v6FF1p5cgQ==}
  595. engines: {node: '>=14.0.0'}
  596. peerDependencies:
  597. rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
  598. peerDependenciesMeta:
  599. rollup:
  600. optional: true
  601. '@rollup/plugin-babel@6.0.4':
  602. resolution: {integrity: sha512-YF7Y52kFdFT/xVSuVdjkV5ZdX/3YtmX0QulG+x0taQOtJdHYzVU61aSSkAgVJ7NOv6qPkIYiJSgSWWN/DM5sGw==}
  603. engines: {node: '>=14.0.0'}
  604. peerDependencies:
  605. '@babel/core': ^7.0.0
  606. '@types/babel__core': ^7.1.9
  607. rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
  608. peerDependenciesMeta:
  609. '@types/babel__core':
  610. optional: true
  611. rollup:
  612. optional: true
  613. '@rollup/plugin-commonjs@14.0.0':
  614. resolution: {integrity: sha512-+PSmD9ePwTAeU106i9FRdc+Zb3XUWyW26mo5Atr2mk82hor8+nPwkztEjFo8/B1fJKfaQDg9aM2bzQkjhi7zOw==}
  615. engines: {node: '>= 8.0.0'}
  616. peerDependencies:
  617. rollup: ^2.3.4
  618. '@rollup/plugin-node-resolve@13.0.6':
  619. resolution: {integrity: sha512-sFsPDMPd4gMqnh2gS0uIxELnoRUp5kBl5knxD2EO0778G1oOJv4G1vyT2cpWz75OU2jDVcXhjVUuTAczGyFNKA==}
  620. engines: {node: '>= 10.0.0'}
  621. peerDependencies:
  622. rollup: ^2.42.0
  623. '@rollup/plugin-url@8.0.2':
  624. resolution: {integrity: sha512-5yW2LP5NBEgkvIRSSEdJkmxe5cUNZKG3eenKtfJvSkxVm/xTTu7w+ayBtNwhozl1ZnTUCU0xFaRQR+cBl2H7TQ==}
  625. engines: {node: '>=14.0.0'}
  626. peerDependencies:
  627. rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
  628. peerDependenciesMeta:
  629. rollup:
  630. optional: true
  631. '@rollup/plugin-wasm@6.2.2':
  632. resolution: {integrity: sha512-gpC4R1G9Ni92ZIRTexqbhX7U+9estZrbhP+9SRb0DW9xpB9g7j34r+J2hqrcW/lRI7dJaU84MxZM0Rt82tqYPQ==}
  633. engines: {node: '>=14.0.0'}
  634. peerDependencies:
  635. rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
  636. peerDependenciesMeta:
  637. rollup:
  638. optional: true
  639. '@rollup/pluginutils@3.1.0':
  640. resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==}
  641. engines: {node: '>= 8.0.0'}
  642. peerDependencies:
  643. rollup: ^1.20.0||^2.0.0
  644. '@rollup/pluginutils@5.1.2':
  645. resolution: {integrity: sha512-/FIdS3PyZ39bjZlwqFnWqCOVnW7o963LtKMwQOD0NhQqw22gSr2YY1afu3FxRip4ZCZNsD5jq6Aaz6QV3D/Njw==}
  646. engines: {node: '>=14.0.0'}
  647. peerDependencies:
  648. rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
  649. peerDependenciesMeta:
  650. rollup:
  651. optional: true
  652. '@rollup/rollup-android-arm-eabi@4.22.4':
  653. resolution: {integrity: sha512-Fxamp4aEZnfPOcGA8KSNEohV8hX7zVHOemC8jVBoBUHu5zpJK/Eu3uJwt6BMgy9fkvzxDaurgj96F/NiLukF2w==}
  654. cpu: [arm]
  655. os: [android]
  656. '@rollup/rollup-android-arm64@4.22.4':
  657. resolution: {integrity: sha512-VXoK5UMrgECLYaMuGuVTOx5kcuap1Jm8g/M83RnCHBKOqvPPmROFJGQaZhGccnsFtfXQ3XYa4/jMCJvZnbJBdA==}
  658. cpu: [arm64]
  659. os: [android]
  660. '@rollup/rollup-darwin-arm64@4.22.4':
  661. resolution: {integrity: sha512-xMM9ORBqu81jyMKCDP+SZDhnX2QEVQzTcC6G18KlTQEzWK8r/oNZtKuZaCcHhnsa6fEeOBionoyl5JsAbE/36Q==}
  662. cpu: [arm64]
  663. os: [darwin]
  664. '@rollup/rollup-darwin-x64@4.22.4':
  665. resolution: {integrity: sha512-aJJyYKQwbHuhTUrjWjxEvGnNNBCnmpHDvrb8JFDbeSH3m2XdHcxDd3jthAzvmoI8w/kSjd2y0udT+4okADsZIw==}
  666. cpu: [x64]
  667. os: [darwin]
  668. '@rollup/rollup-linux-arm-gnueabihf@4.22.4':
  669. resolution: {integrity: sha512-j63YtCIRAzbO+gC2L9dWXRh5BFetsv0j0va0Wi9epXDgU/XUi5dJKo4USTttVyK7fGw2nPWK0PbAvyliz50SCQ==}
  670. cpu: [arm]
  671. os: [linux]
  672. libc: [glibc]
  673. '@rollup/rollup-linux-arm-musleabihf@4.22.4':
  674. resolution: {integrity: sha512-dJnWUgwWBX1YBRsuKKMOlXCzh2Wu1mlHzv20TpqEsfdZLb3WoJW2kIEsGwLkroYf24IrPAvOT/ZQ2OYMV6vlrg==}
  675. cpu: [arm]
  676. os: [linux]
  677. libc: [musl]
  678. '@rollup/rollup-linux-arm64-gnu@4.22.4':
  679. resolution: {integrity: sha512-AdPRoNi3NKVLolCN/Sp4F4N1d98c4SBnHMKoLuiG6RXgoZ4sllseuGioszumnPGmPM2O7qaAX/IJdeDU8f26Aw==}
  680. cpu: [arm64]
  681. os: [linux]
  682. libc: [glibc]
  683. '@rollup/rollup-linux-arm64-musl@4.22.4':
  684. resolution: {integrity: sha512-Gl0AxBtDg8uoAn5CCqQDMqAx22Wx22pjDOjBdmG0VIWX3qUBHzYmOKh8KXHL4UpogfJ14G4wk16EQogF+v8hmA==}
  685. cpu: [arm64]
  686. os: [linux]
  687. libc: [musl]
  688. '@rollup/rollup-linux-powerpc64le-gnu@4.22.4':
  689. resolution: {integrity: sha512-3aVCK9xfWW1oGQpTsYJJPF6bfpWfhbRnhdlyhak2ZiyFLDaayz0EP5j9V1RVLAAxlmWKTDfS9wyRyY3hvhPoOg==}
  690. cpu: [ppc64]
  691. os: [linux]
  692. libc: [glibc]
  693. '@rollup/rollup-linux-riscv64-gnu@4.22.4':
  694. resolution: {integrity: sha512-ePYIir6VYnhgv2C5Xe9u+ico4t8sZWXschR6fMgoPUK31yQu7hTEJb7bCqivHECwIClJfKgE7zYsh1qTP3WHUA==}
  695. cpu: [riscv64]
  696. os: [linux]
  697. libc: [glibc]
  698. '@rollup/rollup-linux-s390x-gnu@4.22.4':
  699. resolution: {integrity: sha512-GqFJ9wLlbB9daxhVlrTe61vJtEY99/xB3C8e4ULVsVfflcpmR6c8UZXjtkMA6FhNONhj2eA5Tk9uAVw5orEs4Q==}
  700. cpu: [s390x]
  701. os: [linux]
  702. libc: [glibc]
  703. '@rollup/rollup-linux-x64-gnu@4.22.4':
  704. resolution: {integrity: sha512-87v0ol2sH9GE3cLQLNEy0K/R0pz1nvg76o8M5nhMR0+Q+BBGLnb35P0fVz4CQxHYXaAOhE8HhlkaZfsdUOlHwg==}
  705. cpu: [x64]
  706. os: [linux]
  707. libc: [glibc]
  708. '@rollup/rollup-linux-x64-musl@4.22.4':
  709. resolution: {integrity: sha512-UV6FZMUgePDZrFjrNGIWzDo/vABebuXBhJEqrHxrGiU6HikPy0Z3LfdtciIttEUQfuDdCn8fqh7wiFJjCNwO+g==}
  710. cpu: [x64]
  711. os: [linux]
  712. libc: [musl]
  713. '@rollup/rollup-win32-arm64-msvc@4.22.4':
  714. resolution: {integrity: sha512-BjI+NVVEGAXjGWYHz/vv0pBqfGoUH0IGZ0cICTn7kB9PyjrATSkX+8WkguNjWoj2qSr1im/+tTGRaY+4/PdcQw==}
  715. cpu: [arm64]
  716. os: [win32]
  717. '@rollup/rollup-win32-ia32-msvc@4.22.4':
  718. resolution: {integrity: sha512-SiWG/1TuUdPvYmzmYnmd3IEifzR61Tragkbx9D3+R8mzQqDBz8v+BvZNDlkiTtI9T15KYZhP0ehn3Dld4n9J5g==}
  719. cpu: [ia32]
  720. os: [win32]
  721. '@rollup/rollup-win32-x64-msvc@4.22.4':
  722. resolution: {integrity: sha512-j8pPKp53/lq9lMXN57S8cFz0MynJk8OWNuUnXct/9KCpKU7DgU3bYMJhwWmcqC0UU29p8Lr0/7KEVcaM6bf47Q==}
  723. cpu: [x64]
  724. os: [win32]
  725. '@surma/rollup-plugin-off-main-thread@2.2.3':
  726. resolution: {integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==}
  727. '@types/estree@0.0.39':
  728. resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==}
  729. '@types/estree@1.0.5':
  730. resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
  731. '@types/estree@1.0.6':
  732. resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
  733. '@types/fs-extra@8.1.5':
  734. resolution: {integrity: sha512-0dzKcwO+S8s2kuF5Z9oUWatQJj5Uq/iqphEtE3GQJVRRYm/tD1LglU2UnXi2A8jLq5umkGouOXOR9y0n613ZwQ==}
  735. '@types/glob@7.2.0':
  736. resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
  737. '@types/minimatch@5.1.2':
  738. resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==}
  739. '@types/node@22.7.2':
  740. resolution: {integrity: sha512-866lXSrpGpgyHBZUa2m9YNWqHDjjM0aBTJlNtYaGEw4rqY/dcD7deRVTbBBAJelfA7oaGDbNftXF/TL/A6RgoA==}
  741. '@types/resolve@0.0.8':
  742. resolution: {integrity: sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==}
  743. '@types/resolve@1.17.1':
  744. resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==}
  745. acorn@8.12.1:
  746. resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
  747. engines: {node: '>=0.4.0'}
  748. hasBin: true
  749. aggregate-error@3.1.0:
  750. resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
  751. engines: {node: '>=8'}
  752. ansi-regex@2.1.1:
  753. resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==}
  754. engines: {node: '>=0.10.0'}
  755. ansi-regex@5.0.1:
  756. resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
  757. engines: {node: '>=8'}
  758. ansi-regex@6.1.0:
  759. resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
  760. engines: {node: '>=12'}
  761. ansi-styles@2.2.1:
  762. resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==}
  763. engines: {node: '>=0.10.0'}
  764. ansi-styles@3.2.1:
  765. resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
  766. engines: {node: '>=4'}
  767. ansi-styles@4.3.0:
  768. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  769. engines: {node: '>=8'}
  770. ansi-styles@6.2.1:
  771. resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
  772. engines: {node: '>=12'}
  773. array-buffer-byte-length@1.0.1:
  774. resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==}
  775. engines: {node: '>= 0.4'}
  776. array-union@2.1.0:
  777. resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
  778. engines: {node: '>=8'}
  779. arraybuffer.prototype.slice@1.0.3:
  780. resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==}
  781. engines: {node: '>= 0.4'}
  782. async@3.2.6:
  783. resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==}
  784. available-typed-arrays@1.0.7:
  785. resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
  786. engines: {node: '>= 0.4'}
  787. babel-code-frame@6.26.0:
  788. resolution: {integrity: sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g==}
  789. babel-helper-builder-binary-assignment-operator-visitor@6.24.1:
  790. resolution: {integrity: sha512-gCtfYORSG1fUMX4kKraymq607FWgMWg+j42IFPc18kFQEsmtaibP4UrqsXt8FlEJle25HUd4tsoDR7H2wDhe9Q==}
  791. babel-helper-call-delegate@6.24.1:
  792. resolution: {integrity: sha512-RL8n2NiEj+kKztlrVJM9JT1cXzzAdvWFh76xh/H1I4nKwunzE4INBXn8ieCZ+wh4zWszZk7NBS1s/8HR5jDkzQ==}
  793. babel-helper-define-map@6.26.0:
  794. resolution: {integrity: sha512-bHkmjcC9lM1kmZcVpA5t2om2nzT/xiZpo6TJq7UlZ3wqKfzia4veeXbIhKvJXAMzhhEBd3cR1IElL5AenWEUpA==}
  795. babel-helper-explode-assignable-expression@6.24.1:
  796. resolution: {integrity: sha512-qe5csbhbvq6ccry9G7tkXbzNtcDiH4r51rrPUbwwoTzZ18AqxWYRZT6AOmxrpxKnQBW0pYlBI/8vh73Z//78nQ==}
  797. babel-helper-function-name@6.24.1:
  798. resolution: {integrity: sha512-Oo6+e2iX+o9eVvJ9Y5eKL5iryeRdsIkwRYheCuhYdVHsdEQysbc2z2QkqCLIYnNxkT5Ss3ggrHdXiDI7Dhrn4Q==}
  799. babel-helper-get-function-arity@6.24.1:
  800. resolution: {integrity: sha512-WfgKFX6swFB1jS2vo+DwivRN4NB8XUdM3ij0Y1gnC21y1tdBoe6xjVnd7NSI6alv+gZXCtJqvrTeMW3fR/c0ng==}
  801. babel-helper-hoist-variables@6.24.1:
  802. resolution: {integrity: sha512-zAYl3tqerLItvG5cKYw7f1SpvIxS9zi7ohyGHaI9cgDUjAT6YcY9jIEH5CstetP5wHIVSceXwNS7Z5BpJg+rOw==}
  803. babel-helper-optimise-call-expression@6.24.1:
  804. resolution: {integrity: sha512-Op9IhEaxhbRT8MDXx2iNuMgciu2V8lDvYCNQbDGjdBNCjaMvyLf4wl4A3b8IgndCyQF8TwfgsQ8T3VD8aX1/pA==}
  805. babel-helper-regex@6.26.0:
  806. resolution: {integrity: sha512-VlPiWmqmGJp0x0oK27Out1D+71nVVCTSdlbhIVoaBAj2lUgrNjBCRR9+llO4lTSb2O4r7PJg+RobRkhBrf6ofg==}
  807. babel-helper-remap-async-to-generator@6.24.1:
  808. resolution: {integrity: sha512-RYqaPD0mQyQIFRu7Ho5wE2yvA/5jxqCIj/Lv4BXNq23mHYu/vxikOy2JueLiBxQknwapwrJeNCesvY0ZcfnlHg==}
  809. babel-helper-replace-supers@6.24.1:
  810. resolution: {integrity: sha512-sLI+u7sXJh6+ToqDr57Bv973kCepItDhMou0xCP2YPVmR1jkHSCY+p1no8xErbV1Siz5QE8qKT1WIwybSWlqjw==}
  811. babel-messages@6.23.0:
  812. resolution: {integrity: sha512-Bl3ZiA+LjqaMtNYopA9TYE9HP1tQ+E5dLxE0XrAzcIJeK2UqF0/EaqXwBn9esd4UmTfEab+P+UYQ1GnioFIb/w==}
  813. babel-plugin-check-es2015-constants@6.22.0:
  814. resolution: {integrity: sha512-B1M5KBP29248dViEo1owyY32lk1ZSH2DaNNrXLGt8lyjjHm7pBqAdQ7VKUPR6EEDO323+OvT3MQXbCin8ooWdA==}
  815. babel-plugin-polyfill-corejs2@0.4.11:
  816. resolution: {integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==}
  817. peerDependencies:
  818. '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
  819. babel-plugin-polyfill-corejs3@0.10.6:
  820. resolution: {integrity: sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==}
  821. peerDependencies:
  822. '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
  823. babel-plugin-polyfill-regenerator@0.6.2:
  824. resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==}
  825. peerDependencies:
  826. '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
  827. babel-plugin-syntax-async-functions@6.13.0:
  828. resolution: {integrity: sha512-4Zp4unmHgw30A1eWI5EpACji2qMocisdXhAftfhXoSV9j0Tvj6nRFE3tOmRY912E0FMRm/L5xWE7MGVT2FoLnw==}
  829. babel-plugin-syntax-exponentiation-operator@6.13.0:
  830. resolution: {integrity: sha512-Z/flU+T9ta0aIEKl1tGEmN/pZiI1uXmCiGFRegKacQfEJzp7iNsKloZmyJlQr+75FCJtiFfGIK03SiCvCt9cPQ==}
  831. babel-plugin-syntax-trailing-function-commas@6.22.0:
  832. resolution: {integrity: sha512-Gx9CH3Q/3GKbhs07Bszw5fPTlU+ygrOGfAhEt7W2JICwufpC4SuO0mG0+4NykPBSYPMJhqvVlDBU17qB1D+hMQ==}
  833. babel-plugin-transform-async-to-generator@6.24.1:
  834. resolution: {integrity: sha512-7BgYJujNCg0Ti3x0c/DL3tStvnKS6ktIYOmo9wginv/dfZOrbSZ+qG4IRRHMBOzZ5Awb1skTiAsQXg/+IWkZYw==}
  835. babel-plugin-transform-es2015-arrow-functions@6.22.0:
  836. resolution: {integrity: sha512-PCqwwzODXW7JMrzu+yZIaYbPQSKjDTAsNNlK2l5Gg9g4rz2VzLnZsStvp/3c46GfXpwkyufb3NCyG9+50FF1Vg==}
  837. babel-plugin-transform-es2015-block-scoped-functions@6.22.0:
  838. resolution: {integrity: sha512-2+ujAT2UMBzYFm7tidUsYh+ZoIutxJ3pN9IYrF1/H6dCKtECfhmB8UkHVpyxDwkj0CYbQG35ykoz925TUnBc3A==}
  839. babel-plugin-transform-es2015-block-scoping@6.26.0:
  840. resolution: {integrity: sha512-YiN6sFAQ5lML8JjCmr7uerS5Yc/EMbgg9G8ZNmk2E3nYX4ckHR01wrkeeMijEf5WHNK5TW0Sl0Uu3pv3EdOJWw==}
  841. babel-plugin-transform-es2015-classes@6.24.1:
  842. resolution: {integrity: sha512-5Dy7ZbRinGrNtmWpquZKZ3EGY8sDgIVB4CU8Om8q8tnMLrD/m94cKglVcHps0BCTdZ0TJeeAWOq2TK9MIY6cag==}
  843. babel-plugin-transform-es2015-computed-properties@6.24.1:
  844. resolution: {integrity: sha512-C/uAv4ktFP/Hmh01gMTvYvICrKze0XVX9f2PdIXuriCSvUmV9j+u+BB9f5fJK3+878yMK6dkdcq+Ymr9mrcLzw==}
  845. babel-plugin-transform-es2015-destructuring@6.23.0:
  846. resolution: {integrity: sha512-aNv/GDAW0j/f4Uy1OEPZn1mqD+Nfy9viFGBfQ5bZyT35YqOiqx7/tXdyfZkJ1sC21NyEsBdfDY6PYmLHF4r5iA==}
  847. babel-plugin-transform-es2015-duplicate-keys@6.24.1:
  848. resolution: {integrity: sha512-ossocTuPOssfxO2h+Z3/Ea1Vo1wWx31Uqy9vIiJusOP4TbF7tPs9U0sJ9pX9OJPf4lXRGj5+6Gkl/HHKiAP5ug==}
  849. babel-plugin-transform-es2015-for-of@6.23.0:
  850. resolution: {integrity: sha512-DLuRwoygCoXx+YfxHLkVx5/NpeSbVwfoTeBykpJK7JhYWlL/O8hgAK/reforUnZDlxasOrVPPJVI/guE3dCwkw==}
  851. babel-plugin-transform-es2015-function-name@6.24.1:
  852. resolution: {integrity: sha512-iFp5KIcorf11iBqu/y/a7DK3MN5di3pNCzto61FqCNnUX4qeBwcV1SLqe10oXNnCaxBUImX3SckX2/o1nsrTcg==}
  853. babel-plugin-transform-es2015-literals@6.22.0:
  854. resolution: {integrity: sha512-tjFl0cwMPpDYyoqYA9li1/7mGFit39XiNX5DKC/uCNjBctMxyL1/PT/l4rSlbvBG1pOKI88STRdUsWXB3/Q9hQ==}
  855. babel-plugin-transform-es2015-modules-amd@6.24.1:
  856. resolution: {integrity: sha512-LnIIdGWIKdw7zwckqx+eGjcS8/cl8D74A3BpJbGjKTFFNJSMrjN4bIh22HY1AlkUbeLG6X6OZj56BDvWD+OeFA==}
  857. babel-plugin-transform-es2015-modules-commonjs@6.26.2:
  858. resolution: {integrity: sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q==}
  859. babel-plugin-transform-es2015-modules-systemjs@6.24.1:
  860. resolution: {integrity: sha512-ONFIPsq8y4bls5PPsAWYXH/21Hqv64TBxdje0FvU3MhIV6QM2j5YS7KvAzg/nTIVLot2D2fmFQrFWCbgHlFEjg==}
  861. babel-plugin-transform-es2015-modules-umd@6.24.1:
  862. resolution: {integrity: sha512-LpVbiT9CLsuAIp3IG0tfbVo81QIhn6pE8xBJ7XSeCtFlMltuar5VuBV6y6Q45tpui9QWcy5i0vLQfCfrnF7Kiw==}
  863. babel-plugin-transform-es2015-object-super@6.24.1:
  864. resolution: {integrity: sha512-8G5hpZMecb53vpD3mjs64NhI1au24TAmokQ4B+TBFBjN9cVoGoOvotdrMMRmHvVZUEvqGUPWL514woru1ChZMA==}
  865. babel-plugin-transform-es2015-parameters@6.24.1:
  866. resolution: {integrity: sha512-8HxlW+BB5HqniD+nLkQ4xSAVq3bR/pcYW9IigY+2y0dI+Y7INFeTbfAQr+63T3E4UDsZGjyb+l9txUnABWxlOQ==}
  867. babel-plugin-transform-es2015-shorthand-properties@6.24.1:
  868. resolution: {integrity: sha512-mDdocSfUVm1/7Jw/FIRNw9vPrBQNePy6wZJlR8HAUBLybNp1w/6lr6zZ2pjMShee65t/ybR5pT8ulkLzD1xwiw==}
  869. babel-plugin-transform-es2015-spread@6.22.0:
  870. resolution: {integrity: sha512-3Ghhi26r4l3d0Js933E5+IhHwk0A1yiutj9gwvzmFbVV0sPMYk2lekhOufHBswX7NCoSeF4Xrl3sCIuSIa+zOg==}
  871. babel-plugin-transform-es2015-sticky-regex@6.24.1:
  872. resolution: {integrity: sha512-CYP359ADryTo3pCsH0oxRo/0yn6UsEZLqYohHmvLQdfS9xkf+MbCzE3/Kolw9OYIY4ZMilH25z/5CbQbwDD+lQ==}
  873. babel-plugin-transform-es2015-template-literals@6.22.0:
  874. resolution: {integrity: sha512-x8b9W0ngnKzDMHimVtTfn5ryimars1ByTqsfBDwAqLibmuuQY6pgBQi5z1ErIsUOWBdw1bW9FSz5RZUojM4apg==}
  875. babel-plugin-transform-es2015-typeof-symbol@6.23.0:
  876. resolution: {integrity: sha512-fz6J2Sf4gYN6gWgRZaoFXmq93X+Li/8vf+fb0sGDVtdeWvxC9y5/bTD7bvfWMEq6zetGEHpWjtzRGSugt5kNqw==}
  877. babel-plugin-transform-es2015-unicode-regex@6.24.1:
  878. resolution: {integrity: sha512-v61Dbbihf5XxnYjtBN04B/JBvsScY37R1cZT5r9permN1cp+b70DY3Ib3fIkgn1DI9U3tGgBJZVD8p/mE/4JbQ==}
  879. babel-plugin-transform-exponentiation-operator@6.24.1:
  880. resolution: {integrity: sha512-LzXDmbMkklvNhprr20//RStKVcT8Cu+SQtX18eMHLhjHf2yFzwtQ0S2f0jQ+89rokoNdmwoSqYzAhq86FxlLSQ==}
  881. babel-plugin-transform-regenerator@6.26.0:
  882. resolution: {integrity: sha512-LS+dBkUGlNR15/5WHKe/8Neawx663qttS6AGqoOUhICc9d1KciBvtrQSuc0PI+CxQ2Q/S1aKuJ+u64GtLdcEZg==}
  883. babel-plugin-transform-strict-mode@6.24.1:
  884. resolution: {integrity: sha512-j3KtSpjyLSJxNoCDrhwiJad8kw0gJ9REGj8/CqL0HeRyLnvUNYV9zcqluL6QJSXh3nfsLEmSLvwRfGzrgR96Pw==}
  885. babel-preset-es2015@6.24.1:
  886. resolution: {integrity: sha512-XfwUqG1Ry6R43m4Wfob+vHbIVBIqTg/TJY4Snku1iIzeH7mUnwHA8Vagmv+ZQbPwhS8HgsdQvy28Py3k5zpoFQ==}
  887. deprecated: '🙌 Thanks for using Babel: we recommend using babel-preset-env now: please read https://babeljs.io/env to update!'
  888. babel-preset-es2016@6.24.1:
  889. resolution: {integrity: sha512-h3X19N+xHD3S0LqB1VIWAU3UbsbH7r5T5uHJMlkpWyJZ/gUuKQ1c9SiMYRBLZ9h7whxy5nqglx2U1o/wiz9ScQ==}
  890. deprecated: '🙌 Thanks for using Babel: we recommend using babel-preset-env now: please read https://babeljs.io/env to update!'
  891. babel-preset-es2017@6.24.1:
  892. resolution: {integrity: sha512-3iPqwP/tBkRATDg9qKkuycGEi1FZCF9pYoa2orhBynoQEPIelORSbk5VqbBI6+UzAt0CGG2gOfj46fmUmuz32g==}
  893. deprecated: '🙌 Thanks for using Babel: we recommend using babel-preset-env now: please read https://babeljs.io/env to update!'
  894. babel-preset-latest@6.24.1:
  895. resolution: {integrity: sha512-CzHIEOMZOzHxihiriEbODrhDgE38LBx3hqOXwqZvIM5JxY7rb6fbJak/jcYm3DMSmO+qPbzi5CBRiwDRKW25dw==}
  896. deprecated: 'We''re super 😸 excited that you''re trying to use ES2017+ syntax, but instead of making more yearly presets 😭 , Babel now has a better preset that we recommend you use instead: npm install babel-preset-env --save-dev. preset-env without options will compile ES2015+ down to ES5 just like using all the presets together and thus is more future proof. It also allows you to target specific browsers so that Babel can do less work and you can ship native ES2015+ to user 😎 ! We are also in the process of releasing v7, so please give http://babeljs.io/blog/2017/09/12/planning-for-7.0 a read and help test it out in beta! Thanks so much for using Babel 🙏, please give us a follow on Twitter @babeljs for news on Babel, join slack.babeljs.io for discussion/development and help support the project at opencollective.com/babel'
  897. babel-runtime@6.26.0:
  898. resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==}
  899. babel-template@6.26.0:
  900. resolution: {integrity: sha512-PCOcLFW7/eazGUKIoqH97sO9A2UYMahsn/yRQ7uOk37iutwjq7ODtcTNF+iFDSHNfkctqsLRjLP7URnOx0T1fg==}
  901. babel-traverse@6.26.0:
  902. resolution: {integrity: sha512-iSxeXx7apsjCHe9c7n8VtRXGzI2Bk1rBSOJgCCjfyXb6v1aCqE1KSEpq/8SXuVN8Ka/Rh1WDTF0MDzkvTA4MIA==}
  903. babel-types@6.26.0:
  904. resolution: {integrity: sha512-zhe3V/26rCWsEZK8kZN+HaQj5yQ1CilTObixFzKW1UWjqG7618Twz6YEsCnjfg5gBcJh02DrpCkS9h98ZqDY+g==}
  905. babylon@6.18.0:
  906. resolution: {integrity: sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==}
  907. hasBin: true
  908. balanced-match@1.0.2:
  909. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  910. brace-expansion@1.1.11:
  911. resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
  912. brace-expansion@2.0.1:
  913. resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
  914. braces@3.0.3:
  915. resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
  916. engines: {node: '>=8'}
  917. browserslist@4.24.0:
  918. resolution: {integrity: sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==}
  919. engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
  920. hasBin: true
  921. buffer-from@1.1.2:
  922. resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
  923. builtin-modules@3.3.0:
  924. resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==}
  925. engines: {node: '>=6'}
  926. call-bind@1.0.7:
  927. resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
  928. engines: {node: '>= 0.4'}
  929. caniuse-lite@1.0.30001663:
  930. resolution: {integrity: sha512-o9C3X27GLKbLeTYZ6HBOLU1tsAcBZsLis28wrVzddShCS16RujjHp9GDHKZqrB3meE0YjhawvMFsGb/igqiPzA==}
  931. chalk@1.1.3:
  932. resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==}
  933. engines: {node: '>=0.10.0'}
  934. chalk@2.4.2:
  935. resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
  936. engines: {node: '>=4'}
  937. chalk@4.1.2:
  938. resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
  939. engines: {node: '>=10'}
  940. clean-stack@2.2.0:
  941. resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
  942. engines: {node: '>=6'}
  943. color-convert@1.9.3:
  944. resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
  945. color-convert@2.0.1:
  946. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  947. engines: {node: '>=7.0.0'}
  948. color-name@1.1.3:
  949. resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
  950. color-name@1.1.4:
  951. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  952. colorette@1.4.0:
  953. resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==}
  954. commander@2.20.3:
  955. resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
  956. commondir@1.0.1:
  957. resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
  958. concat-map@0.0.1:
  959. resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
  960. convert-source-map@2.0.0:
  961. resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
  962. core-js-compat@3.38.1:
  963. resolution: {integrity: sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==}
  964. core-js@2.6.12:
  965. resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==}
  966. deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.
  967. cross-spawn@7.0.3:
  968. resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
  969. engines: {node: '>= 8'}
  970. data-view-buffer@1.0.1:
  971. resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==}
  972. engines: {node: '>= 0.4'}
  973. data-view-byte-length@1.0.1:
  974. resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==}
  975. engines: {node: '>= 0.4'}
  976. data-view-byte-offset@1.0.0:
  977. resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==}
  978. engines: {node: '>= 0.4'}
  979. debug@2.6.9:
  980. resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
  981. peerDependencies:
  982. supports-color: '*'
  983. peerDependenciesMeta:
  984. supports-color:
  985. optional: true
  986. debug@4.3.7:
  987. resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
  988. engines: {node: '>=6.0'}
  989. peerDependencies:
  990. supports-color: '*'
  991. peerDependenciesMeta:
  992. supports-color:
  993. optional: true
  994. deepmerge@4.3.1:
  995. resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
  996. engines: {node: '>=0.10.0'}
  997. define-data-property@1.1.4:
  998. resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
  999. engines: {node: '>= 0.4'}
  1000. define-properties@1.2.1:
  1001. resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
  1002. engines: {node: '>= 0.4'}
  1003. del@5.1.0:
  1004. resolution: {integrity: sha512-wH9xOVHnczo9jN2IW68BabcecVPxacIA3g/7z6vhSU/4stOKQzeCRK0yD0A24WiAAUJmmVpWqrERcTxnLo3AnA==}
  1005. engines: {node: '>=8'}
  1006. dir-glob@3.0.1:
  1007. resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
  1008. engines: {node: '>=8'}
  1009. eastasianwidth@0.2.0:
  1010. resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
  1011. ejs@3.1.10:
  1012. resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==}
  1013. engines: {node: '>=0.10.0'}
  1014. hasBin: true
  1015. electron-to-chromium@1.5.28:
  1016. resolution: {integrity: sha512-VufdJl+rzaKZoYVUijN13QcXVF5dWPZANeFTLNy+OSpHdDL5ynXTF35+60RSBbaQYB1ae723lQXHCrf4pyLsMw==}
  1017. emoji-regex@8.0.0:
  1018. resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
  1019. emoji-regex@9.2.2:
  1020. resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
  1021. es-abstract@1.23.3:
  1022. resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==}
  1023. engines: {node: '>= 0.4'}
  1024. es-define-property@1.0.0:
  1025. resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
  1026. engines: {node: '>= 0.4'}
  1027. es-errors@1.3.0:
  1028. resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
  1029. engines: {node: '>= 0.4'}
  1030. es-object-atoms@1.0.0:
  1031. resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
  1032. engines: {node: '>= 0.4'}
  1033. es-set-tostringtag@2.0.3:
  1034. resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==}
  1035. engines: {node: '>= 0.4'}
  1036. es-to-primitive@1.2.1:
  1037. resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
  1038. engines: {node: '>= 0.4'}
  1039. escalade@3.2.0:
  1040. resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
  1041. engines: {node: '>=6'}
  1042. escape-string-regexp@1.0.5:
  1043. resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
  1044. engines: {node: '>=0.8.0'}
  1045. estree-walker@0.6.1:
  1046. resolution: {integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==}
  1047. estree-walker@1.0.1:
  1048. resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==}
  1049. estree-walker@2.0.2:
  1050. resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
  1051. esutils@2.0.3:
  1052. resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
  1053. engines: {node: '>=0.10.0'}
  1054. fast-glob@3.3.2:
  1055. resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
  1056. engines: {node: '>=8.6.0'}
  1057. fastq@1.17.1:
  1058. resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
  1059. fetch-blob@3.2.0:
  1060. resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==}
  1061. engines: {node: ^12.20 || >= 14.13}
  1062. filelist@1.0.4:
  1063. resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==}
  1064. fill-range@7.1.1:
  1065. resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
  1066. engines: {node: '>=8'}
  1067. for-each@0.3.3:
  1068. resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
  1069. foreground-child@3.3.0:
  1070. resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==}
  1071. engines: {node: '>=14'}
  1072. fs-extra@8.1.0:
  1073. resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
  1074. engines: {node: '>=6 <7 || >=8'}
  1075. fs.realpath@1.0.0:
  1076. resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
  1077. fsevents@2.3.3:
  1078. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  1079. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  1080. os: [darwin]
  1081. function-bind@1.1.2:
  1082. resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
  1083. function.prototype.name@1.1.6:
  1084. resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
  1085. engines: {node: '>= 0.4'}
  1086. functions-have-names@1.2.3:
  1087. resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
  1088. gensync@1.0.0-beta.2:
  1089. resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
  1090. engines: {node: '>=6.9.0'}
  1091. get-intrinsic@1.2.4:
  1092. resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
  1093. engines: {node: '>= 0.4'}
  1094. get-symbol-description@1.0.2:
  1095. resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==}
  1096. engines: {node: '>= 0.4'}
  1097. glob-parent@5.1.2:
  1098. resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
  1099. engines: {node: '>= 6'}
  1100. glob@11.0.0:
  1101. resolution: {integrity: sha512-9UiX/Bl6J2yaBbxKoEBRm4Cipxgok8kQYcOPEhScPwebu2I0HoQOuYdIO6S3hLuWoZgpDpwQZMzTFxgpkyT76g==}
  1102. engines: {node: 20 || >=22}
  1103. hasBin: true
  1104. glob@7.2.3:
  1105. resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
  1106. deprecated: Glob versions prior to v9 are no longer supported
  1107. globals@11.12.0:
  1108. resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
  1109. engines: {node: '>=4'}
  1110. globals@9.18.0:
  1111. resolution: {integrity: sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==}
  1112. engines: {node: '>=0.10.0'}
  1113. globalthis@1.0.4:
  1114. resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
  1115. engines: {node: '>= 0.4'}
  1116. globby@10.0.1:
  1117. resolution: {integrity: sha512-sSs4inE1FB2YQiymcmTv6NWENryABjUNPeWhOvmn4SjtKybglsyPZxFB3U1/+L1bYi0rNZDqCLlHyLYDl1Pq5A==}
  1118. engines: {node: '>=8'}
  1119. globby@10.0.2:
  1120. resolution: {integrity: sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==}
  1121. engines: {node: '>=8'}
  1122. gopd@1.0.1:
  1123. resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
  1124. graceful-fs@4.2.11:
  1125. resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
  1126. has-ansi@2.0.0:
  1127. resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==}
  1128. engines: {node: '>=0.10.0'}
  1129. has-bigints@1.0.2:
  1130. resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
  1131. has-flag@3.0.0:
  1132. resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
  1133. engines: {node: '>=4'}
  1134. has-flag@4.0.0:
  1135. resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
  1136. engines: {node: '>=8'}
  1137. has-property-descriptors@1.0.2:
  1138. resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
  1139. has-proto@1.0.3:
  1140. resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
  1141. engines: {node: '>= 0.4'}
  1142. has-symbols@1.0.3:
  1143. resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
  1144. engines: {node: '>= 0.4'}
  1145. has-tostringtag@1.0.2:
  1146. resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
  1147. engines: {node: '>= 0.4'}
  1148. hasown@2.0.2:
  1149. resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
  1150. engines: {node: '>= 0.4'}
  1151. ignore@5.3.2:
  1152. resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
  1153. engines: {node: '>= 4'}
  1154. indent-string@4.0.0:
  1155. resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
  1156. engines: {node: '>=8'}
  1157. inflight@1.0.6:
  1158. resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
  1159. 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.
  1160. inherits@2.0.4:
  1161. resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
  1162. internal-slot@1.0.7:
  1163. resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
  1164. engines: {node: '>= 0.4'}
  1165. invariant@2.2.4:
  1166. resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
  1167. is-array-buffer@3.0.4:
  1168. resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==}
  1169. engines: {node: '>= 0.4'}
  1170. is-bigint@1.0.4:
  1171. resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
  1172. is-boolean-object@1.1.2:
  1173. resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
  1174. engines: {node: '>= 0.4'}
  1175. is-callable@1.2.7:
  1176. resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
  1177. engines: {node: '>= 0.4'}
  1178. is-core-module@2.15.1:
  1179. resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==}
  1180. engines: {node: '>= 0.4'}
  1181. is-data-view@1.0.1:
  1182. resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==}
  1183. engines: {node: '>= 0.4'}
  1184. is-date-object@1.0.5:
  1185. resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
  1186. engines: {node: '>= 0.4'}
  1187. is-extglob@2.1.1:
  1188. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  1189. engines: {node: '>=0.10.0'}
  1190. is-fullwidth-code-point@3.0.0:
  1191. resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
  1192. engines: {node: '>=8'}
  1193. is-glob@4.0.3:
  1194. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  1195. engines: {node: '>=0.10.0'}
  1196. is-module@1.0.0:
  1197. resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==}
  1198. is-negative-zero@2.0.3:
  1199. resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
  1200. engines: {node: '>= 0.4'}
  1201. is-number-object@1.0.7:
  1202. resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
  1203. engines: {node: '>= 0.4'}
  1204. is-number@7.0.0:
  1205. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  1206. engines: {node: '>=0.12.0'}
  1207. is-path-cwd@2.2.0:
  1208. resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==}
  1209. engines: {node: '>=6'}
  1210. is-path-inside@3.0.3:
  1211. resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
  1212. engines: {node: '>=8'}
  1213. is-plain-object@3.0.1:
  1214. resolution: {integrity: sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==}
  1215. engines: {node: '>=0.10.0'}
  1216. is-reference@1.2.1:
  1217. resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
  1218. is-regex@1.1.4:
  1219. resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
  1220. engines: {node: '>= 0.4'}
  1221. is-shared-array-buffer@1.0.3:
  1222. resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==}
  1223. engines: {node: '>= 0.4'}
  1224. is-string@1.0.7:
  1225. resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
  1226. engines: {node: '>= 0.4'}
  1227. is-symbol@1.0.4:
  1228. resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
  1229. engines: {node: '>= 0.4'}
  1230. is-typed-array@1.1.13:
  1231. resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==}
  1232. engines: {node: '>= 0.4'}
  1233. is-weakref@1.0.2:
  1234. resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
  1235. isarray@2.0.5:
  1236. resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
  1237. isexe@2.0.0:
  1238. resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
  1239. jackspeak@4.0.2:
  1240. resolution: {integrity: sha512-bZsjR/iRjl1Nk1UkjGpAzLNfQtzuijhn2g+pbZb98HQ1Gk8vM9hfbxeMBP+M2/UUdwj0RqGG3mlvk2MsAqwvEw==}
  1241. engines: {node: 20 || >=22}
  1242. jake@10.9.2:
  1243. resolution: {integrity: sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==}
  1244. engines: {node: '>=10'}
  1245. hasBin: true
  1246. jest-worker@26.6.2:
  1247. resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==}
  1248. engines: {node: '>= 10.13.0'}
  1249. jquery@3.7.1:
  1250. resolution: {integrity: sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==}
  1251. js-tokens@3.0.2:
  1252. resolution: {integrity: sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg==}
  1253. js-tokens@4.0.0:
  1254. resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
  1255. jsesc@0.5.0:
  1256. resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
  1257. hasBin: true
  1258. jsesc@2.5.2:
  1259. resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
  1260. engines: {node: '>=4'}
  1261. hasBin: true
  1262. json5@2.2.3:
  1263. resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
  1264. engines: {node: '>=6'}
  1265. hasBin: true
  1266. jsonfile@4.0.0:
  1267. resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
  1268. lodash.debounce@4.0.8:
  1269. resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
  1270. lodash@4.17.21:
  1271. resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
  1272. loose-envify@1.4.0:
  1273. resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
  1274. hasBin: true
  1275. lru-cache@11.0.1:
  1276. resolution: {integrity: sha512-CgeuL5uom6j/ZVrg7G/+1IXqRY8JXX4Hghfy5YE0EhoYQWvndP1kufu58cmZLNIDKnRhZrXfdS9urVWx98AipQ==}
  1277. engines: {node: 20 || >=22}
  1278. lru-cache@5.1.1:
  1279. resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
  1280. magic-string@0.25.9:
  1281. resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==}
  1282. make-dir@3.1.0:
  1283. resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
  1284. engines: {node: '>=8'}
  1285. merge-stream@2.0.0:
  1286. resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
  1287. merge2@1.4.1:
  1288. resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
  1289. engines: {node: '>= 8'}
  1290. micromatch@4.0.8:
  1291. resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
  1292. engines: {node: '>=8.6'}
  1293. mime@3.0.0:
  1294. resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==}
  1295. engines: {node: '>=10.0.0'}
  1296. hasBin: true
  1297. minimatch@10.0.1:
  1298. resolution: {integrity: sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==}
  1299. engines: {node: 20 || >=22}
  1300. minimatch@3.1.2:
  1301. resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
  1302. minimatch@5.1.6:
  1303. resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
  1304. engines: {node: '>=10'}
  1305. minipass@7.1.2:
  1306. resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
  1307. engines: {node: '>=16 || 14 >=14.17'}
  1308. mp4box@0.5.2:
  1309. resolution: {integrity: sha512-zRmGlvxy+YdW3Dmt+TR4xPHynbxwXtAQDTN/Fo9N3LMxaUlB2C5KmZpzYyGKy4c7k4Jf3RCR0A2pm9SZELOLXw==}
  1310. ms@2.0.0:
  1311. resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
  1312. ms@2.1.3:
  1313. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  1314. native-file-system-adapter@3.0.1:
  1315. resolution: {integrity: sha512-ocuhsYk2SY0906LPc3QIMW+rCV3MdhqGiy7wV5Bf0e8/5TsMjDdyIwhNiVPiKxzTJLDrLT6h8BoV9ERfJscKhw==}
  1316. engines: {node: '>=14.8.0'}
  1317. node-domexception@1.0.0:
  1318. resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
  1319. engines: {node: '>=10.5.0'}
  1320. node-releases@2.0.18:
  1321. resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
  1322. object-inspect@1.13.2:
  1323. resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==}
  1324. engines: {node: '>= 0.4'}
  1325. object-keys@1.1.1:
  1326. resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
  1327. engines: {node: '>= 0.4'}
  1328. object.assign@4.1.5:
  1329. resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
  1330. engines: {node: '>= 0.4'}
  1331. once@1.4.0:
  1332. resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
  1333. p-map@3.0.0:
  1334. resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==}
  1335. engines: {node: '>=8'}
  1336. package-json-from-dist@1.0.0:
  1337. resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==}
  1338. path-is-absolute@1.0.1:
  1339. resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
  1340. engines: {node: '>=0.10.0'}
  1341. path-key@3.1.1:
  1342. resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
  1343. engines: {node: '>=8'}
  1344. path-parse@1.0.7:
  1345. resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
  1346. path-scurry@2.0.0:
  1347. resolution: {integrity: sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==}
  1348. engines: {node: 20 || >=22}
  1349. path-type@4.0.0:
  1350. resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
  1351. engines: {node: '>=8'}
  1352. picocolors@1.1.0:
  1353. resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==}
  1354. picomatch@2.3.1:
  1355. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  1356. engines: {node: '>=8.6'}
  1357. possible-typed-array-names@1.0.0:
  1358. resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
  1359. engines: {node: '>= 0.4'}
  1360. private@0.1.8:
  1361. resolution: {integrity: sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==}
  1362. engines: {node: '>= 0.6'}
  1363. queue-microtask@1.2.3:
  1364. resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
  1365. randombytes@2.1.0:
  1366. resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
  1367. regenerate-unicode-properties@10.2.0:
  1368. resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==}
  1369. engines: {node: '>=4'}
  1370. regenerate@1.4.2:
  1371. resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
  1372. regenerator-runtime@0.11.1:
  1373. resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==}
  1374. regenerator-runtime@0.14.1:
  1375. resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
  1376. regenerator-transform@0.10.1:
  1377. resolution: {integrity: sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q==}
  1378. regenerator-transform@0.15.2:
  1379. resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
  1380. regexp.prototype.flags@1.5.2:
  1381. resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==}
  1382. engines: {node: '>= 0.4'}
  1383. regexpu-core@2.0.0:
  1384. resolution: {integrity: sha512-tJ9+S4oKjxY8IZ9jmjnp/mtytu1u3iyIQAfmI51IKWH6bFf7XR1ybtaO6j7INhZKXOTYADk7V5qxaqLkmNxiZQ==}
  1385. regexpu-core@5.3.2:
  1386. resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
  1387. engines: {node: '>=4'}
  1388. regjsgen@0.2.0:
  1389. resolution: {integrity: sha512-x+Y3yA24uF68m5GA+tBjbGYo64xXVJpbToBaWCoSNSc1hdk6dfctaRWrNFTVJZIIhL5GxW8zwjoixbnifnK59g==}
  1390. regjsparser@0.1.5:
  1391. resolution: {integrity: sha512-jlQ9gYLfk2p3V5Ag5fYhA7fv7OHzd1KUH0PRP46xc3TgwjwgROIW572AfYg/X9kaNq/LJnu6oJcFRXlIrGoTRw==}
  1392. hasBin: true
  1393. regjsparser@0.9.1:
  1394. resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
  1395. hasBin: true
  1396. resolve@1.22.8:
  1397. resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
  1398. hasBin: true
  1399. reusify@1.0.4:
  1400. resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
  1401. engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
  1402. rimraf@3.0.2:
  1403. resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
  1404. deprecated: Rimraf versions prior to v4 are no longer supported
  1405. hasBin: true
  1406. rollup-plugin-copy@3.5.0:
  1407. resolution: {integrity: sha512-wI8D5dvYovRMx/YYKtUNt3Yxaw4ORC9xo6Gt9t22kveWz1enG9QrhVlagzwrxSC455xD1dHMKhIJkbsQ7d48BA==}
  1408. engines: {node: '>=8.3'}
  1409. rollup-plugin-delete@2.1.0:
  1410. resolution: {integrity: sha512-TEbqJd7giLvzQDTu4jSPufwhTJs/iYVN2LfR/YIYkqjC/oZ0/h9Q0AeljifIhzBzJYZtHQTWKEbMms5fbh54pw==}
  1411. engines: {node: '>=10'}
  1412. peerDependencies:
  1413. rollup: '*'
  1414. rollup-plugin-import-alias@1.0.10:
  1415. resolution: {integrity: sha512-iHJNJWHy7QFlf57pUJD6XeN+8KDFjboPK1Yj4lVpl3Bb5KDspWwPjp9YCoJNchQu81EkjCWtJDffbIvRYrBAgg==}
  1416. rollup-plugin-json@4.0.0:
  1417. resolution: {integrity: sha512-hgb8N7Cgfw5SZAkb3jf0QXii6QX/FOkiIq2M7BAQIEydjHvTyxXHQiIzZaTFgx1GK0cRCHOCBHIyEkkLdWKxow==}
  1418. deprecated: This module has been deprecated and is no longer maintained. Please use @rollup/plugin-json.
  1419. rollup-plugin-multi-input@1.5.0:
  1420. resolution: {integrity: sha512-Tgb/pz1VxzYCk/MPTh0dhLb/zme4tWb72S9KtwVgGVupkdngUPQZqRUld25f8tAb18z1lfvz4Mn7ihDQLr+L9g==}
  1421. engines: {node: '>=16'}
  1422. rollup-plugin-node-resolve@5.2.0:
  1423. resolution: {integrity: sha512-jUlyaDXts7TW2CqQ4GaO5VJ4PwwaV8VUGA7+km3n6k6xtOEacf61u0VXwN80phY/evMcaS+9eIeJ9MOyDxt5Zw==}
  1424. deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-node-resolve.
  1425. peerDependencies:
  1426. rollup: '>=1.11.0'
  1427. rollup-plugin-progress@1.1.2:
  1428. resolution: {integrity: sha512-6ehSZOMTZdAlRpe45kf56BnIOsDYC2GKWhGlK/Dh/Ae/AMUneMDyKdiv9ZlRrW/HVc986frTZcc2Zka+oF6W7Q==}
  1429. rollup-plugin-terser@7.0.2:
  1430. resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==}
  1431. deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser
  1432. peerDependencies:
  1433. rollup: ^2.0.0
  1434. rollup-plugin-web-worker-loader@1.6.1:
  1435. resolution: {integrity: sha512-4QywQSz1NXFHKdyiou16mH3ijpcfLtLGOrAqvAqu1Gx+P8+zj+3gwC2BSL/VW1d+LW4nIHC8F7d7OXhs9UdR2A==}
  1436. peerDependencies:
  1437. rollup: ^1.9.2 || ^2.0.0
  1438. rollup-pluginutils@2.8.2:
  1439. resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==}
  1440. rollup@4.22.4:
  1441. resolution: {integrity: sha512-vD8HJ5raRcWOyymsR6Z3o6+RzfEPCnVLMFJ6vRslO1jt4LO6dUo5Qnpg7y4RkZFM2DMe3WUirkI5c16onjrc6A==}
  1442. engines: {node: '>=18.0.0', npm: '>=8.0.0'}
  1443. hasBin: true
  1444. run-parallel@1.2.0:
  1445. resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
  1446. safe-array-concat@1.1.2:
  1447. resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==}
  1448. engines: {node: '>=0.4'}
  1449. safe-buffer@5.2.1:
  1450. resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
  1451. safe-regex-test@1.0.3:
  1452. resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==}
  1453. engines: {node: '>= 0.4'}
  1454. semver@6.3.1:
  1455. resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
  1456. hasBin: true
  1457. serialize-javascript@4.0.0:
  1458. resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==}
  1459. set-function-length@1.2.2:
  1460. resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
  1461. engines: {node: '>= 0.4'}
  1462. set-function-name@2.0.2:
  1463. resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
  1464. engines: {node: '>= 0.4'}
  1465. shebang-command@2.0.0:
  1466. resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
  1467. engines: {node: '>=8'}
  1468. shebang-regex@3.0.0:
  1469. resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
  1470. engines: {node: '>=8'}
  1471. side-channel@1.0.6:
  1472. resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
  1473. engines: {node: '>= 0.4'}
  1474. signal-exit@4.1.0:
  1475. resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
  1476. engines: {node: '>=14'}
  1477. slash@3.0.0:
  1478. resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
  1479. engines: {node: '>=8'}
  1480. source-map-support@0.5.21:
  1481. resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
  1482. source-map@0.6.1:
  1483. resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
  1484. engines: {node: '>=0.10.0'}
  1485. sourcemap-codec@1.4.8:
  1486. resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==}
  1487. deprecated: Please use @jridgewell/sourcemap-codec instead
  1488. string-width@4.2.3:
  1489. resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
  1490. engines: {node: '>=8'}
  1491. string-width@5.1.2:
  1492. resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
  1493. engines: {node: '>=12'}
  1494. string.prototype.matchall@4.0.11:
  1495. resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==}
  1496. engines: {node: '>= 0.4'}
  1497. string.prototype.trim@1.2.9:
  1498. resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==}
  1499. engines: {node: '>= 0.4'}
  1500. string.prototype.trimend@1.0.8:
  1501. resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==}
  1502. string.prototype.trimstart@1.0.8:
  1503. resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
  1504. engines: {node: '>= 0.4'}
  1505. strip-ansi@3.0.1:
  1506. resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==}
  1507. engines: {node: '>=0.10.0'}
  1508. strip-ansi@6.0.1:
  1509. resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
  1510. engines: {node: '>=8'}
  1511. strip-ansi@7.1.0:
  1512. resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
  1513. engines: {node: '>=12'}
  1514. supports-color@2.0.0:
  1515. resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==}
  1516. engines: {node: '>=0.8.0'}
  1517. supports-color@5.5.0:
  1518. resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
  1519. engines: {node: '>=4'}
  1520. supports-color@7.2.0:
  1521. resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
  1522. engines: {node: '>=8'}
  1523. supports-preserve-symlinks-flag@1.0.0:
  1524. resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
  1525. engines: {node: '>= 0.4'}
  1526. terser@5.33.0:
  1527. resolution: {integrity: sha512-JuPVaB7s1gdFKPKTelwUyRq5Sid2A3Gko2S0PncwdBq7kN9Ti9HPWDQ06MPsEDGsZeVESjKEnyGy68quBk1w6g==}
  1528. engines: {node: '>=10'}
  1529. hasBin: true
  1530. to-fast-properties@1.0.3:
  1531. resolution: {integrity: sha512-lxrWP8ejsq+7E3nNjwYmUBMAgjMTZoTI+sdBOpvNyijeDLa29LUn9QaoXAHv4+Z578hbmHHJKZknzxVtvo77og==}
  1532. engines: {node: '>=0.10.0'}
  1533. to-fast-properties@2.0.0:
  1534. resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
  1535. engines: {node: '>=4'}
  1536. to-regex-range@5.0.1:
  1537. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  1538. engines: {node: '>=8.0'}
  1539. typed-array-buffer@1.0.2:
  1540. resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==}
  1541. engines: {node: '>= 0.4'}
  1542. typed-array-byte-length@1.0.1:
  1543. resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==}
  1544. engines: {node: '>= 0.4'}
  1545. typed-array-byte-offset@1.0.2:
  1546. resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==}
  1547. engines: {node: '>= 0.4'}
  1548. typed-array-length@1.0.6:
  1549. resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==}
  1550. engines: {node: '>= 0.4'}
  1551. unbox-primitive@1.0.2:
  1552. resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
  1553. undici-types@6.19.8:
  1554. resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==}
  1555. unicode-canonical-property-names-ecmascript@2.0.1:
  1556. resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==}
  1557. engines: {node: '>=4'}
  1558. unicode-match-property-ecmascript@2.0.0:
  1559. resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
  1560. engines: {node: '>=4'}
  1561. unicode-match-property-value-ecmascript@2.2.0:
  1562. resolution: {integrity: sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==}
  1563. engines: {node: '>=4'}
  1564. unicode-property-aliases-ecmascript@2.1.0:
  1565. resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
  1566. engines: {node: '>=4'}
  1567. universalify@0.1.2:
  1568. resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
  1569. engines: {node: '>= 4.0.0'}
  1570. update-browserslist-db@1.1.0:
  1571. resolution: {integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==}
  1572. hasBin: true
  1573. peerDependencies:
  1574. browserslist: '>= 4.21.0'
  1575. web-streams-polyfill@3.3.3:
  1576. resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==}
  1577. engines: {node: '>= 8'}
  1578. which-boxed-primitive@1.0.2:
  1579. resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
  1580. which-typed-array@1.1.15:
  1581. resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==}
  1582. engines: {node: '>= 0.4'}
  1583. which@2.0.2:
  1584. resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
  1585. engines: {node: '>= 8'}
  1586. hasBin: true
  1587. wrap-ansi@7.0.0:
  1588. resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
  1589. engines: {node: '>=10'}
  1590. wrap-ansi@8.1.0:
  1591. resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
  1592. engines: {node: '>=12'}
  1593. wrappy@1.0.2:
  1594. resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
  1595. yallist@3.1.1:
  1596. resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
  1597. snapshots:
  1598. '@ampproject/remapping@2.3.0':
  1599. dependencies:
  1600. '@jridgewell/gen-mapping': 0.3.5
  1601. '@jridgewell/trace-mapping': 0.3.25
  1602. '@babel/code-frame@7.24.7':
  1603. dependencies:
  1604. '@babel/highlight': 7.24.7
  1605. picocolors: 1.1.0
  1606. '@babel/compat-data@7.25.4': {}
  1607. '@babel/core@7.25.2':
  1608. dependencies:
  1609. '@ampproject/remapping': 2.3.0
  1610. '@babel/code-frame': 7.24.7
  1611. '@babel/generator': 7.25.6
  1612. '@babel/helper-compilation-targets': 7.25.2
  1613. '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
  1614. '@babel/helpers': 7.25.6
  1615. '@babel/parser': 7.25.6
  1616. '@babel/template': 7.25.0
  1617. '@babel/traverse': 7.25.6
  1618. '@babel/types': 7.25.6
  1619. convert-source-map: 2.0.0
  1620. debug: 4.3.7
  1621. gensync: 1.0.0-beta.2
  1622. json5: 2.2.3
  1623. semver: 6.3.1
  1624. transitivePeerDependencies:
  1625. - supports-color
  1626. '@babel/generator@7.25.6':
  1627. dependencies:
  1628. '@babel/types': 7.25.6
  1629. '@jridgewell/gen-mapping': 0.3.5
  1630. '@jridgewell/trace-mapping': 0.3.25
  1631. jsesc: 2.5.2
  1632. '@babel/helper-annotate-as-pure@7.24.7':
  1633. dependencies:
  1634. '@babel/types': 7.25.6
  1635. '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7':
  1636. dependencies:
  1637. '@babel/traverse': 7.25.6
  1638. '@babel/types': 7.25.6
  1639. transitivePeerDependencies:
  1640. - supports-color
  1641. '@babel/helper-compilation-targets@7.25.2':
  1642. dependencies:
  1643. '@babel/compat-data': 7.25.4
  1644. '@babel/helper-validator-option': 7.24.8
  1645. browserslist: 4.24.0
  1646. lru-cache: 5.1.1
  1647. semver: 6.3.1
  1648. '@babel/helper-create-class-features-plugin@7.25.4(@babel/core@7.25.2)':
  1649. dependencies:
  1650. '@babel/core': 7.25.2
  1651. '@babel/helper-annotate-as-pure': 7.24.7
  1652. '@babel/helper-member-expression-to-functions': 7.24.8
  1653. '@babel/helper-optimise-call-expression': 7.24.7
  1654. '@babel/helper-replace-supers': 7.25.0(@babel/core@7.25.2)
  1655. '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
  1656. '@babel/traverse': 7.25.6
  1657. semver: 6.3.1
  1658. transitivePeerDependencies:
  1659. - supports-color
  1660. '@babel/helper-create-regexp-features-plugin@7.25.2(@babel/core@7.25.2)':
  1661. dependencies:
  1662. '@babel/core': 7.25.2
  1663. '@babel/helper-annotate-as-pure': 7.24.7
  1664. regexpu-core: 5.3.2
  1665. semver: 6.3.1
  1666. '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.25.2)':
  1667. dependencies:
  1668. '@babel/core': 7.25.2
  1669. '@babel/helper-compilation-targets': 7.25.2
  1670. '@babel/helper-plugin-utils': 7.24.8
  1671. debug: 4.3.7
  1672. lodash.debounce: 4.0.8
  1673. resolve: 1.22.8
  1674. transitivePeerDependencies:
  1675. - supports-color
  1676. '@babel/helper-member-expression-to-functions@7.24.8':
  1677. dependencies:
  1678. '@babel/traverse': 7.25.6
  1679. '@babel/types': 7.25.6
  1680. transitivePeerDependencies:
  1681. - supports-color
  1682. '@babel/helper-module-imports@7.24.7':
  1683. dependencies:
  1684. '@babel/traverse': 7.25.6
  1685. '@babel/types': 7.25.6
  1686. transitivePeerDependencies:
  1687. - supports-color
  1688. '@babel/helper-module-transforms@7.25.2(@babel/core@7.25.2)':
  1689. dependencies:
  1690. '@babel/core': 7.25.2
  1691. '@babel/helper-module-imports': 7.24.7
  1692. '@babel/helper-simple-access': 7.24.7
  1693. '@babel/helper-validator-identifier': 7.24.7
  1694. '@babel/traverse': 7.25.6
  1695. transitivePeerDependencies:
  1696. - supports-color
  1697. '@babel/helper-optimise-call-expression@7.24.7':
  1698. dependencies:
  1699. '@babel/types': 7.25.6
  1700. '@babel/helper-plugin-utils@7.24.8': {}
  1701. '@babel/helper-remap-async-to-generator@7.25.0(@babel/core@7.25.2)':
  1702. dependencies:
  1703. '@babel/core': 7.25.2
  1704. '@babel/helper-annotate-as-pure': 7.24.7
  1705. '@babel/helper-wrap-function': 7.25.0
  1706. '@babel/traverse': 7.25.6
  1707. transitivePeerDependencies:
  1708. - supports-color
  1709. '@babel/helper-replace-supers@7.25.0(@babel/core@7.25.2)':
  1710. dependencies:
  1711. '@babel/core': 7.25.2
  1712. '@babel/helper-member-expression-to-functions': 7.24.8
  1713. '@babel/helper-optimise-call-expression': 7.24.7
  1714. '@babel/traverse': 7.25.6
  1715. transitivePeerDependencies:
  1716. - supports-color
  1717. '@babel/helper-simple-access@7.24.7':
  1718. dependencies:
  1719. '@babel/traverse': 7.25.6
  1720. '@babel/types': 7.25.6
  1721. transitivePeerDependencies:
  1722. - supports-color
  1723. '@babel/helper-skip-transparent-expression-wrappers@7.24.7':
  1724. dependencies:
  1725. '@babel/traverse': 7.25.6
  1726. '@babel/types': 7.25.6
  1727. transitivePeerDependencies:
  1728. - supports-color
  1729. '@babel/helper-string-parser@7.24.8': {}
  1730. '@babel/helper-validator-identifier@7.24.7': {}
  1731. '@babel/helper-validator-option@7.24.8': {}
  1732. '@babel/helper-wrap-function@7.25.0':
  1733. dependencies:
  1734. '@babel/template': 7.25.0
  1735. '@babel/traverse': 7.25.6
  1736. '@babel/types': 7.25.6
  1737. transitivePeerDependencies:
  1738. - supports-color
  1739. '@babel/helpers@7.25.6':
  1740. dependencies:
  1741. '@babel/template': 7.25.0
  1742. '@babel/types': 7.25.6
  1743. '@babel/highlight@7.24.7':
  1744. dependencies:
  1745. '@babel/helper-validator-identifier': 7.24.7
  1746. chalk: 2.4.2
  1747. js-tokens: 4.0.0
  1748. picocolors: 1.1.0
  1749. '@babel/parser@7.25.6':
  1750. dependencies:
  1751. '@babel/types': 7.25.6
  1752. '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.3(@babel/core@7.25.2)':
  1753. dependencies:
  1754. '@babel/core': 7.25.2
  1755. '@babel/helper-plugin-utils': 7.24.8
  1756. '@babel/traverse': 7.25.6
  1757. transitivePeerDependencies:
  1758. - supports-color
  1759. '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.0(@babel/core@7.25.2)':
  1760. dependencies:
  1761. '@babel/core': 7.25.2
  1762. '@babel/helper-plugin-utils': 7.24.8
  1763. '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.0(@babel/core@7.25.2)':
  1764. dependencies:
  1765. '@babel/core': 7.25.2
  1766. '@babel/helper-plugin-utils': 7.24.8
  1767. '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.25.2)':
  1768. dependencies:
  1769. '@babel/core': 7.25.2
  1770. '@babel/helper-plugin-utils': 7.24.8
  1771. '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
  1772. '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.25.2)
  1773. transitivePeerDependencies:
  1774. - supports-color
  1775. '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.0(@babel/core@7.25.2)':
  1776. dependencies:
  1777. '@babel/core': 7.25.2
  1778. '@babel/helper-plugin-utils': 7.24.8
  1779. '@babel/traverse': 7.25.6
  1780. transitivePeerDependencies:
  1781. - supports-color
  1782. '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.2)':
  1783. dependencies:
  1784. '@babel/core': 7.25.2
  1785. '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.25.2)':
  1786. dependencies:
  1787. '@babel/core': 7.25.2
  1788. '@babel/helper-plugin-utils': 7.24.8
  1789. '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.25.2)':
  1790. dependencies:
  1791. '@babel/core': 7.25.2
  1792. '@babel/helper-plugin-utils': 7.24.8
  1793. '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.25.2)':
  1794. dependencies:
  1795. '@babel/core': 7.25.2
  1796. '@babel/helper-plugin-utils': 7.24.8
  1797. '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.25.2)':
  1798. dependencies:
  1799. '@babel/core': 7.25.2
  1800. '@babel/helper-plugin-utils': 7.24.8
  1801. '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.25.2)':
  1802. dependencies:
  1803. '@babel/core': 7.25.2
  1804. '@babel/helper-plugin-utils': 7.24.8
  1805. '@babel/plugin-syntax-import-assertions@7.25.6(@babel/core@7.25.2)':
  1806. dependencies:
  1807. '@babel/core': 7.25.2
  1808. '@babel/helper-plugin-utils': 7.24.8
  1809. '@babel/plugin-syntax-import-attributes@7.25.6(@babel/core@7.25.2)':
  1810. dependencies:
  1811. '@babel/core': 7.25.2
  1812. '@babel/helper-plugin-utils': 7.24.8
  1813. '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.25.2)':
  1814. dependencies:
  1815. '@babel/core': 7.25.2
  1816. '@babel/helper-plugin-utils': 7.24.8
  1817. '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.25.2)':
  1818. dependencies:
  1819. '@babel/core': 7.25.2
  1820. '@babel/helper-plugin-utils': 7.24.8
  1821. '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.25.2)':
  1822. dependencies:
  1823. '@babel/core': 7.25.2
  1824. '@babel/helper-plugin-utils': 7.24.8
  1825. '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.25.2)':
  1826. dependencies:
  1827. '@babel/core': 7.25.2
  1828. '@babel/helper-plugin-utils': 7.24.8
  1829. '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.25.2)':
  1830. dependencies:
  1831. '@babel/core': 7.25.2
  1832. '@babel/helper-plugin-utils': 7.24.8
  1833. '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.25.2)':
  1834. dependencies:
  1835. '@babel/core': 7.25.2
  1836. '@babel/helper-plugin-utils': 7.24.8
  1837. '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.25.2)':
  1838. dependencies:
  1839. '@babel/core': 7.25.2
  1840. '@babel/helper-plugin-utils': 7.24.8
  1841. '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.25.2)':
  1842. dependencies:
  1843. '@babel/core': 7.25.2
  1844. '@babel/helper-plugin-utils': 7.24.8
  1845. '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.25.2)':
  1846. dependencies:
  1847. '@babel/core': 7.25.2
  1848. '@babel/helper-plugin-utils': 7.24.8
  1849. '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.25.2)':
  1850. dependencies:
  1851. '@babel/core': 7.25.2
  1852. '@babel/helper-plugin-utils': 7.24.8
  1853. '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.25.2)':
  1854. dependencies:
  1855. '@babel/core': 7.25.2
  1856. '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
  1857. '@babel/helper-plugin-utils': 7.24.8
  1858. '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.25.2)':
  1859. dependencies:
  1860. '@babel/core': 7.25.2
  1861. '@babel/helper-plugin-utils': 7.24.8
  1862. '@babel/plugin-transform-async-generator-functions@7.25.4(@babel/core@7.25.2)':
  1863. dependencies:
  1864. '@babel/core': 7.25.2
  1865. '@babel/helper-plugin-utils': 7.24.8
  1866. '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.25.2)
  1867. '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.2)
  1868. '@babel/traverse': 7.25.6
  1869. transitivePeerDependencies:
  1870. - supports-color
  1871. '@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.25.2)':
  1872. dependencies:
  1873. '@babel/core': 7.25.2
  1874. '@babel/helper-module-imports': 7.24.7
  1875. '@babel/helper-plugin-utils': 7.24.8
  1876. '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.25.2)
  1877. transitivePeerDependencies:
  1878. - supports-color
  1879. '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.25.2)':
  1880. dependencies:
  1881. '@babel/core': 7.25.2
  1882. '@babel/helper-plugin-utils': 7.24.8
  1883. '@babel/plugin-transform-block-scoping@7.25.0(@babel/core@7.25.2)':
  1884. dependencies:
  1885. '@babel/core': 7.25.2
  1886. '@babel/helper-plugin-utils': 7.24.8
  1887. '@babel/plugin-transform-class-properties@7.25.4(@babel/core@7.25.2)':
  1888. dependencies:
  1889. '@babel/core': 7.25.2
  1890. '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
  1891. '@babel/helper-plugin-utils': 7.24.8
  1892. transitivePeerDependencies:
  1893. - supports-color
  1894. '@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.25.2)':
  1895. dependencies:
  1896. '@babel/core': 7.25.2
  1897. '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
  1898. '@babel/helper-plugin-utils': 7.24.8
  1899. '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.2)
  1900. transitivePeerDependencies:
  1901. - supports-color
  1902. '@babel/plugin-transform-classes@7.25.4(@babel/core@7.25.2)':
  1903. dependencies:
  1904. '@babel/core': 7.25.2
  1905. '@babel/helper-annotate-as-pure': 7.24.7
  1906. '@babel/helper-compilation-targets': 7.25.2
  1907. '@babel/helper-plugin-utils': 7.24.8
  1908. '@babel/helper-replace-supers': 7.25.0(@babel/core@7.25.2)
  1909. '@babel/traverse': 7.25.6
  1910. globals: 11.12.0
  1911. transitivePeerDependencies:
  1912. - supports-color
  1913. '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.25.2)':
  1914. dependencies:
  1915. '@babel/core': 7.25.2
  1916. '@babel/helper-plugin-utils': 7.24.8
  1917. '@babel/template': 7.25.0
  1918. '@babel/plugin-transform-destructuring@7.24.8(@babel/core@7.25.2)':
  1919. dependencies:
  1920. '@babel/core': 7.25.2
  1921. '@babel/helper-plugin-utils': 7.24.8
  1922. '@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.25.2)':
  1923. dependencies:
  1924. '@babel/core': 7.25.2
  1925. '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
  1926. '@babel/helper-plugin-utils': 7.24.8
  1927. '@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.25.2)':
  1928. dependencies:
  1929. '@babel/core': 7.25.2
  1930. '@babel/helper-plugin-utils': 7.24.8
  1931. '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.0(@babel/core@7.25.2)':
  1932. dependencies:
  1933. '@babel/core': 7.25.2
  1934. '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
  1935. '@babel/helper-plugin-utils': 7.24.8
  1936. '@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.25.2)':
  1937. dependencies:
  1938. '@babel/core': 7.25.2
  1939. '@babel/helper-plugin-utils': 7.24.8
  1940. '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.2)
  1941. '@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.25.2)':
  1942. dependencies:
  1943. '@babel/core': 7.25.2
  1944. '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7
  1945. '@babel/helper-plugin-utils': 7.24.8
  1946. transitivePeerDependencies:
  1947. - supports-color
  1948. '@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.25.2)':
  1949. dependencies:
  1950. '@babel/core': 7.25.2
  1951. '@babel/helper-plugin-utils': 7.24.8
  1952. '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.2)
  1953. '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.25.2)':
  1954. dependencies:
  1955. '@babel/core': 7.25.2
  1956. '@babel/helper-plugin-utils': 7.24.8
  1957. '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
  1958. transitivePeerDependencies:
  1959. - supports-color
  1960. '@babel/plugin-transform-function-name@7.25.1(@babel/core@7.25.2)':
  1961. dependencies:
  1962. '@babel/core': 7.25.2
  1963. '@babel/helper-compilation-targets': 7.25.2
  1964. '@babel/helper-plugin-utils': 7.24.8
  1965. '@babel/traverse': 7.25.6
  1966. transitivePeerDependencies:
  1967. - supports-color
  1968. '@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.25.2)':
  1969. dependencies:
  1970. '@babel/core': 7.25.2
  1971. '@babel/helper-plugin-utils': 7.24.8
  1972. '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.2)
  1973. '@babel/plugin-transform-literals@7.25.2(@babel/core@7.25.2)':
  1974. dependencies:
  1975. '@babel/core': 7.25.2
  1976. '@babel/helper-plugin-utils': 7.24.8
  1977. '@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.25.2)':
  1978. dependencies:
  1979. '@babel/core': 7.25.2
  1980. '@babel/helper-plugin-utils': 7.24.8
  1981. '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.2)
  1982. '@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.25.2)':
  1983. dependencies:
  1984. '@babel/core': 7.25.2
  1985. '@babel/helper-plugin-utils': 7.24.8
  1986. '@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.25.2)':
  1987. dependencies:
  1988. '@babel/core': 7.25.2
  1989. '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
  1990. '@babel/helper-plugin-utils': 7.24.8
  1991. transitivePeerDependencies:
  1992. - supports-color
  1993. '@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.25.2)':
  1994. dependencies:
  1995. '@babel/core': 7.25.2
  1996. '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
  1997. '@babel/helper-plugin-utils': 7.24.8
  1998. '@babel/helper-simple-access': 7.24.7
  1999. transitivePeerDependencies:
  2000. - supports-color
  2001. '@babel/plugin-transform-modules-systemjs@7.25.0(@babel/core@7.25.2)':
  2002. dependencies:
  2003. '@babel/core': 7.25.2
  2004. '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
  2005. '@babel/helper-plugin-utils': 7.24.8
  2006. '@babel/helper-validator-identifier': 7.24.7
  2007. '@babel/traverse': 7.25.6
  2008. transitivePeerDependencies:
  2009. - supports-color
  2010. '@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.25.2)':
  2011. dependencies:
  2012. '@babel/core': 7.25.2
  2013. '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
  2014. '@babel/helper-plugin-utils': 7.24.8
  2015. transitivePeerDependencies:
  2016. - supports-color
  2017. '@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.25.2)':
  2018. dependencies:
  2019. '@babel/core': 7.25.2
  2020. '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
  2021. '@babel/helper-plugin-utils': 7.24.8
  2022. '@babel/plugin-transform-new-target@7.24.7(@babel/core@7.25.2)':
  2023. dependencies:
  2024. '@babel/core': 7.25.2
  2025. '@babel/helper-plugin-utils': 7.24.8
  2026. '@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.25.2)':
  2027. dependencies:
  2028. '@babel/core': 7.25.2
  2029. '@babel/helper-plugin-utils': 7.24.8
  2030. '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.2)
  2031. '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.25.2)':
  2032. dependencies:
  2033. '@babel/core': 7.25.2
  2034. '@babel/helper-plugin-utils': 7.24.8
  2035. '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.2)
  2036. '@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.25.2)':
  2037. dependencies:
  2038. '@babel/core': 7.25.2
  2039. '@babel/helper-compilation-targets': 7.25.2
  2040. '@babel/helper-plugin-utils': 7.24.8
  2041. '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.2)
  2042. '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.25.2)
  2043. '@babel/plugin-transform-object-super@7.24.7(@babel/core@7.25.2)':
  2044. dependencies:
  2045. '@babel/core': 7.25.2
  2046. '@babel/helper-plugin-utils': 7.24.8
  2047. '@babel/helper-replace-supers': 7.25.0(@babel/core@7.25.2)
  2048. transitivePeerDependencies:
  2049. - supports-color
  2050. '@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.25.2)':
  2051. dependencies:
  2052. '@babel/core': 7.25.2
  2053. '@babel/helper-plugin-utils': 7.24.8
  2054. '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.2)
  2055. '@babel/plugin-transform-optional-chaining@7.24.8(@babel/core@7.25.2)':
  2056. dependencies:
  2057. '@babel/core': 7.25.2
  2058. '@babel/helper-plugin-utils': 7.24.8
  2059. '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
  2060. '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2)
  2061. transitivePeerDependencies:
  2062. - supports-color
  2063. '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.25.2)':
  2064. dependencies:
  2065. '@babel/core': 7.25.2
  2066. '@babel/helper-plugin-utils': 7.24.8
  2067. '@babel/plugin-transform-private-methods@7.25.4(@babel/core@7.25.2)':
  2068. dependencies:
  2069. '@babel/core': 7.25.2
  2070. '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
  2071. '@babel/helper-plugin-utils': 7.24.8
  2072. transitivePeerDependencies:
  2073. - supports-color
  2074. '@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.25.2)':
  2075. dependencies:
  2076. '@babel/core': 7.25.2
  2077. '@babel/helper-annotate-as-pure': 7.24.7
  2078. '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
  2079. '@babel/helper-plugin-utils': 7.24.8
  2080. '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.2)
  2081. transitivePeerDependencies:
  2082. - supports-color
  2083. '@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.25.2)':
  2084. dependencies:
  2085. '@babel/core': 7.25.2
  2086. '@babel/helper-plugin-utils': 7.24.8
  2087. '@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.25.2)':
  2088. dependencies:
  2089. '@babel/core': 7.25.2
  2090. '@babel/helper-plugin-utils': 7.24.8
  2091. regenerator-transform: 0.15.2
  2092. '@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.25.2)':
  2093. dependencies:
  2094. '@babel/core': 7.25.2
  2095. '@babel/helper-plugin-utils': 7.24.8
  2096. '@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.25.2)':
  2097. dependencies:
  2098. '@babel/core': 7.25.2
  2099. '@babel/helper-plugin-utils': 7.24.8
  2100. '@babel/plugin-transform-spread@7.24.7(@babel/core@7.25.2)':
  2101. dependencies:
  2102. '@babel/core': 7.25.2
  2103. '@babel/helper-plugin-utils': 7.24.8
  2104. '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
  2105. transitivePeerDependencies:
  2106. - supports-color
  2107. '@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.25.2)':
  2108. dependencies:
  2109. '@babel/core': 7.25.2
  2110. '@babel/helper-plugin-utils': 7.24.8
  2111. '@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.25.2)':
  2112. dependencies:
  2113. '@babel/core': 7.25.2
  2114. '@babel/helper-plugin-utils': 7.24.8
  2115. '@babel/plugin-transform-typeof-symbol@7.24.8(@babel/core@7.25.2)':
  2116. dependencies:
  2117. '@babel/core': 7.25.2
  2118. '@babel/helper-plugin-utils': 7.24.8
  2119. '@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.25.2)':
  2120. dependencies:
  2121. '@babel/core': 7.25.2
  2122. '@babel/helper-plugin-utils': 7.24.8
  2123. '@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.25.2)':
  2124. dependencies:
  2125. '@babel/core': 7.25.2
  2126. '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
  2127. '@babel/helper-plugin-utils': 7.24.8
  2128. '@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.25.2)':
  2129. dependencies:
  2130. '@babel/core': 7.25.2
  2131. '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
  2132. '@babel/helper-plugin-utils': 7.24.8
  2133. '@babel/plugin-transform-unicode-sets-regex@7.25.4(@babel/core@7.25.2)':
  2134. dependencies:
  2135. '@babel/core': 7.25.2
  2136. '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
  2137. '@babel/helper-plugin-utils': 7.24.8
  2138. '@babel/preset-env@7.25.4(@babel/core@7.25.2)':
  2139. dependencies:
  2140. '@babel/compat-data': 7.25.4
  2141. '@babel/core': 7.25.2
  2142. '@babel/helper-compilation-targets': 7.25.2
  2143. '@babel/helper-plugin-utils': 7.24.8
  2144. '@babel/helper-validator-option': 7.24.8
  2145. '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.3(@babel/core@7.25.2)
  2146. '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.0(@babel/core@7.25.2)
  2147. '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.0(@babel/core@7.25.2)
  2148. '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.25.2)
  2149. '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.0(@babel/core@7.25.2)
  2150. '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.2)
  2151. '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.2)
  2152. '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.25.2)
  2153. '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.2)
  2154. '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.2)
  2155. '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.2)
  2156. '@babel/plugin-syntax-import-assertions': 7.25.6(@babel/core@7.25.2)
  2157. '@babel/plugin-syntax-import-attributes': 7.25.6(@babel/core@7.25.2)
  2158. '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.2)
  2159. '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.2)
  2160. '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.2)
  2161. '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.2)
  2162. '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.2)
  2163. '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.2)
  2164. '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.2)
  2165. '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2)
  2166. '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.2)
  2167. '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.25.2)
  2168. '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.25.2)
  2169. '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.25.2)
  2170. '@babel/plugin-transform-async-generator-functions': 7.25.4(@babel/core@7.25.2)
  2171. '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.25.2)
  2172. '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/core@7.25.2)
  2173. '@babel/plugin-transform-block-scoping': 7.25.0(@babel/core@7.25.2)
  2174. '@babel/plugin-transform-class-properties': 7.25.4(@babel/core@7.25.2)
  2175. '@babel/plugin-transform-class-static-block': 7.24.7(@babel/core@7.25.2)
  2176. '@babel/plugin-transform-classes': 7.25.4(@babel/core@7.25.2)
  2177. '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.25.2)
  2178. '@babel/plugin-transform-destructuring': 7.24.8(@babel/core@7.25.2)
  2179. '@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.25.2)
  2180. '@babel/plugin-transform-duplicate-keys': 7.24.7(@babel/core@7.25.2)
  2181. '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.0(@babel/core@7.25.2)
  2182. '@babel/plugin-transform-dynamic-import': 7.24.7(@babel/core@7.25.2)
  2183. '@babel/plugin-transform-exponentiation-operator': 7.24.7(@babel/core@7.25.2)
  2184. '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.25.2)
  2185. '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.25.2)
  2186. '@babel/plugin-transform-function-name': 7.25.1(@babel/core@7.25.2)
  2187. '@babel/plugin-transform-json-strings': 7.24.7(@babel/core@7.25.2)
  2188. '@babel/plugin-transform-literals': 7.25.2(@babel/core@7.25.2)
  2189. '@babel/plugin-transform-logical-assignment-operators': 7.24.7(@babel/core@7.25.2)
  2190. '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.25.2)
  2191. '@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.25.2)
  2192. '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.25.2)
  2193. '@babel/plugin-transform-modules-systemjs': 7.25.0(@babel/core@7.25.2)
  2194. '@babel/plugin-transform-modules-umd': 7.24.7(@babel/core@7.25.2)
  2195. '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.25.2)
  2196. '@babel/plugin-transform-new-target': 7.24.7(@babel/core@7.25.2)
  2197. '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.25.2)
  2198. '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.25.2)
  2199. '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.25.2)
  2200. '@babel/plugin-transform-object-super': 7.24.7(@babel/core@7.25.2)
  2201. '@babel/plugin-transform-optional-catch-binding': 7.24.7(@babel/core@7.25.2)
  2202. '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.25.2)
  2203. '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.25.2)
  2204. '@babel/plugin-transform-private-methods': 7.25.4(@babel/core@7.25.2)
  2205. '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.25.2)
  2206. '@babel/plugin-transform-property-literals': 7.24.7(@babel/core@7.25.2)
  2207. '@babel/plugin-transform-regenerator': 7.24.7(@babel/core@7.25.2)
  2208. '@babel/plugin-transform-reserved-words': 7.24.7(@babel/core@7.25.2)
  2209. '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.25.2)
  2210. '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.25.2)
  2211. '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.25.2)
  2212. '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.25.2)
  2213. '@babel/plugin-transform-typeof-symbol': 7.24.8(@babel/core@7.25.2)
  2214. '@babel/plugin-transform-unicode-escapes': 7.24.7(@babel/core@7.25.2)
  2215. '@babel/plugin-transform-unicode-property-regex': 7.24.7(@babel/core@7.25.2)
  2216. '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.25.2)
  2217. '@babel/plugin-transform-unicode-sets-regex': 7.25.4(@babel/core@7.25.2)
  2218. '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.25.2)
  2219. babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.2)
  2220. babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.2)
  2221. babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.2)
  2222. core-js-compat: 3.38.1
  2223. semver: 6.3.1
  2224. transitivePeerDependencies:
  2225. - supports-color
  2226. '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.25.2)':
  2227. dependencies:
  2228. '@babel/core': 7.25.2
  2229. '@babel/helper-plugin-utils': 7.24.8
  2230. '@babel/types': 7.25.6
  2231. esutils: 2.0.3
  2232. '@babel/regjsgen@0.8.0': {}
  2233. '@babel/runtime@7.25.6':
  2234. dependencies:
  2235. regenerator-runtime: 0.14.1
  2236. '@babel/template@7.25.0':
  2237. dependencies:
  2238. '@babel/code-frame': 7.24.7
  2239. '@babel/parser': 7.25.6
  2240. '@babel/types': 7.25.6
  2241. '@babel/traverse@7.25.6':
  2242. dependencies:
  2243. '@babel/code-frame': 7.24.7
  2244. '@babel/generator': 7.25.6
  2245. '@babel/parser': 7.25.6
  2246. '@babel/template': 7.25.0
  2247. '@babel/types': 7.25.6
  2248. debug: 4.3.7
  2249. globals: 11.12.0
  2250. transitivePeerDependencies:
  2251. - supports-color
  2252. '@babel/types@7.25.6':
  2253. dependencies:
  2254. '@babel/helper-string-parser': 7.24.8
  2255. '@babel/helper-validator-identifier': 7.24.7
  2256. to-fast-properties: 2.0.0
  2257. '@ffmpeg/ffmpeg@0.12.10':
  2258. dependencies:
  2259. '@ffmpeg/types': 0.12.2
  2260. '@ffmpeg/types@0.12.2': {}
  2261. '@ffmpeg/util@0.12.1': {}
  2262. '@isaacs/cliui@8.0.2':
  2263. dependencies:
  2264. string-width: 5.1.2
  2265. string-width-cjs: string-width@4.2.3
  2266. strip-ansi: 7.1.0
  2267. strip-ansi-cjs: strip-ansi@6.0.1
  2268. wrap-ansi: 8.1.0
  2269. wrap-ansi-cjs: wrap-ansi@7.0.0
  2270. '@jridgewell/gen-mapping@0.3.5':
  2271. dependencies:
  2272. '@jridgewell/set-array': 1.2.1
  2273. '@jridgewell/sourcemap-codec': 1.5.0
  2274. '@jridgewell/trace-mapping': 0.3.25
  2275. '@jridgewell/resolve-uri@3.1.2': {}
  2276. '@jridgewell/set-array@1.2.1': {}
  2277. '@jridgewell/source-map@0.3.6':
  2278. dependencies:
  2279. '@jridgewell/gen-mapping': 0.3.5
  2280. '@jridgewell/trace-mapping': 0.3.25
  2281. '@jridgewell/sourcemap-codec@1.5.0': {}
  2282. '@jridgewell/trace-mapping@0.3.25':
  2283. dependencies:
  2284. '@jridgewell/resolve-uri': 3.1.2
  2285. '@jridgewell/sourcemap-codec': 1.5.0
  2286. '@nodelib/fs.scandir@2.1.5':
  2287. dependencies:
  2288. '@nodelib/fs.stat': 2.0.5
  2289. run-parallel: 1.2.0
  2290. '@nodelib/fs.stat@2.0.5': {}
  2291. '@nodelib/fs.walk@1.2.8':
  2292. dependencies:
  2293. '@nodelib/fs.scandir': 2.1.5
  2294. fastq: 1.17.1
  2295. '@rollup/plugin-alias@5.1.1(rollup@4.22.4)':
  2296. optionalDependencies:
  2297. rollup: 4.22.4
  2298. '@rollup/plugin-babel@6.0.4(@babel/core@7.25.2)(rollup@4.22.4)':
  2299. dependencies:
  2300. '@babel/core': 7.25.2
  2301. '@babel/helper-module-imports': 7.24.7
  2302. '@rollup/pluginutils': 5.1.2(rollup@4.22.4)
  2303. optionalDependencies:
  2304. rollup: 4.22.4
  2305. transitivePeerDependencies:
  2306. - supports-color
  2307. '@rollup/plugin-commonjs@14.0.0(rollup@4.22.4)':
  2308. dependencies:
  2309. '@rollup/pluginutils': 3.1.0(rollup@4.22.4)
  2310. commondir: 1.0.1
  2311. estree-walker: 1.0.1
  2312. glob: 7.2.3
  2313. is-reference: 1.2.1
  2314. magic-string: 0.25.9
  2315. resolve: 1.22.8
  2316. rollup: 4.22.4
  2317. '@rollup/plugin-node-resolve@13.0.6(rollup@4.22.4)':
  2318. dependencies:
  2319. '@rollup/pluginutils': 3.1.0(rollup@4.22.4)
  2320. '@types/resolve': 1.17.1
  2321. builtin-modules: 3.3.0
  2322. deepmerge: 4.3.1
  2323. is-module: 1.0.0
  2324. resolve: 1.22.8
  2325. rollup: 4.22.4
  2326. '@rollup/plugin-url@8.0.2(rollup@4.22.4)':
  2327. dependencies:
  2328. '@rollup/pluginutils': 5.1.2(rollup@4.22.4)
  2329. make-dir: 3.1.0
  2330. mime: 3.0.0
  2331. optionalDependencies:
  2332. rollup: 4.22.4
  2333. '@rollup/plugin-wasm@6.2.2(rollup@4.22.4)':
  2334. dependencies:
  2335. '@rollup/pluginutils': 5.1.2(rollup@4.22.4)
  2336. optionalDependencies:
  2337. rollup: 4.22.4
  2338. '@rollup/pluginutils@3.1.0(rollup@4.22.4)':
  2339. dependencies:
  2340. '@types/estree': 0.0.39
  2341. estree-walker: 1.0.1
  2342. picomatch: 2.3.1
  2343. rollup: 4.22.4
  2344. '@rollup/pluginutils@5.1.2(rollup@4.22.4)':
  2345. dependencies:
  2346. '@types/estree': 1.0.6
  2347. estree-walker: 2.0.2
  2348. picomatch: 2.3.1
  2349. optionalDependencies:
  2350. rollup: 4.22.4
  2351. '@rollup/rollup-android-arm-eabi@4.22.4':
  2352. optional: true
  2353. '@rollup/rollup-android-arm64@4.22.4':
  2354. optional: true
  2355. '@rollup/rollup-darwin-arm64@4.22.4':
  2356. optional: true
  2357. '@rollup/rollup-darwin-x64@4.22.4':
  2358. optional: true
  2359. '@rollup/rollup-linux-arm-gnueabihf@4.22.4':
  2360. optional: true
  2361. '@rollup/rollup-linux-arm-musleabihf@4.22.4':
  2362. optional: true
  2363. '@rollup/rollup-linux-arm64-gnu@4.22.4':
  2364. optional: true
  2365. '@rollup/rollup-linux-arm64-musl@4.22.4':
  2366. optional: true
  2367. '@rollup/rollup-linux-powerpc64le-gnu@4.22.4':
  2368. optional: true
  2369. '@rollup/rollup-linux-riscv64-gnu@4.22.4':
  2370. optional: true
  2371. '@rollup/rollup-linux-s390x-gnu@4.22.4':
  2372. optional: true
  2373. '@rollup/rollup-linux-x64-gnu@4.22.4':
  2374. optional: true
  2375. '@rollup/rollup-linux-x64-musl@4.22.4':
  2376. optional: true
  2377. '@rollup/rollup-win32-arm64-msvc@4.22.4':
  2378. optional: true
  2379. '@rollup/rollup-win32-ia32-msvc@4.22.4':
  2380. optional: true
  2381. '@rollup/rollup-win32-x64-msvc@4.22.4':
  2382. optional: true
  2383. '@surma/rollup-plugin-off-main-thread@2.2.3':
  2384. dependencies:
  2385. ejs: 3.1.10
  2386. json5: 2.2.3
  2387. magic-string: 0.25.9
  2388. string.prototype.matchall: 4.0.11
  2389. '@types/estree@0.0.39': {}
  2390. '@types/estree@1.0.5': {}
  2391. '@types/estree@1.0.6': {}
  2392. '@types/fs-extra@8.1.5':
  2393. dependencies:
  2394. '@types/node': 22.7.2
  2395. '@types/glob@7.2.0':
  2396. dependencies:
  2397. '@types/minimatch': 5.1.2
  2398. '@types/node': 22.7.2
  2399. '@types/minimatch@5.1.2': {}
  2400. '@types/node@22.7.2':
  2401. dependencies:
  2402. undici-types: 6.19.8
  2403. '@types/resolve@0.0.8':
  2404. dependencies:
  2405. '@types/node': 22.7.2
  2406. '@types/resolve@1.17.1':
  2407. dependencies:
  2408. '@types/node': 22.7.2
  2409. acorn@8.12.1: {}
  2410. aggregate-error@3.1.0:
  2411. dependencies:
  2412. clean-stack: 2.2.0
  2413. indent-string: 4.0.0
  2414. ansi-regex@2.1.1: {}
  2415. ansi-regex@5.0.1: {}
  2416. ansi-regex@6.1.0: {}
  2417. ansi-styles@2.2.1: {}
  2418. ansi-styles@3.2.1:
  2419. dependencies:
  2420. color-convert: 1.9.3
  2421. ansi-styles@4.3.0:
  2422. dependencies:
  2423. color-convert: 2.0.1
  2424. ansi-styles@6.2.1: {}
  2425. array-buffer-byte-length@1.0.1:
  2426. dependencies:
  2427. call-bind: 1.0.7
  2428. is-array-buffer: 3.0.4
  2429. array-union@2.1.0: {}
  2430. arraybuffer.prototype.slice@1.0.3:
  2431. dependencies:
  2432. array-buffer-byte-length: 1.0.1
  2433. call-bind: 1.0.7
  2434. define-properties: 1.2.1
  2435. es-abstract: 1.23.3
  2436. es-errors: 1.3.0
  2437. get-intrinsic: 1.2.4
  2438. is-array-buffer: 3.0.4
  2439. is-shared-array-buffer: 1.0.3
  2440. async@3.2.6: {}
  2441. available-typed-arrays@1.0.7:
  2442. dependencies:
  2443. possible-typed-array-names: 1.0.0
  2444. babel-code-frame@6.26.0:
  2445. dependencies:
  2446. chalk: 1.1.3
  2447. esutils: 2.0.3
  2448. js-tokens: 3.0.2
  2449. babel-helper-builder-binary-assignment-operator-visitor@6.24.1:
  2450. dependencies:
  2451. babel-helper-explode-assignable-expression: 6.24.1
  2452. babel-runtime: 6.26.0
  2453. babel-types: 6.26.0
  2454. transitivePeerDependencies:
  2455. - supports-color
  2456. babel-helper-call-delegate@6.24.1:
  2457. dependencies:
  2458. babel-helper-hoist-variables: 6.24.1
  2459. babel-runtime: 6.26.0
  2460. babel-traverse: 6.26.0
  2461. babel-types: 6.26.0
  2462. transitivePeerDependencies:
  2463. - supports-color
  2464. babel-helper-define-map@6.26.0:
  2465. dependencies:
  2466. babel-helper-function-name: 6.24.1
  2467. babel-runtime: 6.26.0
  2468. babel-types: 6.26.0
  2469. lodash: 4.17.21
  2470. transitivePeerDependencies:
  2471. - supports-color
  2472. babel-helper-explode-assignable-expression@6.24.1:
  2473. dependencies:
  2474. babel-runtime: 6.26.0
  2475. babel-traverse: 6.26.0
  2476. babel-types: 6.26.0
  2477. transitivePeerDependencies:
  2478. - supports-color
  2479. babel-helper-function-name@6.24.1:
  2480. dependencies:
  2481. babel-helper-get-function-arity: 6.24.1
  2482. babel-runtime: 6.26.0
  2483. babel-template: 6.26.0
  2484. babel-traverse: 6.26.0
  2485. babel-types: 6.26.0
  2486. transitivePeerDependencies:
  2487. - supports-color
  2488. babel-helper-get-function-arity@6.24.1:
  2489. dependencies:
  2490. babel-runtime: 6.26.0
  2491. babel-types: 6.26.0
  2492. babel-helper-hoist-variables@6.24.1:
  2493. dependencies:
  2494. babel-runtime: 6.26.0
  2495. babel-types: 6.26.0
  2496. babel-helper-optimise-call-expression@6.24.1:
  2497. dependencies:
  2498. babel-runtime: 6.26.0
  2499. babel-types: 6.26.0
  2500. babel-helper-regex@6.26.0:
  2501. dependencies:
  2502. babel-runtime: 6.26.0
  2503. babel-types: 6.26.0
  2504. lodash: 4.17.21
  2505. babel-helper-remap-async-to-generator@6.24.1:
  2506. dependencies:
  2507. babel-helper-function-name: 6.24.1
  2508. babel-runtime: 6.26.0
  2509. babel-template: 6.26.0
  2510. babel-traverse: 6.26.0
  2511. babel-types: 6.26.0
  2512. transitivePeerDependencies:
  2513. - supports-color
  2514. babel-helper-replace-supers@6.24.1:
  2515. dependencies:
  2516. babel-helper-optimise-call-expression: 6.24.1
  2517. babel-messages: 6.23.0
  2518. babel-runtime: 6.26.0
  2519. babel-template: 6.26.0
  2520. babel-traverse: 6.26.0
  2521. babel-types: 6.26.0
  2522. transitivePeerDependencies:
  2523. - supports-color
  2524. babel-messages@6.23.0:
  2525. dependencies:
  2526. babel-runtime: 6.26.0
  2527. babel-plugin-check-es2015-constants@6.22.0:
  2528. dependencies:
  2529. babel-runtime: 6.26.0
  2530. babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.25.2):
  2531. dependencies:
  2532. '@babel/compat-data': 7.25.4
  2533. '@babel/core': 7.25.2
  2534. '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.2)
  2535. semver: 6.3.1
  2536. transitivePeerDependencies:
  2537. - supports-color
  2538. babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.25.2):
  2539. dependencies:
  2540. '@babel/core': 7.25.2
  2541. '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.2)
  2542. core-js-compat: 3.38.1
  2543. transitivePeerDependencies:
  2544. - supports-color
  2545. babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.25.2):
  2546. dependencies:
  2547. '@babel/core': 7.25.2
  2548. '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.2)
  2549. transitivePeerDependencies:
  2550. - supports-color
  2551. babel-plugin-syntax-async-functions@6.13.0: {}
  2552. babel-plugin-syntax-exponentiation-operator@6.13.0: {}
  2553. babel-plugin-syntax-trailing-function-commas@6.22.0: {}
  2554. babel-plugin-transform-async-to-generator@6.24.1:
  2555. dependencies:
  2556. babel-helper-remap-async-to-generator: 6.24.1
  2557. babel-plugin-syntax-async-functions: 6.13.0
  2558. babel-runtime: 6.26.0
  2559. transitivePeerDependencies:
  2560. - supports-color
  2561. babel-plugin-transform-es2015-arrow-functions@6.22.0:
  2562. dependencies:
  2563. babel-runtime: 6.26.0
  2564. babel-plugin-transform-es2015-block-scoped-functions@6.22.0:
  2565. dependencies:
  2566. babel-runtime: 6.26.0
  2567. babel-plugin-transform-es2015-block-scoping@6.26.0:
  2568. dependencies:
  2569. babel-runtime: 6.26.0
  2570. babel-template: 6.26.0
  2571. babel-traverse: 6.26.0
  2572. babel-types: 6.26.0
  2573. lodash: 4.17.21
  2574. transitivePeerDependencies:
  2575. - supports-color
  2576. babel-plugin-transform-es2015-classes@6.24.1:
  2577. dependencies:
  2578. babel-helper-define-map: 6.26.0
  2579. babel-helper-function-name: 6.24.1
  2580. babel-helper-optimise-call-expression: 6.24.1
  2581. babel-helper-replace-supers: 6.24.1
  2582. babel-messages: 6.23.0
  2583. babel-runtime: 6.26.0
  2584. babel-template: 6.26.0
  2585. babel-traverse: 6.26.0
  2586. babel-types: 6.26.0
  2587. transitivePeerDependencies:
  2588. - supports-color
  2589. babel-plugin-transform-es2015-computed-properties@6.24.1:
  2590. dependencies:
  2591. babel-runtime: 6.26.0
  2592. babel-template: 6.26.0
  2593. transitivePeerDependencies:
  2594. - supports-color
  2595. babel-plugin-transform-es2015-destructuring@6.23.0:
  2596. dependencies:
  2597. babel-runtime: 6.26.0
  2598. babel-plugin-transform-es2015-duplicate-keys@6.24.1:
  2599. dependencies:
  2600. babel-runtime: 6.26.0
  2601. babel-types: 6.26.0
  2602. babel-plugin-transform-es2015-for-of@6.23.0:
  2603. dependencies:
  2604. babel-runtime: 6.26.0
  2605. babel-plugin-transform-es2015-function-name@6.24.1:
  2606. dependencies:
  2607. babel-helper-function-name: 6.24.1
  2608. babel-runtime: 6.26.0
  2609. babel-types: 6.26.0
  2610. transitivePeerDependencies:
  2611. - supports-color
  2612. babel-plugin-transform-es2015-literals@6.22.0:
  2613. dependencies:
  2614. babel-runtime: 6.26.0
  2615. babel-plugin-transform-es2015-modules-amd@6.24.1:
  2616. dependencies:
  2617. babel-plugin-transform-es2015-modules-commonjs: 6.26.2
  2618. babel-runtime: 6.26.0
  2619. babel-template: 6.26.0
  2620. transitivePeerDependencies:
  2621. - supports-color
  2622. babel-plugin-transform-es2015-modules-commonjs@6.26.2:
  2623. dependencies:
  2624. babel-plugin-transform-strict-mode: 6.24.1
  2625. babel-runtime: 6.26.0
  2626. babel-template: 6.26.0
  2627. babel-types: 6.26.0
  2628. transitivePeerDependencies:
  2629. - supports-color
  2630. babel-plugin-transform-es2015-modules-systemjs@6.24.1:
  2631. dependencies:
  2632. babel-helper-hoist-variables: 6.24.1
  2633. babel-runtime: 6.26.0
  2634. babel-template: 6.26.0
  2635. transitivePeerDependencies:
  2636. - supports-color
  2637. babel-plugin-transform-es2015-modules-umd@6.24.1:
  2638. dependencies:
  2639. babel-plugin-transform-es2015-modules-amd: 6.24.1
  2640. babel-runtime: 6.26.0
  2641. babel-template: 6.26.0
  2642. transitivePeerDependencies:
  2643. - supports-color
  2644. babel-plugin-transform-es2015-object-super@6.24.1:
  2645. dependencies:
  2646. babel-helper-replace-supers: 6.24.1
  2647. babel-runtime: 6.26.0
  2648. transitivePeerDependencies:
  2649. - supports-color
  2650. babel-plugin-transform-es2015-parameters@6.24.1:
  2651. dependencies:
  2652. babel-helper-call-delegate: 6.24.1
  2653. babel-helper-get-function-arity: 6.24.1
  2654. babel-runtime: 6.26.0
  2655. babel-template: 6.26.0
  2656. babel-traverse: 6.26.0
  2657. babel-types: 6.26.0
  2658. transitivePeerDependencies:
  2659. - supports-color
  2660. babel-plugin-transform-es2015-shorthand-properties@6.24.1:
  2661. dependencies:
  2662. babel-runtime: 6.26.0
  2663. babel-types: 6.26.0
  2664. babel-plugin-transform-es2015-spread@6.22.0:
  2665. dependencies:
  2666. babel-runtime: 6.26.0
  2667. babel-plugin-transform-es2015-sticky-regex@6.24.1:
  2668. dependencies:
  2669. babel-helper-regex: 6.26.0
  2670. babel-runtime: 6.26.0
  2671. babel-types: 6.26.0
  2672. babel-plugin-transform-es2015-template-literals@6.22.0:
  2673. dependencies:
  2674. babel-runtime: 6.26.0
  2675. babel-plugin-transform-es2015-typeof-symbol@6.23.0:
  2676. dependencies:
  2677. babel-runtime: 6.26.0
  2678. babel-plugin-transform-es2015-unicode-regex@6.24.1:
  2679. dependencies:
  2680. babel-helper-regex: 6.26.0
  2681. babel-runtime: 6.26.0
  2682. regexpu-core: 2.0.0
  2683. babel-plugin-transform-exponentiation-operator@6.24.1:
  2684. dependencies:
  2685. babel-helper-builder-binary-assignment-operator-visitor: 6.24.1
  2686. babel-plugin-syntax-exponentiation-operator: 6.13.0
  2687. babel-runtime: 6.26.0
  2688. transitivePeerDependencies:
  2689. - supports-color
  2690. babel-plugin-transform-regenerator@6.26.0:
  2691. dependencies:
  2692. regenerator-transform: 0.10.1
  2693. babel-plugin-transform-strict-mode@6.24.1:
  2694. dependencies:
  2695. babel-runtime: 6.26.0
  2696. babel-types: 6.26.0
  2697. babel-preset-es2015@6.24.1:
  2698. dependencies:
  2699. babel-plugin-check-es2015-constants: 6.22.0
  2700. babel-plugin-transform-es2015-arrow-functions: 6.22.0
  2701. babel-plugin-transform-es2015-block-scoped-functions: 6.22.0
  2702. babel-plugin-transform-es2015-block-scoping: 6.26.0
  2703. babel-plugin-transform-es2015-classes: 6.24.1
  2704. babel-plugin-transform-es2015-computed-properties: 6.24.1
  2705. babel-plugin-transform-es2015-destructuring: 6.23.0
  2706. babel-plugin-transform-es2015-duplicate-keys: 6.24.1
  2707. babel-plugin-transform-es2015-for-of: 6.23.0
  2708. babel-plugin-transform-es2015-function-name: 6.24.1
  2709. babel-plugin-transform-es2015-literals: 6.22.0
  2710. babel-plugin-transform-es2015-modules-amd: 6.24.1
  2711. babel-plugin-transform-es2015-modules-commonjs: 6.26.2
  2712. babel-plugin-transform-es2015-modules-systemjs: 6.24.1
  2713. babel-plugin-transform-es2015-modules-umd: 6.24.1
  2714. babel-plugin-transform-es2015-object-super: 6.24.1
  2715. babel-plugin-transform-es2015-parameters: 6.24.1
  2716. babel-plugin-transform-es2015-shorthand-properties: 6.24.1
  2717. babel-plugin-transform-es2015-spread: 6.22.0
  2718. babel-plugin-transform-es2015-sticky-regex: 6.24.1
  2719. babel-plugin-transform-es2015-template-literals: 6.22.0
  2720. babel-plugin-transform-es2015-typeof-symbol: 6.23.0
  2721. babel-plugin-transform-es2015-unicode-regex: 6.24.1
  2722. babel-plugin-transform-regenerator: 6.26.0
  2723. transitivePeerDependencies:
  2724. - supports-color
  2725. babel-preset-es2016@6.24.1:
  2726. dependencies:
  2727. babel-plugin-transform-exponentiation-operator: 6.24.1
  2728. transitivePeerDependencies:
  2729. - supports-color
  2730. babel-preset-es2017@6.24.1:
  2731. dependencies:
  2732. babel-plugin-syntax-trailing-function-commas: 6.22.0
  2733. babel-plugin-transform-async-to-generator: 6.24.1
  2734. transitivePeerDependencies:
  2735. - supports-color
  2736. babel-preset-latest@6.24.1:
  2737. dependencies:
  2738. babel-preset-es2015: 6.24.1
  2739. babel-preset-es2016: 6.24.1
  2740. babel-preset-es2017: 6.24.1
  2741. transitivePeerDependencies:
  2742. - supports-color
  2743. babel-runtime@6.26.0:
  2744. dependencies:
  2745. core-js: 2.6.12
  2746. regenerator-runtime: 0.11.1
  2747. babel-template@6.26.0:
  2748. dependencies:
  2749. babel-runtime: 6.26.0
  2750. babel-traverse: 6.26.0
  2751. babel-types: 6.26.0
  2752. babylon: 6.18.0
  2753. lodash: 4.17.21
  2754. transitivePeerDependencies:
  2755. - supports-color
  2756. babel-traverse@6.26.0:
  2757. dependencies:
  2758. babel-code-frame: 6.26.0
  2759. babel-messages: 6.23.0
  2760. babel-runtime: 6.26.0
  2761. babel-types: 6.26.0
  2762. babylon: 6.18.0
  2763. debug: 2.6.9
  2764. globals: 9.18.0
  2765. invariant: 2.2.4
  2766. lodash: 4.17.21
  2767. transitivePeerDependencies:
  2768. - supports-color
  2769. babel-types@6.26.0:
  2770. dependencies:
  2771. babel-runtime: 6.26.0
  2772. esutils: 2.0.3
  2773. lodash: 4.17.21
  2774. to-fast-properties: 1.0.3
  2775. babylon@6.18.0: {}
  2776. balanced-match@1.0.2: {}
  2777. brace-expansion@1.1.11:
  2778. dependencies:
  2779. balanced-match: 1.0.2
  2780. concat-map: 0.0.1
  2781. brace-expansion@2.0.1:
  2782. dependencies:
  2783. balanced-match: 1.0.2
  2784. braces@3.0.3:
  2785. dependencies:
  2786. fill-range: 7.1.1
  2787. browserslist@4.24.0:
  2788. dependencies:
  2789. caniuse-lite: 1.0.30001663
  2790. electron-to-chromium: 1.5.28
  2791. node-releases: 2.0.18
  2792. update-browserslist-db: 1.1.0(browserslist@4.24.0)
  2793. buffer-from@1.1.2: {}
  2794. builtin-modules@3.3.0: {}
  2795. call-bind@1.0.7:
  2796. dependencies:
  2797. es-define-property: 1.0.0
  2798. es-errors: 1.3.0
  2799. function-bind: 1.1.2
  2800. get-intrinsic: 1.2.4
  2801. set-function-length: 1.2.2
  2802. caniuse-lite@1.0.30001663: {}
  2803. chalk@1.1.3:
  2804. dependencies:
  2805. ansi-styles: 2.2.1
  2806. escape-string-regexp: 1.0.5
  2807. has-ansi: 2.0.0
  2808. strip-ansi: 3.0.1
  2809. supports-color: 2.0.0
  2810. chalk@2.4.2:
  2811. dependencies:
  2812. ansi-styles: 3.2.1
  2813. escape-string-regexp: 1.0.5
  2814. supports-color: 5.5.0
  2815. chalk@4.1.2:
  2816. dependencies:
  2817. ansi-styles: 4.3.0
  2818. supports-color: 7.2.0
  2819. clean-stack@2.2.0: {}
  2820. color-convert@1.9.3:
  2821. dependencies:
  2822. color-name: 1.1.3
  2823. color-convert@2.0.1:
  2824. dependencies:
  2825. color-name: 1.1.4
  2826. color-name@1.1.3: {}
  2827. color-name@1.1.4: {}
  2828. colorette@1.4.0: {}
  2829. commander@2.20.3: {}
  2830. commondir@1.0.1: {}
  2831. concat-map@0.0.1: {}
  2832. convert-source-map@2.0.0: {}
  2833. core-js-compat@3.38.1:
  2834. dependencies:
  2835. browserslist: 4.24.0
  2836. core-js@2.6.12: {}
  2837. cross-spawn@7.0.3:
  2838. dependencies:
  2839. path-key: 3.1.1
  2840. shebang-command: 2.0.0
  2841. which: 2.0.2
  2842. data-view-buffer@1.0.1:
  2843. dependencies:
  2844. call-bind: 1.0.7
  2845. es-errors: 1.3.0
  2846. is-data-view: 1.0.1
  2847. data-view-byte-length@1.0.1:
  2848. dependencies:
  2849. call-bind: 1.0.7
  2850. es-errors: 1.3.0
  2851. is-data-view: 1.0.1
  2852. data-view-byte-offset@1.0.0:
  2853. dependencies:
  2854. call-bind: 1.0.7
  2855. es-errors: 1.3.0
  2856. is-data-view: 1.0.1
  2857. debug@2.6.9:
  2858. dependencies:
  2859. ms: 2.0.0
  2860. debug@4.3.7:
  2861. dependencies:
  2862. ms: 2.1.3
  2863. deepmerge@4.3.1: {}
  2864. define-data-property@1.1.4:
  2865. dependencies:
  2866. es-define-property: 1.0.0
  2867. es-errors: 1.3.0
  2868. gopd: 1.0.1
  2869. define-properties@1.2.1:
  2870. dependencies:
  2871. define-data-property: 1.1.4
  2872. has-property-descriptors: 1.0.2
  2873. object-keys: 1.1.1
  2874. del@5.1.0:
  2875. dependencies:
  2876. globby: 10.0.2
  2877. graceful-fs: 4.2.11
  2878. is-glob: 4.0.3
  2879. is-path-cwd: 2.2.0
  2880. is-path-inside: 3.0.3
  2881. p-map: 3.0.0
  2882. rimraf: 3.0.2
  2883. slash: 3.0.0
  2884. dir-glob@3.0.1:
  2885. dependencies:
  2886. path-type: 4.0.0
  2887. eastasianwidth@0.2.0: {}
  2888. ejs@3.1.10:
  2889. dependencies:
  2890. jake: 10.9.2
  2891. electron-to-chromium@1.5.28: {}
  2892. emoji-regex@8.0.0: {}
  2893. emoji-regex@9.2.2: {}
  2894. es-abstract@1.23.3:
  2895. dependencies:
  2896. array-buffer-byte-length: 1.0.1
  2897. arraybuffer.prototype.slice: 1.0.3
  2898. available-typed-arrays: 1.0.7
  2899. call-bind: 1.0.7
  2900. data-view-buffer: 1.0.1
  2901. data-view-byte-length: 1.0.1
  2902. data-view-byte-offset: 1.0.0
  2903. es-define-property: 1.0.0
  2904. es-errors: 1.3.0
  2905. es-object-atoms: 1.0.0
  2906. es-set-tostringtag: 2.0.3
  2907. es-to-primitive: 1.2.1
  2908. function.prototype.name: 1.1.6
  2909. get-intrinsic: 1.2.4
  2910. get-symbol-description: 1.0.2
  2911. globalthis: 1.0.4
  2912. gopd: 1.0.1
  2913. has-property-descriptors: 1.0.2
  2914. has-proto: 1.0.3
  2915. has-symbols: 1.0.3
  2916. hasown: 2.0.2
  2917. internal-slot: 1.0.7
  2918. is-array-buffer: 3.0.4
  2919. is-callable: 1.2.7
  2920. is-data-view: 1.0.1
  2921. is-negative-zero: 2.0.3
  2922. is-regex: 1.1.4
  2923. is-shared-array-buffer: 1.0.3
  2924. is-string: 1.0.7
  2925. is-typed-array: 1.1.13
  2926. is-weakref: 1.0.2
  2927. object-inspect: 1.13.2
  2928. object-keys: 1.1.1
  2929. object.assign: 4.1.5
  2930. regexp.prototype.flags: 1.5.2
  2931. safe-array-concat: 1.1.2
  2932. safe-regex-test: 1.0.3
  2933. string.prototype.trim: 1.2.9
  2934. string.prototype.trimend: 1.0.8
  2935. string.prototype.trimstart: 1.0.8
  2936. typed-array-buffer: 1.0.2
  2937. typed-array-byte-length: 1.0.1
  2938. typed-array-byte-offset: 1.0.2
  2939. typed-array-length: 1.0.6
  2940. unbox-primitive: 1.0.2
  2941. which-typed-array: 1.1.15
  2942. es-define-property@1.0.0:
  2943. dependencies:
  2944. get-intrinsic: 1.2.4
  2945. es-errors@1.3.0: {}
  2946. es-object-atoms@1.0.0:
  2947. dependencies:
  2948. es-errors: 1.3.0
  2949. es-set-tostringtag@2.0.3:
  2950. dependencies:
  2951. get-intrinsic: 1.2.4
  2952. has-tostringtag: 1.0.2
  2953. hasown: 2.0.2
  2954. es-to-primitive@1.2.1:
  2955. dependencies:
  2956. is-callable: 1.2.7
  2957. is-date-object: 1.0.5
  2958. is-symbol: 1.0.4
  2959. escalade@3.2.0: {}
  2960. escape-string-regexp@1.0.5: {}
  2961. estree-walker@0.6.1: {}
  2962. estree-walker@1.0.1: {}
  2963. estree-walker@2.0.2: {}
  2964. esutils@2.0.3: {}
  2965. fast-glob@3.3.2:
  2966. dependencies:
  2967. '@nodelib/fs.stat': 2.0.5
  2968. '@nodelib/fs.walk': 1.2.8
  2969. glob-parent: 5.1.2
  2970. merge2: 1.4.1
  2971. micromatch: 4.0.8
  2972. fastq@1.17.1:
  2973. dependencies:
  2974. reusify: 1.0.4
  2975. fetch-blob@3.2.0:
  2976. dependencies:
  2977. node-domexception: 1.0.0
  2978. web-streams-polyfill: 3.3.3
  2979. optional: true
  2980. filelist@1.0.4:
  2981. dependencies:
  2982. minimatch: 5.1.6
  2983. fill-range@7.1.1:
  2984. dependencies:
  2985. to-regex-range: 5.0.1
  2986. for-each@0.3.3:
  2987. dependencies:
  2988. is-callable: 1.2.7
  2989. foreground-child@3.3.0:
  2990. dependencies:
  2991. cross-spawn: 7.0.3
  2992. signal-exit: 4.1.0
  2993. fs-extra@8.1.0:
  2994. dependencies:
  2995. graceful-fs: 4.2.11
  2996. jsonfile: 4.0.0
  2997. universalify: 0.1.2
  2998. fs.realpath@1.0.0: {}
  2999. fsevents@2.3.3:
  3000. optional: true
  3001. function-bind@1.1.2: {}
  3002. function.prototype.name@1.1.6:
  3003. dependencies:
  3004. call-bind: 1.0.7
  3005. define-properties: 1.2.1
  3006. es-abstract: 1.23.3
  3007. functions-have-names: 1.2.3
  3008. functions-have-names@1.2.3: {}
  3009. gensync@1.0.0-beta.2: {}
  3010. get-intrinsic@1.2.4:
  3011. dependencies:
  3012. es-errors: 1.3.0
  3013. function-bind: 1.1.2
  3014. has-proto: 1.0.3
  3015. has-symbols: 1.0.3
  3016. hasown: 2.0.2
  3017. get-symbol-description@1.0.2:
  3018. dependencies:
  3019. call-bind: 1.0.7
  3020. es-errors: 1.3.0
  3021. get-intrinsic: 1.2.4
  3022. glob-parent@5.1.2:
  3023. dependencies:
  3024. is-glob: 4.0.3
  3025. glob@11.0.0:
  3026. dependencies:
  3027. foreground-child: 3.3.0
  3028. jackspeak: 4.0.2
  3029. minimatch: 10.0.1
  3030. minipass: 7.1.2
  3031. package-json-from-dist: 1.0.0
  3032. path-scurry: 2.0.0
  3033. glob@7.2.3:
  3034. dependencies:
  3035. fs.realpath: 1.0.0
  3036. inflight: 1.0.6
  3037. inherits: 2.0.4
  3038. minimatch: 3.1.2
  3039. once: 1.4.0
  3040. path-is-absolute: 1.0.1
  3041. globals@11.12.0: {}
  3042. globals@9.18.0: {}
  3043. globalthis@1.0.4:
  3044. dependencies:
  3045. define-properties: 1.2.1
  3046. gopd: 1.0.1
  3047. globby@10.0.1:
  3048. dependencies:
  3049. '@types/glob': 7.2.0
  3050. array-union: 2.1.0
  3051. dir-glob: 3.0.1
  3052. fast-glob: 3.3.2
  3053. glob: 7.2.3
  3054. ignore: 5.3.2
  3055. merge2: 1.4.1
  3056. slash: 3.0.0
  3057. globby@10.0.2:
  3058. dependencies:
  3059. '@types/glob': 7.2.0
  3060. array-union: 2.1.0
  3061. dir-glob: 3.0.1
  3062. fast-glob: 3.3.2
  3063. glob: 7.2.3
  3064. ignore: 5.3.2
  3065. merge2: 1.4.1
  3066. slash: 3.0.0
  3067. gopd@1.0.1:
  3068. dependencies:
  3069. get-intrinsic: 1.2.4
  3070. graceful-fs@4.2.11: {}
  3071. has-ansi@2.0.0:
  3072. dependencies:
  3073. ansi-regex: 2.1.1
  3074. has-bigints@1.0.2: {}
  3075. has-flag@3.0.0: {}
  3076. has-flag@4.0.0: {}
  3077. has-property-descriptors@1.0.2:
  3078. dependencies:
  3079. es-define-property: 1.0.0
  3080. has-proto@1.0.3: {}
  3081. has-symbols@1.0.3: {}
  3082. has-tostringtag@1.0.2:
  3083. dependencies:
  3084. has-symbols: 1.0.3
  3085. hasown@2.0.2:
  3086. dependencies:
  3087. function-bind: 1.1.2
  3088. ignore@5.3.2: {}
  3089. indent-string@4.0.0: {}
  3090. inflight@1.0.6:
  3091. dependencies:
  3092. once: 1.4.0
  3093. wrappy: 1.0.2
  3094. inherits@2.0.4: {}
  3095. internal-slot@1.0.7:
  3096. dependencies:
  3097. es-errors: 1.3.0
  3098. hasown: 2.0.2
  3099. side-channel: 1.0.6
  3100. invariant@2.2.4:
  3101. dependencies:
  3102. loose-envify: 1.4.0
  3103. is-array-buffer@3.0.4:
  3104. dependencies:
  3105. call-bind: 1.0.7
  3106. get-intrinsic: 1.2.4
  3107. is-bigint@1.0.4:
  3108. dependencies:
  3109. has-bigints: 1.0.2
  3110. is-boolean-object@1.1.2:
  3111. dependencies:
  3112. call-bind: 1.0.7
  3113. has-tostringtag: 1.0.2
  3114. is-callable@1.2.7: {}
  3115. is-core-module@2.15.1:
  3116. dependencies:
  3117. hasown: 2.0.2
  3118. is-data-view@1.0.1:
  3119. dependencies:
  3120. is-typed-array: 1.1.13
  3121. is-date-object@1.0.5:
  3122. dependencies:
  3123. has-tostringtag: 1.0.2
  3124. is-extglob@2.1.1: {}
  3125. is-fullwidth-code-point@3.0.0: {}
  3126. is-glob@4.0.3:
  3127. dependencies:
  3128. is-extglob: 2.1.1
  3129. is-module@1.0.0: {}
  3130. is-negative-zero@2.0.3: {}
  3131. is-number-object@1.0.7:
  3132. dependencies:
  3133. has-tostringtag: 1.0.2
  3134. is-number@7.0.0: {}
  3135. is-path-cwd@2.2.0: {}
  3136. is-path-inside@3.0.3: {}
  3137. is-plain-object@3.0.1: {}
  3138. is-reference@1.2.1:
  3139. dependencies:
  3140. '@types/estree': 1.0.6
  3141. is-regex@1.1.4:
  3142. dependencies:
  3143. call-bind: 1.0.7
  3144. has-tostringtag: 1.0.2
  3145. is-shared-array-buffer@1.0.3:
  3146. dependencies:
  3147. call-bind: 1.0.7
  3148. is-string@1.0.7:
  3149. dependencies:
  3150. has-tostringtag: 1.0.2
  3151. is-symbol@1.0.4:
  3152. dependencies:
  3153. has-symbols: 1.0.3
  3154. is-typed-array@1.1.13:
  3155. dependencies:
  3156. which-typed-array: 1.1.15
  3157. is-weakref@1.0.2:
  3158. dependencies:
  3159. call-bind: 1.0.7
  3160. isarray@2.0.5: {}
  3161. isexe@2.0.0: {}
  3162. jackspeak@4.0.2:
  3163. dependencies:
  3164. '@isaacs/cliui': 8.0.2
  3165. jake@10.9.2:
  3166. dependencies:
  3167. async: 3.2.6
  3168. chalk: 4.1.2
  3169. filelist: 1.0.4
  3170. minimatch: 3.1.2
  3171. jest-worker@26.6.2:
  3172. dependencies:
  3173. '@types/node': 22.7.2
  3174. merge-stream: 2.0.0
  3175. supports-color: 7.2.0
  3176. jquery@3.7.1: {}
  3177. js-tokens@3.0.2: {}
  3178. js-tokens@4.0.0: {}
  3179. jsesc@0.5.0: {}
  3180. jsesc@2.5.2: {}
  3181. json5@2.2.3: {}
  3182. jsonfile@4.0.0:
  3183. optionalDependencies:
  3184. graceful-fs: 4.2.11
  3185. lodash.debounce@4.0.8: {}
  3186. lodash@4.17.21: {}
  3187. loose-envify@1.4.0:
  3188. dependencies:
  3189. js-tokens: 4.0.0
  3190. lru-cache@11.0.1: {}
  3191. lru-cache@5.1.1:
  3192. dependencies:
  3193. yallist: 3.1.1
  3194. magic-string@0.25.9:
  3195. dependencies:
  3196. sourcemap-codec: 1.4.8
  3197. make-dir@3.1.0:
  3198. dependencies:
  3199. semver: 6.3.1
  3200. merge-stream@2.0.0: {}
  3201. merge2@1.4.1: {}
  3202. micromatch@4.0.8:
  3203. dependencies:
  3204. braces: 3.0.3
  3205. picomatch: 2.3.1
  3206. mime@3.0.0: {}
  3207. minimatch@10.0.1:
  3208. dependencies:
  3209. brace-expansion: 2.0.1
  3210. minimatch@3.1.2:
  3211. dependencies:
  3212. brace-expansion: 1.1.11
  3213. minimatch@5.1.6:
  3214. dependencies:
  3215. brace-expansion: 2.0.1
  3216. minipass@7.1.2: {}
  3217. mp4box@0.5.2: {}
  3218. ms@2.0.0: {}
  3219. ms@2.1.3: {}
  3220. native-file-system-adapter@3.0.1:
  3221. optionalDependencies:
  3222. fetch-blob: 3.2.0
  3223. node-domexception@1.0.0:
  3224. optional: true
  3225. node-releases@2.0.18: {}
  3226. object-inspect@1.13.2: {}
  3227. object-keys@1.1.1: {}
  3228. object.assign@4.1.5:
  3229. dependencies:
  3230. call-bind: 1.0.7
  3231. define-properties: 1.2.1
  3232. has-symbols: 1.0.3
  3233. object-keys: 1.1.1
  3234. once@1.4.0:
  3235. dependencies:
  3236. wrappy: 1.0.2
  3237. p-map@3.0.0:
  3238. dependencies:
  3239. aggregate-error: 3.1.0
  3240. package-json-from-dist@1.0.0: {}
  3241. path-is-absolute@1.0.1: {}
  3242. path-key@3.1.1: {}
  3243. path-parse@1.0.7: {}
  3244. path-scurry@2.0.0:
  3245. dependencies:
  3246. lru-cache: 11.0.1
  3247. minipass: 7.1.2
  3248. path-type@4.0.0: {}
  3249. picocolors@1.1.0: {}
  3250. picomatch@2.3.1: {}
  3251. possible-typed-array-names@1.0.0: {}
  3252. private@0.1.8: {}
  3253. queue-microtask@1.2.3: {}
  3254. randombytes@2.1.0:
  3255. dependencies:
  3256. safe-buffer: 5.2.1
  3257. regenerate-unicode-properties@10.2.0:
  3258. dependencies:
  3259. regenerate: 1.4.2
  3260. regenerate@1.4.2: {}
  3261. regenerator-runtime@0.11.1: {}
  3262. regenerator-runtime@0.14.1: {}
  3263. regenerator-transform@0.10.1:
  3264. dependencies:
  3265. babel-runtime: 6.26.0
  3266. babel-types: 6.26.0
  3267. private: 0.1.8
  3268. regenerator-transform@0.15.2:
  3269. dependencies:
  3270. '@babel/runtime': 7.25.6
  3271. regexp.prototype.flags@1.5.2:
  3272. dependencies:
  3273. call-bind: 1.0.7
  3274. define-properties: 1.2.1
  3275. es-errors: 1.3.0
  3276. set-function-name: 2.0.2
  3277. regexpu-core@2.0.0:
  3278. dependencies:
  3279. regenerate: 1.4.2
  3280. regjsgen: 0.2.0
  3281. regjsparser: 0.1.5
  3282. regexpu-core@5.3.2:
  3283. dependencies:
  3284. '@babel/regjsgen': 0.8.0
  3285. regenerate: 1.4.2
  3286. regenerate-unicode-properties: 10.2.0
  3287. regjsparser: 0.9.1
  3288. unicode-match-property-ecmascript: 2.0.0
  3289. unicode-match-property-value-ecmascript: 2.2.0
  3290. regjsgen@0.2.0: {}
  3291. regjsparser@0.1.5:
  3292. dependencies:
  3293. jsesc: 0.5.0
  3294. regjsparser@0.9.1:
  3295. dependencies:
  3296. jsesc: 0.5.0
  3297. resolve@1.22.8:
  3298. dependencies:
  3299. is-core-module: 2.15.1
  3300. path-parse: 1.0.7
  3301. supports-preserve-symlinks-flag: 1.0.0
  3302. reusify@1.0.4: {}
  3303. rimraf@3.0.2:
  3304. dependencies:
  3305. glob: 7.2.3
  3306. rollup-plugin-copy@3.5.0:
  3307. dependencies:
  3308. '@types/fs-extra': 8.1.5
  3309. colorette: 1.4.0
  3310. fs-extra: 8.1.0
  3311. globby: 10.0.1
  3312. is-plain-object: 3.0.1
  3313. rollup-plugin-delete@2.1.0(rollup@4.22.4):
  3314. dependencies:
  3315. del: 5.1.0
  3316. rollup: 4.22.4
  3317. rollup-plugin-import-alias@1.0.10: {}
  3318. rollup-plugin-json@4.0.0:
  3319. dependencies:
  3320. rollup-pluginutils: 2.8.2
  3321. rollup-plugin-multi-input@1.5.0:
  3322. dependencies:
  3323. fast-glob: 3.3.2
  3324. rollup-plugin-node-resolve@5.2.0(rollup@4.22.4):
  3325. dependencies:
  3326. '@types/resolve': 0.0.8
  3327. builtin-modules: 3.3.0
  3328. is-module: 1.0.0
  3329. resolve: 1.22.8
  3330. rollup: 4.22.4
  3331. rollup-pluginutils: 2.8.2
  3332. rollup-plugin-progress@1.1.2:
  3333. dependencies:
  3334. chalk: 2.4.2
  3335. rollup-plugin-terser@7.0.2(rollup@4.22.4):
  3336. dependencies:
  3337. '@babel/code-frame': 7.24.7
  3338. jest-worker: 26.6.2
  3339. rollup: 4.22.4
  3340. serialize-javascript: 4.0.0
  3341. terser: 5.33.0
  3342. rollup-plugin-web-worker-loader@1.6.1(rollup@4.22.4):
  3343. dependencies:
  3344. rollup: 4.22.4
  3345. rollup-pluginutils@2.8.2:
  3346. dependencies:
  3347. estree-walker: 0.6.1
  3348. rollup@4.22.4:
  3349. dependencies:
  3350. '@types/estree': 1.0.5
  3351. optionalDependencies:
  3352. '@rollup/rollup-android-arm-eabi': 4.22.4
  3353. '@rollup/rollup-android-arm64': 4.22.4
  3354. '@rollup/rollup-darwin-arm64': 4.22.4
  3355. '@rollup/rollup-darwin-x64': 4.22.4
  3356. '@rollup/rollup-linux-arm-gnueabihf': 4.22.4
  3357. '@rollup/rollup-linux-arm-musleabihf': 4.22.4
  3358. '@rollup/rollup-linux-arm64-gnu': 4.22.4
  3359. '@rollup/rollup-linux-arm64-musl': 4.22.4
  3360. '@rollup/rollup-linux-powerpc64le-gnu': 4.22.4
  3361. '@rollup/rollup-linux-riscv64-gnu': 4.22.4
  3362. '@rollup/rollup-linux-s390x-gnu': 4.22.4
  3363. '@rollup/rollup-linux-x64-gnu': 4.22.4
  3364. '@rollup/rollup-linux-x64-musl': 4.22.4
  3365. '@rollup/rollup-win32-arm64-msvc': 4.22.4
  3366. '@rollup/rollup-win32-ia32-msvc': 4.22.4
  3367. '@rollup/rollup-win32-x64-msvc': 4.22.4
  3368. fsevents: 2.3.3
  3369. run-parallel@1.2.0:
  3370. dependencies:
  3371. queue-microtask: 1.2.3
  3372. safe-array-concat@1.1.2:
  3373. dependencies:
  3374. call-bind: 1.0.7
  3375. get-intrinsic: 1.2.4
  3376. has-symbols: 1.0.3
  3377. isarray: 2.0.5
  3378. safe-buffer@5.2.1: {}
  3379. safe-regex-test@1.0.3:
  3380. dependencies:
  3381. call-bind: 1.0.7
  3382. es-errors: 1.3.0
  3383. is-regex: 1.1.4
  3384. semver@6.3.1: {}
  3385. serialize-javascript@4.0.0:
  3386. dependencies:
  3387. randombytes: 2.1.0
  3388. set-function-length@1.2.2:
  3389. dependencies:
  3390. define-data-property: 1.1.4
  3391. es-errors: 1.3.0
  3392. function-bind: 1.1.2
  3393. get-intrinsic: 1.2.4
  3394. gopd: 1.0.1
  3395. has-property-descriptors: 1.0.2
  3396. set-function-name@2.0.2:
  3397. dependencies:
  3398. define-data-property: 1.1.4
  3399. es-errors: 1.3.0
  3400. functions-have-names: 1.2.3
  3401. has-property-descriptors: 1.0.2
  3402. shebang-command@2.0.0:
  3403. dependencies:
  3404. shebang-regex: 3.0.0
  3405. shebang-regex@3.0.0: {}
  3406. side-channel@1.0.6:
  3407. dependencies:
  3408. call-bind: 1.0.7
  3409. es-errors: 1.3.0
  3410. get-intrinsic: 1.2.4
  3411. object-inspect: 1.13.2
  3412. signal-exit@4.1.0: {}
  3413. slash@3.0.0: {}
  3414. source-map-support@0.5.21:
  3415. dependencies:
  3416. buffer-from: 1.1.2
  3417. source-map: 0.6.1
  3418. source-map@0.6.1: {}
  3419. sourcemap-codec@1.4.8: {}
  3420. string-width@4.2.3:
  3421. dependencies:
  3422. emoji-regex: 8.0.0
  3423. is-fullwidth-code-point: 3.0.0
  3424. strip-ansi: 6.0.1
  3425. string-width@5.1.2:
  3426. dependencies:
  3427. eastasianwidth: 0.2.0
  3428. emoji-regex: 9.2.2
  3429. strip-ansi: 7.1.0
  3430. string.prototype.matchall@4.0.11:
  3431. dependencies:
  3432. call-bind: 1.0.7
  3433. define-properties: 1.2.1
  3434. es-abstract: 1.23.3
  3435. es-errors: 1.3.0
  3436. es-object-atoms: 1.0.0
  3437. get-intrinsic: 1.2.4
  3438. gopd: 1.0.1
  3439. has-symbols: 1.0.3
  3440. internal-slot: 1.0.7
  3441. regexp.prototype.flags: 1.5.2
  3442. set-function-name: 2.0.2
  3443. side-channel: 1.0.6
  3444. string.prototype.trim@1.2.9:
  3445. dependencies:
  3446. call-bind: 1.0.7
  3447. define-properties: 1.2.1
  3448. es-abstract: 1.23.3
  3449. es-object-atoms: 1.0.0
  3450. string.prototype.trimend@1.0.8:
  3451. dependencies:
  3452. call-bind: 1.0.7
  3453. define-properties: 1.2.1
  3454. es-object-atoms: 1.0.0
  3455. string.prototype.trimstart@1.0.8:
  3456. dependencies:
  3457. call-bind: 1.0.7
  3458. define-properties: 1.2.1
  3459. es-object-atoms: 1.0.0
  3460. strip-ansi@3.0.1:
  3461. dependencies:
  3462. ansi-regex: 2.1.1
  3463. strip-ansi@6.0.1:
  3464. dependencies:
  3465. ansi-regex: 5.0.1
  3466. strip-ansi@7.1.0:
  3467. dependencies:
  3468. ansi-regex: 6.1.0
  3469. supports-color@2.0.0: {}
  3470. supports-color@5.5.0:
  3471. dependencies:
  3472. has-flag: 3.0.0
  3473. supports-color@7.2.0:
  3474. dependencies:
  3475. has-flag: 4.0.0
  3476. supports-preserve-symlinks-flag@1.0.0: {}
  3477. terser@5.33.0:
  3478. dependencies:
  3479. '@jridgewell/source-map': 0.3.6
  3480. acorn: 8.12.1
  3481. commander: 2.20.3
  3482. source-map-support: 0.5.21
  3483. to-fast-properties@1.0.3: {}
  3484. to-fast-properties@2.0.0: {}
  3485. to-regex-range@5.0.1:
  3486. dependencies:
  3487. is-number: 7.0.0
  3488. typed-array-buffer@1.0.2:
  3489. dependencies:
  3490. call-bind: 1.0.7
  3491. es-errors: 1.3.0
  3492. is-typed-array: 1.1.13
  3493. typed-array-byte-length@1.0.1:
  3494. dependencies:
  3495. call-bind: 1.0.7
  3496. for-each: 0.3.3
  3497. gopd: 1.0.1
  3498. has-proto: 1.0.3
  3499. is-typed-array: 1.1.13
  3500. typed-array-byte-offset@1.0.2:
  3501. dependencies:
  3502. available-typed-arrays: 1.0.7
  3503. call-bind: 1.0.7
  3504. for-each: 0.3.3
  3505. gopd: 1.0.1
  3506. has-proto: 1.0.3
  3507. is-typed-array: 1.1.13
  3508. typed-array-length@1.0.6:
  3509. dependencies:
  3510. call-bind: 1.0.7
  3511. for-each: 0.3.3
  3512. gopd: 1.0.1
  3513. has-proto: 1.0.3
  3514. is-typed-array: 1.1.13
  3515. possible-typed-array-names: 1.0.0
  3516. unbox-primitive@1.0.2:
  3517. dependencies:
  3518. call-bind: 1.0.7
  3519. has-bigints: 1.0.2
  3520. has-symbols: 1.0.3
  3521. which-boxed-primitive: 1.0.2
  3522. undici-types@6.19.8: {}
  3523. unicode-canonical-property-names-ecmascript@2.0.1: {}
  3524. unicode-match-property-ecmascript@2.0.0:
  3525. dependencies:
  3526. unicode-canonical-property-names-ecmascript: 2.0.1
  3527. unicode-property-aliases-ecmascript: 2.1.0
  3528. unicode-match-property-value-ecmascript@2.2.0: {}
  3529. unicode-property-aliases-ecmascript@2.1.0: {}
  3530. universalify@0.1.2: {}
  3531. update-browserslist-db@1.1.0(browserslist@4.24.0):
  3532. dependencies:
  3533. browserslist: 4.24.0
  3534. escalade: 3.2.0
  3535. picocolors: 1.1.0
  3536. web-streams-polyfill@3.3.3:
  3537. optional: true
  3538. which-boxed-primitive@1.0.2:
  3539. dependencies:
  3540. is-bigint: 1.0.4
  3541. is-boolean-object: 1.1.2
  3542. is-number-object: 1.0.7
  3543. is-string: 1.0.7
  3544. is-symbol: 1.0.4
  3545. which-typed-array@1.1.15:
  3546. dependencies:
  3547. available-typed-arrays: 1.0.7
  3548. call-bind: 1.0.7
  3549. for-each: 0.3.3
  3550. gopd: 1.0.1
  3551. has-tostringtag: 1.0.2
  3552. which@2.0.2:
  3553. dependencies:
  3554. isexe: 2.0.0
  3555. wrap-ansi@7.0.0:
  3556. dependencies:
  3557. ansi-styles: 4.3.0
  3558. string-width: 4.2.3
  3559. strip-ansi: 6.0.1
  3560. wrap-ansi@8.1.0:
  3561. dependencies:
  3562. ansi-styles: 6.2.1
  3563. string-width: 5.1.2
  3564. strip-ansi: 7.1.0
  3565. wrappy@1.0.2: {}
  3566. yallist@3.1.1: {}