pnpm-lock.yaml 100 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858
  1. lockfileVersion: "9.0"
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. vue:
  9. specifier: ^3.5.12
  10. version: 3.5.13(typescript@5.6.3)
  11. devDependencies:
  12. "@eslint/js":
  13. specifier: ^9.15.0
  14. version: 9.15.0
  15. "@types/node":
  16. specifier: ^22.9.0
  17. version: 22.9.0
  18. "@vitejs/plugin-vue":
  19. specifier: ^5.1.4
  20. version: 5.2.0(vite@5.4.11(@types/node@22.9.0)(sass@1.81.0))(vue@3.5.13(typescript@5.6.3))
  21. eslint:
  22. specifier: 9.15.0
  23. version: 9.15.0
  24. eslint-plugin-vue:
  25. specifier: ^9.31.0
  26. version: 9.31.0(eslint@9.15.0)
  27. globals:
  28. specifier: ^15.12.0
  29. version: 15.12.0
  30. husky:
  31. specifier: ^9.1.7
  32. version: 9.1.7
  33. postcss:
  34. specifier: 8.4.49
  35. version: 8.4.49
  36. postcss-html:
  37. specifier: 1.7.0
  38. version: 1.7.0
  39. postcss-scss:
  40. specifier: 4.0.9
  41. version: 4.0.9(postcss@8.4.49)
  42. prettier:
  43. specifier: 3.3.3
  44. version: 3.3.3
  45. sass:
  46. specifier: 1.81.0
  47. version: 1.81.0
  48. stylelint:
  49. specifier: 16.10.0
  50. version: 16.10.0(typescript@5.6.3)
  51. stylelint-config-prettier:
  52. specifier: 9.0.5
  53. version: 9.0.5(stylelint@16.10.0(typescript@5.6.3))
  54. stylelint-config-recommended-scss:
  55. specifier: 14.1.0
  56. version: 14.1.0(postcss@8.4.49)(stylelint@16.10.0(typescript@5.6.3))
  57. stylelint-config-standard:
  58. specifier: 36.0.1
  59. version: 36.0.1(stylelint@16.10.0(typescript@5.6.3))
  60. stylelint-config-standard-scss:
  61. specifier: 13.1.0
  62. version: 13.1.0(postcss@8.4.49)(stylelint@16.10.0(typescript@5.6.3))
  63. stylelint-config-standard-vue:
  64. specifier: 1.0.0
  65. version: 1.0.0(postcss-html@1.7.0)(stylelint@16.10.0(typescript@5.6.3))
  66. stylelint-order:
  67. specifier: 6.0.4
  68. version: 6.0.4(stylelint@16.10.0(typescript@5.6.3))
  69. stylelint-scss:
  70. specifier: 6.9.0
  71. version: 6.9.0(stylelint@16.10.0(typescript@5.6.3))
  72. typescript:
  73. specifier: ~5.6.2
  74. version: 5.6.3
  75. typescript-eslint:
  76. specifier: ^8.15.0
  77. version: 8.15.0(eslint@9.15.0)(typescript@5.6.3)
  78. vite:
  79. specifier: ^5.4.10
  80. version: 5.4.11(@types/node@22.9.0)(sass@1.81.0)
  81. vue-tsc:
  82. specifier: ^2.1.8
  83. version: 2.1.10(typescript@5.6.3)
  84. packages:
  85. "@babel/code-frame@7.26.2":
  86. resolution:
  87. {
  88. integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==,
  89. }
  90. engines: { node: ">=6.9.0" }
  91. "@babel/helper-string-parser@7.25.9":
  92. resolution:
  93. {
  94. integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==,
  95. }
  96. engines: { node: ">=6.9.0" }
  97. "@babel/helper-validator-identifier@7.25.9":
  98. resolution:
  99. {
  100. integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==,
  101. }
  102. engines: { node: ">=6.9.0" }
  103. "@babel/parser@7.26.2":
  104. resolution:
  105. {
  106. integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==,
  107. }
  108. engines: { node: ">=6.0.0" }
  109. hasBin: true
  110. "@babel/types@7.26.0":
  111. resolution:
  112. {
  113. integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==,
  114. }
  115. engines: { node: ">=6.9.0" }
  116. "@csstools/css-parser-algorithms@3.0.4":
  117. resolution:
  118. {
  119. integrity: sha512-Up7rBoV77rv29d3uKHUIVubz1BTcgyUK72IvCQAbfbMv584xHcGKCKbWh7i8hPrRJ7qU4Y8IO3IY9m+iTB7P3A==,
  120. }
  121. engines: { node: ">=18" }
  122. peerDependencies:
  123. "@csstools/css-tokenizer": ^3.0.3
  124. "@csstools/css-tokenizer@3.0.3":
  125. resolution:
  126. {
  127. integrity: sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw==,
  128. }
  129. engines: { node: ">=18" }
  130. "@csstools/media-query-list-parser@3.0.1":
  131. resolution:
  132. {
  133. integrity: sha512-HNo8gGD02kHmcbX6PvCoUuOQvn4szyB9ca63vZHKX5A81QytgDG4oxG4IaEfHTlEZSZ6MjPEMWIVU+zF2PZcgw==,
  134. }
  135. engines: { node: ">=18" }
  136. peerDependencies:
  137. "@csstools/css-parser-algorithms": ^3.0.1
  138. "@csstools/css-tokenizer": ^3.0.1
  139. "@csstools/selector-specificity@4.0.0":
  140. resolution:
  141. {
  142. integrity: sha512-189nelqtPd8++phaHNwYovKZI0FOzH1vQEE3QhHHkNIGrg5fSs9CbYP3RvfEH5geztnIA9Jwq91wyOIwAW5JIQ==,
  143. }
  144. engines: { node: ">=18" }
  145. peerDependencies:
  146. postcss-selector-parser: ^6.1.0
  147. "@dual-bundle/import-meta-resolve@4.1.0":
  148. resolution:
  149. {
  150. integrity: sha512-+nxncfwHM5SgAtrVzgpzJOI1ol0PkumhVo469KCf9lUi21IGcY90G98VuHm9VRrUypmAzawAHO9bs6hqeADaVg==,
  151. }
  152. "@esbuild/aix-ppc64@0.21.5":
  153. resolution:
  154. {
  155. integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==,
  156. }
  157. engines: { node: ">=12" }
  158. cpu: [ppc64]
  159. os: [aix]
  160. "@esbuild/android-arm64@0.21.5":
  161. resolution:
  162. {
  163. integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==,
  164. }
  165. engines: { node: ">=12" }
  166. cpu: [arm64]
  167. os: [android]
  168. "@esbuild/android-arm@0.21.5":
  169. resolution:
  170. {
  171. integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==,
  172. }
  173. engines: { node: ">=12" }
  174. cpu: [arm]
  175. os: [android]
  176. "@esbuild/android-x64@0.21.5":
  177. resolution:
  178. {
  179. integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==,
  180. }
  181. engines: { node: ">=12" }
  182. cpu: [x64]
  183. os: [android]
  184. "@esbuild/darwin-arm64@0.21.5":
  185. resolution:
  186. {
  187. integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==,
  188. }
  189. engines: { node: ">=12" }
  190. cpu: [arm64]
  191. os: [darwin]
  192. "@esbuild/darwin-x64@0.21.5":
  193. resolution:
  194. {
  195. integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==,
  196. }
  197. engines: { node: ">=12" }
  198. cpu: [x64]
  199. os: [darwin]
  200. "@esbuild/freebsd-arm64@0.21.5":
  201. resolution:
  202. {
  203. integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==,
  204. }
  205. engines: { node: ">=12" }
  206. cpu: [arm64]
  207. os: [freebsd]
  208. "@esbuild/freebsd-x64@0.21.5":
  209. resolution:
  210. {
  211. integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==,
  212. }
  213. engines: { node: ">=12" }
  214. cpu: [x64]
  215. os: [freebsd]
  216. "@esbuild/linux-arm64@0.21.5":
  217. resolution:
  218. {
  219. integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==,
  220. }
  221. engines: { node: ">=12" }
  222. cpu: [arm64]
  223. os: [linux]
  224. "@esbuild/linux-arm@0.21.5":
  225. resolution:
  226. {
  227. integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==,
  228. }
  229. engines: { node: ">=12" }
  230. cpu: [arm]
  231. os: [linux]
  232. "@esbuild/linux-ia32@0.21.5":
  233. resolution:
  234. {
  235. integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==,
  236. }
  237. engines: { node: ">=12" }
  238. cpu: [ia32]
  239. os: [linux]
  240. "@esbuild/linux-loong64@0.21.5":
  241. resolution:
  242. {
  243. integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==,
  244. }
  245. engines: { node: ">=12" }
  246. cpu: [loong64]
  247. os: [linux]
  248. "@esbuild/linux-mips64el@0.21.5":
  249. resolution:
  250. {
  251. integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==,
  252. }
  253. engines: { node: ">=12" }
  254. cpu: [mips64el]
  255. os: [linux]
  256. "@esbuild/linux-ppc64@0.21.5":
  257. resolution:
  258. {
  259. integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==,
  260. }
  261. engines: { node: ">=12" }
  262. cpu: [ppc64]
  263. os: [linux]
  264. "@esbuild/linux-riscv64@0.21.5":
  265. resolution:
  266. {
  267. integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==,
  268. }
  269. engines: { node: ">=12" }
  270. cpu: [riscv64]
  271. os: [linux]
  272. "@esbuild/linux-s390x@0.21.5":
  273. resolution:
  274. {
  275. integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==,
  276. }
  277. engines: { node: ">=12" }
  278. cpu: [s390x]
  279. os: [linux]
  280. "@esbuild/linux-x64@0.21.5":
  281. resolution:
  282. {
  283. integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==,
  284. }
  285. engines: { node: ">=12" }
  286. cpu: [x64]
  287. os: [linux]
  288. "@esbuild/netbsd-x64@0.21.5":
  289. resolution:
  290. {
  291. integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==,
  292. }
  293. engines: { node: ">=12" }
  294. cpu: [x64]
  295. os: [netbsd]
  296. "@esbuild/openbsd-x64@0.21.5":
  297. resolution:
  298. {
  299. integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==,
  300. }
  301. engines: { node: ">=12" }
  302. cpu: [x64]
  303. os: [openbsd]
  304. "@esbuild/sunos-x64@0.21.5":
  305. resolution:
  306. {
  307. integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==,
  308. }
  309. engines: { node: ">=12" }
  310. cpu: [x64]
  311. os: [sunos]
  312. "@esbuild/win32-arm64@0.21.5":
  313. resolution:
  314. {
  315. integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==,
  316. }
  317. engines: { node: ">=12" }
  318. cpu: [arm64]
  319. os: [win32]
  320. "@esbuild/win32-ia32@0.21.5":
  321. resolution:
  322. {
  323. integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==,
  324. }
  325. engines: { node: ">=12" }
  326. cpu: [ia32]
  327. os: [win32]
  328. "@esbuild/win32-x64@0.21.5":
  329. resolution:
  330. {
  331. integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==,
  332. }
  333. engines: { node: ">=12" }
  334. cpu: [x64]
  335. os: [win32]
  336. "@eslint-community/eslint-utils@4.4.1":
  337. resolution:
  338. {
  339. integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==,
  340. }
  341. engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
  342. peerDependencies:
  343. eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
  344. "@eslint-community/regexpp@4.12.1":
  345. resolution:
  346. {
  347. integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==,
  348. }
  349. engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 }
  350. "@eslint/config-array@0.19.0":
  351. resolution:
  352. {
  353. integrity: sha512-zdHg2FPIFNKPdcHWtiNT+jEFCHYVplAXRDlQDyqy0zGx/q2parwh7brGJSiTxRk/TSMkbM//zt/f5CHgyTyaSQ==,
  354. }
  355. engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
  356. "@eslint/core@0.9.0":
  357. resolution:
  358. {
  359. integrity: sha512-7ATR9F0e4W85D/0w7cU0SNj7qkAexMG+bAHEZOjo9akvGuhHE2m7umzWzfnpa0XAg5Kxc1BWmtPMV67jJ+9VUg==,
  360. }
  361. engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
  362. "@eslint/eslintrc@3.2.0":
  363. resolution:
  364. {
  365. integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==,
  366. }
  367. engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
  368. "@eslint/js@9.15.0":
  369. resolution:
  370. {
  371. integrity: sha512-tMTqrY+EzbXmKJR5ToI8lxu7jaN5EdmrBFJpQk5JmSlyLsx6o4t27r883K5xsLuCYCpfKBCGswMSWXsM+jB7lg==,
  372. }
  373. engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
  374. "@eslint/object-schema@2.1.4":
  375. resolution:
  376. {
  377. integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==,
  378. }
  379. engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
  380. "@eslint/plugin-kit@0.2.3":
  381. resolution:
  382. {
  383. integrity: sha512-2b/g5hRmpbb1o4GnTZax9N9m0FXzz9OV42ZzI4rDDMDuHUqigAiQCEWChBWCY4ztAGVRjoWT19v0yMmc5/L5kA==,
  384. }
  385. engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
  386. "@humanfs/core@0.19.1":
  387. resolution:
  388. {
  389. integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==,
  390. }
  391. engines: { node: ">=18.18.0" }
  392. "@humanfs/node@0.16.6":
  393. resolution:
  394. {
  395. integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==,
  396. }
  397. engines: { node: ">=18.18.0" }
  398. "@humanwhocodes/module-importer@1.0.1":
  399. resolution:
  400. {
  401. integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==,
  402. }
  403. engines: { node: ">=12.22" }
  404. "@humanwhocodes/retry@0.3.1":
  405. resolution:
  406. {
  407. integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==,
  408. }
  409. engines: { node: ">=18.18" }
  410. "@humanwhocodes/retry@0.4.1":
  411. resolution:
  412. {
  413. integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==,
  414. }
  415. engines: { node: ">=18.18" }
  416. "@jridgewell/sourcemap-codec@1.5.0":
  417. resolution:
  418. {
  419. integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==,
  420. }
  421. "@nodelib/fs.scandir@2.1.5":
  422. resolution:
  423. {
  424. integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==,
  425. }
  426. engines: { node: ">= 8" }
  427. "@nodelib/fs.stat@2.0.5":
  428. resolution:
  429. {
  430. integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==,
  431. }
  432. engines: { node: ">= 8" }
  433. "@nodelib/fs.walk@1.2.8":
  434. resolution:
  435. {
  436. integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==,
  437. }
  438. engines: { node: ">= 8" }
  439. "@parcel/watcher-android-arm64@2.5.0":
  440. resolution:
  441. {
  442. integrity: sha512-qlX4eS28bUcQCdribHkg/herLe+0A9RyYC+mm2PXpncit8z5b3nSqGVzMNR3CmtAOgRutiZ02eIJJgP/b1iEFQ==,
  443. }
  444. engines: { node: ">= 10.0.0" }
  445. cpu: [arm64]
  446. os: [android]
  447. "@parcel/watcher-darwin-arm64@2.5.0":
  448. resolution:
  449. {
  450. integrity: sha512-hyZ3TANnzGfLpRA2s/4U1kbw2ZI4qGxaRJbBH2DCSREFfubMswheh8TeiC1sGZ3z2jUf3s37P0BBlrD3sjVTUw==,
  451. }
  452. engines: { node: ">= 10.0.0" }
  453. cpu: [arm64]
  454. os: [darwin]
  455. "@parcel/watcher-darwin-x64@2.5.0":
  456. resolution:
  457. {
  458. integrity: sha512-9rhlwd78saKf18fT869/poydQK8YqlU26TMiNg7AIu7eBp9adqbJZqmdFOsbZ5cnLp5XvRo9wcFmNHgHdWaGYA==,
  459. }
  460. engines: { node: ">= 10.0.0" }
  461. cpu: [x64]
  462. os: [darwin]
  463. "@parcel/watcher-freebsd-x64@2.5.0":
  464. resolution:
  465. {
  466. integrity: sha512-syvfhZzyM8kErg3VF0xpV8dixJ+RzbUaaGaeb7uDuz0D3FK97/mZ5AJQ3XNnDsXX7KkFNtyQyFrXZzQIcN49Tw==,
  467. }
  468. engines: { node: ">= 10.0.0" }
  469. cpu: [x64]
  470. os: [freebsd]
  471. "@parcel/watcher-linux-arm-glibc@2.5.0":
  472. resolution:
  473. {
  474. integrity: sha512-0VQY1K35DQET3dVYWpOaPFecqOT9dbuCfzjxoQyif1Wc574t3kOSkKevULddcR9znz1TcklCE7Ht6NIxjvTqLA==,
  475. }
  476. engines: { node: ">= 10.0.0" }
  477. cpu: [arm]
  478. os: [linux]
  479. libc: [glibc]
  480. "@parcel/watcher-linux-arm-musl@2.5.0":
  481. resolution:
  482. {
  483. integrity: sha512-6uHywSIzz8+vi2lAzFeltnYbdHsDm3iIB57d4g5oaB9vKwjb6N6dRIgZMujw4nm5r6v9/BQH0noq6DzHrqr2pA==,
  484. }
  485. engines: { node: ">= 10.0.0" }
  486. cpu: [arm]
  487. os: [linux]
  488. libc: [musl]
  489. "@parcel/watcher-linux-arm64-glibc@2.5.0":
  490. resolution:
  491. {
  492. integrity: sha512-BfNjXwZKxBy4WibDb/LDCriWSKLz+jJRL3cM/DllnHH5QUyoiUNEp3GmL80ZqxeumoADfCCP19+qiYiC8gUBjA==,
  493. }
  494. engines: { node: ">= 10.0.0" }
  495. cpu: [arm64]
  496. os: [linux]
  497. libc: [glibc]
  498. "@parcel/watcher-linux-arm64-musl@2.5.0":
  499. resolution:
  500. {
  501. integrity: sha512-S1qARKOphxfiBEkwLUbHjCY9BWPdWnW9j7f7Hb2jPplu8UZ3nes7zpPOW9bkLbHRvWM0WDTsjdOTUgW0xLBN1Q==,
  502. }
  503. engines: { node: ">= 10.0.0" }
  504. cpu: [arm64]
  505. os: [linux]
  506. libc: [musl]
  507. "@parcel/watcher-linux-x64-glibc@2.5.0":
  508. resolution:
  509. {
  510. integrity: sha512-d9AOkusyXARkFD66S6zlGXyzx5RvY+chTP9Jp0ypSTC9d4lzyRs9ovGf/80VCxjKddcUvnsGwCHWuF2EoPgWjw==,
  511. }
  512. engines: { node: ">= 10.0.0" }
  513. cpu: [x64]
  514. os: [linux]
  515. libc: [glibc]
  516. "@parcel/watcher-linux-x64-musl@2.5.0":
  517. resolution:
  518. {
  519. integrity: sha512-iqOC+GoTDoFyk/VYSFHwjHhYrk8bljW6zOhPuhi5t9ulqiYq1togGJB5e3PwYVFFfeVgc6pbz3JdQyDoBszVaA==,
  520. }
  521. engines: { node: ">= 10.0.0" }
  522. cpu: [x64]
  523. os: [linux]
  524. libc: [musl]
  525. "@parcel/watcher-win32-arm64@2.5.0":
  526. resolution:
  527. {
  528. integrity: sha512-twtft1d+JRNkM5YbmexfcH/N4znDtjgysFaV9zvZmmJezQsKpkfLYJ+JFV3uygugK6AtIM2oADPkB2AdhBrNig==,
  529. }
  530. engines: { node: ">= 10.0.0" }
  531. cpu: [arm64]
  532. os: [win32]
  533. "@parcel/watcher-win32-ia32@2.5.0":
  534. resolution:
  535. {
  536. integrity: sha512-+rgpsNRKwo8A53elqbbHXdOMtY/tAtTzManTWShB5Kk54N8Q9mzNWV7tV+IbGueCbcj826MfWGU3mprWtuf1TA==,
  537. }
  538. engines: { node: ">= 10.0.0" }
  539. cpu: [ia32]
  540. os: [win32]
  541. "@parcel/watcher-win32-x64@2.5.0":
  542. resolution:
  543. {
  544. integrity: sha512-lPrxve92zEHdgeff3aiu4gDOIt4u7sJYha6wbdEZDCDUhtjTsOMiaJzG5lMY4GkWH8p0fMmO2Ppq5G5XXG+DQw==,
  545. }
  546. engines: { node: ">= 10.0.0" }
  547. cpu: [x64]
  548. os: [win32]
  549. "@parcel/watcher@2.5.0":
  550. resolution:
  551. {
  552. integrity: sha512-i0GV1yJnm2n3Yq1qw6QrUrd/LI9bE8WEBOTtOkpCXHHdyN3TAGgqAK/DAT05z4fq2x04cARXt2pDmjWjL92iTQ==,
  553. }
  554. engines: { node: ">= 10.0.0" }
  555. "@rollup/rollup-android-arm-eabi@4.27.3":
  556. resolution:
  557. {
  558. integrity: sha512-EzxVSkIvCFxUd4Mgm4xR9YXrcp976qVaHnqom/Tgm+vU79k4vV4eYTjmRvGfeoW8m9LVcsAy/lGjcgVegKEhLQ==,
  559. }
  560. cpu: [arm]
  561. os: [android]
  562. "@rollup/rollup-android-arm64@4.27.3":
  563. resolution:
  564. {
  565. integrity: sha512-LJc5pDf1wjlt9o/Giaw9Ofl+k/vLUaYsE2zeQGH85giX2F+wn/Cg8b3c5CDP3qmVmeO5NzwVUzQQxwZvC2eQKw==,
  566. }
  567. cpu: [arm64]
  568. os: [android]
  569. "@rollup/rollup-darwin-arm64@4.27.3":
  570. resolution:
  571. {
  572. integrity: sha512-OuRysZ1Mt7wpWJ+aYKblVbJWtVn3Cy52h8nLuNSzTqSesYw1EuN6wKp5NW/4eSre3mp12gqFRXOKTcN3AI3LqA==,
  573. }
  574. cpu: [arm64]
  575. os: [darwin]
  576. "@rollup/rollup-darwin-x64@4.27.3":
  577. resolution:
  578. {
  579. integrity: sha512-xW//zjJMlJs2sOrCmXdB4d0uiilZsOdlGQIC/jjmMWT47lkLLoB1nsNhPUcnoqyi5YR6I4h+FjBpILxbEy8JRg==,
  580. }
  581. cpu: [x64]
  582. os: [darwin]
  583. "@rollup/rollup-freebsd-arm64@4.27.3":
  584. resolution:
  585. {
  586. integrity: sha512-58E0tIcwZ+12nK1WiLzHOD8I0d0kdrY/+o7yFVPRHuVGY3twBwzwDdTIBGRxLmyjciMYl1B/U515GJy+yn46qw==,
  587. }
  588. cpu: [arm64]
  589. os: [freebsd]
  590. "@rollup/rollup-freebsd-x64@4.27.3":
  591. resolution:
  592. {
  593. integrity: sha512-78fohrpcVwTLxg1ZzBMlwEimoAJmY6B+5TsyAZ3Vok7YabRBUvjYTsRXPTjGEvv/mfgVBepbW28OlMEz4w8wGA==,
  594. }
  595. cpu: [x64]
  596. os: [freebsd]
  597. "@rollup/rollup-linux-arm-gnueabihf@4.27.3":
  598. resolution:
  599. {
  600. integrity: sha512-h2Ay79YFXyQi+QZKo3ISZDyKaVD7uUvukEHTOft7kh00WF9mxAaxZsNs3o/eukbeKuH35jBvQqrT61fzKfAB/Q==,
  601. }
  602. cpu: [arm]
  603. os: [linux]
  604. libc: [glibc]
  605. "@rollup/rollup-linux-arm-musleabihf@4.27.3":
  606. resolution:
  607. {
  608. integrity: sha512-Sv2GWmrJfRY57urktVLQ0VKZjNZGogVtASAgosDZ1aUB+ykPxSi3X1nWORL5Jk0sTIIwQiPH7iE3BMi9zGWfkg==,
  609. }
  610. cpu: [arm]
  611. os: [linux]
  612. libc: [musl]
  613. "@rollup/rollup-linux-arm64-gnu@4.27.3":
  614. resolution:
  615. {
  616. integrity: sha512-FPoJBLsPW2bDNWjSrwNuTPUt30VnfM8GPGRoLCYKZpPx0xiIEdFip3dH6CqgoT0RnoGXptaNziM0WlKgBc+OWQ==,
  617. }
  618. cpu: [arm64]
  619. os: [linux]
  620. libc: [glibc]
  621. "@rollup/rollup-linux-arm64-musl@4.27.3":
  622. resolution:
  623. {
  624. integrity: sha512-TKxiOvBorYq4sUpA0JT+Fkh+l+G9DScnG5Dqx7wiiqVMiRSkzTclP35pE6eQQYjP4Gc8yEkJGea6rz4qyWhp3g==,
  625. }
  626. cpu: [arm64]
  627. os: [linux]
  628. libc: [musl]
  629. "@rollup/rollup-linux-powerpc64le-gnu@4.27.3":
  630. resolution:
  631. {
  632. integrity: sha512-v2M/mPvVUKVOKITa0oCFksnQQ/TqGrT+yD0184/cWHIu0LoIuYHwox0Pm3ccXEz8cEQDLk6FPKd1CCm+PlsISw==,
  633. }
  634. cpu: [ppc64]
  635. os: [linux]
  636. libc: [glibc]
  637. "@rollup/rollup-linux-riscv64-gnu@4.27.3":
  638. resolution:
  639. {
  640. integrity: sha512-LdrI4Yocb1a/tFVkzmOE5WyYRgEBOyEhWYJe4gsDWDiwnjYKjNs7PS6SGlTDB7maOHF4kxevsuNBl2iOcj3b4A==,
  641. }
  642. cpu: [riscv64]
  643. os: [linux]
  644. libc: [glibc]
  645. "@rollup/rollup-linux-s390x-gnu@4.27.3":
  646. resolution:
  647. {
  648. integrity: sha512-d4wVu6SXij/jyiwPvI6C4KxdGzuZOvJ6y9VfrcleHTwo68fl8vZC5ZYHsCVPUi4tndCfMlFniWgwonQ5CUpQcA==,
  649. }
  650. cpu: [s390x]
  651. os: [linux]
  652. libc: [glibc]
  653. "@rollup/rollup-linux-x64-gnu@4.27.3":
  654. resolution:
  655. {
  656. integrity: sha512-/6bn6pp1fsCGEY5n3yajmzZQAh+mW4QPItbiWxs69zskBzJuheb3tNynEjL+mKOsUSFK11X4LYF2BwwXnzWleA==,
  657. }
  658. cpu: [x64]
  659. os: [linux]
  660. libc: [glibc]
  661. "@rollup/rollup-linux-x64-musl@4.27.3":
  662. resolution:
  663. {
  664. integrity: sha512-nBXOfJds8OzUT1qUreT/en3eyOXd2EH5b0wr2bVB5999qHdGKkzGzIyKYaKj02lXk6wpN71ltLIaQpu58YFBoQ==,
  665. }
  666. cpu: [x64]
  667. os: [linux]
  668. libc: [musl]
  669. "@rollup/rollup-win32-arm64-msvc@4.27.3":
  670. resolution:
  671. {
  672. integrity: sha512-ogfbEVQgIZOz5WPWXF2HVb6En+kWzScuxJo/WdQTqEgeyGkaa2ui5sQav9Zkr7bnNCLK48uxmmK0TySm22eiuw==,
  673. }
  674. cpu: [arm64]
  675. os: [win32]
  676. "@rollup/rollup-win32-ia32-msvc@4.27.3":
  677. resolution:
  678. {
  679. integrity: sha512-ecE36ZBMLINqiTtSNQ1vzWc5pXLQHlf/oqGp/bSbi7iedcjcNb6QbCBNG73Euyy2C+l/fn8qKWEwxr+0SSfs3w==,
  680. }
  681. cpu: [ia32]
  682. os: [win32]
  683. "@rollup/rollup-win32-x64-msvc@4.27.3":
  684. resolution:
  685. {
  686. integrity: sha512-vliZLrDmYKyaUoMzEbMTg2JkerfBjn03KmAw9CykO0Zzkzoyd7o3iZNam/TpyWNjNT+Cz2iO3P9Smv2wgrR+Eg==,
  687. }
  688. cpu: [x64]
  689. os: [win32]
  690. "@types/estree@1.0.6":
  691. resolution:
  692. {
  693. integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==,
  694. }
  695. "@types/json-schema@7.0.15":
  696. resolution:
  697. {
  698. integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==,
  699. }
  700. "@types/node@22.9.0":
  701. resolution:
  702. {
  703. integrity: sha512-vuyHg81vvWA1Z1ELfvLko2c8f34gyA0zaic0+Rllc5lbCnbSyuvb2Oxpm6TAUAC/2xZN3QGqxBNggD1nNR2AfQ==,
  704. }
  705. "@typescript-eslint/eslint-plugin@8.15.0":
  706. resolution:
  707. {
  708. integrity: sha512-+zkm9AR1Ds9uLWN3fkoeXgFppaQ+uEVtfOV62dDmsy9QCNqlRHWNEck4yarvRNrvRcHQLGfqBNui3cimoz8XAg==,
  709. }
  710. engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
  711. peerDependencies:
  712. "@typescript-eslint/parser": ^8.0.0 || ^8.0.0-alpha.0
  713. eslint: ^8.57.0 || ^9.0.0
  714. typescript: "*"
  715. peerDependenciesMeta:
  716. typescript:
  717. optional: true
  718. "@typescript-eslint/parser@8.15.0":
  719. resolution:
  720. {
  721. integrity: sha512-7n59qFpghG4uazrF9qtGKBZXn7Oz4sOMm8dwNWDQY96Xlm2oX67eipqcblDj+oY1lLCbf1oltMZFpUso66Kl1A==,
  722. }
  723. engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
  724. peerDependencies:
  725. eslint: ^8.57.0 || ^9.0.0
  726. typescript: "*"
  727. peerDependenciesMeta:
  728. typescript:
  729. optional: true
  730. "@typescript-eslint/scope-manager@8.15.0":
  731. resolution:
  732. {
  733. integrity: sha512-QRGy8ADi4J7ii95xz4UoiymmmMd/zuy9azCaamnZ3FM8T5fZcex8UfJcjkiEZjJSztKfEBe3dZ5T/5RHAmw2mA==,
  734. }
  735. engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
  736. "@typescript-eslint/type-utils@8.15.0":
  737. resolution:
  738. {
  739. integrity: sha512-UU6uwXDoI3JGSXmcdnP5d8Fffa2KayOhUUqr/AiBnG1Gl7+7ut/oyagVeSkh7bxQ0zSXV9ptRh/4N15nkCqnpw==,
  740. }
  741. engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
  742. peerDependencies:
  743. eslint: ^8.57.0 || ^9.0.0
  744. typescript: "*"
  745. peerDependenciesMeta:
  746. typescript:
  747. optional: true
  748. "@typescript-eslint/types@8.15.0":
  749. resolution:
  750. {
  751. integrity: sha512-n3Gt8Y/KyJNe0S3yDCD2RVKrHBC4gTUcLTebVBXacPy091E6tNspFLKRXlk3hwT4G55nfr1n2AdFqi/XMxzmPQ==,
  752. }
  753. engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
  754. "@typescript-eslint/typescript-estree@8.15.0":
  755. resolution:
  756. {
  757. integrity: sha512-1eMp2JgNec/niZsR7ioFBlsh/Fk0oJbhaqO0jRyQBMgkz7RrFfkqF9lYYmBoGBaSiLnu8TAPQTwoTUiSTUW9dg==,
  758. }
  759. engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
  760. peerDependencies:
  761. typescript: "*"
  762. peerDependenciesMeta:
  763. typescript:
  764. optional: true
  765. "@typescript-eslint/utils@8.15.0":
  766. resolution:
  767. {
  768. integrity: sha512-k82RI9yGhr0QM3Dnq+egEpz9qB6Un+WLYhmoNcvl8ltMEededhh7otBVVIDDsEEttauwdY/hQoSsOv13lxrFzQ==,
  769. }
  770. engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
  771. peerDependencies:
  772. eslint: ^8.57.0 || ^9.0.0
  773. typescript: "*"
  774. peerDependenciesMeta:
  775. typescript:
  776. optional: true
  777. "@typescript-eslint/visitor-keys@8.15.0":
  778. resolution:
  779. {
  780. integrity: sha512-h8vYOulWec9LhpwfAdZf2bjr8xIp0KNKnpgqSz0qqYYKAW/QZKw3ktRndbiAtUz4acH4QLQavwZBYCc0wulA/Q==,
  781. }
  782. engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
  783. "@vitejs/plugin-vue@5.2.0":
  784. resolution:
  785. {
  786. integrity: sha512-7n7KdUEtx/7Yl7I/WVAMZ1bEb0eVvXF3ummWTeLcs/9gvo9pJhuLdouSXGjdZ/MKD1acf1I272+X0RMua4/R3g==,
  787. }
  788. engines: { node: ^18.0.0 || >=20.0.0 }
  789. peerDependencies:
  790. vite: ^5.0.0
  791. vue: ^3.2.25
  792. "@volar/language-core@2.4.10":
  793. resolution:
  794. {
  795. integrity: sha512-hG3Z13+nJmGaT+fnQzAkS0hjJRa2FCeqZt6Bd+oGNhUkQ+mTFsDETg5rqUTxyzIh5pSOGY7FHCWUS8G82AzLCA==,
  796. }
  797. "@volar/source-map@2.4.10":
  798. resolution:
  799. {
  800. integrity: sha512-OCV+b5ihV0RF3A7vEvNyHPi4G4kFa6ukPmyVocmqm5QzOd8r5yAtiNvaPEjl8dNvgC/lj4JPryeeHLdXd62rWA==,
  801. }
  802. "@volar/typescript@2.4.10":
  803. resolution:
  804. {
  805. integrity: sha512-F8ZtBMhSXyYKuBfGpYwqA5rsONnOwAVvjyE7KPYJ7wgZqo2roASqNWUnianOomJX5u1cxeRooHV59N0PhvEOgw==,
  806. }
  807. "@vue/compiler-core@3.5.13":
  808. resolution:
  809. {
  810. integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==,
  811. }
  812. "@vue/compiler-dom@3.5.13":
  813. resolution:
  814. {
  815. integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==,
  816. }
  817. "@vue/compiler-sfc@3.5.13":
  818. resolution:
  819. {
  820. integrity: sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==,
  821. }
  822. "@vue/compiler-ssr@3.5.13":
  823. resolution:
  824. {
  825. integrity: sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==,
  826. }
  827. "@vue/compiler-vue2@2.7.16":
  828. resolution:
  829. {
  830. integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==,
  831. }
  832. "@vue/language-core@2.1.10":
  833. resolution:
  834. {
  835. integrity: sha512-DAI289d0K3AB5TUG3xDp9OuQ71CnrujQwJrQnfuZDwo6eGNf0UoRlPuaVNO+Zrn65PC3j0oB2i7mNmVPggeGeQ==,
  836. }
  837. peerDependencies:
  838. typescript: "*"
  839. peerDependenciesMeta:
  840. typescript:
  841. optional: true
  842. "@vue/reactivity@3.5.13":
  843. resolution:
  844. {
  845. integrity: sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==,
  846. }
  847. "@vue/runtime-core@3.5.13":
  848. resolution:
  849. {
  850. integrity: sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==,
  851. }
  852. "@vue/runtime-dom@3.5.13":
  853. resolution:
  854. {
  855. integrity: sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==,
  856. }
  857. "@vue/server-renderer@3.5.13":
  858. resolution:
  859. {
  860. integrity: sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==,
  861. }
  862. peerDependencies:
  863. vue: 3.5.13
  864. "@vue/shared@3.5.13":
  865. resolution:
  866. {
  867. integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==,
  868. }
  869. acorn-jsx@5.3.2:
  870. resolution:
  871. {
  872. integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==,
  873. }
  874. peerDependencies:
  875. acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
  876. acorn@8.14.0:
  877. resolution:
  878. {
  879. integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==,
  880. }
  881. engines: { node: ">=0.4.0" }
  882. hasBin: true
  883. ajv@6.12.6:
  884. resolution:
  885. {
  886. integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==,
  887. }
  888. ajv@8.17.1:
  889. resolution:
  890. {
  891. integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==,
  892. }
  893. alien-signals@0.2.2:
  894. resolution:
  895. {
  896. integrity: sha512-cZIRkbERILsBOXTQmMrxc9hgpxglstn69zm+F1ARf4aPAzdAFYd6sBq87ErO0Fj3DV94tglcyHG5kQz9nDC/8A==,
  897. }
  898. ansi-regex@5.0.1:
  899. resolution:
  900. {
  901. integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==,
  902. }
  903. engines: { node: ">=8" }
  904. ansi-styles@4.3.0:
  905. resolution:
  906. {
  907. integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==,
  908. }
  909. engines: { node: ">=8" }
  910. argparse@2.0.1:
  911. resolution:
  912. {
  913. integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==,
  914. }
  915. array-union@2.1.0:
  916. resolution:
  917. {
  918. integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==,
  919. }
  920. engines: { node: ">=8" }
  921. astral-regex@2.0.0:
  922. resolution:
  923. {
  924. integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==,
  925. }
  926. engines: { node: ">=8" }
  927. balanced-match@1.0.2:
  928. resolution:
  929. {
  930. integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==,
  931. }
  932. balanced-match@2.0.0:
  933. resolution:
  934. {
  935. integrity: sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==,
  936. }
  937. boolbase@1.0.0:
  938. resolution:
  939. {
  940. integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==,
  941. }
  942. brace-expansion@1.1.11:
  943. resolution:
  944. {
  945. integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==,
  946. }
  947. brace-expansion@2.0.1:
  948. resolution:
  949. {
  950. integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==,
  951. }
  952. braces@3.0.3:
  953. resolution:
  954. {
  955. integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==,
  956. }
  957. engines: { node: ">=8" }
  958. callsites@3.1.0:
  959. resolution:
  960. {
  961. integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==,
  962. }
  963. engines: { node: ">=6" }
  964. chalk@4.1.2:
  965. resolution:
  966. {
  967. integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==,
  968. }
  969. engines: { node: ">=10" }
  970. chokidar@4.0.1:
  971. resolution:
  972. {
  973. integrity: sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==,
  974. }
  975. engines: { node: ">= 14.16.0" }
  976. color-convert@2.0.1:
  977. resolution:
  978. {
  979. integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==,
  980. }
  981. engines: { node: ">=7.0.0" }
  982. color-name@1.1.4:
  983. resolution:
  984. {
  985. integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==,
  986. }
  987. colord@2.9.3:
  988. resolution:
  989. {
  990. integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==,
  991. }
  992. concat-map@0.0.1:
  993. resolution:
  994. {
  995. integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==,
  996. }
  997. cosmiconfig@9.0.0:
  998. resolution:
  999. {
  1000. integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==,
  1001. }
  1002. engines: { node: ">=14" }
  1003. peerDependencies:
  1004. typescript: ">=4.9.5"
  1005. peerDependenciesMeta:
  1006. typescript:
  1007. optional: true
  1008. cross-spawn@7.0.6:
  1009. resolution:
  1010. {
  1011. integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==,
  1012. }
  1013. engines: { node: ">= 8" }
  1014. css-functions-list@3.2.3:
  1015. resolution:
  1016. {
  1017. integrity: sha512-IQOkD3hbR5KrN93MtcYuad6YPuTSUhntLHDuLEbFWE+ff2/XSZNdZG+LcbbIW5AXKg/WFIfYItIzVoHngHXZzA==,
  1018. }
  1019. engines: { node: ">=12 || >=16" }
  1020. css-tree@3.0.1:
  1021. resolution:
  1022. {
  1023. integrity: sha512-8Fxxv+tGhORlshCdCwnNJytvlvq46sOLSYEx2ZIGurahWvMucSRnyjPA3AmrMq4VPRYbHVpWj5VkiVasrM2H4Q==,
  1024. }
  1025. engines: { node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0 }
  1026. cssesc@3.0.0:
  1027. resolution:
  1028. {
  1029. integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==,
  1030. }
  1031. engines: { node: ">=4" }
  1032. hasBin: true
  1033. csstype@3.1.3:
  1034. resolution:
  1035. {
  1036. integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==,
  1037. }
  1038. de-indent@1.0.2:
  1039. resolution:
  1040. {
  1041. integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==,
  1042. }
  1043. debug@4.3.7:
  1044. resolution:
  1045. {
  1046. integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==,
  1047. }
  1048. engines: { node: ">=6.0" }
  1049. peerDependencies:
  1050. supports-color: "*"
  1051. peerDependenciesMeta:
  1052. supports-color:
  1053. optional: true
  1054. deep-is@0.1.4:
  1055. resolution:
  1056. {
  1057. integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==,
  1058. }
  1059. detect-libc@1.0.3:
  1060. resolution:
  1061. {
  1062. integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==,
  1063. }
  1064. engines: { node: ">=0.10" }
  1065. hasBin: true
  1066. dir-glob@3.0.1:
  1067. resolution:
  1068. {
  1069. integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==,
  1070. }
  1071. engines: { node: ">=8" }
  1072. dom-serializer@2.0.0:
  1073. resolution:
  1074. {
  1075. integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==,
  1076. }
  1077. domelementtype@2.3.0:
  1078. resolution:
  1079. {
  1080. integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==,
  1081. }
  1082. domhandler@5.0.3:
  1083. resolution:
  1084. {
  1085. integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==,
  1086. }
  1087. engines: { node: ">= 4" }
  1088. domutils@3.1.0:
  1089. resolution:
  1090. {
  1091. integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==,
  1092. }
  1093. emoji-regex@8.0.0:
  1094. resolution:
  1095. {
  1096. integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==,
  1097. }
  1098. entities@4.5.0:
  1099. resolution:
  1100. {
  1101. integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==,
  1102. }
  1103. engines: { node: ">=0.12" }
  1104. env-paths@2.2.1:
  1105. resolution:
  1106. {
  1107. integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==,
  1108. }
  1109. engines: { node: ">=6" }
  1110. error-ex@1.3.2:
  1111. resolution:
  1112. {
  1113. integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==,
  1114. }
  1115. esbuild@0.21.5:
  1116. resolution:
  1117. {
  1118. integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==,
  1119. }
  1120. engines: { node: ">=12" }
  1121. hasBin: true
  1122. escape-string-regexp@4.0.0:
  1123. resolution:
  1124. {
  1125. integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==,
  1126. }
  1127. engines: { node: ">=10" }
  1128. eslint-plugin-vue@9.31.0:
  1129. resolution:
  1130. {
  1131. integrity: sha512-aYMUCgivhz1o4tLkRHj5oq9YgYPM4/EJc0M7TAKRLCUA5OYxRLAhYEVD2nLtTwLyixEFI+/QXSvKU9ESZFgqjQ==,
  1132. }
  1133. engines: { node: ^14.17.0 || >=16.0.0 }
  1134. peerDependencies:
  1135. eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
  1136. eslint-scope@7.2.2:
  1137. resolution:
  1138. {
  1139. integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==,
  1140. }
  1141. engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
  1142. eslint-scope@8.2.0:
  1143. resolution:
  1144. {
  1145. integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==,
  1146. }
  1147. engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
  1148. eslint-visitor-keys@3.4.3:
  1149. resolution:
  1150. {
  1151. integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==,
  1152. }
  1153. engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
  1154. eslint-visitor-keys@4.2.0:
  1155. resolution:
  1156. {
  1157. integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==,
  1158. }
  1159. engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
  1160. eslint@9.15.0:
  1161. resolution:
  1162. {
  1163. integrity: sha512-7CrWySmIibCgT1Os28lUU6upBshZ+GxybLOrmRzi08kS8MBuO8QA7pXEgYgY5W8vK3e74xv0lpjo9DbaGU9Rkw==,
  1164. }
  1165. engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
  1166. hasBin: true
  1167. peerDependencies:
  1168. jiti: "*"
  1169. peerDependenciesMeta:
  1170. jiti:
  1171. optional: true
  1172. espree@10.3.0:
  1173. resolution:
  1174. {
  1175. integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==,
  1176. }
  1177. engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
  1178. espree@9.6.1:
  1179. resolution:
  1180. {
  1181. integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==,
  1182. }
  1183. engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
  1184. esquery@1.6.0:
  1185. resolution:
  1186. {
  1187. integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==,
  1188. }
  1189. engines: { node: ">=0.10" }
  1190. esrecurse@4.3.0:
  1191. resolution:
  1192. {
  1193. integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==,
  1194. }
  1195. engines: { node: ">=4.0" }
  1196. estraverse@5.3.0:
  1197. resolution:
  1198. {
  1199. integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==,
  1200. }
  1201. engines: { node: ">=4.0" }
  1202. estree-walker@2.0.2:
  1203. resolution:
  1204. {
  1205. integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==,
  1206. }
  1207. esutils@2.0.3:
  1208. resolution:
  1209. {
  1210. integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==,
  1211. }
  1212. engines: { node: ">=0.10.0" }
  1213. fast-deep-equal@3.1.3:
  1214. resolution:
  1215. {
  1216. integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==,
  1217. }
  1218. fast-glob@3.3.2:
  1219. resolution:
  1220. {
  1221. integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==,
  1222. }
  1223. engines: { node: ">=8.6.0" }
  1224. fast-json-stable-stringify@2.1.0:
  1225. resolution:
  1226. {
  1227. integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==,
  1228. }
  1229. fast-levenshtein@2.0.6:
  1230. resolution:
  1231. {
  1232. integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==,
  1233. }
  1234. fast-uri@3.0.3:
  1235. resolution:
  1236. {
  1237. integrity: sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==,
  1238. }
  1239. fastest-levenshtein@1.0.16:
  1240. resolution:
  1241. {
  1242. integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==,
  1243. }
  1244. engines: { node: ">= 4.9.1" }
  1245. fastq@1.17.1:
  1246. resolution:
  1247. {
  1248. integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==,
  1249. }
  1250. file-entry-cache@8.0.0:
  1251. resolution:
  1252. {
  1253. integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==,
  1254. }
  1255. engines: { node: ">=16.0.0" }
  1256. file-entry-cache@9.1.0:
  1257. resolution:
  1258. {
  1259. integrity: sha512-/pqPFG+FdxWQj+/WSuzXSDaNzxgTLr/OrR1QuqfEZzDakpdYE70PwUxL7BPUa8hpjbvY1+qvCl8k+8Tq34xJgg==,
  1260. }
  1261. engines: { node: ">=18" }
  1262. fill-range@7.1.1:
  1263. resolution:
  1264. {
  1265. integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==,
  1266. }
  1267. engines: { node: ">=8" }
  1268. find-up@5.0.0:
  1269. resolution:
  1270. {
  1271. integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==,
  1272. }
  1273. engines: { node: ">=10" }
  1274. flat-cache@4.0.1:
  1275. resolution:
  1276. {
  1277. integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==,
  1278. }
  1279. engines: { node: ">=16" }
  1280. flat-cache@5.0.0:
  1281. resolution:
  1282. {
  1283. integrity: sha512-JrqFmyUl2PnPi1OvLyTVHnQvwQ0S+e6lGSwu8OkAZlSaNIZciTY2H/cOOROxsBA1m/LZNHDsqAgDZt6akWcjsQ==,
  1284. }
  1285. engines: { node: ">=18" }
  1286. flatted@3.3.2:
  1287. resolution:
  1288. {
  1289. integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==,
  1290. }
  1291. fsevents@2.3.3:
  1292. resolution:
  1293. {
  1294. integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==,
  1295. }
  1296. engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 }
  1297. os: [darwin]
  1298. glob-parent@5.1.2:
  1299. resolution:
  1300. {
  1301. integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==,
  1302. }
  1303. engines: { node: ">= 6" }
  1304. glob-parent@6.0.2:
  1305. resolution:
  1306. {
  1307. integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==,
  1308. }
  1309. engines: { node: ">=10.13.0" }
  1310. global-modules@2.0.0:
  1311. resolution:
  1312. {
  1313. integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==,
  1314. }
  1315. engines: { node: ">=6" }
  1316. global-prefix@3.0.0:
  1317. resolution:
  1318. {
  1319. integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==,
  1320. }
  1321. engines: { node: ">=6" }
  1322. globals@13.24.0:
  1323. resolution:
  1324. {
  1325. integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==,
  1326. }
  1327. engines: { node: ">=8" }
  1328. globals@14.0.0:
  1329. resolution:
  1330. {
  1331. integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==,
  1332. }
  1333. engines: { node: ">=18" }
  1334. globals@15.12.0:
  1335. resolution:
  1336. {
  1337. integrity: sha512-1+gLErljJFhbOVyaetcwJiJ4+eLe45S2E7P5UiZ9xGfeq3ATQf5DOv9G7MH3gGbKQLkzmNh2DxfZwLdw+j6oTQ==,
  1338. }
  1339. engines: { node: ">=18" }
  1340. globby@11.1.0:
  1341. resolution:
  1342. {
  1343. integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==,
  1344. }
  1345. engines: { node: ">=10" }
  1346. globjoin@0.1.4:
  1347. resolution:
  1348. {
  1349. integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==,
  1350. }
  1351. graphemer@1.4.0:
  1352. resolution:
  1353. {
  1354. integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==,
  1355. }
  1356. has-flag@4.0.0:
  1357. resolution:
  1358. {
  1359. integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==,
  1360. }
  1361. engines: { node: ">=8" }
  1362. he@1.2.0:
  1363. resolution:
  1364. {
  1365. integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==,
  1366. }
  1367. hasBin: true
  1368. html-tags@3.3.1:
  1369. resolution:
  1370. {
  1371. integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==,
  1372. }
  1373. engines: { node: ">=8" }
  1374. htmlparser2@8.0.2:
  1375. resolution:
  1376. {
  1377. integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==,
  1378. }
  1379. husky@9.1.7:
  1380. resolution:
  1381. {
  1382. integrity: sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==,
  1383. }
  1384. engines: { node: ">=18" }
  1385. hasBin: true
  1386. ignore@5.3.2:
  1387. resolution:
  1388. {
  1389. integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==,
  1390. }
  1391. engines: { node: ">= 4" }
  1392. ignore@6.0.2:
  1393. resolution:
  1394. {
  1395. integrity: sha512-InwqeHHN2XpumIkMvpl/DCJVrAHgCsG5+cn1XlnLWGwtZBm8QJfSusItfrwx81CTp5agNZqpKU2J/ccC5nGT4A==,
  1396. }
  1397. engines: { node: ">= 4" }
  1398. immutable@5.0.2:
  1399. resolution:
  1400. {
  1401. integrity: sha512-1NU7hWZDkV7hJ4PJ9dur9gTNQ4ePNPN4k9/0YhwjzykTi/+3Q5pF93YU5QoVj8BuOnhLgaY8gs0U2pj4kSYVcw==,
  1402. }
  1403. import-fresh@3.3.0:
  1404. resolution:
  1405. {
  1406. integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==,
  1407. }
  1408. engines: { node: ">=6" }
  1409. imurmurhash@0.1.4:
  1410. resolution:
  1411. {
  1412. integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==,
  1413. }
  1414. engines: { node: ">=0.8.19" }
  1415. ini@1.3.8:
  1416. resolution:
  1417. {
  1418. integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==,
  1419. }
  1420. is-arrayish@0.2.1:
  1421. resolution:
  1422. {
  1423. integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==,
  1424. }
  1425. is-extglob@2.1.1:
  1426. resolution:
  1427. {
  1428. integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==,
  1429. }
  1430. engines: { node: ">=0.10.0" }
  1431. is-fullwidth-code-point@3.0.0:
  1432. resolution:
  1433. {
  1434. integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==,
  1435. }
  1436. engines: { node: ">=8" }
  1437. is-glob@4.0.3:
  1438. resolution:
  1439. {
  1440. integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==,
  1441. }
  1442. engines: { node: ">=0.10.0" }
  1443. is-number@7.0.0:
  1444. resolution:
  1445. {
  1446. integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==,
  1447. }
  1448. engines: { node: ">=0.12.0" }
  1449. is-plain-object@5.0.0:
  1450. resolution:
  1451. {
  1452. integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==,
  1453. }
  1454. engines: { node: ">=0.10.0" }
  1455. isexe@2.0.0:
  1456. resolution:
  1457. {
  1458. integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==,
  1459. }
  1460. js-tokens@4.0.0:
  1461. resolution:
  1462. {
  1463. integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==,
  1464. }
  1465. js-tokens@9.0.0:
  1466. resolution:
  1467. {
  1468. integrity: sha512-WriZw1luRMlmV3LGJaR6QOJjWwgLUTf89OwT2lUOyjX2dJGBwgmIkbcz+7WFZjrZM635JOIR517++e/67CP9dQ==,
  1469. }
  1470. js-yaml@4.1.0:
  1471. resolution:
  1472. {
  1473. integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==,
  1474. }
  1475. hasBin: true
  1476. json-buffer@3.0.1:
  1477. resolution:
  1478. {
  1479. integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==,
  1480. }
  1481. json-parse-even-better-errors@2.3.1:
  1482. resolution:
  1483. {
  1484. integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==,
  1485. }
  1486. json-schema-traverse@0.4.1:
  1487. resolution:
  1488. {
  1489. integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==,
  1490. }
  1491. json-schema-traverse@1.0.0:
  1492. resolution:
  1493. {
  1494. integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==,
  1495. }
  1496. json-stable-stringify-without-jsonify@1.0.1:
  1497. resolution:
  1498. {
  1499. integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==,
  1500. }
  1501. keyv@4.5.4:
  1502. resolution:
  1503. {
  1504. integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==,
  1505. }
  1506. kind-of@6.0.3:
  1507. resolution:
  1508. {
  1509. integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==,
  1510. }
  1511. engines: { node: ">=0.10.0" }
  1512. known-css-properties@0.34.0:
  1513. resolution:
  1514. {
  1515. integrity: sha512-tBECoUqNFbyAY4RrbqsBQqDFpGXAEbdD5QKr8kACx3+rnArmuuR22nKQWKazvp07N9yjTyDZaw/20UIH8tL9DQ==,
  1516. }
  1517. known-css-properties@0.35.0:
  1518. resolution:
  1519. {
  1520. integrity: sha512-a/RAk2BfKk+WFGhhOCAYqSiFLc34k8Mt/6NWRI4joER0EYUzXIcFivjjnoD3+XU1DggLn/tZc3DOAgke7l8a4A==,
  1521. }
  1522. levn@0.4.1:
  1523. resolution:
  1524. {
  1525. integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==,
  1526. }
  1527. engines: { node: ">= 0.8.0" }
  1528. lines-and-columns@1.2.4:
  1529. resolution:
  1530. {
  1531. integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==,
  1532. }
  1533. locate-path@6.0.0:
  1534. resolution:
  1535. {
  1536. integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==,
  1537. }
  1538. engines: { node: ">=10" }
  1539. lodash.merge@4.6.2:
  1540. resolution:
  1541. {
  1542. integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==,
  1543. }
  1544. lodash.truncate@4.4.2:
  1545. resolution:
  1546. {
  1547. integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==,
  1548. }
  1549. lodash@4.17.21:
  1550. resolution:
  1551. {
  1552. integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==,
  1553. }
  1554. magic-string@0.30.13:
  1555. resolution:
  1556. {
  1557. integrity: sha512-8rYBO+MsWkgjDSOvLomYnzhdwEG51olQ4zL5KXnNJWV5MNmrb4rTZdrtkhxjnD/QyZUqR/Z/XDsUs/4ej2nx0g==,
  1558. }
  1559. mathml-tag-names@2.1.3:
  1560. resolution:
  1561. {
  1562. integrity: sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==,
  1563. }
  1564. mdn-data@2.12.1:
  1565. resolution:
  1566. {
  1567. integrity: sha512-rsfnCbOHjqrhWxwt5/wtSLzpoKTzW7OXdT5lLOIH1OTYhWu9rRJveGq0sKvDZODABH7RX+uoR+DYcpFnq4Tf6Q==,
  1568. }
  1569. mdn-data@2.12.2:
  1570. resolution:
  1571. {
  1572. integrity: sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==,
  1573. }
  1574. meow@13.2.0:
  1575. resolution:
  1576. {
  1577. integrity: sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==,
  1578. }
  1579. engines: { node: ">=18" }
  1580. merge2@1.4.1:
  1581. resolution:
  1582. {
  1583. integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==,
  1584. }
  1585. engines: { node: ">= 8" }
  1586. micromatch@4.0.8:
  1587. resolution:
  1588. {
  1589. integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==,
  1590. }
  1591. engines: { node: ">=8.6" }
  1592. minimatch@3.1.2:
  1593. resolution:
  1594. {
  1595. integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==,
  1596. }
  1597. minimatch@9.0.5:
  1598. resolution:
  1599. {
  1600. integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==,
  1601. }
  1602. engines: { node: ">=16 || 14 >=14.17" }
  1603. ms@2.1.3:
  1604. resolution:
  1605. {
  1606. integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==,
  1607. }
  1608. muggle-string@0.4.1:
  1609. resolution:
  1610. {
  1611. integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==,
  1612. }
  1613. nanoid@3.3.7:
  1614. resolution:
  1615. {
  1616. integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==,
  1617. }
  1618. engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 }
  1619. hasBin: true
  1620. natural-compare@1.4.0:
  1621. resolution:
  1622. {
  1623. integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==,
  1624. }
  1625. node-addon-api@7.1.1:
  1626. resolution:
  1627. {
  1628. integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==,
  1629. }
  1630. normalize-path@3.0.0:
  1631. resolution:
  1632. {
  1633. integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==,
  1634. }
  1635. engines: { node: ">=0.10.0" }
  1636. nth-check@2.1.1:
  1637. resolution:
  1638. {
  1639. integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==,
  1640. }
  1641. optionator@0.9.4:
  1642. resolution:
  1643. {
  1644. integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==,
  1645. }
  1646. engines: { node: ">= 0.8.0" }
  1647. p-limit@3.1.0:
  1648. resolution:
  1649. {
  1650. integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==,
  1651. }
  1652. engines: { node: ">=10" }
  1653. p-locate@5.0.0:
  1654. resolution:
  1655. {
  1656. integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==,
  1657. }
  1658. engines: { node: ">=10" }
  1659. parent-module@1.0.1:
  1660. resolution:
  1661. {
  1662. integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==,
  1663. }
  1664. engines: { node: ">=6" }
  1665. parse-json@5.2.0:
  1666. resolution:
  1667. {
  1668. integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==,
  1669. }
  1670. engines: { node: ">=8" }
  1671. path-browserify@1.0.1:
  1672. resolution:
  1673. {
  1674. integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==,
  1675. }
  1676. path-exists@4.0.0:
  1677. resolution:
  1678. {
  1679. integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==,
  1680. }
  1681. engines: { node: ">=8" }
  1682. path-key@3.1.1:
  1683. resolution:
  1684. {
  1685. integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==,
  1686. }
  1687. engines: { node: ">=8" }
  1688. path-type@4.0.0:
  1689. resolution:
  1690. {
  1691. integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==,
  1692. }
  1693. engines: { node: ">=8" }
  1694. picocolors@1.1.1:
  1695. resolution:
  1696. {
  1697. integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==,
  1698. }
  1699. picomatch@2.3.1:
  1700. resolution:
  1701. {
  1702. integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==,
  1703. }
  1704. engines: { node: ">=8.6" }
  1705. postcss-html@1.7.0:
  1706. resolution:
  1707. {
  1708. integrity: sha512-MfcMpSUIaR/nNgeVS8AyvyDugXlADjN9AcV7e5rDfrF1wduIAGSkL4q2+wgrZgA3sHVAHLDO9FuauHhZYW2nBw==,
  1709. }
  1710. engines: { node: ^12 || >=14 }
  1711. postcss-media-query-parser@0.2.3:
  1712. resolution:
  1713. {
  1714. integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==,
  1715. }
  1716. postcss-resolve-nested-selector@0.1.6:
  1717. resolution:
  1718. {
  1719. integrity: sha512-0sglIs9Wmkzbr8lQwEyIzlDOOC9bGmfVKcJTaxv3vMmd3uo4o4DerC3En0bnmgceeql9BfC8hRkp7cg0fjdVqw==,
  1720. }
  1721. postcss-safe-parser@6.0.0:
  1722. resolution:
  1723. {
  1724. integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==,
  1725. }
  1726. engines: { node: ">=12.0" }
  1727. peerDependencies:
  1728. postcss: ^8.3.3
  1729. postcss-safe-parser@7.0.1:
  1730. resolution:
  1731. {
  1732. integrity: sha512-0AioNCJZ2DPYz5ABT6bddIqlhgwhpHZ/l65YAYo0BCIn0xiDpsnTHz0gnoTGk0OXZW0JRs+cDwL8u/teRdz+8A==,
  1733. }
  1734. engines: { node: ">=18.0" }
  1735. peerDependencies:
  1736. postcss: ^8.4.31
  1737. postcss-scss@4.0.9:
  1738. resolution:
  1739. {
  1740. integrity: sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==,
  1741. }
  1742. engines: { node: ">=12.0" }
  1743. peerDependencies:
  1744. postcss: ^8.4.29
  1745. postcss-selector-parser@6.1.2:
  1746. resolution:
  1747. {
  1748. integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==,
  1749. }
  1750. engines: { node: ">=4" }
  1751. postcss-sorting@8.0.2:
  1752. resolution:
  1753. {
  1754. integrity: sha512-M9dkSrmU00t/jK7rF6BZSZauA5MAaBW4i5EnJXspMwt4iqTh/L9j6fgMnbElEOfyRyfLfVbIHj/R52zHzAPe1Q==,
  1755. }
  1756. peerDependencies:
  1757. postcss: ^8.4.20
  1758. postcss-value-parser@4.2.0:
  1759. resolution:
  1760. {
  1761. integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==,
  1762. }
  1763. postcss@8.4.49:
  1764. resolution:
  1765. {
  1766. integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==,
  1767. }
  1768. engines: { node: ^10 || ^12 || >=14 }
  1769. prelude-ls@1.2.1:
  1770. resolution:
  1771. {
  1772. integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==,
  1773. }
  1774. engines: { node: ">= 0.8.0" }
  1775. prettier@3.3.3:
  1776. resolution:
  1777. {
  1778. integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==,
  1779. }
  1780. engines: { node: ">=14" }
  1781. hasBin: true
  1782. punycode@2.3.1:
  1783. resolution:
  1784. {
  1785. integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==,
  1786. }
  1787. engines: { node: ">=6" }
  1788. queue-microtask@1.2.3:
  1789. resolution:
  1790. {
  1791. integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==,
  1792. }
  1793. readdirp@4.0.2:
  1794. resolution:
  1795. {
  1796. integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==,
  1797. }
  1798. engines: { node: ">= 14.16.0" }
  1799. require-from-string@2.0.2:
  1800. resolution:
  1801. {
  1802. integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==,
  1803. }
  1804. engines: { node: ">=0.10.0" }
  1805. resolve-from@4.0.0:
  1806. resolution:
  1807. {
  1808. integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==,
  1809. }
  1810. engines: { node: ">=4" }
  1811. resolve-from@5.0.0:
  1812. resolution:
  1813. {
  1814. integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==,
  1815. }
  1816. engines: { node: ">=8" }
  1817. reusify@1.0.4:
  1818. resolution:
  1819. {
  1820. integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==,
  1821. }
  1822. engines: { iojs: ">=1.0.0", node: ">=0.10.0" }
  1823. rollup@4.27.3:
  1824. resolution:
  1825. {
  1826. integrity: sha512-SLsCOnlmGt9VoZ9Ek8yBK8tAdmPHeppkw+Xa7yDlCEhDTvwYei03JlWo1fdc7YTfLZ4tD8riJCUyAgTbszk1fQ==,
  1827. }
  1828. engines: { node: ">=18.0.0", npm: ">=8.0.0" }
  1829. hasBin: true
  1830. run-parallel@1.2.0:
  1831. resolution:
  1832. {
  1833. integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==,
  1834. }
  1835. sass@1.81.0:
  1836. resolution:
  1837. {
  1838. integrity: sha512-Q4fOxRfhmv3sqCLoGfvrC9pRV8btc0UtqL9mN6Yrv6Qi9ScL55CVH1vlPP863ISLEEMNLLuu9P+enCeGHlnzhA==,
  1839. }
  1840. engines: { node: ">=14.0.0" }
  1841. hasBin: true
  1842. semver@7.6.3:
  1843. resolution:
  1844. {
  1845. integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==,
  1846. }
  1847. engines: { node: ">=10" }
  1848. hasBin: true
  1849. shebang-command@2.0.0:
  1850. resolution:
  1851. {
  1852. integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==,
  1853. }
  1854. engines: { node: ">=8" }
  1855. shebang-regex@3.0.0:
  1856. resolution:
  1857. {
  1858. integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==,
  1859. }
  1860. engines: { node: ">=8" }
  1861. signal-exit@4.1.0:
  1862. resolution:
  1863. {
  1864. integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==,
  1865. }
  1866. engines: { node: ">=14" }
  1867. slash@3.0.0:
  1868. resolution:
  1869. {
  1870. integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==,
  1871. }
  1872. engines: { node: ">=8" }
  1873. slice-ansi@4.0.0:
  1874. resolution:
  1875. {
  1876. integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==,
  1877. }
  1878. engines: { node: ">=10" }
  1879. source-map-js@1.2.1:
  1880. resolution:
  1881. {
  1882. integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==,
  1883. }
  1884. engines: { node: ">=0.10.0" }
  1885. string-width@4.2.3:
  1886. resolution:
  1887. {
  1888. integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==,
  1889. }
  1890. engines: { node: ">=8" }
  1891. strip-ansi@6.0.1:
  1892. resolution:
  1893. {
  1894. integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==,
  1895. }
  1896. engines: { node: ">=8" }
  1897. strip-json-comments@3.1.1:
  1898. resolution:
  1899. {
  1900. integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==,
  1901. }
  1902. engines: { node: ">=8" }
  1903. stylelint-config-html@1.1.0:
  1904. resolution:
  1905. {
  1906. integrity: sha512-IZv4IVESjKLumUGi+HWeb7skgO6/g4VMuAYrJdlqQFndgbj6WJAXPhaysvBiXefX79upBdQVumgYcdd17gCpjQ==,
  1907. }
  1908. engines: { node: ^12 || >=14 }
  1909. peerDependencies:
  1910. postcss-html: ^1.0.0
  1911. stylelint: ">=14.0.0"
  1912. stylelint-config-prettier@9.0.5:
  1913. resolution:
  1914. {
  1915. integrity: sha512-U44lELgLZhbAD/xy/vncZ2Pq8sh2TnpiPvo38Ifg9+zeioR+LAkHu0i6YORIOxFafZoVg0xqQwex6e6F25S5XA==,
  1916. }
  1917. engines: { node: ">= 12" }
  1918. hasBin: true
  1919. peerDependencies:
  1920. stylelint: ">= 11.x < 15"
  1921. stylelint-config-recommended-scss@14.1.0:
  1922. resolution:
  1923. {
  1924. integrity: sha512-bhaMhh1u5dQqSsf6ri2GVWWQW5iUjBYgcHkh7SgDDn92ijoItC/cfO/W+fpXshgTQWhwFkP1rVcewcv4jaftRg==,
  1925. }
  1926. engines: { node: ">=18.12.0" }
  1927. peerDependencies:
  1928. postcss: ^8.3.3
  1929. stylelint: ^16.6.1
  1930. peerDependenciesMeta:
  1931. postcss:
  1932. optional: true
  1933. stylelint-config-recommended-vue@1.5.0:
  1934. resolution:
  1935. {
  1936. integrity: sha512-65TAK/clUqkNtkZLcuytoxU0URQYlml+30Nhop7sRkCZ/mtWdXt7T+spPSB3KMKlb+82aEVJ4OrcstyDBdbosg==,
  1937. }
  1938. engines: { node: ^12 || >=14 }
  1939. peerDependencies:
  1940. postcss-html: ^1.0.0
  1941. stylelint: ">=14.0.0"
  1942. stylelint-config-recommended@14.0.1:
  1943. resolution:
  1944. {
  1945. integrity: sha512-bLvc1WOz/14aPImu/cufKAZYfXs/A/owZfSMZ4N+16WGXLoX5lOir53M6odBxvhgmgdxCVnNySJmZKx73T93cg==,
  1946. }
  1947. engines: { node: ">=18.12.0" }
  1948. peerDependencies:
  1949. stylelint: ^16.1.0
  1950. stylelint-config-standard-scss@13.1.0:
  1951. resolution:
  1952. {
  1953. integrity: sha512-Eo5w7/XvwGHWkeGLtdm2FZLOMYoZl1omP2/jgFCXyl2x5yNz7/8vv4Tj6slHvMSSUNTaGoam/GAZ0ZhukvalfA==,
  1954. }
  1955. engines: { node: ">=18.12.0" }
  1956. peerDependencies:
  1957. postcss: ^8.3.3
  1958. stylelint: ^16.3.1
  1959. peerDependenciesMeta:
  1960. postcss:
  1961. optional: true
  1962. stylelint-config-standard-vue@1.0.0:
  1963. resolution:
  1964. {
  1965. integrity: sha512-wAzU7p6DSlo04pWfCbOcaMq09Nojt0FEsbdxhCBTdC7IguD9ZVl7FP/bvyA0HAHjZGC4JkW7m6WiQaoVMDSuFw==,
  1966. }
  1967. engines: { node: ^12 || >=14 }
  1968. peerDependencies:
  1969. postcss-html: ^1.0.0
  1970. stylelint: ">=14.0.0"
  1971. stylelint-config-standard@36.0.1:
  1972. resolution:
  1973. {
  1974. integrity: sha512-8aX8mTzJ6cuO8mmD5yon61CWuIM4UD8Q5aBcWKGSf6kg+EC3uhB+iOywpTK4ca6ZL7B49en8yanOFtUW0qNzyw==,
  1975. }
  1976. engines: { node: ">=18.12.0" }
  1977. peerDependencies:
  1978. stylelint: ^16.1.0
  1979. stylelint-order@6.0.4:
  1980. resolution:
  1981. {
  1982. integrity: sha512-0UuKo4+s1hgQ/uAxlYU4h0o0HS4NiQDud0NAUNI0aa8FJdmYHA5ZZTFHiV5FpmE3071e9pZx5j0QpVJW5zOCUA==,
  1983. }
  1984. peerDependencies:
  1985. stylelint: ^14.0.0 || ^15.0.0 || ^16.0.1
  1986. stylelint-scss@6.9.0:
  1987. resolution:
  1988. {
  1989. integrity: sha512-oWOR+g6ccagfrENecImGmorWWjVyWpt2R8bmkhOW8FkNNPGStZPQMqb8QWMW4Lwu9TyPqmyjHkkAsy3weqsnNw==,
  1990. }
  1991. engines: { node: ">=18.12.0" }
  1992. peerDependencies:
  1993. stylelint: ^16.0.2
  1994. stylelint@16.10.0:
  1995. resolution:
  1996. {
  1997. integrity: sha512-z/8X2rZ52dt2c0stVwI9QL2AFJhLhbPkyfpDFcizs200V/g7v+UYY6SNcB9hKOLcDDX/yGLDsY/pX08sLkz9xQ==,
  1998. }
  1999. engines: { node: ">=18.12.0" }
  2000. hasBin: true
  2001. supports-color@7.2.0:
  2002. resolution:
  2003. {
  2004. integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==,
  2005. }
  2006. engines: { node: ">=8" }
  2007. supports-hyperlinks@3.1.0:
  2008. resolution:
  2009. {
  2010. integrity: sha512-2rn0BZ+/f7puLOHZm1HOJfwBggfaHXUpPUSSG/SWM4TWp5KCfmNYwnC3hruy2rZlMnmWZ+QAGpZfchu3f3695A==,
  2011. }
  2012. engines: { node: ">=14.18" }
  2013. svg-tags@1.0.0:
  2014. resolution:
  2015. {
  2016. integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==,
  2017. }
  2018. table@6.8.2:
  2019. resolution:
  2020. {
  2021. integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==,
  2022. }
  2023. engines: { node: ">=10.0.0" }
  2024. to-regex-range@5.0.1:
  2025. resolution:
  2026. {
  2027. integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==,
  2028. }
  2029. engines: { node: ">=8.0" }
  2030. ts-api-utils@1.4.0:
  2031. resolution:
  2032. {
  2033. integrity: sha512-032cPxaEKwM+GT3vA5JXNzIaizx388rhsSW79vGRNGXfRRAdEAn2mvk36PvK5HnOchyWZ7afLEXqYCvPCrzuzQ==,
  2034. }
  2035. engines: { node: ">=16" }
  2036. peerDependencies:
  2037. typescript: ">=4.2.0"
  2038. type-check@0.4.0:
  2039. resolution:
  2040. {
  2041. integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==,
  2042. }
  2043. engines: { node: ">= 0.8.0" }
  2044. type-fest@0.20.2:
  2045. resolution:
  2046. {
  2047. integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==,
  2048. }
  2049. engines: { node: ">=10" }
  2050. typescript-eslint@8.15.0:
  2051. resolution:
  2052. {
  2053. integrity: sha512-wY4FRGl0ZI+ZU4Jo/yjdBu0lVTSML58pu6PgGtJmCufvzfV565pUF6iACQt092uFOd49iLOTX/sEVmHtbSrS+w==,
  2054. }
  2055. engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
  2056. peerDependencies:
  2057. eslint: ^8.57.0 || ^9.0.0
  2058. typescript: "*"
  2059. peerDependenciesMeta:
  2060. typescript:
  2061. optional: true
  2062. typescript@5.6.3:
  2063. resolution:
  2064. {
  2065. integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==,
  2066. }
  2067. engines: { node: ">=14.17" }
  2068. hasBin: true
  2069. undici-types@6.19.8:
  2070. resolution:
  2071. {
  2072. integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==,
  2073. }
  2074. uri-js@4.4.1:
  2075. resolution:
  2076. {
  2077. integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==,
  2078. }
  2079. util-deprecate@1.0.2:
  2080. resolution:
  2081. {
  2082. integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==,
  2083. }
  2084. vite@5.4.11:
  2085. resolution:
  2086. {
  2087. integrity: sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==,
  2088. }
  2089. engines: { node: ^18.0.0 || >=20.0.0 }
  2090. hasBin: true
  2091. peerDependencies:
  2092. "@types/node": ^18.0.0 || >=20.0.0
  2093. less: "*"
  2094. lightningcss: ^1.21.0
  2095. sass: "*"
  2096. sass-embedded: "*"
  2097. stylus: "*"
  2098. sugarss: "*"
  2099. terser: ^5.4.0
  2100. peerDependenciesMeta:
  2101. "@types/node":
  2102. optional: true
  2103. less:
  2104. optional: true
  2105. lightningcss:
  2106. optional: true
  2107. sass:
  2108. optional: true
  2109. sass-embedded:
  2110. optional: true
  2111. stylus:
  2112. optional: true
  2113. sugarss:
  2114. optional: true
  2115. terser:
  2116. optional: true
  2117. vscode-uri@3.0.8:
  2118. resolution:
  2119. {
  2120. integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==,
  2121. }
  2122. vue-eslint-parser@9.4.3:
  2123. resolution:
  2124. {
  2125. integrity: sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==,
  2126. }
  2127. engines: { node: ^14.17.0 || >=16.0.0 }
  2128. peerDependencies:
  2129. eslint: ">=6.0.0"
  2130. vue-tsc@2.1.10:
  2131. resolution:
  2132. {
  2133. integrity: sha512-RBNSfaaRHcN5uqVqJSZh++Gy/YUzryuv9u1aFWhsammDJXNtUiJMNoJ747lZcQ68wUQFx6E73y4FY3D8E7FGMA==,
  2134. }
  2135. hasBin: true
  2136. peerDependencies:
  2137. typescript: ">=5.0.0"
  2138. vue@3.5.13:
  2139. resolution:
  2140. {
  2141. integrity: sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==,
  2142. }
  2143. peerDependencies:
  2144. typescript: "*"
  2145. peerDependenciesMeta:
  2146. typescript:
  2147. optional: true
  2148. which@1.3.1:
  2149. resolution:
  2150. {
  2151. integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==,
  2152. }
  2153. hasBin: true
  2154. which@2.0.2:
  2155. resolution:
  2156. {
  2157. integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==,
  2158. }
  2159. engines: { node: ">= 8" }
  2160. hasBin: true
  2161. word-wrap@1.2.5:
  2162. resolution:
  2163. {
  2164. integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==,
  2165. }
  2166. engines: { node: ">=0.10.0" }
  2167. write-file-atomic@5.0.1:
  2168. resolution:
  2169. {
  2170. integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==,
  2171. }
  2172. engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
  2173. xml-name-validator@4.0.0:
  2174. resolution:
  2175. {
  2176. integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==,
  2177. }
  2178. engines: { node: ">=12" }
  2179. yocto-queue@0.1.0:
  2180. resolution:
  2181. {
  2182. integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==,
  2183. }
  2184. engines: { node: ">=10" }
  2185. snapshots:
  2186. "@babel/code-frame@7.26.2":
  2187. dependencies:
  2188. "@babel/helper-validator-identifier": 7.25.9
  2189. js-tokens: 4.0.0
  2190. picocolors: 1.1.1
  2191. "@babel/helper-string-parser@7.25.9": {}
  2192. "@babel/helper-validator-identifier@7.25.9": {}
  2193. "@babel/parser@7.26.2":
  2194. dependencies:
  2195. "@babel/types": 7.26.0
  2196. "@babel/types@7.26.0":
  2197. dependencies:
  2198. "@babel/helper-string-parser": 7.25.9
  2199. "@babel/helper-validator-identifier": 7.25.9
  2200. "@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3)":
  2201. dependencies:
  2202. "@csstools/css-tokenizer": 3.0.3
  2203. "@csstools/css-tokenizer@3.0.3": {}
  2204. "@csstools/media-query-list-parser@3.0.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)":
  2205. dependencies:
  2206. "@csstools/css-parser-algorithms": 3.0.4(@csstools/css-tokenizer@3.0.3)
  2207. "@csstools/css-tokenizer": 3.0.3
  2208. "@csstools/selector-specificity@4.0.0(postcss-selector-parser@6.1.2)":
  2209. dependencies:
  2210. postcss-selector-parser: 6.1.2
  2211. "@dual-bundle/import-meta-resolve@4.1.0": {}
  2212. "@esbuild/aix-ppc64@0.21.5":
  2213. optional: true
  2214. "@esbuild/android-arm64@0.21.5":
  2215. optional: true
  2216. "@esbuild/android-arm@0.21.5":
  2217. optional: true
  2218. "@esbuild/android-x64@0.21.5":
  2219. optional: true
  2220. "@esbuild/darwin-arm64@0.21.5":
  2221. optional: true
  2222. "@esbuild/darwin-x64@0.21.5":
  2223. optional: true
  2224. "@esbuild/freebsd-arm64@0.21.5":
  2225. optional: true
  2226. "@esbuild/freebsd-x64@0.21.5":
  2227. optional: true
  2228. "@esbuild/linux-arm64@0.21.5":
  2229. optional: true
  2230. "@esbuild/linux-arm@0.21.5":
  2231. optional: true
  2232. "@esbuild/linux-ia32@0.21.5":
  2233. optional: true
  2234. "@esbuild/linux-loong64@0.21.5":
  2235. optional: true
  2236. "@esbuild/linux-mips64el@0.21.5":
  2237. optional: true
  2238. "@esbuild/linux-ppc64@0.21.5":
  2239. optional: true
  2240. "@esbuild/linux-riscv64@0.21.5":
  2241. optional: true
  2242. "@esbuild/linux-s390x@0.21.5":
  2243. optional: true
  2244. "@esbuild/linux-x64@0.21.5":
  2245. optional: true
  2246. "@esbuild/netbsd-x64@0.21.5":
  2247. optional: true
  2248. "@esbuild/openbsd-x64@0.21.5":
  2249. optional: true
  2250. "@esbuild/sunos-x64@0.21.5":
  2251. optional: true
  2252. "@esbuild/win32-arm64@0.21.5":
  2253. optional: true
  2254. "@esbuild/win32-ia32@0.21.5":
  2255. optional: true
  2256. "@esbuild/win32-x64@0.21.5":
  2257. optional: true
  2258. "@eslint-community/eslint-utils@4.4.1(eslint@9.15.0)":
  2259. dependencies:
  2260. eslint: 9.15.0
  2261. eslint-visitor-keys: 3.4.3
  2262. "@eslint-community/regexpp@4.12.1": {}
  2263. "@eslint/config-array@0.19.0":
  2264. dependencies:
  2265. "@eslint/object-schema": 2.1.4
  2266. debug: 4.3.7
  2267. minimatch: 3.1.2
  2268. transitivePeerDependencies:
  2269. - supports-color
  2270. "@eslint/core@0.9.0": {}
  2271. "@eslint/eslintrc@3.2.0":
  2272. dependencies:
  2273. ajv: 6.12.6
  2274. debug: 4.3.7
  2275. espree: 10.3.0
  2276. globals: 14.0.0
  2277. ignore: 5.3.2
  2278. import-fresh: 3.3.0
  2279. js-yaml: 4.1.0
  2280. minimatch: 3.1.2
  2281. strip-json-comments: 3.1.1
  2282. transitivePeerDependencies:
  2283. - supports-color
  2284. "@eslint/js@9.15.0": {}
  2285. "@eslint/object-schema@2.1.4": {}
  2286. "@eslint/plugin-kit@0.2.3":
  2287. dependencies:
  2288. levn: 0.4.1
  2289. "@humanfs/core@0.19.1": {}
  2290. "@humanfs/node@0.16.6":
  2291. dependencies:
  2292. "@humanfs/core": 0.19.1
  2293. "@humanwhocodes/retry": 0.3.1
  2294. "@humanwhocodes/module-importer@1.0.1": {}
  2295. "@humanwhocodes/retry@0.3.1": {}
  2296. "@humanwhocodes/retry@0.4.1": {}
  2297. "@jridgewell/sourcemap-codec@1.5.0": {}
  2298. "@nodelib/fs.scandir@2.1.5":
  2299. dependencies:
  2300. "@nodelib/fs.stat": 2.0.5
  2301. run-parallel: 1.2.0
  2302. "@nodelib/fs.stat@2.0.5": {}
  2303. "@nodelib/fs.walk@1.2.8":
  2304. dependencies:
  2305. "@nodelib/fs.scandir": 2.1.5
  2306. fastq: 1.17.1
  2307. "@parcel/watcher-android-arm64@2.5.0":
  2308. optional: true
  2309. "@parcel/watcher-darwin-arm64@2.5.0":
  2310. optional: true
  2311. "@parcel/watcher-darwin-x64@2.5.0":
  2312. optional: true
  2313. "@parcel/watcher-freebsd-x64@2.5.0":
  2314. optional: true
  2315. "@parcel/watcher-linux-arm-glibc@2.5.0":
  2316. optional: true
  2317. "@parcel/watcher-linux-arm-musl@2.5.0":
  2318. optional: true
  2319. "@parcel/watcher-linux-arm64-glibc@2.5.0":
  2320. optional: true
  2321. "@parcel/watcher-linux-arm64-musl@2.5.0":
  2322. optional: true
  2323. "@parcel/watcher-linux-x64-glibc@2.5.0":
  2324. optional: true
  2325. "@parcel/watcher-linux-x64-musl@2.5.0":
  2326. optional: true
  2327. "@parcel/watcher-win32-arm64@2.5.0":
  2328. optional: true
  2329. "@parcel/watcher-win32-ia32@2.5.0":
  2330. optional: true
  2331. "@parcel/watcher-win32-x64@2.5.0":
  2332. optional: true
  2333. "@parcel/watcher@2.5.0":
  2334. dependencies:
  2335. detect-libc: 1.0.3
  2336. is-glob: 4.0.3
  2337. micromatch: 4.0.8
  2338. node-addon-api: 7.1.1
  2339. optionalDependencies:
  2340. "@parcel/watcher-android-arm64": 2.5.0
  2341. "@parcel/watcher-darwin-arm64": 2.5.0
  2342. "@parcel/watcher-darwin-x64": 2.5.0
  2343. "@parcel/watcher-freebsd-x64": 2.5.0
  2344. "@parcel/watcher-linux-arm-glibc": 2.5.0
  2345. "@parcel/watcher-linux-arm-musl": 2.5.0
  2346. "@parcel/watcher-linux-arm64-glibc": 2.5.0
  2347. "@parcel/watcher-linux-arm64-musl": 2.5.0
  2348. "@parcel/watcher-linux-x64-glibc": 2.5.0
  2349. "@parcel/watcher-linux-x64-musl": 2.5.0
  2350. "@parcel/watcher-win32-arm64": 2.5.0
  2351. "@parcel/watcher-win32-ia32": 2.5.0
  2352. "@parcel/watcher-win32-x64": 2.5.0
  2353. optional: true
  2354. "@rollup/rollup-android-arm-eabi@4.27.3":
  2355. optional: true
  2356. "@rollup/rollup-android-arm64@4.27.3":
  2357. optional: true
  2358. "@rollup/rollup-darwin-arm64@4.27.3":
  2359. optional: true
  2360. "@rollup/rollup-darwin-x64@4.27.3":
  2361. optional: true
  2362. "@rollup/rollup-freebsd-arm64@4.27.3":
  2363. optional: true
  2364. "@rollup/rollup-freebsd-x64@4.27.3":
  2365. optional: true
  2366. "@rollup/rollup-linux-arm-gnueabihf@4.27.3":
  2367. optional: true
  2368. "@rollup/rollup-linux-arm-musleabihf@4.27.3":
  2369. optional: true
  2370. "@rollup/rollup-linux-arm64-gnu@4.27.3":
  2371. optional: true
  2372. "@rollup/rollup-linux-arm64-musl@4.27.3":
  2373. optional: true
  2374. "@rollup/rollup-linux-powerpc64le-gnu@4.27.3":
  2375. optional: true
  2376. "@rollup/rollup-linux-riscv64-gnu@4.27.3":
  2377. optional: true
  2378. "@rollup/rollup-linux-s390x-gnu@4.27.3":
  2379. optional: true
  2380. "@rollup/rollup-linux-x64-gnu@4.27.3":
  2381. optional: true
  2382. "@rollup/rollup-linux-x64-musl@4.27.3":
  2383. optional: true
  2384. "@rollup/rollup-win32-arm64-msvc@4.27.3":
  2385. optional: true
  2386. "@rollup/rollup-win32-ia32-msvc@4.27.3":
  2387. optional: true
  2388. "@rollup/rollup-win32-x64-msvc@4.27.3":
  2389. optional: true
  2390. "@types/estree@1.0.6": {}
  2391. "@types/json-schema@7.0.15": {}
  2392. "@types/node@22.9.0":
  2393. dependencies:
  2394. undici-types: 6.19.8
  2395. "@typescript-eslint/eslint-plugin@8.15.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0)(typescript@5.6.3))(eslint@9.15.0)(typescript@5.6.3)":
  2396. dependencies:
  2397. "@eslint-community/regexpp": 4.12.1
  2398. "@typescript-eslint/parser": 8.15.0(eslint@9.15.0)(typescript@5.6.3)
  2399. "@typescript-eslint/scope-manager": 8.15.0
  2400. "@typescript-eslint/type-utils": 8.15.0(eslint@9.15.0)(typescript@5.6.3)
  2401. "@typescript-eslint/utils": 8.15.0(eslint@9.15.0)(typescript@5.6.3)
  2402. "@typescript-eslint/visitor-keys": 8.15.0
  2403. eslint: 9.15.0
  2404. graphemer: 1.4.0
  2405. ignore: 5.3.2
  2406. natural-compare: 1.4.0
  2407. ts-api-utils: 1.4.0(typescript@5.6.3)
  2408. optionalDependencies:
  2409. typescript: 5.6.3
  2410. transitivePeerDependencies:
  2411. - supports-color
  2412. "@typescript-eslint/parser@8.15.0(eslint@9.15.0)(typescript@5.6.3)":
  2413. dependencies:
  2414. "@typescript-eslint/scope-manager": 8.15.0
  2415. "@typescript-eslint/types": 8.15.0
  2416. "@typescript-eslint/typescript-estree": 8.15.0(typescript@5.6.3)
  2417. "@typescript-eslint/visitor-keys": 8.15.0
  2418. debug: 4.3.7
  2419. eslint: 9.15.0
  2420. optionalDependencies:
  2421. typescript: 5.6.3
  2422. transitivePeerDependencies:
  2423. - supports-color
  2424. "@typescript-eslint/scope-manager@8.15.0":
  2425. dependencies:
  2426. "@typescript-eslint/types": 8.15.0
  2427. "@typescript-eslint/visitor-keys": 8.15.0
  2428. "@typescript-eslint/type-utils@8.15.0(eslint@9.15.0)(typescript@5.6.3)":
  2429. dependencies:
  2430. "@typescript-eslint/typescript-estree": 8.15.0(typescript@5.6.3)
  2431. "@typescript-eslint/utils": 8.15.0(eslint@9.15.0)(typescript@5.6.3)
  2432. debug: 4.3.7
  2433. eslint: 9.15.0
  2434. ts-api-utils: 1.4.0(typescript@5.6.3)
  2435. optionalDependencies:
  2436. typescript: 5.6.3
  2437. transitivePeerDependencies:
  2438. - supports-color
  2439. "@typescript-eslint/types@8.15.0": {}
  2440. "@typescript-eslint/typescript-estree@8.15.0(typescript@5.6.3)":
  2441. dependencies:
  2442. "@typescript-eslint/types": 8.15.0
  2443. "@typescript-eslint/visitor-keys": 8.15.0
  2444. debug: 4.3.7
  2445. fast-glob: 3.3.2
  2446. is-glob: 4.0.3
  2447. minimatch: 9.0.5
  2448. semver: 7.6.3
  2449. ts-api-utils: 1.4.0(typescript@5.6.3)
  2450. optionalDependencies:
  2451. typescript: 5.6.3
  2452. transitivePeerDependencies:
  2453. - supports-color
  2454. "@typescript-eslint/utils@8.15.0(eslint@9.15.0)(typescript@5.6.3)":
  2455. dependencies:
  2456. "@eslint-community/eslint-utils": 4.4.1(eslint@9.15.0)
  2457. "@typescript-eslint/scope-manager": 8.15.0
  2458. "@typescript-eslint/types": 8.15.0
  2459. "@typescript-eslint/typescript-estree": 8.15.0(typescript@5.6.3)
  2460. eslint: 9.15.0
  2461. optionalDependencies:
  2462. typescript: 5.6.3
  2463. transitivePeerDependencies:
  2464. - supports-color
  2465. "@typescript-eslint/visitor-keys@8.15.0":
  2466. dependencies:
  2467. "@typescript-eslint/types": 8.15.0
  2468. eslint-visitor-keys: 4.2.0
  2469. "@vitejs/plugin-vue@5.2.0(vite@5.4.11(@types/node@22.9.0)(sass@1.81.0))(vue@3.5.13(typescript@5.6.3))":
  2470. dependencies:
  2471. vite: 5.4.11(@types/node@22.9.0)(sass@1.81.0)
  2472. vue: 3.5.13(typescript@5.6.3)
  2473. "@volar/language-core@2.4.10":
  2474. dependencies:
  2475. "@volar/source-map": 2.4.10
  2476. "@volar/source-map@2.4.10": {}
  2477. "@volar/typescript@2.4.10":
  2478. dependencies:
  2479. "@volar/language-core": 2.4.10
  2480. path-browserify: 1.0.1
  2481. vscode-uri: 3.0.8
  2482. "@vue/compiler-core@3.5.13":
  2483. dependencies:
  2484. "@babel/parser": 7.26.2
  2485. "@vue/shared": 3.5.13
  2486. entities: 4.5.0
  2487. estree-walker: 2.0.2
  2488. source-map-js: 1.2.1
  2489. "@vue/compiler-dom@3.5.13":
  2490. dependencies:
  2491. "@vue/compiler-core": 3.5.13
  2492. "@vue/shared": 3.5.13
  2493. "@vue/compiler-sfc@3.5.13":
  2494. dependencies:
  2495. "@babel/parser": 7.26.2
  2496. "@vue/compiler-core": 3.5.13
  2497. "@vue/compiler-dom": 3.5.13
  2498. "@vue/compiler-ssr": 3.5.13
  2499. "@vue/shared": 3.5.13
  2500. estree-walker: 2.0.2
  2501. magic-string: 0.30.13
  2502. postcss: 8.4.49
  2503. source-map-js: 1.2.1
  2504. "@vue/compiler-ssr@3.5.13":
  2505. dependencies:
  2506. "@vue/compiler-dom": 3.5.13
  2507. "@vue/shared": 3.5.13
  2508. "@vue/compiler-vue2@2.7.16":
  2509. dependencies:
  2510. de-indent: 1.0.2
  2511. he: 1.2.0
  2512. "@vue/language-core@2.1.10(typescript@5.6.3)":
  2513. dependencies:
  2514. "@volar/language-core": 2.4.10
  2515. "@vue/compiler-dom": 3.5.13
  2516. "@vue/compiler-vue2": 2.7.16
  2517. "@vue/shared": 3.5.13
  2518. alien-signals: 0.2.2
  2519. minimatch: 9.0.5
  2520. muggle-string: 0.4.1
  2521. path-browserify: 1.0.1
  2522. optionalDependencies:
  2523. typescript: 5.6.3
  2524. "@vue/reactivity@3.5.13":
  2525. dependencies:
  2526. "@vue/shared": 3.5.13
  2527. "@vue/runtime-core@3.5.13":
  2528. dependencies:
  2529. "@vue/reactivity": 3.5.13
  2530. "@vue/shared": 3.5.13
  2531. "@vue/runtime-dom@3.5.13":
  2532. dependencies:
  2533. "@vue/reactivity": 3.5.13
  2534. "@vue/runtime-core": 3.5.13
  2535. "@vue/shared": 3.5.13
  2536. csstype: 3.1.3
  2537. "@vue/server-renderer@3.5.13(vue@3.5.13(typescript@5.6.3))":
  2538. dependencies:
  2539. "@vue/compiler-ssr": 3.5.13
  2540. "@vue/shared": 3.5.13
  2541. vue: 3.5.13(typescript@5.6.3)
  2542. "@vue/shared@3.5.13": {}
  2543. acorn-jsx@5.3.2(acorn@8.14.0):
  2544. dependencies:
  2545. acorn: 8.14.0
  2546. acorn@8.14.0: {}
  2547. ajv@6.12.6:
  2548. dependencies:
  2549. fast-deep-equal: 3.1.3
  2550. fast-json-stable-stringify: 2.1.0
  2551. json-schema-traverse: 0.4.1
  2552. uri-js: 4.4.1
  2553. ajv@8.17.1:
  2554. dependencies:
  2555. fast-deep-equal: 3.1.3
  2556. fast-uri: 3.0.3
  2557. json-schema-traverse: 1.0.0
  2558. require-from-string: 2.0.2
  2559. alien-signals@0.2.2: {}
  2560. ansi-regex@5.0.1: {}
  2561. ansi-styles@4.3.0:
  2562. dependencies:
  2563. color-convert: 2.0.1
  2564. argparse@2.0.1: {}
  2565. array-union@2.1.0: {}
  2566. astral-regex@2.0.0: {}
  2567. balanced-match@1.0.2: {}
  2568. balanced-match@2.0.0: {}
  2569. boolbase@1.0.0: {}
  2570. brace-expansion@1.1.11:
  2571. dependencies:
  2572. balanced-match: 1.0.2
  2573. concat-map: 0.0.1
  2574. brace-expansion@2.0.1:
  2575. dependencies:
  2576. balanced-match: 1.0.2
  2577. braces@3.0.3:
  2578. dependencies:
  2579. fill-range: 7.1.1
  2580. callsites@3.1.0: {}
  2581. chalk@4.1.2:
  2582. dependencies:
  2583. ansi-styles: 4.3.0
  2584. supports-color: 7.2.0
  2585. chokidar@4.0.1:
  2586. dependencies:
  2587. readdirp: 4.0.2
  2588. color-convert@2.0.1:
  2589. dependencies:
  2590. color-name: 1.1.4
  2591. color-name@1.1.4: {}
  2592. colord@2.9.3: {}
  2593. concat-map@0.0.1: {}
  2594. cosmiconfig@9.0.0(typescript@5.6.3):
  2595. dependencies:
  2596. env-paths: 2.2.1
  2597. import-fresh: 3.3.0
  2598. js-yaml: 4.1.0
  2599. parse-json: 5.2.0
  2600. optionalDependencies:
  2601. typescript: 5.6.3
  2602. cross-spawn@7.0.6:
  2603. dependencies:
  2604. path-key: 3.1.1
  2605. shebang-command: 2.0.0
  2606. which: 2.0.2
  2607. css-functions-list@3.2.3: {}
  2608. css-tree@3.0.1:
  2609. dependencies:
  2610. mdn-data: 2.12.1
  2611. source-map-js: 1.2.1
  2612. cssesc@3.0.0: {}
  2613. csstype@3.1.3: {}
  2614. de-indent@1.0.2: {}
  2615. debug@4.3.7:
  2616. dependencies:
  2617. ms: 2.1.3
  2618. deep-is@0.1.4: {}
  2619. detect-libc@1.0.3:
  2620. optional: true
  2621. dir-glob@3.0.1:
  2622. dependencies:
  2623. path-type: 4.0.0
  2624. dom-serializer@2.0.0:
  2625. dependencies:
  2626. domelementtype: 2.3.0
  2627. domhandler: 5.0.3
  2628. entities: 4.5.0
  2629. domelementtype@2.3.0: {}
  2630. domhandler@5.0.3:
  2631. dependencies:
  2632. domelementtype: 2.3.0
  2633. domutils@3.1.0:
  2634. dependencies:
  2635. dom-serializer: 2.0.0
  2636. domelementtype: 2.3.0
  2637. domhandler: 5.0.3
  2638. emoji-regex@8.0.0: {}
  2639. entities@4.5.0: {}
  2640. env-paths@2.2.1: {}
  2641. error-ex@1.3.2:
  2642. dependencies:
  2643. is-arrayish: 0.2.1
  2644. esbuild@0.21.5:
  2645. optionalDependencies:
  2646. "@esbuild/aix-ppc64": 0.21.5
  2647. "@esbuild/android-arm": 0.21.5
  2648. "@esbuild/android-arm64": 0.21.5
  2649. "@esbuild/android-x64": 0.21.5
  2650. "@esbuild/darwin-arm64": 0.21.5
  2651. "@esbuild/darwin-x64": 0.21.5
  2652. "@esbuild/freebsd-arm64": 0.21.5
  2653. "@esbuild/freebsd-x64": 0.21.5
  2654. "@esbuild/linux-arm": 0.21.5
  2655. "@esbuild/linux-arm64": 0.21.5
  2656. "@esbuild/linux-ia32": 0.21.5
  2657. "@esbuild/linux-loong64": 0.21.5
  2658. "@esbuild/linux-mips64el": 0.21.5
  2659. "@esbuild/linux-ppc64": 0.21.5
  2660. "@esbuild/linux-riscv64": 0.21.5
  2661. "@esbuild/linux-s390x": 0.21.5
  2662. "@esbuild/linux-x64": 0.21.5
  2663. "@esbuild/netbsd-x64": 0.21.5
  2664. "@esbuild/openbsd-x64": 0.21.5
  2665. "@esbuild/sunos-x64": 0.21.5
  2666. "@esbuild/win32-arm64": 0.21.5
  2667. "@esbuild/win32-ia32": 0.21.5
  2668. "@esbuild/win32-x64": 0.21.5
  2669. escape-string-regexp@4.0.0: {}
  2670. eslint-plugin-vue@9.31.0(eslint@9.15.0):
  2671. dependencies:
  2672. "@eslint-community/eslint-utils": 4.4.1(eslint@9.15.0)
  2673. eslint: 9.15.0
  2674. globals: 13.24.0
  2675. natural-compare: 1.4.0
  2676. nth-check: 2.1.1
  2677. postcss-selector-parser: 6.1.2
  2678. semver: 7.6.3
  2679. vue-eslint-parser: 9.4.3(eslint@9.15.0)
  2680. xml-name-validator: 4.0.0
  2681. transitivePeerDependencies:
  2682. - supports-color
  2683. eslint-scope@7.2.2:
  2684. dependencies:
  2685. esrecurse: 4.3.0
  2686. estraverse: 5.3.0
  2687. eslint-scope@8.2.0:
  2688. dependencies:
  2689. esrecurse: 4.3.0
  2690. estraverse: 5.3.0
  2691. eslint-visitor-keys@3.4.3: {}
  2692. eslint-visitor-keys@4.2.0: {}
  2693. eslint@9.15.0:
  2694. dependencies:
  2695. "@eslint-community/eslint-utils": 4.4.1(eslint@9.15.0)
  2696. "@eslint-community/regexpp": 4.12.1
  2697. "@eslint/config-array": 0.19.0
  2698. "@eslint/core": 0.9.0
  2699. "@eslint/eslintrc": 3.2.0
  2700. "@eslint/js": 9.15.0
  2701. "@eslint/plugin-kit": 0.2.3
  2702. "@humanfs/node": 0.16.6
  2703. "@humanwhocodes/module-importer": 1.0.1
  2704. "@humanwhocodes/retry": 0.4.1
  2705. "@types/estree": 1.0.6
  2706. "@types/json-schema": 7.0.15
  2707. ajv: 6.12.6
  2708. chalk: 4.1.2
  2709. cross-spawn: 7.0.6
  2710. debug: 4.3.7
  2711. escape-string-regexp: 4.0.0
  2712. eslint-scope: 8.2.0
  2713. eslint-visitor-keys: 4.2.0
  2714. espree: 10.3.0
  2715. esquery: 1.6.0
  2716. esutils: 2.0.3
  2717. fast-deep-equal: 3.1.3
  2718. file-entry-cache: 8.0.0
  2719. find-up: 5.0.0
  2720. glob-parent: 6.0.2
  2721. ignore: 5.3.2
  2722. imurmurhash: 0.1.4
  2723. is-glob: 4.0.3
  2724. json-stable-stringify-without-jsonify: 1.0.1
  2725. lodash.merge: 4.6.2
  2726. minimatch: 3.1.2
  2727. natural-compare: 1.4.0
  2728. optionator: 0.9.4
  2729. transitivePeerDependencies:
  2730. - supports-color
  2731. espree@10.3.0:
  2732. dependencies:
  2733. acorn: 8.14.0
  2734. acorn-jsx: 5.3.2(acorn@8.14.0)
  2735. eslint-visitor-keys: 4.2.0
  2736. espree@9.6.1:
  2737. dependencies:
  2738. acorn: 8.14.0
  2739. acorn-jsx: 5.3.2(acorn@8.14.0)
  2740. eslint-visitor-keys: 3.4.3
  2741. esquery@1.6.0:
  2742. dependencies:
  2743. estraverse: 5.3.0
  2744. esrecurse@4.3.0:
  2745. dependencies:
  2746. estraverse: 5.3.0
  2747. estraverse@5.3.0: {}
  2748. estree-walker@2.0.2: {}
  2749. esutils@2.0.3: {}
  2750. fast-deep-equal@3.1.3: {}
  2751. fast-glob@3.3.2:
  2752. dependencies:
  2753. "@nodelib/fs.stat": 2.0.5
  2754. "@nodelib/fs.walk": 1.2.8
  2755. glob-parent: 5.1.2
  2756. merge2: 1.4.1
  2757. micromatch: 4.0.8
  2758. fast-json-stable-stringify@2.1.0: {}
  2759. fast-levenshtein@2.0.6: {}
  2760. fast-uri@3.0.3: {}
  2761. fastest-levenshtein@1.0.16: {}
  2762. fastq@1.17.1:
  2763. dependencies:
  2764. reusify: 1.0.4
  2765. file-entry-cache@8.0.0:
  2766. dependencies:
  2767. flat-cache: 4.0.1
  2768. file-entry-cache@9.1.0:
  2769. dependencies:
  2770. flat-cache: 5.0.0
  2771. fill-range@7.1.1:
  2772. dependencies:
  2773. to-regex-range: 5.0.1
  2774. find-up@5.0.0:
  2775. dependencies:
  2776. locate-path: 6.0.0
  2777. path-exists: 4.0.0
  2778. flat-cache@4.0.1:
  2779. dependencies:
  2780. flatted: 3.3.2
  2781. keyv: 4.5.4
  2782. flat-cache@5.0.0:
  2783. dependencies:
  2784. flatted: 3.3.2
  2785. keyv: 4.5.4
  2786. flatted@3.3.2: {}
  2787. fsevents@2.3.3:
  2788. optional: true
  2789. glob-parent@5.1.2:
  2790. dependencies:
  2791. is-glob: 4.0.3
  2792. glob-parent@6.0.2:
  2793. dependencies:
  2794. is-glob: 4.0.3
  2795. global-modules@2.0.0:
  2796. dependencies:
  2797. global-prefix: 3.0.0
  2798. global-prefix@3.0.0:
  2799. dependencies:
  2800. ini: 1.3.8
  2801. kind-of: 6.0.3
  2802. which: 1.3.1
  2803. globals@13.24.0:
  2804. dependencies:
  2805. type-fest: 0.20.2
  2806. globals@14.0.0: {}
  2807. globals@15.12.0: {}
  2808. globby@11.1.0:
  2809. dependencies:
  2810. array-union: 2.1.0
  2811. dir-glob: 3.0.1
  2812. fast-glob: 3.3.2
  2813. ignore: 5.3.2
  2814. merge2: 1.4.1
  2815. slash: 3.0.0
  2816. globjoin@0.1.4: {}
  2817. graphemer@1.4.0: {}
  2818. has-flag@4.0.0: {}
  2819. he@1.2.0: {}
  2820. html-tags@3.3.1: {}
  2821. htmlparser2@8.0.2:
  2822. dependencies:
  2823. domelementtype: 2.3.0
  2824. domhandler: 5.0.3
  2825. domutils: 3.1.0
  2826. entities: 4.5.0
  2827. husky@9.1.7: {}
  2828. ignore@5.3.2: {}
  2829. ignore@6.0.2: {}
  2830. immutable@5.0.2: {}
  2831. import-fresh@3.3.0:
  2832. dependencies:
  2833. parent-module: 1.0.1
  2834. resolve-from: 4.0.0
  2835. imurmurhash@0.1.4: {}
  2836. ini@1.3.8: {}
  2837. is-arrayish@0.2.1: {}
  2838. is-extglob@2.1.1: {}
  2839. is-fullwidth-code-point@3.0.0: {}
  2840. is-glob@4.0.3:
  2841. dependencies:
  2842. is-extglob: 2.1.1
  2843. is-number@7.0.0: {}
  2844. is-plain-object@5.0.0: {}
  2845. isexe@2.0.0: {}
  2846. js-tokens@4.0.0: {}
  2847. js-tokens@9.0.0: {}
  2848. js-yaml@4.1.0:
  2849. dependencies:
  2850. argparse: 2.0.1
  2851. json-buffer@3.0.1: {}
  2852. json-parse-even-better-errors@2.3.1: {}
  2853. json-schema-traverse@0.4.1: {}
  2854. json-schema-traverse@1.0.0: {}
  2855. json-stable-stringify-without-jsonify@1.0.1: {}
  2856. keyv@4.5.4:
  2857. dependencies:
  2858. json-buffer: 3.0.1
  2859. kind-of@6.0.3: {}
  2860. known-css-properties@0.34.0: {}
  2861. known-css-properties@0.35.0: {}
  2862. levn@0.4.1:
  2863. dependencies:
  2864. prelude-ls: 1.2.1
  2865. type-check: 0.4.0
  2866. lines-and-columns@1.2.4: {}
  2867. locate-path@6.0.0:
  2868. dependencies:
  2869. p-locate: 5.0.0
  2870. lodash.merge@4.6.2: {}
  2871. lodash.truncate@4.4.2: {}
  2872. lodash@4.17.21: {}
  2873. magic-string@0.30.13:
  2874. dependencies:
  2875. "@jridgewell/sourcemap-codec": 1.5.0
  2876. mathml-tag-names@2.1.3: {}
  2877. mdn-data@2.12.1: {}
  2878. mdn-data@2.12.2: {}
  2879. meow@13.2.0: {}
  2880. merge2@1.4.1: {}
  2881. micromatch@4.0.8:
  2882. dependencies:
  2883. braces: 3.0.3
  2884. picomatch: 2.3.1
  2885. minimatch@3.1.2:
  2886. dependencies:
  2887. brace-expansion: 1.1.11
  2888. minimatch@9.0.5:
  2889. dependencies:
  2890. brace-expansion: 2.0.1
  2891. ms@2.1.3: {}
  2892. muggle-string@0.4.1: {}
  2893. nanoid@3.3.7: {}
  2894. natural-compare@1.4.0: {}
  2895. node-addon-api@7.1.1:
  2896. optional: true
  2897. normalize-path@3.0.0: {}
  2898. nth-check@2.1.1:
  2899. dependencies:
  2900. boolbase: 1.0.0
  2901. optionator@0.9.4:
  2902. dependencies:
  2903. deep-is: 0.1.4
  2904. fast-levenshtein: 2.0.6
  2905. levn: 0.4.1
  2906. prelude-ls: 1.2.1
  2907. type-check: 0.4.0
  2908. word-wrap: 1.2.5
  2909. p-limit@3.1.0:
  2910. dependencies:
  2911. yocto-queue: 0.1.0
  2912. p-locate@5.0.0:
  2913. dependencies:
  2914. p-limit: 3.1.0
  2915. parent-module@1.0.1:
  2916. dependencies:
  2917. callsites: 3.1.0
  2918. parse-json@5.2.0:
  2919. dependencies:
  2920. "@babel/code-frame": 7.26.2
  2921. error-ex: 1.3.2
  2922. json-parse-even-better-errors: 2.3.1
  2923. lines-and-columns: 1.2.4
  2924. path-browserify@1.0.1: {}
  2925. path-exists@4.0.0: {}
  2926. path-key@3.1.1: {}
  2927. path-type@4.0.0: {}
  2928. picocolors@1.1.1: {}
  2929. picomatch@2.3.1: {}
  2930. postcss-html@1.7.0:
  2931. dependencies:
  2932. htmlparser2: 8.0.2
  2933. js-tokens: 9.0.0
  2934. postcss: 8.4.49
  2935. postcss-safe-parser: 6.0.0(postcss@8.4.49)
  2936. postcss-media-query-parser@0.2.3: {}
  2937. postcss-resolve-nested-selector@0.1.6: {}
  2938. postcss-safe-parser@6.0.0(postcss@8.4.49):
  2939. dependencies:
  2940. postcss: 8.4.49
  2941. postcss-safe-parser@7.0.1(postcss@8.4.49):
  2942. dependencies:
  2943. postcss: 8.4.49
  2944. postcss-scss@4.0.9(postcss@8.4.49):
  2945. dependencies:
  2946. postcss: 8.4.49
  2947. postcss-selector-parser@6.1.2:
  2948. dependencies:
  2949. cssesc: 3.0.0
  2950. util-deprecate: 1.0.2
  2951. postcss-sorting@8.0.2(postcss@8.4.49):
  2952. dependencies:
  2953. postcss: 8.4.49
  2954. postcss-value-parser@4.2.0: {}
  2955. postcss@8.4.49:
  2956. dependencies:
  2957. nanoid: 3.3.7
  2958. picocolors: 1.1.1
  2959. source-map-js: 1.2.1
  2960. prelude-ls@1.2.1: {}
  2961. prettier@3.3.3: {}
  2962. punycode@2.3.1: {}
  2963. queue-microtask@1.2.3: {}
  2964. readdirp@4.0.2: {}
  2965. require-from-string@2.0.2: {}
  2966. resolve-from@4.0.0: {}
  2967. resolve-from@5.0.0: {}
  2968. reusify@1.0.4: {}
  2969. rollup@4.27.3:
  2970. dependencies:
  2971. "@types/estree": 1.0.6
  2972. optionalDependencies:
  2973. "@rollup/rollup-android-arm-eabi": 4.27.3
  2974. "@rollup/rollup-android-arm64": 4.27.3
  2975. "@rollup/rollup-darwin-arm64": 4.27.3
  2976. "@rollup/rollup-darwin-x64": 4.27.3
  2977. "@rollup/rollup-freebsd-arm64": 4.27.3
  2978. "@rollup/rollup-freebsd-x64": 4.27.3
  2979. "@rollup/rollup-linux-arm-gnueabihf": 4.27.3
  2980. "@rollup/rollup-linux-arm-musleabihf": 4.27.3
  2981. "@rollup/rollup-linux-arm64-gnu": 4.27.3
  2982. "@rollup/rollup-linux-arm64-musl": 4.27.3
  2983. "@rollup/rollup-linux-powerpc64le-gnu": 4.27.3
  2984. "@rollup/rollup-linux-riscv64-gnu": 4.27.3
  2985. "@rollup/rollup-linux-s390x-gnu": 4.27.3
  2986. "@rollup/rollup-linux-x64-gnu": 4.27.3
  2987. "@rollup/rollup-linux-x64-musl": 4.27.3
  2988. "@rollup/rollup-win32-arm64-msvc": 4.27.3
  2989. "@rollup/rollup-win32-ia32-msvc": 4.27.3
  2990. "@rollup/rollup-win32-x64-msvc": 4.27.3
  2991. fsevents: 2.3.3
  2992. run-parallel@1.2.0:
  2993. dependencies:
  2994. queue-microtask: 1.2.3
  2995. sass@1.81.0:
  2996. dependencies:
  2997. chokidar: 4.0.1
  2998. immutable: 5.0.2
  2999. source-map-js: 1.2.1
  3000. optionalDependencies:
  3001. "@parcel/watcher": 2.5.0
  3002. semver@7.6.3: {}
  3003. shebang-command@2.0.0:
  3004. dependencies:
  3005. shebang-regex: 3.0.0
  3006. shebang-regex@3.0.0: {}
  3007. signal-exit@4.1.0: {}
  3008. slash@3.0.0: {}
  3009. slice-ansi@4.0.0:
  3010. dependencies:
  3011. ansi-styles: 4.3.0
  3012. astral-regex: 2.0.0
  3013. is-fullwidth-code-point: 3.0.0
  3014. source-map-js@1.2.1: {}
  3015. string-width@4.2.3:
  3016. dependencies:
  3017. emoji-regex: 8.0.0
  3018. is-fullwidth-code-point: 3.0.0
  3019. strip-ansi: 6.0.1
  3020. strip-ansi@6.0.1:
  3021. dependencies:
  3022. ansi-regex: 5.0.1
  3023. strip-json-comments@3.1.1: {}
  3024. stylelint-config-html@1.1.0(postcss-html@1.7.0)(stylelint@16.10.0(typescript@5.6.3)):
  3025. dependencies:
  3026. postcss-html: 1.7.0
  3027. stylelint: 16.10.0(typescript@5.6.3)
  3028. stylelint-config-prettier@9.0.5(stylelint@16.10.0(typescript@5.6.3)):
  3029. dependencies:
  3030. stylelint: 16.10.0(typescript@5.6.3)
  3031. stylelint-config-recommended-scss@14.1.0(postcss@8.4.49)(stylelint@16.10.0(typescript@5.6.3)):
  3032. dependencies:
  3033. postcss-scss: 4.0.9(postcss@8.4.49)
  3034. stylelint: 16.10.0(typescript@5.6.3)
  3035. stylelint-config-recommended: 14.0.1(stylelint@16.10.0(typescript@5.6.3))
  3036. stylelint-scss: 6.9.0(stylelint@16.10.0(typescript@5.6.3))
  3037. optionalDependencies:
  3038. postcss: 8.4.49
  3039. stylelint-config-recommended-vue@1.5.0(postcss-html@1.7.0)(stylelint@16.10.0(typescript@5.6.3)):
  3040. dependencies:
  3041. postcss-html: 1.7.0
  3042. semver: 7.6.3
  3043. stylelint: 16.10.0(typescript@5.6.3)
  3044. stylelint-config-html: 1.1.0(postcss-html@1.7.0)(stylelint@16.10.0(typescript@5.6.3))
  3045. stylelint-config-recommended: 14.0.1(stylelint@16.10.0(typescript@5.6.3))
  3046. stylelint-config-recommended@14.0.1(stylelint@16.10.0(typescript@5.6.3)):
  3047. dependencies:
  3048. stylelint: 16.10.0(typescript@5.6.3)
  3049. stylelint-config-standard-scss@13.1.0(postcss@8.4.49)(stylelint@16.10.0(typescript@5.6.3)):
  3050. dependencies:
  3051. stylelint: 16.10.0(typescript@5.6.3)
  3052. stylelint-config-recommended-scss: 14.1.0(postcss@8.4.49)(stylelint@16.10.0(typescript@5.6.3))
  3053. stylelint-config-standard: 36.0.1(stylelint@16.10.0(typescript@5.6.3))
  3054. optionalDependencies:
  3055. postcss: 8.4.49
  3056. stylelint-config-standard-vue@1.0.0(postcss-html@1.7.0)(stylelint@16.10.0(typescript@5.6.3)):
  3057. dependencies:
  3058. postcss-html: 1.7.0
  3059. stylelint: 16.10.0(typescript@5.6.3)
  3060. stylelint-config-html: 1.1.0(postcss-html@1.7.0)(stylelint@16.10.0(typescript@5.6.3))
  3061. stylelint-config-recommended-vue: 1.5.0(postcss-html@1.7.0)(stylelint@16.10.0(typescript@5.6.3))
  3062. stylelint-config-standard: 36.0.1(stylelint@16.10.0(typescript@5.6.3))
  3063. stylelint-config-standard@36.0.1(stylelint@16.10.0(typescript@5.6.3)):
  3064. dependencies:
  3065. stylelint: 16.10.0(typescript@5.6.3)
  3066. stylelint-config-recommended: 14.0.1(stylelint@16.10.0(typescript@5.6.3))
  3067. stylelint-order@6.0.4(stylelint@16.10.0(typescript@5.6.3)):
  3068. dependencies:
  3069. postcss: 8.4.49
  3070. postcss-sorting: 8.0.2(postcss@8.4.49)
  3071. stylelint: 16.10.0(typescript@5.6.3)
  3072. stylelint-scss@6.9.0(stylelint@16.10.0(typescript@5.6.3)):
  3073. dependencies:
  3074. css-tree: 3.0.1
  3075. is-plain-object: 5.0.0
  3076. known-css-properties: 0.35.0
  3077. mdn-data: 2.12.2
  3078. postcss-media-query-parser: 0.2.3
  3079. postcss-resolve-nested-selector: 0.1.6
  3080. postcss-selector-parser: 6.1.2
  3081. postcss-value-parser: 4.2.0
  3082. stylelint: 16.10.0(typescript@5.6.3)
  3083. stylelint@16.10.0(typescript@5.6.3):
  3084. dependencies:
  3085. "@csstools/css-parser-algorithms": 3.0.4(@csstools/css-tokenizer@3.0.3)
  3086. "@csstools/css-tokenizer": 3.0.3
  3087. "@csstools/media-query-list-parser": 3.0.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
  3088. "@csstools/selector-specificity": 4.0.0(postcss-selector-parser@6.1.2)
  3089. "@dual-bundle/import-meta-resolve": 4.1.0
  3090. balanced-match: 2.0.0
  3091. colord: 2.9.3
  3092. cosmiconfig: 9.0.0(typescript@5.6.3)
  3093. css-functions-list: 3.2.3
  3094. css-tree: 3.0.1
  3095. debug: 4.3.7
  3096. fast-glob: 3.3.2
  3097. fastest-levenshtein: 1.0.16
  3098. file-entry-cache: 9.1.0
  3099. global-modules: 2.0.0
  3100. globby: 11.1.0
  3101. globjoin: 0.1.4
  3102. html-tags: 3.3.1
  3103. ignore: 6.0.2
  3104. imurmurhash: 0.1.4
  3105. is-plain-object: 5.0.0
  3106. known-css-properties: 0.34.0
  3107. mathml-tag-names: 2.1.3
  3108. meow: 13.2.0
  3109. micromatch: 4.0.8
  3110. normalize-path: 3.0.0
  3111. picocolors: 1.1.1
  3112. postcss: 8.4.49
  3113. postcss-resolve-nested-selector: 0.1.6
  3114. postcss-safe-parser: 7.0.1(postcss@8.4.49)
  3115. postcss-selector-parser: 6.1.2
  3116. postcss-value-parser: 4.2.0
  3117. resolve-from: 5.0.0
  3118. string-width: 4.2.3
  3119. supports-hyperlinks: 3.1.0
  3120. svg-tags: 1.0.0
  3121. table: 6.8.2
  3122. write-file-atomic: 5.0.1
  3123. transitivePeerDependencies:
  3124. - supports-color
  3125. - typescript
  3126. supports-color@7.2.0:
  3127. dependencies:
  3128. has-flag: 4.0.0
  3129. supports-hyperlinks@3.1.0:
  3130. dependencies:
  3131. has-flag: 4.0.0
  3132. supports-color: 7.2.0
  3133. svg-tags@1.0.0: {}
  3134. table@6.8.2:
  3135. dependencies:
  3136. ajv: 8.17.1
  3137. lodash.truncate: 4.4.2
  3138. slice-ansi: 4.0.0
  3139. string-width: 4.2.3
  3140. strip-ansi: 6.0.1
  3141. to-regex-range@5.0.1:
  3142. dependencies:
  3143. is-number: 7.0.0
  3144. ts-api-utils@1.4.0(typescript@5.6.3):
  3145. dependencies:
  3146. typescript: 5.6.3
  3147. type-check@0.4.0:
  3148. dependencies:
  3149. prelude-ls: 1.2.1
  3150. type-fest@0.20.2: {}
  3151. typescript-eslint@8.15.0(eslint@9.15.0)(typescript@5.6.3):
  3152. dependencies:
  3153. "@typescript-eslint/eslint-plugin": 8.15.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0)(typescript@5.6.3))(eslint@9.15.0)(typescript@5.6.3)
  3154. "@typescript-eslint/parser": 8.15.0(eslint@9.15.0)(typescript@5.6.3)
  3155. "@typescript-eslint/utils": 8.15.0(eslint@9.15.0)(typescript@5.6.3)
  3156. eslint: 9.15.0
  3157. optionalDependencies:
  3158. typescript: 5.6.3
  3159. transitivePeerDependencies:
  3160. - supports-color
  3161. typescript@5.6.3: {}
  3162. undici-types@6.19.8: {}
  3163. uri-js@4.4.1:
  3164. dependencies:
  3165. punycode: 2.3.1
  3166. util-deprecate@1.0.2: {}
  3167. vite@5.4.11(@types/node@22.9.0)(sass@1.81.0):
  3168. dependencies:
  3169. esbuild: 0.21.5
  3170. postcss: 8.4.49
  3171. rollup: 4.27.3
  3172. optionalDependencies:
  3173. "@types/node": 22.9.0
  3174. fsevents: 2.3.3
  3175. sass: 1.81.0
  3176. vscode-uri@3.0.8: {}
  3177. vue-eslint-parser@9.4.3(eslint@9.15.0):
  3178. dependencies:
  3179. debug: 4.3.7
  3180. eslint: 9.15.0
  3181. eslint-scope: 7.2.2
  3182. eslint-visitor-keys: 3.4.3
  3183. espree: 9.6.1
  3184. esquery: 1.6.0
  3185. lodash: 4.17.21
  3186. semver: 7.6.3
  3187. transitivePeerDependencies:
  3188. - supports-color
  3189. vue-tsc@2.1.10(typescript@5.6.3):
  3190. dependencies:
  3191. "@volar/typescript": 2.4.10
  3192. "@vue/language-core": 2.1.10(typescript@5.6.3)
  3193. semver: 7.6.3
  3194. typescript: 5.6.3
  3195. vue@3.5.13(typescript@5.6.3):
  3196. dependencies:
  3197. "@vue/compiler-dom": 3.5.13
  3198. "@vue/compiler-sfc": 3.5.13
  3199. "@vue/runtime-dom": 3.5.13
  3200. "@vue/server-renderer": 3.5.13(vue@3.5.13(typescript@5.6.3))
  3201. "@vue/shared": 3.5.13
  3202. optionalDependencies:
  3203. typescript: 5.6.3
  3204. which@1.3.1:
  3205. dependencies:
  3206. isexe: 2.0.0
  3207. which@2.0.2:
  3208. dependencies:
  3209. isexe: 2.0.0
  3210. word-wrap@1.2.5: {}
  3211. write-file-atomic@5.0.1:
  3212. dependencies:
  3213. imurmurhash: 0.1.4
  3214. signal-exit: 4.1.0
  3215. xml-name-validator@4.0.0: {}
  3216. yocto-queue@0.1.0: {}