pnpm-lock.yaml 122 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. '@vant/area-data':
  9. specifier: ^2.2.0
  10. version: 2.2.0
  11. axios:
  12. specifier: ^1.12.2
  13. version: 1.12.2
  14. nanoid:
  15. specifier: ^5.1.6
  16. version: 5.1.6
  17. normalize.css:
  18. specifier: ^8.0.1
  19. version: 8.0.1
  20. nprogress:
  21. specifier: ^0.2.0
  22. version: 0.2.0
  23. pinia:
  24. specifier: ^3.0.3
  25. version: 3.0.3(typescript@5.9.3)(vue@3.5.22(typescript@5.9.3))
  26. pinia-plugin-persistedstate:
  27. specifier: ^4.5.0
  28. version: 4.5.0(pinia@3.0.3(typescript@5.9.3)(vue@3.5.22(typescript@5.9.3)))
  29. qs:
  30. specifier: ^6.14.0
  31. version: 6.14.0
  32. v-viewer:
  33. specifier: ^3.0.22
  34. version: 3.0.22(viewerjs@1.11.7)(vue@3.5.22(typescript@5.9.3))
  35. vant:
  36. specifier: ^4.9.21
  37. version: 4.9.21(vue@3.5.22(typescript@5.9.3))
  38. viewerjs:
  39. specifier: ^1.11.7
  40. version: 1.11.7
  41. vue:
  42. specifier: ^3.5.22
  43. version: 3.5.22(typescript@5.9.3)
  44. vue-dompurify-html:
  45. specifier: ^5.3.0
  46. version: 5.3.0(vue@3.5.22(typescript@5.9.3))
  47. vue-router:
  48. specifier: ^4.6.3
  49. version: 4.6.3(vue@3.5.22(typescript@5.9.3))
  50. devDependencies:
  51. '@eslint/js':
  52. specifier: ^9.38.0
  53. version: 9.38.0
  54. '@tsconfig/node22':
  55. specifier: ^22.0.2
  56. version: 22.0.2
  57. '@types/node':
  58. specifier: ^22.18.11
  59. version: 22.18.12
  60. '@types/qs':
  61. specifier: ^6.14.0
  62. version: 6.14.0
  63. '@typescript-eslint/eslint-plugin':
  64. specifier: ^8.46.2
  65. version: 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
  66. '@typescript-eslint/parser':
  67. specifier: ^8.46.2
  68. version: 8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
  69. '@vitejs/plugin-vue':
  70. specifier: ^6.0.1
  71. version: 6.0.1(vite@7.1.12(@types/node@22.18.12)(jiti@2.6.1)(sass@1.93.2))(vue@3.5.22(typescript@5.9.3))
  72. '@vue/eslint-config-prettier':
  73. specifier: ^10.2.0
  74. version: 10.2.0(eslint@9.38.0(jiti@2.6.1))(prettier@3.6.2)
  75. '@vue/eslint-config-typescript':
  76. specifier: ^14.6.0
  77. version: 14.6.0(eslint-plugin-vue@10.5.1(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1))(vue-eslint-parser@10.2.0(eslint@9.38.0(jiti@2.6.1))))(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
  78. '@vue/tsconfig':
  79. specifier: ^0.8.1
  80. version: 0.8.1(typescript@5.9.3)(vue@3.5.22(typescript@5.9.3))
  81. eslint:
  82. specifier: ^9.37.0
  83. version: 9.38.0(jiti@2.6.1)
  84. eslint-plugin-vue:
  85. specifier: ~10.5.0
  86. version: 10.5.1(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1))(vue-eslint-parser@10.2.0(eslint@9.38.0(jiti@2.6.1)))
  87. jiti:
  88. specifier: ^2.6.1
  89. version: 2.6.1
  90. npm-run-all2:
  91. specifier: ^8.0.4
  92. version: 8.0.4
  93. picocolors:
  94. specifier: ^1.1.1
  95. version: 1.1.1
  96. postcss-px-to-viewport-8-plugin:
  97. specifier: ^1.2.5
  98. version: 1.2.5
  99. prettier:
  100. specifier: 3.6.2
  101. version: 3.6.2
  102. sass:
  103. specifier: ^1.93.2
  104. version: 1.93.2
  105. typescript:
  106. specifier: ~5.9.0
  107. version: 5.9.3
  108. vite:
  109. specifier: ^7.1.11
  110. version: 7.1.12(@types/node@22.18.12)(jiti@2.6.1)(sass@1.93.2)
  111. vite-plugin-vue-devtools:
  112. specifier: ^8.0.3
  113. version: 8.0.3(vite@7.1.12(@types/node@22.18.12)(jiti@2.6.1)(sass@1.93.2))(vue@3.5.22(typescript@5.9.3))
  114. vue-tsc:
  115. specifier: ^3.1.1
  116. version: 3.1.1(typescript@5.9.3)
  117. packages:
  118. '@babel/code-frame@7.27.1':
  119. resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
  120. engines: {node: '>=6.9.0'}
  121. '@babel/compat-data@7.28.5':
  122. resolution: {integrity: sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==}
  123. engines: {node: '>=6.9.0'}
  124. '@babel/core@7.28.5':
  125. resolution: {integrity: sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==}
  126. engines: {node: '>=6.9.0'}
  127. '@babel/generator@7.28.5':
  128. resolution: {integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==}
  129. engines: {node: '>=6.9.0'}
  130. '@babel/helper-annotate-as-pure@7.27.3':
  131. resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==}
  132. engines: {node: '>=6.9.0'}
  133. '@babel/helper-compilation-targets@7.27.2':
  134. resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
  135. engines: {node: '>=6.9.0'}
  136. '@babel/helper-create-class-features-plugin@7.28.5':
  137. resolution: {integrity: sha512-q3WC4JfdODypvxArsJQROfupPBq9+lMwjKq7C33GhbFYJsufD0yd/ziwD+hJucLeWsnFPWZjsU2DNFqBPE7jwQ==}
  138. engines: {node: '>=6.9.0'}
  139. peerDependencies:
  140. '@babel/core': ^7.0.0
  141. '@babel/helper-globals@7.28.0':
  142. resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
  143. engines: {node: '>=6.9.0'}
  144. '@babel/helper-member-expression-to-functions@7.28.5':
  145. resolution: {integrity: sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==}
  146. engines: {node: '>=6.9.0'}
  147. '@babel/helper-module-imports@7.27.1':
  148. resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
  149. engines: {node: '>=6.9.0'}
  150. '@babel/helper-module-transforms@7.28.3':
  151. resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==}
  152. engines: {node: '>=6.9.0'}
  153. peerDependencies:
  154. '@babel/core': ^7.0.0
  155. '@babel/helper-optimise-call-expression@7.27.1':
  156. resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==}
  157. engines: {node: '>=6.9.0'}
  158. '@babel/helper-plugin-utils@7.27.1':
  159. resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==}
  160. engines: {node: '>=6.9.0'}
  161. '@babel/helper-replace-supers@7.27.1':
  162. resolution: {integrity: sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==}
  163. engines: {node: '>=6.9.0'}
  164. peerDependencies:
  165. '@babel/core': ^7.0.0
  166. '@babel/helper-skip-transparent-expression-wrappers@7.27.1':
  167. resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==}
  168. engines: {node: '>=6.9.0'}
  169. '@babel/helper-string-parser@7.27.1':
  170. resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
  171. engines: {node: '>=6.9.0'}
  172. '@babel/helper-validator-identifier@7.28.5':
  173. resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
  174. engines: {node: '>=6.9.0'}
  175. '@babel/helper-validator-option@7.27.1':
  176. resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
  177. engines: {node: '>=6.9.0'}
  178. '@babel/helpers@7.28.4':
  179. resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==}
  180. engines: {node: '>=6.9.0'}
  181. '@babel/parser@7.28.5':
  182. resolution: {integrity: sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==}
  183. engines: {node: '>=6.0.0'}
  184. hasBin: true
  185. '@babel/plugin-proposal-decorators@7.28.0':
  186. resolution: {integrity: sha512-zOiZqvANjWDUaUS9xMxbMcK/Zccztbe/6ikvUXaG9nsPH3w6qh5UaPGAnirI/WhIbZ8m3OHU0ReyPrknG+ZKeg==}
  187. engines: {node: '>=6.9.0'}
  188. peerDependencies:
  189. '@babel/core': ^7.0.0-0
  190. '@babel/plugin-syntax-decorators@7.27.1':
  191. resolution: {integrity: sha512-YMq8Z87Lhl8EGkmb0MwYkt36QnxC+fzCgrl66ereamPlYToRpIk5nUjKUY3QKLWq8mwUB1BgbeXcTJhZOCDg5A==}
  192. engines: {node: '>=6.9.0'}
  193. peerDependencies:
  194. '@babel/core': ^7.0.0-0
  195. '@babel/plugin-syntax-import-attributes@7.27.1':
  196. resolution: {integrity: sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==}
  197. engines: {node: '>=6.9.0'}
  198. peerDependencies:
  199. '@babel/core': ^7.0.0-0
  200. '@babel/plugin-syntax-import-meta@7.10.4':
  201. resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
  202. peerDependencies:
  203. '@babel/core': ^7.0.0-0
  204. '@babel/plugin-syntax-jsx@7.27.1':
  205. resolution: {integrity: sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==}
  206. engines: {node: '>=6.9.0'}
  207. peerDependencies:
  208. '@babel/core': ^7.0.0-0
  209. '@babel/plugin-syntax-typescript@7.27.1':
  210. resolution: {integrity: sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==}
  211. engines: {node: '>=6.9.0'}
  212. peerDependencies:
  213. '@babel/core': ^7.0.0-0
  214. '@babel/plugin-transform-typescript@7.28.5':
  215. resolution: {integrity: sha512-x2Qa+v/CuEoX7Dr31iAfr0IhInrVOWZU/2vJMJ00FOR/2nM0BcBEclpaf9sWCDc+v5e9dMrhSH8/atq/kX7+bA==}
  216. engines: {node: '>=6.9.0'}
  217. peerDependencies:
  218. '@babel/core': ^7.0.0-0
  219. '@babel/template@7.27.2':
  220. resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
  221. engines: {node: '>=6.9.0'}
  222. '@babel/traverse@7.28.5':
  223. resolution: {integrity: sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==}
  224. engines: {node: '>=6.9.0'}
  225. '@babel/types@7.28.5':
  226. resolution: {integrity: sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==}
  227. engines: {node: '>=6.9.0'}
  228. '@esbuild/aix-ppc64@0.25.11':
  229. resolution: {integrity: sha512-Xt1dOL13m8u0WE8iplx9Ibbm+hFAO0GsU2P34UNoDGvZYkY8ifSiy6Zuc1lYxfG7svWE2fzqCUmFp5HCn51gJg==}
  230. engines: {node: '>=18'}
  231. cpu: [ppc64]
  232. os: [aix]
  233. '@esbuild/android-arm64@0.25.11':
  234. resolution: {integrity: sha512-9slpyFBc4FPPz48+f6jyiXOx/Y4v34TUeDDXJpZqAWQn/08lKGeD8aDp9TMn9jDz2CiEuHwfhRmGBvpnd/PWIQ==}
  235. engines: {node: '>=18'}
  236. cpu: [arm64]
  237. os: [android]
  238. '@esbuild/android-arm@0.25.11':
  239. resolution: {integrity: sha512-uoa7dU+Dt3HYsethkJ1k6Z9YdcHjTrSb5NUy66ZfZaSV8hEYGD5ZHbEMXnqLFlbBflLsl89Zke7CAdDJ4JI+Gg==}
  240. engines: {node: '>=18'}
  241. cpu: [arm]
  242. os: [android]
  243. '@esbuild/android-x64@0.25.11':
  244. resolution: {integrity: sha512-Sgiab4xBjPU1QoPEIqS3Xx+R2lezu0LKIEcYe6pftr56PqPygbB7+szVnzoShbx64MUupqoE0KyRlN7gezbl8g==}
  245. engines: {node: '>=18'}
  246. cpu: [x64]
  247. os: [android]
  248. '@esbuild/darwin-arm64@0.25.11':
  249. resolution: {integrity: sha512-VekY0PBCukppoQrycFxUqkCojnTQhdec0vevUL/EDOCnXd9LKWqD/bHwMPzigIJXPhC59Vd1WFIL57SKs2mg4w==}
  250. engines: {node: '>=18'}
  251. cpu: [arm64]
  252. os: [darwin]
  253. '@esbuild/darwin-x64@0.25.11':
  254. resolution: {integrity: sha512-+hfp3yfBalNEpTGp9loYgbknjR695HkqtY3d3/JjSRUyPg/xd6q+mQqIb5qdywnDxRZykIHs3axEqU6l1+oWEQ==}
  255. engines: {node: '>=18'}
  256. cpu: [x64]
  257. os: [darwin]
  258. '@esbuild/freebsd-arm64@0.25.11':
  259. resolution: {integrity: sha512-CmKjrnayyTJF2eVuO//uSjl/K3KsMIeYeyN7FyDBjsR3lnSJHaXlVoAK8DZa7lXWChbuOk7NjAc7ygAwrnPBhA==}
  260. engines: {node: '>=18'}
  261. cpu: [arm64]
  262. os: [freebsd]
  263. '@esbuild/freebsd-x64@0.25.11':
  264. resolution: {integrity: sha512-Dyq+5oscTJvMaYPvW3x3FLpi2+gSZTCE/1ffdwuM6G1ARang/mb3jvjxs0mw6n3Lsw84ocfo9CrNMqc5lTfGOw==}
  265. engines: {node: '>=18'}
  266. cpu: [x64]
  267. os: [freebsd]
  268. '@esbuild/linux-arm64@0.25.11':
  269. resolution: {integrity: sha512-Qr8AzcplUhGvdyUF08A1kHU3Vr2O88xxP0Tm8GcdVOUm25XYcMPp2YqSVHbLuXzYQMf9Bh/iKx7YPqECs6ffLA==}
  270. engines: {node: '>=18'}
  271. cpu: [arm64]
  272. os: [linux]
  273. '@esbuild/linux-arm@0.25.11':
  274. resolution: {integrity: sha512-TBMv6B4kCfrGJ8cUPo7vd6NECZH/8hPpBHHlYI3qzoYFvWu2AdTvZNuU/7hsbKWqu/COU7NIK12dHAAqBLLXgw==}
  275. engines: {node: '>=18'}
  276. cpu: [arm]
  277. os: [linux]
  278. '@esbuild/linux-ia32@0.25.11':
  279. resolution: {integrity: sha512-TmnJg8BMGPehs5JKrCLqyWTVAvielc615jbkOirATQvWWB1NMXY77oLMzsUjRLa0+ngecEmDGqt5jiDC6bfvOw==}
  280. engines: {node: '>=18'}
  281. cpu: [ia32]
  282. os: [linux]
  283. '@esbuild/linux-loong64@0.25.11':
  284. resolution: {integrity: sha512-DIGXL2+gvDaXlaq8xruNXUJdT5tF+SBbJQKbWy/0J7OhU8gOHOzKmGIlfTTl6nHaCOoipxQbuJi7O++ldrxgMw==}
  285. engines: {node: '>=18'}
  286. cpu: [loong64]
  287. os: [linux]
  288. '@esbuild/linux-mips64el@0.25.11':
  289. resolution: {integrity: sha512-Osx1nALUJu4pU43o9OyjSCXokFkFbyzjXb6VhGIJZQ5JZi8ylCQ9/LFagolPsHtgw6himDSyb5ETSfmp4rpiKQ==}
  290. engines: {node: '>=18'}
  291. cpu: [mips64el]
  292. os: [linux]
  293. '@esbuild/linux-ppc64@0.25.11':
  294. resolution: {integrity: sha512-nbLFgsQQEsBa8XSgSTSlrnBSrpoWh7ioFDUmwo158gIm5NNP+17IYmNWzaIzWmgCxq56vfr34xGkOcZ7jX6CPw==}
  295. engines: {node: '>=18'}
  296. cpu: [ppc64]
  297. os: [linux]
  298. '@esbuild/linux-riscv64@0.25.11':
  299. resolution: {integrity: sha512-HfyAmqZi9uBAbgKYP1yGuI7tSREXwIb438q0nqvlpxAOs3XnZ8RsisRfmVsgV486NdjD7Mw2UrFSw51lzUk1ww==}
  300. engines: {node: '>=18'}
  301. cpu: [riscv64]
  302. os: [linux]
  303. '@esbuild/linux-s390x@0.25.11':
  304. resolution: {integrity: sha512-HjLqVgSSYnVXRisyfmzsH6mXqyvj0SA7pG5g+9W7ESgwA70AXYNpfKBqh1KbTxmQVaYxpzA/SvlB9oclGPbApw==}
  305. engines: {node: '>=18'}
  306. cpu: [s390x]
  307. os: [linux]
  308. '@esbuild/linux-x64@0.25.11':
  309. resolution: {integrity: sha512-HSFAT4+WYjIhrHxKBwGmOOSpphjYkcswF449j6EjsjbinTZbp8PJtjsVK1XFJStdzXdy/jaddAep2FGY+wyFAQ==}
  310. engines: {node: '>=18'}
  311. cpu: [x64]
  312. os: [linux]
  313. '@esbuild/netbsd-arm64@0.25.11':
  314. resolution: {integrity: sha512-hr9Oxj1Fa4r04dNpWr3P8QKVVsjQhqrMSUzZzf+LZcYjZNqhA3IAfPQdEh1FLVUJSiu6sgAwp3OmwBfbFgG2Xg==}
  315. engines: {node: '>=18'}
  316. cpu: [arm64]
  317. os: [netbsd]
  318. '@esbuild/netbsd-x64@0.25.11':
  319. resolution: {integrity: sha512-u7tKA+qbzBydyj0vgpu+5h5AeudxOAGncb8N6C9Kh1N4n7wU1Xw1JDApsRjpShRpXRQlJLb9wY28ELpwdPcZ7A==}
  320. engines: {node: '>=18'}
  321. cpu: [x64]
  322. os: [netbsd]
  323. '@esbuild/openbsd-arm64@0.25.11':
  324. resolution: {integrity: sha512-Qq6YHhayieor3DxFOoYM1q0q1uMFYb7cSpLD2qzDSvK1NAvqFi8Xgivv0cFC6J+hWVw2teCYltyy9/m/14ryHg==}
  325. engines: {node: '>=18'}
  326. cpu: [arm64]
  327. os: [openbsd]
  328. '@esbuild/openbsd-x64@0.25.11':
  329. resolution: {integrity: sha512-CN+7c++kkbrckTOz5hrehxWN7uIhFFlmS/hqziSFVWpAzpWrQoAG4chH+nN3Be+Kzv/uuo7zhX716x3Sn2Jduw==}
  330. engines: {node: '>=18'}
  331. cpu: [x64]
  332. os: [openbsd]
  333. '@esbuild/openharmony-arm64@0.25.11':
  334. resolution: {integrity: sha512-rOREuNIQgaiR+9QuNkbkxubbp8MSO9rONmwP5nKncnWJ9v5jQ4JxFnLu4zDSRPf3x4u+2VN4pM4RdyIzDty/wQ==}
  335. engines: {node: '>=18'}
  336. cpu: [arm64]
  337. os: [openharmony]
  338. '@esbuild/sunos-x64@0.25.11':
  339. resolution: {integrity: sha512-nq2xdYaWxyg9DcIyXkZhcYulC6pQ2FuCgem3LI92IwMgIZ69KHeY8T4Y88pcwoLIjbed8n36CyKoYRDygNSGhA==}
  340. engines: {node: '>=18'}
  341. cpu: [x64]
  342. os: [sunos]
  343. '@esbuild/win32-arm64@0.25.11':
  344. resolution: {integrity: sha512-3XxECOWJq1qMZ3MN8srCJ/QfoLpL+VaxD/WfNRm1O3B4+AZ/BnLVgFbUV3eiRYDMXetciH16dwPbbHqwe1uU0Q==}
  345. engines: {node: '>=18'}
  346. cpu: [arm64]
  347. os: [win32]
  348. '@esbuild/win32-ia32@0.25.11':
  349. resolution: {integrity: sha512-3ukss6gb9XZ8TlRyJlgLn17ecsK4NSQTmdIXRASVsiS2sQ6zPPZklNJT5GR5tE/MUarymmy8kCEf5xPCNCqVOA==}
  350. engines: {node: '>=18'}
  351. cpu: [ia32]
  352. os: [win32]
  353. '@esbuild/win32-x64@0.25.11':
  354. resolution: {integrity: sha512-D7Hpz6A2L4hzsRpPaCYkQnGOotdUpDzSGRIv9I+1ITdHROSFUWW95ZPZWQmGka1Fg7W3zFJowyn9WGwMJ0+KPA==}
  355. engines: {node: '>=18'}
  356. cpu: [x64]
  357. os: [win32]
  358. '@eslint-community/eslint-utils@4.9.0':
  359. resolution: {integrity: sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==}
  360. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  361. peerDependencies:
  362. eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
  363. '@eslint-community/regexpp@4.12.2':
  364. resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
  365. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  366. '@eslint/config-array@0.21.1':
  367. resolution: {integrity: sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==}
  368. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  369. '@eslint/config-helpers@0.4.1':
  370. resolution: {integrity: sha512-csZAzkNhsgwb0I/UAV6/RGFTbiakPCf0ZrGmrIxQpYvGZ00PhTkSnyKNolphgIvmnJeGw6rcGVEXfTzUnFuEvw==}
  371. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  372. '@eslint/core@0.16.0':
  373. resolution: {integrity: sha512-nmC8/totwobIiFcGkDza3GIKfAw1+hLiYVrh3I1nIomQ8PEr5cxg34jnkmGawul/ep52wGRAcyeDCNtWKSOj4Q==}
  374. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  375. '@eslint/eslintrc@3.3.1':
  376. resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
  377. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  378. '@eslint/js@9.38.0':
  379. resolution: {integrity: sha512-UZ1VpFvXf9J06YG9xQBdnzU+kthors6KjhMAl6f4gH4usHyh31rUf2DLGInT8RFYIReYXNSydgPY0V2LuWgl7A==}
  380. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  381. '@eslint/object-schema@2.1.7':
  382. resolution: {integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==}
  383. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  384. '@eslint/plugin-kit@0.4.0':
  385. resolution: {integrity: sha512-sB5uyeq+dwCWyPi31B2gQlVlo+j5brPlWx4yZBrEaRo/nhdDE8Xke1gsGgtiBdaBTxuTkceLVuVt/pclrasb0A==}
  386. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  387. '@humanfs/core@0.19.1':
  388. resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
  389. engines: {node: '>=18.18.0'}
  390. '@humanfs/node@0.16.7':
  391. resolution: {integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==}
  392. engines: {node: '>=18.18.0'}
  393. '@humanwhocodes/module-importer@1.0.1':
  394. resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
  395. engines: {node: '>=12.22'}
  396. '@humanwhocodes/retry@0.4.3':
  397. resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
  398. engines: {node: '>=18.18'}
  399. '@jridgewell/gen-mapping@0.3.13':
  400. resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
  401. '@jridgewell/remapping@2.3.5':
  402. resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
  403. '@jridgewell/resolve-uri@3.1.2':
  404. resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
  405. engines: {node: '>=6.0.0'}
  406. '@jridgewell/sourcemap-codec@1.5.5':
  407. resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
  408. '@jridgewell/trace-mapping@0.3.31':
  409. resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
  410. '@nodelib/fs.scandir@2.1.5':
  411. resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
  412. engines: {node: '>= 8'}
  413. '@nodelib/fs.stat@2.0.5':
  414. resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
  415. engines: {node: '>= 8'}
  416. '@nodelib/fs.walk@1.2.8':
  417. resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
  418. engines: {node: '>= 8'}
  419. '@parcel/watcher-android-arm64@2.5.1':
  420. resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==}
  421. engines: {node: '>= 10.0.0'}
  422. cpu: [arm64]
  423. os: [android]
  424. '@parcel/watcher-darwin-arm64@2.5.1':
  425. resolution: {integrity: sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==}
  426. engines: {node: '>= 10.0.0'}
  427. cpu: [arm64]
  428. os: [darwin]
  429. '@parcel/watcher-darwin-x64@2.5.1':
  430. resolution: {integrity: sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==}
  431. engines: {node: '>= 10.0.0'}
  432. cpu: [x64]
  433. os: [darwin]
  434. '@parcel/watcher-freebsd-x64@2.5.1':
  435. resolution: {integrity: sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==}
  436. engines: {node: '>= 10.0.0'}
  437. cpu: [x64]
  438. os: [freebsd]
  439. '@parcel/watcher-linux-arm-glibc@2.5.1':
  440. resolution: {integrity: sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==}
  441. engines: {node: '>= 10.0.0'}
  442. cpu: [arm]
  443. os: [linux]
  444. libc: [glibc]
  445. '@parcel/watcher-linux-arm-musl@2.5.1':
  446. resolution: {integrity: sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==}
  447. engines: {node: '>= 10.0.0'}
  448. cpu: [arm]
  449. os: [linux]
  450. libc: [musl]
  451. '@parcel/watcher-linux-arm64-glibc@2.5.1':
  452. resolution: {integrity: sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==}
  453. engines: {node: '>= 10.0.0'}
  454. cpu: [arm64]
  455. os: [linux]
  456. libc: [glibc]
  457. '@parcel/watcher-linux-arm64-musl@2.5.1':
  458. resolution: {integrity: sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==}
  459. engines: {node: '>= 10.0.0'}
  460. cpu: [arm64]
  461. os: [linux]
  462. libc: [musl]
  463. '@parcel/watcher-linux-x64-glibc@2.5.1':
  464. resolution: {integrity: sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==}
  465. engines: {node: '>= 10.0.0'}
  466. cpu: [x64]
  467. os: [linux]
  468. libc: [glibc]
  469. '@parcel/watcher-linux-x64-musl@2.5.1':
  470. resolution: {integrity: sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==}
  471. engines: {node: '>= 10.0.0'}
  472. cpu: [x64]
  473. os: [linux]
  474. libc: [musl]
  475. '@parcel/watcher-win32-arm64@2.5.1':
  476. resolution: {integrity: sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==}
  477. engines: {node: '>= 10.0.0'}
  478. cpu: [arm64]
  479. os: [win32]
  480. '@parcel/watcher-win32-ia32@2.5.1':
  481. resolution: {integrity: sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==}
  482. engines: {node: '>= 10.0.0'}
  483. cpu: [ia32]
  484. os: [win32]
  485. '@parcel/watcher-win32-x64@2.5.1':
  486. resolution: {integrity: sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==}
  487. engines: {node: '>= 10.0.0'}
  488. cpu: [x64]
  489. os: [win32]
  490. '@parcel/watcher@2.5.1':
  491. resolution: {integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==}
  492. engines: {node: '>= 10.0.0'}
  493. '@pkgr/core@0.2.9':
  494. resolution: {integrity: sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==}
  495. engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
  496. '@polka/url@1.0.0-next.29':
  497. resolution: {integrity: sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==}
  498. '@rolldown/pluginutils@1.0.0-beta.29':
  499. resolution: {integrity: sha512-NIJgOsMjbxAXvoGq/X0gD7VPMQ8j9g0BiDaNjVNVjvl+iKXxL3Jre0v31RmBYeLEmkbj2s02v8vFTbUXi5XS2Q==}
  500. '@rollup/rollup-android-arm-eabi@4.52.5':
  501. resolution: {integrity: sha512-8c1vW4ocv3UOMp9K+gToY5zL2XiiVw3k7f1ksf4yO1FlDFQ1C2u72iACFnSOceJFsWskc2WZNqeRhFRPzv+wtQ==}
  502. cpu: [arm]
  503. os: [android]
  504. '@rollup/rollup-android-arm64@4.52.5':
  505. resolution: {integrity: sha512-mQGfsIEFcu21mvqkEKKu2dYmtuSZOBMmAl5CFlPGLY94Vlcm+zWApK7F/eocsNzp8tKmbeBP8yXyAbx0XHsFNA==}
  506. cpu: [arm64]
  507. os: [android]
  508. '@rollup/rollup-darwin-arm64@4.52.5':
  509. resolution: {integrity: sha512-takF3CR71mCAGA+v794QUZ0b6ZSrgJkArC+gUiG6LB6TQty9T0Mqh3m2ImRBOxS2IeYBo4lKWIieSvnEk2OQWA==}
  510. cpu: [arm64]
  511. os: [darwin]
  512. '@rollup/rollup-darwin-x64@4.52.5':
  513. resolution: {integrity: sha512-W901Pla8Ya95WpxDn//VF9K9u2JbocwV/v75TE0YIHNTbhqUTv9w4VuQ9MaWlNOkkEfFwkdNhXgcLqPSmHy0fA==}
  514. cpu: [x64]
  515. os: [darwin]
  516. '@rollup/rollup-freebsd-arm64@4.52.5':
  517. resolution: {integrity: sha512-QofO7i7JycsYOWxe0GFqhLmF6l1TqBswJMvICnRUjqCx8b47MTo46W8AoeQwiokAx3zVryVnxtBMcGcnX12LvA==}
  518. cpu: [arm64]
  519. os: [freebsd]
  520. '@rollup/rollup-freebsd-x64@4.52.5':
  521. resolution: {integrity: sha512-jr21b/99ew8ujZubPo9skbrItHEIE50WdV86cdSoRkKtmWa+DDr6fu2c/xyRT0F/WazZpam6kk7IHBerSL7LDQ==}
  522. cpu: [x64]
  523. os: [freebsd]
  524. '@rollup/rollup-linux-arm-gnueabihf@4.52.5':
  525. resolution: {integrity: sha512-PsNAbcyv9CcecAUagQefwX8fQn9LQ4nZkpDboBOttmyffnInRy8R8dSg6hxxl2Re5QhHBf6FYIDhIj5v982ATQ==}
  526. cpu: [arm]
  527. os: [linux]
  528. libc: [glibc]
  529. '@rollup/rollup-linux-arm-musleabihf@4.52.5':
  530. resolution: {integrity: sha512-Fw4tysRutyQc/wwkmcyoqFtJhh0u31K+Q6jYjeicsGJJ7bbEq8LwPWV/w0cnzOqR2m694/Af6hpFayLJZkG2VQ==}
  531. cpu: [arm]
  532. os: [linux]
  533. libc: [musl]
  534. '@rollup/rollup-linux-arm64-gnu@4.52.5':
  535. resolution: {integrity: sha512-a+3wVnAYdQClOTlyapKmyI6BLPAFYs0JM8HRpgYZQO02rMR09ZcV9LbQB+NL6sljzG38869YqThrRnfPMCDtZg==}
  536. cpu: [arm64]
  537. os: [linux]
  538. libc: [glibc]
  539. '@rollup/rollup-linux-arm64-musl@4.52.5':
  540. resolution: {integrity: sha512-AvttBOMwO9Pcuuf7m9PkC1PUIKsfaAJ4AYhy944qeTJgQOqJYJ9oVl2nYgY7Rk0mkbsuOpCAYSs6wLYB2Xiw0Q==}
  541. cpu: [arm64]
  542. os: [linux]
  543. libc: [musl]
  544. '@rollup/rollup-linux-loong64-gnu@4.52.5':
  545. resolution: {integrity: sha512-DkDk8pmXQV2wVrF6oq5tONK6UHLz/XcEVow4JTTerdeV1uqPeHxwcg7aFsfnSm9L+OO8WJsWotKM2JJPMWrQtA==}
  546. cpu: [loong64]
  547. os: [linux]
  548. libc: [glibc]
  549. '@rollup/rollup-linux-ppc64-gnu@4.52.5':
  550. resolution: {integrity: sha512-W/b9ZN/U9+hPQVvlGwjzi+Wy4xdoH2I8EjaCkMvzpI7wJUs8sWJ03Rq96jRnHkSrcHTpQe8h5Tg3ZzUPGauvAw==}
  551. cpu: [ppc64]
  552. os: [linux]
  553. libc: [glibc]
  554. '@rollup/rollup-linux-riscv64-gnu@4.52.5':
  555. resolution: {integrity: sha512-sjQLr9BW7R/ZiXnQiWPkErNfLMkkWIoCz7YMn27HldKsADEKa5WYdobaa1hmN6slu9oWQbB6/jFpJ+P2IkVrmw==}
  556. cpu: [riscv64]
  557. os: [linux]
  558. libc: [glibc]
  559. '@rollup/rollup-linux-riscv64-musl@4.52.5':
  560. resolution: {integrity: sha512-hq3jU/kGyjXWTvAh2awn8oHroCbrPm8JqM7RUpKjalIRWWXE01CQOf/tUNWNHjmbMHg/hmNCwc/Pz3k1T/j/Lg==}
  561. cpu: [riscv64]
  562. os: [linux]
  563. libc: [musl]
  564. '@rollup/rollup-linux-s390x-gnu@4.52.5':
  565. resolution: {integrity: sha512-gn8kHOrku8D4NGHMK1Y7NA7INQTRdVOntt1OCYypZPRt6skGbddska44K8iocdpxHTMMNui5oH4elPH4QOLrFQ==}
  566. cpu: [s390x]
  567. os: [linux]
  568. libc: [glibc]
  569. '@rollup/rollup-linux-x64-gnu@4.52.5':
  570. resolution: {integrity: sha512-hXGLYpdhiNElzN770+H2nlx+jRog8TyynpTVzdlc6bndktjKWyZyiCsuDAlpd+j+W+WNqfcyAWz9HxxIGfZm1Q==}
  571. cpu: [x64]
  572. os: [linux]
  573. libc: [glibc]
  574. '@rollup/rollup-linux-x64-musl@4.52.5':
  575. resolution: {integrity: sha512-arCGIcuNKjBoKAXD+y7XomR9gY6Mw7HnFBv5Rw7wQRvwYLR7gBAgV7Mb2QTyjXfTveBNFAtPt46/36vV9STLNg==}
  576. cpu: [x64]
  577. os: [linux]
  578. libc: [musl]
  579. '@rollup/rollup-openharmony-arm64@4.52.5':
  580. resolution: {integrity: sha512-QoFqB6+/9Rly/RiPjaomPLmR/13cgkIGfA40LHly9zcH1S0bN2HVFYk3a1eAyHQyjs3ZJYlXvIGtcCs5tko9Cw==}
  581. cpu: [arm64]
  582. os: [openharmony]
  583. '@rollup/rollup-win32-arm64-msvc@4.52.5':
  584. resolution: {integrity: sha512-w0cDWVR6MlTstla1cIfOGyl8+qb93FlAVutcor14Gf5Md5ap5ySfQ7R9S/NjNaMLSFdUnKGEasmVnu3lCMqB7w==}
  585. cpu: [arm64]
  586. os: [win32]
  587. '@rollup/rollup-win32-ia32-msvc@4.52.5':
  588. resolution: {integrity: sha512-Aufdpzp7DpOTULJCuvzqcItSGDH73pF3ko/f+ckJhxQyHtp67rHw3HMNxoIdDMUITJESNE6a8uh4Lo4SLouOUg==}
  589. cpu: [ia32]
  590. os: [win32]
  591. '@rollup/rollup-win32-x64-gnu@4.52.5':
  592. resolution: {integrity: sha512-UGBUGPFp1vkj6p8wCRraqNhqwX/4kNQPS57BCFc8wYh0g94iVIW33wJtQAx3G7vrjjNtRaxiMUylM0ktp/TRSQ==}
  593. cpu: [x64]
  594. os: [win32]
  595. '@rollup/rollup-win32-x64-msvc@4.52.5':
  596. resolution: {integrity: sha512-TAcgQh2sSkykPRWLrdyy2AiceMckNf5loITqXxFI5VuQjS5tSuw3WlwdN8qv8vzjLAUTvYaH/mVjSFpbkFbpTg==}
  597. cpu: [x64]
  598. os: [win32]
  599. '@tsconfig/node22@22.0.2':
  600. resolution: {integrity: sha512-Kmwj4u8sDRDrMYRoN9FDEcXD8UpBSaPQQ24Gz+Gamqfm7xxn+GBR7ge/Z7pK8OXNGyUzbSwJj+TH6B+DS/epyA==}
  601. '@types/estree@1.0.8':
  602. resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
  603. '@types/json-schema@7.0.15':
  604. resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
  605. '@types/node@22.18.12':
  606. resolution: {integrity: sha512-BICHQ67iqxQGFSzfCFTT7MRQ5XcBjG5aeKh5Ok38UBbPe5fxTyE+aHFxwVrGyr8GNlqFMLKD1D3P2K/1ks8tog==}
  607. '@types/qs@6.14.0':
  608. resolution: {integrity: sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==}
  609. '@types/trusted-types@2.0.7':
  610. resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==}
  611. '@typescript-eslint/eslint-plugin@8.46.2':
  612. resolution: {integrity: sha512-ZGBMToy857/NIPaaCucIUQgqueOiq7HeAKkhlvqVV4lm089zUFW6ikRySx2v+cAhKeUCPuWVHeimyk6Dw1iY3w==}
  613. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  614. peerDependencies:
  615. '@typescript-eslint/parser': ^8.46.2
  616. eslint: ^8.57.0 || ^9.0.0
  617. typescript: '>=4.8.4 <6.0.0'
  618. '@typescript-eslint/parser@8.46.2':
  619. resolution: {integrity: sha512-BnOroVl1SgrPLywqxyqdJ4l3S2MsKVLDVxZvjI1Eoe8ev2r3kGDo+PcMihNmDE+6/KjkTubSJnmqGZZjQSBq/g==}
  620. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  621. peerDependencies:
  622. eslint: ^8.57.0 || ^9.0.0
  623. typescript: '>=4.8.4 <6.0.0'
  624. '@typescript-eslint/project-service@8.46.2':
  625. resolution: {integrity: sha512-PULOLZ9iqwI7hXcmL4fVfIsBi6AN9YxRc0frbvmg8f+4hQAjQ5GYNKK0DIArNo+rOKmR/iBYwkpBmnIwin4wBg==}
  626. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  627. peerDependencies:
  628. typescript: '>=4.8.4 <6.0.0'
  629. '@typescript-eslint/scope-manager@8.46.2':
  630. resolution: {integrity: sha512-LF4b/NmGvdWEHD2H4MsHD8ny6JpiVNDzrSZr3CsckEgCbAGZbYM4Cqxvi9L+WqDMT+51Ozy7lt2M+d0JLEuBqA==}
  631. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  632. '@typescript-eslint/tsconfig-utils@8.46.2':
  633. resolution: {integrity: sha512-a7QH6fw4S57+F5y2FIxxSDyi5M4UfGF+Jl1bCGd7+L4KsaUY80GsiF/t0UoRFDHAguKlBaACWJRmdrc6Xfkkag==}
  634. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  635. peerDependencies:
  636. typescript: '>=4.8.4 <6.0.0'
  637. '@typescript-eslint/type-utils@8.46.2':
  638. resolution: {integrity: sha512-HbPM4LbaAAt/DjxXaG9yiS9brOOz6fabal4uvUmaUYe6l3K1phQDMQKBRUrr06BQkxkvIZVVHttqiybM9nJsLA==}
  639. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  640. peerDependencies:
  641. eslint: ^8.57.0 || ^9.0.0
  642. typescript: '>=4.8.4 <6.0.0'
  643. '@typescript-eslint/types@8.46.2':
  644. resolution: {integrity: sha512-lNCWCbq7rpg7qDsQrd3D6NyWYu+gkTENkG5IKYhUIcxSb59SQC/hEQ+MrG4sTgBVghTonNWq42bA/d4yYumldQ==}
  645. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  646. '@typescript-eslint/typescript-estree@8.46.2':
  647. resolution: {integrity: sha512-f7rW7LJ2b7Uh2EiQ+7sza6RDZnajbNbemn54Ob6fRwQbgcIn+GWfyuHDHRYgRoZu1P4AayVScrRW+YfbTvPQoQ==}
  648. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  649. peerDependencies:
  650. typescript: '>=4.8.4 <6.0.0'
  651. '@typescript-eslint/utils@8.46.2':
  652. resolution: {integrity: sha512-sExxzucx0Tud5tE0XqR0lT0psBQvEpnpiul9XbGUB1QwpWJJAps1O/Z7hJxLGiZLBKMCutjTzDgmd1muEhBnVg==}
  653. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  654. peerDependencies:
  655. eslint: ^8.57.0 || ^9.0.0
  656. typescript: '>=4.8.4 <6.0.0'
  657. '@typescript-eslint/visitor-keys@8.46.2':
  658. resolution: {integrity: sha512-tUFMXI4gxzzMXt4xpGJEsBsTox0XbNQ1y94EwlD/CuZwFcQP79xfQqMhau9HsRc/J0cAPA/HZt1dZPtGn9V/7w==}
  659. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  660. '@vant/area-data@2.2.0':
  661. resolution: {integrity: sha512-H1payEoXLnUqTNPdt2zftv0yoZBP8AZF69XntMqqGOn5LGtuaZ/VeRXQnJLiBPgGuHs2sXPgZ4gUVGp4Cg154w==}
  662. '@vant/popperjs@1.3.0':
  663. resolution: {integrity: sha512-hB+czUG+aHtjhaEmCJDuXOep0YTZjdlRR+4MSmIFnkCQIxJaXLQdSsR90XWvAI2yvKUI7TCGqR8pQg2RtvkMHw==}
  664. '@vant/use@1.6.0':
  665. resolution: {integrity: sha512-PHHxeAASgiOpSmMjceweIrv2AxDZIkWXyaczksMoWvKV2YAYEhoizRuk/xFnKF+emUIi46TsQ+rvlm/t2BBCfA==}
  666. peerDependencies:
  667. vue: ^3.0.0
  668. '@vitejs/plugin-vue@6.0.1':
  669. resolution: {integrity: sha512-+MaE752hU0wfPFJEUAIxqw18+20euHHdxVtMvbFcOEpjEyfqXH/5DCoTHiVJ0J29EhTJdoTkjEv5YBKU9dnoTw==}
  670. engines: {node: ^20.19.0 || >=22.12.0}
  671. peerDependencies:
  672. vite: ^5.0.0 || ^6.0.0 || ^7.0.0
  673. vue: ^3.2.25
  674. '@volar/language-core@2.4.23':
  675. resolution: {integrity: sha512-hEEd5ET/oSmBC6pi1j6NaNYRWoAiDhINbT8rmwtINugR39loROSlufGdYMF9TaKGfz+ViGs1Idi3mAhnuPcoGQ==}
  676. '@volar/source-map@2.4.23':
  677. resolution: {integrity: sha512-Z1Uc8IB57Lm6k7q6KIDu/p+JWtf3xsXJqAX/5r18hYOTpJyBn0KXUR8oTJ4WFYOcDzWC9n3IflGgHowx6U6z9Q==}
  678. '@volar/typescript@2.4.23':
  679. resolution: {integrity: sha512-lAB5zJghWxVPqfcStmAP1ZqQacMpe90UrP5RJ3arDyrhy4aCUQqmxPPLB2PWDKugvylmO41ljK7vZ+t6INMTag==}
  680. '@vue/babel-helper-vue-transform-on@1.5.0':
  681. resolution: {integrity: sha512-0dAYkerNhhHutHZ34JtTl2czVQHUNWv6xEbkdF5W+Yrv5pCWsqjeORdOgbtW2I9gWlt+wBmVn+ttqN9ZxR5tzA==}
  682. '@vue/babel-plugin-jsx@1.5.0':
  683. resolution: {integrity: sha512-mneBhw1oOqCd2247O0Yw/mRwC9jIGACAJUlawkmMBiNmL4dGA2eMzuNZVNqOUfYTa6vqmND4CtOPzmEEEqLKFw==}
  684. peerDependencies:
  685. '@babel/core': ^7.0.0-0
  686. peerDependenciesMeta:
  687. '@babel/core':
  688. optional: true
  689. '@vue/babel-plugin-resolve-type@1.5.0':
  690. resolution: {integrity: sha512-Wm/60o+53JwJODm4Knz47dxJnLDJ9FnKnGZJbUUf8nQRAtt6P+undLUAVU3Ha33LxOJe6IPoifRQ6F/0RrU31w==}
  691. peerDependencies:
  692. '@babel/core': ^7.0.0-0
  693. '@vue/compiler-core@3.5.22':
  694. resolution: {integrity: sha512-jQ0pFPmZwTEiRNSb+i9Ow/I/cHv2tXYqsnHKKyCQ08irI2kdF5qmYedmF8si8mA7zepUFmJ2hqzS8CQmNOWOkQ==}
  695. '@vue/compiler-dom@3.5.22':
  696. resolution: {integrity: sha512-W8RknzUM1BLkypvdz10OVsGxnMAuSIZs9Wdx1vzA3mL5fNMN15rhrSCLiTm6blWeACwUwizzPVqGJgOGBEN/hA==}
  697. '@vue/compiler-sfc@3.5.22':
  698. resolution: {integrity: sha512-tbTR1zKGce4Lj+JLzFXDq36K4vcSZbJ1RBu8FxcDv1IGRz//Dh2EBqksyGVypz3kXpshIfWKGOCcqpSbyGWRJQ==}
  699. '@vue/compiler-ssr@3.5.22':
  700. resolution: {integrity: sha512-GdgyLvg4R+7T8Nk2Mlighx7XGxq/fJf9jaVofc3IL0EPesTE86cP/8DD1lT3h1JeZr2ySBvyqKQJgbS54IX1Ww==}
  701. '@vue/devtools-api@6.6.4':
  702. resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
  703. '@vue/devtools-api@7.7.7':
  704. resolution: {integrity: sha512-lwOnNBH2e7x1fIIbVT7yF5D+YWhqELm55/4ZKf45R9T8r9dE2AIOy8HKjfqzGsoTHFbWbr337O4E0A0QADnjBg==}
  705. '@vue/devtools-core@8.0.3':
  706. resolution: {integrity: sha512-gCEQN7aMmeaigEWJQ2Z2o3g7/CMqGTPvNS1U3n/kzpLoAZ1hkAHNgi4ml/POn/9uqGILBk65GGOUdrraHXRj5Q==}
  707. peerDependencies:
  708. vue: ^3.0.0
  709. '@vue/devtools-kit@7.7.7':
  710. resolution: {integrity: sha512-wgoZtxcTta65cnZ1Q6MbAfePVFxfM+gq0saaeytoph7nEa7yMXoi6sCPy4ufO111B9msnw0VOWjPEFCXuAKRHA==}
  711. '@vue/devtools-kit@8.0.3':
  712. resolution: {integrity: sha512-UF4YUOVGdfzXLCv5pMg2DxocB8dvXz278fpgEE+nJ/DRALQGAva7sj9ton0VWZ9hmXw+SV8yKMrxP2MpMhq9Wg==}
  713. '@vue/devtools-shared@7.7.7':
  714. resolution: {integrity: sha512-+udSj47aRl5aKb0memBvcUG9koarqnxNM5yjuREvqwK6T3ap4mn3Zqqc17QrBFTqSMjr3HK1cvStEZpMDpfdyw==}
  715. '@vue/devtools-shared@8.0.3':
  716. resolution: {integrity: sha512-s/QNll7TlpbADFZrPVsaUNPCOF8NvQgtgmmB7Tip6pLf/HcOvBTly0lfLQ0Eylu9FQ4OqBhFpLyBgwykiSf8zw==}
  717. '@vue/eslint-config-prettier@10.2.0':
  718. resolution: {integrity: sha512-GL3YBLwv/+b86yHcNNfPJxOTtVFJ4Mbc9UU3zR+KVoG7SwGTjPT+32fXamscNumElhcpXW3mT0DgzS9w32S7Bw==}
  719. peerDependencies:
  720. eslint: '>= 8.21.0'
  721. prettier: '>= 3.0.0'
  722. '@vue/eslint-config-typescript@14.6.0':
  723. resolution: {integrity: sha512-UpiRY/7go4Yps4mYCjkvlIbVWmn9YvPGQDxTAlcKLphyaD77LjIu3plH4Y9zNT0GB4f3K5tMmhhtRhPOgrQ/bQ==}
  724. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  725. peerDependencies:
  726. eslint: ^9.10.0
  727. eslint-plugin-vue: ^9.28.0 || ^10.0.0
  728. typescript: '>=4.8.4'
  729. peerDependenciesMeta:
  730. typescript:
  731. optional: true
  732. '@vue/language-core@3.1.1':
  733. resolution: {integrity: sha512-qjMY3Q+hUCjdH+jLrQapqgpsJ0rd/2mAY02lZoHG3VFJZZZKLjAlV+Oo9QmWIT4jh8+Rx8RUGUi++d7T9Wb6Mw==}
  734. peerDependencies:
  735. typescript: '*'
  736. peerDependenciesMeta:
  737. typescript:
  738. optional: true
  739. '@vue/reactivity@3.5.22':
  740. resolution: {integrity: sha512-f2Wux4v/Z2pqc9+4SmgZC1p73Z53fyD90NFWXiX9AKVnVBEvLFOWCEgJD3GdGnlxPZt01PSlfmLqbLYzY/Fw4A==}
  741. '@vue/runtime-core@3.5.22':
  742. resolution: {integrity: sha512-EHo4W/eiYeAzRTN5PCextDUZ0dMs9I8mQ2Fy+OkzvRPUYQEyK9yAjbasrMCXbLNhF7P0OUyivLjIy0yc6VrLJQ==}
  743. '@vue/runtime-dom@3.5.22':
  744. resolution: {integrity: sha512-Av60jsryAkI023PlN7LsqrfPvwfxOd2yAwtReCjeuugTJTkgrksYJJstg1e12qle0NarkfhfFu1ox2D+cQotww==}
  745. '@vue/server-renderer@3.5.22':
  746. resolution: {integrity: sha512-gXjo+ao0oHYTSswF+a3KRHZ1WszxIqO7u6XwNHqcqb9JfyIL/pbWrrh/xLv7jeDqla9u+LK7yfZKHih1e1RKAQ==}
  747. peerDependencies:
  748. vue: 3.5.22
  749. '@vue/shared@3.5.22':
  750. resolution: {integrity: sha512-F4yc6palwq3TT0u+FYf0Ns4Tfl9GRFURDN2gWG7L1ecIaS/4fCIuFOjMTnCyjsu/OK6vaDKLCrGAa+KvvH+h4w==}
  751. '@vue/tsconfig@0.8.1':
  752. resolution: {integrity: sha512-aK7feIWPXFSUhsCP9PFqPyFOcz4ENkb8hZ2pneL6m2UjCkccvaOhC/5KCKluuBufvp2KzkbdA2W2pk20vLzu3g==}
  753. peerDependencies:
  754. typescript: 5.x
  755. vue: ^3.4.0
  756. peerDependenciesMeta:
  757. typescript:
  758. optional: true
  759. vue:
  760. optional: true
  761. acorn-jsx@5.3.2:
  762. resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
  763. peerDependencies:
  764. acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
  765. acorn@8.15.0:
  766. resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==}
  767. engines: {node: '>=0.4.0'}
  768. hasBin: true
  769. ajv@6.12.6:
  770. resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
  771. alien-signals@3.0.3:
  772. resolution: {integrity: sha512-2JXjom6R7ZwrISpUphLhf4htUq1aKRCennTJ6u9kFfr3sLmC9+I4CxxVi+McoFnIg+p1HnVrfLT/iCt4Dlz//Q==}
  773. ansi-styles@4.3.0:
  774. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  775. engines: {node: '>=8'}
  776. ansi-styles@6.2.3:
  777. resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==}
  778. engines: {node: '>=12'}
  779. ansis@4.2.0:
  780. resolution: {integrity: sha512-HqZ5rWlFjGiV0tDm3UxxgNRqsOTniqoKZu0pIAfh7TZQMGuZK+hH0drySty0si0QXj1ieop4+SkSfPZBPPkHig==}
  781. engines: {node: '>=14'}
  782. argparse@2.0.1:
  783. resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
  784. asynckit@0.4.0:
  785. resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
  786. axios@1.12.2:
  787. resolution: {integrity: sha512-vMJzPewAlRyOgxV2dU0Cuz2O8zzzx9VYtbJOaBgXFeLc4IV/Eg50n4LowmehOOR61S8ZMpc2K5Sa7g6A4jfkUw==}
  788. balanced-match@1.0.2:
  789. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  790. baseline-browser-mapping@2.8.20:
  791. resolution: {integrity: sha512-JMWsdF+O8Orq3EMukbUN1QfbLK9mX2CkUmQBcW2T0s8OmdAUL5LLM/6wFwSrqXzlXB13yhyK9gTKS1rIizOduQ==}
  792. hasBin: true
  793. birpc@2.6.1:
  794. resolution: {integrity: sha512-LPnFhlDpdSH6FJhJyn4M0kFO7vtQ5iPw24FnG0y21q09xC7e8+1LeR31S1MAIrDAHp4m7aas4bEkTDTvMAtebQ==}
  795. boolbase@1.0.0:
  796. resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
  797. brace-expansion@1.1.12:
  798. resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
  799. brace-expansion@2.0.2:
  800. resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
  801. braces@3.0.3:
  802. resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
  803. engines: {node: '>=8'}
  804. browserslist@4.27.0:
  805. resolution: {integrity: sha512-AXVQwdhot1eqLihwasPElhX2tAZiBjWdJ9i/Zcj2S6QYIjkx62OKSfnobkriB81C3l4w0rVy3Nt4jaTBltYEpw==}
  806. engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
  807. hasBin: true
  808. bundle-name@4.1.0:
  809. resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==}
  810. engines: {node: '>=18'}
  811. call-bind-apply-helpers@1.0.2:
  812. resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
  813. engines: {node: '>= 0.4'}
  814. call-bound@1.0.4:
  815. resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==}
  816. engines: {node: '>= 0.4'}
  817. callsites@3.1.0:
  818. resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
  819. engines: {node: '>=6'}
  820. caniuse-lite@1.0.30001751:
  821. resolution: {integrity: sha512-A0QJhug0Ly64Ii3eIqHu5X51ebln3k4yTUkY1j8drqpWHVreg/VLijN48cZ1bYPiqOQuqpkIKnzr/Ul8V+p6Cw==}
  822. chalk@4.1.2:
  823. resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
  824. engines: {node: '>=10'}
  825. chokidar@4.0.3:
  826. resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
  827. engines: {node: '>= 14.16.0'}
  828. color-convert@2.0.1:
  829. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  830. engines: {node: '>=7.0.0'}
  831. color-name@1.1.4:
  832. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  833. combined-stream@1.0.8:
  834. resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
  835. engines: {node: '>= 0.8'}
  836. concat-map@0.0.1:
  837. resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
  838. convert-source-map@2.0.0:
  839. resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
  840. copy-anything@4.0.5:
  841. resolution: {integrity: sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==}
  842. engines: {node: '>=18'}
  843. cross-spawn@7.0.6:
  844. resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
  845. engines: {node: '>= 8'}
  846. cssesc@3.0.0:
  847. resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
  848. engines: {node: '>=4'}
  849. hasBin: true
  850. csstype@3.1.3:
  851. resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
  852. debug@4.4.3:
  853. resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
  854. engines: {node: '>=6.0'}
  855. peerDependencies:
  856. supports-color: '*'
  857. peerDependenciesMeta:
  858. supports-color:
  859. optional: true
  860. deep-is@0.1.4:
  861. resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
  862. deep-pick-omit@1.2.1:
  863. resolution: {integrity: sha512-2J6Kc/m3irCeqVG42T+SaUMesaK7oGWaedGnQQK/+O0gYc+2SP5bKh/KKTE7d7SJ+GCA9UUE1GRzh6oDe0EnGw==}
  864. default-browser-id@5.0.0:
  865. resolution: {integrity: sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==}
  866. engines: {node: '>=18'}
  867. default-browser@5.2.1:
  868. resolution: {integrity: sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==}
  869. engines: {node: '>=18'}
  870. define-lazy-prop@3.0.0:
  871. resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==}
  872. engines: {node: '>=12'}
  873. defu@6.1.4:
  874. resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
  875. delayed-stream@1.0.0:
  876. resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
  877. engines: {node: '>=0.4.0'}
  878. destr@2.0.5:
  879. resolution: {integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==}
  880. detect-libc@1.0.3:
  881. resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==}
  882. engines: {node: '>=0.10'}
  883. hasBin: true
  884. dompurify@3.3.0:
  885. resolution: {integrity: sha512-r+f6MYR1gGN1eJv0TVQbhA7if/U7P87cdPl3HN5rikqaBSBxLiCb/b9O+2eG0cxz0ghyU+mU1QkbsOwERMYlWQ==}
  886. dunder-proto@1.0.1:
  887. resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
  888. engines: {node: '>= 0.4'}
  889. electron-to-chromium@1.5.240:
  890. resolution: {integrity: sha512-OBwbZjWgrCOH+g6uJsA2/7Twpas2OlepS9uvByJjR2datRDuKGYeD+nP8lBBks2qnB7bGJNHDUx7c/YLaT3QMQ==}
  891. entities@4.5.0:
  892. resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
  893. engines: {node: '>=0.12'}
  894. error-stack-parser-es@1.0.5:
  895. resolution: {integrity: sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA==}
  896. es-define-property@1.0.1:
  897. resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
  898. engines: {node: '>= 0.4'}
  899. es-errors@1.3.0:
  900. resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
  901. engines: {node: '>= 0.4'}
  902. es-object-atoms@1.1.1:
  903. resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
  904. engines: {node: '>= 0.4'}
  905. es-set-tostringtag@2.1.0:
  906. resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
  907. engines: {node: '>= 0.4'}
  908. esbuild@0.25.11:
  909. resolution: {integrity: sha512-KohQwyzrKTQmhXDW1PjCv3Tyspn9n5GcY2RTDqeORIdIJY8yKIF7sTSopFmn/wpMPW4rdPXI0UE5LJLuq3bx0Q==}
  910. engines: {node: '>=18'}
  911. hasBin: true
  912. escalade@3.2.0:
  913. resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
  914. engines: {node: '>=6'}
  915. escape-string-regexp@4.0.0:
  916. resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
  917. engines: {node: '>=10'}
  918. eslint-config-prettier@10.1.8:
  919. resolution: {integrity: sha512-82GZUjRS0p/jganf6q1rEO25VSoHH0hKPCTrgillPjdI/3bgBhAE1QzHrHTizjpRvy6pGAvKjDJtk2pF9NDq8w==}
  920. hasBin: true
  921. peerDependencies:
  922. eslint: '>=7.0.0'
  923. eslint-plugin-prettier@5.5.4:
  924. resolution: {integrity: sha512-swNtI95SToIz05YINMA6Ox5R057IMAmWZ26GqPxusAp1TZzj+IdY9tXNWWD3vkF/wEqydCONcwjTFpxybBqZsg==}
  925. engines: {node: ^14.18.0 || >=16.0.0}
  926. peerDependencies:
  927. '@types/eslint': '>=8.0.0'
  928. eslint: '>=8.0.0'
  929. eslint-config-prettier: '>= 7.0.0 <10.0.0 || >=10.1.0'
  930. prettier: '>=3.0.0'
  931. peerDependenciesMeta:
  932. '@types/eslint':
  933. optional: true
  934. eslint-config-prettier:
  935. optional: true
  936. eslint-plugin-vue@10.5.1:
  937. resolution: {integrity: sha512-SbR9ZBUFKgvWAbq3RrdCtWaW0IKm6wwUiApxf3BVTNfqUIo4IQQmreMg2iHFJJ6C/0wss3LXURBJ1OwS/MhFcQ==}
  938. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  939. peerDependencies:
  940. '@stylistic/eslint-plugin': ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0
  941. '@typescript-eslint/parser': ^7.0.0 || ^8.0.0
  942. eslint: ^8.57.0 || ^9.0.0
  943. vue-eslint-parser: ^10.0.0
  944. peerDependenciesMeta:
  945. '@stylistic/eslint-plugin':
  946. optional: true
  947. '@typescript-eslint/parser':
  948. optional: true
  949. eslint-scope@8.4.0:
  950. resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==}
  951. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  952. eslint-visitor-keys@3.4.3:
  953. resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
  954. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  955. eslint-visitor-keys@4.2.1:
  956. resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
  957. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  958. eslint@9.38.0:
  959. resolution: {integrity: sha512-t5aPOpmtJcZcz5UJyY2GbvpDlsK5E8JqRqoKtfiKE3cNh437KIqfJr3A3AKf5k64NPx6d0G3dno6XDY05PqPtw==}
  960. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  961. hasBin: true
  962. peerDependencies:
  963. jiti: '*'
  964. peerDependenciesMeta:
  965. jiti:
  966. optional: true
  967. espree@10.4.0:
  968. resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==}
  969. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  970. esquery@1.6.0:
  971. resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
  972. engines: {node: '>=0.10'}
  973. esrecurse@4.3.0:
  974. resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
  975. engines: {node: '>=4.0'}
  976. estraverse@5.3.0:
  977. resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
  978. engines: {node: '>=4.0'}
  979. estree-walker@2.0.2:
  980. resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
  981. esutils@2.0.3:
  982. resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
  983. engines: {node: '>=0.10.0'}
  984. fast-deep-equal@3.1.3:
  985. resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
  986. fast-diff@1.3.0:
  987. resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==}
  988. fast-glob@3.3.3:
  989. resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
  990. engines: {node: '>=8.6.0'}
  991. fast-json-stable-stringify@2.1.0:
  992. resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
  993. fast-levenshtein@2.0.6:
  994. resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
  995. fastq@1.19.1:
  996. resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==}
  997. fdir@6.5.0:
  998. resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
  999. engines: {node: '>=12.0.0'}
  1000. peerDependencies:
  1001. picomatch: ^3 || ^4
  1002. peerDependenciesMeta:
  1003. picomatch:
  1004. optional: true
  1005. file-entry-cache@8.0.0:
  1006. resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
  1007. engines: {node: '>=16.0.0'}
  1008. fill-range@7.1.1:
  1009. resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
  1010. engines: {node: '>=8'}
  1011. find-up@5.0.0:
  1012. resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
  1013. engines: {node: '>=10'}
  1014. flat-cache@4.0.1:
  1015. resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
  1016. engines: {node: '>=16'}
  1017. flatted@3.3.3:
  1018. resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
  1019. follow-redirects@1.15.11:
  1020. resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
  1021. engines: {node: '>=4.0'}
  1022. peerDependencies:
  1023. debug: '*'
  1024. peerDependenciesMeta:
  1025. debug:
  1026. optional: true
  1027. form-data@4.0.4:
  1028. resolution: {integrity: sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==}
  1029. engines: {node: '>= 6'}
  1030. fsevents@2.3.3:
  1031. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  1032. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  1033. os: [darwin]
  1034. function-bind@1.1.2:
  1035. resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
  1036. gensync@1.0.0-beta.2:
  1037. resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
  1038. engines: {node: '>=6.9.0'}
  1039. get-intrinsic@1.3.0:
  1040. resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
  1041. engines: {node: '>= 0.4'}
  1042. get-proto@1.0.1:
  1043. resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
  1044. engines: {node: '>= 0.4'}
  1045. glob-parent@5.1.2:
  1046. resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
  1047. engines: {node: '>= 6'}
  1048. glob-parent@6.0.2:
  1049. resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
  1050. engines: {node: '>=10.13.0'}
  1051. globals@14.0.0:
  1052. resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
  1053. engines: {node: '>=18'}
  1054. gopd@1.2.0:
  1055. resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
  1056. engines: {node: '>= 0.4'}
  1057. graphemer@1.4.0:
  1058. resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
  1059. has-flag@4.0.0:
  1060. resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
  1061. engines: {node: '>=8'}
  1062. has-symbols@1.1.0:
  1063. resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
  1064. engines: {node: '>= 0.4'}
  1065. has-tostringtag@1.0.2:
  1066. resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
  1067. engines: {node: '>= 0.4'}
  1068. hasown@2.0.2:
  1069. resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
  1070. engines: {node: '>= 0.4'}
  1071. hookable@5.5.3:
  1072. resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
  1073. ignore@5.3.2:
  1074. resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
  1075. engines: {node: '>= 4'}
  1076. ignore@7.0.5:
  1077. resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
  1078. engines: {node: '>= 4'}
  1079. immutable@5.1.4:
  1080. resolution: {integrity: sha512-p6u1bG3YSnINT5RQmx/yRZBpenIl30kVxkTLDyHLIMk0gict704Q9n+thfDI7lTRm9vXdDYutVzXhzcThxTnXA==}
  1081. import-fresh@3.3.1:
  1082. resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
  1083. engines: {node: '>=6'}
  1084. imurmurhash@0.1.4:
  1085. resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
  1086. engines: {node: '>=0.8.19'}
  1087. is-docker@3.0.0:
  1088. resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==}
  1089. engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
  1090. hasBin: true
  1091. is-extglob@2.1.1:
  1092. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  1093. engines: {node: '>=0.10.0'}
  1094. is-glob@4.0.3:
  1095. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  1096. engines: {node: '>=0.10.0'}
  1097. is-inside-container@1.0.0:
  1098. resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==}
  1099. engines: {node: '>=14.16'}
  1100. hasBin: true
  1101. is-number@7.0.0:
  1102. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  1103. engines: {node: '>=0.12.0'}
  1104. is-what@5.5.0:
  1105. resolution: {integrity: sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw==}
  1106. engines: {node: '>=18'}
  1107. is-wsl@3.1.0:
  1108. resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==}
  1109. engines: {node: '>=16'}
  1110. isexe@2.0.0:
  1111. resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
  1112. isexe@3.1.1:
  1113. resolution: {integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==}
  1114. engines: {node: '>=16'}
  1115. jiti@2.6.1:
  1116. resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==}
  1117. hasBin: true
  1118. js-tokens@4.0.0:
  1119. resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
  1120. js-yaml@4.1.0:
  1121. resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
  1122. hasBin: true
  1123. jsesc@3.1.0:
  1124. resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
  1125. engines: {node: '>=6'}
  1126. hasBin: true
  1127. json-buffer@3.0.1:
  1128. resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
  1129. json-parse-even-better-errors@4.0.0:
  1130. resolution: {integrity: sha512-lR4MXjGNgkJc7tkQ97kb2nuEMnNCyU//XYVH0MKTGcXEiSudQ5MKGKen3C5QubYy0vmq+JGitUg92uuywGEwIA==}
  1131. engines: {node: ^18.17.0 || >=20.5.0}
  1132. json-schema-traverse@0.4.1:
  1133. resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
  1134. json-stable-stringify-without-jsonify@1.0.1:
  1135. resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
  1136. json5@2.2.3:
  1137. resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
  1138. engines: {node: '>=6'}
  1139. hasBin: true
  1140. keyv@4.5.4:
  1141. resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
  1142. kolorist@1.8.0:
  1143. resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
  1144. levn@0.4.1:
  1145. resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
  1146. engines: {node: '>= 0.8.0'}
  1147. locate-path@6.0.0:
  1148. resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
  1149. engines: {node: '>=10'}
  1150. lodash-es@4.17.21:
  1151. resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==}
  1152. lodash.merge@4.6.2:
  1153. resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
  1154. lru-cache@5.1.1:
  1155. resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
  1156. magic-string@0.30.21:
  1157. resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
  1158. math-intrinsics@1.1.0:
  1159. resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
  1160. engines: {node: '>= 0.4'}
  1161. memorystream@0.3.1:
  1162. resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==}
  1163. engines: {node: '>= 0.10.0'}
  1164. merge2@1.4.1:
  1165. resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
  1166. engines: {node: '>= 8'}
  1167. micromatch@4.0.8:
  1168. resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
  1169. engines: {node: '>=8.6'}
  1170. mime-db@1.52.0:
  1171. resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
  1172. engines: {node: '>= 0.6'}
  1173. mime-types@2.1.35:
  1174. resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
  1175. engines: {node: '>= 0.6'}
  1176. minimatch@3.1.2:
  1177. resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
  1178. minimatch@9.0.5:
  1179. resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
  1180. engines: {node: '>=16 || 14 >=14.17'}
  1181. mitt@3.0.1:
  1182. resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
  1183. mrmime@2.0.1:
  1184. resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==}
  1185. engines: {node: '>=10'}
  1186. ms@2.1.3:
  1187. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  1188. muggle-string@0.4.1:
  1189. resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
  1190. nanoid@3.3.11:
  1191. resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
  1192. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  1193. hasBin: true
  1194. nanoid@5.1.6:
  1195. resolution: {integrity: sha512-c7+7RQ+dMB5dPwwCp4ee1/iV/q2P6aK1mTZcfr1BTuVlyW9hJYiMPybJCcnBlQtuSmTIWNeazm/zqNoZSSElBg==}
  1196. engines: {node: ^18 || >=20}
  1197. hasBin: true
  1198. natural-compare@1.4.0:
  1199. resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
  1200. node-addon-api@7.1.1:
  1201. resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
  1202. node-releases@2.0.26:
  1203. resolution: {integrity: sha512-S2M9YimhSjBSvYnlr5/+umAnPHE++ODwt5e2Ij6FoX45HA/s4vHdkDx1eax2pAPeAOqu4s9b7ppahsyEFdVqQA==}
  1204. normalize.css@8.0.1:
  1205. resolution: {integrity: sha512-qizSNPO93t1YUuUhP22btGOo3chcvDFqFaj2TRybP0DMxkHOCTYwp3n34fel4a31ORXy4m1Xq0Gyqpb5m33qIg==}
  1206. npm-normalize-package-bin@4.0.0:
  1207. resolution: {integrity: sha512-TZKxPvItzai9kN9H/TkmCtx/ZN/hvr3vUycjlfmH0ootY9yFBzNOpiXAdIn1Iteqsvk4lQn6B5PTrt+n6h8k/w==}
  1208. engines: {node: ^18.17.0 || >=20.5.0}
  1209. npm-run-all2@8.0.4:
  1210. resolution: {integrity: sha512-wdbB5My48XKp2ZfJUlhnLVihzeuA1hgBnqB2J9ahV77wLS+/YAJAlN8I+X3DIFIPZ3m5L7nplmlbhNiFDmXRDA==}
  1211. engines: {node: ^20.5.0 || >=22.0.0, npm: '>= 10'}
  1212. hasBin: true
  1213. nprogress@0.2.0:
  1214. resolution: {integrity: sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==}
  1215. nth-check@2.1.1:
  1216. resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
  1217. object-assign@4.1.1:
  1218. resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
  1219. engines: {node: '>=0.10.0'}
  1220. object-inspect@1.13.4:
  1221. resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
  1222. engines: {node: '>= 0.4'}
  1223. ohash@2.0.11:
  1224. resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==}
  1225. open@10.2.0:
  1226. resolution: {integrity: sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==}
  1227. engines: {node: '>=18'}
  1228. optionator@0.9.4:
  1229. resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
  1230. engines: {node: '>= 0.8.0'}
  1231. p-limit@3.1.0:
  1232. resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
  1233. engines: {node: '>=10'}
  1234. p-locate@5.0.0:
  1235. resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
  1236. engines: {node: '>=10'}
  1237. parent-module@1.0.1:
  1238. resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
  1239. engines: {node: '>=6'}
  1240. path-browserify@1.0.1:
  1241. resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
  1242. path-exists@4.0.0:
  1243. resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
  1244. engines: {node: '>=8'}
  1245. path-key@3.1.1:
  1246. resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
  1247. engines: {node: '>=8'}
  1248. pathe@2.0.3:
  1249. resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
  1250. perfect-debounce@1.0.0:
  1251. resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
  1252. perfect-debounce@2.0.0:
  1253. resolution: {integrity: sha512-fkEH/OBiKrqqI/yIgjR92lMfs2K8105zt/VT6+7eTjNwisrsh47CeIED9z58zI7DfKdH3uHAn25ziRZn3kgAow==}
  1254. picocolors@1.1.1:
  1255. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  1256. picomatch@2.3.1:
  1257. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  1258. engines: {node: '>=8.6'}
  1259. picomatch@4.0.3:
  1260. resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
  1261. engines: {node: '>=12'}
  1262. pidtree@0.6.0:
  1263. resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==}
  1264. engines: {node: '>=0.10'}
  1265. hasBin: true
  1266. pinia-plugin-persistedstate@4.5.0:
  1267. resolution: {integrity: sha512-QTkP1xJVyCdr2I2p3AKUZM84/e+IS+HktRxKGAIuDzkyaKKV48mQcYkJFVVDuvTxlI5j6X3oZObpqoVB8JnWpw==}
  1268. peerDependencies:
  1269. '@nuxt/kit': '>=3.0.0'
  1270. '@pinia/nuxt': '>=0.10.0'
  1271. pinia: '>=3.0.0'
  1272. peerDependenciesMeta:
  1273. '@nuxt/kit':
  1274. optional: true
  1275. '@pinia/nuxt':
  1276. optional: true
  1277. pinia:
  1278. optional: true
  1279. pinia@3.0.3:
  1280. resolution: {integrity: sha512-ttXO/InUULUXkMHpTdp9Fj4hLpD/2AoJdmAbAeW2yu1iy1k+pkFekQXw5VpC0/5p51IOR/jDaDRfRWRnMMsGOA==}
  1281. peerDependencies:
  1282. typescript: '>=4.4.4'
  1283. vue: ^2.7.0 || ^3.5.11
  1284. peerDependenciesMeta:
  1285. typescript:
  1286. optional: true
  1287. postcss-px-to-viewport-8-plugin@1.2.5:
  1288. resolution: {integrity: sha512-+yc69+q/euV7iKh5fGXY6C/lpepmVx2DGFHeYj5BpzIFyBBpdACDjZyrZ8AV0kCg+J0bplBv4ZA1QTzgaK0rGg==}
  1289. postcss-selector-parser@6.1.2:
  1290. resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
  1291. engines: {node: '>=4'}
  1292. postcss@8.5.6:
  1293. resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
  1294. engines: {node: ^10 || ^12 || >=14}
  1295. prelude-ls@1.2.1:
  1296. resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
  1297. engines: {node: '>= 0.8.0'}
  1298. prettier-linter-helpers@1.0.0:
  1299. resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}
  1300. engines: {node: '>=6.0.0'}
  1301. prettier@3.6.2:
  1302. resolution: {integrity: sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==}
  1303. engines: {node: '>=14'}
  1304. hasBin: true
  1305. proxy-from-env@1.1.0:
  1306. resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
  1307. punycode@2.3.1:
  1308. resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
  1309. engines: {node: '>=6'}
  1310. qs@6.14.0:
  1311. resolution: {integrity: sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==}
  1312. engines: {node: '>=0.6'}
  1313. queue-microtask@1.2.3:
  1314. resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
  1315. read-package-json-fast@4.0.0:
  1316. resolution: {integrity: sha512-qpt8EwugBWDw2cgE2W+/3oxC+KTez2uSVR8JU9Q36TXPAGCaozfQUs59v4j4GFpWTaw0i6hAZSvOmu1J0uOEUg==}
  1317. engines: {node: ^18.17.0 || >=20.5.0}
  1318. readdirp@4.1.2:
  1319. resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
  1320. engines: {node: '>= 14.18.0'}
  1321. resolve-from@4.0.0:
  1322. resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
  1323. engines: {node: '>=4'}
  1324. reusify@1.1.0:
  1325. resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
  1326. engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
  1327. rfdc@1.4.1:
  1328. resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
  1329. rollup@4.52.5:
  1330. resolution: {integrity: sha512-3GuObel8h7Kqdjt0gxkEzaifHTqLVW56Y/bjN7PSQtkKr0w3V/QYSdt6QWYtd7A1xUtYQigtdUfgj1RvWVtorw==}
  1331. engines: {node: '>=18.0.0', npm: '>=8.0.0'}
  1332. hasBin: true
  1333. run-applescript@7.1.0:
  1334. resolution: {integrity: sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==}
  1335. engines: {node: '>=18'}
  1336. run-parallel@1.2.0:
  1337. resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
  1338. sass@1.93.2:
  1339. resolution: {integrity: sha512-t+YPtOQHpGW1QWsh1CHQ5cPIr9lbbGZLZnbihP/D/qZj/yuV68m8qarcV17nvkOX81BCrvzAlq2klCQFZghyTg==}
  1340. engines: {node: '>=14.0.0'}
  1341. hasBin: true
  1342. semver@6.3.1:
  1343. resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
  1344. hasBin: true
  1345. semver@7.7.3:
  1346. resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
  1347. engines: {node: '>=10'}
  1348. hasBin: true
  1349. shebang-command@2.0.0:
  1350. resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
  1351. engines: {node: '>=8'}
  1352. shebang-regex@3.0.0:
  1353. resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
  1354. engines: {node: '>=8'}
  1355. shell-quote@1.8.3:
  1356. resolution: {integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==}
  1357. engines: {node: '>= 0.4'}
  1358. side-channel-list@1.0.0:
  1359. resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
  1360. engines: {node: '>= 0.4'}
  1361. side-channel-map@1.0.1:
  1362. resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
  1363. engines: {node: '>= 0.4'}
  1364. side-channel-weakmap@1.0.2:
  1365. resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
  1366. engines: {node: '>= 0.4'}
  1367. side-channel@1.1.0:
  1368. resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
  1369. engines: {node: '>= 0.4'}
  1370. sirv@3.0.2:
  1371. resolution: {integrity: sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==}
  1372. engines: {node: '>=18'}
  1373. source-map-js@1.2.1:
  1374. resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  1375. engines: {node: '>=0.10.0'}
  1376. speakingurl@14.0.1:
  1377. resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==}
  1378. engines: {node: '>=0.10.0'}
  1379. strip-json-comments@3.1.1:
  1380. resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
  1381. engines: {node: '>=8'}
  1382. superjson@2.2.3:
  1383. resolution: {integrity: sha512-ay3d+LW/S6yppKoTz3Bq4mG0xrS5bFwfWEBmQfbC7lt5wmtk+Obq0TxVuA9eYRirBTQb1K3eEpBRHMQEo0WyVw==}
  1384. engines: {node: '>=16'}
  1385. supports-color@7.2.0:
  1386. resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
  1387. engines: {node: '>=8'}
  1388. synckit@0.11.11:
  1389. resolution: {integrity: sha512-MeQTA1r0litLUf0Rp/iisCaL8761lKAZHaimlbGK4j0HysC4PLfqygQj9srcs0m2RdtDYnF8UuYyKpbjHYp7Jw==}
  1390. engines: {node: ^14.18.0 || >=16.0.0}
  1391. tinyglobby@0.2.15:
  1392. resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
  1393. engines: {node: '>=12.0.0'}
  1394. to-regex-range@5.0.1:
  1395. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  1396. engines: {node: '>=8.0'}
  1397. totalist@3.0.1:
  1398. resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
  1399. engines: {node: '>=6'}
  1400. ts-api-utils@2.1.0:
  1401. resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==}
  1402. engines: {node: '>=18.12'}
  1403. peerDependencies:
  1404. typescript: '>=4.8.4'
  1405. type-check@0.4.0:
  1406. resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
  1407. engines: {node: '>= 0.8.0'}
  1408. typescript-eslint@8.46.2:
  1409. resolution: {integrity: sha512-vbw8bOmiuYNdzzV3lsiWv6sRwjyuKJMQqWulBOU7M0RrxedXledX8G8kBbQeiOYDnTfiXz0Y4081E1QMNB6iQg==}
  1410. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1411. peerDependencies:
  1412. eslint: ^8.57.0 || ^9.0.0
  1413. typescript: '>=4.8.4 <6.0.0'
  1414. typescript@5.9.3:
  1415. resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
  1416. engines: {node: '>=14.17'}
  1417. hasBin: true
  1418. undici-types@6.21.0:
  1419. resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
  1420. unplugin-utils@0.3.1:
  1421. resolution: {integrity: sha512-5lWVjgi6vuHhJ526bI4nlCOmkCIF3nnfXkCMDeMJrtdvxTs6ZFCM8oNufGTsDbKv/tJ/xj8RpvXjRuPBZJuJog==}
  1422. engines: {node: '>=20.19.0'}
  1423. update-browserslist-db@1.1.4:
  1424. resolution: {integrity: sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==}
  1425. hasBin: true
  1426. peerDependencies:
  1427. browserslist: '>= 4.21.0'
  1428. uri-js@4.4.1:
  1429. resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
  1430. util-deprecate@1.0.2:
  1431. resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
  1432. v-viewer@3.0.22:
  1433. resolution: {integrity: sha512-uYyP5FPT4K/Sd5D1mhB2HMVV8jnf6zYy2HD1PHCNAO6s2Iway+Wls60pwh7y4F3e2Nlc9549Pvy2HXaq8PKrAg==}
  1434. peerDependencies:
  1435. viewerjs: ^1.11.0
  1436. vue: ^3.0.0
  1437. vant@4.9.21:
  1438. resolution: {integrity: sha512-hXUoZMrLLjykimFRLDlGNd+K2iYSRh9YwLMKnsVdVZ+9inUKxpqnjhOqlZwocbnYkvJlS+febf9u9aJpDol4Pw==}
  1439. peerDependencies:
  1440. vue: ^3.0.0
  1441. viewerjs@1.11.7:
  1442. resolution: {integrity: sha512-0JuVqOmL5v1jmEAlG5EBDR3XquxY8DWFQbFMprOXgaBB0F7Q/X9xWdEaQc59D8xzwkdUgXEMSSknTpriq95igg==}
  1443. vite-dev-rpc@1.1.0:
  1444. resolution: {integrity: sha512-pKXZlgoXGoE8sEKiKJSng4hI1sQ4wi5YT24FCrwrLt6opmkjlqPPVmiPWWJn8M8byMxRGzp1CrFuqQs4M/Z39A==}
  1445. peerDependencies:
  1446. vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.1 || ^7.0.0-0
  1447. vite-hot-client@2.1.0:
  1448. resolution: {integrity: sha512-7SpgZmU7R+dDnSmvXE1mfDtnHLHQSisdySVR7lO8ceAXvM0otZeuQQ6C8LrS5d/aYyP/QZ0hI0L+dIPrm4YlFQ==}
  1449. peerDependencies:
  1450. vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0
  1451. vite-plugin-inspect@11.3.3:
  1452. resolution: {integrity: sha512-u2eV5La99oHoYPHE6UvbwgEqKKOQGz86wMg40CCosP6q8BkB6e5xPneZfYagK4ojPJSj5anHCrnvC20DpwVdRA==}
  1453. engines: {node: '>=14'}
  1454. peerDependencies:
  1455. '@nuxt/kit': '*'
  1456. vite: ^6.0.0 || ^7.0.0-0
  1457. peerDependenciesMeta:
  1458. '@nuxt/kit':
  1459. optional: true
  1460. vite-plugin-vue-devtools@8.0.3:
  1461. resolution: {integrity: sha512-yIi3u31xUi28HcLlTpV0BvSLQHgZ2dA8Zqa59kWfIeMdHqbsunt6TCjq4wCNfOcGSju+E7qyHyI09EjRRFMbuQ==}
  1462. engines: {node: '>=v14.21.3'}
  1463. peerDependencies:
  1464. vite: ^6.0.0 || ^7.0.0-0
  1465. vite-plugin-vue-inspector@5.3.2:
  1466. resolution: {integrity: sha512-YvEKooQcSiBTAs0DoYLfefNja9bLgkFM7NI2b07bE2SruuvX0MEa9cMaxjKVMkeCp5Nz9FRIdcN1rOdFVBeL6Q==}
  1467. peerDependencies:
  1468. vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0
  1469. vite@7.1.12:
  1470. resolution: {integrity: sha512-ZWyE8YXEXqJrrSLvYgrRP7p62OziLW7xI5HYGWFzOvupfAlrLvURSzv/FyGyy0eidogEM3ujU+kUG1zuHgb6Ug==}
  1471. engines: {node: ^20.19.0 || >=22.12.0}
  1472. hasBin: true
  1473. peerDependencies:
  1474. '@types/node': ^20.19.0 || >=22.12.0
  1475. jiti: '>=1.21.0'
  1476. less: ^4.0.0
  1477. lightningcss: ^1.21.0
  1478. sass: ^1.70.0
  1479. sass-embedded: ^1.70.0
  1480. stylus: '>=0.54.8'
  1481. sugarss: ^5.0.0
  1482. terser: ^5.16.0
  1483. tsx: ^4.8.1
  1484. yaml: ^2.4.2
  1485. peerDependenciesMeta:
  1486. '@types/node':
  1487. optional: true
  1488. jiti:
  1489. optional: true
  1490. less:
  1491. optional: true
  1492. lightningcss:
  1493. optional: true
  1494. sass:
  1495. optional: true
  1496. sass-embedded:
  1497. optional: true
  1498. stylus:
  1499. optional: true
  1500. sugarss:
  1501. optional: true
  1502. terser:
  1503. optional: true
  1504. tsx:
  1505. optional: true
  1506. yaml:
  1507. optional: true
  1508. vscode-uri@3.1.0:
  1509. resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==}
  1510. vue-dompurify-html@5.3.0:
  1511. resolution: {integrity: sha512-HJQGBHbfSPcb6Mu97McdKbX7TqRHZa6Ji8OCpCNyuHca5QvQZ8IiuwghFPSO8OkSQfqXPNPKFMZdCOrnGGmOSQ==}
  1512. peerDependencies:
  1513. vue: ^3.4.36
  1514. vue-eslint-parser@10.2.0:
  1515. resolution: {integrity: sha512-CydUvFOQKD928UzZhTp4pr2vWz1L+H99t7Pkln2QSPdvmURT0MoC4wUccfCnuEaihNsu9aYYyk+bep8rlfkUXw==}
  1516. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1517. peerDependencies:
  1518. eslint: ^8.57.0 || ^9.0.0
  1519. vue-router@4.6.3:
  1520. resolution: {integrity: sha512-ARBedLm9YlbvQomnmq91Os7ck6efydTSpRP3nuOKCvgJOHNrhRoJDSKtee8kcL1Vf7nz6U+PMBL+hTvR3bTVQg==}
  1521. peerDependencies:
  1522. vue: ^3.5.0
  1523. vue-tsc@3.1.1:
  1524. resolution: {integrity: sha512-fyixKxFniOVgn+L/4+g8zCG6dflLLt01Agz9jl3TO45Bgk87NZJRmJVPsiK+ouq3LB91jJCbOV+pDkzYTxbI7A==}
  1525. hasBin: true
  1526. peerDependencies:
  1527. typescript: '>=5.0.0'
  1528. vue@3.5.22:
  1529. resolution: {integrity: sha512-toaZjQ3a/G/mYaLSbV+QsQhIdMo9x5rrqIpYRObsJ6T/J+RyCSFwN2LHNVH9v8uIcljDNa3QzPVdv3Y6b9hAJQ==}
  1530. peerDependencies:
  1531. typescript: '*'
  1532. peerDependenciesMeta:
  1533. typescript:
  1534. optional: true
  1535. which@2.0.2:
  1536. resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
  1537. engines: {node: '>= 8'}
  1538. hasBin: true
  1539. which@5.0.0:
  1540. resolution: {integrity: sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==}
  1541. engines: {node: ^18.17.0 || >=20.5.0}
  1542. hasBin: true
  1543. word-wrap@1.2.5:
  1544. resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
  1545. engines: {node: '>=0.10.0'}
  1546. wsl-utils@0.1.0:
  1547. resolution: {integrity: sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==}
  1548. engines: {node: '>=18'}
  1549. xml-name-validator@4.0.0:
  1550. resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}
  1551. engines: {node: '>=12'}
  1552. yallist@3.1.1:
  1553. resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
  1554. yocto-queue@0.1.0:
  1555. resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
  1556. engines: {node: '>=10'}
  1557. snapshots:
  1558. '@babel/code-frame@7.27.1':
  1559. dependencies:
  1560. '@babel/helper-validator-identifier': 7.28.5
  1561. js-tokens: 4.0.0
  1562. picocolors: 1.1.1
  1563. '@babel/compat-data@7.28.5': {}
  1564. '@babel/core@7.28.5':
  1565. dependencies:
  1566. '@babel/code-frame': 7.27.1
  1567. '@babel/generator': 7.28.5
  1568. '@babel/helper-compilation-targets': 7.27.2
  1569. '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.5)
  1570. '@babel/helpers': 7.28.4
  1571. '@babel/parser': 7.28.5
  1572. '@babel/template': 7.27.2
  1573. '@babel/traverse': 7.28.5
  1574. '@babel/types': 7.28.5
  1575. '@jridgewell/remapping': 2.3.5
  1576. convert-source-map: 2.0.0
  1577. debug: 4.4.3
  1578. gensync: 1.0.0-beta.2
  1579. json5: 2.2.3
  1580. semver: 6.3.1
  1581. transitivePeerDependencies:
  1582. - supports-color
  1583. '@babel/generator@7.28.5':
  1584. dependencies:
  1585. '@babel/parser': 7.28.5
  1586. '@babel/types': 7.28.5
  1587. '@jridgewell/gen-mapping': 0.3.13
  1588. '@jridgewell/trace-mapping': 0.3.31
  1589. jsesc: 3.1.0
  1590. '@babel/helper-annotate-as-pure@7.27.3':
  1591. dependencies:
  1592. '@babel/types': 7.28.5
  1593. '@babel/helper-compilation-targets@7.27.2':
  1594. dependencies:
  1595. '@babel/compat-data': 7.28.5
  1596. '@babel/helper-validator-option': 7.27.1
  1597. browserslist: 4.27.0
  1598. lru-cache: 5.1.1
  1599. semver: 6.3.1
  1600. '@babel/helper-create-class-features-plugin@7.28.5(@babel/core@7.28.5)':
  1601. dependencies:
  1602. '@babel/core': 7.28.5
  1603. '@babel/helper-annotate-as-pure': 7.27.3
  1604. '@babel/helper-member-expression-to-functions': 7.28.5
  1605. '@babel/helper-optimise-call-expression': 7.27.1
  1606. '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.5)
  1607. '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
  1608. '@babel/traverse': 7.28.5
  1609. semver: 6.3.1
  1610. transitivePeerDependencies:
  1611. - supports-color
  1612. '@babel/helper-globals@7.28.0': {}
  1613. '@babel/helper-member-expression-to-functions@7.28.5':
  1614. dependencies:
  1615. '@babel/traverse': 7.28.5
  1616. '@babel/types': 7.28.5
  1617. transitivePeerDependencies:
  1618. - supports-color
  1619. '@babel/helper-module-imports@7.27.1':
  1620. dependencies:
  1621. '@babel/traverse': 7.28.5
  1622. '@babel/types': 7.28.5
  1623. transitivePeerDependencies:
  1624. - supports-color
  1625. '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.5)':
  1626. dependencies:
  1627. '@babel/core': 7.28.5
  1628. '@babel/helper-module-imports': 7.27.1
  1629. '@babel/helper-validator-identifier': 7.28.5
  1630. '@babel/traverse': 7.28.5
  1631. transitivePeerDependencies:
  1632. - supports-color
  1633. '@babel/helper-optimise-call-expression@7.27.1':
  1634. dependencies:
  1635. '@babel/types': 7.28.5
  1636. '@babel/helper-plugin-utils@7.27.1': {}
  1637. '@babel/helper-replace-supers@7.27.1(@babel/core@7.28.5)':
  1638. dependencies:
  1639. '@babel/core': 7.28.5
  1640. '@babel/helper-member-expression-to-functions': 7.28.5
  1641. '@babel/helper-optimise-call-expression': 7.27.1
  1642. '@babel/traverse': 7.28.5
  1643. transitivePeerDependencies:
  1644. - supports-color
  1645. '@babel/helper-skip-transparent-expression-wrappers@7.27.1':
  1646. dependencies:
  1647. '@babel/traverse': 7.28.5
  1648. '@babel/types': 7.28.5
  1649. transitivePeerDependencies:
  1650. - supports-color
  1651. '@babel/helper-string-parser@7.27.1': {}
  1652. '@babel/helper-validator-identifier@7.28.5': {}
  1653. '@babel/helper-validator-option@7.27.1': {}
  1654. '@babel/helpers@7.28.4':
  1655. dependencies:
  1656. '@babel/template': 7.27.2
  1657. '@babel/types': 7.28.5
  1658. '@babel/parser@7.28.5':
  1659. dependencies:
  1660. '@babel/types': 7.28.5
  1661. '@babel/plugin-proposal-decorators@7.28.0(@babel/core@7.28.5)':
  1662. dependencies:
  1663. '@babel/core': 7.28.5
  1664. '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5)
  1665. '@babel/helper-plugin-utils': 7.27.1
  1666. '@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.28.5)
  1667. transitivePeerDependencies:
  1668. - supports-color
  1669. '@babel/plugin-syntax-decorators@7.27.1(@babel/core@7.28.5)':
  1670. dependencies:
  1671. '@babel/core': 7.28.5
  1672. '@babel/helper-plugin-utils': 7.27.1
  1673. '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.5)':
  1674. dependencies:
  1675. '@babel/core': 7.28.5
  1676. '@babel/helper-plugin-utils': 7.27.1
  1677. '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.28.5)':
  1678. dependencies:
  1679. '@babel/core': 7.28.5
  1680. '@babel/helper-plugin-utils': 7.27.1
  1681. '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.5)':
  1682. dependencies:
  1683. '@babel/core': 7.28.5
  1684. '@babel/helper-plugin-utils': 7.27.1
  1685. '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.5)':
  1686. dependencies:
  1687. '@babel/core': 7.28.5
  1688. '@babel/helper-plugin-utils': 7.27.1
  1689. '@babel/plugin-transform-typescript@7.28.5(@babel/core@7.28.5)':
  1690. dependencies:
  1691. '@babel/core': 7.28.5
  1692. '@babel/helper-annotate-as-pure': 7.27.3
  1693. '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5)
  1694. '@babel/helper-plugin-utils': 7.27.1
  1695. '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
  1696. '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.5)
  1697. transitivePeerDependencies:
  1698. - supports-color
  1699. '@babel/template@7.27.2':
  1700. dependencies:
  1701. '@babel/code-frame': 7.27.1
  1702. '@babel/parser': 7.28.5
  1703. '@babel/types': 7.28.5
  1704. '@babel/traverse@7.28.5':
  1705. dependencies:
  1706. '@babel/code-frame': 7.27.1
  1707. '@babel/generator': 7.28.5
  1708. '@babel/helper-globals': 7.28.0
  1709. '@babel/parser': 7.28.5
  1710. '@babel/template': 7.27.2
  1711. '@babel/types': 7.28.5
  1712. debug: 4.4.3
  1713. transitivePeerDependencies:
  1714. - supports-color
  1715. '@babel/types@7.28.5':
  1716. dependencies:
  1717. '@babel/helper-string-parser': 7.27.1
  1718. '@babel/helper-validator-identifier': 7.28.5
  1719. '@esbuild/aix-ppc64@0.25.11':
  1720. optional: true
  1721. '@esbuild/android-arm64@0.25.11':
  1722. optional: true
  1723. '@esbuild/android-arm@0.25.11':
  1724. optional: true
  1725. '@esbuild/android-x64@0.25.11':
  1726. optional: true
  1727. '@esbuild/darwin-arm64@0.25.11':
  1728. optional: true
  1729. '@esbuild/darwin-x64@0.25.11':
  1730. optional: true
  1731. '@esbuild/freebsd-arm64@0.25.11':
  1732. optional: true
  1733. '@esbuild/freebsd-x64@0.25.11':
  1734. optional: true
  1735. '@esbuild/linux-arm64@0.25.11':
  1736. optional: true
  1737. '@esbuild/linux-arm@0.25.11':
  1738. optional: true
  1739. '@esbuild/linux-ia32@0.25.11':
  1740. optional: true
  1741. '@esbuild/linux-loong64@0.25.11':
  1742. optional: true
  1743. '@esbuild/linux-mips64el@0.25.11':
  1744. optional: true
  1745. '@esbuild/linux-ppc64@0.25.11':
  1746. optional: true
  1747. '@esbuild/linux-riscv64@0.25.11':
  1748. optional: true
  1749. '@esbuild/linux-s390x@0.25.11':
  1750. optional: true
  1751. '@esbuild/linux-x64@0.25.11':
  1752. optional: true
  1753. '@esbuild/netbsd-arm64@0.25.11':
  1754. optional: true
  1755. '@esbuild/netbsd-x64@0.25.11':
  1756. optional: true
  1757. '@esbuild/openbsd-arm64@0.25.11':
  1758. optional: true
  1759. '@esbuild/openbsd-x64@0.25.11':
  1760. optional: true
  1761. '@esbuild/openharmony-arm64@0.25.11':
  1762. optional: true
  1763. '@esbuild/sunos-x64@0.25.11':
  1764. optional: true
  1765. '@esbuild/win32-arm64@0.25.11':
  1766. optional: true
  1767. '@esbuild/win32-ia32@0.25.11':
  1768. optional: true
  1769. '@esbuild/win32-x64@0.25.11':
  1770. optional: true
  1771. '@eslint-community/eslint-utils@4.9.0(eslint@9.38.0(jiti@2.6.1))':
  1772. dependencies:
  1773. eslint: 9.38.0(jiti@2.6.1)
  1774. eslint-visitor-keys: 3.4.3
  1775. '@eslint-community/regexpp@4.12.2': {}
  1776. '@eslint/config-array@0.21.1':
  1777. dependencies:
  1778. '@eslint/object-schema': 2.1.7
  1779. debug: 4.4.3
  1780. minimatch: 3.1.2
  1781. transitivePeerDependencies:
  1782. - supports-color
  1783. '@eslint/config-helpers@0.4.1':
  1784. dependencies:
  1785. '@eslint/core': 0.16.0
  1786. '@eslint/core@0.16.0':
  1787. dependencies:
  1788. '@types/json-schema': 7.0.15
  1789. '@eslint/eslintrc@3.3.1':
  1790. dependencies:
  1791. ajv: 6.12.6
  1792. debug: 4.4.3
  1793. espree: 10.4.0
  1794. globals: 14.0.0
  1795. ignore: 5.3.2
  1796. import-fresh: 3.3.1
  1797. js-yaml: 4.1.0
  1798. minimatch: 3.1.2
  1799. strip-json-comments: 3.1.1
  1800. transitivePeerDependencies:
  1801. - supports-color
  1802. '@eslint/js@9.38.0': {}
  1803. '@eslint/object-schema@2.1.7': {}
  1804. '@eslint/plugin-kit@0.4.0':
  1805. dependencies:
  1806. '@eslint/core': 0.16.0
  1807. levn: 0.4.1
  1808. '@humanfs/core@0.19.1': {}
  1809. '@humanfs/node@0.16.7':
  1810. dependencies:
  1811. '@humanfs/core': 0.19.1
  1812. '@humanwhocodes/retry': 0.4.3
  1813. '@humanwhocodes/module-importer@1.0.1': {}
  1814. '@humanwhocodes/retry@0.4.3': {}
  1815. '@jridgewell/gen-mapping@0.3.13':
  1816. dependencies:
  1817. '@jridgewell/sourcemap-codec': 1.5.5
  1818. '@jridgewell/trace-mapping': 0.3.31
  1819. '@jridgewell/remapping@2.3.5':
  1820. dependencies:
  1821. '@jridgewell/gen-mapping': 0.3.13
  1822. '@jridgewell/trace-mapping': 0.3.31
  1823. '@jridgewell/resolve-uri@3.1.2': {}
  1824. '@jridgewell/sourcemap-codec@1.5.5': {}
  1825. '@jridgewell/trace-mapping@0.3.31':
  1826. dependencies:
  1827. '@jridgewell/resolve-uri': 3.1.2
  1828. '@jridgewell/sourcemap-codec': 1.5.5
  1829. '@nodelib/fs.scandir@2.1.5':
  1830. dependencies:
  1831. '@nodelib/fs.stat': 2.0.5
  1832. run-parallel: 1.2.0
  1833. '@nodelib/fs.stat@2.0.5': {}
  1834. '@nodelib/fs.walk@1.2.8':
  1835. dependencies:
  1836. '@nodelib/fs.scandir': 2.1.5
  1837. fastq: 1.19.1
  1838. '@parcel/watcher-android-arm64@2.5.1':
  1839. optional: true
  1840. '@parcel/watcher-darwin-arm64@2.5.1':
  1841. optional: true
  1842. '@parcel/watcher-darwin-x64@2.5.1':
  1843. optional: true
  1844. '@parcel/watcher-freebsd-x64@2.5.1':
  1845. optional: true
  1846. '@parcel/watcher-linux-arm-glibc@2.5.1':
  1847. optional: true
  1848. '@parcel/watcher-linux-arm-musl@2.5.1':
  1849. optional: true
  1850. '@parcel/watcher-linux-arm64-glibc@2.5.1':
  1851. optional: true
  1852. '@parcel/watcher-linux-arm64-musl@2.5.1':
  1853. optional: true
  1854. '@parcel/watcher-linux-x64-glibc@2.5.1':
  1855. optional: true
  1856. '@parcel/watcher-linux-x64-musl@2.5.1':
  1857. optional: true
  1858. '@parcel/watcher-win32-arm64@2.5.1':
  1859. optional: true
  1860. '@parcel/watcher-win32-ia32@2.5.1':
  1861. optional: true
  1862. '@parcel/watcher-win32-x64@2.5.1':
  1863. optional: true
  1864. '@parcel/watcher@2.5.1':
  1865. dependencies:
  1866. detect-libc: 1.0.3
  1867. is-glob: 4.0.3
  1868. micromatch: 4.0.8
  1869. node-addon-api: 7.1.1
  1870. optionalDependencies:
  1871. '@parcel/watcher-android-arm64': 2.5.1
  1872. '@parcel/watcher-darwin-arm64': 2.5.1
  1873. '@parcel/watcher-darwin-x64': 2.5.1
  1874. '@parcel/watcher-freebsd-x64': 2.5.1
  1875. '@parcel/watcher-linux-arm-glibc': 2.5.1
  1876. '@parcel/watcher-linux-arm-musl': 2.5.1
  1877. '@parcel/watcher-linux-arm64-glibc': 2.5.1
  1878. '@parcel/watcher-linux-arm64-musl': 2.5.1
  1879. '@parcel/watcher-linux-x64-glibc': 2.5.1
  1880. '@parcel/watcher-linux-x64-musl': 2.5.1
  1881. '@parcel/watcher-win32-arm64': 2.5.1
  1882. '@parcel/watcher-win32-ia32': 2.5.1
  1883. '@parcel/watcher-win32-x64': 2.5.1
  1884. optional: true
  1885. '@pkgr/core@0.2.9': {}
  1886. '@polka/url@1.0.0-next.29': {}
  1887. '@rolldown/pluginutils@1.0.0-beta.29': {}
  1888. '@rollup/rollup-android-arm-eabi@4.52.5':
  1889. optional: true
  1890. '@rollup/rollup-android-arm64@4.52.5':
  1891. optional: true
  1892. '@rollup/rollup-darwin-arm64@4.52.5':
  1893. optional: true
  1894. '@rollup/rollup-darwin-x64@4.52.5':
  1895. optional: true
  1896. '@rollup/rollup-freebsd-arm64@4.52.5':
  1897. optional: true
  1898. '@rollup/rollup-freebsd-x64@4.52.5':
  1899. optional: true
  1900. '@rollup/rollup-linux-arm-gnueabihf@4.52.5':
  1901. optional: true
  1902. '@rollup/rollup-linux-arm-musleabihf@4.52.5':
  1903. optional: true
  1904. '@rollup/rollup-linux-arm64-gnu@4.52.5':
  1905. optional: true
  1906. '@rollup/rollup-linux-arm64-musl@4.52.5':
  1907. optional: true
  1908. '@rollup/rollup-linux-loong64-gnu@4.52.5':
  1909. optional: true
  1910. '@rollup/rollup-linux-ppc64-gnu@4.52.5':
  1911. optional: true
  1912. '@rollup/rollup-linux-riscv64-gnu@4.52.5':
  1913. optional: true
  1914. '@rollup/rollup-linux-riscv64-musl@4.52.5':
  1915. optional: true
  1916. '@rollup/rollup-linux-s390x-gnu@4.52.5':
  1917. optional: true
  1918. '@rollup/rollup-linux-x64-gnu@4.52.5':
  1919. optional: true
  1920. '@rollup/rollup-linux-x64-musl@4.52.5':
  1921. optional: true
  1922. '@rollup/rollup-openharmony-arm64@4.52.5':
  1923. optional: true
  1924. '@rollup/rollup-win32-arm64-msvc@4.52.5':
  1925. optional: true
  1926. '@rollup/rollup-win32-ia32-msvc@4.52.5':
  1927. optional: true
  1928. '@rollup/rollup-win32-x64-gnu@4.52.5':
  1929. optional: true
  1930. '@rollup/rollup-win32-x64-msvc@4.52.5':
  1931. optional: true
  1932. '@tsconfig/node22@22.0.2': {}
  1933. '@types/estree@1.0.8': {}
  1934. '@types/json-schema@7.0.15': {}
  1935. '@types/node@22.18.12':
  1936. dependencies:
  1937. undici-types: 6.21.0
  1938. '@types/qs@6.14.0': {}
  1939. '@types/trusted-types@2.0.7':
  1940. optional: true
  1941. '@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)':
  1942. dependencies:
  1943. '@eslint-community/regexpp': 4.12.2
  1944. '@typescript-eslint/parser': 8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
  1945. '@typescript-eslint/scope-manager': 8.46.2
  1946. '@typescript-eslint/type-utils': 8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
  1947. '@typescript-eslint/utils': 8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
  1948. '@typescript-eslint/visitor-keys': 8.46.2
  1949. eslint: 9.38.0(jiti@2.6.1)
  1950. graphemer: 1.4.0
  1951. ignore: 7.0.5
  1952. natural-compare: 1.4.0
  1953. ts-api-utils: 2.1.0(typescript@5.9.3)
  1954. typescript: 5.9.3
  1955. transitivePeerDependencies:
  1956. - supports-color
  1957. '@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)':
  1958. dependencies:
  1959. '@typescript-eslint/scope-manager': 8.46.2
  1960. '@typescript-eslint/types': 8.46.2
  1961. '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.9.3)
  1962. '@typescript-eslint/visitor-keys': 8.46.2
  1963. debug: 4.4.3
  1964. eslint: 9.38.0(jiti@2.6.1)
  1965. typescript: 5.9.3
  1966. transitivePeerDependencies:
  1967. - supports-color
  1968. '@typescript-eslint/project-service@8.46.2(typescript@5.9.3)':
  1969. dependencies:
  1970. '@typescript-eslint/tsconfig-utils': 8.46.2(typescript@5.9.3)
  1971. '@typescript-eslint/types': 8.46.2
  1972. debug: 4.4.3
  1973. typescript: 5.9.3
  1974. transitivePeerDependencies:
  1975. - supports-color
  1976. '@typescript-eslint/scope-manager@8.46.2':
  1977. dependencies:
  1978. '@typescript-eslint/types': 8.46.2
  1979. '@typescript-eslint/visitor-keys': 8.46.2
  1980. '@typescript-eslint/tsconfig-utils@8.46.2(typescript@5.9.3)':
  1981. dependencies:
  1982. typescript: 5.9.3
  1983. '@typescript-eslint/type-utils@8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)':
  1984. dependencies:
  1985. '@typescript-eslint/types': 8.46.2
  1986. '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.9.3)
  1987. '@typescript-eslint/utils': 8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
  1988. debug: 4.4.3
  1989. eslint: 9.38.0(jiti@2.6.1)
  1990. ts-api-utils: 2.1.0(typescript@5.9.3)
  1991. typescript: 5.9.3
  1992. transitivePeerDependencies:
  1993. - supports-color
  1994. '@typescript-eslint/types@8.46.2': {}
  1995. '@typescript-eslint/typescript-estree@8.46.2(typescript@5.9.3)':
  1996. dependencies:
  1997. '@typescript-eslint/project-service': 8.46.2(typescript@5.9.3)
  1998. '@typescript-eslint/tsconfig-utils': 8.46.2(typescript@5.9.3)
  1999. '@typescript-eslint/types': 8.46.2
  2000. '@typescript-eslint/visitor-keys': 8.46.2
  2001. debug: 4.4.3
  2002. fast-glob: 3.3.3
  2003. is-glob: 4.0.3
  2004. minimatch: 9.0.5
  2005. semver: 7.7.3
  2006. ts-api-utils: 2.1.0(typescript@5.9.3)
  2007. typescript: 5.9.3
  2008. transitivePeerDependencies:
  2009. - supports-color
  2010. '@typescript-eslint/utils@8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)':
  2011. dependencies:
  2012. '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.6.1))
  2013. '@typescript-eslint/scope-manager': 8.46.2
  2014. '@typescript-eslint/types': 8.46.2
  2015. '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.9.3)
  2016. eslint: 9.38.0(jiti@2.6.1)
  2017. typescript: 5.9.3
  2018. transitivePeerDependencies:
  2019. - supports-color
  2020. '@typescript-eslint/visitor-keys@8.46.2':
  2021. dependencies:
  2022. '@typescript-eslint/types': 8.46.2
  2023. eslint-visitor-keys: 4.2.1
  2024. '@vant/area-data@2.2.0': {}
  2025. '@vant/popperjs@1.3.0': {}
  2026. '@vant/use@1.6.0(vue@3.5.22(typescript@5.9.3))':
  2027. dependencies:
  2028. vue: 3.5.22(typescript@5.9.3)
  2029. '@vitejs/plugin-vue@6.0.1(vite@7.1.12(@types/node@22.18.12)(jiti@2.6.1)(sass@1.93.2))(vue@3.5.22(typescript@5.9.3))':
  2030. dependencies:
  2031. '@rolldown/pluginutils': 1.0.0-beta.29
  2032. vite: 7.1.12(@types/node@22.18.12)(jiti@2.6.1)(sass@1.93.2)
  2033. vue: 3.5.22(typescript@5.9.3)
  2034. '@volar/language-core@2.4.23':
  2035. dependencies:
  2036. '@volar/source-map': 2.4.23
  2037. '@volar/source-map@2.4.23': {}
  2038. '@volar/typescript@2.4.23':
  2039. dependencies:
  2040. '@volar/language-core': 2.4.23
  2041. path-browserify: 1.0.1
  2042. vscode-uri: 3.1.0
  2043. '@vue/babel-helper-vue-transform-on@1.5.0': {}
  2044. '@vue/babel-plugin-jsx@1.5.0(@babel/core@7.28.5)':
  2045. dependencies:
  2046. '@babel/helper-module-imports': 7.27.1
  2047. '@babel/helper-plugin-utils': 7.27.1
  2048. '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.5)
  2049. '@babel/template': 7.27.2
  2050. '@babel/traverse': 7.28.5
  2051. '@babel/types': 7.28.5
  2052. '@vue/babel-helper-vue-transform-on': 1.5.0
  2053. '@vue/babel-plugin-resolve-type': 1.5.0(@babel/core@7.28.5)
  2054. '@vue/shared': 3.5.22
  2055. optionalDependencies:
  2056. '@babel/core': 7.28.5
  2057. transitivePeerDependencies:
  2058. - supports-color
  2059. '@vue/babel-plugin-resolve-type@1.5.0(@babel/core@7.28.5)':
  2060. dependencies:
  2061. '@babel/code-frame': 7.27.1
  2062. '@babel/core': 7.28.5
  2063. '@babel/helper-module-imports': 7.27.1
  2064. '@babel/helper-plugin-utils': 7.27.1
  2065. '@babel/parser': 7.28.5
  2066. '@vue/compiler-sfc': 3.5.22
  2067. transitivePeerDependencies:
  2068. - supports-color
  2069. '@vue/compiler-core@3.5.22':
  2070. dependencies:
  2071. '@babel/parser': 7.28.5
  2072. '@vue/shared': 3.5.22
  2073. entities: 4.5.0
  2074. estree-walker: 2.0.2
  2075. source-map-js: 1.2.1
  2076. '@vue/compiler-dom@3.5.22':
  2077. dependencies:
  2078. '@vue/compiler-core': 3.5.22
  2079. '@vue/shared': 3.5.22
  2080. '@vue/compiler-sfc@3.5.22':
  2081. dependencies:
  2082. '@babel/parser': 7.28.5
  2083. '@vue/compiler-core': 3.5.22
  2084. '@vue/compiler-dom': 3.5.22
  2085. '@vue/compiler-ssr': 3.5.22
  2086. '@vue/shared': 3.5.22
  2087. estree-walker: 2.0.2
  2088. magic-string: 0.30.21
  2089. postcss: 8.5.6
  2090. source-map-js: 1.2.1
  2091. '@vue/compiler-ssr@3.5.22':
  2092. dependencies:
  2093. '@vue/compiler-dom': 3.5.22
  2094. '@vue/shared': 3.5.22
  2095. '@vue/devtools-api@6.6.4': {}
  2096. '@vue/devtools-api@7.7.7':
  2097. dependencies:
  2098. '@vue/devtools-kit': 7.7.7
  2099. '@vue/devtools-core@8.0.3(vite@7.1.12(@types/node@22.18.12)(jiti@2.6.1)(sass@1.93.2))(vue@3.5.22(typescript@5.9.3))':
  2100. dependencies:
  2101. '@vue/devtools-kit': 8.0.3
  2102. '@vue/devtools-shared': 8.0.3
  2103. mitt: 3.0.1
  2104. nanoid: 5.1.6
  2105. pathe: 2.0.3
  2106. vite-hot-client: 2.1.0(vite@7.1.12(@types/node@22.18.12)(jiti@2.6.1)(sass@1.93.2))
  2107. vue: 3.5.22(typescript@5.9.3)
  2108. transitivePeerDependencies:
  2109. - vite
  2110. '@vue/devtools-kit@7.7.7':
  2111. dependencies:
  2112. '@vue/devtools-shared': 7.7.7
  2113. birpc: 2.6.1
  2114. hookable: 5.5.3
  2115. mitt: 3.0.1
  2116. perfect-debounce: 1.0.0
  2117. speakingurl: 14.0.1
  2118. superjson: 2.2.3
  2119. '@vue/devtools-kit@8.0.3':
  2120. dependencies:
  2121. '@vue/devtools-shared': 8.0.3
  2122. birpc: 2.6.1
  2123. hookable: 5.5.3
  2124. mitt: 3.0.1
  2125. perfect-debounce: 2.0.0
  2126. speakingurl: 14.0.1
  2127. superjson: 2.2.3
  2128. '@vue/devtools-shared@7.7.7':
  2129. dependencies:
  2130. rfdc: 1.4.1
  2131. '@vue/devtools-shared@8.0.3':
  2132. dependencies:
  2133. rfdc: 1.4.1
  2134. '@vue/eslint-config-prettier@10.2.0(eslint@9.38.0(jiti@2.6.1))(prettier@3.6.2)':
  2135. dependencies:
  2136. eslint: 9.38.0(jiti@2.6.1)
  2137. eslint-config-prettier: 10.1.8(eslint@9.38.0(jiti@2.6.1))
  2138. eslint-plugin-prettier: 5.5.4(eslint-config-prettier@10.1.8(eslint@9.38.0(jiti@2.6.1)))(eslint@9.38.0(jiti@2.6.1))(prettier@3.6.2)
  2139. prettier: 3.6.2
  2140. transitivePeerDependencies:
  2141. - '@types/eslint'
  2142. '@vue/eslint-config-typescript@14.6.0(eslint-plugin-vue@10.5.1(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1))(vue-eslint-parser@10.2.0(eslint@9.38.0(jiti@2.6.1))))(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)':
  2143. dependencies:
  2144. '@typescript-eslint/utils': 8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
  2145. eslint: 9.38.0(jiti@2.6.1)
  2146. eslint-plugin-vue: 10.5.1(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1))(vue-eslint-parser@10.2.0(eslint@9.38.0(jiti@2.6.1)))
  2147. fast-glob: 3.3.3
  2148. typescript-eslint: 8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
  2149. vue-eslint-parser: 10.2.0(eslint@9.38.0(jiti@2.6.1))
  2150. optionalDependencies:
  2151. typescript: 5.9.3
  2152. transitivePeerDependencies:
  2153. - supports-color
  2154. '@vue/language-core@3.1.1(typescript@5.9.3)':
  2155. dependencies:
  2156. '@volar/language-core': 2.4.23
  2157. '@vue/compiler-dom': 3.5.22
  2158. '@vue/shared': 3.5.22
  2159. alien-signals: 3.0.3
  2160. muggle-string: 0.4.1
  2161. path-browserify: 1.0.1
  2162. picomatch: 4.0.3
  2163. optionalDependencies:
  2164. typescript: 5.9.3
  2165. '@vue/reactivity@3.5.22':
  2166. dependencies:
  2167. '@vue/shared': 3.5.22
  2168. '@vue/runtime-core@3.5.22':
  2169. dependencies:
  2170. '@vue/reactivity': 3.5.22
  2171. '@vue/shared': 3.5.22
  2172. '@vue/runtime-dom@3.5.22':
  2173. dependencies:
  2174. '@vue/reactivity': 3.5.22
  2175. '@vue/runtime-core': 3.5.22
  2176. '@vue/shared': 3.5.22
  2177. csstype: 3.1.3
  2178. '@vue/server-renderer@3.5.22(vue@3.5.22(typescript@5.9.3))':
  2179. dependencies:
  2180. '@vue/compiler-ssr': 3.5.22
  2181. '@vue/shared': 3.5.22
  2182. vue: 3.5.22(typescript@5.9.3)
  2183. '@vue/shared@3.5.22': {}
  2184. '@vue/tsconfig@0.8.1(typescript@5.9.3)(vue@3.5.22(typescript@5.9.3))':
  2185. optionalDependencies:
  2186. typescript: 5.9.3
  2187. vue: 3.5.22(typescript@5.9.3)
  2188. acorn-jsx@5.3.2(acorn@8.15.0):
  2189. dependencies:
  2190. acorn: 8.15.0
  2191. acorn@8.15.0: {}
  2192. ajv@6.12.6:
  2193. dependencies:
  2194. fast-deep-equal: 3.1.3
  2195. fast-json-stable-stringify: 2.1.0
  2196. json-schema-traverse: 0.4.1
  2197. uri-js: 4.4.1
  2198. alien-signals@3.0.3: {}
  2199. ansi-styles@4.3.0:
  2200. dependencies:
  2201. color-convert: 2.0.1
  2202. ansi-styles@6.2.3: {}
  2203. ansis@4.2.0: {}
  2204. argparse@2.0.1: {}
  2205. asynckit@0.4.0: {}
  2206. axios@1.12.2:
  2207. dependencies:
  2208. follow-redirects: 1.15.11
  2209. form-data: 4.0.4
  2210. proxy-from-env: 1.1.0
  2211. transitivePeerDependencies:
  2212. - debug
  2213. balanced-match@1.0.2: {}
  2214. baseline-browser-mapping@2.8.20: {}
  2215. birpc@2.6.1: {}
  2216. boolbase@1.0.0: {}
  2217. brace-expansion@1.1.12:
  2218. dependencies:
  2219. balanced-match: 1.0.2
  2220. concat-map: 0.0.1
  2221. brace-expansion@2.0.2:
  2222. dependencies:
  2223. balanced-match: 1.0.2
  2224. braces@3.0.3:
  2225. dependencies:
  2226. fill-range: 7.1.1
  2227. browserslist@4.27.0:
  2228. dependencies:
  2229. baseline-browser-mapping: 2.8.20
  2230. caniuse-lite: 1.0.30001751
  2231. electron-to-chromium: 1.5.240
  2232. node-releases: 2.0.26
  2233. update-browserslist-db: 1.1.4(browserslist@4.27.0)
  2234. bundle-name@4.1.0:
  2235. dependencies:
  2236. run-applescript: 7.1.0
  2237. call-bind-apply-helpers@1.0.2:
  2238. dependencies:
  2239. es-errors: 1.3.0
  2240. function-bind: 1.1.2
  2241. call-bound@1.0.4:
  2242. dependencies:
  2243. call-bind-apply-helpers: 1.0.2
  2244. get-intrinsic: 1.3.0
  2245. callsites@3.1.0: {}
  2246. caniuse-lite@1.0.30001751: {}
  2247. chalk@4.1.2:
  2248. dependencies:
  2249. ansi-styles: 4.3.0
  2250. supports-color: 7.2.0
  2251. chokidar@4.0.3:
  2252. dependencies:
  2253. readdirp: 4.1.2
  2254. color-convert@2.0.1:
  2255. dependencies:
  2256. color-name: 1.1.4
  2257. color-name@1.1.4: {}
  2258. combined-stream@1.0.8:
  2259. dependencies:
  2260. delayed-stream: 1.0.0
  2261. concat-map@0.0.1: {}
  2262. convert-source-map@2.0.0: {}
  2263. copy-anything@4.0.5:
  2264. dependencies:
  2265. is-what: 5.5.0
  2266. cross-spawn@7.0.6:
  2267. dependencies:
  2268. path-key: 3.1.1
  2269. shebang-command: 2.0.0
  2270. which: 2.0.2
  2271. cssesc@3.0.0: {}
  2272. csstype@3.1.3: {}
  2273. debug@4.4.3:
  2274. dependencies:
  2275. ms: 2.1.3
  2276. deep-is@0.1.4: {}
  2277. deep-pick-omit@1.2.1: {}
  2278. default-browser-id@5.0.0: {}
  2279. default-browser@5.2.1:
  2280. dependencies:
  2281. bundle-name: 4.1.0
  2282. default-browser-id: 5.0.0
  2283. define-lazy-prop@3.0.0: {}
  2284. defu@6.1.4: {}
  2285. delayed-stream@1.0.0: {}
  2286. destr@2.0.5: {}
  2287. detect-libc@1.0.3:
  2288. optional: true
  2289. dompurify@3.3.0:
  2290. optionalDependencies:
  2291. '@types/trusted-types': 2.0.7
  2292. dunder-proto@1.0.1:
  2293. dependencies:
  2294. call-bind-apply-helpers: 1.0.2
  2295. es-errors: 1.3.0
  2296. gopd: 1.2.0
  2297. electron-to-chromium@1.5.240: {}
  2298. entities@4.5.0: {}
  2299. error-stack-parser-es@1.0.5: {}
  2300. es-define-property@1.0.1: {}
  2301. es-errors@1.3.0: {}
  2302. es-object-atoms@1.1.1:
  2303. dependencies:
  2304. es-errors: 1.3.0
  2305. es-set-tostringtag@2.1.0:
  2306. dependencies:
  2307. es-errors: 1.3.0
  2308. get-intrinsic: 1.3.0
  2309. has-tostringtag: 1.0.2
  2310. hasown: 2.0.2
  2311. esbuild@0.25.11:
  2312. optionalDependencies:
  2313. '@esbuild/aix-ppc64': 0.25.11
  2314. '@esbuild/android-arm': 0.25.11
  2315. '@esbuild/android-arm64': 0.25.11
  2316. '@esbuild/android-x64': 0.25.11
  2317. '@esbuild/darwin-arm64': 0.25.11
  2318. '@esbuild/darwin-x64': 0.25.11
  2319. '@esbuild/freebsd-arm64': 0.25.11
  2320. '@esbuild/freebsd-x64': 0.25.11
  2321. '@esbuild/linux-arm': 0.25.11
  2322. '@esbuild/linux-arm64': 0.25.11
  2323. '@esbuild/linux-ia32': 0.25.11
  2324. '@esbuild/linux-loong64': 0.25.11
  2325. '@esbuild/linux-mips64el': 0.25.11
  2326. '@esbuild/linux-ppc64': 0.25.11
  2327. '@esbuild/linux-riscv64': 0.25.11
  2328. '@esbuild/linux-s390x': 0.25.11
  2329. '@esbuild/linux-x64': 0.25.11
  2330. '@esbuild/netbsd-arm64': 0.25.11
  2331. '@esbuild/netbsd-x64': 0.25.11
  2332. '@esbuild/openbsd-arm64': 0.25.11
  2333. '@esbuild/openbsd-x64': 0.25.11
  2334. '@esbuild/openharmony-arm64': 0.25.11
  2335. '@esbuild/sunos-x64': 0.25.11
  2336. '@esbuild/win32-arm64': 0.25.11
  2337. '@esbuild/win32-ia32': 0.25.11
  2338. '@esbuild/win32-x64': 0.25.11
  2339. escalade@3.2.0: {}
  2340. escape-string-regexp@4.0.0: {}
  2341. eslint-config-prettier@10.1.8(eslint@9.38.0(jiti@2.6.1)):
  2342. dependencies:
  2343. eslint: 9.38.0(jiti@2.6.1)
  2344. eslint-plugin-prettier@5.5.4(eslint-config-prettier@10.1.8(eslint@9.38.0(jiti@2.6.1)))(eslint@9.38.0(jiti@2.6.1))(prettier@3.6.2):
  2345. dependencies:
  2346. eslint: 9.38.0(jiti@2.6.1)
  2347. prettier: 3.6.2
  2348. prettier-linter-helpers: 1.0.0
  2349. synckit: 0.11.11
  2350. optionalDependencies:
  2351. eslint-config-prettier: 10.1.8(eslint@9.38.0(jiti@2.6.1))
  2352. eslint-plugin-vue@10.5.1(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1))(vue-eslint-parser@10.2.0(eslint@9.38.0(jiti@2.6.1))):
  2353. dependencies:
  2354. '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.6.1))
  2355. eslint: 9.38.0(jiti@2.6.1)
  2356. natural-compare: 1.4.0
  2357. nth-check: 2.1.1
  2358. postcss-selector-parser: 6.1.2
  2359. semver: 7.7.3
  2360. vue-eslint-parser: 10.2.0(eslint@9.38.0(jiti@2.6.1))
  2361. xml-name-validator: 4.0.0
  2362. optionalDependencies:
  2363. '@typescript-eslint/parser': 8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
  2364. eslint-scope@8.4.0:
  2365. dependencies:
  2366. esrecurse: 4.3.0
  2367. estraverse: 5.3.0
  2368. eslint-visitor-keys@3.4.3: {}
  2369. eslint-visitor-keys@4.2.1: {}
  2370. eslint@9.38.0(jiti@2.6.1):
  2371. dependencies:
  2372. '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.6.1))
  2373. '@eslint-community/regexpp': 4.12.2
  2374. '@eslint/config-array': 0.21.1
  2375. '@eslint/config-helpers': 0.4.1
  2376. '@eslint/core': 0.16.0
  2377. '@eslint/eslintrc': 3.3.1
  2378. '@eslint/js': 9.38.0
  2379. '@eslint/plugin-kit': 0.4.0
  2380. '@humanfs/node': 0.16.7
  2381. '@humanwhocodes/module-importer': 1.0.1
  2382. '@humanwhocodes/retry': 0.4.3
  2383. '@types/estree': 1.0.8
  2384. ajv: 6.12.6
  2385. chalk: 4.1.2
  2386. cross-spawn: 7.0.6
  2387. debug: 4.4.3
  2388. escape-string-regexp: 4.0.0
  2389. eslint-scope: 8.4.0
  2390. eslint-visitor-keys: 4.2.1
  2391. espree: 10.4.0
  2392. esquery: 1.6.0
  2393. esutils: 2.0.3
  2394. fast-deep-equal: 3.1.3
  2395. file-entry-cache: 8.0.0
  2396. find-up: 5.0.0
  2397. glob-parent: 6.0.2
  2398. ignore: 5.3.2
  2399. imurmurhash: 0.1.4
  2400. is-glob: 4.0.3
  2401. json-stable-stringify-without-jsonify: 1.0.1
  2402. lodash.merge: 4.6.2
  2403. minimatch: 3.1.2
  2404. natural-compare: 1.4.0
  2405. optionator: 0.9.4
  2406. optionalDependencies:
  2407. jiti: 2.6.1
  2408. transitivePeerDependencies:
  2409. - supports-color
  2410. espree@10.4.0:
  2411. dependencies:
  2412. acorn: 8.15.0
  2413. acorn-jsx: 5.3.2(acorn@8.15.0)
  2414. eslint-visitor-keys: 4.2.1
  2415. esquery@1.6.0:
  2416. dependencies:
  2417. estraverse: 5.3.0
  2418. esrecurse@4.3.0:
  2419. dependencies:
  2420. estraverse: 5.3.0
  2421. estraverse@5.3.0: {}
  2422. estree-walker@2.0.2: {}
  2423. esutils@2.0.3: {}
  2424. fast-deep-equal@3.1.3: {}
  2425. fast-diff@1.3.0: {}
  2426. fast-glob@3.3.3:
  2427. dependencies:
  2428. '@nodelib/fs.stat': 2.0.5
  2429. '@nodelib/fs.walk': 1.2.8
  2430. glob-parent: 5.1.2
  2431. merge2: 1.4.1
  2432. micromatch: 4.0.8
  2433. fast-json-stable-stringify@2.1.0: {}
  2434. fast-levenshtein@2.0.6: {}
  2435. fastq@1.19.1:
  2436. dependencies:
  2437. reusify: 1.1.0
  2438. fdir@6.5.0(picomatch@4.0.3):
  2439. optionalDependencies:
  2440. picomatch: 4.0.3
  2441. file-entry-cache@8.0.0:
  2442. dependencies:
  2443. flat-cache: 4.0.1
  2444. fill-range@7.1.1:
  2445. dependencies:
  2446. to-regex-range: 5.0.1
  2447. find-up@5.0.0:
  2448. dependencies:
  2449. locate-path: 6.0.0
  2450. path-exists: 4.0.0
  2451. flat-cache@4.0.1:
  2452. dependencies:
  2453. flatted: 3.3.3
  2454. keyv: 4.5.4
  2455. flatted@3.3.3: {}
  2456. follow-redirects@1.15.11: {}
  2457. form-data@4.0.4:
  2458. dependencies:
  2459. asynckit: 0.4.0
  2460. combined-stream: 1.0.8
  2461. es-set-tostringtag: 2.1.0
  2462. hasown: 2.0.2
  2463. mime-types: 2.1.35
  2464. fsevents@2.3.3:
  2465. optional: true
  2466. function-bind@1.1.2: {}
  2467. gensync@1.0.0-beta.2: {}
  2468. get-intrinsic@1.3.0:
  2469. dependencies:
  2470. call-bind-apply-helpers: 1.0.2
  2471. es-define-property: 1.0.1
  2472. es-errors: 1.3.0
  2473. es-object-atoms: 1.1.1
  2474. function-bind: 1.1.2
  2475. get-proto: 1.0.1
  2476. gopd: 1.2.0
  2477. has-symbols: 1.1.0
  2478. hasown: 2.0.2
  2479. math-intrinsics: 1.1.0
  2480. get-proto@1.0.1:
  2481. dependencies:
  2482. dunder-proto: 1.0.1
  2483. es-object-atoms: 1.1.1
  2484. glob-parent@5.1.2:
  2485. dependencies:
  2486. is-glob: 4.0.3
  2487. glob-parent@6.0.2:
  2488. dependencies:
  2489. is-glob: 4.0.3
  2490. globals@14.0.0: {}
  2491. gopd@1.2.0: {}
  2492. graphemer@1.4.0: {}
  2493. has-flag@4.0.0: {}
  2494. has-symbols@1.1.0: {}
  2495. has-tostringtag@1.0.2:
  2496. dependencies:
  2497. has-symbols: 1.1.0
  2498. hasown@2.0.2:
  2499. dependencies:
  2500. function-bind: 1.1.2
  2501. hookable@5.5.3: {}
  2502. ignore@5.3.2: {}
  2503. ignore@7.0.5: {}
  2504. immutable@5.1.4: {}
  2505. import-fresh@3.3.1:
  2506. dependencies:
  2507. parent-module: 1.0.1
  2508. resolve-from: 4.0.0
  2509. imurmurhash@0.1.4: {}
  2510. is-docker@3.0.0: {}
  2511. is-extglob@2.1.1: {}
  2512. is-glob@4.0.3:
  2513. dependencies:
  2514. is-extglob: 2.1.1
  2515. is-inside-container@1.0.0:
  2516. dependencies:
  2517. is-docker: 3.0.0
  2518. is-number@7.0.0: {}
  2519. is-what@5.5.0: {}
  2520. is-wsl@3.1.0:
  2521. dependencies:
  2522. is-inside-container: 1.0.0
  2523. isexe@2.0.0: {}
  2524. isexe@3.1.1: {}
  2525. jiti@2.6.1: {}
  2526. js-tokens@4.0.0: {}
  2527. js-yaml@4.1.0:
  2528. dependencies:
  2529. argparse: 2.0.1
  2530. jsesc@3.1.0: {}
  2531. json-buffer@3.0.1: {}
  2532. json-parse-even-better-errors@4.0.0: {}
  2533. json-schema-traverse@0.4.1: {}
  2534. json-stable-stringify-without-jsonify@1.0.1: {}
  2535. json5@2.2.3: {}
  2536. keyv@4.5.4:
  2537. dependencies:
  2538. json-buffer: 3.0.1
  2539. kolorist@1.8.0: {}
  2540. levn@0.4.1:
  2541. dependencies:
  2542. prelude-ls: 1.2.1
  2543. type-check: 0.4.0
  2544. locate-path@6.0.0:
  2545. dependencies:
  2546. p-locate: 5.0.0
  2547. lodash-es@4.17.21: {}
  2548. lodash.merge@4.6.2: {}
  2549. lru-cache@5.1.1:
  2550. dependencies:
  2551. yallist: 3.1.1
  2552. magic-string@0.30.21:
  2553. dependencies:
  2554. '@jridgewell/sourcemap-codec': 1.5.5
  2555. math-intrinsics@1.1.0: {}
  2556. memorystream@0.3.1: {}
  2557. merge2@1.4.1: {}
  2558. micromatch@4.0.8:
  2559. dependencies:
  2560. braces: 3.0.3
  2561. picomatch: 2.3.1
  2562. mime-db@1.52.0: {}
  2563. mime-types@2.1.35:
  2564. dependencies:
  2565. mime-db: 1.52.0
  2566. minimatch@3.1.2:
  2567. dependencies:
  2568. brace-expansion: 1.1.12
  2569. minimatch@9.0.5:
  2570. dependencies:
  2571. brace-expansion: 2.0.2
  2572. mitt@3.0.1: {}
  2573. mrmime@2.0.1: {}
  2574. ms@2.1.3: {}
  2575. muggle-string@0.4.1: {}
  2576. nanoid@3.3.11: {}
  2577. nanoid@5.1.6: {}
  2578. natural-compare@1.4.0: {}
  2579. node-addon-api@7.1.1:
  2580. optional: true
  2581. node-releases@2.0.26: {}
  2582. normalize.css@8.0.1: {}
  2583. npm-normalize-package-bin@4.0.0: {}
  2584. npm-run-all2@8.0.4:
  2585. dependencies:
  2586. ansi-styles: 6.2.3
  2587. cross-spawn: 7.0.6
  2588. memorystream: 0.3.1
  2589. picomatch: 4.0.3
  2590. pidtree: 0.6.0
  2591. read-package-json-fast: 4.0.0
  2592. shell-quote: 1.8.3
  2593. which: 5.0.0
  2594. nprogress@0.2.0: {}
  2595. nth-check@2.1.1:
  2596. dependencies:
  2597. boolbase: 1.0.0
  2598. object-assign@4.1.1: {}
  2599. object-inspect@1.13.4: {}
  2600. ohash@2.0.11: {}
  2601. open@10.2.0:
  2602. dependencies:
  2603. default-browser: 5.2.1
  2604. define-lazy-prop: 3.0.0
  2605. is-inside-container: 1.0.0
  2606. wsl-utils: 0.1.0
  2607. optionator@0.9.4:
  2608. dependencies:
  2609. deep-is: 0.1.4
  2610. fast-levenshtein: 2.0.6
  2611. levn: 0.4.1
  2612. prelude-ls: 1.2.1
  2613. type-check: 0.4.0
  2614. word-wrap: 1.2.5
  2615. p-limit@3.1.0:
  2616. dependencies:
  2617. yocto-queue: 0.1.0
  2618. p-locate@5.0.0:
  2619. dependencies:
  2620. p-limit: 3.1.0
  2621. parent-module@1.0.1:
  2622. dependencies:
  2623. callsites: 3.1.0
  2624. path-browserify@1.0.1: {}
  2625. path-exists@4.0.0: {}
  2626. path-key@3.1.1: {}
  2627. pathe@2.0.3: {}
  2628. perfect-debounce@1.0.0: {}
  2629. perfect-debounce@2.0.0: {}
  2630. picocolors@1.1.1: {}
  2631. picomatch@2.3.1: {}
  2632. picomatch@4.0.3: {}
  2633. pidtree@0.6.0: {}
  2634. pinia-plugin-persistedstate@4.5.0(pinia@3.0.3(typescript@5.9.3)(vue@3.5.22(typescript@5.9.3))):
  2635. dependencies:
  2636. deep-pick-omit: 1.2.1
  2637. defu: 6.1.4
  2638. destr: 2.0.5
  2639. optionalDependencies:
  2640. pinia: 3.0.3(typescript@5.9.3)(vue@3.5.22(typescript@5.9.3))
  2641. pinia@3.0.3(typescript@5.9.3)(vue@3.5.22(typescript@5.9.3)):
  2642. dependencies:
  2643. '@vue/devtools-api': 7.7.7
  2644. vue: 3.5.22(typescript@5.9.3)
  2645. optionalDependencies:
  2646. typescript: 5.9.3
  2647. postcss-px-to-viewport-8-plugin@1.2.5:
  2648. dependencies:
  2649. object-assign: 4.1.1
  2650. postcss-selector-parser@6.1.2:
  2651. dependencies:
  2652. cssesc: 3.0.0
  2653. util-deprecate: 1.0.2
  2654. postcss@8.5.6:
  2655. dependencies:
  2656. nanoid: 3.3.11
  2657. picocolors: 1.1.1
  2658. source-map-js: 1.2.1
  2659. prelude-ls@1.2.1: {}
  2660. prettier-linter-helpers@1.0.0:
  2661. dependencies:
  2662. fast-diff: 1.3.0
  2663. prettier@3.6.2: {}
  2664. proxy-from-env@1.1.0: {}
  2665. punycode@2.3.1: {}
  2666. qs@6.14.0:
  2667. dependencies:
  2668. side-channel: 1.1.0
  2669. queue-microtask@1.2.3: {}
  2670. read-package-json-fast@4.0.0:
  2671. dependencies:
  2672. json-parse-even-better-errors: 4.0.0
  2673. npm-normalize-package-bin: 4.0.0
  2674. readdirp@4.1.2: {}
  2675. resolve-from@4.0.0: {}
  2676. reusify@1.1.0: {}
  2677. rfdc@1.4.1: {}
  2678. rollup@4.52.5:
  2679. dependencies:
  2680. '@types/estree': 1.0.8
  2681. optionalDependencies:
  2682. '@rollup/rollup-android-arm-eabi': 4.52.5
  2683. '@rollup/rollup-android-arm64': 4.52.5
  2684. '@rollup/rollup-darwin-arm64': 4.52.5
  2685. '@rollup/rollup-darwin-x64': 4.52.5
  2686. '@rollup/rollup-freebsd-arm64': 4.52.5
  2687. '@rollup/rollup-freebsd-x64': 4.52.5
  2688. '@rollup/rollup-linux-arm-gnueabihf': 4.52.5
  2689. '@rollup/rollup-linux-arm-musleabihf': 4.52.5
  2690. '@rollup/rollup-linux-arm64-gnu': 4.52.5
  2691. '@rollup/rollup-linux-arm64-musl': 4.52.5
  2692. '@rollup/rollup-linux-loong64-gnu': 4.52.5
  2693. '@rollup/rollup-linux-ppc64-gnu': 4.52.5
  2694. '@rollup/rollup-linux-riscv64-gnu': 4.52.5
  2695. '@rollup/rollup-linux-riscv64-musl': 4.52.5
  2696. '@rollup/rollup-linux-s390x-gnu': 4.52.5
  2697. '@rollup/rollup-linux-x64-gnu': 4.52.5
  2698. '@rollup/rollup-linux-x64-musl': 4.52.5
  2699. '@rollup/rollup-openharmony-arm64': 4.52.5
  2700. '@rollup/rollup-win32-arm64-msvc': 4.52.5
  2701. '@rollup/rollup-win32-ia32-msvc': 4.52.5
  2702. '@rollup/rollup-win32-x64-gnu': 4.52.5
  2703. '@rollup/rollup-win32-x64-msvc': 4.52.5
  2704. fsevents: 2.3.3
  2705. run-applescript@7.1.0: {}
  2706. run-parallel@1.2.0:
  2707. dependencies:
  2708. queue-microtask: 1.2.3
  2709. sass@1.93.2:
  2710. dependencies:
  2711. chokidar: 4.0.3
  2712. immutable: 5.1.4
  2713. source-map-js: 1.2.1
  2714. optionalDependencies:
  2715. '@parcel/watcher': 2.5.1
  2716. semver@6.3.1: {}
  2717. semver@7.7.3: {}
  2718. shebang-command@2.0.0:
  2719. dependencies:
  2720. shebang-regex: 3.0.0
  2721. shebang-regex@3.0.0: {}
  2722. shell-quote@1.8.3: {}
  2723. side-channel-list@1.0.0:
  2724. dependencies:
  2725. es-errors: 1.3.0
  2726. object-inspect: 1.13.4
  2727. side-channel-map@1.0.1:
  2728. dependencies:
  2729. call-bound: 1.0.4
  2730. es-errors: 1.3.0
  2731. get-intrinsic: 1.3.0
  2732. object-inspect: 1.13.4
  2733. side-channel-weakmap@1.0.2:
  2734. dependencies:
  2735. call-bound: 1.0.4
  2736. es-errors: 1.3.0
  2737. get-intrinsic: 1.3.0
  2738. object-inspect: 1.13.4
  2739. side-channel-map: 1.0.1
  2740. side-channel@1.1.0:
  2741. dependencies:
  2742. es-errors: 1.3.0
  2743. object-inspect: 1.13.4
  2744. side-channel-list: 1.0.0
  2745. side-channel-map: 1.0.1
  2746. side-channel-weakmap: 1.0.2
  2747. sirv@3.0.2:
  2748. dependencies:
  2749. '@polka/url': 1.0.0-next.29
  2750. mrmime: 2.0.1
  2751. totalist: 3.0.1
  2752. source-map-js@1.2.1: {}
  2753. speakingurl@14.0.1: {}
  2754. strip-json-comments@3.1.1: {}
  2755. superjson@2.2.3:
  2756. dependencies:
  2757. copy-anything: 4.0.5
  2758. supports-color@7.2.0:
  2759. dependencies:
  2760. has-flag: 4.0.0
  2761. synckit@0.11.11:
  2762. dependencies:
  2763. '@pkgr/core': 0.2.9
  2764. tinyglobby@0.2.15:
  2765. dependencies:
  2766. fdir: 6.5.0(picomatch@4.0.3)
  2767. picomatch: 4.0.3
  2768. to-regex-range@5.0.1:
  2769. dependencies:
  2770. is-number: 7.0.0
  2771. totalist@3.0.1: {}
  2772. ts-api-utils@2.1.0(typescript@5.9.3):
  2773. dependencies:
  2774. typescript: 5.9.3
  2775. type-check@0.4.0:
  2776. dependencies:
  2777. prelude-ls: 1.2.1
  2778. typescript-eslint@8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3):
  2779. dependencies:
  2780. '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
  2781. '@typescript-eslint/parser': 8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
  2782. '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.9.3)
  2783. '@typescript-eslint/utils': 8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
  2784. eslint: 9.38.0(jiti@2.6.1)
  2785. typescript: 5.9.3
  2786. transitivePeerDependencies:
  2787. - supports-color
  2788. typescript@5.9.3: {}
  2789. undici-types@6.21.0: {}
  2790. unplugin-utils@0.3.1:
  2791. dependencies:
  2792. pathe: 2.0.3
  2793. picomatch: 4.0.3
  2794. update-browserslist-db@1.1.4(browserslist@4.27.0):
  2795. dependencies:
  2796. browserslist: 4.27.0
  2797. escalade: 3.2.0
  2798. picocolors: 1.1.1
  2799. uri-js@4.4.1:
  2800. dependencies:
  2801. punycode: 2.3.1
  2802. util-deprecate@1.0.2: {}
  2803. v-viewer@3.0.22(viewerjs@1.11.7)(vue@3.5.22(typescript@5.9.3)):
  2804. dependencies:
  2805. lodash-es: 4.17.21
  2806. viewerjs: 1.11.7
  2807. vue: 3.5.22(typescript@5.9.3)
  2808. vant@4.9.21(vue@3.5.22(typescript@5.9.3)):
  2809. dependencies:
  2810. '@vant/popperjs': 1.3.0
  2811. '@vant/use': 1.6.0(vue@3.5.22(typescript@5.9.3))
  2812. '@vue/shared': 3.5.22
  2813. vue: 3.5.22(typescript@5.9.3)
  2814. viewerjs@1.11.7: {}
  2815. vite-dev-rpc@1.1.0(vite@7.1.12(@types/node@22.18.12)(jiti@2.6.1)(sass@1.93.2)):
  2816. dependencies:
  2817. birpc: 2.6.1
  2818. vite: 7.1.12(@types/node@22.18.12)(jiti@2.6.1)(sass@1.93.2)
  2819. vite-hot-client: 2.1.0(vite@7.1.12(@types/node@22.18.12)(jiti@2.6.1)(sass@1.93.2))
  2820. vite-hot-client@2.1.0(vite@7.1.12(@types/node@22.18.12)(jiti@2.6.1)(sass@1.93.2)):
  2821. dependencies:
  2822. vite: 7.1.12(@types/node@22.18.12)(jiti@2.6.1)(sass@1.93.2)
  2823. vite-plugin-inspect@11.3.3(vite@7.1.12(@types/node@22.18.12)(jiti@2.6.1)(sass@1.93.2)):
  2824. dependencies:
  2825. ansis: 4.2.0
  2826. debug: 4.4.3
  2827. error-stack-parser-es: 1.0.5
  2828. ohash: 2.0.11
  2829. open: 10.2.0
  2830. perfect-debounce: 2.0.0
  2831. sirv: 3.0.2
  2832. unplugin-utils: 0.3.1
  2833. vite: 7.1.12(@types/node@22.18.12)(jiti@2.6.1)(sass@1.93.2)
  2834. vite-dev-rpc: 1.1.0(vite@7.1.12(@types/node@22.18.12)(jiti@2.6.1)(sass@1.93.2))
  2835. transitivePeerDependencies:
  2836. - supports-color
  2837. vite-plugin-vue-devtools@8.0.3(vite@7.1.12(@types/node@22.18.12)(jiti@2.6.1)(sass@1.93.2))(vue@3.5.22(typescript@5.9.3)):
  2838. dependencies:
  2839. '@vue/devtools-core': 8.0.3(vite@7.1.12(@types/node@22.18.12)(jiti@2.6.1)(sass@1.93.2))(vue@3.5.22(typescript@5.9.3))
  2840. '@vue/devtools-kit': 8.0.3
  2841. '@vue/devtools-shared': 8.0.3
  2842. sirv: 3.0.2
  2843. vite: 7.1.12(@types/node@22.18.12)(jiti@2.6.1)(sass@1.93.2)
  2844. vite-plugin-inspect: 11.3.3(vite@7.1.12(@types/node@22.18.12)(jiti@2.6.1)(sass@1.93.2))
  2845. vite-plugin-vue-inspector: 5.3.2(vite@7.1.12(@types/node@22.18.12)(jiti@2.6.1)(sass@1.93.2))
  2846. transitivePeerDependencies:
  2847. - '@nuxt/kit'
  2848. - supports-color
  2849. - vue
  2850. vite-plugin-vue-inspector@5.3.2(vite@7.1.12(@types/node@22.18.12)(jiti@2.6.1)(sass@1.93.2)):
  2851. dependencies:
  2852. '@babel/core': 7.28.5
  2853. '@babel/plugin-proposal-decorators': 7.28.0(@babel/core@7.28.5)
  2854. '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.5)
  2855. '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.28.5)
  2856. '@babel/plugin-transform-typescript': 7.28.5(@babel/core@7.28.5)
  2857. '@vue/babel-plugin-jsx': 1.5.0(@babel/core@7.28.5)
  2858. '@vue/compiler-dom': 3.5.22
  2859. kolorist: 1.8.0
  2860. magic-string: 0.30.21
  2861. vite: 7.1.12(@types/node@22.18.12)(jiti@2.6.1)(sass@1.93.2)
  2862. transitivePeerDependencies:
  2863. - supports-color
  2864. vite@7.1.12(@types/node@22.18.12)(jiti@2.6.1)(sass@1.93.2):
  2865. dependencies:
  2866. esbuild: 0.25.11
  2867. fdir: 6.5.0(picomatch@4.0.3)
  2868. picomatch: 4.0.3
  2869. postcss: 8.5.6
  2870. rollup: 4.52.5
  2871. tinyglobby: 0.2.15
  2872. optionalDependencies:
  2873. '@types/node': 22.18.12
  2874. fsevents: 2.3.3
  2875. jiti: 2.6.1
  2876. sass: 1.93.2
  2877. vscode-uri@3.1.0: {}
  2878. vue-dompurify-html@5.3.0(vue@3.5.22(typescript@5.9.3)):
  2879. dependencies:
  2880. dompurify: 3.3.0
  2881. vue: 3.5.22(typescript@5.9.3)
  2882. vue-eslint-parser@10.2.0(eslint@9.38.0(jiti@2.6.1)):
  2883. dependencies:
  2884. debug: 4.4.3
  2885. eslint: 9.38.0(jiti@2.6.1)
  2886. eslint-scope: 8.4.0
  2887. eslint-visitor-keys: 4.2.1
  2888. espree: 10.4.0
  2889. esquery: 1.6.0
  2890. semver: 7.7.3
  2891. transitivePeerDependencies:
  2892. - supports-color
  2893. vue-router@4.6.3(vue@3.5.22(typescript@5.9.3)):
  2894. dependencies:
  2895. '@vue/devtools-api': 6.6.4
  2896. vue: 3.5.22(typescript@5.9.3)
  2897. vue-tsc@3.1.1(typescript@5.9.3):
  2898. dependencies:
  2899. '@volar/typescript': 2.4.23
  2900. '@vue/language-core': 3.1.1(typescript@5.9.3)
  2901. typescript: 5.9.3
  2902. vue@3.5.22(typescript@5.9.3):
  2903. dependencies:
  2904. '@vue/compiler-dom': 3.5.22
  2905. '@vue/compiler-sfc': 3.5.22
  2906. '@vue/runtime-dom': 3.5.22
  2907. '@vue/server-renderer': 3.5.22(vue@3.5.22(typescript@5.9.3))
  2908. '@vue/shared': 3.5.22
  2909. optionalDependencies:
  2910. typescript: 5.9.3
  2911. which@2.0.2:
  2912. dependencies:
  2913. isexe: 2.0.0
  2914. which@5.0.0:
  2915. dependencies:
  2916. isexe: 3.1.1
  2917. word-wrap@1.2.5: {}
  2918. wsl-utils@0.1.0:
  2919. dependencies:
  2920. is-wsl: 3.1.0
  2921. xml-name-validator@4.0.0: {}
  2922. yallist@3.1.1: {}
  2923. yocto-queue@0.1.0: {}