pnpm-lock.yaml 121 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. '@handsontable/vue':
  9. specifier: ^15.2.0
  10. version: 15.2.0(handsontable@11.1.0)(vue@2.7.16)
  11. '@lifetech-inc/x-data-spreadsheet':
  12. specifier: ^1.0.17
  13. version: 1.0.17
  14. axios:
  15. specifier: ^1.8.4
  16. version: 1.8.4
  17. docx-preview:
  18. specifier: ^0.3.5
  19. version: 0.3.5
  20. element-ui:
  21. specifier: ^2.15.13
  22. version: 2.15.14(vue@2.7.16)
  23. exceljs:
  24. specifier: ^4.4.0
  25. version: 4.4.0
  26. file-saver:
  27. specifier: ^2.0.5
  28. version: 2.0.5
  29. handsontable:
  30. specifier: ^11.1.0
  31. version: 11.1.0
  32. html2canvas:
  33. specifier: ^1.4.1
  34. version: 1.4.1
  35. js-cookie:
  36. specifier: ^3.0.5
  37. version: 3.0.5
  38. jszip:
  39. specifier: ^3.10.1
  40. version: 3.10.1
  41. lodash:
  42. specifier: ^4.17.21
  43. version: 4.17.21
  44. lodash-es:
  45. specifier: ^4.17.21
  46. version: 4.17.21
  47. pdfjs-dist:
  48. specifier: 2.4.456
  49. version: 2.4.456
  50. pptxtojson:
  51. specifier: ^1.3.1
  52. version: 1.3.1
  53. tinycolor2:
  54. specifier: ^1.6.0
  55. version: 1.6.0
  56. txml:
  57. specifier: ^5.1.1
  58. version: 5.1.1
  59. vue:
  60. specifier: 2.7.16
  61. version: 2.7.16
  62. vue-router:
  63. specifier: ^3.5.1
  64. version: 3.6.5(vue@2.7.16)
  65. vuex:
  66. specifier: ^3.0.1
  67. version: 3.6.2(vue@2.7.16)
  68. wisdom-ui:
  69. specifier: ^1.0.4-beta.5
  70. version: 1.0.4-beta.6
  71. x-data-spreadsheet:
  72. specifier: ^1.1.9
  73. version: 1.1.9
  74. xlsx:
  75. specifier: ^0.18.5
  76. version: 0.18.5
  77. devDependencies:
  78. '@originjs/vite-plugin-require-context':
  79. specifier: ^1.0.9
  80. version: 1.0.9
  81. less:
  82. specifier: ^4.3.0
  83. version: 4.3.0
  84. typescript:
  85. specifier: ~5.7.2
  86. version: 5.7.3
  87. vite:
  88. specifier: ^2.8.6
  89. version: 2.9.18(less@4.3.0)
  90. vite-plugin-vue2:
  91. specifier: ^2.0.3
  92. version: 2.0.3(lodash@4.17.21)(vite@2.9.18(less@4.3.0))(vue-template-compiler@2.7.16)(vue@2.7.16)
  93. vue-template-compiler:
  94. specifier: ^2.7.16
  95. version: 2.7.16
  96. packages:
  97. '@ampproject/remapping@2.3.0':
  98. resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
  99. engines: {node: '>=6.0.0'}
  100. '@babel/code-frame@7.26.2':
  101. resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
  102. engines: {node: '>=6.9.0'}
  103. '@babel/compat-data@7.26.8':
  104. resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==}
  105. engines: {node: '>=6.9.0'}
  106. '@babel/core@7.26.10':
  107. resolution: {integrity: sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==}
  108. engines: {node: '>=6.9.0'}
  109. '@babel/generator@7.27.0':
  110. resolution: {integrity: sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw==}
  111. engines: {node: '>=6.9.0'}
  112. '@babel/helper-annotate-as-pure@7.25.9':
  113. resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
  114. engines: {node: '>=6.9.0'}
  115. '@babel/helper-compilation-targets@7.27.0':
  116. resolution: {integrity: sha512-LVk7fbXml0H2xH34dFzKQ7TDZ2G4/rVTOrq9V+icbbadjbVxxeFeDsNHv2SrZeWoA+6ZiTyWYWtScEIW07EAcA==}
  117. engines: {node: '>=6.9.0'}
  118. '@babel/helper-create-class-features-plugin@7.27.0':
  119. resolution: {integrity: sha512-vSGCvMecvFCd/BdpGlhpXYNhhC4ccxyvQWpbGL4CWbvfEoLFWUZuSuf7s9Aw70flgQF+6vptvgK2IfOnKlRmBg==}
  120. engines: {node: '>=6.9.0'}
  121. peerDependencies:
  122. '@babel/core': ^7.0.0
  123. '@babel/helper-member-expression-to-functions@7.25.9':
  124. resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==}
  125. engines: {node: '>=6.9.0'}
  126. '@babel/helper-module-imports@7.25.9':
  127. resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
  128. engines: {node: '>=6.9.0'}
  129. '@babel/helper-module-transforms@7.26.0':
  130. resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
  131. engines: {node: '>=6.9.0'}
  132. peerDependencies:
  133. '@babel/core': ^7.0.0
  134. '@babel/helper-optimise-call-expression@7.25.9':
  135. resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==}
  136. engines: {node: '>=6.9.0'}
  137. '@babel/helper-plugin-utils@7.26.5':
  138. resolution: {integrity: sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==}
  139. engines: {node: '>=6.9.0'}
  140. '@babel/helper-replace-supers@7.26.5':
  141. resolution: {integrity: sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg==}
  142. engines: {node: '>=6.9.0'}
  143. peerDependencies:
  144. '@babel/core': ^7.0.0
  145. '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
  146. resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
  147. engines: {node: '>=6.9.0'}
  148. '@babel/helper-string-parser@7.25.9':
  149. resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
  150. engines: {node: '>=6.9.0'}
  151. '@babel/helper-validator-identifier@7.25.9':
  152. resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
  153. engines: {node: '>=6.9.0'}
  154. '@babel/helper-validator-option@7.25.9':
  155. resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
  156. engines: {node: '>=6.9.0'}
  157. '@babel/helpers@7.27.0':
  158. resolution: {integrity: sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg==}
  159. engines: {node: '>=6.9.0'}
  160. '@babel/parser@7.27.0':
  161. resolution: {integrity: sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==}
  162. engines: {node: '>=6.0.0'}
  163. hasBin: true
  164. '@babel/plugin-proposal-class-properties@7.18.6':
  165. resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
  166. engines: {node: '>=6.9.0'}
  167. deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.
  168. peerDependencies:
  169. '@babel/core': ^7.0.0-0
  170. '@babel/plugin-proposal-decorators@7.25.9':
  171. resolution: {integrity: sha512-smkNLL/O1ezy9Nhy4CNosc4Va+1wo5w4gzSZeLe6y6dM4mmHfYOCPolXQPHQxonZCF+ZyebxN9vqOolkYrSn5g==}
  172. engines: {node: '>=6.9.0'}
  173. peerDependencies:
  174. '@babel/core': ^7.0.0-0
  175. '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6':
  176. resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
  177. engines: {node: '>=6.9.0'}
  178. deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.
  179. peerDependencies:
  180. '@babel/core': ^7.0.0-0
  181. '@babel/plugin-proposal-object-rest-spread@7.20.7':
  182. resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
  183. engines: {node: '>=6.9.0'}
  184. deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.
  185. peerDependencies:
  186. '@babel/core': ^7.0.0-0
  187. '@babel/plugin-proposal-optional-chaining@7.21.0':
  188. resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
  189. engines: {node: '>=6.9.0'}
  190. deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.
  191. peerDependencies:
  192. '@babel/core': ^7.0.0-0
  193. '@babel/plugin-syntax-decorators@7.25.9':
  194. resolution: {integrity: sha512-ryzI0McXUPJnRCvMo4lumIKZUzhYUO/ScI+Mz4YVaTLt04DHNSjEUjKVvbzQjZFLuod/cYEc07mJWhzl6v4DPg==}
  195. engines: {node: '>=6.9.0'}
  196. peerDependencies:
  197. '@babel/core': ^7.0.0-0
  198. '@babel/plugin-syntax-jsx@7.25.9':
  199. resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==}
  200. engines: {node: '>=6.9.0'}
  201. peerDependencies:
  202. '@babel/core': ^7.0.0-0
  203. '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3':
  204. resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
  205. peerDependencies:
  206. '@babel/core': ^7.0.0-0
  207. '@babel/plugin-syntax-object-rest-spread@7.8.3':
  208. resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
  209. peerDependencies:
  210. '@babel/core': ^7.0.0-0
  211. '@babel/plugin-syntax-optional-chaining@7.8.3':
  212. resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
  213. peerDependencies:
  214. '@babel/core': ^7.0.0-0
  215. '@babel/plugin-syntax-typescript@7.25.9':
  216. resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==}
  217. engines: {node: '>=6.9.0'}
  218. peerDependencies:
  219. '@babel/core': ^7.0.0-0
  220. '@babel/plugin-transform-arrow-functions@7.25.9':
  221. resolution: {integrity: sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==}
  222. engines: {node: '>=6.9.0'}
  223. peerDependencies:
  224. '@babel/core': ^7.0.0-0
  225. '@babel/plugin-transform-block-scoping@7.27.0':
  226. resolution: {integrity: sha512-u1jGphZ8uDI2Pj/HJj6YQ6XQLZCNjOlprjxB5SVz6rq2T6SwAR+CdrWK0CP7F+9rDVMXdB0+r6Am5G5aobOjAQ==}
  227. engines: {node: '>=6.9.0'}
  228. peerDependencies:
  229. '@babel/core': ^7.0.0-0
  230. '@babel/plugin-transform-computed-properties@7.25.9':
  231. resolution: {integrity: sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==}
  232. engines: {node: '>=6.9.0'}
  233. peerDependencies:
  234. '@babel/core': ^7.0.0-0
  235. '@babel/plugin-transform-destructuring@7.25.9':
  236. resolution: {integrity: sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==}
  237. engines: {node: '>=6.9.0'}
  238. peerDependencies:
  239. '@babel/core': ^7.0.0-0
  240. '@babel/plugin-transform-parameters@7.25.9':
  241. resolution: {integrity: sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==}
  242. engines: {node: '>=6.9.0'}
  243. peerDependencies:
  244. '@babel/core': ^7.0.0-0
  245. '@babel/plugin-transform-spread@7.25.9':
  246. resolution: {integrity: sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==}
  247. engines: {node: '>=6.9.0'}
  248. peerDependencies:
  249. '@babel/core': ^7.0.0-0
  250. '@babel/plugin-transform-typescript@7.27.0':
  251. resolution: {integrity: sha512-fRGGjO2UEGPjvEcyAZXRXAS8AfdaQoq7HnxAbJoAoW10B9xOKesmmndJv+Sym2a+9FHWZ9KbyyLCe9s0Sn5jtg==}
  252. engines: {node: '>=6.9.0'}
  253. peerDependencies:
  254. '@babel/core': ^7.0.0-0
  255. '@babel/runtime@7.27.0':
  256. resolution: {integrity: sha512-VtPOkrdPHZsKc/clNqyi9WUA8TINkZ4cGk63UUE3u4pmB2k+ZMQRDuIOagv8UVd6j7k0T3+RRIb7beKTebNbcw==}
  257. engines: {node: '>=6.9.0'}
  258. '@babel/template@7.27.0':
  259. resolution: {integrity: sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA==}
  260. engines: {node: '>=6.9.0'}
  261. '@babel/traverse@7.27.0':
  262. resolution: {integrity: sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA==}
  263. engines: {node: '>=6.9.0'}
  264. '@babel/types@7.27.0':
  265. resolution: {integrity: sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==}
  266. engines: {node: '>=6.9.0'}
  267. '@esbuild/linux-loong64@0.14.54':
  268. resolution: {integrity: sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==}
  269. engines: {node: '>=12'}
  270. cpu: [loong64]
  271. os: [linux]
  272. '@fast-csv/format@4.3.5':
  273. resolution: {integrity: sha512-8iRn6QF3I8Ak78lNAa+Gdl5MJJBM5vRHivFtMRUWINdevNo00K7OXxS2PshawLKTejVwieIlPmK5YlLu6w4u8A==}
  274. '@fast-csv/parse@4.3.6':
  275. resolution: {integrity: sha512-uRsLYksqpbDmWaSmzvJcuApSEe38+6NQZBUsuAyMZKqHxH0g1wcJgsKUvN3WC8tewaqFjBMMGrkHmC+T7k8LvA==}
  276. '@handsontable/vue@15.2.0':
  277. resolution: {integrity: sha512-N7OrfGNMwm+uhbU0Kg7zrrSJVrkWFdrT9xR2Wha6XWTXfJoduFKmkHgw6PIBb4nCb7+tM3jAr8ZAR/oFaGH0KA==}
  278. peerDependencies:
  279. handsontable: '>=15.0.0'
  280. vue: ^2.5.0
  281. '@jest/types@26.6.2':
  282. resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==}
  283. engines: {node: '>= 10.14.2'}
  284. '@jridgewell/gen-mapping@0.3.8':
  285. resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==}
  286. engines: {node: '>=6.0.0'}
  287. '@jridgewell/resolve-uri@3.1.2':
  288. resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
  289. engines: {node: '>=6.0.0'}
  290. '@jridgewell/set-array@1.2.1':
  291. resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
  292. engines: {node: '>=6.0.0'}
  293. '@jridgewell/sourcemap-codec@1.5.0':
  294. resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
  295. '@jridgewell/trace-mapping@0.3.25':
  296. resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
  297. '@lifetech-inc/x-data-spreadsheet@1.0.17':
  298. resolution: {integrity: sha512-pgWAUia9gOH0xJ3GYRatufZ7tQ4kbGBHIQo6nGDppgisrqbDQaWl9NLN6WecTv18vV4g9DgdLMK27u4+NZR2OQ==}
  299. '@originjs/vite-plugin-require-context@1.0.9':
  300. resolution: {integrity: sha512-xBC7XGm6HkniQ9x+P0yTS4uUua5bWKjnN0/FfHreCV22QrQ+zXIZVdCFDr0PPXuawXfPzqSzdljqffcpSCFNcA==}
  301. '@riophae/vue-treeselect@0.4.0':
  302. resolution: {integrity: sha512-J4atYmBqXQmiPFK/0B5sXKjtnGc21mBJEiyKIDZwk0Q9XuynVFX6IJ4EpaLmUgL5Tve7HAS7wkiGGSti6Uaxcg==}
  303. peerDependencies:
  304. vue: ^2.2.0
  305. '@rollup/pluginutils@4.2.1':
  306. resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
  307. engines: {node: '>= 8.0.0'}
  308. '@types/istanbul-lib-coverage@2.0.6':
  309. resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==}
  310. '@types/istanbul-lib-report@3.0.3':
  311. resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==}
  312. '@types/istanbul-reports@3.0.4':
  313. resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==}
  314. '@types/jest@26.0.24':
  315. resolution: {integrity: sha512-E/X5Vib8BWqZNRlDxj9vYXhsDwPYbPINqKF9BsnSoon4RQ0D9moEuLD8txgyypFLH7J4+Lho9Nr/c8H0Fi+17w==}
  316. '@types/node@14.18.63':
  317. resolution: {integrity: sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==}
  318. '@types/pikaday@1.7.4':
  319. resolution: {integrity: sha512-0KsHVyw5pTG829nqG4IRu7m+BFQlFEBdbE/1i3S5182HeKUKv1uEW0gyEmkJVp5i4IV+9pyh23O83+KpRkSQbw==}
  320. '@types/yargs-parser@21.0.3':
  321. resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
  322. '@types/yargs@15.0.19':
  323. resolution: {integrity: sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==}
  324. '@vue/babel-helper-vue-jsx-merge-props@1.4.0':
  325. resolution: {integrity: sha512-JkqXfCkUDp4PIlFdDQ0TdXoIejMtTHP67/pvxlgeY+u5k3LEdKuWZ3LK6xkxo52uDoABIVyRwqVkfLQJhk7VBA==}
  326. '@vue/babel-plugin-transform-vue-jsx@1.4.0':
  327. resolution: {integrity: sha512-Fmastxw4MMx0vlgLS4XBX0XiBbUFzoMGeVXuMV08wyOfXdikAFqBTuYPR0tlk+XskL19EzHc39SgjrPGY23JnA==}
  328. peerDependencies:
  329. '@babel/core': ^7.0.0-0
  330. '@vue/babel-preset-jsx@1.4.0':
  331. resolution: {integrity: sha512-QmfRpssBOPZWL5xw7fOuHNifCQcNQC1PrOo/4fu6xlhlKJJKSA3HqX92Nvgyx8fqHZTUGMPHmFA+IDqwXlqkSA==}
  332. peerDependencies:
  333. '@babel/core': ^7.0.0-0
  334. vue: '*'
  335. peerDependenciesMeta:
  336. vue:
  337. optional: true
  338. '@vue/babel-sugar-composition-api-inject-h@1.4.0':
  339. resolution: {integrity: sha512-VQq6zEddJHctnG4w3TfmlVp5FzDavUSut/DwR0xVoe/mJKXyMcsIibL42wPntozITEoY90aBV0/1d2KjxHU52g==}
  340. peerDependencies:
  341. '@babel/core': ^7.0.0-0
  342. '@vue/babel-sugar-composition-api-render-instance@1.4.0':
  343. resolution: {integrity: sha512-6ZDAzcxvy7VcnCjNdHJ59mwK02ZFuP5CnucloidqlZwVQv5CQLijc3lGpR7MD3TWFi78J7+a8J56YxbCtHgT9Q==}
  344. peerDependencies:
  345. '@babel/core': ^7.0.0-0
  346. '@vue/babel-sugar-functional-vue@1.4.0':
  347. resolution: {integrity: sha512-lTEB4WUFNzYt2In6JsoF9sAYVTo84wC4e+PoZWSgM6FUtqRJz7wMylaEhSRgG71YF+wfLD6cc9nqVeXN2rwBvw==}
  348. peerDependencies:
  349. '@babel/core': ^7.0.0-0
  350. '@vue/babel-sugar-inject-h@1.4.0':
  351. resolution: {integrity: sha512-muwWrPKli77uO2fFM7eA3G1lAGnERuSz2NgAxuOLzrsTlQl8W4G+wwbM4nB6iewlKbwKRae3nL03UaF5ffAPMA==}
  352. peerDependencies:
  353. '@babel/core': ^7.0.0-0
  354. '@vue/babel-sugar-v-model@1.4.0':
  355. resolution: {integrity: sha512-0t4HGgXb7WHYLBciZzN5s0Hzqan4Ue+p/3FdQdcaHAb7s5D9WZFGoSxEZHrR1TFVZlAPu1bejTKGeAzaaG3NCQ==}
  356. peerDependencies:
  357. '@babel/core': ^7.0.0-0
  358. '@vue/babel-sugar-v-on@1.4.0':
  359. resolution: {integrity: sha512-m+zud4wKLzSKgQrWwhqRObWzmTuyzl6vOP7024lrpeJM4x2UhQtRDLgYjXAw9xBXjCwS0pP9kXjg91F9ZNo9JA==}
  360. peerDependencies:
  361. '@babel/core': ^7.0.0-0
  362. '@vue/compiler-sfc@2.7.16':
  363. resolution: {integrity: sha512-KWhJ9k5nXuNtygPU7+t1rX6baZeqOYLEforUPjgNDBnLicfHCoi48H87Q8XyLZOrNNsmhuwKqtpDQWjEFe6Ekg==}
  364. '@vue/component-compiler-utils@3.3.0':
  365. resolution: {integrity: sha512-97sfH2mYNU+2PzGrmK2haqffDpVASuib9/w2/noxiFi31Z54hW+q3izKQXXQZSNhtiUpAI36uSuYepeBe4wpHQ==}
  366. adler-32@1.3.1:
  367. resolution: {integrity: sha512-ynZ4w/nUUv5rrsR8UUGoe1VC9hZj6V5hU9Qw1HlMDJGEJw5S7TfTErWTjMys6M7vr0YWcPqs3qAr4ss0nDfP+A==}
  368. engines: {node: '>=0.8'}
  369. ansi-escapes@1.4.0:
  370. resolution: {integrity: sha512-wiXutNjDUlNEDWHcYH3jtZUhd3c4/VojassD8zHdHCY13xbZy2XbW+NKQwA0tWGBVzDA9qEzYwfoSsWmviidhw==}
  371. engines: {node: '>=0.10.0'}
  372. ansi-regex@2.1.1:
  373. resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==}
  374. engines: {node: '>=0.10.0'}
  375. ansi-regex@3.0.1:
  376. resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==}
  377. engines: {node: '>=4'}
  378. ansi-regex@5.0.1:
  379. resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
  380. engines: {node: '>=8'}
  381. ansi-styles@2.2.1:
  382. resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==}
  383. engines: {node: '>=0.10.0'}
  384. ansi-styles@4.3.0:
  385. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  386. engines: {node: '>=8'}
  387. archiver-utils@2.1.0:
  388. resolution: {integrity: sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw==}
  389. engines: {node: '>= 6'}
  390. archiver-utils@3.0.4:
  391. resolution: {integrity: sha512-KVgf4XQVrTjhyWmx6cte4RxonPLR9onExufI1jhvw/MQ4BB6IsZD5gT8Lq+u/+pRkWna/6JoHpiQioaqFP5Rzw==}
  392. engines: {node: '>= 10'}
  393. archiver@5.3.2:
  394. resolution: {integrity: sha512-+25nxyyznAXF7Nef3y0EbBeqmGZgeN/BxHX29Rs39djAfaFalmQ89SE6CWyDCHzGL0yt/ycBtNOmGTW0FyGWNw==}
  395. engines: {node: '>= 10'}
  396. argparse@1.0.10:
  397. resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
  398. async-validator@1.8.5:
  399. resolution: {integrity: sha512-tXBM+1m056MAX0E8TL2iCjg8WvSyXu0Zc8LNtYqrVeyoL3+esHRZ4SieE9fKQyyU09uONjnMEjrNBMqT0mbvmA==}
  400. async@3.2.6:
  401. resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==}
  402. asynckit@0.4.0:
  403. resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
  404. axios@1.8.4:
  405. resolution: {integrity: sha512-eBSYY4Y68NNlHbHBMdeDmKNtDgXWhQsJcGqzO3iLUM0GraQFSS9cVgPX5I9b3lbdFKyYoAEGAZF1DwhTaljNAw==}
  406. babel-helper-vue-jsx-merge-props@2.0.3:
  407. resolution: {integrity: sha512-gsLiKK7Qrb7zYJNgiXKpXblxbV5ffSwR0f5whkPAaBAR4fhi6bwRZxX9wBlIc5M/v8CCkXUbXZL4N/nSE97cqg==}
  408. babel-polyfill@6.23.0:
  409. resolution: {integrity: sha512-0l7mVU+LrQ2X/ZTUq63T5i3VyR2aTgcRTFmBcD6djQ/Fek6q1A9t5u0F4jZVYHzp78jwWAzGfLpAY1b4/I3lfg==}
  410. babel-runtime@6.26.0:
  411. resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==}
  412. balanced-match@1.0.2:
  413. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  414. base64-arraybuffer@1.0.2:
  415. resolution: {integrity: sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==}
  416. engines: {node: '>= 0.6.0'}
  417. base64-js@1.5.1:
  418. resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
  419. big-integer@1.6.52:
  420. resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==}
  421. engines: {node: '>=0.6'}
  422. bignumber.js@8.1.1:
  423. resolution: {integrity: sha512-QD46ppGintwPGuL1KqmwhR0O+N2cZUg8JG/VzwI2e28sM9TqHjQB10lI4QAaMHVbLzwVLLAwEglpKPViWX+5NQ==}
  424. binary@0.3.0:
  425. resolution: {integrity: sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==}
  426. bl@4.1.0:
  427. resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
  428. bluebird@3.4.7:
  429. resolution: {integrity: sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==}
  430. bluebird@3.7.2:
  431. resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==}
  432. bmaplib.curveline@1.0.0:
  433. resolution: {integrity: sha512-9wcFMVhiYxNPqpvsLDAADn3qDhNzXp2mA6VyHSHg2XOAgSooC7ZiujdFhy0sp+0QYjTfJ/MjmLuNoUg2HHxH4Q==}
  434. bmaplib.heatmap@1.0.4:
  435. resolution: {integrity: sha512-rmhqUARBpUSJ9jXzUI2j7dIOqnc38bqubkx/8a349U2qtw/ulLUwyzRD535OrA8G7w5cz4aPKm6/rNvUAarg/Q==}
  436. bmaplib.lushu@1.0.7:
  437. resolution: {integrity: sha512-LVvgpESPii6xGxyjnQjq8u+ic4NjvhdCPV/RiSS/PGTUdZKeTDS7prSpleJLZH3ES0+oc0gYn8bw0LtPYUSz2w==}
  438. bmaplib.markerclusterer@1.0.13:
  439. resolution: {integrity: sha512-VrLyWSiuDEVNi0yUfwOhFQ6z1oEEHS4w36GNu3iASu6p52QIx9uAXMUkuSCHReNR0bj2Cp9SA1dSx5RpojXajQ==}
  440. bmaplib.texticonoverlay@1.0.2:
  441. resolution: {integrity: sha512-4ZTWr4ZP3B6qEWput5Tut16CfZgII38YwM3bpyb4gFTQyORlKYryFp9WHWrwZZaHlOyYDAXG9SX0hka43jTADg==}
  442. brace-expansion@1.1.11:
  443. resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
  444. brace-expansion@2.0.1:
  445. resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
  446. browserslist@4.24.4:
  447. resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==}
  448. engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
  449. hasBin: true
  450. buffer-crc32@0.2.13:
  451. resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
  452. buffer-indexof-polyfill@1.0.2:
  453. resolution: {integrity: sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==}
  454. engines: {node: '>=0.10'}
  455. buffer@5.7.1:
  456. resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
  457. buffers@0.1.1:
  458. resolution: {integrity: sha512-9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ==}
  459. engines: {node: '>=0.2.0'}
  460. call-bind-apply-helpers@1.0.2:
  461. resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
  462. engines: {node: '>= 0.4'}
  463. camelcase@5.3.1:
  464. resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
  465. engines: {node: '>=6'}
  466. caniuse-lite@1.0.30001712:
  467. resolution: {integrity: sha512-MBqPpGYYdQ7/hfKiet9SCI+nmN5/hp4ZzveOJubl5DTAMa5oggjAuoi0Z4onBpKPFI2ePGnQuQIzF3VxDjDJig==}
  468. cfb@1.2.2:
  469. resolution: {integrity: sha512-KfdUZsSOw19/ObEWasvBP/Ac4reZvAGauZhs6S/gqNhXhI7cKwvlH7ulj+dOEYnca4bm4SGo8C1bTAQvnTjgQA==}
  470. engines: {node: '>=0.8'}
  471. chainsaw@0.1.0:
  472. resolution: {integrity: sha512-75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ==}
  473. chalk@1.1.3:
  474. resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==}
  475. engines: {node: '>=0.10.0'}
  476. chalk@4.1.2:
  477. resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
  478. engines: {node: '>=10'}
  479. chardet@0.4.2:
  480. resolution: {integrity: sha512-j/Toj7f1z98Hh2cYo2BVr85EpIRWqUi7rtRSGxh/cqUjqrnJe9l9UE7IUGd2vQ2p+kSHLkSzObQPZPLUC6TQwg==}
  481. chevrotain@6.5.0:
  482. resolution: {integrity: sha512-BwqQ/AgmKJ8jcMEjaSnfMybnKMgGTrtDKowfTP3pX4jwVy0kNjRsT/AP6h+wC3+3NC+X8X15VWBnTCQlX+wQFg==}
  483. cli-cursor@2.1.0:
  484. resolution: {integrity: sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==}
  485. engines: {node: '>=4'}
  486. cli-width@2.2.1:
  487. resolution: {integrity: sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==}
  488. codepage@1.15.0:
  489. resolution: {integrity: sha512-3g6NUTPd/YtuuGrhMnOMRjFc+LJw/bnMp3+0r/Wcz3IXUuCosKRJvMphm5+Q+bvTVGcJJuRvVLuYba+WojaFaA==}
  490. engines: {node: '>=0.8'}
  491. color-convert@2.0.1:
  492. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  493. engines: {node: '>=7.0.0'}
  494. color-name@1.1.4:
  495. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  496. combined-stream@1.0.8:
  497. resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
  498. engines: {node: '>= 0.8'}
  499. compress-commons@4.1.2:
  500. resolution: {integrity: sha512-D3uMHtGc/fcO1Gt1/L7i1e33VOvD4A9hfQLP+6ewd+BvG/gQ84Yh4oftEhAdjSMgBgwGL+jsppT7JYNpo6MHHg==}
  501. engines: {node: '>= 10'}
  502. concat-map@0.0.1:
  503. resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
  504. consolidate@0.15.1:
  505. resolution: {integrity: sha512-DW46nrsMJgy9kqAbPt5rKaCr7uFtpo4mSUvLHIUbJEjm0vo+aY5QLwBUq3FK4tRnJr/X0Psc0C4jf/h+HtXSMw==}
  506. engines: {node: '>= 0.10.0'}
  507. deprecated: Please upgrade to consolidate v1.0.0+ as it has been modernized with several long-awaited fixes implemented. Maintenance is supported by Forward Email at https://forwardemail.net ; follow/watch https://github.com/ladjs/consolidate for updates and release changelog
  508. peerDependencies:
  509. arc-templates: ^0.5.3
  510. atpl: '>=0.7.6'
  511. babel-core: ^6.26.3
  512. bracket-template: ^1.1.5
  513. coffee-script: ^1.12.7
  514. dot: ^1.1.3
  515. dust: ^0.3.0
  516. dustjs-helpers: ^1.7.4
  517. dustjs-linkedin: ^2.7.5
  518. eco: ^1.1.0-rc-3
  519. ect: ^0.5.9
  520. ejs: ^3.1.5
  521. haml-coffee: ^1.14.1
  522. hamlet: ^0.3.3
  523. hamljs: ^0.6.2
  524. handlebars: ^4.7.6
  525. hogan.js: ^3.0.2
  526. htmling: ^0.0.8
  527. jade: ^1.11.0
  528. jazz: ^0.0.18
  529. jqtpl: ~1.1.0
  530. just: ^0.1.8
  531. liquid-node: ^3.0.1
  532. liquor: ^0.0.5
  533. lodash: ^4.17.20
  534. marko: ^3.14.4
  535. mote: ^0.2.0
  536. mustache: ^3.0.0
  537. nunjucks: ^3.2.2
  538. plates: ~0.4.11
  539. pug: ^3.0.0
  540. qejs: ^3.0.5
  541. ractive: ^1.3.12
  542. razor-tmpl: ^1.3.1
  543. react: ^16.13.1
  544. react-dom: ^16.13.1
  545. slm: ^2.0.0
  546. squirrelly: ^5.1.0
  547. swig: ^1.4.2
  548. swig-templates: ^2.0.3
  549. teacup: ^2.0.0
  550. templayed: '>=0.2.3'
  551. then-jade: '*'
  552. then-pug: '*'
  553. tinyliquid: ^0.2.34
  554. toffee: ^0.3.6
  555. twig: ^1.15.2
  556. twing: ^5.0.2
  557. underscore: ^1.11.0
  558. vash: ^0.13.0
  559. velocityjs: ^2.0.1
  560. walrus: ^0.10.1
  561. whiskers: ^0.4.0
  562. peerDependenciesMeta:
  563. arc-templates:
  564. optional: true
  565. atpl:
  566. optional: true
  567. babel-core:
  568. optional: true
  569. bracket-template:
  570. optional: true
  571. coffee-script:
  572. optional: true
  573. dot:
  574. optional: true
  575. dust:
  576. optional: true
  577. dustjs-helpers:
  578. optional: true
  579. dustjs-linkedin:
  580. optional: true
  581. eco:
  582. optional: true
  583. ect:
  584. optional: true
  585. ejs:
  586. optional: true
  587. haml-coffee:
  588. optional: true
  589. hamlet:
  590. optional: true
  591. hamljs:
  592. optional: true
  593. handlebars:
  594. optional: true
  595. hogan.js:
  596. optional: true
  597. htmling:
  598. optional: true
  599. jade:
  600. optional: true
  601. jazz:
  602. optional: true
  603. jqtpl:
  604. optional: true
  605. just:
  606. optional: true
  607. liquid-node:
  608. optional: true
  609. liquor:
  610. optional: true
  611. lodash:
  612. optional: true
  613. marko:
  614. optional: true
  615. mote:
  616. optional: true
  617. mustache:
  618. optional: true
  619. nunjucks:
  620. optional: true
  621. plates:
  622. optional: true
  623. pug:
  624. optional: true
  625. qejs:
  626. optional: true
  627. ractive:
  628. optional: true
  629. razor-tmpl:
  630. optional: true
  631. react:
  632. optional: true
  633. react-dom:
  634. optional: true
  635. slm:
  636. optional: true
  637. squirrelly:
  638. optional: true
  639. swig:
  640. optional: true
  641. swig-templates:
  642. optional: true
  643. teacup:
  644. optional: true
  645. templayed:
  646. optional: true
  647. then-jade:
  648. optional: true
  649. then-pug:
  650. optional: true
  651. tinyliquid:
  652. optional: true
  653. toffee:
  654. optional: true
  655. twig:
  656. optional: true
  657. twing:
  658. optional: true
  659. underscore:
  660. optional: true
  661. vash:
  662. optional: true
  663. velocityjs:
  664. optional: true
  665. walrus:
  666. optional: true
  667. whiskers:
  668. optional: true
  669. consolidate@0.16.0:
  670. resolution: {integrity: sha512-Nhl1wzCslqXYTJVDyJCu3ODohy9OfBMB5uD2BiBTzd7w+QY0lBzafkR8y8755yMYHAaMD4NuzbAw03/xzfw+eQ==}
  671. engines: {node: '>= 0.10.0'}
  672. deprecated: Please upgrade to consolidate v1.0.0+ as it has been modernized with several long-awaited fixes implemented. Maintenance is supported by Forward Email at https://forwardemail.net ; follow/watch https://github.com/ladjs/consolidate for updates and release changelog
  673. peerDependencies:
  674. arc-templates: ^0.5.3
  675. atpl: '>=0.7.6'
  676. babel-core: ^6.26.3
  677. bracket-template: ^1.1.5
  678. coffee-script: ^1.12.7
  679. dot: ^1.1.3
  680. dust: ^0.3.0
  681. dustjs-helpers: ^1.7.4
  682. dustjs-linkedin: ^2.7.5
  683. eco: ^1.1.0-rc-3
  684. ect: ^0.5.9
  685. ejs: ^3.1.5
  686. haml-coffee: ^1.14.1
  687. hamlet: ^0.3.3
  688. hamljs: ^0.6.2
  689. handlebars: ^4.7.6
  690. hogan.js: ^3.0.2
  691. htmling: ^0.0.8
  692. jade: ^1.11.0
  693. jazz: ^0.0.18
  694. jqtpl: ~1.1.0
  695. just: ^0.1.8
  696. liquid-node: ^3.0.1
  697. liquor: ^0.0.5
  698. lodash: ^4.17.20
  699. marko: ^3.14.4
  700. mote: ^0.2.0
  701. mustache: ^4.0.1
  702. nunjucks: ^3.2.2
  703. plates: ~0.4.11
  704. pug: ^3.0.0
  705. qejs: ^3.0.5
  706. ractive: ^1.3.12
  707. razor-tmpl: ^1.3.1
  708. react: ^16.13.1
  709. react-dom: ^16.13.1
  710. slm: ^2.0.0
  711. squirrelly: ^5.1.0
  712. swig: ^1.4.2
  713. swig-templates: ^2.0.3
  714. teacup: ^2.0.0
  715. templayed: '>=0.2.3'
  716. then-jade: '*'
  717. then-pug: '*'
  718. tinyliquid: ^0.2.34
  719. toffee: ^0.3.6
  720. twig: ^1.15.2
  721. twing: ^5.0.2
  722. underscore: ^1.11.0
  723. vash: ^0.13.0
  724. velocityjs: ^2.0.1
  725. walrus: ^0.10.1
  726. whiskers: ^0.4.0
  727. peerDependenciesMeta:
  728. arc-templates:
  729. optional: true
  730. atpl:
  731. optional: true
  732. babel-core:
  733. optional: true
  734. bracket-template:
  735. optional: true
  736. coffee-script:
  737. optional: true
  738. dot:
  739. optional: true
  740. dust:
  741. optional: true
  742. dustjs-helpers:
  743. optional: true
  744. dustjs-linkedin:
  745. optional: true
  746. eco:
  747. optional: true
  748. ect:
  749. optional: true
  750. ejs:
  751. optional: true
  752. haml-coffee:
  753. optional: true
  754. hamlet:
  755. optional: true
  756. hamljs:
  757. optional: true
  758. handlebars:
  759. optional: true
  760. hogan.js:
  761. optional: true
  762. htmling:
  763. optional: true
  764. jade:
  765. optional: true
  766. jazz:
  767. optional: true
  768. jqtpl:
  769. optional: true
  770. just:
  771. optional: true
  772. liquid-node:
  773. optional: true
  774. liquor:
  775. optional: true
  776. lodash:
  777. optional: true
  778. marko:
  779. optional: true
  780. mote:
  781. optional: true
  782. mustache:
  783. optional: true
  784. nunjucks:
  785. optional: true
  786. plates:
  787. optional: true
  788. pug:
  789. optional: true
  790. qejs:
  791. optional: true
  792. ractive:
  793. optional: true
  794. razor-tmpl:
  795. optional: true
  796. react:
  797. optional: true
  798. react-dom:
  799. optional: true
  800. slm:
  801. optional: true
  802. squirrelly:
  803. optional: true
  804. swig:
  805. optional: true
  806. swig-templates:
  807. optional: true
  808. teacup:
  809. optional: true
  810. templayed:
  811. optional: true
  812. then-jade:
  813. optional: true
  814. then-pug:
  815. optional: true
  816. tinyliquid:
  817. optional: true
  818. toffee:
  819. optional: true
  820. twig:
  821. optional: true
  822. twing:
  823. optional: true
  824. underscore:
  825. optional: true
  826. vash:
  827. optional: true
  828. velocityjs:
  829. optional: true
  830. walrus:
  831. optional: true
  832. whiskers:
  833. optional: true
  834. convert-source-map@2.0.0:
  835. resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
  836. copy-anything@2.0.6:
  837. resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==}
  838. core-js@2.6.12:
  839. resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==}
  840. deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.
  841. core-js@3.41.0:
  842. resolution: {integrity: sha512-SJ4/EHwS36QMJd6h/Rg+GyR4A5xE0FSI3eZ+iBVpfqf1x0eTSg1smWLHrA+2jQThZSh97fmSgFSU8B61nxosxA==}
  843. core-util-is@1.0.3:
  844. resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
  845. crc-32@1.2.2:
  846. resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==}
  847. engines: {node: '>=0.8'}
  848. hasBin: true
  849. crc32-stream@4.0.3:
  850. resolution: {integrity: sha512-NT7w2JVU7DFroFdYkeq8cywxrgjPHWkdX1wjpRQXPX5Asews3tA+Ght6lddQO5Mkumffp3X7GEqku3epj2toIw==}
  851. engines: {node: '>= 10'}
  852. css-line-break@2.1.0:
  853. resolution: {integrity: sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==}
  854. cssesc@3.0.0:
  855. resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
  856. engines: {node: '>=4'}
  857. hasBin: true
  858. csstype@3.1.3:
  859. resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
  860. dayjs@1.11.13:
  861. resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
  862. de-indent@1.0.2:
  863. resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
  864. debug@4.4.0:
  865. resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
  866. engines: {node: '>=6.0'}
  867. peerDependencies:
  868. supports-color: '*'
  869. peerDependenciesMeta:
  870. supports-color:
  871. optional: true
  872. deepmerge@1.5.2:
  873. resolution: {integrity: sha512-95k0GDqvBjZavkuvzx/YqVLv/6YYa17fz6ILMSf7neqQITCPbnfEnQvEgMPNjH4kgobe7+WIL0yJEHku+H3qtQ==}
  874. engines: {node: '>=0.10.0'}
  875. deepmerge@4.3.1:
  876. resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
  877. engines: {node: '>=0.10.0'}
  878. delayed-stream@1.0.0:
  879. resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
  880. engines: {node: '>=0.4.0'}
  881. diff-sequences@26.6.2:
  882. resolution: {integrity: sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==}
  883. engines: {node: '>= 10.14.2'}
  884. docx-preview@0.3.5:
  885. resolution: {integrity: sha512-nod1jG5PkvzDIiZAcgAY4gSFQzgmAAChcuZH4Hj9dj7oCzscY3Hn8NfbUv7X7Jk4xL1lfKO113JLDhWKOt6fYw==}
  886. dompurify@2.5.8:
  887. resolution: {integrity: sha512-o1vSNgrmYMQObbSSvF/1brBYEQPHhV1+gsmrusO7/GXtp1T9rCS8cXFqVxK/9crT1jA6Ccv+5MTSjBNqr7Sovw==}
  888. dunder-proto@1.0.1:
  889. resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
  890. engines: {node: '>= 0.4'}
  891. duplexer2@0.1.4:
  892. resolution: {integrity: sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==}
  893. easings-css@1.0.0:
  894. resolution: {integrity: sha512-7Uq7NdazNfVtr0RNmPAys8it0zKCuaqxJStYKEl72D3j4gbvXhhaM7iWNbqhA4C94ygCye6VuyhzBRQC4szeBg==}
  895. electron-to-chromium@1.5.134:
  896. resolution: {integrity: sha512-zSwzrLg3jNP3bwsLqWHmS5z2nIOQ5ngMnfMZOWWtXnqqQkPVyOipxK98w+1beLw1TB+EImPNcG8wVP/cLVs2Og==}
  897. element-ui@2.15.14:
  898. resolution: {integrity: sha512-2v9fHL0ZGINotOlRIAJD5YuVB8V7WKxrE9Qy7dXhRipa035+kF7WuU/z+tEmLVPBcJ0zt8mOu1DKpWcVzBK8IA==}
  899. peerDependencies:
  900. vue: ^2.5.17
  901. encoding@0.1.13:
  902. resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==}
  903. end-of-stream@1.4.4:
  904. resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
  905. entities@1.1.2:
  906. resolution: {integrity: sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==}
  907. errno@0.1.8:
  908. resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==}
  909. hasBin: true
  910. es-define-property@1.0.1:
  911. resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
  912. engines: {node: '>= 0.4'}
  913. es-errors@1.3.0:
  914. resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
  915. engines: {node: '>= 0.4'}
  916. es-object-atoms@1.1.1:
  917. resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
  918. engines: {node: '>= 0.4'}
  919. es-set-tostringtag@2.1.0:
  920. resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
  921. engines: {node: '>= 0.4'}
  922. esbuild-android-64@0.14.54:
  923. resolution: {integrity: sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ==}
  924. engines: {node: '>=12'}
  925. cpu: [x64]
  926. os: [android]
  927. esbuild-android-arm64@0.14.54:
  928. resolution: {integrity: sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg==}
  929. engines: {node: '>=12'}
  930. cpu: [arm64]
  931. os: [android]
  932. esbuild-darwin-64@0.14.54:
  933. resolution: {integrity: sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==}
  934. engines: {node: '>=12'}
  935. cpu: [x64]
  936. os: [darwin]
  937. esbuild-darwin-arm64@0.14.54:
  938. resolution: {integrity: sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==}
  939. engines: {node: '>=12'}
  940. cpu: [arm64]
  941. os: [darwin]
  942. esbuild-freebsd-64@0.14.54:
  943. resolution: {integrity: sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg==}
  944. engines: {node: '>=12'}
  945. cpu: [x64]
  946. os: [freebsd]
  947. esbuild-freebsd-arm64@0.14.54:
  948. resolution: {integrity: sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q==}
  949. engines: {node: '>=12'}
  950. cpu: [arm64]
  951. os: [freebsd]
  952. esbuild-linux-32@0.14.54:
  953. resolution: {integrity: sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw==}
  954. engines: {node: '>=12'}
  955. cpu: [ia32]
  956. os: [linux]
  957. esbuild-linux-64@0.14.54:
  958. resolution: {integrity: sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==}
  959. engines: {node: '>=12'}
  960. cpu: [x64]
  961. os: [linux]
  962. esbuild-linux-arm64@0.14.54:
  963. resolution: {integrity: sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig==}
  964. engines: {node: '>=12'}
  965. cpu: [arm64]
  966. os: [linux]
  967. esbuild-linux-arm@0.14.54:
  968. resolution: {integrity: sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw==}
  969. engines: {node: '>=12'}
  970. cpu: [arm]
  971. os: [linux]
  972. esbuild-linux-mips64le@0.14.54:
  973. resolution: {integrity: sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw==}
  974. engines: {node: '>=12'}
  975. cpu: [mips64el]
  976. os: [linux]
  977. esbuild-linux-ppc64le@0.14.54:
  978. resolution: {integrity: sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ==}
  979. engines: {node: '>=12'}
  980. cpu: [ppc64]
  981. os: [linux]
  982. esbuild-linux-riscv64@0.14.54:
  983. resolution: {integrity: sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg==}
  984. engines: {node: '>=12'}
  985. cpu: [riscv64]
  986. os: [linux]
  987. esbuild-linux-s390x@0.14.54:
  988. resolution: {integrity: sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA==}
  989. engines: {node: '>=12'}
  990. cpu: [s390x]
  991. os: [linux]
  992. esbuild-netbsd-64@0.14.54:
  993. resolution: {integrity: sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w==}
  994. engines: {node: '>=12'}
  995. cpu: [x64]
  996. os: [netbsd]
  997. esbuild-openbsd-64@0.14.54:
  998. resolution: {integrity: sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw==}
  999. engines: {node: '>=12'}
  1000. cpu: [x64]
  1001. os: [openbsd]
  1002. esbuild-sunos-64@0.14.54:
  1003. resolution: {integrity: sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw==}
  1004. engines: {node: '>=12'}
  1005. cpu: [x64]
  1006. os: [sunos]
  1007. esbuild-windows-32@0.14.54:
  1008. resolution: {integrity: sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==}
  1009. engines: {node: '>=12'}
  1010. cpu: [ia32]
  1011. os: [win32]
  1012. esbuild-windows-64@0.14.54:
  1013. resolution: {integrity: sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==}
  1014. engines: {node: '>=12'}
  1015. cpu: [x64]
  1016. os: [win32]
  1017. esbuild-windows-arm64@0.14.54:
  1018. resolution: {integrity: sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg==}
  1019. engines: {node: '>=12'}
  1020. cpu: [arm64]
  1021. os: [win32]
  1022. esbuild@0.14.54:
  1023. resolution: {integrity: sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==}
  1024. engines: {node: '>=12'}
  1025. hasBin: true
  1026. escalade@3.2.0:
  1027. resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
  1028. engines: {node: '>=6'}
  1029. escape-string-regexp@1.0.5:
  1030. resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
  1031. engines: {node: '>=0.8.0'}
  1032. estree-walker@2.0.2:
  1033. resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
  1034. exceljs@4.4.0:
  1035. resolution: {integrity: sha512-XctvKaEMaj1Ii9oDOqbW/6e1gXknSY4g/aLCDicOXqBE4M0nRWkUu0PTp++UPNzoFY12BNHMfs/VadKIS6llvg==}
  1036. engines: {node: '>=8.3.0'}
  1037. external-editor@2.2.0:
  1038. resolution: {integrity: sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A==}
  1039. engines: {node: '>=0.12'}
  1040. fast-csv@4.3.6:
  1041. resolution: {integrity: sha512-2RNSpuwwsJGP0frGsOmTb9oUF+VkFSM4SyLTDgwf2ciHWTarN0lQTC+F2f/t5J9QjW+c65VFIAAu85GsvMIusw==}
  1042. engines: {node: '>=10.0.0'}
  1043. figures@2.0.0:
  1044. resolution: {integrity: sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==}
  1045. engines: {node: '>=4'}
  1046. file-saver@2.0.5:
  1047. resolution: {integrity: sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA==}
  1048. follow-redirects@1.15.9:
  1049. resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
  1050. engines: {node: '>=4.0'}
  1051. peerDependencies:
  1052. debug: '*'
  1053. peerDependenciesMeta:
  1054. debug:
  1055. optional: true
  1056. form-data@4.0.2:
  1057. resolution: {integrity: sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==}
  1058. engines: {node: '>= 6'}
  1059. frac@1.1.2:
  1060. resolution: {integrity: sha512-w/XBfkibaTl3YDqASwfDUqkna4Z2p9cFSr1aHDt0WoMTECnRfBOv2WArlZILlqgWlmdIlALXGpM2AOhEk5W3IA==}
  1061. engines: {node: '>=0.8'}
  1062. fs-constants@1.0.0:
  1063. resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
  1064. fs-extra@10.1.0:
  1065. resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
  1066. engines: {node: '>=12'}
  1067. fs.realpath@1.0.0:
  1068. resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
  1069. fsevents@2.3.3:
  1070. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  1071. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  1072. os: [darwin]
  1073. fstream@1.0.12:
  1074. resolution: {integrity: sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==}
  1075. engines: {node: '>=0.6'}
  1076. deprecated: This package is no longer supported.
  1077. function-bind@1.1.2:
  1078. resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
  1079. fuzzysearch@1.0.3:
  1080. resolution: {integrity: sha512-s+kNWQuI3mo9OALw0HJ6YGmMbLqEufCh2nX/zzV5CrICQ/y4AwPxM+6TIiF9ItFCHXFCyM/BfCCmN57NTIJuPg==}
  1081. gensync@1.0.0-beta.2:
  1082. resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
  1083. engines: {node: '>=6.9.0'}
  1084. get-intrinsic@1.3.0:
  1085. resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
  1086. engines: {node: '>= 0.4'}
  1087. get-proto@1.0.1:
  1088. resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
  1089. engines: {node: '>= 0.4'}
  1090. glob@7.2.3:
  1091. resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
  1092. deprecated: Glob versions prior to v9 are no longer supported
  1093. globals@11.12.0:
  1094. resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
  1095. engines: {node: '>=4'}
  1096. gopd@1.2.0:
  1097. resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
  1098. engines: {node: '>= 0.4'}
  1099. graceful-fs@4.2.11:
  1100. resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
  1101. handsontable@11.1.0:
  1102. resolution: {integrity: sha512-Ph0avovpqLy+1U0+U+ptvfPDMLYWkxfBXwJU5mT+ql475tAM1CuwhFlY8MH6iRAxrqWJdCDOzytIgIrbGrfjMQ==}
  1103. has-ansi@2.0.0:
  1104. resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==}
  1105. engines: {node: '>=0.10.0'}
  1106. has-flag@4.0.0:
  1107. resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
  1108. engines: {node: '>=8'}
  1109. has-symbols@1.1.0:
  1110. resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
  1111. engines: {node: '>= 0.4'}
  1112. has-tostringtag@1.0.2:
  1113. resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
  1114. engines: {node: '>= 0.4'}
  1115. hash-sum@1.0.2:
  1116. resolution: {integrity: sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA==}
  1117. hash-sum@2.0.0:
  1118. resolution: {integrity: sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==}
  1119. hasown@2.0.2:
  1120. resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
  1121. engines: {node: '>= 0.4'}
  1122. he@1.2.0:
  1123. resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
  1124. hasBin: true
  1125. html-tags@2.0.0:
  1126. resolution: {integrity: sha512-+Il6N8cCo2wB/Vd3gqy/8TZhTD3QvcVeQLCnZiGkGCH3JP28IgGAY41giccp2W4R3jfyJPAP318FQTa1yU7K7g==}
  1127. engines: {node: '>=4'}
  1128. html2canvas@1.4.1:
  1129. resolution: {integrity: sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==}
  1130. engines: {node: '>=8.0.0'}
  1131. hyperformula@1.3.1:
  1132. resolution: {integrity: sha512-9CdvkJSAy74PLaLQZf6mnvJGncE+ur2tmuZ6wB86E8M+A1hM9HeAJbl+6X3WjeZyvHle6UMV8b0uSNkjGxecKQ==}
  1133. iconv-lite@0.4.24:
  1134. resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
  1135. engines: {node: '>=0.10.0'}
  1136. iconv-lite@0.6.3:
  1137. resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
  1138. engines: {node: '>=0.10.0'}
  1139. ieee754@1.2.1:
  1140. resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
  1141. image-size@0.5.5:
  1142. resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==}
  1143. engines: {node: '>=0.10.0'}
  1144. hasBin: true
  1145. immediate@3.0.6:
  1146. resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==}
  1147. inflight@1.0.6:
  1148. resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
  1149. deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
  1150. inherits@2.0.4:
  1151. resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
  1152. inquirer@3.0.6:
  1153. resolution: {integrity: sha512-thluxTGBXUGb8DuQcvH9/CM/CrcGyB5xUpWc9x6Slqcq1z/hRr2a6KxUpX4ddRfmbe0hg3E4jTvo5833aWz3BA==}
  1154. is-core-module@2.16.1:
  1155. resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
  1156. engines: {node: '>= 0.4'}
  1157. is-fullwidth-code-point@2.0.0:
  1158. resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==}
  1159. engines: {node: '>=4'}
  1160. is-promise@2.2.2:
  1161. resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==}
  1162. is-stream@1.1.0:
  1163. resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==}
  1164. engines: {node: '>=0.10.0'}
  1165. is-what@3.14.1:
  1166. resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==}
  1167. isarray@1.0.0:
  1168. resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
  1169. jest-diff@26.6.2:
  1170. resolution: {integrity: sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==}
  1171. engines: {node: '>= 10.14.2'}
  1172. jest-get-type@26.3.0:
  1173. resolution: {integrity: sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==}
  1174. engines: {node: '>= 10.14.2'}
  1175. js-cookie@3.0.5:
  1176. resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==}
  1177. engines: {node: '>=14'}
  1178. js-tokens@4.0.0:
  1179. resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
  1180. jsesc@3.1.0:
  1181. resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
  1182. engines: {node: '>=6'}
  1183. hasBin: true
  1184. json5@2.2.3:
  1185. resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
  1186. engines: {node: '>=6'}
  1187. hasBin: true
  1188. jsonfile@6.1.0:
  1189. resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
  1190. jszip@3.10.1:
  1191. resolution: {integrity: sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==}
  1192. lazystream@1.0.1:
  1193. resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==}
  1194. engines: {node: '>= 0.6.3'}
  1195. less@4.3.0:
  1196. resolution: {integrity: sha512-X9RyH9fvemArzfdP8Pi3irr7lor2Ok4rOttDXBhlwDg+wKQsXOXgHWduAJE1EsF7JJx0w0bcO6BC6tCKKYnXKA==}
  1197. engines: {node: '>=14'}
  1198. hasBin: true
  1199. lie@3.3.0:
  1200. resolution: {integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==}
  1201. linkify-it@2.2.0:
  1202. resolution: {integrity: sha512-GnAl/knGn+i1U/wjBz3akz2stz+HrHLsxMwHQGofCDfPvlf+gDKN58UtfmUquTY4/MXeE2x7k19KQmeoZi94Iw==}
  1203. listenercount@1.0.1:
  1204. resolution: {integrity: sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==}
  1205. lodash-es@4.17.21:
  1206. resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==}
  1207. lodash.defaults@4.2.0:
  1208. resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==}
  1209. lodash.difference@4.5.0:
  1210. resolution: {integrity: sha512-dS2j+W26TQ7taQBGN8Lbbq04ssV3emRw4NY58WErlTO29pIqS0HmoT5aJ9+TUQ1N3G+JOZSji4eugsWwGp9yPA==}
  1211. lodash.escaperegexp@4.1.2:
  1212. resolution: {integrity: sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==}
  1213. lodash.flatten@4.4.0:
  1214. resolution: {integrity: sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==}
  1215. lodash.groupby@4.6.0:
  1216. resolution: {integrity: sha512-5dcWxm23+VAoz+awKmBaiBvzox8+RqMgFhi7UvX9DHZr2HdxHXM/Wrf8cfKpsW37RNrvtPn6hSwNqurSILbmJw==}
  1217. lodash.isboolean@3.0.3:
  1218. resolution: {integrity: sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==}
  1219. lodash.isequal@4.5.0:
  1220. resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==}
  1221. deprecated: This package is deprecated. Use require('node:util').isDeepStrictEqual instead.
  1222. lodash.isfunction@3.0.9:
  1223. resolution: {integrity: sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==}
  1224. lodash.isnil@4.0.0:
  1225. resolution: {integrity: sha512-up2Mzq3545mwVnMhTDMdfoG1OurpA/s5t88JmQX809eH3C8491iu2sfKhTfhQtKY78oPNhiaHJUpT/dUDAAtng==}
  1226. lodash.isplainobject@4.0.6:
  1227. resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==}
  1228. lodash.isundefined@3.0.1:
  1229. resolution: {integrity: sha512-MXB1is3s899/cD8jheYYE2V9qTHwKvt+npCwpD+1Sxm3Q3cECXCiYHjeHWXNwr6Q0SOBPrYUDxendrO6goVTEA==}
  1230. lodash.kebabcase@4.1.1:
  1231. resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==}
  1232. lodash.union@4.6.0:
  1233. resolution: {integrity: sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw==}
  1234. lodash.uniq@4.5.0:
  1235. resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
  1236. lodash@4.17.21:
  1237. resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
  1238. lru-cache@4.1.5:
  1239. resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==}
  1240. lru-cache@5.1.1:
  1241. resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
  1242. magic-string@0.26.7:
  1243. resolution: {integrity: sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==}
  1244. engines: {node: '>=12'}
  1245. make-dir@2.1.0:
  1246. resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
  1247. engines: {node: '>=6'}
  1248. markdown-it@8.4.2:
  1249. resolution: {integrity: sha512-GcRz3AWTqSUphY3vsUqQSFMbgR38a4Lh3GWlHRh/7MRwz8mcu9n2IO7HOh+bXHrR9kOPDl5RNCaEsrneb+xhHQ==}
  1250. hasBin: true
  1251. material-colors@1.2.6:
  1252. resolution: {integrity: sha512-6qE4B9deFBIa9YSpOc9O0Sgc43zTeVYbgDT5veRKSlB2+ZuHNoVVxA1L/ckMUayV9Ay9y7Z/SZCLcGteW9i7bg==}
  1253. math-intrinsics@1.1.0:
  1254. resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
  1255. engines: {node: '>= 0.4'}
  1256. mdurl@1.0.1:
  1257. resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==}
  1258. merge-source-map@1.1.0:
  1259. resolution: {integrity: sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw==}
  1260. mime-db@1.52.0:
  1261. resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
  1262. engines: {node: '>= 0.6'}
  1263. mime-types@2.1.35:
  1264. resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
  1265. engines: {node: '>= 0.6'}
  1266. mime@1.6.0:
  1267. resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
  1268. engines: {node: '>=4'}
  1269. hasBin: true
  1270. mimic-fn@1.2.0:
  1271. resolution: {integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==}
  1272. engines: {node: '>=4'}
  1273. minimatch@3.1.2:
  1274. resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
  1275. minimatch@5.1.6:
  1276. resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
  1277. engines: {node: '>=10'}
  1278. minimist@1.2.0:
  1279. resolution: {integrity: sha512-7Wl+Jz+IGWuSdgsQEJ4JunV0si/iMhg42MnQQG6h1R6TNeVenp4U9x5CC5v/gYqz/fENLQITAWXidNtVL0NNbw==}
  1280. minimist@1.2.8:
  1281. resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
  1282. mkdirp@0.5.6:
  1283. resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
  1284. hasBin: true
  1285. moment@2.24.0:
  1286. resolution: {integrity: sha512-bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg==}
  1287. moment@2.30.1:
  1288. resolution: {integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==}
  1289. ms@2.1.3:
  1290. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  1291. mute-stream@0.0.7:
  1292. resolution: {integrity: sha512-r65nCZhrbXXb6dXOACihYApHw2Q6pV0M3V0PSxd74N0+D8nzAdEAITq2oAjA1jVnKI+tGvEBUpqiMh0+rW6zDQ==}
  1293. nanoid@3.3.11:
  1294. resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
  1295. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  1296. hasBin: true
  1297. needle@3.3.1:
  1298. resolution: {integrity: sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==}
  1299. engines: {node: '>= 4.4.x'}
  1300. hasBin: true
  1301. node-dir@0.1.17:
  1302. resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==}
  1303. engines: {node: '>= 0.10.5'}
  1304. node-fetch@1.6.3:
  1305. resolution: {integrity: sha512-BDxbhLHXFFFvilHjh9xihcDyPkXQ+kjblxnl82zAX41xUYSNvuRpFRznmldR9+OKu+p+ULZ7hNoyunlLB5ecUA==}
  1306. node-releases@2.0.19:
  1307. resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
  1308. normalize-path@3.0.0:
  1309. resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
  1310. engines: {node: '>=0.10.0'}
  1311. normalize-wheel@1.0.1:
  1312. resolution: {integrity: sha512-1OnlAPZ3zgrk8B91HyRj+eVv+kS5u+Z0SCsak6Xil/kmgEia50ga7zfkumayonZrImffAxPU/5WcyGhzetHNPA==}
  1313. numbro@2.1.2:
  1314. resolution: {integrity: sha512-7w833BxZmKGLE9HI0aREtNVRVH6WTYUUlWf4qgA5gKNhPQ4F/MRZ14sc0v8eoLORprk9ZTVwYaLwj8N3Zgxwiw==}
  1315. object-assign@4.1.1:
  1316. resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
  1317. engines: {node: '>=0.10.0'}
  1318. once@1.4.0:
  1319. resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
  1320. onetime@2.0.1:
  1321. resolution: {integrity: sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==}
  1322. engines: {node: '>=4'}
  1323. opencollective-postinstall@2.0.3:
  1324. resolution: {integrity: sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==}
  1325. hasBin: true
  1326. opencollective@1.0.3:
  1327. resolution: {integrity: sha512-YBRI0Qa8+Ui0/STV1qYuPrJm889PT3oCPHMVoL+8Y3nwCffj7PSrB2NlGgrhgBKDujxTjxknHWJ/FiqOsYcIDw==}
  1328. hasBin: true
  1329. opn@4.0.2:
  1330. resolution: {integrity: sha512-iPBWbPP4OEOzR1xfhpGLDh+ypKBOygunZhM9jBtA7FS5sKjEiMZw0EFb82hnDOmTZX90ZWLoZKUza4cVt8MexA==}
  1331. engines: {node: '>=0.10.0'}
  1332. os-tmpdir@1.0.2:
  1333. resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
  1334. engines: {node: '>=0.10.0'}
  1335. pako@1.0.11:
  1336. resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==}
  1337. parse-node-version@1.0.1:
  1338. resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==}
  1339. engines: {node: '>= 0.10'}
  1340. path-is-absolute@1.0.1:
  1341. resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
  1342. engines: {node: '>=0.10.0'}
  1343. path-parse@1.0.7:
  1344. resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
  1345. pdfjs-dist@2.4.456:
  1346. resolution: {integrity: sha512-yckJEHq3F48hcp6wStEpbN9McOj328Ib09UrBlGAKxvN2k+qYPN5iq6TH6jD1C0pso7zTep+g/CKsYgdrQd5QA==}
  1347. picocolors@0.2.1:
  1348. resolution: {integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==}
  1349. picocolors@1.1.1:
  1350. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  1351. picomatch@2.3.1:
  1352. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  1353. engines: {node: '>=8.6'}
  1354. pify@4.0.1:
  1355. resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
  1356. engines: {node: '>=6'}
  1357. pikaday@1.8.0:
  1358. resolution: {integrity: sha512-SgGxMYX0NHj9oQnMaSyAipr2gOrbB4Lfs/TJTb6H6hRHs39/5c5VZi73Q8hr53+vWjdn6HzkWcj8Vtl3c9ziaA==}
  1359. pinkie-promise@2.0.1:
  1360. resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==}
  1361. engines: {node: '>=0.10.0'}
  1362. pinkie@2.0.4:
  1363. resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==}
  1364. engines: {node: '>=0.10.0'}
  1365. postcss-selector-parser@6.1.2:
  1366. resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
  1367. engines: {node: '>=4'}
  1368. postcss@7.0.39:
  1369. resolution: {integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==}
  1370. engines: {node: '>=6.0.0'}
  1371. postcss@8.5.3:
  1372. resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
  1373. engines: {node: ^10 || ^12 || >=14}
  1374. pptxtojson@1.3.1:
  1375. resolution: {integrity: sha512-+FcSS70PTkgdlExXCEUoNL2DZcySueonyYpnQANeD6BW1AX8313o6zF71t5wN7tnO1cxh1p0/J90fBV5yMzTCA==}
  1376. prettier@2.8.8:
  1377. resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
  1378. engines: {node: '>=10.13.0'}
  1379. hasBin: true
  1380. pretty-format@26.6.2:
  1381. resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==}
  1382. engines: {node: '>= 10'}
  1383. process-nextick-args@2.0.1:
  1384. resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
  1385. proxy-from-env@1.1.0:
  1386. resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
  1387. prr@1.0.1:
  1388. resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
  1389. pseudomap@1.0.2:
  1390. resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==}
  1391. querystring@0.2.1:
  1392. resolution: {integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==}
  1393. engines: {node: '>=0.4.x'}
  1394. deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
  1395. react-is@17.0.2:
  1396. resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
  1397. readable-stream@2.3.8:
  1398. resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
  1399. readable-stream@3.6.2:
  1400. resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
  1401. engines: {node: '>= 6'}
  1402. readdir-glob@1.1.3:
  1403. resolution: {integrity: sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==}
  1404. regenerator-runtime@0.10.5:
  1405. resolution: {integrity: sha512-02YopEIhAgiBHWeoTiA8aitHDt8z6w+rQqNuIftlM+ZtvSl/brTouaU7DW6GO/cHtvxJvS4Hwv2ibKdxIRi24w==}
  1406. regenerator-runtime@0.11.1:
  1407. resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==}
  1408. regenerator-runtime@0.13.11:
  1409. resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
  1410. regenerator-runtime@0.14.1:
  1411. resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
  1412. regexp-to-ast@0.4.0:
  1413. resolution: {integrity: sha512-4qf/7IsIKfSNHQXSwial1IFmfM1Cc/whNBQqRwe0V2stPe7KmN1U0tWQiIx6JiirgSrisjE0eECdNf7Tav1Ntw==}
  1414. resize-observer-polyfill@1.5.1:
  1415. resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==}
  1416. resolve@1.22.10:
  1417. resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
  1418. engines: {node: '>= 0.4'}
  1419. hasBin: true
  1420. restore-cursor@2.0.0:
  1421. resolution: {integrity: sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==}
  1422. engines: {node: '>=4'}
  1423. rimraf@2.7.1:
  1424. resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
  1425. deprecated: Rimraf versions prior to v4 are no longer supported
  1426. hasBin: true
  1427. rollup@2.77.3:
  1428. resolution: {integrity: sha512-/qxNTG7FbmefJWoeeYJFbHehJ2HNWnjkAFRKzWN/45eNBBF/r8lo992CwcJXEzyVxs5FmfId+vTSTQDb+bxA+g==}
  1429. engines: {node: '>=10.0.0'}
  1430. hasBin: true
  1431. rollup@2.79.2:
  1432. resolution: {integrity: sha512-fS6iqSPZDs3dr/y7Od6y5nha8dW1YnbgtsyotCVvoFGKbERG++CVRFv1meyGDE1SNItQA8BrnCw7ScdAhRJ3XQ==}
  1433. engines: {node: '>=10.0.0'}
  1434. hasBin: true
  1435. run-async@2.4.1:
  1436. resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==}
  1437. engines: {node: '>=0.12.0'}
  1438. rx@4.1.0:
  1439. resolution: {integrity: sha512-CiaiuN6gapkdl+cZUr67W6I8jquN4lkak3vtIsIWCl4XIPP8ffsoyN6/+PuGXnQy8Cu8W2y9Xxh31Rq4M6wUug==}
  1440. safe-buffer@5.1.2:
  1441. resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
  1442. safer-buffer@2.1.2:
  1443. resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
  1444. sax@1.4.1:
  1445. resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==}
  1446. saxes@5.0.1:
  1447. resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==}
  1448. engines: {node: '>=10'}
  1449. semver@5.7.2:
  1450. resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
  1451. hasBin: true
  1452. semver@6.3.1:
  1453. resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
  1454. hasBin: true
  1455. setimmediate@1.0.5:
  1456. resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
  1457. signal-exit@3.0.7:
  1458. resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
  1459. slash@3.0.0:
  1460. resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
  1461. engines: {node: '>=8'}
  1462. source-map-js@1.2.1:
  1463. resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  1464. engines: {node: '>=0.10.0'}
  1465. source-map@0.6.1:
  1466. resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
  1467. engines: {node: '>=0.10.0'}
  1468. source-map@0.7.4:
  1469. resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
  1470. engines: {node: '>= 8'}
  1471. sourcemap-codec@1.4.8:
  1472. resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==}
  1473. deprecated: Please use @jridgewell/sourcemap-codec instead
  1474. sprintf-js@1.0.3:
  1475. resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
  1476. ssf@0.11.2:
  1477. resolution: {integrity: sha512-+idbmIXoYET47hH+d7dfm2epdOMUDjqcB4648sTZ+t2JwoyBFL/insLfB/racrDmsKB3diwsDA696pZMieAC5g==}
  1478. engines: {node: '>=0.8'}
  1479. string-width@2.1.1:
  1480. resolution: {integrity: sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==}
  1481. engines: {node: '>=4'}
  1482. string_decoder@1.1.1:
  1483. resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
  1484. strip-ansi@3.0.1:
  1485. resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==}
  1486. engines: {node: '>=0.10.0'}
  1487. strip-ansi@4.0.0:
  1488. resolution: {integrity: sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==}
  1489. engines: {node: '>=4'}
  1490. supports-color@2.0.0:
  1491. resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==}
  1492. engines: {node: '>=0.8.0'}
  1493. supports-color@7.2.0:
  1494. resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
  1495. engines: {node: '>=8'}
  1496. supports-preserve-symlinks-flag@1.0.0:
  1497. resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
  1498. engines: {node: '>= 0.4'}
  1499. svg-tags@1.0.0:
  1500. resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==}
  1501. tar-stream@2.2.0:
  1502. resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
  1503. engines: {node: '>=6'}
  1504. text-segmentation@1.0.3:
  1505. resolution: {integrity: sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==}
  1506. throttle-debounce@1.1.0:
  1507. resolution: {integrity: sha512-XH8UiPCQcWNuk2LYePibW/4qL97+ZQ1AN3FNXwZRBNPPowo/NRU5fAlDCSNBJIYCKbioZfuYtMhG4quqoJhVzg==}
  1508. engines: {node: '>=4'}
  1509. throttle-debounce@3.0.1:
  1510. resolution: {integrity: sha512-dTEWWNu6JmeVXY0ZYoPuH5cRIwc0MeGbJwah9KUNYSJwommQpCzTySTpEe8Gs1J23aeWEuAobe4Ag7EHVt/LOg==}
  1511. engines: {node: '>=10'}
  1512. through2@3.0.2:
  1513. resolution: {integrity: sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==}
  1514. through@2.3.8:
  1515. resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
  1516. tiny-emitter@2.1.0:
  1517. resolution: {integrity: sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==}
  1518. tinycolor2@1.6.0:
  1519. resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==}
  1520. tmp@0.0.33:
  1521. resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
  1522. engines: {node: '>=0.6.0'}
  1523. tmp@0.2.3:
  1524. resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==}
  1525. engines: {node: '>=14.14'}
  1526. traverse@0.3.9:
  1527. resolution: {integrity: sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ==}
  1528. tslib@2.8.1:
  1529. resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
  1530. txml@5.1.1:
  1531. resolution: {integrity: sha512-TwMDLnXQ09enNaxybLVvKZU7rqog8LgnuAs4ZYXM0nV0eu10iLsSFwlX3AEknAXXtH1wT3CYfoiXAjyBexcmuw==}
  1532. typescript@5.7.3:
  1533. resolution: {integrity: sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==}
  1534. engines: {node: '>=14.17'}
  1535. hasBin: true
  1536. uc.micro@1.0.6:
  1537. resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==}
  1538. universalify@2.0.1:
  1539. resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
  1540. engines: {node: '>= 10.0.0'}
  1541. unorm@1.6.0:
  1542. resolution: {integrity: sha512-b2/KCUlYZUeA7JFUuRJZPUtr4gZvBh7tavtv4fvk4+KV9pfGiR6CQAQAWl49ZpR3ts2dk4FYkP7EIgDJoiOLDA==}
  1543. engines: {node: '>= 0.4.0'}
  1544. unzipper@0.10.14:
  1545. resolution: {integrity: sha512-ti4wZj+0bQTiX2KmKWuwj7lhV+2n//uXEotUmGuQqrbVZSEGFMbI68+c6JCQ8aAmUWYvtHEz2A8K6wXvueR/6g==}
  1546. update-browserslist-db@1.1.3:
  1547. resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==}
  1548. hasBin: true
  1549. peerDependencies:
  1550. browserslist: '>= 4.21.0'
  1551. util-deprecate@1.0.2:
  1552. resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
  1553. utrie@1.0.2:
  1554. resolution: {integrity: sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw==}
  1555. uuid@8.3.2:
  1556. resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
  1557. hasBin: true
  1558. vite-plugin-vue2@2.0.3:
  1559. resolution: {integrity: sha512-t3Tu93GWsMHbpeIv66MTO5e/rRAo8/+/eWoUtFYuAdKDMyEnn1dqsrXh+CfG+SJAlxJvcTP8U0eXkzhLjKNyMg==}
  1560. peerDependencies:
  1561. vite: ^2.0.0 || ^3.0.0 || ^4.0.0
  1562. vue-template-compiler: ^2.2.0
  1563. vite@2.9.18:
  1564. resolution: {integrity: sha512-sAOqI5wNM9QvSEE70W3UGMdT8cyEn0+PmJMTFvTB8wB0YbYUWw3gUbY62AOyrXosGieF2htmeLATvNxpv/zNyQ==}
  1565. engines: {node: '>=12.2.0'}
  1566. hasBin: true
  1567. peerDependencies:
  1568. less: '*'
  1569. sass: '*'
  1570. stylus: '*'
  1571. peerDependenciesMeta:
  1572. less:
  1573. optional: true
  1574. sass:
  1575. optional: true
  1576. stylus:
  1577. optional: true
  1578. vue-baidu-map@0.21.22:
  1579. resolution: {integrity: sha512-WQMPCih4UTh0AZCKKH/OVOYnyAWjfRNeK6BIeoLmscyY5aF8zzlJhz/NOHLb3mdztIpB0Z6aohn4Jd9mfCSjQw==}
  1580. peerDependencies:
  1581. vue: ^2.1.8
  1582. vue-class-component@7.2.6:
  1583. resolution: {integrity: sha512-+eaQXVrAm/LldalI272PpDe3+i4mPis0ORiMYxF6Ae4hyuCh15W8Idet7wPUEs4N4YptgFHGys4UrgNQOMyO6w==}
  1584. peerDependencies:
  1585. vue: ^2.0.0
  1586. vue-cropper@0.5.11:
  1587. resolution: {integrity: sha512-UeA3qL2BLCTGkOEAxEsxSNFO+qLYAn6YRHv4oS32cP9lMhF1vFmnAf/z+ZamtR0/Fh3sbZeZUCLVR2Ol2/dpTQ==}
  1588. vue-property-decorator@8.5.1:
  1589. resolution: {integrity: sha512-O6OUN2OMsYTGPvgFtXeBU3jPnX5ffQ9V4I1WfxFQ6dqz6cOUbR3Usou7kgFpfiXDvV7dJQSFcJ5yUPgOtPPm1Q==}
  1590. peerDependencies:
  1591. vue: '*'
  1592. vue-router@3.6.5:
  1593. resolution: {integrity: sha512-VYXZQLtjuvKxxcshuRAwjHnciqZVoXAjTjcqBTz4rKc8qih9g9pI3hbDjmqXaHdgL3v8pV6P8Z335XvHzESxLQ==}
  1594. peerDependencies:
  1595. vue: ^2
  1596. vue-template-babel-compiler@1.2.0:
  1597. resolution: {integrity: sha512-CScBSX1/wCdmmZ/Lvj/63p2CCVTS0FMj0F69VRBo73CuJrjvPAPGmeNJ7D/cwt/VS2PduowRWbO8N4Zh4Z3b0g==}
  1598. engines: {node: '>=12.0.0'}
  1599. peerDependencies:
  1600. vue-template-compiler: ^2.6.0
  1601. vue-template-compiler@2.7.16:
  1602. resolution: {integrity: sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ==}
  1603. vue-template-es2015-compiler@1.9.1:
  1604. resolution: {integrity: sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==}
  1605. vue-virtual-scroll-list@2.3.5:
  1606. resolution: {integrity: sha512-YFK6u5yltqtAOfTBcij/KGAS2SoZvzbNIAf9qTULauPObEp53xj22tDuohrrM2vNkgoD5kejXICIUBt2Q4ZDqQ==}
  1607. vue@2.6.11:
  1608. resolution: {integrity: sha512-VfPwgcGABbGAue9+sfrD4PuwFar7gPb1yl1UK1MwXoQPAw0BKSqWfoYCT/ThFrdEVWoI51dBuyCoiNU9bZDZxQ==}
  1609. deprecated: Vue 2 has reached EOL and is no longer actively maintained. See https://v2.vuejs.org/eol/ for more details.
  1610. vue@2.7.16:
  1611. resolution: {integrity: sha512-4gCtFXaAA3zYZdTp5s4Hl2sozuySsgz4jy1EnpBHNfpMa9dK1ZCG7viqBPCwXtmgc8nHqUsAu3G4gtmXkkY3Sw==}
  1612. deprecated: Vue 2 has reached EOL and is no longer actively maintained. See https://v2.vuejs.org/eol/ for more details.
  1613. vuex@3.6.2:
  1614. resolution: {integrity: sha512-ETW44IqCgBpVomy520DT5jf8n0zoCac+sxWnn+hMe/CzaSejb/eVw2YToiXYX+Ex/AuHHia28vWTq4goAexFbw==}
  1615. peerDependencies:
  1616. vue: ^2.0.0
  1617. watch-size@2.0.0:
  1618. resolution: {integrity: sha512-M92R89dNoTPWyCD+HuUEDdhaDnh9jxPGOwlDc0u51jAgmjUvzqaEMynXSr3BaWs+QdHYk4KzibPy1TFtjLmOZQ==}
  1619. wisdom-ui@1.0.4-beta.6:
  1620. resolution: {integrity: sha512-7E9Q44CjpQdaxFapo0+u6gJqje7+gtTyahxamj5JgYUbuNSwdEOqPKwRNc7acWIQDRrwwsj3yrL0CCD5y2E6JQ==}
  1621. wmf@1.0.2:
  1622. resolution: {integrity: sha512-/p9K7bEh0Dj6WbXg4JG0xvLQmIadrner1bi45VMJTfnbVHsc7yIajZyoSoK60/dtVBs12Fm6WkUI5/3WAVsNMw==}
  1623. engines: {node: '>=0.8'}
  1624. word@0.3.0:
  1625. resolution: {integrity: sha512-OELeY0Q61OXpdUfTp+oweA/vtLVg5VDOXh+3he3PNzLGG/y0oylSOC1xRVj0+l4vQ3tj/bB1HVHv1ocXkQceFA==}
  1626. engines: {node: '>=0.8'}
  1627. wrappy@1.0.2:
  1628. resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
  1629. x-data-spreadsheet@1.1.9:
  1630. resolution: {integrity: sha512-wk7knDBYdHjtWiHUVQryZMy00dsGNCF+6wMb5ykwEFcAtBYkYZakJCOCHpEo8onC0Lb/q2gIynWpbQxA4qakyg==}
  1631. xlsx@0.18.5:
  1632. resolution: {integrity: sha512-dmg3LCjBPHZnQp5/F/+nnTa+miPJxUXB6vtk42YjBBKayDNagxGEeIdWApkYPOf3Z3pm3k62Knjzp7lMeTEtFQ==}
  1633. engines: {node: '>=0.8'}
  1634. hasBin: true
  1635. xmlchars@2.2.0:
  1636. resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
  1637. yallist@2.1.2:
  1638. resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==}
  1639. yallist@3.1.1:
  1640. resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
  1641. zip-stream@4.1.1:
  1642. resolution: {integrity: sha512-9qv4rlDiopXg4E69k+vMHjNN63YFMe9sZMrdlvKnCjlCRWeCBswPPMPUfx+ipsAWq1LXHe70RcbaHdJJpS6hyQ==}
  1643. engines: {node: '>= 10'}
  1644. snapshots:
  1645. '@ampproject/remapping@2.3.0':
  1646. dependencies:
  1647. '@jridgewell/gen-mapping': 0.3.8
  1648. '@jridgewell/trace-mapping': 0.3.25
  1649. '@babel/code-frame@7.26.2':
  1650. dependencies:
  1651. '@babel/helper-validator-identifier': 7.25.9
  1652. js-tokens: 4.0.0
  1653. picocolors: 1.1.1
  1654. '@babel/compat-data@7.26.8': {}
  1655. '@babel/core@7.26.10':
  1656. dependencies:
  1657. '@ampproject/remapping': 2.3.0
  1658. '@babel/code-frame': 7.26.2
  1659. '@babel/generator': 7.27.0
  1660. '@babel/helper-compilation-targets': 7.27.0
  1661. '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10)
  1662. '@babel/helpers': 7.27.0
  1663. '@babel/parser': 7.27.0
  1664. '@babel/template': 7.27.0
  1665. '@babel/traverse': 7.27.0
  1666. '@babel/types': 7.27.0
  1667. convert-source-map: 2.0.0
  1668. debug: 4.4.0
  1669. gensync: 1.0.0-beta.2
  1670. json5: 2.2.3
  1671. semver: 6.3.1
  1672. transitivePeerDependencies:
  1673. - supports-color
  1674. '@babel/generator@7.27.0':
  1675. dependencies:
  1676. '@babel/parser': 7.27.0
  1677. '@babel/types': 7.27.0
  1678. '@jridgewell/gen-mapping': 0.3.8
  1679. '@jridgewell/trace-mapping': 0.3.25
  1680. jsesc: 3.1.0
  1681. '@babel/helper-annotate-as-pure@7.25.9':
  1682. dependencies:
  1683. '@babel/types': 7.27.0
  1684. '@babel/helper-compilation-targets@7.27.0':
  1685. dependencies:
  1686. '@babel/compat-data': 7.26.8
  1687. '@babel/helper-validator-option': 7.25.9
  1688. browserslist: 4.24.4
  1689. lru-cache: 5.1.1
  1690. semver: 6.3.1
  1691. '@babel/helper-create-class-features-plugin@7.27.0(@babel/core@7.26.10)':
  1692. dependencies:
  1693. '@babel/core': 7.26.10
  1694. '@babel/helper-annotate-as-pure': 7.25.9
  1695. '@babel/helper-member-expression-to-functions': 7.25.9
  1696. '@babel/helper-optimise-call-expression': 7.25.9
  1697. '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.10)
  1698. '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
  1699. '@babel/traverse': 7.27.0
  1700. semver: 6.3.1
  1701. transitivePeerDependencies:
  1702. - supports-color
  1703. '@babel/helper-member-expression-to-functions@7.25.9':
  1704. dependencies:
  1705. '@babel/traverse': 7.27.0
  1706. '@babel/types': 7.27.0
  1707. transitivePeerDependencies:
  1708. - supports-color
  1709. '@babel/helper-module-imports@7.25.9':
  1710. dependencies:
  1711. '@babel/traverse': 7.27.0
  1712. '@babel/types': 7.27.0
  1713. transitivePeerDependencies:
  1714. - supports-color
  1715. '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.10)':
  1716. dependencies:
  1717. '@babel/core': 7.26.10
  1718. '@babel/helper-module-imports': 7.25.9
  1719. '@babel/helper-validator-identifier': 7.25.9
  1720. '@babel/traverse': 7.27.0
  1721. transitivePeerDependencies:
  1722. - supports-color
  1723. '@babel/helper-optimise-call-expression@7.25.9':
  1724. dependencies:
  1725. '@babel/types': 7.27.0
  1726. '@babel/helper-plugin-utils@7.26.5': {}
  1727. '@babel/helper-replace-supers@7.26.5(@babel/core@7.26.10)':
  1728. dependencies:
  1729. '@babel/core': 7.26.10
  1730. '@babel/helper-member-expression-to-functions': 7.25.9
  1731. '@babel/helper-optimise-call-expression': 7.25.9
  1732. '@babel/traverse': 7.27.0
  1733. transitivePeerDependencies:
  1734. - supports-color
  1735. '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
  1736. dependencies:
  1737. '@babel/traverse': 7.27.0
  1738. '@babel/types': 7.27.0
  1739. transitivePeerDependencies:
  1740. - supports-color
  1741. '@babel/helper-string-parser@7.25.9': {}
  1742. '@babel/helper-validator-identifier@7.25.9': {}
  1743. '@babel/helper-validator-option@7.25.9': {}
  1744. '@babel/helpers@7.27.0':
  1745. dependencies:
  1746. '@babel/template': 7.27.0
  1747. '@babel/types': 7.27.0
  1748. '@babel/parser@7.27.0':
  1749. dependencies:
  1750. '@babel/types': 7.27.0
  1751. '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.26.10)':
  1752. dependencies:
  1753. '@babel/core': 7.26.10
  1754. '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10)
  1755. '@babel/helper-plugin-utils': 7.26.5
  1756. transitivePeerDependencies:
  1757. - supports-color
  1758. '@babel/plugin-proposal-decorators@7.25.9(@babel/core@7.26.10)':
  1759. dependencies:
  1760. '@babel/core': 7.26.10
  1761. '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10)
  1762. '@babel/helper-plugin-utils': 7.26.5
  1763. '@babel/plugin-syntax-decorators': 7.25.9(@babel/core@7.26.10)
  1764. transitivePeerDependencies:
  1765. - supports-color
  1766. '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.26.10)':
  1767. dependencies:
  1768. '@babel/core': 7.26.10
  1769. '@babel/helper-plugin-utils': 7.26.5
  1770. '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.10)
  1771. '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.26.10)':
  1772. dependencies:
  1773. '@babel/compat-data': 7.26.8
  1774. '@babel/core': 7.26.10
  1775. '@babel/helper-compilation-targets': 7.27.0
  1776. '@babel/helper-plugin-utils': 7.26.5
  1777. '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.10)
  1778. '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.10)
  1779. '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.26.10)':
  1780. dependencies:
  1781. '@babel/core': 7.26.10
  1782. '@babel/helper-plugin-utils': 7.26.5
  1783. '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
  1784. '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.10)
  1785. transitivePeerDependencies:
  1786. - supports-color
  1787. '@babel/plugin-syntax-decorators@7.25.9(@babel/core@7.26.10)':
  1788. dependencies:
  1789. '@babel/core': 7.26.10
  1790. '@babel/helper-plugin-utils': 7.26.5
  1791. '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.10)':
  1792. dependencies:
  1793. '@babel/core': 7.26.10
  1794. '@babel/helper-plugin-utils': 7.26.5
  1795. '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.26.10)':
  1796. dependencies:
  1797. '@babel/core': 7.26.10
  1798. '@babel/helper-plugin-utils': 7.26.5
  1799. '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.26.10)':
  1800. dependencies:
  1801. '@babel/core': 7.26.10
  1802. '@babel/helper-plugin-utils': 7.26.5
  1803. '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.26.10)':
  1804. dependencies:
  1805. '@babel/core': 7.26.10
  1806. '@babel/helper-plugin-utils': 7.26.5
  1807. '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.10)':
  1808. dependencies:
  1809. '@babel/core': 7.26.10
  1810. '@babel/helper-plugin-utils': 7.26.5
  1811. '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.10)':
  1812. dependencies:
  1813. '@babel/core': 7.26.10
  1814. '@babel/helper-plugin-utils': 7.26.5
  1815. '@babel/plugin-transform-block-scoping@7.27.0(@babel/core@7.26.10)':
  1816. dependencies:
  1817. '@babel/core': 7.26.10
  1818. '@babel/helper-plugin-utils': 7.26.5
  1819. '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.10)':
  1820. dependencies:
  1821. '@babel/core': 7.26.10
  1822. '@babel/helper-plugin-utils': 7.26.5
  1823. '@babel/template': 7.27.0
  1824. '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.10)':
  1825. dependencies:
  1826. '@babel/core': 7.26.10
  1827. '@babel/helper-plugin-utils': 7.26.5
  1828. '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.10)':
  1829. dependencies:
  1830. '@babel/core': 7.26.10
  1831. '@babel/helper-plugin-utils': 7.26.5
  1832. '@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.10)':
  1833. dependencies:
  1834. '@babel/core': 7.26.10
  1835. '@babel/helper-plugin-utils': 7.26.5
  1836. '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
  1837. transitivePeerDependencies:
  1838. - supports-color
  1839. '@babel/plugin-transform-typescript@7.27.0(@babel/core@7.26.10)':
  1840. dependencies:
  1841. '@babel/core': 7.26.10
  1842. '@babel/helper-annotate-as-pure': 7.25.9
  1843. '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10)
  1844. '@babel/helper-plugin-utils': 7.26.5
  1845. '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
  1846. '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.10)
  1847. transitivePeerDependencies:
  1848. - supports-color
  1849. '@babel/runtime@7.27.0':
  1850. dependencies:
  1851. regenerator-runtime: 0.14.1
  1852. '@babel/template@7.27.0':
  1853. dependencies:
  1854. '@babel/code-frame': 7.26.2
  1855. '@babel/parser': 7.27.0
  1856. '@babel/types': 7.27.0
  1857. '@babel/traverse@7.27.0':
  1858. dependencies:
  1859. '@babel/code-frame': 7.26.2
  1860. '@babel/generator': 7.27.0
  1861. '@babel/parser': 7.27.0
  1862. '@babel/template': 7.27.0
  1863. '@babel/types': 7.27.0
  1864. debug: 4.4.0
  1865. globals: 11.12.0
  1866. transitivePeerDependencies:
  1867. - supports-color
  1868. '@babel/types@7.27.0':
  1869. dependencies:
  1870. '@babel/helper-string-parser': 7.25.9
  1871. '@babel/helper-validator-identifier': 7.25.9
  1872. '@esbuild/linux-loong64@0.14.54':
  1873. optional: true
  1874. '@fast-csv/format@4.3.5':
  1875. dependencies:
  1876. '@types/node': 14.18.63
  1877. lodash.escaperegexp: 4.1.2
  1878. lodash.isboolean: 3.0.3
  1879. lodash.isequal: 4.5.0
  1880. lodash.isfunction: 3.0.9
  1881. lodash.isnil: 4.0.0
  1882. '@fast-csv/parse@4.3.6':
  1883. dependencies:
  1884. '@types/node': 14.18.63
  1885. lodash.escaperegexp: 4.1.2
  1886. lodash.groupby: 4.6.0
  1887. lodash.isfunction: 3.0.9
  1888. lodash.isnil: 4.0.0
  1889. lodash.isundefined: 3.0.1
  1890. lodash.uniq: 4.5.0
  1891. '@handsontable/vue@15.2.0(handsontable@11.1.0)(vue@2.7.16)':
  1892. dependencies:
  1893. handsontable: 11.1.0
  1894. vue: 2.7.16
  1895. '@jest/types@26.6.2':
  1896. dependencies:
  1897. '@types/istanbul-lib-coverage': 2.0.6
  1898. '@types/istanbul-reports': 3.0.4
  1899. '@types/node': 14.18.63
  1900. '@types/yargs': 15.0.19
  1901. chalk: 4.1.2
  1902. '@jridgewell/gen-mapping@0.3.8':
  1903. dependencies:
  1904. '@jridgewell/set-array': 1.2.1
  1905. '@jridgewell/sourcemap-codec': 1.5.0
  1906. '@jridgewell/trace-mapping': 0.3.25
  1907. '@jridgewell/resolve-uri@3.1.2': {}
  1908. '@jridgewell/set-array@1.2.1': {}
  1909. '@jridgewell/sourcemap-codec@1.5.0': {}
  1910. '@jridgewell/trace-mapping@0.3.25':
  1911. dependencies:
  1912. '@jridgewell/resolve-uri': 3.1.2
  1913. '@jridgewell/sourcemap-codec': 1.5.0
  1914. '@lifetech-inc/x-data-spreadsheet@1.0.17':
  1915. dependencies:
  1916. opencollective: 1.0.3
  1917. opencollective-postinstall: 2.0.3
  1918. '@originjs/vite-plugin-require-context@1.0.9':
  1919. dependencies:
  1920. '@types/jest': 26.0.24
  1921. node-dir: 0.1.17
  1922. '@riophae/vue-treeselect@0.4.0(vue@2.6.11)':
  1923. dependencies:
  1924. '@babel/runtime': 7.27.0
  1925. babel-helper-vue-jsx-merge-props: 2.0.3
  1926. easings-css: 1.0.0
  1927. fuzzysearch: 1.0.3
  1928. is-promise: 2.2.2
  1929. lodash: 4.17.21
  1930. material-colors: 1.2.6
  1931. vue: 2.6.11
  1932. watch-size: 2.0.0
  1933. '@rollup/pluginutils@4.2.1':
  1934. dependencies:
  1935. estree-walker: 2.0.2
  1936. picomatch: 2.3.1
  1937. '@types/istanbul-lib-coverage@2.0.6': {}
  1938. '@types/istanbul-lib-report@3.0.3':
  1939. dependencies:
  1940. '@types/istanbul-lib-coverage': 2.0.6
  1941. '@types/istanbul-reports@3.0.4':
  1942. dependencies:
  1943. '@types/istanbul-lib-report': 3.0.3
  1944. '@types/jest@26.0.24':
  1945. dependencies:
  1946. jest-diff: 26.6.2
  1947. pretty-format: 26.6.2
  1948. '@types/node@14.18.63': {}
  1949. '@types/pikaday@1.7.4':
  1950. dependencies:
  1951. moment: 2.30.1
  1952. '@types/yargs-parser@21.0.3': {}
  1953. '@types/yargs@15.0.19':
  1954. dependencies:
  1955. '@types/yargs-parser': 21.0.3
  1956. '@vue/babel-helper-vue-jsx-merge-props@1.4.0': {}
  1957. '@vue/babel-plugin-transform-vue-jsx@1.4.0(@babel/core@7.26.10)':
  1958. dependencies:
  1959. '@babel/core': 7.26.10
  1960. '@babel/helper-module-imports': 7.25.9
  1961. '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.10)
  1962. '@vue/babel-helper-vue-jsx-merge-props': 1.4.0
  1963. html-tags: 2.0.0
  1964. lodash.kebabcase: 4.1.1
  1965. svg-tags: 1.0.0
  1966. transitivePeerDependencies:
  1967. - supports-color
  1968. '@vue/babel-preset-jsx@1.4.0(@babel/core@7.26.10)(vue@2.7.16)':
  1969. dependencies:
  1970. '@babel/core': 7.26.10
  1971. '@vue/babel-helper-vue-jsx-merge-props': 1.4.0
  1972. '@vue/babel-plugin-transform-vue-jsx': 1.4.0(@babel/core@7.26.10)
  1973. '@vue/babel-sugar-composition-api-inject-h': 1.4.0(@babel/core@7.26.10)
  1974. '@vue/babel-sugar-composition-api-render-instance': 1.4.0(@babel/core@7.26.10)
  1975. '@vue/babel-sugar-functional-vue': 1.4.0(@babel/core@7.26.10)
  1976. '@vue/babel-sugar-inject-h': 1.4.0(@babel/core@7.26.10)
  1977. '@vue/babel-sugar-v-model': 1.4.0(@babel/core@7.26.10)
  1978. '@vue/babel-sugar-v-on': 1.4.0(@babel/core@7.26.10)
  1979. optionalDependencies:
  1980. vue: 2.7.16
  1981. transitivePeerDependencies:
  1982. - supports-color
  1983. '@vue/babel-sugar-composition-api-inject-h@1.4.0(@babel/core@7.26.10)':
  1984. dependencies:
  1985. '@babel/core': 7.26.10
  1986. '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.10)
  1987. '@vue/babel-sugar-composition-api-render-instance@1.4.0(@babel/core@7.26.10)':
  1988. dependencies:
  1989. '@babel/core': 7.26.10
  1990. '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.10)
  1991. '@vue/babel-sugar-functional-vue@1.4.0(@babel/core@7.26.10)':
  1992. dependencies:
  1993. '@babel/core': 7.26.10
  1994. '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.10)
  1995. '@vue/babel-sugar-inject-h@1.4.0(@babel/core@7.26.10)':
  1996. dependencies:
  1997. '@babel/core': 7.26.10
  1998. '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.10)
  1999. '@vue/babel-sugar-v-model@1.4.0(@babel/core@7.26.10)':
  2000. dependencies:
  2001. '@babel/core': 7.26.10
  2002. '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.10)
  2003. '@vue/babel-helper-vue-jsx-merge-props': 1.4.0
  2004. '@vue/babel-plugin-transform-vue-jsx': 1.4.0(@babel/core@7.26.10)
  2005. camelcase: 5.3.1
  2006. html-tags: 2.0.0
  2007. svg-tags: 1.0.0
  2008. transitivePeerDependencies:
  2009. - supports-color
  2010. '@vue/babel-sugar-v-on@1.4.0(@babel/core@7.26.10)':
  2011. dependencies:
  2012. '@babel/core': 7.26.10
  2013. '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.10)
  2014. '@vue/babel-plugin-transform-vue-jsx': 1.4.0(@babel/core@7.26.10)
  2015. camelcase: 5.3.1
  2016. transitivePeerDependencies:
  2017. - supports-color
  2018. '@vue/compiler-sfc@2.7.16':
  2019. dependencies:
  2020. '@babel/parser': 7.27.0
  2021. postcss: 8.5.3
  2022. source-map: 0.6.1
  2023. optionalDependencies:
  2024. prettier: 2.8.8
  2025. '@vue/component-compiler-utils@3.3.0(lodash@4.17.21)':
  2026. dependencies:
  2027. consolidate: 0.15.1(lodash@4.17.21)
  2028. hash-sum: 1.0.2
  2029. lru-cache: 4.1.5
  2030. merge-source-map: 1.1.0
  2031. postcss: 7.0.39
  2032. postcss-selector-parser: 6.1.2
  2033. source-map: 0.6.1
  2034. vue-template-es2015-compiler: 1.9.1
  2035. optionalDependencies:
  2036. prettier: 2.8.8
  2037. transitivePeerDependencies:
  2038. - arc-templates
  2039. - atpl
  2040. - babel-core
  2041. - bracket-template
  2042. - coffee-script
  2043. - dot
  2044. - dust
  2045. - dustjs-helpers
  2046. - dustjs-linkedin
  2047. - eco
  2048. - ect
  2049. - ejs
  2050. - haml-coffee
  2051. - hamlet
  2052. - hamljs
  2053. - handlebars
  2054. - hogan.js
  2055. - htmling
  2056. - jade
  2057. - jazz
  2058. - jqtpl
  2059. - just
  2060. - liquid-node
  2061. - liquor
  2062. - lodash
  2063. - marko
  2064. - mote
  2065. - mustache
  2066. - nunjucks
  2067. - plates
  2068. - pug
  2069. - qejs
  2070. - ractive
  2071. - razor-tmpl
  2072. - react
  2073. - react-dom
  2074. - slm
  2075. - squirrelly
  2076. - swig
  2077. - swig-templates
  2078. - teacup
  2079. - templayed
  2080. - then-jade
  2081. - then-pug
  2082. - tinyliquid
  2083. - toffee
  2084. - twig
  2085. - twing
  2086. - underscore
  2087. - vash
  2088. - velocityjs
  2089. - walrus
  2090. - whiskers
  2091. adler-32@1.3.1: {}
  2092. ansi-escapes@1.4.0: {}
  2093. ansi-regex@2.1.1: {}
  2094. ansi-regex@3.0.1: {}
  2095. ansi-regex@5.0.1: {}
  2096. ansi-styles@2.2.1: {}
  2097. ansi-styles@4.3.0:
  2098. dependencies:
  2099. color-convert: 2.0.1
  2100. archiver-utils@2.1.0:
  2101. dependencies:
  2102. glob: 7.2.3
  2103. graceful-fs: 4.2.11
  2104. lazystream: 1.0.1
  2105. lodash.defaults: 4.2.0
  2106. lodash.difference: 4.5.0
  2107. lodash.flatten: 4.4.0
  2108. lodash.isplainobject: 4.0.6
  2109. lodash.union: 4.6.0
  2110. normalize-path: 3.0.0
  2111. readable-stream: 2.3.8
  2112. archiver-utils@3.0.4:
  2113. dependencies:
  2114. glob: 7.2.3
  2115. graceful-fs: 4.2.11
  2116. lazystream: 1.0.1
  2117. lodash.defaults: 4.2.0
  2118. lodash.difference: 4.5.0
  2119. lodash.flatten: 4.4.0
  2120. lodash.isplainobject: 4.0.6
  2121. lodash.union: 4.6.0
  2122. normalize-path: 3.0.0
  2123. readable-stream: 3.6.2
  2124. archiver@5.3.2:
  2125. dependencies:
  2126. archiver-utils: 2.1.0
  2127. async: 3.2.6
  2128. buffer-crc32: 0.2.13
  2129. readable-stream: 3.6.2
  2130. readdir-glob: 1.1.3
  2131. tar-stream: 2.2.0
  2132. zip-stream: 4.1.1
  2133. argparse@1.0.10:
  2134. dependencies:
  2135. sprintf-js: 1.0.3
  2136. async-validator@1.8.5:
  2137. dependencies:
  2138. babel-runtime: 6.26.0
  2139. async@3.2.6: {}
  2140. asynckit@0.4.0: {}
  2141. axios@1.8.4:
  2142. dependencies:
  2143. follow-redirects: 1.15.9
  2144. form-data: 4.0.2
  2145. proxy-from-env: 1.1.0
  2146. transitivePeerDependencies:
  2147. - debug
  2148. babel-helper-vue-jsx-merge-props@2.0.3: {}
  2149. babel-polyfill@6.23.0:
  2150. dependencies:
  2151. babel-runtime: 6.26.0
  2152. core-js: 2.6.12
  2153. regenerator-runtime: 0.10.5
  2154. babel-runtime@6.26.0:
  2155. dependencies:
  2156. core-js: 2.6.12
  2157. regenerator-runtime: 0.11.1
  2158. balanced-match@1.0.2: {}
  2159. base64-arraybuffer@1.0.2: {}
  2160. base64-js@1.5.1: {}
  2161. big-integer@1.6.52: {}
  2162. bignumber.js@8.1.1: {}
  2163. binary@0.3.0:
  2164. dependencies:
  2165. buffers: 0.1.1
  2166. chainsaw: 0.1.0
  2167. bl@4.1.0:
  2168. dependencies:
  2169. buffer: 5.7.1
  2170. inherits: 2.0.4
  2171. readable-stream: 3.6.2
  2172. bluebird@3.4.7: {}
  2173. bluebird@3.7.2: {}
  2174. bmaplib.curveline@1.0.0: {}
  2175. bmaplib.heatmap@1.0.4: {}
  2176. bmaplib.lushu@1.0.7: {}
  2177. bmaplib.markerclusterer@1.0.13:
  2178. dependencies:
  2179. bmaplib.texticonoverlay: 1.0.2
  2180. bmaplib.texticonoverlay@1.0.2: {}
  2181. brace-expansion@1.1.11:
  2182. dependencies:
  2183. balanced-match: 1.0.2
  2184. concat-map: 0.0.1
  2185. brace-expansion@2.0.1:
  2186. dependencies:
  2187. balanced-match: 1.0.2
  2188. browserslist@4.24.4:
  2189. dependencies:
  2190. caniuse-lite: 1.0.30001712
  2191. electron-to-chromium: 1.5.134
  2192. node-releases: 2.0.19
  2193. update-browserslist-db: 1.1.3(browserslist@4.24.4)
  2194. buffer-crc32@0.2.13: {}
  2195. buffer-indexof-polyfill@1.0.2: {}
  2196. buffer@5.7.1:
  2197. dependencies:
  2198. base64-js: 1.5.1
  2199. ieee754: 1.2.1
  2200. buffers@0.1.1: {}
  2201. call-bind-apply-helpers@1.0.2:
  2202. dependencies:
  2203. es-errors: 1.3.0
  2204. function-bind: 1.1.2
  2205. camelcase@5.3.1: {}
  2206. caniuse-lite@1.0.30001712: {}
  2207. cfb@1.2.2:
  2208. dependencies:
  2209. adler-32: 1.3.1
  2210. crc-32: 1.2.2
  2211. chainsaw@0.1.0:
  2212. dependencies:
  2213. traverse: 0.3.9
  2214. chalk@1.1.3:
  2215. dependencies:
  2216. ansi-styles: 2.2.1
  2217. escape-string-regexp: 1.0.5
  2218. has-ansi: 2.0.0
  2219. strip-ansi: 3.0.1
  2220. supports-color: 2.0.0
  2221. chalk@4.1.2:
  2222. dependencies:
  2223. ansi-styles: 4.3.0
  2224. supports-color: 7.2.0
  2225. chardet@0.4.2: {}
  2226. chevrotain@6.5.0:
  2227. dependencies:
  2228. regexp-to-ast: 0.4.0
  2229. optional: true
  2230. cli-cursor@2.1.0:
  2231. dependencies:
  2232. restore-cursor: 2.0.0
  2233. cli-width@2.2.1: {}
  2234. codepage@1.15.0: {}
  2235. color-convert@2.0.1:
  2236. dependencies:
  2237. color-name: 1.1.4
  2238. color-name@1.1.4: {}
  2239. combined-stream@1.0.8:
  2240. dependencies:
  2241. delayed-stream: 1.0.0
  2242. compress-commons@4.1.2:
  2243. dependencies:
  2244. buffer-crc32: 0.2.13
  2245. crc32-stream: 4.0.3
  2246. normalize-path: 3.0.0
  2247. readable-stream: 3.6.2
  2248. concat-map@0.0.1: {}
  2249. consolidate@0.15.1(lodash@4.17.21):
  2250. dependencies:
  2251. bluebird: 3.7.2
  2252. optionalDependencies:
  2253. lodash: 4.17.21
  2254. consolidate@0.16.0(lodash@4.17.21):
  2255. dependencies:
  2256. bluebird: 3.7.2
  2257. optionalDependencies:
  2258. lodash: 4.17.21
  2259. convert-source-map@2.0.0: {}
  2260. copy-anything@2.0.6:
  2261. dependencies:
  2262. is-what: 3.14.1
  2263. core-js@2.6.12: {}
  2264. core-js@3.41.0: {}
  2265. core-util-is@1.0.3: {}
  2266. crc-32@1.2.2: {}
  2267. crc32-stream@4.0.3:
  2268. dependencies:
  2269. crc-32: 1.2.2
  2270. readable-stream: 3.6.2
  2271. css-line-break@2.1.0:
  2272. dependencies:
  2273. utrie: 1.0.2
  2274. cssesc@3.0.0: {}
  2275. csstype@3.1.3: {}
  2276. dayjs@1.11.13: {}
  2277. de-indent@1.0.2: {}
  2278. debug@4.4.0:
  2279. dependencies:
  2280. ms: 2.1.3
  2281. deepmerge@1.5.2: {}
  2282. deepmerge@4.3.1: {}
  2283. delayed-stream@1.0.0: {}
  2284. diff-sequences@26.6.2: {}
  2285. docx-preview@0.3.5:
  2286. dependencies:
  2287. jszip: 3.10.1
  2288. dompurify@2.5.8: {}
  2289. dunder-proto@1.0.1:
  2290. dependencies:
  2291. call-bind-apply-helpers: 1.0.2
  2292. es-errors: 1.3.0
  2293. gopd: 1.2.0
  2294. duplexer2@0.1.4:
  2295. dependencies:
  2296. readable-stream: 2.3.8
  2297. easings-css@1.0.0: {}
  2298. electron-to-chromium@1.5.134: {}
  2299. element-ui@2.15.14(vue@2.6.11):
  2300. dependencies:
  2301. async-validator: 1.8.5
  2302. babel-helper-vue-jsx-merge-props: 2.0.3
  2303. deepmerge: 1.5.2
  2304. normalize-wheel: 1.0.1
  2305. resize-observer-polyfill: 1.5.1
  2306. throttle-debounce: 1.1.0
  2307. vue: 2.6.11
  2308. element-ui@2.15.14(vue@2.7.16):
  2309. dependencies:
  2310. async-validator: 1.8.5
  2311. babel-helper-vue-jsx-merge-props: 2.0.3
  2312. deepmerge: 1.5.2
  2313. normalize-wheel: 1.0.1
  2314. resize-observer-polyfill: 1.5.1
  2315. throttle-debounce: 1.1.0
  2316. vue: 2.7.16
  2317. encoding@0.1.13:
  2318. dependencies:
  2319. iconv-lite: 0.6.3
  2320. end-of-stream@1.4.4:
  2321. dependencies:
  2322. once: 1.4.0
  2323. entities@1.1.2: {}
  2324. errno@0.1.8:
  2325. dependencies:
  2326. prr: 1.0.1
  2327. optional: true
  2328. es-define-property@1.0.1: {}
  2329. es-errors@1.3.0: {}
  2330. es-object-atoms@1.1.1:
  2331. dependencies:
  2332. es-errors: 1.3.0
  2333. es-set-tostringtag@2.1.0:
  2334. dependencies:
  2335. es-errors: 1.3.0
  2336. get-intrinsic: 1.3.0
  2337. has-tostringtag: 1.0.2
  2338. hasown: 2.0.2
  2339. esbuild-android-64@0.14.54:
  2340. optional: true
  2341. esbuild-android-arm64@0.14.54:
  2342. optional: true
  2343. esbuild-darwin-64@0.14.54:
  2344. optional: true
  2345. esbuild-darwin-arm64@0.14.54:
  2346. optional: true
  2347. esbuild-freebsd-64@0.14.54:
  2348. optional: true
  2349. esbuild-freebsd-arm64@0.14.54:
  2350. optional: true
  2351. esbuild-linux-32@0.14.54:
  2352. optional: true
  2353. esbuild-linux-64@0.14.54:
  2354. optional: true
  2355. esbuild-linux-arm64@0.14.54:
  2356. optional: true
  2357. esbuild-linux-arm@0.14.54:
  2358. optional: true
  2359. esbuild-linux-mips64le@0.14.54:
  2360. optional: true
  2361. esbuild-linux-ppc64le@0.14.54:
  2362. optional: true
  2363. esbuild-linux-riscv64@0.14.54:
  2364. optional: true
  2365. esbuild-linux-s390x@0.14.54:
  2366. optional: true
  2367. esbuild-netbsd-64@0.14.54:
  2368. optional: true
  2369. esbuild-openbsd-64@0.14.54:
  2370. optional: true
  2371. esbuild-sunos-64@0.14.54:
  2372. optional: true
  2373. esbuild-windows-32@0.14.54:
  2374. optional: true
  2375. esbuild-windows-64@0.14.54:
  2376. optional: true
  2377. esbuild-windows-arm64@0.14.54:
  2378. optional: true
  2379. esbuild@0.14.54:
  2380. optionalDependencies:
  2381. '@esbuild/linux-loong64': 0.14.54
  2382. esbuild-android-64: 0.14.54
  2383. esbuild-android-arm64: 0.14.54
  2384. esbuild-darwin-64: 0.14.54
  2385. esbuild-darwin-arm64: 0.14.54
  2386. esbuild-freebsd-64: 0.14.54
  2387. esbuild-freebsd-arm64: 0.14.54
  2388. esbuild-linux-32: 0.14.54
  2389. esbuild-linux-64: 0.14.54
  2390. esbuild-linux-arm: 0.14.54
  2391. esbuild-linux-arm64: 0.14.54
  2392. esbuild-linux-mips64le: 0.14.54
  2393. esbuild-linux-ppc64le: 0.14.54
  2394. esbuild-linux-riscv64: 0.14.54
  2395. esbuild-linux-s390x: 0.14.54
  2396. esbuild-netbsd-64: 0.14.54
  2397. esbuild-openbsd-64: 0.14.54
  2398. esbuild-sunos-64: 0.14.54
  2399. esbuild-windows-32: 0.14.54
  2400. esbuild-windows-64: 0.14.54
  2401. esbuild-windows-arm64: 0.14.54
  2402. escalade@3.2.0: {}
  2403. escape-string-regexp@1.0.5: {}
  2404. estree-walker@2.0.2: {}
  2405. exceljs@4.4.0:
  2406. dependencies:
  2407. archiver: 5.3.2
  2408. dayjs: 1.11.13
  2409. fast-csv: 4.3.6
  2410. jszip: 3.10.1
  2411. readable-stream: 3.6.2
  2412. saxes: 5.0.1
  2413. tmp: 0.2.3
  2414. unzipper: 0.10.14
  2415. uuid: 8.3.2
  2416. external-editor@2.2.0:
  2417. dependencies:
  2418. chardet: 0.4.2
  2419. iconv-lite: 0.4.24
  2420. tmp: 0.0.33
  2421. fast-csv@4.3.6:
  2422. dependencies:
  2423. '@fast-csv/format': 4.3.5
  2424. '@fast-csv/parse': 4.3.6
  2425. figures@2.0.0:
  2426. dependencies:
  2427. escape-string-regexp: 1.0.5
  2428. file-saver@2.0.5: {}
  2429. follow-redirects@1.15.9: {}
  2430. form-data@4.0.2:
  2431. dependencies:
  2432. asynckit: 0.4.0
  2433. combined-stream: 1.0.8
  2434. es-set-tostringtag: 2.1.0
  2435. mime-types: 2.1.35
  2436. frac@1.1.2: {}
  2437. fs-constants@1.0.0: {}
  2438. fs-extra@10.1.0:
  2439. dependencies:
  2440. graceful-fs: 4.2.11
  2441. jsonfile: 6.1.0
  2442. universalify: 2.0.1
  2443. fs.realpath@1.0.0: {}
  2444. fsevents@2.3.3:
  2445. optional: true
  2446. fstream@1.0.12:
  2447. dependencies:
  2448. graceful-fs: 4.2.11
  2449. inherits: 2.0.4
  2450. mkdirp: 0.5.6
  2451. rimraf: 2.7.1
  2452. function-bind@1.1.2: {}
  2453. fuzzysearch@1.0.3: {}
  2454. gensync@1.0.0-beta.2: {}
  2455. get-intrinsic@1.3.0:
  2456. dependencies:
  2457. call-bind-apply-helpers: 1.0.2
  2458. es-define-property: 1.0.1
  2459. es-errors: 1.3.0
  2460. es-object-atoms: 1.1.1
  2461. function-bind: 1.1.2
  2462. get-proto: 1.0.1
  2463. gopd: 1.2.0
  2464. has-symbols: 1.1.0
  2465. hasown: 2.0.2
  2466. math-intrinsics: 1.1.0
  2467. get-proto@1.0.1:
  2468. dependencies:
  2469. dunder-proto: 1.0.1
  2470. es-object-atoms: 1.1.1
  2471. glob@7.2.3:
  2472. dependencies:
  2473. fs.realpath: 1.0.0
  2474. inflight: 1.0.6
  2475. inherits: 2.0.4
  2476. minimatch: 3.1.2
  2477. once: 1.4.0
  2478. path-is-absolute: 1.0.1
  2479. globals@11.12.0: {}
  2480. gopd@1.2.0: {}
  2481. graceful-fs@4.2.11: {}
  2482. handsontable@11.1.0:
  2483. dependencies:
  2484. '@types/pikaday': 1.7.4
  2485. core-js: 3.41.0
  2486. dompurify: 2.5.8
  2487. moment: 2.24.0
  2488. numbro: 2.1.2
  2489. pikaday: 1.8.0
  2490. optionalDependencies:
  2491. hyperformula: 1.3.1
  2492. has-ansi@2.0.0:
  2493. dependencies:
  2494. ansi-regex: 2.1.1
  2495. has-flag@4.0.0: {}
  2496. has-symbols@1.1.0: {}
  2497. has-tostringtag@1.0.2:
  2498. dependencies:
  2499. has-symbols: 1.1.0
  2500. hash-sum@1.0.2: {}
  2501. hash-sum@2.0.0: {}
  2502. hasown@2.0.2:
  2503. dependencies:
  2504. function-bind: 1.1.2
  2505. he@1.2.0: {}
  2506. html-tags@2.0.0: {}
  2507. html2canvas@1.4.1:
  2508. dependencies:
  2509. css-line-break: 2.1.0
  2510. text-segmentation: 1.0.3
  2511. hyperformula@1.3.1:
  2512. dependencies:
  2513. chevrotain: 6.5.0
  2514. core-js: 3.41.0
  2515. regenerator-runtime: 0.13.11
  2516. tiny-emitter: 2.1.0
  2517. unorm: 1.6.0
  2518. optional: true
  2519. iconv-lite@0.4.24:
  2520. dependencies:
  2521. safer-buffer: 2.1.2
  2522. iconv-lite@0.6.3:
  2523. dependencies:
  2524. safer-buffer: 2.1.2
  2525. ieee754@1.2.1: {}
  2526. image-size@0.5.5:
  2527. optional: true
  2528. immediate@3.0.6: {}
  2529. inflight@1.0.6:
  2530. dependencies:
  2531. once: 1.4.0
  2532. wrappy: 1.0.2
  2533. inherits@2.0.4: {}
  2534. inquirer@3.0.6:
  2535. dependencies:
  2536. ansi-escapes: 1.4.0
  2537. chalk: 1.1.3
  2538. cli-cursor: 2.1.0
  2539. cli-width: 2.2.1
  2540. external-editor: 2.2.0
  2541. figures: 2.0.0
  2542. lodash: 4.17.21
  2543. mute-stream: 0.0.7
  2544. run-async: 2.4.1
  2545. rx: 4.1.0
  2546. string-width: 2.1.1
  2547. strip-ansi: 3.0.1
  2548. through: 2.3.8
  2549. is-core-module@2.16.1:
  2550. dependencies:
  2551. hasown: 2.0.2
  2552. is-fullwidth-code-point@2.0.0: {}
  2553. is-promise@2.2.2: {}
  2554. is-stream@1.1.0: {}
  2555. is-what@3.14.1: {}
  2556. isarray@1.0.0: {}
  2557. jest-diff@26.6.2:
  2558. dependencies:
  2559. chalk: 4.1.2
  2560. diff-sequences: 26.6.2
  2561. jest-get-type: 26.3.0
  2562. pretty-format: 26.6.2
  2563. jest-get-type@26.3.0: {}
  2564. js-cookie@3.0.5: {}
  2565. js-tokens@4.0.0: {}
  2566. jsesc@3.1.0: {}
  2567. json5@2.2.3: {}
  2568. jsonfile@6.1.0:
  2569. dependencies:
  2570. universalify: 2.0.1
  2571. optionalDependencies:
  2572. graceful-fs: 4.2.11
  2573. jszip@3.10.1:
  2574. dependencies:
  2575. lie: 3.3.0
  2576. pako: 1.0.11
  2577. readable-stream: 2.3.8
  2578. setimmediate: 1.0.5
  2579. lazystream@1.0.1:
  2580. dependencies:
  2581. readable-stream: 2.3.8
  2582. less@4.3.0:
  2583. dependencies:
  2584. copy-anything: 2.0.6
  2585. parse-node-version: 1.0.1
  2586. tslib: 2.8.1
  2587. optionalDependencies:
  2588. errno: 0.1.8
  2589. graceful-fs: 4.2.11
  2590. image-size: 0.5.5
  2591. make-dir: 2.1.0
  2592. mime: 1.6.0
  2593. needle: 3.3.1
  2594. source-map: 0.6.1
  2595. lie@3.3.0:
  2596. dependencies:
  2597. immediate: 3.0.6
  2598. linkify-it@2.2.0:
  2599. dependencies:
  2600. uc.micro: 1.0.6
  2601. listenercount@1.0.1: {}
  2602. lodash-es@4.17.21: {}
  2603. lodash.defaults@4.2.0: {}
  2604. lodash.difference@4.5.0: {}
  2605. lodash.escaperegexp@4.1.2: {}
  2606. lodash.flatten@4.4.0: {}
  2607. lodash.groupby@4.6.0: {}
  2608. lodash.isboolean@3.0.3: {}
  2609. lodash.isequal@4.5.0: {}
  2610. lodash.isfunction@3.0.9: {}
  2611. lodash.isnil@4.0.0: {}
  2612. lodash.isplainobject@4.0.6: {}
  2613. lodash.isundefined@3.0.1: {}
  2614. lodash.kebabcase@4.1.1: {}
  2615. lodash.union@4.6.0: {}
  2616. lodash.uniq@4.5.0: {}
  2617. lodash@4.17.21: {}
  2618. lru-cache@4.1.5:
  2619. dependencies:
  2620. pseudomap: 1.0.2
  2621. yallist: 2.1.2
  2622. lru-cache@5.1.1:
  2623. dependencies:
  2624. yallist: 3.1.1
  2625. magic-string@0.26.7:
  2626. dependencies:
  2627. sourcemap-codec: 1.4.8
  2628. make-dir@2.1.0:
  2629. dependencies:
  2630. pify: 4.0.1
  2631. semver: 5.7.2
  2632. optional: true
  2633. markdown-it@8.4.2:
  2634. dependencies:
  2635. argparse: 1.0.10
  2636. entities: 1.1.2
  2637. linkify-it: 2.2.0
  2638. mdurl: 1.0.1
  2639. uc.micro: 1.0.6
  2640. material-colors@1.2.6: {}
  2641. math-intrinsics@1.1.0: {}
  2642. mdurl@1.0.1: {}
  2643. merge-source-map@1.1.0:
  2644. dependencies:
  2645. source-map: 0.6.1
  2646. mime-db@1.52.0: {}
  2647. mime-types@2.1.35:
  2648. dependencies:
  2649. mime-db: 1.52.0
  2650. mime@1.6.0:
  2651. optional: true
  2652. mimic-fn@1.2.0: {}
  2653. minimatch@3.1.2:
  2654. dependencies:
  2655. brace-expansion: 1.1.11
  2656. minimatch@5.1.6:
  2657. dependencies:
  2658. brace-expansion: 2.0.1
  2659. minimist@1.2.0: {}
  2660. minimist@1.2.8: {}
  2661. mkdirp@0.5.6:
  2662. dependencies:
  2663. minimist: 1.2.8
  2664. moment@2.24.0: {}
  2665. moment@2.30.1: {}
  2666. ms@2.1.3: {}
  2667. mute-stream@0.0.7: {}
  2668. nanoid@3.3.11: {}
  2669. needle@3.3.1:
  2670. dependencies:
  2671. iconv-lite: 0.6.3
  2672. sax: 1.4.1
  2673. optional: true
  2674. node-dir@0.1.17:
  2675. dependencies:
  2676. minimatch: 3.1.2
  2677. node-fetch@1.6.3:
  2678. dependencies:
  2679. encoding: 0.1.13
  2680. is-stream: 1.1.0
  2681. node-releases@2.0.19: {}
  2682. normalize-path@3.0.0: {}
  2683. normalize-wheel@1.0.1: {}
  2684. numbro@2.1.2:
  2685. dependencies:
  2686. bignumber.js: 8.1.1
  2687. object-assign@4.1.1: {}
  2688. once@1.4.0:
  2689. dependencies:
  2690. wrappy: 1.0.2
  2691. onetime@2.0.1:
  2692. dependencies:
  2693. mimic-fn: 1.2.0
  2694. opencollective-postinstall@2.0.3: {}
  2695. opencollective@1.0.3:
  2696. dependencies:
  2697. babel-polyfill: 6.23.0
  2698. chalk: 1.1.3
  2699. inquirer: 3.0.6
  2700. minimist: 1.2.0
  2701. node-fetch: 1.6.3
  2702. opn: 4.0.2
  2703. opn@4.0.2:
  2704. dependencies:
  2705. object-assign: 4.1.1
  2706. pinkie-promise: 2.0.1
  2707. os-tmpdir@1.0.2: {}
  2708. pako@1.0.11: {}
  2709. parse-node-version@1.0.1: {}
  2710. path-is-absolute@1.0.1: {}
  2711. path-parse@1.0.7: {}
  2712. pdfjs-dist@2.4.456: {}
  2713. picocolors@0.2.1: {}
  2714. picocolors@1.1.1: {}
  2715. picomatch@2.3.1: {}
  2716. pify@4.0.1:
  2717. optional: true
  2718. pikaday@1.8.0: {}
  2719. pinkie-promise@2.0.1:
  2720. dependencies:
  2721. pinkie: 2.0.4
  2722. pinkie@2.0.4: {}
  2723. postcss-selector-parser@6.1.2:
  2724. dependencies:
  2725. cssesc: 3.0.0
  2726. util-deprecate: 1.0.2
  2727. postcss@7.0.39:
  2728. dependencies:
  2729. picocolors: 0.2.1
  2730. source-map: 0.6.1
  2731. postcss@8.5.3:
  2732. dependencies:
  2733. nanoid: 3.3.11
  2734. picocolors: 1.1.1
  2735. source-map-js: 1.2.1
  2736. pptxtojson@1.3.1:
  2737. dependencies:
  2738. jszip: 3.10.1
  2739. tinycolor2: 1.6.0
  2740. txml: 5.1.1
  2741. prettier@2.8.8: {}
  2742. pretty-format@26.6.2:
  2743. dependencies:
  2744. '@jest/types': 26.6.2
  2745. ansi-regex: 5.0.1
  2746. ansi-styles: 4.3.0
  2747. react-is: 17.0.2
  2748. process-nextick-args@2.0.1: {}
  2749. proxy-from-env@1.1.0: {}
  2750. prr@1.0.1:
  2751. optional: true
  2752. pseudomap@1.0.2: {}
  2753. querystring@0.2.1: {}
  2754. react-is@17.0.2: {}
  2755. readable-stream@2.3.8:
  2756. dependencies:
  2757. core-util-is: 1.0.3
  2758. inherits: 2.0.4
  2759. isarray: 1.0.0
  2760. process-nextick-args: 2.0.1
  2761. safe-buffer: 5.1.2
  2762. string_decoder: 1.1.1
  2763. util-deprecate: 1.0.2
  2764. readable-stream@3.6.2:
  2765. dependencies:
  2766. inherits: 2.0.4
  2767. string_decoder: 1.1.1
  2768. util-deprecate: 1.0.2
  2769. readdir-glob@1.1.3:
  2770. dependencies:
  2771. minimatch: 5.1.6
  2772. regenerator-runtime@0.10.5: {}
  2773. regenerator-runtime@0.11.1: {}
  2774. regenerator-runtime@0.13.11:
  2775. optional: true
  2776. regenerator-runtime@0.14.1: {}
  2777. regexp-to-ast@0.4.0:
  2778. optional: true
  2779. resize-observer-polyfill@1.5.1: {}
  2780. resolve@1.22.10:
  2781. dependencies:
  2782. is-core-module: 2.16.1
  2783. path-parse: 1.0.7
  2784. supports-preserve-symlinks-flag: 1.0.0
  2785. restore-cursor@2.0.0:
  2786. dependencies:
  2787. onetime: 2.0.1
  2788. signal-exit: 3.0.7
  2789. rimraf@2.7.1:
  2790. dependencies:
  2791. glob: 7.2.3
  2792. rollup@2.77.3:
  2793. optionalDependencies:
  2794. fsevents: 2.3.3
  2795. rollup@2.79.2:
  2796. optionalDependencies:
  2797. fsevents: 2.3.3
  2798. run-async@2.4.1: {}
  2799. rx@4.1.0: {}
  2800. safe-buffer@5.1.2: {}
  2801. safer-buffer@2.1.2: {}
  2802. sax@1.4.1:
  2803. optional: true
  2804. saxes@5.0.1:
  2805. dependencies:
  2806. xmlchars: 2.2.0
  2807. semver@5.7.2:
  2808. optional: true
  2809. semver@6.3.1: {}
  2810. setimmediate@1.0.5: {}
  2811. signal-exit@3.0.7: {}
  2812. slash@3.0.0: {}
  2813. source-map-js@1.2.1: {}
  2814. source-map@0.6.1: {}
  2815. source-map@0.7.4: {}
  2816. sourcemap-codec@1.4.8: {}
  2817. sprintf-js@1.0.3: {}
  2818. ssf@0.11.2:
  2819. dependencies:
  2820. frac: 1.1.2
  2821. string-width@2.1.1:
  2822. dependencies:
  2823. is-fullwidth-code-point: 2.0.0
  2824. strip-ansi: 4.0.0
  2825. string_decoder@1.1.1:
  2826. dependencies:
  2827. safe-buffer: 5.1.2
  2828. strip-ansi@3.0.1:
  2829. dependencies:
  2830. ansi-regex: 2.1.1
  2831. strip-ansi@4.0.0:
  2832. dependencies:
  2833. ansi-regex: 3.0.1
  2834. supports-color@2.0.0: {}
  2835. supports-color@7.2.0:
  2836. dependencies:
  2837. has-flag: 4.0.0
  2838. supports-preserve-symlinks-flag@1.0.0: {}
  2839. svg-tags@1.0.0: {}
  2840. tar-stream@2.2.0:
  2841. dependencies:
  2842. bl: 4.1.0
  2843. end-of-stream: 1.4.4
  2844. fs-constants: 1.0.0
  2845. inherits: 2.0.4
  2846. readable-stream: 3.6.2
  2847. text-segmentation@1.0.3:
  2848. dependencies:
  2849. utrie: 1.0.2
  2850. throttle-debounce@1.1.0: {}
  2851. throttle-debounce@3.0.1: {}
  2852. through2@3.0.2:
  2853. dependencies:
  2854. inherits: 2.0.4
  2855. readable-stream: 3.6.2
  2856. through@2.3.8: {}
  2857. tiny-emitter@2.1.0:
  2858. optional: true
  2859. tinycolor2@1.6.0: {}
  2860. tmp@0.0.33:
  2861. dependencies:
  2862. os-tmpdir: 1.0.2
  2863. tmp@0.2.3: {}
  2864. traverse@0.3.9: {}
  2865. tslib@2.8.1: {}
  2866. txml@5.1.1:
  2867. dependencies:
  2868. through2: 3.0.2
  2869. typescript@5.7.3: {}
  2870. uc.micro@1.0.6: {}
  2871. universalify@2.0.1: {}
  2872. unorm@1.6.0:
  2873. optional: true
  2874. unzipper@0.10.14:
  2875. dependencies:
  2876. big-integer: 1.6.52
  2877. binary: 0.3.0
  2878. bluebird: 3.4.7
  2879. buffer-indexof-polyfill: 1.0.2
  2880. duplexer2: 0.1.4
  2881. fstream: 1.0.12
  2882. graceful-fs: 4.2.11
  2883. listenercount: 1.0.1
  2884. readable-stream: 2.3.8
  2885. setimmediate: 1.0.5
  2886. update-browserslist-db@1.1.3(browserslist@4.24.4):
  2887. dependencies:
  2888. browserslist: 4.24.4
  2889. escalade: 3.2.0
  2890. picocolors: 1.1.1
  2891. util-deprecate@1.0.2: {}
  2892. utrie@1.0.2:
  2893. dependencies:
  2894. base64-arraybuffer: 1.0.2
  2895. uuid@8.3.2: {}
  2896. vite-plugin-vue2@2.0.3(lodash@4.17.21)(vite@2.9.18(less@4.3.0))(vue-template-compiler@2.7.16)(vue@2.7.16):
  2897. dependencies:
  2898. '@babel/core': 7.26.10
  2899. '@babel/parser': 7.27.0
  2900. '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.26.10)
  2901. '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.10)
  2902. '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.26.10)
  2903. '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.26.10)
  2904. '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.26.10)
  2905. '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.10)
  2906. '@babel/plugin-transform-block-scoping': 7.27.0(@babel/core@7.26.10)
  2907. '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.10)
  2908. '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.10)
  2909. '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.10)
  2910. '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.10)
  2911. '@babel/plugin-transform-typescript': 7.27.0(@babel/core@7.26.10)
  2912. '@rollup/pluginutils': 4.2.1
  2913. '@vue/babel-helper-vue-jsx-merge-props': 1.4.0
  2914. '@vue/babel-preset-jsx': 1.4.0(@babel/core@7.26.10)(vue@2.7.16)
  2915. '@vue/component-compiler-utils': 3.3.0(lodash@4.17.21)
  2916. consolidate: 0.16.0(lodash@4.17.21)
  2917. debug: 4.4.0
  2918. fs-extra: 10.1.0
  2919. hash-sum: 2.0.0
  2920. magic-string: 0.26.7
  2921. prettier: 2.8.8
  2922. querystring: 0.2.1
  2923. rollup: 2.79.2
  2924. slash: 3.0.0
  2925. source-map: 0.7.4
  2926. vite: 2.9.18(less@4.3.0)
  2927. vue-template-babel-compiler: 1.2.0(vue-template-compiler@2.7.16)
  2928. vue-template-compiler: 2.7.16
  2929. transitivePeerDependencies:
  2930. - arc-templates
  2931. - atpl
  2932. - babel-core
  2933. - bracket-template
  2934. - coffee-script
  2935. - dot
  2936. - dust
  2937. - dustjs-helpers
  2938. - dustjs-linkedin
  2939. - eco
  2940. - ect
  2941. - ejs
  2942. - haml-coffee
  2943. - hamlet
  2944. - hamljs
  2945. - handlebars
  2946. - hogan.js
  2947. - htmling
  2948. - jade
  2949. - jazz
  2950. - jqtpl
  2951. - just
  2952. - liquid-node
  2953. - liquor
  2954. - lodash
  2955. - marko
  2956. - mote
  2957. - mustache
  2958. - nunjucks
  2959. - plates
  2960. - pug
  2961. - qejs
  2962. - ractive
  2963. - razor-tmpl
  2964. - react
  2965. - react-dom
  2966. - slm
  2967. - squirrelly
  2968. - supports-color
  2969. - swig
  2970. - swig-templates
  2971. - teacup
  2972. - templayed
  2973. - then-jade
  2974. - then-pug
  2975. - tinyliquid
  2976. - toffee
  2977. - twig
  2978. - twing
  2979. - underscore
  2980. - vash
  2981. - velocityjs
  2982. - vue
  2983. - walrus
  2984. - whiskers
  2985. vite@2.9.18(less@4.3.0):
  2986. dependencies:
  2987. esbuild: 0.14.54
  2988. postcss: 8.5.3
  2989. resolve: 1.22.10
  2990. rollup: 2.77.3
  2991. optionalDependencies:
  2992. fsevents: 2.3.3
  2993. less: 4.3.0
  2994. vue-baidu-map@0.21.22(vue@2.6.11):
  2995. dependencies:
  2996. bmaplib.curveline: 1.0.0
  2997. bmaplib.heatmap: 1.0.4
  2998. bmaplib.lushu: 1.0.7
  2999. bmaplib.markerclusterer: 1.0.13
  3000. markdown-it: 8.4.2
  3001. vue: 2.6.11
  3002. vue-class-component@7.2.6(vue@2.6.11):
  3003. dependencies:
  3004. vue: 2.6.11
  3005. vue-cropper@0.5.11: {}
  3006. vue-property-decorator@8.5.1(vue@2.6.11):
  3007. dependencies:
  3008. vue: 2.6.11
  3009. vue-class-component: 7.2.6(vue@2.6.11)
  3010. vue-router@3.6.5(vue@2.6.11):
  3011. dependencies:
  3012. vue: 2.6.11
  3013. vue-router@3.6.5(vue@2.7.16):
  3014. dependencies:
  3015. vue: 2.7.16
  3016. vue-template-babel-compiler@1.2.0(vue-template-compiler@2.7.16):
  3017. dependencies:
  3018. '@babel/core': 7.26.10
  3019. '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.26.10)
  3020. '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.26.10)
  3021. '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.26.10)
  3022. '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.10)
  3023. '@babel/plugin-transform-block-scoping': 7.27.0(@babel/core@7.26.10)
  3024. '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.10)
  3025. '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.10)
  3026. '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.10)
  3027. '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.10)
  3028. '@babel/types': 7.27.0
  3029. deepmerge: 4.3.1
  3030. vue-template-compiler: 2.7.16
  3031. transitivePeerDependencies:
  3032. - supports-color
  3033. vue-template-compiler@2.7.16:
  3034. dependencies:
  3035. de-indent: 1.0.2
  3036. he: 1.2.0
  3037. vue-template-es2015-compiler@1.9.1: {}
  3038. vue-virtual-scroll-list@2.3.5: {}
  3039. vue@2.6.11: {}
  3040. vue@2.7.16:
  3041. dependencies:
  3042. '@vue/compiler-sfc': 2.7.16
  3043. csstype: 3.1.3
  3044. vuex@3.6.2(vue@2.7.16):
  3045. dependencies:
  3046. vue: 2.7.16
  3047. watch-size@2.0.0: {}
  3048. wisdom-ui@1.0.4-beta.6:
  3049. dependencies:
  3050. '@riophae/vue-treeselect': 0.4.0(vue@2.6.11)
  3051. core-js: 3.41.0
  3052. element-ui: 2.15.14(vue@2.6.11)
  3053. resize-observer-polyfill: 1.5.1
  3054. throttle-debounce: 3.0.1
  3055. vue: 2.6.11
  3056. vue-baidu-map: 0.21.22(vue@2.6.11)
  3057. vue-class-component: 7.2.6(vue@2.6.11)
  3058. vue-cropper: 0.5.11
  3059. vue-property-decorator: 8.5.1(vue@2.6.11)
  3060. vue-router: 3.6.5(vue@2.6.11)
  3061. vue-virtual-scroll-list: 2.3.5
  3062. wmf@1.0.2: {}
  3063. word@0.3.0: {}
  3064. wrappy@1.0.2: {}
  3065. x-data-spreadsheet@1.1.9:
  3066. dependencies:
  3067. opencollective: 1.0.3
  3068. opencollective-postinstall: 2.0.3
  3069. xlsx@0.18.5:
  3070. dependencies:
  3071. adler-32: 1.3.1
  3072. cfb: 1.2.2
  3073. codepage: 1.15.0
  3074. crc-32: 1.2.2
  3075. ssf: 0.11.2
  3076. wmf: 1.0.2
  3077. word: 0.3.0
  3078. xmlchars@2.2.0: {}
  3079. yallist@2.1.2: {}
  3080. yallist@3.1.1: {}
  3081. zip-stream@4.1.1:
  3082. dependencies:
  3083. archiver-utils: 3.0.4
  3084. compress-commons: 4.1.2
  3085. readable-stream: 3.6.2