pnpm-lock.yaml 117 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. axios:
  9. specifier: ^1.7.8
  10. version: 1.7.8
  11. clipboard:
  12. specifier: ^2.0.11
  13. version: 2.0.11
  14. element-plus:
  15. specifier: ^2.8.8
  16. version: 2.9.0(vue@3.5.13(typescript@5.6.3))
  17. lodash:
  18. specifier: ^4.17.21
  19. version: 4.17.21
  20. pinia:
  21. specifier: ^2.2.6
  22. version: 2.2.8(typescript@5.6.3)(vue@3.5.13(typescript@5.6.3))
  23. qrcode:
  24. specifier: ^1.5.4
  25. version: 1.5.4
  26. query-string:
  27. specifier: ^9.1.1
  28. version: 9.1.1
  29. swiper:
  30. specifier: ^11.1.15
  31. version: 11.1.15
  32. vue:
  33. specifier: ^3.5.12
  34. version: 3.5.13(typescript@5.6.3)
  35. vue-qrcode:
  36. specifier: ^2.2.2
  37. version: 2.2.2(qrcode@1.5.4)(vue@3.5.13(typescript@5.6.3))
  38. vue-router:
  39. specifier: ^4.4.5
  40. version: 4.5.0(vue@3.5.13(typescript@5.6.3))
  41. vue3-video-play:
  42. specifier: ^1.3.2
  43. version: 1.3.2(typescript@5.6.3)
  44. devDependencies:
  45. '@tsconfig/node22':
  46. specifier: ^22.0.0
  47. version: 22.0.0
  48. '@types/node':
  49. specifier: ^22.9.0
  50. version: 22.10.1
  51. '@vitejs/plugin-vue':
  52. specifier: ^5.1.4
  53. version: 5.2.1(vite@5.4.11(@types/node@22.10.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0))(vue@3.5.13(typescript@5.6.3))
  54. '@vitejs/plugin-vue-jsx':
  55. specifier: ^4.0.1
  56. version: 4.1.1(vite@5.4.11(@types/node@22.10.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0))(vue@3.5.13(typescript@5.6.3))
  57. '@vue/tsconfig':
  58. specifier: ^0.5.1
  59. version: 0.5.1
  60. cross-env:
  61. specifier: ^7.0.3
  62. version: 7.0.3
  63. less:
  64. specifier: ^4.2.1
  65. version: 4.2.1
  66. npm-run-all2:
  67. specifier: ^7.0.1
  68. version: 7.0.1
  69. sass:
  70. specifier: ^1.81.0
  71. version: 1.82.0
  72. typescript:
  73. specifier: ~5.6.3
  74. version: 5.6.3
  75. unplugin-auto-import:
  76. specifier: ^0.18.5
  77. version: 0.18.6(@vueuse/core@9.13.0(vue@3.5.13(typescript@5.6.3)))(rollup@4.28.0)
  78. unplugin-vue-components:
  79. specifier: ^0.27.4
  80. version: 0.27.5(@babel/parser@7.26.2)(rollup@4.28.0)(vue@3.5.13(typescript@5.6.3))
  81. vite:
  82. specifier: ^5.4.10
  83. version: 5.4.11(@types/node@22.10.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)
  84. vite-plugin-html:
  85. specifier: ^3.2.2
  86. version: 3.2.2(vite@5.4.11(@types/node@22.10.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0))
  87. vite-plugin-vue-devtools:
  88. specifier: ^7.5.4
  89. version: 7.6.7(rollup@4.28.0)(vite@5.4.11(@types/node@22.10.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0))(vue@3.5.13(typescript@5.6.3))
  90. vue-tsc:
  91. specifier: ^2.1.10
  92. version: 2.1.10(typescript@5.6.3)
  93. packages:
  94. '@ampproject/remapping@2.3.0':
  95. resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
  96. engines: {node: '>=6.0.0'}
  97. '@antfu/utils@0.7.10':
  98. resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==}
  99. '@babel/code-frame@7.26.2':
  100. resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
  101. engines: {node: '>=6.9.0'}
  102. '@babel/compat-data@7.26.2':
  103. resolution: {integrity: sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==}
  104. engines: {node: '>=6.9.0'}
  105. '@babel/core@7.26.0':
  106. resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==}
  107. engines: {node: '>=6.9.0'}
  108. '@babel/generator@7.26.2':
  109. resolution: {integrity: sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==}
  110. engines: {node: '>=6.9.0'}
  111. '@babel/helper-annotate-as-pure@7.25.9':
  112. resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
  113. engines: {node: '>=6.9.0'}
  114. '@babel/helper-compilation-targets@7.25.9':
  115. resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==}
  116. engines: {node: '>=6.9.0'}
  117. '@babel/helper-create-class-features-plugin@7.25.9':
  118. resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==}
  119. engines: {node: '>=6.9.0'}
  120. peerDependencies:
  121. '@babel/core': ^7.0.0
  122. '@babel/helper-member-expression-to-functions@7.25.9':
  123. resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==}
  124. engines: {node: '>=6.9.0'}
  125. '@babel/helper-module-imports@7.25.9':
  126. resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
  127. engines: {node: '>=6.9.0'}
  128. '@babel/helper-module-transforms@7.26.0':
  129. resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
  130. engines: {node: '>=6.9.0'}
  131. peerDependencies:
  132. '@babel/core': ^7.0.0
  133. '@babel/helper-optimise-call-expression@7.25.9':
  134. resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==}
  135. engines: {node: '>=6.9.0'}
  136. '@babel/helper-plugin-utils@7.25.9':
  137. resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==}
  138. engines: {node: '>=6.9.0'}
  139. '@babel/helper-replace-supers@7.25.9':
  140. resolution: {integrity: sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==}
  141. engines: {node: '>=6.9.0'}
  142. peerDependencies:
  143. '@babel/core': ^7.0.0
  144. '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
  145. resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
  146. engines: {node: '>=6.9.0'}
  147. '@babel/helper-string-parser@7.25.9':
  148. resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
  149. engines: {node: '>=6.9.0'}
  150. '@babel/helper-validator-identifier@7.25.9':
  151. resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
  152. engines: {node: '>=6.9.0'}
  153. '@babel/helper-validator-option@7.25.9':
  154. resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
  155. engines: {node: '>=6.9.0'}
  156. '@babel/helpers@7.26.0':
  157. resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
  158. engines: {node: '>=6.9.0'}
  159. '@babel/parser@7.26.2':
  160. resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==}
  161. engines: {node: '>=6.0.0'}
  162. hasBin: true
  163. '@babel/plugin-proposal-decorators@7.25.9':
  164. resolution: {integrity: sha512-smkNLL/O1ezy9Nhy4CNosc4Va+1wo5w4gzSZeLe6y6dM4mmHfYOCPolXQPHQxonZCF+ZyebxN9vqOolkYrSn5g==}
  165. engines: {node: '>=6.9.0'}
  166. peerDependencies:
  167. '@babel/core': ^7.0.0-0
  168. '@babel/plugin-syntax-decorators@7.25.9':
  169. resolution: {integrity: sha512-ryzI0McXUPJnRCvMo4lumIKZUzhYUO/ScI+Mz4YVaTLt04DHNSjEUjKVvbzQjZFLuod/cYEc07mJWhzl6v4DPg==}
  170. engines: {node: '>=6.9.0'}
  171. peerDependencies:
  172. '@babel/core': ^7.0.0-0
  173. '@babel/plugin-syntax-import-attributes@7.26.0':
  174. resolution: {integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==}
  175. engines: {node: '>=6.9.0'}
  176. peerDependencies:
  177. '@babel/core': ^7.0.0-0
  178. '@babel/plugin-syntax-import-meta@7.10.4':
  179. resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
  180. peerDependencies:
  181. '@babel/core': ^7.0.0-0
  182. '@babel/plugin-syntax-jsx@7.25.9':
  183. resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==}
  184. engines: {node: '>=6.9.0'}
  185. peerDependencies:
  186. '@babel/core': ^7.0.0-0
  187. '@babel/plugin-syntax-typescript@7.25.9':
  188. resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==}
  189. engines: {node: '>=6.9.0'}
  190. peerDependencies:
  191. '@babel/core': ^7.0.0-0
  192. '@babel/plugin-transform-typescript@7.25.9':
  193. resolution: {integrity: sha512-7PbZQZP50tzv2KGGnhh82GSyMB01yKY9scIjf1a+GfZCtInOWqUH5+1EBU4t9fyR5Oykkkc9vFTs4OHrhHXljQ==}
  194. engines: {node: '>=6.9.0'}
  195. peerDependencies:
  196. '@babel/core': ^7.0.0-0
  197. '@babel/template@7.25.9':
  198. resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
  199. engines: {node: '>=6.9.0'}
  200. '@babel/traverse@7.25.9':
  201. resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==}
  202. engines: {node: '>=6.9.0'}
  203. '@babel/types@7.26.0':
  204. resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==}
  205. engines: {node: '>=6.9.0'}
  206. '@ctrl/tinycolor@3.6.1':
  207. resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==}
  208. engines: {node: '>=10'}
  209. '@element-plus/icons-vue@2.3.1':
  210. resolution: {integrity: sha512-XxVUZv48RZAd87ucGS48jPf6pKu0yV5UCg9f4FFwtrYxXOwWuVJo6wOvSLKEoMQKjv8GsX/mhP6UsC1lRwbUWg==}
  211. peerDependencies:
  212. vue: ^3.2.0
  213. '@esbuild/aix-ppc64@0.21.5':
  214. resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
  215. engines: {node: '>=12'}
  216. cpu: [ppc64]
  217. os: [aix]
  218. '@esbuild/android-arm64@0.21.5':
  219. resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
  220. engines: {node: '>=12'}
  221. cpu: [arm64]
  222. os: [android]
  223. '@esbuild/android-arm@0.21.5':
  224. resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
  225. engines: {node: '>=12'}
  226. cpu: [arm]
  227. os: [android]
  228. '@esbuild/android-x64@0.21.5':
  229. resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
  230. engines: {node: '>=12'}
  231. cpu: [x64]
  232. os: [android]
  233. '@esbuild/darwin-arm64@0.21.5':
  234. resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
  235. engines: {node: '>=12'}
  236. cpu: [arm64]
  237. os: [darwin]
  238. '@esbuild/darwin-x64@0.21.5':
  239. resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
  240. engines: {node: '>=12'}
  241. cpu: [x64]
  242. os: [darwin]
  243. '@esbuild/freebsd-arm64@0.21.5':
  244. resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
  245. engines: {node: '>=12'}
  246. cpu: [arm64]
  247. os: [freebsd]
  248. '@esbuild/freebsd-x64@0.21.5':
  249. resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
  250. engines: {node: '>=12'}
  251. cpu: [x64]
  252. os: [freebsd]
  253. '@esbuild/linux-arm64@0.21.5':
  254. resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
  255. engines: {node: '>=12'}
  256. cpu: [arm64]
  257. os: [linux]
  258. '@esbuild/linux-arm@0.21.5':
  259. resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
  260. engines: {node: '>=12'}
  261. cpu: [arm]
  262. os: [linux]
  263. '@esbuild/linux-ia32@0.21.5':
  264. resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
  265. engines: {node: '>=12'}
  266. cpu: [ia32]
  267. os: [linux]
  268. '@esbuild/linux-loong64@0.21.5':
  269. resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
  270. engines: {node: '>=12'}
  271. cpu: [loong64]
  272. os: [linux]
  273. '@esbuild/linux-mips64el@0.21.5':
  274. resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
  275. engines: {node: '>=12'}
  276. cpu: [mips64el]
  277. os: [linux]
  278. '@esbuild/linux-ppc64@0.21.5':
  279. resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
  280. engines: {node: '>=12'}
  281. cpu: [ppc64]
  282. os: [linux]
  283. '@esbuild/linux-riscv64@0.21.5':
  284. resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
  285. engines: {node: '>=12'}
  286. cpu: [riscv64]
  287. os: [linux]
  288. '@esbuild/linux-s390x@0.21.5':
  289. resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
  290. engines: {node: '>=12'}
  291. cpu: [s390x]
  292. os: [linux]
  293. '@esbuild/linux-x64@0.21.5':
  294. resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
  295. engines: {node: '>=12'}
  296. cpu: [x64]
  297. os: [linux]
  298. '@esbuild/netbsd-x64@0.21.5':
  299. resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
  300. engines: {node: '>=12'}
  301. cpu: [x64]
  302. os: [netbsd]
  303. '@esbuild/openbsd-x64@0.21.5':
  304. resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
  305. engines: {node: '>=12'}
  306. cpu: [x64]
  307. os: [openbsd]
  308. '@esbuild/sunos-x64@0.21.5':
  309. resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
  310. engines: {node: '>=12'}
  311. cpu: [x64]
  312. os: [sunos]
  313. '@esbuild/win32-arm64@0.21.5':
  314. resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
  315. engines: {node: '>=12'}
  316. cpu: [arm64]
  317. os: [win32]
  318. '@esbuild/win32-ia32@0.21.5':
  319. resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
  320. engines: {node: '>=12'}
  321. cpu: [ia32]
  322. os: [win32]
  323. '@esbuild/win32-x64@0.21.5':
  324. resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
  325. engines: {node: '>=12'}
  326. cpu: [x64]
  327. os: [win32]
  328. '@floating-ui/core@1.6.8':
  329. resolution: {integrity: sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==}
  330. '@floating-ui/dom@1.6.12':
  331. resolution: {integrity: sha512-NP83c0HjokcGVEMeoStg317VD9W7eDlGK7457dMBANbKA6GJZdc7rjujdgqzTaz93jkGgc5P/jeWbaCHnMNc+w==}
  332. '@floating-ui/utils@0.2.8':
  333. resolution: {integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==}
  334. '@jridgewell/gen-mapping@0.3.5':
  335. resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
  336. engines: {node: '>=6.0.0'}
  337. '@jridgewell/resolve-uri@3.1.2':
  338. resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
  339. engines: {node: '>=6.0.0'}
  340. '@jridgewell/set-array@1.2.1':
  341. resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
  342. engines: {node: '>=6.0.0'}
  343. '@jridgewell/source-map@0.3.6':
  344. resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==}
  345. '@jridgewell/sourcemap-codec@1.5.0':
  346. resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
  347. '@jridgewell/trace-mapping@0.3.25':
  348. resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
  349. '@nodelib/fs.scandir@2.1.5':
  350. resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
  351. engines: {node: '>= 8'}
  352. '@nodelib/fs.stat@2.0.5':
  353. resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
  354. engines: {node: '>= 8'}
  355. '@nodelib/fs.walk@1.2.8':
  356. resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
  357. engines: {node: '>= 8'}
  358. '@parcel/watcher-android-arm64@2.5.0':
  359. resolution: {integrity: sha512-qlX4eS28bUcQCdribHkg/herLe+0A9RyYC+mm2PXpncit8z5b3nSqGVzMNR3CmtAOgRutiZ02eIJJgP/b1iEFQ==}
  360. engines: {node: '>= 10.0.0'}
  361. cpu: [arm64]
  362. os: [android]
  363. '@parcel/watcher-darwin-arm64@2.5.0':
  364. resolution: {integrity: sha512-hyZ3TANnzGfLpRA2s/4U1kbw2ZI4qGxaRJbBH2DCSREFfubMswheh8TeiC1sGZ3z2jUf3s37P0BBlrD3sjVTUw==}
  365. engines: {node: '>= 10.0.0'}
  366. cpu: [arm64]
  367. os: [darwin]
  368. '@parcel/watcher-darwin-x64@2.5.0':
  369. resolution: {integrity: sha512-9rhlwd78saKf18fT869/poydQK8YqlU26TMiNg7AIu7eBp9adqbJZqmdFOsbZ5cnLp5XvRo9wcFmNHgHdWaGYA==}
  370. engines: {node: '>= 10.0.0'}
  371. cpu: [x64]
  372. os: [darwin]
  373. '@parcel/watcher-freebsd-x64@2.5.0':
  374. resolution: {integrity: sha512-syvfhZzyM8kErg3VF0xpV8dixJ+RzbUaaGaeb7uDuz0D3FK97/mZ5AJQ3XNnDsXX7KkFNtyQyFrXZzQIcN49Tw==}
  375. engines: {node: '>= 10.0.0'}
  376. cpu: [x64]
  377. os: [freebsd]
  378. '@parcel/watcher-linux-arm-glibc@2.5.0':
  379. resolution: {integrity: sha512-0VQY1K35DQET3dVYWpOaPFecqOT9dbuCfzjxoQyif1Wc574t3kOSkKevULddcR9znz1TcklCE7Ht6NIxjvTqLA==}
  380. engines: {node: '>= 10.0.0'}
  381. cpu: [arm]
  382. os: [linux]
  383. libc: [glibc]
  384. '@parcel/watcher-linux-arm-musl@2.5.0':
  385. resolution: {integrity: sha512-6uHywSIzz8+vi2lAzFeltnYbdHsDm3iIB57d4g5oaB9vKwjb6N6dRIgZMujw4nm5r6v9/BQH0noq6DzHrqr2pA==}
  386. engines: {node: '>= 10.0.0'}
  387. cpu: [arm]
  388. os: [linux]
  389. libc: [musl]
  390. '@parcel/watcher-linux-arm64-glibc@2.5.0':
  391. resolution: {integrity: sha512-BfNjXwZKxBy4WibDb/LDCriWSKLz+jJRL3cM/DllnHH5QUyoiUNEp3GmL80ZqxeumoADfCCP19+qiYiC8gUBjA==}
  392. engines: {node: '>= 10.0.0'}
  393. cpu: [arm64]
  394. os: [linux]
  395. libc: [glibc]
  396. '@parcel/watcher-linux-arm64-musl@2.5.0':
  397. resolution: {integrity: sha512-S1qARKOphxfiBEkwLUbHjCY9BWPdWnW9j7f7Hb2jPplu8UZ3nes7zpPOW9bkLbHRvWM0WDTsjdOTUgW0xLBN1Q==}
  398. engines: {node: '>= 10.0.0'}
  399. cpu: [arm64]
  400. os: [linux]
  401. libc: [musl]
  402. '@parcel/watcher-linux-x64-glibc@2.5.0':
  403. resolution: {integrity: sha512-d9AOkusyXARkFD66S6zlGXyzx5RvY+chTP9Jp0ypSTC9d4lzyRs9ovGf/80VCxjKddcUvnsGwCHWuF2EoPgWjw==}
  404. engines: {node: '>= 10.0.0'}
  405. cpu: [x64]
  406. os: [linux]
  407. libc: [glibc]
  408. '@parcel/watcher-linux-x64-musl@2.5.0':
  409. resolution: {integrity: sha512-iqOC+GoTDoFyk/VYSFHwjHhYrk8bljW6zOhPuhi5t9ulqiYq1togGJB5e3PwYVFFfeVgc6pbz3JdQyDoBszVaA==}
  410. engines: {node: '>= 10.0.0'}
  411. cpu: [x64]
  412. os: [linux]
  413. libc: [musl]
  414. '@parcel/watcher-win32-arm64@2.5.0':
  415. resolution: {integrity: sha512-twtft1d+JRNkM5YbmexfcH/N4znDtjgysFaV9zvZmmJezQsKpkfLYJ+JFV3uygugK6AtIM2oADPkB2AdhBrNig==}
  416. engines: {node: '>= 10.0.0'}
  417. cpu: [arm64]
  418. os: [win32]
  419. '@parcel/watcher-win32-ia32@2.5.0':
  420. resolution: {integrity: sha512-+rgpsNRKwo8A53elqbbHXdOMtY/tAtTzManTWShB5Kk54N8Q9mzNWV7tV+IbGueCbcj826MfWGU3mprWtuf1TA==}
  421. engines: {node: '>= 10.0.0'}
  422. cpu: [ia32]
  423. os: [win32]
  424. '@parcel/watcher-win32-x64@2.5.0':
  425. resolution: {integrity: sha512-lPrxve92zEHdgeff3aiu4gDOIt4u7sJYha6wbdEZDCDUhtjTsOMiaJzG5lMY4GkWH8p0fMmO2Ppq5G5XXG+DQw==}
  426. engines: {node: '>= 10.0.0'}
  427. cpu: [x64]
  428. os: [win32]
  429. '@parcel/watcher@2.5.0':
  430. resolution: {integrity: sha512-i0GV1yJnm2n3Yq1qw6QrUrd/LI9bE8WEBOTtOkpCXHHdyN3TAGgqAK/DAT05z4fq2x04cARXt2pDmjWjL92iTQ==}
  431. engines: {node: '>= 10.0.0'}
  432. '@polka/url@1.0.0-next.28':
  433. resolution: {integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==}
  434. '@rollup/pluginutils@4.2.1':
  435. resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
  436. engines: {node: '>= 8.0.0'}
  437. '@rollup/pluginutils@5.1.3':
  438. resolution: {integrity: sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==}
  439. engines: {node: '>=14.0.0'}
  440. peerDependencies:
  441. rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
  442. peerDependenciesMeta:
  443. rollup:
  444. optional: true
  445. '@rollup/rollup-android-arm-eabi@4.28.0':
  446. resolution: {integrity: sha512-wLJuPLT6grGZsy34g4N1yRfYeouklTgPhH1gWXCYspenKYD0s3cR99ZevOGw5BexMNywkbV3UkjADisozBmpPQ==}
  447. cpu: [arm]
  448. os: [android]
  449. '@rollup/rollup-android-arm64@4.28.0':
  450. resolution: {integrity: sha512-eiNkznlo0dLmVG/6wf+Ifi/v78G4d4QxRhuUl+s8EWZpDewgk7PX3ZyECUXU0Zq/Ca+8nU8cQpNC4Xgn2gFNDA==}
  451. cpu: [arm64]
  452. os: [android]
  453. '@rollup/rollup-darwin-arm64@4.28.0':
  454. resolution: {integrity: sha512-lmKx9yHsppblnLQZOGxdO66gT77bvdBtr/0P+TPOseowE7D9AJoBw8ZDULRasXRWf1Z86/gcOdpBrV6VDUY36Q==}
  455. cpu: [arm64]
  456. os: [darwin]
  457. '@rollup/rollup-darwin-x64@4.28.0':
  458. resolution: {integrity: sha512-8hxgfReVs7k9Js1uAIhS6zq3I+wKQETInnWQtgzt8JfGx51R1N6DRVy3F4o0lQwumbErRz52YqwjfvuwRxGv1w==}
  459. cpu: [x64]
  460. os: [darwin]
  461. '@rollup/rollup-freebsd-arm64@4.28.0':
  462. resolution: {integrity: sha512-lA1zZB3bFx5oxu9fYud4+g1mt+lYXCoch0M0V/xhqLoGatbzVse0wlSQ1UYOWKpuSu3gyN4qEc0Dxf/DII1bhQ==}
  463. cpu: [arm64]
  464. os: [freebsd]
  465. '@rollup/rollup-freebsd-x64@4.28.0':
  466. resolution: {integrity: sha512-aI2plavbUDjCQB/sRbeUZWX9qp12GfYkYSJOrdYTL/C5D53bsE2/nBPuoiJKoWp5SN78v2Vr8ZPnB+/VbQ2pFA==}
  467. cpu: [x64]
  468. os: [freebsd]
  469. '@rollup/rollup-linux-arm-gnueabihf@4.28.0':
  470. resolution: {integrity: sha512-WXveUPKtfqtaNvpf0iOb0M6xC64GzUX/OowbqfiCSXTdi/jLlOmH0Ba94/OkiY2yTGTwteo4/dsHRfh5bDCZ+w==}
  471. cpu: [arm]
  472. os: [linux]
  473. libc: [glibc]
  474. '@rollup/rollup-linux-arm-musleabihf@4.28.0':
  475. resolution: {integrity: sha512-yLc3O2NtOQR67lI79zsSc7lk31xjwcaocvdD1twL64PK1yNaIqCeWI9L5B4MFPAVGEVjH5k1oWSGuYX1Wutxpg==}
  476. cpu: [arm]
  477. os: [linux]
  478. libc: [musl]
  479. '@rollup/rollup-linux-arm64-gnu@4.28.0':
  480. resolution: {integrity: sha512-+P9G9hjEpHucHRXqesY+3X9hD2wh0iNnJXX/QhS/J5vTdG6VhNYMxJ2rJkQOxRUd17u5mbMLHM7yWGZdAASfcg==}
  481. cpu: [arm64]
  482. os: [linux]
  483. libc: [glibc]
  484. '@rollup/rollup-linux-arm64-musl@4.28.0':
  485. resolution: {integrity: sha512-1xsm2rCKSTpKzi5/ypT5wfc+4bOGa/9yI/eaOLW0oMs7qpC542APWhl4A37AENGZ6St6GBMWhCCMM6tXgTIplw==}
  486. cpu: [arm64]
  487. os: [linux]
  488. libc: [musl]
  489. '@rollup/rollup-linux-powerpc64le-gnu@4.28.0':
  490. resolution: {integrity: sha512-zgWxMq8neVQeXL+ouSf6S7DoNeo6EPgi1eeqHXVKQxqPy1B2NvTbaOUWPn/7CfMKL7xvhV0/+fq/Z/J69g1WAQ==}
  491. cpu: [ppc64]
  492. os: [linux]
  493. libc: [glibc]
  494. '@rollup/rollup-linux-riscv64-gnu@4.28.0':
  495. resolution: {integrity: sha512-VEdVYacLniRxbRJLNtzwGt5vwS0ycYshofI7cWAfj7Vg5asqj+pt+Q6x4n+AONSZW/kVm+5nklde0qs2EUwU2g==}
  496. cpu: [riscv64]
  497. os: [linux]
  498. libc: [glibc]
  499. '@rollup/rollup-linux-s390x-gnu@4.28.0':
  500. resolution: {integrity: sha512-LQlP5t2hcDJh8HV8RELD9/xlYtEzJkm/aWGsauvdO2ulfl3QYRjqrKW+mGAIWP5kdNCBheqqqYIGElSRCaXfpw==}
  501. cpu: [s390x]
  502. os: [linux]
  503. libc: [glibc]
  504. '@rollup/rollup-linux-x64-gnu@4.28.0':
  505. resolution: {integrity: sha512-Nl4KIzteVEKE9BdAvYoTkW19pa7LR/RBrT6F1dJCV/3pbjwDcaOq+edkP0LXuJ9kflW/xOK414X78r+K84+msw==}
  506. cpu: [x64]
  507. os: [linux]
  508. libc: [glibc]
  509. '@rollup/rollup-linux-x64-musl@4.28.0':
  510. resolution: {integrity: sha512-eKpJr4vBDOi4goT75MvW+0dXcNUqisK4jvibY9vDdlgLx+yekxSm55StsHbxUsRxSTt3JEQvlr3cGDkzcSP8bw==}
  511. cpu: [x64]
  512. os: [linux]
  513. libc: [musl]
  514. '@rollup/rollup-win32-arm64-msvc@4.28.0':
  515. resolution: {integrity: sha512-Vi+WR62xWGsE/Oj+mD0FNAPY2MEox3cfyG0zLpotZdehPFXwz6lypkGs5y38Jd/NVSbOD02aVad6q6QYF7i8Bg==}
  516. cpu: [arm64]
  517. os: [win32]
  518. '@rollup/rollup-win32-ia32-msvc@4.28.0':
  519. resolution: {integrity: sha512-kN/Vpip8emMLn/eOza+4JwqDZBL6MPNpkdaEsgUtW1NYN3DZvZqSQrbKzJcTL6hd8YNmFTn7XGWMwccOcJBL0A==}
  520. cpu: [ia32]
  521. os: [win32]
  522. '@rollup/rollup-win32-x64-msvc@4.28.0':
  523. resolution: {integrity: sha512-Bvno2/aZT6usSa7lRDL2+hMjVAGjuqaymF1ApZm31JXzniR/hvr14jpU+/z4X6Gt5BPlzosscyJZGUvguXIqeQ==}
  524. cpu: [x64]
  525. os: [win32]
  526. '@sec-ant/readable-stream@0.4.1':
  527. resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==}
  528. '@sindresorhus/merge-streams@4.0.0':
  529. resolution: {integrity: sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==}
  530. engines: {node: '>=18'}
  531. '@sxzz/popperjs-es@2.11.7':
  532. resolution: {integrity: sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==}
  533. '@tsconfig/node22@22.0.0':
  534. resolution: {integrity: sha512-twLQ77zevtxobBOD4ToAtVmuYrpeYUh3qh+TEp+08IWhpsrIflVHqQ1F1CiPxQGL7doCdBIOOCF+1Tm833faNg==}
  535. '@types/estree@1.0.6':
  536. resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
  537. '@types/lodash-es@4.17.12':
  538. resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==}
  539. '@types/lodash@4.17.13':
  540. resolution: {integrity: sha512-lfx+dftrEZcdBPczf9d0Qv0x+j/rfNCMuC6OcfXmO8gkfeNAY88PgKUbvG56whcN23gc27yenwF6oJZXGFpYxg==}
  541. '@types/node@22.10.1':
  542. resolution: {integrity: sha512-qKgsUwfHZV2WCWLAnVP1JqnpE6Im6h3Y0+fYgMTasNQ7V++CBX5OT1as0g0f+OyubbFqhf6XVNIsmN4IIhEgGQ==}
  543. '@types/web-bluetooth@0.0.16':
  544. resolution: {integrity: sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==}
  545. '@vitejs/plugin-vue-jsx@4.1.1':
  546. resolution: {integrity: sha512-uMJqv/7u1zz/9NbWAD3XdjaY20tKTf17XVfQ9zq4wY1BjsB/PjpJPMe2xiG39QpP4ZdhYNhm4Hvo66uJrykNLA==}
  547. engines: {node: ^18.0.0 || >=20.0.0}
  548. peerDependencies:
  549. vite: ^5.0.0 || ^6.0.0
  550. vue: ^3.0.0
  551. '@vitejs/plugin-vue@5.2.1':
  552. resolution: {integrity: sha512-cxh314tzaWwOLqVes2gnnCtvBDcM1UMdn+iFR+UjAn411dPT3tOmqrJjbMd7koZpMAmBM/GqeV4n9ge7JSiJJQ==}
  553. engines: {node: ^18.0.0 || >=20.0.0}
  554. peerDependencies:
  555. vite: ^5.0.0 || ^6.0.0
  556. vue: ^3.2.25
  557. '@volar/language-core@2.4.10':
  558. resolution: {integrity: sha512-hG3Z13+nJmGaT+fnQzAkS0hjJRa2FCeqZt6Bd+oGNhUkQ+mTFsDETg5rqUTxyzIh5pSOGY7FHCWUS8G82AzLCA==}
  559. '@volar/source-map@2.4.10':
  560. resolution: {integrity: sha512-OCV+b5ihV0RF3A7vEvNyHPi4G4kFa6ukPmyVocmqm5QzOd8r5yAtiNvaPEjl8dNvgC/lj4JPryeeHLdXd62rWA==}
  561. '@volar/typescript@2.4.10':
  562. resolution: {integrity: sha512-F8ZtBMhSXyYKuBfGpYwqA5rsONnOwAVvjyE7KPYJ7wgZqo2roASqNWUnianOomJX5u1cxeRooHV59N0PhvEOgw==}
  563. '@vue/babel-helper-vue-transform-on@1.2.5':
  564. resolution: {integrity: sha512-lOz4t39ZdmU4DJAa2hwPYmKc8EsuGa2U0L9KaZaOJUt0UwQNjNA3AZTq6uEivhOKhhG1Wvy96SvYBoFmCg3uuw==}
  565. '@vue/babel-plugin-jsx@1.2.5':
  566. resolution: {integrity: sha512-zTrNmOd4939H9KsRIGmmzn3q2zvv1mjxkYZHgqHZgDrXz5B1Q3WyGEjO2f+JrmKghvl1JIRcvo63LgM1kH5zFg==}
  567. peerDependencies:
  568. '@babel/core': ^7.0.0-0
  569. peerDependenciesMeta:
  570. '@babel/core':
  571. optional: true
  572. '@vue/babel-plugin-resolve-type@1.2.5':
  573. resolution: {integrity: sha512-U/ibkQrf5sx0XXRnUZD1mo5F7PkpKyTbfXM3a3rC4YnUz6crHEz9Jg09jzzL6QYlXNto/9CePdOg/c87O4Nlfg==}
  574. peerDependencies:
  575. '@babel/core': ^7.0.0-0
  576. '@vue/compiler-core@3.5.13':
  577. resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==}
  578. '@vue/compiler-dom@3.5.13':
  579. resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==}
  580. '@vue/compiler-sfc@3.5.13':
  581. resolution: {integrity: sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==}
  582. '@vue/compiler-ssr@3.5.13':
  583. resolution: {integrity: sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==}
  584. '@vue/compiler-vue2@2.7.16':
  585. resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
  586. '@vue/devtools-api@6.6.4':
  587. resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
  588. '@vue/devtools-core@7.6.7':
  589. resolution: {integrity: sha512-6fW8Q0H1NHDXdEcuV6dylT5U2Yxg3SdMnVCey99Y6S4R2PNgFL2vC+VU9U9rHIiaoEUkeza42S7FfHxV4VI3Jg==}
  590. peerDependencies:
  591. vue: ^3.0.0
  592. '@vue/devtools-kit@7.6.7':
  593. resolution: {integrity: sha512-V8/jrXY/swHgnblABG9U4QCbE60c6RuPasmv2d9FvVqc5d94t1vDiESuvRmdNJBdWz4/D3q6ffgyAfRVjwHYEw==}
  594. '@vue/devtools-shared@7.6.7':
  595. resolution: {integrity: sha512-QggO6SviAsolrePAXZ/sA1dSicSPt4TueZibCvydfhNDieL1lAuyMTgQDGst7TEvMGb4vgYv2I+1sDkO4jWNnw==}
  596. '@vue/language-core@2.1.10':
  597. resolution: {integrity: sha512-DAI289d0K3AB5TUG3xDp9OuQ71CnrujQwJrQnfuZDwo6eGNf0UoRlPuaVNO+Zrn65PC3j0oB2i7mNmVPggeGeQ==}
  598. peerDependencies:
  599. typescript: '*'
  600. peerDependenciesMeta:
  601. typescript:
  602. optional: true
  603. '@vue/reactivity@3.5.13':
  604. resolution: {integrity: sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==}
  605. '@vue/runtime-core@3.5.13':
  606. resolution: {integrity: sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==}
  607. '@vue/runtime-dom@3.5.13':
  608. resolution: {integrity: sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==}
  609. '@vue/server-renderer@3.5.13':
  610. resolution: {integrity: sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==}
  611. peerDependencies:
  612. vue: 3.5.13
  613. '@vue/shared@3.5.13':
  614. resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==}
  615. '@vue/tsconfig@0.5.1':
  616. resolution: {integrity: sha512-VcZK7MvpjuTPx2w6blwnwZAu5/LgBUtejFOi3pPGQFXQN5Ela03FUtd2Qtg4yWGGissVL0dr6Ro1LfOFh+PCuQ==}
  617. '@vueuse/core@9.13.0':
  618. resolution: {integrity: sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==}
  619. '@vueuse/metadata@9.13.0':
  620. resolution: {integrity: sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==}
  621. '@vueuse/shared@9.13.0':
  622. resolution: {integrity: sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==}
  623. acorn@8.14.0:
  624. resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
  625. engines: {node: '>=0.4.0'}
  626. hasBin: true
  627. alien-signals@0.2.2:
  628. resolution: {integrity: sha512-cZIRkbERILsBOXTQmMrxc9hgpxglstn69zm+F1ARf4aPAzdAFYd6sBq87ErO0Fj3DV94tglcyHG5kQz9nDC/8A==}
  629. ansi-regex@5.0.1:
  630. resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
  631. engines: {node: '>=8'}
  632. ansi-styles@4.3.0:
  633. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  634. engines: {node: '>=8'}
  635. ansi-styles@6.2.1:
  636. resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
  637. engines: {node: '>=12'}
  638. anymatch@3.1.3:
  639. resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
  640. engines: {node: '>= 8'}
  641. async-validator@4.2.5:
  642. resolution: {integrity: sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==}
  643. async@3.2.6:
  644. resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==}
  645. asynckit@0.4.0:
  646. resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
  647. axios@1.7.8:
  648. resolution: {integrity: sha512-Uu0wb7KNqK2t5K+YQyVCLM76prD5sRFjKHbJYCP1J7JFGEQ6nN7HWn9+04LAeiJ3ji54lgS/gZCH1oxyrf1SPw==}
  649. balanced-match@1.0.2:
  650. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  651. binary-extensions@2.3.0:
  652. resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
  653. engines: {node: '>=8'}
  654. birpc@0.2.19:
  655. resolution: {integrity: sha512-5WeXXAvTmitV1RqJFppT5QtUiz2p1mRSYU000Jkft5ZUCLJIk4uQriYNO50HknxKwM6jd8utNc66K1qGIwwWBQ==}
  656. boolbase@1.0.0:
  657. resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
  658. brace-expansion@1.1.11:
  659. resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
  660. brace-expansion@2.0.1:
  661. resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
  662. braces@3.0.3:
  663. resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
  664. engines: {node: '>=8'}
  665. browserslist@4.24.2:
  666. resolution: {integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==}
  667. engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
  668. hasBin: true
  669. buffer-from@1.1.2:
  670. resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
  671. bundle-name@4.1.0:
  672. resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==}
  673. engines: {node: '>=18'}
  674. camel-case@4.1.2:
  675. resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==}
  676. camelcase@5.3.1:
  677. resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
  678. engines: {node: '>=6'}
  679. caniuse-lite@1.0.30001686:
  680. resolution: {integrity: sha512-Y7deg0Aergpa24M3qLC5xjNklnKnhsmSyR/V89dLZ1n0ucJIFNs7PgR2Yfa/Zf6W79SbBicgtGxZr2juHkEUIA==}
  681. chalk@4.1.2:
  682. resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
  683. engines: {node: '>=10'}
  684. chokidar@3.6.0:
  685. resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
  686. engines: {node: '>= 8.10.0'}
  687. chokidar@4.0.1:
  688. resolution: {integrity: sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==}
  689. engines: {node: '>= 14.16.0'}
  690. clean-css@5.3.3:
  691. resolution: {integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==}
  692. engines: {node: '>= 10.0'}
  693. clipboard@2.0.11:
  694. resolution: {integrity: sha512-C+0bbOqkezLIsmWSvlsXS0Q0bmkugu7jcfMIACB+RDEntIzQIkdr148we28AfSloQLRdZlYL/QYyrq05j/3Faw==}
  695. cliui@6.0.0:
  696. resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==}
  697. color-convert@2.0.1:
  698. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  699. engines: {node: '>=7.0.0'}
  700. color-name@1.1.4:
  701. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  702. colorette@2.0.20:
  703. resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
  704. combined-stream@1.0.8:
  705. resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
  706. engines: {node: '>= 0.8'}
  707. commander@2.20.3:
  708. resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
  709. commander@8.3.0:
  710. resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
  711. engines: {node: '>= 12'}
  712. concat-map@0.0.1:
  713. resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
  714. confbox@0.1.8:
  715. resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
  716. connect-history-api-fallback@1.6.0:
  717. resolution: {integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==}
  718. engines: {node: '>=0.8'}
  719. consola@2.15.3:
  720. resolution: {integrity: sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==}
  721. convert-source-map@2.0.0:
  722. resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
  723. copy-anything@2.0.6:
  724. resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==}
  725. copy-anything@3.0.5:
  726. resolution: {integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==}
  727. engines: {node: '>=12.13'}
  728. cross-env@7.0.3:
  729. resolution: {integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==}
  730. engines: {node: '>=10.14', npm: '>=6', yarn: '>=1'}
  731. hasBin: true
  732. cross-spawn@7.0.6:
  733. resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
  734. engines: {node: '>= 8'}
  735. css-select@4.3.0:
  736. resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==}
  737. css-what@6.1.0:
  738. resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
  739. engines: {node: '>= 6'}
  740. csstype@3.1.3:
  741. resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
  742. dayjs@1.11.13:
  743. resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
  744. de-indent@1.0.2:
  745. resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
  746. debug@4.3.7:
  747. resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
  748. engines: {node: '>=6.0'}
  749. peerDependencies:
  750. supports-color: '*'
  751. peerDependenciesMeta:
  752. supports-color:
  753. optional: true
  754. decamelize@1.2.0:
  755. resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
  756. engines: {node: '>=0.10.0'}
  757. decode-uri-component@0.4.1:
  758. resolution: {integrity: sha512-+8VxcR21HhTy8nOt6jf20w0c9CADrw1O8d+VZ/YzzCt4bJ3uBjw+D1q2osAB8RnpwwaeYBxy0HyKQxD5JBMuuQ==}
  759. engines: {node: '>=14.16'}
  760. default-browser-id@5.0.0:
  761. resolution: {integrity: sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==}
  762. engines: {node: '>=18'}
  763. default-browser@5.2.1:
  764. resolution: {integrity: sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==}
  765. engines: {node: '>=18'}
  766. define-lazy-prop@3.0.0:
  767. resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==}
  768. engines: {node: '>=12'}
  769. delayed-stream@1.0.0:
  770. resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
  771. engines: {node: '>=0.4.0'}
  772. delegate@3.2.0:
  773. resolution: {integrity: sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==}
  774. detect-libc@1.0.3:
  775. resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==}
  776. engines: {node: '>=0.10'}
  777. hasBin: true
  778. dijkstrajs@1.0.3:
  779. resolution: {integrity: sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==}
  780. dom-serializer@1.4.1:
  781. resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
  782. domelementtype@2.3.0:
  783. resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
  784. domhandler@4.3.1:
  785. resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
  786. engines: {node: '>= 4'}
  787. domutils@2.8.0:
  788. resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
  789. dot-case@3.0.4:
  790. resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
  791. dotenv-expand@8.0.3:
  792. resolution: {integrity: sha512-SErOMvge0ZUyWd5B0NXMQlDkN+8r+HhVUsxgOO7IoPDOdDRD2JjExpN6y3KnFR66jsJMwSn1pqIivhU5rcJiNg==}
  793. engines: {node: '>=12'}
  794. dotenv@16.4.7:
  795. resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==}
  796. engines: {node: '>=12'}
  797. ejs@3.1.10:
  798. resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==}
  799. engines: {node: '>=0.10.0'}
  800. hasBin: true
  801. electron-to-chromium@1.5.68:
  802. resolution: {integrity: sha512-FgMdJlma0OzUYlbrtZ4AeXjKxKPk6KT8WOP8BjcqxWtlg8qyJQjRzPJzUtUn5GBg1oQ26hFs7HOOHJMYiJRnvQ==}
  803. element-plus@2.9.0:
  804. resolution: {integrity: sha512-ccOFXKsauo2dtokAr4OX7gZsb7TuAoVxA2zGRZo5o2yyDDBLBaZxOoFQPoxITSLcHbBfQuNDGK5Iag5hnyKkZA==}
  805. peerDependencies:
  806. vue: ^3.2.0
  807. emoji-regex@8.0.0:
  808. resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
  809. entities@2.2.0:
  810. resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
  811. entities@4.5.0:
  812. resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
  813. engines: {node: '>=0.12'}
  814. errno@0.1.8:
  815. resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==}
  816. hasBin: true
  817. error-stack-parser-es@0.1.5:
  818. resolution: {integrity: sha512-xHku1X40RO+fO8yJ8Wh2f2rZWVjqyhb1zgq1yZ8aZRQkv6OOKhKWRUaht3eSCUbAOBaKIgM+ykwFLE+QUxgGeg==}
  819. esbuild@0.21.5:
  820. resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
  821. engines: {node: '>=12'}
  822. hasBin: true
  823. escalade@3.2.0:
  824. resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
  825. engines: {node: '>=6'}
  826. escape-html@1.0.3:
  827. resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
  828. escape-string-regexp@5.0.0:
  829. resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
  830. engines: {node: '>=12'}
  831. estree-walker@2.0.2:
  832. resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
  833. estree-walker@3.0.3:
  834. resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
  835. execa@9.5.1:
  836. resolution: {integrity: sha512-QY5PPtSonnGwhhHDNI7+3RvY285c7iuJFFB+lU+oEzMY/gEGJ808owqJsrr8Otd1E/x07po1LkUBmdAc5duPAg==}
  837. engines: {node: ^18.19.0 || >=20.5.0}
  838. fast-glob@3.3.2:
  839. resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
  840. engines: {node: '>=8.6.0'}
  841. fastq@1.17.1:
  842. resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
  843. fdir@6.4.2:
  844. resolution: {integrity: sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==}
  845. peerDependencies:
  846. picomatch: ^3 || ^4
  847. peerDependenciesMeta:
  848. picomatch:
  849. optional: true
  850. figures@6.1.0:
  851. resolution: {integrity: sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==}
  852. engines: {node: '>=18'}
  853. filelist@1.0.4:
  854. resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==}
  855. fill-range@7.1.1:
  856. resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
  857. engines: {node: '>=8'}
  858. filter-obj@5.1.0:
  859. resolution: {integrity: sha512-qWeTREPoT7I0bifpPUXtxkZJ1XJzxWtfoWWkdVGqa+eCr3SHW/Ocp89o8vLvbUuQnadybJpjOKu4V+RwO6sGng==}
  860. engines: {node: '>=14.16'}
  861. find-up@4.1.0:
  862. resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
  863. engines: {node: '>=8'}
  864. follow-redirects@1.15.9:
  865. resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
  866. engines: {node: '>=4.0'}
  867. peerDependencies:
  868. debug: '*'
  869. peerDependenciesMeta:
  870. debug:
  871. optional: true
  872. form-data@4.0.1:
  873. resolution: {integrity: sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==}
  874. engines: {node: '>= 6'}
  875. fs-extra@10.1.0:
  876. resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
  877. engines: {node: '>=12'}
  878. fs-extra@11.2.0:
  879. resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}
  880. engines: {node: '>=14.14'}
  881. fsevents@2.3.3:
  882. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  883. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  884. os: [darwin]
  885. gensync@1.0.0-beta.2:
  886. resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
  887. engines: {node: '>=6.9.0'}
  888. get-caller-file@2.0.5:
  889. resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
  890. engines: {node: 6.* || 8.* || >= 10.*}
  891. get-stream@9.0.1:
  892. resolution: {integrity: sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==}
  893. engines: {node: '>=18'}
  894. glob-parent@5.1.2:
  895. resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
  896. engines: {node: '>= 6'}
  897. globals@11.12.0:
  898. resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
  899. engines: {node: '>=4'}
  900. good-listener@1.2.2:
  901. resolution: {integrity: sha512-goW1b+d9q/HIwbVYZzZ6SsTr4IgE+WA44A0GmPIQstuOrgsFcT7VEJ48nmr9GaRtNu0XTKacFLGnBPAM6Afouw==}
  902. graceful-fs@4.2.11:
  903. resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
  904. has-flag@4.0.0:
  905. resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
  906. engines: {node: '>=8'}
  907. he@1.2.0:
  908. resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
  909. hasBin: true
  910. hls.js@1.5.18:
  911. resolution: {integrity: sha512-znxR+2jecWluu/0KOBqUcvVyAB5tLff10vjMGrpAlz1eFY+ZhF1bY3r82V+Bk7WJdk03iTjtja9KFFz5BrqjSA==}
  912. hookable@5.5.3:
  913. resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
  914. html-minifier-terser@6.1.0:
  915. resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==}
  916. engines: {node: '>=12'}
  917. hasBin: true
  918. html-tags@3.3.1:
  919. resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
  920. engines: {node: '>=8'}
  921. human-signals@8.0.0:
  922. resolution: {integrity: sha512-/1/GPCpDUCCYwlERiYjxoczfP0zfvZMU/OWgQPMya9AbAE24vseigFdhAMObpc8Q4lc/kjutPfUddDYyAmejnA==}
  923. engines: {node: '>=18.18.0'}
  924. iconv-lite@0.6.3:
  925. resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
  926. engines: {node: '>=0.10.0'}
  927. image-size@0.5.5:
  928. resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==}
  929. engines: {node: '>=0.10.0'}
  930. hasBin: true
  931. immutable@5.0.3:
  932. resolution: {integrity: sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==}
  933. is-binary-path@2.1.0:
  934. resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
  935. engines: {node: '>=8'}
  936. is-docker@3.0.0:
  937. resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==}
  938. engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
  939. hasBin: true
  940. is-extglob@2.1.1:
  941. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  942. engines: {node: '>=0.10.0'}
  943. is-fullwidth-code-point@3.0.0:
  944. resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
  945. engines: {node: '>=8'}
  946. is-glob@4.0.3:
  947. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  948. engines: {node: '>=0.10.0'}
  949. is-inside-container@1.0.0:
  950. resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==}
  951. engines: {node: '>=14.16'}
  952. hasBin: true
  953. is-number@7.0.0:
  954. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  955. engines: {node: '>=0.12.0'}
  956. is-plain-obj@4.1.0:
  957. resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
  958. engines: {node: '>=12'}
  959. is-stream@4.0.1:
  960. resolution: {integrity: sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==}
  961. engines: {node: '>=18'}
  962. is-unicode-supported@2.1.0:
  963. resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
  964. engines: {node: '>=18'}
  965. is-what@3.14.1:
  966. resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==}
  967. is-what@4.1.16:
  968. resolution: {integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==}
  969. engines: {node: '>=12.13'}
  970. is-wsl@3.1.0:
  971. resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==}
  972. engines: {node: '>=16'}
  973. isexe@2.0.0:
  974. resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
  975. isexe@3.1.1:
  976. resolution: {integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==}
  977. engines: {node: '>=16'}
  978. jake@10.9.2:
  979. resolution: {integrity: sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==}
  980. engines: {node: '>=10'}
  981. hasBin: true
  982. js-tokens@4.0.0:
  983. resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
  984. js-tokens@9.0.1:
  985. resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==}
  986. jsesc@3.0.2:
  987. resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==}
  988. engines: {node: '>=6'}
  989. hasBin: true
  990. json-parse-even-better-errors@4.0.0:
  991. resolution: {integrity: sha512-lR4MXjGNgkJc7tkQ97kb2nuEMnNCyU//XYVH0MKTGcXEiSudQ5MKGKen3C5QubYy0vmq+JGitUg92uuywGEwIA==}
  992. engines: {node: ^18.17.0 || >=20.5.0}
  993. json5@2.2.3:
  994. resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
  995. engines: {node: '>=6'}
  996. hasBin: true
  997. jsonfile@6.1.0:
  998. resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
  999. kolorist@1.8.0:
  1000. resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
  1001. less@4.2.1:
  1002. resolution: {integrity: sha512-CasaJidTIhWmjcqv0Uj5vccMI7pJgfD9lMkKtlnTHAdJdYK/7l8pM9tumLyJ0zhbD4KJLo/YvTj+xznQd5NBhg==}
  1003. engines: {node: '>=6'}
  1004. hasBin: true
  1005. local-pkg@0.5.1:
  1006. resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==}
  1007. engines: {node: '>=14'}
  1008. locate-path@5.0.0:
  1009. resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
  1010. engines: {node: '>=8'}
  1011. lodash-es@4.17.21:
  1012. resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==}
  1013. lodash-unified@1.0.3:
  1014. resolution: {integrity: sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==}
  1015. peerDependencies:
  1016. '@types/lodash-es': '*'
  1017. lodash: '*'
  1018. lodash-es: '*'
  1019. lodash@4.17.21:
  1020. resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
  1021. lower-case@2.0.2:
  1022. resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
  1023. lru-cache@5.1.1:
  1024. resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
  1025. magic-string@0.30.14:
  1026. resolution: {integrity: sha512-5c99P1WKTed11ZC0HMJOj6CDIue6F8ySu+bJL+85q1zBEIY8IklrJ1eiKC2NDRh3Ct3FcvmJPyQHb9erXMTJNw==}
  1027. make-dir@2.1.0:
  1028. resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
  1029. engines: {node: '>=6'}
  1030. memoize-one@6.0.0:
  1031. resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==}
  1032. memorystream@0.3.1:
  1033. resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==}
  1034. engines: {node: '>= 0.10.0'}
  1035. merge2@1.4.1:
  1036. resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
  1037. engines: {node: '>= 8'}
  1038. micromatch@4.0.8:
  1039. resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
  1040. engines: {node: '>=8.6'}
  1041. mime-db@1.52.0:
  1042. resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
  1043. engines: {node: '>= 0.6'}
  1044. mime-types@2.1.35:
  1045. resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
  1046. engines: {node: '>= 0.6'}
  1047. mime@1.6.0:
  1048. resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
  1049. engines: {node: '>=4'}
  1050. hasBin: true
  1051. minimatch@3.1.2:
  1052. resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
  1053. minimatch@5.1.6:
  1054. resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
  1055. engines: {node: '>=10'}
  1056. minimatch@9.0.5:
  1057. resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
  1058. engines: {node: '>=16 || 14 >=14.17'}
  1059. mitt@3.0.1:
  1060. resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
  1061. mlly@1.7.3:
  1062. resolution: {integrity: sha512-xUsx5n/mN0uQf4V548PKQ+YShA4/IW0KI1dZhrNrPCLG+xizETbHTkOa1f8/xut9JRPp8kQuMnz0oqwkTiLo/A==}
  1063. mrmime@2.0.0:
  1064. resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==}
  1065. engines: {node: '>=10'}
  1066. ms@2.1.3:
  1067. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  1068. muggle-string@0.4.1:
  1069. resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
  1070. nanoid@3.3.8:
  1071. resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==}
  1072. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  1073. hasBin: true
  1074. nanoid@5.0.9:
  1075. resolution: {integrity: sha512-Aooyr6MXU6HpvvWXKoVoXwKMs/KyVakWwg7xQfv5/S/RIgJMy0Ifa45H9qqYy7pTCszrHzP21Uk4PZq2HpEM8Q==}
  1076. engines: {node: ^18 || >=20}
  1077. hasBin: true
  1078. needle@3.3.1:
  1079. resolution: {integrity: sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==}
  1080. engines: {node: '>= 4.4.x'}
  1081. hasBin: true
  1082. no-case@3.0.4:
  1083. resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
  1084. node-addon-api@7.1.1:
  1085. resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
  1086. node-html-parser@5.4.2:
  1087. resolution: {integrity: sha512-RaBPP3+51hPne/OolXxcz89iYvQvKOydaqoePpOgXcrOKZhjVIzmpKZz+Hd/RBO2/zN2q6CNJhQzucVz+u3Jyw==}
  1088. node-releases@2.0.18:
  1089. resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
  1090. normalize-path@3.0.0:
  1091. resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
  1092. engines: {node: '>=0.10.0'}
  1093. normalize-wheel-es@1.2.0:
  1094. resolution: {integrity: sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==}
  1095. npm-normalize-package-bin@4.0.0:
  1096. resolution: {integrity: sha512-TZKxPvItzai9kN9H/TkmCtx/ZN/hvr3vUycjlfmH0ootY9yFBzNOpiXAdIn1Iteqsvk4lQn6B5PTrt+n6h8k/w==}
  1097. engines: {node: ^18.17.0 || >=20.5.0}
  1098. npm-run-all2@7.0.1:
  1099. resolution: {integrity: sha512-Adbv+bJQ8UTAM03rRODqrO5cx0YU5KCG2CvHtSURiadvdTjjgGJXdbc1oQ9CXBh9dnGfHSoSB1Web/0Dzp6kOQ==}
  1100. engines: {node: ^18.17.0 || >=20.5.0, npm: '>= 9'}
  1101. hasBin: true
  1102. npm-run-path@6.0.0:
  1103. resolution: {integrity: sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==}
  1104. engines: {node: '>=18'}
  1105. nth-check@2.1.1:
  1106. resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
  1107. open@10.1.0:
  1108. resolution: {integrity: sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==}
  1109. engines: {node: '>=18'}
  1110. p-limit@2.3.0:
  1111. resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
  1112. engines: {node: '>=6'}
  1113. p-locate@4.1.0:
  1114. resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
  1115. engines: {node: '>=8'}
  1116. p-try@2.2.0:
  1117. resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
  1118. engines: {node: '>=6'}
  1119. param-case@3.0.4:
  1120. resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==}
  1121. parse-ms@4.0.0:
  1122. resolution: {integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==}
  1123. engines: {node: '>=18'}
  1124. parse-node-version@1.0.1:
  1125. resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==}
  1126. engines: {node: '>= 0.10'}
  1127. pascal-case@3.1.2:
  1128. resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==}
  1129. path-browserify@1.0.1:
  1130. resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
  1131. path-exists@4.0.0:
  1132. resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
  1133. engines: {node: '>=8'}
  1134. path-key@3.1.1:
  1135. resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
  1136. engines: {node: '>=8'}
  1137. path-key@4.0.0:
  1138. resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
  1139. engines: {node: '>=12'}
  1140. pathe@0.2.0:
  1141. resolution: {integrity: sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==}
  1142. pathe@1.1.2:
  1143. resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
  1144. perfect-debounce@1.0.0:
  1145. resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
  1146. picocolors@1.1.1:
  1147. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  1148. picomatch@2.3.1:
  1149. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  1150. engines: {node: '>=8.6'}
  1151. picomatch@4.0.2:
  1152. resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
  1153. engines: {node: '>=12'}
  1154. pidtree@0.6.0:
  1155. resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==}
  1156. engines: {node: '>=0.10'}
  1157. hasBin: true
  1158. pify@4.0.1:
  1159. resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
  1160. engines: {node: '>=6'}
  1161. pinia@2.2.8:
  1162. resolution: {integrity: sha512-NRTYy2g+kju5tBRe0oNlriZIbMNvma8ZJrpHsp3qudyiMEA8jMmPPKQ2QMHg0Oc4BkUyQYWagACabrwriCK9HQ==}
  1163. peerDependencies:
  1164. '@vue/composition-api': ^1.4.0
  1165. typescript: '>=4.4.4'
  1166. vue: ^2.6.14 || ^3.5.11
  1167. peerDependenciesMeta:
  1168. '@vue/composition-api':
  1169. optional: true
  1170. typescript:
  1171. optional: true
  1172. pkg-types@1.2.1:
  1173. resolution: {integrity: sha512-sQoqa8alT3nHjGuTjuKgOnvjo4cljkufdtLMnO2LBP/wRwuDlo1tkaEdMxCRhyGRPacv/ztlZgDPm2b7FAmEvw==}
  1174. pngjs@5.0.0:
  1175. resolution: {integrity: sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==}
  1176. engines: {node: '>=10.13.0'}
  1177. postcss@8.4.49:
  1178. resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==}
  1179. engines: {node: ^10 || ^12 || >=14}
  1180. pretty-ms@9.2.0:
  1181. resolution: {integrity: sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==}
  1182. engines: {node: '>=18'}
  1183. proxy-from-env@1.1.0:
  1184. resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
  1185. prr@1.0.1:
  1186. resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
  1187. qrcode@1.5.4:
  1188. resolution: {integrity: sha512-1ca71Zgiu6ORjHqFBDpnSMTR2ReToX4l1Au1VFLyVeBTFavzQnv5JxMFr3ukHVKpSrSA2MCk0lNJSykjUfz7Zg==}
  1189. engines: {node: '>=10.13.0'}
  1190. hasBin: true
  1191. query-string@9.1.1:
  1192. resolution: {integrity: sha512-MWkCOVIcJP9QSKU52Ngow6bsAWAPlPK2MludXvcrS2bGZSl+T1qX9MZvRIkqUIkGLJquMJHWfsT6eRqUpp4aWg==}
  1193. engines: {node: '>=18'}
  1194. queue-microtask@1.2.3:
  1195. resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
  1196. read-package-json-fast@4.0.0:
  1197. resolution: {integrity: sha512-qpt8EwugBWDw2cgE2W+/3oxC+KTez2uSVR8JU9Q36TXPAGCaozfQUs59v4j4GFpWTaw0i6hAZSvOmu1J0uOEUg==}
  1198. engines: {node: ^18.17.0 || >=20.5.0}
  1199. readdirp@3.6.0:
  1200. resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
  1201. engines: {node: '>=8.10.0'}
  1202. readdirp@4.0.2:
  1203. resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==}
  1204. engines: {node: '>= 14.16.0'}
  1205. relateurl@0.2.7:
  1206. resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==}
  1207. engines: {node: '>= 0.10'}
  1208. require-directory@2.1.1:
  1209. resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
  1210. engines: {node: '>=0.10.0'}
  1211. require-main-filename@2.0.0:
  1212. resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
  1213. reusify@1.0.4:
  1214. resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
  1215. engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
  1216. rfdc@1.4.1:
  1217. resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
  1218. rollup@4.28.0:
  1219. resolution: {integrity: sha512-G9GOrmgWHBma4YfCcX8PjH0qhXSdH8B4HDE2o4/jaxj93S4DPCIDoLcXz99eWMji4hB29UFCEd7B2gwGJDR9cQ==}
  1220. engines: {node: '>=18.0.0', npm: '>=8.0.0'}
  1221. hasBin: true
  1222. run-applescript@7.0.0:
  1223. resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==}
  1224. engines: {node: '>=18'}
  1225. run-parallel@1.2.0:
  1226. resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
  1227. safer-buffer@2.1.2:
  1228. resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
  1229. sass@1.82.0:
  1230. resolution: {integrity: sha512-j4GMCTa8elGyN9A7x7bEglx0VgSpNUG4W4wNedQ33wSMdnkqQCT8HTwOaVSV4e6yQovcu/3Oc4coJP/l0xhL2Q==}
  1231. engines: {node: '>=14.0.0'}
  1232. hasBin: true
  1233. sax@1.4.1:
  1234. resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==}
  1235. scule@1.3.0:
  1236. resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==}
  1237. select@1.1.2:
  1238. resolution: {integrity: sha512-OwpTSOfy6xSs1+pwcNrv0RBMOzI39Lp3qQKUTPVVPRjCdNa5JH/oPRiqsesIskK8TVgmRiHwO4KXlV2Li9dANA==}
  1239. semver@5.7.2:
  1240. resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
  1241. hasBin: true
  1242. semver@6.3.1:
  1243. resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
  1244. hasBin: true
  1245. semver@7.6.3:
  1246. resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
  1247. engines: {node: '>=10'}
  1248. hasBin: true
  1249. set-blocking@2.0.0:
  1250. resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
  1251. shebang-command@2.0.0:
  1252. resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
  1253. engines: {node: '>=8'}
  1254. shebang-regex@3.0.0:
  1255. resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
  1256. engines: {node: '>=8'}
  1257. shell-quote@1.8.2:
  1258. resolution: {integrity: sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==}
  1259. engines: {node: '>= 0.4'}
  1260. signal-exit@4.1.0:
  1261. resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
  1262. engines: {node: '>=14'}
  1263. sirv@3.0.0:
  1264. resolution: {integrity: sha512-BPwJGUeDaDCHihkORDchNyyTvWFhcusy1XMmhEVTQTwGeybFbp8YEmB+njbPnth1FibULBSBVwCQni25XlCUDg==}
  1265. engines: {node: '>=18'}
  1266. source-map-js@1.2.1:
  1267. resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  1268. engines: {node: '>=0.10.0'}
  1269. source-map-support@0.5.21:
  1270. resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
  1271. source-map@0.6.1:
  1272. resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
  1273. engines: {node: '>=0.10.0'}
  1274. speakingurl@14.0.1:
  1275. resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==}
  1276. engines: {node: '>=0.10.0'}
  1277. split-on-first@3.0.0:
  1278. resolution: {integrity: sha512-qxQJTx2ryR0Dw0ITYyekNQWpz6f8dGd7vffGNflQQ3Iqj9NJ6qiZ7ELpZsJ/QBhIVAiDfXdag3+Gp8RvWa62AA==}
  1279. engines: {node: '>=12'}
  1280. string-width@4.2.3:
  1281. resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
  1282. engines: {node: '>=8'}
  1283. strip-ansi@6.0.1:
  1284. resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
  1285. engines: {node: '>=8'}
  1286. strip-final-newline@4.0.0:
  1287. resolution: {integrity: sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==}
  1288. engines: {node: '>=18'}
  1289. strip-literal@2.1.1:
  1290. resolution: {integrity: sha512-631UJ6O00eNGfMiWG78ck80dfBab8X6IVFB51jZK5Icd7XAs60Z5y7QdSd/wGIklnWvRbUNloVzhOKKmutxQ6Q==}
  1291. superjson@2.2.1:
  1292. resolution: {integrity: sha512-8iGv75BYOa0xRJHK5vRLEjE2H/i4lulTjzpUXic3Eg8akftYjkmQDa8JARQ42rlczXyFR3IeRoeFCc7RxHsYZA==}
  1293. engines: {node: '>=16'}
  1294. supports-color@7.2.0:
  1295. resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
  1296. engines: {node: '>=8'}
  1297. svg-tags@1.0.0:
  1298. resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==}
  1299. swiper@11.1.15:
  1300. resolution: {integrity: sha512-IzWeU34WwC7gbhjKsjkImTuCRf+lRbO6cnxMGs88iVNKDwV+xQpBCJxZ4bNH6gSrIbbyVJ1kuGzo3JTtz//CBw==}
  1301. engines: {node: '>= 4.7.0'}
  1302. terser@5.36.0:
  1303. resolution: {integrity: sha512-IYV9eNMuFAV4THUspIRXkLakHnV6XO7FEdtKjf/mDyrnqUg9LnlOn6/RwRvM9SZjR4GUq8Nk8zj67FzVARr74w==}
  1304. engines: {node: '>=10'}
  1305. hasBin: true
  1306. throttle-debounce@3.0.1:
  1307. resolution: {integrity: sha512-dTEWWNu6JmeVXY0ZYoPuH5cRIwc0MeGbJwah9KUNYSJwommQpCzTySTpEe8Gs1J23aeWEuAobe4Ag7EHVt/LOg==}
  1308. engines: {node: '>=10'}
  1309. tiny-emitter@2.1.0:
  1310. resolution: {integrity: sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==}
  1311. tinyglobby@0.2.10:
  1312. resolution: {integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==}
  1313. engines: {node: '>=12.0.0'}
  1314. to-regex-range@5.0.1:
  1315. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  1316. engines: {node: '>=8.0'}
  1317. totalist@3.0.1:
  1318. resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
  1319. engines: {node: '>=6'}
  1320. tslib@2.8.1:
  1321. resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
  1322. typescript@5.6.3:
  1323. resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==}
  1324. engines: {node: '>=14.17'}
  1325. hasBin: true
  1326. ufo@1.5.4:
  1327. resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==}
  1328. undici-types@6.20.0:
  1329. resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==}
  1330. unicorn-magic@0.3.0:
  1331. resolution: {integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==}
  1332. engines: {node: '>=18'}
  1333. unimport@3.14.3:
  1334. resolution: {integrity: sha512-yEJps4GW7jBdoQlxEV0ElBCJsJmH8FdZtk4oog0y++8hgLh0dGnDpE4oaTc0Lfx4N5rRJiGFUWHrBqC8CyUBmQ==}
  1335. universalify@2.0.1:
  1336. resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
  1337. engines: {node: '>= 10.0.0'}
  1338. unplugin-auto-import@0.18.6:
  1339. resolution: {integrity: sha512-LMFzX5DtkTj/3wZuyG5bgKBoJ7WSgzqSGJ8ppDRdlvPh45mx6t6w3OcbExQi53n3xF5MYkNGPNR/HYOL95KL2A==}
  1340. engines: {node: '>=14'}
  1341. peerDependencies:
  1342. '@nuxt/kit': ^3.2.2
  1343. '@vueuse/core': '*'
  1344. peerDependenciesMeta:
  1345. '@nuxt/kit':
  1346. optional: true
  1347. '@vueuse/core':
  1348. optional: true
  1349. unplugin-vue-components@0.27.5:
  1350. resolution: {integrity: sha512-m9j4goBeNwXyNN8oZHHxvIIYiG8FQ9UfmKWeNllpDvhU7btKNNELGPt+o3mckQKuPwrE7e0PvCsx+IWuDSD9Vg==}
  1351. engines: {node: '>=14'}
  1352. peerDependencies:
  1353. '@babel/parser': ^7.15.8
  1354. '@nuxt/kit': ^3.2.2
  1355. vue: 2 || 3
  1356. peerDependenciesMeta:
  1357. '@babel/parser':
  1358. optional: true
  1359. '@nuxt/kit':
  1360. optional: true
  1361. unplugin@1.16.0:
  1362. resolution: {integrity: sha512-5liCNPuJW8dqh3+DM6uNM2EI3MLLpCKp/KY+9pB5M2S2SR2qvvDHhKgBOaTWEbZTAws3CXfB0rKTIolWKL05VQ==}
  1363. engines: {node: '>=14.0.0'}
  1364. update-browserslist-db@1.1.1:
  1365. resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==}
  1366. hasBin: true
  1367. peerDependencies:
  1368. browserslist: '>= 4.21.0'
  1369. vite-hot-client@0.2.4:
  1370. resolution: {integrity: sha512-a1nzURqO7DDmnXqabFOliz908FRmIppkBKsJthS8rbe8hBEXwEwe4C3Pp33Z1JoFCYfVL4kTOMLKk0ZZxREIeA==}
  1371. peerDependencies:
  1372. vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0
  1373. vite-plugin-html@3.2.2:
  1374. resolution: {integrity: sha512-vb9C9kcdzcIo/Oc3CLZVS03dL5pDlOFuhGlZYDCJ840BhWl/0nGeZWf3Qy7NlOayscY4Cm/QRgULCQkEZige5Q==}
  1375. peerDependencies:
  1376. vite: '>=2.0.0'
  1377. vite-plugin-inspect@0.8.8:
  1378. resolution: {integrity: sha512-aZlBuXsWUPJFmMK92GIv6lH7LrwG2POu4KJ+aEdcqnu92OAf+rhBnfMDQvxIJPEB7hE2t5EyY/PMgf5aDLT8EA==}
  1379. engines: {node: '>=14'}
  1380. peerDependencies:
  1381. '@nuxt/kit': '*'
  1382. vite: ^3.1.0 || ^4.0.0 || ^5.0.0-0
  1383. peerDependenciesMeta:
  1384. '@nuxt/kit':
  1385. optional: true
  1386. vite-plugin-vue-devtools@7.6.7:
  1387. resolution: {integrity: sha512-H1ZyjtpWjP5mHA5R15sQeYgAARuh2Myg3TDFXWZK6QOQRy8s3XjTIt319DogVjU/x3rC3L/jJQjIasRU04mWXA==}
  1388. engines: {node: '>=v14.21.3'}
  1389. peerDependencies:
  1390. vite: ^3.1.0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0
  1391. vite-plugin-vue-inspector@5.3.1:
  1392. resolution: {integrity: sha512-cBk172kZKTdvGpJuzCCLg8lJ909wopwsu3Ve9FsL1XsnLBiRT9U3MePcqrgGHgCX2ZgkqZmAGR8taxw+TV6s7A==}
  1393. peerDependencies:
  1394. vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0
  1395. vite@5.4.11:
  1396. resolution: {integrity: sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==}
  1397. engines: {node: ^18.0.0 || >=20.0.0}
  1398. hasBin: true
  1399. peerDependencies:
  1400. '@types/node': ^18.0.0 || >=20.0.0
  1401. less: '*'
  1402. lightningcss: ^1.21.0
  1403. sass: '*'
  1404. sass-embedded: '*'
  1405. stylus: '*'
  1406. sugarss: '*'
  1407. terser: ^5.4.0
  1408. peerDependenciesMeta:
  1409. '@types/node':
  1410. optional: true
  1411. less:
  1412. optional: true
  1413. lightningcss:
  1414. optional: true
  1415. sass:
  1416. optional: true
  1417. sass-embedded:
  1418. optional: true
  1419. stylus:
  1420. optional: true
  1421. sugarss:
  1422. optional: true
  1423. terser:
  1424. optional: true
  1425. vscode-uri@3.0.8:
  1426. resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==}
  1427. vue-demi@0.14.10:
  1428. resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==}
  1429. engines: {node: '>=12'}
  1430. hasBin: true
  1431. peerDependencies:
  1432. '@vue/composition-api': ^1.0.0-rc.1
  1433. vue: ^3.0.0-0 || ^2.6.0
  1434. peerDependenciesMeta:
  1435. '@vue/composition-api':
  1436. optional: true
  1437. vue-qrcode@2.2.2:
  1438. resolution: {integrity: sha512-SbrXq/mSb1g2tbDyXPe9gy9KiMYsvxWKRErlpij1BqiFoHwQckheZV63CTw6yRLLUVG2RXAVlX+APkpdCK7SQQ==}
  1439. peerDependencies:
  1440. qrcode: ^1.0.0
  1441. vue: ^2.7.0 || ^3.0.0
  1442. vue-router@4.5.0:
  1443. resolution: {integrity: sha512-HDuk+PuH5monfNuY+ct49mNmkCRK4xJAV9Ts4z9UFc4rzdDnxQLyCMGGc8pKhZhHTVzfanpNwB/lwqevcBwI4w==}
  1444. peerDependencies:
  1445. vue: ^3.2.0
  1446. vue-tsc@2.1.10:
  1447. resolution: {integrity: sha512-RBNSfaaRHcN5uqVqJSZh++Gy/YUzryuv9u1aFWhsammDJXNtUiJMNoJ747lZcQ68wUQFx6E73y4FY3D8E7FGMA==}
  1448. hasBin: true
  1449. peerDependencies:
  1450. typescript: '>=5.0.0'
  1451. vue3-video-play@1.3.2:
  1452. resolution: {integrity: sha512-eEwCJ0NIkfVQgTj0I3Kf9b1E/04Qne8mQQiE8r77BocblHsZ2T6af3q8l8Zzs/OvjlpQAQvkN/ACVUOJC3RSXg==}
  1453. vue@3.5.13:
  1454. resolution: {integrity: sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==}
  1455. peerDependencies:
  1456. typescript: '*'
  1457. peerDependenciesMeta:
  1458. typescript:
  1459. optional: true
  1460. webpack-virtual-modules@0.6.2:
  1461. resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
  1462. which-module@2.0.1:
  1463. resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==}
  1464. which@2.0.2:
  1465. resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
  1466. engines: {node: '>= 8'}
  1467. hasBin: true
  1468. which@5.0.0:
  1469. resolution: {integrity: sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==}
  1470. engines: {node: ^18.17.0 || >=20.5.0}
  1471. hasBin: true
  1472. wrap-ansi@6.2.0:
  1473. resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
  1474. engines: {node: '>=8'}
  1475. y18n@4.0.3:
  1476. resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==}
  1477. yallist@3.1.1:
  1478. resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
  1479. yargs-parser@18.1.3:
  1480. resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==}
  1481. engines: {node: '>=6'}
  1482. yargs@15.4.1:
  1483. resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==}
  1484. engines: {node: '>=8'}
  1485. yoctocolors@2.1.1:
  1486. resolution: {integrity: sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==}
  1487. engines: {node: '>=18'}
  1488. snapshots:
  1489. '@ampproject/remapping@2.3.0':
  1490. dependencies:
  1491. '@jridgewell/gen-mapping': 0.3.5
  1492. '@jridgewell/trace-mapping': 0.3.25
  1493. '@antfu/utils@0.7.10': {}
  1494. '@babel/code-frame@7.26.2':
  1495. dependencies:
  1496. '@babel/helper-validator-identifier': 7.25.9
  1497. js-tokens: 4.0.0
  1498. picocolors: 1.1.1
  1499. '@babel/compat-data@7.26.2': {}
  1500. '@babel/core@7.26.0':
  1501. dependencies:
  1502. '@ampproject/remapping': 2.3.0
  1503. '@babel/code-frame': 7.26.2
  1504. '@babel/generator': 7.26.2
  1505. '@babel/helper-compilation-targets': 7.25.9
  1506. '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
  1507. '@babel/helpers': 7.26.0
  1508. '@babel/parser': 7.26.2
  1509. '@babel/template': 7.25.9
  1510. '@babel/traverse': 7.25.9
  1511. '@babel/types': 7.26.0
  1512. convert-source-map: 2.0.0
  1513. debug: 4.3.7
  1514. gensync: 1.0.0-beta.2
  1515. json5: 2.2.3
  1516. semver: 6.3.1
  1517. transitivePeerDependencies:
  1518. - supports-color
  1519. '@babel/generator@7.26.2':
  1520. dependencies:
  1521. '@babel/parser': 7.26.2
  1522. '@babel/types': 7.26.0
  1523. '@jridgewell/gen-mapping': 0.3.5
  1524. '@jridgewell/trace-mapping': 0.3.25
  1525. jsesc: 3.0.2
  1526. '@babel/helper-annotate-as-pure@7.25.9':
  1527. dependencies:
  1528. '@babel/types': 7.26.0
  1529. '@babel/helper-compilation-targets@7.25.9':
  1530. dependencies:
  1531. '@babel/compat-data': 7.26.2
  1532. '@babel/helper-validator-option': 7.25.9
  1533. browserslist: 4.24.2
  1534. lru-cache: 5.1.1
  1535. semver: 6.3.1
  1536. '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.0)':
  1537. dependencies:
  1538. '@babel/core': 7.26.0
  1539. '@babel/helper-annotate-as-pure': 7.25.9
  1540. '@babel/helper-member-expression-to-functions': 7.25.9
  1541. '@babel/helper-optimise-call-expression': 7.25.9
  1542. '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
  1543. '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
  1544. '@babel/traverse': 7.25.9
  1545. semver: 6.3.1
  1546. transitivePeerDependencies:
  1547. - supports-color
  1548. '@babel/helper-member-expression-to-functions@7.25.9':
  1549. dependencies:
  1550. '@babel/traverse': 7.25.9
  1551. '@babel/types': 7.26.0
  1552. transitivePeerDependencies:
  1553. - supports-color
  1554. '@babel/helper-module-imports@7.25.9':
  1555. dependencies:
  1556. '@babel/traverse': 7.25.9
  1557. '@babel/types': 7.26.0
  1558. transitivePeerDependencies:
  1559. - supports-color
  1560. '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)':
  1561. dependencies:
  1562. '@babel/core': 7.26.0
  1563. '@babel/helper-module-imports': 7.25.9
  1564. '@babel/helper-validator-identifier': 7.25.9
  1565. '@babel/traverse': 7.25.9
  1566. transitivePeerDependencies:
  1567. - supports-color
  1568. '@babel/helper-optimise-call-expression@7.25.9':
  1569. dependencies:
  1570. '@babel/types': 7.26.0
  1571. '@babel/helper-plugin-utils@7.25.9': {}
  1572. '@babel/helper-replace-supers@7.25.9(@babel/core@7.26.0)':
  1573. dependencies:
  1574. '@babel/core': 7.26.0
  1575. '@babel/helper-member-expression-to-functions': 7.25.9
  1576. '@babel/helper-optimise-call-expression': 7.25.9
  1577. '@babel/traverse': 7.25.9
  1578. transitivePeerDependencies:
  1579. - supports-color
  1580. '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
  1581. dependencies:
  1582. '@babel/traverse': 7.25.9
  1583. '@babel/types': 7.26.0
  1584. transitivePeerDependencies:
  1585. - supports-color
  1586. '@babel/helper-string-parser@7.25.9': {}
  1587. '@babel/helper-validator-identifier@7.25.9': {}
  1588. '@babel/helper-validator-option@7.25.9': {}
  1589. '@babel/helpers@7.26.0':
  1590. dependencies:
  1591. '@babel/template': 7.25.9
  1592. '@babel/types': 7.26.0
  1593. '@babel/parser@7.26.2':
  1594. dependencies:
  1595. '@babel/types': 7.26.0
  1596. '@babel/plugin-proposal-decorators@7.25.9(@babel/core@7.26.0)':
  1597. dependencies:
  1598. '@babel/core': 7.26.0
  1599. '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
  1600. '@babel/helper-plugin-utils': 7.25.9
  1601. '@babel/plugin-syntax-decorators': 7.25.9(@babel/core@7.26.0)
  1602. transitivePeerDependencies:
  1603. - supports-color
  1604. '@babel/plugin-syntax-decorators@7.25.9(@babel/core@7.26.0)':
  1605. dependencies:
  1606. '@babel/core': 7.26.0
  1607. '@babel/helper-plugin-utils': 7.25.9
  1608. '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.0)':
  1609. dependencies:
  1610. '@babel/core': 7.26.0
  1611. '@babel/helper-plugin-utils': 7.25.9
  1612. '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.0)':
  1613. dependencies:
  1614. '@babel/core': 7.26.0
  1615. '@babel/helper-plugin-utils': 7.25.9
  1616. '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0)':
  1617. dependencies:
  1618. '@babel/core': 7.26.0
  1619. '@babel/helper-plugin-utils': 7.25.9
  1620. '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.0)':
  1621. dependencies:
  1622. '@babel/core': 7.26.0
  1623. '@babel/helper-plugin-utils': 7.25.9
  1624. '@babel/plugin-transform-typescript@7.25.9(@babel/core@7.26.0)':
  1625. dependencies:
  1626. '@babel/core': 7.26.0
  1627. '@babel/helper-annotate-as-pure': 7.25.9
  1628. '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
  1629. '@babel/helper-plugin-utils': 7.25.9
  1630. '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
  1631. '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0)
  1632. transitivePeerDependencies:
  1633. - supports-color
  1634. '@babel/template@7.25.9':
  1635. dependencies:
  1636. '@babel/code-frame': 7.26.2
  1637. '@babel/parser': 7.26.2
  1638. '@babel/types': 7.26.0
  1639. '@babel/traverse@7.25.9':
  1640. dependencies:
  1641. '@babel/code-frame': 7.26.2
  1642. '@babel/generator': 7.26.2
  1643. '@babel/parser': 7.26.2
  1644. '@babel/template': 7.25.9
  1645. '@babel/types': 7.26.0
  1646. debug: 4.3.7
  1647. globals: 11.12.0
  1648. transitivePeerDependencies:
  1649. - supports-color
  1650. '@babel/types@7.26.0':
  1651. dependencies:
  1652. '@babel/helper-string-parser': 7.25.9
  1653. '@babel/helper-validator-identifier': 7.25.9
  1654. '@ctrl/tinycolor@3.6.1': {}
  1655. '@element-plus/icons-vue@2.3.1(vue@3.5.13(typescript@5.6.3))':
  1656. dependencies:
  1657. vue: 3.5.13(typescript@5.6.3)
  1658. '@esbuild/aix-ppc64@0.21.5':
  1659. optional: true
  1660. '@esbuild/android-arm64@0.21.5':
  1661. optional: true
  1662. '@esbuild/android-arm@0.21.5':
  1663. optional: true
  1664. '@esbuild/android-x64@0.21.5':
  1665. optional: true
  1666. '@esbuild/darwin-arm64@0.21.5':
  1667. optional: true
  1668. '@esbuild/darwin-x64@0.21.5':
  1669. optional: true
  1670. '@esbuild/freebsd-arm64@0.21.5':
  1671. optional: true
  1672. '@esbuild/freebsd-x64@0.21.5':
  1673. optional: true
  1674. '@esbuild/linux-arm64@0.21.5':
  1675. optional: true
  1676. '@esbuild/linux-arm@0.21.5':
  1677. optional: true
  1678. '@esbuild/linux-ia32@0.21.5':
  1679. optional: true
  1680. '@esbuild/linux-loong64@0.21.5':
  1681. optional: true
  1682. '@esbuild/linux-mips64el@0.21.5':
  1683. optional: true
  1684. '@esbuild/linux-ppc64@0.21.5':
  1685. optional: true
  1686. '@esbuild/linux-riscv64@0.21.5':
  1687. optional: true
  1688. '@esbuild/linux-s390x@0.21.5':
  1689. optional: true
  1690. '@esbuild/linux-x64@0.21.5':
  1691. optional: true
  1692. '@esbuild/netbsd-x64@0.21.5':
  1693. optional: true
  1694. '@esbuild/openbsd-x64@0.21.5':
  1695. optional: true
  1696. '@esbuild/sunos-x64@0.21.5':
  1697. optional: true
  1698. '@esbuild/win32-arm64@0.21.5':
  1699. optional: true
  1700. '@esbuild/win32-ia32@0.21.5':
  1701. optional: true
  1702. '@esbuild/win32-x64@0.21.5':
  1703. optional: true
  1704. '@floating-ui/core@1.6.8':
  1705. dependencies:
  1706. '@floating-ui/utils': 0.2.8
  1707. '@floating-ui/dom@1.6.12':
  1708. dependencies:
  1709. '@floating-ui/core': 1.6.8
  1710. '@floating-ui/utils': 0.2.8
  1711. '@floating-ui/utils@0.2.8': {}
  1712. '@jridgewell/gen-mapping@0.3.5':
  1713. dependencies:
  1714. '@jridgewell/set-array': 1.2.1
  1715. '@jridgewell/sourcemap-codec': 1.5.0
  1716. '@jridgewell/trace-mapping': 0.3.25
  1717. '@jridgewell/resolve-uri@3.1.2': {}
  1718. '@jridgewell/set-array@1.2.1': {}
  1719. '@jridgewell/source-map@0.3.6':
  1720. dependencies:
  1721. '@jridgewell/gen-mapping': 0.3.5
  1722. '@jridgewell/trace-mapping': 0.3.25
  1723. '@jridgewell/sourcemap-codec@1.5.0': {}
  1724. '@jridgewell/trace-mapping@0.3.25':
  1725. dependencies:
  1726. '@jridgewell/resolve-uri': 3.1.2
  1727. '@jridgewell/sourcemap-codec': 1.5.0
  1728. '@nodelib/fs.scandir@2.1.5':
  1729. dependencies:
  1730. '@nodelib/fs.stat': 2.0.5
  1731. run-parallel: 1.2.0
  1732. '@nodelib/fs.stat@2.0.5': {}
  1733. '@nodelib/fs.walk@1.2.8':
  1734. dependencies:
  1735. '@nodelib/fs.scandir': 2.1.5
  1736. fastq: 1.17.1
  1737. '@parcel/watcher-android-arm64@2.5.0':
  1738. optional: true
  1739. '@parcel/watcher-darwin-arm64@2.5.0':
  1740. optional: true
  1741. '@parcel/watcher-darwin-x64@2.5.0':
  1742. optional: true
  1743. '@parcel/watcher-freebsd-x64@2.5.0':
  1744. optional: true
  1745. '@parcel/watcher-linux-arm-glibc@2.5.0':
  1746. optional: true
  1747. '@parcel/watcher-linux-arm-musl@2.5.0':
  1748. optional: true
  1749. '@parcel/watcher-linux-arm64-glibc@2.5.0':
  1750. optional: true
  1751. '@parcel/watcher-linux-arm64-musl@2.5.0':
  1752. optional: true
  1753. '@parcel/watcher-linux-x64-glibc@2.5.0':
  1754. optional: true
  1755. '@parcel/watcher-linux-x64-musl@2.5.0':
  1756. optional: true
  1757. '@parcel/watcher-win32-arm64@2.5.0':
  1758. optional: true
  1759. '@parcel/watcher-win32-ia32@2.5.0':
  1760. optional: true
  1761. '@parcel/watcher-win32-x64@2.5.0':
  1762. optional: true
  1763. '@parcel/watcher@2.5.0':
  1764. dependencies:
  1765. detect-libc: 1.0.3
  1766. is-glob: 4.0.3
  1767. micromatch: 4.0.8
  1768. node-addon-api: 7.1.1
  1769. optionalDependencies:
  1770. '@parcel/watcher-android-arm64': 2.5.0
  1771. '@parcel/watcher-darwin-arm64': 2.5.0
  1772. '@parcel/watcher-darwin-x64': 2.5.0
  1773. '@parcel/watcher-freebsd-x64': 2.5.0
  1774. '@parcel/watcher-linux-arm-glibc': 2.5.0
  1775. '@parcel/watcher-linux-arm-musl': 2.5.0
  1776. '@parcel/watcher-linux-arm64-glibc': 2.5.0
  1777. '@parcel/watcher-linux-arm64-musl': 2.5.0
  1778. '@parcel/watcher-linux-x64-glibc': 2.5.0
  1779. '@parcel/watcher-linux-x64-musl': 2.5.0
  1780. '@parcel/watcher-win32-arm64': 2.5.0
  1781. '@parcel/watcher-win32-ia32': 2.5.0
  1782. '@parcel/watcher-win32-x64': 2.5.0
  1783. optional: true
  1784. '@polka/url@1.0.0-next.28': {}
  1785. '@rollup/pluginutils@4.2.1':
  1786. dependencies:
  1787. estree-walker: 2.0.2
  1788. picomatch: 2.3.1
  1789. '@rollup/pluginutils@5.1.3(rollup@4.28.0)':
  1790. dependencies:
  1791. '@types/estree': 1.0.6
  1792. estree-walker: 2.0.2
  1793. picomatch: 4.0.2
  1794. optionalDependencies:
  1795. rollup: 4.28.0
  1796. '@rollup/rollup-android-arm-eabi@4.28.0':
  1797. optional: true
  1798. '@rollup/rollup-android-arm64@4.28.0':
  1799. optional: true
  1800. '@rollup/rollup-darwin-arm64@4.28.0':
  1801. optional: true
  1802. '@rollup/rollup-darwin-x64@4.28.0':
  1803. optional: true
  1804. '@rollup/rollup-freebsd-arm64@4.28.0':
  1805. optional: true
  1806. '@rollup/rollup-freebsd-x64@4.28.0':
  1807. optional: true
  1808. '@rollup/rollup-linux-arm-gnueabihf@4.28.0':
  1809. optional: true
  1810. '@rollup/rollup-linux-arm-musleabihf@4.28.0':
  1811. optional: true
  1812. '@rollup/rollup-linux-arm64-gnu@4.28.0':
  1813. optional: true
  1814. '@rollup/rollup-linux-arm64-musl@4.28.0':
  1815. optional: true
  1816. '@rollup/rollup-linux-powerpc64le-gnu@4.28.0':
  1817. optional: true
  1818. '@rollup/rollup-linux-riscv64-gnu@4.28.0':
  1819. optional: true
  1820. '@rollup/rollup-linux-s390x-gnu@4.28.0':
  1821. optional: true
  1822. '@rollup/rollup-linux-x64-gnu@4.28.0':
  1823. optional: true
  1824. '@rollup/rollup-linux-x64-musl@4.28.0':
  1825. optional: true
  1826. '@rollup/rollup-win32-arm64-msvc@4.28.0':
  1827. optional: true
  1828. '@rollup/rollup-win32-ia32-msvc@4.28.0':
  1829. optional: true
  1830. '@rollup/rollup-win32-x64-msvc@4.28.0':
  1831. optional: true
  1832. '@sec-ant/readable-stream@0.4.1': {}
  1833. '@sindresorhus/merge-streams@4.0.0': {}
  1834. '@sxzz/popperjs-es@2.11.7': {}
  1835. '@tsconfig/node22@22.0.0': {}
  1836. '@types/estree@1.0.6': {}
  1837. '@types/lodash-es@4.17.12':
  1838. dependencies:
  1839. '@types/lodash': 4.17.13
  1840. '@types/lodash@4.17.13': {}
  1841. '@types/node@22.10.1':
  1842. dependencies:
  1843. undici-types: 6.20.0
  1844. '@types/web-bluetooth@0.0.16': {}
  1845. '@vitejs/plugin-vue-jsx@4.1.1(vite@5.4.11(@types/node@22.10.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0))(vue@3.5.13(typescript@5.6.3))':
  1846. dependencies:
  1847. '@babel/core': 7.26.0
  1848. '@babel/plugin-transform-typescript': 7.25.9(@babel/core@7.26.0)
  1849. '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.0)
  1850. vite: 5.4.11(@types/node@22.10.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)
  1851. vue: 3.5.13(typescript@5.6.3)
  1852. transitivePeerDependencies:
  1853. - supports-color
  1854. '@vitejs/plugin-vue@5.2.1(vite@5.4.11(@types/node@22.10.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0))(vue@3.5.13(typescript@5.6.3))':
  1855. dependencies:
  1856. vite: 5.4.11(@types/node@22.10.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)
  1857. vue: 3.5.13(typescript@5.6.3)
  1858. '@volar/language-core@2.4.10':
  1859. dependencies:
  1860. '@volar/source-map': 2.4.10
  1861. '@volar/source-map@2.4.10': {}
  1862. '@volar/typescript@2.4.10':
  1863. dependencies:
  1864. '@volar/language-core': 2.4.10
  1865. path-browserify: 1.0.1
  1866. vscode-uri: 3.0.8
  1867. '@vue/babel-helper-vue-transform-on@1.2.5': {}
  1868. '@vue/babel-plugin-jsx@1.2.5(@babel/core@7.26.0)':
  1869. dependencies:
  1870. '@babel/helper-module-imports': 7.25.9
  1871. '@babel/helper-plugin-utils': 7.25.9
  1872. '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
  1873. '@babel/template': 7.25.9
  1874. '@babel/traverse': 7.25.9
  1875. '@babel/types': 7.26.0
  1876. '@vue/babel-helper-vue-transform-on': 1.2.5
  1877. '@vue/babel-plugin-resolve-type': 1.2.5(@babel/core@7.26.0)
  1878. html-tags: 3.3.1
  1879. svg-tags: 1.0.0
  1880. optionalDependencies:
  1881. '@babel/core': 7.26.0
  1882. transitivePeerDependencies:
  1883. - supports-color
  1884. '@vue/babel-plugin-resolve-type@1.2.5(@babel/core@7.26.0)':
  1885. dependencies:
  1886. '@babel/code-frame': 7.26.2
  1887. '@babel/core': 7.26.0
  1888. '@babel/helper-module-imports': 7.25.9
  1889. '@babel/helper-plugin-utils': 7.25.9
  1890. '@babel/parser': 7.26.2
  1891. '@vue/compiler-sfc': 3.5.13
  1892. transitivePeerDependencies:
  1893. - supports-color
  1894. '@vue/compiler-core@3.5.13':
  1895. dependencies:
  1896. '@babel/parser': 7.26.2
  1897. '@vue/shared': 3.5.13
  1898. entities: 4.5.0
  1899. estree-walker: 2.0.2
  1900. source-map-js: 1.2.1
  1901. '@vue/compiler-dom@3.5.13':
  1902. dependencies:
  1903. '@vue/compiler-core': 3.5.13
  1904. '@vue/shared': 3.5.13
  1905. '@vue/compiler-sfc@3.5.13':
  1906. dependencies:
  1907. '@babel/parser': 7.26.2
  1908. '@vue/compiler-core': 3.5.13
  1909. '@vue/compiler-dom': 3.5.13
  1910. '@vue/compiler-ssr': 3.5.13
  1911. '@vue/shared': 3.5.13
  1912. estree-walker: 2.0.2
  1913. magic-string: 0.30.14
  1914. postcss: 8.4.49
  1915. source-map-js: 1.2.1
  1916. '@vue/compiler-ssr@3.5.13':
  1917. dependencies:
  1918. '@vue/compiler-dom': 3.5.13
  1919. '@vue/shared': 3.5.13
  1920. '@vue/compiler-vue2@2.7.16':
  1921. dependencies:
  1922. de-indent: 1.0.2
  1923. he: 1.2.0
  1924. '@vue/devtools-api@6.6.4': {}
  1925. '@vue/devtools-core@7.6.7(vite@5.4.11(@types/node@22.10.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0))(vue@3.5.13(typescript@5.6.3))':
  1926. dependencies:
  1927. '@vue/devtools-kit': 7.6.7
  1928. '@vue/devtools-shared': 7.6.7
  1929. mitt: 3.0.1
  1930. nanoid: 5.0.9
  1931. pathe: 1.1.2
  1932. vite-hot-client: 0.2.4(vite@5.4.11(@types/node@22.10.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0))
  1933. vue: 3.5.13(typescript@5.6.3)
  1934. transitivePeerDependencies:
  1935. - vite
  1936. '@vue/devtools-kit@7.6.7':
  1937. dependencies:
  1938. '@vue/devtools-shared': 7.6.7
  1939. birpc: 0.2.19
  1940. hookable: 5.5.3
  1941. mitt: 3.0.1
  1942. perfect-debounce: 1.0.0
  1943. speakingurl: 14.0.1
  1944. superjson: 2.2.1
  1945. '@vue/devtools-shared@7.6.7':
  1946. dependencies:
  1947. rfdc: 1.4.1
  1948. '@vue/language-core@2.1.10(typescript@5.6.3)':
  1949. dependencies:
  1950. '@volar/language-core': 2.4.10
  1951. '@vue/compiler-dom': 3.5.13
  1952. '@vue/compiler-vue2': 2.7.16
  1953. '@vue/shared': 3.5.13
  1954. alien-signals: 0.2.2
  1955. minimatch: 9.0.5
  1956. muggle-string: 0.4.1
  1957. path-browserify: 1.0.1
  1958. optionalDependencies:
  1959. typescript: 5.6.3
  1960. '@vue/reactivity@3.5.13':
  1961. dependencies:
  1962. '@vue/shared': 3.5.13
  1963. '@vue/runtime-core@3.5.13':
  1964. dependencies:
  1965. '@vue/reactivity': 3.5.13
  1966. '@vue/shared': 3.5.13
  1967. '@vue/runtime-dom@3.5.13':
  1968. dependencies:
  1969. '@vue/reactivity': 3.5.13
  1970. '@vue/runtime-core': 3.5.13
  1971. '@vue/shared': 3.5.13
  1972. csstype: 3.1.3
  1973. '@vue/server-renderer@3.5.13(vue@3.5.13(typescript@5.6.3))':
  1974. dependencies:
  1975. '@vue/compiler-ssr': 3.5.13
  1976. '@vue/shared': 3.5.13
  1977. vue: 3.5.13(typescript@5.6.3)
  1978. '@vue/shared@3.5.13': {}
  1979. '@vue/tsconfig@0.5.1': {}
  1980. '@vueuse/core@9.13.0(vue@3.5.13(typescript@5.6.3))':
  1981. dependencies:
  1982. '@types/web-bluetooth': 0.0.16
  1983. '@vueuse/metadata': 9.13.0
  1984. '@vueuse/shared': 9.13.0(vue@3.5.13(typescript@5.6.3))
  1985. vue-demi: 0.14.10(vue@3.5.13(typescript@5.6.3))
  1986. transitivePeerDependencies:
  1987. - '@vue/composition-api'
  1988. - vue
  1989. '@vueuse/metadata@9.13.0': {}
  1990. '@vueuse/shared@9.13.0(vue@3.5.13(typescript@5.6.3))':
  1991. dependencies:
  1992. vue-demi: 0.14.10(vue@3.5.13(typescript@5.6.3))
  1993. transitivePeerDependencies:
  1994. - '@vue/composition-api'
  1995. - vue
  1996. acorn@8.14.0: {}
  1997. alien-signals@0.2.2: {}
  1998. ansi-regex@5.0.1: {}
  1999. ansi-styles@4.3.0:
  2000. dependencies:
  2001. color-convert: 2.0.1
  2002. ansi-styles@6.2.1: {}
  2003. anymatch@3.1.3:
  2004. dependencies:
  2005. normalize-path: 3.0.0
  2006. picomatch: 2.3.1
  2007. async-validator@4.2.5: {}
  2008. async@3.2.6: {}
  2009. asynckit@0.4.0: {}
  2010. axios@1.7.8:
  2011. dependencies:
  2012. follow-redirects: 1.15.9
  2013. form-data: 4.0.1
  2014. proxy-from-env: 1.1.0
  2015. transitivePeerDependencies:
  2016. - debug
  2017. balanced-match@1.0.2: {}
  2018. binary-extensions@2.3.0: {}
  2019. birpc@0.2.19: {}
  2020. boolbase@1.0.0: {}
  2021. brace-expansion@1.1.11:
  2022. dependencies:
  2023. balanced-match: 1.0.2
  2024. concat-map: 0.0.1
  2025. brace-expansion@2.0.1:
  2026. dependencies:
  2027. balanced-match: 1.0.2
  2028. braces@3.0.3:
  2029. dependencies:
  2030. fill-range: 7.1.1
  2031. browserslist@4.24.2:
  2032. dependencies:
  2033. caniuse-lite: 1.0.30001686
  2034. electron-to-chromium: 1.5.68
  2035. node-releases: 2.0.18
  2036. update-browserslist-db: 1.1.1(browserslist@4.24.2)
  2037. buffer-from@1.1.2: {}
  2038. bundle-name@4.1.0:
  2039. dependencies:
  2040. run-applescript: 7.0.0
  2041. camel-case@4.1.2:
  2042. dependencies:
  2043. pascal-case: 3.1.2
  2044. tslib: 2.8.1
  2045. camelcase@5.3.1: {}
  2046. caniuse-lite@1.0.30001686: {}
  2047. chalk@4.1.2:
  2048. dependencies:
  2049. ansi-styles: 4.3.0
  2050. supports-color: 7.2.0
  2051. chokidar@3.6.0:
  2052. dependencies:
  2053. anymatch: 3.1.3
  2054. braces: 3.0.3
  2055. glob-parent: 5.1.2
  2056. is-binary-path: 2.1.0
  2057. is-glob: 4.0.3
  2058. normalize-path: 3.0.0
  2059. readdirp: 3.6.0
  2060. optionalDependencies:
  2061. fsevents: 2.3.3
  2062. chokidar@4.0.1:
  2063. dependencies:
  2064. readdirp: 4.0.2
  2065. clean-css@5.3.3:
  2066. dependencies:
  2067. source-map: 0.6.1
  2068. clipboard@2.0.11:
  2069. dependencies:
  2070. good-listener: 1.2.2
  2071. select: 1.1.2
  2072. tiny-emitter: 2.1.0
  2073. cliui@6.0.0:
  2074. dependencies:
  2075. string-width: 4.2.3
  2076. strip-ansi: 6.0.1
  2077. wrap-ansi: 6.2.0
  2078. color-convert@2.0.1:
  2079. dependencies:
  2080. color-name: 1.1.4
  2081. color-name@1.1.4: {}
  2082. colorette@2.0.20: {}
  2083. combined-stream@1.0.8:
  2084. dependencies:
  2085. delayed-stream: 1.0.0
  2086. commander@2.20.3: {}
  2087. commander@8.3.0: {}
  2088. concat-map@0.0.1: {}
  2089. confbox@0.1.8: {}
  2090. connect-history-api-fallback@1.6.0: {}
  2091. consola@2.15.3: {}
  2092. convert-source-map@2.0.0: {}
  2093. copy-anything@2.0.6:
  2094. dependencies:
  2095. is-what: 3.14.1
  2096. copy-anything@3.0.5:
  2097. dependencies:
  2098. is-what: 4.1.16
  2099. cross-env@7.0.3:
  2100. dependencies:
  2101. cross-spawn: 7.0.6
  2102. cross-spawn@7.0.6:
  2103. dependencies:
  2104. path-key: 3.1.1
  2105. shebang-command: 2.0.0
  2106. which: 2.0.2
  2107. css-select@4.3.0:
  2108. dependencies:
  2109. boolbase: 1.0.0
  2110. css-what: 6.1.0
  2111. domhandler: 4.3.1
  2112. domutils: 2.8.0
  2113. nth-check: 2.1.1
  2114. css-what@6.1.0: {}
  2115. csstype@3.1.3: {}
  2116. dayjs@1.11.13: {}
  2117. de-indent@1.0.2: {}
  2118. debug@4.3.7:
  2119. dependencies:
  2120. ms: 2.1.3
  2121. decamelize@1.2.0: {}
  2122. decode-uri-component@0.4.1: {}
  2123. default-browser-id@5.0.0: {}
  2124. default-browser@5.2.1:
  2125. dependencies:
  2126. bundle-name: 4.1.0
  2127. default-browser-id: 5.0.0
  2128. define-lazy-prop@3.0.0: {}
  2129. delayed-stream@1.0.0: {}
  2130. delegate@3.2.0: {}
  2131. detect-libc@1.0.3:
  2132. optional: true
  2133. dijkstrajs@1.0.3: {}
  2134. dom-serializer@1.4.1:
  2135. dependencies:
  2136. domelementtype: 2.3.0
  2137. domhandler: 4.3.1
  2138. entities: 2.2.0
  2139. domelementtype@2.3.0: {}
  2140. domhandler@4.3.1:
  2141. dependencies:
  2142. domelementtype: 2.3.0
  2143. domutils@2.8.0:
  2144. dependencies:
  2145. dom-serializer: 1.4.1
  2146. domelementtype: 2.3.0
  2147. domhandler: 4.3.1
  2148. dot-case@3.0.4:
  2149. dependencies:
  2150. no-case: 3.0.4
  2151. tslib: 2.8.1
  2152. dotenv-expand@8.0.3: {}
  2153. dotenv@16.4.7: {}
  2154. ejs@3.1.10:
  2155. dependencies:
  2156. jake: 10.9.2
  2157. electron-to-chromium@1.5.68: {}
  2158. element-plus@2.9.0(vue@3.5.13(typescript@5.6.3)):
  2159. dependencies:
  2160. '@ctrl/tinycolor': 3.6.1
  2161. '@element-plus/icons-vue': 2.3.1(vue@3.5.13(typescript@5.6.3))
  2162. '@floating-ui/dom': 1.6.12
  2163. '@popperjs/core': '@sxzz/popperjs-es@2.11.7'
  2164. '@types/lodash': 4.17.13
  2165. '@types/lodash-es': 4.17.12
  2166. '@vueuse/core': 9.13.0(vue@3.5.13(typescript@5.6.3))
  2167. async-validator: 4.2.5
  2168. dayjs: 1.11.13
  2169. escape-html: 1.0.3
  2170. lodash: 4.17.21
  2171. lodash-es: 4.17.21
  2172. lodash-unified: 1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.21)(lodash@4.17.21)
  2173. memoize-one: 6.0.0
  2174. normalize-wheel-es: 1.2.0
  2175. vue: 3.5.13(typescript@5.6.3)
  2176. transitivePeerDependencies:
  2177. - '@vue/composition-api'
  2178. emoji-regex@8.0.0: {}
  2179. entities@2.2.0: {}
  2180. entities@4.5.0: {}
  2181. errno@0.1.8:
  2182. dependencies:
  2183. prr: 1.0.1
  2184. optional: true
  2185. error-stack-parser-es@0.1.5: {}
  2186. esbuild@0.21.5:
  2187. optionalDependencies:
  2188. '@esbuild/aix-ppc64': 0.21.5
  2189. '@esbuild/android-arm': 0.21.5
  2190. '@esbuild/android-arm64': 0.21.5
  2191. '@esbuild/android-x64': 0.21.5
  2192. '@esbuild/darwin-arm64': 0.21.5
  2193. '@esbuild/darwin-x64': 0.21.5
  2194. '@esbuild/freebsd-arm64': 0.21.5
  2195. '@esbuild/freebsd-x64': 0.21.5
  2196. '@esbuild/linux-arm': 0.21.5
  2197. '@esbuild/linux-arm64': 0.21.5
  2198. '@esbuild/linux-ia32': 0.21.5
  2199. '@esbuild/linux-loong64': 0.21.5
  2200. '@esbuild/linux-mips64el': 0.21.5
  2201. '@esbuild/linux-ppc64': 0.21.5
  2202. '@esbuild/linux-riscv64': 0.21.5
  2203. '@esbuild/linux-s390x': 0.21.5
  2204. '@esbuild/linux-x64': 0.21.5
  2205. '@esbuild/netbsd-x64': 0.21.5
  2206. '@esbuild/openbsd-x64': 0.21.5
  2207. '@esbuild/sunos-x64': 0.21.5
  2208. '@esbuild/win32-arm64': 0.21.5
  2209. '@esbuild/win32-ia32': 0.21.5
  2210. '@esbuild/win32-x64': 0.21.5
  2211. escalade@3.2.0: {}
  2212. escape-html@1.0.3: {}
  2213. escape-string-regexp@5.0.0: {}
  2214. estree-walker@2.0.2: {}
  2215. estree-walker@3.0.3:
  2216. dependencies:
  2217. '@types/estree': 1.0.6
  2218. execa@9.5.1:
  2219. dependencies:
  2220. '@sindresorhus/merge-streams': 4.0.0
  2221. cross-spawn: 7.0.6
  2222. figures: 6.1.0
  2223. get-stream: 9.0.1
  2224. human-signals: 8.0.0
  2225. is-plain-obj: 4.1.0
  2226. is-stream: 4.0.1
  2227. npm-run-path: 6.0.0
  2228. pretty-ms: 9.2.0
  2229. signal-exit: 4.1.0
  2230. strip-final-newline: 4.0.0
  2231. yoctocolors: 2.1.1
  2232. fast-glob@3.3.2:
  2233. dependencies:
  2234. '@nodelib/fs.stat': 2.0.5
  2235. '@nodelib/fs.walk': 1.2.8
  2236. glob-parent: 5.1.2
  2237. merge2: 1.4.1
  2238. micromatch: 4.0.8
  2239. fastq@1.17.1:
  2240. dependencies:
  2241. reusify: 1.0.4
  2242. fdir@6.4.2(picomatch@4.0.2):
  2243. optionalDependencies:
  2244. picomatch: 4.0.2
  2245. figures@6.1.0:
  2246. dependencies:
  2247. is-unicode-supported: 2.1.0
  2248. filelist@1.0.4:
  2249. dependencies:
  2250. minimatch: 5.1.6
  2251. fill-range@7.1.1:
  2252. dependencies:
  2253. to-regex-range: 5.0.1
  2254. filter-obj@5.1.0: {}
  2255. find-up@4.1.0:
  2256. dependencies:
  2257. locate-path: 5.0.0
  2258. path-exists: 4.0.0
  2259. follow-redirects@1.15.9: {}
  2260. form-data@4.0.1:
  2261. dependencies:
  2262. asynckit: 0.4.0
  2263. combined-stream: 1.0.8
  2264. mime-types: 2.1.35
  2265. fs-extra@10.1.0:
  2266. dependencies:
  2267. graceful-fs: 4.2.11
  2268. jsonfile: 6.1.0
  2269. universalify: 2.0.1
  2270. fs-extra@11.2.0:
  2271. dependencies:
  2272. graceful-fs: 4.2.11
  2273. jsonfile: 6.1.0
  2274. universalify: 2.0.1
  2275. fsevents@2.3.3:
  2276. optional: true
  2277. gensync@1.0.0-beta.2: {}
  2278. get-caller-file@2.0.5: {}
  2279. get-stream@9.0.1:
  2280. dependencies:
  2281. '@sec-ant/readable-stream': 0.4.1
  2282. is-stream: 4.0.1
  2283. glob-parent@5.1.2:
  2284. dependencies:
  2285. is-glob: 4.0.3
  2286. globals@11.12.0: {}
  2287. good-listener@1.2.2:
  2288. dependencies:
  2289. delegate: 3.2.0
  2290. graceful-fs@4.2.11: {}
  2291. has-flag@4.0.0: {}
  2292. he@1.2.0: {}
  2293. hls.js@1.5.18: {}
  2294. hookable@5.5.3: {}
  2295. html-minifier-terser@6.1.0:
  2296. dependencies:
  2297. camel-case: 4.1.2
  2298. clean-css: 5.3.3
  2299. commander: 8.3.0
  2300. he: 1.2.0
  2301. param-case: 3.0.4
  2302. relateurl: 0.2.7
  2303. terser: 5.36.0
  2304. html-tags@3.3.1: {}
  2305. human-signals@8.0.0: {}
  2306. iconv-lite@0.6.3:
  2307. dependencies:
  2308. safer-buffer: 2.1.2
  2309. optional: true
  2310. image-size@0.5.5:
  2311. optional: true
  2312. immutable@5.0.3: {}
  2313. is-binary-path@2.1.0:
  2314. dependencies:
  2315. binary-extensions: 2.3.0
  2316. is-docker@3.0.0: {}
  2317. is-extglob@2.1.1: {}
  2318. is-fullwidth-code-point@3.0.0: {}
  2319. is-glob@4.0.3:
  2320. dependencies:
  2321. is-extglob: 2.1.1
  2322. is-inside-container@1.0.0:
  2323. dependencies:
  2324. is-docker: 3.0.0
  2325. is-number@7.0.0: {}
  2326. is-plain-obj@4.1.0: {}
  2327. is-stream@4.0.1: {}
  2328. is-unicode-supported@2.1.0: {}
  2329. is-what@3.14.1: {}
  2330. is-what@4.1.16: {}
  2331. is-wsl@3.1.0:
  2332. dependencies:
  2333. is-inside-container: 1.0.0
  2334. isexe@2.0.0: {}
  2335. isexe@3.1.1: {}
  2336. jake@10.9.2:
  2337. dependencies:
  2338. async: 3.2.6
  2339. chalk: 4.1.2
  2340. filelist: 1.0.4
  2341. minimatch: 3.1.2
  2342. js-tokens@4.0.0: {}
  2343. js-tokens@9.0.1: {}
  2344. jsesc@3.0.2: {}
  2345. json-parse-even-better-errors@4.0.0: {}
  2346. json5@2.2.3: {}
  2347. jsonfile@6.1.0:
  2348. dependencies:
  2349. universalify: 2.0.1
  2350. optionalDependencies:
  2351. graceful-fs: 4.2.11
  2352. kolorist@1.8.0: {}
  2353. less@4.2.1:
  2354. dependencies:
  2355. copy-anything: 2.0.6
  2356. parse-node-version: 1.0.1
  2357. tslib: 2.8.1
  2358. optionalDependencies:
  2359. errno: 0.1.8
  2360. graceful-fs: 4.2.11
  2361. image-size: 0.5.5
  2362. make-dir: 2.1.0
  2363. mime: 1.6.0
  2364. needle: 3.3.1
  2365. source-map: 0.6.1
  2366. local-pkg@0.5.1:
  2367. dependencies:
  2368. mlly: 1.7.3
  2369. pkg-types: 1.2.1
  2370. locate-path@5.0.0:
  2371. dependencies:
  2372. p-locate: 4.1.0
  2373. lodash-es@4.17.21: {}
  2374. lodash-unified@1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.21)(lodash@4.17.21):
  2375. dependencies:
  2376. '@types/lodash-es': 4.17.12
  2377. lodash: 4.17.21
  2378. lodash-es: 4.17.21
  2379. lodash@4.17.21: {}
  2380. lower-case@2.0.2:
  2381. dependencies:
  2382. tslib: 2.8.1
  2383. lru-cache@5.1.1:
  2384. dependencies:
  2385. yallist: 3.1.1
  2386. magic-string@0.30.14:
  2387. dependencies:
  2388. '@jridgewell/sourcemap-codec': 1.5.0
  2389. make-dir@2.1.0:
  2390. dependencies:
  2391. pify: 4.0.1
  2392. semver: 5.7.2
  2393. optional: true
  2394. memoize-one@6.0.0: {}
  2395. memorystream@0.3.1: {}
  2396. merge2@1.4.1: {}
  2397. micromatch@4.0.8:
  2398. dependencies:
  2399. braces: 3.0.3
  2400. picomatch: 2.3.1
  2401. mime-db@1.52.0: {}
  2402. mime-types@2.1.35:
  2403. dependencies:
  2404. mime-db: 1.52.0
  2405. mime@1.6.0:
  2406. optional: true
  2407. minimatch@3.1.2:
  2408. dependencies:
  2409. brace-expansion: 1.1.11
  2410. minimatch@5.1.6:
  2411. dependencies:
  2412. brace-expansion: 2.0.1
  2413. minimatch@9.0.5:
  2414. dependencies:
  2415. brace-expansion: 2.0.1
  2416. mitt@3.0.1: {}
  2417. mlly@1.7.3:
  2418. dependencies:
  2419. acorn: 8.14.0
  2420. pathe: 1.1.2
  2421. pkg-types: 1.2.1
  2422. ufo: 1.5.4
  2423. mrmime@2.0.0: {}
  2424. ms@2.1.3: {}
  2425. muggle-string@0.4.1: {}
  2426. nanoid@3.3.8: {}
  2427. nanoid@5.0.9: {}
  2428. needle@3.3.1:
  2429. dependencies:
  2430. iconv-lite: 0.6.3
  2431. sax: 1.4.1
  2432. optional: true
  2433. no-case@3.0.4:
  2434. dependencies:
  2435. lower-case: 2.0.2
  2436. tslib: 2.8.1
  2437. node-addon-api@7.1.1:
  2438. optional: true
  2439. node-html-parser@5.4.2:
  2440. dependencies:
  2441. css-select: 4.3.0
  2442. he: 1.2.0
  2443. node-releases@2.0.18: {}
  2444. normalize-path@3.0.0: {}
  2445. normalize-wheel-es@1.2.0: {}
  2446. npm-normalize-package-bin@4.0.0: {}
  2447. npm-run-all2@7.0.1:
  2448. dependencies:
  2449. ansi-styles: 6.2.1
  2450. cross-spawn: 7.0.6
  2451. memorystream: 0.3.1
  2452. minimatch: 9.0.5
  2453. pidtree: 0.6.0
  2454. read-package-json-fast: 4.0.0
  2455. shell-quote: 1.8.2
  2456. which: 5.0.0
  2457. npm-run-path@6.0.0:
  2458. dependencies:
  2459. path-key: 4.0.0
  2460. unicorn-magic: 0.3.0
  2461. nth-check@2.1.1:
  2462. dependencies:
  2463. boolbase: 1.0.0
  2464. open@10.1.0:
  2465. dependencies:
  2466. default-browser: 5.2.1
  2467. define-lazy-prop: 3.0.0
  2468. is-inside-container: 1.0.0
  2469. is-wsl: 3.1.0
  2470. p-limit@2.3.0:
  2471. dependencies:
  2472. p-try: 2.2.0
  2473. p-locate@4.1.0:
  2474. dependencies:
  2475. p-limit: 2.3.0
  2476. p-try@2.2.0: {}
  2477. param-case@3.0.4:
  2478. dependencies:
  2479. dot-case: 3.0.4
  2480. tslib: 2.8.1
  2481. parse-ms@4.0.0: {}
  2482. parse-node-version@1.0.1: {}
  2483. pascal-case@3.1.2:
  2484. dependencies:
  2485. no-case: 3.0.4
  2486. tslib: 2.8.1
  2487. path-browserify@1.0.1: {}
  2488. path-exists@4.0.0: {}
  2489. path-key@3.1.1: {}
  2490. path-key@4.0.0: {}
  2491. pathe@0.2.0: {}
  2492. pathe@1.1.2: {}
  2493. perfect-debounce@1.0.0: {}
  2494. picocolors@1.1.1: {}
  2495. picomatch@2.3.1: {}
  2496. picomatch@4.0.2: {}
  2497. pidtree@0.6.0: {}
  2498. pify@4.0.1:
  2499. optional: true
  2500. pinia@2.2.8(typescript@5.6.3)(vue@3.5.13(typescript@5.6.3)):
  2501. dependencies:
  2502. '@vue/devtools-api': 6.6.4
  2503. vue: 3.5.13(typescript@5.6.3)
  2504. vue-demi: 0.14.10(vue@3.5.13(typescript@5.6.3))
  2505. optionalDependencies:
  2506. typescript: 5.6.3
  2507. pkg-types@1.2.1:
  2508. dependencies:
  2509. confbox: 0.1.8
  2510. mlly: 1.7.3
  2511. pathe: 1.1.2
  2512. pngjs@5.0.0: {}
  2513. postcss@8.4.49:
  2514. dependencies:
  2515. nanoid: 3.3.8
  2516. picocolors: 1.1.1
  2517. source-map-js: 1.2.1
  2518. pretty-ms@9.2.0:
  2519. dependencies:
  2520. parse-ms: 4.0.0
  2521. proxy-from-env@1.1.0: {}
  2522. prr@1.0.1:
  2523. optional: true
  2524. qrcode@1.5.4:
  2525. dependencies:
  2526. dijkstrajs: 1.0.3
  2527. pngjs: 5.0.0
  2528. yargs: 15.4.1
  2529. query-string@9.1.1:
  2530. dependencies:
  2531. decode-uri-component: 0.4.1
  2532. filter-obj: 5.1.0
  2533. split-on-first: 3.0.0
  2534. queue-microtask@1.2.3: {}
  2535. read-package-json-fast@4.0.0:
  2536. dependencies:
  2537. json-parse-even-better-errors: 4.0.0
  2538. npm-normalize-package-bin: 4.0.0
  2539. readdirp@3.6.0:
  2540. dependencies:
  2541. picomatch: 2.3.1
  2542. readdirp@4.0.2: {}
  2543. relateurl@0.2.7: {}
  2544. require-directory@2.1.1: {}
  2545. require-main-filename@2.0.0: {}
  2546. reusify@1.0.4: {}
  2547. rfdc@1.4.1: {}
  2548. rollup@4.28.0:
  2549. dependencies:
  2550. '@types/estree': 1.0.6
  2551. optionalDependencies:
  2552. '@rollup/rollup-android-arm-eabi': 4.28.0
  2553. '@rollup/rollup-android-arm64': 4.28.0
  2554. '@rollup/rollup-darwin-arm64': 4.28.0
  2555. '@rollup/rollup-darwin-x64': 4.28.0
  2556. '@rollup/rollup-freebsd-arm64': 4.28.0
  2557. '@rollup/rollup-freebsd-x64': 4.28.0
  2558. '@rollup/rollup-linux-arm-gnueabihf': 4.28.0
  2559. '@rollup/rollup-linux-arm-musleabihf': 4.28.0
  2560. '@rollup/rollup-linux-arm64-gnu': 4.28.0
  2561. '@rollup/rollup-linux-arm64-musl': 4.28.0
  2562. '@rollup/rollup-linux-powerpc64le-gnu': 4.28.0
  2563. '@rollup/rollup-linux-riscv64-gnu': 4.28.0
  2564. '@rollup/rollup-linux-s390x-gnu': 4.28.0
  2565. '@rollup/rollup-linux-x64-gnu': 4.28.0
  2566. '@rollup/rollup-linux-x64-musl': 4.28.0
  2567. '@rollup/rollup-win32-arm64-msvc': 4.28.0
  2568. '@rollup/rollup-win32-ia32-msvc': 4.28.0
  2569. '@rollup/rollup-win32-x64-msvc': 4.28.0
  2570. fsevents: 2.3.3
  2571. run-applescript@7.0.0: {}
  2572. run-parallel@1.2.0:
  2573. dependencies:
  2574. queue-microtask: 1.2.3
  2575. safer-buffer@2.1.2:
  2576. optional: true
  2577. sass@1.82.0:
  2578. dependencies:
  2579. chokidar: 4.0.1
  2580. immutable: 5.0.3
  2581. source-map-js: 1.2.1
  2582. optionalDependencies:
  2583. '@parcel/watcher': 2.5.0
  2584. sax@1.4.1:
  2585. optional: true
  2586. scule@1.3.0: {}
  2587. select@1.1.2: {}
  2588. semver@5.7.2:
  2589. optional: true
  2590. semver@6.3.1: {}
  2591. semver@7.6.3: {}
  2592. set-blocking@2.0.0: {}
  2593. shebang-command@2.0.0:
  2594. dependencies:
  2595. shebang-regex: 3.0.0
  2596. shebang-regex@3.0.0: {}
  2597. shell-quote@1.8.2: {}
  2598. signal-exit@4.1.0: {}
  2599. sirv@3.0.0:
  2600. dependencies:
  2601. '@polka/url': 1.0.0-next.28
  2602. mrmime: 2.0.0
  2603. totalist: 3.0.1
  2604. source-map-js@1.2.1: {}
  2605. source-map-support@0.5.21:
  2606. dependencies:
  2607. buffer-from: 1.1.2
  2608. source-map: 0.6.1
  2609. source-map@0.6.1: {}
  2610. speakingurl@14.0.1: {}
  2611. split-on-first@3.0.0: {}
  2612. string-width@4.2.3:
  2613. dependencies:
  2614. emoji-regex: 8.0.0
  2615. is-fullwidth-code-point: 3.0.0
  2616. strip-ansi: 6.0.1
  2617. strip-ansi@6.0.1:
  2618. dependencies:
  2619. ansi-regex: 5.0.1
  2620. strip-final-newline@4.0.0: {}
  2621. strip-literal@2.1.1:
  2622. dependencies:
  2623. js-tokens: 9.0.1
  2624. superjson@2.2.1:
  2625. dependencies:
  2626. copy-anything: 3.0.5
  2627. supports-color@7.2.0:
  2628. dependencies:
  2629. has-flag: 4.0.0
  2630. svg-tags@1.0.0: {}
  2631. swiper@11.1.15: {}
  2632. terser@5.36.0:
  2633. dependencies:
  2634. '@jridgewell/source-map': 0.3.6
  2635. acorn: 8.14.0
  2636. commander: 2.20.3
  2637. source-map-support: 0.5.21
  2638. throttle-debounce@3.0.1: {}
  2639. tiny-emitter@2.1.0: {}
  2640. tinyglobby@0.2.10:
  2641. dependencies:
  2642. fdir: 6.4.2(picomatch@4.0.2)
  2643. picomatch: 4.0.2
  2644. to-regex-range@5.0.1:
  2645. dependencies:
  2646. is-number: 7.0.0
  2647. totalist@3.0.1: {}
  2648. tslib@2.8.1: {}
  2649. typescript@5.6.3: {}
  2650. ufo@1.5.4: {}
  2651. undici-types@6.20.0: {}
  2652. unicorn-magic@0.3.0: {}
  2653. unimport@3.14.3(rollup@4.28.0):
  2654. dependencies:
  2655. '@rollup/pluginutils': 5.1.3(rollup@4.28.0)
  2656. acorn: 8.14.0
  2657. escape-string-regexp: 5.0.0
  2658. estree-walker: 3.0.3
  2659. local-pkg: 0.5.1
  2660. magic-string: 0.30.14
  2661. mlly: 1.7.3
  2662. pathe: 1.1.2
  2663. picomatch: 4.0.2
  2664. pkg-types: 1.2.1
  2665. scule: 1.3.0
  2666. strip-literal: 2.1.1
  2667. tinyglobby: 0.2.10
  2668. unplugin: 1.16.0
  2669. transitivePeerDependencies:
  2670. - rollup
  2671. universalify@2.0.1: {}
  2672. unplugin-auto-import@0.18.6(@vueuse/core@9.13.0(vue@3.5.13(typescript@5.6.3)))(rollup@4.28.0):
  2673. dependencies:
  2674. '@antfu/utils': 0.7.10
  2675. '@rollup/pluginutils': 5.1.3(rollup@4.28.0)
  2676. fast-glob: 3.3.2
  2677. local-pkg: 0.5.1
  2678. magic-string: 0.30.14
  2679. minimatch: 9.0.5
  2680. unimport: 3.14.3(rollup@4.28.0)
  2681. unplugin: 1.16.0
  2682. optionalDependencies:
  2683. '@vueuse/core': 9.13.0(vue@3.5.13(typescript@5.6.3))
  2684. transitivePeerDependencies:
  2685. - rollup
  2686. unplugin-vue-components@0.27.5(@babel/parser@7.26.2)(rollup@4.28.0)(vue@3.5.13(typescript@5.6.3)):
  2687. dependencies:
  2688. '@antfu/utils': 0.7.10
  2689. '@rollup/pluginutils': 5.1.3(rollup@4.28.0)
  2690. chokidar: 3.6.0
  2691. debug: 4.3.7
  2692. fast-glob: 3.3.2
  2693. local-pkg: 0.5.1
  2694. magic-string: 0.30.14
  2695. minimatch: 9.0.5
  2696. mlly: 1.7.3
  2697. unplugin: 1.16.0
  2698. vue: 3.5.13(typescript@5.6.3)
  2699. optionalDependencies:
  2700. '@babel/parser': 7.26.2
  2701. transitivePeerDependencies:
  2702. - rollup
  2703. - supports-color
  2704. unplugin@1.16.0:
  2705. dependencies:
  2706. acorn: 8.14.0
  2707. webpack-virtual-modules: 0.6.2
  2708. update-browserslist-db@1.1.1(browserslist@4.24.2):
  2709. dependencies:
  2710. browserslist: 4.24.2
  2711. escalade: 3.2.0
  2712. picocolors: 1.1.1
  2713. vite-hot-client@0.2.4(vite@5.4.11(@types/node@22.10.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)):
  2714. dependencies:
  2715. vite: 5.4.11(@types/node@22.10.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)
  2716. vite-plugin-html@3.2.2(vite@5.4.11(@types/node@22.10.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)):
  2717. dependencies:
  2718. '@rollup/pluginutils': 4.2.1
  2719. colorette: 2.0.20
  2720. connect-history-api-fallback: 1.6.0
  2721. consola: 2.15.3
  2722. dotenv: 16.4.7
  2723. dotenv-expand: 8.0.3
  2724. ejs: 3.1.10
  2725. fast-glob: 3.3.2
  2726. fs-extra: 10.1.0
  2727. html-minifier-terser: 6.1.0
  2728. node-html-parser: 5.4.2
  2729. pathe: 0.2.0
  2730. vite: 5.4.11(@types/node@22.10.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)
  2731. vite-plugin-inspect@0.8.8(rollup@4.28.0)(vite@5.4.11(@types/node@22.10.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)):
  2732. dependencies:
  2733. '@antfu/utils': 0.7.10
  2734. '@rollup/pluginutils': 5.1.3(rollup@4.28.0)
  2735. debug: 4.3.7
  2736. error-stack-parser-es: 0.1.5
  2737. fs-extra: 11.2.0
  2738. open: 10.1.0
  2739. perfect-debounce: 1.0.0
  2740. picocolors: 1.1.1
  2741. sirv: 3.0.0
  2742. vite: 5.4.11(@types/node@22.10.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)
  2743. transitivePeerDependencies:
  2744. - rollup
  2745. - supports-color
  2746. vite-plugin-vue-devtools@7.6.7(rollup@4.28.0)(vite@5.4.11(@types/node@22.10.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0))(vue@3.5.13(typescript@5.6.3)):
  2747. dependencies:
  2748. '@vue/devtools-core': 7.6.7(vite@5.4.11(@types/node@22.10.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0))(vue@3.5.13(typescript@5.6.3))
  2749. '@vue/devtools-kit': 7.6.7
  2750. '@vue/devtools-shared': 7.6.7
  2751. execa: 9.5.1
  2752. sirv: 3.0.0
  2753. vite: 5.4.11(@types/node@22.10.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)
  2754. vite-plugin-inspect: 0.8.8(rollup@4.28.0)(vite@5.4.11(@types/node@22.10.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0))
  2755. vite-plugin-vue-inspector: 5.3.1(vite@5.4.11(@types/node@22.10.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0))
  2756. transitivePeerDependencies:
  2757. - '@nuxt/kit'
  2758. - rollup
  2759. - supports-color
  2760. - vue
  2761. vite-plugin-vue-inspector@5.3.1(vite@5.4.11(@types/node@22.10.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)):
  2762. dependencies:
  2763. '@babel/core': 7.26.0
  2764. '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.0)
  2765. '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0)
  2766. '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.0)
  2767. '@babel/plugin-transform-typescript': 7.25.9(@babel/core@7.26.0)
  2768. '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.0)
  2769. '@vue/compiler-dom': 3.5.13
  2770. kolorist: 1.8.0
  2771. magic-string: 0.30.14
  2772. vite: 5.4.11(@types/node@22.10.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)
  2773. transitivePeerDependencies:
  2774. - supports-color
  2775. vite@5.4.11(@types/node@22.10.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0):
  2776. dependencies:
  2777. esbuild: 0.21.5
  2778. postcss: 8.4.49
  2779. rollup: 4.28.0
  2780. optionalDependencies:
  2781. '@types/node': 22.10.1
  2782. fsevents: 2.3.3
  2783. less: 4.2.1
  2784. sass: 1.82.0
  2785. terser: 5.36.0
  2786. vscode-uri@3.0.8: {}
  2787. vue-demi@0.14.10(vue@3.5.13(typescript@5.6.3)):
  2788. dependencies:
  2789. vue: 3.5.13(typescript@5.6.3)
  2790. vue-qrcode@2.2.2(qrcode@1.5.4)(vue@3.5.13(typescript@5.6.3)):
  2791. dependencies:
  2792. qrcode: 1.5.4
  2793. tslib: 2.8.1
  2794. vue: 3.5.13(typescript@5.6.3)
  2795. vue-router@4.5.0(vue@3.5.13(typescript@5.6.3)):
  2796. dependencies:
  2797. '@vue/devtools-api': 6.6.4
  2798. vue: 3.5.13(typescript@5.6.3)
  2799. vue-tsc@2.1.10(typescript@5.6.3):
  2800. dependencies:
  2801. '@volar/typescript': 2.4.10
  2802. '@vue/language-core': 2.1.10(typescript@5.6.3)
  2803. semver: 7.6.3
  2804. typescript: 5.6.3
  2805. vue3-video-play@1.3.2(typescript@5.6.3):
  2806. dependencies:
  2807. hls.js: 1.5.18
  2808. throttle-debounce: 3.0.1
  2809. vue: 3.5.13(typescript@5.6.3)
  2810. transitivePeerDependencies:
  2811. - typescript
  2812. vue@3.5.13(typescript@5.6.3):
  2813. dependencies:
  2814. '@vue/compiler-dom': 3.5.13
  2815. '@vue/compiler-sfc': 3.5.13
  2816. '@vue/runtime-dom': 3.5.13
  2817. '@vue/server-renderer': 3.5.13(vue@3.5.13(typescript@5.6.3))
  2818. '@vue/shared': 3.5.13
  2819. optionalDependencies:
  2820. typescript: 5.6.3
  2821. webpack-virtual-modules@0.6.2: {}
  2822. which-module@2.0.1: {}
  2823. which@2.0.2:
  2824. dependencies:
  2825. isexe: 2.0.0
  2826. which@5.0.0:
  2827. dependencies:
  2828. isexe: 3.1.1
  2829. wrap-ansi@6.2.0:
  2830. dependencies:
  2831. ansi-styles: 4.3.0
  2832. string-width: 4.2.3
  2833. strip-ansi: 6.0.1
  2834. y18n@4.0.3: {}
  2835. yallist@3.1.1: {}
  2836. yargs-parser@18.1.3:
  2837. dependencies:
  2838. camelcase: 5.3.1
  2839. decamelize: 1.2.0
  2840. yargs@15.4.1:
  2841. dependencies:
  2842. cliui: 6.0.0
  2843. decamelize: 1.2.0
  2844. find-up: 4.1.0
  2845. get-caller-file: 2.0.5
  2846. require-directory: 2.1.1
  2847. require-main-filename: 2.0.0
  2848. set-blocking: 2.0.0
  2849. string-width: 4.2.3
  2850. which-module: 2.0.1
  2851. y18n: 4.0.3
  2852. yargs-parser: 18.1.3
  2853. yoctocolors@2.1.1: {}