pnpm-lock.yaml 112 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. '@alova/mock':
  9. specifier: ~2.0.14
  10. version: 2.0.20(alova@3.2.13)
  11. '@alova/shared':
  12. specifier: ~1.1.2
  13. version: 1.1.2
  14. '@element-plus/icons-vue':
  15. specifier: 2.3.2
  16. version: 2.3.2(vue@3.4.21)
  17. alova:
  18. specifier: ~3.2.11
  19. version: 3.2.13
  20. axios:
  21. specifier: 1.13.6
  22. version: 1.13.6
  23. color:
  24. specifier: ~5.0.0
  25. version: 5.0.3
  26. element-plus:
  27. specifier: 2.13.5
  28. version: 2.13.5(vue@3.4.21)
  29. es-toolkit:
  30. specifier: ~1.38.0
  31. version: 1.38.0
  32. pinia:
  33. specifier: ~2.0.36
  34. version: 2.0.36(vue@3.4.21)
  35. pinia-plugin-persistedstate:
  36. specifier: ~3.2.1
  37. version: 3.2.3(pinia@2.0.36(vue@3.4.21))
  38. vue:
  39. specifier: 3.4.21
  40. version: 3.4.21
  41. vue-i18n:
  42. specifier: ~9.1.9
  43. version: 9.1.11(vue@3.4.21)
  44. vue-router:
  45. specifier: 4.6.4
  46. version: 4.6.4(vue@3.4.21)
  47. devDependencies:
  48. '@iconify-json/carbon':
  49. specifier: ~1.2.8
  50. version: 1.2.19
  51. '@unocss/preset-icons':
  52. specifier: 0.58.9
  53. version: 0.58.9
  54. '@unocss/transformer-directives':
  55. specifier: 0.58.9
  56. version: 0.58.9
  57. '@unocss/vite':
  58. specifier: 0.58.9
  59. version: 0.58.9(rollup@4.59.0)(vite@5.2.8(@types/node@25.5.0)(sass@1.63.2)(terser@5.46.0))
  60. '@vitejs/plugin-vue':
  61. specifier: ^6.0.4
  62. version: 6.0.5(vite@5.2.8(@types/node@25.5.0)(sass@1.63.2)(terser@5.46.0))(vue@3.4.21)
  63. '@vue/runtime-core':
  64. specifier: 3.4.21
  65. version: 3.4.21
  66. postcss-nested:
  67. specifier: ~7.0.2
  68. version: 7.0.2(postcss@8.5.8)
  69. postcss-remove-inline-comments:
  70. specifier: ~0.0.2
  71. version: 0.0.2(postcss@8.5.8)
  72. postcss-scss:
  73. specifier: ~4.0.9
  74. version: 4.0.9(postcss@8.5.8)
  75. sass:
  76. specifier: 1.63.2
  77. version: 1.63.2
  78. sass-loader:
  79. specifier: 10.4.1
  80. version: 10.4.1(sass@1.63.2)(webpack@5.105.4)
  81. simple-git-hooks:
  82. specifier: ~2.13.0
  83. version: 2.13.1
  84. unocss:
  85. specifier: 0.58.9
  86. version: 0.58.9(postcss@8.5.8)(rollup@4.59.0)(vite@5.2.8(@types/node@25.5.0)(sass@1.63.2)(terser@5.46.0))
  87. unplugin-auto-import:
  88. specifier: ~19.2.0
  89. version: 19.2.0(@vueuse/core@12.0.0)
  90. unplugin-vue-components:
  91. specifier: ^31.0.0
  92. version: 31.0.0(vue@3.4.21)
  93. vite:
  94. specifier: 5.2.8
  95. version: 5.2.8(@types/node@25.5.0)(sass@1.63.2)(terser@5.46.0)
  96. packages:
  97. '@alova/mock@2.0.20':
  98. resolution: {integrity: sha512-JQxvoKLIX7IlJvUp6xaZ/clfV4e2saS2jrObKVl2cQ+Uax++xzvvC8rSJHhecgb3kAJFUjy2g1pDC5/dEJknew==}
  99. peerDependencies:
  100. alova: ^3.0.20
  101. '@alova/shared@1.1.2':
  102. resolution: {integrity: sha512-8q/gMHFpzm7XYcaUlsyTCMDRRhFnewwheTeObMjPl1+bFdr+wZuBEHEPYIyd8tyzLwfrqpBeonaMN2tlngM8EA==}
  103. '@alova/shared@1.2.0':
  104. resolution: {integrity: sha512-/LSlP4VqpD+ji7+BwTwfKJObDb0LV3mNT6sE3TUjnopjz2HQaL6f1Qicjf8vplv4dlHki9HEbFFAu8sBNDAMrA==}
  105. '@alova/shared@1.3.2':
  106. resolution: {integrity: sha512-1XvDLWgYpVZ99MmLl1f3Fw4T6S6pPYk5afz5cwRVjuq8JXEGsDn9IygDKfvRyWqkqCBx7Jif07LIct1O+MVEow==}
  107. '@ampproject/remapping@2.3.0':
  108. resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
  109. engines: {node: '>=6.0.0'}
  110. '@antfu/install-pkg@1.1.0':
  111. resolution: {integrity: sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ==}
  112. '@antfu/utils@0.7.10':
  113. resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==}
  114. '@antfu/utils@8.1.1':
  115. resolution: {integrity: sha512-Mex9nXf9vR6AhcXmMrlz/HVgYYZpVGJ6YlPgwl7UnaFpnshXs6EK/oa5Gpf3CzENMjkvEx2tQtntGnb7UtSTOQ==}
  116. '@babel/code-frame@7.29.0':
  117. resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==}
  118. engines: {node: '>=6.9.0'}
  119. '@babel/compat-data@7.29.0':
  120. resolution: {integrity: sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==}
  121. engines: {node: '>=6.9.0'}
  122. '@babel/core@7.29.0':
  123. resolution: {integrity: sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==}
  124. engines: {node: '>=6.9.0'}
  125. '@babel/generator@7.29.1':
  126. resolution: {integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==}
  127. engines: {node: '>=6.9.0'}
  128. '@babel/helper-annotate-as-pure@7.27.3':
  129. resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==}
  130. engines: {node: '>=6.9.0'}
  131. '@babel/helper-compilation-targets@7.28.6':
  132. resolution: {integrity: sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==}
  133. engines: {node: '>=6.9.0'}
  134. '@babel/helper-create-class-features-plugin@7.28.6':
  135. resolution: {integrity: sha512-dTOdvsjnG3xNT9Y0AUg1wAl38y+4Rl4sf9caSQZOXdNqVn+H+HbbJ4IyyHaIqNR6SW9oJpA/RuRjsjCw2IdIow==}
  136. engines: {node: '>=6.9.0'}
  137. peerDependencies:
  138. '@babel/core': ^7.0.0
  139. '@babel/helper-globals@7.28.0':
  140. resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
  141. engines: {node: '>=6.9.0'}
  142. '@babel/helper-member-expression-to-functions@7.28.5':
  143. resolution: {integrity: sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==}
  144. engines: {node: '>=6.9.0'}
  145. '@babel/helper-module-imports@7.28.6':
  146. resolution: {integrity: sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==}
  147. engines: {node: '>=6.9.0'}
  148. '@babel/helper-module-transforms@7.28.6':
  149. resolution: {integrity: sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==}
  150. engines: {node: '>=6.9.0'}
  151. peerDependencies:
  152. '@babel/core': ^7.0.0
  153. '@babel/helper-optimise-call-expression@7.27.1':
  154. resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==}
  155. engines: {node: '>=6.9.0'}
  156. '@babel/helper-plugin-utils@7.28.6':
  157. resolution: {integrity: sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==}
  158. engines: {node: '>=6.9.0'}
  159. '@babel/helper-replace-supers@7.28.6':
  160. resolution: {integrity: sha512-mq8e+laIk94/yFec3DxSjCRD2Z0TAjhVbEJY3UQrlwVo15Lmt7C2wAUbK4bjnTs4APkwsYLTahXRraQXhb1WCg==}
  161. engines: {node: '>=6.9.0'}
  162. peerDependencies:
  163. '@babel/core': ^7.0.0
  164. '@babel/helper-skip-transparent-expression-wrappers@7.27.1':
  165. resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==}
  166. engines: {node: '>=6.9.0'}
  167. '@babel/helper-string-parser@7.27.1':
  168. resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
  169. engines: {node: '>=6.9.0'}
  170. '@babel/helper-validator-identifier@7.28.5':
  171. resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
  172. engines: {node: '>=6.9.0'}
  173. '@babel/helper-validator-option@7.27.1':
  174. resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
  175. engines: {node: '>=6.9.0'}
  176. '@babel/helpers@7.28.6':
  177. resolution: {integrity: sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==}
  178. engines: {node: '>=6.9.0'}
  179. '@babel/parser@7.29.0':
  180. resolution: {integrity: sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==}
  181. engines: {node: '>=6.0.0'}
  182. hasBin: true
  183. '@babel/plugin-syntax-jsx@7.28.6':
  184. resolution: {integrity: sha512-wgEmr06G6sIpqr8YDwA2dSRTE3bJ+V0IfpzfSY3Lfgd7YWOaAdlykvJi13ZKBt8cZHfgH1IXN+CL656W3uUa4w==}
  185. engines: {node: '>=6.9.0'}
  186. peerDependencies:
  187. '@babel/core': ^7.0.0-0
  188. '@babel/plugin-syntax-typescript@7.28.6':
  189. resolution: {integrity: sha512-+nDNmQye7nlnuuHDboPbGm00Vqg3oO8niRRL27/4LYHUsHYh0zJ1xWOz0uRwNFmM1Avzk8wZbc6rdiYhomzv/A==}
  190. engines: {node: '>=6.9.0'}
  191. peerDependencies:
  192. '@babel/core': ^7.0.0-0
  193. '@babel/plugin-transform-modules-commonjs@7.28.6':
  194. resolution: {integrity: sha512-jppVbf8IV9iWWwWTQIxJMAJCWBuuKx71475wHwYytrRGQ2CWiDvYlADQno3tcYpS/T2UUWFQp3nVtYfK/YBQrA==}
  195. engines: {node: '>=6.9.0'}
  196. peerDependencies:
  197. '@babel/core': ^7.0.0-0
  198. '@babel/plugin-transform-typescript@7.28.6':
  199. resolution: {integrity: sha512-0YWL2RFxOqEm9Efk5PvreamxPME8OyY0wM5wh5lHjF+VtVhdneCWGzZeSqzOfiobVqQaNCd2z0tQvnI9DaPWPw==}
  200. engines: {node: '>=6.9.0'}
  201. peerDependencies:
  202. '@babel/core': ^7.0.0-0
  203. '@babel/preset-typescript@7.28.5':
  204. resolution: {integrity: sha512-+bQy5WOI2V6LJZpPVxY+yp66XdZ2yifu0Mc1aP5CQKgjn4QM5IN2i5fAZ4xKop47pr8rpVhiAeu+nDQa12C8+g==}
  205. engines: {node: '>=6.9.0'}
  206. peerDependencies:
  207. '@babel/core': ^7.0.0-0
  208. '@babel/template@7.28.6':
  209. resolution: {integrity: sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==}
  210. engines: {node: '>=6.9.0'}
  211. '@babel/traverse@7.29.0':
  212. resolution: {integrity: sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==}
  213. engines: {node: '>=6.9.0'}
  214. '@babel/types@7.29.0':
  215. resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
  216. engines: {node: '>=6.9.0'}
  217. '@ctrl/tinycolor@4.2.0':
  218. resolution: {integrity: sha512-kzyuwOAQnXJNLS9PSyrk0CWk35nWJW/zl/6KvnTBMFK65gm7U1/Z5BqjxeapjZCIhQcM/DsrEmcbRwDyXyXK4A==}
  219. engines: {node: '>=14'}
  220. '@element-plus/icons-vue@2.3.2':
  221. resolution: {integrity: sha512-OzIuTaIfC8QXEPmJvB4Y4kw34rSXdCJzxcD1kFStBvr8bK6X1zQAYDo0CNMjojnfTqRQCJ0I7prlErcoRiET2A==}
  222. peerDependencies:
  223. vue: ^3.2.0
  224. '@esbuild/aix-ppc64@0.20.2':
  225. resolution: {integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==}
  226. engines: {node: '>=12'}
  227. cpu: [ppc64]
  228. os: [aix]
  229. '@esbuild/android-arm64@0.20.2':
  230. resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==}
  231. engines: {node: '>=12'}
  232. cpu: [arm64]
  233. os: [android]
  234. '@esbuild/android-arm@0.20.2':
  235. resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==}
  236. engines: {node: '>=12'}
  237. cpu: [arm]
  238. os: [android]
  239. '@esbuild/android-x64@0.20.2':
  240. resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==}
  241. engines: {node: '>=12'}
  242. cpu: [x64]
  243. os: [android]
  244. '@esbuild/darwin-arm64@0.20.2':
  245. resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==}
  246. engines: {node: '>=12'}
  247. cpu: [arm64]
  248. os: [darwin]
  249. '@esbuild/darwin-x64@0.20.2':
  250. resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==}
  251. engines: {node: '>=12'}
  252. cpu: [x64]
  253. os: [darwin]
  254. '@esbuild/freebsd-arm64@0.20.2':
  255. resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==}
  256. engines: {node: '>=12'}
  257. cpu: [arm64]
  258. os: [freebsd]
  259. '@esbuild/freebsd-x64@0.20.2':
  260. resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==}
  261. engines: {node: '>=12'}
  262. cpu: [x64]
  263. os: [freebsd]
  264. '@esbuild/linux-arm64@0.20.2':
  265. resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==}
  266. engines: {node: '>=12'}
  267. cpu: [arm64]
  268. os: [linux]
  269. '@esbuild/linux-arm@0.20.2':
  270. resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==}
  271. engines: {node: '>=12'}
  272. cpu: [arm]
  273. os: [linux]
  274. '@esbuild/linux-ia32@0.20.2':
  275. resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==}
  276. engines: {node: '>=12'}
  277. cpu: [ia32]
  278. os: [linux]
  279. '@esbuild/linux-loong64@0.20.2':
  280. resolution: {integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==}
  281. engines: {node: '>=12'}
  282. cpu: [loong64]
  283. os: [linux]
  284. '@esbuild/linux-mips64el@0.20.2':
  285. resolution: {integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==}
  286. engines: {node: '>=12'}
  287. cpu: [mips64el]
  288. os: [linux]
  289. '@esbuild/linux-ppc64@0.20.2':
  290. resolution: {integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==}
  291. engines: {node: '>=12'}
  292. cpu: [ppc64]
  293. os: [linux]
  294. '@esbuild/linux-riscv64@0.20.2':
  295. resolution: {integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==}
  296. engines: {node: '>=12'}
  297. cpu: [riscv64]
  298. os: [linux]
  299. '@esbuild/linux-s390x@0.20.2':
  300. resolution: {integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==}
  301. engines: {node: '>=12'}
  302. cpu: [s390x]
  303. os: [linux]
  304. '@esbuild/linux-x64@0.20.2':
  305. resolution: {integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==}
  306. engines: {node: '>=12'}
  307. cpu: [x64]
  308. os: [linux]
  309. '@esbuild/netbsd-x64@0.20.2':
  310. resolution: {integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==}
  311. engines: {node: '>=12'}
  312. cpu: [x64]
  313. os: [netbsd]
  314. '@esbuild/openbsd-x64@0.20.2':
  315. resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==}
  316. engines: {node: '>=12'}
  317. cpu: [x64]
  318. os: [openbsd]
  319. '@esbuild/sunos-x64@0.20.2':
  320. resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==}
  321. engines: {node: '>=12'}
  322. cpu: [x64]
  323. os: [sunos]
  324. '@esbuild/win32-arm64@0.20.2':
  325. resolution: {integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==}
  326. engines: {node: '>=12'}
  327. cpu: [arm64]
  328. os: [win32]
  329. '@esbuild/win32-ia32@0.20.2':
  330. resolution: {integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==}
  331. engines: {node: '>=12'}
  332. cpu: [ia32]
  333. os: [win32]
  334. '@esbuild/win32-x64@0.20.2':
  335. resolution: {integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==}
  336. engines: {node: '>=12'}
  337. cpu: [x64]
  338. os: [win32]
  339. '@floating-ui/core@1.7.5':
  340. resolution: {integrity: sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ==}
  341. '@floating-ui/dom@1.7.6':
  342. resolution: {integrity: sha512-9gZSAI5XM36880PPMm//9dfiEngYoC6Am2izES1FF406YFsjvyBMmeJ2g4SAju3xWwtuynNRFL2s9hgxpLI5SQ==}
  343. '@floating-ui/utils@0.2.11':
  344. resolution: {integrity: sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==}
  345. '@iconify-json/carbon@1.2.19':
  346. resolution: {integrity: sha512-l89XjtEeSA5fxlxPTNSU9AA+rxaz/Dn0X/ux0/3awR+tAayY8iJqWQu3AKxhchfx3LB/fX1Nv3ZppZzrBAt7aA==}
  347. '@iconify/types@2.0.0':
  348. resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
  349. '@iconify/utils@2.3.0':
  350. resolution: {integrity: sha512-GmQ78prtwYW6EtzXRU1rY+KwOKfz32PD7iJh6Iyqw68GiKuoZ2A6pRtzWONz5VQJbp50mEjXh/7NkumtrAgRKA==}
  351. '@intlify/core-base@9.1.10':
  352. resolution: {integrity: sha512-So9CNUavB/IsZ+zBmk2Cv6McQp6vc2wbGi1S0XQmJ8Vz+UFcNn9MFXAe9gY67PreIHrbLsLxDD0cwo1qsxM1Nw==}
  353. engines: {node: '>= 10'}
  354. '@intlify/devtools-if@9.1.10':
  355. resolution: {integrity: sha512-SHaKoYu6sog3+Q8js1y3oXLywuogbH1sKuc7NSYkN3GElvXSBaMoCzW+we0ZSFqj/6c7vTNLg9nQ6rxhKqYwnQ==}
  356. engines: {node: '>= 10'}
  357. '@intlify/message-compiler@9.1.10':
  358. resolution: {integrity: sha512-+JiJpXff/XTb0EadYwdxOyRTB0hXNd4n1HaJ/a4yuV960uRmPXaklJsedW0LNdcptd/hYUZtCkI7Lc9J5C1gxg==}
  359. engines: {node: '>= 10'}
  360. '@intlify/message-resolver@9.1.10':
  361. resolution: {integrity: sha512-5YixMG/M05m0cn9+gOzd4EZQTFRUu8RGhzxJbR1DWN21x/Z3bJ8QpDYj6hC4FwBj5uKsRfKpJQ3Xqg98KWoA+w==}
  362. engines: {node: '>= 10'}
  363. '@intlify/runtime@9.1.10':
  364. resolution: {integrity: sha512-7QsuByNzpe3Gfmhwq6hzgXcMPpxz8Zxb/XFI6s9lQdPLPe5Lgw4U1ovRPZTOs6Y2hwitR3j/HD8BJNGWpJnOFA==}
  365. engines: {node: '>= 10'}
  366. '@intlify/shared@9.1.10':
  367. resolution: {integrity: sha512-Om54xJeo1Vw+K1+wHYyXngE8cAbrxZHpWjYzMR9wCkqbhGtRV5VLhVc214Ze2YatPrWlS2WSMOWXR8JktX/IgA==}
  368. engines: {node: '>= 10'}
  369. '@intlify/vue-devtools@9.1.10':
  370. resolution: {integrity: sha512-5l3qYARVbkWAkagLu1XbDUWRJSL8br1Dj60wgMaKB0+HswVsrR6LloYZTg7ozyvM621V6+zsmwzbQxbVQyrytQ==}
  371. engines: {node: '>= 10'}
  372. '@jridgewell/gen-mapping@0.3.13':
  373. resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
  374. '@jridgewell/remapping@2.3.5':
  375. resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
  376. '@jridgewell/resolve-uri@3.1.2':
  377. resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
  378. engines: {node: '>=6.0.0'}
  379. '@jridgewell/source-map@0.3.11':
  380. resolution: {integrity: sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==}
  381. '@jridgewell/sourcemap-codec@1.5.5':
  382. resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
  383. '@jridgewell/trace-mapping@0.3.31':
  384. resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
  385. '@nodelib/fs.scandir@2.1.5':
  386. resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
  387. engines: {node: '>= 8'}
  388. '@nodelib/fs.stat@2.0.5':
  389. resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
  390. engines: {node: '>= 8'}
  391. '@nodelib/fs.walk@1.2.8':
  392. resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
  393. engines: {node: '>= 8'}
  394. '@polka/url@1.0.0-next.29':
  395. resolution: {integrity: sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==}
  396. '@rolldown/pluginutils@1.0.0-rc.2':
  397. resolution: {integrity: sha512-izyXV/v+cHiRfozX62W9htOAvwMo4/bXKDrQ+vom1L1qRuexPock/7VZDAhnpHCLNejd3NJ6hiab+tO0D44Rgw==}
  398. '@rollup/pluginutils@5.3.0':
  399. resolution: {integrity: sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==}
  400. engines: {node: '>=14.0.0'}
  401. peerDependencies:
  402. rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
  403. peerDependenciesMeta:
  404. rollup:
  405. optional: true
  406. '@rollup/rollup-android-arm-eabi@4.59.0':
  407. resolution: {integrity: sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg==}
  408. cpu: [arm]
  409. os: [android]
  410. '@rollup/rollup-android-arm64@4.59.0':
  411. resolution: {integrity: sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==}
  412. cpu: [arm64]
  413. os: [android]
  414. '@rollup/rollup-darwin-arm64@4.59.0':
  415. resolution: {integrity: sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==}
  416. cpu: [arm64]
  417. os: [darwin]
  418. '@rollup/rollup-darwin-x64@4.59.0':
  419. resolution: {integrity: sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w==}
  420. cpu: [x64]
  421. os: [darwin]
  422. '@rollup/rollup-freebsd-arm64@4.59.0':
  423. resolution: {integrity: sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA==}
  424. cpu: [arm64]
  425. os: [freebsd]
  426. '@rollup/rollup-freebsd-x64@4.59.0':
  427. resolution: {integrity: sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg==}
  428. cpu: [x64]
  429. os: [freebsd]
  430. '@rollup/rollup-linux-arm-gnueabihf@4.59.0':
  431. resolution: {integrity: sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==}
  432. cpu: [arm]
  433. os: [linux]
  434. '@rollup/rollup-linux-arm-musleabihf@4.59.0':
  435. resolution: {integrity: sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==}
  436. cpu: [arm]
  437. os: [linux]
  438. '@rollup/rollup-linux-arm64-gnu@4.59.0':
  439. resolution: {integrity: sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==}
  440. cpu: [arm64]
  441. os: [linux]
  442. '@rollup/rollup-linux-arm64-musl@4.59.0':
  443. resolution: {integrity: sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==}
  444. cpu: [arm64]
  445. os: [linux]
  446. '@rollup/rollup-linux-loong64-gnu@4.59.0':
  447. resolution: {integrity: sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==}
  448. cpu: [loong64]
  449. os: [linux]
  450. '@rollup/rollup-linux-loong64-musl@4.59.0':
  451. resolution: {integrity: sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==}
  452. cpu: [loong64]
  453. os: [linux]
  454. '@rollup/rollup-linux-ppc64-gnu@4.59.0':
  455. resolution: {integrity: sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==}
  456. cpu: [ppc64]
  457. os: [linux]
  458. '@rollup/rollup-linux-ppc64-musl@4.59.0':
  459. resolution: {integrity: sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==}
  460. cpu: [ppc64]
  461. os: [linux]
  462. '@rollup/rollup-linux-riscv64-gnu@4.59.0':
  463. resolution: {integrity: sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==}
  464. cpu: [riscv64]
  465. os: [linux]
  466. '@rollup/rollup-linux-riscv64-musl@4.59.0':
  467. resolution: {integrity: sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==}
  468. cpu: [riscv64]
  469. os: [linux]
  470. '@rollup/rollup-linux-s390x-gnu@4.59.0':
  471. resolution: {integrity: sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==}
  472. cpu: [s390x]
  473. os: [linux]
  474. '@rollup/rollup-linux-x64-gnu@4.59.0':
  475. resolution: {integrity: sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==}
  476. cpu: [x64]
  477. os: [linux]
  478. '@rollup/rollup-linux-x64-musl@4.59.0':
  479. resolution: {integrity: sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==}
  480. cpu: [x64]
  481. os: [linux]
  482. '@rollup/rollup-openbsd-x64@4.59.0':
  483. resolution: {integrity: sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==}
  484. cpu: [x64]
  485. os: [openbsd]
  486. '@rollup/rollup-openharmony-arm64@4.59.0':
  487. resolution: {integrity: sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA==}
  488. cpu: [arm64]
  489. os: [openharmony]
  490. '@rollup/rollup-win32-arm64-msvc@4.59.0':
  491. resolution: {integrity: sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A==}
  492. cpu: [arm64]
  493. os: [win32]
  494. '@rollup/rollup-win32-ia32-msvc@4.59.0':
  495. resolution: {integrity: sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA==}
  496. cpu: [ia32]
  497. os: [win32]
  498. '@rollup/rollup-win32-x64-gnu@4.59.0':
  499. resolution: {integrity: sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==}
  500. cpu: [x64]
  501. os: [win32]
  502. '@rollup/rollup-win32-x64-msvc@4.59.0':
  503. resolution: {integrity: sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==}
  504. cpu: [x64]
  505. os: [win32]
  506. '@sxzz/popperjs-es@2.11.8':
  507. resolution: {integrity: sha512-wOwESXvvED3S8xBmcPWHs2dUuzrE4XiZeFu7e1hROIJkm02a49N120pmOXxY33sBb6hArItm5W5tcg1cBtV+HQ==}
  508. '@types/eslint-scope@3.7.7':
  509. resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==}
  510. '@types/eslint@9.6.1':
  511. resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==}
  512. '@types/estree@1.0.8':
  513. resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
  514. '@types/json-schema@7.0.15':
  515. resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
  516. '@types/lodash-es@4.17.12':
  517. resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==}
  518. '@types/lodash@4.17.24':
  519. resolution: {integrity: sha512-gIW7lQLZbue7lRSWEFql49QJJWThrTFFeIMJdp3eH4tKoxm1OvEPg02rm4wCCSHS0cL3/Fizimb35b7k8atwsQ==}
  520. '@types/node@25.5.0':
  521. resolution: {integrity: sha512-jp2P3tQMSxWugkCUKLRPVUpGaL5MVFwF8RDuSRztfwgN1wmqJeMSbKlnEtQqU8UrhTmzEmZdu2I6v2dpp7XIxw==}
  522. '@types/web-bluetooth@0.0.20':
  523. resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==}
  524. '@unocss/astro@0.58.9':
  525. resolution: {integrity: sha512-VWfHNC0EfawFxLfb3uI+QcMGBN+ju+BYtutzeZTjilLKj31X2UpqIh8fepixL6ljgZzB3fweqg2xtUMC0gMnoQ==}
  526. peerDependencies:
  527. vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
  528. peerDependenciesMeta:
  529. vite:
  530. optional: true
  531. '@unocss/cli@0.58.9':
  532. resolution: {integrity: sha512-q7qlwX3V6UaqljWUQ5gMj36yTA9eLuuRywahdQWt1ioy4aPF/MEEfnMBZf/ntrqf5tIT5TO8fE11nvCco2Q/sA==}
  533. engines: {node: '>=14'}
  534. hasBin: true
  535. '@unocss/config@0.58.9':
  536. resolution: {integrity: sha512-90wRXIyGNI8UenWxvHUcH4l4rgq813MsTzYWsf6ZKyLLvkFjV2b2EfGXI27GPvZ7fVE1OAqx+wJNTw8CyQxwag==}
  537. engines: {node: '>=14'}
  538. '@unocss/core@0.58.9':
  539. resolution: {integrity: sha512-wYpPIPPsOIbIoMIDuH8ihehJk5pAZmyFKXIYO/Kro98GEOFhz6lJoLsy6/PZuitlgp2/TSlubUuWGjHWvp5osw==}
  540. '@unocss/extractor-arbitrary-variants@0.58.9':
  541. resolution: {integrity: sha512-M/BvPdbEEMdhcFQh/z2Bf9gylO1Ky/ZnpIvKWS1YJPLt4KA7UWXSUf+ZNTFxX+X58Is5qAb5hNh/XBQmL3gbXg==}
  542. '@unocss/inspector@0.58.9':
  543. resolution: {integrity: sha512-uRzqkCNeBmEvFePXcfIFcQPMlCXd9/bLwa5OkBthiOILwQdH1uRIW3GWAa2SWspu+kZLP0Ly3SjZ9Wqi+5ZtTw==}
  544. '@unocss/postcss@0.58.9':
  545. resolution: {integrity: sha512-PnKmH6Qhimw35yO6u6yx9SHaX2NmvbRNPDvMDHA/1xr3M8L0o8U88tgKbWfm65NEGF3R1zJ9A8rjtZn/LPkgPA==}
  546. engines: {node: '>=14'}
  547. peerDependencies:
  548. postcss: ^8.4.21
  549. '@unocss/preset-attributify@0.58.9':
  550. resolution: {integrity: sha512-ucP+kXRFcwmBmHohUVv31bE/SejMAMo7Hjb0QcKVLyHlzRWUJsfNR+jTAIGIUSYxN7Q8MeigYsongGo3nIeJnQ==}
  551. '@unocss/preset-icons@0.58.9':
  552. resolution: {integrity: sha512-9dS48+yAunsbS0ylOW2Wisozwpn3nGY1CqTiidkUnrMnrZK3al579A7srUX9NyPWWDjprO7eU/JkWbdDQSmFFA==}
  553. '@unocss/preset-mini@0.58.9':
  554. resolution: {integrity: sha512-m4aDGYtueP8QGsU3FsyML63T/w5Mtr4htme2jXy6m50+tzC1PPHaIBstMTMQfLc6h8UOregPJyGHB5iYQZGEvQ==}
  555. '@unocss/preset-tagify@0.58.9':
  556. resolution: {integrity: sha512-obh75XrRmxYwrQMflzvhQUMeHwd/R9bEDhTWUW9aBTolBy4eNypmQwOhHCKh5Xi4Dg6o0xj6GWC/jcCj1SPLog==}
  557. '@unocss/preset-typography@0.58.9':
  558. resolution: {integrity: sha512-hrsaqKlcZni3Vh4fwXC+lP9e92FQYbqtmlZw2jpxlVwwH5aLzwk4d4MiFQGyhCfzuSDYm0Zd52putFVV02J7bA==}
  559. '@unocss/preset-uno@0.58.9':
  560. resolution: {integrity: sha512-Fze+X2Z/EegCkRdDRgwwvFBmXBenNR1AG8KxAyz8iPeWbhOBaRra2sn2ScryrfH6SbJHpw26ZyJXycAdS0Fq3A==}
  561. '@unocss/preset-web-fonts@0.58.9':
  562. resolution: {integrity: sha512-XtiO+Z+RYnNYomNkS2XxaQiY++CrQZKOfNGw5htgIrb32QtYVQSkyYQ3jDw7JmMiCWlZ4E72cV/zUb++WrZLxg==}
  563. '@unocss/preset-wind@0.58.9':
  564. resolution: {integrity: sha512-7l+7Vx5UoN80BmJKiqDXaJJ6EUqrnUQYv8NxCThFi5lYuHzxsYWZPLU3k3XlWRUQt8XL+6rYx7mMBmD7EUSHyw==}
  565. '@unocss/reset@0.58.9':
  566. resolution: {integrity: sha512-nA2pg3tnwlquq+FDOHyKwZvs20A6iBsKPU7Yjb48JrNnzoaXqE+O9oN6782IG2yKVW4AcnsAnAnM4cxXhGzy1w==}
  567. '@unocss/rule-utils@0.58.9':
  568. resolution: {integrity: sha512-45bDa+elmlFLthhJmKr2ltKMAB0yoXnDMQ6Zp5j3OiRB7dDMBkwYRPvHLvIe+34Ey7tDt/kvvDPtWMpPl2quUQ==}
  569. engines: {node: '>=14'}
  570. '@unocss/scope@0.58.9':
  571. resolution: {integrity: sha512-BIwcpx0R3bE0rYa9JVDJTk0GX32EBvnbvufBpNkWfC5tb7g+B7nMkVq9ichanksYCCxrIQQo0mrIz5PNzu9sGA==}
  572. '@unocss/transformer-attributify-jsx-babel@0.58.9':
  573. resolution: {integrity: sha512-UGaQoGZg+3QrsPtnGHPECmsGn4EQb2KSdZ4eGEn2YssjKv+CcQhzRvpEUgnuF/F+jGPkCkS/G/YEQBHRWBY54Q==}
  574. '@unocss/transformer-attributify-jsx@0.58.9':
  575. resolution: {integrity: sha512-jpL3PRwf8t43v1agUdQn2EHGgfdWfvzsMxFtoybO88xzOikzAJaaouteNtojc/fQat2T9iBduDxVj5egdKmhdQ==}
  576. '@unocss/transformer-compile-class@0.58.9':
  577. resolution: {integrity: sha512-l2VpCqelJ6Tgc1kfSODxBtg7fCGPVRr2EUzTg1LrGYKa2McbKuc/wV/2DWKHGxL6+voWi7a2C9XflqGDXXutuQ==}
  578. '@unocss/transformer-directives@0.58.9':
  579. resolution: {integrity: sha512-pLOUsdoY2ugVntJXg0xuGjO9XZ2xCiMxTPRtpZ4TsEzUtdEzMswR06Y8VWvNciTB/Zqxcz9ta8rD0DKePOfSuw==}
  580. '@unocss/transformer-variant-group@0.58.9':
  581. resolution: {integrity: sha512-3A6voHSnFcyw6xpcZT6oxE+KN4SHRnG4z862tdtWvRGcN+jGyNr20ylEZtnbk4xj0VNMeGHHQRZ0WLvmrAwvOQ==}
  582. '@unocss/vite@0.58.9':
  583. resolution: {integrity: sha512-mmppBuulAHCal+sC0Qz36Y99t0HicAmznpj70Kzwl7g/yvXwm58/DW2OnpCWw+uA8/JBft/+z3zE+XvrI+T1HA==}
  584. peerDependencies:
  585. vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
  586. '@vitejs/plugin-vue@6.0.5':
  587. resolution: {integrity: sha512-bL3AxKuQySfk1iGcBsQnoRVexTPJq0Z/ixFVM8OhVJAP6ZXXXLtM7NFKWhLl30Kg7uTBqIaPXbh+nuQCuBDedg==}
  588. engines: {node: ^20.19.0 || >=22.12.0}
  589. peerDependencies:
  590. vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
  591. vue: ^3.2.25
  592. '@vue/compiler-core@3.4.21':
  593. resolution: {integrity: sha512-MjXawxZf2SbZszLPYxaFCjxfibYrzr3eYbKxwpLR9EQN+oaziSu3qKVbwBERj1IFIB8OLUewxB5m/BFzi613og==}
  594. '@vue/compiler-core@3.5.30':
  595. resolution: {integrity: sha512-s3DfdZkcu/qExZ+td75015ljzHc6vE+30cFMGRPROYjqkroYI5NV2X1yAMX9UeyBNWB9MxCfPcsjpLS11nzkkw==}
  596. '@vue/compiler-dom@3.4.21':
  597. resolution: {integrity: sha512-IZC6FKowtT1sl0CR5DpXSiEB5ayw75oT2bma1BEhV7RRR1+cfwLrxc2Z8Zq/RGFzJ8w5r9QtCOvTjQgdn0IKmA==}
  598. '@vue/compiler-dom@3.5.30':
  599. resolution: {integrity: sha512-eCFYESUEVYHhiMuK4SQTldO3RYxyMR/UQL4KdGD1Yrkfdx4m/HYuZ9jSfPdA+nWJY34VWndiYdW/wZXyiPEB9g==}
  600. '@vue/compiler-sfc@3.4.21':
  601. resolution: {integrity: sha512-me7epoTxYlY+2CUM7hy9PCDdpMPfIwrOvAXud2Upk10g4YLv9UBW7kL798TvMeDhPthkZ0CONNrK2GoeI1ODiQ==}
  602. '@vue/compiler-sfc@3.5.30':
  603. resolution: {integrity: sha512-LqmFPDn89dtU9vI3wHJnwaV6GfTRD87AjWpTWpyrdVOObVtjIuSeZr181z5C4PmVx/V3j2p+0f7edFKGRMpQ5A==}
  604. '@vue/compiler-ssr@3.4.21':
  605. resolution: {integrity: sha512-M5+9nI2lPpAsgXOGQobnIueVqc9sisBFexh5yMIMRAPYLa7+5wEJs8iqOZc1WAa9WQbx9GR2twgznU8LTIiZ4Q==}
  606. '@vue/compiler-ssr@3.5.30':
  607. resolution: {integrity: sha512-NsYK6OMTnx109PSL2IAyf62JP6EUdk4Dmj6AkWcJGBvN0dQoMYtVekAmdqgTtWQgEJo+Okstbf/1p7qZr5H+bA==}
  608. '@vue/devtools-api@6.6.4':
  609. resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
  610. '@vue/reactivity@3.4.21':
  611. resolution: {integrity: sha512-UhenImdc0L0/4ahGCyEzc/pZNwVgcglGy9HVzJ1Bq2Mm9qXOpP8RyNTjookw/gOCUlXSEtuZ2fUg5nrHcoqJcw==}
  612. '@vue/reactivity@3.5.30':
  613. resolution: {integrity: sha512-179YNgKATuwj9gB+66snskRDOitDiuOZqkYia7mHKJaidOMo/WJxHKF8DuGc4V4XbYTJANlfEKb0yxTQotnx4Q==}
  614. '@vue/runtime-core@3.4.21':
  615. resolution: {integrity: sha512-pQthsuYzE1XcGZznTKn73G0s14eCJcjaLvp3/DKeYWoFacD9glJoqlNBxt3W2c5S40t6CCcpPf+jG01N3ULyrA==}
  616. '@vue/runtime-core@3.5.30':
  617. resolution: {integrity: sha512-e0Z+8PQsUTdwV8TtEsLzUM7SzC7lQwYKePydb7K2ZnmS6jjND+WJXkmmfh/swYzRyfP1EY3fpdesyYoymCzYfg==}
  618. '@vue/runtime-dom@3.4.21':
  619. resolution: {integrity: sha512-gvf+C9cFpevsQxbkRBS1NpU8CqxKw0ebqMvLwcGQrNpx6gqRDodqKqA+A2VZZpQ9RpK2f9yfg8VbW/EpdFUOJw==}
  620. '@vue/runtime-dom@3.5.30':
  621. resolution: {integrity: sha512-2UIGakjU4WSQ0T4iwDEW0W7vQj6n7AFn7taqZ9Cvm0Q/RA2FFOziLESrDL4GmtI1wV3jXg5nMoJSYO66egDUBw==}
  622. '@vue/server-renderer@3.4.21':
  623. resolution: {integrity: sha512-aV1gXyKSN6Rz+6kZ6kr5+Ll14YzmIbeuWe7ryJl5muJ4uwSwY/aStXTixx76TwkZFJLm1aAlA/HSWEJ4EyiMkg==}
  624. peerDependencies:
  625. vue: 3.4.21
  626. '@vue/server-renderer@3.5.30':
  627. resolution: {integrity: sha512-v+R34icapydRwbZRD0sXwtHqrQJv38JuMB4JxbOxd8NEpGLny7cncMp53W9UH/zo4j8eDHjQ1dEJXwzFQknjtQ==}
  628. peerDependencies:
  629. vue: 3.5.30
  630. '@vue/shared@3.4.21':
  631. resolution: {integrity: sha512-PuJe7vDIi6VYSinuEbUIQgMIRZGgM8e4R+G+/dQTk0X1NEdvgvvgv7m+rfmDH1gZzyA1OjjoWskvHlfRNfQf3g==}
  632. '@vue/shared@3.5.30':
  633. resolution: {integrity: sha512-YXgQ7JjaO18NeK2K9VTbDHaFy62WrObMa6XERNfNOkAhD1F1oDSf3ZJ7K6GqabZ0BvSDHajp8qfS5Sa2I9n8uQ==}
  634. '@vueuse/core@12.0.0':
  635. resolution: {integrity: sha512-C12RukhXiJCbx4MGhjmd/gH52TjJsc3G0E0kQj/kb19H3Nt6n1CA4DRWuTdWWcaFRdlTe0npWDS942mvacvNBw==}
  636. '@vueuse/metadata@12.0.0':
  637. resolution: {integrity: sha512-Yzimd1D3sjxTDOlF05HekU5aSGdKjxhuhRFHA7gDWLn57PRbBIh+SF5NmjhJ0WRgF3my7T8LBucyxdFJjIfRJQ==}
  638. '@vueuse/shared@12.0.0':
  639. resolution: {integrity: sha512-3i6qtcq2PIio5i/vVYidkkcgvmTjCqrf26u+Fd4LhnbBmIT6FN8y6q/GJERp8lfcB9zVEfjdV0Br0443qZuJpw==}
  640. '@webassemblyjs/ast@1.14.1':
  641. resolution: {integrity: sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==}
  642. '@webassemblyjs/floating-point-hex-parser@1.13.2':
  643. resolution: {integrity: sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==}
  644. '@webassemblyjs/helper-api-error@1.13.2':
  645. resolution: {integrity: sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==}
  646. '@webassemblyjs/helper-buffer@1.14.1':
  647. resolution: {integrity: sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==}
  648. '@webassemblyjs/helper-numbers@1.13.2':
  649. resolution: {integrity: sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==}
  650. '@webassemblyjs/helper-wasm-bytecode@1.13.2':
  651. resolution: {integrity: sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==}
  652. '@webassemblyjs/helper-wasm-section@1.14.1':
  653. resolution: {integrity: sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==}
  654. '@webassemblyjs/ieee754@1.13.2':
  655. resolution: {integrity: sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==}
  656. '@webassemblyjs/leb128@1.13.2':
  657. resolution: {integrity: sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==}
  658. '@webassemblyjs/utf8@1.13.2':
  659. resolution: {integrity: sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==}
  660. '@webassemblyjs/wasm-edit@1.14.1':
  661. resolution: {integrity: sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==}
  662. '@webassemblyjs/wasm-gen@1.14.1':
  663. resolution: {integrity: sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==}
  664. '@webassemblyjs/wasm-opt@1.14.1':
  665. resolution: {integrity: sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==}
  666. '@webassemblyjs/wasm-parser@1.14.1':
  667. resolution: {integrity: sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==}
  668. '@webassemblyjs/wast-printer@1.14.1':
  669. resolution: {integrity: sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==}
  670. '@xtuc/ieee754@1.2.0':
  671. resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}
  672. '@xtuc/long@4.2.2':
  673. resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
  674. acorn-import-phases@1.0.4:
  675. resolution: {integrity: sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ==}
  676. engines: {node: '>=10.13.0'}
  677. peerDependencies:
  678. acorn: ^8.14.0
  679. acorn@8.16.0:
  680. resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
  681. engines: {node: '>=0.4.0'}
  682. hasBin: true
  683. ajv-formats@2.1.1:
  684. resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
  685. peerDependencies:
  686. ajv: ^8.0.0
  687. peerDependenciesMeta:
  688. ajv:
  689. optional: true
  690. ajv-keywords@3.5.2:
  691. resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==}
  692. peerDependencies:
  693. ajv: ^6.9.1
  694. ajv-keywords@5.1.0:
  695. resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==}
  696. peerDependencies:
  697. ajv: ^8.8.2
  698. ajv@6.14.0:
  699. resolution: {integrity: sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==}
  700. ajv@8.18.0:
  701. resolution: {integrity: sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==}
  702. alova@3.2.13:
  703. resolution: {integrity: sha512-TmAgR42CMPywTxKTAtKjRQBhnzuO4i66UpcWm+LCmUgC+mL6DJjBx3N5B8rwNxw8YHDHfvegqNE/Pga3oujtCQ==}
  704. engines: {node: '>= 18.0.0'}
  705. anymatch@3.1.3:
  706. resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
  707. engines: {node: '>= 8'}
  708. async-validator@4.2.5:
  709. resolution: {integrity: sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==}
  710. asynckit@0.4.0:
  711. resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
  712. axios@1.13.6:
  713. resolution: {integrity: sha512-ChTCHMouEe2kn713WHbQGcuYrr6fXTBiu460OTwWrWob16g1bXn4vtz07Ope7ewMozJAnEquLk5lWQWtBig9DQ==}
  714. baseline-browser-mapping@2.10.7:
  715. resolution: {integrity: sha512-1ghYO3HnxGec0TCGBXiDLVns4eCSx4zJpxnHrlqFQajmhfKMQBzUGDdkMK7fUW7PTHTeLf+j87aTuKuuwWzMGw==}
  716. engines: {node: '>=6.0.0'}
  717. hasBin: true
  718. big.js@5.2.2:
  719. resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
  720. binary-extensions@2.3.0:
  721. resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
  722. engines: {node: '>=8'}
  723. braces@3.0.3:
  724. resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
  725. engines: {node: '>=8'}
  726. browserslist@4.28.1:
  727. resolution: {integrity: sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==}
  728. engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
  729. hasBin: true
  730. buffer-from@1.1.2:
  731. resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
  732. cac@6.7.14:
  733. resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
  734. engines: {node: '>=8'}
  735. call-bind-apply-helpers@1.0.2:
  736. resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
  737. engines: {node: '>= 0.4'}
  738. caniuse-lite@1.0.30001778:
  739. resolution: {integrity: sha512-PN7uxFL+ExFJO61aVmP1aIEG4i9whQd4eoSCebav62UwDyp5OHh06zN4jqKSMePVgxHifCw1QJxdRkA1Pisekg==}
  740. chokidar@3.6.0:
  741. resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
  742. engines: {node: '>= 8.10.0'}
  743. chokidar@5.0.0:
  744. resolution: {integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==}
  745. engines: {node: '>= 20.19.0'}
  746. chrome-trace-event@1.0.4:
  747. resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==}
  748. engines: {node: '>=6.0'}
  749. color-convert@3.1.3:
  750. resolution: {integrity: sha512-fasDH2ont2GqF5HpyO4w0+BcewlhHEZOFn9c1ckZdHpJ56Qb7MHhH/IcJZbBGgvdtwdwNbLvxiBEdg336iA9Sg==}
  751. engines: {node: '>=14.6'}
  752. color-name@2.1.0:
  753. resolution: {integrity: sha512-1bPaDNFm0axzE4MEAzKPuqKWeRaT43U/hyxKPBdqTfmPF+d6n7FSoTFxLVULUJOmiLp01KjhIPPH+HrXZJN4Rg==}
  754. engines: {node: '>=12.20'}
  755. color-string@2.1.4:
  756. resolution: {integrity: sha512-Bb6Cq8oq0IjDOe8wJmi4JeNn763Xs9cfrBcaylK1tPypWzyoy2G3l90v9k64kjphl/ZJjPIShFztenRomi8WTg==}
  757. engines: {node: '>=18'}
  758. color@5.0.3:
  759. resolution: {integrity: sha512-ezmVcLR3xAVp8kYOm4GS45ZLLgIE6SPAFoduLr6hTDajwb3KZ2F46gulK3XpcwRFb5KKGCSezCBAY4Dw4HsyXA==}
  760. engines: {node: '>=18'}
  761. colorette@2.0.20:
  762. resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
  763. combined-stream@1.0.8:
  764. resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
  765. engines: {node: '>= 0.8'}
  766. commander@2.20.3:
  767. resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
  768. confbox@0.1.8:
  769. resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
  770. confbox@0.2.4:
  771. resolution: {integrity: sha512-ysOGlgTFbN2/Y6Cg3Iye8YKulHw+R2fNXHrgSmXISQdMnomY6eNDprVdW9R5xBguEqI954+S6709UyiO7B+6OQ==}
  772. consola@3.4.2:
  773. resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==}
  774. engines: {node: ^14.18.0 || >=16.10.0}
  775. convert-source-map@2.0.0:
  776. resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
  777. css-tree@2.3.1:
  778. resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==}
  779. engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
  780. cssesc@3.0.0:
  781. resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
  782. engines: {node: '>=4'}
  783. hasBin: true
  784. csstype@3.2.3:
  785. resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
  786. dayjs@1.11.20:
  787. resolution: {integrity: sha512-YbwwqR/uYpeoP4pu043q+LTDLFBLApUP6VxRihdfNTqu4ubqMlGDLd6ErXhEgsyvY0K6nCs7nggYumAN+9uEuQ==}
  788. debug@4.4.3:
  789. resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
  790. engines: {node: '>=6.0'}
  791. peerDependencies:
  792. supports-color: '*'
  793. peerDependenciesMeta:
  794. supports-color:
  795. optional: true
  796. defu@6.1.4:
  797. resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
  798. delayed-stream@1.0.0:
  799. resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
  800. engines: {node: '>=0.4.0'}
  801. destr@2.0.5:
  802. resolution: {integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==}
  803. dunder-proto@1.0.1:
  804. resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
  805. engines: {node: '>= 0.4'}
  806. duplexer@0.1.2:
  807. resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
  808. electron-to-chromium@1.5.313:
  809. resolution: {integrity: sha512-QBMrTWEf00GXZmJyx2lbYD45jpI3TUFnNIzJ5BBc8piGUDwMPa1GV6HJWTZVvY/eiN3fSopl7NRbgGp9sZ9LTA==}
  810. element-plus@2.13.5:
  811. resolution: {integrity: sha512-dmY24fhSREfZN/PuUt0YZigMso7wWzl+B5o+YKNN15kQIn/0hzamsPU+ebj9SES0IbUqsLX1wkrzYmzU8VrVOQ==}
  812. peerDependencies:
  813. vue: ^3.3.0
  814. emojis-list@3.0.0:
  815. resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==}
  816. engines: {node: '>= 4'}
  817. enhanced-resolve@5.20.0:
  818. resolution: {integrity: sha512-/ce7+jQ1PQ6rVXwe+jKEg5hW5ciicHwIQUagZkp6IufBoY3YDgdTTY1azVs0qoRgVmvsNB+rbjLJxDAeHHtwsQ==}
  819. engines: {node: '>=10.13.0'}
  820. entities@4.5.0:
  821. resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
  822. engines: {node: '>=0.12'}
  823. entities@7.0.1:
  824. resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==}
  825. engines: {node: '>=0.12'}
  826. es-define-property@1.0.1:
  827. resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
  828. engines: {node: '>= 0.4'}
  829. es-errors@1.3.0:
  830. resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
  831. engines: {node: '>= 0.4'}
  832. es-module-lexer@2.0.0:
  833. resolution: {integrity: sha512-5POEcUuZybH7IdmGsD8wlf0AI55wMecM9rVBTI/qEAy2c1kTOm3DjFYjrBdI2K3BaJjJYfYFeRtM0t9ssnRuxw==}
  834. es-object-atoms@1.1.1:
  835. resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
  836. engines: {node: '>= 0.4'}
  837. es-set-tostringtag@2.1.0:
  838. resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
  839. engines: {node: '>= 0.4'}
  840. es-toolkit@1.38.0:
  841. resolution: {integrity: sha512-OT3AxczYYd3W50bCj4V0hKoOAfqIy9tof0leNQYekEDxVKir3RTVTJOLij7VAe6fsCNsGhC0JqIkURpMXTCSEA==}
  842. esbuild@0.20.2:
  843. resolution: {integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==}
  844. engines: {node: '>=12'}
  845. hasBin: true
  846. escalade@3.2.0:
  847. resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
  848. engines: {node: '>=6'}
  849. escape-string-regexp@5.0.0:
  850. resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
  851. engines: {node: '>=12'}
  852. eslint-scope@5.1.1:
  853. resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
  854. engines: {node: '>=8.0.0'}
  855. esrecurse@4.3.0:
  856. resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
  857. engines: {node: '>=4.0'}
  858. estraverse@4.3.0:
  859. resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
  860. engines: {node: '>=4.0'}
  861. estraverse@5.3.0:
  862. resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
  863. engines: {node: '>=4.0'}
  864. estree-walker@2.0.2:
  865. resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
  866. estree-walker@3.0.3:
  867. resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
  868. events@3.3.0:
  869. resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
  870. engines: {node: '>=0.8.x'}
  871. exsolve@1.0.8:
  872. resolution: {integrity: sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA==}
  873. fast-deep-equal@3.1.3:
  874. resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
  875. fast-glob@3.3.3:
  876. resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
  877. engines: {node: '>=8.6.0'}
  878. fast-json-stable-stringify@2.1.0:
  879. resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
  880. fast-uri@3.1.0:
  881. resolution: {integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==}
  882. fastq@1.20.1:
  883. resolution: {integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==}
  884. fdir@6.5.0:
  885. resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
  886. engines: {node: '>=12.0.0'}
  887. peerDependencies:
  888. picomatch: ^3 || ^4
  889. peerDependenciesMeta:
  890. picomatch:
  891. optional: true
  892. fill-range@7.1.1:
  893. resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
  894. engines: {node: '>=8'}
  895. follow-redirects@1.15.11:
  896. resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
  897. engines: {node: '>=4.0'}
  898. peerDependencies:
  899. debug: '*'
  900. peerDependenciesMeta:
  901. debug:
  902. optional: true
  903. form-data@4.0.5:
  904. resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==}
  905. engines: {node: '>= 6'}
  906. fsevents@2.3.3:
  907. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  908. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  909. os: [darwin]
  910. function-bind@1.1.2:
  911. resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
  912. gensync@1.0.0-beta.2:
  913. resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
  914. engines: {node: '>=6.9.0'}
  915. get-intrinsic@1.3.0:
  916. resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
  917. engines: {node: '>= 0.4'}
  918. get-proto@1.0.1:
  919. resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
  920. engines: {node: '>= 0.4'}
  921. glob-parent@5.1.2:
  922. resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
  923. engines: {node: '>= 6'}
  924. glob-to-regexp@0.4.1:
  925. resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
  926. globals@15.15.0:
  927. resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==}
  928. engines: {node: '>=18'}
  929. gopd@1.2.0:
  930. resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
  931. engines: {node: '>= 0.4'}
  932. graceful-fs@4.2.11:
  933. resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
  934. gzip-size@6.0.0:
  935. resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==}
  936. engines: {node: '>=10'}
  937. has-flag@4.0.0:
  938. resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
  939. engines: {node: '>=8'}
  940. has-symbols@1.1.0:
  941. resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
  942. engines: {node: '>= 0.4'}
  943. has-tostringtag@1.0.2:
  944. resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
  945. engines: {node: '>= 0.4'}
  946. hasown@2.0.2:
  947. resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
  948. engines: {node: '>= 0.4'}
  949. immutable@4.3.8:
  950. resolution: {integrity: sha512-d/Ld9aLbKpNwyl0KiM2CT1WYvkitQ1TSvmRtkcV8FKStiDoA7Slzgjmb/1G2yhKM1p0XeNOieaTbFZmU1d3Xuw==}
  951. is-binary-path@2.1.0:
  952. resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
  953. engines: {node: '>=8'}
  954. is-extglob@2.1.1:
  955. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  956. engines: {node: '>=0.10.0'}
  957. is-glob@4.0.3:
  958. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  959. engines: {node: '>=0.10.0'}
  960. is-number@7.0.0:
  961. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  962. engines: {node: '>=0.12.0'}
  963. jest-worker@27.5.1:
  964. resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
  965. engines: {node: '>= 10.13.0'}
  966. jiti@1.21.7:
  967. resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==}
  968. hasBin: true
  969. js-tokens@4.0.0:
  970. resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
  971. js-tokens@9.0.1:
  972. resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==}
  973. jsesc@3.1.0:
  974. resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
  975. engines: {node: '>=6'}
  976. hasBin: true
  977. json-parse-even-better-errors@2.3.1:
  978. resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
  979. json-schema-traverse@0.4.1:
  980. resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
  981. json-schema-traverse@1.0.0:
  982. resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
  983. json5@2.2.3:
  984. resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
  985. engines: {node: '>=6'}
  986. hasBin: true
  987. klona@2.0.6:
  988. resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==}
  989. engines: {node: '>= 8'}
  990. kolorist@1.8.0:
  991. resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
  992. loader-runner@4.3.1:
  993. resolution: {integrity: sha512-IWqP2SCPhyVFTBtRcgMHdzlf9ul25NwaFx4wCEH/KjAXuuHY4yNjvPXsBokp8jCB936PyWRaPKUNh8NvylLp2Q==}
  994. engines: {node: '>=6.11.5'}
  995. loader-utils@2.0.4:
  996. resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==}
  997. engines: {node: '>=8.9.0'}
  998. local-pkg@1.1.2:
  999. resolution: {integrity: sha512-arhlxbFRmoQHl33a0Zkle/YWlmNwoyt6QNZEIJcqNbdrsix5Lvc4HyyI3EnwxTYlZYc32EbYrQ8SzEZ7dqgg9A==}
  1000. engines: {node: '>=14'}
  1001. lodash-es@4.17.23:
  1002. resolution: {integrity: sha512-kVI48u3PZr38HdYz98UmfPnXl2DXrpdctLrFLCd3kOx1xUkOmpFPx7gCWWM5MPkL/fD8zb+Ph0QzjGFs4+hHWg==}
  1003. lodash-unified@1.0.3:
  1004. resolution: {integrity: sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==}
  1005. peerDependencies:
  1006. '@types/lodash-es': '*'
  1007. lodash: '*'
  1008. lodash-es: '*'
  1009. lodash@4.17.23:
  1010. resolution: {integrity: sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==}
  1011. lru-cache@5.1.1:
  1012. resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
  1013. magic-string@0.30.21:
  1014. resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
  1015. math-intrinsics@1.1.0:
  1016. resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
  1017. engines: {node: '>= 0.4'}
  1018. mdn-data@2.0.30:
  1019. resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==}
  1020. memoize-one@6.0.0:
  1021. resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==}
  1022. merge-stream@2.0.0:
  1023. resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
  1024. merge2@1.4.1:
  1025. resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
  1026. engines: {node: '>= 8'}
  1027. micromatch@4.0.8:
  1028. resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
  1029. engines: {node: '>=8.6'}
  1030. mime-db@1.52.0:
  1031. resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
  1032. engines: {node: '>= 0.6'}
  1033. mime-types@2.1.35:
  1034. resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
  1035. engines: {node: '>= 0.6'}
  1036. mlly@1.8.1:
  1037. resolution: {integrity: sha512-SnL6sNutTwRWWR/vcmCYHSADjiEesp5TGQQ0pXyLhW5IoeibRlF/CbSLailbB3CNqJUk9cVJ9dUDnbD7GrcHBQ==}
  1038. mrmime@2.0.1:
  1039. resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==}
  1040. engines: {node: '>=10'}
  1041. ms@2.1.3:
  1042. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  1043. nanoid@3.3.11:
  1044. resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
  1045. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  1046. hasBin: true
  1047. neo-async@2.6.2:
  1048. resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
  1049. node-fetch-native@1.6.7:
  1050. resolution: {integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==}
  1051. node-releases@2.0.36:
  1052. resolution: {integrity: sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==}
  1053. normalize-path@3.0.0:
  1054. resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
  1055. engines: {node: '>=0.10.0'}
  1056. normalize-wheel-es@1.2.0:
  1057. resolution: {integrity: sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==}
  1058. obug@2.1.1:
  1059. resolution: {integrity: sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==}
  1060. ofetch@1.5.1:
  1061. resolution: {integrity: sha512-2W4oUZlVaqAPAil6FUg/difl6YhqhUR7x2eZY4bQCko22UXg3hptq9KLQdqFClV+Wu85UX7hNtdGTngi/1BxcA==}
  1062. package-manager-detector@1.6.0:
  1063. resolution: {integrity: sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==}
  1064. pathe@1.1.2:
  1065. resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
  1066. pathe@2.0.3:
  1067. resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
  1068. perfect-debounce@1.0.0:
  1069. resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
  1070. picocolors@1.1.1:
  1071. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  1072. picomatch@2.3.1:
  1073. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  1074. engines: {node: '>=8.6'}
  1075. picomatch@4.0.3:
  1076. resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
  1077. engines: {node: '>=12'}
  1078. pinia-plugin-persistedstate@3.2.3:
  1079. resolution: {integrity: sha512-Cm819WBj/s5K5DGw55EwbXDtx+EZzM0YR5AZbq9XE3u0xvXwvX2JnWoFpWIcdzISBHqy9H1UiSIUmXyXqWsQRQ==}
  1080. peerDependencies:
  1081. pinia: ^2.0.0
  1082. pinia@2.0.36:
  1083. resolution: {integrity: sha512-4UKApwjlmJH+VuHKgA+zQMddcCb3ezYnyewQ9NVrsDqZ/j9dMv5+rh+1r48whKNdpFkZAWVxhBp5ewYaYX9JcQ==}
  1084. peerDependencies:
  1085. '@vue/composition-api': ^1.4.0
  1086. typescript: '>=4.4.4'
  1087. vue: ^2.6.14 || ^3.2.0
  1088. peerDependenciesMeta:
  1089. '@vue/composition-api':
  1090. optional: true
  1091. typescript:
  1092. optional: true
  1093. pkg-types@1.3.1:
  1094. resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
  1095. pkg-types@2.3.0:
  1096. resolution: {integrity: sha512-SIqCzDRg0s9npO5XQ3tNZioRY1uK06lA41ynBC1YmFTmnY6FjUjVt6s4LoADmwoig1qqD0oK8h1p/8mlMx8Oig==}
  1097. postcss-nested@7.0.2:
  1098. resolution: {integrity: sha512-5osppouFc0VR9/VYzYxO03VaDa3e8F23Kfd6/9qcZTUI8P58GIYlArOET2Wq0ywSl2o2PjELhYOFI4W7l5QHKw==}
  1099. engines: {node: '>=18.0'}
  1100. peerDependencies:
  1101. postcss: ^8.2.14
  1102. postcss-remove-inline-comments@0.0.2:
  1103. resolution: {integrity: sha512-Ga5qBOZtiZDgzHiCBQf0svU9w5UG6Wf/aE0XDiSNgX1qkWQNWgewLIjFNweuGAc/QcuuAVZBxxIRr78RA3vB0g==}
  1104. engines: {node: ^12 || ^14 || >=16}
  1105. peerDependencies:
  1106. postcss: ^8.4.18
  1107. postcss-scss@4.0.9:
  1108. resolution: {integrity: sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==}
  1109. engines: {node: '>=12.0'}
  1110. peerDependencies:
  1111. postcss: ^8.4.29
  1112. postcss-selector-parser@7.1.1:
  1113. resolution: {integrity: sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==}
  1114. engines: {node: '>=4'}
  1115. postcss@8.5.8:
  1116. resolution: {integrity: sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==}
  1117. engines: {node: ^10 || ^12 || >=14}
  1118. proxy-from-env@1.1.0:
  1119. resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
  1120. punycode@2.3.1:
  1121. resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
  1122. engines: {node: '>=6'}
  1123. quansync@0.2.11:
  1124. resolution: {integrity: sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==}
  1125. queue-microtask@1.2.3:
  1126. resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
  1127. rate-limiter-flexible@5.0.5:
  1128. resolution: {integrity: sha512-+/dSQfo+3FYwYygUs/V2BBdwGa9nFtakDwKt4l0bnvNB53TNT++QSFewwHX9qXrZJuMe9j+TUaU21lm5ARgqdQ==}
  1129. readdirp@3.6.0:
  1130. resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
  1131. engines: {node: '>=8.10.0'}
  1132. readdirp@5.0.0:
  1133. resolution: {integrity: sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==}
  1134. engines: {node: '>= 20.19.0'}
  1135. require-from-string@2.0.2:
  1136. resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
  1137. engines: {node: '>=0.10.0'}
  1138. reusify@1.1.0:
  1139. resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
  1140. engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
  1141. rollup@4.59.0:
  1142. resolution: {integrity: sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==}
  1143. engines: {node: '>=18.0.0', npm: '>=8.0.0'}
  1144. hasBin: true
  1145. run-parallel@1.2.0:
  1146. resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
  1147. sass-loader@10.4.1:
  1148. resolution: {integrity: sha512-aX/iJZTTpNUNx/OSYzo2KsjIUQHqvWsAhhUijFjAPdZTEhstjZI9zTNvkTTwsx+uNUJqUwOw5gacxQMx4hJxGQ==}
  1149. engines: {node: '>= 10.13.0'}
  1150. peerDependencies:
  1151. fibers: '>= 3.1.0'
  1152. node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
  1153. sass: ^1.3.0
  1154. webpack: ^4.36.0 || ^5.0.0
  1155. peerDependenciesMeta:
  1156. fibers:
  1157. optional: true
  1158. node-sass:
  1159. optional: true
  1160. sass:
  1161. optional: true
  1162. sass@1.63.2:
  1163. resolution: {integrity: sha512-u56TU0AIFqMtauKl/OJ1AeFsXqRHkgO7nCWmHaDwfxDo9GUMSqBA4NEh6GMuh1CYVM7zuROYtZrHzPc2ixK+ww==}
  1164. engines: {node: '>=14.0.0'}
  1165. hasBin: true
  1166. schema-utils@3.3.0:
  1167. resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==}
  1168. engines: {node: '>= 10.13.0'}
  1169. schema-utils@4.3.3:
  1170. resolution: {integrity: sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==}
  1171. engines: {node: '>= 10.13.0'}
  1172. scule@1.3.0:
  1173. resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==}
  1174. semver@6.3.1:
  1175. resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
  1176. hasBin: true
  1177. semver@7.7.4:
  1178. resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==}
  1179. engines: {node: '>=10'}
  1180. hasBin: true
  1181. simple-git-hooks@2.13.1:
  1182. resolution: {integrity: sha512-WszCLXwT4h2k1ufIXAgsbiTOazqqevFCIncOuUBZJ91DdvWcC5+OFkluWRQPrcuSYd8fjq+o2y1QfWqYMoAToQ==}
  1183. hasBin: true
  1184. sirv@2.0.4:
  1185. resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
  1186. engines: {node: '>= 10'}
  1187. source-map-js@1.2.1:
  1188. resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  1189. engines: {node: '>=0.10.0'}
  1190. source-map-support@0.5.21:
  1191. resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
  1192. source-map@0.6.1:
  1193. resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
  1194. engines: {node: '>=0.10.0'}
  1195. strip-literal@3.1.0:
  1196. resolution: {integrity: sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==}
  1197. supports-color@8.1.1:
  1198. resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
  1199. engines: {node: '>=10'}
  1200. tapable@2.3.0:
  1201. resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
  1202. engines: {node: '>=6'}
  1203. terser-webpack-plugin@5.4.0:
  1204. resolution: {integrity: sha512-Bn5vxm48flOIfkdl5CaD2+1CiUVbonWQ3KQPyP7/EuIl9Gbzq/gQFOzaMFUEgVjB1396tcK0SG8XcNJ/2kDH8g==}
  1205. engines: {node: '>= 10.13.0'}
  1206. peerDependencies:
  1207. '@swc/core': '*'
  1208. esbuild: '*'
  1209. uglify-js: '*'
  1210. webpack: ^5.1.0
  1211. peerDependenciesMeta:
  1212. '@swc/core':
  1213. optional: true
  1214. esbuild:
  1215. optional: true
  1216. uglify-js:
  1217. optional: true
  1218. terser@5.46.0:
  1219. resolution: {integrity: sha512-jTwoImyr/QbOWFFso3YoU3ik0jBBDJ6JTOQiy/J2YxVJdZCc+5u7skhNwiOR3FQIygFqVUPHl7qbbxtjW2K3Qg==}
  1220. engines: {node: '>=10'}
  1221. hasBin: true
  1222. tinyexec@1.0.2:
  1223. resolution: {integrity: sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==}
  1224. engines: {node: '>=18'}
  1225. tinyglobby@0.2.15:
  1226. resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
  1227. engines: {node: '>=12.0.0'}
  1228. to-regex-range@5.0.1:
  1229. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  1230. engines: {node: '>=8.0'}
  1231. totalist@3.0.1:
  1232. resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
  1233. engines: {node: '>=6'}
  1234. ufo@1.6.3:
  1235. resolution: {integrity: sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==}
  1236. unconfig@0.3.13:
  1237. resolution: {integrity: sha512-N9Ph5NC4+sqtcOjPfHrRcHekBCadCXWTBzp2VYYbySOHW0PfD9XLCeXshTXjkPYwLrBr9AtSeU0CZmkYECJhng==}
  1238. undici-types@7.18.2:
  1239. resolution: {integrity: sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==}
  1240. unimport@4.2.0:
  1241. resolution: {integrity: sha512-mYVtA0nmzrysnYnyb3ALMbByJ+Maosee2+WyE0puXl+Xm2bUwPorPaaeZt0ETfuroPOtG8jj1g/qeFZ6buFnag==}
  1242. engines: {node: '>=18.12.0'}
  1243. unocss@0.58.9:
  1244. resolution: {integrity: sha512-aqANXXP0RrtN4kSaTLn/7I6wh8o45LUdVgPzGu7Fan2DfH2+wpIs6frlnlHlOymnb+52dp6kXluQinddaUKW1A==}
  1245. engines: {node: '>=14'}
  1246. peerDependencies:
  1247. '@unocss/webpack': 0.58.9
  1248. vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
  1249. peerDependenciesMeta:
  1250. '@unocss/webpack':
  1251. optional: true
  1252. vite:
  1253. optional: true
  1254. unplugin-auto-import@19.2.0:
  1255. resolution: {integrity: sha512-DGRHg86nUDKEYpny1p2kFZjeLg7kHQmknsPQ8krAshvpeypps7dFxNBsAqhBaxYINjetbgQilF8wbjuZxpdomg==}
  1256. engines: {node: '>=14'}
  1257. peerDependencies:
  1258. '@nuxt/kit': ^3.2.2
  1259. '@vueuse/core': '*'
  1260. peerDependenciesMeta:
  1261. '@nuxt/kit':
  1262. optional: true
  1263. '@vueuse/core':
  1264. optional: true
  1265. unplugin-utils@0.2.5:
  1266. resolution: {integrity: sha512-gwXJnPRewT4rT7sBi/IvxKTjsms7jX7QIDLOClApuZwR49SXbrB1z2NLUZ+vDHyqCj/n58OzRRqaW+B8OZi8vg==}
  1267. engines: {node: '>=18.12.0'}
  1268. unplugin-utils@0.3.1:
  1269. resolution: {integrity: sha512-5lWVjgi6vuHhJ526bI4nlCOmkCIF3nnfXkCMDeMJrtdvxTs6ZFCM8oNufGTsDbKv/tJ/xj8RpvXjRuPBZJuJog==}
  1270. engines: {node: '>=20.19.0'}
  1271. unplugin-vue-components@31.0.0:
  1272. resolution: {integrity: sha512-4ULwfTZTLuWJ7+S9P7TrcStYLsSRkk6vy2jt/WTfgUEUb0nW9//xxmrfhyHUEVpZ2UKRRwfRb8Yy15PDbVZf+Q==}
  1273. engines: {node: '>=20.19.0'}
  1274. peerDependencies:
  1275. '@nuxt/kit': ^3.2.2 || ^4.0.0
  1276. vue: ^3.0.0
  1277. peerDependenciesMeta:
  1278. '@nuxt/kit':
  1279. optional: true
  1280. unplugin@2.3.11:
  1281. resolution: {integrity: sha512-5uKD0nqiYVzlmCRs01Fhs2BdkEgBS3SAVP6ndrBsuK42iC2+JHyxM05Rm9G8+5mkmRtzMZGY8Ct5+mliZxU/Ww==}
  1282. engines: {node: '>=18.12.0'}
  1283. update-browserslist-db@1.2.3:
  1284. resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
  1285. hasBin: true
  1286. peerDependencies:
  1287. browserslist: '>= 4.21.0'
  1288. uri-js@4.4.1:
  1289. resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
  1290. util-deprecate@1.0.2:
  1291. resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
  1292. vite@5.2.8:
  1293. resolution: {integrity: sha512-OyZR+c1CE8yeHw5V5t59aXsUPPVTHMDjEZz8MgguLL/Q7NblxhZUlTu9xSPqlsUO/y+X7dlU05jdhvyycD55DA==}
  1294. engines: {node: ^18.0.0 || >=20.0.0}
  1295. hasBin: true
  1296. peerDependencies:
  1297. '@types/node': ^18.0.0 || >=20.0.0
  1298. less: '*'
  1299. lightningcss: ^1.21.0
  1300. sass: '*'
  1301. stylus: '*'
  1302. sugarss: '*'
  1303. terser: ^5.4.0
  1304. peerDependenciesMeta:
  1305. '@types/node':
  1306. optional: true
  1307. less:
  1308. optional: true
  1309. lightningcss:
  1310. optional: true
  1311. sass:
  1312. optional: true
  1313. stylus:
  1314. optional: true
  1315. sugarss:
  1316. optional: true
  1317. terser:
  1318. optional: true
  1319. vue-demi@0.14.10:
  1320. resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==}
  1321. engines: {node: '>=12'}
  1322. hasBin: true
  1323. peerDependencies:
  1324. '@vue/composition-api': ^1.0.0-rc.1
  1325. vue: ^3.0.0-0 || ^2.6.0
  1326. peerDependenciesMeta:
  1327. '@vue/composition-api':
  1328. optional: true
  1329. vue-i18n@9.1.11:
  1330. resolution: {integrity: sha512-SWe5WN/zVoh4bnpr+V3Er+UT5bizcJiTLU9LbLvlprDRg0hGV+yNWNt3KiQzPLH1qc4tmHe8Y1/jXzn3txMtjA==}
  1331. engines: {node: '>= 10'}
  1332. deprecated: v9 and v10 no longer supported. please migrate to v11. about maintenance status, see https://vue-i18n.intlify.dev/guide/maintenance.html
  1333. peerDependencies:
  1334. vue: ^3.0.0
  1335. vue-router@4.6.4:
  1336. resolution: {integrity: sha512-Hz9q5sa33Yhduglwz6g9skT8OBPii+4bFn88w6J+J4MfEo4KRRpmiNG/hHHkdbRFlLBOqxN8y8gf2Fb0MTUgVg==}
  1337. peerDependencies:
  1338. vue: ^3.5.0
  1339. vue@3.4.21:
  1340. resolution: {integrity: sha512-5hjyV/jLEIKD/jYl4cavMcnzKwjMKohureP8ejn3hhEjwhWIhWeuzL2kJAjzl/WyVsgPY56Sy4Z40C3lVshxXA==}
  1341. peerDependencies:
  1342. typescript: '*'
  1343. peerDependenciesMeta:
  1344. typescript:
  1345. optional: true
  1346. vue@3.5.30:
  1347. resolution: {integrity: sha512-hTHLc6VNZyzzEH/l7PFGjpcTvUgiaPK5mdLkbjrTeWSRcEfxFrv56g/XckIYlE9ckuobsdwqd5mk2g1sBkMewg==}
  1348. peerDependencies:
  1349. typescript: '*'
  1350. peerDependenciesMeta:
  1351. typescript:
  1352. optional: true
  1353. watchpack@2.5.1:
  1354. resolution: {integrity: sha512-Zn5uXdcFNIA1+1Ei5McRd+iRzfhENPCe7LeABkJtNulSxjma+l7ltNx55BWZkRlwRnpOgHqxnjyaDgJnNXnqzg==}
  1355. engines: {node: '>=10.13.0'}
  1356. webpack-sources@3.3.4:
  1357. resolution: {integrity: sha512-7tP1PdV4vF+lYPnkMR0jMY5/la2ub5Fc/8VQrrU+lXkiM6C4TjVfGw7iKfyhnTQOsD+6Q/iKw0eFciziRgD58Q==}
  1358. engines: {node: '>=10.13.0'}
  1359. webpack-virtual-modules@0.6.2:
  1360. resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
  1361. webpack@5.105.4:
  1362. resolution: {integrity: sha512-jTywjboN9aHxFlToqb0K0Zs9SbBoW4zRUlGzI2tYNxVYcEi/IPpn+Xi4ye5jTLvX2YeLuic/IvxNot+Q1jMoOw==}
  1363. engines: {node: '>=10.13.0'}
  1364. hasBin: true
  1365. peerDependencies:
  1366. webpack-cli: '*'
  1367. peerDependenciesMeta:
  1368. webpack-cli:
  1369. optional: true
  1370. yallist@3.1.1:
  1371. resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
  1372. snapshots:
  1373. '@alova/mock@2.0.20(alova@3.2.13)':
  1374. dependencies:
  1375. '@alova/shared': 1.3.2
  1376. alova: 3.2.13
  1377. '@alova/shared@1.1.2': {}
  1378. '@alova/shared@1.2.0': {}
  1379. '@alova/shared@1.3.2': {}
  1380. '@ampproject/remapping@2.3.0':
  1381. dependencies:
  1382. '@jridgewell/gen-mapping': 0.3.13
  1383. '@jridgewell/trace-mapping': 0.3.31
  1384. '@antfu/install-pkg@1.1.0':
  1385. dependencies:
  1386. package-manager-detector: 1.6.0
  1387. tinyexec: 1.0.2
  1388. '@antfu/utils@0.7.10': {}
  1389. '@antfu/utils@8.1.1': {}
  1390. '@babel/code-frame@7.29.0':
  1391. dependencies:
  1392. '@babel/helper-validator-identifier': 7.28.5
  1393. js-tokens: 4.0.0
  1394. picocolors: 1.1.1
  1395. '@babel/compat-data@7.29.0': {}
  1396. '@babel/core@7.29.0':
  1397. dependencies:
  1398. '@babel/code-frame': 7.29.0
  1399. '@babel/generator': 7.29.1
  1400. '@babel/helper-compilation-targets': 7.28.6
  1401. '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0)
  1402. '@babel/helpers': 7.28.6
  1403. '@babel/parser': 7.29.0
  1404. '@babel/template': 7.28.6
  1405. '@babel/traverse': 7.29.0
  1406. '@babel/types': 7.29.0
  1407. '@jridgewell/remapping': 2.3.5
  1408. convert-source-map: 2.0.0
  1409. debug: 4.4.3
  1410. gensync: 1.0.0-beta.2
  1411. json5: 2.2.3
  1412. semver: 6.3.1
  1413. transitivePeerDependencies:
  1414. - supports-color
  1415. '@babel/generator@7.29.1':
  1416. dependencies:
  1417. '@babel/parser': 7.29.0
  1418. '@babel/types': 7.29.0
  1419. '@jridgewell/gen-mapping': 0.3.13
  1420. '@jridgewell/trace-mapping': 0.3.31
  1421. jsesc: 3.1.0
  1422. '@babel/helper-annotate-as-pure@7.27.3':
  1423. dependencies:
  1424. '@babel/types': 7.29.0
  1425. '@babel/helper-compilation-targets@7.28.6':
  1426. dependencies:
  1427. '@babel/compat-data': 7.29.0
  1428. '@babel/helper-validator-option': 7.27.1
  1429. browserslist: 4.28.1
  1430. lru-cache: 5.1.1
  1431. semver: 6.3.1
  1432. '@babel/helper-create-class-features-plugin@7.28.6(@babel/core@7.29.0)':
  1433. dependencies:
  1434. '@babel/core': 7.29.0
  1435. '@babel/helper-annotate-as-pure': 7.27.3
  1436. '@babel/helper-member-expression-to-functions': 7.28.5
  1437. '@babel/helper-optimise-call-expression': 7.27.1
  1438. '@babel/helper-replace-supers': 7.28.6(@babel/core@7.29.0)
  1439. '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
  1440. '@babel/traverse': 7.29.0
  1441. semver: 6.3.1
  1442. transitivePeerDependencies:
  1443. - supports-color
  1444. '@babel/helper-globals@7.28.0': {}
  1445. '@babel/helper-member-expression-to-functions@7.28.5':
  1446. dependencies:
  1447. '@babel/traverse': 7.29.0
  1448. '@babel/types': 7.29.0
  1449. transitivePeerDependencies:
  1450. - supports-color
  1451. '@babel/helper-module-imports@7.28.6':
  1452. dependencies:
  1453. '@babel/traverse': 7.29.0
  1454. '@babel/types': 7.29.0
  1455. transitivePeerDependencies:
  1456. - supports-color
  1457. '@babel/helper-module-transforms@7.28.6(@babel/core@7.29.0)':
  1458. dependencies:
  1459. '@babel/core': 7.29.0
  1460. '@babel/helper-module-imports': 7.28.6
  1461. '@babel/helper-validator-identifier': 7.28.5
  1462. '@babel/traverse': 7.29.0
  1463. transitivePeerDependencies:
  1464. - supports-color
  1465. '@babel/helper-optimise-call-expression@7.27.1':
  1466. dependencies:
  1467. '@babel/types': 7.29.0
  1468. '@babel/helper-plugin-utils@7.28.6': {}
  1469. '@babel/helper-replace-supers@7.28.6(@babel/core@7.29.0)':
  1470. dependencies:
  1471. '@babel/core': 7.29.0
  1472. '@babel/helper-member-expression-to-functions': 7.28.5
  1473. '@babel/helper-optimise-call-expression': 7.27.1
  1474. '@babel/traverse': 7.29.0
  1475. transitivePeerDependencies:
  1476. - supports-color
  1477. '@babel/helper-skip-transparent-expression-wrappers@7.27.1':
  1478. dependencies:
  1479. '@babel/traverse': 7.29.0
  1480. '@babel/types': 7.29.0
  1481. transitivePeerDependencies:
  1482. - supports-color
  1483. '@babel/helper-string-parser@7.27.1': {}
  1484. '@babel/helper-validator-identifier@7.28.5': {}
  1485. '@babel/helper-validator-option@7.27.1': {}
  1486. '@babel/helpers@7.28.6':
  1487. dependencies:
  1488. '@babel/template': 7.28.6
  1489. '@babel/types': 7.29.0
  1490. '@babel/parser@7.29.0':
  1491. dependencies:
  1492. '@babel/types': 7.29.0
  1493. '@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0)':
  1494. dependencies:
  1495. '@babel/core': 7.29.0
  1496. '@babel/helper-plugin-utils': 7.28.6
  1497. '@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0)':
  1498. dependencies:
  1499. '@babel/core': 7.29.0
  1500. '@babel/helper-plugin-utils': 7.28.6
  1501. '@babel/plugin-transform-modules-commonjs@7.28.6(@babel/core@7.29.0)':
  1502. dependencies:
  1503. '@babel/core': 7.29.0
  1504. '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0)
  1505. '@babel/helper-plugin-utils': 7.28.6
  1506. transitivePeerDependencies:
  1507. - supports-color
  1508. '@babel/plugin-transform-typescript@7.28.6(@babel/core@7.29.0)':
  1509. dependencies:
  1510. '@babel/core': 7.29.0
  1511. '@babel/helper-annotate-as-pure': 7.27.3
  1512. '@babel/helper-create-class-features-plugin': 7.28.6(@babel/core@7.29.0)
  1513. '@babel/helper-plugin-utils': 7.28.6
  1514. '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
  1515. '@babel/plugin-syntax-typescript': 7.28.6(@babel/core@7.29.0)
  1516. transitivePeerDependencies:
  1517. - supports-color
  1518. '@babel/preset-typescript@7.28.5(@babel/core@7.29.0)':
  1519. dependencies:
  1520. '@babel/core': 7.29.0
  1521. '@babel/helper-plugin-utils': 7.28.6
  1522. '@babel/helper-validator-option': 7.27.1
  1523. '@babel/plugin-syntax-jsx': 7.28.6(@babel/core@7.29.0)
  1524. '@babel/plugin-transform-modules-commonjs': 7.28.6(@babel/core@7.29.0)
  1525. '@babel/plugin-transform-typescript': 7.28.6(@babel/core@7.29.0)
  1526. transitivePeerDependencies:
  1527. - supports-color
  1528. '@babel/template@7.28.6':
  1529. dependencies:
  1530. '@babel/code-frame': 7.29.0
  1531. '@babel/parser': 7.29.0
  1532. '@babel/types': 7.29.0
  1533. '@babel/traverse@7.29.0':
  1534. dependencies:
  1535. '@babel/code-frame': 7.29.0
  1536. '@babel/generator': 7.29.1
  1537. '@babel/helper-globals': 7.28.0
  1538. '@babel/parser': 7.29.0
  1539. '@babel/template': 7.28.6
  1540. '@babel/types': 7.29.0
  1541. debug: 4.4.3
  1542. transitivePeerDependencies:
  1543. - supports-color
  1544. '@babel/types@7.29.0':
  1545. dependencies:
  1546. '@babel/helper-string-parser': 7.27.1
  1547. '@babel/helper-validator-identifier': 7.28.5
  1548. '@ctrl/tinycolor@4.2.0': {}
  1549. '@element-plus/icons-vue@2.3.2(vue@3.4.21)':
  1550. dependencies:
  1551. vue: 3.4.21
  1552. '@esbuild/aix-ppc64@0.20.2':
  1553. optional: true
  1554. '@esbuild/android-arm64@0.20.2':
  1555. optional: true
  1556. '@esbuild/android-arm@0.20.2':
  1557. optional: true
  1558. '@esbuild/android-x64@0.20.2':
  1559. optional: true
  1560. '@esbuild/darwin-arm64@0.20.2':
  1561. optional: true
  1562. '@esbuild/darwin-x64@0.20.2':
  1563. optional: true
  1564. '@esbuild/freebsd-arm64@0.20.2':
  1565. optional: true
  1566. '@esbuild/freebsd-x64@0.20.2':
  1567. optional: true
  1568. '@esbuild/linux-arm64@0.20.2':
  1569. optional: true
  1570. '@esbuild/linux-arm@0.20.2':
  1571. optional: true
  1572. '@esbuild/linux-ia32@0.20.2':
  1573. optional: true
  1574. '@esbuild/linux-loong64@0.20.2':
  1575. optional: true
  1576. '@esbuild/linux-mips64el@0.20.2':
  1577. optional: true
  1578. '@esbuild/linux-ppc64@0.20.2':
  1579. optional: true
  1580. '@esbuild/linux-riscv64@0.20.2':
  1581. optional: true
  1582. '@esbuild/linux-s390x@0.20.2':
  1583. optional: true
  1584. '@esbuild/linux-x64@0.20.2':
  1585. optional: true
  1586. '@esbuild/netbsd-x64@0.20.2':
  1587. optional: true
  1588. '@esbuild/openbsd-x64@0.20.2':
  1589. optional: true
  1590. '@esbuild/sunos-x64@0.20.2':
  1591. optional: true
  1592. '@esbuild/win32-arm64@0.20.2':
  1593. optional: true
  1594. '@esbuild/win32-ia32@0.20.2':
  1595. optional: true
  1596. '@esbuild/win32-x64@0.20.2':
  1597. optional: true
  1598. '@floating-ui/core@1.7.5':
  1599. dependencies:
  1600. '@floating-ui/utils': 0.2.11
  1601. '@floating-ui/dom@1.7.6':
  1602. dependencies:
  1603. '@floating-ui/core': 1.7.5
  1604. '@floating-ui/utils': 0.2.11
  1605. '@floating-ui/utils@0.2.11': {}
  1606. '@iconify-json/carbon@1.2.19':
  1607. dependencies:
  1608. '@iconify/types': 2.0.0
  1609. '@iconify/types@2.0.0': {}
  1610. '@iconify/utils@2.3.0':
  1611. dependencies:
  1612. '@antfu/install-pkg': 1.1.0
  1613. '@antfu/utils': 8.1.1
  1614. '@iconify/types': 2.0.0
  1615. debug: 4.4.3
  1616. globals: 15.15.0
  1617. kolorist: 1.8.0
  1618. local-pkg: 1.1.2
  1619. mlly: 1.8.1
  1620. transitivePeerDependencies:
  1621. - supports-color
  1622. '@intlify/core-base@9.1.10':
  1623. dependencies:
  1624. '@intlify/devtools-if': 9.1.10
  1625. '@intlify/message-compiler': 9.1.10
  1626. '@intlify/message-resolver': 9.1.10
  1627. '@intlify/runtime': 9.1.10
  1628. '@intlify/shared': 9.1.10
  1629. '@intlify/vue-devtools': 9.1.10
  1630. '@intlify/devtools-if@9.1.10':
  1631. dependencies:
  1632. '@intlify/shared': 9.1.10
  1633. '@intlify/message-compiler@9.1.10':
  1634. dependencies:
  1635. '@intlify/message-resolver': 9.1.10
  1636. '@intlify/shared': 9.1.10
  1637. source-map: 0.6.1
  1638. '@intlify/message-resolver@9.1.10': {}
  1639. '@intlify/runtime@9.1.10':
  1640. dependencies:
  1641. '@intlify/message-compiler': 9.1.10
  1642. '@intlify/message-resolver': 9.1.10
  1643. '@intlify/shared': 9.1.10
  1644. '@intlify/shared@9.1.10': {}
  1645. '@intlify/vue-devtools@9.1.10':
  1646. dependencies:
  1647. '@intlify/message-resolver': 9.1.10
  1648. '@intlify/runtime': 9.1.10
  1649. '@intlify/shared': 9.1.10
  1650. '@jridgewell/gen-mapping@0.3.13':
  1651. dependencies:
  1652. '@jridgewell/sourcemap-codec': 1.5.5
  1653. '@jridgewell/trace-mapping': 0.3.31
  1654. '@jridgewell/remapping@2.3.5':
  1655. dependencies:
  1656. '@jridgewell/gen-mapping': 0.3.13
  1657. '@jridgewell/trace-mapping': 0.3.31
  1658. '@jridgewell/resolve-uri@3.1.2': {}
  1659. '@jridgewell/source-map@0.3.11':
  1660. dependencies:
  1661. '@jridgewell/gen-mapping': 0.3.13
  1662. '@jridgewell/trace-mapping': 0.3.31
  1663. '@jridgewell/sourcemap-codec@1.5.5': {}
  1664. '@jridgewell/trace-mapping@0.3.31':
  1665. dependencies:
  1666. '@jridgewell/resolve-uri': 3.1.2
  1667. '@jridgewell/sourcemap-codec': 1.5.5
  1668. '@nodelib/fs.scandir@2.1.5':
  1669. dependencies:
  1670. '@nodelib/fs.stat': 2.0.5
  1671. run-parallel: 1.2.0
  1672. '@nodelib/fs.stat@2.0.5': {}
  1673. '@nodelib/fs.walk@1.2.8':
  1674. dependencies:
  1675. '@nodelib/fs.scandir': 2.1.5
  1676. fastq: 1.20.1
  1677. '@polka/url@1.0.0-next.29': {}
  1678. '@rolldown/pluginutils@1.0.0-rc.2': {}
  1679. '@rollup/pluginutils@5.3.0(rollup@4.59.0)':
  1680. dependencies:
  1681. '@types/estree': 1.0.8
  1682. estree-walker: 2.0.2
  1683. picomatch: 4.0.3
  1684. optionalDependencies:
  1685. rollup: 4.59.0
  1686. '@rollup/rollup-android-arm-eabi@4.59.0':
  1687. optional: true
  1688. '@rollup/rollup-android-arm64@4.59.0':
  1689. optional: true
  1690. '@rollup/rollup-darwin-arm64@4.59.0':
  1691. optional: true
  1692. '@rollup/rollup-darwin-x64@4.59.0':
  1693. optional: true
  1694. '@rollup/rollup-freebsd-arm64@4.59.0':
  1695. optional: true
  1696. '@rollup/rollup-freebsd-x64@4.59.0':
  1697. optional: true
  1698. '@rollup/rollup-linux-arm-gnueabihf@4.59.0':
  1699. optional: true
  1700. '@rollup/rollup-linux-arm-musleabihf@4.59.0':
  1701. optional: true
  1702. '@rollup/rollup-linux-arm64-gnu@4.59.0':
  1703. optional: true
  1704. '@rollup/rollup-linux-arm64-musl@4.59.0':
  1705. optional: true
  1706. '@rollup/rollup-linux-loong64-gnu@4.59.0':
  1707. optional: true
  1708. '@rollup/rollup-linux-loong64-musl@4.59.0':
  1709. optional: true
  1710. '@rollup/rollup-linux-ppc64-gnu@4.59.0':
  1711. optional: true
  1712. '@rollup/rollup-linux-ppc64-musl@4.59.0':
  1713. optional: true
  1714. '@rollup/rollup-linux-riscv64-gnu@4.59.0':
  1715. optional: true
  1716. '@rollup/rollup-linux-riscv64-musl@4.59.0':
  1717. optional: true
  1718. '@rollup/rollup-linux-s390x-gnu@4.59.0':
  1719. optional: true
  1720. '@rollup/rollup-linux-x64-gnu@4.59.0':
  1721. optional: true
  1722. '@rollup/rollup-linux-x64-musl@4.59.0':
  1723. optional: true
  1724. '@rollup/rollup-openbsd-x64@4.59.0':
  1725. optional: true
  1726. '@rollup/rollup-openharmony-arm64@4.59.0':
  1727. optional: true
  1728. '@rollup/rollup-win32-arm64-msvc@4.59.0':
  1729. optional: true
  1730. '@rollup/rollup-win32-ia32-msvc@4.59.0':
  1731. optional: true
  1732. '@rollup/rollup-win32-x64-gnu@4.59.0':
  1733. optional: true
  1734. '@rollup/rollup-win32-x64-msvc@4.59.0':
  1735. optional: true
  1736. '@sxzz/popperjs-es@2.11.8': {}
  1737. '@types/eslint-scope@3.7.7':
  1738. dependencies:
  1739. '@types/eslint': 9.6.1
  1740. '@types/estree': 1.0.8
  1741. '@types/eslint@9.6.1':
  1742. dependencies:
  1743. '@types/estree': 1.0.8
  1744. '@types/json-schema': 7.0.15
  1745. '@types/estree@1.0.8': {}
  1746. '@types/json-schema@7.0.15': {}
  1747. '@types/lodash-es@4.17.12':
  1748. dependencies:
  1749. '@types/lodash': 4.17.24
  1750. '@types/lodash@4.17.24': {}
  1751. '@types/node@25.5.0':
  1752. dependencies:
  1753. undici-types: 7.18.2
  1754. '@types/web-bluetooth@0.0.20': {}
  1755. '@unocss/astro@0.58.9(rollup@4.59.0)(vite@5.2.8(@types/node@25.5.0)(sass@1.63.2)(terser@5.46.0))':
  1756. dependencies:
  1757. '@unocss/core': 0.58.9
  1758. '@unocss/reset': 0.58.9
  1759. '@unocss/vite': 0.58.9(rollup@4.59.0)(vite@5.2.8(@types/node@25.5.0)(sass@1.63.2)(terser@5.46.0))
  1760. optionalDependencies:
  1761. vite: 5.2.8(@types/node@25.5.0)(sass@1.63.2)(terser@5.46.0)
  1762. transitivePeerDependencies:
  1763. - rollup
  1764. '@unocss/cli@0.58.9(rollup@4.59.0)':
  1765. dependencies:
  1766. '@ampproject/remapping': 2.3.0
  1767. '@rollup/pluginutils': 5.3.0(rollup@4.59.0)
  1768. '@unocss/config': 0.58.9
  1769. '@unocss/core': 0.58.9
  1770. '@unocss/preset-uno': 0.58.9
  1771. cac: 6.7.14
  1772. chokidar: 3.6.0
  1773. colorette: 2.0.20
  1774. consola: 3.4.2
  1775. fast-glob: 3.3.3
  1776. magic-string: 0.30.21
  1777. pathe: 1.1.2
  1778. perfect-debounce: 1.0.0
  1779. transitivePeerDependencies:
  1780. - rollup
  1781. '@unocss/config@0.58.9':
  1782. dependencies:
  1783. '@unocss/core': 0.58.9
  1784. unconfig: 0.3.13
  1785. '@unocss/core@0.58.9': {}
  1786. '@unocss/extractor-arbitrary-variants@0.58.9':
  1787. dependencies:
  1788. '@unocss/core': 0.58.9
  1789. '@unocss/inspector@0.58.9':
  1790. dependencies:
  1791. '@unocss/core': 0.58.9
  1792. '@unocss/rule-utils': 0.58.9
  1793. gzip-size: 6.0.0
  1794. sirv: 2.0.4
  1795. '@unocss/postcss@0.58.9(postcss@8.5.8)':
  1796. dependencies:
  1797. '@unocss/config': 0.58.9
  1798. '@unocss/core': 0.58.9
  1799. '@unocss/rule-utils': 0.58.9
  1800. css-tree: 2.3.1
  1801. fast-glob: 3.3.3
  1802. magic-string: 0.30.21
  1803. postcss: 8.5.8
  1804. '@unocss/preset-attributify@0.58.9':
  1805. dependencies:
  1806. '@unocss/core': 0.58.9
  1807. '@unocss/preset-icons@0.58.9':
  1808. dependencies:
  1809. '@iconify/utils': 2.3.0
  1810. '@unocss/core': 0.58.9
  1811. ofetch: 1.5.1
  1812. transitivePeerDependencies:
  1813. - supports-color
  1814. '@unocss/preset-mini@0.58.9':
  1815. dependencies:
  1816. '@unocss/core': 0.58.9
  1817. '@unocss/extractor-arbitrary-variants': 0.58.9
  1818. '@unocss/rule-utils': 0.58.9
  1819. '@unocss/preset-tagify@0.58.9':
  1820. dependencies:
  1821. '@unocss/core': 0.58.9
  1822. '@unocss/preset-typography@0.58.9':
  1823. dependencies:
  1824. '@unocss/core': 0.58.9
  1825. '@unocss/preset-mini': 0.58.9
  1826. '@unocss/preset-uno@0.58.9':
  1827. dependencies:
  1828. '@unocss/core': 0.58.9
  1829. '@unocss/preset-mini': 0.58.9
  1830. '@unocss/preset-wind': 0.58.9
  1831. '@unocss/rule-utils': 0.58.9
  1832. '@unocss/preset-web-fonts@0.58.9':
  1833. dependencies:
  1834. '@unocss/core': 0.58.9
  1835. ofetch: 1.5.1
  1836. '@unocss/preset-wind@0.58.9':
  1837. dependencies:
  1838. '@unocss/core': 0.58.9
  1839. '@unocss/preset-mini': 0.58.9
  1840. '@unocss/rule-utils': 0.58.9
  1841. '@unocss/reset@0.58.9': {}
  1842. '@unocss/rule-utils@0.58.9':
  1843. dependencies:
  1844. '@unocss/core': 0.58.9
  1845. magic-string: 0.30.21
  1846. '@unocss/scope@0.58.9': {}
  1847. '@unocss/transformer-attributify-jsx-babel@0.58.9':
  1848. dependencies:
  1849. '@babel/core': 7.29.0
  1850. '@babel/plugin-syntax-jsx': 7.28.6(@babel/core@7.29.0)
  1851. '@babel/preset-typescript': 7.28.5(@babel/core@7.29.0)
  1852. '@unocss/core': 0.58.9
  1853. transitivePeerDependencies:
  1854. - supports-color
  1855. '@unocss/transformer-attributify-jsx@0.58.9':
  1856. dependencies:
  1857. '@unocss/core': 0.58.9
  1858. '@unocss/transformer-compile-class@0.58.9':
  1859. dependencies:
  1860. '@unocss/core': 0.58.9
  1861. '@unocss/transformer-directives@0.58.9':
  1862. dependencies:
  1863. '@unocss/core': 0.58.9
  1864. '@unocss/rule-utils': 0.58.9
  1865. css-tree: 2.3.1
  1866. '@unocss/transformer-variant-group@0.58.9':
  1867. dependencies:
  1868. '@unocss/core': 0.58.9
  1869. '@unocss/vite@0.58.9(rollup@4.59.0)(vite@5.2.8(@types/node@25.5.0)(sass@1.63.2)(terser@5.46.0))':
  1870. dependencies:
  1871. '@ampproject/remapping': 2.3.0
  1872. '@rollup/pluginutils': 5.3.0(rollup@4.59.0)
  1873. '@unocss/config': 0.58.9
  1874. '@unocss/core': 0.58.9
  1875. '@unocss/inspector': 0.58.9
  1876. '@unocss/scope': 0.58.9
  1877. '@unocss/transformer-directives': 0.58.9
  1878. chokidar: 3.6.0
  1879. fast-glob: 3.3.3
  1880. magic-string: 0.30.21
  1881. vite: 5.2.8(@types/node@25.5.0)(sass@1.63.2)(terser@5.46.0)
  1882. transitivePeerDependencies:
  1883. - rollup
  1884. '@vitejs/plugin-vue@6.0.5(vite@5.2.8(@types/node@25.5.0)(sass@1.63.2)(terser@5.46.0))(vue@3.4.21)':
  1885. dependencies:
  1886. '@rolldown/pluginutils': 1.0.0-rc.2
  1887. vite: 5.2.8(@types/node@25.5.0)(sass@1.63.2)(terser@5.46.0)
  1888. vue: 3.4.21
  1889. '@vue/compiler-core@3.4.21':
  1890. dependencies:
  1891. '@babel/parser': 7.29.0
  1892. '@vue/shared': 3.4.21
  1893. entities: 4.5.0
  1894. estree-walker: 2.0.2
  1895. source-map-js: 1.2.1
  1896. '@vue/compiler-core@3.5.30':
  1897. dependencies:
  1898. '@babel/parser': 7.29.0
  1899. '@vue/shared': 3.5.30
  1900. entities: 7.0.1
  1901. estree-walker: 2.0.2
  1902. source-map-js: 1.2.1
  1903. '@vue/compiler-dom@3.4.21':
  1904. dependencies:
  1905. '@vue/compiler-core': 3.4.21
  1906. '@vue/shared': 3.4.21
  1907. '@vue/compiler-dom@3.5.30':
  1908. dependencies:
  1909. '@vue/compiler-core': 3.5.30
  1910. '@vue/shared': 3.5.30
  1911. '@vue/compiler-sfc@3.4.21':
  1912. dependencies:
  1913. '@babel/parser': 7.29.0
  1914. '@vue/compiler-core': 3.4.21
  1915. '@vue/compiler-dom': 3.4.21
  1916. '@vue/compiler-ssr': 3.4.21
  1917. '@vue/shared': 3.4.21
  1918. estree-walker: 2.0.2
  1919. magic-string: 0.30.21
  1920. postcss: 8.5.8
  1921. source-map-js: 1.2.1
  1922. '@vue/compiler-sfc@3.5.30':
  1923. dependencies:
  1924. '@babel/parser': 7.29.0
  1925. '@vue/compiler-core': 3.5.30
  1926. '@vue/compiler-dom': 3.5.30
  1927. '@vue/compiler-ssr': 3.5.30
  1928. '@vue/shared': 3.5.30
  1929. estree-walker: 2.0.2
  1930. magic-string: 0.30.21
  1931. postcss: 8.5.8
  1932. source-map-js: 1.2.1
  1933. '@vue/compiler-ssr@3.4.21':
  1934. dependencies:
  1935. '@vue/compiler-dom': 3.4.21
  1936. '@vue/shared': 3.4.21
  1937. '@vue/compiler-ssr@3.5.30':
  1938. dependencies:
  1939. '@vue/compiler-dom': 3.5.30
  1940. '@vue/shared': 3.5.30
  1941. '@vue/devtools-api@6.6.4': {}
  1942. '@vue/reactivity@3.4.21':
  1943. dependencies:
  1944. '@vue/shared': 3.4.21
  1945. '@vue/reactivity@3.5.30':
  1946. dependencies:
  1947. '@vue/shared': 3.5.30
  1948. '@vue/runtime-core@3.4.21':
  1949. dependencies:
  1950. '@vue/reactivity': 3.4.21
  1951. '@vue/shared': 3.4.21
  1952. '@vue/runtime-core@3.5.30':
  1953. dependencies:
  1954. '@vue/reactivity': 3.5.30
  1955. '@vue/shared': 3.5.30
  1956. '@vue/runtime-dom@3.4.21':
  1957. dependencies:
  1958. '@vue/runtime-core': 3.4.21
  1959. '@vue/shared': 3.4.21
  1960. csstype: 3.2.3
  1961. '@vue/runtime-dom@3.5.30':
  1962. dependencies:
  1963. '@vue/reactivity': 3.5.30
  1964. '@vue/runtime-core': 3.5.30
  1965. '@vue/shared': 3.5.30
  1966. csstype: 3.2.3
  1967. '@vue/server-renderer@3.4.21(vue@3.4.21)':
  1968. dependencies:
  1969. '@vue/compiler-ssr': 3.4.21
  1970. '@vue/shared': 3.4.21
  1971. vue: 3.4.21
  1972. '@vue/server-renderer@3.5.30(vue@3.5.30)':
  1973. dependencies:
  1974. '@vue/compiler-ssr': 3.5.30
  1975. '@vue/shared': 3.5.30
  1976. vue: 3.5.30
  1977. '@vue/shared@3.4.21': {}
  1978. '@vue/shared@3.5.30': {}
  1979. '@vueuse/core@12.0.0':
  1980. dependencies:
  1981. '@types/web-bluetooth': 0.0.20
  1982. '@vueuse/metadata': 12.0.0
  1983. '@vueuse/shared': 12.0.0
  1984. vue: 3.5.30
  1985. transitivePeerDependencies:
  1986. - typescript
  1987. '@vueuse/metadata@12.0.0': {}
  1988. '@vueuse/shared@12.0.0':
  1989. dependencies:
  1990. vue: 3.5.30
  1991. transitivePeerDependencies:
  1992. - typescript
  1993. '@webassemblyjs/ast@1.14.1':
  1994. dependencies:
  1995. '@webassemblyjs/helper-numbers': 1.13.2
  1996. '@webassemblyjs/helper-wasm-bytecode': 1.13.2
  1997. '@webassemblyjs/floating-point-hex-parser@1.13.2': {}
  1998. '@webassemblyjs/helper-api-error@1.13.2': {}
  1999. '@webassemblyjs/helper-buffer@1.14.1': {}
  2000. '@webassemblyjs/helper-numbers@1.13.2':
  2001. dependencies:
  2002. '@webassemblyjs/floating-point-hex-parser': 1.13.2
  2003. '@webassemblyjs/helper-api-error': 1.13.2
  2004. '@xtuc/long': 4.2.2
  2005. '@webassemblyjs/helper-wasm-bytecode@1.13.2': {}
  2006. '@webassemblyjs/helper-wasm-section@1.14.1':
  2007. dependencies:
  2008. '@webassemblyjs/ast': 1.14.1
  2009. '@webassemblyjs/helper-buffer': 1.14.1
  2010. '@webassemblyjs/helper-wasm-bytecode': 1.13.2
  2011. '@webassemblyjs/wasm-gen': 1.14.1
  2012. '@webassemblyjs/ieee754@1.13.2':
  2013. dependencies:
  2014. '@xtuc/ieee754': 1.2.0
  2015. '@webassemblyjs/leb128@1.13.2':
  2016. dependencies:
  2017. '@xtuc/long': 4.2.2
  2018. '@webassemblyjs/utf8@1.13.2': {}
  2019. '@webassemblyjs/wasm-edit@1.14.1':
  2020. dependencies:
  2021. '@webassemblyjs/ast': 1.14.1
  2022. '@webassemblyjs/helper-buffer': 1.14.1
  2023. '@webassemblyjs/helper-wasm-bytecode': 1.13.2
  2024. '@webassemblyjs/helper-wasm-section': 1.14.1
  2025. '@webassemblyjs/wasm-gen': 1.14.1
  2026. '@webassemblyjs/wasm-opt': 1.14.1
  2027. '@webassemblyjs/wasm-parser': 1.14.1
  2028. '@webassemblyjs/wast-printer': 1.14.1
  2029. '@webassemblyjs/wasm-gen@1.14.1':
  2030. dependencies:
  2031. '@webassemblyjs/ast': 1.14.1
  2032. '@webassemblyjs/helper-wasm-bytecode': 1.13.2
  2033. '@webassemblyjs/ieee754': 1.13.2
  2034. '@webassemblyjs/leb128': 1.13.2
  2035. '@webassemblyjs/utf8': 1.13.2
  2036. '@webassemblyjs/wasm-opt@1.14.1':
  2037. dependencies:
  2038. '@webassemblyjs/ast': 1.14.1
  2039. '@webassemblyjs/helper-buffer': 1.14.1
  2040. '@webassemblyjs/wasm-gen': 1.14.1
  2041. '@webassemblyjs/wasm-parser': 1.14.1
  2042. '@webassemblyjs/wasm-parser@1.14.1':
  2043. dependencies:
  2044. '@webassemblyjs/ast': 1.14.1
  2045. '@webassemblyjs/helper-api-error': 1.13.2
  2046. '@webassemblyjs/helper-wasm-bytecode': 1.13.2
  2047. '@webassemblyjs/ieee754': 1.13.2
  2048. '@webassemblyjs/leb128': 1.13.2
  2049. '@webassemblyjs/utf8': 1.13.2
  2050. '@webassemblyjs/wast-printer@1.14.1':
  2051. dependencies:
  2052. '@webassemblyjs/ast': 1.14.1
  2053. '@xtuc/long': 4.2.2
  2054. '@xtuc/ieee754@1.2.0': {}
  2055. '@xtuc/long@4.2.2': {}
  2056. acorn-import-phases@1.0.4(acorn@8.16.0):
  2057. dependencies:
  2058. acorn: 8.16.0
  2059. acorn@8.16.0: {}
  2060. ajv-formats@2.1.1(ajv@8.18.0):
  2061. optionalDependencies:
  2062. ajv: 8.18.0
  2063. ajv-keywords@3.5.2(ajv@6.14.0):
  2064. dependencies:
  2065. ajv: 6.14.0
  2066. ajv-keywords@5.1.0(ajv@8.18.0):
  2067. dependencies:
  2068. ajv: 8.18.0
  2069. fast-deep-equal: 3.1.3
  2070. ajv@6.14.0:
  2071. dependencies:
  2072. fast-deep-equal: 3.1.3
  2073. fast-json-stable-stringify: 2.1.0
  2074. json-schema-traverse: 0.4.1
  2075. uri-js: 4.4.1
  2076. ajv@8.18.0:
  2077. dependencies:
  2078. fast-deep-equal: 3.1.3
  2079. fast-uri: 3.1.0
  2080. json-schema-traverse: 1.0.0
  2081. require-from-string: 2.0.2
  2082. alova@3.2.13:
  2083. dependencies:
  2084. '@alova/shared': 1.2.0
  2085. rate-limiter-flexible: 5.0.5
  2086. anymatch@3.1.3:
  2087. dependencies:
  2088. normalize-path: 3.0.0
  2089. picomatch: 2.3.1
  2090. async-validator@4.2.5: {}
  2091. asynckit@0.4.0: {}
  2092. axios@1.13.6:
  2093. dependencies:
  2094. follow-redirects: 1.15.11
  2095. form-data: 4.0.5
  2096. proxy-from-env: 1.1.0
  2097. transitivePeerDependencies:
  2098. - debug
  2099. baseline-browser-mapping@2.10.7: {}
  2100. big.js@5.2.2: {}
  2101. binary-extensions@2.3.0: {}
  2102. braces@3.0.3:
  2103. dependencies:
  2104. fill-range: 7.1.1
  2105. browserslist@4.28.1:
  2106. dependencies:
  2107. baseline-browser-mapping: 2.10.7
  2108. caniuse-lite: 1.0.30001778
  2109. electron-to-chromium: 1.5.313
  2110. node-releases: 2.0.36
  2111. update-browserslist-db: 1.2.3(browserslist@4.28.1)
  2112. buffer-from@1.1.2: {}
  2113. cac@6.7.14: {}
  2114. call-bind-apply-helpers@1.0.2:
  2115. dependencies:
  2116. es-errors: 1.3.0
  2117. function-bind: 1.1.2
  2118. caniuse-lite@1.0.30001778: {}
  2119. chokidar@3.6.0:
  2120. dependencies:
  2121. anymatch: 3.1.3
  2122. braces: 3.0.3
  2123. glob-parent: 5.1.2
  2124. is-binary-path: 2.1.0
  2125. is-glob: 4.0.3
  2126. normalize-path: 3.0.0
  2127. readdirp: 3.6.0
  2128. optionalDependencies:
  2129. fsevents: 2.3.3
  2130. chokidar@5.0.0:
  2131. dependencies:
  2132. readdirp: 5.0.0
  2133. chrome-trace-event@1.0.4: {}
  2134. color-convert@3.1.3:
  2135. dependencies:
  2136. color-name: 2.1.0
  2137. color-name@2.1.0: {}
  2138. color-string@2.1.4:
  2139. dependencies:
  2140. color-name: 2.1.0
  2141. color@5.0.3:
  2142. dependencies:
  2143. color-convert: 3.1.3
  2144. color-string: 2.1.4
  2145. colorette@2.0.20: {}
  2146. combined-stream@1.0.8:
  2147. dependencies:
  2148. delayed-stream: 1.0.0
  2149. commander@2.20.3: {}
  2150. confbox@0.1.8: {}
  2151. confbox@0.2.4: {}
  2152. consola@3.4.2: {}
  2153. convert-source-map@2.0.0: {}
  2154. css-tree@2.3.1:
  2155. dependencies:
  2156. mdn-data: 2.0.30
  2157. source-map-js: 1.2.1
  2158. cssesc@3.0.0: {}
  2159. csstype@3.2.3: {}
  2160. dayjs@1.11.20: {}
  2161. debug@4.4.3:
  2162. dependencies:
  2163. ms: 2.1.3
  2164. defu@6.1.4: {}
  2165. delayed-stream@1.0.0: {}
  2166. destr@2.0.5: {}
  2167. dunder-proto@1.0.1:
  2168. dependencies:
  2169. call-bind-apply-helpers: 1.0.2
  2170. es-errors: 1.3.0
  2171. gopd: 1.2.0
  2172. duplexer@0.1.2: {}
  2173. electron-to-chromium@1.5.313: {}
  2174. element-plus@2.13.5(vue@3.4.21):
  2175. dependencies:
  2176. '@ctrl/tinycolor': 4.2.0
  2177. '@element-plus/icons-vue': 2.3.2(vue@3.4.21)
  2178. '@floating-ui/dom': 1.7.6
  2179. '@popperjs/core': '@sxzz/popperjs-es@2.11.8'
  2180. '@types/lodash': 4.17.24
  2181. '@types/lodash-es': 4.17.12
  2182. '@vueuse/core': 12.0.0
  2183. async-validator: 4.2.5
  2184. dayjs: 1.11.20
  2185. lodash: 4.17.23
  2186. lodash-es: 4.17.23
  2187. lodash-unified: 1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.23)(lodash@4.17.23)
  2188. memoize-one: 6.0.0
  2189. normalize-wheel-es: 1.2.0
  2190. vue: 3.4.21
  2191. transitivePeerDependencies:
  2192. - typescript
  2193. emojis-list@3.0.0: {}
  2194. enhanced-resolve@5.20.0:
  2195. dependencies:
  2196. graceful-fs: 4.2.11
  2197. tapable: 2.3.0
  2198. entities@4.5.0: {}
  2199. entities@7.0.1: {}
  2200. es-define-property@1.0.1: {}
  2201. es-errors@1.3.0: {}
  2202. es-module-lexer@2.0.0: {}
  2203. es-object-atoms@1.1.1:
  2204. dependencies:
  2205. es-errors: 1.3.0
  2206. es-set-tostringtag@2.1.0:
  2207. dependencies:
  2208. es-errors: 1.3.0
  2209. get-intrinsic: 1.3.0
  2210. has-tostringtag: 1.0.2
  2211. hasown: 2.0.2
  2212. es-toolkit@1.38.0: {}
  2213. esbuild@0.20.2:
  2214. optionalDependencies:
  2215. '@esbuild/aix-ppc64': 0.20.2
  2216. '@esbuild/android-arm': 0.20.2
  2217. '@esbuild/android-arm64': 0.20.2
  2218. '@esbuild/android-x64': 0.20.2
  2219. '@esbuild/darwin-arm64': 0.20.2
  2220. '@esbuild/darwin-x64': 0.20.2
  2221. '@esbuild/freebsd-arm64': 0.20.2
  2222. '@esbuild/freebsd-x64': 0.20.2
  2223. '@esbuild/linux-arm': 0.20.2
  2224. '@esbuild/linux-arm64': 0.20.2
  2225. '@esbuild/linux-ia32': 0.20.2
  2226. '@esbuild/linux-loong64': 0.20.2
  2227. '@esbuild/linux-mips64el': 0.20.2
  2228. '@esbuild/linux-ppc64': 0.20.2
  2229. '@esbuild/linux-riscv64': 0.20.2
  2230. '@esbuild/linux-s390x': 0.20.2
  2231. '@esbuild/linux-x64': 0.20.2
  2232. '@esbuild/netbsd-x64': 0.20.2
  2233. '@esbuild/openbsd-x64': 0.20.2
  2234. '@esbuild/sunos-x64': 0.20.2
  2235. '@esbuild/win32-arm64': 0.20.2
  2236. '@esbuild/win32-ia32': 0.20.2
  2237. '@esbuild/win32-x64': 0.20.2
  2238. escalade@3.2.0: {}
  2239. escape-string-regexp@5.0.0: {}
  2240. eslint-scope@5.1.1:
  2241. dependencies:
  2242. esrecurse: 4.3.0
  2243. estraverse: 4.3.0
  2244. esrecurse@4.3.0:
  2245. dependencies:
  2246. estraverse: 5.3.0
  2247. estraverse@4.3.0: {}
  2248. estraverse@5.3.0: {}
  2249. estree-walker@2.0.2: {}
  2250. estree-walker@3.0.3:
  2251. dependencies:
  2252. '@types/estree': 1.0.8
  2253. events@3.3.0: {}
  2254. exsolve@1.0.8: {}
  2255. fast-deep-equal@3.1.3: {}
  2256. fast-glob@3.3.3:
  2257. dependencies:
  2258. '@nodelib/fs.stat': 2.0.5
  2259. '@nodelib/fs.walk': 1.2.8
  2260. glob-parent: 5.1.2
  2261. merge2: 1.4.1
  2262. micromatch: 4.0.8
  2263. fast-json-stable-stringify@2.1.0: {}
  2264. fast-uri@3.1.0: {}
  2265. fastq@1.20.1:
  2266. dependencies:
  2267. reusify: 1.1.0
  2268. fdir@6.5.0(picomatch@4.0.3):
  2269. optionalDependencies:
  2270. picomatch: 4.0.3
  2271. fill-range@7.1.1:
  2272. dependencies:
  2273. to-regex-range: 5.0.1
  2274. follow-redirects@1.15.11: {}
  2275. form-data@4.0.5:
  2276. dependencies:
  2277. asynckit: 0.4.0
  2278. combined-stream: 1.0.8
  2279. es-set-tostringtag: 2.1.0
  2280. hasown: 2.0.2
  2281. mime-types: 2.1.35
  2282. fsevents@2.3.3:
  2283. optional: true
  2284. function-bind@1.1.2: {}
  2285. gensync@1.0.0-beta.2: {}
  2286. get-intrinsic@1.3.0:
  2287. dependencies:
  2288. call-bind-apply-helpers: 1.0.2
  2289. es-define-property: 1.0.1
  2290. es-errors: 1.3.0
  2291. es-object-atoms: 1.1.1
  2292. function-bind: 1.1.2
  2293. get-proto: 1.0.1
  2294. gopd: 1.2.0
  2295. has-symbols: 1.1.0
  2296. hasown: 2.0.2
  2297. math-intrinsics: 1.1.0
  2298. get-proto@1.0.1:
  2299. dependencies:
  2300. dunder-proto: 1.0.1
  2301. es-object-atoms: 1.1.1
  2302. glob-parent@5.1.2:
  2303. dependencies:
  2304. is-glob: 4.0.3
  2305. glob-to-regexp@0.4.1: {}
  2306. globals@15.15.0: {}
  2307. gopd@1.2.0: {}
  2308. graceful-fs@4.2.11: {}
  2309. gzip-size@6.0.0:
  2310. dependencies:
  2311. duplexer: 0.1.2
  2312. has-flag@4.0.0: {}
  2313. has-symbols@1.1.0: {}
  2314. has-tostringtag@1.0.2:
  2315. dependencies:
  2316. has-symbols: 1.1.0
  2317. hasown@2.0.2:
  2318. dependencies:
  2319. function-bind: 1.1.2
  2320. immutable@4.3.8: {}
  2321. is-binary-path@2.1.0:
  2322. dependencies:
  2323. binary-extensions: 2.3.0
  2324. is-extglob@2.1.1: {}
  2325. is-glob@4.0.3:
  2326. dependencies:
  2327. is-extglob: 2.1.1
  2328. is-number@7.0.0: {}
  2329. jest-worker@27.5.1:
  2330. dependencies:
  2331. '@types/node': 25.5.0
  2332. merge-stream: 2.0.0
  2333. supports-color: 8.1.1
  2334. jiti@1.21.7: {}
  2335. js-tokens@4.0.0: {}
  2336. js-tokens@9.0.1: {}
  2337. jsesc@3.1.0: {}
  2338. json-parse-even-better-errors@2.3.1: {}
  2339. json-schema-traverse@0.4.1: {}
  2340. json-schema-traverse@1.0.0: {}
  2341. json5@2.2.3: {}
  2342. klona@2.0.6: {}
  2343. kolorist@1.8.0: {}
  2344. loader-runner@4.3.1: {}
  2345. loader-utils@2.0.4:
  2346. dependencies:
  2347. big.js: 5.2.2
  2348. emojis-list: 3.0.0
  2349. json5: 2.2.3
  2350. local-pkg@1.1.2:
  2351. dependencies:
  2352. mlly: 1.8.1
  2353. pkg-types: 2.3.0
  2354. quansync: 0.2.11
  2355. lodash-es@4.17.23: {}
  2356. lodash-unified@1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.23)(lodash@4.17.23):
  2357. dependencies:
  2358. '@types/lodash-es': 4.17.12
  2359. lodash: 4.17.23
  2360. lodash-es: 4.17.23
  2361. lodash@4.17.23: {}
  2362. lru-cache@5.1.1:
  2363. dependencies:
  2364. yallist: 3.1.1
  2365. magic-string@0.30.21:
  2366. dependencies:
  2367. '@jridgewell/sourcemap-codec': 1.5.5
  2368. math-intrinsics@1.1.0: {}
  2369. mdn-data@2.0.30: {}
  2370. memoize-one@6.0.0: {}
  2371. merge-stream@2.0.0: {}
  2372. merge2@1.4.1: {}
  2373. micromatch@4.0.8:
  2374. dependencies:
  2375. braces: 3.0.3
  2376. picomatch: 2.3.1
  2377. mime-db@1.52.0: {}
  2378. mime-types@2.1.35:
  2379. dependencies:
  2380. mime-db: 1.52.0
  2381. mlly@1.8.1:
  2382. dependencies:
  2383. acorn: 8.16.0
  2384. pathe: 2.0.3
  2385. pkg-types: 1.3.1
  2386. ufo: 1.6.3
  2387. mrmime@2.0.1: {}
  2388. ms@2.1.3: {}
  2389. nanoid@3.3.11: {}
  2390. neo-async@2.6.2: {}
  2391. node-fetch-native@1.6.7: {}
  2392. node-releases@2.0.36: {}
  2393. normalize-path@3.0.0: {}
  2394. normalize-wheel-es@1.2.0: {}
  2395. obug@2.1.1: {}
  2396. ofetch@1.5.1:
  2397. dependencies:
  2398. destr: 2.0.5
  2399. node-fetch-native: 1.6.7
  2400. ufo: 1.6.3
  2401. package-manager-detector@1.6.0: {}
  2402. pathe@1.1.2: {}
  2403. pathe@2.0.3: {}
  2404. perfect-debounce@1.0.0: {}
  2405. picocolors@1.1.1: {}
  2406. picomatch@2.3.1: {}
  2407. picomatch@4.0.3: {}
  2408. pinia-plugin-persistedstate@3.2.3(pinia@2.0.36(vue@3.4.21)):
  2409. dependencies:
  2410. pinia: 2.0.36(vue@3.4.21)
  2411. pinia@2.0.36(vue@3.4.21):
  2412. dependencies:
  2413. '@vue/devtools-api': 6.6.4
  2414. vue: 3.4.21
  2415. vue-demi: 0.14.10(vue@3.4.21)
  2416. pkg-types@1.3.1:
  2417. dependencies:
  2418. confbox: 0.1.8
  2419. mlly: 1.8.1
  2420. pathe: 2.0.3
  2421. pkg-types@2.3.0:
  2422. dependencies:
  2423. confbox: 0.2.4
  2424. exsolve: 1.0.8
  2425. pathe: 2.0.3
  2426. postcss-nested@7.0.2(postcss@8.5.8):
  2427. dependencies:
  2428. postcss: 8.5.8
  2429. postcss-selector-parser: 7.1.1
  2430. postcss-remove-inline-comments@0.0.2(postcss@8.5.8):
  2431. dependencies:
  2432. postcss: 8.5.8
  2433. optionalDependencies:
  2434. postcss-scss: 4.0.9(postcss@8.5.8)
  2435. postcss-scss@4.0.9(postcss@8.5.8):
  2436. dependencies:
  2437. postcss: 8.5.8
  2438. postcss-selector-parser@7.1.1:
  2439. dependencies:
  2440. cssesc: 3.0.0
  2441. util-deprecate: 1.0.2
  2442. postcss@8.5.8:
  2443. dependencies:
  2444. nanoid: 3.3.11
  2445. picocolors: 1.1.1
  2446. source-map-js: 1.2.1
  2447. proxy-from-env@1.1.0: {}
  2448. punycode@2.3.1: {}
  2449. quansync@0.2.11: {}
  2450. queue-microtask@1.2.3: {}
  2451. rate-limiter-flexible@5.0.5: {}
  2452. readdirp@3.6.0:
  2453. dependencies:
  2454. picomatch: 2.3.1
  2455. readdirp@5.0.0: {}
  2456. require-from-string@2.0.2: {}
  2457. reusify@1.1.0: {}
  2458. rollup@4.59.0:
  2459. dependencies:
  2460. '@types/estree': 1.0.8
  2461. optionalDependencies:
  2462. '@rollup/rollup-android-arm-eabi': 4.59.0
  2463. '@rollup/rollup-android-arm64': 4.59.0
  2464. '@rollup/rollup-darwin-arm64': 4.59.0
  2465. '@rollup/rollup-darwin-x64': 4.59.0
  2466. '@rollup/rollup-freebsd-arm64': 4.59.0
  2467. '@rollup/rollup-freebsd-x64': 4.59.0
  2468. '@rollup/rollup-linux-arm-gnueabihf': 4.59.0
  2469. '@rollup/rollup-linux-arm-musleabihf': 4.59.0
  2470. '@rollup/rollup-linux-arm64-gnu': 4.59.0
  2471. '@rollup/rollup-linux-arm64-musl': 4.59.0
  2472. '@rollup/rollup-linux-loong64-gnu': 4.59.0
  2473. '@rollup/rollup-linux-loong64-musl': 4.59.0
  2474. '@rollup/rollup-linux-ppc64-gnu': 4.59.0
  2475. '@rollup/rollup-linux-ppc64-musl': 4.59.0
  2476. '@rollup/rollup-linux-riscv64-gnu': 4.59.0
  2477. '@rollup/rollup-linux-riscv64-musl': 4.59.0
  2478. '@rollup/rollup-linux-s390x-gnu': 4.59.0
  2479. '@rollup/rollup-linux-x64-gnu': 4.59.0
  2480. '@rollup/rollup-linux-x64-musl': 4.59.0
  2481. '@rollup/rollup-openbsd-x64': 4.59.0
  2482. '@rollup/rollup-openharmony-arm64': 4.59.0
  2483. '@rollup/rollup-win32-arm64-msvc': 4.59.0
  2484. '@rollup/rollup-win32-ia32-msvc': 4.59.0
  2485. '@rollup/rollup-win32-x64-gnu': 4.59.0
  2486. '@rollup/rollup-win32-x64-msvc': 4.59.0
  2487. fsevents: 2.3.3
  2488. run-parallel@1.2.0:
  2489. dependencies:
  2490. queue-microtask: 1.2.3
  2491. sass-loader@10.4.1(sass@1.63.2)(webpack@5.105.4):
  2492. dependencies:
  2493. klona: 2.0.6
  2494. loader-utils: 2.0.4
  2495. neo-async: 2.6.2
  2496. schema-utils: 3.3.0
  2497. semver: 7.7.4
  2498. webpack: 5.105.4
  2499. optionalDependencies:
  2500. sass: 1.63.2
  2501. sass@1.63.2:
  2502. dependencies:
  2503. chokidar: 3.6.0
  2504. immutable: 4.3.8
  2505. source-map-js: 1.2.1
  2506. schema-utils@3.3.0:
  2507. dependencies:
  2508. '@types/json-schema': 7.0.15
  2509. ajv: 6.14.0
  2510. ajv-keywords: 3.5.2(ajv@6.14.0)
  2511. schema-utils@4.3.3:
  2512. dependencies:
  2513. '@types/json-schema': 7.0.15
  2514. ajv: 8.18.0
  2515. ajv-formats: 2.1.1(ajv@8.18.0)
  2516. ajv-keywords: 5.1.0(ajv@8.18.0)
  2517. scule@1.3.0: {}
  2518. semver@6.3.1: {}
  2519. semver@7.7.4: {}
  2520. simple-git-hooks@2.13.1: {}
  2521. sirv@2.0.4:
  2522. dependencies:
  2523. '@polka/url': 1.0.0-next.29
  2524. mrmime: 2.0.1
  2525. totalist: 3.0.1
  2526. source-map-js@1.2.1: {}
  2527. source-map-support@0.5.21:
  2528. dependencies:
  2529. buffer-from: 1.1.2
  2530. source-map: 0.6.1
  2531. source-map@0.6.1: {}
  2532. strip-literal@3.1.0:
  2533. dependencies:
  2534. js-tokens: 9.0.1
  2535. supports-color@8.1.1:
  2536. dependencies:
  2537. has-flag: 4.0.0
  2538. tapable@2.3.0: {}
  2539. terser-webpack-plugin@5.4.0(webpack@5.105.4):
  2540. dependencies:
  2541. '@jridgewell/trace-mapping': 0.3.31
  2542. jest-worker: 27.5.1
  2543. schema-utils: 4.3.3
  2544. terser: 5.46.0
  2545. webpack: 5.105.4
  2546. terser@5.46.0:
  2547. dependencies:
  2548. '@jridgewell/source-map': 0.3.11
  2549. acorn: 8.16.0
  2550. commander: 2.20.3
  2551. source-map-support: 0.5.21
  2552. tinyexec@1.0.2: {}
  2553. tinyglobby@0.2.15:
  2554. dependencies:
  2555. fdir: 6.5.0(picomatch@4.0.3)
  2556. picomatch: 4.0.3
  2557. to-regex-range@5.0.1:
  2558. dependencies:
  2559. is-number: 7.0.0
  2560. totalist@3.0.1: {}
  2561. ufo@1.6.3: {}
  2562. unconfig@0.3.13:
  2563. dependencies:
  2564. '@antfu/utils': 0.7.10
  2565. defu: 6.1.4
  2566. jiti: 1.21.7
  2567. undici-types@7.18.2: {}
  2568. unimport@4.2.0:
  2569. dependencies:
  2570. acorn: 8.16.0
  2571. escape-string-regexp: 5.0.0
  2572. estree-walker: 3.0.3
  2573. local-pkg: 1.1.2
  2574. magic-string: 0.30.21
  2575. mlly: 1.8.1
  2576. pathe: 2.0.3
  2577. picomatch: 4.0.3
  2578. pkg-types: 2.3.0
  2579. scule: 1.3.0
  2580. strip-literal: 3.1.0
  2581. tinyglobby: 0.2.15
  2582. unplugin: 2.3.11
  2583. unplugin-utils: 0.2.5
  2584. unocss@0.58.9(postcss@8.5.8)(rollup@4.59.0)(vite@5.2.8(@types/node@25.5.0)(sass@1.63.2)(terser@5.46.0)):
  2585. dependencies:
  2586. '@unocss/astro': 0.58.9(rollup@4.59.0)(vite@5.2.8(@types/node@25.5.0)(sass@1.63.2)(terser@5.46.0))
  2587. '@unocss/cli': 0.58.9(rollup@4.59.0)
  2588. '@unocss/core': 0.58.9
  2589. '@unocss/extractor-arbitrary-variants': 0.58.9
  2590. '@unocss/postcss': 0.58.9(postcss@8.5.8)
  2591. '@unocss/preset-attributify': 0.58.9
  2592. '@unocss/preset-icons': 0.58.9
  2593. '@unocss/preset-mini': 0.58.9
  2594. '@unocss/preset-tagify': 0.58.9
  2595. '@unocss/preset-typography': 0.58.9
  2596. '@unocss/preset-uno': 0.58.9
  2597. '@unocss/preset-web-fonts': 0.58.9
  2598. '@unocss/preset-wind': 0.58.9
  2599. '@unocss/reset': 0.58.9
  2600. '@unocss/transformer-attributify-jsx': 0.58.9
  2601. '@unocss/transformer-attributify-jsx-babel': 0.58.9
  2602. '@unocss/transformer-compile-class': 0.58.9
  2603. '@unocss/transformer-directives': 0.58.9
  2604. '@unocss/transformer-variant-group': 0.58.9
  2605. '@unocss/vite': 0.58.9(rollup@4.59.0)(vite@5.2.8(@types/node@25.5.0)(sass@1.63.2)(terser@5.46.0))
  2606. optionalDependencies:
  2607. vite: 5.2.8(@types/node@25.5.0)(sass@1.63.2)(terser@5.46.0)
  2608. transitivePeerDependencies:
  2609. - postcss
  2610. - rollup
  2611. - supports-color
  2612. unplugin-auto-import@19.2.0(@vueuse/core@12.0.0):
  2613. dependencies:
  2614. local-pkg: 1.1.2
  2615. magic-string: 0.30.21
  2616. picomatch: 4.0.3
  2617. unimport: 4.2.0
  2618. unplugin: 2.3.11
  2619. unplugin-utils: 0.2.5
  2620. optionalDependencies:
  2621. '@vueuse/core': 12.0.0
  2622. unplugin-utils@0.2.5:
  2623. dependencies:
  2624. pathe: 2.0.3
  2625. picomatch: 4.0.3
  2626. unplugin-utils@0.3.1:
  2627. dependencies:
  2628. pathe: 2.0.3
  2629. picomatch: 4.0.3
  2630. unplugin-vue-components@31.0.0(vue@3.4.21):
  2631. dependencies:
  2632. chokidar: 5.0.0
  2633. local-pkg: 1.1.2
  2634. magic-string: 0.30.21
  2635. mlly: 1.8.1
  2636. obug: 2.1.1
  2637. picomatch: 4.0.3
  2638. tinyglobby: 0.2.15
  2639. unplugin: 2.3.11
  2640. unplugin-utils: 0.3.1
  2641. vue: 3.4.21
  2642. unplugin@2.3.11:
  2643. dependencies:
  2644. '@jridgewell/remapping': 2.3.5
  2645. acorn: 8.16.0
  2646. picomatch: 4.0.3
  2647. webpack-virtual-modules: 0.6.2
  2648. update-browserslist-db@1.2.3(browserslist@4.28.1):
  2649. dependencies:
  2650. browserslist: 4.28.1
  2651. escalade: 3.2.0
  2652. picocolors: 1.1.1
  2653. uri-js@4.4.1:
  2654. dependencies:
  2655. punycode: 2.3.1
  2656. util-deprecate@1.0.2: {}
  2657. vite@5.2.8(@types/node@25.5.0)(sass@1.63.2)(terser@5.46.0):
  2658. dependencies:
  2659. esbuild: 0.20.2
  2660. postcss: 8.5.8
  2661. rollup: 4.59.0
  2662. optionalDependencies:
  2663. '@types/node': 25.5.0
  2664. fsevents: 2.3.3
  2665. sass: 1.63.2
  2666. terser: 5.46.0
  2667. vue-demi@0.14.10(vue@3.4.21):
  2668. dependencies:
  2669. vue: 3.4.21
  2670. vue-i18n@9.1.11(vue@3.4.21):
  2671. dependencies:
  2672. '@intlify/core-base': 9.1.10
  2673. '@intlify/shared': 9.1.10
  2674. '@intlify/vue-devtools': 9.1.10
  2675. '@vue/devtools-api': 6.6.4
  2676. vue: 3.4.21
  2677. vue-router@4.6.4(vue@3.4.21):
  2678. dependencies:
  2679. '@vue/devtools-api': 6.6.4
  2680. vue: 3.4.21
  2681. vue@3.4.21:
  2682. dependencies:
  2683. '@vue/compiler-dom': 3.4.21
  2684. '@vue/compiler-sfc': 3.4.21
  2685. '@vue/runtime-dom': 3.4.21
  2686. '@vue/server-renderer': 3.4.21(vue@3.4.21)
  2687. '@vue/shared': 3.4.21
  2688. vue@3.5.30:
  2689. dependencies:
  2690. '@vue/compiler-dom': 3.5.30
  2691. '@vue/compiler-sfc': 3.5.30
  2692. '@vue/runtime-dom': 3.5.30
  2693. '@vue/server-renderer': 3.5.30(vue@3.5.30)
  2694. '@vue/shared': 3.5.30
  2695. watchpack@2.5.1:
  2696. dependencies:
  2697. glob-to-regexp: 0.4.1
  2698. graceful-fs: 4.2.11
  2699. webpack-sources@3.3.4: {}
  2700. webpack-virtual-modules@0.6.2: {}
  2701. webpack@5.105.4:
  2702. dependencies:
  2703. '@types/eslint-scope': 3.7.7
  2704. '@types/estree': 1.0.8
  2705. '@types/json-schema': 7.0.15
  2706. '@webassemblyjs/ast': 1.14.1
  2707. '@webassemblyjs/wasm-edit': 1.14.1
  2708. '@webassemblyjs/wasm-parser': 1.14.1
  2709. acorn: 8.16.0
  2710. acorn-import-phases: 1.0.4(acorn@8.16.0)
  2711. browserslist: 4.28.1
  2712. chrome-trace-event: 1.0.4
  2713. enhanced-resolve: 5.20.0
  2714. es-module-lexer: 2.0.0
  2715. eslint-scope: 5.1.1
  2716. events: 3.3.0
  2717. glob-to-regexp: 0.4.1
  2718. graceful-fs: 4.2.11
  2719. json-parse-even-better-errors: 2.3.1
  2720. loader-runner: 4.3.1
  2721. mime-types: 2.1.35
  2722. neo-async: 2.6.2
  2723. schema-utils: 4.3.3
  2724. tapable: 2.3.0
  2725. terser-webpack-plugin: 5.4.0(webpack@5.105.4)
  2726. watchpack: 2.5.1
  2727. webpack-sources: 3.3.4
  2728. transitivePeerDependencies:
  2729. - '@swc/core'
  2730. - esbuild
  2731. - uglify-js
  2732. yallist@3.1.1: {}