pnpm-lock.yaml 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901
  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: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
  87. engines: {node: '>=6.9.0'}
  88. '@babel/helper-string-parser@7.25.9':
  89. resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
  90. engines: {node: '>=6.9.0'}
  91. '@babel/helper-validator-identifier@7.25.9':
  92. resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
  93. engines: {node: '>=6.9.0'}
  94. '@babel/parser@7.26.2':
  95. resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==}
  96. engines: {node: '>=6.0.0'}
  97. hasBin: true
  98. '@babel/types@7.26.0':
  99. resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==}
  100. engines: {node: '>=6.9.0'}
  101. '@csstools/css-parser-algorithms@3.0.4':
  102. resolution: {integrity: sha512-Up7rBoV77rv29d3uKHUIVubz1BTcgyUK72IvCQAbfbMv584xHcGKCKbWh7i8hPrRJ7qU4Y8IO3IY9m+iTB7P3A==}
  103. engines: {node: '>=18'}
  104. peerDependencies:
  105. '@csstools/css-tokenizer': ^3.0.3
  106. '@csstools/css-tokenizer@3.0.3':
  107. resolution: {integrity: sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw==}
  108. engines: {node: '>=18'}
  109. '@csstools/media-query-list-parser@3.0.1':
  110. resolution: {integrity: sha512-HNo8gGD02kHmcbX6PvCoUuOQvn4szyB9ca63vZHKX5A81QytgDG4oxG4IaEfHTlEZSZ6MjPEMWIVU+zF2PZcgw==}
  111. engines: {node: '>=18'}
  112. peerDependencies:
  113. '@csstools/css-parser-algorithms': ^3.0.1
  114. '@csstools/css-tokenizer': ^3.0.1
  115. '@csstools/selector-specificity@4.0.0':
  116. resolution: {integrity: sha512-189nelqtPd8++phaHNwYovKZI0FOzH1vQEE3QhHHkNIGrg5fSs9CbYP3RvfEH5geztnIA9Jwq91wyOIwAW5JIQ==}
  117. engines: {node: '>=18'}
  118. peerDependencies:
  119. postcss-selector-parser: ^6.1.0
  120. '@dual-bundle/import-meta-resolve@4.1.0':
  121. resolution: {integrity: sha512-+nxncfwHM5SgAtrVzgpzJOI1ol0PkumhVo469KCf9lUi21IGcY90G98VuHm9VRrUypmAzawAHO9bs6hqeADaVg==}
  122. '@esbuild/aix-ppc64@0.21.5':
  123. resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
  124. engines: {node: '>=12'}
  125. cpu: [ppc64]
  126. os: [aix]
  127. '@esbuild/android-arm64@0.21.5':
  128. resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
  129. engines: {node: '>=12'}
  130. cpu: [arm64]
  131. os: [android]
  132. '@esbuild/android-arm@0.21.5':
  133. resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
  134. engines: {node: '>=12'}
  135. cpu: [arm]
  136. os: [android]
  137. '@esbuild/android-x64@0.21.5':
  138. resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
  139. engines: {node: '>=12'}
  140. cpu: [x64]
  141. os: [android]
  142. '@esbuild/darwin-arm64@0.21.5':
  143. resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
  144. engines: {node: '>=12'}
  145. cpu: [arm64]
  146. os: [darwin]
  147. '@esbuild/darwin-x64@0.21.5':
  148. resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
  149. engines: {node: '>=12'}
  150. cpu: [x64]
  151. os: [darwin]
  152. '@esbuild/freebsd-arm64@0.21.5':
  153. resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
  154. engines: {node: '>=12'}
  155. cpu: [arm64]
  156. os: [freebsd]
  157. '@esbuild/freebsd-x64@0.21.5':
  158. resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
  159. engines: {node: '>=12'}
  160. cpu: [x64]
  161. os: [freebsd]
  162. '@esbuild/linux-arm64@0.21.5':
  163. resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
  164. engines: {node: '>=12'}
  165. cpu: [arm64]
  166. os: [linux]
  167. '@esbuild/linux-arm@0.21.5':
  168. resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
  169. engines: {node: '>=12'}
  170. cpu: [arm]
  171. os: [linux]
  172. '@esbuild/linux-ia32@0.21.5':
  173. resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
  174. engines: {node: '>=12'}
  175. cpu: [ia32]
  176. os: [linux]
  177. '@esbuild/linux-loong64@0.21.5':
  178. resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
  179. engines: {node: '>=12'}
  180. cpu: [loong64]
  181. os: [linux]
  182. '@esbuild/linux-mips64el@0.21.5':
  183. resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
  184. engines: {node: '>=12'}
  185. cpu: [mips64el]
  186. os: [linux]
  187. '@esbuild/linux-ppc64@0.21.5':
  188. resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
  189. engines: {node: '>=12'}
  190. cpu: [ppc64]
  191. os: [linux]
  192. '@esbuild/linux-riscv64@0.21.5':
  193. resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
  194. engines: {node: '>=12'}
  195. cpu: [riscv64]
  196. os: [linux]
  197. '@esbuild/linux-s390x@0.21.5':
  198. resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
  199. engines: {node: '>=12'}
  200. cpu: [s390x]
  201. os: [linux]
  202. '@esbuild/linux-x64@0.21.5':
  203. resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
  204. engines: {node: '>=12'}
  205. cpu: [x64]
  206. os: [linux]
  207. '@esbuild/netbsd-x64@0.21.5':
  208. resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
  209. engines: {node: '>=12'}
  210. cpu: [x64]
  211. os: [netbsd]
  212. '@esbuild/openbsd-x64@0.21.5':
  213. resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
  214. engines: {node: '>=12'}
  215. cpu: [x64]
  216. os: [openbsd]
  217. '@esbuild/sunos-x64@0.21.5':
  218. resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
  219. engines: {node: '>=12'}
  220. cpu: [x64]
  221. os: [sunos]
  222. '@esbuild/win32-arm64@0.21.5':
  223. resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
  224. engines: {node: '>=12'}
  225. cpu: [arm64]
  226. os: [win32]
  227. '@esbuild/win32-ia32@0.21.5':
  228. resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
  229. engines: {node: '>=12'}
  230. cpu: [ia32]
  231. os: [win32]
  232. '@esbuild/win32-x64@0.21.5':
  233. resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
  234. engines: {node: '>=12'}
  235. cpu: [x64]
  236. os: [win32]
  237. '@eslint-community/eslint-utils@4.4.1':
  238. resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
  239. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  240. peerDependencies:
  241. eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
  242. '@eslint-community/regexpp@4.12.1':
  243. resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
  244. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  245. '@eslint/config-array@0.19.0':
  246. resolution: {integrity: sha512-zdHg2FPIFNKPdcHWtiNT+jEFCHYVplAXRDlQDyqy0zGx/q2parwh7brGJSiTxRk/TSMkbM//zt/f5CHgyTyaSQ==}
  247. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  248. '@eslint/core@0.9.0':
  249. resolution: {integrity: sha512-7ATR9F0e4W85D/0w7cU0SNj7qkAexMG+bAHEZOjo9akvGuhHE2m7umzWzfnpa0XAg5Kxc1BWmtPMV67jJ+9VUg==}
  250. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  251. '@eslint/eslintrc@3.2.0':
  252. resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==}
  253. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  254. '@eslint/js@9.15.0':
  255. resolution: {integrity: sha512-tMTqrY+EzbXmKJR5ToI8lxu7jaN5EdmrBFJpQk5JmSlyLsx6o4t27r883K5xsLuCYCpfKBCGswMSWXsM+jB7lg==}
  256. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  257. '@eslint/object-schema@2.1.4':
  258. resolution: {integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==}
  259. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  260. '@eslint/plugin-kit@0.2.3':
  261. resolution: {integrity: sha512-2b/g5hRmpbb1o4GnTZax9N9m0FXzz9OV42ZzI4rDDMDuHUqigAiQCEWChBWCY4ztAGVRjoWT19v0yMmc5/L5kA==}
  262. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  263. '@humanfs/core@0.19.1':
  264. resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
  265. engines: {node: '>=18.18.0'}
  266. '@humanfs/node@0.16.6':
  267. resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==}
  268. engines: {node: '>=18.18.0'}
  269. '@humanwhocodes/module-importer@1.0.1':
  270. resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
  271. engines: {node: '>=12.22'}
  272. '@humanwhocodes/retry@0.3.1':
  273. resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
  274. engines: {node: '>=18.18'}
  275. '@humanwhocodes/retry@0.4.1':
  276. resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==}
  277. engines: {node: '>=18.18'}
  278. '@jridgewell/sourcemap-codec@1.5.0':
  279. resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
  280. '@nodelib/fs.scandir@2.1.5':
  281. resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
  282. engines: {node: '>= 8'}
  283. '@nodelib/fs.stat@2.0.5':
  284. resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
  285. engines: {node: '>= 8'}
  286. '@nodelib/fs.walk@1.2.8':
  287. resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
  288. engines: {node: '>= 8'}
  289. '@parcel/watcher-android-arm64@2.5.0':
  290. resolution: {integrity: sha512-qlX4eS28bUcQCdribHkg/herLe+0A9RyYC+mm2PXpncit8z5b3nSqGVzMNR3CmtAOgRutiZ02eIJJgP/b1iEFQ==}
  291. engines: {node: '>= 10.0.0'}
  292. cpu: [arm64]
  293. os: [android]
  294. '@parcel/watcher-darwin-arm64@2.5.0':
  295. resolution: {integrity: sha512-hyZ3TANnzGfLpRA2s/4U1kbw2ZI4qGxaRJbBH2DCSREFfubMswheh8TeiC1sGZ3z2jUf3s37P0BBlrD3sjVTUw==}
  296. engines: {node: '>= 10.0.0'}
  297. cpu: [arm64]
  298. os: [darwin]
  299. '@parcel/watcher-darwin-x64@2.5.0':
  300. resolution: {integrity: sha512-9rhlwd78saKf18fT869/poydQK8YqlU26TMiNg7AIu7eBp9adqbJZqmdFOsbZ5cnLp5XvRo9wcFmNHgHdWaGYA==}
  301. engines: {node: '>= 10.0.0'}
  302. cpu: [x64]
  303. os: [darwin]
  304. '@parcel/watcher-freebsd-x64@2.5.0':
  305. resolution: {integrity: sha512-syvfhZzyM8kErg3VF0xpV8dixJ+RzbUaaGaeb7uDuz0D3FK97/mZ5AJQ3XNnDsXX7KkFNtyQyFrXZzQIcN49Tw==}
  306. engines: {node: '>= 10.0.0'}
  307. cpu: [x64]
  308. os: [freebsd]
  309. '@parcel/watcher-linux-arm-glibc@2.5.0':
  310. resolution: {integrity: sha512-0VQY1K35DQET3dVYWpOaPFecqOT9dbuCfzjxoQyif1Wc574t3kOSkKevULddcR9znz1TcklCE7Ht6NIxjvTqLA==}
  311. engines: {node: '>= 10.0.0'}
  312. cpu: [arm]
  313. os: [linux]
  314. libc: [glibc]
  315. '@parcel/watcher-linux-arm-musl@2.5.0':
  316. resolution: {integrity: sha512-6uHywSIzz8+vi2lAzFeltnYbdHsDm3iIB57d4g5oaB9vKwjb6N6dRIgZMujw4nm5r6v9/BQH0noq6DzHrqr2pA==}
  317. engines: {node: '>= 10.0.0'}
  318. cpu: [arm]
  319. os: [linux]
  320. libc: [musl]
  321. '@parcel/watcher-linux-arm64-glibc@2.5.0':
  322. resolution: {integrity: sha512-BfNjXwZKxBy4WibDb/LDCriWSKLz+jJRL3cM/DllnHH5QUyoiUNEp3GmL80ZqxeumoADfCCP19+qiYiC8gUBjA==}
  323. engines: {node: '>= 10.0.0'}
  324. cpu: [arm64]
  325. os: [linux]
  326. libc: [glibc]
  327. '@parcel/watcher-linux-arm64-musl@2.5.0':
  328. resolution: {integrity: sha512-S1qARKOphxfiBEkwLUbHjCY9BWPdWnW9j7f7Hb2jPplu8UZ3nes7zpPOW9bkLbHRvWM0WDTsjdOTUgW0xLBN1Q==}
  329. engines: {node: '>= 10.0.0'}
  330. cpu: [arm64]
  331. os: [linux]
  332. libc: [musl]
  333. '@parcel/watcher-linux-x64-glibc@2.5.0':
  334. resolution: {integrity: sha512-d9AOkusyXARkFD66S6zlGXyzx5RvY+chTP9Jp0ypSTC9d4lzyRs9ovGf/80VCxjKddcUvnsGwCHWuF2EoPgWjw==}
  335. engines: {node: '>= 10.0.0'}
  336. cpu: [x64]
  337. os: [linux]
  338. libc: [glibc]
  339. '@parcel/watcher-linux-x64-musl@2.5.0':
  340. resolution: {integrity: sha512-iqOC+GoTDoFyk/VYSFHwjHhYrk8bljW6zOhPuhi5t9ulqiYq1togGJB5e3PwYVFFfeVgc6pbz3JdQyDoBszVaA==}
  341. engines: {node: '>= 10.0.0'}
  342. cpu: [x64]
  343. os: [linux]
  344. libc: [musl]
  345. '@parcel/watcher-win32-arm64@2.5.0':
  346. resolution: {integrity: sha512-twtft1d+JRNkM5YbmexfcH/N4znDtjgysFaV9zvZmmJezQsKpkfLYJ+JFV3uygugK6AtIM2oADPkB2AdhBrNig==}
  347. engines: {node: '>= 10.0.0'}
  348. cpu: [arm64]
  349. os: [win32]
  350. '@parcel/watcher-win32-ia32@2.5.0':
  351. resolution: {integrity: sha512-+rgpsNRKwo8A53elqbbHXdOMtY/tAtTzManTWShB5Kk54N8Q9mzNWV7tV+IbGueCbcj826MfWGU3mprWtuf1TA==}
  352. engines: {node: '>= 10.0.0'}
  353. cpu: [ia32]
  354. os: [win32]
  355. '@parcel/watcher-win32-x64@2.5.0':
  356. resolution: {integrity: sha512-lPrxve92zEHdgeff3aiu4gDOIt4u7sJYha6wbdEZDCDUhtjTsOMiaJzG5lMY4GkWH8p0fMmO2Ppq5G5XXG+DQw==}
  357. engines: {node: '>= 10.0.0'}
  358. cpu: [x64]
  359. os: [win32]
  360. '@parcel/watcher@2.5.0':
  361. resolution: {integrity: sha512-i0GV1yJnm2n3Yq1qw6QrUrd/LI9bE8WEBOTtOkpCXHHdyN3TAGgqAK/DAT05z4fq2x04cARXt2pDmjWjL92iTQ==}
  362. engines: {node: '>= 10.0.0'}
  363. '@rollup/rollup-android-arm-eabi@4.27.3':
  364. resolution: {integrity: sha512-EzxVSkIvCFxUd4Mgm4xR9YXrcp976qVaHnqom/Tgm+vU79k4vV4eYTjmRvGfeoW8m9LVcsAy/lGjcgVegKEhLQ==}
  365. cpu: [arm]
  366. os: [android]
  367. '@rollup/rollup-android-arm64@4.27.3':
  368. resolution: {integrity: sha512-LJc5pDf1wjlt9o/Giaw9Ofl+k/vLUaYsE2zeQGH85giX2F+wn/Cg8b3c5CDP3qmVmeO5NzwVUzQQxwZvC2eQKw==}
  369. cpu: [arm64]
  370. os: [android]
  371. '@rollup/rollup-darwin-arm64@4.27.3':
  372. resolution: {integrity: sha512-OuRysZ1Mt7wpWJ+aYKblVbJWtVn3Cy52h8nLuNSzTqSesYw1EuN6wKp5NW/4eSre3mp12gqFRXOKTcN3AI3LqA==}
  373. cpu: [arm64]
  374. os: [darwin]
  375. '@rollup/rollup-darwin-x64@4.27.3':
  376. resolution: {integrity: sha512-xW//zjJMlJs2sOrCmXdB4d0uiilZsOdlGQIC/jjmMWT47lkLLoB1nsNhPUcnoqyi5YR6I4h+FjBpILxbEy8JRg==}
  377. cpu: [x64]
  378. os: [darwin]
  379. '@rollup/rollup-freebsd-arm64@4.27.3':
  380. resolution: {integrity: sha512-58E0tIcwZ+12nK1WiLzHOD8I0d0kdrY/+o7yFVPRHuVGY3twBwzwDdTIBGRxLmyjciMYl1B/U515GJy+yn46qw==}
  381. cpu: [arm64]
  382. os: [freebsd]
  383. '@rollup/rollup-freebsd-x64@4.27.3':
  384. resolution: {integrity: sha512-78fohrpcVwTLxg1ZzBMlwEimoAJmY6B+5TsyAZ3Vok7YabRBUvjYTsRXPTjGEvv/mfgVBepbW28OlMEz4w8wGA==}
  385. cpu: [x64]
  386. os: [freebsd]
  387. '@rollup/rollup-linux-arm-gnueabihf@4.27.3':
  388. resolution: {integrity: sha512-h2Ay79YFXyQi+QZKo3ISZDyKaVD7uUvukEHTOft7kh00WF9mxAaxZsNs3o/eukbeKuH35jBvQqrT61fzKfAB/Q==}
  389. cpu: [arm]
  390. os: [linux]
  391. libc: [glibc]
  392. '@rollup/rollup-linux-arm-musleabihf@4.27.3':
  393. resolution: {integrity: sha512-Sv2GWmrJfRY57urktVLQ0VKZjNZGogVtASAgosDZ1aUB+ykPxSi3X1nWORL5Jk0sTIIwQiPH7iE3BMi9zGWfkg==}
  394. cpu: [arm]
  395. os: [linux]
  396. libc: [musl]
  397. '@rollup/rollup-linux-arm64-gnu@4.27.3':
  398. resolution: {integrity: sha512-FPoJBLsPW2bDNWjSrwNuTPUt30VnfM8GPGRoLCYKZpPx0xiIEdFip3dH6CqgoT0RnoGXptaNziM0WlKgBc+OWQ==}
  399. cpu: [arm64]
  400. os: [linux]
  401. libc: [glibc]
  402. '@rollup/rollup-linux-arm64-musl@4.27.3':
  403. resolution: {integrity: sha512-TKxiOvBorYq4sUpA0JT+Fkh+l+G9DScnG5Dqx7wiiqVMiRSkzTclP35pE6eQQYjP4Gc8yEkJGea6rz4qyWhp3g==}
  404. cpu: [arm64]
  405. os: [linux]
  406. libc: [musl]
  407. '@rollup/rollup-linux-powerpc64le-gnu@4.27.3':
  408. resolution: {integrity: sha512-v2M/mPvVUKVOKITa0oCFksnQQ/TqGrT+yD0184/cWHIu0LoIuYHwox0Pm3ccXEz8cEQDLk6FPKd1CCm+PlsISw==}
  409. cpu: [ppc64]
  410. os: [linux]
  411. libc: [glibc]
  412. '@rollup/rollup-linux-riscv64-gnu@4.27.3':
  413. resolution: {integrity: sha512-LdrI4Yocb1a/tFVkzmOE5WyYRgEBOyEhWYJe4gsDWDiwnjYKjNs7PS6SGlTDB7maOHF4kxevsuNBl2iOcj3b4A==}
  414. cpu: [riscv64]
  415. os: [linux]
  416. libc: [glibc]
  417. '@rollup/rollup-linux-s390x-gnu@4.27.3':
  418. resolution: {integrity: sha512-d4wVu6SXij/jyiwPvI6C4KxdGzuZOvJ6y9VfrcleHTwo68fl8vZC5ZYHsCVPUi4tndCfMlFniWgwonQ5CUpQcA==}
  419. cpu: [s390x]
  420. os: [linux]
  421. libc: [glibc]
  422. '@rollup/rollup-linux-x64-gnu@4.27.3':
  423. resolution: {integrity: sha512-/6bn6pp1fsCGEY5n3yajmzZQAh+mW4QPItbiWxs69zskBzJuheb3tNynEjL+mKOsUSFK11X4LYF2BwwXnzWleA==}
  424. cpu: [x64]
  425. os: [linux]
  426. libc: [glibc]
  427. '@rollup/rollup-linux-x64-musl@4.27.3':
  428. resolution: {integrity: sha512-nBXOfJds8OzUT1qUreT/en3eyOXd2EH5b0wr2bVB5999qHdGKkzGzIyKYaKj02lXk6wpN71ltLIaQpu58YFBoQ==}
  429. cpu: [x64]
  430. os: [linux]
  431. libc: [musl]
  432. '@rollup/rollup-win32-arm64-msvc@4.27.3':
  433. resolution: {integrity: sha512-ogfbEVQgIZOz5WPWXF2HVb6En+kWzScuxJo/WdQTqEgeyGkaa2ui5sQav9Zkr7bnNCLK48uxmmK0TySm22eiuw==}
  434. cpu: [arm64]
  435. os: [win32]
  436. '@rollup/rollup-win32-ia32-msvc@4.27.3':
  437. resolution: {integrity: sha512-ecE36ZBMLINqiTtSNQ1vzWc5pXLQHlf/oqGp/bSbi7iedcjcNb6QbCBNG73Euyy2C+l/fn8qKWEwxr+0SSfs3w==}
  438. cpu: [ia32]
  439. os: [win32]
  440. '@rollup/rollup-win32-x64-msvc@4.27.3':
  441. resolution: {integrity: sha512-vliZLrDmYKyaUoMzEbMTg2JkerfBjn03KmAw9CykO0Zzkzoyd7o3iZNam/TpyWNjNT+Cz2iO3P9Smv2wgrR+Eg==}
  442. cpu: [x64]
  443. os: [win32]
  444. '@types/estree@1.0.6':
  445. resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
  446. '@types/json-schema@7.0.15':
  447. resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
  448. '@types/node@22.9.0':
  449. resolution: {integrity: sha512-vuyHg81vvWA1Z1ELfvLko2c8f34gyA0zaic0+Rllc5lbCnbSyuvb2Oxpm6TAUAC/2xZN3QGqxBNggD1nNR2AfQ==}
  450. '@typescript-eslint/eslint-plugin@8.15.0':
  451. resolution: {integrity: sha512-+zkm9AR1Ds9uLWN3fkoeXgFppaQ+uEVtfOV62dDmsy9QCNqlRHWNEck4yarvRNrvRcHQLGfqBNui3cimoz8XAg==}
  452. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  453. peerDependencies:
  454. '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
  455. eslint: ^8.57.0 || ^9.0.0
  456. typescript: '*'
  457. peerDependenciesMeta:
  458. typescript:
  459. optional: true
  460. '@typescript-eslint/parser@8.15.0':
  461. resolution: {integrity: sha512-7n59qFpghG4uazrF9qtGKBZXn7Oz4sOMm8dwNWDQY96Xlm2oX67eipqcblDj+oY1lLCbf1oltMZFpUso66Kl1A==}
  462. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  463. peerDependencies:
  464. eslint: ^8.57.0 || ^9.0.0
  465. typescript: '*'
  466. peerDependenciesMeta:
  467. typescript:
  468. optional: true
  469. '@typescript-eslint/scope-manager@8.15.0':
  470. resolution: {integrity: sha512-QRGy8ADi4J7ii95xz4UoiymmmMd/zuy9azCaamnZ3FM8T5fZcex8UfJcjkiEZjJSztKfEBe3dZ5T/5RHAmw2mA==}
  471. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  472. '@typescript-eslint/type-utils@8.15.0':
  473. resolution: {integrity: sha512-UU6uwXDoI3JGSXmcdnP5d8Fffa2KayOhUUqr/AiBnG1Gl7+7ut/oyagVeSkh7bxQ0zSXV9ptRh/4N15nkCqnpw==}
  474. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  475. peerDependencies:
  476. eslint: ^8.57.0 || ^9.0.0
  477. typescript: '*'
  478. peerDependenciesMeta:
  479. typescript:
  480. optional: true
  481. '@typescript-eslint/types@8.15.0':
  482. resolution: {integrity: sha512-n3Gt8Y/KyJNe0S3yDCD2RVKrHBC4gTUcLTebVBXacPy091E6tNspFLKRXlk3hwT4G55nfr1n2AdFqi/XMxzmPQ==}
  483. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  484. '@typescript-eslint/typescript-estree@8.15.0':
  485. resolution: {integrity: sha512-1eMp2JgNec/niZsR7ioFBlsh/Fk0oJbhaqO0jRyQBMgkz7RrFfkqF9lYYmBoGBaSiLnu8TAPQTwoTUiSTUW9dg==}
  486. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  487. peerDependencies:
  488. typescript: '*'
  489. peerDependenciesMeta:
  490. typescript:
  491. optional: true
  492. '@typescript-eslint/utils@8.15.0':
  493. resolution: {integrity: sha512-k82RI9yGhr0QM3Dnq+egEpz9qB6Un+WLYhmoNcvl8ltMEededhh7otBVVIDDsEEttauwdY/hQoSsOv13lxrFzQ==}
  494. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  495. peerDependencies:
  496. eslint: ^8.57.0 || ^9.0.0
  497. typescript: '*'
  498. peerDependenciesMeta:
  499. typescript:
  500. optional: true
  501. '@typescript-eslint/visitor-keys@8.15.0':
  502. resolution: {integrity: sha512-h8vYOulWec9LhpwfAdZf2bjr8xIp0KNKnpgqSz0qqYYKAW/QZKw3ktRndbiAtUz4acH4QLQavwZBYCc0wulA/Q==}
  503. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  504. '@vitejs/plugin-vue@5.2.0':
  505. resolution: {integrity: sha512-7n7KdUEtx/7Yl7I/WVAMZ1bEb0eVvXF3ummWTeLcs/9gvo9pJhuLdouSXGjdZ/MKD1acf1I272+X0RMua4/R3g==}
  506. engines: {node: ^18.0.0 || >=20.0.0}
  507. peerDependencies:
  508. vite: ^5.0.0
  509. vue: ^3.2.25
  510. '@volar/language-core@2.4.10':
  511. resolution: {integrity: sha512-hG3Z13+nJmGaT+fnQzAkS0hjJRa2FCeqZt6Bd+oGNhUkQ+mTFsDETg5rqUTxyzIh5pSOGY7FHCWUS8G82AzLCA==}
  512. '@volar/source-map@2.4.10':
  513. resolution: {integrity: sha512-OCV+b5ihV0RF3A7vEvNyHPi4G4kFa6ukPmyVocmqm5QzOd8r5yAtiNvaPEjl8dNvgC/lj4JPryeeHLdXd62rWA==}
  514. '@volar/typescript@2.4.10':
  515. resolution: {integrity: sha512-F8ZtBMhSXyYKuBfGpYwqA5rsONnOwAVvjyE7KPYJ7wgZqo2roASqNWUnianOomJX5u1cxeRooHV59N0PhvEOgw==}
  516. '@vue/compiler-core@3.5.13':
  517. resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==}
  518. '@vue/compiler-dom@3.5.13':
  519. resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==}
  520. '@vue/compiler-sfc@3.5.13':
  521. resolution: {integrity: sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==}
  522. '@vue/compiler-ssr@3.5.13':
  523. resolution: {integrity: sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==}
  524. '@vue/compiler-vue2@2.7.16':
  525. resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
  526. '@vue/language-core@2.1.10':
  527. resolution: {integrity: sha512-DAI289d0K3AB5TUG3xDp9OuQ71CnrujQwJrQnfuZDwo6eGNf0UoRlPuaVNO+Zrn65PC3j0oB2i7mNmVPggeGeQ==}
  528. peerDependencies:
  529. typescript: '*'
  530. peerDependenciesMeta:
  531. typescript:
  532. optional: true
  533. '@vue/reactivity@3.5.13':
  534. resolution: {integrity: sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==}
  535. '@vue/runtime-core@3.5.13':
  536. resolution: {integrity: sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==}
  537. '@vue/runtime-dom@3.5.13':
  538. resolution: {integrity: sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==}
  539. '@vue/server-renderer@3.5.13':
  540. resolution: {integrity: sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==}
  541. peerDependencies:
  542. vue: 3.5.13
  543. '@vue/shared@3.5.13':
  544. resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==}
  545. acorn-jsx@5.3.2:
  546. resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
  547. peerDependencies:
  548. acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
  549. acorn@8.14.0:
  550. resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
  551. engines: {node: '>=0.4.0'}
  552. hasBin: true
  553. ajv@6.12.6:
  554. resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
  555. ajv@8.17.1:
  556. resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
  557. alien-signals@0.2.2:
  558. resolution: {integrity: sha512-cZIRkbERILsBOXTQmMrxc9hgpxglstn69zm+F1ARf4aPAzdAFYd6sBq87ErO0Fj3DV94tglcyHG5kQz9nDC/8A==}
  559. ansi-regex@5.0.1:
  560. resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
  561. engines: {node: '>=8'}
  562. ansi-styles@4.3.0:
  563. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  564. engines: {node: '>=8'}
  565. argparse@2.0.1:
  566. resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
  567. array-union@2.1.0:
  568. resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
  569. engines: {node: '>=8'}
  570. astral-regex@2.0.0:
  571. resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
  572. engines: {node: '>=8'}
  573. balanced-match@1.0.2:
  574. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  575. balanced-match@2.0.0:
  576. resolution: {integrity: sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==}
  577. boolbase@1.0.0:
  578. resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
  579. brace-expansion@1.1.11:
  580. resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
  581. brace-expansion@2.0.1:
  582. resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
  583. braces@3.0.3:
  584. resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
  585. engines: {node: '>=8'}
  586. callsites@3.1.0:
  587. resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
  588. engines: {node: '>=6'}
  589. chalk@4.1.2:
  590. resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
  591. engines: {node: '>=10'}
  592. chokidar@4.0.1:
  593. resolution: {integrity: sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==}
  594. engines: {node: '>= 14.16.0'}
  595. color-convert@2.0.1:
  596. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  597. engines: {node: '>=7.0.0'}
  598. color-name@1.1.4:
  599. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  600. colord@2.9.3:
  601. resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
  602. concat-map@0.0.1:
  603. resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
  604. cosmiconfig@9.0.0:
  605. resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==}
  606. engines: {node: '>=14'}
  607. peerDependencies:
  608. typescript: '>=4.9.5'
  609. peerDependenciesMeta:
  610. typescript:
  611. optional: true
  612. cross-spawn@7.0.6:
  613. resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
  614. engines: {node: '>= 8'}
  615. css-functions-list@3.2.3:
  616. resolution: {integrity: sha512-IQOkD3hbR5KrN93MtcYuad6YPuTSUhntLHDuLEbFWE+ff2/XSZNdZG+LcbbIW5AXKg/WFIfYItIzVoHngHXZzA==}
  617. engines: {node: '>=12 || >=16'}
  618. css-tree@3.0.1:
  619. resolution: {integrity: sha512-8Fxxv+tGhORlshCdCwnNJytvlvq46sOLSYEx2ZIGurahWvMucSRnyjPA3AmrMq4VPRYbHVpWj5VkiVasrM2H4Q==}
  620. engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
  621. cssesc@3.0.0:
  622. resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
  623. engines: {node: '>=4'}
  624. hasBin: true
  625. csstype@3.1.3:
  626. resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
  627. de-indent@1.0.2:
  628. resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
  629. debug@4.3.7:
  630. resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
  631. engines: {node: '>=6.0'}
  632. peerDependencies:
  633. supports-color: '*'
  634. peerDependenciesMeta:
  635. supports-color:
  636. optional: true
  637. deep-is@0.1.4:
  638. resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
  639. detect-libc@1.0.3:
  640. resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==}
  641. engines: {node: '>=0.10'}
  642. hasBin: true
  643. dir-glob@3.0.1:
  644. resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
  645. engines: {node: '>=8'}
  646. dom-serializer@2.0.0:
  647. resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==}
  648. domelementtype@2.3.0:
  649. resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
  650. domhandler@5.0.3:
  651. resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
  652. engines: {node: '>= 4'}
  653. domutils@3.1.0:
  654. resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==}
  655. emoji-regex@8.0.0:
  656. resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
  657. entities@4.5.0:
  658. resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
  659. engines: {node: '>=0.12'}
  660. env-paths@2.2.1:
  661. resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
  662. engines: {node: '>=6'}
  663. error-ex@1.3.2:
  664. resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
  665. esbuild@0.21.5:
  666. resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
  667. engines: {node: '>=12'}
  668. hasBin: true
  669. escape-string-regexp@4.0.0:
  670. resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
  671. engines: {node: '>=10'}
  672. eslint-plugin-vue@9.31.0:
  673. resolution: {integrity: sha512-aYMUCgivhz1o4tLkRHj5oq9YgYPM4/EJc0M7TAKRLCUA5OYxRLAhYEVD2nLtTwLyixEFI+/QXSvKU9ESZFgqjQ==}
  674. engines: {node: ^14.17.0 || >=16.0.0}
  675. peerDependencies:
  676. eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
  677. eslint-scope@7.2.2:
  678. resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
  679. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  680. eslint-scope@8.2.0:
  681. resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==}
  682. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  683. eslint-visitor-keys@3.4.3:
  684. resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
  685. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  686. eslint-visitor-keys@4.2.0:
  687. resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
  688. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  689. eslint@9.15.0:
  690. resolution: {integrity: sha512-7CrWySmIibCgT1Os28lUU6upBshZ+GxybLOrmRzi08kS8MBuO8QA7pXEgYgY5W8vK3e74xv0lpjo9DbaGU9Rkw==}
  691. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  692. hasBin: true
  693. peerDependencies:
  694. jiti: '*'
  695. peerDependenciesMeta:
  696. jiti:
  697. optional: true
  698. espree@10.3.0:
  699. resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
  700. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  701. espree@9.6.1:
  702. resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
  703. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  704. esquery@1.6.0:
  705. resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
  706. engines: {node: '>=0.10'}
  707. esrecurse@4.3.0:
  708. resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
  709. engines: {node: '>=4.0'}
  710. estraverse@5.3.0:
  711. resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
  712. engines: {node: '>=4.0'}
  713. estree-walker@2.0.2:
  714. resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
  715. esutils@2.0.3:
  716. resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
  717. engines: {node: '>=0.10.0'}
  718. fast-deep-equal@3.1.3:
  719. resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
  720. fast-glob@3.3.2:
  721. resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
  722. engines: {node: '>=8.6.0'}
  723. fast-json-stable-stringify@2.1.0:
  724. resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
  725. fast-levenshtein@2.0.6:
  726. resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
  727. fast-uri@3.0.3:
  728. resolution: {integrity: sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==}
  729. fastest-levenshtein@1.0.16:
  730. resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==}
  731. engines: {node: '>= 4.9.1'}
  732. fastq@1.17.1:
  733. resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
  734. file-entry-cache@8.0.0:
  735. resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
  736. engines: {node: '>=16.0.0'}
  737. file-entry-cache@9.1.0:
  738. resolution: {integrity: sha512-/pqPFG+FdxWQj+/WSuzXSDaNzxgTLr/OrR1QuqfEZzDakpdYE70PwUxL7BPUa8hpjbvY1+qvCl8k+8Tq34xJgg==}
  739. engines: {node: '>=18'}
  740. fill-range@7.1.1:
  741. resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
  742. engines: {node: '>=8'}
  743. find-up@5.0.0:
  744. resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
  745. engines: {node: '>=10'}
  746. flat-cache@4.0.1:
  747. resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
  748. engines: {node: '>=16'}
  749. flat-cache@5.0.0:
  750. resolution: {integrity: sha512-JrqFmyUl2PnPi1OvLyTVHnQvwQ0S+e6lGSwu8OkAZlSaNIZciTY2H/cOOROxsBA1m/LZNHDsqAgDZt6akWcjsQ==}
  751. engines: {node: '>=18'}
  752. flatted@3.3.2:
  753. resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==}
  754. fsevents@2.3.3:
  755. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  756. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  757. os: [darwin]
  758. glob-parent@5.1.2:
  759. resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
  760. engines: {node: '>= 6'}
  761. glob-parent@6.0.2:
  762. resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
  763. engines: {node: '>=10.13.0'}
  764. global-modules@2.0.0:
  765. resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==}
  766. engines: {node: '>=6'}
  767. global-prefix@3.0.0:
  768. resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==}
  769. engines: {node: '>=6'}
  770. globals@13.24.0:
  771. resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
  772. engines: {node: '>=8'}
  773. globals@14.0.0:
  774. resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
  775. engines: {node: '>=18'}
  776. globals@15.12.0:
  777. resolution: {integrity: sha512-1+gLErljJFhbOVyaetcwJiJ4+eLe45S2E7P5UiZ9xGfeq3ATQf5DOv9G7MH3gGbKQLkzmNh2DxfZwLdw+j6oTQ==}
  778. engines: {node: '>=18'}
  779. globby@11.1.0:
  780. resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
  781. engines: {node: '>=10'}
  782. globjoin@0.1.4:
  783. resolution: {integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==}
  784. graphemer@1.4.0:
  785. resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
  786. has-flag@4.0.0:
  787. resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
  788. engines: {node: '>=8'}
  789. he@1.2.0:
  790. resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
  791. hasBin: true
  792. html-tags@3.3.1:
  793. resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
  794. engines: {node: '>=8'}
  795. htmlparser2@8.0.2:
  796. resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==}
  797. husky@9.1.7:
  798. resolution: {integrity: sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==}
  799. engines: {node: '>=18'}
  800. hasBin: true
  801. ignore@5.3.2:
  802. resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
  803. engines: {node: '>= 4'}
  804. ignore@6.0.2:
  805. resolution: {integrity: sha512-InwqeHHN2XpumIkMvpl/DCJVrAHgCsG5+cn1XlnLWGwtZBm8QJfSusItfrwx81CTp5agNZqpKU2J/ccC5nGT4A==}
  806. engines: {node: '>= 4'}
  807. immutable@5.0.2:
  808. resolution: {integrity: sha512-1NU7hWZDkV7hJ4PJ9dur9gTNQ4ePNPN4k9/0YhwjzykTi/+3Q5pF93YU5QoVj8BuOnhLgaY8gs0U2pj4kSYVcw==}
  809. import-fresh@3.3.0:
  810. resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
  811. engines: {node: '>=6'}
  812. imurmurhash@0.1.4:
  813. resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
  814. engines: {node: '>=0.8.19'}
  815. ini@1.3.8:
  816. resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
  817. is-arrayish@0.2.1:
  818. resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
  819. is-extglob@2.1.1:
  820. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  821. engines: {node: '>=0.10.0'}
  822. is-fullwidth-code-point@3.0.0:
  823. resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
  824. engines: {node: '>=8'}
  825. is-glob@4.0.3:
  826. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  827. engines: {node: '>=0.10.0'}
  828. is-number@7.0.0:
  829. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  830. engines: {node: '>=0.12.0'}
  831. is-plain-object@5.0.0:
  832. resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
  833. engines: {node: '>=0.10.0'}
  834. isexe@2.0.0:
  835. resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
  836. js-tokens@4.0.0:
  837. resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
  838. js-tokens@9.0.0:
  839. resolution: {integrity: sha512-WriZw1luRMlmV3LGJaR6QOJjWwgLUTf89OwT2lUOyjX2dJGBwgmIkbcz+7WFZjrZM635JOIR517++e/67CP9dQ==}
  840. js-yaml@4.1.0:
  841. resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
  842. hasBin: true
  843. json-buffer@3.0.1:
  844. resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
  845. json-parse-even-better-errors@2.3.1:
  846. resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
  847. json-schema-traverse@0.4.1:
  848. resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
  849. json-schema-traverse@1.0.0:
  850. resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
  851. json-stable-stringify-without-jsonify@1.0.1:
  852. resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
  853. keyv@4.5.4:
  854. resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
  855. kind-of@6.0.3:
  856. resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
  857. engines: {node: '>=0.10.0'}
  858. known-css-properties@0.34.0:
  859. resolution: {integrity: sha512-tBECoUqNFbyAY4RrbqsBQqDFpGXAEbdD5QKr8kACx3+rnArmuuR22nKQWKazvp07N9yjTyDZaw/20UIH8tL9DQ==}
  860. known-css-properties@0.35.0:
  861. resolution: {integrity: sha512-a/RAk2BfKk+WFGhhOCAYqSiFLc34k8Mt/6NWRI4joER0EYUzXIcFivjjnoD3+XU1DggLn/tZc3DOAgke7l8a4A==}
  862. levn@0.4.1:
  863. resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
  864. engines: {node: '>= 0.8.0'}
  865. lines-and-columns@1.2.4:
  866. resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
  867. locate-path@6.0.0:
  868. resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
  869. engines: {node: '>=10'}
  870. lodash.merge@4.6.2:
  871. resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
  872. lodash.truncate@4.4.2:
  873. resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==}
  874. lodash@4.17.21:
  875. resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
  876. magic-string@0.30.13:
  877. resolution: {integrity: sha512-8rYBO+MsWkgjDSOvLomYnzhdwEG51olQ4zL5KXnNJWV5MNmrb4rTZdrtkhxjnD/QyZUqR/Z/XDsUs/4ej2nx0g==}
  878. mathml-tag-names@2.1.3:
  879. resolution: {integrity: sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==}
  880. mdn-data@2.12.1:
  881. resolution: {integrity: sha512-rsfnCbOHjqrhWxwt5/wtSLzpoKTzW7OXdT5lLOIH1OTYhWu9rRJveGq0sKvDZODABH7RX+uoR+DYcpFnq4Tf6Q==}
  882. mdn-data@2.12.2:
  883. resolution: {integrity: sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==}
  884. meow@13.2.0:
  885. resolution: {integrity: sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==}
  886. engines: {node: '>=18'}
  887. merge2@1.4.1:
  888. resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
  889. engines: {node: '>= 8'}
  890. micromatch@4.0.8:
  891. resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
  892. engines: {node: '>=8.6'}
  893. minimatch@3.1.2:
  894. resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
  895. minimatch@9.0.5:
  896. resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
  897. engines: {node: '>=16 || 14 >=14.17'}
  898. ms@2.1.3:
  899. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  900. muggle-string@0.4.1:
  901. resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
  902. nanoid@3.3.7:
  903. resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
  904. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  905. hasBin: true
  906. natural-compare@1.4.0:
  907. resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
  908. node-addon-api@7.1.1:
  909. resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
  910. normalize-path@3.0.0:
  911. resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
  912. engines: {node: '>=0.10.0'}
  913. nth-check@2.1.1:
  914. resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
  915. optionator@0.9.4:
  916. resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
  917. engines: {node: '>= 0.8.0'}
  918. p-limit@3.1.0:
  919. resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
  920. engines: {node: '>=10'}
  921. p-locate@5.0.0:
  922. resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
  923. engines: {node: '>=10'}
  924. parent-module@1.0.1:
  925. resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
  926. engines: {node: '>=6'}
  927. parse-json@5.2.0:
  928. resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
  929. engines: {node: '>=8'}
  930. path-browserify@1.0.1:
  931. resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
  932. path-exists@4.0.0:
  933. resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
  934. engines: {node: '>=8'}
  935. path-key@3.1.1:
  936. resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
  937. engines: {node: '>=8'}
  938. path-type@4.0.0:
  939. resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
  940. engines: {node: '>=8'}
  941. picocolors@1.1.1:
  942. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  943. picomatch@2.3.1:
  944. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  945. engines: {node: '>=8.6'}
  946. postcss-html@1.7.0:
  947. resolution: {integrity: sha512-MfcMpSUIaR/nNgeVS8AyvyDugXlADjN9AcV7e5rDfrF1wduIAGSkL4q2+wgrZgA3sHVAHLDO9FuauHhZYW2nBw==}
  948. engines: {node: ^12 || >=14}
  949. postcss-media-query-parser@0.2.3:
  950. resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==}
  951. postcss-resolve-nested-selector@0.1.6:
  952. resolution: {integrity: sha512-0sglIs9Wmkzbr8lQwEyIzlDOOC9bGmfVKcJTaxv3vMmd3uo4o4DerC3En0bnmgceeql9BfC8hRkp7cg0fjdVqw==}
  953. postcss-safe-parser@6.0.0:
  954. resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==}
  955. engines: {node: '>=12.0'}
  956. peerDependencies:
  957. postcss: ^8.3.3
  958. postcss-safe-parser@7.0.1:
  959. resolution: {integrity: sha512-0AioNCJZ2DPYz5ABT6bddIqlhgwhpHZ/l65YAYo0BCIn0xiDpsnTHz0gnoTGk0OXZW0JRs+cDwL8u/teRdz+8A==}
  960. engines: {node: '>=18.0'}
  961. peerDependencies:
  962. postcss: ^8.4.31
  963. postcss-scss@4.0.9:
  964. resolution: {integrity: sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==}
  965. engines: {node: '>=12.0'}
  966. peerDependencies:
  967. postcss: ^8.4.29
  968. postcss-selector-parser@6.1.2:
  969. resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
  970. engines: {node: '>=4'}
  971. postcss-sorting@8.0.2:
  972. resolution: {integrity: sha512-M9dkSrmU00t/jK7rF6BZSZauA5MAaBW4i5EnJXspMwt4iqTh/L9j6fgMnbElEOfyRyfLfVbIHj/R52zHzAPe1Q==}
  973. peerDependencies:
  974. postcss: ^8.4.20
  975. postcss-value-parser@4.2.0:
  976. resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
  977. postcss@8.4.49:
  978. resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==}
  979. engines: {node: ^10 || ^12 || >=14}
  980. prelude-ls@1.2.1:
  981. resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
  982. engines: {node: '>= 0.8.0'}
  983. prettier@3.3.3:
  984. resolution: {integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==}
  985. engines: {node: '>=14'}
  986. hasBin: true
  987. punycode@2.3.1:
  988. resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
  989. engines: {node: '>=6'}
  990. queue-microtask@1.2.3:
  991. resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
  992. readdirp@4.0.2:
  993. resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==}
  994. engines: {node: '>= 14.16.0'}
  995. require-from-string@2.0.2:
  996. resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
  997. engines: {node: '>=0.10.0'}
  998. resolve-from@4.0.0:
  999. resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
  1000. engines: {node: '>=4'}
  1001. resolve-from@5.0.0:
  1002. resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
  1003. engines: {node: '>=8'}
  1004. reusify@1.0.4:
  1005. resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
  1006. engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
  1007. rollup@4.27.3:
  1008. resolution: {integrity: sha512-SLsCOnlmGt9VoZ9Ek8yBK8tAdmPHeppkw+Xa7yDlCEhDTvwYei03JlWo1fdc7YTfLZ4tD8riJCUyAgTbszk1fQ==}
  1009. engines: {node: '>=18.0.0', npm: '>=8.0.0'}
  1010. hasBin: true
  1011. run-parallel@1.2.0:
  1012. resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
  1013. sass@1.81.0:
  1014. resolution: {integrity: sha512-Q4fOxRfhmv3sqCLoGfvrC9pRV8btc0UtqL9mN6Yrv6Qi9ScL55CVH1vlPP863ISLEEMNLLuu9P+enCeGHlnzhA==}
  1015. engines: {node: '>=14.0.0'}
  1016. hasBin: true
  1017. semver@7.6.3:
  1018. resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
  1019. engines: {node: '>=10'}
  1020. hasBin: true
  1021. shebang-command@2.0.0:
  1022. resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
  1023. engines: {node: '>=8'}
  1024. shebang-regex@3.0.0:
  1025. resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
  1026. engines: {node: '>=8'}
  1027. signal-exit@4.1.0:
  1028. resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
  1029. engines: {node: '>=14'}
  1030. slash@3.0.0:
  1031. resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
  1032. engines: {node: '>=8'}
  1033. slice-ansi@4.0.0:
  1034. resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==}
  1035. engines: {node: '>=10'}
  1036. source-map-js@1.2.1:
  1037. resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  1038. engines: {node: '>=0.10.0'}
  1039. string-width@4.2.3:
  1040. resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
  1041. engines: {node: '>=8'}
  1042. strip-ansi@6.0.1:
  1043. resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
  1044. engines: {node: '>=8'}
  1045. strip-json-comments@3.1.1:
  1046. resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
  1047. engines: {node: '>=8'}
  1048. stylelint-config-html@1.1.0:
  1049. resolution: {integrity: sha512-IZv4IVESjKLumUGi+HWeb7skgO6/g4VMuAYrJdlqQFndgbj6WJAXPhaysvBiXefX79upBdQVumgYcdd17gCpjQ==}
  1050. engines: {node: ^12 || >=14}
  1051. peerDependencies:
  1052. postcss-html: ^1.0.0
  1053. stylelint: '>=14.0.0'
  1054. stylelint-config-prettier@9.0.5:
  1055. resolution: {integrity: sha512-U44lELgLZhbAD/xy/vncZ2Pq8sh2TnpiPvo38Ifg9+zeioR+LAkHu0i6YORIOxFafZoVg0xqQwex6e6F25S5XA==}
  1056. engines: {node: '>= 12'}
  1057. hasBin: true
  1058. peerDependencies:
  1059. stylelint: '>= 11.x < 15'
  1060. stylelint-config-recommended-scss@14.1.0:
  1061. resolution: {integrity: sha512-bhaMhh1u5dQqSsf6ri2GVWWQW5iUjBYgcHkh7SgDDn92ijoItC/cfO/W+fpXshgTQWhwFkP1rVcewcv4jaftRg==}
  1062. engines: {node: '>=18.12.0'}
  1063. peerDependencies:
  1064. postcss: ^8.3.3
  1065. stylelint: ^16.6.1
  1066. peerDependenciesMeta:
  1067. postcss:
  1068. optional: true
  1069. stylelint-config-recommended-vue@1.5.0:
  1070. resolution: {integrity: sha512-65TAK/clUqkNtkZLcuytoxU0URQYlml+30Nhop7sRkCZ/mtWdXt7T+spPSB3KMKlb+82aEVJ4OrcstyDBdbosg==}
  1071. engines: {node: ^12 || >=14}
  1072. peerDependencies:
  1073. postcss-html: ^1.0.0
  1074. stylelint: '>=14.0.0'
  1075. stylelint-config-recommended@14.0.1:
  1076. resolution: {integrity: sha512-bLvc1WOz/14aPImu/cufKAZYfXs/A/owZfSMZ4N+16WGXLoX5lOir53M6odBxvhgmgdxCVnNySJmZKx73T93cg==}
  1077. engines: {node: '>=18.12.0'}
  1078. peerDependencies:
  1079. stylelint: ^16.1.0
  1080. stylelint-config-standard-scss@13.1.0:
  1081. resolution: {integrity: sha512-Eo5w7/XvwGHWkeGLtdm2FZLOMYoZl1omP2/jgFCXyl2x5yNz7/8vv4Tj6slHvMSSUNTaGoam/GAZ0ZhukvalfA==}
  1082. engines: {node: '>=18.12.0'}
  1083. peerDependencies:
  1084. postcss: ^8.3.3
  1085. stylelint: ^16.3.1
  1086. peerDependenciesMeta:
  1087. postcss:
  1088. optional: true
  1089. stylelint-config-standard-vue@1.0.0:
  1090. resolution: {integrity: sha512-wAzU7p6DSlo04pWfCbOcaMq09Nojt0FEsbdxhCBTdC7IguD9ZVl7FP/bvyA0HAHjZGC4JkW7m6WiQaoVMDSuFw==}
  1091. engines: {node: ^12 || >=14}
  1092. peerDependencies:
  1093. postcss-html: ^1.0.0
  1094. stylelint: '>=14.0.0'
  1095. stylelint-config-standard@36.0.1:
  1096. resolution: {integrity: sha512-8aX8mTzJ6cuO8mmD5yon61CWuIM4UD8Q5aBcWKGSf6kg+EC3uhB+iOywpTK4ca6ZL7B49en8yanOFtUW0qNzyw==}
  1097. engines: {node: '>=18.12.0'}
  1098. peerDependencies:
  1099. stylelint: ^16.1.0
  1100. stylelint-order@6.0.4:
  1101. resolution: {integrity: sha512-0UuKo4+s1hgQ/uAxlYU4h0o0HS4NiQDud0NAUNI0aa8FJdmYHA5ZZTFHiV5FpmE3071e9pZx5j0QpVJW5zOCUA==}
  1102. peerDependencies:
  1103. stylelint: ^14.0.0 || ^15.0.0 || ^16.0.1
  1104. stylelint-scss@6.9.0:
  1105. resolution: {integrity: sha512-oWOR+g6ccagfrENecImGmorWWjVyWpt2R8bmkhOW8FkNNPGStZPQMqb8QWMW4Lwu9TyPqmyjHkkAsy3weqsnNw==}
  1106. engines: {node: '>=18.12.0'}
  1107. peerDependencies:
  1108. stylelint: ^16.0.2
  1109. stylelint@16.10.0:
  1110. resolution: {integrity: sha512-z/8X2rZ52dt2c0stVwI9QL2AFJhLhbPkyfpDFcizs200V/g7v+UYY6SNcB9hKOLcDDX/yGLDsY/pX08sLkz9xQ==}
  1111. engines: {node: '>=18.12.0'}
  1112. hasBin: true
  1113. supports-color@7.2.0:
  1114. resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
  1115. engines: {node: '>=8'}
  1116. supports-hyperlinks@3.1.0:
  1117. resolution: {integrity: sha512-2rn0BZ+/f7puLOHZm1HOJfwBggfaHXUpPUSSG/SWM4TWp5KCfmNYwnC3hruy2rZlMnmWZ+QAGpZfchu3f3695A==}
  1118. engines: {node: '>=14.18'}
  1119. svg-tags@1.0.0:
  1120. resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==}
  1121. table@6.8.2:
  1122. resolution: {integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==}
  1123. engines: {node: '>=10.0.0'}
  1124. to-regex-range@5.0.1:
  1125. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  1126. engines: {node: '>=8.0'}
  1127. ts-api-utils@1.4.0:
  1128. resolution: {integrity: sha512-032cPxaEKwM+GT3vA5JXNzIaizx388rhsSW79vGRNGXfRRAdEAn2mvk36PvK5HnOchyWZ7afLEXqYCvPCrzuzQ==}
  1129. engines: {node: '>=16'}
  1130. peerDependencies:
  1131. typescript: '>=4.2.0'
  1132. type-check@0.4.0:
  1133. resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
  1134. engines: {node: '>= 0.8.0'}
  1135. type-fest@0.20.2:
  1136. resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
  1137. engines: {node: '>=10'}
  1138. typescript-eslint@8.15.0:
  1139. resolution: {integrity: sha512-wY4FRGl0ZI+ZU4Jo/yjdBu0lVTSML58pu6PgGtJmCufvzfV565pUF6iACQt092uFOd49iLOTX/sEVmHtbSrS+w==}
  1140. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1141. peerDependencies:
  1142. eslint: ^8.57.0 || ^9.0.0
  1143. typescript: '*'
  1144. peerDependenciesMeta:
  1145. typescript:
  1146. optional: true
  1147. typescript@5.6.3:
  1148. resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==}
  1149. engines: {node: '>=14.17'}
  1150. hasBin: true
  1151. undici-types@6.19.8:
  1152. resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==}
  1153. uri-js@4.4.1:
  1154. resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
  1155. util-deprecate@1.0.2:
  1156. resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
  1157. vite@5.4.11:
  1158. resolution: {integrity: sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==}
  1159. engines: {node: ^18.0.0 || >=20.0.0}
  1160. hasBin: true
  1161. peerDependencies:
  1162. '@types/node': ^18.0.0 || >=20.0.0
  1163. less: '*'
  1164. lightningcss: ^1.21.0
  1165. sass: '*'
  1166. sass-embedded: '*'
  1167. stylus: '*'
  1168. sugarss: '*'
  1169. terser: ^5.4.0
  1170. peerDependenciesMeta:
  1171. '@types/node':
  1172. optional: true
  1173. less:
  1174. optional: true
  1175. lightningcss:
  1176. optional: true
  1177. sass:
  1178. optional: true
  1179. sass-embedded:
  1180. optional: true
  1181. stylus:
  1182. optional: true
  1183. sugarss:
  1184. optional: true
  1185. terser:
  1186. optional: true
  1187. vscode-uri@3.0.8:
  1188. resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==}
  1189. vue-eslint-parser@9.4.3:
  1190. resolution: {integrity: sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==}
  1191. engines: {node: ^14.17.0 || >=16.0.0}
  1192. peerDependencies:
  1193. eslint: '>=6.0.0'
  1194. vue-tsc@2.1.10:
  1195. resolution: {integrity: sha512-RBNSfaaRHcN5uqVqJSZh++Gy/YUzryuv9u1aFWhsammDJXNtUiJMNoJ747lZcQ68wUQFx6E73y4FY3D8E7FGMA==}
  1196. hasBin: true
  1197. peerDependencies:
  1198. typescript: '>=5.0.0'
  1199. vue@3.5.13:
  1200. resolution: {integrity: sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==}
  1201. peerDependencies:
  1202. typescript: '*'
  1203. peerDependenciesMeta:
  1204. typescript:
  1205. optional: true
  1206. which@1.3.1:
  1207. resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
  1208. hasBin: true
  1209. which@2.0.2:
  1210. resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
  1211. engines: {node: '>= 8'}
  1212. hasBin: true
  1213. word-wrap@1.2.5:
  1214. resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
  1215. engines: {node: '>=0.10.0'}
  1216. write-file-atomic@5.0.1:
  1217. resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==}
  1218. engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
  1219. xml-name-validator@4.0.0:
  1220. resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}
  1221. engines: {node: '>=12'}
  1222. yocto-queue@0.1.0:
  1223. resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
  1224. engines: {node: '>=10'}
  1225. snapshots:
  1226. '@babel/code-frame@7.26.2':
  1227. dependencies:
  1228. '@babel/helper-validator-identifier': 7.25.9
  1229. js-tokens: 4.0.0
  1230. picocolors: 1.1.1
  1231. '@babel/helper-string-parser@7.25.9': {}
  1232. '@babel/helper-validator-identifier@7.25.9': {}
  1233. '@babel/parser@7.26.2':
  1234. dependencies:
  1235. '@babel/types': 7.26.0
  1236. '@babel/types@7.26.0':
  1237. dependencies:
  1238. '@babel/helper-string-parser': 7.25.9
  1239. '@babel/helper-validator-identifier': 7.25.9
  1240. '@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3)':
  1241. dependencies:
  1242. '@csstools/css-tokenizer': 3.0.3
  1243. '@csstools/css-tokenizer@3.0.3': {}
  1244. '@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)':
  1245. dependencies:
  1246. '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3)
  1247. '@csstools/css-tokenizer': 3.0.3
  1248. '@csstools/selector-specificity@4.0.0(postcss-selector-parser@6.1.2)':
  1249. dependencies:
  1250. postcss-selector-parser: 6.1.2
  1251. '@dual-bundle/import-meta-resolve@4.1.0': {}
  1252. '@esbuild/aix-ppc64@0.21.5':
  1253. optional: true
  1254. '@esbuild/android-arm64@0.21.5':
  1255. optional: true
  1256. '@esbuild/android-arm@0.21.5':
  1257. optional: true
  1258. '@esbuild/android-x64@0.21.5':
  1259. optional: true
  1260. '@esbuild/darwin-arm64@0.21.5':
  1261. optional: true
  1262. '@esbuild/darwin-x64@0.21.5':
  1263. optional: true
  1264. '@esbuild/freebsd-arm64@0.21.5':
  1265. optional: true
  1266. '@esbuild/freebsd-x64@0.21.5':
  1267. optional: true
  1268. '@esbuild/linux-arm64@0.21.5':
  1269. optional: true
  1270. '@esbuild/linux-arm@0.21.5':
  1271. optional: true
  1272. '@esbuild/linux-ia32@0.21.5':
  1273. optional: true
  1274. '@esbuild/linux-loong64@0.21.5':
  1275. optional: true
  1276. '@esbuild/linux-mips64el@0.21.5':
  1277. optional: true
  1278. '@esbuild/linux-ppc64@0.21.5':
  1279. optional: true
  1280. '@esbuild/linux-riscv64@0.21.5':
  1281. optional: true
  1282. '@esbuild/linux-s390x@0.21.5':
  1283. optional: true
  1284. '@esbuild/linux-x64@0.21.5':
  1285. optional: true
  1286. '@esbuild/netbsd-x64@0.21.5':
  1287. optional: true
  1288. '@esbuild/openbsd-x64@0.21.5':
  1289. optional: true
  1290. '@esbuild/sunos-x64@0.21.5':
  1291. optional: true
  1292. '@esbuild/win32-arm64@0.21.5':
  1293. optional: true
  1294. '@esbuild/win32-ia32@0.21.5':
  1295. optional: true
  1296. '@esbuild/win32-x64@0.21.5':
  1297. optional: true
  1298. '@eslint-community/eslint-utils@4.4.1(eslint@9.15.0)':
  1299. dependencies:
  1300. eslint: 9.15.0
  1301. eslint-visitor-keys: 3.4.3
  1302. '@eslint-community/regexpp@4.12.1': {}
  1303. '@eslint/config-array@0.19.0':
  1304. dependencies:
  1305. '@eslint/object-schema': 2.1.4
  1306. debug: 4.3.7
  1307. minimatch: 3.1.2
  1308. transitivePeerDependencies:
  1309. - supports-color
  1310. '@eslint/core@0.9.0': {}
  1311. '@eslint/eslintrc@3.2.0':
  1312. dependencies:
  1313. ajv: 6.12.6
  1314. debug: 4.3.7
  1315. espree: 10.3.0
  1316. globals: 14.0.0
  1317. ignore: 5.3.2
  1318. import-fresh: 3.3.0
  1319. js-yaml: 4.1.0
  1320. minimatch: 3.1.2
  1321. strip-json-comments: 3.1.1
  1322. transitivePeerDependencies:
  1323. - supports-color
  1324. '@eslint/js@9.15.0': {}
  1325. '@eslint/object-schema@2.1.4': {}
  1326. '@eslint/plugin-kit@0.2.3':
  1327. dependencies:
  1328. levn: 0.4.1
  1329. '@humanfs/core@0.19.1': {}
  1330. '@humanfs/node@0.16.6':
  1331. dependencies:
  1332. '@humanfs/core': 0.19.1
  1333. '@humanwhocodes/retry': 0.3.1
  1334. '@humanwhocodes/module-importer@1.0.1': {}
  1335. '@humanwhocodes/retry@0.3.1': {}
  1336. '@humanwhocodes/retry@0.4.1': {}
  1337. '@jridgewell/sourcemap-codec@1.5.0': {}
  1338. '@nodelib/fs.scandir@2.1.5':
  1339. dependencies:
  1340. '@nodelib/fs.stat': 2.0.5
  1341. run-parallel: 1.2.0
  1342. '@nodelib/fs.stat@2.0.5': {}
  1343. '@nodelib/fs.walk@1.2.8':
  1344. dependencies:
  1345. '@nodelib/fs.scandir': 2.1.5
  1346. fastq: 1.17.1
  1347. '@parcel/watcher-android-arm64@2.5.0':
  1348. optional: true
  1349. '@parcel/watcher-darwin-arm64@2.5.0':
  1350. optional: true
  1351. '@parcel/watcher-darwin-x64@2.5.0':
  1352. optional: true
  1353. '@parcel/watcher-freebsd-x64@2.5.0':
  1354. optional: true
  1355. '@parcel/watcher-linux-arm-glibc@2.5.0':
  1356. optional: true
  1357. '@parcel/watcher-linux-arm-musl@2.5.0':
  1358. optional: true
  1359. '@parcel/watcher-linux-arm64-glibc@2.5.0':
  1360. optional: true
  1361. '@parcel/watcher-linux-arm64-musl@2.5.0':
  1362. optional: true
  1363. '@parcel/watcher-linux-x64-glibc@2.5.0':
  1364. optional: true
  1365. '@parcel/watcher-linux-x64-musl@2.5.0':
  1366. optional: true
  1367. '@parcel/watcher-win32-arm64@2.5.0':
  1368. optional: true
  1369. '@parcel/watcher-win32-ia32@2.5.0':
  1370. optional: true
  1371. '@parcel/watcher-win32-x64@2.5.0':
  1372. optional: true
  1373. '@parcel/watcher@2.5.0':
  1374. dependencies:
  1375. detect-libc: 1.0.3
  1376. is-glob: 4.0.3
  1377. micromatch: 4.0.8
  1378. node-addon-api: 7.1.1
  1379. optionalDependencies:
  1380. '@parcel/watcher-android-arm64': 2.5.0
  1381. '@parcel/watcher-darwin-arm64': 2.5.0
  1382. '@parcel/watcher-darwin-x64': 2.5.0
  1383. '@parcel/watcher-freebsd-x64': 2.5.0
  1384. '@parcel/watcher-linux-arm-glibc': 2.5.0
  1385. '@parcel/watcher-linux-arm-musl': 2.5.0
  1386. '@parcel/watcher-linux-arm64-glibc': 2.5.0
  1387. '@parcel/watcher-linux-arm64-musl': 2.5.0
  1388. '@parcel/watcher-linux-x64-glibc': 2.5.0
  1389. '@parcel/watcher-linux-x64-musl': 2.5.0
  1390. '@parcel/watcher-win32-arm64': 2.5.0
  1391. '@parcel/watcher-win32-ia32': 2.5.0
  1392. '@parcel/watcher-win32-x64': 2.5.0
  1393. optional: true
  1394. '@rollup/rollup-android-arm-eabi@4.27.3':
  1395. optional: true
  1396. '@rollup/rollup-android-arm64@4.27.3':
  1397. optional: true
  1398. '@rollup/rollup-darwin-arm64@4.27.3':
  1399. optional: true
  1400. '@rollup/rollup-darwin-x64@4.27.3':
  1401. optional: true
  1402. '@rollup/rollup-freebsd-arm64@4.27.3':
  1403. optional: true
  1404. '@rollup/rollup-freebsd-x64@4.27.3':
  1405. optional: true
  1406. '@rollup/rollup-linux-arm-gnueabihf@4.27.3':
  1407. optional: true
  1408. '@rollup/rollup-linux-arm-musleabihf@4.27.3':
  1409. optional: true
  1410. '@rollup/rollup-linux-arm64-gnu@4.27.3':
  1411. optional: true
  1412. '@rollup/rollup-linux-arm64-musl@4.27.3':
  1413. optional: true
  1414. '@rollup/rollup-linux-powerpc64le-gnu@4.27.3':
  1415. optional: true
  1416. '@rollup/rollup-linux-riscv64-gnu@4.27.3':
  1417. optional: true
  1418. '@rollup/rollup-linux-s390x-gnu@4.27.3':
  1419. optional: true
  1420. '@rollup/rollup-linux-x64-gnu@4.27.3':
  1421. optional: true
  1422. '@rollup/rollup-linux-x64-musl@4.27.3':
  1423. optional: true
  1424. '@rollup/rollup-win32-arm64-msvc@4.27.3':
  1425. optional: true
  1426. '@rollup/rollup-win32-ia32-msvc@4.27.3':
  1427. optional: true
  1428. '@rollup/rollup-win32-x64-msvc@4.27.3':
  1429. optional: true
  1430. '@types/estree@1.0.6': {}
  1431. '@types/json-schema@7.0.15': {}
  1432. '@types/node@22.9.0':
  1433. dependencies:
  1434. undici-types: 6.19.8
  1435. '@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)':
  1436. dependencies:
  1437. '@eslint-community/regexpp': 4.12.1
  1438. '@typescript-eslint/parser': 8.15.0(eslint@9.15.0)(typescript@5.6.3)
  1439. '@typescript-eslint/scope-manager': 8.15.0
  1440. '@typescript-eslint/type-utils': 8.15.0(eslint@9.15.0)(typescript@5.6.3)
  1441. '@typescript-eslint/utils': 8.15.0(eslint@9.15.0)(typescript@5.6.3)
  1442. '@typescript-eslint/visitor-keys': 8.15.0
  1443. eslint: 9.15.0
  1444. graphemer: 1.4.0
  1445. ignore: 5.3.2
  1446. natural-compare: 1.4.0
  1447. ts-api-utils: 1.4.0(typescript@5.6.3)
  1448. optionalDependencies:
  1449. typescript: 5.6.3
  1450. transitivePeerDependencies:
  1451. - supports-color
  1452. '@typescript-eslint/parser@8.15.0(eslint@9.15.0)(typescript@5.6.3)':
  1453. dependencies:
  1454. '@typescript-eslint/scope-manager': 8.15.0
  1455. '@typescript-eslint/types': 8.15.0
  1456. '@typescript-eslint/typescript-estree': 8.15.0(typescript@5.6.3)
  1457. '@typescript-eslint/visitor-keys': 8.15.0
  1458. debug: 4.3.7
  1459. eslint: 9.15.0
  1460. optionalDependencies:
  1461. typescript: 5.6.3
  1462. transitivePeerDependencies:
  1463. - supports-color
  1464. '@typescript-eslint/scope-manager@8.15.0':
  1465. dependencies:
  1466. '@typescript-eslint/types': 8.15.0
  1467. '@typescript-eslint/visitor-keys': 8.15.0
  1468. '@typescript-eslint/type-utils@8.15.0(eslint@9.15.0)(typescript@5.6.3)':
  1469. dependencies:
  1470. '@typescript-eslint/typescript-estree': 8.15.0(typescript@5.6.3)
  1471. '@typescript-eslint/utils': 8.15.0(eslint@9.15.0)(typescript@5.6.3)
  1472. debug: 4.3.7
  1473. eslint: 9.15.0
  1474. ts-api-utils: 1.4.0(typescript@5.6.3)
  1475. optionalDependencies:
  1476. typescript: 5.6.3
  1477. transitivePeerDependencies:
  1478. - supports-color
  1479. '@typescript-eslint/types@8.15.0': {}
  1480. '@typescript-eslint/typescript-estree@8.15.0(typescript@5.6.3)':
  1481. dependencies:
  1482. '@typescript-eslint/types': 8.15.0
  1483. '@typescript-eslint/visitor-keys': 8.15.0
  1484. debug: 4.3.7
  1485. fast-glob: 3.3.2
  1486. is-glob: 4.0.3
  1487. minimatch: 9.0.5
  1488. semver: 7.6.3
  1489. ts-api-utils: 1.4.0(typescript@5.6.3)
  1490. optionalDependencies:
  1491. typescript: 5.6.3
  1492. transitivePeerDependencies:
  1493. - supports-color
  1494. '@typescript-eslint/utils@8.15.0(eslint@9.15.0)(typescript@5.6.3)':
  1495. dependencies:
  1496. '@eslint-community/eslint-utils': 4.4.1(eslint@9.15.0)
  1497. '@typescript-eslint/scope-manager': 8.15.0
  1498. '@typescript-eslint/types': 8.15.0
  1499. '@typescript-eslint/typescript-estree': 8.15.0(typescript@5.6.3)
  1500. eslint: 9.15.0
  1501. optionalDependencies:
  1502. typescript: 5.6.3
  1503. transitivePeerDependencies:
  1504. - supports-color
  1505. '@typescript-eslint/visitor-keys@8.15.0':
  1506. dependencies:
  1507. '@typescript-eslint/types': 8.15.0
  1508. eslint-visitor-keys: 4.2.0
  1509. '@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))':
  1510. dependencies:
  1511. vite: 5.4.11(@types/node@22.9.0)(sass@1.81.0)
  1512. vue: 3.5.13(typescript@5.6.3)
  1513. '@volar/language-core@2.4.10':
  1514. dependencies:
  1515. '@volar/source-map': 2.4.10
  1516. '@volar/source-map@2.4.10': {}
  1517. '@volar/typescript@2.4.10':
  1518. dependencies:
  1519. '@volar/language-core': 2.4.10
  1520. path-browserify: 1.0.1
  1521. vscode-uri: 3.0.8
  1522. '@vue/compiler-core@3.5.13':
  1523. dependencies:
  1524. '@babel/parser': 7.26.2
  1525. '@vue/shared': 3.5.13
  1526. entities: 4.5.0
  1527. estree-walker: 2.0.2
  1528. source-map-js: 1.2.1
  1529. '@vue/compiler-dom@3.5.13':
  1530. dependencies:
  1531. '@vue/compiler-core': 3.5.13
  1532. '@vue/shared': 3.5.13
  1533. '@vue/compiler-sfc@3.5.13':
  1534. dependencies:
  1535. '@babel/parser': 7.26.2
  1536. '@vue/compiler-core': 3.5.13
  1537. '@vue/compiler-dom': 3.5.13
  1538. '@vue/compiler-ssr': 3.5.13
  1539. '@vue/shared': 3.5.13
  1540. estree-walker: 2.0.2
  1541. magic-string: 0.30.13
  1542. postcss: 8.4.49
  1543. source-map-js: 1.2.1
  1544. '@vue/compiler-ssr@3.5.13':
  1545. dependencies:
  1546. '@vue/compiler-dom': 3.5.13
  1547. '@vue/shared': 3.5.13
  1548. '@vue/compiler-vue2@2.7.16':
  1549. dependencies:
  1550. de-indent: 1.0.2
  1551. he: 1.2.0
  1552. '@vue/language-core@2.1.10(typescript@5.6.3)':
  1553. dependencies:
  1554. '@volar/language-core': 2.4.10
  1555. '@vue/compiler-dom': 3.5.13
  1556. '@vue/compiler-vue2': 2.7.16
  1557. '@vue/shared': 3.5.13
  1558. alien-signals: 0.2.2
  1559. minimatch: 9.0.5
  1560. muggle-string: 0.4.1
  1561. path-browserify: 1.0.1
  1562. optionalDependencies:
  1563. typescript: 5.6.3
  1564. '@vue/reactivity@3.5.13':
  1565. dependencies:
  1566. '@vue/shared': 3.5.13
  1567. '@vue/runtime-core@3.5.13':
  1568. dependencies:
  1569. '@vue/reactivity': 3.5.13
  1570. '@vue/shared': 3.5.13
  1571. '@vue/runtime-dom@3.5.13':
  1572. dependencies:
  1573. '@vue/reactivity': 3.5.13
  1574. '@vue/runtime-core': 3.5.13
  1575. '@vue/shared': 3.5.13
  1576. csstype: 3.1.3
  1577. '@vue/server-renderer@3.5.13(vue@3.5.13(typescript@5.6.3))':
  1578. dependencies:
  1579. '@vue/compiler-ssr': 3.5.13
  1580. '@vue/shared': 3.5.13
  1581. vue: 3.5.13(typescript@5.6.3)
  1582. '@vue/shared@3.5.13': {}
  1583. acorn-jsx@5.3.2(acorn@8.14.0):
  1584. dependencies:
  1585. acorn: 8.14.0
  1586. acorn@8.14.0: {}
  1587. ajv@6.12.6:
  1588. dependencies:
  1589. fast-deep-equal: 3.1.3
  1590. fast-json-stable-stringify: 2.1.0
  1591. json-schema-traverse: 0.4.1
  1592. uri-js: 4.4.1
  1593. ajv@8.17.1:
  1594. dependencies:
  1595. fast-deep-equal: 3.1.3
  1596. fast-uri: 3.0.3
  1597. json-schema-traverse: 1.0.0
  1598. require-from-string: 2.0.2
  1599. alien-signals@0.2.2: {}
  1600. ansi-regex@5.0.1: {}
  1601. ansi-styles@4.3.0:
  1602. dependencies:
  1603. color-convert: 2.0.1
  1604. argparse@2.0.1: {}
  1605. array-union@2.1.0: {}
  1606. astral-regex@2.0.0: {}
  1607. balanced-match@1.0.2: {}
  1608. balanced-match@2.0.0: {}
  1609. boolbase@1.0.0: {}
  1610. brace-expansion@1.1.11:
  1611. dependencies:
  1612. balanced-match: 1.0.2
  1613. concat-map: 0.0.1
  1614. brace-expansion@2.0.1:
  1615. dependencies:
  1616. balanced-match: 1.0.2
  1617. braces@3.0.3:
  1618. dependencies:
  1619. fill-range: 7.1.1
  1620. callsites@3.1.0: {}
  1621. chalk@4.1.2:
  1622. dependencies:
  1623. ansi-styles: 4.3.0
  1624. supports-color: 7.2.0
  1625. chokidar@4.0.1:
  1626. dependencies:
  1627. readdirp: 4.0.2
  1628. color-convert@2.0.1:
  1629. dependencies:
  1630. color-name: 1.1.4
  1631. color-name@1.1.4: {}
  1632. colord@2.9.3: {}
  1633. concat-map@0.0.1: {}
  1634. cosmiconfig@9.0.0(typescript@5.6.3):
  1635. dependencies:
  1636. env-paths: 2.2.1
  1637. import-fresh: 3.3.0
  1638. js-yaml: 4.1.0
  1639. parse-json: 5.2.0
  1640. optionalDependencies:
  1641. typescript: 5.6.3
  1642. cross-spawn@7.0.6:
  1643. dependencies:
  1644. path-key: 3.1.1
  1645. shebang-command: 2.0.0
  1646. which: 2.0.2
  1647. css-functions-list@3.2.3: {}
  1648. css-tree@3.0.1:
  1649. dependencies:
  1650. mdn-data: 2.12.1
  1651. source-map-js: 1.2.1
  1652. cssesc@3.0.0: {}
  1653. csstype@3.1.3: {}
  1654. de-indent@1.0.2: {}
  1655. debug@4.3.7:
  1656. dependencies:
  1657. ms: 2.1.3
  1658. deep-is@0.1.4: {}
  1659. detect-libc@1.0.3:
  1660. optional: true
  1661. dir-glob@3.0.1:
  1662. dependencies:
  1663. path-type: 4.0.0
  1664. dom-serializer@2.0.0:
  1665. dependencies:
  1666. domelementtype: 2.3.0
  1667. domhandler: 5.0.3
  1668. entities: 4.5.0
  1669. domelementtype@2.3.0: {}
  1670. domhandler@5.0.3:
  1671. dependencies:
  1672. domelementtype: 2.3.0
  1673. domutils@3.1.0:
  1674. dependencies:
  1675. dom-serializer: 2.0.0
  1676. domelementtype: 2.3.0
  1677. domhandler: 5.0.3
  1678. emoji-regex@8.0.0: {}
  1679. entities@4.5.0: {}
  1680. env-paths@2.2.1: {}
  1681. error-ex@1.3.2:
  1682. dependencies:
  1683. is-arrayish: 0.2.1
  1684. esbuild@0.21.5:
  1685. optionalDependencies:
  1686. '@esbuild/aix-ppc64': 0.21.5
  1687. '@esbuild/android-arm': 0.21.5
  1688. '@esbuild/android-arm64': 0.21.5
  1689. '@esbuild/android-x64': 0.21.5
  1690. '@esbuild/darwin-arm64': 0.21.5
  1691. '@esbuild/darwin-x64': 0.21.5
  1692. '@esbuild/freebsd-arm64': 0.21.5
  1693. '@esbuild/freebsd-x64': 0.21.5
  1694. '@esbuild/linux-arm': 0.21.5
  1695. '@esbuild/linux-arm64': 0.21.5
  1696. '@esbuild/linux-ia32': 0.21.5
  1697. '@esbuild/linux-loong64': 0.21.5
  1698. '@esbuild/linux-mips64el': 0.21.5
  1699. '@esbuild/linux-ppc64': 0.21.5
  1700. '@esbuild/linux-riscv64': 0.21.5
  1701. '@esbuild/linux-s390x': 0.21.5
  1702. '@esbuild/linux-x64': 0.21.5
  1703. '@esbuild/netbsd-x64': 0.21.5
  1704. '@esbuild/openbsd-x64': 0.21.5
  1705. '@esbuild/sunos-x64': 0.21.5
  1706. '@esbuild/win32-arm64': 0.21.5
  1707. '@esbuild/win32-ia32': 0.21.5
  1708. '@esbuild/win32-x64': 0.21.5
  1709. escape-string-regexp@4.0.0: {}
  1710. eslint-plugin-vue@9.31.0(eslint@9.15.0):
  1711. dependencies:
  1712. '@eslint-community/eslint-utils': 4.4.1(eslint@9.15.0)
  1713. eslint: 9.15.0
  1714. globals: 13.24.0
  1715. natural-compare: 1.4.0
  1716. nth-check: 2.1.1
  1717. postcss-selector-parser: 6.1.2
  1718. semver: 7.6.3
  1719. vue-eslint-parser: 9.4.3(eslint@9.15.0)
  1720. xml-name-validator: 4.0.0
  1721. transitivePeerDependencies:
  1722. - supports-color
  1723. eslint-scope@7.2.2:
  1724. dependencies:
  1725. esrecurse: 4.3.0
  1726. estraverse: 5.3.0
  1727. eslint-scope@8.2.0:
  1728. dependencies:
  1729. esrecurse: 4.3.0
  1730. estraverse: 5.3.0
  1731. eslint-visitor-keys@3.4.3: {}
  1732. eslint-visitor-keys@4.2.0: {}
  1733. eslint@9.15.0:
  1734. dependencies:
  1735. '@eslint-community/eslint-utils': 4.4.1(eslint@9.15.0)
  1736. '@eslint-community/regexpp': 4.12.1
  1737. '@eslint/config-array': 0.19.0
  1738. '@eslint/core': 0.9.0
  1739. '@eslint/eslintrc': 3.2.0
  1740. '@eslint/js': 9.15.0
  1741. '@eslint/plugin-kit': 0.2.3
  1742. '@humanfs/node': 0.16.6
  1743. '@humanwhocodes/module-importer': 1.0.1
  1744. '@humanwhocodes/retry': 0.4.1
  1745. '@types/estree': 1.0.6
  1746. '@types/json-schema': 7.0.15
  1747. ajv: 6.12.6
  1748. chalk: 4.1.2
  1749. cross-spawn: 7.0.6
  1750. debug: 4.3.7
  1751. escape-string-regexp: 4.0.0
  1752. eslint-scope: 8.2.0
  1753. eslint-visitor-keys: 4.2.0
  1754. espree: 10.3.0
  1755. esquery: 1.6.0
  1756. esutils: 2.0.3
  1757. fast-deep-equal: 3.1.3
  1758. file-entry-cache: 8.0.0
  1759. find-up: 5.0.0
  1760. glob-parent: 6.0.2
  1761. ignore: 5.3.2
  1762. imurmurhash: 0.1.4
  1763. is-glob: 4.0.3
  1764. json-stable-stringify-without-jsonify: 1.0.1
  1765. lodash.merge: 4.6.2
  1766. minimatch: 3.1.2
  1767. natural-compare: 1.4.0
  1768. optionator: 0.9.4
  1769. transitivePeerDependencies:
  1770. - supports-color
  1771. espree@10.3.0:
  1772. dependencies:
  1773. acorn: 8.14.0
  1774. acorn-jsx: 5.3.2(acorn@8.14.0)
  1775. eslint-visitor-keys: 4.2.0
  1776. espree@9.6.1:
  1777. dependencies:
  1778. acorn: 8.14.0
  1779. acorn-jsx: 5.3.2(acorn@8.14.0)
  1780. eslint-visitor-keys: 3.4.3
  1781. esquery@1.6.0:
  1782. dependencies:
  1783. estraverse: 5.3.0
  1784. esrecurse@4.3.0:
  1785. dependencies:
  1786. estraverse: 5.3.0
  1787. estraverse@5.3.0: {}
  1788. estree-walker@2.0.2: {}
  1789. esutils@2.0.3: {}
  1790. fast-deep-equal@3.1.3: {}
  1791. fast-glob@3.3.2:
  1792. dependencies:
  1793. '@nodelib/fs.stat': 2.0.5
  1794. '@nodelib/fs.walk': 1.2.8
  1795. glob-parent: 5.1.2
  1796. merge2: 1.4.1
  1797. micromatch: 4.0.8
  1798. fast-json-stable-stringify@2.1.0: {}
  1799. fast-levenshtein@2.0.6: {}
  1800. fast-uri@3.0.3: {}
  1801. fastest-levenshtein@1.0.16: {}
  1802. fastq@1.17.1:
  1803. dependencies:
  1804. reusify: 1.0.4
  1805. file-entry-cache@8.0.0:
  1806. dependencies:
  1807. flat-cache: 4.0.1
  1808. file-entry-cache@9.1.0:
  1809. dependencies:
  1810. flat-cache: 5.0.0
  1811. fill-range@7.1.1:
  1812. dependencies:
  1813. to-regex-range: 5.0.1
  1814. find-up@5.0.0:
  1815. dependencies:
  1816. locate-path: 6.0.0
  1817. path-exists: 4.0.0
  1818. flat-cache@4.0.1:
  1819. dependencies:
  1820. flatted: 3.3.2
  1821. keyv: 4.5.4
  1822. flat-cache@5.0.0:
  1823. dependencies:
  1824. flatted: 3.3.2
  1825. keyv: 4.5.4
  1826. flatted@3.3.2: {}
  1827. fsevents@2.3.3:
  1828. optional: true
  1829. glob-parent@5.1.2:
  1830. dependencies:
  1831. is-glob: 4.0.3
  1832. glob-parent@6.0.2:
  1833. dependencies:
  1834. is-glob: 4.0.3
  1835. global-modules@2.0.0:
  1836. dependencies:
  1837. global-prefix: 3.0.0
  1838. global-prefix@3.0.0:
  1839. dependencies:
  1840. ini: 1.3.8
  1841. kind-of: 6.0.3
  1842. which: 1.3.1
  1843. globals@13.24.0:
  1844. dependencies:
  1845. type-fest: 0.20.2
  1846. globals@14.0.0: {}
  1847. globals@15.12.0: {}
  1848. globby@11.1.0:
  1849. dependencies:
  1850. array-union: 2.1.0
  1851. dir-glob: 3.0.1
  1852. fast-glob: 3.3.2
  1853. ignore: 5.3.2
  1854. merge2: 1.4.1
  1855. slash: 3.0.0
  1856. globjoin@0.1.4: {}
  1857. graphemer@1.4.0: {}
  1858. has-flag@4.0.0: {}
  1859. he@1.2.0: {}
  1860. html-tags@3.3.1: {}
  1861. htmlparser2@8.0.2:
  1862. dependencies:
  1863. domelementtype: 2.3.0
  1864. domhandler: 5.0.3
  1865. domutils: 3.1.0
  1866. entities: 4.5.0
  1867. husky@9.1.7: {}
  1868. ignore@5.3.2: {}
  1869. ignore@6.0.2: {}
  1870. immutable@5.0.2: {}
  1871. import-fresh@3.3.0:
  1872. dependencies:
  1873. parent-module: 1.0.1
  1874. resolve-from: 4.0.0
  1875. imurmurhash@0.1.4: {}
  1876. ini@1.3.8: {}
  1877. is-arrayish@0.2.1: {}
  1878. is-extglob@2.1.1: {}
  1879. is-fullwidth-code-point@3.0.0: {}
  1880. is-glob@4.0.3:
  1881. dependencies:
  1882. is-extglob: 2.1.1
  1883. is-number@7.0.0: {}
  1884. is-plain-object@5.0.0: {}
  1885. isexe@2.0.0: {}
  1886. js-tokens@4.0.0: {}
  1887. js-tokens@9.0.0: {}
  1888. js-yaml@4.1.0:
  1889. dependencies:
  1890. argparse: 2.0.1
  1891. json-buffer@3.0.1: {}
  1892. json-parse-even-better-errors@2.3.1: {}
  1893. json-schema-traverse@0.4.1: {}
  1894. json-schema-traverse@1.0.0: {}
  1895. json-stable-stringify-without-jsonify@1.0.1: {}
  1896. keyv@4.5.4:
  1897. dependencies:
  1898. json-buffer: 3.0.1
  1899. kind-of@6.0.3: {}
  1900. known-css-properties@0.34.0: {}
  1901. known-css-properties@0.35.0: {}
  1902. levn@0.4.1:
  1903. dependencies:
  1904. prelude-ls: 1.2.1
  1905. type-check: 0.4.0
  1906. lines-and-columns@1.2.4: {}
  1907. locate-path@6.0.0:
  1908. dependencies:
  1909. p-locate: 5.0.0
  1910. lodash.merge@4.6.2: {}
  1911. lodash.truncate@4.4.2: {}
  1912. lodash@4.17.21: {}
  1913. magic-string@0.30.13:
  1914. dependencies:
  1915. '@jridgewell/sourcemap-codec': 1.5.0
  1916. mathml-tag-names@2.1.3: {}
  1917. mdn-data@2.12.1: {}
  1918. mdn-data@2.12.2: {}
  1919. meow@13.2.0: {}
  1920. merge2@1.4.1: {}
  1921. micromatch@4.0.8:
  1922. dependencies:
  1923. braces: 3.0.3
  1924. picomatch: 2.3.1
  1925. minimatch@3.1.2:
  1926. dependencies:
  1927. brace-expansion: 1.1.11
  1928. minimatch@9.0.5:
  1929. dependencies:
  1930. brace-expansion: 2.0.1
  1931. ms@2.1.3: {}
  1932. muggle-string@0.4.1: {}
  1933. nanoid@3.3.7: {}
  1934. natural-compare@1.4.0: {}
  1935. node-addon-api@7.1.1:
  1936. optional: true
  1937. normalize-path@3.0.0: {}
  1938. nth-check@2.1.1:
  1939. dependencies:
  1940. boolbase: 1.0.0
  1941. optionator@0.9.4:
  1942. dependencies:
  1943. deep-is: 0.1.4
  1944. fast-levenshtein: 2.0.6
  1945. levn: 0.4.1
  1946. prelude-ls: 1.2.1
  1947. type-check: 0.4.0
  1948. word-wrap: 1.2.5
  1949. p-limit@3.1.0:
  1950. dependencies:
  1951. yocto-queue: 0.1.0
  1952. p-locate@5.0.0:
  1953. dependencies:
  1954. p-limit: 3.1.0
  1955. parent-module@1.0.1:
  1956. dependencies:
  1957. callsites: 3.1.0
  1958. parse-json@5.2.0:
  1959. dependencies:
  1960. '@babel/code-frame': 7.26.2
  1961. error-ex: 1.3.2
  1962. json-parse-even-better-errors: 2.3.1
  1963. lines-and-columns: 1.2.4
  1964. path-browserify@1.0.1: {}
  1965. path-exists@4.0.0: {}
  1966. path-key@3.1.1: {}
  1967. path-type@4.0.0: {}
  1968. picocolors@1.1.1: {}
  1969. picomatch@2.3.1: {}
  1970. postcss-html@1.7.0:
  1971. dependencies:
  1972. htmlparser2: 8.0.2
  1973. js-tokens: 9.0.0
  1974. postcss: 8.4.49
  1975. postcss-safe-parser: 6.0.0(postcss@8.4.49)
  1976. postcss-media-query-parser@0.2.3: {}
  1977. postcss-resolve-nested-selector@0.1.6: {}
  1978. postcss-safe-parser@6.0.0(postcss@8.4.49):
  1979. dependencies:
  1980. postcss: 8.4.49
  1981. postcss-safe-parser@7.0.1(postcss@8.4.49):
  1982. dependencies:
  1983. postcss: 8.4.49
  1984. postcss-scss@4.0.9(postcss@8.4.49):
  1985. dependencies:
  1986. postcss: 8.4.49
  1987. postcss-selector-parser@6.1.2:
  1988. dependencies:
  1989. cssesc: 3.0.0
  1990. util-deprecate: 1.0.2
  1991. postcss-sorting@8.0.2(postcss@8.4.49):
  1992. dependencies:
  1993. postcss: 8.4.49
  1994. postcss-value-parser@4.2.0: {}
  1995. postcss@8.4.49:
  1996. dependencies:
  1997. nanoid: 3.3.7
  1998. picocolors: 1.1.1
  1999. source-map-js: 1.2.1
  2000. prelude-ls@1.2.1: {}
  2001. prettier@3.3.3: {}
  2002. punycode@2.3.1: {}
  2003. queue-microtask@1.2.3: {}
  2004. readdirp@4.0.2: {}
  2005. require-from-string@2.0.2: {}
  2006. resolve-from@4.0.0: {}
  2007. resolve-from@5.0.0: {}
  2008. reusify@1.0.4: {}
  2009. rollup@4.27.3:
  2010. dependencies:
  2011. '@types/estree': 1.0.6
  2012. optionalDependencies:
  2013. '@rollup/rollup-android-arm-eabi': 4.27.3
  2014. '@rollup/rollup-android-arm64': 4.27.3
  2015. '@rollup/rollup-darwin-arm64': 4.27.3
  2016. '@rollup/rollup-darwin-x64': 4.27.3
  2017. '@rollup/rollup-freebsd-arm64': 4.27.3
  2018. '@rollup/rollup-freebsd-x64': 4.27.3
  2019. '@rollup/rollup-linux-arm-gnueabihf': 4.27.3
  2020. '@rollup/rollup-linux-arm-musleabihf': 4.27.3
  2021. '@rollup/rollup-linux-arm64-gnu': 4.27.3
  2022. '@rollup/rollup-linux-arm64-musl': 4.27.3
  2023. '@rollup/rollup-linux-powerpc64le-gnu': 4.27.3
  2024. '@rollup/rollup-linux-riscv64-gnu': 4.27.3
  2025. '@rollup/rollup-linux-s390x-gnu': 4.27.3
  2026. '@rollup/rollup-linux-x64-gnu': 4.27.3
  2027. '@rollup/rollup-linux-x64-musl': 4.27.3
  2028. '@rollup/rollup-win32-arm64-msvc': 4.27.3
  2029. '@rollup/rollup-win32-ia32-msvc': 4.27.3
  2030. '@rollup/rollup-win32-x64-msvc': 4.27.3
  2031. fsevents: 2.3.3
  2032. run-parallel@1.2.0:
  2033. dependencies:
  2034. queue-microtask: 1.2.3
  2035. sass@1.81.0:
  2036. dependencies:
  2037. chokidar: 4.0.1
  2038. immutable: 5.0.2
  2039. source-map-js: 1.2.1
  2040. optionalDependencies:
  2041. '@parcel/watcher': 2.5.0
  2042. semver@7.6.3: {}
  2043. shebang-command@2.0.0:
  2044. dependencies:
  2045. shebang-regex: 3.0.0
  2046. shebang-regex@3.0.0: {}
  2047. signal-exit@4.1.0: {}
  2048. slash@3.0.0: {}
  2049. slice-ansi@4.0.0:
  2050. dependencies:
  2051. ansi-styles: 4.3.0
  2052. astral-regex: 2.0.0
  2053. is-fullwidth-code-point: 3.0.0
  2054. source-map-js@1.2.1: {}
  2055. string-width@4.2.3:
  2056. dependencies:
  2057. emoji-regex: 8.0.0
  2058. is-fullwidth-code-point: 3.0.0
  2059. strip-ansi: 6.0.1
  2060. strip-ansi@6.0.1:
  2061. dependencies:
  2062. ansi-regex: 5.0.1
  2063. strip-json-comments@3.1.1: {}
  2064. stylelint-config-html@1.1.0(postcss-html@1.7.0)(stylelint@16.10.0(typescript@5.6.3)):
  2065. dependencies:
  2066. postcss-html: 1.7.0
  2067. stylelint: 16.10.0(typescript@5.6.3)
  2068. stylelint-config-prettier@9.0.5(stylelint@16.10.0(typescript@5.6.3)):
  2069. dependencies:
  2070. stylelint: 16.10.0(typescript@5.6.3)
  2071. stylelint-config-recommended-scss@14.1.0(postcss@8.4.49)(stylelint@16.10.0(typescript@5.6.3)):
  2072. dependencies:
  2073. postcss-scss: 4.0.9(postcss@8.4.49)
  2074. stylelint: 16.10.0(typescript@5.6.3)
  2075. stylelint-config-recommended: 14.0.1(stylelint@16.10.0(typescript@5.6.3))
  2076. stylelint-scss: 6.9.0(stylelint@16.10.0(typescript@5.6.3))
  2077. optionalDependencies:
  2078. postcss: 8.4.49
  2079. stylelint-config-recommended-vue@1.5.0(postcss-html@1.7.0)(stylelint@16.10.0(typescript@5.6.3)):
  2080. dependencies:
  2081. postcss-html: 1.7.0
  2082. semver: 7.6.3
  2083. stylelint: 16.10.0(typescript@5.6.3)
  2084. stylelint-config-html: 1.1.0(postcss-html@1.7.0)(stylelint@16.10.0(typescript@5.6.3))
  2085. stylelint-config-recommended: 14.0.1(stylelint@16.10.0(typescript@5.6.3))
  2086. stylelint-config-recommended@14.0.1(stylelint@16.10.0(typescript@5.6.3)):
  2087. dependencies:
  2088. stylelint: 16.10.0(typescript@5.6.3)
  2089. stylelint-config-standard-scss@13.1.0(postcss@8.4.49)(stylelint@16.10.0(typescript@5.6.3)):
  2090. dependencies:
  2091. stylelint: 16.10.0(typescript@5.6.3)
  2092. stylelint-config-recommended-scss: 14.1.0(postcss@8.4.49)(stylelint@16.10.0(typescript@5.6.3))
  2093. stylelint-config-standard: 36.0.1(stylelint@16.10.0(typescript@5.6.3))
  2094. optionalDependencies:
  2095. postcss: 8.4.49
  2096. stylelint-config-standard-vue@1.0.0(postcss-html@1.7.0)(stylelint@16.10.0(typescript@5.6.3)):
  2097. dependencies:
  2098. postcss-html: 1.7.0
  2099. stylelint: 16.10.0(typescript@5.6.3)
  2100. stylelint-config-html: 1.1.0(postcss-html@1.7.0)(stylelint@16.10.0(typescript@5.6.3))
  2101. stylelint-config-recommended-vue: 1.5.0(postcss-html@1.7.0)(stylelint@16.10.0(typescript@5.6.3))
  2102. stylelint-config-standard: 36.0.1(stylelint@16.10.0(typescript@5.6.3))
  2103. stylelint-config-standard@36.0.1(stylelint@16.10.0(typescript@5.6.3)):
  2104. dependencies:
  2105. stylelint: 16.10.0(typescript@5.6.3)
  2106. stylelint-config-recommended: 14.0.1(stylelint@16.10.0(typescript@5.6.3))
  2107. stylelint-order@6.0.4(stylelint@16.10.0(typescript@5.6.3)):
  2108. dependencies:
  2109. postcss: 8.4.49
  2110. postcss-sorting: 8.0.2(postcss@8.4.49)
  2111. stylelint: 16.10.0(typescript@5.6.3)
  2112. stylelint-scss@6.9.0(stylelint@16.10.0(typescript@5.6.3)):
  2113. dependencies:
  2114. css-tree: 3.0.1
  2115. is-plain-object: 5.0.0
  2116. known-css-properties: 0.35.0
  2117. mdn-data: 2.12.2
  2118. postcss-media-query-parser: 0.2.3
  2119. postcss-resolve-nested-selector: 0.1.6
  2120. postcss-selector-parser: 6.1.2
  2121. postcss-value-parser: 4.2.0
  2122. stylelint: 16.10.0(typescript@5.6.3)
  2123. stylelint@16.10.0(typescript@5.6.3):
  2124. dependencies:
  2125. '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3)
  2126. '@csstools/css-tokenizer': 3.0.3
  2127. '@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)
  2128. '@csstools/selector-specificity': 4.0.0(postcss-selector-parser@6.1.2)
  2129. '@dual-bundle/import-meta-resolve': 4.1.0
  2130. balanced-match: 2.0.0
  2131. colord: 2.9.3
  2132. cosmiconfig: 9.0.0(typescript@5.6.3)
  2133. css-functions-list: 3.2.3
  2134. css-tree: 3.0.1
  2135. debug: 4.3.7
  2136. fast-glob: 3.3.2
  2137. fastest-levenshtein: 1.0.16
  2138. file-entry-cache: 9.1.0
  2139. global-modules: 2.0.0
  2140. globby: 11.1.0
  2141. globjoin: 0.1.4
  2142. html-tags: 3.3.1
  2143. ignore: 6.0.2
  2144. imurmurhash: 0.1.4
  2145. is-plain-object: 5.0.0
  2146. known-css-properties: 0.34.0
  2147. mathml-tag-names: 2.1.3
  2148. meow: 13.2.0
  2149. micromatch: 4.0.8
  2150. normalize-path: 3.0.0
  2151. picocolors: 1.1.1
  2152. postcss: 8.4.49
  2153. postcss-resolve-nested-selector: 0.1.6
  2154. postcss-safe-parser: 7.0.1(postcss@8.4.49)
  2155. postcss-selector-parser: 6.1.2
  2156. postcss-value-parser: 4.2.0
  2157. resolve-from: 5.0.0
  2158. string-width: 4.2.3
  2159. supports-hyperlinks: 3.1.0
  2160. svg-tags: 1.0.0
  2161. table: 6.8.2
  2162. write-file-atomic: 5.0.1
  2163. transitivePeerDependencies:
  2164. - supports-color
  2165. - typescript
  2166. supports-color@7.2.0:
  2167. dependencies:
  2168. has-flag: 4.0.0
  2169. supports-hyperlinks@3.1.0:
  2170. dependencies:
  2171. has-flag: 4.0.0
  2172. supports-color: 7.2.0
  2173. svg-tags@1.0.0: {}
  2174. table@6.8.2:
  2175. dependencies:
  2176. ajv: 8.17.1
  2177. lodash.truncate: 4.4.2
  2178. slice-ansi: 4.0.0
  2179. string-width: 4.2.3
  2180. strip-ansi: 6.0.1
  2181. to-regex-range@5.0.1:
  2182. dependencies:
  2183. is-number: 7.0.0
  2184. ts-api-utils@1.4.0(typescript@5.6.3):
  2185. dependencies:
  2186. typescript: 5.6.3
  2187. type-check@0.4.0:
  2188. dependencies:
  2189. prelude-ls: 1.2.1
  2190. type-fest@0.20.2: {}
  2191. typescript-eslint@8.15.0(eslint@9.15.0)(typescript@5.6.3):
  2192. dependencies:
  2193. '@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)
  2194. '@typescript-eslint/parser': 8.15.0(eslint@9.15.0)(typescript@5.6.3)
  2195. '@typescript-eslint/utils': 8.15.0(eslint@9.15.0)(typescript@5.6.3)
  2196. eslint: 9.15.0
  2197. optionalDependencies:
  2198. typescript: 5.6.3
  2199. transitivePeerDependencies:
  2200. - supports-color
  2201. typescript@5.6.3: {}
  2202. undici-types@6.19.8: {}
  2203. uri-js@4.4.1:
  2204. dependencies:
  2205. punycode: 2.3.1
  2206. util-deprecate@1.0.2: {}
  2207. vite@5.4.11(@types/node@22.9.0)(sass@1.81.0):
  2208. dependencies:
  2209. esbuild: 0.21.5
  2210. postcss: 8.4.49
  2211. rollup: 4.27.3
  2212. optionalDependencies:
  2213. '@types/node': 22.9.0
  2214. fsevents: 2.3.3
  2215. sass: 1.81.0
  2216. vscode-uri@3.0.8: {}
  2217. vue-eslint-parser@9.4.3(eslint@9.15.0):
  2218. dependencies:
  2219. debug: 4.3.7
  2220. eslint: 9.15.0
  2221. eslint-scope: 7.2.2
  2222. eslint-visitor-keys: 3.4.3
  2223. espree: 9.6.1
  2224. esquery: 1.6.0
  2225. lodash: 4.17.21
  2226. semver: 7.6.3
  2227. transitivePeerDependencies:
  2228. - supports-color
  2229. vue-tsc@2.1.10(typescript@5.6.3):
  2230. dependencies:
  2231. '@volar/typescript': 2.4.10
  2232. '@vue/language-core': 2.1.10(typescript@5.6.3)
  2233. semver: 7.6.3
  2234. typescript: 5.6.3
  2235. vue@3.5.13(typescript@5.6.3):
  2236. dependencies:
  2237. '@vue/compiler-dom': 3.5.13
  2238. '@vue/compiler-sfc': 3.5.13
  2239. '@vue/runtime-dom': 3.5.13
  2240. '@vue/server-renderer': 3.5.13(vue@3.5.13(typescript@5.6.3))
  2241. '@vue/shared': 3.5.13
  2242. optionalDependencies:
  2243. typescript: 5.6.3
  2244. which@1.3.1:
  2245. dependencies:
  2246. isexe: 2.0.0
  2247. which@2.0.2:
  2248. dependencies:
  2249. isexe: 2.0.0
  2250. word-wrap@1.2.5: {}
  2251. write-file-atomic@5.0.1:
  2252. dependencies:
  2253. imurmurhash: 0.1.4
  2254. signal-exit: 4.1.0
  2255. xml-name-validator@4.0.0: {}
  2256. yocto-queue@0.1.0: {}