pnpm-lock.yaml 169 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. '@element-plus/icons-vue':
  9. specifier: ^2.1.0
  10. version: 2.1.0(vue@3.3.8)
  11. '@tinymce/tinymce-vue':
  12. specifier: ^4
  13. version: 4.0.7(vue@3.3.8)
  14. '@videojs-player/vue':
  15. specifier: ^1.0.0
  16. version: 1.0.0(@types/video.js@7.3.58)(video.js@7.21.7)(vue@3.3.8)
  17. '@vueup/vue-quill':
  18. specifier: ^1.2.0
  19. version: 1.2.0(vue@3.3.8)
  20. '@vueuse/core':
  21. specifier: ^10.2.1
  22. version: 10.6.1(vue@3.3.8)
  23. '@wangeditor/editor':
  24. specifier: ^5.1.23
  25. version: 5.1.23
  26. '@wangeditor/editor-for-vue':
  27. specifier: ^5.1.12
  28. version: 5.1.12(@wangeditor/editor@5.1.23)(vue@3.3.8)
  29. axios:
  30. specifier: 0.18.1
  31. version: 0.18.1
  32. core-js:
  33. specifier: 3.6.5
  34. version: 3.6.5
  35. echarts:
  36. specifier: ^5.4.3
  37. version: 5.4.3
  38. element-plus:
  39. specifier: 2.5.6
  40. version: 2.5.6(vue@3.3.8)
  41. es6-promise:
  42. specifier: ^4.2.8
  43. version: 4.2.8
  44. fast-glob:
  45. specifier: ^3.3.1
  46. version: 3.3.2
  47. fuse.js:
  48. specifier: ^6.4.3
  49. version: 6.6.2
  50. js-cookie:
  51. specifier: 2.2.0
  52. version: 2.2.0
  53. jsencrypt:
  54. specifier: ^3.3.2
  55. version: 3.3.2
  56. mime:
  57. specifier: ^3.0.0
  58. version: 3.0.0
  59. moment:
  60. specifier: ^2.30.1
  61. version: 2.30.1
  62. normalize.css:
  63. specifier: 7.0.0
  64. version: 7.0.0
  65. nprogress:
  66. specifier: 0.2.0
  67. version: 0.2.0
  68. path-browserify:
  69. specifier: ^1.0.1
  70. version: 1.0.1
  71. path-to-regexp:
  72. specifier: 2.4.0
  73. version: 2.4.0
  74. pinia:
  75. specifier: ^2.1.1
  76. version: 2.1.7(vue@3.3.8)
  77. screenfull:
  78. specifier: ^5.0.2
  79. version: 5.2.0
  80. swiper:
  81. specifier: ^9.3.2
  82. version: 9.4.1
  83. tinymce:
  84. specifier: ^6.6.2
  85. version: 6.8.0
  86. unplugin-auto-import:
  87. specifier: ^0.16.2
  88. version: 0.16.7(@vueuse/core@10.6.1(vue@3.3.8))(rollup@3.29.4)
  89. unplugin-vue-components:
  90. specifier: ^0.24.1
  91. version: 0.24.1(@babel/parser@7.23.4)(rollup@3.29.4)(vue@3.3.8)
  92. video.js:
  93. specifier: ^7.0.0
  94. version: 7.21.7
  95. vite-plugin-svg-icons:
  96. specifier: ^2.0.1
  97. version: 2.0.1(vite@4.5.12(@types/node@20.9.5)(sass@1.69.5))
  98. vue:
  99. specifier: ^3.2.47
  100. version: 3.3.8
  101. vue-clipboard3:
  102. specifier: ^2.0.0
  103. version: 2.0.0
  104. vue-draggable-next:
  105. specifier: ^2.1.1
  106. version: 2.2.1(sortablejs@1.15.0)(vue@3.3.8)
  107. vue-draggable-plus:
  108. specifier: ^0.6.0
  109. version: 0.6.0(@types/sortablejs@1.15.8)
  110. vue-router:
  111. specifier: ^4.2.0
  112. version: 4.2.5(vue@3.3.8)
  113. vuex:
  114. specifier: ^4.1.0
  115. version: 4.1.0(vue@3.3.8)
  116. devDependencies:
  117. '@vitejs/plugin-vue':
  118. specifier: ^4.2.1
  119. version: 4.5.0(vite@4.5.12(@types/node@20.9.5)(sass@1.69.5))(vue@3.3.8)
  120. '@vitejs/plugin-vue-jsx':
  121. specifier: ^3.0.1
  122. version: 3.1.0(vite@4.5.12(@types/node@20.9.5)(sass@1.69.5))(vue@3.3.8)
  123. eslint:
  124. specifier: 8.22.0
  125. version: 8.22.0
  126. eslint-plugin-vue:
  127. specifier: ^9.12.0
  128. version: 9.18.1(eslint@8.22.0)
  129. sass:
  130. specifier: ^1.62.1
  131. version: 1.69.5
  132. vite:
  133. specifier: ^4.5.12
  134. version: 4.5.12(@types/node@20.9.5)(sass@1.69.5)
  135. packages:
  136. '@aashutoshrathi/word-wrap@1.2.6':
  137. resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
  138. engines: {node: '>=0.10.0'}
  139. '@ampproject/remapping@2.2.1':
  140. resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
  141. engines: {node: '>=6.0.0'}
  142. '@antfu/utils@0.7.6':
  143. resolution: {integrity: sha512-pvFiLP2BeOKA/ZOS6jxx4XhKzdVLHDhGlFEaZ2flWWYf2xOqVniqpk38I04DFRyz+L0ASggl7SkItTc+ZLju4w==}
  144. '@babel/code-frame@7.23.4':
  145. resolution: {integrity: sha512-r1IONyb6Ia+jYR2vvIDhdWdlTGhqbBoFqLTQidzZ4kepUFH15ejXvFHxCVbtl7BOXIudsIubf4E81xeA3h3IXA==}
  146. engines: {node: '>=6.9.0'}
  147. '@babel/compat-data@7.23.3':
  148. resolution: {integrity: sha512-BmR4bWbDIoFJmJ9z2cZ8Gmm2MXgEDgjdWgpKmKWUt54UGFJdlj31ECtbaDvCG/qVdG3AQ1SfpZEs01lUFbzLOQ==}
  149. engines: {node: '>=6.9.0'}
  150. '@babel/core@7.23.3':
  151. resolution: {integrity: sha512-Jg+msLuNuCJDyBvFv5+OKOUjWMZgd85bKjbICd3zWrKAo+bJ49HJufi7CQE0q0uR8NGyO6xkCACScNqyjHSZew==}
  152. engines: {node: '>=6.9.0'}
  153. '@babel/generator@7.23.4':
  154. resolution: {integrity: sha512-esuS49Cga3HcThFNebGhlgsrVLkvhqvYDTzgjfFFlHJcIfLe5jFmRRfCQ1KuBfc4Jrtn3ndLgKWAKjBE+IraYQ==}
  155. engines: {node: '>=6.9.0'}
  156. '@babel/helper-annotate-as-pure@7.22.5':
  157. resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
  158. engines: {node: '>=6.9.0'}
  159. '@babel/helper-compilation-targets@7.22.15':
  160. resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==}
  161. engines: {node: '>=6.9.0'}
  162. '@babel/helper-create-class-features-plugin@7.22.15':
  163. resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==}
  164. engines: {node: '>=6.9.0'}
  165. peerDependencies:
  166. '@babel/core': ^7.0.0
  167. '@babel/helper-environment-visitor@7.22.20':
  168. resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==}
  169. engines: {node: '>=6.9.0'}
  170. '@babel/helper-function-name@7.23.0':
  171. resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==}
  172. engines: {node: '>=6.9.0'}
  173. '@babel/helper-hoist-variables@7.22.5':
  174. resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
  175. engines: {node: '>=6.9.0'}
  176. '@babel/helper-member-expression-to-functions@7.23.0':
  177. resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
  178. engines: {node: '>=6.9.0'}
  179. '@babel/helper-module-imports@7.22.15':
  180. resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==}
  181. engines: {node: '>=6.9.0'}
  182. '@babel/helper-module-transforms@7.23.3':
  183. resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
  184. engines: {node: '>=6.9.0'}
  185. peerDependencies:
  186. '@babel/core': ^7.0.0
  187. '@babel/helper-optimise-call-expression@7.22.5':
  188. resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
  189. engines: {node: '>=6.9.0'}
  190. '@babel/helper-plugin-utils@7.22.5':
  191. resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==}
  192. engines: {node: '>=6.9.0'}
  193. '@babel/helper-replace-supers@7.22.20':
  194. resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==}
  195. engines: {node: '>=6.9.0'}
  196. peerDependencies:
  197. '@babel/core': ^7.0.0
  198. '@babel/helper-simple-access@7.22.5':
  199. resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
  200. engines: {node: '>=6.9.0'}
  201. '@babel/helper-skip-transparent-expression-wrappers@7.22.5':
  202. resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
  203. engines: {node: '>=6.9.0'}
  204. '@babel/helper-split-export-declaration@7.22.6':
  205. resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
  206. engines: {node: '>=6.9.0'}
  207. '@babel/helper-string-parser@7.23.4':
  208. resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==}
  209. engines: {node: '>=6.9.0'}
  210. '@babel/helper-validator-identifier@7.22.20':
  211. resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
  212. engines: {node: '>=6.9.0'}
  213. '@babel/helper-validator-option@7.22.15':
  214. resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==}
  215. engines: {node: '>=6.9.0'}
  216. '@babel/helpers@7.23.4':
  217. resolution: {integrity: sha512-HfcMizYz10cr3h29VqyfGL6ZWIjTwWfvYBMsBVGwpcbhNGe3wQ1ZXZRPzZoAHhd9OqHadHqjQ89iVKINXnbzuw==}
  218. engines: {node: '>=6.9.0'}
  219. '@babel/highlight@7.23.4':
  220. resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==}
  221. engines: {node: '>=6.9.0'}
  222. '@babel/parser@7.23.4':
  223. resolution: {integrity: sha512-vf3Xna6UEprW+7t6EtOmFpHNAuxw3xqPZghy+brsnusscJRW5BMUzzHZc5ICjULee81WeUV2jjakG09MDglJXQ==}
  224. engines: {node: '>=6.0.0'}
  225. hasBin: true
  226. '@babel/plugin-syntax-jsx@7.23.3':
  227. resolution: {integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==}
  228. engines: {node: '>=6.9.0'}
  229. peerDependencies:
  230. '@babel/core': ^7.0.0-0
  231. '@babel/plugin-syntax-typescript@7.23.3':
  232. resolution: {integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==}
  233. engines: {node: '>=6.9.0'}
  234. peerDependencies:
  235. '@babel/core': ^7.0.0-0
  236. '@babel/plugin-transform-typescript@7.23.4':
  237. resolution: {integrity: sha512-39hCCOl+YUAyMOu6B9SmUTiHUU0t/CxJNUmY3qRdJujbqi+lrQcL11ysYUsAvFWPBdhihrv1z0oRG84Yr3dODQ==}
  238. engines: {node: '>=6.9.0'}
  239. peerDependencies:
  240. '@babel/core': ^7.0.0-0
  241. '@babel/runtime@7.23.4':
  242. resolution: {integrity: sha512-2Yv65nlWnWlSpe3fXEyX5i7fx5kIKo4Qbcj+hMO0odwaneFjfXw5fdum+4yL20O0QiaHpia0cYQ9xpNMqrBwHg==}
  243. engines: {node: '>=6.9.0'}
  244. '@babel/template@7.22.15':
  245. resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==}
  246. engines: {node: '>=6.9.0'}
  247. '@babel/traverse@7.23.4':
  248. resolution: {integrity: sha512-IYM8wSUwunWTB6tFC2dkKZhxbIjHoWemdK+3f8/wq8aKhbUscxD5MX72ubd90fxvFknaLPeGw5ycU84V1obHJg==}
  249. engines: {node: '>=6.9.0'}
  250. '@babel/types@7.23.4':
  251. resolution: {integrity: sha512-7uIFwVYpoplT5jp/kVv6EF93VaJ8H+Yn5IczYiaAi98ajzjfoZfslet/e0sLh+wVBjb2qqIut1b0S26VSafsSQ==}
  252. engines: {node: '>=6.9.0'}
  253. '@ctrl/tinycolor@3.6.1':
  254. resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==, tarball: https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-3.6.1.tgz}
  255. engines: {node: '>=10'}
  256. '@element-plus/icons-vue@2.1.0':
  257. resolution: {integrity: sha512-PSBn3elNoanENc1vnCfh+3WA9fimRC7n+fWkf3rE5jvv+aBohNHABC/KAR5KWPecxWxDTVT1ERpRbOMRcOV/vA==}
  258. peerDependencies:
  259. vue: ^3.2.0
  260. '@element-plus/icons-vue@2.3.1':
  261. resolution: {integrity: sha512-XxVUZv48RZAd87ucGS48jPf6pKu0yV5UCg9f4FFwtrYxXOwWuVJo6wOvSLKEoMQKjv8GsX/mhP6UsC1lRwbUWg==, tarball: https://registry.npmjs.org/@element-plus/icons-vue/-/icons-vue-2.3.1.tgz}
  262. peerDependencies:
  263. vue: ^3.2.0
  264. '@esbuild/android-arm64@0.18.20':
  265. resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==, tarball: https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz}
  266. engines: {node: '>=12'}
  267. cpu: [arm64]
  268. os: [android]
  269. '@esbuild/android-arm@0.18.20':
  270. resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==, tarball: https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz}
  271. engines: {node: '>=12'}
  272. cpu: [arm]
  273. os: [android]
  274. '@esbuild/android-x64@0.18.20':
  275. resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==, tarball: https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz}
  276. engines: {node: '>=12'}
  277. cpu: [x64]
  278. os: [android]
  279. '@esbuild/darwin-arm64@0.18.20':
  280. resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==, tarball: https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz}
  281. engines: {node: '>=12'}
  282. cpu: [arm64]
  283. os: [darwin]
  284. '@esbuild/darwin-x64@0.18.20':
  285. resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==, tarball: https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz}
  286. engines: {node: '>=12'}
  287. cpu: [x64]
  288. os: [darwin]
  289. '@esbuild/freebsd-arm64@0.18.20':
  290. resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==, tarball: https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz}
  291. engines: {node: '>=12'}
  292. cpu: [arm64]
  293. os: [freebsd]
  294. '@esbuild/freebsd-x64@0.18.20':
  295. resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==, tarball: https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz}
  296. engines: {node: '>=12'}
  297. cpu: [x64]
  298. os: [freebsd]
  299. '@esbuild/linux-arm64@0.18.20':
  300. resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==, tarball: https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz}
  301. engines: {node: '>=12'}
  302. cpu: [arm64]
  303. os: [linux]
  304. '@esbuild/linux-arm@0.18.20':
  305. resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==, tarball: https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz}
  306. engines: {node: '>=12'}
  307. cpu: [arm]
  308. os: [linux]
  309. '@esbuild/linux-ia32@0.18.20':
  310. resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==, tarball: https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz}
  311. engines: {node: '>=12'}
  312. cpu: [ia32]
  313. os: [linux]
  314. '@esbuild/linux-loong64@0.18.20':
  315. resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==, tarball: https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz}
  316. engines: {node: '>=12'}
  317. cpu: [loong64]
  318. os: [linux]
  319. '@esbuild/linux-mips64el@0.18.20':
  320. resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==, tarball: https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz}
  321. engines: {node: '>=12'}
  322. cpu: [mips64el]
  323. os: [linux]
  324. '@esbuild/linux-ppc64@0.18.20':
  325. resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==, tarball: https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz}
  326. engines: {node: '>=12'}
  327. cpu: [ppc64]
  328. os: [linux]
  329. '@esbuild/linux-riscv64@0.18.20':
  330. resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==, tarball: https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz}
  331. engines: {node: '>=12'}
  332. cpu: [riscv64]
  333. os: [linux]
  334. '@esbuild/linux-s390x@0.18.20':
  335. resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==, tarball: https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz}
  336. engines: {node: '>=12'}
  337. cpu: [s390x]
  338. os: [linux]
  339. '@esbuild/linux-x64@0.18.20':
  340. resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==, tarball: https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz}
  341. engines: {node: '>=12'}
  342. cpu: [x64]
  343. os: [linux]
  344. '@esbuild/netbsd-x64@0.18.20':
  345. resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==, tarball: https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz}
  346. engines: {node: '>=12'}
  347. cpu: [x64]
  348. os: [netbsd]
  349. '@esbuild/openbsd-x64@0.18.20':
  350. resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==, tarball: https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz}
  351. engines: {node: '>=12'}
  352. cpu: [x64]
  353. os: [openbsd]
  354. '@esbuild/sunos-x64@0.18.20':
  355. resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==, tarball: https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz}
  356. engines: {node: '>=12'}
  357. cpu: [x64]
  358. os: [sunos]
  359. '@esbuild/win32-arm64@0.18.20':
  360. resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==, tarball: https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz}
  361. engines: {node: '>=12'}
  362. cpu: [arm64]
  363. os: [win32]
  364. '@esbuild/win32-ia32@0.18.20':
  365. resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==, tarball: https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz}
  366. engines: {node: '>=12'}
  367. cpu: [ia32]
  368. os: [win32]
  369. '@esbuild/win32-x64@0.18.20':
  370. resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==, tarball: https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz}
  371. engines: {node: '>=12'}
  372. cpu: [x64]
  373. os: [win32]
  374. '@eslint-community/eslint-utils@4.4.0':
  375. resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
  376. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  377. peerDependencies:
  378. eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
  379. '@eslint/eslintrc@1.4.1':
  380. resolution: {integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==}
  381. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  382. '@floating-ui/core@1.5.0':
  383. resolution: {integrity: sha512-kK1h4m36DQ0UHGj5Ah4db7R0rHemTqqO0QLvUqi1/mUUp3LuAWbWxdxSIf/XsnH9VS6rRVPLJCncjRzUvyCLXg==, tarball: https://registry.npmjs.org/@floating-ui/core/-/core-1.5.0.tgz}
  384. '@floating-ui/dom@1.5.3':
  385. resolution: {integrity: sha512-ClAbQnEqJAKCJOEbbLo5IUlZHkNszqhuxS4fHAVxRPXPya6Ysf2G8KypnYcOTpx6I8xcgF9bbHb6g/2KpbV8qA==, tarball: https://registry.npmjs.org/@floating-ui/dom/-/dom-1.5.3.tgz}
  386. '@floating-ui/utils@0.1.6':
  387. resolution: {integrity: sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A==, tarball: https://registry.npmjs.org/@floating-ui/utils/-/utils-0.1.6.tgz}
  388. '@humanwhocodes/config-array@0.10.7':
  389. resolution: {integrity: sha512-MDl6D6sBsaV452/QSdX+4CXIjZhIcI0PELsxUjk4U828yd58vk3bTIvk/6w5FY+4hIy9sLW0sfrV7K7Kc++j/w==}
  390. engines: {node: '>=10.10.0'}
  391. '@humanwhocodes/gitignore-to-minimatch@1.0.2':
  392. resolution: {integrity: sha512-rSqmMJDdLFUsyxR6FMtD00nfQKKLFb1kv+qBbOVKqErvloEIJLo5bDTJTQNTYgeyp78JsA7u/NPi5jT1GR/MuA==}
  393. '@humanwhocodes/object-schema@1.2.1':
  394. resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
  395. '@jridgewell/gen-mapping@0.3.3':
  396. resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==}
  397. engines: {node: '>=6.0.0'}
  398. '@jridgewell/resolve-uri@3.1.1':
  399. resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==}
  400. engines: {node: '>=6.0.0'}
  401. '@jridgewell/set-array@1.1.2':
  402. resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
  403. engines: {node: '>=6.0.0'}
  404. '@jridgewell/sourcemap-codec@1.4.15':
  405. resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
  406. '@jridgewell/trace-mapping@0.3.20':
  407. resolution: {integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==}
  408. '@nodelib/fs.scandir@2.1.5':
  409. resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
  410. engines: {node: '>= 8'}
  411. '@nodelib/fs.stat@2.0.5':
  412. resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
  413. engines: {node: '>= 8'}
  414. '@nodelib/fs.walk@1.2.8':
  415. resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
  416. engines: {node: '>= 8'}
  417. '@rollup/pluginutils@5.0.5':
  418. resolution: {integrity: sha512-6aEYR910NyP73oHiJglti74iRyOwgFU4x3meH/H8OJx6Ry0j6cOVZ5X/wTvub7G7Ao6qaHBEaNsV3GLJkSsF+Q==}
  419. engines: {node: '>=14.0.0'}
  420. peerDependencies:
  421. rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
  422. peerDependenciesMeta:
  423. rollup:
  424. optional: true
  425. '@sxzz/popperjs-es@2.11.7':
  426. resolution: {integrity: sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==, tarball: https://registry.npmjs.org/@sxzz/popperjs-es/-/popperjs-es-2.11.7.tgz}
  427. '@tinymce/tinymce-vue@4.0.7':
  428. resolution: {integrity: sha512-1esB8wGWrjPCY+rK8vy3QB1cxwXo7HLJWuNrcyPl6LOVR+QJjub0OiV/C+TUEsLN6OpCtRv+QnIqMC5vXz783Q==}
  429. peerDependencies:
  430. vue: ^3.0.0
  431. '@transloadit/prettier-bytes@0.0.7':
  432. resolution: {integrity: sha512-VeJbUb0wEKbcwaSlj5n+LscBl9IPgLPkHVGBkh00cztv6X4L/TJXK58LzFuBKX7/GAfiGhIwH67YTLTlzvIzBA==}
  433. '@trysound/sax@0.2.0':
  434. resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
  435. engines: {node: '>=10.13.0'}
  436. '@types/estree@1.0.5':
  437. resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
  438. '@types/event-emitter@0.3.5':
  439. resolution: {integrity: sha512-zx2/Gg0Eg7gwEiOIIh5w9TrhKKTeQh7CPCOPNc0el4pLSwzebA8SmnHwZs2dWlLONvyulykSwGSQxQHLhjGLvQ==}
  440. '@types/lodash-es@4.17.12':
  441. resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==, tarball: https://registry.npmjs.org/@types/lodash-es/-/lodash-es-4.17.12.tgz}
  442. '@types/lodash@4.14.202':
  443. resolution: {integrity: sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==, tarball: https://registry.npmjs.org/@types/lodash/-/lodash-4.14.202.tgz}
  444. '@types/node@20.9.5':
  445. resolution: {integrity: sha512-Uq2xbNq0chGg+/WQEU0LJTSs/1nKxz6u1iemLcGomkSnKokbW1fbLqc3HOqCf2JP7KjlL4QkS7oZZTrOQHQYgQ==}
  446. '@types/sortablejs@1.15.8':
  447. resolution: {integrity: sha512-b79830lW+RZfwaztgs1aVPgbasJ8e7AXtZYHTELNXZPsERt4ymJdjV4OccDbHQAvHrCcFpbF78jkm0R6h/pZVg==, tarball: https://registry.npmjs.org/@types/sortablejs/-/sortablejs-1.15.8.tgz}
  448. '@types/svgo@2.6.4':
  449. resolution: {integrity: sha512-l4cmyPEckf8moNYHdJ+4wkHvFxjyW6ulm9l4YGaOxeyBWPhBOT0gvni1InpFPdzx1dKf/2s62qGITwxNWnPQng==}
  450. '@types/video.js@7.3.58':
  451. resolution: {integrity: sha512-1CQjuSrgbv1/dhmcfQ83eVyYbvGyqhTvb2Opxr0QCV+iJ4J6/J+XWQ3Om59WiwCd1MN3rDUHasx5XRrpUtewYQ==, tarball: https://registry.npmjs.org/@types/video.js/-/video.js-7.3.58.tgz}
  452. '@types/web-bluetooth@0.0.16':
  453. resolution: {integrity: sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==, tarball: https://registry.npmjs.org/@types/web-bluetooth/-/web-bluetooth-0.0.16.tgz}
  454. '@types/web-bluetooth@0.0.20':
  455. resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==}
  456. '@uppy/companion-client@2.2.2':
  457. resolution: {integrity: sha512-5mTp2iq97/mYSisMaBtFRry6PTgZA6SIL7LePteOV5x0/DxKfrZW3DEiQERJmYpHzy7k8johpm2gHnEKto56Og==}
  458. '@uppy/core@2.3.4':
  459. resolution: {integrity: sha512-iWAqppC8FD8mMVqewavCz+TNaet6HPXitmGXpGGREGrakZ4FeuWytVdrelydzTdXx6vVKkOmI2FLztGg73sENQ==}
  460. '@uppy/store-default@2.1.1':
  461. resolution: {integrity: sha512-xnpTxvot2SeAwGwbvmJ899ASk5tYXhmZzD/aCFsXePh/v8rNvR2pKlcQUH7cF/y4baUGq3FHO/daKCok/mpKqQ==}
  462. '@uppy/utils@4.1.3':
  463. resolution: {integrity: sha512-nTuMvwWYobnJcytDO3t+D6IkVq/Qs4Xv3vyoEZ+Iaf8gegZP+rEyoaFT2CK5XLRMienPyqRqNbIfRuFaOWSIFw==}
  464. '@uppy/xhr-upload@2.1.3':
  465. resolution: {integrity: sha512-YWOQ6myBVPs+mhNjfdWsQyMRWUlrDLMoaG7nvf/G6Y3GKZf8AyjFDjvvJ49XWQ+DaZOftGkHmF1uh/DBeGivJQ==}
  466. peerDependencies:
  467. '@uppy/core': ^2.3.3
  468. '@videojs-player/vue@1.0.0':
  469. resolution: {integrity: sha512-WonTezRfKu3fYdQLt/ta+nuKH6gMZUv8l40Jke/j4Lae7IqeO/+lLAmBnh3ni88bwR+vkFXIlZ2Ci7VKInIYJg==}
  470. peerDependencies:
  471. '@types/video.js': 7.x
  472. video.js: 7.x
  473. vue: 3.x
  474. '@videojs/http-streaming@2.16.3':
  475. resolution: {integrity: sha512-91CJv5PnFBzNBvyEjt+9cPzTK/xoVixARj2g7ZAvItA+5bx8VKdk5RxCz/PP2kdzz9W+NiDUMPkdmTsosmy69Q==}
  476. engines: {node: '>=8', npm: '>=5'}
  477. peerDependencies:
  478. video.js: ^6 || ^7
  479. '@videojs/vhs-utils@3.0.5':
  480. resolution: {integrity: sha512-PKVgdo8/GReqdx512F+ombhS+Bzogiofy1LgAj4tN8PfdBx3HSS7V5WfJotKTqtOWGwVfSWsrYN/t09/DSryrw==}
  481. engines: {node: '>=8', npm: '>=5'}
  482. '@videojs/xhr@2.6.0':
  483. resolution: {integrity: sha512-7J361GiN1tXpm+gd0xz2QWr3xNWBE+rytvo8J3KuggFaLg+U37gZQ2BuPLcnkfGffy2e+ozY70RHC8jt7zjA6Q==}
  484. '@vitejs/plugin-vue-jsx@3.1.0':
  485. resolution: {integrity: sha512-w9M6F3LSEU5kszVb9An2/MmXNxocAnUb3WhRr8bHlimhDrXNt6n6D2nJQR3UXpGlZHh/EsgouOHCsM8V3Ln+WA==}
  486. engines: {node: ^14.18.0 || >=16.0.0}
  487. peerDependencies:
  488. vite: ^4.0.0 || ^5.0.0
  489. vue: ^3.0.0
  490. '@vitejs/plugin-vue@4.5.0':
  491. resolution: {integrity: sha512-a2WSpP8X8HTEww/U00bU4mX1QpLINNuz/2KMNpLsdu3BzOpak3AGI1CJYBTXcc4SPhaD0eNRUp7IyQK405L5dQ==}
  492. engines: {node: ^14.18.0 || >=16.0.0}
  493. peerDependencies:
  494. vite: ^4.0.0 || ^5.0.0
  495. vue: ^3.2.25
  496. '@vue/babel-helper-vue-transform-on@1.1.5':
  497. resolution: {integrity: sha512-SgUymFpMoAyWeYWLAY+MkCK3QEROsiUnfaw5zxOVD/M64KQs8D/4oK6Q5omVA2hnvEOE0SCkH2TZxs/jnnUj7w==}
  498. '@vue/babel-plugin-jsx@1.1.5':
  499. resolution: {integrity: sha512-nKs1/Bg9U1n3qSWnsHhCVQtAzI6aQXqua8j/bZrau8ywT1ilXQbK4FwEJGmU8fV7tcpuFvWmmN7TMmV1OBma1g==}
  500. peerDependencies:
  501. '@babel/core': ^7.0.0-0
  502. '@vue/compiler-core@3.3.8':
  503. resolution: {integrity: sha512-hN/NNBUECw8SusQvDSqqcVv6gWq8L6iAktUR0UF3vGu2OhzRqcOiAno0FmBJWwxhYEXRlQJT5XnoKsVq1WZx4g==}
  504. '@vue/compiler-dom@3.3.8':
  505. resolution: {integrity: sha512-+PPtv+p/nWDd0AvJu3w8HS0RIm/C6VGBIRe24b9hSyNWOAPEUosFZ5diwawwP8ip5sJ8n0Pe87TNNNHnvjs0FQ==}
  506. '@vue/compiler-sfc@3.3.8':
  507. resolution: {integrity: sha512-WMzbUrlTjfYF8joyT84HfwwXo+8WPALuPxhy+BZ6R4Aafls+jDBnSz8PDz60uFhuqFbl3HxRfxvDzrUf3THwpA==}
  508. '@vue/compiler-ssr@3.3.8':
  509. resolution: {integrity: sha512-hXCqQL/15kMVDBuoBYpUnSYT8doDNwsjvm3jTefnXr+ytn294ySnT8NlsFHmTgKNjwpuFy7XVV8yTeLtNl/P6w==}
  510. '@vue/devtools-api@6.5.1':
  511. resolution: {integrity: sha512-+KpckaAQyfbvshdDW5xQylLni1asvNSGme1JFs8I1+/H5pHEhqUKMEQD/qn3Nx5+/nycBq11qAEi8lk+LXI2dA==}
  512. '@vue/reactivity-transform@3.3.8':
  513. resolution: {integrity: sha512-49CvBzmZNtcHua0XJ7GdGifM8GOXoUMOX4dD40Y5DxI3R8OUhMlvf2nvgUAcPxaXiV5MQQ1Nwy09ADpnLQUqRw==}
  514. '@vue/reactivity@3.3.8':
  515. resolution: {integrity: sha512-ctLWitmFBu6mtddPyOKpHg8+5ahouoTCRtmAHZAXmolDtuZXfjL2T3OJ6DL6ezBPQB1SmMnpzjiWjCiMYmpIuw==}
  516. '@vue/runtime-core@3.3.8':
  517. resolution: {integrity: sha512-qurzOlb6q26KWQ/8IShHkMDOuJkQnQcTIp1sdP4I9MbCf9FJeGVRXJFr2mF+6bXh/3Zjr9TDgURXrsCr9bfjUw==}
  518. '@vue/runtime-dom@3.3.8':
  519. resolution: {integrity: sha512-Noy5yM5UIf9UeFoowBVgghyGGPIDPy1Qlqt0yVsUdAVbqI8eeMSsTqBtauaEoT2UFXUk5S64aWVNJN4MJ2vRdA==}
  520. '@vue/server-renderer@3.3.8':
  521. resolution: {integrity: sha512-zVCUw7RFskvPuNlPn/8xISbrf0zTWsTSdYTsUTN1ERGGZGVnRxM2QZ3x1OR32+vwkkCm0IW6HmJ49IsPm7ilLg==}
  522. peerDependencies:
  523. vue: 3.3.8
  524. '@vue/shared@3.3.8':
  525. resolution: {integrity: sha512-8PGwybFwM4x8pcfgqEQFy70NaQxASvOC5DJwLQfpArw1UDfUXrJkdxD3BhVTMS+0Lef/TU7YO0Jvr0jJY8T+mw==}
  526. '@vueup/vue-quill@1.2.0':
  527. resolution: {integrity: sha512-kd5QPSHMDpycklojPXno2Kw2JSiKMYduKYQckTm1RJoVDA557MnyUXgcuuDpry4HY/Rny9nGNcK+m3AHk94wag==}
  528. peerDependencies:
  529. vue: ^3.2.41
  530. '@vueuse/core@10.6.1':
  531. resolution: {integrity: sha512-Pc26IJbqgC9VG1u6VY/xrXXfxD33hnvxBnKrLlA2LJlyHII+BSrRoTPJgGYq7qZOu61itITFUnm6QbacwZ4H8Q==}
  532. '@vueuse/core@9.13.0':
  533. resolution: {integrity: sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==, tarball: https://registry.npmjs.org/@vueuse/core/-/core-9.13.0.tgz}
  534. '@vueuse/metadata@10.6.1':
  535. resolution: {integrity: sha512-qhdwPI65Bgcj23e5lpGfQsxcy0bMjCAsUGoXkJ7DsoeDUdasbZ2DBa4dinFCOER3lF4gwUv+UD2AlA11zdzMFw==}
  536. '@vueuse/metadata@9.13.0':
  537. resolution: {integrity: sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==, tarball: https://registry.npmjs.org/@vueuse/metadata/-/metadata-9.13.0.tgz}
  538. '@vueuse/shared@10.6.1':
  539. resolution: {integrity: sha512-TECVDTIedFlL0NUfHWncf3zF9Gc4VfdxfQc8JFwoVZQmxpONhLxFrlm0eHQeidHj4rdTPL3KXJa0TZCk1wnc5Q==}
  540. '@vueuse/shared@9.13.0':
  541. resolution: {integrity: sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==, tarball: https://registry.npmjs.org/@vueuse/shared/-/shared-9.13.0.tgz}
  542. '@wangeditor/basic-modules@1.1.7':
  543. resolution: {integrity: sha512-cY9CPkLJaqF05STqfpZKWG4LpxTMeGSIIF1fHvfm/mz+JXatCagjdkbxdikOuKYlxDdeqvOeBmsUBItufDLXZg==}
  544. peerDependencies:
  545. '@wangeditor/core': 1.x
  546. dom7: ^3.0.0
  547. lodash.throttle: ^4.1.1
  548. nanoid: ^3.2.0
  549. slate: ^0.72.0
  550. snabbdom: ^3.1.0
  551. '@wangeditor/code-highlight@1.0.3':
  552. resolution: {integrity: sha512-iazHwO14XpCuIWJNTQTikqUhGKyqj+dUNWJ9288Oym9M2xMVHvnsOmDU2sgUDWVy+pOLojReMPgXCsvvNlOOhw==}
  553. peerDependencies:
  554. '@wangeditor/core': 1.x
  555. dom7: ^3.0.0
  556. slate: ^0.72.0
  557. snabbdom: ^3.1.0
  558. '@wangeditor/core@1.1.19':
  559. resolution: {integrity: sha512-KevkB47+7GhVszyYF2pKGKtCSj/YzmClsD03C3zTt+9SR2XWT5T0e3yQqg8baZpcMvkjs1D8Dv4fk8ok/UaS2Q==}
  560. peerDependencies:
  561. '@uppy/core': ^2.1.1
  562. '@uppy/xhr-upload': ^2.0.3
  563. dom7: ^3.0.0
  564. is-hotkey: ^0.2.0
  565. lodash.camelcase: ^4.3.0
  566. lodash.clonedeep: ^4.5.0
  567. lodash.debounce: ^4.0.8
  568. lodash.foreach: ^4.5.0
  569. lodash.isequal: ^4.5.0
  570. lodash.throttle: ^4.1.1
  571. lodash.toarray: ^4.4.0
  572. nanoid: ^3.2.0
  573. slate: ^0.72.0
  574. snabbdom: ^3.1.0
  575. '@wangeditor/editor-for-vue@5.1.12':
  576. resolution: {integrity: sha512-0Ds3D8I+xnpNWezAeO7HmPRgTfUxHLMd9JKcIw+QzvSmhC5xUHbpCcLU+KLmeBKTR/zffnS5GQo6qi3GhTMJWQ==}
  577. peerDependencies:
  578. '@wangeditor/editor': '>=5.1.0'
  579. vue: ^3.0.5
  580. '@wangeditor/editor@5.1.23':
  581. resolution: {integrity: sha512-0RxfeVTuK1tktUaPROnCoFfaHVJpRAIE2zdS0mpP+vq1axVQpLjM8+fCvKzqYIkH0Pg+C+44hJpe3VVroSkEuQ==}
  582. '@wangeditor/list-module@1.0.5':
  583. resolution: {integrity: sha512-uDuYTP6DVhcYf7mF1pTlmNn5jOb4QtcVhYwSSAkyg09zqxI1qBqsfUnveeDeDqIuptSJhkh81cyxi+MF8sEPOQ==}
  584. peerDependencies:
  585. '@wangeditor/core': 1.x
  586. dom7: ^3.0.0
  587. slate: ^0.72.0
  588. snabbdom: ^3.1.0
  589. '@wangeditor/table-module@1.1.4':
  590. resolution: {integrity: sha512-5saanU9xuEocxaemGdNi9t8MCDSucnykEC6jtuiT72kt+/Hhh4nERYx1J20OPsTCCdVr7hIyQenFD1iSRkIQ6w==}
  591. peerDependencies:
  592. '@wangeditor/core': 1.x
  593. dom7: ^3.0.0
  594. lodash.isequal: ^4.5.0
  595. lodash.throttle: ^4.1.1
  596. nanoid: ^3.2.0
  597. slate: ^0.72.0
  598. snabbdom: ^3.1.0
  599. '@wangeditor/upload-image-module@1.0.2':
  600. resolution: {integrity: sha512-z81lk/v71OwPDYeQDxj6cVr81aDP90aFuywb8nPD6eQeECtOymrqRODjpO6VGvCVxVck8nUxBHtbxKtjgcwyiA==}
  601. peerDependencies:
  602. '@uppy/core': ^2.0.3
  603. '@uppy/xhr-upload': ^2.0.3
  604. '@wangeditor/basic-modules': 1.x
  605. '@wangeditor/core': 1.x
  606. dom7: ^3.0.0
  607. lodash.foreach: ^4.5.0
  608. slate: ^0.72.0
  609. snabbdom: ^3.1.0
  610. '@wangeditor/video-module@1.1.4':
  611. resolution: {integrity: sha512-ZdodDPqKQrgx3IwWu4ZiQmXI8EXZ3hm2/fM6E3t5dB8tCaIGWQZhmqd6P5knfkRAd3z2+YRSRbxOGfoRSp/rLg==}
  612. peerDependencies:
  613. '@uppy/core': ^2.1.4
  614. '@uppy/xhr-upload': ^2.0.7
  615. '@wangeditor/core': 1.x
  616. dom7: ^3.0.0
  617. nanoid: ^3.2.0
  618. slate: ^0.72.0
  619. snabbdom: ^3.1.0
  620. '@xmldom/xmldom@0.8.10':
  621. resolution: {integrity: sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==}
  622. engines: {node: '>=10.0.0'}
  623. acorn-jsx@5.3.2:
  624. resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
  625. peerDependencies:
  626. acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
  627. acorn@8.11.2:
  628. resolution: {integrity: sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==}
  629. engines: {node: '>=0.4.0'}
  630. hasBin: true
  631. aes-decrypter@3.1.3:
  632. resolution: {integrity: sha512-VkG9g4BbhMBy+N5/XodDeV6F02chEk9IpgRTq/0bS80y4dzy79VH2Gtms02VXomf3HmyRe3yyJYkJ990ns+d6A==}
  633. ajv@6.12.6:
  634. resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
  635. ansi-regex@2.1.1:
  636. resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==}
  637. engines: {node: '>=0.10.0'}
  638. ansi-regex@5.0.1:
  639. resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
  640. engines: {node: '>=8'}
  641. ansi-styles@2.2.1:
  642. resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==}
  643. engines: {node: '>=0.10.0'}
  644. ansi-styles@3.2.1:
  645. resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
  646. engines: {node: '>=4'}
  647. ansi-styles@4.3.0:
  648. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  649. engines: {node: '>=8'}
  650. anymatch@3.1.3:
  651. resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
  652. engines: {node: '>= 8'}
  653. argparse@2.0.1:
  654. resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
  655. arr-diff@4.0.0:
  656. resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==}
  657. engines: {node: '>=0.10.0'}
  658. arr-flatten@1.1.0:
  659. resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==}
  660. engines: {node: '>=0.10.0'}
  661. arr-union@3.1.0:
  662. resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==}
  663. engines: {node: '>=0.10.0'}
  664. array-union@2.1.0:
  665. resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
  666. engines: {node: '>=8'}
  667. array-unique@0.3.2:
  668. resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==}
  669. engines: {node: '>=0.10.0'}
  670. assign-symbols@1.0.0:
  671. resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==}
  672. engines: {node: '>=0.10.0'}
  673. async-validator@4.2.5:
  674. resolution: {integrity: sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==, tarball: https://registry.npmjs.org/async-validator/-/async-validator-4.2.5.tgz}
  675. atob@2.1.2:
  676. resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==}
  677. engines: {node: '>= 4.5.0'}
  678. hasBin: true
  679. axios@0.18.1:
  680. resolution: {integrity: sha512-0BfJq4NSfQXd+SkFdrvFbG7addhYSBA2mQwISr46pD6E5iqkWg02RAs8vyTT/j0RTnoYmeXauBuSv1qKwR179g==}
  681. deprecated: Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410
  682. balanced-match@1.0.2:
  683. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  684. base@0.11.2:
  685. resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==}
  686. engines: {node: '>=0.10.0'}
  687. big.js@5.2.2:
  688. resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
  689. binary-extensions@2.2.0:
  690. resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
  691. engines: {node: '>=8'}
  692. bluebird@3.7.2:
  693. resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==}
  694. boolbase@1.0.0:
  695. resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
  696. brace-expansion@1.1.11:
  697. resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
  698. brace-expansion@2.0.1:
  699. resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
  700. braces@2.3.2:
  701. resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==}
  702. engines: {node: '>=0.10.0'}
  703. braces@3.0.2:
  704. resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
  705. engines: {node: '>=8'}
  706. browserslist@4.22.1:
  707. resolution: {integrity: sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==}
  708. engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
  709. hasBin: true
  710. cache-base@1.0.1:
  711. resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==}
  712. engines: {node: '>=0.10.0'}
  713. call-bind@1.0.5:
  714. resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==}
  715. callsites@3.1.0:
  716. resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
  717. engines: {node: '>=6'}
  718. camelcase@6.3.0:
  719. resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
  720. engines: {node: '>=10'}
  721. caniuse-lite@1.0.30001564:
  722. resolution: {integrity: sha512-DqAOf+rhof+6GVx1y+xzbFPeOumfQnhYzVnZD6LAXijR77yPtm9mfOcqOnT3mpnJiZVT+kwLAFnRlZcIz+c6bg==}
  723. chalk@1.1.3:
  724. resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==}
  725. engines: {node: '>=0.10.0'}
  726. chalk@2.4.2:
  727. resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
  728. engines: {node: '>=4'}
  729. chalk@4.1.2:
  730. resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
  731. engines: {node: '>=10'}
  732. chokidar@3.5.3:
  733. resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
  734. engines: {node: '>= 8.10.0'}
  735. class-utils@0.3.6:
  736. resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==}
  737. engines: {node: '>=0.10.0'}
  738. clipboard@2.0.11:
  739. resolution: {integrity: sha512-C+0bbOqkezLIsmWSvlsXS0Q0bmkugu7jcfMIACB+RDEntIzQIkdr148we28AfSloQLRdZlYL/QYyrq05j/3Faw==}
  740. clone@2.1.2:
  741. resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==}
  742. engines: {node: '>=0.8'}
  743. collection-visit@1.0.0:
  744. resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==}
  745. engines: {node: '>=0.10.0'}
  746. color-convert@1.9.3:
  747. resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
  748. color-convert@2.0.1:
  749. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  750. engines: {node: '>=7.0.0'}
  751. color-name@1.1.3:
  752. resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
  753. color-name@1.1.4:
  754. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  755. commander@7.2.0:
  756. resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
  757. engines: {node: '>= 10'}
  758. component-emitter@1.3.1:
  759. resolution: {integrity: sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==}
  760. compute-scroll-into-view@1.0.20:
  761. resolution: {integrity: sha512-UCB0ioiyj8CRjtrvaceBLqqhZCVP+1B8+NWQhmdsm0VXOJtobBCf1dBQmebCCo34qZmUwZfIH2MZLqNHazrfjg==}
  762. concat-map@0.0.1:
  763. resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
  764. convert-source-map@2.0.0:
  765. resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
  766. copy-descriptor@0.1.1:
  767. resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==}
  768. engines: {node: '>=0.10.0'}
  769. core-js@3.6.5:
  770. resolution: {integrity: sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA==}
  771. 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.
  772. cors@2.8.5:
  773. resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==}
  774. engines: {node: '>= 0.10'}
  775. cross-spawn@7.0.3:
  776. resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
  777. engines: {node: '>= 8'}
  778. css-select@4.3.0:
  779. resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==}
  780. css-tree@1.1.3:
  781. resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==}
  782. engines: {node: '>=8.0.0'}
  783. css-what@6.1.0:
  784. resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
  785. engines: {node: '>= 6'}
  786. cssesc@3.0.0:
  787. resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
  788. engines: {node: '>=4'}
  789. hasBin: true
  790. csso@4.2.0:
  791. resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==}
  792. engines: {node: '>=8.0.0'}
  793. csstype@3.1.2:
  794. resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==}
  795. d@1.0.1:
  796. resolution: {integrity: sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==}
  797. dayjs@1.11.13:
  798. resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==, tarball: https://registry.npmjs.org/dayjs/-/dayjs-1.11.13.tgz}
  799. debug@2.6.9:
  800. resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
  801. peerDependencies:
  802. supports-color: '*'
  803. peerDependenciesMeta:
  804. supports-color:
  805. optional: true
  806. debug@3.1.0:
  807. resolution: {integrity: sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==}
  808. peerDependencies:
  809. supports-color: '*'
  810. peerDependenciesMeta:
  811. supports-color:
  812. optional: true
  813. debug@4.3.4:
  814. resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
  815. engines: {node: '>=6.0'}
  816. peerDependencies:
  817. supports-color: '*'
  818. peerDependenciesMeta:
  819. supports-color:
  820. optional: true
  821. decode-uri-component@0.2.2:
  822. resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==}
  823. engines: {node: '>=0.10'}
  824. deep-equal@1.1.2:
  825. resolution: {integrity: sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==}
  826. engines: {node: '>= 0.4'}
  827. deep-is@0.1.4:
  828. resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
  829. define-data-property@1.1.1:
  830. resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==}
  831. engines: {node: '>= 0.4'}
  832. define-properties@1.2.1:
  833. resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
  834. engines: {node: '>= 0.4'}
  835. define-property@0.2.5:
  836. resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==}
  837. engines: {node: '>=0.10.0'}
  838. define-property@1.0.0:
  839. resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==}
  840. engines: {node: '>=0.10.0'}
  841. define-property@2.0.2:
  842. resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==}
  843. engines: {node: '>=0.10.0'}
  844. delegate@3.2.0:
  845. resolution: {integrity: sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==}
  846. dir-glob@3.0.1:
  847. resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
  848. engines: {node: '>=8'}
  849. doctrine@3.0.0:
  850. resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
  851. engines: {node: '>=6.0.0'}
  852. dom-serializer@0.2.2:
  853. resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==}
  854. dom-serializer@1.4.1:
  855. resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
  856. dom-walk@0.1.2:
  857. resolution: {integrity: sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==}
  858. dom7@3.0.0:
  859. resolution: {integrity: sha512-oNlcUdHsC4zb7Msx7JN3K0Nro1dzJ48knvBOnDPKJ2GV9wl1i5vydJZUSyOfrkKFDZEud/jBsTk92S/VGSAe/g==}
  860. domelementtype@1.3.1:
  861. resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==}
  862. domelementtype@2.3.0:
  863. resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
  864. domhandler@2.4.2:
  865. resolution: {integrity: sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==}
  866. domhandler@4.3.1:
  867. resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
  868. engines: {node: '>= 4'}
  869. domutils@1.7.0:
  870. resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==}
  871. domutils@2.8.0:
  872. resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
  873. echarts@5.4.3:
  874. resolution: {integrity: sha512-mYKxLxhzy6zyTi/FaEbJMOZU1ULGEQHaeIeuMR5L+JnJTpz+YR03mnnpBhbR4+UYJAgiXgpyTVLffPAjOTLkZA==}
  875. electron-to-chromium@1.4.593:
  876. resolution: {integrity: sha512-c7+Hhj87zWmdpmjDONbvNKNo24tvmD4mjal1+qqTYTrlF0/sNpAcDlU0Ki84ftA/5yj3BF2QhSGEC0Rky6larg==}
  877. element-plus@2.5.6:
  878. resolution: {integrity: sha512-zctKTiyIDmcnMp3K5WG1hglgraW9EbiCLiIDVtaMCS5mPMl2fRKdS0vOFGnECIq9taFoxnyoDwxHD81nv0B4RA==, tarball: https://registry.npmjs.org/element-plus/-/element-plus-2.5.6.tgz}
  879. peerDependencies:
  880. vue: ^3.2.0
  881. emojis-list@3.0.0:
  882. resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==}
  883. engines: {node: '>= 4'}
  884. entities@1.1.2:
  885. resolution: {integrity: sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==}
  886. entities@2.2.0:
  887. resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
  888. es5-ext@0.10.62:
  889. resolution: {integrity: sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==}
  890. engines: {node: '>=0.10'}
  891. es6-iterator@2.0.3:
  892. resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==}
  893. es6-promise@4.2.8:
  894. resolution: {integrity: sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==}
  895. es6-symbol@3.1.3:
  896. resolution: {integrity: sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==}
  897. esbuild@0.18.20:
  898. resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==, tarball: https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz}
  899. engines: {node: '>=12'}
  900. hasBin: true
  901. escalade@3.1.1:
  902. resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
  903. engines: {node: '>=6'}
  904. escape-html@1.0.3:
  905. resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==, tarball: https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz}
  906. escape-string-regexp@1.0.5:
  907. resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
  908. engines: {node: '>=0.8.0'}
  909. escape-string-regexp@4.0.0:
  910. resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
  911. engines: {node: '>=10'}
  912. escape-string-regexp@5.0.0:
  913. resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
  914. engines: {node: '>=12'}
  915. eslint-plugin-vue@9.18.1:
  916. resolution: {integrity: sha512-7hZFlrEgg9NIzuVik2I9xSnJA5RsmOfueYgsUGUokEDLJ1LHtxO0Pl4duje1BriZ/jDWb+44tcIlC3yi0tdlZg==}
  917. engines: {node: ^14.17.0 || >=16.0.0}
  918. peerDependencies:
  919. eslint: ^6.2.0 || ^7.0.0 || ^8.0.0
  920. eslint-scope@7.2.2:
  921. resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
  922. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  923. eslint-utils@3.0.0:
  924. resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
  925. engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
  926. peerDependencies:
  927. eslint: '>=5'
  928. eslint-visitor-keys@2.1.0:
  929. resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==}
  930. engines: {node: '>=10'}
  931. eslint-visitor-keys@3.4.3:
  932. resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
  933. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  934. eslint@8.22.0:
  935. resolution: {integrity: sha512-ci4t0sz6vSRKdmkOGmprBo6fmI4PrphDFMy5JEq/fNS0gQkJM3rLmrqcp8ipMcdobH3KtUP40KniAE9W19S4wA==}
  936. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  937. hasBin: true
  938. espree@9.6.1:
  939. resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
  940. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  941. esquery@1.5.0:
  942. resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
  943. engines: {node: '>=0.10'}
  944. esrecurse@4.3.0:
  945. resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
  946. engines: {node: '>=4.0'}
  947. estraverse@5.3.0:
  948. resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
  949. engines: {node: '>=4.0'}
  950. estree-walker@2.0.2:
  951. resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
  952. esutils@2.0.3:
  953. resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
  954. engines: {node: '>=0.10.0'}
  955. etag@1.8.1:
  956. resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
  957. engines: {node: '>= 0.6'}
  958. event-emitter@0.3.5:
  959. resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==}
  960. eventemitter3@2.0.3:
  961. resolution: {integrity: sha512-jLN68Dx5kyFHaePoXWPsCGW5qdyZQtLYHkxkg02/Mz6g0kYpDx4FyP6XfArhQdlOC4b8Mv+EMxPo/8La7Tzghg==}
  962. expand-brackets@2.1.4:
  963. resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==}
  964. engines: {node: '>=0.10.0'}
  965. ext@1.7.0:
  966. resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==}
  967. extend-shallow@2.0.1:
  968. resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==}
  969. engines: {node: '>=0.10.0'}
  970. extend-shallow@3.0.2:
  971. resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==}
  972. engines: {node: '>=0.10.0'}
  973. extend@3.0.2:
  974. resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
  975. extglob@2.0.4:
  976. resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==}
  977. engines: {node: '>=0.10.0'}
  978. fast-deep-equal@3.1.3:
  979. resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
  980. fast-diff@1.1.2:
  981. resolution: {integrity: sha512-KaJUt+M9t1qaIteSvjc6P3RbMdXsNhK61GRftR6SNxqmhthcd9MGIi4T+o0jD8LUSpSnSKXE20nLtJ3fOHxQig==}
  982. fast-diff@1.2.0:
  983. resolution: {integrity: sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==}
  984. fast-glob@3.3.2:
  985. resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
  986. engines: {node: '>=8.6.0'}
  987. fast-json-stable-stringify@2.1.0:
  988. resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
  989. fast-levenshtein@2.0.6:
  990. resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
  991. fastq@1.15.0:
  992. resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==}
  993. file-entry-cache@6.0.1:
  994. resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
  995. engines: {node: ^10.12.0 || >=12.0.0}
  996. fill-range@4.0.0:
  997. resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==}
  998. engines: {node: '>=0.10.0'}
  999. fill-range@7.0.1:
  1000. resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
  1001. engines: {node: '>=8'}
  1002. find-up@5.0.0:
  1003. resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
  1004. engines: {node: '>=10'}
  1005. flat-cache@3.2.0:
  1006. resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
  1007. engines: {node: ^10.12.0 || >=12.0.0}
  1008. flatted@3.2.9:
  1009. resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==}
  1010. follow-redirects@1.5.10:
  1011. resolution: {integrity: sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==}
  1012. engines: {node: '>=4.0'}
  1013. for-in@1.0.2:
  1014. resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==}
  1015. engines: {node: '>=0.10.0'}
  1016. fragment-cache@0.2.1:
  1017. resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==}
  1018. engines: {node: '>=0.10.0'}
  1019. fs-extra@10.1.0:
  1020. resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
  1021. engines: {node: '>=12'}
  1022. fs.realpath@1.0.0:
  1023. resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
  1024. fsevents@2.3.3:
  1025. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==, tarball: https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz}
  1026. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  1027. os: [darwin]
  1028. function-bind@1.1.2:
  1029. resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
  1030. functional-red-black-tree@1.0.1:
  1031. resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==}
  1032. functions-have-names@1.2.3:
  1033. resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
  1034. fuse.js@6.6.2:
  1035. resolution: {integrity: sha512-cJaJkxCCxC8qIIcPBF9yGxY0W/tVZS3uEISDxhYIdtk8OL93pe+6Zj7LjCqVV4dzbqcriOZ+kQ/NE4RXZHsIGA==}
  1036. engines: {node: '>=10'}
  1037. gensync@1.0.0-beta.2:
  1038. resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
  1039. engines: {node: '>=6.9.0'}
  1040. get-intrinsic@1.2.2:
  1041. resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==}
  1042. get-value@2.0.6:
  1043. resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==}
  1044. engines: {node: '>=0.10.0'}
  1045. glob-parent@5.1.2:
  1046. resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
  1047. engines: {node: '>= 6'}
  1048. glob-parent@6.0.2:
  1049. resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
  1050. engines: {node: '>=10.13.0'}
  1051. glob@7.2.3:
  1052. resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
  1053. global@4.4.0:
  1054. resolution: {integrity: sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==}
  1055. globals@11.12.0:
  1056. resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
  1057. engines: {node: '>=4'}
  1058. globals@13.23.0:
  1059. resolution: {integrity: sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==}
  1060. engines: {node: '>=8'}
  1061. globby@11.1.0:
  1062. resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
  1063. engines: {node: '>=10'}
  1064. good-listener@1.2.2:
  1065. resolution: {integrity: sha512-goW1b+d9q/HIwbVYZzZ6SsTr4IgE+WA44A0GmPIQstuOrgsFcT7VEJ48nmr9GaRtNu0XTKacFLGnBPAM6Afouw==}
  1066. gopd@1.0.1:
  1067. resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
  1068. graceful-fs@4.2.11:
  1069. resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
  1070. grapheme-splitter@1.0.4:
  1071. resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==}
  1072. has-ansi@2.0.0:
  1073. resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==}
  1074. engines: {node: '>=0.10.0'}
  1075. has-flag@1.0.0:
  1076. resolution: {integrity: sha512-DyYHfIYwAJmjAjSSPKANxI8bFY9YtFrgkAfinBojQ8YJTOuOuav64tMUJv584SES4xl74PmuaevIyaLESHdTAA==}
  1077. engines: {node: '>=0.10.0'}
  1078. has-flag@3.0.0:
  1079. resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
  1080. engines: {node: '>=4'}
  1081. has-flag@4.0.0:
  1082. resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
  1083. engines: {node: '>=8'}
  1084. has-property-descriptors@1.0.1:
  1085. resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==}
  1086. has-proto@1.0.1:
  1087. resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
  1088. engines: {node: '>= 0.4'}
  1089. has-symbols@1.0.3:
  1090. resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
  1091. engines: {node: '>= 0.4'}
  1092. has-tostringtag@1.0.0:
  1093. resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==}
  1094. engines: {node: '>= 0.4'}
  1095. has-value@0.3.1:
  1096. resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==}
  1097. engines: {node: '>=0.10.0'}
  1098. has-value@1.0.0:
  1099. resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==}
  1100. engines: {node: '>=0.10.0'}
  1101. has-values@0.1.4:
  1102. resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==}
  1103. engines: {node: '>=0.10.0'}
  1104. has-values@1.0.0:
  1105. resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==}
  1106. engines: {node: '>=0.10.0'}
  1107. hasown@2.0.0:
  1108. resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==}
  1109. engines: {node: '>= 0.4'}
  1110. he@1.2.0:
  1111. resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
  1112. hasBin: true
  1113. html-tags@3.3.1:
  1114. resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
  1115. engines: {node: '>=8'}
  1116. html-void-elements@2.0.1:
  1117. resolution: {integrity: sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==}
  1118. htmlparser2@3.10.1:
  1119. resolution: {integrity: sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==}
  1120. i18next@20.6.1:
  1121. resolution: {integrity: sha512-yCMYTMEJ9ihCwEQQ3phLo7I/Pwycf8uAx+sRHwwk5U9Aui/IZYgQRyMqXafQOw5QQ7DM1Z+WyEXWIqSuJHhG2A==}
  1122. ignore@5.3.0:
  1123. resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==}
  1124. engines: {node: '>= 4'}
  1125. image-size@0.5.5:
  1126. resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==}
  1127. engines: {node: '>=0.10.0'}
  1128. hasBin: true
  1129. immer@9.0.21:
  1130. resolution: {integrity: sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==}
  1131. immutable@4.3.4:
  1132. resolution: {integrity: sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==}
  1133. import-fresh@3.3.0:
  1134. resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
  1135. engines: {node: '>=6'}
  1136. imurmurhash@0.1.4:
  1137. resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
  1138. engines: {node: '>=0.8.19'}
  1139. individual@2.0.0:
  1140. resolution: {integrity: sha512-pWt8hBCqJsUWI/HtcfWod7+N9SgAqyPEaF7JQjwzjn5vGrpg6aQ5qeAFQ7dx//UH4J1O+7xqew+gCeeFt6xN/g==}
  1141. inflight@1.0.6:
  1142. resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
  1143. inherits@2.0.4:
  1144. resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
  1145. is-accessor-descriptor@1.0.1:
  1146. resolution: {integrity: sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==}
  1147. engines: {node: '>= 0.10'}
  1148. is-arguments@1.1.1:
  1149. resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
  1150. engines: {node: '>= 0.4'}
  1151. is-binary-path@2.1.0:
  1152. resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
  1153. engines: {node: '>=8'}
  1154. is-buffer@1.1.6:
  1155. resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==}
  1156. is-buffer@2.0.5:
  1157. resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==}
  1158. engines: {node: '>=4'}
  1159. is-core-module@2.13.1:
  1160. resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==}
  1161. is-data-descriptor@1.0.1:
  1162. resolution: {integrity: sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==}
  1163. engines: {node: '>= 0.4'}
  1164. is-date-object@1.0.5:
  1165. resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
  1166. engines: {node: '>= 0.4'}
  1167. is-descriptor@0.1.7:
  1168. resolution: {integrity: sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==}
  1169. engines: {node: '>= 0.4'}
  1170. is-descriptor@1.0.3:
  1171. resolution: {integrity: sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==}
  1172. engines: {node: '>= 0.4'}
  1173. is-extendable@0.1.1:
  1174. resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==}
  1175. engines: {node: '>=0.10.0'}
  1176. is-extendable@1.0.1:
  1177. resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==}
  1178. engines: {node: '>=0.10.0'}
  1179. is-extglob@2.1.1:
  1180. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  1181. engines: {node: '>=0.10.0'}
  1182. is-function@1.0.2:
  1183. resolution: {integrity: sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==}
  1184. is-glob@4.0.3:
  1185. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  1186. engines: {node: '>=0.10.0'}
  1187. is-hotkey@0.2.0:
  1188. resolution: {integrity: sha512-UknnZK4RakDmTgz4PI1wIph5yxSs/mvChWs9ifnlXsKuXgWmOkY/hAE0H/k2MIqH0RlRye0i1oC07MCRSD28Mw==}
  1189. is-number@3.0.0:
  1190. resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==}
  1191. engines: {node: '>=0.10.0'}
  1192. is-number@7.0.0:
  1193. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  1194. engines: {node: '>=0.12.0'}
  1195. is-plain-obj@1.1.0:
  1196. resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==}
  1197. engines: {node: '>=0.10.0'}
  1198. is-plain-object@2.0.4:
  1199. resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
  1200. engines: {node: '>=0.10.0'}
  1201. is-plain-object@5.0.0:
  1202. resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
  1203. engines: {node: '>=0.10.0'}
  1204. is-regex@1.1.4:
  1205. resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
  1206. engines: {node: '>= 0.4'}
  1207. is-url@1.2.4:
  1208. resolution: {integrity: sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==}
  1209. is-windows@1.0.2:
  1210. resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
  1211. engines: {node: '>=0.10.0'}
  1212. isarray@1.0.0:
  1213. resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
  1214. isexe@2.0.0:
  1215. resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
  1216. isobject@2.1.0:
  1217. resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==}
  1218. engines: {node: '>=0.10.0'}
  1219. isobject@3.0.1:
  1220. resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
  1221. engines: {node: '>=0.10.0'}
  1222. js-base64@2.6.4:
  1223. resolution: {integrity: sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==}
  1224. js-cookie@2.2.0:
  1225. resolution: {integrity: sha512-7YAJP/LPE/MhDjHIdfIiT665HUSumCwPN2hAmO6OJZ8V3o1mtz2HeQ8BKetEjkh+3nqGxYaq1vPMViUR8kaOXw==}
  1226. js-tokens@4.0.0:
  1227. resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
  1228. js-yaml@4.1.0:
  1229. resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
  1230. hasBin: true
  1231. jsencrypt@3.3.2:
  1232. resolution: {integrity: sha512-arQR1R1ESGdAxY7ZheWr12wCaF2yF47v5qpB76TtV64H1pyGudk9Hvw8Y9tb/FiTIaaTRUyaSnm5T/Y53Ghm/A==}
  1233. jsesc@2.5.2:
  1234. resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
  1235. engines: {node: '>=4'}
  1236. hasBin: true
  1237. json-buffer@3.0.1:
  1238. resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
  1239. json-schema-traverse@0.4.1:
  1240. resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
  1241. json-stable-stringify-without-jsonify@1.0.1:
  1242. resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
  1243. json5@1.0.2:
  1244. resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
  1245. hasBin: true
  1246. json5@2.2.3:
  1247. resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
  1248. engines: {node: '>=6'}
  1249. hasBin: true
  1250. jsonc-parser@3.2.0:
  1251. resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==}
  1252. jsonfile@6.1.0:
  1253. resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
  1254. keycode@2.2.1:
  1255. resolution: {integrity: sha512-Rdgz9Hl9Iv4QKi8b0OlCRQEzp4AgVxyCtz5S/+VIHezDmrDhkp2N2TqBWOLz0/gbeREXOOiI9/4b8BY9uw2vFg==}
  1256. keyv@4.5.4:
  1257. resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
  1258. kind-of@3.2.2:
  1259. resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==}
  1260. engines: {node: '>=0.10.0'}
  1261. kind-of@4.0.0:
  1262. resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==}
  1263. engines: {node: '>=0.10.0'}
  1264. kind-of@5.1.0:
  1265. resolution: {integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==}
  1266. engines: {node: '>=0.10.0'}
  1267. kind-of@6.0.3:
  1268. resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
  1269. engines: {node: '>=0.10.0'}
  1270. levn@0.4.1:
  1271. resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
  1272. engines: {node: '>= 0.8.0'}
  1273. loader-utils@1.4.2:
  1274. resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==}
  1275. engines: {node: '>=4.0.0'}
  1276. local-pkg@0.4.3:
  1277. resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==}
  1278. engines: {node: '>=14'}
  1279. local-pkg@0.5.0:
  1280. resolution: {integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==}
  1281. engines: {node: '>=14'}
  1282. locate-path@6.0.0:
  1283. resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
  1284. engines: {node: '>=10'}
  1285. lodash-es@4.17.21:
  1286. resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==, tarball: https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz}
  1287. lodash-unified@1.0.3:
  1288. resolution: {integrity: sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==, tarball: https://registry.npmjs.org/lodash-unified/-/lodash-unified-1.0.3.tgz}
  1289. peerDependencies:
  1290. '@types/lodash-es': '*'
  1291. lodash: '*'
  1292. lodash-es: '*'
  1293. lodash.camelcase@4.3.0:
  1294. resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==}
  1295. lodash.clonedeep@4.5.0:
  1296. resolution: {integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==}
  1297. lodash.debounce@4.0.8:
  1298. resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
  1299. lodash.foreach@4.5.0:
  1300. resolution: {integrity: sha512-aEXTF4d+m05rVOAUG3z4vZZ4xVexLKZGF0lIxuHZ1Hplpk/3B6Z1+/ICICYRLm7c41Z2xiejbkCkJoTlypoXhQ==}
  1301. lodash.isequal@4.5.0:
  1302. resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==}
  1303. lodash.merge@4.6.2:
  1304. resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
  1305. lodash.throttle@4.1.1:
  1306. resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==}
  1307. lodash.toarray@4.4.0:
  1308. resolution: {integrity: sha512-QyffEA3i5dma5q2490+SgCvDN0pXLmRGSyAANuVi0HQ01Pkfr9fuoKQW8wm1wGBnJITs/mS7wQvS6VshUEBFCw==}
  1309. lodash@4.17.21:
  1310. resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
  1311. lru-cache@5.1.1:
  1312. resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
  1313. lru-cache@6.0.0:
  1314. resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
  1315. engines: {node: '>=10'}
  1316. m3u8-parser@4.8.0:
  1317. resolution: {integrity: sha512-UqA2a/Pw3liR6Df3gwxrqghCP17OpPlQj6RBPLYygf/ZSQ4MoSgvdvhvt35qV+3NaaA0FSZx93Ix+2brT1U7cA==}
  1318. magic-string@0.30.5:
  1319. resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==}
  1320. engines: {node: '>=12'}
  1321. map-cache@0.2.2:
  1322. resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==}
  1323. engines: {node: '>=0.10.0'}
  1324. map-visit@1.0.0:
  1325. resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==}
  1326. engines: {node: '>=0.10.0'}
  1327. mdn-data@2.0.14:
  1328. resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==}
  1329. memoize-one@6.0.0:
  1330. resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==, tarball: https://registry.npmjs.org/memoize-one/-/memoize-one-6.0.0.tgz}
  1331. merge-options@1.0.1:
  1332. resolution: {integrity: sha512-iuPV41VWKWBIOpBsjoxjDZw8/GbSfZ2mk7N1453bwMrfzdrIk7EzBd+8UVR6rkw67th7xnk9Dytl3J+lHPdxvg==}
  1333. engines: {node: '>=4'}
  1334. merge2@1.4.1:
  1335. resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
  1336. engines: {node: '>= 8'}
  1337. micromatch@3.1.0:
  1338. resolution: {integrity: sha512-3StSelAE+hnRvMs8IdVW7Uhk8CVed5tp+kLLGlBP6WiRAXS21GPGu/Nat4WNPXj2Eoc24B02SaeoyozPMfj0/g==}
  1339. engines: {node: '>=0.10.0'}
  1340. micromatch@4.0.5:
  1341. resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
  1342. engines: {node: '>=8.6'}
  1343. mime-match@1.0.2:
  1344. resolution: {integrity: sha512-VXp/ugGDVh3eCLOBCiHZMYWQaTNUHv2IJrut+yXA6+JbLPXHglHwfS/5A5L0ll+jkCY7fIzRJcH6OIunF+c6Cg==}
  1345. mime@3.0.0:
  1346. resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==}
  1347. engines: {node: '>=10.0.0'}
  1348. hasBin: true
  1349. min-document@2.19.0:
  1350. resolution: {integrity: sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==}
  1351. minimatch@3.1.2:
  1352. resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
  1353. minimatch@7.4.6:
  1354. resolution: {integrity: sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==}
  1355. engines: {node: '>=10'}
  1356. minimatch@9.0.3:
  1357. resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
  1358. engines: {node: '>=16 || 14 >=14.17'}
  1359. minimist@1.2.8:
  1360. resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
  1361. mixin-deep@1.3.2:
  1362. resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==}
  1363. engines: {node: '>=0.10.0'}
  1364. mlly@1.4.2:
  1365. resolution: {integrity: sha512-i/Ykufi2t1EZ6NaPLdfnZk2AX8cs0d+mTzVKuPfqPKPatxLApaBoxJQ9x1/uckXtrS/U5oisPMDkNs0yQTaBRg==}
  1366. moment@2.30.1:
  1367. resolution: {integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==}
  1368. mpd-parser@0.22.1:
  1369. resolution: {integrity: sha512-fwBebvpyPUU8bOzvhX0VQZgSohncbgYwUyJJoTSNpmy7ccD2ryiCvM7oRkn/xQH5cv73/xU7rJSNCLjdGFor0Q==}
  1370. hasBin: true
  1371. ms@2.0.0:
  1372. resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
  1373. ms@2.1.2:
  1374. resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
  1375. mux.js@6.0.1:
  1376. resolution: {integrity: sha512-22CHb59rH8pWGcPGW5Og7JngJ9s+z4XuSlYvnxhLuc58cA1WqGDQPzuG8I+sPm1/p0CdgpzVTaKW408k5DNn8w==}
  1377. engines: {node: '>=8', npm: '>=5'}
  1378. hasBin: true
  1379. namespace-emitter@2.0.1:
  1380. resolution: {integrity: sha512-N/sMKHniSDJBjfrkbS/tpkPj4RAbvW3mr8UAzvlMHyun93XEm83IAvhWtJVHo+RHn/oO8Job5YN4b+wRjSVp5g==}
  1381. nanoid@3.3.7:
  1382. resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
  1383. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  1384. hasBin: true
  1385. nanomatch@1.2.13:
  1386. resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==}
  1387. engines: {node: '>=0.10.0'}
  1388. natural-compare@1.4.0:
  1389. resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
  1390. next-tick@1.1.0:
  1391. resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==}
  1392. node-releases@2.0.13:
  1393. resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==}
  1394. normalize-path@3.0.0:
  1395. resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
  1396. engines: {node: '>=0.10.0'}
  1397. normalize-wheel-es@1.2.0:
  1398. resolution: {integrity: sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==, tarball: https://registry.npmjs.org/normalize-wheel-es/-/normalize-wheel-es-1.2.0.tgz}
  1399. normalize.css@7.0.0:
  1400. resolution: {integrity: sha512-LYaFZxj2Q1Q9e1VJ0f6laG46Rt5s9URhKyckNaA2vZnL/0gwQHWhM7ALQkp3WBQKM5sXRLQ5Ehrfkp+E/ZiCRg==}
  1401. nprogress@0.2.0:
  1402. resolution: {integrity: sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==}
  1403. nth-check@2.1.1:
  1404. resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
  1405. object-assign@4.1.1:
  1406. resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
  1407. engines: {node: '>=0.10.0'}
  1408. object-copy@0.1.0:
  1409. resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==}
  1410. engines: {node: '>=0.10.0'}
  1411. object-is@1.1.5:
  1412. resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==}
  1413. engines: {node: '>= 0.4'}
  1414. object-keys@1.1.1:
  1415. resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
  1416. engines: {node: '>= 0.4'}
  1417. object-visit@1.0.1:
  1418. resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==}
  1419. engines: {node: '>=0.10.0'}
  1420. object.pick@1.3.0:
  1421. resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==}
  1422. engines: {node: '>=0.10.0'}
  1423. once@1.4.0:
  1424. resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
  1425. optionator@0.9.3:
  1426. resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
  1427. engines: {node: '>= 0.8.0'}
  1428. p-limit@3.1.0:
  1429. resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
  1430. engines: {node: '>=10'}
  1431. p-locate@5.0.0:
  1432. resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
  1433. engines: {node: '>=10'}
  1434. parchment@1.1.4:
  1435. resolution: {integrity: sha512-J5FBQt/pM2inLzg4hEWmzQx/8h8D0CiDxaG3vyp9rKrQRSDgBlhjdP5jQGgosEajXPSQouXGHOmVdgo7QmJuOg==}
  1436. parent-module@1.0.1:
  1437. resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
  1438. engines: {node: '>=6'}
  1439. pascalcase@0.1.1:
  1440. resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==}
  1441. engines: {node: '>=0.10.0'}
  1442. path-browserify@1.0.1:
  1443. resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
  1444. path-exists@4.0.0:
  1445. resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
  1446. engines: {node: '>=8'}
  1447. path-is-absolute@1.0.1:
  1448. resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
  1449. engines: {node: '>=0.10.0'}
  1450. path-key@3.1.1:
  1451. resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
  1452. engines: {node: '>=8'}
  1453. path-parse@1.0.7:
  1454. resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
  1455. path-to-regexp@2.4.0:
  1456. resolution: {integrity: sha512-G6zHoVqC6GGTQkZwF4lkuEyMbVOjoBKAEybQUypI1WTkqinCOrq2x6U2+phkJ1XsEMTy4LjtwPI7HW+NVrRR2w==}
  1457. path-type@4.0.0:
  1458. resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
  1459. engines: {node: '>=8'}
  1460. pathe@0.2.0:
  1461. resolution: {integrity: sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==}
  1462. pathe@1.1.1:
  1463. resolution: {integrity: sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==}
  1464. picocolors@1.0.0:
  1465. resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
  1466. picomatch@2.3.1:
  1467. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  1468. engines: {node: '>=8.6'}
  1469. pinia@2.1.7:
  1470. resolution: {integrity: sha512-+C2AHFtcFqjPih0zpYuvof37SFxMQ7OEG2zV9jRI12i9BOy3YQVAHwdKtyyc8pDcDyIc33WCIsZaCFWU7WWxGQ==}
  1471. peerDependencies:
  1472. '@vue/composition-api': ^1.4.0
  1473. typescript: '>=4.4.4'
  1474. vue: ^2.6.14 || ^3.3.0
  1475. peerDependenciesMeta:
  1476. '@vue/composition-api':
  1477. optional: true
  1478. typescript:
  1479. optional: true
  1480. pkcs7@1.0.4:
  1481. resolution: {integrity: sha512-afRERtHn54AlwaF2/+LFszyAANTCggGilmcmILUzEjvs3XgFZT+xE6+QWQcAGmu4xajy+Xtj7acLOPdx5/eXWQ==}
  1482. hasBin: true
  1483. pkg-types@1.0.3:
  1484. resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==}
  1485. posix-character-classes@0.1.1:
  1486. resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==}
  1487. engines: {node: '>=0.10.0'}
  1488. postcss-prefix-selector@1.16.0:
  1489. resolution: {integrity: sha512-rdVMIi7Q4B0XbXqNUEI+Z4E+pueiu/CS5E6vRCQommzdQ/sgsS4dK42U7GX8oJR+TJOtT+Qv3GkNo6iijUMp3Q==}
  1490. peerDependencies:
  1491. postcss: '>4 <9'
  1492. postcss-selector-parser@6.0.13:
  1493. resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==}
  1494. engines: {node: '>=4'}
  1495. postcss@5.2.18:
  1496. resolution: {integrity: sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==}
  1497. engines: {node: '>=0.12'}
  1498. postcss@8.4.31:
  1499. resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
  1500. engines: {node: ^10 || ^12 || >=14}
  1501. posthtml-parser@0.2.1:
  1502. resolution: {integrity: sha512-nPC53YMqJnc/+1x4fRYFfm81KV2V+G9NZY+hTohpYg64Ay7NemWWcV4UWuy/SgMupqQ3kJ88M/iRfZmSnxT+pw==}
  1503. posthtml-rename-id@1.0.12:
  1504. resolution: {integrity: sha512-UKXf9OF/no8WZo9edRzvuMenb6AD5hDLzIepJW+a4oJT+T/Lx7vfMYWT4aWlGNQh0WMhnUx1ipN9OkZ9q+ddEw==}
  1505. posthtml-render@1.4.0:
  1506. resolution: {integrity: sha512-W1779iVHGfq0Fvh2PROhCe2QhB8mEErgqzo1wpIt36tCgChafP+hbXIhLDOM8ePJrZcFs0vkNEtdibEWVqChqw==}
  1507. engines: {node: '>=10'}
  1508. posthtml-svg-mode@1.0.3:
  1509. resolution: {integrity: sha512-hEqw9NHZ9YgJ2/0G7CECOeuLQKZi8HjWLkBaSVtOWjygQ9ZD8P7tqeowYs7WrFdKsWEKG7o+IlsPY8jrr0CJpQ==}
  1510. posthtml@0.9.2:
  1511. resolution: {integrity: sha512-spBB5sgC4cv2YcW03f/IAUN1pgDJWNWD8FzkyY4mArLUMJW+KlQhlmUdKAHQuPfb00Jl5xIfImeOsf6YL8QK7Q==}
  1512. engines: {node: '>=0.10.0'}
  1513. preact@10.19.2:
  1514. resolution: {integrity: sha512-UA9DX/OJwv6YwP9Vn7Ti/vF80XL+YA5H2l7BpCtUr3ya8LWHFzpiO5R+N7dN16ujpIxhekRFuOOF82bXX7K/lg==}
  1515. prelude-ls@1.2.1:
  1516. resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
  1517. engines: {node: '>= 0.8.0'}
  1518. prismjs@1.29.0:
  1519. resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==}
  1520. engines: {node: '>=6'}
  1521. process@0.11.10:
  1522. resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
  1523. engines: {node: '>= 0.6.0'}
  1524. punycode@2.3.1:
  1525. resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
  1526. engines: {node: '>=6'}
  1527. query-string@4.3.4:
  1528. resolution: {integrity: sha512-O2XLNDBIg1DnTOa+2XrIwSiXEV8h2KImXUnjhhn2+UsvZ+Es2uyd5CCRTNQlDGbzUQOW3aYCBx9rVA6dzsiY7Q==}
  1529. engines: {node: '>=0.10.0'}
  1530. queue-microtask@1.2.3:
  1531. resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
  1532. quill-delta@3.6.3:
  1533. resolution: {integrity: sha512-wdIGBlcX13tCHOXGMVnnTVFtGRLoP0imqxM696fIPwIf5ODIYUHIvHbZcyvGlZFiFhK5XzDC2lpjbxRhnM05Tg==}
  1534. engines: {node: '>=0.10'}
  1535. quill-delta@4.2.2:
  1536. resolution: {integrity: sha512-qjbn82b/yJzOjstBgkhtBjN2TNK+ZHP/BgUQO+j6bRhWQQdmj2lH6hXG7+nwwLF41Xgn//7/83lxs9n2BkTtTg==}
  1537. quill@1.3.7:
  1538. resolution: {integrity: sha512-hG/DVzh/TiknWtE6QmWAF/pxoZKYxfe3J/d/+ShUWkDvvkZQVTPeVmUJVu1uE6DDooC4fWTiCLh84ul89oNz5g==}
  1539. readable-stream@3.6.2:
  1540. resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
  1541. engines: {node: '>= 6'}
  1542. readdirp@3.6.0:
  1543. resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
  1544. engines: {node: '>=8.10.0'}
  1545. regenerator-runtime@0.14.0:
  1546. resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==}
  1547. regex-not@1.0.2:
  1548. resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==}
  1549. engines: {node: '>=0.10.0'}
  1550. regexp.prototype.flags@1.5.1:
  1551. resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==}
  1552. engines: {node: '>= 0.4'}
  1553. regexpp@3.2.0:
  1554. resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==}
  1555. engines: {node: '>=8'}
  1556. repeat-element@1.1.4:
  1557. resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==}
  1558. engines: {node: '>=0.10.0'}
  1559. repeat-string@1.6.1:
  1560. resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==}
  1561. engines: {node: '>=0.10'}
  1562. resolve-from@4.0.0:
  1563. resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
  1564. engines: {node: '>=4'}
  1565. resolve-url@0.2.1:
  1566. resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==}
  1567. deprecated: https://github.com/lydell/resolve-url#deprecated
  1568. resolve@1.22.8:
  1569. resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
  1570. hasBin: true
  1571. ret@0.1.15:
  1572. resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==}
  1573. engines: {node: '>=0.12'}
  1574. reusify@1.0.4:
  1575. resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
  1576. engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
  1577. rimraf@3.0.2:
  1578. resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
  1579. hasBin: true
  1580. rollup@3.29.4:
  1581. resolution: {integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==, tarball: https://registry.npmjs.org/rollup/-/rollup-3.29.4.tgz}
  1582. engines: {node: '>=14.18.0', npm: '>=8.0.0'}
  1583. hasBin: true
  1584. run-parallel@1.2.0:
  1585. resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
  1586. rust-result@1.0.0:
  1587. resolution: {integrity: sha512-6cJzSBU+J/RJCF063onnQf0cDUOHs9uZI1oroSGnHOph+CQTIJ5Pp2hK5kEQq1+7yE/EEWfulSNXAQ2jikPthA==}
  1588. safe-buffer@5.2.1:
  1589. resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
  1590. safe-json-parse@4.0.0:
  1591. resolution: {integrity: sha512-RjZPPHugjK0TOzFrLZ8inw44s9bKox99/0AZW9o/BEQVrJfhI+fIHMErnPyRa89/yRXUUr93q+tiN6zhoVV4wQ==}
  1592. safe-regex@1.1.0:
  1593. resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==}
  1594. sass@1.69.5:
  1595. resolution: {integrity: sha512-qg2+UCJibLr2LCVOt3OlPhr/dqVHWOa9XtZf2OjbLs/T4VPSJ00udtgJxH3neXZm+QqX8B+3cU7RaLqp1iVfcQ==}
  1596. engines: {node: '>=14.0.0'}
  1597. hasBin: true
  1598. screenfull@5.2.0:
  1599. resolution: {integrity: sha512-9BakfsO2aUQN2K9Fdbj87RJIEZ82Q9IGim7FqM5OsebfoFC6ZHXgDq/KvniuLTPdeM8wY2o6Dj3WQ7KeQCj3cA==}
  1600. engines: {node: '>=0.10.0'}
  1601. scroll-into-view-if-needed@2.2.31:
  1602. resolution: {integrity: sha512-dGCXy99wZQivjmjIqihaBQNjryrz5rueJY7eHfTdyWEiR4ttYpsajb14rn9s5d4DY4EcY6+4+U/maARBXJedkA==}
  1603. scule@1.1.0:
  1604. resolution: {integrity: sha512-vRUjqhyM/YWYzT+jsMk6tnl3NkY4A4soJ8uyh3O6Um+JXEQL9ozUCe7pqrxn3CSKokw0hw3nFStfskzpgYwR0g==}
  1605. select@1.1.2:
  1606. resolution: {integrity: sha512-OwpTSOfy6xSs1+pwcNrv0RBMOzI39Lp3qQKUTPVVPRjCdNa5JH/oPRiqsesIskK8TVgmRiHwO4KXlV2Li9dANA==}
  1607. semver@6.3.1:
  1608. resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
  1609. hasBin: true
  1610. semver@7.5.4:
  1611. resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==}
  1612. engines: {node: '>=10'}
  1613. hasBin: true
  1614. set-function-length@1.1.1:
  1615. resolution: {integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==}
  1616. engines: {node: '>= 0.4'}
  1617. set-function-name@2.0.1:
  1618. resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==}
  1619. engines: {node: '>= 0.4'}
  1620. set-value@2.0.1:
  1621. resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==}
  1622. engines: {node: '>=0.10.0'}
  1623. shebang-command@2.0.0:
  1624. resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
  1625. engines: {node: '>=8'}
  1626. shebang-regex@3.0.0:
  1627. resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
  1628. engines: {node: '>=8'}
  1629. slash@3.0.0:
  1630. resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
  1631. engines: {node: '>=8'}
  1632. slate-history@0.66.0:
  1633. resolution: {integrity: sha512-6MWpxGQZiMvSINlCbMW43E2YBSVMCMCIwQfBzGssjWw4kb0qfvj0pIdblWNRQZD0hR6WHP+dHHgGSeVdMWzfng==}
  1634. peerDependencies:
  1635. slate: '>=0.65.3'
  1636. slate@0.72.8:
  1637. resolution: {integrity: sha512-/nJwTswQgnRurpK+bGJFH1oM7naD5qDmHd89JyiKNT2oOKD8marW0QSBtuFnwEbL5aGCS8AmrhXQgNOsn4osAw==}
  1638. snabbdom@3.5.1:
  1639. resolution: {integrity: sha512-wHMNIOjkm/YNE5EM3RCbr/+DVgPg6AqQAX1eOxO46zYNvCXjKP5Y865tqQj3EXnaMBjkxmQA5jFuDpDK/dbfiA==}
  1640. engines: {node: '>=8.3.0'}
  1641. snapdragon-node@2.1.1:
  1642. resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==}
  1643. engines: {node: '>=0.10.0'}
  1644. snapdragon-util@3.0.1:
  1645. resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==}
  1646. engines: {node: '>=0.10.0'}
  1647. snapdragon@0.8.2:
  1648. resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==}
  1649. engines: {node: '>=0.10.0'}
  1650. sortablejs@1.15.0:
  1651. resolution: {integrity: sha512-bv9qgVMjUMf89wAvM6AxVvS/4MX3sPeN0+agqShejLU5z5GX4C75ow1O2e5k4L6XItUyAK3gH6AxSbXrOM5e8w==, tarball: https://registry.npmjs.org/sortablejs/-/sortablejs-1.15.0.tgz}
  1652. source-map-js@1.0.2:
  1653. resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
  1654. engines: {node: '>=0.10.0'}
  1655. source-map-resolve@0.5.3:
  1656. resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==}
  1657. deprecated: See https://github.com/lydell/source-map-resolve#deprecated
  1658. source-map-url@0.4.1:
  1659. resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==}
  1660. deprecated: See https://github.com/lydell/source-map-url#deprecated
  1661. source-map@0.5.7:
  1662. resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==}
  1663. engines: {node: '>=0.10.0'}
  1664. source-map@0.6.1:
  1665. resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
  1666. engines: {node: '>=0.10.0'}
  1667. split-string@3.1.0:
  1668. resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==}
  1669. engines: {node: '>=0.10.0'}
  1670. ssr-window@3.0.0:
  1671. resolution: {integrity: sha512-q+8UfWDg9Itrg0yWK7oe5p/XRCJpJF9OBtXfOPgSJl+u3Xd5KI328RUEvUqSMVM9CiQUEf1QdBzJMkYGErj9QA==}
  1672. ssr-window@4.0.2:
  1673. resolution: {integrity: sha512-ISv/Ch+ig7SOtw7G2+qkwfVASzazUnvlDTwypdLoPoySv+6MqlOV10VwPSE6EWkGjhW50lUmghPmpYZXMu/+AQ==}
  1674. stable@0.1.8:
  1675. resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==}
  1676. deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility'
  1677. static-extend@0.1.2:
  1678. resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==}
  1679. engines: {node: '>=0.10.0'}
  1680. strict-uri-encode@1.1.0:
  1681. resolution: {integrity: sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==}
  1682. engines: {node: '>=0.10.0'}
  1683. string_decoder@1.3.0:
  1684. resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
  1685. strip-ansi@3.0.1:
  1686. resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==}
  1687. engines: {node: '>=0.10.0'}
  1688. strip-ansi@6.0.1:
  1689. resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
  1690. engines: {node: '>=8'}
  1691. strip-json-comments@3.1.1:
  1692. resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
  1693. engines: {node: '>=8'}
  1694. strip-literal@1.3.0:
  1695. resolution: {integrity: sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==}
  1696. supports-color@2.0.0:
  1697. resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==}
  1698. engines: {node: '>=0.8.0'}
  1699. supports-color@3.2.3:
  1700. resolution: {integrity: sha512-Jds2VIYDrlp5ui7t8abHN2bjAu4LV/q4N2KivFPpGH0lrka0BMq/33AmECUXlKPcHigkNaqfXRENFju+rlcy+A==}
  1701. engines: {node: '>=0.8.0'}
  1702. supports-color@5.5.0:
  1703. resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
  1704. engines: {node: '>=4'}
  1705. supports-color@7.2.0:
  1706. resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
  1707. engines: {node: '>=8'}
  1708. supports-preserve-symlinks-flag@1.0.0:
  1709. resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
  1710. engines: {node: '>= 0.4'}
  1711. svg-baker@1.7.0:
  1712. resolution: {integrity: sha512-nibslMbkXOIkqKVrfcncwha45f97fGuAOn1G99YwnwTj8kF9YiM6XexPcUso97NxOm6GsP0SIvYVIosBis1xLg==}
  1713. svg-tags@1.0.0:
  1714. resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==}
  1715. svgo@2.8.0:
  1716. resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==}
  1717. engines: {node: '>=10.13.0'}
  1718. hasBin: true
  1719. swiper@9.4.1:
  1720. resolution: {integrity: sha512-1nT2T8EzUpZ0FagEqaN/YAhRj33F2x/lN6cyB0/xoYJDMf8KwTFT3hMOeoB8Tg4o3+P/CKqskP+WX0Df046fqA==}
  1721. engines: {node: '>= 4.7.0'}
  1722. text-table@0.2.0:
  1723. resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
  1724. tiny-emitter@2.1.0:
  1725. resolution: {integrity: sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==}
  1726. tiny-warning@1.0.3:
  1727. resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==}
  1728. tinymce@5.10.9:
  1729. resolution: {integrity: sha512-5bkrors87X9LhYX2xq8GgPHrIgJYHl87YNs+kBcjQ5I3CiUgzo/vFcGvT3MZQ9QHsEeYMhYO6a5CLGGffR8hMg==}
  1730. tinymce@6.8.0:
  1731. resolution: {integrity: sha512-WSQlyfW8aPkOVMmmHmSVeA5Dq4JuUZjTB+PmePJ27oQ+ruv3Zn4KSTsvSnDUrHlqygjDvRidrCB/m5nTWCC2nA==}
  1732. to-fast-properties@2.0.0:
  1733. resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
  1734. engines: {node: '>=4'}
  1735. to-object-path@0.3.0:
  1736. resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==}
  1737. engines: {node: '>=0.10.0'}
  1738. to-regex-range@2.1.1:
  1739. resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==}
  1740. engines: {node: '>=0.10.0'}
  1741. to-regex-range@5.0.1:
  1742. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  1743. engines: {node: '>=8.0'}
  1744. to-regex@3.0.2:
  1745. resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==}
  1746. engines: {node: '>=0.10.0'}
  1747. traverse@0.6.7:
  1748. resolution: {integrity: sha512-/y956gpUo9ZNCb99YjxG7OaslxZWHfCHAUUfshwqOXmxUIvqLjVO581BT+gM59+QV9tFe6/CGG53tsA1Y7RSdg==}
  1749. tslib@2.3.0:
  1750. resolution: {integrity: sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==}
  1751. type-check@0.4.0:
  1752. resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
  1753. engines: {node: '>= 0.8.0'}
  1754. type-fest@0.20.2:
  1755. resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
  1756. engines: {node: '>=10'}
  1757. type@1.2.0:
  1758. resolution: {integrity: sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==}
  1759. type@2.7.2:
  1760. resolution: {integrity: sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==}
  1761. ufo@1.3.2:
  1762. resolution: {integrity: sha512-o+ORpgGwaYQXgqGDwd+hkS4PuZ3QnmqMMxRuajK/a38L6fTpcE5GPIfrf+L/KemFzfUpeUQc1rRS1iDBozvnFA==}
  1763. undici-types@5.26.5:
  1764. resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
  1765. unimport@3.6.0:
  1766. resolution: {integrity: sha512-yXW3Z30yk1vX8fxO8uHlq9wY9K+L56LHp4Hlbv8i7tW+NENSOv8AaFJUPtOQchxlT7/JBAzCtkrBtcVjKIr1VQ==}
  1767. union-value@1.0.1:
  1768. resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==}
  1769. engines: {node: '>=0.10.0'}
  1770. universalify@2.0.1:
  1771. resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
  1772. engines: {node: '>= 10.0.0'}
  1773. unplugin-auto-import@0.16.7:
  1774. resolution: {integrity: sha512-w7XmnRlchq6YUFJVFGSvG1T/6j8GrdYN6Em9Wf0Ye+HXgD/22kont+WnuCAA0UaUoxtuvRR1u/mXKy63g/hfqQ==}
  1775. engines: {node: '>=14'}
  1776. peerDependencies:
  1777. '@nuxt/kit': ^3.2.2
  1778. '@vueuse/core': '*'
  1779. peerDependenciesMeta:
  1780. '@nuxt/kit':
  1781. optional: true
  1782. '@vueuse/core':
  1783. optional: true
  1784. unplugin-vue-components@0.24.1:
  1785. resolution: {integrity: sha512-T3A8HkZoIE1Cja95xNqolwza0yD5IVlgZZ1PVAGvVCx8xthmjsv38xWRCtHtwl+rvZyL9uif42SRkDGw9aCfMA==}
  1786. engines: {node: '>=14'}
  1787. peerDependencies:
  1788. '@babel/parser': ^7.15.8
  1789. '@nuxt/kit': ^3.2.2
  1790. vue: 2 || 3
  1791. peerDependenciesMeta:
  1792. '@babel/parser':
  1793. optional: true
  1794. '@nuxt/kit':
  1795. optional: true
  1796. unplugin@1.5.1:
  1797. resolution: {integrity: sha512-0QkvG13z6RD+1L1FoibQqnvTwVBXvS4XSPwAyinVgoOCl2jAgwzdUKmEj05o4Lt8xwQI85Hb6mSyYkcAGwZPew==}
  1798. unset-value@1.0.0:
  1799. resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==}
  1800. engines: {node: '>=0.10.0'}
  1801. update-browserslist-db@1.0.13:
  1802. resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
  1803. hasBin: true
  1804. peerDependencies:
  1805. browserslist: '>= 4.21.0'
  1806. uri-js@4.4.1:
  1807. resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
  1808. urix@0.1.0:
  1809. resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==}
  1810. deprecated: Please see https://github.com/lydell/urix#deprecated
  1811. url-toolkit@2.2.5:
  1812. resolution: {integrity: sha512-mtN6xk+Nac+oyJ/PrI7tzfmomRVNFIWKUbG8jdYFt52hxbiReFAXIjYskvu64/dvuW71IcB7lV8l0HvZMac6Jg==}
  1813. use@3.1.1:
  1814. resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==}
  1815. engines: {node: '>=0.10.0'}
  1816. util-deprecate@1.0.2:
  1817. resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
  1818. v8-compile-cache@2.4.0:
  1819. resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==}
  1820. vary@1.1.2:
  1821. resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
  1822. engines: {node: '>= 0.8'}
  1823. video.js@7.21.7:
  1824. resolution: {integrity: sha512-T2s3WFAht7Zjr2OSJamND9x9Dn2O+Z5WuHGdh8jI5SYh5mkMdVTQ7vSRmA5PYpjXJ2ycch6jpMjkJEIEU2xxqw==}
  1825. videojs-font@3.2.0:
  1826. resolution: {integrity: sha512-g8vHMKK2/JGorSfqAZQUmYYNnXmfec4MLhwtEFS+mMs2IDY398GLysy6BH6K+aS1KMNu/xWZ8Sue/X/mdQPliA==}
  1827. videojs-vtt.js@0.15.5:
  1828. resolution: {integrity: sha512-yZbBxvA7QMYn15Lr/ZfhhLPrNpI/RmCSCqgIff57GC2gIrV5YfyzLfLyZMj0NnZSAz8syB4N0nHXpZg9MyrMOQ==}
  1829. vite-plugin-svg-icons@2.0.1:
  1830. resolution: {integrity: sha512-6ktD+DhV6Rz3VtedYvBKKVA2eXF+sAQVaKkKLDSqGUfnhqXl3bj5PPkVTl3VexfTuZy66PmINi8Q6eFnVfRUmA==}
  1831. peerDependencies:
  1832. vite: '>=2.0.0'
  1833. vite@4.5.12:
  1834. resolution: {integrity: sha512-qrMwavANtSz91nDy3zEiUHMtL09x0mniQsSMvDkNxuCBM1W5vriJ22hEmwTth6DhLSWsZnHBT0yHFAQXt6efGA==, tarball: https://registry.npmjs.org/vite/-/vite-4.5.12.tgz}
  1835. engines: {node: ^14.18.0 || >=16.0.0}
  1836. hasBin: true
  1837. peerDependencies:
  1838. '@types/node': '>= 14'
  1839. less: '*'
  1840. lightningcss: ^1.21.0
  1841. sass: '*'
  1842. stylus: '*'
  1843. sugarss: '*'
  1844. terser: ^5.4.0
  1845. peerDependenciesMeta:
  1846. '@types/node':
  1847. optional: true
  1848. less:
  1849. optional: true
  1850. lightningcss:
  1851. optional: true
  1852. sass:
  1853. optional: true
  1854. stylus:
  1855. optional: true
  1856. sugarss:
  1857. optional: true
  1858. terser:
  1859. optional: true
  1860. vue-clipboard3@2.0.0:
  1861. resolution: {integrity: sha512-Q9S7dzWGax7LN5iiSPcu/K1GGm2gcBBlYwmMsUc5/16N6w90cbKow3FnPmPs95sungns4yvd9/+JhbAznECS2A==}
  1862. vue-demi@0.14.6:
  1863. resolution: {integrity: sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==}
  1864. engines: {node: '>=12'}
  1865. hasBin: true
  1866. peerDependencies:
  1867. '@vue/composition-api': ^1.0.0-rc.1
  1868. vue: ^3.0.0-0 || ^2.6.0
  1869. peerDependenciesMeta:
  1870. '@vue/composition-api':
  1871. optional: true
  1872. vue-draggable-next@2.2.1:
  1873. resolution: {integrity: sha512-EAMS1IRHF0kZO0o5PMOinsQsXIqsrKT1hKmbICxG3UEtn7zLFkLxlAtajcCcUTisNvQ6TtCB5COjD9a1raNADw==}
  1874. peerDependencies:
  1875. sortablejs: ^1.14.0
  1876. vue: ^3.2.2
  1877. vue-draggable-plus@0.6.0:
  1878. resolution: {integrity: sha512-G5TSfHrt9tX9EjdG49InoFJbt2NYk0h3kgjgKxkFWr3ulIUays0oFObr5KZ8qzD4+QnhtALiRwIqY6qul4egqw==}
  1879. peerDependencies:
  1880. '@types/sortablejs': ^1.15.0
  1881. '@vue/composition-api': '*'
  1882. peerDependenciesMeta:
  1883. '@vue/composition-api':
  1884. optional: true
  1885. vue-eslint-parser@9.3.2:
  1886. resolution: {integrity: sha512-q7tWyCVaV9f8iQyIA5Mkj/S6AoJ9KBN8IeUSf3XEmBrOtxOZnfTg5s4KClbZBCK3GtnT/+RyCLZyDHuZwTuBjg==}
  1887. engines: {node: ^14.17.0 || >=16.0.0}
  1888. peerDependencies:
  1889. eslint: '>=6.0.0'
  1890. vue-router@4.2.5:
  1891. resolution: {integrity: sha512-DIUpKcyg4+PTQKfFPX88UWhlagBEBEfJ5A8XDXRJLUnZOvcpMF8o/dnL90vpVkGaPbjvXazV/rC1qBKrZlFugw==}
  1892. peerDependencies:
  1893. vue: ^3.2.0
  1894. vue@3.3.8:
  1895. resolution: {integrity: sha512-5VSX/3DabBikOXMsxzlW8JyfeLKlG9mzqnWgLQLty88vdZL7ZJgrdgBOmrArwxiLtmS+lNNpPcBYqrhE6TQW5w==}
  1896. peerDependencies:
  1897. typescript: '*'
  1898. peerDependenciesMeta:
  1899. typescript:
  1900. optional: true
  1901. vuex@4.1.0:
  1902. resolution: {integrity: sha512-hmV6UerDrPcgbSy9ORAtNXDr9M4wlNP4pEFKye4ujJF8oqgFFuxDCdOLS3eNoRTtq5O3hoBDh9Doj1bQMYHRbQ==}
  1903. peerDependencies:
  1904. vue: ^3.2.0
  1905. webpack-sources@3.2.3:
  1906. resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
  1907. engines: {node: '>=10.13.0'}
  1908. webpack-virtual-modules@0.6.1:
  1909. resolution: {integrity: sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==}
  1910. which@2.0.2:
  1911. resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
  1912. engines: {node: '>= 8'}
  1913. hasBin: true
  1914. wildcard@1.1.2:
  1915. resolution: {integrity: sha512-DXukZJxpHA8LuotRwL0pP1+rS6CS7FF2qStDDE1C7DDg2rLud2PXRMuEDYIPhgEezwnlHNL4c+N6MfMTjCGTng==}
  1916. wrappy@1.0.2:
  1917. resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
  1918. xml-name-validator@4.0.0:
  1919. resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}
  1920. engines: {node: '>=12'}
  1921. yallist@3.1.1:
  1922. resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
  1923. yallist@4.0.0:
  1924. resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
  1925. yocto-queue@0.1.0:
  1926. resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
  1927. engines: {node: '>=10'}
  1928. zrender@5.4.4:
  1929. resolution: {integrity: sha512-0VxCNJ7AGOMCWeHVyTrGzUgrK4asT4ml9PEkeGirAkKNYXYzoPJCLvmyfdoOXcjTHPs10OZVMfD1Rwg16AZyYw==}
  1930. snapshots:
  1931. '@aashutoshrathi/word-wrap@1.2.6': {}
  1932. '@ampproject/remapping@2.2.1':
  1933. dependencies:
  1934. '@jridgewell/gen-mapping': 0.3.3
  1935. '@jridgewell/trace-mapping': 0.3.20
  1936. '@antfu/utils@0.7.6': {}
  1937. '@babel/code-frame@7.23.4':
  1938. dependencies:
  1939. '@babel/highlight': 7.23.4
  1940. chalk: 2.4.2
  1941. '@babel/compat-data@7.23.3': {}
  1942. '@babel/core@7.23.3':
  1943. dependencies:
  1944. '@ampproject/remapping': 2.2.1
  1945. '@babel/code-frame': 7.23.4
  1946. '@babel/generator': 7.23.4
  1947. '@babel/helper-compilation-targets': 7.22.15
  1948. '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3)
  1949. '@babel/helpers': 7.23.4
  1950. '@babel/parser': 7.23.4
  1951. '@babel/template': 7.22.15
  1952. '@babel/traverse': 7.23.4
  1953. '@babel/types': 7.23.4
  1954. convert-source-map: 2.0.0
  1955. debug: 4.3.4
  1956. gensync: 1.0.0-beta.2
  1957. json5: 2.2.3
  1958. semver: 6.3.1
  1959. transitivePeerDependencies:
  1960. - supports-color
  1961. '@babel/generator@7.23.4':
  1962. dependencies:
  1963. '@babel/types': 7.23.4
  1964. '@jridgewell/gen-mapping': 0.3.3
  1965. '@jridgewell/trace-mapping': 0.3.20
  1966. jsesc: 2.5.2
  1967. '@babel/helper-annotate-as-pure@7.22.5':
  1968. dependencies:
  1969. '@babel/types': 7.23.4
  1970. '@babel/helper-compilation-targets@7.22.15':
  1971. dependencies:
  1972. '@babel/compat-data': 7.23.3
  1973. '@babel/helper-validator-option': 7.22.15
  1974. browserslist: 4.22.1
  1975. lru-cache: 5.1.1
  1976. semver: 6.3.1
  1977. '@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.23.3)':
  1978. dependencies:
  1979. '@babel/core': 7.23.3
  1980. '@babel/helper-annotate-as-pure': 7.22.5
  1981. '@babel/helper-environment-visitor': 7.22.20
  1982. '@babel/helper-function-name': 7.23.0
  1983. '@babel/helper-member-expression-to-functions': 7.23.0
  1984. '@babel/helper-optimise-call-expression': 7.22.5
  1985. '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.3)
  1986. '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
  1987. '@babel/helper-split-export-declaration': 7.22.6
  1988. semver: 6.3.1
  1989. '@babel/helper-environment-visitor@7.22.20': {}
  1990. '@babel/helper-function-name@7.23.0':
  1991. dependencies:
  1992. '@babel/template': 7.22.15
  1993. '@babel/types': 7.23.4
  1994. '@babel/helper-hoist-variables@7.22.5':
  1995. dependencies:
  1996. '@babel/types': 7.23.4
  1997. '@babel/helper-member-expression-to-functions@7.23.0':
  1998. dependencies:
  1999. '@babel/types': 7.23.4
  2000. '@babel/helper-module-imports@7.22.15':
  2001. dependencies:
  2002. '@babel/types': 7.23.4
  2003. '@babel/helper-module-transforms@7.23.3(@babel/core@7.23.3)':
  2004. dependencies:
  2005. '@babel/core': 7.23.3
  2006. '@babel/helper-environment-visitor': 7.22.20
  2007. '@babel/helper-module-imports': 7.22.15
  2008. '@babel/helper-simple-access': 7.22.5
  2009. '@babel/helper-split-export-declaration': 7.22.6
  2010. '@babel/helper-validator-identifier': 7.22.20
  2011. '@babel/helper-optimise-call-expression@7.22.5':
  2012. dependencies:
  2013. '@babel/types': 7.23.4
  2014. '@babel/helper-plugin-utils@7.22.5': {}
  2015. '@babel/helper-replace-supers@7.22.20(@babel/core@7.23.3)':
  2016. dependencies:
  2017. '@babel/core': 7.23.3
  2018. '@babel/helper-environment-visitor': 7.22.20
  2019. '@babel/helper-member-expression-to-functions': 7.23.0
  2020. '@babel/helper-optimise-call-expression': 7.22.5
  2021. '@babel/helper-simple-access@7.22.5':
  2022. dependencies:
  2023. '@babel/types': 7.23.4
  2024. '@babel/helper-skip-transparent-expression-wrappers@7.22.5':
  2025. dependencies:
  2026. '@babel/types': 7.23.4
  2027. '@babel/helper-split-export-declaration@7.22.6':
  2028. dependencies:
  2029. '@babel/types': 7.23.4
  2030. '@babel/helper-string-parser@7.23.4': {}
  2031. '@babel/helper-validator-identifier@7.22.20': {}
  2032. '@babel/helper-validator-option@7.22.15': {}
  2033. '@babel/helpers@7.23.4':
  2034. dependencies:
  2035. '@babel/template': 7.22.15
  2036. '@babel/traverse': 7.23.4
  2037. '@babel/types': 7.23.4
  2038. transitivePeerDependencies:
  2039. - supports-color
  2040. '@babel/highlight@7.23.4':
  2041. dependencies:
  2042. '@babel/helper-validator-identifier': 7.22.20
  2043. chalk: 2.4.2
  2044. js-tokens: 4.0.0
  2045. '@babel/parser@7.23.4':
  2046. dependencies:
  2047. '@babel/types': 7.23.4
  2048. '@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.23.3)':
  2049. dependencies:
  2050. '@babel/core': 7.23.3
  2051. '@babel/helper-plugin-utils': 7.22.5
  2052. '@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.3)':
  2053. dependencies:
  2054. '@babel/core': 7.23.3
  2055. '@babel/helper-plugin-utils': 7.22.5
  2056. '@babel/plugin-transform-typescript@7.23.4(@babel/core@7.23.3)':
  2057. dependencies:
  2058. '@babel/core': 7.23.3
  2059. '@babel/helper-annotate-as-pure': 7.22.5
  2060. '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.3)
  2061. '@babel/helper-plugin-utils': 7.22.5
  2062. '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.3)
  2063. '@babel/runtime@7.23.4':
  2064. dependencies:
  2065. regenerator-runtime: 0.14.0
  2066. '@babel/template@7.22.15':
  2067. dependencies:
  2068. '@babel/code-frame': 7.23.4
  2069. '@babel/parser': 7.23.4
  2070. '@babel/types': 7.23.4
  2071. '@babel/traverse@7.23.4':
  2072. dependencies:
  2073. '@babel/code-frame': 7.23.4
  2074. '@babel/generator': 7.23.4
  2075. '@babel/helper-environment-visitor': 7.22.20
  2076. '@babel/helper-function-name': 7.23.0
  2077. '@babel/helper-hoist-variables': 7.22.5
  2078. '@babel/helper-split-export-declaration': 7.22.6
  2079. '@babel/parser': 7.23.4
  2080. '@babel/types': 7.23.4
  2081. debug: 4.3.4
  2082. globals: 11.12.0
  2083. transitivePeerDependencies:
  2084. - supports-color
  2085. '@babel/types@7.23.4':
  2086. dependencies:
  2087. '@babel/helper-string-parser': 7.23.4
  2088. '@babel/helper-validator-identifier': 7.22.20
  2089. to-fast-properties: 2.0.0
  2090. '@ctrl/tinycolor@3.6.1': {}
  2091. '@element-plus/icons-vue@2.1.0(vue@3.3.8)':
  2092. dependencies:
  2093. vue: 3.3.8
  2094. '@element-plus/icons-vue@2.3.1(vue@3.3.8)':
  2095. dependencies:
  2096. vue: 3.3.8
  2097. '@esbuild/android-arm64@0.18.20':
  2098. optional: true
  2099. '@esbuild/android-arm@0.18.20':
  2100. optional: true
  2101. '@esbuild/android-x64@0.18.20':
  2102. optional: true
  2103. '@esbuild/darwin-arm64@0.18.20':
  2104. optional: true
  2105. '@esbuild/darwin-x64@0.18.20':
  2106. optional: true
  2107. '@esbuild/freebsd-arm64@0.18.20':
  2108. optional: true
  2109. '@esbuild/freebsd-x64@0.18.20':
  2110. optional: true
  2111. '@esbuild/linux-arm64@0.18.20':
  2112. optional: true
  2113. '@esbuild/linux-arm@0.18.20':
  2114. optional: true
  2115. '@esbuild/linux-ia32@0.18.20':
  2116. optional: true
  2117. '@esbuild/linux-loong64@0.18.20':
  2118. optional: true
  2119. '@esbuild/linux-mips64el@0.18.20':
  2120. optional: true
  2121. '@esbuild/linux-ppc64@0.18.20':
  2122. optional: true
  2123. '@esbuild/linux-riscv64@0.18.20':
  2124. optional: true
  2125. '@esbuild/linux-s390x@0.18.20':
  2126. optional: true
  2127. '@esbuild/linux-x64@0.18.20':
  2128. optional: true
  2129. '@esbuild/netbsd-x64@0.18.20':
  2130. optional: true
  2131. '@esbuild/openbsd-x64@0.18.20':
  2132. optional: true
  2133. '@esbuild/sunos-x64@0.18.20':
  2134. optional: true
  2135. '@esbuild/win32-arm64@0.18.20':
  2136. optional: true
  2137. '@esbuild/win32-ia32@0.18.20':
  2138. optional: true
  2139. '@esbuild/win32-x64@0.18.20':
  2140. optional: true
  2141. '@eslint-community/eslint-utils@4.4.0(eslint@8.22.0)':
  2142. dependencies:
  2143. eslint: 8.22.0
  2144. eslint-visitor-keys: 3.4.3
  2145. '@eslint/eslintrc@1.4.1':
  2146. dependencies:
  2147. ajv: 6.12.6
  2148. debug: 4.3.4
  2149. espree: 9.6.1
  2150. globals: 13.23.0
  2151. ignore: 5.3.0
  2152. import-fresh: 3.3.0
  2153. js-yaml: 4.1.0
  2154. minimatch: 3.1.2
  2155. strip-json-comments: 3.1.1
  2156. transitivePeerDependencies:
  2157. - supports-color
  2158. '@floating-ui/core@1.5.0':
  2159. dependencies:
  2160. '@floating-ui/utils': 0.1.6
  2161. '@floating-ui/dom@1.5.3':
  2162. dependencies:
  2163. '@floating-ui/core': 1.5.0
  2164. '@floating-ui/utils': 0.1.6
  2165. '@floating-ui/utils@0.1.6': {}
  2166. '@humanwhocodes/config-array@0.10.7':
  2167. dependencies:
  2168. '@humanwhocodes/object-schema': 1.2.1
  2169. debug: 4.3.4
  2170. minimatch: 3.1.2
  2171. transitivePeerDependencies:
  2172. - supports-color
  2173. '@humanwhocodes/gitignore-to-minimatch@1.0.2': {}
  2174. '@humanwhocodes/object-schema@1.2.1': {}
  2175. '@jridgewell/gen-mapping@0.3.3':
  2176. dependencies:
  2177. '@jridgewell/set-array': 1.1.2
  2178. '@jridgewell/sourcemap-codec': 1.4.15
  2179. '@jridgewell/trace-mapping': 0.3.20
  2180. '@jridgewell/resolve-uri@3.1.1': {}
  2181. '@jridgewell/set-array@1.1.2': {}
  2182. '@jridgewell/sourcemap-codec@1.4.15': {}
  2183. '@jridgewell/trace-mapping@0.3.20':
  2184. dependencies:
  2185. '@jridgewell/resolve-uri': 3.1.1
  2186. '@jridgewell/sourcemap-codec': 1.4.15
  2187. '@nodelib/fs.scandir@2.1.5':
  2188. dependencies:
  2189. '@nodelib/fs.stat': 2.0.5
  2190. run-parallel: 1.2.0
  2191. '@nodelib/fs.stat@2.0.5': {}
  2192. '@nodelib/fs.walk@1.2.8':
  2193. dependencies:
  2194. '@nodelib/fs.scandir': 2.1.5
  2195. fastq: 1.15.0
  2196. '@rollup/pluginutils@5.0.5(rollup@3.29.4)':
  2197. dependencies:
  2198. '@types/estree': 1.0.5
  2199. estree-walker: 2.0.2
  2200. picomatch: 2.3.1
  2201. optionalDependencies:
  2202. rollup: 3.29.4
  2203. '@sxzz/popperjs-es@2.11.7': {}
  2204. '@tinymce/tinymce-vue@4.0.7(vue@3.3.8)':
  2205. dependencies:
  2206. tinymce: 5.10.9
  2207. vue: 3.3.8
  2208. '@transloadit/prettier-bytes@0.0.7': {}
  2209. '@trysound/sax@0.2.0': {}
  2210. '@types/estree@1.0.5': {}
  2211. '@types/event-emitter@0.3.5': {}
  2212. '@types/lodash-es@4.17.12':
  2213. dependencies:
  2214. '@types/lodash': 4.14.202
  2215. '@types/lodash@4.14.202': {}
  2216. '@types/node@20.9.5':
  2217. dependencies:
  2218. undici-types: 5.26.5
  2219. '@types/sortablejs@1.15.8': {}
  2220. '@types/svgo@2.6.4':
  2221. dependencies:
  2222. '@types/node': 20.9.5
  2223. '@types/video.js@7.3.58': {}
  2224. '@types/web-bluetooth@0.0.16': {}
  2225. '@types/web-bluetooth@0.0.20': {}
  2226. '@uppy/companion-client@2.2.2':
  2227. dependencies:
  2228. '@uppy/utils': 4.1.3
  2229. namespace-emitter: 2.0.1
  2230. '@uppy/core@2.3.4':
  2231. dependencies:
  2232. '@transloadit/prettier-bytes': 0.0.7
  2233. '@uppy/store-default': 2.1.1
  2234. '@uppy/utils': 4.1.3
  2235. lodash.throttle: 4.1.1
  2236. mime-match: 1.0.2
  2237. namespace-emitter: 2.0.1
  2238. nanoid: 3.3.7
  2239. preact: 10.19.2
  2240. '@uppy/store-default@2.1.1': {}
  2241. '@uppy/utils@4.1.3':
  2242. dependencies:
  2243. lodash.throttle: 4.1.1
  2244. '@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4)':
  2245. dependencies:
  2246. '@uppy/companion-client': 2.2.2
  2247. '@uppy/core': 2.3.4
  2248. '@uppy/utils': 4.1.3
  2249. nanoid: 3.3.7
  2250. '@videojs-player/vue@1.0.0(@types/video.js@7.3.58)(video.js@7.21.7)(vue@3.3.8)':
  2251. dependencies:
  2252. '@types/video.js': 7.3.58
  2253. video.js: 7.21.7
  2254. vue: 3.3.8
  2255. '@videojs/http-streaming@2.16.3(video.js@7.21.7)':
  2256. dependencies:
  2257. '@babel/runtime': 7.23.4
  2258. '@videojs/vhs-utils': 3.0.5
  2259. aes-decrypter: 3.1.3
  2260. global: 4.4.0
  2261. m3u8-parser: 4.8.0
  2262. mpd-parser: 0.22.1
  2263. mux.js: 6.0.1
  2264. video.js: 7.21.7
  2265. '@videojs/vhs-utils@3.0.5':
  2266. dependencies:
  2267. '@babel/runtime': 7.23.4
  2268. global: 4.4.0
  2269. url-toolkit: 2.2.5
  2270. '@videojs/xhr@2.6.0':
  2271. dependencies:
  2272. '@babel/runtime': 7.23.4
  2273. global: 4.4.0
  2274. is-function: 1.0.2
  2275. '@vitejs/plugin-vue-jsx@3.1.0(vite@4.5.12(@types/node@20.9.5)(sass@1.69.5))(vue@3.3.8)':
  2276. dependencies:
  2277. '@babel/core': 7.23.3
  2278. '@babel/plugin-transform-typescript': 7.23.4(@babel/core@7.23.3)
  2279. '@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.23.3)
  2280. vite: 4.5.12(@types/node@20.9.5)(sass@1.69.5)
  2281. vue: 3.3.8
  2282. transitivePeerDependencies:
  2283. - supports-color
  2284. '@vitejs/plugin-vue@4.5.0(vite@4.5.12(@types/node@20.9.5)(sass@1.69.5))(vue@3.3.8)':
  2285. dependencies:
  2286. vite: 4.5.12(@types/node@20.9.5)(sass@1.69.5)
  2287. vue: 3.3.8
  2288. '@vue/babel-helper-vue-transform-on@1.1.5': {}
  2289. '@vue/babel-plugin-jsx@1.1.5(@babel/core@7.23.3)':
  2290. dependencies:
  2291. '@babel/core': 7.23.3
  2292. '@babel/helper-module-imports': 7.22.15
  2293. '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.3)
  2294. '@babel/template': 7.22.15
  2295. '@babel/traverse': 7.23.4
  2296. '@babel/types': 7.23.4
  2297. '@vue/babel-helper-vue-transform-on': 1.1.5
  2298. camelcase: 6.3.0
  2299. html-tags: 3.3.1
  2300. svg-tags: 1.0.0
  2301. transitivePeerDependencies:
  2302. - supports-color
  2303. '@vue/compiler-core@3.3.8':
  2304. dependencies:
  2305. '@babel/parser': 7.23.4
  2306. '@vue/shared': 3.3.8
  2307. estree-walker: 2.0.2
  2308. source-map-js: 1.0.2
  2309. '@vue/compiler-dom@3.3.8':
  2310. dependencies:
  2311. '@vue/compiler-core': 3.3.8
  2312. '@vue/shared': 3.3.8
  2313. '@vue/compiler-sfc@3.3.8':
  2314. dependencies:
  2315. '@babel/parser': 7.23.4
  2316. '@vue/compiler-core': 3.3.8
  2317. '@vue/compiler-dom': 3.3.8
  2318. '@vue/compiler-ssr': 3.3.8
  2319. '@vue/reactivity-transform': 3.3.8
  2320. '@vue/shared': 3.3.8
  2321. estree-walker: 2.0.2
  2322. magic-string: 0.30.5
  2323. postcss: 8.4.31
  2324. source-map-js: 1.0.2
  2325. '@vue/compiler-ssr@3.3.8':
  2326. dependencies:
  2327. '@vue/compiler-dom': 3.3.8
  2328. '@vue/shared': 3.3.8
  2329. '@vue/devtools-api@6.5.1': {}
  2330. '@vue/reactivity-transform@3.3.8':
  2331. dependencies:
  2332. '@babel/parser': 7.23.4
  2333. '@vue/compiler-core': 3.3.8
  2334. '@vue/shared': 3.3.8
  2335. estree-walker: 2.0.2
  2336. magic-string: 0.30.5
  2337. '@vue/reactivity@3.3.8':
  2338. dependencies:
  2339. '@vue/shared': 3.3.8
  2340. '@vue/runtime-core@3.3.8':
  2341. dependencies:
  2342. '@vue/reactivity': 3.3.8
  2343. '@vue/shared': 3.3.8
  2344. '@vue/runtime-dom@3.3.8':
  2345. dependencies:
  2346. '@vue/runtime-core': 3.3.8
  2347. '@vue/shared': 3.3.8
  2348. csstype: 3.1.2
  2349. '@vue/server-renderer@3.3.8(vue@3.3.8)':
  2350. dependencies:
  2351. '@vue/compiler-ssr': 3.3.8
  2352. '@vue/shared': 3.3.8
  2353. vue: 3.3.8
  2354. '@vue/shared@3.3.8': {}
  2355. '@vueup/vue-quill@1.2.0(vue@3.3.8)':
  2356. dependencies:
  2357. quill: 1.3.7
  2358. quill-delta: 4.2.2
  2359. vue: 3.3.8
  2360. '@vueuse/core@10.6.1(vue@3.3.8)':
  2361. dependencies:
  2362. '@types/web-bluetooth': 0.0.20
  2363. '@vueuse/metadata': 10.6.1
  2364. '@vueuse/shared': 10.6.1(vue@3.3.8)
  2365. vue-demi: 0.14.6(vue@3.3.8)
  2366. transitivePeerDependencies:
  2367. - '@vue/composition-api'
  2368. - vue
  2369. '@vueuse/core@9.13.0(vue@3.3.8)':
  2370. dependencies:
  2371. '@types/web-bluetooth': 0.0.16
  2372. '@vueuse/metadata': 9.13.0
  2373. '@vueuse/shared': 9.13.0(vue@3.3.8)
  2374. vue-demi: 0.14.6(vue@3.3.8)
  2375. transitivePeerDependencies:
  2376. - '@vue/composition-api'
  2377. - vue
  2378. '@vueuse/metadata@10.6.1': {}
  2379. '@vueuse/metadata@9.13.0': {}
  2380. '@vueuse/shared@10.6.1(vue@3.3.8)':
  2381. dependencies:
  2382. vue-demi: 0.14.6(vue@3.3.8)
  2383. transitivePeerDependencies:
  2384. - '@vue/composition-api'
  2385. - vue
  2386. '@vueuse/shared@9.13.0(vue@3.3.8)':
  2387. dependencies:
  2388. vue-demi: 0.14.6(vue@3.3.8)
  2389. transitivePeerDependencies:
  2390. - '@vue/composition-api'
  2391. - vue
  2392. '@wangeditor/basic-modules@1.1.7(@wangeditor/core@1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.5.1))(dom7@3.0.0)(lodash.throttle@4.1.1)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.5.1)':
  2393. dependencies:
  2394. '@wangeditor/core': 1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.5.1)
  2395. dom7: 3.0.0
  2396. is-url: 1.2.4
  2397. lodash.throttle: 4.1.1
  2398. nanoid: 3.3.7
  2399. slate: 0.72.8
  2400. snabbdom: 3.5.1
  2401. '@wangeditor/code-highlight@1.0.3(@wangeditor/core@1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.5.1))(dom7@3.0.0)(slate@0.72.8)(snabbdom@3.5.1)':
  2402. dependencies:
  2403. '@wangeditor/core': 1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.5.1)
  2404. dom7: 3.0.0
  2405. prismjs: 1.29.0
  2406. slate: 0.72.8
  2407. snabbdom: 3.5.1
  2408. '@wangeditor/core@1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.5.1)':
  2409. dependencies:
  2410. '@types/event-emitter': 0.3.5
  2411. '@uppy/core': 2.3.4
  2412. '@uppy/xhr-upload': 2.1.3(@uppy/core@2.3.4)
  2413. dom7: 3.0.0
  2414. event-emitter: 0.3.5
  2415. html-void-elements: 2.0.1
  2416. i18next: 20.6.1
  2417. is-hotkey: 0.2.0
  2418. lodash.camelcase: 4.3.0
  2419. lodash.clonedeep: 4.5.0
  2420. lodash.debounce: 4.0.8
  2421. lodash.foreach: 4.5.0
  2422. lodash.isequal: 4.5.0
  2423. lodash.throttle: 4.1.1
  2424. lodash.toarray: 4.4.0
  2425. nanoid: 3.3.7
  2426. scroll-into-view-if-needed: 2.2.31
  2427. slate: 0.72.8
  2428. slate-history: 0.66.0(slate@0.72.8)
  2429. snabbdom: 3.5.1
  2430. '@wangeditor/editor-for-vue@5.1.12(@wangeditor/editor@5.1.23)(vue@3.3.8)':
  2431. dependencies:
  2432. '@wangeditor/editor': 5.1.23
  2433. vue: 3.3.8
  2434. '@wangeditor/editor@5.1.23':
  2435. dependencies:
  2436. '@uppy/core': 2.3.4
  2437. '@uppy/xhr-upload': 2.1.3(@uppy/core@2.3.4)
  2438. '@wangeditor/basic-modules': 1.1.7(@wangeditor/core@1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.5.1))(dom7@3.0.0)(lodash.throttle@4.1.1)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.5.1)
  2439. '@wangeditor/code-highlight': 1.0.3(@wangeditor/core@1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.5.1))(dom7@3.0.0)(slate@0.72.8)(snabbdom@3.5.1)
  2440. '@wangeditor/core': 1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.5.1)
  2441. '@wangeditor/list-module': 1.0.5(@wangeditor/core@1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.5.1))(dom7@3.0.0)(slate@0.72.8)(snabbdom@3.5.1)
  2442. '@wangeditor/table-module': 1.1.4(@wangeditor/core@1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.5.1))(dom7@3.0.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.5.1)
  2443. '@wangeditor/upload-image-module': 1.0.2(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(@wangeditor/basic-modules@1.1.7(@wangeditor/core@1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.5.1))(dom7@3.0.0)(lodash.throttle@4.1.1)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.5.1))(@wangeditor/core@1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.5.1))(dom7@3.0.0)(lodash.foreach@4.5.0)(slate@0.72.8)(snabbdom@3.5.1)
  2444. '@wangeditor/video-module': 1.1.4(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(@wangeditor/core@1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.5.1))(dom7@3.0.0)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.5.1)
  2445. dom7: 3.0.0
  2446. is-hotkey: 0.2.0
  2447. lodash.camelcase: 4.3.0
  2448. lodash.clonedeep: 4.5.0
  2449. lodash.debounce: 4.0.8
  2450. lodash.foreach: 4.5.0
  2451. lodash.isequal: 4.5.0
  2452. lodash.throttle: 4.1.1
  2453. lodash.toarray: 4.4.0
  2454. nanoid: 3.3.7
  2455. slate: 0.72.8
  2456. snabbdom: 3.5.1
  2457. '@wangeditor/list-module@1.0.5(@wangeditor/core@1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.5.1))(dom7@3.0.0)(slate@0.72.8)(snabbdom@3.5.1)':
  2458. dependencies:
  2459. '@wangeditor/core': 1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.5.1)
  2460. dom7: 3.0.0
  2461. slate: 0.72.8
  2462. snabbdom: 3.5.1
  2463. '@wangeditor/table-module@1.1.4(@wangeditor/core@1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.5.1))(dom7@3.0.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.5.1)':
  2464. dependencies:
  2465. '@wangeditor/core': 1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.5.1)
  2466. dom7: 3.0.0
  2467. lodash.isequal: 4.5.0
  2468. lodash.throttle: 4.1.1
  2469. nanoid: 3.3.7
  2470. slate: 0.72.8
  2471. snabbdom: 3.5.1
  2472. '@wangeditor/upload-image-module@1.0.2(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(@wangeditor/basic-modules@1.1.7(@wangeditor/core@1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.5.1))(dom7@3.0.0)(lodash.throttle@4.1.1)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.5.1))(@wangeditor/core@1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.5.1))(dom7@3.0.0)(lodash.foreach@4.5.0)(slate@0.72.8)(snabbdom@3.5.1)':
  2473. dependencies:
  2474. '@uppy/core': 2.3.4
  2475. '@uppy/xhr-upload': 2.1.3(@uppy/core@2.3.4)
  2476. '@wangeditor/basic-modules': 1.1.7(@wangeditor/core@1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.5.1))(dom7@3.0.0)(lodash.throttle@4.1.1)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.5.1)
  2477. '@wangeditor/core': 1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.5.1)
  2478. dom7: 3.0.0
  2479. lodash.foreach: 4.5.0
  2480. slate: 0.72.8
  2481. snabbdom: 3.5.1
  2482. '@wangeditor/video-module@1.1.4(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(@wangeditor/core@1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.5.1))(dom7@3.0.0)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.5.1)':
  2483. dependencies:
  2484. '@uppy/core': 2.3.4
  2485. '@uppy/xhr-upload': 2.1.3(@uppy/core@2.3.4)
  2486. '@wangeditor/core': 1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.5.1)
  2487. dom7: 3.0.0
  2488. nanoid: 3.3.7
  2489. slate: 0.72.8
  2490. snabbdom: 3.5.1
  2491. '@xmldom/xmldom@0.8.10': {}
  2492. acorn-jsx@5.3.2(acorn@8.11.2):
  2493. dependencies:
  2494. acorn: 8.11.2
  2495. acorn@8.11.2: {}
  2496. aes-decrypter@3.1.3:
  2497. dependencies:
  2498. '@babel/runtime': 7.23.4
  2499. '@videojs/vhs-utils': 3.0.5
  2500. global: 4.4.0
  2501. pkcs7: 1.0.4
  2502. ajv@6.12.6:
  2503. dependencies:
  2504. fast-deep-equal: 3.1.3
  2505. fast-json-stable-stringify: 2.1.0
  2506. json-schema-traverse: 0.4.1
  2507. uri-js: 4.4.1
  2508. ansi-regex@2.1.1: {}
  2509. ansi-regex@5.0.1: {}
  2510. ansi-styles@2.2.1: {}
  2511. ansi-styles@3.2.1:
  2512. dependencies:
  2513. color-convert: 1.9.3
  2514. ansi-styles@4.3.0:
  2515. dependencies:
  2516. color-convert: 2.0.1
  2517. anymatch@3.1.3:
  2518. dependencies:
  2519. normalize-path: 3.0.0
  2520. picomatch: 2.3.1
  2521. argparse@2.0.1: {}
  2522. arr-diff@4.0.0: {}
  2523. arr-flatten@1.1.0: {}
  2524. arr-union@3.1.0: {}
  2525. array-union@2.1.0: {}
  2526. array-unique@0.3.2: {}
  2527. assign-symbols@1.0.0: {}
  2528. async-validator@4.2.5: {}
  2529. atob@2.1.2: {}
  2530. axios@0.18.1:
  2531. dependencies:
  2532. follow-redirects: 1.5.10
  2533. is-buffer: 2.0.5
  2534. transitivePeerDependencies:
  2535. - supports-color
  2536. balanced-match@1.0.2: {}
  2537. base@0.11.2:
  2538. dependencies:
  2539. cache-base: 1.0.1
  2540. class-utils: 0.3.6
  2541. component-emitter: 1.3.1
  2542. define-property: 1.0.0
  2543. isobject: 3.0.1
  2544. mixin-deep: 1.3.2
  2545. pascalcase: 0.1.1
  2546. big.js@5.2.2: {}
  2547. binary-extensions@2.2.0: {}
  2548. bluebird@3.7.2: {}
  2549. boolbase@1.0.0: {}
  2550. brace-expansion@1.1.11:
  2551. dependencies:
  2552. balanced-match: 1.0.2
  2553. concat-map: 0.0.1
  2554. brace-expansion@2.0.1:
  2555. dependencies:
  2556. balanced-match: 1.0.2
  2557. braces@2.3.2:
  2558. dependencies:
  2559. arr-flatten: 1.1.0
  2560. array-unique: 0.3.2
  2561. extend-shallow: 2.0.1
  2562. fill-range: 4.0.0
  2563. isobject: 3.0.1
  2564. repeat-element: 1.1.4
  2565. snapdragon: 0.8.2
  2566. snapdragon-node: 2.1.1
  2567. split-string: 3.1.0
  2568. to-regex: 3.0.2
  2569. transitivePeerDependencies:
  2570. - supports-color
  2571. braces@3.0.2:
  2572. dependencies:
  2573. fill-range: 7.0.1
  2574. browserslist@4.22.1:
  2575. dependencies:
  2576. caniuse-lite: 1.0.30001564
  2577. electron-to-chromium: 1.4.593
  2578. node-releases: 2.0.13
  2579. update-browserslist-db: 1.0.13(browserslist@4.22.1)
  2580. cache-base@1.0.1:
  2581. dependencies:
  2582. collection-visit: 1.0.0
  2583. component-emitter: 1.3.1
  2584. get-value: 2.0.6
  2585. has-value: 1.0.0
  2586. isobject: 3.0.1
  2587. set-value: 2.0.1
  2588. to-object-path: 0.3.0
  2589. union-value: 1.0.1
  2590. unset-value: 1.0.0
  2591. call-bind@1.0.5:
  2592. dependencies:
  2593. function-bind: 1.1.2
  2594. get-intrinsic: 1.2.2
  2595. set-function-length: 1.1.1
  2596. callsites@3.1.0: {}
  2597. camelcase@6.3.0: {}
  2598. caniuse-lite@1.0.30001564: {}
  2599. chalk@1.1.3:
  2600. dependencies:
  2601. ansi-styles: 2.2.1
  2602. escape-string-regexp: 1.0.5
  2603. has-ansi: 2.0.0
  2604. strip-ansi: 3.0.1
  2605. supports-color: 2.0.0
  2606. chalk@2.4.2:
  2607. dependencies:
  2608. ansi-styles: 3.2.1
  2609. escape-string-regexp: 1.0.5
  2610. supports-color: 5.5.0
  2611. chalk@4.1.2:
  2612. dependencies:
  2613. ansi-styles: 4.3.0
  2614. supports-color: 7.2.0
  2615. chokidar@3.5.3:
  2616. dependencies:
  2617. anymatch: 3.1.3
  2618. braces: 3.0.2
  2619. glob-parent: 5.1.2
  2620. is-binary-path: 2.1.0
  2621. is-glob: 4.0.3
  2622. normalize-path: 3.0.0
  2623. readdirp: 3.6.0
  2624. optionalDependencies:
  2625. fsevents: 2.3.3
  2626. class-utils@0.3.6:
  2627. dependencies:
  2628. arr-union: 3.1.0
  2629. define-property: 0.2.5
  2630. isobject: 3.0.1
  2631. static-extend: 0.1.2
  2632. clipboard@2.0.11:
  2633. dependencies:
  2634. good-listener: 1.2.2
  2635. select: 1.1.2
  2636. tiny-emitter: 2.1.0
  2637. clone@2.1.2: {}
  2638. collection-visit@1.0.0:
  2639. dependencies:
  2640. map-visit: 1.0.0
  2641. object-visit: 1.0.1
  2642. color-convert@1.9.3:
  2643. dependencies:
  2644. color-name: 1.1.3
  2645. color-convert@2.0.1:
  2646. dependencies:
  2647. color-name: 1.1.4
  2648. color-name@1.1.3: {}
  2649. color-name@1.1.4: {}
  2650. commander@7.2.0: {}
  2651. component-emitter@1.3.1: {}
  2652. compute-scroll-into-view@1.0.20: {}
  2653. concat-map@0.0.1: {}
  2654. convert-source-map@2.0.0: {}
  2655. copy-descriptor@0.1.1: {}
  2656. core-js@3.6.5: {}
  2657. cors@2.8.5:
  2658. dependencies:
  2659. object-assign: 4.1.1
  2660. vary: 1.1.2
  2661. cross-spawn@7.0.3:
  2662. dependencies:
  2663. path-key: 3.1.1
  2664. shebang-command: 2.0.0
  2665. which: 2.0.2
  2666. css-select@4.3.0:
  2667. dependencies:
  2668. boolbase: 1.0.0
  2669. css-what: 6.1.0
  2670. domhandler: 4.3.1
  2671. domutils: 2.8.0
  2672. nth-check: 2.1.1
  2673. css-tree@1.1.3:
  2674. dependencies:
  2675. mdn-data: 2.0.14
  2676. source-map: 0.6.1
  2677. css-what@6.1.0: {}
  2678. cssesc@3.0.0: {}
  2679. csso@4.2.0:
  2680. dependencies:
  2681. css-tree: 1.1.3
  2682. csstype@3.1.2: {}
  2683. d@1.0.1:
  2684. dependencies:
  2685. es5-ext: 0.10.62
  2686. type: 1.2.0
  2687. dayjs@1.11.13: {}
  2688. debug@2.6.9:
  2689. dependencies:
  2690. ms: 2.0.0
  2691. debug@3.1.0:
  2692. dependencies:
  2693. ms: 2.0.0
  2694. debug@4.3.4:
  2695. dependencies:
  2696. ms: 2.1.2
  2697. decode-uri-component@0.2.2: {}
  2698. deep-equal@1.1.2:
  2699. dependencies:
  2700. is-arguments: 1.1.1
  2701. is-date-object: 1.0.5
  2702. is-regex: 1.1.4
  2703. object-is: 1.1.5
  2704. object-keys: 1.1.1
  2705. regexp.prototype.flags: 1.5.1
  2706. deep-is@0.1.4: {}
  2707. define-data-property@1.1.1:
  2708. dependencies:
  2709. get-intrinsic: 1.2.2
  2710. gopd: 1.0.1
  2711. has-property-descriptors: 1.0.1
  2712. define-properties@1.2.1:
  2713. dependencies:
  2714. define-data-property: 1.1.1
  2715. has-property-descriptors: 1.0.1
  2716. object-keys: 1.1.1
  2717. define-property@0.2.5:
  2718. dependencies:
  2719. is-descriptor: 0.1.7
  2720. define-property@1.0.0:
  2721. dependencies:
  2722. is-descriptor: 1.0.3
  2723. define-property@2.0.2:
  2724. dependencies:
  2725. is-descriptor: 1.0.3
  2726. isobject: 3.0.1
  2727. delegate@3.2.0: {}
  2728. dir-glob@3.0.1:
  2729. dependencies:
  2730. path-type: 4.0.0
  2731. doctrine@3.0.0:
  2732. dependencies:
  2733. esutils: 2.0.3
  2734. dom-serializer@0.2.2:
  2735. dependencies:
  2736. domelementtype: 2.3.0
  2737. entities: 2.2.0
  2738. dom-serializer@1.4.1:
  2739. dependencies:
  2740. domelementtype: 2.3.0
  2741. domhandler: 4.3.1
  2742. entities: 2.2.0
  2743. dom-walk@0.1.2: {}
  2744. dom7@3.0.0:
  2745. dependencies:
  2746. ssr-window: 3.0.0
  2747. domelementtype@1.3.1: {}
  2748. domelementtype@2.3.0: {}
  2749. domhandler@2.4.2:
  2750. dependencies:
  2751. domelementtype: 1.3.1
  2752. domhandler@4.3.1:
  2753. dependencies:
  2754. domelementtype: 2.3.0
  2755. domutils@1.7.0:
  2756. dependencies:
  2757. dom-serializer: 0.2.2
  2758. domelementtype: 1.3.1
  2759. domutils@2.8.0:
  2760. dependencies:
  2761. dom-serializer: 1.4.1
  2762. domelementtype: 2.3.0
  2763. domhandler: 4.3.1
  2764. echarts@5.4.3:
  2765. dependencies:
  2766. tslib: 2.3.0
  2767. zrender: 5.4.4
  2768. electron-to-chromium@1.4.593: {}
  2769. element-plus@2.5.6(vue@3.3.8):
  2770. dependencies:
  2771. '@ctrl/tinycolor': 3.6.1
  2772. '@element-plus/icons-vue': 2.3.1(vue@3.3.8)
  2773. '@floating-ui/dom': 1.5.3
  2774. '@popperjs/core': '@sxzz/popperjs-es@2.11.7'
  2775. '@types/lodash': 4.14.202
  2776. '@types/lodash-es': 4.17.12
  2777. '@vueuse/core': 9.13.0(vue@3.3.8)
  2778. async-validator: 4.2.5
  2779. dayjs: 1.11.13
  2780. escape-html: 1.0.3
  2781. lodash: 4.17.21
  2782. lodash-es: 4.17.21
  2783. lodash-unified: 1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.21)(lodash@4.17.21)
  2784. memoize-one: 6.0.0
  2785. normalize-wheel-es: 1.2.0
  2786. vue: 3.3.8
  2787. transitivePeerDependencies:
  2788. - '@vue/composition-api'
  2789. emojis-list@3.0.0: {}
  2790. entities@1.1.2: {}
  2791. entities@2.2.0: {}
  2792. es5-ext@0.10.62:
  2793. dependencies:
  2794. es6-iterator: 2.0.3
  2795. es6-symbol: 3.1.3
  2796. next-tick: 1.1.0
  2797. es6-iterator@2.0.3:
  2798. dependencies:
  2799. d: 1.0.1
  2800. es5-ext: 0.10.62
  2801. es6-symbol: 3.1.3
  2802. es6-promise@4.2.8: {}
  2803. es6-symbol@3.1.3:
  2804. dependencies:
  2805. d: 1.0.1
  2806. ext: 1.7.0
  2807. esbuild@0.18.20:
  2808. optionalDependencies:
  2809. '@esbuild/android-arm': 0.18.20
  2810. '@esbuild/android-arm64': 0.18.20
  2811. '@esbuild/android-x64': 0.18.20
  2812. '@esbuild/darwin-arm64': 0.18.20
  2813. '@esbuild/darwin-x64': 0.18.20
  2814. '@esbuild/freebsd-arm64': 0.18.20
  2815. '@esbuild/freebsd-x64': 0.18.20
  2816. '@esbuild/linux-arm': 0.18.20
  2817. '@esbuild/linux-arm64': 0.18.20
  2818. '@esbuild/linux-ia32': 0.18.20
  2819. '@esbuild/linux-loong64': 0.18.20
  2820. '@esbuild/linux-mips64el': 0.18.20
  2821. '@esbuild/linux-ppc64': 0.18.20
  2822. '@esbuild/linux-riscv64': 0.18.20
  2823. '@esbuild/linux-s390x': 0.18.20
  2824. '@esbuild/linux-x64': 0.18.20
  2825. '@esbuild/netbsd-x64': 0.18.20
  2826. '@esbuild/openbsd-x64': 0.18.20
  2827. '@esbuild/sunos-x64': 0.18.20
  2828. '@esbuild/win32-arm64': 0.18.20
  2829. '@esbuild/win32-ia32': 0.18.20
  2830. '@esbuild/win32-x64': 0.18.20
  2831. escalade@3.1.1: {}
  2832. escape-html@1.0.3: {}
  2833. escape-string-regexp@1.0.5: {}
  2834. escape-string-regexp@4.0.0: {}
  2835. escape-string-regexp@5.0.0: {}
  2836. eslint-plugin-vue@9.18.1(eslint@8.22.0):
  2837. dependencies:
  2838. '@eslint-community/eslint-utils': 4.4.0(eslint@8.22.0)
  2839. eslint: 8.22.0
  2840. natural-compare: 1.4.0
  2841. nth-check: 2.1.1
  2842. postcss-selector-parser: 6.0.13
  2843. semver: 7.5.4
  2844. vue-eslint-parser: 9.3.2(eslint@8.22.0)
  2845. xml-name-validator: 4.0.0
  2846. transitivePeerDependencies:
  2847. - supports-color
  2848. eslint-scope@7.2.2:
  2849. dependencies:
  2850. esrecurse: 4.3.0
  2851. estraverse: 5.3.0
  2852. eslint-utils@3.0.0(eslint@8.22.0):
  2853. dependencies:
  2854. eslint: 8.22.0
  2855. eslint-visitor-keys: 2.1.0
  2856. eslint-visitor-keys@2.1.0: {}
  2857. eslint-visitor-keys@3.4.3: {}
  2858. eslint@8.22.0:
  2859. dependencies:
  2860. '@eslint/eslintrc': 1.4.1
  2861. '@humanwhocodes/config-array': 0.10.7
  2862. '@humanwhocodes/gitignore-to-minimatch': 1.0.2
  2863. ajv: 6.12.6
  2864. chalk: 4.1.2
  2865. cross-spawn: 7.0.3
  2866. debug: 4.3.4
  2867. doctrine: 3.0.0
  2868. escape-string-regexp: 4.0.0
  2869. eslint-scope: 7.2.2
  2870. eslint-utils: 3.0.0(eslint@8.22.0)
  2871. eslint-visitor-keys: 3.4.3
  2872. espree: 9.6.1
  2873. esquery: 1.5.0
  2874. esutils: 2.0.3
  2875. fast-deep-equal: 3.1.3
  2876. file-entry-cache: 6.0.1
  2877. find-up: 5.0.0
  2878. functional-red-black-tree: 1.0.1
  2879. glob-parent: 6.0.2
  2880. globals: 13.23.0
  2881. globby: 11.1.0
  2882. grapheme-splitter: 1.0.4
  2883. ignore: 5.3.0
  2884. import-fresh: 3.3.0
  2885. imurmurhash: 0.1.4
  2886. is-glob: 4.0.3
  2887. js-yaml: 4.1.0
  2888. json-stable-stringify-without-jsonify: 1.0.1
  2889. levn: 0.4.1
  2890. lodash.merge: 4.6.2
  2891. minimatch: 3.1.2
  2892. natural-compare: 1.4.0
  2893. optionator: 0.9.3
  2894. regexpp: 3.2.0
  2895. strip-ansi: 6.0.1
  2896. strip-json-comments: 3.1.1
  2897. text-table: 0.2.0
  2898. v8-compile-cache: 2.4.0
  2899. transitivePeerDependencies:
  2900. - supports-color
  2901. espree@9.6.1:
  2902. dependencies:
  2903. acorn: 8.11.2
  2904. acorn-jsx: 5.3.2(acorn@8.11.2)
  2905. eslint-visitor-keys: 3.4.3
  2906. esquery@1.5.0:
  2907. dependencies:
  2908. estraverse: 5.3.0
  2909. esrecurse@4.3.0:
  2910. dependencies:
  2911. estraverse: 5.3.0
  2912. estraverse@5.3.0: {}
  2913. estree-walker@2.0.2: {}
  2914. esutils@2.0.3: {}
  2915. etag@1.8.1: {}
  2916. event-emitter@0.3.5:
  2917. dependencies:
  2918. d: 1.0.1
  2919. es5-ext: 0.10.62
  2920. eventemitter3@2.0.3: {}
  2921. expand-brackets@2.1.4:
  2922. dependencies:
  2923. debug: 2.6.9
  2924. define-property: 0.2.5
  2925. extend-shallow: 2.0.1
  2926. posix-character-classes: 0.1.1
  2927. regex-not: 1.0.2
  2928. snapdragon: 0.8.2
  2929. to-regex: 3.0.2
  2930. transitivePeerDependencies:
  2931. - supports-color
  2932. ext@1.7.0:
  2933. dependencies:
  2934. type: 2.7.2
  2935. extend-shallow@2.0.1:
  2936. dependencies:
  2937. is-extendable: 0.1.1
  2938. extend-shallow@3.0.2:
  2939. dependencies:
  2940. assign-symbols: 1.0.0
  2941. is-extendable: 1.0.1
  2942. extend@3.0.2: {}
  2943. extglob@2.0.4:
  2944. dependencies:
  2945. array-unique: 0.3.2
  2946. define-property: 1.0.0
  2947. expand-brackets: 2.1.4
  2948. extend-shallow: 2.0.1
  2949. fragment-cache: 0.2.1
  2950. regex-not: 1.0.2
  2951. snapdragon: 0.8.2
  2952. to-regex: 3.0.2
  2953. transitivePeerDependencies:
  2954. - supports-color
  2955. fast-deep-equal@3.1.3: {}
  2956. fast-diff@1.1.2: {}
  2957. fast-diff@1.2.0: {}
  2958. fast-glob@3.3.2:
  2959. dependencies:
  2960. '@nodelib/fs.stat': 2.0.5
  2961. '@nodelib/fs.walk': 1.2.8
  2962. glob-parent: 5.1.2
  2963. merge2: 1.4.1
  2964. micromatch: 4.0.5
  2965. fast-json-stable-stringify@2.1.0: {}
  2966. fast-levenshtein@2.0.6: {}
  2967. fastq@1.15.0:
  2968. dependencies:
  2969. reusify: 1.0.4
  2970. file-entry-cache@6.0.1:
  2971. dependencies:
  2972. flat-cache: 3.2.0
  2973. fill-range@4.0.0:
  2974. dependencies:
  2975. extend-shallow: 2.0.1
  2976. is-number: 3.0.0
  2977. repeat-string: 1.6.1
  2978. to-regex-range: 2.1.1
  2979. fill-range@7.0.1:
  2980. dependencies:
  2981. to-regex-range: 5.0.1
  2982. find-up@5.0.0:
  2983. dependencies:
  2984. locate-path: 6.0.0
  2985. path-exists: 4.0.0
  2986. flat-cache@3.2.0:
  2987. dependencies:
  2988. flatted: 3.2.9
  2989. keyv: 4.5.4
  2990. rimraf: 3.0.2
  2991. flatted@3.2.9: {}
  2992. follow-redirects@1.5.10:
  2993. dependencies:
  2994. debug: 3.1.0
  2995. transitivePeerDependencies:
  2996. - supports-color
  2997. for-in@1.0.2: {}
  2998. fragment-cache@0.2.1:
  2999. dependencies:
  3000. map-cache: 0.2.2
  3001. fs-extra@10.1.0:
  3002. dependencies:
  3003. graceful-fs: 4.2.11
  3004. jsonfile: 6.1.0
  3005. universalify: 2.0.1
  3006. fs.realpath@1.0.0: {}
  3007. fsevents@2.3.3:
  3008. optional: true
  3009. function-bind@1.1.2: {}
  3010. functional-red-black-tree@1.0.1: {}
  3011. functions-have-names@1.2.3: {}
  3012. fuse.js@6.6.2: {}
  3013. gensync@1.0.0-beta.2: {}
  3014. get-intrinsic@1.2.2:
  3015. dependencies:
  3016. function-bind: 1.1.2
  3017. has-proto: 1.0.1
  3018. has-symbols: 1.0.3
  3019. hasown: 2.0.0
  3020. get-value@2.0.6: {}
  3021. glob-parent@5.1.2:
  3022. dependencies:
  3023. is-glob: 4.0.3
  3024. glob-parent@6.0.2:
  3025. dependencies:
  3026. is-glob: 4.0.3
  3027. glob@7.2.3:
  3028. dependencies:
  3029. fs.realpath: 1.0.0
  3030. inflight: 1.0.6
  3031. inherits: 2.0.4
  3032. minimatch: 3.1.2
  3033. once: 1.4.0
  3034. path-is-absolute: 1.0.1
  3035. global@4.4.0:
  3036. dependencies:
  3037. min-document: 2.19.0
  3038. process: 0.11.10
  3039. globals@11.12.0: {}
  3040. globals@13.23.0:
  3041. dependencies:
  3042. type-fest: 0.20.2
  3043. globby@11.1.0:
  3044. dependencies:
  3045. array-union: 2.1.0
  3046. dir-glob: 3.0.1
  3047. fast-glob: 3.3.2
  3048. ignore: 5.3.0
  3049. merge2: 1.4.1
  3050. slash: 3.0.0
  3051. good-listener@1.2.2:
  3052. dependencies:
  3053. delegate: 3.2.0
  3054. gopd@1.0.1:
  3055. dependencies:
  3056. get-intrinsic: 1.2.2
  3057. graceful-fs@4.2.11: {}
  3058. grapheme-splitter@1.0.4: {}
  3059. has-ansi@2.0.0:
  3060. dependencies:
  3061. ansi-regex: 2.1.1
  3062. has-flag@1.0.0: {}
  3063. has-flag@3.0.0: {}
  3064. has-flag@4.0.0: {}
  3065. has-property-descriptors@1.0.1:
  3066. dependencies:
  3067. get-intrinsic: 1.2.2
  3068. has-proto@1.0.1: {}
  3069. has-symbols@1.0.3: {}
  3070. has-tostringtag@1.0.0:
  3071. dependencies:
  3072. has-symbols: 1.0.3
  3073. has-value@0.3.1:
  3074. dependencies:
  3075. get-value: 2.0.6
  3076. has-values: 0.1.4
  3077. isobject: 2.1.0
  3078. has-value@1.0.0:
  3079. dependencies:
  3080. get-value: 2.0.6
  3081. has-values: 1.0.0
  3082. isobject: 3.0.1
  3083. has-values@0.1.4: {}
  3084. has-values@1.0.0:
  3085. dependencies:
  3086. is-number: 3.0.0
  3087. kind-of: 4.0.0
  3088. hasown@2.0.0:
  3089. dependencies:
  3090. function-bind: 1.1.2
  3091. he@1.2.0: {}
  3092. html-tags@3.3.1: {}
  3093. html-void-elements@2.0.1: {}
  3094. htmlparser2@3.10.1:
  3095. dependencies:
  3096. domelementtype: 1.3.1
  3097. domhandler: 2.4.2
  3098. domutils: 1.7.0
  3099. entities: 1.1.2
  3100. inherits: 2.0.4
  3101. readable-stream: 3.6.2
  3102. i18next@20.6.1:
  3103. dependencies:
  3104. '@babel/runtime': 7.23.4
  3105. ignore@5.3.0: {}
  3106. image-size@0.5.5: {}
  3107. immer@9.0.21: {}
  3108. immutable@4.3.4: {}
  3109. import-fresh@3.3.0:
  3110. dependencies:
  3111. parent-module: 1.0.1
  3112. resolve-from: 4.0.0
  3113. imurmurhash@0.1.4: {}
  3114. individual@2.0.0: {}
  3115. inflight@1.0.6:
  3116. dependencies:
  3117. once: 1.4.0
  3118. wrappy: 1.0.2
  3119. inherits@2.0.4: {}
  3120. is-accessor-descriptor@1.0.1:
  3121. dependencies:
  3122. hasown: 2.0.0
  3123. is-arguments@1.1.1:
  3124. dependencies:
  3125. call-bind: 1.0.5
  3126. has-tostringtag: 1.0.0
  3127. is-binary-path@2.1.0:
  3128. dependencies:
  3129. binary-extensions: 2.2.0
  3130. is-buffer@1.1.6: {}
  3131. is-buffer@2.0.5: {}
  3132. is-core-module@2.13.1:
  3133. dependencies:
  3134. hasown: 2.0.0
  3135. is-data-descriptor@1.0.1:
  3136. dependencies:
  3137. hasown: 2.0.0
  3138. is-date-object@1.0.5:
  3139. dependencies:
  3140. has-tostringtag: 1.0.0
  3141. is-descriptor@0.1.7:
  3142. dependencies:
  3143. is-accessor-descriptor: 1.0.1
  3144. is-data-descriptor: 1.0.1
  3145. is-descriptor@1.0.3:
  3146. dependencies:
  3147. is-accessor-descriptor: 1.0.1
  3148. is-data-descriptor: 1.0.1
  3149. is-extendable@0.1.1: {}
  3150. is-extendable@1.0.1:
  3151. dependencies:
  3152. is-plain-object: 2.0.4
  3153. is-extglob@2.1.1: {}
  3154. is-function@1.0.2: {}
  3155. is-glob@4.0.3:
  3156. dependencies:
  3157. is-extglob: 2.1.1
  3158. is-hotkey@0.2.0: {}
  3159. is-number@3.0.0:
  3160. dependencies:
  3161. kind-of: 3.2.2
  3162. is-number@7.0.0: {}
  3163. is-plain-obj@1.1.0: {}
  3164. is-plain-object@2.0.4:
  3165. dependencies:
  3166. isobject: 3.0.1
  3167. is-plain-object@5.0.0: {}
  3168. is-regex@1.1.4:
  3169. dependencies:
  3170. call-bind: 1.0.5
  3171. has-tostringtag: 1.0.0
  3172. is-url@1.2.4: {}
  3173. is-windows@1.0.2: {}
  3174. isarray@1.0.0: {}
  3175. isexe@2.0.0: {}
  3176. isobject@2.1.0:
  3177. dependencies:
  3178. isarray: 1.0.0
  3179. isobject@3.0.1: {}
  3180. js-base64@2.6.4: {}
  3181. js-cookie@2.2.0: {}
  3182. js-tokens@4.0.0: {}
  3183. js-yaml@4.1.0:
  3184. dependencies:
  3185. argparse: 2.0.1
  3186. jsencrypt@3.3.2: {}
  3187. jsesc@2.5.2: {}
  3188. json-buffer@3.0.1: {}
  3189. json-schema-traverse@0.4.1: {}
  3190. json-stable-stringify-without-jsonify@1.0.1: {}
  3191. json5@1.0.2:
  3192. dependencies:
  3193. minimist: 1.2.8
  3194. json5@2.2.3: {}
  3195. jsonc-parser@3.2.0: {}
  3196. jsonfile@6.1.0:
  3197. dependencies:
  3198. universalify: 2.0.1
  3199. optionalDependencies:
  3200. graceful-fs: 4.2.11
  3201. keycode@2.2.1: {}
  3202. keyv@4.5.4:
  3203. dependencies:
  3204. json-buffer: 3.0.1
  3205. kind-of@3.2.2:
  3206. dependencies:
  3207. is-buffer: 1.1.6
  3208. kind-of@4.0.0:
  3209. dependencies:
  3210. is-buffer: 1.1.6
  3211. kind-of@5.1.0: {}
  3212. kind-of@6.0.3: {}
  3213. levn@0.4.1:
  3214. dependencies:
  3215. prelude-ls: 1.2.1
  3216. type-check: 0.4.0
  3217. loader-utils@1.4.2:
  3218. dependencies:
  3219. big.js: 5.2.2
  3220. emojis-list: 3.0.0
  3221. json5: 1.0.2
  3222. local-pkg@0.4.3: {}
  3223. local-pkg@0.5.0:
  3224. dependencies:
  3225. mlly: 1.4.2
  3226. pkg-types: 1.0.3
  3227. locate-path@6.0.0:
  3228. dependencies:
  3229. p-locate: 5.0.0
  3230. lodash-es@4.17.21: {}
  3231. lodash-unified@1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.21)(lodash@4.17.21):
  3232. dependencies:
  3233. '@types/lodash-es': 4.17.12
  3234. lodash: 4.17.21
  3235. lodash-es: 4.17.21
  3236. lodash.camelcase@4.3.0: {}
  3237. lodash.clonedeep@4.5.0: {}
  3238. lodash.debounce@4.0.8: {}
  3239. lodash.foreach@4.5.0: {}
  3240. lodash.isequal@4.5.0: {}
  3241. lodash.merge@4.6.2: {}
  3242. lodash.throttle@4.1.1: {}
  3243. lodash.toarray@4.4.0: {}
  3244. lodash@4.17.21: {}
  3245. lru-cache@5.1.1:
  3246. dependencies:
  3247. yallist: 3.1.1
  3248. lru-cache@6.0.0:
  3249. dependencies:
  3250. yallist: 4.0.0
  3251. m3u8-parser@4.8.0:
  3252. dependencies:
  3253. '@babel/runtime': 7.23.4
  3254. '@videojs/vhs-utils': 3.0.5
  3255. global: 4.4.0
  3256. magic-string@0.30.5:
  3257. dependencies:
  3258. '@jridgewell/sourcemap-codec': 1.4.15
  3259. map-cache@0.2.2: {}
  3260. map-visit@1.0.0:
  3261. dependencies:
  3262. object-visit: 1.0.1
  3263. mdn-data@2.0.14: {}
  3264. memoize-one@6.0.0: {}
  3265. merge-options@1.0.1:
  3266. dependencies:
  3267. is-plain-obj: 1.1.0
  3268. merge2@1.4.1: {}
  3269. micromatch@3.1.0:
  3270. dependencies:
  3271. arr-diff: 4.0.0
  3272. array-unique: 0.3.2
  3273. braces: 2.3.2
  3274. define-property: 1.0.0
  3275. extend-shallow: 2.0.1
  3276. extglob: 2.0.4
  3277. fragment-cache: 0.2.1
  3278. kind-of: 5.1.0
  3279. nanomatch: 1.2.13
  3280. object.pick: 1.3.0
  3281. regex-not: 1.0.2
  3282. snapdragon: 0.8.2
  3283. to-regex: 3.0.2
  3284. transitivePeerDependencies:
  3285. - supports-color
  3286. micromatch@4.0.5:
  3287. dependencies:
  3288. braces: 3.0.2
  3289. picomatch: 2.3.1
  3290. mime-match@1.0.2:
  3291. dependencies:
  3292. wildcard: 1.1.2
  3293. mime@3.0.0: {}
  3294. min-document@2.19.0:
  3295. dependencies:
  3296. dom-walk: 0.1.2
  3297. minimatch@3.1.2:
  3298. dependencies:
  3299. brace-expansion: 1.1.11
  3300. minimatch@7.4.6:
  3301. dependencies:
  3302. brace-expansion: 2.0.1
  3303. minimatch@9.0.3:
  3304. dependencies:
  3305. brace-expansion: 2.0.1
  3306. minimist@1.2.8: {}
  3307. mixin-deep@1.3.2:
  3308. dependencies:
  3309. for-in: 1.0.2
  3310. is-extendable: 1.0.1
  3311. mlly@1.4.2:
  3312. dependencies:
  3313. acorn: 8.11.2
  3314. pathe: 1.1.1
  3315. pkg-types: 1.0.3
  3316. ufo: 1.3.2
  3317. moment@2.30.1: {}
  3318. mpd-parser@0.22.1:
  3319. dependencies:
  3320. '@babel/runtime': 7.23.4
  3321. '@videojs/vhs-utils': 3.0.5
  3322. '@xmldom/xmldom': 0.8.10
  3323. global: 4.4.0
  3324. ms@2.0.0: {}
  3325. ms@2.1.2: {}
  3326. mux.js@6.0.1:
  3327. dependencies:
  3328. '@babel/runtime': 7.23.4
  3329. global: 4.4.0
  3330. namespace-emitter@2.0.1: {}
  3331. nanoid@3.3.7: {}
  3332. nanomatch@1.2.13:
  3333. dependencies:
  3334. arr-diff: 4.0.0
  3335. array-unique: 0.3.2
  3336. define-property: 2.0.2
  3337. extend-shallow: 3.0.2
  3338. fragment-cache: 0.2.1
  3339. is-windows: 1.0.2
  3340. kind-of: 6.0.3
  3341. object.pick: 1.3.0
  3342. regex-not: 1.0.2
  3343. snapdragon: 0.8.2
  3344. to-regex: 3.0.2
  3345. transitivePeerDependencies:
  3346. - supports-color
  3347. natural-compare@1.4.0: {}
  3348. next-tick@1.1.0: {}
  3349. node-releases@2.0.13: {}
  3350. normalize-path@3.0.0: {}
  3351. normalize-wheel-es@1.2.0: {}
  3352. normalize.css@7.0.0: {}
  3353. nprogress@0.2.0: {}
  3354. nth-check@2.1.1:
  3355. dependencies:
  3356. boolbase: 1.0.0
  3357. object-assign@4.1.1: {}
  3358. object-copy@0.1.0:
  3359. dependencies:
  3360. copy-descriptor: 0.1.1
  3361. define-property: 0.2.5
  3362. kind-of: 3.2.2
  3363. object-is@1.1.5:
  3364. dependencies:
  3365. call-bind: 1.0.5
  3366. define-properties: 1.2.1
  3367. object-keys@1.1.1: {}
  3368. object-visit@1.0.1:
  3369. dependencies:
  3370. isobject: 3.0.1
  3371. object.pick@1.3.0:
  3372. dependencies:
  3373. isobject: 3.0.1
  3374. once@1.4.0:
  3375. dependencies:
  3376. wrappy: 1.0.2
  3377. optionator@0.9.3:
  3378. dependencies:
  3379. '@aashutoshrathi/word-wrap': 1.2.6
  3380. deep-is: 0.1.4
  3381. fast-levenshtein: 2.0.6
  3382. levn: 0.4.1
  3383. prelude-ls: 1.2.1
  3384. type-check: 0.4.0
  3385. p-limit@3.1.0:
  3386. dependencies:
  3387. yocto-queue: 0.1.0
  3388. p-locate@5.0.0:
  3389. dependencies:
  3390. p-limit: 3.1.0
  3391. parchment@1.1.4: {}
  3392. parent-module@1.0.1:
  3393. dependencies:
  3394. callsites: 3.1.0
  3395. pascalcase@0.1.1: {}
  3396. path-browserify@1.0.1: {}
  3397. path-exists@4.0.0: {}
  3398. path-is-absolute@1.0.1: {}
  3399. path-key@3.1.1: {}
  3400. path-parse@1.0.7: {}
  3401. path-to-regexp@2.4.0: {}
  3402. path-type@4.0.0: {}
  3403. pathe@0.2.0: {}
  3404. pathe@1.1.1: {}
  3405. picocolors@1.0.0: {}
  3406. picomatch@2.3.1: {}
  3407. pinia@2.1.7(vue@3.3.8):
  3408. dependencies:
  3409. '@vue/devtools-api': 6.5.1
  3410. vue: 3.3.8
  3411. vue-demi: 0.14.6(vue@3.3.8)
  3412. pkcs7@1.0.4:
  3413. dependencies:
  3414. '@babel/runtime': 7.23.4
  3415. pkg-types@1.0.3:
  3416. dependencies:
  3417. jsonc-parser: 3.2.0
  3418. mlly: 1.4.2
  3419. pathe: 1.1.1
  3420. posix-character-classes@0.1.1: {}
  3421. postcss-prefix-selector@1.16.0(postcss@5.2.18):
  3422. dependencies:
  3423. postcss: 5.2.18
  3424. postcss-selector-parser@6.0.13:
  3425. dependencies:
  3426. cssesc: 3.0.0
  3427. util-deprecate: 1.0.2
  3428. postcss@5.2.18:
  3429. dependencies:
  3430. chalk: 1.1.3
  3431. js-base64: 2.6.4
  3432. source-map: 0.5.7
  3433. supports-color: 3.2.3
  3434. postcss@8.4.31:
  3435. dependencies:
  3436. nanoid: 3.3.7
  3437. picocolors: 1.0.0
  3438. source-map-js: 1.0.2
  3439. posthtml-parser@0.2.1:
  3440. dependencies:
  3441. htmlparser2: 3.10.1
  3442. isobject: 2.1.0
  3443. posthtml-rename-id@1.0.12:
  3444. dependencies:
  3445. escape-string-regexp: 1.0.5
  3446. posthtml-render@1.4.0: {}
  3447. posthtml-svg-mode@1.0.3:
  3448. dependencies:
  3449. merge-options: 1.0.1
  3450. posthtml: 0.9.2
  3451. posthtml-parser: 0.2.1
  3452. posthtml-render: 1.4.0
  3453. posthtml@0.9.2:
  3454. dependencies:
  3455. posthtml-parser: 0.2.1
  3456. posthtml-render: 1.4.0
  3457. preact@10.19.2: {}
  3458. prelude-ls@1.2.1: {}
  3459. prismjs@1.29.0: {}
  3460. process@0.11.10: {}
  3461. punycode@2.3.1: {}
  3462. query-string@4.3.4:
  3463. dependencies:
  3464. object-assign: 4.1.1
  3465. strict-uri-encode: 1.1.0
  3466. queue-microtask@1.2.3: {}
  3467. quill-delta@3.6.3:
  3468. dependencies:
  3469. deep-equal: 1.1.2
  3470. extend: 3.0.2
  3471. fast-diff: 1.1.2
  3472. quill-delta@4.2.2:
  3473. dependencies:
  3474. fast-diff: 1.2.0
  3475. lodash.clonedeep: 4.5.0
  3476. lodash.isequal: 4.5.0
  3477. quill@1.3.7:
  3478. dependencies:
  3479. clone: 2.1.2
  3480. deep-equal: 1.1.2
  3481. eventemitter3: 2.0.3
  3482. extend: 3.0.2
  3483. parchment: 1.1.4
  3484. quill-delta: 3.6.3
  3485. readable-stream@3.6.2:
  3486. dependencies:
  3487. inherits: 2.0.4
  3488. string_decoder: 1.3.0
  3489. util-deprecate: 1.0.2
  3490. readdirp@3.6.0:
  3491. dependencies:
  3492. picomatch: 2.3.1
  3493. regenerator-runtime@0.14.0: {}
  3494. regex-not@1.0.2:
  3495. dependencies:
  3496. extend-shallow: 3.0.2
  3497. safe-regex: 1.1.0
  3498. regexp.prototype.flags@1.5.1:
  3499. dependencies:
  3500. call-bind: 1.0.5
  3501. define-properties: 1.2.1
  3502. set-function-name: 2.0.1
  3503. regexpp@3.2.0: {}
  3504. repeat-element@1.1.4: {}
  3505. repeat-string@1.6.1: {}
  3506. resolve-from@4.0.0: {}
  3507. resolve-url@0.2.1: {}
  3508. resolve@1.22.8:
  3509. dependencies:
  3510. is-core-module: 2.13.1
  3511. path-parse: 1.0.7
  3512. supports-preserve-symlinks-flag: 1.0.0
  3513. ret@0.1.15: {}
  3514. reusify@1.0.4: {}
  3515. rimraf@3.0.2:
  3516. dependencies:
  3517. glob: 7.2.3
  3518. rollup@3.29.4:
  3519. optionalDependencies:
  3520. fsevents: 2.3.3
  3521. run-parallel@1.2.0:
  3522. dependencies:
  3523. queue-microtask: 1.2.3
  3524. rust-result@1.0.0:
  3525. dependencies:
  3526. individual: 2.0.0
  3527. safe-buffer@5.2.1: {}
  3528. safe-json-parse@4.0.0:
  3529. dependencies:
  3530. rust-result: 1.0.0
  3531. safe-regex@1.1.0:
  3532. dependencies:
  3533. ret: 0.1.15
  3534. sass@1.69.5:
  3535. dependencies:
  3536. chokidar: 3.5.3
  3537. immutable: 4.3.4
  3538. source-map-js: 1.0.2
  3539. screenfull@5.2.0: {}
  3540. scroll-into-view-if-needed@2.2.31:
  3541. dependencies:
  3542. compute-scroll-into-view: 1.0.20
  3543. scule@1.1.0: {}
  3544. select@1.1.2: {}
  3545. semver@6.3.1: {}
  3546. semver@7.5.4:
  3547. dependencies:
  3548. lru-cache: 6.0.0
  3549. set-function-length@1.1.1:
  3550. dependencies:
  3551. define-data-property: 1.1.1
  3552. get-intrinsic: 1.2.2
  3553. gopd: 1.0.1
  3554. has-property-descriptors: 1.0.1
  3555. set-function-name@2.0.1:
  3556. dependencies:
  3557. define-data-property: 1.1.1
  3558. functions-have-names: 1.2.3
  3559. has-property-descriptors: 1.0.1
  3560. set-value@2.0.1:
  3561. dependencies:
  3562. extend-shallow: 2.0.1
  3563. is-extendable: 0.1.1
  3564. is-plain-object: 2.0.4
  3565. split-string: 3.1.0
  3566. shebang-command@2.0.0:
  3567. dependencies:
  3568. shebang-regex: 3.0.0
  3569. shebang-regex@3.0.0: {}
  3570. slash@3.0.0: {}
  3571. slate-history@0.66.0(slate@0.72.8):
  3572. dependencies:
  3573. is-plain-object: 5.0.0
  3574. slate: 0.72.8
  3575. slate@0.72.8:
  3576. dependencies:
  3577. immer: 9.0.21
  3578. is-plain-object: 5.0.0
  3579. tiny-warning: 1.0.3
  3580. snabbdom@3.5.1: {}
  3581. snapdragon-node@2.1.1:
  3582. dependencies:
  3583. define-property: 1.0.0
  3584. isobject: 3.0.1
  3585. snapdragon-util: 3.0.1
  3586. snapdragon-util@3.0.1:
  3587. dependencies:
  3588. kind-of: 3.2.2
  3589. snapdragon@0.8.2:
  3590. dependencies:
  3591. base: 0.11.2
  3592. debug: 2.6.9
  3593. define-property: 0.2.5
  3594. extend-shallow: 2.0.1
  3595. map-cache: 0.2.2
  3596. source-map: 0.5.7
  3597. source-map-resolve: 0.5.3
  3598. use: 3.1.1
  3599. transitivePeerDependencies:
  3600. - supports-color
  3601. sortablejs@1.15.0: {}
  3602. source-map-js@1.0.2: {}
  3603. source-map-resolve@0.5.3:
  3604. dependencies:
  3605. atob: 2.1.2
  3606. decode-uri-component: 0.2.2
  3607. resolve-url: 0.2.1
  3608. source-map-url: 0.4.1
  3609. urix: 0.1.0
  3610. source-map-url@0.4.1: {}
  3611. source-map@0.5.7: {}
  3612. source-map@0.6.1: {}
  3613. split-string@3.1.0:
  3614. dependencies:
  3615. extend-shallow: 3.0.2
  3616. ssr-window@3.0.0: {}
  3617. ssr-window@4.0.2: {}
  3618. stable@0.1.8: {}
  3619. static-extend@0.1.2:
  3620. dependencies:
  3621. define-property: 0.2.5
  3622. object-copy: 0.1.0
  3623. strict-uri-encode@1.1.0: {}
  3624. string_decoder@1.3.0:
  3625. dependencies:
  3626. safe-buffer: 5.2.1
  3627. strip-ansi@3.0.1:
  3628. dependencies:
  3629. ansi-regex: 2.1.1
  3630. strip-ansi@6.0.1:
  3631. dependencies:
  3632. ansi-regex: 5.0.1
  3633. strip-json-comments@3.1.1: {}
  3634. strip-literal@1.3.0:
  3635. dependencies:
  3636. acorn: 8.11.2
  3637. supports-color@2.0.0: {}
  3638. supports-color@3.2.3:
  3639. dependencies:
  3640. has-flag: 1.0.0
  3641. supports-color@5.5.0:
  3642. dependencies:
  3643. has-flag: 3.0.0
  3644. supports-color@7.2.0:
  3645. dependencies:
  3646. has-flag: 4.0.0
  3647. supports-preserve-symlinks-flag@1.0.0: {}
  3648. svg-baker@1.7.0:
  3649. dependencies:
  3650. bluebird: 3.7.2
  3651. clone: 2.1.2
  3652. he: 1.2.0
  3653. image-size: 0.5.5
  3654. loader-utils: 1.4.2
  3655. merge-options: 1.0.1
  3656. micromatch: 3.1.0
  3657. postcss: 5.2.18
  3658. postcss-prefix-selector: 1.16.0(postcss@5.2.18)
  3659. posthtml-rename-id: 1.0.12
  3660. posthtml-svg-mode: 1.0.3
  3661. query-string: 4.3.4
  3662. traverse: 0.6.7
  3663. transitivePeerDependencies:
  3664. - supports-color
  3665. svg-tags@1.0.0: {}
  3666. svgo@2.8.0:
  3667. dependencies:
  3668. '@trysound/sax': 0.2.0
  3669. commander: 7.2.0
  3670. css-select: 4.3.0
  3671. css-tree: 1.1.3
  3672. csso: 4.2.0
  3673. picocolors: 1.0.0
  3674. stable: 0.1.8
  3675. swiper@9.4.1:
  3676. dependencies:
  3677. ssr-window: 4.0.2
  3678. text-table@0.2.0: {}
  3679. tiny-emitter@2.1.0: {}
  3680. tiny-warning@1.0.3: {}
  3681. tinymce@5.10.9: {}
  3682. tinymce@6.8.0: {}
  3683. to-fast-properties@2.0.0: {}
  3684. to-object-path@0.3.0:
  3685. dependencies:
  3686. kind-of: 3.2.2
  3687. to-regex-range@2.1.1:
  3688. dependencies:
  3689. is-number: 3.0.0
  3690. repeat-string: 1.6.1
  3691. to-regex-range@5.0.1:
  3692. dependencies:
  3693. is-number: 7.0.0
  3694. to-regex@3.0.2:
  3695. dependencies:
  3696. define-property: 2.0.2
  3697. extend-shallow: 3.0.2
  3698. regex-not: 1.0.2
  3699. safe-regex: 1.1.0
  3700. traverse@0.6.7: {}
  3701. tslib@2.3.0: {}
  3702. type-check@0.4.0:
  3703. dependencies:
  3704. prelude-ls: 1.2.1
  3705. type-fest@0.20.2: {}
  3706. type@1.2.0: {}
  3707. type@2.7.2: {}
  3708. ufo@1.3.2: {}
  3709. undici-types@5.26.5: {}
  3710. unimport@3.6.0(rollup@3.29.4):
  3711. dependencies:
  3712. '@rollup/pluginutils': 5.0.5(rollup@3.29.4)
  3713. escape-string-regexp: 5.0.0
  3714. fast-glob: 3.3.2
  3715. local-pkg: 0.5.0
  3716. magic-string: 0.30.5
  3717. mlly: 1.4.2
  3718. pathe: 1.1.1
  3719. pkg-types: 1.0.3
  3720. scule: 1.1.0
  3721. strip-literal: 1.3.0
  3722. unplugin: 1.5.1
  3723. transitivePeerDependencies:
  3724. - rollup
  3725. union-value@1.0.1:
  3726. dependencies:
  3727. arr-union: 3.1.0
  3728. get-value: 2.0.6
  3729. is-extendable: 0.1.1
  3730. set-value: 2.0.1
  3731. universalify@2.0.1: {}
  3732. unplugin-auto-import@0.16.7(@vueuse/core@10.6.1(vue@3.3.8))(rollup@3.29.4):
  3733. dependencies:
  3734. '@antfu/utils': 0.7.6
  3735. '@rollup/pluginutils': 5.0.5(rollup@3.29.4)
  3736. fast-glob: 3.3.2
  3737. local-pkg: 0.5.0
  3738. magic-string: 0.30.5
  3739. minimatch: 9.0.3
  3740. unimport: 3.6.0(rollup@3.29.4)
  3741. unplugin: 1.5.1
  3742. optionalDependencies:
  3743. '@vueuse/core': 10.6.1(vue@3.3.8)
  3744. transitivePeerDependencies:
  3745. - rollup
  3746. unplugin-vue-components@0.24.1(@babel/parser@7.23.4)(rollup@3.29.4)(vue@3.3.8):
  3747. dependencies:
  3748. '@antfu/utils': 0.7.6
  3749. '@rollup/pluginutils': 5.0.5(rollup@3.29.4)
  3750. chokidar: 3.5.3
  3751. debug: 4.3.4
  3752. fast-glob: 3.3.2
  3753. local-pkg: 0.4.3
  3754. magic-string: 0.30.5
  3755. minimatch: 7.4.6
  3756. resolve: 1.22.8
  3757. unplugin: 1.5.1
  3758. vue: 3.3.8
  3759. optionalDependencies:
  3760. '@babel/parser': 7.23.4
  3761. transitivePeerDependencies:
  3762. - rollup
  3763. - supports-color
  3764. unplugin@1.5.1:
  3765. dependencies:
  3766. acorn: 8.11.2
  3767. chokidar: 3.5.3
  3768. webpack-sources: 3.2.3
  3769. webpack-virtual-modules: 0.6.1
  3770. unset-value@1.0.0:
  3771. dependencies:
  3772. has-value: 0.3.1
  3773. isobject: 3.0.1
  3774. update-browserslist-db@1.0.13(browserslist@4.22.1):
  3775. dependencies:
  3776. browserslist: 4.22.1
  3777. escalade: 3.1.1
  3778. picocolors: 1.0.0
  3779. uri-js@4.4.1:
  3780. dependencies:
  3781. punycode: 2.3.1
  3782. urix@0.1.0: {}
  3783. url-toolkit@2.2.5: {}
  3784. use@3.1.1: {}
  3785. util-deprecate@1.0.2: {}
  3786. v8-compile-cache@2.4.0: {}
  3787. vary@1.1.2: {}
  3788. video.js@7.21.7:
  3789. dependencies:
  3790. '@babel/runtime': 7.23.4
  3791. '@videojs/http-streaming': 2.16.3(video.js@7.21.7)
  3792. '@videojs/vhs-utils': 3.0.5
  3793. '@videojs/xhr': 2.6.0
  3794. aes-decrypter: 3.1.3
  3795. global: 4.4.0
  3796. keycode: 2.2.1
  3797. m3u8-parser: 4.8.0
  3798. mpd-parser: 0.22.1
  3799. mux.js: 6.0.1
  3800. safe-json-parse: 4.0.0
  3801. videojs-font: 3.2.0
  3802. videojs-vtt.js: 0.15.5
  3803. videojs-font@3.2.0: {}
  3804. videojs-vtt.js@0.15.5:
  3805. dependencies:
  3806. global: 4.4.0
  3807. vite-plugin-svg-icons@2.0.1(vite@4.5.12(@types/node@20.9.5)(sass@1.69.5)):
  3808. dependencies:
  3809. '@types/svgo': 2.6.4
  3810. cors: 2.8.5
  3811. debug: 4.3.4
  3812. etag: 1.8.1
  3813. fs-extra: 10.1.0
  3814. pathe: 0.2.0
  3815. svg-baker: 1.7.0
  3816. svgo: 2.8.0
  3817. vite: 4.5.12(@types/node@20.9.5)(sass@1.69.5)
  3818. transitivePeerDependencies:
  3819. - supports-color
  3820. vite@4.5.12(@types/node@20.9.5)(sass@1.69.5):
  3821. dependencies:
  3822. esbuild: 0.18.20
  3823. postcss: 8.4.31
  3824. rollup: 3.29.4
  3825. optionalDependencies:
  3826. '@types/node': 20.9.5
  3827. fsevents: 2.3.3
  3828. sass: 1.69.5
  3829. vue-clipboard3@2.0.0:
  3830. dependencies:
  3831. clipboard: 2.0.11
  3832. vue-demi@0.14.6(vue@3.3.8):
  3833. dependencies:
  3834. vue: 3.3.8
  3835. vue-draggable-next@2.2.1(sortablejs@1.15.0)(vue@3.3.8):
  3836. dependencies:
  3837. sortablejs: 1.15.0
  3838. vue: 3.3.8
  3839. vue-draggable-plus@0.6.0(@types/sortablejs@1.15.8):
  3840. dependencies:
  3841. '@types/sortablejs': 1.15.8
  3842. vue-eslint-parser@9.3.2(eslint@8.22.0):
  3843. dependencies:
  3844. debug: 4.3.4
  3845. eslint: 8.22.0
  3846. eslint-scope: 7.2.2
  3847. eslint-visitor-keys: 3.4.3
  3848. espree: 9.6.1
  3849. esquery: 1.5.0
  3850. lodash: 4.17.21
  3851. semver: 7.5.4
  3852. transitivePeerDependencies:
  3853. - supports-color
  3854. vue-router@4.2.5(vue@3.3.8):
  3855. dependencies:
  3856. '@vue/devtools-api': 6.5.1
  3857. vue: 3.3.8
  3858. vue@3.3.8:
  3859. dependencies:
  3860. '@vue/compiler-dom': 3.3.8
  3861. '@vue/compiler-sfc': 3.3.8
  3862. '@vue/runtime-dom': 3.3.8
  3863. '@vue/server-renderer': 3.3.8(vue@3.3.8)
  3864. '@vue/shared': 3.3.8
  3865. vuex@4.1.0(vue@3.3.8):
  3866. dependencies:
  3867. '@vue/devtools-api': 6.5.1
  3868. vue: 3.3.8
  3869. webpack-sources@3.2.3: {}
  3870. webpack-virtual-modules@0.6.1: {}
  3871. which@2.0.2:
  3872. dependencies:
  3873. isexe: 2.0.0
  3874. wildcard@1.1.2: {}
  3875. wrappy@1.0.2: {}
  3876. xml-name-validator@4.0.0: {}
  3877. yallist@3.1.1: {}
  3878. yallist@4.0.0: {}
  3879. yocto-queue@0.1.0: {}
  3880. zrender@5.4.4:
  3881. dependencies:
  3882. tslib: 2.3.0