pnpm-lock.yaml 123 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. '@element-plus/icons':
  9. specifier: ^0.0.11
  10. version: 0.0.11
  11. '@element-plus/icons-vue':
  12. specifier: ^2.3.1
  13. version: 2.3.1(vue@3.5.13)
  14. '@rollup/plugin-commonjs':
  15. specifier: ^28.0.1
  16. version: 28.0.1
  17. '@vueuse/core':
  18. specifier: ^8.0.0
  19. version: 8.9.4(vue@3.5.13)
  20. '@wangeditor/editor':
  21. specifier: ^5.1.23
  22. version: 5.1.23
  23. '@wangeditor/editor-for-vue':
  24. specifier: ^5.1.12
  25. version: 5.1.12(@wangeditor/editor@5.1.23)(vue@3.5.13)
  26. '@webxrd/vite-plugin-svg':
  27. specifier: ^1.0.5
  28. version: 1.1.2
  29. ali-oss:
  30. specifier: ^6.21.0
  31. version: 6.21.0
  32. axios:
  33. specifier: ^1.7.7
  34. version: 1.7.7
  35. convertapi-js:
  36. specifier: ~1.1
  37. version: 1.1.9
  38. echarts:
  39. specifier: ^5.3.1
  40. version: 5.5.1
  41. element-plus:
  42. specifier: ^2.5.6
  43. version: 2.8.8(vue@3.5.13)
  44. html2pdf.js:
  45. specifier: ^0.10.2
  46. version: 0.10.2
  47. jspdf:
  48. specifier: ^2.5.2
  49. version: 2.5.2
  50. normalize.css:
  51. specifier: ^8.0.1
  52. version: 8.0.1
  53. nprogress:
  54. specifier: ^0.2.0
  55. version: 0.2.0
  56. pdf-lib:
  57. specifier: ^1.17.1
  58. version: 1.17.1
  59. puppeteer:
  60. specifier: ^19.7.0
  61. version: 19.11.1
  62. sass:
  63. specifier: ^1.77.8
  64. version: 1.81.0
  65. sass-loader:
  66. specifier: ^16.0.1
  67. version: 16.0.3(sass@1.81.0)
  68. svg2pdf.js:
  69. specifier: ^2.2.4
  70. version: 2.2.4(jspdf@2.5.2)
  71. vite-plugin-commonjs:
  72. specifier: ^0.10.3
  73. version: 0.10.3
  74. vue:
  75. specifier: ^3.2.31
  76. version: 3.5.13
  77. vue-router:
  78. specifier: '4'
  79. version: 4.4.5(vue@3.5.13)
  80. vuex:
  81. specifier: ^4.0.2
  82. version: 4.1.0(vue@3.5.13)
  83. devDependencies:
  84. '@vitejs/plugin-vue':
  85. specifier: ^5.1.3
  86. version: 5.2.0(vite@5.4.11(@types/node@22.9.1)(sass@1.81.0))(vue@3.5.13)
  87. unplugin-auto-import:
  88. specifier: ^0.6.4
  89. version: 0.6.9(@vueuse/core@8.9.4(vue@3.5.13))(esbuild@0.21.5)(vite@5.4.11(@types/node@22.9.1)(sass@1.81.0))
  90. unplugin-vue-components:
  91. specifier: ^0.18.0
  92. version: 0.18.5(@babel/parser@7.26.2)(esbuild@0.21.5)(vite@5.4.11(@types/node@22.9.1)(sass@1.81.0))(vue@3.5.13)
  93. vite:
  94. specifier: ^5.4.1
  95. version: 5.4.11(@types/node@22.9.1)(sass@1.81.0)
  96. packages:
  97. '@antfu/utils@0.5.2':
  98. resolution: {integrity: sha512-CQkeV+oJxUazwjlHD0/3ZD08QWKuGQkhnrKo3e6ly5pd48VUpXbb77q0xMU4+vc2CkJnDS02Eq/M9ugyX20XZA==}
  99. '@babel/code-frame@7.26.2':
  100. resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
  101. engines: {node: '>=6.9.0'}
  102. '@babel/helper-string-parser@7.25.9':
  103. resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
  104. engines: {node: '>=6.9.0'}
  105. '@babel/helper-validator-identifier@7.25.9':
  106. resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
  107. engines: {node: '>=6.9.0'}
  108. '@babel/parser@7.26.2':
  109. resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==}
  110. engines: {node: '>=6.0.0'}
  111. hasBin: true
  112. '@babel/runtime@7.26.0':
  113. resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==}
  114. engines: {node: '>=6.9.0'}
  115. '@babel/types@7.26.0':
  116. resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==}
  117. engines: {node: '>=6.9.0'}
  118. '@ctrl/tinycolor@3.6.1':
  119. resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==}
  120. engines: {node: '>=10'}
  121. '@element-plus/icons-vue@2.3.1':
  122. resolution: {integrity: sha512-XxVUZv48RZAd87ucGS48jPf6pKu0yV5UCg9f4FFwtrYxXOwWuVJo6wOvSLKEoMQKjv8GsX/mhP6UsC1lRwbUWg==}
  123. peerDependencies:
  124. vue: ^3.2.0
  125. '@element-plus/icons@0.0.11':
  126. resolution: {integrity: sha512-iKQXSxXu131Ai+I9Ymtcof9WId7kaXvB1+WRfAfpQCW7UiAMYgdNDqb/u0hgTo2Yq3MwC4MWJnNuTBEpG8r7+A==}
  127. deprecated: Please use @element-plus/icons-vue instead.
  128. '@esbuild/aix-ppc64@0.21.5':
  129. resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
  130. engines: {node: '>=12'}
  131. cpu: [ppc64]
  132. os: [aix]
  133. '@esbuild/android-arm64@0.21.5':
  134. resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
  135. engines: {node: '>=12'}
  136. cpu: [arm64]
  137. os: [android]
  138. '@esbuild/android-arm@0.21.5':
  139. resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
  140. engines: {node: '>=12'}
  141. cpu: [arm]
  142. os: [android]
  143. '@esbuild/android-x64@0.21.5':
  144. resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
  145. engines: {node: '>=12'}
  146. cpu: [x64]
  147. os: [android]
  148. '@esbuild/darwin-arm64@0.21.5':
  149. resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
  150. engines: {node: '>=12'}
  151. cpu: [arm64]
  152. os: [darwin]
  153. '@esbuild/darwin-x64@0.21.5':
  154. resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
  155. engines: {node: '>=12'}
  156. cpu: [x64]
  157. os: [darwin]
  158. '@esbuild/freebsd-arm64@0.21.5':
  159. resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
  160. engines: {node: '>=12'}
  161. cpu: [arm64]
  162. os: [freebsd]
  163. '@esbuild/freebsd-x64@0.21.5':
  164. resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
  165. engines: {node: '>=12'}
  166. cpu: [x64]
  167. os: [freebsd]
  168. '@esbuild/linux-arm64@0.21.5':
  169. resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
  170. engines: {node: '>=12'}
  171. cpu: [arm64]
  172. os: [linux]
  173. '@esbuild/linux-arm@0.21.5':
  174. resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
  175. engines: {node: '>=12'}
  176. cpu: [arm]
  177. os: [linux]
  178. '@esbuild/linux-ia32@0.21.5':
  179. resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
  180. engines: {node: '>=12'}
  181. cpu: [ia32]
  182. os: [linux]
  183. '@esbuild/linux-loong64@0.21.5':
  184. resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
  185. engines: {node: '>=12'}
  186. cpu: [loong64]
  187. os: [linux]
  188. '@esbuild/linux-mips64el@0.21.5':
  189. resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
  190. engines: {node: '>=12'}
  191. cpu: [mips64el]
  192. os: [linux]
  193. '@esbuild/linux-ppc64@0.21.5':
  194. resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
  195. engines: {node: '>=12'}
  196. cpu: [ppc64]
  197. os: [linux]
  198. '@esbuild/linux-riscv64@0.21.5':
  199. resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
  200. engines: {node: '>=12'}
  201. cpu: [riscv64]
  202. os: [linux]
  203. '@esbuild/linux-s390x@0.21.5':
  204. resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
  205. engines: {node: '>=12'}
  206. cpu: [s390x]
  207. os: [linux]
  208. '@esbuild/linux-x64@0.21.5':
  209. resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
  210. engines: {node: '>=12'}
  211. cpu: [x64]
  212. os: [linux]
  213. '@esbuild/netbsd-x64@0.21.5':
  214. resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
  215. engines: {node: '>=12'}
  216. cpu: [x64]
  217. os: [netbsd]
  218. '@esbuild/openbsd-x64@0.21.5':
  219. resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
  220. engines: {node: '>=12'}
  221. cpu: [x64]
  222. os: [openbsd]
  223. '@esbuild/sunos-x64@0.21.5':
  224. resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
  225. engines: {node: '>=12'}
  226. cpu: [x64]
  227. os: [sunos]
  228. '@esbuild/win32-arm64@0.21.5':
  229. resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
  230. engines: {node: '>=12'}
  231. cpu: [arm64]
  232. os: [win32]
  233. '@esbuild/win32-ia32@0.21.5':
  234. resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
  235. engines: {node: '>=12'}
  236. cpu: [ia32]
  237. os: [win32]
  238. '@esbuild/win32-x64@0.21.5':
  239. resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
  240. engines: {node: '>=12'}
  241. cpu: [x64]
  242. os: [win32]
  243. '@floating-ui/core@1.6.8':
  244. resolution: {integrity: sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==}
  245. '@floating-ui/dom@1.6.12':
  246. resolution: {integrity: sha512-NP83c0HjokcGVEMeoStg317VD9W7eDlGK7457dMBANbKA6GJZdc7rjujdgqzTaz93jkGgc5P/jeWbaCHnMNc+w==}
  247. '@floating-ui/utils@0.2.8':
  248. resolution: {integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==}
  249. '@jridgewell/sourcemap-codec@1.5.0':
  250. resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
  251. '@nodelib/fs.scandir@2.1.5':
  252. resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
  253. engines: {node: '>= 8'}
  254. '@nodelib/fs.stat@2.0.5':
  255. resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
  256. engines: {node: '>= 8'}
  257. '@nodelib/fs.walk@1.2.8':
  258. resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
  259. engines: {node: '>= 8'}
  260. '@parcel/watcher-android-arm64@2.5.0':
  261. resolution: {integrity: sha512-qlX4eS28bUcQCdribHkg/herLe+0A9RyYC+mm2PXpncit8z5b3nSqGVzMNR3CmtAOgRutiZ02eIJJgP/b1iEFQ==}
  262. engines: {node: '>= 10.0.0'}
  263. cpu: [arm64]
  264. os: [android]
  265. '@parcel/watcher-darwin-arm64@2.5.0':
  266. resolution: {integrity: sha512-hyZ3TANnzGfLpRA2s/4U1kbw2ZI4qGxaRJbBH2DCSREFfubMswheh8TeiC1sGZ3z2jUf3s37P0BBlrD3sjVTUw==}
  267. engines: {node: '>= 10.0.0'}
  268. cpu: [arm64]
  269. os: [darwin]
  270. '@parcel/watcher-darwin-x64@2.5.0':
  271. resolution: {integrity: sha512-9rhlwd78saKf18fT869/poydQK8YqlU26TMiNg7AIu7eBp9adqbJZqmdFOsbZ5cnLp5XvRo9wcFmNHgHdWaGYA==}
  272. engines: {node: '>= 10.0.0'}
  273. cpu: [x64]
  274. os: [darwin]
  275. '@parcel/watcher-freebsd-x64@2.5.0':
  276. resolution: {integrity: sha512-syvfhZzyM8kErg3VF0xpV8dixJ+RzbUaaGaeb7uDuz0D3FK97/mZ5AJQ3XNnDsXX7KkFNtyQyFrXZzQIcN49Tw==}
  277. engines: {node: '>= 10.0.0'}
  278. cpu: [x64]
  279. os: [freebsd]
  280. '@parcel/watcher-linux-arm-glibc@2.5.0':
  281. resolution: {integrity: sha512-0VQY1K35DQET3dVYWpOaPFecqOT9dbuCfzjxoQyif1Wc574t3kOSkKevULddcR9znz1TcklCE7Ht6NIxjvTqLA==}
  282. engines: {node: '>= 10.0.0'}
  283. cpu: [arm]
  284. os: [linux]
  285. libc: [glibc]
  286. '@parcel/watcher-linux-arm-musl@2.5.0':
  287. resolution: {integrity: sha512-6uHywSIzz8+vi2lAzFeltnYbdHsDm3iIB57d4g5oaB9vKwjb6N6dRIgZMujw4nm5r6v9/BQH0noq6DzHrqr2pA==}
  288. engines: {node: '>= 10.0.0'}
  289. cpu: [arm]
  290. os: [linux]
  291. libc: [musl]
  292. '@parcel/watcher-linux-arm64-glibc@2.5.0':
  293. resolution: {integrity: sha512-BfNjXwZKxBy4WibDb/LDCriWSKLz+jJRL3cM/DllnHH5QUyoiUNEp3GmL80ZqxeumoADfCCP19+qiYiC8gUBjA==}
  294. engines: {node: '>= 10.0.0'}
  295. cpu: [arm64]
  296. os: [linux]
  297. libc: [glibc]
  298. '@parcel/watcher-linux-arm64-musl@2.5.0':
  299. resolution: {integrity: sha512-S1qARKOphxfiBEkwLUbHjCY9BWPdWnW9j7f7Hb2jPplu8UZ3nes7zpPOW9bkLbHRvWM0WDTsjdOTUgW0xLBN1Q==}
  300. engines: {node: '>= 10.0.0'}
  301. cpu: [arm64]
  302. os: [linux]
  303. libc: [musl]
  304. '@parcel/watcher-linux-x64-glibc@2.5.0':
  305. resolution: {integrity: sha512-d9AOkusyXARkFD66S6zlGXyzx5RvY+chTP9Jp0ypSTC9d4lzyRs9ovGf/80VCxjKddcUvnsGwCHWuF2EoPgWjw==}
  306. engines: {node: '>= 10.0.0'}
  307. cpu: [x64]
  308. os: [linux]
  309. libc: [glibc]
  310. '@parcel/watcher-linux-x64-musl@2.5.0':
  311. resolution: {integrity: sha512-iqOC+GoTDoFyk/VYSFHwjHhYrk8bljW6zOhPuhi5t9ulqiYq1togGJB5e3PwYVFFfeVgc6pbz3JdQyDoBszVaA==}
  312. engines: {node: '>= 10.0.0'}
  313. cpu: [x64]
  314. os: [linux]
  315. libc: [musl]
  316. '@parcel/watcher-win32-arm64@2.5.0':
  317. resolution: {integrity: sha512-twtft1d+JRNkM5YbmexfcH/N4znDtjgysFaV9zvZmmJezQsKpkfLYJ+JFV3uygugK6AtIM2oADPkB2AdhBrNig==}
  318. engines: {node: '>= 10.0.0'}
  319. cpu: [arm64]
  320. os: [win32]
  321. '@parcel/watcher-win32-ia32@2.5.0':
  322. resolution: {integrity: sha512-+rgpsNRKwo8A53elqbbHXdOMtY/tAtTzManTWShB5Kk54N8Q9mzNWV7tV+IbGueCbcj826MfWGU3mprWtuf1TA==}
  323. engines: {node: '>= 10.0.0'}
  324. cpu: [ia32]
  325. os: [win32]
  326. '@parcel/watcher-win32-x64@2.5.0':
  327. resolution: {integrity: sha512-lPrxve92zEHdgeff3aiu4gDOIt4u7sJYha6wbdEZDCDUhtjTsOMiaJzG5lMY4GkWH8p0fMmO2Ppq5G5XXG+DQw==}
  328. engines: {node: '>= 10.0.0'}
  329. cpu: [x64]
  330. os: [win32]
  331. '@parcel/watcher@2.5.0':
  332. resolution: {integrity: sha512-i0GV1yJnm2n3Yq1qw6QrUrd/LI9bE8WEBOTtOkpCXHHdyN3TAGgqAK/DAT05z4fq2x04cARXt2pDmjWjL92iTQ==}
  333. engines: {node: '>= 10.0.0'}
  334. '@pdf-lib/standard-fonts@1.0.0':
  335. resolution: {integrity: sha512-hU30BK9IUN/su0Mn9VdlVKsWBS6GyhVfqjwl1FjZN4TxP6cCw0jP2w7V3Hf5uX7M0AZJ16vey9yE0ny7Sa59ZA==}
  336. '@pdf-lib/upng@1.0.1':
  337. resolution: {integrity: sha512-dQK2FUMQtowVP00mtIksrlZhdFXQZPC+taih1q4CvPZ5vqdxR/LKBaFg0oAfzd1GlHZXXSPdQfzQnt+ViGvEIQ==}
  338. '@puppeteer/browsers@0.5.0':
  339. resolution: {integrity: sha512-Uw6oB7VvmPRLE4iKsjuOh8zgDabhNX67dzo8U/BB0f9527qx+4eeUs+korU98OhG5C4ubg7ufBgVi63XYwS6TQ==}
  340. engines: {node: '>=14.1.0'}
  341. hasBin: true
  342. peerDependencies:
  343. typescript: '>= 4.7.4'
  344. peerDependenciesMeta:
  345. typescript:
  346. optional: true
  347. '@rollup/plugin-commonjs@28.0.1':
  348. resolution: {integrity: sha512-+tNWdlWKbpB3WgBN7ijjYkq9X5uhjmcvyjEght4NmH5fAU++zfQzAJ6wumLS+dNcvwEZhKx2Z+skY8m7v0wGSA==}
  349. engines: {node: '>=16.0.0 || 14 >= 14.17'}
  350. peerDependencies:
  351. rollup: ^2.68.0||^3.0.0||^4.0.0
  352. peerDependenciesMeta:
  353. rollup:
  354. optional: true
  355. '@rollup/pluginutils@4.2.1':
  356. resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
  357. engines: {node: '>= 8.0.0'}
  358. '@rollup/pluginutils@5.1.3':
  359. resolution: {integrity: sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==}
  360. engines: {node: '>=14.0.0'}
  361. peerDependencies:
  362. rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
  363. peerDependenciesMeta:
  364. rollup:
  365. optional: true
  366. '@rollup/rollup-android-arm-eabi@4.27.3':
  367. resolution: {integrity: sha512-EzxVSkIvCFxUd4Mgm4xR9YXrcp976qVaHnqom/Tgm+vU79k4vV4eYTjmRvGfeoW8m9LVcsAy/lGjcgVegKEhLQ==}
  368. cpu: [arm]
  369. os: [android]
  370. '@rollup/rollup-android-arm64@4.27.3':
  371. resolution: {integrity: sha512-LJc5pDf1wjlt9o/Giaw9Ofl+k/vLUaYsE2zeQGH85giX2F+wn/Cg8b3c5CDP3qmVmeO5NzwVUzQQxwZvC2eQKw==}
  372. cpu: [arm64]
  373. os: [android]
  374. '@rollup/rollup-darwin-arm64@4.27.3':
  375. resolution: {integrity: sha512-OuRysZ1Mt7wpWJ+aYKblVbJWtVn3Cy52h8nLuNSzTqSesYw1EuN6wKp5NW/4eSre3mp12gqFRXOKTcN3AI3LqA==}
  376. cpu: [arm64]
  377. os: [darwin]
  378. '@rollup/rollup-darwin-x64@4.27.3':
  379. resolution: {integrity: sha512-xW//zjJMlJs2sOrCmXdB4d0uiilZsOdlGQIC/jjmMWT47lkLLoB1nsNhPUcnoqyi5YR6I4h+FjBpILxbEy8JRg==}
  380. cpu: [x64]
  381. os: [darwin]
  382. '@rollup/rollup-freebsd-arm64@4.27.3':
  383. resolution: {integrity: sha512-58E0tIcwZ+12nK1WiLzHOD8I0d0kdrY/+o7yFVPRHuVGY3twBwzwDdTIBGRxLmyjciMYl1B/U515GJy+yn46qw==}
  384. cpu: [arm64]
  385. os: [freebsd]
  386. '@rollup/rollup-freebsd-x64@4.27.3':
  387. resolution: {integrity: sha512-78fohrpcVwTLxg1ZzBMlwEimoAJmY6B+5TsyAZ3Vok7YabRBUvjYTsRXPTjGEvv/mfgVBepbW28OlMEz4w8wGA==}
  388. cpu: [x64]
  389. os: [freebsd]
  390. '@rollup/rollup-linux-arm-gnueabihf@4.27.3':
  391. resolution: {integrity: sha512-h2Ay79YFXyQi+QZKo3ISZDyKaVD7uUvukEHTOft7kh00WF9mxAaxZsNs3o/eukbeKuH35jBvQqrT61fzKfAB/Q==}
  392. cpu: [arm]
  393. os: [linux]
  394. libc: [glibc]
  395. '@rollup/rollup-linux-arm-musleabihf@4.27.3':
  396. resolution: {integrity: sha512-Sv2GWmrJfRY57urktVLQ0VKZjNZGogVtASAgosDZ1aUB+ykPxSi3X1nWORL5Jk0sTIIwQiPH7iE3BMi9zGWfkg==}
  397. cpu: [arm]
  398. os: [linux]
  399. libc: [musl]
  400. '@rollup/rollup-linux-arm64-gnu@4.27.3':
  401. resolution: {integrity: sha512-FPoJBLsPW2bDNWjSrwNuTPUt30VnfM8GPGRoLCYKZpPx0xiIEdFip3dH6CqgoT0RnoGXptaNziM0WlKgBc+OWQ==}
  402. cpu: [arm64]
  403. os: [linux]
  404. libc: [glibc]
  405. '@rollup/rollup-linux-arm64-musl@4.27.3':
  406. resolution: {integrity: sha512-TKxiOvBorYq4sUpA0JT+Fkh+l+G9DScnG5Dqx7wiiqVMiRSkzTclP35pE6eQQYjP4Gc8yEkJGea6rz4qyWhp3g==}
  407. cpu: [arm64]
  408. os: [linux]
  409. libc: [musl]
  410. '@rollup/rollup-linux-powerpc64le-gnu@4.27.3':
  411. resolution: {integrity: sha512-v2M/mPvVUKVOKITa0oCFksnQQ/TqGrT+yD0184/cWHIu0LoIuYHwox0Pm3ccXEz8cEQDLk6FPKd1CCm+PlsISw==}
  412. cpu: [ppc64]
  413. os: [linux]
  414. libc: [glibc]
  415. '@rollup/rollup-linux-riscv64-gnu@4.27.3':
  416. resolution: {integrity: sha512-LdrI4Yocb1a/tFVkzmOE5WyYRgEBOyEhWYJe4gsDWDiwnjYKjNs7PS6SGlTDB7maOHF4kxevsuNBl2iOcj3b4A==}
  417. cpu: [riscv64]
  418. os: [linux]
  419. libc: [glibc]
  420. '@rollup/rollup-linux-s390x-gnu@4.27.3':
  421. resolution: {integrity: sha512-d4wVu6SXij/jyiwPvI6C4KxdGzuZOvJ6y9VfrcleHTwo68fl8vZC5ZYHsCVPUi4tndCfMlFniWgwonQ5CUpQcA==}
  422. cpu: [s390x]
  423. os: [linux]
  424. libc: [glibc]
  425. '@rollup/rollup-linux-x64-gnu@4.27.3':
  426. resolution: {integrity: sha512-/6bn6pp1fsCGEY5n3yajmzZQAh+mW4QPItbiWxs69zskBzJuheb3tNynEjL+mKOsUSFK11X4LYF2BwwXnzWleA==}
  427. cpu: [x64]
  428. os: [linux]
  429. libc: [glibc]
  430. '@rollup/rollup-linux-x64-musl@4.27.3':
  431. resolution: {integrity: sha512-nBXOfJds8OzUT1qUreT/en3eyOXd2EH5b0wr2bVB5999qHdGKkzGzIyKYaKj02lXk6wpN71ltLIaQpu58YFBoQ==}
  432. cpu: [x64]
  433. os: [linux]
  434. libc: [musl]
  435. '@rollup/rollup-win32-arm64-msvc@4.27.3':
  436. resolution: {integrity: sha512-ogfbEVQgIZOz5WPWXF2HVb6En+kWzScuxJo/WdQTqEgeyGkaa2ui5sQav9Zkr7bnNCLK48uxmmK0TySm22eiuw==}
  437. cpu: [arm64]
  438. os: [win32]
  439. '@rollup/rollup-win32-ia32-msvc@4.27.3':
  440. resolution: {integrity: sha512-ecE36ZBMLINqiTtSNQ1vzWc5pXLQHlf/oqGp/bSbi7iedcjcNb6QbCBNG73Euyy2C+l/fn8qKWEwxr+0SSfs3w==}
  441. cpu: [ia32]
  442. os: [win32]
  443. '@rollup/rollup-win32-x64-msvc@4.27.3':
  444. resolution: {integrity: sha512-vliZLrDmYKyaUoMzEbMTg2JkerfBjn03KmAw9CykO0Zzkzoyd7o3iZNam/TpyWNjNT+Cz2iO3P9Smv2wgrR+Eg==}
  445. cpu: [x64]
  446. os: [win32]
  447. '@sxzz/popperjs-es@2.11.7':
  448. resolution: {integrity: sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==}
  449. '@transloadit/prettier-bytes@0.0.7':
  450. resolution: {integrity: sha512-VeJbUb0wEKbcwaSlj5n+LscBl9IPgLPkHVGBkh00cztv6X4L/TJXK58LzFuBKX7/GAfiGhIwH67YTLTlzvIzBA==}
  451. '@types/estree@1.0.6':
  452. resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
  453. '@types/event-emitter@0.3.5':
  454. resolution: {integrity: sha512-zx2/Gg0Eg7gwEiOIIh5w9TrhKKTeQh7CPCOPNc0el4pLSwzebA8SmnHwZs2dWlLONvyulykSwGSQxQHLhjGLvQ==}
  455. '@types/lodash-es@4.17.12':
  456. resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==}
  457. '@types/lodash@4.17.13':
  458. resolution: {integrity: sha512-lfx+dftrEZcdBPczf9d0Qv0x+j/rfNCMuC6OcfXmO8gkfeNAY88PgKUbvG56whcN23gc27yenwF6oJZXGFpYxg==}
  459. '@types/node@20.17.6':
  460. resolution: {integrity: sha512-VEI7OdvK2wP7XHnsuXbAJnEpEkF6NjSN45QJlL4VGqZSXsnicpesdTWsg9RISeSdYd3yeRj/y3k5KGjUXYnFwQ==}
  461. '@types/node@22.9.1':
  462. resolution: {integrity: sha512-p8Yy/8sw1caA8CdRIQBG5tiLHmxtQKObCijiAa9Ez+d4+PRffM4054xbju0msf+cvhJpnFEeNjxmVT/0ipktrg==}
  463. '@types/raf@3.4.3':
  464. resolution: {integrity: sha512-c4YAvMedbPZ5tEyxzQdMoOhhJ4RD3rngZIdwC2/qDN3d7JpEhB6fiBRKVY1lg5B7Wk+uPBjn5f39j1/2MY1oOw==}
  465. '@types/web-bluetooth@0.0.14':
  466. resolution: {integrity: sha512-5d2RhCard1nQUC3aHcq/gHzWYO6K0WJmAbjO7mQJgCQKtZpgXxv1rOM6O/dBDhDYYVutk1sciOgNSe+5YyfM8A==}
  467. '@types/web-bluetooth@0.0.16':
  468. resolution: {integrity: sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==}
  469. '@types/yauzl@2.10.3':
  470. resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==}
  471. '@uppy/companion-client@2.2.2':
  472. resolution: {integrity: sha512-5mTp2iq97/mYSisMaBtFRry6PTgZA6SIL7LePteOV5x0/DxKfrZW3DEiQERJmYpHzy7k8johpm2gHnEKto56Og==}
  473. '@uppy/core@2.3.4':
  474. resolution: {integrity: sha512-iWAqppC8FD8mMVqewavCz+TNaet6HPXitmGXpGGREGrakZ4FeuWytVdrelydzTdXx6vVKkOmI2FLztGg73sENQ==}
  475. '@uppy/store-default@2.1.1':
  476. resolution: {integrity: sha512-xnpTxvot2SeAwGwbvmJ899ASk5tYXhmZzD/aCFsXePh/v8rNvR2pKlcQUH7cF/y4baUGq3FHO/daKCok/mpKqQ==}
  477. '@uppy/utils@4.1.3':
  478. resolution: {integrity: sha512-nTuMvwWYobnJcytDO3t+D6IkVq/Qs4Xv3vyoEZ+Iaf8gegZP+rEyoaFT2CK5XLRMienPyqRqNbIfRuFaOWSIFw==}
  479. '@uppy/xhr-upload@2.1.3':
  480. resolution: {integrity: sha512-YWOQ6myBVPs+mhNjfdWsQyMRWUlrDLMoaG7nvf/G6Y3GKZf8AyjFDjvvJ49XWQ+DaZOftGkHmF1uh/DBeGivJQ==}
  481. peerDependencies:
  482. '@uppy/core': ^2.3.3
  483. '@vitejs/plugin-vue@5.2.0':
  484. resolution: {integrity: sha512-7n7KdUEtx/7Yl7I/WVAMZ1bEb0eVvXF3ummWTeLcs/9gvo9pJhuLdouSXGjdZ/MKD1acf1I272+X0RMua4/R3g==}
  485. engines: {node: ^18.0.0 || >=20.0.0}
  486. peerDependencies:
  487. vite: ^5.0.0
  488. vue: ^3.2.25
  489. '@vue/compiler-core@3.5.13':
  490. resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==}
  491. '@vue/compiler-dom@3.5.13':
  492. resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==}
  493. '@vue/compiler-sfc@3.5.13':
  494. resolution: {integrity: sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==}
  495. '@vue/compiler-ssr@3.5.13':
  496. resolution: {integrity: sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==}
  497. '@vue/devtools-api@6.6.4':
  498. resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
  499. '@vue/reactivity@3.5.13':
  500. resolution: {integrity: sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==}
  501. '@vue/runtime-core@3.5.13':
  502. resolution: {integrity: sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==}
  503. '@vue/runtime-dom@3.5.13':
  504. resolution: {integrity: sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==}
  505. '@vue/server-renderer@3.5.13':
  506. resolution: {integrity: sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==}
  507. peerDependencies:
  508. vue: 3.5.13
  509. '@vue/shared@3.5.13':
  510. resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==}
  511. '@vueuse/core@8.9.4':
  512. resolution: {integrity: sha512-B/Mdj9TK1peFyWaPof+Zf/mP9XuGAngaJZBwPaXBvU3aCTZlx3ltlrFFFyMV4iGBwsjSCeUCgZrtkEj9dS2Y3Q==}
  513. peerDependencies:
  514. '@vue/composition-api': ^1.1.0
  515. vue: ^2.6.0 || ^3.2.0
  516. peerDependenciesMeta:
  517. '@vue/composition-api':
  518. optional: true
  519. vue:
  520. optional: true
  521. '@vueuse/core@9.13.0':
  522. resolution: {integrity: sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==}
  523. '@vueuse/metadata@8.9.4':
  524. resolution: {integrity: sha512-IwSfzH80bnJMzqhaapqJl9JRIiyQU0zsRGEgnxN6jhq7992cPUJIRfV+JHRIZXjYqbwt07E1gTEp0R0zPJ1aqw==}
  525. '@vueuse/metadata@9.13.0':
  526. resolution: {integrity: sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==}
  527. '@vueuse/shared@8.9.4':
  528. resolution: {integrity: sha512-wt+T30c4K6dGRMVqPddexEVLa28YwxW5OFIPmzUHICjphfAuBFTTdDoyqREZNDOFJZ44ARH1WWQNCUK8koJ+Ag==}
  529. peerDependencies:
  530. '@vue/composition-api': ^1.1.0
  531. vue: ^2.6.0 || ^3.2.0
  532. peerDependenciesMeta:
  533. '@vue/composition-api':
  534. optional: true
  535. vue:
  536. optional: true
  537. '@vueuse/shared@9.13.0':
  538. resolution: {integrity: sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==}
  539. '@wangeditor/basic-modules@1.1.7':
  540. resolution: {integrity: sha512-cY9CPkLJaqF05STqfpZKWG4LpxTMeGSIIF1fHvfm/mz+JXatCagjdkbxdikOuKYlxDdeqvOeBmsUBItufDLXZg==}
  541. peerDependencies:
  542. '@wangeditor/core': 1.x
  543. dom7: ^3.0.0
  544. lodash.throttle: ^4.1.1
  545. nanoid: ^3.2.0
  546. slate: ^0.72.0
  547. snabbdom: ^3.1.0
  548. '@wangeditor/code-highlight@1.0.3':
  549. resolution: {integrity: sha512-iazHwO14XpCuIWJNTQTikqUhGKyqj+dUNWJ9288Oym9M2xMVHvnsOmDU2sgUDWVy+pOLojReMPgXCsvvNlOOhw==}
  550. peerDependencies:
  551. '@wangeditor/core': 1.x
  552. dom7: ^3.0.0
  553. slate: ^0.72.0
  554. snabbdom: ^3.1.0
  555. '@wangeditor/core@1.1.19':
  556. resolution: {integrity: sha512-KevkB47+7GhVszyYF2pKGKtCSj/YzmClsD03C3zTt+9SR2XWT5T0e3yQqg8baZpcMvkjs1D8Dv4fk8ok/UaS2Q==}
  557. peerDependencies:
  558. '@uppy/core': ^2.1.1
  559. '@uppy/xhr-upload': ^2.0.3
  560. dom7: ^3.0.0
  561. is-hotkey: ^0.2.0
  562. lodash.camelcase: ^4.3.0
  563. lodash.clonedeep: ^4.5.0
  564. lodash.debounce: ^4.0.8
  565. lodash.foreach: ^4.5.0
  566. lodash.isequal: ^4.5.0
  567. lodash.throttle: ^4.1.1
  568. lodash.toarray: ^4.4.0
  569. nanoid: ^3.2.0
  570. slate: ^0.72.0
  571. snabbdom: ^3.1.0
  572. '@wangeditor/editor-for-vue@5.1.12':
  573. resolution: {integrity: sha512-0Ds3D8I+xnpNWezAeO7HmPRgTfUxHLMd9JKcIw+QzvSmhC5xUHbpCcLU+KLmeBKTR/zffnS5GQo6qi3GhTMJWQ==}
  574. peerDependencies:
  575. '@wangeditor/editor': '>=5.1.0'
  576. vue: ^3.0.5
  577. '@wangeditor/editor@5.1.23':
  578. resolution: {integrity: sha512-0RxfeVTuK1tktUaPROnCoFfaHVJpRAIE2zdS0mpP+vq1axVQpLjM8+fCvKzqYIkH0Pg+C+44hJpe3VVroSkEuQ==}
  579. '@wangeditor/list-module@1.0.5':
  580. resolution: {integrity: sha512-uDuYTP6DVhcYf7mF1pTlmNn5jOb4QtcVhYwSSAkyg09zqxI1qBqsfUnveeDeDqIuptSJhkh81cyxi+MF8sEPOQ==}
  581. peerDependencies:
  582. '@wangeditor/core': 1.x
  583. dom7: ^3.0.0
  584. slate: ^0.72.0
  585. snabbdom: ^3.1.0
  586. '@wangeditor/table-module@1.1.4':
  587. resolution: {integrity: sha512-5saanU9xuEocxaemGdNi9t8MCDSucnykEC6jtuiT72kt+/Hhh4nERYx1J20OPsTCCdVr7hIyQenFD1iSRkIQ6w==}
  588. peerDependencies:
  589. '@wangeditor/core': 1.x
  590. dom7: ^3.0.0
  591. lodash.isequal: ^4.5.0
  592. lodash.throttle: ^4.1.1
  593. nanoid: ^3.2.0
  594. slate: ^0.72.0
  595. snabbdom: ^3.1.0
  596. '@wangeditor/upload-image-module@1.0.2':
  597. resolution: {integrity: sha512-z81lk/v71OwPDYeQDxj6cVr81aDP90aFuywb8nPD6eQeECtOymrqRODjpO6VGvCVxVck8nUxBHtbxKtjgcwyiA==}
  598. peerDependencies:
  599. '@uppy/core': ^2.0.3
  600. '@uppy/xhr-upload': ^2.0.3
  601. '@wangeditor/basic-modules': 1.x
  602. '@wangeditor/core': 1.x
  603. dom7: ^3.0.0
  604. lodash.foreach: ^4.5.0
  605. slate: ^0.72.0
  606. snabbdom: ^3.1.0
  607. '@wangeditor/video-module@1.1.4':
  608. resolution: {integrity: sha512-ZdodDPqKQrgx3IwWu4ZiQmXI8EXZ3hm2/fM6E3t5dB8tCaIGWQZhmqd6P5knfkRAd3z2+YRSRbxOGfoRSp/rLg==}
  609. peerDependencies:
  610. '@uppy/core': ^2.1.4
  611. '@uppy/xhr-upload': ^2.0.7
  612. '@wangeditor/core': 1.x
  613. dom7: ^3.0.0
  614. nanoid: ^3.2.0
  615. slate: ^0.72.0
  616. snabbdom: ^3.1.0
  617. '@webxrd/vite-plugin-svg@1.1.2':
  618. resolution: {integrity: sha512-nj/Z6rp0FdzYcUL6gRcfltfXDZJHkjijpg+F6tn8vM2Q2Lrk4P/DtODggFuduCHiI7Tynoav+jlPkMnljyMJrA==}
  619. acorn@8.14.0:
  620. resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
  621. engines: {node: '>=0.4.0'}
  622. hasBin: true
  623. address@1.2.2:
  624. resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==}
  625. engines: {node: '>= 10.0.0'}
  626. agent-base@6.0.2:
  627. resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
  628. engines: {node: '>= 6.0.0'}
  629. agentkeepalive@3.5.3:
  630. resolution: {integrity: sha512-yqXL+k5rr8+ZRpOAntkaaRgWgE5o8ESAj5DyRmVTCSoZxXmqemb9Dd7T4i5UzwuERdLAJUy6XzR9zFVuf0kzkw==}
  631. engines: {node: '>= 4.0.0'}
  632. ali-oss@6.21.0:
  633. resolution: {integrity: sha512-dRvKWO/GJEa6dlsCnvmgHIbU5+yE/SmZsE4kZRGNU7Uotr9uIkQWGqv4szLTxRSxWv3YgL+BZgt+swIgitYGjA==}
  634. engines: {node: '>=8'}
  635. ansi-regex@5.0.1:
  636. resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
  637. engines: {node: '>=8'}
  638. ansi-styles@4.3.0:
  639. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  640. engines: {node: '>=8'}
  641. any-promise@1.3.0:
  642. resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
  643. anymatch@3.1.3:
  644. resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
  645. engines: {node: '>= 8'}
  646. argparse@2.0.1:
  647. resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
  648. async-validator@4.2.5:
  649. resolution: {integrity: sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==}
  650. asynckit@0.4.0:
  651. resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
  652. atob@2.1.2:
  653. resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==}
  654. engines: {node: '>= 4.5.0'}
  655. hasBin: true
  656. axios@1.7.7:
  657. resolution: {integrity: sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==}
  658. balanced-match@1.0.2:
  659. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  660. base64-arraybuffer@1.0.2:
  661. resolution: {integrity: sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==}
  662. engines: {node: '>= 0.6.0'}
  663. base64-js@1.5.1:
  664. resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
  665. binary-extensions@2.3.0:
  666. resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
  667. engines: {node: '>=8'}
  668. bl@4.1.0:
  669. resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
  670. bowser@1.9.4:
  671. resolution: {integrity: sha512-9IdMmj2KjigRq6oWhmwv1W36pDuA4STQZ8q6YO9um+x07xgYNCD3Oou+WP/3L1HNz7iqythGet3/p4wvc8AAwQ==}
  672. brace-expansion@2.0.1:
  673. resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
  674. braces@3.0.3:
  675. resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
  676. engines: {node: '>=8'}
  677. btoa@1.2.1:
  678. resolution: {integrity: sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g==}
  679. engines: {node: '>= 0.4.0'}
  680. hasBin: true
  681. buffer-crc32@0.2.13:
  682. resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
  683. buffer@5.7.1:
  684. resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
  685. builtin-status-codes@3.0.0:
  686. resolution: {integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==}
  687. call-bind@1.0.7:
  688. resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
  689. engines: {node: '>= 0.4'}
  690. callsites@3.1.0:
  691. resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
  692. engines: {node: '>=6'}
  693. canvg@3.0.10:
  694. resolution: {integrity: sha512-qwR2FRNO9NlzTeKIPIKpnTY6fqwuYSequ8Ru8c0YkYU7U0oW+hLUvWadLvAu1Rl72OMNiFhoLu4f8eUjQ7l/+Q==}
  695. engines: {node: '>=10.0.0'}
  696. chokidar@3.6.0:
  697. resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
  698. engines: {node: '>= 8.10.0'}
  699. chokidar@4.0.1:
  700. resolution: {integrity: sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==}
  701. engines: {node: '>= 14.16.0'}
  702. chownr@1.1.4:
  703. resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
  704. chromium-bidi@0.4.7:
  705. resolution: {integrity: sha512-6+mJuFXwTMU6I3vYLs6IL8A1DyQTPjCfIL971X0aMPVGRbGnNfl6i6Cl0NMbxi2bRYLGESt9T2ZIMRM5PAEcIQ==}
  706. peerDependencies:
  707. devtools-protocol: '*'
  708. cliui@8.0.1:
  709. resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
  710. engines: {node: '>=12'}
  711. color-convert@2.0.1:
  712. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  713. engines: {node: '>=7.0.0'}
  714. color-name@1.1.4:
  715. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  716. combined-stream@1.0.8:
  717. resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
  718. engines: {node: '>= 0.8'}
  719. commondir@1.0.1:
  720. resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
  721. compute-scroll-into-view@1.0.20:
  722. resolution: {integrity: sha512-UCB0ioiyj8CRjtrvaceBLqqhZCVP+1B8+NWQhmdsm0VXOJtobBCf1dBQmebCCo34qZmUwZfIH2MZLqNHazrfjg==}
  723. content-type@1.0.5:
  724. resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
  725. engines: {node: '>= 0.6'}
  726. convertapi-js@1.1.9:
  727. resolution: {integrity: sha512-4Z6Zp7qm3j1V+u1EbH8U7d5jnPIAs1LAlzjlwgVB01bBW6bFJoMhHuzFVkhYVE28B+Bq0NGiNEEpB3JGnlOEbA==}
  728. copy-to@2.0.1:
  729. resolution: {integrity: sha512-3DdaFaU/Zf1AnpLiFDeNCD4TOWe3Zl2RZaTzUvWiIk5ERzcCodOE20Vqq4fzCbNoHURFHT4/us/Lfq+S2zyY4w==}
  730. core-js@3.39.0:
  731. resolution: {integrity: sha512-raM0ew0/jJUqkJ0E6e8UDtl+y/7ktFivgWvqw8dNSQeNWoSDLvQ1H/RN3aPXB9tBd4/FhyR4RDPGhsNIMsAn7g==}
  732. core-util-is@1.0.3:
  733. resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
  734. cors@2.8.5:
  735. resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==}
  736. engines: {node: '>= 0.10'}
  737. cosmiconfig@8.1.3:
  738. resolution: {integrity: sha512-/UkO2JKI18b5jVMJUp0lvKFMpa/Gye+ZgZjKD+DGEN9y7NRcf/nK1A0sp67ONmKtnDCNMS44E6jrk0Yc3bDuUw==}
  739. engines: {node: '>=14'}
  740. cross-fetch@3.1.5:
  741. resolution: {integrity: sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==}
  742. css-line-break@2.1.0:
  743. resolution: {integrity: sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==}
  744. cssesc@3.0.0:
  745. resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
  746. engines: {node: '>=4'}
  747. hasBin: true
  748. csstype@3.1.3:
  749. resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
  750. d@1.0.2:
  751. resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==}
  752. engines: {node: '>=0.12'}
  753. dateformat@2.2.0:
  754. resolution: {integrity: sha512-GODcnWq3YGoTnygPfi02ygEiRxqUxpJwuRHjdhJYuxpcZmDq4rjBiXYmbCCzStxo176ixfLT6i4NPwQooRySnw==}
  755. dayjs@1.11.13:
  756. resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
  757. debug@4.3.4:
  758. resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
  759. engines: {node: '>=6.0'}
  760. peerDependencies:
  761. supports-color: '*'
  762. peerDependenciesMeta:
  763. supports-color:
  764. optional: true
  765. debug@4.3.7:
  766. resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
  767. engines: {node: '>=6.0'}
  768. peerDependencies:
  769. supports-color: '*'
  770. peerDependenciesMeta:
  771. supports-color:
  772. optional: true
  773. default-user-agent@1.0.0:
  774. resolution: {integrity: sha512-bDF7bg6OSNcSwFWPu4zYKpVkJZQYVrAANMYB8bc9Szem1D0yKdm4sa/rOCs2aC9+2GMqQ7KnwtZRvDhmLF0dXw==}
  775. engines: {node: '>= 0.10.0'}
  776. define-data-property@1.1.4:
  777. resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
  778. engines: {node: '>= 0.4'}
  779. delayed-stream@1.0.0:
  780. resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
  781. engines: {node: '>=0.4.0'}
  782. destroy@1.2.0:
  783. resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
  784. engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
  785. detect-libc@1.0.3:
  786. resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==}
  787. engines: {node: '>=0.10'}
  788. hasBin: true
  789. devtools-protocol@0.0.1107588:
  790. resolution: {integrity: sha512-yIR+pG9x65Xko7bErCUSQaDLrO/P1p3JUzEk7JCU4DowPcGHkTGUGQapcfcLc4qj0UaALwZ+cr0riFgiqpixcg==}
  791. digest-header@1.1.0:
  792. resolution: {integrity: sha512-glXVh42vz40yZb9Cq2oMOt70FIoWiv+vxNvdKdU8CwjLad25qHM3trLxhl9bVjdr6WaslIXhWpn0NO8T/67Qjg==}
  793. engines: {node: '>= 8.0.0'}
  794. dom7@3.0.0:
  795. resolution: {integrity: sha512-oNlcUdHsC4zb7Msx7JN3K0Nro1dzJ48knvBOnDPKJ2GV9wl1i5vydJZUSyOfrkKFDZEud/jBsTk92S/VGSAe/g==}
  796. dompurify@2.5.7:
  797. resolution: {integrity: sha512-2q4bEI+coQM8f5ez7kt2xclg1XsecaV9ASJk/54vwlfRRNQfDqJz2pzQ8t0Ix/ToBpXlVjrRIx7pFC/o8itG2Q==}
  798. echarts@5.5.1:
  799. resolution: {integrity: sha512-Fce8upazaAXUVUVsjgV6mBnGuqgO+JNDlcgF79Dksy4+wgGpQB2lmYoO4TSweFg/mZITdpGHomw/cNBJZj1icA==}
  800. ee-first@1.1.1:
  801. resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
  802. element-plus@2.8.8:
  803. resolution: {integrity: sha512-MLAH1x2PGTnOT7Iwqh9ASgfZhvgqQqrdbxuJH0w2fGjzE4ZjryyLQj24HXoQO7Zon66U3lrYxbdLI57M6OX0qw==}
  804. peerDependencies:
  805. vue: ^3.2.0
  806. emoji-regex@8.0.0:
  807. resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
  808. end-of-stream@1.4.4:
  809. resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
  810. end-or-error@1.0.1:
  811. resolution: {integrity: sha512-OclLMSug+k2A0JKuf494im25ANRBVW8qsjmwbgX7lQ8P82H21PQ1PWkoYwb9y5yMBS69BPlwtzdIFClo3+7kOQ==}
  812. engines: {node: '>= 0.11.14'}
  813. entities@4.5.0:
  814. resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
  815. engines: {node: '>=0.12'}
  816. error-ex@1.3.2:
  817. resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
  818. es-define-property@1.0.0:
  819. resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
  820. engines: {node: '>= 0.4'}
  821. es-errors@1.3.0:
  822. resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
  823. engines: {node: '>= 0.4'}
  824. es-module-lexer@1.5.4:
  825. resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==}
  826. es5-ext@0.10.64:
  827. resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==}
  828. engines: {node: '>=0.10'}
  829. es6-iterator@2.0.3:
  830. resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==}
  831. es6-promise@4.2.8:
  832. resolution: {integrity: sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==}
  833. es6-symbol@3.1.4:
  834. resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==}
  835. engines: {node: '>=0.12'}
  836. esbuild@0.21.5:
  837. resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
  838. engines: {node: '>=12'}
  839. hasBin: true
  840. escalade@3.2.0:
  841. resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
  842. engines: {node: '>=6'}
  843. escape-html@1.0.3:
  844. resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
  845. esniff@2.0.1:
  846. resolution: {integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==}
  847. engines: {node: '>=0.10'}
  848. estree-walker@2.0.2:
  849. resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
  850. etag@1.8.1:
  851. resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
  852. engines: {node: '>= 0.6'}
  853. event-emitter@0.3.5:
  854. resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==}
  855. ext@1.7.0:
  856. resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==}
  857. extend-shallow@2.0.1:
  858. resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==}
  859. engines: {node: '>=0.10.0'}
  860. extract-zip@2.0.1:
  861. resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==}
  862. engines: {node: '>= 10.17.0'}
  863. hasBin: true
  864. fast-glob@3.3.2:
  865. resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
  866. engines: {node: '>=8.6.0'}
  867. fastq@1.17.1:
  868. resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
  869. fd-slicer@1.1.0:
  870. resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==}
  871. fdir@6.4.2:
  872. resolution: {integrity: sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==}
  873. peerDependencies:
  874. picomatch: ^3 || ^4
  875. peerDependenciesMeta:
  876. picomatch:
  877. optional: true
  878. fflate@0.8.2:
  879. resolution: {integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==}
  880. fill-range@7.1.1:
  881. resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
  882. engines: {node: '>=8'}
  883. follow-redirects@1.15.9:
  884. resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
  885. engines: {node: '>=4.0'}
  886. peerDependencies:
  887. debug: '*'
  888. peerDependenciesMeta:
  889. debug:
  890. optional: true
  891. font-family-papandreou@0.2.0-patch2:
  892. resolution: {integrity: sha512-l/YiRdBSH/eWv6OF3sLGkwErL+n0MqCICi9mppTZBOCL5vixWGDqCYvRcuxB2h7RGCTzaTKOHT2caHvCXQPRlw==}
  893. form-data@4.0.1:
  894. resolution: {integrity: sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==}
  895. engines: {node: '>= 6'}
  896. formstream@1.5.1:
  897. resolution: {integrity: sha512-q7ORzFqotpwn3Y/GBK2lK7PjtZZwJHz9QE9Phv8zb5IrL9ftGLyi2zjGURON3voK8TaZ+mqJKERYN4lrHYTkUQ==}
  898. fs-constants@1.0.0:
  899. resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
  900. fsevents@2.3.3:
  901. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  902. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  903. os: [darwin]
  904. function-bind@1.1.2:
  905. resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
  906. get-caller-file@2.0.5:
  907. resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
  908. engines: {node: 6.* || 8.* || >= 10.*}
  909. get-intrinsic@1.2.4:
  910. resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
  911. engines: {node: '>= 0.4'}
  912. get-ready@1.0.0:
  913. resolution: {integrity: sha512-mFXCZPJIlcYcth+N8267+mghfYN9h3EhsDa6JSnbA3Wrhh/XFpuowviFcsDeYZtKspQyWyJqfs4O6P8CHeTwzw==}
  914. get-stream@5.2.0:
  915. resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==}
  916. engines: {node: '>=8'}
  917. glob-parent@5.1.2:
  918. resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
  919. engines: {node: '>= 6'}
  920. gopd@1.0.1:
  921. resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
  922. has-property-descriptors@1.0.2:
  923. resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
  924. has-proto@1.0.3:
  925. resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
  926. engines: {node: '>= 0.4'}
  927. has-symbols@1.0.3:
  928. resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
  929. engines: {node: '>= 0.4'}
  930. hasown@2.0.2:
  931. resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
  932. engines: {node: '>= 0.4'}
  933. html-void-elements@2.0.1:
  934. resolution: {integrity: sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==}
  935. html2canvas@1.4.1:
  936. resolution: {integrity: sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==}
  937. engines: {node: '>=8.0.0'}
  938. html2pdf.js@0.10.2:
  939. resolution: {integrity: sha512-WyHVeMb18Bp7vYTmBv1GVsThH//K7SRfHdSdhHPkl4JvyQarNQXnailkYn0QUbRRmnN5rdbbmSIGEsPZtzPy2Q==}
  940. https-proxy-agent@5.0.1:
  941. resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
  942. engines: {node: '>= 6'}
  943. humanize-ms@1.2.1:
  944. resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==}
  945. i18next@20.6.1:
  946. resolution: {integrity: sha512-yCMYTMEJ9ihCwEQQ3phLo7I/Pwycf8uAx+sRHwwk5U9Aui/IZYgQRyMqXafQOw5QQ7DM1Z+WyEXWIqSuJHhG2A==}
  947. iconv-lite@0.6.3:
  948. resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
  949. engines: {node: '>=0.10.0'}
  950. ieee754@1.2.1:
  951. resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
  952. immer@9.0.21:
  953. resolution: {integrity: sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==}
  954. immutable@5.0.3:
  955. resolution: {integrity: sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==}
  956. import-fresh@3.3.0:
  957. resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
  958. engines: {node: '>=6'}
  959. inherits@2.0.4:
  960. resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
  961. is-arrayish@0.2.1:
  962. resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
  963. is-binary-path@2.1.0:
  964. resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
  965. engines: {node: '>=8'}
  966. is-class-hotfix@0.0.6:
  967. resolution: {integrity: sha512-0n+pzCC6ICtVr/WXnN2f03TK/3BfXY7me4cjCAqT8TYXEl0+JBRoqBo94JJHXcyDSLUeWbNX8Fvy5g5RJdAstQ==}
  968. is-core-module@2.15.1:
  969. resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==}
  970. engines: {node: '>= 0.4'}
  971. is-extendable@0.1.1:
  972. resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==}
  973. engines: {node: '>=0.10.0'}
  974. is-extglob@2.1.1:
  975. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  976. engines: {node: '>=0.10.0'}
  977. is-fullwidth-code-point@3.0.0:
  978. resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
  979. engines: {node: '>=8'}
  980. is-glob@4.0.3:
  981. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  982. engines: {node: '>=0.10.0'}
  983. is-hotkey@0.2.0:
  984. resolution: {integrity: sha512-UknnZK4RakDmTgz4PI1wIph5yxSs/mvChWs9ifnlXsKuXgWmOkY/hAE0H/k2MIqH0RlRye0i1oC07MCRSD28Mw==}
  985. is-number@7.0.0:
  986. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  987. engines: {node: '>=0.12.0'}
  988. is-plain-object@5.0.0:
  989. resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
  990. engines: {node: '>=0.10.0'}
  991. is-reference@1.2.1:
  992. resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
  993. is-type-of@1.4.0:
  994. resolution: {integrity: sha512-EddYllaovi5ysMLMEN7yzHEKh8A850cZ7pykrY1aNRQGn/CDjRDE9qEWbIdt7xGEVJmjBXzU/fNnC4ABTm8tEQ==}
  995. is-url@1.2.4:
  996. resolution: {integrity: sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==}
  997. isarray@1.0.0:
  998. resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
  999. isstream@0.1.2:
  1000. resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==}
  1001. js-base64@2.6.4:
  1002. resolution: {integrity: sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==}
  1003. js-tokens@4.0.0:
  1004. resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
  1005. js-yaml@4.1.0:
  1006. resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
  1007. hasBin: true
  1008. json-parse-even-better-errors@2.3.1:
  1009. resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
  1010. jspdf@2.5.2:
  1011. resolution: {integrity: sha512-myeX9c+p7znDWPk0eTrujCzNjT+CXdXyk7YmJq5nD5V7uLLKmSXnlQ/Jn/kuo3X09Op70Apm0rQSnFWyGK8uEQ==}
  1012. jstoxml@2.2.9:
  1013. resolution: {integrity: sha512-OYWlK0j+roh+eyaMROlNbS5cd5R25Y+IUpdl7cNdB8HNrkgwQzIS7L9MegxOiWNBj9dQhA/yAxiMwCC5mwNoBw==}
  1014. lines-and-columns@1.2.4:
  1015. resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
  1016. local-pkg@0.4.3:
  1017. resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==}
  1018. engines: {node: '>=14'}
  1019. lodash-es@4.17.21:
  1020. resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==}
  1021. lodash-unified@1.0.3:
  1022. resolution: {integrity: sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==}
  1023. peerDependencies:
  1024. '@types/lodash-es': '*'
  1025. lodash: '*'
  1026. lodash-es: '*'
  1027. lodash.camelcase@4.3.0:
  1028. resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==}
  1029. lodash.clonedeep@4.5.0:
  1030. resolution: {integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==}
  1031. lodash.debounce@4.0.8:
  1032. resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
  1033. lodash.foreach@4.5.0:
  1034. resolution: {integrity: sha512-aEXTF4d+m05rVOAUG3z4vZZ4xVexLKZGF0lIxuHZ1Hplpk/3B6Z1+/ICICYRLm7c41Z2xiejbkCkJoTlypoXhQ==}
  1035. lodash.isequal@4.5.0:
  1036. resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==}
  1037. lodash.throttle@4.1.1:
  1038. resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==}
  1039. lodash.toarray@4.4.0:
  1040. resolution: {integrity: sha512-QyffEA3i5dma5q2490+SgCvDN0pXLmRGSyAANuVi0HQ01Pkfr9fuoKQW8wm1wGBnJITs/mS7wQvS6VshUEBFCw==}
  1041. lodash@4.17.21:
  1042. resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
  1043. magic-string@0.26.7:
  1044. resolution: {integrity: sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==}
  1045. engines: {node: '>=12'}
  1046. magic-string@0.30.13:
  1047. resolution: {integrity: sha512-8rYBO+MsWkgjDSOvLomYnzhdwEG51olQ4zL5KXnNJWV5MNmrb4rTZdrtkhxjnD/QyZUqR/Z/XDsUs/4ej2nx0g==}
  1048. memoize-one@6.0.0:
  1049. resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==}
  1050. merge-descriptors@1.0.3:
  1051. resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==}
  1052. merge2@1.4.1:
  1053. resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
  1054. engines: {node: '>= 8'}
  1055. micromatch@4.0.8:
  1056. resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
  1057. engines: {node: '>=8.6'}
  1058. mime-db@1.52.0:
  1059. resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
  1060. engines: {node: '>= 0.6'}
  1061. mime-match@1.0.2:
  1062. resolution: {integrity: sha512-VXp/ugGDVh3eCLOBCiHZMYWQaTNUHv2IJrut+yXA6+JbLPXHglHwfS/5A5L0ll+jkCY7fIzRJcH6OIunF+c6Cg==}
  1063. mime-types@2.1.35:
  1064. resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
  1065. engines: {node: '>= 0.6'}
  1066. mime@2.6.0:
  1067. resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==}
  1068. engines: {node: '>=4.0.0'}
  1069. hasBin: true
  1070. minimatch@5.1.6:
  1071. resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
  1072. engines: {node: '>=10'}
  1073. minimist@1.2.8:
  1074. resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
  1075. mitt@3.0.0:
  1076. resolution: {integrity: sha512-7dX2/10ITVyqh4aOSVI9gdape+t9l2/8QxHrFmUXu4EEUpdlxl6RudZUPZoc+zuY2hk1j7XxVroIVIan/pD/SQ==}
  1077. mkdirp-classic@0.5.3:
  1078. resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
  1079. mkdirp@0.5.6:
  1080. resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
  1081. hasBin: true
  1082. ms@2.1.2:
  1083. resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
  1084. ms@2.1.3:
  1085. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  1086. mz@2.7.0:
  1087. resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
  1088. namespace-emitter@2.0.1:
  1089. resolution: {integrity: sha512-N/sMKHniSDJBjfrkbS/tpkPj4RAbvW3mr8UAzvlMHyun93XEm83IAvhWtJVHo+RHn/oO8Job5YN4b+wRjSVp5g==}
  1090. nanoid@3.3.7:
  1091. resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
  1092. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  1093. hasBin: true
  1094. neo-async@2.6.2:
  1095. resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
  1096. next-tick@1.1.0:
  1097. resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==}
  1098. node-addon-api@7.1.1:
  1099. resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
  1100. node-fetch@2.6.7:
  1101. resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==}
  1102. engines: {node: 4.x || >=6.0.0}
  1103. peerDependencies:
  1104. encoding: ^0.1.0
  1105. peerDependenciesMeta:
  1106. encoding:
  1107. optional: true
  1108. node-hex@1.0.1:
  1109. resolution: {integrity: sha512-iwpZdvW6Umz12ICmu9IYPRxg0tOLGmU3Tq2tKetejCj3oZd7b2nUXwP3a7QA5M9glWy8wlPS1G3RwM/CdsUbdQ==}
  1110. engines: {node: '>=8.0.0'}
  1111. normalize-path@3.0.0:
  1112. resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
  1113. engines: {node: '>=0.10.0'}
  1114. normalize-wheel-es@1.2.0:
  1115. resolution: {integrity: sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==}
  1116. normalize.css@8.0.1:
  1117. resolution: {integrity: sha512-qizSNPO93t1YUuUhP22btGOo3chcvDFqFaj2TRybP0DMxkHOCTYwp3n34fel4a31ORXy4m1Xq0Gyqpb5m33qIg==}
  1118. nprogress@0.2.0:
  1119. resolution: {integrity: sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==}
  1120. object-assign@4.1.1:
  1121. resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
  1122. engines: {node: '>=0.10.0'}
  1123. object-inspect@1.13.3:
  1124. resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==}
  1125. engines: {node: '>= 0.4'}
  1126. once@1.4.0:
  1127. resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
  1128. os-name@1.0.3:
  1129. resolution: {integrity: sha512-f5estLO2KN8vgtTRaILIgEGBoBrMnZ3JQ7W9TMZCnOIGwHe8TRGSpcagnWDo+Dfhd/z08k9Xe75hvciJJ8Qaew==}
  1130. engines: {node: '>=0.10.0'}
  1131. hasBin: true
  1132. osx-release@1.1.0:
  1133. resolution: {integrity: sha512-ixCMMwnVxyHFQLQnINhmIpWqXIfS2YOXchwQrk+OFzmo6nDjQ0E4KXAyyUh0T0MZgV4bUhkRrAbVqlE4yLVq4A==}
  1134. engines: {node: '>=0.10.0'}
  1135. hasBin: true
  1136. pako@1.0.11:
  1137. resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==}
  1138. parent-module@1.0.1:
  1139. resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
  1140. engines: {node: '>=6'}
  1141. parse-json@5.2.0:
  1142. resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
  1143. engines: {node: '>=8'}
  1144. path-parse@1.0.7:
  1145. resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
  1146. path-type@4.0.0:
  1147. resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
  1148. engines: {node: '>=8'}
  1149. pause-stream@0.0.11:
  1150. resolution: {integrity: sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==}
  1151. pdf-lib@1.17.1:
  1152. resolution: {integrity: sha512-V/mpyJAoTsN4cnP31vc0wfNA1+p20evqqnap0KLoRUN0Yk/p3wN52DOEsL4oBFcLdb76hlpKPtzJIgo67j/XLw==}
  1153. pend@1.2.0:
  1154. resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==}
  1155. performance-now@2.1.0:
  1156. resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==}
  1157. picocolors@1.1.1:
  1158. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  1159. picomatch@2.3.1:
  1160. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  1161. engines: {node: '>=8.6'}
  1162. picomatch@4.0.2:
  1163. resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
  1164. engines: {node: '>=12'}
  1165. platform@1.3.6:
  1166. resolution: {integrity: sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==}
  1167. postcss@8.4.49:
  1168. resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==}
  1169. engines: {node: ^10 || ^12 || >=14}
  1170. preact@10.24.3:
  1171. resolution: {integrity: sha512-Z2dPnBnMUfyQfSQ+GBdsGa16hz35YmLmtTLhM169uW944hYL6xzTYkJjC07j+Wosz733pMWx0fgON3JNw1jJQA==}
  1172. prismjs@1.29.0:
  1173. resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==}
  1174. engines: {node: '>=6'}
  1175. process-nextick-args@2.0.1:
  1176. resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
  1177. progress@2.0.3:
  1178. resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==}
  1179. engines: {node: '>=0.4.0'}
  1180. proxy-from-env@1.1.0:
  1181. resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
  1182. pump@3.0.2:
  1183. resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==}
  1184. puppeteer-core@19.11.1:
  1185. resolution: {integrity: sha512-qcuC2Uf0Fwdj9wNtaTZ2OvYRraXpAK+puwwVW8ofOhOgLPZyz1c68tsorfIZyCUOpyBisjr+xByu7BMbEYMepA==}
  1186. engines: {node: '>=14.14.0'}
  1187. peerDependencies:
  1188. typescript: '>= 4.7.4'
  1189. peerDependenciesMeta:
  1190. typescript:
  1191. optional: true
  1192. puppeteer@19.11.1:
  1193. resolution: {integrity: sha512-39olGaX2djYUdhaQQHDZ0T0GwEp+5f9UB9HmEP0qHfdQHIq0xGQZuAZ5TLnJIc/88SrPLpEflPC+xUqOTv3c5g==}
  1194. deprecated: < 22.8.2 is no longer supported
  1195. qs@6.13.1:
  1196. resolution: {integrity: sha512-EJPeIn0CYrGu+hli1xilKAPXODtJ12T0sP63Ijx2/khC2JtuaN3JyNIpvmnkmaEtha9ocbG4A4cMcr+TvqvwQg==}
  1197. engines: {node: '>=0.6'}
  1198. queue-microtask@1.2.3:
  1199. resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
  1200. raf@3.4.1:
  1201. resolution: {integrity: sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==}
  1202. readable-stream@2.3.8:
  1203. resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
  1204. readable-stream@3.6.2:
  1205. resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
  1206. engines: {node: '>= 6'}
  1207. readdirp@3.6.0:
  1208. resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
  1209. engines: {node: '>=8.10.0'}
  1210. readdirp@4.0.2:
  1211. resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==}
  1212. engines: {node: '>= 14.16.0'}
  1213. regenerator-runtime@0.13.11:
  1214. resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
  1215. regenerator-runtime@0.14.1:
  1216. resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
  1217. require-directory@2.1.1:
  1218. resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
  1219. engines: {node: '>=0.10.0'}
  1220. resolve-from@4.0.0:
  1221. resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
  1222. engines: {node: '>=4'}
  1223. resolve@1.22.8:
  1224. resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
  1225. hasBin: true
  1226. reusify@1.0.4:
  1227. resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
  1228. engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
  1229. rgbcolor@1.0.1:
  1230. resolution: {integrity: sha512-9aZLIrhRaD97sgVhtJOW6ckOEh6/GnvQtdVNfdZ6s67+3/XwLS9lBcQYzEEhYVeUowN7pRzMLsyGhK2i/xvWbw==}
  1231. engines: {node: '>= 0.8.15'}
  1232. rollup@4.27.3:
  1233. resolution: {integrity: sha512-SLsCOnlmGt9VoZ9Ek8yBK8tAdmPHeppkw+Xa7yDlCEhDTvwYei03JlWo1fdc7YTfLZ4tD8riJCUyAgTbszk1fQ==}
  1234. engines: {node: '>=18.0.0', npm: '>=8.0.0'}
  1235. hasBin: true
  1236. run-parallel@1.2.0:
  1237. resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
  1238. safe-buffer@5.1.2:
  1239. resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
  1240. safe-buffer@5.2.1:
  1241. resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
  1242. safer-buffer@2.1.2:
  1243. resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
  1244. sass-loader@16.0.3:
  1245. resolution: {integrity: sha512-gosNorT1RCkuCMyihv6FBRR7BMV06oKRAs+l4UMp1mlcVg9rWN6KMmUj3igjQwmYys4mDP3etEYJgiHRbgHCHA==}
  1246. engines: {node: '>= 18.12.0'}
  1247. peerDependencies:
  1248. '@rspack/core': 0.x || 1.x
  1249. node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
  1250. sass: ^1.3.0
  1251. sass-embedded: '*'
  1252. webpack: ^5.0.0
  1253. peerDependenciesMeta:
  1254. '@rspack/core':
  1255. optional: true
  1256. node-sass:
  1257. optional: true
  1258. sass:
  1259. optional: true
  1260. sass-embedded:
  1261. optional: true
  1262. webpack:
  1263. optional: true
  1264. sass@1.81.0:
  1265. resolution: {integrity: sha512-Q4fOxRfhmv3sqCLoGfvrC9pRV8btc0UtqL9mN6Yrv6Qi9ScL55CVH1vlPP863ISLEEMNLLuu9P+enCeGHlnzhA==}
  1266. engines: {node: '>=14.0.0'}
  1267. hasBin: true
  1268. sax@1.4.1:
  1269. resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==}
  1270. scroll-into-view-if-needed@2.2.31:
  1271. resolution: {integrity: sha512-dGCXy99wZQivjmjIqihaBQNjryrz5rueJY7eHfTdyWEiR4ttYpsajb14rn9s5d4DY4EcY6+4+U/maARBXJedkA==}
  1272. sdk-base@2.0.1:
  1273. resolution: {integrity: sha512-eeG26wRwhtwYuKGCDM3LixCaxY27Pa/5lK4rLKhQa7HBjJ3U3Y+f81MMZQRsDw/8SC2Dao/83yJTXJ8aULuN8Q==}
  1274. semver@5.7.2:
  1275. resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
  1276. hasBin: true
  1277. set-function-length@1.2.2:
  1278. resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
  1279. engines: {node: '>= 0.4'}
  1280. side-channel@1.0.6:
  1281. resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
  1282. engines: {node: '>= 0.4'}
  1283. slate-history@0.66.0:
  1284. resolution: {integrity: sha512-6MWpxGQZiMvSINlCbMW43E2YBSVMCMCIwQfBzGssjWw4kb0qfvj0pIdblWNRQZD0hR6WHP+dHHgGSeVdMWzfng==}
  1285. peerDependencies:
  1286. slate: '>=0.65.3'
  1287. slate@0.72.8:
  1288. resolution: {integrity: sha512-/nJwTswQgnRurpK+bGJFH1oM7naD5qDmHd89JyiKNT2oOKD8marW0QSBtuFnwEbL5aGCS8AmrhXQgNOsn4osAw==}
  1289. snabbdom@3.6.2:
  1290. resolution: {integrity: sha512-ig5qOnCDbugFntKi6c7Xlib8bA6xiJVk8O+WdFrV3wxbMqeHO0hXFQC4nAhPVWfZfi8255lcZkNhtIBINCc4+Q==}
  1291. engines: {node: '>=12.17.0'}
  1292. source-map-js@1.2.1:
  1293. resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  1294. engines: {node: '>=0.10.0'}
  1295. sourcemap-codec@1.4.8:
  1296. resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==}
  1297. deprecated: Please use @jridgewell/sourcemap-codec instead
  1298. specificity@0.4.1:
  1299. resolution: {integrity: sha512-1klA3Gi5PD1Wv9Q0wUoOQN1IWAuPu0D1U03ThXTr0cJ20+/iq2tHSDnK7Kk/0LXJ1ztUB2/1Os0wKmfyNgUQfg==}
  1300. hasBin: true
  1301. ssr-window@3.0.0:
  1302. resolution: {integrity: sha512-q+8UfWDg9Itrg0yWK7oe5p/XRCJpJF9OBtXfOPgSJl+u3Xd5KI328RUEvUqSMVM9CiQUEf1QdBzJMkYGErj9QA==}
  1303. stackblur-canvas@2.7.0:
  1304. resolution: {integrity: sha512-yf7OENo23AGJhBriGx0QivY5JP6Y1HbrrDI6WLt6C5auYZXlQrheoY8hD4ibekFKz1HOfE48Ww8kMWMnJD/zcQ==}
  1305. engines: {node: '>=0.1.14'}
  1306. statuses@1.5.0:
  1307. resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==}
  1308. engines: {node: '>= 0.6'}
  1309. stream-http@2.8.2:
  1310. resolution: {integrity: sha512-QllfrBhqF1DPcz46WxKTs6Mz1Bpc+8Qm6vbqOpVav5odAXwbyzwnEczoWqtxrsmlO+cJqtPrp/8gWKWjaKLLlA==}
  1311. stream-wormhole@1.1.0:
  1312. resolution: {integrity: sha512-gHFfL3px0Kctd6Po0M8TzEvt3De/xu6cnRrjlfYNhwbhLPLwigI2t1nc6jrzNuaYg5C4YF78PPFuQPzRiqn9ew==}
  1313. engines: {node: '>=4.0.0'}
  1314. string-width@4.2.3:
  1315. resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
  1316. engines: {node: '>=8'}
  1317. string_decoder@1.1.1:
  1318. resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
  1319. string_decoder@1.3.0:
  1320. resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
  1321. strip-ansi@6.0.1:
  1322. resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
  1323. engines: {node: '>=8'}
  1324. supports-preserve-symlinks-flag@1.0.0:
  1325. resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
  1326. engines: {node: '>= 0.4'}
  1327. svg-pathdata@6.0.3:
  1328. resolution: {integrity: sha512-qsjeeq5YjBZ5eMdFuUa4ZosMLxgr5RZ+F+Y1OrDhuOCEInRMA3x74XdBtggJcj9kOeInz0WE+LgCPDkZFlBYJw==}
  1329. engines: {node: '>=12.0.0'}
  1330. svg2pdf.js@2.2.4:
  1331. resolution: {integrity: sha512-ujf+KqVpwAk/MPpTQqv4psV5eVLX/SoIJVHqe2ZhcqZfLd4DF48TzJBC95dVyoZSLqGbXp+GnfwotvCsJwrXXQ==}
  1332. peerDependencies:
  1333. jspdf: ^2.0.0
  1334. svgpath@2.6.0:
  1335. resolution: {integrity: sha512-OIWR6bKzXvdXYyO4DK/UWa1VA1JeKq8E+0ug2DG98Y/vOmMpfZNj+TIG988HjfYSqtcy/hFOtZq/n/j5GSESNg==}
  1336. tar-fs@2.1.1:
  1337. resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==}
  1338. tar-stream@2.2.0:
  1339. resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
  1340. engines: {node: '>=6'}
  1341. text-segmentation@1.0.3:
  1342. resolution: {integrity: sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==}
  1343. thenify-all@1.6.0:
  1344. resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
  1345. engines: {node: '>=0.8'}
  1346. thenify@3.3.1:
  1347. resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
  1348. through@2.3.8:
  1349. resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
  1350. tiny-warning@1.0.3:
  1351. resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==}
  1352. to-arraybuffer@1.0.1:
  1353. resolution: {integrity: sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==}
  1354. to-regex-range@5.0.1:
  1355. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  1356. engines: {node: '>=8.0'}
  1357. tr46@0.0.3:
  1358. resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
  1359. tslib@1.14.1:
  1360. resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
  1361. tslib@2.3.0:
  1362. resolution: {integrity: sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==}
  1363. type@2.7.3:
  1364. resolution: {integrity: sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==}
  1365. unbzip2-stream@1.4.3:
  1366. resolution: {integrity: sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==}
  1367. undici-types@6.19.8:
  1368. resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==}
  1369. unescape@1.0.1:
  1370. resolution: {integrity: sha512-O0+af1Gs50lyH1nUu3ZyYS1cRh01Q/kUKatTOkSs7jukXE6/NebucDVxyiDsA9AQ4JC1V1jUH9EO8JX2nMDgGQ==}
  1371. engines: {node: '>=0.10.0'}
  1372. unplugin-auto-import@0.6.9:
  1373. resolution: {integrity: sha512-IqgT7AoRrNQwNhiF/wDH3sMEDX8SqCYBEgJzwdg5441b5aiC5VwZz0J0wYqkaKu89YkZE9DG6rQ2JpFfZv1iiQ==}
  1374. engines: {node: '>=14'}
  1375. peerDependencies:
  1376. '@vueuse/core': '*'
  1377. peerDependenciesMeta:
  1378. '@vueuse/core':
  1379. optional: true
  1380. unplugin-vue-components@0.18.5:
  1381. resolution: {integrity: sha512-VPA6z/4pcKRDYtWu1H+FIpV0MADlFKG3q7YMVFzNFC3EhMVZ4WuBJ76490oKyauguNw1T1obLCuxNU9JzJ0oAQ==}
  1382. engines: {node: '>=14'}
  1383. peerDependencies:
  1384. '@babel/parser': ^7.15.8
  1385. '@babel/traverse': ^7.15.4
  1386. vue: 2 || 3
  1387. peerDependenciesMeta:
  1388. '@babel/parser':
  1389. optional: true
  1390. '@babel/traverse':
  1391. optional: true
  1392. unplugin@0.4.0:
  1393. resolution: {integrity: sha512-4ScITEmzlz1iZW3tkz+3L1V5k/xMQ6kjgm4lEXKxH0ozd8/OUWfiSA7RMRyrawsvq/t50JIzPpp1UyuSL/AXkA==}
  1394. peerDependencies:
  1395. esbuild: '>=0.13'
  1396. rollup: ^2.50.0
  1397. vite: ^2.3.0
  1398. webpack: 4 || 5
  1399. peerDependenciesMeta:
  1400. esbuild:
  1401. optional: true
  1402. rollup:
  1403. optional: true
  1404. vite:
  1405. optional: true
  1406. webpack:
  1407. optional: true
  1408. urllib@2.44.0:
  1409. resolution: {integrity: sha512-zRCJqdfYllRDA9bXUtx+vccyRqtJPKsw85f44zH7zPD28PIvjMqIgw9VwoTLV7xTBWZsbebUFVHU5ghQcWku2A==}
  1410. engines: {node: '>= 0.10.0'}
  1411. peerDependencies:
  1412. proxy-agent: ^5.0.0
  1413. peerDependenciesMeta:
  1414. proxy-agent:
  1415. optional: true
  1416. util-deprecate@1.0.2:
  1417. resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
  1418. utility@1.18.0:
  1419. resolution: {integrity: sha512-PYxZDA+6QtvRvm//++aGdmKG/cI07jNwbROz0Ql+VzFV1+Z0Dy55NI4zZ7RHc9KKpBePNFwoErqIuqQv/cjiTA==}
  1420. engines: {node: '>= 0.12.0'}
  1421. utrie@1.0.2:
  1422. resolution: {integrity: sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw==}
  1423. vary@1.1.2:
  1424. resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
  1425. engines: {node: '>= 0.8'}
  1426. vite-plugin-commonjs@0.10.3:
  1427. resolution: {integrity: sha512-trtH4dfAqrbqwiUhSKcqrfjnlXnqLHdIbYuUy943y34JnDjIX8qlpExP0nFN+kE2s6/BS6r9d1cAHS0KtiF4yQ==}
  1428. vite-plugin-dynamic-import@1.6.0:
  1429. resolution: {integrity: sha512-TM0sz70wfzTIo9YCxVFwS8OA9lNREsh+0vMHGSkWDTZ7bgd1Yjs5RV8EgB634l/91IsXJReg0xtmuQqP0mf+rg==}
  1430. vite@5.4.11:
  1431. resolution: {integrity: sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==}
  1432. engines: {node: ^18.0.0 || >=20.0.0}
  1433. hasBin: true
  1434. peerDependencies:
  1435. '@types/node': ^18.0.0 || >=20.0.0
  1436. less: '*'
  1437. lightningcss: ^1.21.0
  1438. sass: '*'
  1439. sass-embedded: '*'
  1440. stylus: '*'
  1441. sugarss: '*'
  1442. terser: ^5.4.0
  1443. peerDependenciesMeta:
  1444. '@types/node':
  1445. optional: true
  1446. less:
  1447. optional: true
  1448. lightningcss:
  1449. optional: true
  1450. sass:
  1451. optional: true
  1452. sass-embedded:
  1453. optional: true
  1454. stylus:
  1455. optional: true
  1456. sugarss:
  1457. optional: true
  1458. terser:
  1459. optional: true
  1460. vue-demi@0.14.10:
  1461. resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==}
  1462. engines: {node: '>=12'}
  1463. hasBin: true
  1464. peerDependencies:
  1465. '@vue/composition-api': ^1.0.0-rc.1
  1466. vue: ^3.0.0-0 || ^2.6.0
  1467. peerDependenciesMeta:
  1468. '@vue/composition-api':
  1469. optional: true
  1470. vue-router@4.4.5:
  1471. resolution: {integrity: sha512-4fKZygS8cH1yCyuabAXGUAsyi1b2/o/OKgu/RUb+znIYOxPRxdkytJEx+0wGcpBE1pX6vUgh5jwWOKRGvuA/7Q==}
  1472. peerDependencies:
  1473. vue: ^3.2.0
  1474. vue@3.5.13:
  1475. resolution: {integrity: sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==}
  1476. peerDependencies:
  1477. typescript: '*'
  1478. peerDependenciesMeta:
  1479. typescript:
  1480. optional: true
  1481. vuex@4.1.0:
  1482. resolution: {integrity: sha512-hmV6UerDrPcgbSy9ORAtNXDr9M4wlNP4pEFKye4ujJF8oqgFFuxDCdOLS3eNoRTtq5O3hoBDh9Doj1bQMYHRbQ==}
  1483. peerDependencies:
  1484. vue: ^3.2.0
  1485. webidl-conversions@3.0.1:
  1486. resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
  1487. webpack-virtual-modules@0.4.6:
  1488. resolution: {integrity: sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==}
  1489. whatwg-url@5.0.0:
  1490. resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
  1491. wildcard@1.1.2:
  1492. resolution: {integrity: sha512-DXukZJxpHA8LuotRwL0pP1+rS6CS7FF2qStDDE1C7DDg2rLud2PXRMuEDYIPhgEezwnlHNL4c+N6MfMTjCGTng==}
  1493. win-release@1.1.1:
  1494. resolution: {integrity: sha512-iCRnKVvGxOQdsKhcQId2PXV1vV3J/sDPXKA4Oe9+Eti2nb2ESEsYHRYls/UjoUW3bIc5ZDO8dTH50A/5iVN+bw==}
  1495. engines: {node: '>=0.10.0'}
  1496. wrap-ansi@7.0.0:
  1497. resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
  1498. engines: {node: '>=10'}
  1499. wrappy@1.0.2:
  1500. resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
  1501. ws@8.13.0:
  1502. resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==}
  1503. engines: {node: '>=10.0.0'}
  1504. peerDependencies:
  1505. bufferutil: ^4.0.1
  1506. utf-8-validate: '>=5.0.2'
  1507. peerDependenciesMeta:
  1508. bufferutil:
  1509. optional: true
  1510. utf-8-validate:
  1511. optional: true
  1512. xml2js@0.6.2:
  1513. resolution: {integrity: sha512-T4rieHaC1EXcES0Kxxj4JWgaUQHDk+qwHcYOCFHfiwKz7tOVPLq7Hjq9dM1WCMhylqMEfP7hMcOIChvotiZegA==}
  1514. engines: {node: '>=4.0.0'}
  1515. xmlbuilder@11.0.1:
  1516. resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==}
  1517. engines: {node: '>=4.0'}
  1518. xtend@4.0.2:
  1519. resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
  1520. engines: {node: '>=0.4'}
  1521. y18n@5.0.8:
  1522. resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
  1523. engines: {node: '>=10'}
  1524. yargs-parser@21.1.1:
  1525. resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
  1526. engines: {node: '>=12'}
  1527. yargs@17.7.1:
  1528. resolution: {integrity: sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==}
  1529. engines: {node: '>=12'}
  1530. yauzl@2.10.0:
  1531. resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==}
  1532. zrender@5.6.0:
  1533. resolution: {integrity: sha512-uzgraf4njmmHAbEUxMJ8Oxg+P3fT04O+9p7gY+wJRVxo8Ge+KmYv0WJev945EH4wFuc4OY2NLXz46FZrWS9xJg==}
  1534. snapshots:
  1535. '@antfu/utils@0.5.2': {}
  1536. '@babel/code-frame@7.26.2':
  1537. dependencies:
  1538. '@babel/helper-validator-identifier': 7.25.9
  1539. js-tokens: 4.0.0
  1540. picocolors: 1.1.1
  1541. '@babel/helper-string-parser@7.25.9': {}
  1542. '@babel/helper-validator-identifier@7.25.9': {}
  1543. '@babel/parser@7.26.2':
  1544. dependencies:
  1545. '@babel/types': 7.26.0
  1546. '@babel/runtime@7.26.0':
  1547. dependencies:
  1548. regenerator-runtime: 0.14.1
  1549. '@babel/types@7.26.0':
  1550. dependencies:
  1551. '@babel/helper-string-parser': 7.25.9
  1552. '@babel/helper-validator-identifier': 7.25.9
  1553. '@ctrl/tinycolor@3.6.1': {}
  1554. '@element-plus/icons-vue@2.3.1(vue@3.5.13)':
  1555. dependencies:
  1556. vue: 3.5.13
  1557. '@element-plus/icons@0.0.11': {}
  1558. '@esbuild/aix-ppc64@0.21.5':
  1559. optional: true
  1560. '@esbuild/android-arm64@0.21.5':
  1561. optional: true
  1562. '@esbuild/android-arm@0.21.5':
  1563. optional: true
  1564. '@esbuild/android-x64@0.21.5':
  1565. optional: true
  1566. '@esbuild/darwin-arm64@0.21.5':
  1567. optional: true
  1568. '@esbuild/darwin-x64@0.21.5':
  1569. optional: true
  1570. '@esbuild/freebsd-arm64@0.21.5':
  1571. optional: true
  1572. '@esbuild/freebsd-x64@0.21.5':
  1573. optional: true
  1574. '@esbuild/linux-arm64@0.21.5':
  1575. optional: true
  1576. '@esbuild/linux-arm@0.21.5':
  1577. optional: true
  1578. '@esbuild/linux-ia32@0.21.5':
  1579. optional: true
  1580. '@esbuild/linux-loong64@0.21.5':
  1581. optional: true
  1582. '@esbuild/linux-mips64el@0.21.5':
  1583. optional: true
  1584. '@esbuild/linux-ppc64@0.21.5':
  1585. optional: true
  1586. '@esbuild/linux-riscv64@0.21.5':
  1587. optional: true
  1588. '@esbuild/linux-s390x@0.21.5':
  1589. optional: true
  1590. '@esbuild/linux-x64@0.21.5':
  1591. optional: true
  1592. '@esbuild/netbsd-x64@0.21.5':
  1593. optional: true
  1594. '@esbuild/openbsd-x64@0.21.5':
  1595. optional: true
  1596. '@esbuild/sunos-x64@0.21.5':
  1597. optional: true
  1598. '@esbuild/win32-arm64@0.21.5':
  1599. optional: true
  1600. '@esbuild/win32-ia32@0.21.5':
  1601. optional: true
  1602. '@esbuild/win32-x64@0.21.5':
  1603. optional: true
  1604. '@floating-ui/core@1.6.8':
  1605. dependencies:
  1606. '@floating-ui/utils': 0.2.8
  1607. '@floating-ui/dom@1.6.12':
  1608. dependencies:
  1609. '@floating-ui/core': 1.6.8
  1610. '@floating-ui/utils': 0.2.8
  1611. '@floating-ui/utils@0.2.8': {}
  1612. '@jridgewell/sourcemap-codec@1.5.0': {}
  1613. '@nodelib/fs.scandir@2.1.5':
  1614. dependencies:
  1615. '@nodelib/fs.stat': 2.0.5
  1616. run-parallel: 1.2.0
  1617. '@nodelib/fs.stat@2.0.5': {}
  1618. '@nodelib/fs.walk@1.2.8':
  1619. dependencies:
  1620. '@nodelib/fs.scandir': 2.1.5
  1621. fastq: 1.17.1
  1622. '@parcel/watcher-android-arm64@2.5.0':
  1623. optional: true
  1624. '@parcel/watcher-darwin-arm64@2.5.0':
  1625. optional: true
  1626. '@parcel/watcher-darwin-x64@2.5.0':
  1627. optional: true
  1628. '@parcel/watcher-freebsd-x64@2.5.0':
  1629. optional: true
  1630. '@parcel/watcher-linux-arm-glibc@2.5.0':
  1631. optional: true
  1632. '@parcel/watcher-linux-arm-musl@2.5.0':
  1633. optional: true
  1634. '@parcel/watcher-linux-arm64-glibc@2.5.0':
  1635. optional: true
  1636. '@parcel/watcher-linux-arm64-musl@2.5.0':
  1637. optional: true
  1638. '@parcel/watcher-linux-x64-glibc@2.5.0':
  1639. optional: true
  1640. '@parcel/watcher-linux-x64-musl@2.5.0':
  1641. optional: true
  1642. '@parcel/watcher-win32-arm64@2.5.0':
  1643. optional: true
  1644. '@parcel/watcher-win32-ia32@2.5.0':
  1645. optional: true
  1646. '@parcel/watcher-win32-x64@2.5.0':
  1647. optional: true
  1648. '@parcel/watcher@2.5.0':
  1649. dependencies:
  1650. detect-libc: 1.0.3
  1651. is-glob: 4.0.3
  1652. micromatch: 4.0.8
  1653. node-addon-api: 7.1.1
  1654. optionalDependencies:
  1655. '@parcel/watcher-android-arm64': 2.5.0
  1656. '@parcel/watcher-darwin-arm64': 2.5.0
  1657. '@parcel/watcher-darwin-x64': 2.5.0
  1658. '@parcel/watcher-freebsd-x64': 2.5.0
  1659. '@parcel/watcher-linux-arm-glibc': 2.5.0
  1660. '@parcel/watcher-linux-arm-musl': 2.5.0
  1661. '@parcel/watcher-linux-arm64-glibc': 2.5.0
  1662. '@parcel/watcher-linux-arm64-musl': 2.5.0
  1663. '@parcel/watcher-linux-x64-glibc': 2.5.0
  1664. '@parcel/watcher-linux-x64-musl': 2.5.0
  1665. '@parcel/watcher-win32-arm64': 2.5.0
  1666. '@parcel/watcher-win32-ia32': 2.5.0
  1667. '@parcel/watcher-win32-x64': 2.5.0
  1668. optional: true
  1669. '@pdf-lib/standard-fonts@1.0.0':
  1670. dependencies:
  1671. pako: 1.0.11
  1672. '@pdf-lib/upng@1.0.1':
  1673. dependencies:
  1674. pako: 1.0.11
  1675. '@puppeteer/browsers@0.5.0':
  1676. dependencies:
  1677. debug: 4.3.4
  1678. extract-zip: 2.0.1
  1679. https-proxy-agent: 5.0.1
  1680. progress: 2.0.3
  1681. proxy-from-env: 1.1.0
  1682. tar-fs: 2.1.1
  1683. unbzip2-stream: 1.4.3
  1684. yargs: 17.7.1
  1685. transitivePeerDependencies:
  1686. - supports-color
  1687. '@rollup/plugin-commonjs@28.0.1':
  1688. dependencies:
  1689. '@rollup/pluginutils': 5.1.3
  1690. commondir: 1.0.1
  1691. estree-walker: 2.0.2
  1692. fdir: 6.4.2(picomatch@4.0.2)
  1693. is-reference: 1.2.1
  1694. magic-string: 0.30.13
  1695. picomatch: 4.0.2
  1696. '@rollup/pluginutils@4.2.1':
  1697. dependencies:
  1698. estree-walker: 2.0.2
  1699. picomatch: 2.3.1
  1700. '@rollup/pluginutils@5.1.3':
  1701. dependencies:
  1702. '@types/estree': 1.0.6
  1703. estree-walker: 2.0.2
  1704. picomatch: 4.0.2
  1705. '@rollup/rollup-android-arm-eabi@4.27.3':
  1706. optional: true
  1707. '@rollup/rollup-android-arm64@4.27.3':
  1708. optional: true
  1709. '@rollup/rollup-darwin-arm64@4.27.3':
  1710. optional: true
  1711. '@rollup/rollup-darwin-x64@4.27.3':
  1712. optional: true
  1713. '@rollup/rollup-freebsd-arm64@4.27.3':
  1714. optional: true
  1715. '@rollup/rollup-freebsd-x64@4.27.3':
  1716. optional: true
  1717. '@rollup/rollup-linux-arm-gnueabihf@4.27.3':
  1718. optional: true
  1719. '@rollup/rollup-linux-arm-musleabihf@4.27.3':
  1720. optional: true
  1721. '@rollup/rollup-linux-arm64-gnu@4.27.3':
  1722. optional: true
  1723. '@rollup/rollup-linux-arm64-musl@4.27.3':
  1724. optional: true
  1725. '@rollup/rollup-linux-powerpc64le-gnu@4.27.3':
  1726. optional: true
  1727. '@rollup/rollup-linux-riscv64-gnu@4.27.3':
  1728. optional: true
  1729. '@rollup/rollup-linux-s390x-gnu@4.27.3':
  1730. optional: true
  1731. '@rollup/rollup-linux-x64-gnu@4.27.3':
  1732. optional: true
  1733. '@rollup/rollup-linux-x64-musl@4.27.3':
  1734. optional: true
  1735. '@rollup/rollup-win32-arm64-msvc@4.27.3':
  1736. optional: true
  1737. '@rollup/rollup-win32-ia32-msvc@4.27.3':
  1738. optional: true
  1739. '@rollup/rollup-win32-x64-msvc@4.27.3':
  1740. optional: true
  1741. '@sxzz/popperjs-es@2.11.7': {}
  1742. '@transloadit/prettier-bytes@0.0.7': {}
  1743. '@types/estree@1.0.6': {}
  1744. '@types/event-emitter@0.3.5': {}
  1745. '@types/lodash-es@4.17.12':
  1746. dependencies:
  1747. '@types/lodash': 4.17.13
  1748. '@types/lodash@4.17.13': {}
  1749. '@types/node@20.17.6':
  1750. dependencies:
  1751. undici-types: 6.19.8
  1752. '@types/node@22.9.1':
  1753. dependencies:
  1754. undici-types: 6.19.8
  1755. optional: true
  1756. '@types/raf@3.4.3':
  1757. optional: true
  1758. '@types/web-bluetooth@0.0.14': {}
  1759. '@types/web-bluetooth@0.0.16': {}
  1760. '@types/yauzl@2.10.3':
  1761. dependencies:
  1762. '@types/node': 22.9.1
  1763. optional: true
  1764. '@uppy/companion-client@2.2.2':
  1765. dependencies:
  1766. '@uppy/utils': 4.1.3
  1767. namespace-emitter: 2.0.1
  1768. '@uppy/core@2.3.4':
  1769. dependencies:
  1770. '@transloadit/prettier-bytes': 0.0.7
  1771. '@uppy/store-default': 2.1.1
  1772. '@uppy/utils': 4.1.3
  1773. lodash.throttle: 4.1.1
  1774. mime-match: 1.0.2
  1775. namespace-emitter: 2.0.1
  1776. nanoid: 3.3.7
  1777. preact: 10.24.3
  1778. '@uppy/store-default@2.1.1': {}
  1779. '@uppy/utils@4.1.3':
  1780. dependencies:
  1781. lodash.throttle: 4.1.1
  1782. '@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4)':
  1783. dependencies:
  1784. '@uppy/companion-client': 2.2.2
  1785. '@uppy/core': 2.3.4
  1786. '@uppy/utils': 4.1.3
  1787. nanoid: 3.3.7
  1788. '@vitejs/plugin-vue@5.2.0(vite@5.4.11(@types/node@22.9.1)(sass@1.81.0))(vue@3.5.13)':
  1789. dependencies:
  1790. vite: 5.4.11(@types/node@22.9.1)(sass@1.81.0)
  1791. vue: 3.5.13
  1792. '@vue/compiler-core@3.5.13':
  1793. dependencies:
  1794. '@babel/parser': 7.26.2
  1795. '@vue/shared': 3.5.13
  1796. entities: 4.5.0
  1797. estree-walker: 2.0.2
  1798. source-map-js: 1.2.1
  1799. '@vue/compiler-dom@3.5.13':
  1800. dependencies:
  1801. '@vue/compiler-core': 3.5.13
  1802. '@vue/shared': 3.5.13
  1803. '@vue/compiler-sfc@3.5.13':
  1804. dependencies:
  1805. '@babel/parser': 7.26.2
  1806. '@vue/compiler-core': 3.5.13
  1807. '@vue/compiler-dom': 3.5.13
  1808. '@vue/compiler-ssr': 3.5.13
  1809. '@vue/shared': 3.5.13
  1810. estree-walker: 2.0.2
  1811. magic-string: 0.30.13
  1812. postcss: 8.4.49
  1813. source-map-js: 1.2.1
  1814. '@vue/compiler-ssr@3.5.13':
  1815. dependencies:
  1816. '@vue/compiler-dom': 3.5.13
  1817. '@vue/shared': 3.5.13
  1818. '@vue/devtools-api@6.6.4': {}
  1819. '@vue/reactivity@3.5.13':
  1820. dependencies:
  1821. '@vue/shared': 3.5.13
  1822. '@vue/runtime-core@3.5.13':
  1823. dependencies:
  1824. '@vue/reactivity': 3.5.13
  1825. '@vue/shared': 3.5.13
  1826. '@vue/runtime-dom@3.5.13':
  1827. dependencies:
  1828. '@vue/reactivity': 3.5.13
  1829. '@vue/runtime-core': 3.5.13
  1830. '@vue/shared': 3.5.13
  1831. csstype: 3.1.3
  1832. '@vue/server-renderer@3.5.13(vue@3.5.13)':
  1833. dependencies:
  1834. '@vue/compiler-ssr': 3.5.13
  1835. '@vue/shared': 3.5.13
  1836. vue: 3.5.13
  1837. '@vue/shared@3.5.13': {}
  1838. '@vueuse/core@8.9.4(vue@3.5.13)':
  1839. dependencies:
  1840. '@types/web-bluetooth': 0.0.14
  1841. '@vueuse/metadata': 8.9.4
  1842. '@vueuse/shared': 8.9.4(vue@3.5.13)
  1843. vue-demi: 0.14.10(vue@3.5.13)
  1844. optionalDependencies:
  1845. vue: 3.5.13
  1846. '@vueuse/core@9.13.0(vue@3.5.13)':
  1847. dependencies:
  1848. '@types/web-bluetooth': 0.0.16
  1849. '@vueuse/metadata': 9.13.0
  1850. '@vueuse/shared': 9.13.0(vue@3.5.13)
  1851. vue-demi: 0.14.10(vue@3.5.13)
  1852. transitivePeerDependencies:
  1853. - '@vue/composition-api'
  1854. - vue
  1855. '@vueuse/metadata@8.9.4': {}
  1856. '@vueuse/metadata@9.13.0': {}
  1857. '@vueuse/shared@8.9.4(vue@3.5.13)':
  1858. dependencies:
  1859. vue-demi: 0.14.10(vue@3.5.13)
  1860. optionalDependencies:
  1861. vue: 3.5.13
  1862. '@vueuse/shared@9.13.0(vue@3.5.13)':
  1863. dependencies:
  1864. vue-demi: 0.14.10(vue@3.5.13)
  1865. transitivePeerDependencies:
  1866. - '@vue/composition-api'
  1867. - vue
  1868. '@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.6.2))(dom7@3.0.0)(lodash.throttle@4.1.1)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.6.2)':
  1869. dependencies:
  1870. '@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.6.2)
  1871. dom7: 3.0.0
  1872. is-url: 1.2.4
  1873. lodash.throttle: 4.1.1
  1874. nanoid: 3.3.7
  1875. slate: 0.72.8
  1876. snabbdom: 3.6.2
  1877. '@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.6.2))(dom7@3.0.0)(slate@0.72.8)(snabbdom@3.6.2)':
  1878. dependencies:
  1879. '@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.6.2)
  1880. dom7: 3.0.0
  1881. prismjs: 1.29.0
  1882. slate: 0.72.8
  1883. snabbdom: 3.6.2
  1884. '@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.6.2)':
  1885. dependencies:
  1886. '@types/event-emitter': 0.3.5
  1887. '@uppy/core': 2.3.4
  1888. '@uppy/xhr-upload': 2.1.3(@uppy/core@2.3.4)
  1889. dom7: 3.0.0
  1890. event-emitter: 0.3.5
  1891. html-void-elements: 2.0.1
  1892. i18next: 20.6.1
  1893. is-hotkey: 0.2.0
  1894. lodash.camelcase: 4.3.0
  1895. lodash.clonedeep: 4.5.0
  1896. lodash.debounce: 4.0.8
  1897. lodash.foreach: 4.5.0
  1898. lodash.isequal: 4.5.0
  1899. lodash.throttle: 4.1.1
  1900. lodash.toarray: 4.4.0
  1901. nanoid: 3.3.7
  1902. scroll-into-view-if-needed: 2.2.31
  1903. slate: 0.72.8
  1904. slate-history: 0.66.0(slate@0.72.8)
  1905. snabbdom: 3.6.2
  1906. '@wangeditor/editor-for-vue@5.1.12(@wangeditor/editor@5.1.23)(vue@3.5.13)':
  1907. dependencies:
  1908. '@wangeditor/editor': 5.1.23
  1909. vue: 3.5.13
  1910. '@wangeditor/editor@5.1.23':
  1911. dependencies:
  1912. '@uppy/core': 2.3.4
  1913. '@uppy/xhr-upload': 2.1.3(@uppy/core@2.3.4)
  1914. '@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.6.2))(dom7@3.0.0)(lodash.throttle@4.1.1)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.6.2)
  1915. '@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.6.2))(dom7@3.0.0)(slate@0.72.8)(snabbdom@3.6.2)
  1916. '@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.6.2)
  1917. '@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.6.2))(dom7@3.0.0)(slate@0.72.8)(snabbdom@3.6.2)
  1918. '@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.6.2))(dom7@3.0.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.6.2)
  1919. '@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.6.2))(dom7@3.0.0)(lodash.throttle@4.1.1)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.6.2))(@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.6.2))(dom7@3.0.0)(lodash.foreach@4.5.0)(slate@0.72.8)(snabbdom@3.6.2)
  1920. '@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.6.2))(dom7@3.0.0)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.6.2)
  1921. dom7: 3.0.0
  1922. is-hotkey: 0.2.0
  1923. lodash.camelcase: 4.3.0
  1924. lodash.clonedeep: 4.5.0
  1925. lodash.debounce: 4.0.8
  1926. lodash.foreach: 4.5.0
  1927. lodash.isequal: 4.5.0
  1928. lodash.throttle: 4.1.1
  1929. lodash.toarray: 4.4.0
  1930. nanoid: 3.3.7
  1931. slate: 0.72.8
  1932. snabbdom: 3.6.2
  1933. '@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.6.2))(dom7@3.0.0)(slate@0.72.8)(snabbdom@3.6.2)':
  1934. dependencies:
  1935. '@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.6.2)
  1936. dom7: 3.0.0
  1937. slate: 0.72.8
  1938. snabbdom: 3.6.2
  1939. '@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.6.2))(dom7@3.0.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.6.2)':
  1940. dependencies:
  1941. '@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.6.2)
  1942. dom7: 3.0.0
  1943. lodash.isequal: 4.5.0
  1944. lodash.throttle: 4.1.1
  1945. nanoid: 3.3.7
  1946. slate: 0.72.8
  1947. snabbdom: 3.6.2
  1948. '@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.6.2))(dom7@3.0.0)(lodash.throttle@4.1.1)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.6.2))(@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.6.2))(dom7@3.0.0)(lodash.foreach@4.5.0)(slate@0.72.8)(snabbdom@3.6.2)':
  1949. dependencies:
  1950. '@uppy/core': 2.3.4
  1951. '@uppy/xhr-upload': 2.1.3(@uppy/core@2.3.4)
  1952. '@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.6.2))(dom7@3.0.0)(lodash.throttle@4.1.1)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.6.2)
  1953. '@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.6.2)
  1954. dom7: 3.0.0
  1955. lodash.foreach: 4.5.0
  1956. slate: 0.72.8
  1957. snabbdom: 3.6.2
  1958. '@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.6.2))(dom7@3.0.0)(nanoid@3.3.7)(slate@0.72.8)(snabbdom@3.6.2)':
  1959. dependencies:
  1960. '@uppy/core': 2.3.4
  1961. '@uppy/xhr-upload': 2.1.3(@uppy/core@2.3.4)
  1962. '@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.6.2)
  1963. dom7: 3.0.0
  1964. nanoid: 3.3.7
  1965. slate: 0.72.8
  1966. snabbdom: 3.6.2
  1967. '@webxrd/vite-plugin-svg@1.1.2':
  1968. dependencies:
  1969. '@types/node': 20.17.6
  1970. cors: 2.8.5
  1971. etag: 1.8.1
  1972. fast-glob: 3.3.2
  1973. acorn@8.14.0: {}
  1974. address@1.2.2: {}
  1975. agent-base@6.0.2:
  1976. dependencies:
  1977. debug: 4.3.7
  1978. transitivePeerDependencies:
  1979. - supports-color
  1980. agentkeepalive@3.5.3:
  1981. dependencies:
  1982. humanize-ms: 1.2.1
  1983. ali-oss@6.21.0:
  1984. dependencies:
  1985. address: 1.2.2
  1986. agentkeepalive: 3.5.3
  1987. bowser: 1.9.4
  1988. copy-to: 2.0.1
  1989. dateformat: 2.2.0
  1990. debug: 4.3.7
  1991. destroy: 1.2.0
  1992. end-or-error: 1.0.1
  1993. get-ready: 1.0.0
  1994. humanize-ms: 1.2.1
  1995. is-type-of: 1.4.0
  1996. js-base64: 2.6.4
  1997. jstoxml: 2.2.9
  1998. lodash: 4.17.21
  1999. merge-descriptors: 1.0.3
  2000. mime: 2.6.0
  2001. platform: 1.3.6
  2002. pump: 3.0.2
  2003. qs: 6.13.1
  2004. sdk-base: 2.0.1
  2005. stream-http: 2.8.2
  2006. stream-wormhole: 1.1.0
  2007. urllib: 2.44.0
  2008. utility: 1.18.0
  2009. xml2js: 0.6.2
  2010. transitivePeerDependencies:
  2011. - proxy-agent
  2012. - supports-color
  2013. ansi-regex@5.0.1: {}
  2014. ansi-styles@4.3.0:
  2015. dependencies:
  2016. color-convert: 2.0.1
  2017. any-promise@1.3.0: {}
  2018. anymatch@3.1.3:
  2019. dependencies:
  2020. normalize-path: 3.0.0
  2021. picomatch: 2.3.1
  2022. argparse@2.0.1: {}
  2023. async-validator@4.2.5: {}
  2024. asynckit@0.4.0: {}
  2025. atob@2.1.2: {}
  2026. axios@1.7.7:
  2027. dependencies:
  2028. follow-redirects: 1.15.9
  2029. form-data: 4.0.1
  2030. proxy-from-env: 1.1.0
  2031. transitivePeerDependencies:
  2032. - debug
  2033. balanced-match@1.0.2: {}
  2034. base64-arraybuffer@1.0.2: {}
  2035. base64-js@1.5.1: {}
  2036. binary-extensions@2.3.0: {}
  2037. bl@4.1.0:
  2038. dependencies:
  2039. buffer: 5.7.1
  2040. inherits: 2.0.4
  2041. readable-stream: 3.6.2
  2042. bowser@1.9.4: {}
  2043. brace-expansion@2.0.1:
  2044. dependencies:
  2045. balanced-match: 1.0.2
  2046. braces@3.0.3:
  2047. dependencies:
  2048. fill-range: 7.1.1
  2049. btoa@1.2.1: {}
  2050. buffer-crc32@0.2.13: {}
  2051. buffer@5.7.1:
  2052. dependencies:
  2053. base64-js: 1.5.1
  2054. ieee754: 1.2.1
  2055. builtin-status-codes@3.0.0: {}
  2056. call-bind@1.0.7:
  2057. dependencies:
  2058. es-define-property: 1.0.0
  2059. es-errors: 1.3.0
  2060. function-bind: 1.1.2
  2061. get-intrinsic: 1.2.4
  2062. set-function-length: 1.2.2
  2063. callsites@3.1.0: {}
  2064. canvg@3.0.10:
  2065. dependencies:
  2066. '@babel/runtime': 7.26.0
  2067. '@types/raf': 3.4.3
  2068. core-js: 3.39.0
  2069. raf: 3.4.1
  2070. regenerator-runtime: 0.13.11
  2071. rgbcolor: 1.0.1
  2072. stackblur-canvas: 2.7.0
  2073. svg-pathdata: 6.0.3
  2074. optional: true
  2075. chokidar@3.6.0:
  2076. dependencies:
  2077. anymatch: 3.1.3
  2078. braces: 3.0.3
  2079. glob-parent: 5.1.2
  2080. is-binary-path: 2.1.0
  2081. is-glob: 4.0.3
  2082. normalize-path: 3.0.0
  2083. readdirp: 3.6.0
  2084. optionalDependencies:
  2085. fsevents: 2.3.3
  2086. chokidar@4.0.1:
  2087. dependencies:
  2088. readdirp: 4.0.2
  2089. chownr@1.1.4: {}
  2090. chromium-bidi@0.4.7(devtools-protocol@0.0.1107588):
  2091. dependencies:
  2092. devtools-protocol: 0.0.1107588
  2093. mitt: 3.0.0
  2094. cliui@8.0.1:
  2095. dependencies:
  2096. string-width: 4.2.3
  2097. strip-ansi: 6.0.1
  2098. wrap-ansi: 7.0.0
  2099. color-convert@2.0.1:
  2100. dependencies:
  2101. color-name: 1.1.4
  2102. color-name@1.1.4: {}
  2103. combined-stream@1.0.8:
  2104. dependencies:
  2105. delayed-stream: 1.0.0
  2106. commondir@1.0.1: {}
  2107. compute-scroll-into-view@1.0.20: {}
  2108. content-type@1.0.5: {}
  2109. convertapi-js@1.1.9: {}
  2110. copy-to@2.0.1: {}
  2111. core-js@3.39.0:
  2112. optional: true
  2113. core-util-is@1.0.3: {}
  2114. cors@2.8.5:
  2115. dependencies:
  2116. object-assign: 4.1.1
  2117. vary: 1.1.2
  2118. cosmiconfig@8.1.3:
  2119. dependencies:
  2120. import-fresh: 3.3.0
  2121. js-yaml: 4.1.0
  2122. parse-json: 5.2.0
  2123. path-type: 4.0.0
  2124. cross-fetch@3.1.5:
  2125. dependencies:
  2126. node-fetch: 2.6.7
  2127. transitivePeerDependencies:
  2128. - encoding
  2129. css-line-break@2.1.0:
  2130. dependencies:
  2131. utrie: 1.0.2
  2132. cssesc@3.0.0: {}
  2133. csstype@3.1.3: {}
  2134. d@1.0.2:
  2135. dependencies:
  2136. es5-ext: 0.10.64
  2137. type: 2.7.3
  2138. dateformat@2.2.0: {}
  2139. dayjs@1.11.13: {}
  2140. debug@4.3.4:
  2141. dependencies:
  2142. ms: 2.1.2
  2143. debug@4.3.7:
  2144. dependencies:
  2145. ms: 2.1.3
  2146. default-user-agent@1.0.0:
  2147. dependencies:
  2148. os-name: 1.0.3
  2149. define-data-property@1.1.4:
  2150. dependencies:
  2151. es-define-property: 1.0.0
  2152. es-errors: 1.3.0
  2153. gopd: 1.0.1
  2154. delayed-stream@1.0.0: {}
  2155. destroy@1.2.0: {}
  2156. detect-libc@1.0.3:
  2157. optional: true
  2158. devtools-protocol@0.0.1107588: {}
  2159. digest-header@1.1.0: {}
  2160. dom7@3.0.0:
  2161. dependencies:
  2162. ssr-window: 3.0.0
  2163. dompurify@2.5.7:
  2164. optional: true
  2165. echarts@5.5.1:
  2166. dependencies:
  2167. tslib: 2.3.0
  2168. zrender: 5.6.0
  2169. ee-first@1.1.1: {}
  2170. element-plus@2.8.8(vue@3.5.13):
  2171. dependencies:
  2172. '@ctrl/tinycolor': 3.6.1
  2173. '@element-plus/icons-vue': 2.3.1(vue@3.5.13)
  2174. '@floating-ui/dom': 1.6.12
  2175. '@popperjs/core': '@sxzz/popperjs-es@2.11.7'
  2176. '@types/lodash': 4.17.13
  2177. '@types/lodash-es': 4.17.12
  2178. '@vueuse/core': 9.13.0(vue@3.5.13)
  2179. async-validator: 4.2.5
  2180. dayjs: 1.11.13
  2181. escape-html: 1.0.3
  2182. lodash: 4.17.21
  2183. lodash-es: 4.17.21
  2184. lodash-unified: 1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.21)(lodash@4.17.21)
  2185. memoize-one: 6.0.0
  2186. normalize-wheel-es: 1.2.0
  2187. vue: 3.5.13
  2188. transitivePeerDependencies:
  2189. - '@vue/composition-api'
  2190. emoji-regex@8.0.0: {}
  2191. end-of-stream@1.4.4:
  2192. dependencies:
  2193. once: 1.4.0
  2194. end-or-error@1.0.1: {}
  2195. entities@4.5.0: {}
  2196. error-ex@1.3.2:
  2197. dependencies:
  2198. is-arrayish: 0.2.1
  2199. es-define-property@1.0.0:
  2200. dependencies:
  2201. get-intrinsic: 1.2.4
  2202. es-errors@1.3.0: {}
  2203. es-module-lexer@1.5.4: {}
  2204. es5-ext@0.10.64:
  2205. dependencies:
  2206. es6-iterator: 2.0.3
  2207. es6-symbol: 3.1.4
  2208. esniff: 2.0.1
  2209. next-tick: 1.1.0
  2210. es6-iterator@2.0.3:
  2211. dependencies:
  2212. d: 1.0.2
  2213. es5-ext: 0.10.64
  2214. es6-symbol: 3.1.4
  2215. es6-promise@4.2.8: {}
  2216. es6-symbol@3.1.4:
  2217. dependencies:
  2218. d: 1.0.2
  2219. ext: 1.7.0
  2220. esbuild@0.21.5:
  2221. optionalDependencies:
  2222. '@esbuild/aix-ppc64': 0.21.5
  2223. '@esbuild/android-arm': 0.21.5
  2224. '@esbuild/android-arm64': 0.21.5
  2225. '@esbuild/android-x64': 0.21.5
  2226. '@esbuild/darwin-arm64': 0.21.5
  2227. '@esbuild/darwin-x64': 0.21.5
  2228. '@esbuild/freebsd-arm64': 0.21.5
  2229. '@esbuild/freebsd-x64': 0.21.5
  2230. '@esbuild/linux-arm': 0.21.5
  2231. '@esbuild/linux-arm64': 0.21.5
  2232. '@esbuild/linux-ia32': 0.21.5
  2233. '@esbuild/linux-loong64': 0.21.5
  2234. '@esbuild/linux-mips64el': 0.21.5
  2235. '@esbuild/linux-ppc64': 0.21.5
  2236. '@esbuild/linux-riscv64': 0.21.5
  2237. '@esbuild/linux-s390x': 0.21.5
  2238. '@esbuild/linux-x64': 0.21.5
  2239. '@esbuild/netbsd-x64': 0.21.5
  2240. '@esbuild/openbsd-x64': 0.21.5
  2241. '@esbuild/sunos-x64': 0.21.5
  2242. '@esbuild/win32-arm64': 0.21.5
  2243. '@esbuild/win32-ia32': 0.21.5
  2244. '@esbuild/win32-x64': 0.21.5
  2245. escalade@3.2.0: {}
  2246. escape-html@1.0.3: {}
  2247. esniff@2.0.1:
  2248. dependencies:
  2249. d: 1.0.2
  2250. es5-ext: 0.10.64
  2251. event-emitter: 0.3.5
  2252. type: 2.7.3
  2253. estree-walker@2.0.2: {}
  2254. etag@1.8.1: {}
  2255. event-emitter@0.3.5:
  2256. dependencies:
  2257. d: 1.0.2
  2258. es5-ext: 0.10.64
  2259. ext@1.7.0:
  2260. dependencies:
  2261. type: 2.7.3
  2262. extend-shallow@2.0.1:
  2263. dependencies:
  2264. is-extendable: 0.1.1
  2265. extract-zip@2.0.1:
  2266. dependencies:
  2267. debug: 4.3.4
  2268. get-stream: 5.2.0
  2269. yauzl: 2.10.0
  2270. optionalDependencies:
  2271. '@types/yauzl': 2.10.3
  2272. transitivePeerDependencies:
  2273. - supports-color
  2274. fast-glob@3.3.2:
  2275. dependencies:
  2276. '@nodelib/fs.stat': 2.0.5
  2277. '@nodelib/fs.walk': 1.2.8
  2278. glob-parent: 5.1.2
  2279. merge2: 1.4.1
  2280. micromatch: 4.0.8
  2281. fastq@1.17.1:
  2282. dependencies:
  2283. reusify: 1.0.4
  2284. fd-slicer@1.1.0:
  2285. dependencies:
  2286. pend: 1.2.0
  2287. fdir@6.4.2(picomatch@4.0.2):
  2288. optionalDependencies:
  2289. picomatch: 4.0.2
  2290. fflate@0.8.2: {}
  2291. fill-range@7.1.1:
  2292. dependencies:
  2293. to-regex-range: 5.0.1
  2294. follow-redirects@1.15.9: {}
  2295. font-family-papandreou@0.2.0-patch2: {}
  2296. form-data@4.0.1:
  2297. dependencies:
  2298. asynckit: 0.4.0
  2299. combined-stream: 1.0.8
  2300. mime-types: 2.1.35
  2301. formstream@1.5.1:
  2302. dependencies:
  2303. destroy: 1.2.0
  2304. mime: 2.6.0
  2305. node-hex: 1.0.1
  2306. pause-stream: 0.0.11
  2307. fs-constants@1.0.0: {}
  2308. fsevents@2.3.3:
  2309. optional: true
  2310. function-bind@1.1.2: {}
  2311. get-caller-file@2.0.5: {}
  2312. get-intrinsic@1.2.4:
  2313. dependencies:
  2314. es-errors: 1.3.0
  2315. function-bind: 1.1.2
  2316. has-proto: 1.0.3
  2317. has-symbols: 1.0.3
  2318. hasown: 2.0.2
  2319. get-ready@1.0.0: {}
  2320. get-stream@5.2.0:
  2321. dependencies:
  2322. pump: 3.0.2
  2323. glob-parent@5.1.2:
  2324. dependencies:
  2325. is-glob: 4.0.3
  2326. gopd@1.0.1:
  2327. dependencies:
  2328. get-intrinsic: 1.2.4
  2329. has-property-descriptors@1.0.2:
  2330. dependencies:
  2331. es-define-property: 1.0.0
  2332. has-proto@1.0.3: {}
  2333. has-symbols@1.0.3: {}
  2334. hasown@2.0.2:
  2335. dependencies:
  2336. function-bind: 1.1.2
  2337. html-void-elements@2.0.1: {}
  2338. html2canvas@1.4.1:
  2339. dependencies:
  2340. css-line-break: 2.1.0
  2341. text-segmentation: 1.0.3
  2342. html2pdf.js@0.10.2:
  2343. dependencies:
  2344. es6-promise: 4.2.8
  2345. html2canvas: 1.4.1
  2346. jspdf: 2.5.2
  2347. https-proxy-agent@5.0.1:
  2348. dependencies:
  2349. agent-base: 6.0.2
  2350. debug: 4.3.7
  2351. transitivePeerDependencies:
  2352. - supports-color
  2353. humanize-ms@1.2.1:
  2354. dependencies:
  2355. ms: 2.1.3
  2356. i18next@20.6.1:
  2357. dependencies:
  2358. '@babel/runtime': 7.26.0
  2359. iconv-lite@0.6.3:
  2360. dependencies:
  2361. safer-buffer: 2.1.2
  2362. ieee754@1.2.1: {}
  2363. immer@9.0.21: {}
  2364. immutable@5.0.3: {}
  2365. import-fresh@3.3.0:
  2366. dependencies:
  2367. parent-module: 1.0.1
  2368. resolve-from: 4.0.0
  2369. inherits@2.0.4: {}
  2370. is-arrayish@0.2.1: {}
  2371. is-binary-path@2.1.0:
  2372. dependencies:
  2373. binary-extensions: 2.3.0
  2374. is-class-hotfix@0.0.6: {}
  2375. is-core-module@2.15.1:
  2376. dependencies:
  2377. hasown: 2.0.2
  2378. is-extendable@0.1.1: {}
  2379. is-extglob@2.1.1: {}
  2380. is-fullwidth-code-point@3.0.0: {}
  2381. is-glob@4.0.3:
  2382. dependencies:
  2383. is-extglob: 2.1.1
  2384. is-hotkey@0.2.0: {}
  2385. is-number@7.0.0: {}
  2386. is-plain-object@5.0.0: {}
  2387. is-reference@1.2.1:
  2388. dependencies:
  2389. '@types/estree': 1.0.6
  2390. is-type-of@1.4.0:
  2391. dependencies:
  2392. core-util-is: 1.0.3
  2393. is-class-hotfix: 0.0.6
  2394. isstream: 0.1.2
  2395. is-url@1.2.4: {}
  2396. isarray@1.0.0: {}
  2397. isstream@0.1.2: {}
  2398. js-base64@2.6.4: {}
  2399. js-tokens@4.0.0: {}
  2400. js-yaml@4.1.0:
  2401. dependencies:
  2402. argparse: 2.0.1
  2403. json-parse-even-better-errors@2.3.1: {}
  2404. jspdf@2.5.2:
  2405. dependencies:
  2406. '@babel/runtime': 7.26.0
  2407. atob: 2.1.2
  2408. btoa: 1.2.1
  2409. fflate: 0.8.2
  2410. optionalDependencies:
  2411. canvg: 3.0.10
  2412. core-js: 3.39.0
  2413. dompurify: 2.5.7
  2414. html2canvas: 1.4.1
  2415. jstoxml@2.2.9: {}
  2416. lines-and-columns@1.2.4: {}
  2417. local-pkg@0.4.3: {}
  2418. lodash-es@4.17.21: {}
  2419. lodash-unified@1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.21)(lodash@4.17.21):
  2420. dependencies:
  2421. '@types/lodash-es': 4.17.12
  2422. lodash: 4.17.21
  2423. lodash-es: 4.17.21
  2424. lodash.camelcase@4.3.0: {}
  2425. lodash.clonedeep@4.5.0: {}
  2426. lodash.debounce@4.0.8: {}
  2427. lodash.foreach@4.5.0: {}
  2428. lodash.isequal@4.5.0: {}
  2429. lodash.throttle@4.1.1: {}
  2430. lodash.toarray@4.4.0: {}
  2431. lodash@4.17.21: {}
  2432. magic-string@0.26.7:
  2433. dependencies:
  2434. sourcemap-codec: 1.4.8
  2435. magic-string@0.30.13:
  2436. dependencies:
  2437. '@jridgewell/sourcemap-codec': 1.5.0
  2438. memoize-one@6.0.0: {}
  2439. merge-descriptors@1.0.3: {}
  2440. merge2@1.4.1: {}
  2441. micromatch@4.0.8:
  2442. dependencies:
  2443. braces: 3.0.3
  2444. picomatch: 2.3.1
  2445. mime-db@1.52.0: {}
  2446. mime-match@1.0.2:
  2447. dependencies:
  2448. wildcard: 1.1.2
  2449. mime-types@2.1.35:
  2450. dependencies:
  2451. mime-db: 1.52.0
  2452. mime@2.6.0: {}
  2453. minimatch@5.1.6:
  2454. dependencies:
  2455. brace-expansion: 2.0.1
  2456. minimist@1.2.8: {}
  2457. mitt@3.0.0: {}
  2458. mkdirp-classic@0.5.3: {}
  2459. mkdirp@0.5.6:
  2460. dependencies:
  2461. minimist: 1.2.8
  2462. ms@2.1.2: {}
  2463. ms@2.1.3: {}
  2464. mz@2.7.0:
  2465. dependencies:
  2466. any-promise: 1.3.0
  2467. object-assign: 4.1.1
  2468. thenify-all: 1.6.0
  2469. namespace-emitter@2.0.1: {}
  2470. nanoid@3.3.7: {}
  2471. neo-async@2.6.2: {}
  2472. next-tick@1.1.0: {}
  2473. node-addon-api@7.1.1:
  2474. optional: true
  2475. node-fetch@2.6.7:
  2476. dependencies:
  2477. whatwg-url: 5.0.0
  2478. node-hex@1.0.1: {}
  2479. normalize-path@3.0.0: {}
  2480. normalize-wheel-es@1.2.0: {}
  2481. normalize.css@8.0.1: {}
  2482. nprogress@0.2.0: {}
  2483. object-assign@4.1.1: {}
  2484. object-inspect@1.13.3: {}
  2485. once@1.4.0:
  2486. dependencies:
  2487. wrappy: 1.0.2
  2488. os-name@1.0.3:
  2489. dependencies:
  2490. osx-release: 1.1.0
  2491. win-release: 1.1.1
  2492. osx-release@1.1.0:
  2493. dependencies:
  2494. minimist: 1.2.8
  2495. pako@1.0.11: {}
  2496. parent-module@1.0.1:
  2497. dependencies:
  2498. callsites: 3.1.0
  2499. parse-json@5.2.0:
  2500. dependencies:
  2501. '@babel/code-frame': 7.26.2
  2502. error-ex: 1.3.2
  2503. json-parse-even-better-errors: 2.3.1
  2504. lines-and-columns: 1.2.4
  2505. path-parse@1.0.7: {}
  2506. path-type@4.0.0: {}
  2507. pause-stream@0.0.11:
  2508. dependencies:
  2509. through: 2.3.8
  2510. pdf-lib@1.17.1:
  2511. dependencies:
  2512. '@pdf-lib/standard-fonts': 1.0.0
  2513. '@pdf-lib/upng': 1.0.1
  2514. pako: 1.0.11
  2515. tslib: 1.14.1
  2516. pend@1.2.0: {}
  2517. performance-now@2.1.0:
  2518. optional: true
  2519. picocolors@1.1.1: {}
  2520. picomatch@2.3.1: {}
  2521. picomatch@4.0.2: {}
  2522. platform@1.3.6: {}
  2523. postcss@8.4.49:
  2524. dependencies:
  2525. nanoid: 3.3.7
  2526. picocolors: 1.1.1
  2527. source-map-js: 1.2.1
  2528. preact@10.24.3: {}
  2529. prismjs@1.29.0: {}
  2530. process-nextick-args@2.0.1: {}
  2531. progress@2.0.3: {}
  2532. proxy-from-env@1.1.0: {}
  2533. pump@3.0.2:
  2534. dependencies:
  2535. end-of-stream: 1.4.4
  2536. once: 1.4.0
  2537. puppeteer-core@19.11.1:
  2538. dependencies:
  2539. '@puppeteer/browsers': 0.5.0
  2540. chromium-bidi: 0.4.7(devtools-protocol@0.0.1107588)
  2541. cross-fetch: 3.1.5
  2542. debug: 4.3.4
  2543. devtools-protocol: 0.0.1107588
  2544. extract-zip: 2.0.1
  2545. https-proxy-agent: 5.0.1
  2546. proxy-from-env: 1.1.0
  2547. tar-fs: 2.1.1
  2548. unbzip2-stream: 1.4.3
  2549. ws: 8.13.0
  2550. transitivePeerDependencies:
  2551. - bufferutil
  2552. - encoding
  2553. - supports-color
  2554. - utf-8-validate
  2555. puppeteer@19.11.1:
  2556. dependencies:
  2557. '@puppeteer/browsers': 0.5.0
  2558. cosmiconfig: 8.1.3
  2559. https-proxy-agent: 5.0.1
  2560. progress: 2.0.3
  2561. proxy-from-env: 1.1.0
  2562. puppeteer-core: 19.11.1
  2563. transitivePeerDependencies:
  2564. - bufferutil
  2565. - encoding
  2566. - supports-color
  2567. - typescript
  2568. - utf-8-validate
  2569. qs@6.13.1:
  2570. dependencies:
  2571. side-channel: 1.0.6
  2572. queue-microtask@1.2.3: {}
  2573. raf@3.4.1:
  2574. dependencies:
  2575. performance-now: 2.1.0
  2576. optional: true
  2577. readable-stream@2.3.8:
  2578. dependencies:
  2579. core-util-is: 1.0.3
  2580. inherits: 2.0.4
  2581. isarray: 1.0.0
  2582. process-nextick-args: 2.0.1
  2583. safe-buffer: 5.1.2
  2584. string_decoder: 1.1.1
  2585. util-deprecate: 1.0.2
  2586. readable-stream@3.6.2:
  2587. dependencies:
  2588. inherits: 2.0.4
  2589. string_decoder: 1.3.0
  2590. util-deprecate: 1.0.2
  2591. readdirp@3.6.0:
  2592. dependencies:
  2593. picomatch: 2.3.1
  2594. readdirp@4.0.2: {}
  2595. regenerator-runtime@0.13.11:
  2596. optional: true
  2597. regenerator-runtime@0.14.1: {}
  2598. require-directory@2.1.1: {}
  2599. resolve-from@4.0.0: {}
  2600. resolve@1.22.8:
  2601. dependencies:
  2602. is-core-module: 2.15.1
  2603. path-parse: 1.0.7
  2604. supports-preserve-symlinks-flag: 1.0.0
  2605. reusify@1.0.4: {}
  2606. rgbcolor@1.0.1:
  2607. optional: true
  2608. rollup@4.27.3:
  2609. dependencies:
  2610. '@types/estree': 1.0.6
  2611. optionalDependencies:
  2612. '@rollup/rollup-android-arm-eabi': 4.27.3
  2613. '@rollup/rollup-android-arm64': 4.27.3
  2614. '@rollup/rollup-darwin-arm64': 4.27.3
  2615. '@rollup/rollup-darwin-x64': 4.27.3
  2616. '@rollup/rollup-freebsd-arm64': 4.27.3
  2617. '@rollup/rollup-freebsd-x64': 4.27.3
  2618. '@rollup/rollup-linux-arm-gnueabihf': 4.27.3
  2619. '@rollup/rollup-linux-arm-musleabihf': 4.27.3
  2620. '@rollup/rollup-linux-arm64-gnu': 4.27.3
  2621. '@rollup/rollup-linux-arm64-musl': 4.27.3
  2622. '@rollup/rollup-linux-powerpc64le-gnu': 4.27.3
  2623. '@rollup/rollup-linux-riscv64-gnu': 4.27.3
  2624. '@rollup/rollup-linux-s390x-gnu': 4.27.3
  2625. '@rollup/rollup-linux-x64-gnu': 4.27.3
  2626. '@rollup/rollup-linux-x64-musl': 4.27.3
  2627. '@rollup/rollup-win32-arm64-msvc': 4.27.3
  2628. '@rollup/rollup-win32-ia32-msvc': 4.27.3
  2629. '@rollup/rollup-win32-x64-msvc': 4.27.3
  2630. fsevents: 2.3.3
  2631. run-parallel@1.2.0:
  2632. dependencies:
  2633. queue-microtask: 1.2.3
  2634. safe-buffer@5.1.2: {}
  2635. safe-buffer@5.2.1: {}
  2636. safer-buffer@2.1.2: {}
  2637. sass-loader@16.0.3(sass@1.81.0):
  2638. dependencies:
  2639. neo-async: 2.6.2
  2640. optionalDependencies:
  2641. sass: 1.81.0
  2642. sass@1.81.0:
  2643. dependencies:
  2644. chokidar: 4.0.1
  2645. immutable: 5.0.3
  2646. source-map-js: 1.2.1
  2647. optionalDependencies:
  2648. '@parcel/watcher': 2.5.0
  2649. sax@1.4.1: {}
  2650. scroll-into-view-if-needed@2.2.31:
  2651. dependencies:
  2652. compute-scroll-into-view: 1.0.20
  2653. sdk-base@2.0.1:
  2654. dependencies:
  2655. get-ready: 1.0.0
  2656. semver@5.7.2: {}
  2657. set-function-length@1.2.2:
  2658. dependencies:
  2659. define-data-property: 1.1.4
  2660. es-errors: 1.3.0
  2661. function-bind: 1.1.2
  2662. get-intrinsic: 1.2.4
  2663. gopd: 1.0.1
  2664. has-property-descriptors: 1.0.2
  2665. side-channel@1.0.6:
  2666. dependencies:
  2667. call-bind: 1.0.7
  2668. es-errors: 1.3.0
  2669. get-intrinsic: 1.2.4
  2670. object-inspect: 1.13.3
  2671. slate-history@0.66.0(slate@0.72.8):
  2672. dependencies:
  2673. is-plain-object: 5.0.0
  2674. slate: 0.72.8
  2675. slate@0.72.8:
  2676. dependencies:
  2677. immer: 9.0.21
  2678. is-plain-object: 5.0.0
  2679. tiny-warning: 1.0.3
  2680. snabbdom@3.6.2: {}
  2681. source-map-js@1.2.1: {}
  2682. sourcemap-codec@1.4.8: {}
  2683. specificity@0.4.1: {}
  2684. ssr-window@3.0.0: {}
  2685. stackblur-canvas@2.7.0:
  2686. optional: true
  2687. statuses@1.5.0: {}
  2688. stream-http@2.8.2:
  2689. dependencies:
  2690. builtin-status-codes: 3.0.0
  2691. inherits: 2.0.4
  2692. readable-stream: 2.3.8
  2693. to-arraybuffer: 1.0.1
  2694. xtend: 4.0.2
  2695. stream-wormhole@1.1.0: {}
  2696. string-width@4.2.3:
  2697. dependencies:
  2698. emoji-regex: 8.0.0
  2699. is-fullwidth-code-point: 3.0.0
  2700. strip-ansi: 6.0.1
  2701. string_decoder@1.1.1:
  2702. dependencies:
  2703. safe-buffer: 5.1.2
  2704. string_decoder@1.3.0:
  2705. dependencies:
  2706. safe-buffer: 5.2.1
  2707. strip-ansi@6.0.1:
  2708. dependencies:
  2709. ansi-regex: 5.0.1
  2710. supports-preserve-symlinks-flag@1.0.0: {}
  2711. svg-pathdata@6.0.3:
  2712. optional: true
  2713. svg2pdf.js@2.2.4(jspdf@2.5.2):
  2714. dependencies:
  2715. cssesc: 3.0.0
  2716. font-family-papandreou: 0.2.0-patch2
  2717. jspdf: 2.5.2
  2718. specificity: 0.4.1
  2719. svgpath: 2.6.0
  2720. svgpath@2.6.0: {}
  2721. tar-fs@2.1.1:
  2722. dependencies:
  2723. chownr: 1.1.4
  2724. mkdirp-classic: 0.5.3
  2725. pump: 3.0.2
  2726. tar-stream: 2.2.0
  2727. tar-stream@2.2.0:
  2728. dependencies:
  2729. bl: 4.1.0
  2730. end-of-stream: 1.4.4
  2731. fs-constants: 1.0.0
  2732. inherits: 2.0.4
  2733. readable-stream: 3.6.2
  2734. text-segmentation@1.0.3:
  2735. dependencies:
  2736. utrie: 1.0.2
  2737. thenify-all@1.6.0:
  2738. dependencies:
  2739. thenify: 3.3.1
  2740. thenify@3.3.1:
  2741. dependencies:
  2742. any-promise: 1.3.0
  2743. through@2.3.8: {}
  2744. tiny-warning@1.0.3: {}
  2745. to-arraybuffer@1.0.1: {}
  2746. to-regex-range@5.0.1:
  2747. dependencies:
  2748. is-number: 7.0.0
  2749. tr46@0.0.3: {}
  2750. tslib@1.14.1: {}
  2751. tslib@2.3.0: {}
  2752. type@2.7.3: {}
  2753. unbzip2-stream@1.4.3:
  2754. dependencies:
  2755. buffer: 5.7.1
  2756. through: 2.3.8
  2757. undici-types@6.19.8: {}
  2758. unescape@1.0.1:
  2759. dependencies:
  2760. extend-shallow: 2.0.1
  2761. unplugin-auto-import@0.6.9(@vueuse/core@8.9.4(vue@3.5.13))(esbuild@0.21.5)(vite@5.4.11(@types/node@22.9.1)(sass@1.81.0)):
  2762. dependencies:
  2763. '@antfu/utils': 0.5.2
  2764. '@rollup/pluginutils': 4.2.1
  2765. local-pkg: 0.4.3
  2766. magic-string: 0.26.7
  2767. resolve: 1.22.8
  2768. unplugin: 0.4.0(esbuild@0.21.5)(vite@5.4.11(@types/node@22.9.1)(sass@1.81.0))
  2769. optionalDependencies:
  2770. '@vueuse/core': 8.9.4(vue@3.5.13)
  2771. transitivePeerDependencies:
  2772. - esbuild
  2773. - rollup
  2774. - vite
  2775. - webpack
  2776. unplugin-vue-components@0.18.5(@babel/parser@7.26.2)(esbuild@0.21.5)(vite@5.4.11(@types/node@22.9.1)(sass@1.81.0))(vue@3.5.13):
  2777. dependencies:
  2778. '@antfu/utils': 0.5.2
  2779. '@rollup/pluginutils': 4.2.1
  2780. chokidar: 3.6.0
  2781. debug: 4.3.7
  2782. fast-glob: 3.3.2
  2783. local-pkg: 0.4.3
  2784. magic-string: 0.26.7
  2785. minimatch: 5.1.6
  2786. resolve: 1.22.8
  2787. unplugin: 0.4.0(esbuild@0.21.5)(vite@5.4.11(@types/node@22.9.1)(sass@1.81.0))
  2788. vue: 3.5.13
  2789. optionalDependencies:
  2790. '@babel/parser': 7.26.2
  2791. transitivePeerDependencies:
  2792. - esbuild
  2793. - rollup
  2794. - supports-color
  2795. - vite
  2796. - webpack
  2797. unplugin@0.4.0(esbuild@0.21.5)(vite@5.4.11(@types/node@22.9.1)(sass@1.81.0)):
  2798. dependencies:
  2799. chokidar: 3.6.0
  2800. webpack-virtual-modules: 0.4.6
  2801. optionalDependencies:
  2802. esbuild: 0.21.5
  2803. vite: 5.4.11(@types/node@22.9.1)(sass@1.81.0)
  2804. urllib@2.44.0:
  2805. dependencies:
  2806. any-promise: 1.3.0
  2807. content-type: 1.0.5
  2808. default-user-agent: 1.0.0
  2809. digest-header: 1.1.0
  2810. ee-first: 1.1.1
  2811. formstream: 1.5.1
  2812. humanize-ms: 1.2.1
  2813. iconv-lite: 0.6.3
  2814. pump: 3.0.2
  2815. qs: 6.13.1
  2816. statuses: 1.5.0
  2817. utility: 1.18.0
  2818. util-deprecate@1.0.2: {}
  2819. utility@1.18.0:
  2820. dependencies:
  2821. copy-to: 2.0.1
  2822. escape-html: 1.0.3
  2823. mkdirp: 0.5.6
  2824. mz: 2.7.0
  2825. unescape: 1.0.1
  2826. utrie@1.0.2:
  2827. dependencies:
  2828. base64-arraybuffer: 1.0.2
  2829. vary@1.1.2: {}
  2830. vite-plugin-commonjs@0.10.3:
  2831. dependencies:
  2832. acorn: 8.14.0
  2833. magic-string: 0.30.13
  2834. vite-plugin-dynamic-import: 1.6.0
  2835. vite-plugin-dynamic-import@1.6.0:
  2836. dependencies:
  2837. acorn: 8.14.0
  2838. es-module-lexer: 1.5.4
  2839. fast-glob: 3.3.2
  2840. magic-string: 0.30.13
  2841. vite@5.4.11(@types/node@22.9.1)(sass@1.81.0):
  2842. dependencies:
  2843. esbuild: 0.21.5
  2844. postcss: 8.4.49
  2845. rollup: 4.27.3
  2846. optionalDependencies:
  2847. '@types/node': 22.9.1
  2848. fsevents: 2.3.3
  2849. sass: 1.81.0
  2850. vue-demi@0.14.10(vue@3.5.13):
  2851. dependencies:
  2852. vue: 3.5.13
  2853. vue-router@4.4.5(vue@3.5.13):
  2854. dependencies:
  2855. '@vue/devtools-api': 6.6.4
  2856. vue: 3.5.13
  2857. vue@3.5.13:
  2858. dependencies:
  2859. '@vue/compiler-dom': 3.5.13
  2860. '@vue/compiler-sfc': 3.5.13
  2861. '@vue/runtime-dom': 3.5.13
  2862. '@vue/server-renderer': 3.5.13(vue@3.5.13)
  2863. '@vue/shared': 3.5.13
  2864. vuex@4.1.0(vue@3.5.13):
  2865. dependencies:
  2866. '@vue/devtools-api': 6.6.4
  2867. vue: 3.5.13
  2868. webidl-conversions@3.0.1: {}
  2869. webpack-virtual-modules@0.4.6: {}
  2870. whatwg-url@5.0.0:
  2871. dependencies:
  2872. tr46: 0.0.3
  2873. webidl-conversions: 3.0.1
  2874. wildcard@1.1.2: {}
  2875. win-release@1.1.1:
  2876. dependencies:
  2877. semver: 5.7.2
  2878. wrap-ansi@7.0.0:
  2879. dependencies:
  2880. ansi-styles: 4.3.0
  2881. string-width: 4.2.3
  2882. strip-ansi: 6.0.1
  2883. wrappy@1.0.2: {}
  2884. ws@8.13.0: {}
  2885. xml2js@0.6.2:
  2886. dependencies:
  2887. sax: 1.4.1
  2888. xmlbuilder: 11.0.1
  2889. xmlbuilder@11.0.1: {}
  2890. xtend@4.0.2: {}
  2891. y18n@5.0.8: {}
  2892. yargs-parser@21.1.1: {}
  2893. yargs@17.7.1:
  2894. dependencies:
  2895. cliui: 8.0.1
  2896. escalade: 3.2.0
  2897. get-caller-file: 2.0.5
  2898. require-directory: 2.1.1
  2899. string-width: 4.2.3
  2900. y18n: 5.0.8
  2901. yargs-parser: 21.1.1
  2902. yauzl@2.10.0:
  2903. dependencies:
  2904. buffer-crc32: 0.2.13
  2905. fd-slicer: 1.1.0
  2906. zrender@5.6.0:
  2907. dependencies:
  2908. tslib: 2.3.0