pnpm-lock.yaml 141 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978
  1. lockfileVersion: '6.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .: {}
  7. packages/core:
  8. dependencies:
  9. copy-to-clipboard:
  10. specifier: ^3.3.3
  11. version: 3.3.3
  12. crypto-js:
  13. specifier: ^4.1.1
  14. version: 4.1.1
  15. dayjs:
  16. specifier: ^1.11.6
  17. version: 1.11.7
  18. file-saver:
  19. specifier: ^2.0.5
  20. version: 2.0.5
  21. jszip:
  22. specifier: ^3.10.1
  23. version: 3.10.1
  24. lodash:
  25. specifier: ^4.17.21
  26. version: 4.17.21
  27. nanoid:
  28. specifier: ^4.0.2
  29. version: 4.0.2
  30. open-color:
  31. specifier: ^1.9.1
  32. version: 1.9.1
  33. pdfjs-dist:
  34. specifier: ^3.3.122
  35. version: 3.5.141
  36. perfect-freehand:
  37. specifier: ^1.2.0
  38. version: 1.2.0
  39. points-on-curve:
  40. specifier: ^1.0.0
  41. version: 1.0.0
  42. print-js:
  43. specifier: ^1.6.0
  44. version: 1.6.0
  45. roughjs:
  46. specifier: ^4.5.2
  47. version: 4.5.2
  48. uuid:
  49. specifier: ^9.0.0
  50. version: 9.0.0
  51. uuidv4:
  52. specifier: ^6.2.13
  53. version: 6.2.13
  54. devDependencies:
  55. '@babel/core':
  56. specifier: ^7.19.6
  57. version: 7.21.4
  58. '@babel/plugin-transform-runtime':
  59. specifier: ^7.19.6
  60. version: 7.21.4(@babel/core@7.21.4)
  61. '@babel/preset-env':
  62. specifier: ^7.19.4
  63. version: 7.21.4(@babel/core@7.21.4)
  64. '@babel/runtime-corejs3':
  65. specifier: ^7.20.1
  66. version: 7.21.0
  67. '@rollup/plugin-babel':
  68. specifier: ^6.0.2
  69. version: 6.0.3(@babel/core@7.21.4)(rollup@3.20.2)
  70. '@rollup/plugin-commonjs':
  71. specifier: ^23.0.2
  72. version: 23.0.7(rollup@3.20.2)
  73. '@rollup/plugin-json':
  74. specifier: ^6.0.0
  75. version: 6.0.0(rollup@3.20.2)
  76. '@rollup/plugin-node-resolve':
  77. specifier: ^15.0.1
  78. version: 15.0.2(rollup@3.20.2)
  79. '@rollup/plugin-terser':
  80. specifier: ^0.4.4
  81. version: 0.4.4(rollup@3.20.2)
  82. '@typescript-eslint/parser':
  83. specifier: ^6.7.2
  84. version: 6.7.2(eslint@8.38.0)(typescript@5.2.2)
  85. cross-env:
  86. specifier: ^7.0.3
  87. version: 7.0.3
  88. ink-docstrap:
  89. specifier: ^1.3.2
  90. version: 1.3.2
  91. rollup:
  92. specifier: ^3.2.3
  93. version: 3.20.2
  94. rollup-plugin-node-builtins:
  95. specifier: ^2.1.2
  96. version: 2.1.2
  97. rollup-plugin-typescript2:
  98. specifier: ^0.35.0
  99. version: 0.35.0(rollup@3.20.2)(typescript@5.2.2)
  100. taffydb:
  101. specifier: ^2.7.3
  102. version: 2.7.3
  103. typescript:
  104. specifier: ^5.2.2
  105. version: 5.2.2
  106. packages/webviewer: {}
  107. packages:
  108. /@ampproject/remapping@2.2.1:
  109. resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
  110. engines: {node: '>=6.0.0'}
  111. dependencies:
  112. '@jridgewell/gen-mapping': 0.3.3
  113. '@jridgewell/trace-mapping': 0.3.18
  114. dev: true
  115. /@babel/code-frame@7.21.4:
  116. resolution: {integrity: sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==}
  117. engines: {node: '>=6.9.0'}
  118. dependencies:
  119. '@babel/highlight': 7.18.6
  120. dev: true
  121. /@babel/compat-data@7.21.4:
  122. resolution: {integrity: sha512-/DYyDpeCfaVinT40FPGdkkb+lYSKvsVuMjDAG7jPOWWiM1ibOaB9CXJAlc4d1QpP/U2q2P9jbrSlClKSErd55g==}
  123. engines: {node: '>=6.9.0'}
  124. dev: true
  125. /@babel/core@7.21.4:
  126. resolution: {integrity: sha512-qt/YV149Jman/6AfmlxJ04LMIu8bMoyl3RB91yTFrxQmgbrSvQMy7cI8Q62FHx1t8wJ8B5fu0UDoLwHAhUo1QA==}
  127. engines: {node: '>=6.9.0'}
  128. dependencies:
  129. '@ampproject/remapping': 2.2.1
  130. '@babel/code-frame': 7.21.4
  131. '@babel/generator': 7.21.4
  132. '@babel/helper-compilation-targets': 7.21.4(@babel/core@7.21.4)
  133. '@babel/helper-module-transforms': 7.21.2
  134. '@babel/helpers': 7.21.0
  135. '@babel/parser': 7.21.4
  136. '@babel/template': 7.20.7
  137. '@babel/traverse': 7.21.4
  138. '@babel/types': 7.21.4
  139. convert-source-map: 1.9.0
  140. debug: 4.3.4
  141. gensync: 1.0.0-beta.2
  142. json5: 2.2.3
  143. semver: 6.3.0
  144. transitivePeerDependencies:
  145. - supports-color
  146. dev: true
  147. /@babel/generator@7.21.4:
  148. resolution: {integrity: sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA==}
  149. engines: {node: '>=6.9.0'}
  150. dependencies:
  151. '@babel/types': 7.21.4
  152. '@jridgewell/gen-mapping': 0.3.3
  153. '@jridgewell/trace-mapping': 0.3.18
  154. jsesc: 2.5.2
  155. dev: true
  156. /@babel/helper-annotate-as-pure@7.18.6:
  157. resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
  158. engines: {node: '>=6.9.0'}
  159. dependencies:
  160. '@babel/types': 7.21.4
  161. dev: true
  162. /@babel/helper-builder-binary-assignment-operator-visitor@7.18.9:
  163. resolution: {integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==}
  164. engines: {node: '>=6.9.0'}
  165. dependencies:
  166. '@babel/helper-explode-assignable-expression': 7.18.6
  167. '@babel/types': 7.21.4
  168. dev: true
  169. /@babel/helper-compilation-targets@7.21.4(@babel/core@7.21.4):
  170. resolution: {integrity: sha512-Fa0tTuOXZ1iL8IeDFUWCzjZcn+sJGd9RZdH9esYVjEejGmzf+FFYQpMi/kZUk2kPy/q1H3/GPw7np8qar/stfg==}
  171. engines: {node: '>=6.9.0'}
  172. peerDependencies:
  173. '@babel/core': ^7.0.0
  174. dependencies:
  175. '@babel/compat-data': 7.21.4
  176. '@babel/core': 7.21.4
  177. '@babel/helper-validator-option': 7.21.0
  178. browserslist: 4.21.5
  179. lru-cache: 5.1.1
  180. semver: 6.3.0
  181. dev: true
  182. /@babel/helper-create-class-features-plugin@7.21.4(@babel/core@7.21.4):
  183. resolution: {integrity: sha512-46QrX2CQlaFRF4TkwfTt6nJD7IHq8539cCL7SDpqWSDeJKY1xylKKY5F/33mJhLZ3mFvKv2gGrVS6NkyF6qs+Q==}
  184. engines: {node: '>=6.9.0'}
  185. peerDependencies:
  186. '@babel/core': ^7.0.0
  187. dependencies:
  188. '@babel/core': 7.21.4
  189. '@babel/helper-annotate-as-pure': 7.18.6
  190. '@babel/helper-environment-visitor': 7.18.9
  191. '@babel/helper-function-name': 7.21.0
  192. '@babel/helper-member-expression-to-functions': 7.21.0
  193. '@babel/helper-optimise-call-expression': 7.18.6
  194. '@babel/helper-replace-supers': 7.20.7
  195. '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
  196. '@babel/helper-split-export-declaration': 7.18.6
  197. transitivePeerDependencies:
  198. - supports-color
  199. dev: true
  200. /@babel/helper-create-regexp-features-plugin@7.21.4(@babel/core@7.21.4):
  201. resolution: {integrity: sha512-M00OuhU+0GyZ5iBBN9czjugzWrEq2vDpf/zCYHxxf93ul/Q5rv+a5h+/+0WnI1AebHNVtl5bFV0qsJoH23DbfA==}
  202. engines: {node: '>=6.9.0'}
  203. peerDependencies:
  204. '@babel/core': ^7.0.0
  205. dependencies:
  206. '@babel/core': 7.21.4
  207. '@babel/helper-annotate-as-pure': 7.18.6
  208. regexpu-core: 5.3.2
  209. dev: true
  210. /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.21.4):
  211. resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
  212. peerDependencies:
  213. '@babel/core': ^7.4.0-0
  214. dependencies:
  215. '@babel/core': 7.21.4
  216. '@babel/helper-compilation-targets': 7.21.4(@babel/core@7.21.4)
  217. '@babel/helper-plugin-utils': 7.20.2
  218. debug: 4.3.4
  219. lodash.debounce: 4.0.8
  220. resolve: 1.22.2
  221. semver: 6.3.0
  222. transitivePeerDependencies:
  223. - supports-color
  224. dev: true
  225. /@babel/helper-environment-visitor@7.18.9:
  226. resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==}
  227. engines: {node: '>=6.9.0'}
  228. dev: true
  229. /@babel/helper-explode-assignable-expression@7.18.6:
  230. resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==}
  231. engines: {node: '>=6.9.0'}
  232. dependencies:
  233. '@babel/types': registry.npmmirror.com/@babel/types@7.21.4
  234. dev: true
  235. /@babel/helper-function-name@7.21.0:
  236. resolution: {integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==}
  237. engines: {node: '>=6.9.0'}
  238. dependencies:
  239. '@babel/template': 7.20.7
  240. '@babel/types': 7.21.4
  241. dev: true
  242. /@babel/helper-hoist-variables@7.18.6:
  243. resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
  244. engines: {node: '>=6.9.0'}
  245. dependencies:
  246. '@babel/types': 7.21.4
  247. dev: true
  248. /@babel/helper-member-expression-to-functions@7.21.0:
  249. resolution: {integrity: sha512-Muu8cdZwNN6mRRNG6lAYErJ5X3bRevgYR2O8wN0yn7jJSnGDu6eG59RfT29JHxGUovyfrh6Pj0XzmR7drNVL3Q==}
  250. engines: {node: '>=6.9.0'}
  251. dependencies:
  252. '@babel/types': registry.npmmirror.com/@babel/types@7.21.4
  253. dev: true
  254. /@babel/helper-module-imports@7.21.4:
  255. resolution: {integrity: sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==}
  256. engines: {node: '>=6.9.0'}
  257. dependencies:
  258. '@babel/types': 7.21.4
  259. dev: true
  260. /@babel/helper-module-transforms@7.21.2:
  261. resolution: {integrity: sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==}
  262. engines: {node: '>=6.9.0'}
  263. dependencies:
  264. '@babel/helper-environment-visitor': 7.18.9
  265. '@babel/helper-module-imports': 7.21.4
  266. '@babel/helper-simple-access': 7.20.2
  267. '@babel/helper-split-export-declaration': 7.18.6
  268. '@babel/helper-validator-identifier': 7.19.1
  269. '@babel/template': 7.20.7
  270. '@babel/traverse': 7.21.4
  271. '@babel/types': 7.21.4
  272. transitivePeerDependencies:
  273. - supports-color
  274. dev: true
  275. /@babel/helper-optimise-call-expression@7.18.6:
  276. resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
  277. engines: {node: '>=6.9.0'}
  278. dependencies:
  279. '@babel/types': 7.21.4
  280. dev: true
  281. /@babel/helper-plugin-utils@7.20.2:
  282. resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==}
  283. engines: {node: '>=6.9.0'}
  284. dev: true
  285. /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.21.4):
  286. resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
  287. engines: {node: '>=6.9.0'}
  288. peerDependencies:
  289. '@babel/core': ^7.0.0
  290. dependencies:
  291. '@babel/core': 7.21.4
  292. '@babel/helper-annotate-as-pure': 7.18.6
  293. '@babel/helper-environment-visitor': 7.18.9
  294. '@babel/helper-wrap-function': 7.20.5
  295. '@babel/types': 7.21.4
  296. transitivePeerDependencies:
  297. - supports-color
  298. dev: true
  299. /@babel/helper-replace-supers@7.20.7:
  300. resolution: {integrity: sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==}
  301. engines: {node: '>=6.9.0'}
  302. dependencies:
  303. '@babel/helper-environment-visitor': 7.18.9
  304. '@babel/helper-member-expression-to-functions': 7.21.0
  305. '@babel/helper-optimise-call-expression': 7.18.6
  306. '@babel/template': 7.20.7
  307. '@babel/traverse': 7.21.4
  308. '@babel/types': 7.21.4
  309. transitivePeerDependencies:
  310. - supports-color
  311. dev: true
  312. /@babel/helper-simple-access@7.20.2:
  313. resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==}
  314. engines: {node: '>=6.9.0'}
  315. dependencies:
  316. '@babel/types': 7.21.4
  317. dev: true
  318. /@babel/helper-skip-transparent-expression-wrappers@7.20.0:
  319. resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==}
  320. engines: {node: '>=6.9.0'}
  321. dependencies:
  322. '@babel/types': 7.21.4
  323. dev: true
  324. /@babel/helper-split-export-declaration@7.18.6:
  325. resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
  326. engines: {node: '>=6.9.0'}
  327. dependencies:
  328. '@babel/types': 7.21.4
  329. dev: true
  330. /@babel/helper-string-parser@7.19.4:
  331. resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==}
  332. engines: {node: '>=6.9.0'}
  333. dev: true
  334. /@babel/helper-validator-identifier@7.19.1:
  335. resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==}
  336. engines: {node: '>=6.9.0'}
  337. dev: true
  338. /@babel/helper-validator-option@7.21.0:
  339. resolution: {integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==}
  340. engines: {node: '>=6.9.0'}
  341. dev: true
  342. /@babel/helper-wrap-function@7.20.5:
  343. resolution: {integrity: sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==}
  344. engines: {node: '>=6.9.0'}
  345. dependencies:
  346. '@babel/helper-function-name': 7.21.0
  347. '@babel/template': 7.20.7
  348. '@babel/traverse': 7.21.4
  349. '@babel/types': registry.npmmirror.com/@babel/types@7.21.4
  350. transitivePeerDependencies:
  351. - supports-color
  352. dev: true
  353. /@babel/helpers@7.21.0:
  354. resolution: {integrity: sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==}
  355. engines: {node: '>=6.9.0'}
  356. dependencies:
  357. '@babel/template': 7.20.7
  358. '@babel/traverse': 7.21.4
  359. '@babel/types': 7.21.4
  360. transitivePeerDependencies:
  361. - supports-color
  362. dev: true
  363. /@babel/highlight@7.18.6:
  364. resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
  365. engines: {node: '>=6.9.0'}
  366. dependencies:
  367. '@babel/helper-validator-identifier': 7.19.1
  368. chalk: 2.4.2
  369. js-tokens: 4.0.0
  370. dev: true
  371. /@babel/parser@7.21.4:
  372. resolution: {integrity: sha512-alVJj7k7zIxqBZ7BTRhz0IqJFxW1VJbm6N8JbcYhQ186df9ZBPbZBmWSqAMXwHGsCJdYks7z/voa3ibiS5bCIw==}
  373. engines: {node: '>=6.0.0'}
  374. hasBin: true
  375. dependencies:
  376. '@babel/types': 7.21.4
  377. dev: true
  378. /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.21.4):
  379. resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
  380. engines: {node: '>=6.9.0'}
  381. peerDependencies:
  382. '@babel/core': ^7.0.0
  383. dependencies:
  384. '@babel/core': 7.21.4
  385. '@babel/helper-plugin-utils': 7.20.2
  386. dev: true
  387. /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7(@babel/core@7.21.4):
  388. resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==}
  389. engines: {node: '>=6.9.0'}
  390. peerDependencies:
  391. '@babel/core': ^7.13.0
  392. dependencies:
  393. '@babel/core': 7.21.4
  394. '@babel/helper-plugin-utils': 7.20.2
  395. '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
  396. '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.4)
  397. dev: true
  398. /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.21.4):
  399. resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
  400. engines: {node: '>=6.9.0'}
  401. peerDependencies:
  402. '@babel/core': ^7.0.0-0
  403. dependencies:
  404. '@babel/core': 7.21.4
  405. '@babel/helper-environment-visitor': 7.18.9
  406. '@babel/helper-plugin-utils': 7.20.2
  407. '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.21.4)
  408. '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.4)
  409. transitivePeerDependencies:
  410. - supports-color
  411. dev: true
  412. /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.21.4):
  413. resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
  414. engines: {node: '>=6.9.0'}
  415. peerDependencies:
  416. '@babel/core': ^7.0.0-0
  417. dependencies:
  418. '@babel/core': 7.21.4
  419. '@babel/helper-create-class-features-plugin': 7.21.4(@babel/core@7.21.4)
  420. '@babel/helper-plugin-utils': 7.20.2
  421. transitivePeerDependencies:
  422. - supports-color
  423. dev: true
  424. /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.21.4):
  425. resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==}
  426. engines: {node: '>=6.9.0'}
  427. peerDependencies:
  428. '@babel/core': ^7.12.0
  429. dependencies:
  430. '@babel/core': 7.21.4
  431. '@babel/helper-create-class-features-plugin': 7.21.4(@babel/core@7.21.4)
  432. '@babel/helper-plugin-utils': 7.20.2
  433. '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.21.4)
  434. transitivePeerDependencies:
  435. - supports-color
  436. dev: true
  437. /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.21.4):
  438. resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
  439. engines: {node: '>=6.9.0'}
  440. peerDependencies:
  441. '@babel/core': ^7.0.0-0
  442. dependencies:
  443. '@babel/core': 7.21.4
  444. '@babel/helper-plugin-utils': 7.20.2
  445. '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.4)
  446. dev: true
  447. /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.21.4):
  448. resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
  449. engines: {node: '>=6.9.0'}
  450. peerDependencies:
  451. '@babel/core': ^7.0.0-0
  452. dependencies:
  453. '@babel/core': 7.21.4
  454. '@babel/helper-plugin-utils': 7.20.2
  455. '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.21.4)
  456. dev: true
  457. /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.21.4):
  458. resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
  459. engines: {node: '>=6.9.0'}
  460. peerDependencies:
  461. '@babel/core': ^7.0.0-0
  462. dependencies:
  463. '@babel/core': 7.21.4
  464. '@babel/helper-plugin-utils': 7.20.2
  465. '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.4)
  466. dev: true
  467. /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.21.4):
  468. resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==}
  469. engines: {node: '>=6.9.0'}
  470. peerDependencies:
  471. '@babel/core': ^7.0.0-0
  472. dependencies:
  473. '@babel/core': 7.21.4
  474. '@babel/helper-plugin-utils': 7.20.2
  475. '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.4)
  476. dev: true
  477. /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.21.4):
  478. resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
  479. engines: {node: '>=6.9.0'}
  480. peerDependencies:
  481. '@babel/core': ^7.0.0-0
  482. dependencies:
  483. '@babel/core': 7.21.4
  484. '@babel/helper-plugin-utils': 7.20.2
  485. '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.4)
  486. dev: true
  487. /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.21.4):
  488. resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
  489. engines: {node: '>=6.9.0'}
  490. peerDependencies:
  491. '@babel/core': ^7.0.0-0
  492. dependencies:
  493. '@babel/core': 7.21.4
  494. '@babel/helper-plugin-utils': 7.20.2
  495. '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.4)
  496. dev: true
  497. /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.21.4):
  498. resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
  499. engines: {node: '>=6.9.0'}
  500. peerDependencies:
  501. '@babel/core': ^7.0.0-0
  502. dependencies:
  503. '@babel/compat-data': 7.21.4
  504. '@babel/core': 7.21.4
  505. '@babel/helper-compilation-targets': 7.21.4(@babel/core@7.21.4)
  506. '@babel/helper-plugin-utils': 7.20.2
  507. '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.4)
  508. '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.21.4)
  509. dev: true
  510. /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.21.4):
  511. resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
  512. engines: {node: '>=6.9.0'}
  513. peerDependencies:
  514. '@babel/core': ^7.0.0-0
  515. dependencies:
  516. '@babel/core': 7.21.4
  517. '@babel/helper-plugin-utils': 7.20.2
  518. '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.4)
  519. dev: true
  520. /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.21.4):
  521. resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
  522. engines: {node: '>=6.9.0'}
  523. peerDependencies:
  524. '@babel/core': ^7.0.0-0
  525. dependencies:
  526. '@babel/core': 7.21.4
  527. '@babel/helper-plugin-utils': 7.20.2
  528. '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
  529. '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.4)
  530. dev: true
  531. /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.21.4):
  532. resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
  533. engines: {node: '>=6.9.0'}
  534. peerDependencies:
  535. '@babel/core': ^7.0.0-0
  536. dependencies:
  537. '@babel/core': 7.21.4
  538. '@babel/helper-create-class-features-plugin': 7.21.4(@babel/core@7.21.4)
  539. '@babel/helper-plugin-utils': 7.20.2
  540. transitivePeerDependencies:
  541. - supports-color
  542. dev: true
  543. /@babel/plugin-proposal-private-property-in-object@7.21.0(@babel/core@7.21.4):
  544. resolution: {integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==}
  545. engines: {node: '>=6.9.0'}
  546. peerDependencies:
  547. '@babel/core': ^7.0.0-0
  548. dependencies:
  549. '@babel/core': 7.21.4
  550. '@babel/helper-annotate-as-pure': 7.18.6
  551. '@babel/helper-create-class-features-plugin': 7.21.4(@babel/core@7.21.4)
  552. '@babel/helper-plugin-utils': 7.20.2
  553. '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.21.4)
  554. transitivePeerDependencies:
  555. - supports-color
  556. dev: true
  557. /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.21.4):
  558. resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
  559. engines: {node: '>=4'}
  560. peerDependencies:
  561. '@babel/core': ^7.0.0-0
  562. dependencies:
  563. '@babel/core': 7.21.4
  564. '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.21.4)
  565. '@babel/helper-plugin-utils': 7.20.2
  566. dev: true
  567. /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.21.4):
  568. resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
  569. peerDependencies:
  570. '@babel/core': ^7.0.0-0
  571. dependencies:
  572. '@babel/core': 7.21.4
  573. '@babel/helper-plugin-utils': 7.20.2
  574. dev: true
  575. /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.21.4):
  576. resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
  577. peerDependencies:
  578. '@babel/core': ^7.0.0-0
  579. dependencies:
  580. '@babel/core': 7.21.4
  581. '@babel/helper-plugin-utils': 7.20.2
  582. dev: true
  583. /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.21.4):
  584. resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
  585. engines: {node: '>=6.9.0'}
  586. peerDependencies:
  587. '@babel/core': ^7.0.0-0
  588. dependencies:
  589. '@babel/core': 7.21.4
  590. '@babel/helper-plugin-utils': 7.20.2
  591. dev: true
  592. /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.21.4):
  593. resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
  594. peerDependencies:
  595. '@babel/core': ^7.0.0-0
  596. dependencies:
  597. '@babel/core': 7.21.4
  598. '@babel/helper-plugin-utils': 7.20.2
  599. dev: true
  600. /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.21.4):
  601. resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
  602. peerDependencies:
  603. '@babel/core': ^7.0.0-0
  604. dependencies:
  605. '@babel/core': 7.21.4
  606. '@babel/helper-plugin-utils': 7.20.2
  607. dev: true
  608. /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.21.4):
  609. resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==}
  610. engines: {node: '>=6.9.0'}
  611. peerDependencies:
  612. '@babel/core': ^7.0.0-0
  613. dependencies:
  614. '@babel/core': 7.21.4
  615. '@babel/helper-plugin-utils': 7.20.2
  616. dev: true
  617. /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.21.4):
  618. resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
  619. peerDependencies:
  620. '@babel/core': ^7.0.0-0
  621. dependencies:
  622. '@babel/core': 7.21.4
  623. '@babel/helper-plugin-utils': 7.20.2
  624. dev: true
  625. /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.21.4):
  626. resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
  627. peerDependencies:
  628. '@babel/core': ^7.0.0-0
  629. dependencies:
  630. '@babel/core': 7.21.4
  631. '@babel/helper-plugin-utils': 7.20.2
  632. dev: true
  633. /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.21.4):
  634. resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
  635. peerDependencies:
  636. '@babel/core': ^7.0.0-0
  637. dependencies:
  638. '@babel/core': 7.21.4
  639. '@babel/helper-plugin-utils': 7.20.2
  640. dev: true
  641. /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.21.4):
  642. resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
  643. peerDependencies:
  644. '@babel/core': ^7.0.0-0
  645. dependencies:
  646. '@babel/core': 7.21.4
  647. '@babel/helper-plugin-utils': 7.20.2
  648. dev: true
  649. /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.21.4):
  650. resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
  651. peerDependencies:
  652. '@babel/core': ^7.0.0-0
  653. dependencies:
  654. '@babel/core': 7.21.4
  655. '@babel/helper-plugin-utils': 7.20.2
  656. dev: true
  657. /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.21.4):
  658. resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
  659. peerDependencies:
  660. '@babel/core': ^7.0.0-0
  661. dependencies:
  662. '@babel/core': 7.21.4
  663. '@babel/helper-plugin-utils': 7.20.2
  664. dev: true
  665. /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.21.4):
  666. resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
  667. peerDependencies:
  668. '@babel/core': ^7.0.0-0
  669. dependencies:
  670. '@babel/core': 7.21.4
  671. '@babel/helper-plugin-utils': 7.20.2
  672. dev: true
  673. /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.21.4):
  674. resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
  675. engines: {node: '>=6.9.0'}
  676. peerDependencies:
  677. '@babel/core': ^7.0.0-0
  678. dependencies:
  679. '@babel/core': 7.21.4
  680. '@babel/helper-plugin-utils': 7.20.2
  681. dev: true
  682. /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.21.4):
  683. resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
  684. engines: {node: '>=6.9.0'}
  685. peerDependencies:
  686. '@babel/core': ^7.0.0-0
  687. dependencies:
  688. '@babel/core': 7.21.4
  689. '@babel/helper-plugin-utils': 7.20.2
  690. dev: true
  691. /@babel/plugin-transform-arrow-functions@7.20.7(@babel/core@7.21.4):
  692. resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==}
  693. engines: {node: '>=6.9.0'}
  694. peerDependencies:
  695. '@babel/core': ^7.0.0-0
  696. dependencies:
  697. '@babel/core': 7.21.4
  698. '@babel/helper-plugin-utils': 7.20.2
  699. dev: true
  700. /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.21.4):
  701. resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==}
  702. engines: {node: '>=6.9.0'}
  703. peerDependencies:
  704. '@babel/core': ^7.0.0-0
  705. dependencies:
  706. '@babel/core': 7.21.4
  707. '@babel/helper-module-imports': 7.21.4
  708. '@babel/helper-plugin-utils': 7.20.2
  709. '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.21.4)
  710. transitivePeerDependencies:
  711. - supports-color
  712. dev: true
  713. /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.21.4):
  714. resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
  715. engines: {node: '>=6.9.0'}
  716. peerDependencies:
  717. '@babel/core': ^7.0.0-0
  718. dependencies:
  719. '@babel/core': 7.21.4
  720. '@babel/helper-plugin-utils': 7.20.2
  721. dev: true
  722. /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.21.4):
  723. resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==}
  724. engines: {node: '>=6.9.0'}
  725. peerDependencies:
  726. '@babel/core': ^7.0.0-0
  727. dependencies:
  728. '@babel/core': 7.21.4
  729. '@babel/helper-plugin-utils': 7.20.2
  730. dev: true
  731. /@babel/plugin-transform-classes@7.21.0(@babel/core@7.21.4):
  732. resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==}
  733. engines: {node: '>=6.9.0'}
  734. peerDependencies:
  735. '@babel/core': ^7.0.0-0
  736. dependencies:
  737. '@babel/core': 7.21.4
  738. '@babel/helper-annotate-as-pure': 7.18.6
  739. '@babel/helper-compilation-targets': 7.21.4(@babel/core@7.21.4)
  740. '@babel/helper-environment-visitor': 7.18.9
  741. '@babel/helper-function-name': 7.21.0
  742. '@babel/helper-optimise-call-expression': 7.18.6
  743. '@babel/helper-plugin-utils': 7.20.2
  744. '@babel/helper-replace-supers': 7.20.7
  745. '@babel/helper-split-export-declaration': 7.18.6
  746. globals: 11.12.0
  747. transitivePeerDependencies:
  748. - supports-color
  749. dev: true
  750. /@babel/plugin-transform-computed-properties@7.20.7(@babel/core@7.21.4):
  751. resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==}
  752. engines: {node: '>=6.9.0'}
  753. peerDependencies:
  754. '@babel/core': ^7.0.0-0
  755. dependencies:
  756. '@babel/core': 7.21.4
  757. '@babel/helper-plugin-utils': 7.20.2
  758. '@babel/template': 7.20.7
  759. dev: true
  760. /@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.21.4):
  761. resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==}
  762. engines: {node: '>=6.9.0'}
  763. peerDependencies:
  764. '@babel/core': ^7.0.0-0
  765. dependencies:
  766. '@babel/core': 7.21.4
  767. '@babel/helper-plugin-utils': 7.20.2
  768. dev: true
  769. /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.21.4):
  770. resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
  771. engines: {node: '>=6.9.0'}
  772. peerDependencies:
  773. '@babel/core': ^7.0.0-0
  774. dependencies:
  775. '@babel/core': 7.21.4
  776. '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.21.4)
  777. '@babel/helper-plugin-utils': 7.20.2
  778. dev: true
  779. /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.21.4):
  780. resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
  781. engines: {node: '>=6.9.0'}
  782. peerDependencies:
  783. '@babel/core': ^7.0.0-0
  784. dependencies:
  785. '@babel/core': 7.21.4
  786. '@babel/helper-plugin-utils': 7.20.2
  787. dev: true
  788. /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.21.4):
  789. resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
  790. engines: {node: '>=6.9.0'}
  791. peerDependencies:
  792. '@babel/core': ^7.0.0-0
  793. dependencies:
  794. '@babel/core': 7.21.4
  795. '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
  796. '@babel/helper-plugin-utils': 7.20.2
  797. dev: true
  798. /@babel/plugin-transform-for-of@7.21.0(@babel/core@7.21.4):
  799. resolution: {integrity: sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==}
  800. engines: {node: '>=6.9.0'}
  801. peerDependencies:
  802. '@babel/core': ^7.0.0-0
  803. dependencies:
  804. '@babel/core': 7.21.4
  805. '@babel/helper-plugin-utils': 7.20.2
  806. dev: true
  807. /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.21.4):
  808. resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
  809. engines: {node: '>=6.9.0'}
  810. peerDependencies:
  811. '@babel/core': ^7.0.0-0
  812. dependencies:
  813. '@babel/core': 7.21.4
  814. '@babel/helper-compilation-targets': 7.21.4(@babel/core@7.21.4)
  815. '@babel/helper-function-name': 7.21.0
  816. '@babel/helper-plugin-utils': 7.20.2
  817. dev: true
  818. /@babel/plugin-transform-literals@7.18.9(@babel/core@7.21.4):
  819. resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
  820. engines: {node: '>=6.9.0'}
  821. peerDependencies:
  822. '@babel/core': ^7.0.0-0
  823. dependencies:
  824. '@babel/core': 7.21.4
  825. '@babel/helper-plugin-utils': 7.20.2
  826. dev: true
  827. /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.21.4):
  828. resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
  829. engines: {node: '>=6.9.0'}
  830. peerDependencies:
  831. '@babel/core': ^7.0.0-0
  832. dependencies:
  833. '@babel/core': 7.21.4
  834. '@babel/helper-plugin-utils': 7.20.2
  835. dev: true
  836. /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.21.4):
  837. resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==}
  838. engines: {node: '>=6.9.0'}
  839. peerDependencies:
  840. '@babel/core': ^7.0.0-0
  841. dependencies:
  842. '@babel/core': 7.21.4
  843. '@babel/helper-module-transforms': 7.21.2
  844. '@babel/helper-plugin-utils': 7.20.2
  845. transitivePeerDependencies:
  846. - supports-color
  847. dev: true
  848. /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.21.4):
  849. resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==}
  850. engines: {node: '>=6.9.0'}
  851. peerDependencies:
  852. '@babel/core': ^7.0.0-0
  853. dependencies:
  854. '@babel/core': 7.21.4
  855. '@babel/helper-module-transforms': 7.21.2
  856. '@babel/helper-plugin-utils': 7.20.2
  857. '@babel/helper-simple-access': 7.20.2
  858. transitivePeerDependencies:
  859. - supports-color
  860. dev: true
  861. /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.21.4):
  862. resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==}
  863. engines: {node: '>=6.9.0'}
  864. peerDependencies:
  865. '@babel/core': ^7.0.0-0
  866. dependencies:
  867. '@babel/core': 7.21.4
  868. '@babel/helper-hoist-variables': 7.18.6
  869. '@babel/helper-module-transforms': 7.21.2
  870. '@babel/helper-plugin-utils': 7.20.2
  871. '@babel/helper-validator-identifier': 7.19.1
  872. transitivePeerDependencies:
  873. - supports-color
  874. dev: true
  875. /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.21.4):
  876. resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
  877. engines: {node: '>=6.9.0'}
  878. peerDependencies:
  879. '@babel/core': ^7.0.0-0
  880. dependencies:
  881. '@babel/core': 7.21.4
  882. '@babel/helper-module-transforms': 7.21.2
  883. '@babel/helper-plugin-utils': 7.20.2
  884. transitivePeerDependencies:
  885. - supports-color
  886. dev: true
  887. /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.21.4):
  888. resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==}
  889. engines: {node: '>=6.9.0'}
  890. peerDependencies:
  891. '@babel/core': ^7.0.0
  892. dependencies:
  893. '@babel/core': 7.21.4
  894. '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.21.4)
  895. '@babel/helper-plugin-utils': 7.20.2
  896. dev: true
  897. /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.21.4):
  898. resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
  899. engines: {node: '>=6.9.0'}
  900. peerDependencies:
  901. '@babel/core': ^7.0.0-0
  902. dependencies:
  903. '@babel/core': 7.21.4
  904. '@babel/helper-plugin-utils': 7.20.2
  905. dev: true
  906. /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.21.4):
  907. resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
  908. engines: {node: '>=6.9.0'}
  909. peerDependencies:
  910. '@babel/core': ^7.0.0-0
  911. dependencies:
  912. '@babel/core': 7.21.4
  913. '@babel/helper-plugin-utils': 7.20.2
  914. '@babel/helper-replace-supers': 7.20.7
  915. transitivePeerDependencies:
  916. - supports-color
  917. dev: true
  918. /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.21.4):
  919. resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==}
  920. engines: {node: '>=6.9.0'}
  921. peerDependencies:
  922. '@babel/core': ^7.0.0-0
  923. dependencies:
  924. '@babel/core': 7.21.4
  925. '@babel/helper-plugin-utils': 7.20.2
  926. dev: true
  927. /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.21.4):
  928. resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
  929. engines: {node: '>=6.9.0'}
  930. peerDependencies:
  931. '@babel/core': ^7.0.0-0
  932. dependencies:
  933. '@babel/core': 7.21.4
  934. '@babel/helper-plugin-utils': 7.20.2
  935. dev: true
  936. /@babel/plugin-transform-regenerator@7.20.5(@babel/core@7.21.4):
  937. resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==}
  938. engines: {node: '>=6.9.0'}
  939. peerDependencies:
  940. '@babel/core': ^7.0.0-0
  941. dependencies:
  942. '@babel/core': 7.21.4
  943. '@babel/helper-plugin-utils': 7.20.2
  944. regenerator-transform: 0.15.1
  945. dev: true
  946. /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.21.4):
  947. resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
  948. engines: {node: '>=6.9.0'}
  949. peerDependencies:
  950. '@babel/core': ^7.0.0-0
  951. dependencies:
  952. '@babel/core': 7.21.4
  953. '@babel/helper-plugin-utils': 7.20.2
  954. dev: true
  955. /@babel/plugin-transform-runtime@7.21.4(@babel/core@7.21.4):
  956. resolution: {integrity: sha512-1J4dhrw1h1PqnNNpzwxQ2UBymJUF8KuPjAAnlLwZcGhHAIqUigFW7cdK6GHoB64ubY4qXQNYknoUeks4Wz7CUA==}
  957. engines: {node: '>=6.9.0'}
  958. peerDependencies:
  959. '@babel/core': ^7.0.0-0
  960. dependencies:
  961. '@babel/core': 7.21.4
  962. '@babel/helper-module-imports': 7.21.4
  963. '@babel/helper-plugin-utils': 7.20.2
  964. babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.4)
  965. babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.4)
  966. babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.4)
  967. semver: 6.3.0
  968. transitivePeerDependencies:
  969. - supports-color
  970. dev: true
  971. /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.21.4):
  972. resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
  973. engines: {node: '>=6.9.0'}
  974. peerDependencies:
  975. '@babel/core': ^7.0.0-0
  976. dependencies:
  977. '@babel/core': 7.21.4
  978. '@babel/helper-plugin-utils': 7.20.2
  979. dev: true
  980. /@babel/plugin-transform-spread@7.20.7(@babel/core@7.21.4):
  981. resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==}
  982. engines: {node: '>=6.9.0'}
  983. peerDependencies:
  984. '@babel/core': ^7.0.0-0
  985. dependencies:
  986. '@babel/core': 7.21.4
  987. '@babel/helper-plugin-utils': 7.20.2
  988. '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
  989. dev: true
  990. /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.21.4):
  991. resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
  992. engines: {node: '>=6.9.0'}
  993. peerDependencies:
  994. '@babel/core': ^7.0.0-0
  995. dependencies:
  996. '@babel/core': 7.21.4
  997. '@babel/helper-plugin-utils': 7.20.2
  998. dev: true
  999. /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.21.4):
  1000. resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
  1001. engines: {node: '>=6.9.0'}
  1002. peerDependencies:
  1003. '@babel/core': ^7.0.0-0
  1004. dependencies:
  1005. '@babel/core': 7.21.4
  1006. '@babel/helper-plugin-utils': 7.20.2
  1007. dev: true
  1008. /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.21.4):
  1009. resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
  1010. engines: {node: '>=6.9.0'}
  1011. peerDependencies:
  1012. '@babel/core': ^7.0.0-0
  1013. dependencies:
  1014. '@babel/core': 7.21.4
  1015. '@babel/helper-plugin-utils': 7.20.2
  1016. dev: true
  1017. /@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.21.4):
  1018. resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==}
  1019. engines: {node: '>=6.9.0'}
  1020. peerDependencies:
  1021. '@babel/core': ^7.0.0-0
  1022. dependencies:
  1023. '@babel/core': 7.21.4
  1024. '@babel/helper-plugin-utils': 7.20.2
  1025. dev: true
  1026. /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.21.4):
  1027. resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
  1028. engines: {node: '>=6.9.0'}
  1029. peerDependencies:
  1030. '@babel/core': ^7.0.0-0
  1031. dependencies:
  1032. '@babel/core': 7.21.4
  1033. '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.21.4)
  1034. '@babel/helper-plugin-utils': 7.20.2
  1035. dev: true
  1036. /@babel/preset-env@7.21.4(@babel/core@7.21.4):
  1037. resolution: {integrity: sha512-2W57zHs2yDLm6GD5ZpvNn71lZ0B/iypSdIeq25OurDKji6AdzV07qp4s3n1/x5BqtiGaTrPN3nerlSCaC5qNTw==}
  1038. engines: {node: '>=6.9.0'}
  1039. peerDependencies:
  1040. '@babel/core': ^7.0.0-0
  1041. dependencies:
  1042. '@babel/compat-data': 7.21.4
  1043. '@babel/core': 7.21.4
  1044. '@babel/helper-compilation-targets': 7.21.4(@babel/core@7.21.4)
  1045. '@babel/helper-plugin-utils': 7.20.2
  1046. '@babel/helper-validator-option': 7.21.0
  1047. '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.21.4)
  1048. '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.21.4)
  1049. '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.21.4)
  1050. '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.4)
  1051. '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.21.4)
  1052. '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.21.4)
  1053. '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.21.4)
  1054. '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.21.4)
  1055. '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.21.4)
  1056. '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.21.4)
  1057. '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.21.4)
  1058. '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.21.4)
  1059. '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.21.4)
  1060. '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.4)
  1061. '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.21.4)
  1062. '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.21.4)
  1063. '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.4)
  1064. '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.4)
  1065. '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.21.4)
  1066. '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.21.4)
  1067. '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.4)
  1068. '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.21.4)
  1069. '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.21.4)
  1070. '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.4)
  1071. '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.4)
  1072. '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.4)
  1073. '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.4)
  1074. '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.4)
  1075. '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.4)
  1076. '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.4)
  1077. '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.21.4)
  1078. '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.21.4)
  1079. '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.21.4)
  1080. '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.21.4)
  1081. '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.21.4)
  1082. '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.21.4)
  1083. '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.21.4)
  1084. '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.21.4)
  1085. '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.21.4)
  1086. '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.21.4)
  1087. '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.21.4)
  1088. '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.21.4)
  1089. '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.21.4)
  1090. '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.21.4)
  1091. '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.21.4)
  1092. '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.21.4)
  1093. '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.21.4)
  1094. '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.21.4)
  1095. '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.21.4)
  1096. '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.21.4)
  1097. '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.21.4)
  1098. '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.21.4)
  1099. '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.21.4)
  1100. '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.21.4)
  1101. '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.21.4)
  1102. '@babel/plugin-transform-regenerator': 7.20.5(@babel/core@7.21.4)
  1103. '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.21.4)
  1104. '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.21.4)
  1105. '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.21.4)
  1106. '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.21.4)
  1107. '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.21.4)
  1108. '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.21.4)
  1109. '@babel/plugin-transform-unicode-escapes': 7.18.10(@babel/core@7.21.4)
  1110. '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.21.4)
  1111. '@babel/preset-modules': 0.1.5(@babel/core@7.21.4)
  1112. '@babel/types': 7.21.4
  1113. babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.4)
  1114. babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.4)
  1115. babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.4)
  1116. core-js-compat: 3.30.0
  1117. semver: 6.3.0
  1118. transitivePeerDependencies:
  1119. - supports-color
  1120. dev: true
  1121. /@babel/preset-modules@0.1.5(@babel/core@7.21.4):
  1122. resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
  1123. peerDependencies:
  1124. '@babel/core': ^7.0.0-0
  1125. dependencies:
  1126. '@babel/core': 7.21.4
  1127. '@babel/helper-plugin-utils': 7.20.2
  1128. '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.4)
  1129. '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.21.4)
  1130. '@babel/types': 7.21.4
  1131. esutils: 2.0.3
  1132. dev: true
  1133. /@babel/regjsgen@0.8.0:
  1134. resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
  1135. dev: true
  1136. /@babel/runtime-corejs3@7.21.0:
  1137. resolution: {integrity: sha512-TDD4UJzos3JJtM+tHX+w2Uc+KWj7GV+VKKFdMVd2Rx8sdA19hcc3P3AHFYd5LVOw+pYuSd5lICC3gm52B6Rwxw==}
  1138. engines: {node: '>=6.9.0'}
  1139. dependencies:
  1140. core-js-pure: 3.30.0
  1141. regenerator-runtime: 0.13.11
  1142. dev: true
  1143. /@babel/runtime@7.21.0:
  1144. resolution: {integrity: sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==}
  1145. engines: {node: '>=6.9.0'}
  1146. dependencies:
  1147. regenerator-runtime: 0.13.11
  1148. dev: true
  1149. /@babel/template@7.20.7:
  1150. resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==}
  1151. engines: {node: '>=6.9.0'}
  1152. dependencies:
  1153. '@babel/code-frame': 7.21.4
  1154. '@babel/parser': 7.21.4
  1155. '@babel/types': 7.21.4
  1156. dev: true
  1157. /@babel/traverse@7.21.4:
  1158. resolution: {integrity: sha512-eyKrRHKdyZxqDm+fV1iqL9UAHMoIg0nDaGqfIOd8rKH17m5snv7Gn4qgjBoFfLz9APvjFU/ICT00NVCv1Epp8Q==}
  1159. engines: {node: '>=6.9.0'}
  1160. dependencies:
  1161. '@babel/code-frame': 7.21.4
  1162. '@babel/generator': 7.21.4
  1163. '@babel/helper-environment-visitor': 7.18.9
  1164. '@babel/helper-function-name': 7.21.0
  1165. '@babel/helper-hoist-variables': 7.18.6
  1166. '@babel/helper-split-export-declaration': 7.18.6
  1167. '@babel/parser': 7.21.4
  1168. '@babel/types': 7.21.4
  1169. debug: 4.3.4
  1170. globals: 11.12.0
  1171. transitivePeerDependencies:
  1172. - supports-color
  1173. dev: true
  1174. /@babel/types@7.21.4:
  1175. resolution: {integrity: sha512-rU2oY501qDxE8Pyo7i/Orqma4ziCOrby0/9mvbDUGEfvZjb279Nk9k19e2fiCxHbRRpY2ZyrgW1eq22mvmOIzA==}
  1176. engines: {node: '>=6.9.0'}
  1177. dependencies:
  1178. '@babel/helper-string-parser': 7.19.4
  1179. '@babel/helper-validator-identifier': 7.19.1
  1180. to-fast-properties: 2.0.0
  1181. dev: true
  1182. /@eslint-community/eslint-utils@4.4.0(eslint@8.38.0):
  1183. resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
  1184. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  1185. peerDependencies:
  1186. eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
  1187. dependencies:
  1188. eslint: 8.38.0
  1189. eslint-visitor-keys: 3.4.3
  1190. dev: true
  1191. /@eslint-community/regexpp@4.5.0:
  1192. resolution: {integrity: sha512-vITaYzIcNmjn5tF5uxcZ/ft7/RXGrMUIS9HalWckEOF6ESiwXKoMzAQf2UW0aVd6rnOeExTJVd5hmWXucBKGXQ==}
  1193. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  1194. dev: true
  1195. /@eslint/eslintrc@2.0.2:
  1196. resolution: {integrity: sha512-3W4f5tDUra+pA+FzgugqL2pRimUTDJWKr7BINqOpkZrC0uYI0NIc0/JFgBROCU07HR6GieA5m3/rsPIhDmCXTQ==}
  1197. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  1198. dependencies:
  1199. ajv: 6.12.6
  1200. debug: 4.3.4
  1201. espree: 9.5.1
  1202. globals: 13.20.0
  1203. ignore: 5.2.4
  1204. import-fresh: 3.3.0
  1205. js-yaml: 4.1.0
  1206. minimatch: 3.1.2
  1207. strip-json-comments: 3.1.1
  1208. transitivePeerDependencies:
  1209. - supports-color
  1210. dev: true
  1211. /@eslint/js@8.38.0:
  1212. resolution: {integrity: sha512-IoD2MfUnOV58ghIHCiil01PcohxjbYR/qCxsoC+xNgUwh1EY8jOOrYmu3d3a71+tJJ23uscEV4X2HJWMsPJu4g==}
  1213. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  1214. dev: true
  1215. /@humanwhocodes/config-array@0.11.8:
  1216. resolution: {integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==}
  1217. engines: {node: '>=10.10.0'}
  1218. dependencies:
  1219. '@humanwhocodes/object-schema': 1.2.1
  1220. debug: 4.3.4
  1221. minimatch: 3.1.2
  1222. transitivePeerDependencies:
  1223. - supports-color
  1224. dev: true
  1225. /@humanwhocodes/module-importer@1.0.1:
  1226. resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
  1227. engines: {node: '>=12.22'}
  1228. dev: true
  1229. /@humanwhocodes/object-schema@1.2.1:
  1230. resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
  1231. dev: true
  1232. /@jridgewell/gen-mapping@0.3.3:
  1233. resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==}
  1234. engines: {node: '>=6.0.0'}
  1235. dependencies:
  1236. '@jridgewell/set-array': 1.1.2
  1237. '@jridgewell/sourcemap-codec': 1.4.15
  1238. '@jridgewell/trace-mapping': 0.3.18
  1239. dev: true
  1240. /@jridgewell/resolve-uri@3.1.0:
  1241. resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
  1242. engines: {node: '>=6.0.0'}
  1243. dev: true
  1244. /@jridgewell/set-array@1.1.2:
  1245. resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
  1246. engines: {node: '>=6.0.0'}
  1247. dev: true
  1248. /@jridgewell/source-map@0.3.5:
  1249. resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==}
  1250. dependencies:
  1251. '@jridgewell/gen-mapping': 0.3.3
  1252. '@jridgewell/trace-mapping': 0.3.18
  1253. dev: true
  1254. /@jridgewell/sourcemap-codec@1.4.14:
  1255. resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
  1256. dev: true
  1257. /@jridgewell/sourcemap-codec@1.4.15:
  1258. resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
  1259. dev: true
  1260. /@jridgewell/trace-mapping@0.3.18:
  1261. resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==}
  1262. dependencies:
  1263. '@jridgewell/resolve-uri': 3.1.0
  1264. '@jridgewell/sourcemap-codec': 1.4.14
  1265. dev: true
  1266. /@mapbox/node-pre-gyp@1.0.10:
  1267. resolution: {integrity: sha512-4ySo4CjzStuprMwk35H5pPbkymjv1SF3jGLj6rAHp/xT/RF7TL7bd9CTm1xDY49K2qF7jmR/g7k+SkLETP6opA==}
  1268. hasBin: true
  1269. requiresBuild: true
  1270. dependencies:
  1271. detect-libc: 2.0.1
  1272. https-proxy-agent: 5.0.1
  1273. make-dir: 3.1.0
  1274. node-fetch: 2.6.9
  1275. nopt: 5.0.0
  1276. npmlog: 5.0.1
  1277. rimraf: 3.0.2
  1278. semver: 7.4.0
  1279. tar: 6.1.13
  1280. transitivePeerDependencies:
  1281. - encoding
  1282. - supports-color
  1283. dev: false
  1284. optional: true
  1285. /@nodelib/fs.scandir@2.1.5:
  1286. resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
  1287. engines: {node: '>= 8'}
  1288. dependencies:
  1289. '@nodelib/fs.stat': 2.0.5
  1290. run-parallel: 1.2.0
  1291. dev: true
  1292. /@nodelib/fs.stat@2.0.5:
  1293. resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
  1294. engines: {node: '>= 8'}
  1295. dev: true
  1296. /@nodelib/fs.walk@1.2.8:
  1297. resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
  1298. engines: {node: '>= 8'}
  1299. dependencies:
  1300. '@nodelib/fs.scandir': 2.1.5
  1301. fastq: 1.15.0
  1302. dev: true
  1303. /@rollup/plugin-babel@6.0.3(@babel/core@7.21.4)(rollup@3.20.2):
  1304. resolution: {integrity: sha512-fKImZKppa1A/gX73eg4JGo+8kQr/q1HBQaCGKECZ0v4YBBv3lFqi14+7xyApECzvkLTHCifx+7ntcrvtBIRcpg==}
  1305. engines: {node: '>=14.0.0'}
  1306. peerDependencies:
  1307. '@babel/core': ^7.0.0
  1308. '@types/babel__core': ^7.1.9
  1309. rollup: ^1.20.0||^2.0.0||^3.0.0
  1310. peerDependenciesMeta:
  1311. '@types/babel__core':
  1312. optional: true
  1313. rollup:
  1314. optional: true
  1315. dependencies:
  1316. '@babel/core': 7.21.4
  1317. '@babel/helper-module-imports': 7.21.4
  1318. '@rollup/pluginutils': 5.0.2(rollup@3.20.2)
  1319. rollup: 3.20.2
  1320. dev: true
  1321. /@rollup/plugin-commonjs@23.0.7(rollup@3.20.2):
  1322. resolution: {integrity: sha512-hsSD5Qzyuat/swzrExGG5l7EuIlPhwTsT7KwKbSCQzIcJWjRxiimi/0tyMYY2bByitNb3i1p+6JWEDGa0NvT0Q==}
  1323. engines: {node: '>=14.0.0'}
  1324. peerDependencies:
  1325. rollup: ^2.68.0||^3.0.0
  1326. peerDependenciesMeta:
  1327. rollup:
  1328. optional: true
  1329. dependencies:
  1330. '@rollup/pluginutils': 5.0.2(rollup@3.20.2)
  1331. commondir: 1.0.1
  1332. estree-walker: 2.0.2
  1333. glob: 8.1.0
  1334. is-reference: 1.2.1
  1335. magic-string: 0.27.0
  1336. rollup: 3.20.2
  1337. dev: true
  1338. /@rollup/plugin-json@6.0.0(rollup@3.20.2):
  1339. resolution: {integrity: sha512-i/4C5Jrdr1XUarRhVu27EEwjt4GObltD7c+MkCIpO2QIbojw8MUs+CCTqOphQi3Qtg1FLmYt+l+6YeoIf51J7w==}
  1340. engines: {node: '>=14.0.0'}
  1341. peerDependencies:
  1342. rollup: ^1.20.0||^2.0.0||^3.0.0
  1343. peerDependenciesMeta:
  1344. rollup:
  1345. optional: true
  1346. dependencies:
  1347. '@rollup/pluginutils': 5.0.2(rollup@3.20.2)
  1348. rollup: 3.20.2
  1349. dev: true
  1350. /@rollup/plugin-node-resolve@15.0.2(rollup@3.20.2):
  1351. resolution: {integrity: sha512-Y35fRGUjC3FaurG722uhUuG8YHOJRJQbI6/CkbRkdPotSpDj9NtIN85z1zrcyDcCQIW4qp5mgG72U+gJ0TAFEg==}
  1352. engines: {node: '>=14.0.0'}
  1353. peerDependencies:
  1354. rollup: ^2.78.0||^3.0.0
  1355. peerDependenciesMeta:
  1356. rollup:
  1357. optional: true
  1358. dependencies:
  1359. '@rollup/pluginutils': 5.0.2(rollup@3.20.2)
  1360. '@types/resolve': 1.20.2
  1361. deepmerge: 4.3.1
  1362. is-builtin-module: 3.2.1
  1363. is-module: 1.0.0
  1364. resolve: 1.22.2
  1365. rollup: 3.20.2
  1366. dev: true
  1367. /@rollup/plugin-terser@0.4.4(rollup@3.20.2):
  1368. resolution: {integrity: sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==}
  1369. engines: {node: '>=14.0.0'}
  1370. peerDependencies:
  1371. rollup: ^2.0.0||^3.0.0||^4.0.0
  1372. peerDependenciesMeta:
  1373. rollup:
  1374. optional: true
  1375. dependencies:
  1376. rollup: 3.20.2
  1377. serialize-javascript: 6.0.1
  1378. smob: 1.4.1
  1379. terser: 5.22.0
  1380. dev: true
  1381. /@rollup/pluginutils@4.2.1:
  1382. resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
  1383. engines: {node: '>= 8.0.0'}
  1384. dependencies:
  1385. estree-walker: 2.0.2
  1386. picomatch: 2.3.1
  1387. dev: true
  1388. /@rollup/pluginutils@5.0.2(rollup@3.20.2):
  1389. resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==}
  1390. engines: {node: '>=14.0.0'}
  1391. peerDependencies:
  1392. rollup: ^1.20.0||^2.0.0||^3.0.0
  1393. peerDependenciesMeta:
  1394. rollup:
  1395. optional: true
  1396. dependencies:
  1397. '@types/estree': 1.0.0
  1398. estree-walker: 2.0.2
  1399. picomatch: 2.3.1
  1400. rollup: 3.20.2
  1401. dev: true
  1402. /@types/estree@1.0.0:
  1403. resolution: {integrity: sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==}
  1404. dev: true
  1405. /@types/resolve@1.20.2:
  1406. resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==}
  1407. dev: true
  1408. /@types/uuid@8.3.4:
  1409. resolution: {integrity: sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw==}
  1410. dev: false
  1411. /@typescript-eslint/parser@6.7.2(eslint@8.38.0)(typescript@5.2.2):
  1412. resolution: {integrity: sha512-KA3E4ox0ws+SPyxQf9iSI25R6b4Ne78ORhNHeVKrPQnoYsb9UhieoiRoJgrzgEeKGOXhcY1i8YtOeCHHTDa6Fw==}
  1413. engines: {node: ^16.0.0 || >=18.0.0}
  1414. peerDependencies:
  1415. eslint: ^7.0.0 || ^8.0.0
  1416. typescript: '*'
  1417. peerDependenciesMeta:
  1418. typescript:
  1419. optional: true
  1420. dependencies:
  1421. '@typescript-eslint/scope-manager': 6.7.2
  1422. '@typescript-eslint/types': 6.7.2
  1423. '@typescript-eslint/typescript-estree': 6.7.2(typescript@5.2.2)
  1424. '@typescript-eslint/visitor-keys': 6.7.2
  1425. debug: 4.3.4
  1426. eslint: 8.38.0
  1427. typescript: 5.2.2
  1428. transitivePeerDependencies:
  1429. - supports-color
  1430. dev: true
  1431. /@typescript-eslint/scope-manager@6.7.2:
  1432. resolution: {integrity: sha512-bgi6plgyZjEqapr7u2mhxGR6E8WCzKNUFWNh6fkpVe9+yzRZeYtDTbsIBzKbcxI+r1qVWt6VIoMSNZ4r2A+6Yw==}
  1433. engines: {node: ^16.0.0 || >=18.0.0}
  1434. dependencies:
  1435. '@typescript-eslint/types': 6.7.2
  1436. '@typescript-eslint/visitor-keys': 6.7.2
  1437. dev: true
  1438. /@typescript-eslint/types@6.7.2:
  1439. resolution: {integrity: sha512-flJYwMYgnUNDAN9/GAI3l8+wTmvTYdv64fcH8aoJK76Y+1FCZ08RtI5zDerM/FYT5DMkAc+19E4aLmd5KqdFyg==}
  1440. engines: {node: ^16.0.0 || >=18.0.0}
  1441. dev: true
  1442. /@typescript-eslint/typescript-estree@6.7.2(typescript@5.2.2):
  1443. resolution: {integrity: sha512-kiJKVMLkoSciGyFU0TOY0fRxnp9qq1AzVOHNeN1+B9erKFCJ4Z8WdjAkKQPP+b1pWStGFqezMLltxO+308dJTQ==}
  1444. engines: {node: ^16.0.0 || >=18.0.0}
  1445. peerDependencies:
  1446. typescript: '*'
  1447. peerDependenciesMeta:
  1448. typescript:
  1449. optional: true
  1450. dependencies:
  1451. '@typescript-eslint/types': 6.7.2
  1452. '@typescript-eslint/visitor-keys': 6.7.2
  1453. debug: 4.3.4
  1454. globby: 11.1.0
  1455. is-glob: 4.0.3
  1456. semver: 7.5.4
  1457. ts-api-utils: 1.0.3(typescript@5.2.2)
  1458. typescript: 5.2.2
  1459. transitivePeerDependencies:
  1460. - supports-color
  1461. dev: true
  1462. /@typescript-eslint/visitor-keys@6.7.2:
  1463. resolution: {integrity: sha512-uVw9VIMFBUTz8rIeaUT3fFe8xIUx8r4ywAdlQv1ifH+6acn/XF8Y6rwJ7XNmkNMDrTW+7+vxFFPIF40nJCVsMQ==}
  1464. engines: {node: ^16.0.0 || >=18.0.0}
  1465. dependencies:
  1466. '@typescript-eslint/types': 6.7.2
  1467. eslint-visitor-keys: 3.4.3
  1468. dev: true
  1469. /abbrev@1.1.1:
  1470. resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==}
  1471. requiresBuild: true
  1472. dev: false
  1473. optional: true
  1474. /abstract-leveldown@0.12.4:
  1475. resolution: {integrity: sha512-TOod9d5RDExo6STLMGa+04HGkl+TlMfbDnTyN93/ETJ9DpQ0DaYLqcMZlbXvdc4W3vVo1Qrl+WhSp8zvDsJ+jA==}
  1476. dependencies:
  1477. xtend: 3.0.0
  1478. dev: true
  1479. /acorn-jsx@5.3.2(acorn@8.8.2):
  1480. resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
  1481. peerDependencies:
  1482. acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
  1483. dependencies:
  1484. acorn: 8.8.2
  1485. dev: true
  1486. /acorn@8.8.2:
  1487. resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==}
  1488. engines: {node: '>=0.4.0'}
  1489. hasBin: true
  1490. dev: true
  1491. /agent-base@6.0.2:
  1492. resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
  1493. engines: {node: '>= 6.0.0'}
  1494. requiresBuild: true
  1495. dependencies:
  1496. debug: 4.3.4
  1497. transitivePeerDependencies:
  1498. - supports-color
  1499. dev: false
  1500. optional: true
  1501. /ajv@6.12.6:
  1502. resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
  1503. dependencies:
  1504. fast-deep-equal: 3.1.3
  1505. fast-json-stable-stringify: 2.1.0
  1506. json-schema-traverse: 0.4.1
  1507. uri-js: 4.4.1
  1508. dev: true
  1509. /ansi-regex@5.0.1:
  1510. resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
  1511. engines: {node: '>=8'}
  1512. requiresBuild: true
  1513. /ansi-styles@3.2.1:
  1514. resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
  1515. engines: {node: '>=4'}
  1516. dependencies:
  1517. color-convert: 1.9.3
  1518. dev: true
  1519. /ansi-styles@4.3.0:
  1520. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  1521. engines: {node: '>=8'}
  1522. dependencies:
  1523. color-convert: 2.0.1
  1524. dev: true
  1525. /aproba@2.0.0:
  1526. resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==}
  1527. requiresBuild: true
  1528. dev: false
  1529. optional: true
  1530. /are-we-there-yet@2.0.0:
  1531. resolution: {integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==}
  1532. engines: {node: '>=10'}
  1533. requiresBuild: true
  1534. dependencies:
  1535. delegates: 1.0.0
  1536. readable-stream: 3.6.2
  1537. dev: false
  1538. optional: true
  1539. /argparse@2.0.1:
  1540. resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
  1541. dev: true
  1542. /array-union@2.1.0:
  1543. resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
  1544. engines: {node: '>=8'}
  1545. dev: true
  1546. /asn1.js@5.4.1:
  1547. resolution: {integrity: sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==}
  1548. dependencies:
  1549. bn.js: 4.12.0
  1550. inherits: 2.0.4
  1551. minimalistic-assert: 1.0.1
  1552. safer-buffer: 2.1.2
  1553. dev: true
  1554. /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.21.4):
  1555. resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
  1556. peerDependencies:
  1557. '@babel/core': ^7.0.0-0
  1558. dependencies:
  1559. '@babel/compat-data': 7.21.4
  1560. '@babel/core': 7.21.4
  1561. '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.4)
  1562. semver: 6.3.0
  1563. transitivePeerDependencies:
  1564. - supports-color
  1565. dev: true
  1566. /babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.21.4):
  1567. resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==}
  1568. peerDependencies:
  1569. '@babel/core': ^7.0.0-0
  1570. dependencies:
  1571. '@babel/core': 7.21.4
  1572. '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.4)
  1573. core-js-compat: 3.30.0
  1574. transitivePeerDependencies:
  1575. - supports-color
  1576. dev: true
  1577. /babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.21.4):
  1578. resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==}
  1579. peerDependencies:
  1580. '@babel/core': ^7.0.0-0
  1581. dependencies:
  1582. '@babel/core': 7.21.4
  1583. '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.4)
  1584. transitivePeerDependencies:
  1585. - supports-color
  1586. dev: true
  1587. /balanced-match@1.0.2:
  1588. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  1589. /bl@0.8.2:
  1590. resolution: {integrity: sha512-pfqikmByp+lifZCS0p6j6KreV6kNU6Apzpm2nKOk+94cZb/jvle55+JxWiByUQ0Wo/+XnDXEy5MxxKMb6r0VIw==}
  1591. dependencies:
  1592. readable-stream: 1.0.34
  1593. dev: true
  1594. /bn.js@4.12.0:
  1595. resolution: {integrity: sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==}
  1596. dev: true
  1597. /bn.js@5.2.1:
  1598. resolution: {integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==}
  1599. dev: true
  1600. /brace-expansion@1.1.11:
  1601. resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
  1602. requiresBuild: true
  1603. dependencies:
  1604. balanced-match: 1.0.2
  1605. concat-map: 0.0.1
  1606. /brace-expansion@2.0.1:
  1607. resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
  1608. dependencies:
  1609. balanced-match: 1.0.2
  1610. dev: true
  1611. /braces@3.0.2:
  1612. resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
  1613. engines: {node: '>=8'}
  1614. dependencies:
  1615. fill-range: 7.0.1
  1616. dev: true
  1617. /brorand@1.1.0:
  1618. resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==}
  1619. dev: true
  1620. /browserify-aes@1.2.0:
  1621. resolution: {integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==}
  1622. dependencies:
  1623. buffer-xor: 1.0.3
  1624. cipher-base: 1.0.4
  1625. create-hash: 1.2.0
  1626. evp_bytestokey: 1.0.3
  1627. inherits: 2.0.4
  1628. safe-buffer: 5.2.1
  1629. dev: true
  1630. /browserify-cipher@1.0.1:
  1631. resolution: {integrity: sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==}
  1632. dependencies:
  1633. browserify-aes: 1.2.0
  1634. browserify-des: 1.0.2
  1635. evp_bytestokey: 1.0.3
  1636. dev: true
  1637. /browserify-des@1.0.2:
  1638. resolution: {integrity: sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==}
  1639. dependencies:
  1640. cipher-base: 1.0.4
  1641. des.js: 1.0.1
  1642. inherits: 2.0.4
  1643. safe-buffer: 5.2.1
  1644. dev: true
  1645. /browserify-fs@1.0.0:
  1646. resolution: {integrity: sha512-8LqHRPuAEKvyTX34R6tsw4bO2ro6j9DmlYBhiYWHRM26Zv2cBw1fJOU0NeUQ0RkXkPn/PFBjhA0dm4AgaBurTg==}
  1647. dependencies:
  1648. level-filesystem: 1.2.0
  1649. level-js: 2.2.4
  1650. levelup: 0.18.6
  1651. dev: true
  1652. /browserify-rsa@4.1.0:
  1653. resolution: {integrity: sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==}
  1654. dependencies:
  1655. bn.js: 5.2.1
  1656. randombytes: 2.1.0
  1657. dev: true
  1658. /browserify-sign@4.2.1:
  1659. resolution: {integrity: sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==}
  1660. dependencies:
  1661. bn.js: 5.2.1
  1662. browserify-rsa: 4.1.0
  1663. create-hash: 1.2.0
  1664. create-hmac: 1.1.7
  1665. elliptic: 6.5.4
  1666. inherits: 2.0.4
  1667. parse-asn1: 5.1.6
  1668. readable-stream: 3.6.2
  1669. safe-buffer: 5.2.1
  1670. dev: true
  1671. /browserslist@4.21.5:
  1672. resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==}
  1673. engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
  1674. hasBin: true
  1675. dependencies:
  1676. caniuse-lite: 1.0.30001478
  1677. electron-to-chromium: 1.4.361
  1678. node-releases: 2.0.10
  1679. update-browserslist-db: 1.0.10(browserslist@4.21.5)
  1680. dev: true
  1681. /buffer-es6@4.9.3:
  1682. resolution: {integrity: sha512-Ibt+oXxhmeYJSsCkODPqNpPmyegefiD8rfutH1NYGhMZQhSp95Rz7haemgnJ6dxa6LT+JLLbtgOMORRluwKktw==}
  1683. dev: true
  1684. /buffer-from@1.1.2:
  1685. resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
  1686. dev: true
  1687. /buffer-xor@1.0.3:
  1688. resolution: {integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==}
  1689. dev: true
  1690. /builtin-modules@3.3.0:
  1691. resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==}
  1692. engines: {node: '>=6'}
  1693. dev: true
  1694. /callsites@3.1.0:
  1695. resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
  1696. engines: {node: '>=6'}
  1697. dev: true
  1698. /caniuse-lite@1.0.30001478:
  1699. resolution: {integrity: sha512-gMhDyXGItTHipJj2ApIvR+iVB5hd0KP3svMWWXDvZOmjzJJassGLMfxRkQCSYgGd2gtdL/ReeiyvMSFD1Ss6Mw==}
  1700. dev: true
  1701. /canvas@2.11.2:
  1702. resolution: {integrity: sha512-ItanGBMrmRV7Py2Z+Xhs7cT+FNt5K0vPL4p9EZ/UX/Mu7hFbkxSjKF2KVtPwX7UYWp7dRKnrTvReflgrItJbdw==}
  1703. engines: {node: '>=6'}
  1704. requiresBuild: true
  1705. dependencies:
  1706. '@mapbox/node-pre-gyp': 1.0.10
  1707. nan: 2.17.0
  1708. simple-get: 3.1.1
  1709. transitivePeerDependencies:
  1710. - encoding
  1711. - supports-color
  1712. dev: false
  1713. optional: true
  1714. /chalk@2.4.2:
  1715. resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
  1716. engines: {node: '>=4'}
  1717. dependencies:
  1718. ansi-styles: 3.2.1
  1719. escape-string-regexp: 1.0.5
  1720. supports-color: 5.5.0
  1721. dev: true
  1722. /chalk@4.1.2:
  1723. resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
  1724. engines: {node: '>=10'}
  1725. dependencies:
  1726. ansi-styles: 4.3.0
  1727. supports-color: 7.2.0
  1728. dev: true
  1729. /chownr@2.0.0:
  1730. resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
  1731. engines: {node: '>=10'}
  1732. requiresBuild: true
  1733. dev: false
  1734. optional: true
  1735. /cipher-base@1.0.4:
  1736. resolution: {integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==}
  1737. dependencies:
  1738. inherits: 2.0.4
  1739. safe-buffer: 5.2.1
  1740. dev: true
  1741. /clone@0.1.19:
  1742. resolution: {integrity: sha512-IO78I0y6JcSpEPHzK4obKdsL7E7oLdRVDVOLwr2Hkbjsb+Eoz0dxW6tef0WizoKu0gLC4oZSZuEF4U2K6w1WQw==}
  1743. dev: true
  1744. /color-convert@1.9.3:
  1745. resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
  1746. dependencies:
  1747. color-name: 1.1.3
  1748. dev: true
  1749. /color-convert@2.0.1:
  1750. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  1751. engines: {node: '>=7.0.0'}
  1752. dependencies:
  1753. color-name: 1.1.4
  1754. dev: true
  1755. /color-name@1.1.3:
  1756. resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
  1757. dev: true
  1758. /color-name@1.1.4:
  1759. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  1760. dev: true
  1761. /color-support@1.1.3:
  1762. resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==}
  1763. hasBin: true
  1764. requiresBuild: true
  1765. dev: false
  1766. optional: true
  1767. /commander@2.20.3:
  1768. resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
  1769. dev: true
  1770. /commondir@1.0.1:
  1771. resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
  1772. dev: true
  1773. /concat-map@0.0.1:
  1774. resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
  1775. requiresBuild: true
  1776. /concat-stream@1.6.2:
  1777. resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==}
  1778. engines: {'0': node >= 0.8}
  1779. dependencies:
  1780. buffer-from: 1.1.2
  1781. inherits: 2.0.4
  1782. readable-stream: 2.3.8
  1783. typedarray: 0.0.6
  1784. dev: true
  1785. /console-control-strings@1.1.0:
  1786. resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==}
  1787. requiresBuild: true
  1788. dev: false
  1789. optional: true
  1790. /convert-source-map@1.9.0:
  1791. resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
  1792. dev: true
  1793. /copy-to-clipboard@3.3.3:
  1794. resolution: {integrity: sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==}
  1795. dependencies:
  1796. toggle-selection: 1.0.6
  1797. dev: false
  1798. /core-js-compat@3.30.0:
  1799. resolution: {integrity: sha512-P5A2h/9mRYZFIAP+5Ab8ns6083IyVpSclU74UNvbGVQ8VM7n3n3/g2yF3AkKQ9NXz2O+ioxLbEWKnDtgsFamhg==}
  1800. dependencies:
  1801. browserslist: 4.21.5
  1802. dev: true
  1803. /core-js-pure@3.30.0:
  1804. resolution: {integrity: sha512-+2KbMFGeBU0ln/csoPqTe0i/yfHbrd2EUhNMObsGtXMKS/RTtlkYyi+/3twLcevbgNR0yM/r0Psa3TEoQRpFMQ==}
  1805. requiresBuild: true
  1806. dev: true
  1807. /core-util-is@1.0.3:
  1808. resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
  1809. /create-ecdh@4.0.4:
  1810. resolution: {integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==}
  1811. dependencies:
  1812. bn.js: 4.12.0
  1813. elliptic: 6.5.4
  1814. dev: true
  1815. /create-hash@1.2.0:
  1816. resolution: {integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==}
  1817. dependencies:
  1818. cipher-base: 1.0.4
  1819. inherits: 2.0.4
  1820. md5.js: 1.3.5
  1821. ripemd160: 2.0.2
  1822. sha.js: 2.4.11
  1823. dev: true
  1824. /create-hmac@1.1.7:
  1825. resolution: {integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==}
  1826. dependencies:
  1827. cipher-base: 1.0.4
  1828. create-hash: 1.2.0
  1829. inherits: 2.0.4
  1830. ripemd160: 2.0.2
  1831. safe-buffer: 5.2.1
  1832. sha.js: 2.4.11
  1833. dev: true
  1834. /cross-env@7.0.3:
  1835. resolution: {integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==}
  1836. engines: {node: '>=10.14', npm: '>=6', yarn: '>=1'}
  1837. hasBin: true
  1838. dependencies:
  1839. cross-spawn: 7.0.3
  1840. dev: true
  1841. /cross-spawn@7.0.3:
  1842. resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
  1843. engines: {node: '>= 8'}
  1844. dependencies:
  1845. path-key: 3.1.1
  1846. shebang-command: 2.0.0
  1847. which: 2.0.2
  1848. dev: true
  1849. /crypto-browserify@3.12.0:
  1850. resolution: {integrity: sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==}
  1851. dependencies:
  1852. browserify-cipher: 1.0.1
  1853. browserify-sign: 4.2.1
  1854. create-ecdh: 4.0.4
  1855. create-hash: 1.2.0
  1856. create-hmac: 1.1.7
  1857. diffie-hellman: 5.0.3
  1858. inherits: 2.0.4
  1859. pbkdf2: 3.1.2
  1860. public-encrypt: 4.0.3
  1861. randombytes: 2.1.0
  1862. randomfill: 1.0.4
  1863. dev: true
  1864. /crypto-js@4.1.1:
  1865. resolution: {integrity: sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw==}
  1866. dev: false
  1867. /dayjs@1.11.7:
  1868. resolution: {integrity: sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==}
  1869. dev: false
  1870. /debug@4.3.4:
  1871. resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
  1872. engines: {node: '>=6.0'}
  1873. peerDependencies:
  1874. supports-color: '*'
  1875. peerDependenciesMeta:
  1876. supports-color:
  1877. optional: true
  1878. dependencies:
  1879. ms: 2.1.2
  1880. /decompress-response@4.2.1:
  1881. resolution: {integrity: sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw==}
  1882. engines: {node: '>=8'}
  1883. requiresBuild: true
  1884. dependencies:
  1885. mimic-response: 2.1.0
  1886. dev: false
  1887. optional: true
  1888. /deep-is@0.1.4:
  1889. resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
  1890. dev: true
  1891. /deepmerge@4.3.1:
  1892. resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
  1893. engines: {node: '>=0.10.0'}
  1894. dev: true
  1895. /deferred-leveldown@0.2.0:
  1896. resolution: {integrity: sha512-+WCbb4+ez/SZ77Sdy1iadagFiVzMB89IKOBhglgnUkVxOxRWmmFsz8UDSNWh4Rhq+3wr/vMFlYj+rdEwWUDdng==}
  1897. dependencies:
  1898. abstract-leveldown: 0.12.4
  1899. dev: true
  1900. /delegates@1.0.0:
  1901. resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==}
  1902. requiresBuild: true
  1903. dev: false
  1904. optional: true
  1905. /des.js@1.0.1:
  1906. resolution: {integrity: sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==}
  1907. dependencies:
  1908. inherits: 2.0.4
  1909. minimalistic-assert: 1.0.1
  1910. dev: true
  1911. /detect-libc@2.0.1:
  1912. resolution: {integrity: sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==}
  1913. engines: {node: '>=8'}
  1914. requiresBuild: true
  1915. dev: false
  1916. optional: true
  1917. /diffie-hellman@5.0.3:
  1918. resolution: {integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==}
  1919. dependencies:
  1920. bn.js: 4.12.0
  1921. miller-rabin: 4.0.1
  1922. randombytes: 2.1.0
  1923. dev: true
  1924. /dir-glob@3.0.1:
  1925. resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
  1926. engines: {node: '>=8'}
  1927. dependencies:
  1928. path-type: 4.0.0
  1929. dev: true
  1930. /doctrine@3.0.0:
  1931. resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
  1932. engines: {node: '>=6.0.0'}
  1933. dependencies:
  1934. esutils: 2.0.3
  1935. dev: true
  1936. /dom-serializer@1.4.1:
  1937. resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
  1938. dependencies:
  1939. domelementtype: 2.3.0
  1940. domhandler: 4.3.1
  1941. entities: 2.1.0
  1942. dev: true
  1943. /domelementtype@2.3.0:
  1944. resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
  1945. dev: true
  1946. /domhandler@3.3.0:
  1947. resolution: {integrity: sha512-J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA==}
  1948. engines: {node: '>= 4'}
  1949. dependencies:
  1950. domelementtype: 2.3.0
  1951. dev: true
  1952. /domhandler@4.3.1:
  1953. resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
  1954. engines: {node: '>= 4'}
  1955. dependencies:
  1956. domelementtype: 2.3.0
  1957. dev: true
  1958. /domutils@2.8.0:
  1959. resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
  1960. dependencies:
  1961. dom-serializer: 1.4.1
  1962. domelementtype: 2.3.0
  1963. domhandler: 4.3.1
  1964. dev: true
  1965. /electron-to-chromium@1.4.361:
  1966. resolution: {integrity: sha512-VocVwjPp05HUXzf3xmL0boRn5b0iyqC7amtDww84Jb1QJNPBc7F69gJyEeXRoriLBC4a5pSyckdllrXAg4mmRA==}
  1967. dev: true
  1968. /elliptic@6.5.4:
  1969. resolution: {integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==}
  1970. dependencies:
  1971. bn.js: 4.12.0
  1972. brorand: 1.1.0
  1973. hash.js: 1.1.7
  1974. hmac-drbg: 1.0.1
  1975. inherits: 2.0.4
  1976. minimalistic-assert: 1.0.1
  1977. minimalistic-crypto-utils: 1.0.1
  1978. dev: true
  1979. /emoji-regex@8.0.0:
  1980. resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
  1981. requiresBuild: true
  1982. dev: false
  1983. optional: true
  1984. /entities@2.1.0:
  1985. resolution: {integrity: sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==}
  1986. dev: true
  1987. /errno@0.1.8:
  1988. resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==}
  1989. hasBin: true
  1990. dependencies:
  1991. prr: 1.0.1
  1992. dev: true
  1993. /escalade@3.1.1:
  1994. resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
  1995. engines: {node: '>=6'}
  1996. dev: true
  1997. /escape-string-regexp@1.0.5:
  1998. resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
  1999. engines: {node: '>=0.8.0'}
  2000. dev: true
  2001. /escape-string-regexp@4.0.0:
  2002. resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
  2003. engines: {node: '>=10'}
  2004. dev: true
  2005. /eslint-scope@7.1.1:
  2006. resolution: {integrity: sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==}
  2007. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  2008. dependencies:
  2009. esrecurse: 4.3.0
  2010. estraverse: 5.3.0
  2011. dev: true
  2012. /eslint-visitor-keys@3.4.3:
  2013. resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
  2014. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  2015. dev: true
  2016. /eslint@8.38.0:
  2017. resolution: {integrity: sha512-pIdsD2jwlUGf/U38Jv97t8lq6HpaU/G9NKbYmpWpZGw3LdTNhZLbJePqxOXGB5+JEKfOPU/XLxYxFh03nr1KTg==}
  2018. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  2019. hasBin: true
  2020. dependencies:
  2021. '@eslint-community/eslint-utils': 4.4.0(eslint@8.38.0)
  2022. '@eslint-community/regexpp': 4.5.0
  2023. '@eslint/eslintrc': 2.0.2
  2024. '@eslint/js': 8.38.0
  2025. '@humanwhocodes/config-array': 0.11.8
  2026. '@humanwhocodes/module-importer': 1.0.1
  2027. '@nodelib/fs.walk': 1.2.8
  2028. ajv: 6.12.6
  2029. chalk: 4.1.2
  2030. cross-spawn: 7.0.3
  2031. debug: 4.3.4
  2032. doctrine: 3.0.0
  2033. escape-string-regexp: 4.0.0
  2034. eslint-scope: 7.1.1
  2035. eslint-visitor-keys: 3.4.3
  2036. espree: 9.5.1
  2037. esquery: 1.5.0
  2038. esutils: 2.0.3
  2039. fast-deep-equal: 3.1.3
  2040. file-entry-cache: 6.0.1
  2041. find-up: 5.0.0
  2042. glob-parent: 6.0.2
  2043. globals: 13.20.0
  2044. grapheme-splitter: 1.0.4
  2045. ignore: 5.2.4
  2046. import-fresh: 3.3.0
  2047. imurmurhash: 0.1.4
  2048. is-glob: 4.0.3
  2049. is-path-inside: 3.0.3
  2050. js-sdsl: 4.4.0
  2051. js-yaml: 4.1.0
  2052. json-stable-stringify-without-jsonify: 1.0.1
  2053. levn: 0.4.1
  2054. lodash.merge: 4.6.2
  2055. minimatch: 3.1.2
  2056. natural-compare: 1.4.0
  2057. optionator: 0.9.1
  2058. strip-ansi: 6.0.1
  2059. strip-json-comments: 3.1.1
  2060. text-table: 0.2.0
  2061. transitivePeerDependencies:
  2062. - supports-color
  2063. dev: true
  2064. /espree@9.5.1:
  2065. resolution: {integrity: sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg==}
  2066. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  2067. dependencies:
  2068. acorn: 8.8.2
  2069. acorn-jsx: 5.3.2(acorn@8.8.2)
  2070. eslint-visitor-keys: 3.4.3
  2071. dev: true
  2072. /esquery@1.5.0:
  2073. resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
  2074. engines: {node: '>=0.10'}
  2075. dependencies:
  2076. estraverse: 5.3.0
  2077. dev: true
  2078. /esrecurse@4.3.0:
  2079. resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
  2080. engines: {node: '>=4.0'}
  2081. dependencies:
  2082. estraverse: 5.3.0
  2083. dev: true
  2084. /estraverse@5.3.0:
  2085. resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
  2086. engines: {node: '>=4.0'}
  2087. dev: true
  2088. /estree-walker@2.0.2:
  2089. resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
  2090. dev: true
  2091. /esutils@2.0.3:
  2092. resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
  2093. engines: {node: '>=0.10.0'}
  2094. dev: true
  2095. /evp_bytestokey@1.0.3:
  2096. resolution: {integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==}
  2097. dependencies:
  2098. md5.js: 1.3.5
  2099. safe-buffer: 5.2.1
  2100. dev: true
  2101. /fast-deep-equal@3.1.3:
  2102. resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
  2103. dev: true
  2104. /fast-glob@3.2.12:
  2105. resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==}
  2106. engines: {node: '>=8.6.0'}
  2107. dependencies:
  2108. '@nodelib/fs.stat': 2.0.5
  2109. '@nodelib/fs.walk': 1.2.8
  2110. glob-parent: 5.1.2
  2111. merge2: 1.4.1
  2112. micromatch: 4.0.5
  2113. dev: true
  2114. /fast-json-stable-stringify@2.1.0:
  2115. resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
  2116. dev: true
  2117. /fast-levenshtein@2.0.6:
  2118. resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
  2119. dev: true
  2120. /fastq@1.15.0:
  2121. resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==}
  2122. dependencies:
  2123. reusify: 1.0.4
  2124. dev: true
  2125. /file-entry-cache@6.0.1:
  2126. resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
  2127. engines: {node: ^10.12.0 || >=12.0.0}
  2128. dependencies:
  2129. flat-cache: 3.0.4
  2130. dev: true
  2131. /file-saver@2.0.5:
  2132. resolution: {integrity: sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA==}
  2133. dev: false
  2134. /fill-range@7.0.1:
  2135. resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
  2136. engines: {node: '>=8'}
  2137. dependencies:
  2138. to-regex-range: 5.0.1
  2139. dev: true
  2140. /find-cache-dir@3.3.2:
  2141. resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==}
  2142. engines: {node: '>=8'}
  2143. dependencies:
  2144. commondir: 1.0.1
  2145. make-dir: 3.1.0
  2146. pkg-dir: 4.2.0
  2147. dev: true
  2148. /find-up@4.1.0:
  2149. resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
  2150. engines: {node: '>=8'}
  2151. dependencies:
  2152. locate-path: 5.0.0
  2153. path-exists: 4.0.0
  2154. dev: true
  2155. /find-up@5.0.0:
  2156. resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
  2157. engines: {node: '>=10'}
  2158. dependencies:
  2159. locate-path: 6.0.0
  2160. path-exists: 4.0.0
  2161. dev: true
  2162. /flat-cache@3.0.4:
  2163. resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==}
  2164. engines: {node: ^10.12.0 || >=12.0.0}
  2165. dependencies:
  2166. flatted: 3.2.7
  2167. rimraf: 3.0.2
  2168. dev: true
  2169. /flatted@3.2.7:
  2170. resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
  2171. dev: true
  2172. /foreach@2.0.6:
  2173. resolution: {integrity: sha512-k6GAGDyqLe9JaebCsFCoudPPWfihKu8pylYXRlqP1J7ms39iPoTtk2fviNglIeQEwdh0bQeKJ01ZPyuyQvKzwg==}
  2174. dev: true
  2175. /fs-extra@10.1.0:
  2176. resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
  2177. engines: {node: '>=12'}
  2178. dependencies:
  2179. graceful-fs: 4.2.11
  2180. jsonfile: 6.1.0
  2181. universalify: 2.0.0
  2182. dev: true
  2183. /fs-minipass@2.1.0:
  2184. resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
  2185. engines: {node: '>= 8'}
  2186. requiresBuild: true
  2187. dependencies:
  2188. minipass: 3.3.6
  2189. dev: false
  2190. optional: true
  2191. /fs.realpath@1.0.0:
  2192. resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
  2193. /fsevents@2.3.2:
  2194. resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
  2195. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  2196. os: [darwin]
  2197. requiresBuild: true
  2198. dev: true
  2199. optional: true
  2200. /function-bind@1.1.1:
  2201. resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
  2202. dev: true
  2203. /fwd-stream@1.0.4:
  2204. resolution: {integrity: sha512-q2qaK2B38W07wfPSQDKMiKOD5Nzv2XyuvQlrmh1q0pxyHNanKHq8lwQ6n9zHucAwA5EbzRJKEgds2orn88rYTg==}
  2205. dependencies:
  2206. readable-stream: 1.0.34
  2207. dev: true
  2208. /gauge@3.0.2:
  2209. resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==}
  2210. engines: {node: '>=10'}
  2211. requiresBuild: true
  2212. dependencies:
  2213. aproba: 2.0.0
  2214. color-support: 1.1.3
  2215. console-control-strings: 1.1.0
  2216. has-unicode: 2.0.1
  2217. object-assign: 4.1.1
  2218. signal-exit: 3.0.7
  2219. string-width: 4.2.3
  2220. strip-ansi: 6.0.1
  2221. wide-align: 1.1.5
  2222. dev: false
  2223. optional: true
  2224. /gensync@1.0.0-beta.2:
  2225. resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
  2226. engines: {node: '>=6.9.0'}
  2227. dev: true
  2228. /glob-parent@5.1.2:
  2229. resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
  2230. engines: {node: '>= 6'}
  2231. dependencies:
  2232. is-glob: 4.0.3
  2233. dev: true
  2234. /glob-parent@6.0.2:
  2235. resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
  2236. engines: {node: '>=10.13.0'}
  2237. dependencies:
  2238. is-glob: 4.0.3
  2239. dev: true
  2240. /glob@7.2.3:
  2241. resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
  2242. requiresBuild: true
  2243. dependencies:
  2244. fs.realpath: 1.0.0
  2245. inflight: 1.0.6
  2246. inherits: 2.0.4
  2247. minimatch: 3.1.2
  2248. once: 1.4.0
  2249. path-is-absolute: 1.0.1
  2250. /glob@8.1.0:
  2251. resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==}
  2252. engines: {node: '>=12'}
  2253. dependencies:
  2254. fs.realpath: 1.0.0
  2255. inflight: 1.0.6
  2256. inherits: 2.0.4
  2257. minimatch: 5.1.6
  2258. once: 1.4.0
  2259. dev: true
  2260. /globals@11.12.0:
  2261. resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
  2262. engines: {node: '>=4'}
  2263. dev: true
  2264. /globals@13.20.0:
  2265. resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==}
  2266. engines: {node: '>=8'}
  2267. dependencies:
  2268. type-fest: 0.20.2
  2269. dev: true
  2270. /globby@11.1.0:
  2271. resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
  2272. engines: {node: '>=10'}
  2273. dependencies:
  2274. array-union: 2.1.0
  2275. dir-glob: 3.0.1
  2276. fast-glob: 3.2.12
  2277. ignore: 5.2.4
  2278. merge2: 1.4.1
  2279. slash: 3.0.0
  2280. dev: true
  2281. /graceful-fs@4.2.11:
  2282. resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
  2283. dev: true
  2284. /grapheme-splitter@1.0.4:
  2285. resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==}
  2286. dev: true
  2287. /has-flag@3.0.0:
  2288. resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
  2289. engines: {node: '>=4'}
  2290. dev: true
  2291. /has-flag@4.0.0:
  2292. resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
  2293. engines: {node: '>=8'}
  2294. dev: true
  2295. /has-unicode@2.0.1:
  2296. resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==}
  2297. requiresBuild: true
  2298. dev: false
  2299. optional: true
  2300. /has@1.0.3:
  2301. resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
  2302. engines: {node: '>= 0.4.0'}
  2303. dependencies:
  2304. function-bind: 1.1.1
  2305. dev: true
  2306. /hash-base@3.1.0:
  2307. resolution: {integrity: sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==}
  2308. engines: {node: '>=4'}
  2309. dependencies:
  2310. inherits: 2.0.4
  2311. readable-stream: 3.6.2
  2312. safe-buffer: 5.2.1
  2313. dev: true
  2314. /hash.js@1.1.7:
  2315. resolution: {integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==}
  2316. dependencies:
  2317. inherits: 2.0.4
  2318. minimalistic-assert: 1.0.1
  2319. dev: true
  2320. /hmac-drbg@1.0.1:
  2321. resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==}
  2322. dependencies:
  2323. hash.js: 1.1.7
  2324. minimalistic-assert: 1.0.1
  2325. minimalistic-crypto-utils: 1.0.1
  2326. dev: true
  2327. /htmlparser2@4.1.0:
  2328. resolution: {integrity: sha512-4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q==}
  2329. dependencies:
  2330. domelementtype: 2.3.0
  2331. domhandler: 3.3.0
  2332. domutils: 2.8.0
  2333. entities: 2.1.0
  2334. dev: true
  2335. /https-proxy-agent@5.0.1:
  2336. resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
  2337. engines: {node: '>= 6'}
  2338. requiresBuild: true
  2339. dependencies:
  2340. agent-base: 6.0.2
  2341. debug: 4.3.4
  2342. transitivePeerDependencies:
  2343. - supports-color
  2344. dev: false
  2345. optional: true
  2346. /idb-wrapper@1.7.2:
  2347. resolution: {integrity: sha512-zfNREywMuf0NzDo9mVsL0yegjsirJxHpKHvWcyRozIqQy89g0a3U+oBPOCN4cc0oCiOuYgZHimzaW/R46G1Mpg==}
  2348. dev: true
  2349. /ignore@5.2.4:
  2350. resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
  2351. engines: {node: '>= 4'}
  2352. dev: true
  2353. /immediate@3.0.6:
  2354. resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==}
  2355. dev: false
  2356. /import-fresh@3.3.0:
  2357. resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
  2358. engines: {node: '>=6'}
  2359. dependencies:
  2360. parent-module: 1.0.1
  2361. resolve-from: 4.0.0
  2362. dev: true
  2363. /imurmurhash@0.1.4:
  2364. resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
  2365. engines: {node: '>=0.8.19'}
  2366. dev: true
  2367. /indexof@0.0.1:
  2368. resolution: {integrity: sha512-i0G7hLJ1z0DE8dsqJa2rycj9dBmNKgXBvotXtZYXakU9oivfB9Uj2ZBC27qqef2U58/ZLwalxa1X/RDCdkHtVg==}
  2369. dev: true
  2370. /inflight@1.0.6:
  2371. resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
  2372. dependencies:
  2373. once: 1.4.0
  2374. wrappy: 1.0.2
  2375. /inherits@2.0.4:
  2376. resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
  2377. /ink-docstrap@1.3.2:
  2378. resolution: {integrity: sha512-STx5orGQU1gfrkoI/fMU7lX6CSP7LBGO10gXNgOZhwKhUqbtNjCkYSewJtNnLmWP1tAGN6oyEpG1HFPw5vpa5Q==}
  2379. dependencies:
  2380. moment: 2.30.1
  2381. sanitize-html: 1.27.5
  2382. dev: true
  2383. /is-builtin-module@3.2.1:
  2384. resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==}
  2385. engines: {node: '>=6'}
  2386. dependencies:
  2387. builtin-modules: 3.3.0
  2388. dev: true
  2389. /is-core-module@2.12.0:
  2390. resolution: {integrity: sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==}
  2391. dependencies:
  2392. has: 1.0.3
  2393. dev: true
  2394. /is-extglob@2.1.1:
  2395. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  2396. engines: {node: '>=0.10.0'}
  2397. dev: true
  2398. /is-fullwidth-code-point@3.0.0:
  2399. resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
  2400. engines: {node: '>=8'}
  2401. requiresBuild: true
  2402. dev: false
  2403. optional: true
  2404. /is-glob@4.0.3:
  2405. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  2406. engines: {node: '>=0.10.0'}
  2407. dependencies:
  2408. is-extglob: 2.1.1
  2409. dev: true
  2410. /is-module@1.0.0:
  2411. resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==}
  2412. dev: true
  2413. /is-number@7.0.0:
  2414. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  2415. engines: {node: '>=0.12.0'}
  2416. dev: true
  2417. /is-object@0.1.2:
  2418. resolution: {integrity: sha512-GkfZZlIZtpkFrqyAXPQSRBMsaHAw+CgoKe2HXAkjd/sfoI9+hS8PT4wg2rJxdQyUKr7N2vHJbg7/jQtE5l5vBQ==}
  2419. dev: true
  2420. /is-path-inside@3.0.3:
  2421. resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
  2422. engines: {node: '>=8'}
  2423. dev: true
  2424. /is-reference@1.2.1:
  2425. resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
  2426. dependencies:
  2427. '@types/estree': 1.0.0
  2428. dev: true
  2429. /is@0.2.7:
  2430. resolution: {integrity: sha512-ajQCouIvkcSnl2iRdK70Jug9mohIHVX9uKpoWnl115ov0R5mzBvRrXxrnHbsA+8AdwCwc/sfw7HXmd4I5EJBdQ==}
  2431. dev: true
  2432. /isarray@0.0.1:
  2433. resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==}
  2434. dev: true
  2435. /isarray@1.0.0:
  2436. resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
  2437. /isbuffer@0.0.0:
  2438. resolution: {integrity: sha512-xU+NoHp+YtKQkaM2HsQchYn0sltxMxew0HavMfHbjnucBoTSGbw745tL+Z7QBANleWM1eEQMenEpi174mIeS4g==}
  2439. dev: true
  2440. /isexe@2.0.0:
  2441. resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
  2442. dev: true
  2443. /js-sdsl@4.4.0:
  2444. resolution: {integrity: sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg==}
  2445. dev: true
  2446. /js-tokens@4.0.0:
  2447. resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
  2448. dev: true
  2449. /js-yaml@4.1.0:
  2450. resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
  2451. hasBin: true
  2452. dependencies:
  2453. argparse: 2.0.1
  2454. dev: true
  2455. /jsesc@0.5.0:
  2456. resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
  2457. hasBin: true
  2458. dev: true
  2459. /jsesc@2.5.2:
  2460. resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
  2461. engines: {node: '>=4'}
  2462. hasBin: true
  2463. dev: true
  2464. /json-schema-traverse@0.4.1:
  2465. resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
  2466. dev: true
  2467. /json-stable-stringify-without-jsonify@1.0.1:
  2468. resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
  2469. dev: true
  2470. /json5@2.2.3:
  2471. resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
  2472. engines: {node: '>=6'}
  2473. hasBin: true
  2474. dev: true
  2475. /jsonfile@6.1.0:
  2476. resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
  2477. dependencies:
  2478. universalify: 2.0.0
  2479. optionalDependencies:
  2480. graceful-fs: 4.2.11
  2481. dev: true
  2482. /jszip@3.10.1:
  2483. resolution: {integrity: sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==}
  2484. dependencies:
  2485. lie: 3.3.0
  2486. pako: 1.0.11
  2487. readable-stream: 2.3.8
  2488. setimmediate: 1.0.5
  2489. dev: false
  2490. /level-blobs@0.1.7:
  2491. resolution: {integrity: sha512-n0iYYCGozLd36m/Pzm206+brIgXP8mxPZazZ6ZvgKr+8YwOZ8/PPpYC5zMUu2qFygRN8RO6WC/HH3XWMW7RMVg==}
  2492. dependencies:
  2493. level-peek: 1.0.6
  2494. once: 1.4.0
  2495. readable-stream: 1.1.14
  2496. dev: true
  2497. /level-filesystem@1.2.0:
  2498. resolution: {integrity: sha512-PhXDuCNYpngpxp3jwMT9AYBMgOvB6zxj3DeuIywNKmZqFj2djj9XfT2XDVslfqmo0Ip79cAd3SBy3FsfOZPJ1g==}
  2499. dependencies:
  2500. concat-stream: 1.6.2
  2501. errno: 0.1.8
  2502. fwd-stream: 1.0.4
  2503. level-blobs: 0.1.7
  2504. level-peek: 1.0.6
  2505. level-sublevel: 5.2.3
  2506. octal: 1.0.0
  2507. once: 1.4.0
  2508. xtend: 2.2.0
  2509. dev: true
  2510. /level-fix-range@1.0.2:
  2511. resolution: {integrity: sha512-9llaVn6uqBiSlBP+wKiIEoBa01FwEISFgHSZiyec2S0KpyLUkGR4afW/FCZ/X8y+QJvzS0u4PGOlZDdh1/1avQ==}
  2512. dev: true
  2513. /level-fix-range@2.0.0:
  2514. resolution: {integrity: sha512-WrLfGWgwWbYPrHsYzJau+5+te89dUbENBg3/lsxOs4p2tYOhCHjbgXxBAj4DFqp3k/XBwitcRXoCh8RoCogASA==}
  2515. dependencies:
  2516. clone: 0.1.19
  2517. dev: true
  2518. /level-hooks@4.5.0:
  2519. resolution: {integrity: sha512-fxLNny/vL/G4PnkLhWsbHnEaRi+A/k8r5EH/M77npZwYL62RHi2fV0S824z3QdpAk6VTgisJwIRywzBHLK4ZVA==}
  2520. dependencies:
  2521. string-range: 1.2.2
  2522. dev: true
  2523. /level-js@2.2.4:
  2524. resolution: {integrity: sha512-lZtjt4ZwHE00UMC1vAb271p9qzg8vKlnDeXfIesH3zL0KxhHRDjClQLGLWhyR0nK4XARnd4wc/9eD1ffd4PshQ==}
  2525. dependencies:
  2526. abstract-leveldown: 0.12.4
  2527. idb-wrapper: 1.7.2
  2528. isbuffer: 0.0.0
  2529. ltgt: 2.2.1
  2530. typedarray-to-buffer: 1.0.4
  2531. xtend: 2.1.2
  2532. dev: true
  2533. /level-peek@1.0.6:
  2534. resolution: {integrity: sha512-TKEzH5TxROTjQxWMczt9sizVgnmJ4F3hotBI48xCTYvOKd/4gA/uY0XjKkhJFo6BMic8Tqjf6jFMLWeg3MAbqQ==}
  2535. dependencies:
  2536. level-fix-range: 1.0.2
  2537. dev: true
  2538. /level-sublevel@5.2.3:
  2539. resolution: {integrity: sha512-tO8jrFp+QZYrxx/Gnmjawuh1UBiifpvKNAcm4KCogesWr1Nm2+ckARitf+Oo7xg4OHqMW76eAqQ204BoIlscjA==}
  2540. dependencies:
  2541. level-fix-range: 2.0.0
  2542. level-hooks: 4.5.0
  2543. string-range: 1.2.2
  2544. xtend: 2.0.6
  2545. dev: true
  2546. /levelup@0.18.6:
  2547. resolution: {integrity: sha512-uB0auyRqIVXx+hrpIUtol4VAPhLRcnxcOsd2i2m6rbFIDarO5dnrupLOStYYpEcu8ZT087Z9HEuYw1wjr6RL6Q==}
  2548. dependencies:
  2549. bl: 0.8.2
  2550. deferred-leveldown: 0.2.0
  2551. errno: 0.1.8
  2552. prr: 0.0.0
  2553. readable-stream: 1.0.34
  2554. semver: 2.3.2
  2555. xtend: 3.0.0
  2556. dev: true
  2557. /levn@0.4.1:
  2558. resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
  2559. engines: {node: '>= 0.8.0'}
  2560. dependencies:
  2561. prelude-ls: 1.2.1
  2562. type-check: 0.4.0
  2563. dev: true
  2564. /lie@3.3.0:
  2565. resolution: {integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==}
  2566. dependencies:
  2567. immediate: 3.0.6
  2568. dev: false
  2569. /locate-path@5.0.0:
  2570. resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
  2571. engines: {node: '>=8'}
  2572. dependencies:
  2573. p-locate: 4.1.0
  2574. dev: true
  2575. /locate-path@6.0.0:
  2576. resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
  2577. engines: {node: '>=10'}
  2578. dependencies:
  2579. p-locate: 5.0.0
  2580. dev: true
  2581. /lodash.debounce@4.0.8:
  2582. resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
  2583. dev: true
  2584. /lodash.merge@4.6.2:
  2585. resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
  2586. dev: true
  2587. /lodash@4.17.21:
  2588. resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
  2589. /lru-cache@5.1.1:
  2590. resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
  2591. dependencies:
  2592. yallist: 3.1.1
  2593. dev: true
  2594. /lru-cache@6.0.0:
  2595. resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
  2596. engines: {node: '>=10'}
  2597. dependencies:
  2598. yallist: 4.0.0
  2599. /ltgt@2.2.1:
  2600. resolution: {integrity: sha512-AI2r85+4MquTw9ZYqabu4nMwy9Oftlfa/e/52t9IjtfG+mGBbTNdAoZ3RQKLHR6r0wQnwZnPIEh/Ya6XTWAKNA==}
  2601. dev: true
  2602. /magic-string@0.27.0:
  2603. resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==}
  2604. engines: {node: '>=12'}
  2605. dependencies:
  2606. '@jridgewell/sourcemap-codec': 1.4.15
  2607. dev: true
  2608. /make-dir@3.1.0:
  2609. resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
  2610. engines: {node: '>=8'}
  2611. dependencies:
  2612. semver: 6.3.0
  2613. /md5.js@1.3.5:
  2614. resolution: {integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==}
  2615. dependencies:
  2616. hash-base: 3.1.0
  2617. inherits: 2.0.4
  2618. safe-buffer: 5.2.1
  2619. dev: true
  2620. /merge2@1.4.1:
  2621. resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
  2622. engines: {node: '>= 8'}
  2623. dev: true
  2624. /micromatch@4.0.5:
  2625. resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
  2626. engines: {node: '>=8.6'}
  2627. dependencies:
  2628. braces: 3.0.2
  2629. picomatch: 2.3.1
  2630. dev: true
  2631. /miller-rabin@4.0.1:
  2632. resolution: {integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==}
  2633. hasBin: true
  2634. dependencies:
  2635. bn.js: 4.12.0
  2636. brorand: 1.1.0
  2637. dev: true
  2638. /mimic-response@2.1.0:
  2639. resolution: {integrity: sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA==}
  2640. engines: {node: '>=8'}
  2641. requiresBuild: true
  2642. dev: false
  2643. optional: true
  2644. /minimalistic-assert@1.0.1:
  2645. resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==}
  2646. dev: true
  2647. /minimalistic-crypto-utils@1.0.1:
  2648. resolution: {integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==}
  2649. dev: true
  2650. /minimatch@3.1.2:
  2651. resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
  2652. dependencies:
  2653. brace-expansion: 1.1.11
  2654. /minimatch@5.1.6:
  2655. resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
  2656. engines: {node: '>=10'}
  2657. dependencies:
  2658. brace-expansion: 2.0.1
  2659. dev: true
  2660. /minipass@3.3.6:
  2661. resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
  2662. engines: {node: '>=8'}
  2663. requiresBuild: true
  2664. dependencies:
  2665. yallist: 4.0.0
  2666. dev: false
  2667. optional: true
  2668. /minipass@4.2.8:
  2669. resolution: {integrity: sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==}
  2670. engines: {node: '>=8'}
  2671. requiresBuild: true
  2672. dev: false
  2673. optional: true
  2674. /minizlib@2.1.2:
  2675. resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
  2676. engines: {node: '>= 8'}
  2677. requiresBuild: true
  2678. dependencies:
  2679. minipass: 3.3.6
  2680. yallist: 4.0.0
  2681. dev: false
  2682. optional: true
  2683. /mkdirp@1.0.4:
  2684. resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
  2685. engines: {node: '>=10'}
  2686. hasBin: true
  2687. requiresBuild: true
  2688. dev: false
  2689. optional: true
  2690. /moment@2.30.1:
  2691. resolution: {integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==}
  2692. dev: true
  2693. /ms@2.1.2:
  2694. resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
  2695. /nan@2.17.0:
  2696. resolution: {integrity: sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==}
  2697. requiresBuild: true
  2698. dev: false
  2699. optional: true
  2700. /nanoid@4.0.2:
  2701. resolution: {integrity: sha512-7ZtY5KTCNheRGfEFxnedV5zFiORN1+Y1N6zvPTnHQd8ENUvfaDBeuJDZb2bN/oXwXxu3qkTXDzy57W5vAmDTBw==}
  2702. engines: {node: ^14 || ^16 || >=18}
  2703. hasBin: true
  2704. dev: false
  2705. /natural-compare@1.4.0:
  2706. resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
  2707. dev: true
  2708. /node-fetch@2.6.9:
  2709. resolution: {integrity: sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==}
  2710. engines: {node: 4.x || >=6.0.0}
  2711. requiresBuild: true
  2712. peerDependencies:
  2713. encoding: ^0.1.0
  2714. peerDependenciesMeta:
  2715. encoding:
  2716. optional: true
  2717. dependencies:
  2718. whatwg-url: 5.0.0
  2719. dev: false
  2720. optional: true
  2721. /node-releases@2.0.10:
  2722. resolution: {integrity: sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==}
  2723. dev: true
  2724. /nopt@5.0.0:
  2725. resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==}
  2726. engines: {node: '>=6'}
  2727. hasBin: true
  2728. requiresBuild: true
  2729. dependencies:
  2730. abbrev: 1.1.1
  2731. dev: false
  2732. optional: true
  2733. /npmlog@5.0.1:
  2734. resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==}
  2735. requiresBuild: true
  2736. dependencies:
  2737. are-we-there-yet: 2.0.0
  2738. console-control-strings: 1.1.0
  2739. gauge: 3.0.2
  2740. set-blocking: 2.0.0
  2741. dev: false
  2742. optional: true
  2743. /object-assign@4.1.1:
  2744. resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
  2745. engines: {node: '>=0.10.0'}
  2746. requiresBuild: true
  2747. dev: false
  2748. optional: true
  2749. /object-keys@0.2.0:
  2750. resolution: {integrity: sha512-XODjdR2pBh/1qrjPcbSeSgEtKbYo7LqYNq64/TPuCf7j9SfDD3i21yatKoIy39yIWNvVM59iutfQQpCv1RfFzA==}
  2751. deprecated: Please update to the latest object-keys
  2752. dependencies:
  2753. foreach: 2.0.6
  2754. indexof: 0.0.1
  2755. is: 0.2.7
  2756. dev: true
  2757. /object-keys@0.4.0:
  2758. resolution: {integrity: sha512-ncrLw+X55z7bkl5PnUvHwFK9FcGuFYo9gtjws2XtSzL+aZ8tm830P60WJ0dSmFVaSalWieW5MD7kEdnXda9yJw==}
  2759. dev: true
  2760. /octal@1.0.0:
  2761. resolution: {integrity: sha512-nnda7W8d+A3vEIY+UrDQzzboPf1vhs4JYVhff5CDkq9QNoZY7Xrxeo/htox37j9dZf7yNHevZzqtejWgy1vCqQ==}
  2762. dev: true
  2763. /once@1.4.0:
  2764. resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
  2765. dependencies:
  2766. wrappy: 1.0.2
  2767. /open-color@1.9.1:
  2768. resolution: {integrity: sha512-vCseG/EQ6/RcvxhUcGJiHViOgrtz4x0XbZepXvKik66TMGkvbmjeJrKFyBEx6daG5rNyyd14zYXhz0hZVwQFOw==}
  2769. dev: false
  2770. /optionator@0.9.1:
  2771. resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==}
  2772. engines: {node: '>= 0.8.0'}
  2773. dependencies:
  2774. deep-is: 0.1.4
  2775. fast-levenshtein: 2.0.6
  2776. levn: 0.4.1
  2777. prelude-ls: 1.2.1
  2778. type-check: 0.4.0
  2779. word-wrap: 1.2.3
  2780. dev: true
  2781. /p-limit@2.3.0:
  2782. resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
  2783. engines: {node: '>=6'}
  2784. dependencies:
  2785. p-try: 2.2.0
  2786. dev: true
  2787. /p-limit@3.1.0:
  2788. resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
  2789. engines: {node: '>=10'}
  2790. dependencies:
  2791. yocto-queue: 0.1.0
  2792. dev: true
  2793. /p-locate@4.1.0:
  2794. resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
  2795. engines: {node: '>=8'}
  2796. dependencies:
  2797. p-limit: 2.3.0
  2798. dev: true
  2799. /p-locate@5.0.0:
  2800. resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
  2801. engines: {node: '>=10'}
  2802. dependencies:
  2803. p-limit: 3.1.0
  2804. dev: true
  2805. /p-try@2.2.0:
  2806. resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
  2807. engines: {node: '>=6'}
  2808. dev: true
  2809. /pako@1.0.11:
  2810. resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==}
  2811. dev: false
  2812. /parent-module@1.0.1:
  2813. resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
  2814. engines: {node: '>=6'}
  2815. dependencies:
  2816. callsites: 3.1.0
  2817. dev: true
  2818. /parse-asn1@5.1.6:
  2819. resolution: {integrity: sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==}
  2820. dependencies:
  2821. asn1.js: 5.4.1
  2822. browserify-aes: 1.2.0
  2823. evp_bytestokey: 1.0.3
  2824. pbkdf2: 3.1.2
  2825. safe-buffer: 5.2.1
  2826. dev: true
  2827. /parse-srcset@1.0.2:
  2828. resolution: {integrity: sha512-/2qh0lav6CmI15FzA3i/2Bzk2zCgQhGMkvhOhKNcBVQ1ldgpbfiNTVslmooUmWJcADi1f1kIeynbDRVzNlfR6Q==}
  2829. dev: true
  2830. /path-data-parser@0.1.0:
  2831. resolution: {integrity: sha512-NOnmBpt5Y2RWbuv0LMzsayp3lVylAHLPUTut412ZA3l+C4uw4ZVkQbjShYCQ8TCpUMdPapr4YjUqLYD6v68j+w==}
  2832. dev: false
  2833. /path-exists@4.0.0:
  2834. resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
  2835. engines: {node: '>=8'}
  2836. dev: true
  2837. /path-is-absolute@1.0.1:
  2838. resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
  2839. engines: {node: '>=0.10.0'}
  2840. requiresBuild: true
  2841. /path-key@3.1.1:
  2842. resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
  2843. engines: {node: '>=8'}
  2844. dev: true
  2845. /path-parse@1.0.7:
  2846. resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
  2847. dev: true
  2848. /path-type@4.0.0:
  2849. resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
  2850. engines: {node: '>=8'}
  2851. dev: true
  2852. /path2d-polyfill@2.0.1:
  2853. resolution: {integrity: sha512-ad/3bsalbbWhmBo0D6FZ4RNMwsLsPpL6gnvhuSaU5Vm7b06Kr5ubSltQQ0T7YKsiJQO+g22zJ4dJKNTXIyOXtA==}
  2854. engines: {node: '>=8'}
  2855. dev: false
  2856. /pbkdf2@3.1.2:
  2857. resolution: {integrity: sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==}
  2858. engines: {node: '>=0.12'}
  2859. dependencies:
  2860. create-hash: 1.2.0
  2861. create-hmac: 1.1.7
  2862. ripemd160: 2.0.2
  2863. safe-buffer: 5.2.1
  2864. sha.js: 2.4.11
  2865. dev: true
  2866. /pdfjs-dist@3.5.141:
  2867. resolution: {integrity: sha512-lYIvyi5grtYOIatsfCifIKwxHeAJ8eHyP22DTdvY4pm0yWVSFQnMafpgCPSw8gaNRDDdcHnBVOkqMsyK8SRxZg==}
  2868. engines: {node: '>=16'}
  2869. dependencies:
  2870. path2d-polyfill: 2.0.1
  2871. web-streams-polyfill: 3.2.1
  2872. optionalDependencies:
  2873. canvas: 2.11.2
  2874. transitivePeerDependencies:
  2875. - encoding
  2876. - supports-color
  2877. dev: false
  2878. /perfect-freehand@1.2.0:
  2879. resolution: {integrity: sha512-h/0ikF1M3phW7CwpZ5MMvKnfpHficWoOEyr//KVNTxV4F6deRK1eYMtHyBKEAKFK0aXIEUK9oBvlF6PNXMDsAw==}
  2880. dev: false
  2881. /picocolors@0.2.1:
  2882. resolution: {integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==}
  2883. dev: true
  2884. /picomatch@2.3.1:
  2885. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  2886. engines: {node: '>=8.6'}
  2887. dev: true
  2888. /pkg-dir@4.2.0:
  2889. resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
  2890. engines: {node: '>=8'}
  2891. dependencies:
  2892. find-up: 4.1.0
  2893. dev: true
  2894. /points-on-curve@0.2.0:
  2895. resolution: {integrity: sha512-0mYKnYYe9ZcqMCWhUjItv/oHjvgEsfKvnUTg8sAtnHr3GVy7rGkXCb6d5cSyqrWqL4k81b9CPg3urd+T7aop3A==}
  2896. dev: false
  2897. /points-on-curve@1.0.0:
  2898. resolution: {integrity: sha512-5RXAghb/GI+u96jzhXzHflA2qYgC/mXNsjUGXSlcPSQZHNe+xJSo32L3Kb7XD7tPrmYZOTed5F/7UaWNjY6lwg==}
  2899. dev: false
  2900. /points-on-path@0.2.1:
  2901. resolution: {integrity: sha512-25ClnWWuw7JbWZcgqY/gJ4FQWadKxGWk+3kR/7kD0tCaDtPPMj7oHu2ToLaVhfpnHrZzYby2w6tUA0eOIuUg8g==}
  2902. dependencies:
  2903. path-data-parser: 0.1.0
  2904. points-on-curve: 0.2.0
  2905. dev: false
  2906. /postcss@7.0.39:
  2907. resolution: {integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==}
  2908. engines: {node: '>=6.0.0'}
  2909. dependencies:
  2910. picocolors: 0.2.1
  2911. source-map: 0.6.1
  2912. dev: true
  2913. /prelude-ls@1.2.1:
  2914. resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
  2915. engines: {node: '>= 0.8.0'}
  2916. dev: true
  2917. /print-js@1.6.0:
  2918. resolution: {integrity: sha512-BfnOIzSKbqGRtO4o0rnj/K3681BSd2QUrsIZy/+WdCIugjIswjmx3lDEZpXB2ruGf9d4b3YNINri81+J0FsBWg==}
  2919. dev: false
  2920. /process-es6@0.11.6:
  2921. resolution: {integrity: sha512-GYBRQtL4v3wgigq10Pv58jmTbFXlIiTbSfgnNqZLY0ldUPqy1rRxDI5fCjoCpnM6TqmHQI8ydzTBXW86OYc0gA==}
  2922. dev: true
  2923. /process-nextick-args@2.0.1:
  2924. resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
  2925. /prr@0.0.0:
  2926. resolution: {integrity: sha512-LmUECmrW7RVj6mDWKjTXfKug7TFGdiz9P18HMcO4RHL+RW7MCOGNvpj5j47Rnp6ne6r4fZ2VzyUWEpKbg+tsjQ==}
  2927. dev: true
  2928. /prr@1.0.1:
  2929. resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
  2930. dev: true
  2931. /public-encrypt@4.0.3:
  2932. resolution: {integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==}
  2933. dependencies:
  2934. bn.js: 4.12.0
  2935. browserify-rsa: 4.1.0
  2936. create-hash: 1.2.0
  2937. parse-asn1: 5.1.6
  2938. randombytes: 2.1.0
  2939. safe-buffer: 5.2.1
  2940. dev: true
  2941. /punycode@2.3.0:
  2942. resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==}
  2943. engines: {node: '>=6'}
  2944. dev: true
  2945. /queue-microtask@1.2.3:
  2946. resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
  2947. dev: true
  2948. /randombytes@2.1.0:
  2949. resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
  2950. dependencies:
  2951. safe-buffer: 5.2.1
  2952. dev: true
  2953. /randomfill@1.0.4:
  2954. resolution: {integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==}
  2955. dependencies:
  2956. randombytes: 2.1.0
  2957. safe-buffer: 5.2.1
  2958. dev: true
  2959. /readable-stream@1.0.34:
  2960. resolution: {integrity: sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==}
  2961. dependencies:
  2962. core-util-is: 1.0.3
  2963. inherits: 2.0.4
  2964. isarray: 0.0.1
  2965. string_decoder: 0.10.31
  2966. dev: true
  2967. /readable-stream@1.1.14:
  2968. resolution: {integrity: sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==}
  2969. dependencies:
  2970. core-util-is: 1.0.3
  2971. inherits: 2.0.4
  2972. isarray: 0.0.1
  2973. string_decoder: 0.10.31
  2974. dev: true
  2975. /readable-stream@2.3.8:
  2976. resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
  2977. dependencies:
  2978. core-util-is: 1.0.3
  2979. inherits: 2.0.4
  2980. isarray: 1.0.0
  2981. process-nextick-args: 2.0.1
  2982. safe-buffer: 5.1.2
  2983. string_decoder: 1.1.1
  2984. util-deprecate: 1.0.2
  2985. /readable-stream@3.6.2:
  2986. resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
  2987. engines: {node: '>= 6'}
  2988. dependencies:
  2989. inherits: 2.0.4
  2990. string_decoder: 1.3.0
  2991. util-deprecate: 1.0.2
  2992. /regenerate-unicode-properties@10.1.0:
  2993. resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==}
  2994. engines: {node: '>=4'}
  2995. dependencies:
  2996. regenerate: 1.4.2
  2997. dev: true
  2998. /regenerate@1.4.2:
  2999. resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
  3000. dev: true
  3001. /regenerator-runtime@0.13.11:
  3002. resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
  3003. dev: true
  3004. /regenerator-transform@0.15.1:
  3005. resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==}
  3006. dependencies:
  3007. '@babel/runtime': 7.21.0
  3008. dev: true
  3009. /regexpu-core@5.3.2:
  3010. resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
  3011. engines: {node: '>=4'}
  3012. dependencies:
  3013. '@babel/regjsgen': 0.8.0
  3014. regenerate: 1.4.2
  3015. regenerate-unicode-properties: 10.1.0
  3016. regjsparser: 0.9.1
  3017. unicode-match-property-ecmascript: 2.0.0
  3018. unicode-match-property-value-ecmascript: 2.1.0
  3019. dev: true
  3020. /regjsparser@0.9.1:
  3021. resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
  3022. hasBin: true
  3023. dependencies:
  3024. jsesc: 0.5.0
  3025. dev: true
  3026. /resolve-from@4.0.0:
  3027. resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
  3028. engines: {node: '>=4'}
  3029. dev: true
  3030. /resolve@1.22.2:
  3031. resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==}
  3032. hasBin: true
  3033. dependencies:
  3034. is-core-module: 2.12.0
  3035. path-parse: 1.0.7
  3036. supports-preserve-symlinks-flag: 1.0.0
  3037. dev: true
  3038. /reusify@1.0.4:
  3039. resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
  3040. engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
  3041. dev: true
  3042. /rimraf@3.0.2:
  3043. resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
  3044. hasBin: true
  3045. dependencies:
  3046. glob: 7.2.3
  3047. /ripemd160@2.0.2:
  3048. resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==}
  3049. dependencies:
  3050. hash-base: 3.1.0
  3051. inherits: 2.0.4
  3052. dev: true
  3053. /rollup-plugin-node-builtins@2.1.2:
  3054. resolution: {integrity: sha512-bxdnJw8jIivr2yEyt8IZSGqZkygIJOGAWypXvHXnwKAbUcN4Q/dGTx7K0oAJryC/m6aq6tKutltSeXtuogU6sw==}
  3055. dependencies:
  3056. browserify-fs: 1.0.0
  3057. buffer-es6: 4.9.3
  3058. crypto-browserify: 3.12.0
  3059. process-es6: 0.11.6
  3060. dev: true
  3061. /rollup-plugin-typescript2@0.35.0(rollup@3.20.2)(typescript@5.2.2):
  3062. resolution: {integrity: sha512-szcIO9hPUx3PhQl91u4pfNAH2EKbtrXaES+m163xQVE5O1CC0ea6YZV/5woiDDW3CR9jF2CszPrKN+AFiND0bg==}
  3063. peerDependencies:
  3064. rollup: '>=1.26.3'
  3065. typescript: '>=2.4.0'
  3066. dependencies:
  3067. '@rollup/pluginutils': 4.2.1
  3068. find-cache-dir: 3.3.2
  3069. fs-extra: 10.1.0
  3070. rollup: 3.20.2
  3071. semver: 7.4.0
  3072. tslib: 2.6.2
  3073. typescript: 5.2.2
  3074. dev: true
  3075. /rollup@3.20.2:
  3076. resolution: {integrity: sha512-3zwkBQl7Ai7MFYQE0y1MeQ15+9jsi7XxfrqwTb/9EK8D9C9+//EBR4M+CuA1KODRaNbFez/lWxA5vhEGZp4MUg==}
  3077. engines: {node: '>=14.18.0', npm: '>=8.0.0'}
  3078. hasBin: true
  3079. optionalDependencies:
  3080. fsevents: 2.3.2
  3081. dev: true
  3082. /roughjs@4.5.2:
  3083. resolution: {integrity: sha512-2xSlLDKdsWyFxrveYWk9YQ/Y9UfK38EAMRNkYkMqYBJvPX8abCa9PN0x3w02H8Oa6/0bcZICJU+U95VumPqseg==}
  3084. dependencies:
  3085. path-data-parser: 0.1.0
  3086. points-on-curve: 0.2.0
  3087. points-on-path: 0.2.1
  3088. dev: false
  3089. /run-parallel@1.2.0:
  3090. resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
  3091. dependencies:
  3092. queue-microtask: 1.2.3
  3093. dev: true
  3094. /safe-buffer@5.1.2:
  3095. resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
  3096. /safe-buffer@5.2.1:
  3097. resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
  3098. /safer-buffer@2.1.2:
  3099. resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
  3100. dev: true
  3101. /sanitize-html@1.27.5:
  3102. resolution: {integrity: sha512-M4M5iXDAUEcZKLXkmk90zSYWEtk5NH3JmojQxKxV371fnMh+x9t1rqdmXaGoyEHw3z/X/8vnFhKjGL5xFGOJ3A==}
  3103. dependencies:
  3104. htmlparser2: 4.1.0
  3105. lodash: 4.17.21
  3106. parse-srcset: 1.0.2
  3107. postcss: 7.0.39
  3108. dev: true
  3109. /semver@2.3.2:
  3110. resolution: {integrity: sha512-abLdIKCosKfpnmhS52NCTjO4RiLspDfsn37prjzGrp9im5DPJOgh82Os92vtwGh6XdQryKI/7SREZnV+aqiXrA==}
  3111. hasBin: true
  3112. dev: true
  3113. /semver@6.3.0:
  3114. resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
  3115. hasBin: true
  3116. /semver@7.4.0:
  3117. resolution: {integrity: sha512-RgOxM8Mw+7Zus0+zcLEUn8+JfoLpj/huFTItQy2hsM4khuC1HYRDp0cU482Ewn/Fcy6bCjufD8vAj7voC66KQw==}
  3118. engines: {node: '>=10'}
  3119. hasBin: true
  3120. dependencies:
  3121. lru-cache: 6.0.0
  3122. /semver@7.5.4:
  3123. resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==}
  3124. engines: {node: '>=10'}
  3125. hasBin: true
  3126. dependencies:
  3127. lru-cache: 6.0.0
  3128. dev: true
  3129. /serialize-javascript@6.0.1:
  3130. resolution: {integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==}
  3131. dependencies:
  3132. randombytes: 2.1.0
  3133. dev: true
  3134. /set-blocking@2.0.0:
  3135. resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
  3136. requiresBuild: true
  3137. dev: false
  3138. optional: true
  3139. /setimmediate@1.0.5:
  3140. resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
  3141. dev: false
  3142. /sha.js@2.4.11:
  3143. resolution: {integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==}
  3144. hasBin: true
  3145. dependencies:
  3146. inherits: 2.0.4
  3147. safe-buffer: 5.2.1
  3148. dev: true
  3149. /shebang-command@2.0.0:
  3150. resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
  3151. engines: {node: '>=8'}
  3152. dependencies:
  3153. shebang-regex: 3.0.0
  3154. dev: true
  3155. /shebang-regex@3.0.0:
  3156. resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
  3157. engines: {node: '>=8'}
  3158. dev: true
  3159. /signal-exit@3.0.7:
  3160. resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
  3161. requiresBuild: true
  3162. dev: false
  3163. optional: true
  3164. /simple-concat@1.0.1:
  3165. resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==}
  3166. requiresBuild: true
  3167. dev: false
  3168. optional: true
  3169. /simple-get@3.1.1:
  3170. resolution: {integrity: sha512-CQ5LTKGfCpvE1K0n2us+kuMPbk/q0EKl82s4aheV9oXjFEz6W/Y7oQFVJuU6QG77hRT4Ghb5RURteF5vnWjupA==}
  3171. requiresBuild: true
  3172. dependencies:
  3173. decompress-response: 4.2.1
  3174. once: 1.4.0
  3175. simple-concat: 1.0.1
  3176. dev: false
  3177. optional: true
  3178. /slash@3.0.0:
  3179. resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
  3180. engines: {node: '>=8'}
  3181. dev: true
  3182. /smob@1.4.1:
  3183. resolution: {integrity: sha512-9LK+E7Hv5R9u4g4C3p+jjLstaLe11MDsL21UpYaCNmapvMkYhqCV4A/f/3gyH8QjMyh6l68q9xC85vihY9ahMQ==}
  3184. dev: true
  3185. /source-map-support@0.5.21:
  3186. resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
  3187. dependencies:
  3188. buffer-from: 1.1.2
  3189. source-map: 0.6.1
  3190. dev: true
  3191. /source-map@0.6.1:
  3192. resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
  3193. engines: {node: '>=0.10.0'}
  3194. dev: true
  3195. /string-range@1.2.2:
  3196. resolution: {integrity: sha512-tYft6IFi8SjplJpxCUxyqisD3b+R2CSkomrtJYCkvuf1KuCAWgz7YXt4O0jip7efpfCemwHEzTEAO8EuOYgh3w==}
  3197. dev: true
  3198. /string-width@4.2.3:
  3199. resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
  3200. engines: {node: '>=8'}
  3201. requiresBuild: true
  3202. dependencies:
  3203. emoji-regex: 8.0.0
  3204. is-fullwidth-code-point: 3.0.0
  3205. strip-ansi: 6.0.1
  3206. dev: false
  3207. optional: true
  3208. /string_decoder@0.10.31:
  3209. resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==}
  3210. dev: true
  3211. /string_decoder@1.1.1:
  3212. resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
  3213. dependencies:
  3214. safe-buffer: 5.1.2
  3215. /string_decoder@1.3.0:
  3216. resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
  3217. dependencies:
  3218. safe-buffer: 5.2.1
  3219. /strip-ansi@6.0.1:
  3220. resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
  3221. engines: {node: '>=8'}
  3222. dependencies:
  3223. ansi-regex: 5.0.1
  3224. /strip-json-comments@3.1.1:
  3225. resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
  3226. engines: {node: '>=8'}
  3227. dev: true
  3228. /supports-color@5.5.0:
  3229. resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
  3230. engines: {node: '>=4'}
  3231. dependencies:
  3232. has-flag: 3.0.0
  3233. dev: true
  3234. /supports-color@7.2.0:
  3235. resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
  3236. engines: {node: '>=8'}
  3237. dependencies:
  3238. has-flag: 4.0.0
  3239. dev: true
  3240. /supports-preserve-symlinks-flag@1.0.0:
  3241. resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
  3242. engines: {node: '>= 0.4'}
  3243. dev: true
  3244. /taffydb@2.7.3:
  3245. resolution: {integrity: sha512-GQ3gtYFSOAxSMN/apGtDKKkbJf+8izz5YfbGqIsUc7AMiQOapARZ76dhilRY2h39cynYxBFdafQo5HUL5vgkrg==}
  3246. dev: true
  3247. /tar@6.1.13:
  3248. resolution: {integrity: sha512-jdIBIN6LTIe2jqzay/2vtYLlBHa3JF42ot3h1dW8Q0PaAG4v8rm0cvpVePtau5C6OKXGGcgO9q2AMNSWxiLqKw==}
  3249. engines: {node: '>=10'}
  3250. requiresBuild: true
  3251. dependencies:
  3252. chownr: 2.0.0
  3253. fs-minipass: 2.1.0
  3254. minipass: 4.2.8
  3255. minizlib: 2.1.2
  3256. mkdirp: 1.0.4
  3257. yallist: 4.0.0
  3258. dev: false
  3259. optional: true
  3260. /terser@5.22.0:
  3261. resolution: {integrity: sha512-hHZVLgRA2z4NWcN6aS5rQDc+7Dcy58HOf2zbYwmFcQ+ua3h6eEFf5lIDKTzbWwlazPyOZsFQO8V80/IjVNExEw==}
  3262. engines: {node: '>=10'}
  3263. hasBin: true
  3264. dependencies:
  3265. '@jridgewell/source-map': 0.3.5
  3266. acorn: 8.8.2
  3267. commander: 2.20.3
  3268. source-map-support: 0.5.21
  3269. dev: true
  3270. /text-table@0.2.0:
  3271. resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
  3272. dev: true
  3273. /to-fast-properties@2.0.0:
  3274. resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
  3275. engines: {node: '>=4'}
  3276. dev: true
  3277. /to-regex-range@5.0.1:
  3278. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  3279. engines: {node: '>=8.0'}
  3280. dependencies:
  3281. is-number: 7.0.0
  3282. dev: true
  3283. /toggle-selection@1.0.6:
  3284. resolution: {integrity: sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==}
  3285. dev: false
  3286. /tr46@0.0.3:
  3287. resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
  3288. requiresBuild: true
  3289. dev: false
  3290. optional: true
  3291. /ts-api-utils@1.0.3(typescript@5.2.2):
  3292. resolution: {integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==}
  3293. engines: {node: '>=16.13.0'}
  3294. peerDependencies:
  3295. typescript: '>=4.2.0'
  3296. dependencies:
  3297. typescript: 5.2.2
  3298. dev: true
  3299. /tslib@2.6.2:
  3300. resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
  3301. dev: true
  3302. /type-check@0.4.0:
  3303. resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
  3304. engines: {node: '>= 0.8.0'}
  3305. dependencies:
  3306. prelude-ls: 1.2.1
  3307. dev: true
  3308. /type-fest@0.20.2:
  3309. resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
  3310. engines: {node: '>=10'}
  3311. dev: true
  3312. /typedarray-to-buffer@1.0.4:
  3313. resolution: {integrity: sha512-vjMKrfSoUDN8/Vnqitw2FmstOfuJ73G6CrSEKnf11A6RmasVxHqfeBcnTb6RsL4pTMuV5Zsv9IiHRphMZyckUw==}
  3314. dev: true
  3315. /typedarray@0.0.6:
  3316. resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
  3317. dev: true
  3318. /typescript@5.2.2:
  3319. resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==}
  3320. engines: {node: '>=14.17'}
  3321. hasBin: true
  3322. dev: true
  3323. /unicode-canonical-property-names-ecmascript@2.0.0:
  3324. resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
  3325. engines: {node: '>=4'}
  3326. dev: true
  3327. /unicode-match-property-ecmascript@2.0.0:
  3328. resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
  3329. engines: {node: '>=4'}
  3330. dependencies:
  3331. unicode-canonical-property-names-ecmascript: 2.0.0
  3332. unicode-property-aliases-ecmascript: 2.1.0
  3333. dev: true
  3334. /unicode-match-property-value-ecmascript@2.1.0:
  3335. resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==}
  3336. engines: {node: '>=4'}
  3337. dev: true
  3338. /unicode-property-aliases-ecmascript@2.1.0:
  3339. resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
  3340. engines: {node: '>=4'}
  3341. dev: true
  3342. /universalify@2.0.0:
  3343. resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==}
  3344. engines: {node: '>= 10.0.0'}
  3345. dev: true
  3346. /update-browserslist-db@1.0.10(browserslist@4.21.5):
  3347. resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==}
  3348. hasBin: true
  3349. peerDependencies:
  3350. browserslist: '>= 4.21.0'
  3351. dependencies:
  3352. browserslist: 4.21.5
  3353. escalade: 3.1.1
  3354. picocolors: registry.npmmirror.com/picocolors@1.0.0
  3355. dev: true
  3356. /uri-js@4.4.1:
  3357. resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
  3358. dependencies:
  3359. punycode: 2.3.0
  3360. dev: true
  3361. /util-deprecate@1.0.2:
  3362. resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
  3363. /uuid@8.3.2:
  3364. resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
  3365. hasBin: true
  3366. dev: false
  3367. /uuid@9.0.0:
  3368. resolution: {integrity: sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==}
  3369. hasBin: true
  3370. dev: false
  3371. /uuidv4@6.2.13:
  3372. resolution: {integrity: sha512-AXyzMjazYB3ovL3q051VLH06Ixj//Knx7QnUSi1T//Ie3io6CpsPu9nVMOx5MoLWh6xV0B9J0hIaxungxXUbPQ==}
  3373. dependencies:
  3374. '@types/uuid': 8.3.4
  3375. uuid: 8.3.2
  3376. dev: false
  3377. /web-streams-polyfill@3.2.1:
  3378. resolution: {integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==}
  3379. engines: {node: '>= 8'}
  3380. dev: false
  3381. /webidl-conversions@3.0.1:
  3382. resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
  3383. requiresBuild: true
  3384. dev: false
  3385. optional: true
  3386. /whatwg-url@5.0.0:
  3387. resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
  3388. requiresBuild: true
  3389. dependencies:
  3390. tr46: 0.0.3
  3391. webidl-conversions: 3.0.1
  3392. dev: false
  3393. optional: true
  3394. /which@2.0.2:
  3395. resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
  3396. engines: {node: '>= 8'}
  3397. hasBin: true
  3398. dependencies:
  3399. isexe: 2.0.0
  3400. dev: true
  3401. /wide-align@1.1.5:
  3402. resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==}
  3403. requiresBuild: true
  3404. dependencies:
  3405. string-width: 4.2.3
  3406. dev: false
  3407. optional: true
  3408. /word-wrap@1.2.3:
  3409. resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==}
  3410. engines: {node: '>=0.10.0'}
  3411. dev: true
  3412. /wrappy@1.0.2:
  3413. resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
  3414. /xtend@2.0.6:
  3415. resolution: {integrity: sha512-fOZg4ECOlrMl+A6Msr7EIFcON1L26mb4NY5rurSkOex/TWhazOrg6eXD/B0XkuiYcYhQDWLXzQxLMVJ7LXwokg==}
  3416. engines: {node: '>=0.4'}
  3417. dependencies:
  3418. is-object: 0.1.2
  3419. object-keys: 0.2.0
  3420. dev: true
  3421. /xtend@2.1.2:
  3422. resolution: {integrity: sha512-vMNKzr2rHP9Dp/e1NQFnLQlwlhp9L/LfvnsVdHxN1f+uggyVI3i08uD14GPvCToPkdsRfyPqIyYGmIk58V98ZQ==}
  3423. engines: {node: '>=0.4'}
  3424. dependencies:
  3425. object-keys: 0.4.0
  3426. dev: true
  3427. /xtend@2.2.0:
  3428. resolution: {integrity: sha512-SLt5uylT+4aoXxXuwtQp5ZnMMzhDb1Xkg4pEqc00WUJCQifPfV9Ub1VrNhp9kXkrjZD2I2Hl8WnjP37jzZLPZw==}
  3429. engines: {node: '>=0.4'}
  3430. dev: true
  3431. /xtend@3.0.0:
  3432. resolution: {integrity: sha512-sp/sT9OALMjRW1fKDlPeuSZlDQpkqReA0pyJukniWbTGoEKefHxhGJynE3PNhUMlcM8qWIjPwecwCw4LArS5Eg==}
  3433. engines: {node: '>=0.4'}
  3434. dev: true
  3435. /yallist@3.1.1:
  3436. resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
  3437. dev: true
  3438. /yallist@4.0.0:
  3439. resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
  3440. /yocto-queue@0.1.0:
  3441. resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
  3442. engines: {node: '>=10'}
  3443. dev: true
  3444. registry.npmmirror.com/@babel/helper-string-parser@7.19.4:
  3445. resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==, tarball: https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz}
  3446. name: '@babel/helper-string-parser'
  3447. version: 7.19.4
  3448. engines: {node: '>=6.9.0'}
  3449. dev: true
  3450. registry.npmmirror.com/@babel/helper-validator-identifier@7.19.1:
  3451. resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==, tarball: https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz}
  3452. name: '@babel/helper-validator-identifier'
  3453. version: 7.19.1
  3454. engines: {node: '>=6.9.0'}
  3455. dev: true
  3456. registry.npmmirror.com/@babel/types@7.21.4:
  3457. resolution: {integrity: sha512-rU2oY501qDxE8Pyo7i/Orqma4ziCOrby0/9mvbDUGEfvZjb279Nk9k19e2fiCxHbRRpY2ZyrgW1eq22mvmOIzA==, tarball: https://registry.npmmirror.com/@babel/types/-/types-7.21.4.tgz}
  3458. name: '@babel/types'
  3459. version: 7.21.4
  3460. engines: {node: '>=6.9.0'}
  3461. dependencies:
  3462. '@babel/helper-string-parser': registry.npmmirror.com/@babel/helper-string-parser@7.19.4
  3463. '@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier@7.19.1
  3464. to-fast-properties: registry.npmmirror.com/to-fast-properties@2.0.0
  3465. dev: true
  3466. registry.npmmirror.com/picocolors@1.0.0:
  3467. resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==, tarball: https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz}
  3468. name: picocolors
  3469. version: 1.0.0
  3470. dev: true
  3471. registry.npmmirror.com/to-fast-properties@2.0.0:
  3472. resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==, tarball: https://registry.npmmirror.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz}
  3473. name: to-fast-properties
  3474. version: 2.0.0
  3475. engines: {node: '>=4'}
  3476. dev: true