pnpm-lock.yaml 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. axios:
  9. specifier: ^1.11.0
  10. version: 1.11.0
  11. element-plus:
  12. specifier: ^2.10.7
  13. version: 2.10.7(vue@3.5.18(typescript@5.9.2))
  14. pinia:
  15. specifier: ^2.0.0
  16. version: 2.3.1(typescript@5.9.2)(vue@3.5.18(typescript@5.9.2))
  17. vue:
  18. specifier: ^3.2.0
  19. version: 3.5.18(typescript@5.9.2)
  20. vue-router:
  21. specifier: ^4.0.0
  22. version: 4.5.1(vue@3.5.18(typescript@5.9.2))
  23. devDependencies:
  24. '@types/node':
  25. specifier: ^24.2.1
  26. version: 24.2.1
  27. '@typescript-eslint/eslint-plugin':
  28. specifier: ^5.0.0
  29. version: 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.9.2))(eslint@8.57.1)(typescript@5.9.2)
  30. '@typescript-eslint/parser':
  31. specifier: ^5.0.0
  32. version: 5.62.0(eslint@8.57.1)(typescript@5.9.2)
  33. '@vitejs/plugin-vue':
  34. specifier: ^4.0.0
  35. version: 4.6.2(vite@4.5.14(@types/node@24.2.1)(sass@1.90.0))(vue@3.5.18(typescript@5.9.2))
  36. eslint:
  37. specifier: ^8.0.0
  38. version: 8.57.1
  39. eslint-config-prettier:
  40. specifier: ^8.0.0
  41. version: 8.10.2(eslint@8.57.1)
  42. eslint-plugin-prettier:
  43. specifier: ^4.0.0
  44. version: 4.2.5(eslint-config-prettier@8.10.2(eslint@8.57.1))(eslint@8.57.1)(prettier@2.8.8)
  45. eslint-plugin-vue:
  46. specifier: ^9.0.0
  47. version: 9.33.0(eslint@8.57.1)
  48. prettier:
  49. specifier: ^2.8.0
  50. version: 2.8.8
  51. sass:
  52. specifier: ^1.90.0
  53. version: 1.90.0
  54. typescript:
  55. specifier: ^5.0.0
  56. version: 5.9.2
  57. unplugin-auto-import:
  58. specifier: ^20.0.0
  59. version: 20.0.0(@vueuse/core@9.13.0(vue@3.5.18(typescript@5.9.2)))
  60. unplugin-vue-components:
  61. specifier: ^29.0.0
  62. version: 29.0.0(@babel/parser@7.28.0)(vue@3.5.18(typescript@5.9.2))
  63. vite:
  64. specifier: ^4.0.0
  65. version: 4.5.14(@types/node@24.2.1)(sass@1.90.0)
  66. packages:
  67. '@babel/helper-string-parser@7.27.1':
  68. resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
  69. engines: {node: '>=6.9.0'}
  70. '@babel/helper-validator-identifier@7.27.1':
  71. resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
  72. engines: {node: '>=6.9.0'}
  73. '@babel/parser@7.28.0':
  74. resolution: {integrity: sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==}
  75. engines: {node: '>=6.0.0'}
  76. hasBin: true
  77. '@babel/types@7.28.2':
  78. resolution: {integrity: sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==}
  79. engines: {node: '>=6.9.0'}
  80. '@ctrl/tinycolor@3.6.1':
  81. resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==}
  82. engines: {node: '>=10'}
  83. '@element-plus/icons-vue@2.3.2':
  84. resolution: {integrity: sha512-OzIuTaIfC8QXEPmJvB4Y4kw34rSXdCJzxcD1kFStBvr8bK6X1zQAYDo0CNMjojnfTqRQCJ0I7prlErcoRiET2A==}
  85. peerDependencies:
  86. vue: ^3.2.0
  87. '@esbuild/android-arm64@0.18.20':
  88. resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==}
  89. engines: {node: '>=12'}
  90. cpu: [arm64]
  91. os: [android]
  92. '@esbuild/android-arm@0.18.20':
  93. resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==}
  94. engines: {node: '>=12'}
  95. cpu: [arm]
  96. os: [android]
  97. '@esbuild/android-x64@0.18.20':
  98. resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==}
  99. engines: {node: '>=12'}
  100. cpu: [x64]
  101. os: [android]
  102. '@esbuild/darwin-arm64@0.18.20':
  103. resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==}
  104. engines: {node: '>=12'}
  105. cpu: [arm64]
  106. os: [darwin]
  107. '@esbuild/darwin-x64@0.18.20':
  108. resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==}
  109. engines: {node: '>=12'}
  110. cpu: [x64]
  111. os: [darwin]
  112. '@esbuild/freebsd-arm64@0.18.20':
  113. resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==}
  114. engines: {node: '>=12'}
  115. cpu: [arm64]
  116. os: [freebsd]
  117. '@esbuild/freebsd-x64@0.18.20':
  118. resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==}
  119. engines: {node: '>=12'}
  120. cpu: [x64]
  121. os: [freebsd]
  122. '@esbuild/linux-arm64@0.18.20':
  123. resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==}
  124. engines: {node: '>=12'}
  125. cpu: [arm64]
  126. os: [linux]
  127. '@esbuild/linux-arm@0.18.20':
  128. resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==}
  129. engines: {node: '>=12'}
  130. cpu: [arm]
  131. os: [linux]
  132. '@esbuild/linux-ia32@0.18.20':
  133. resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==}
  134. engines: {node: '>=12'}
  135. cpu: [ia32]
  136. os: [linux]
  137. '@esbuild/linux-loong64@0.18.20':
  138. resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==}
  139. engines: {node: '>=12'}
  140. cpu: [loong64]
  141. os: [linux]
  142. '@esbuild/linux-mips64el@0.18.20':
  143. resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==}
  144. engines: {node: '>=12'}
  145. cpu: [mips64el]
  146. os: [linux]
  147. '@esbuild/linux-ppc64@0.18.20':
  148. resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==}
  149. engines: {node: '>=12'}
  150. cpu: [ppc64]
  151. os: [linux]
  152. '@esbuild/linux-riscv64@0.18.20':
  153. resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==}
  154. engines: {node: '>=12'}
  155. cpu: [riscv64]
  156. os: [linux]
  157. '@esbuild/linux-s390x@0.18.20':
  158. resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==}
  159. engines: {node: '>=12'}
  160. cpu: [s390x]
  161. os: [linux]
  162. '@esbuild/linux-x64@0.18.20':
  163. resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==}
  164. engines: {node: '>=12'}
  165. cpu: [x64]
  166. os: [linux]
  167. '@esbuild/netbsd-x64@0.18.20':
  168. resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==}
  169. engines: {node: '>=12'}
  170. cpu: [x64]
  171. os: [netbsd]
  172. '@esbuild/openbsd-x64@0.18.20':
  173. resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==}
  174. engines: {node: '>=12'}
  175. cpu: [x64]
  176. os: [openbsd]
  177. '@esbuild/sunos-x64@0.18.20':
  178. resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==}
  179. engines: {node: '>=12'}
  180. cpu: [x64]
  181. os: [sunos]
  182. '@esbuild/win32-arm64@0.18.20':
  183. resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==}
  184. engines: {node: '>=12'}
  185. cpu: [arm64]
  186. os: [win32]
  187. '@esbuild/win32-ia32@0.18.20':
  188. resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==}
  189. engines: {node: '>=12'}
  190. cpu: [ia32]
  191. os: [win32]
  192. '@esbuild/win32-x64@0.18.20':
  193. resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==}
  194. engines: {node: '>=12'}
  195. cpu: [x64]
  196. os: [win32]
  197. '@eslint-community/eslint-utils@4.7.0':
  198. resolution: {integrity: sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==}
  199. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  200. peerDependencies:
  201. eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
  202. '@eslint-community/regexpp@4.12.1':
  203. resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
  204. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  205. '@eslint/eslintrc@2.1.4':
  206. resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
  207. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  208. '@eslint/js@8.57.1':
  209. resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==}
  210. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  211. '@floating-ui/core@1.7.3':
  212. resolution: {integrity: sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==}
  213. '@floating-ui/dom@1.7.3':
  214. resolution: {integrity: sha512-uZA413QEpNuhtb3/iIKoYMSK07keHPYeXF02Zhd6e213j+d1NamLix/mCLxBUDW/Gx52sPH2m+chlUsyaBs/Ag==}
  215. '@floating-ui/utils@0.2.10':
  216. resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==}
  217. '@humanwhocodes/config-array@0.13.0':
  218. resolution: {integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==}
  219. engines: {node: '>=10.10.0'}
  220. deprecated: Use @eslint/config-array instead
  221. '@humanwhocodes/module-importer@1.0.1':
  222. resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
  223. engines: {node: '>=12.22'}
  224. '@humanwhocodes/object-schema@2.0.3':
  225. resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
  226. deprecated: Use @eslint/object-schema instead
  227. '@jridgewell/sourcemap-codec@1.5.4':
  228. resolution: {integrity: sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==}
  229. '@nodelib/fs.scandir@2.1.5':
  230. resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
  231. engines: {node: '>= 8'}
  232. '@nodelib/fs.stat@2.0.5':
  233. resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
  234. engines: {node: '>= 8'}
  235. '@nodelib/fs.walk@1.2.8':
  236. resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
  237. engines: {node: '>= 8'}
  238. '@parcel/watcher-android-arm64@2.5.1':
  239. resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==}
  240. engines: {node: '>= 10.0.0'}
  241. cpu: [arm64]
  242. os: [android]
  243. '@parcel/watcher-darwin-arm64@2.5.1':
  244. resolution: {integrity: sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==}
  245. engines: {node: '>= 10.0.0'}
  246. cpu: [arm64]
  247. os: [darwin]
  248. '@parcel/watcher-darwin-x64@2.5.1':
  249. resolution: {integrity: sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==}
  250. engines: {node: '>= 10.0.0'}
  251. cpu: [x64]
  252. os: [darwin]
  253. '@parcel/watcher-freebsd-x64@2.5.1':
  254. resolution: {integrity: sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==}
  255. engines: {node: '>= 10.0.0'}
  256. cpu: [x64]
  257. os: [freebsd]
  258. '@parcel/watcher-linux-arm-glibc@2.5.1':
  259. resolution: {integrity: sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==}
  260. engines: {node: '>= 10.0.0'}
  261. cpu: [arm]
  262. os: [linux]
  263. libc: [glibc]
  264. '@parcel/watcher-linux-arm-musl@2.5.1':
  265. resolution: {integrity: sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==}
  266. engines: {node: '>= 10.0.0'}
  267. cpu: [arm]
  268. os: [linux]
  269. libc: [musl]
  270. '@parcel/watcher-linux-arm64-glibc@2.5.1':
  271. resolution: {integrity: sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==}
  272. engines: {node: '>= 10.0.0'}
  273. cpu: [arm64]
  274. os: [linux]
  275. libc: [glibc]
  276. '@parcel/watcher-linux-arm64-musl@2.5.1':
  277. resolution: {integrity: sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==}
  278. engines: {node: '>= 10.0.0'}
  279. cpu: [arm64]
  280. os: [linux]
  281. libc: [musl]
  282. '@parcel/watcher-linux-x64-glibc@2.5.1':
  283. resolution: {integrity: sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==}
  284. engines: {node: '>= 10.0.0'}
  285. cpu: [x64]
  286. os: [linux]
  287. libc: [glibc]
  288. '@parcel/watcher-linux-x64-musl@2.5.1':
  289. resolution: {integrity: sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==}
  290. engines: {node: '>= 10.0.0'}
  291. cpu: [x64]
  292. os: [linux]
  293. libc: [musl]
  294. '@parcel/watcher-win32-arm64@2.5.1':
  295. resolution: {integrity: sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==}
  296. engines: {node: '>= 10.0.0'}
  297. cpu: [arm64]
  298. os: [win32]
  299. '@parcel/watcher-win32-ia32@2.5.1':
  300. resolution: {integrity: sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==}
  301. engines: {node: '>= 10.0.0'}
  302. cpu: [ia32]
  303. os: [win32]
  304. '@parcel/watcher-win32-x64@2.5.1':
  305. resolution: {integrity: sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==}
  306. engines: {node: '>= 10.0.0'}
  307. cpu: [x64]
  308. os: [win32]
  309. '@parcel/watcher@2.5.1':
  310. resolution: {integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==}
  311. engines: {node: '>= 10.0.0'}
  312. '@sxzz/popperjs-es@2.11.7':
  313. resolution: {integrity: sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==}
  314. '@types/estree@1.0.8':
  315. resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
  316. '@types/json-schema@7.0.15':
  317. resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
  318. '@types/lodash-es@4.17.12':
  319. resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==}
  320. '@types/lodash@4.17.20':
  321. resolution: {integrity: sha512-H3MHACvFUEiujabxhaI/ImO6gUrd8oOurg7LQtS7mbwIXA/cUqWrvBsaeJ23aZEPk1TAYkurjfMbSELfoCXlGA==}
  322. '@types/node@24.2.1':
  323. resolution: {integrity: sha512-DRh5K+ka5eJic8CjH7td8QpYEV6Zo10gfRkjHCO3weqZHWDtAaSTFtl4+VMqOJ4N5jcuhZ9/l+yy8rVgw7BQeQ==}
  324. '@types/semver@7.7.0':
  325. resolution: {integrity: sha512-k107IF4+Xr7UHjwDc7Cfd6PRQfbdkiRabXGRjo07b4WyPahFBZCZ1sE+BNxYIJPPg73UkfOsVOLwqVc/6ETrIA==}
  326. '@types/web-bluetooth@0.0.16':
  327. resolution: {integrity: sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==}
  328. '@typescript-eslint/eslint-plugin@5.62.0':
  329. resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==}
  330. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  331. peerDependencies:
  332. '@typescript-eslint/parser': ^5.0.0
  333. eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
  334. typescript: '*'
  335. peerDependenciesMeta:
  336. typescript:
  337. optional: true
  338. '@typescript-eslint/parser@5.62.0':
  339. resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==}
  340. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  341. peerDependencies:
  342. eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
  343. typescript: '*'
  344. peerDependenciesMeta:
  345. typescript:
  346. optional: true
  347. '@typescript-eslint/scope-manager@5.62.0':
  348. resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==}
  349. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  350. '@typescript-eslint/type-utils@5.62.0':
  351. resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==}
  352. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  353. peerDependencies:
  354. eslint: '*'
  355. typescript: '*'
  356. peerDependenciesMeta:
  357. typescript:
  358. optional: true
  359. '@typescript-eslint/types@5.62.0':
  360. resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==}
  361. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  362. '@typescript-eslint/typescript-estree@5.62.0':
  363. resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==}
  364. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  365. peerDependencies:
  366. typescript: '*'
  367. peerDependenciesMeta:
  368. typescript:
  369. optional: true
  370. '@typescript-eslint/utils@5.62.0':
  371. resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==}
  372. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  373. peerDependencies:
  374. eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
  375. '@typescript-eslint/visitor-keys@5.62.0':
  376. resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==}
  377. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  378. '@ungap/structured-clone@1.3.0':
  379. resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==}
  380. '@vitejs/plugin-vue@4.6.2':
  381. resolution: {integrity: sha512-kqf7SGFoG+80aZG6Pf+gsZIVvGSCKE98JbiWqcCV9cThtg91Jav0yvYFC9Zb+jKetNGF6ZKeoaxgZfND21fWKw==}
  382. engines: {node: ^14.18.0 || >=16.0.0}
  383. peerDependencies:
  384. vite: ^4.0.0 || ^5.0.0
  385. vue: ^3.2.25
  386. '@vue/compiler-core@3.5.18':
  387. resolution: {integrity: sha512-3slwjQrrV1TO8MoXgy3aynDQ7lslj5UqDxuHnrzHtpON5CBinhWjJETciPngpin/T3OuW3tXUf86tEurusnztw==}
  388. '@vue/compiler-dom@3.5.18':
  389. resolution: {integrity: sha512-RMbU6NTU70++B1JyVJbNbeFkK+A+Q7y9XKE2EM4NLGm2WFR8x9MbAtWxPPLdm0wUkuZv9trpwfSlL6tjdIa1+A==}
  390. '@vue/compiler-sfc@3.5.18':
  391. resolution: {integrity: sha512-5aBjvGqsWs+MoxswZPoTB9nSDb3dhd1x30xrrltKujlCxo48j8HGDNj3QPhF4VIS0VQDUrA1xUfp2hEa+FNyXA==}
  392. '@vue/compiler-ssr@3.5.18':
  393. resolution: {integrity: sha512-xM16Ak7rSWHkM3m22NlmcdIM+K4BMyFARAfV9hYFl+SFuRzrZ3uGMNW05kA5pmeMa0X9X963Kgou7ufdbpOP9g==}
  394. '@vue/devtools-api@6.6.4':
  395. resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
  396. '@vue/reactivity@3.5.18':
  397. resolution: {integrity: sha512-x0vPO5Imw+3sChLM5Y+B6G1zPjwdOri9e8V21NnTnlEvkxatHEH5B5KEAJcjuzQ7BsjGrKtfzuQ5eQwXh8HXBg==}
  398. '@vue/runtime-core@3.5.18':
  399. resolution: {integrity: sha512-DUpHa1HpeOQEt6+3nheUfqVXRog2kivkXHUhoqJiKR33SO4x+a5uNOMkV487WPerQkL0vUuRvq/7JhRgLW3S+w==}
  400. '@vue/runtime-dom@3.5.18':
  401. resolution: {integrity: sha512-YwDj71iV05j4RnzZnZtGaXwPoUWeRsqinblgVJwR8XTXYZ9D5PbahHQgsbmzUvCWNF6x7siQ89HgnX5eWkr3mw==}
  402. '@vue/server-renderer@3.5.18':
  403. resolution: {integrity: sha512-PvIHLUoWgSbDG7zLHqSqaCoZvHi6NNmfVFOqO+OnwvqMz/tqQr3FuGWS8ufluNddk7ZLBJYMrjcw1c6XzR12mA==}
  404. peerDependencies:
  405. vue: 3.5.18
  406. '@vue/shared@3.5.18':
  407. resolution: {integrity: sha512-cZy8Dq+uuIXbxCZpuLd2GJdeSO/lIzIspC2WtkqIpje5QyFbvLaI5wZtdUjLHjGZrlVX6GilejatWwVYYRc8tA==}
  408. '@vueuse/core@9.13.0':
  409. resolution: {integrity: sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==}
  410. '@vueuse/metadata@9.13.0':
  411. resolution: {integrity: sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==}
  412. '@vueuse/shared@9.13.0':
  413. resolution: {integrity: sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==}
  414. acorn-jsx@5.3.2:
  415. resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
  416. peerDependencies:
  417. acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
  418. acorn@8.15.0:
  419. resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==}
  420. engines: {node: '>=0.4.0'}
  421. hasBin: true
  422. ajv@6.12.6:
  423. resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
  424. ansi-regex@5.0.1:
  425. resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
  426. engines: {node: '>=8'}
  427. ansi-styles@4.3.0:
  428. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  429. engines: {node: '>=8'}
  430. anymatch@3.1.3:
  431. resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
  432. engines: {node: '>= 8'}
  433. argparse@2.0.1:
  434. resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
  435. array-union@2.1.0:
  436. resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
  437. engines: {node: '>=8'}
  438. async-validator@4.2.5:
  439. resolution: {integrity: sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==}
  440. asynckit@0.4.0:
  441. resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
  442. axios@1.11.0:
  443. resolution: {integrity: sha512-1Lx3WLFQWm3ooKDYZD1eXmoGO9fxYQjrycfHFC8P0sCfQVXyROp0p9PFWBehewBOdCwHc+f/b8I0fMto5eSfwA==}
  444. balanced-match@1.0.2:
  445. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  446. binary-extensions@2.3.0:
  447. resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
  448. engines: {node: '>=8'}
  449. boolbase@1.0.0:
  450. resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
  451. brace-expansion@1.1.12:
  452. resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
  453. braces@3.0.3:
  454. resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
  455. engines: {node: '>=8'}
  456. call-bind-apply-helpers@1.0.2:
  457. resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
  458. engines: {node: '>= 0.4'}
  459. callsites@3.1.0:
  460. resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
  461. engines: {node: '>=6'}
  462. chalk@4.1.2:
  463. resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
  464. engines: {node: '>=10'}
  465. chokidar@3.6.0:
  466. resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
  467. engines: {node: '>= 8.10.0'}
  468. chokidar@4.0.3:
  469. resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
  470. engines: {node: '>= 14.16.0'}
  471. color-convert@2.0.1:
  472. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  473. engines: {node: '>=7.0.0'}
  474. color-name@1.1.4:
  475. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  476. combined-stream@1.0.8:
  477. resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
  478. engines: {node: '>= 0.8'}
  479. concat-map@0.0.1:
  480. resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
  481. confbox@0.1.8:
  482. resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
  483. confbox@0.2.2:
  484. resolution: {integrity: sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==}
  485. cross-spawn@7.0.6:
  486. resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
  487. engines: {node: '>= 8'}
  488. cssesc@3.0.0:
  489. resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
  490. engines: {node: '>=4'}
  491. hasBin: true
  492. csstype@3.1.3:
  493. resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
  494. dayjs@1.11.13:
  495. resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
  496. debug@4.4.1:
  497. resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==}
  498. engines: {node: '>=6.0'}
  499. peerDependencies:
  500. supports-color: '*'
  501. peerDependenciesMeta:
  502. supports-color:
  503. optional: true
  504. deep-is@0.1.4:
  505. resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
  506. delayed-stream@1.0.0:
  507. resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
  508. engines: {node: '>=0.4.0'}
  509. detect-libc@1.0.3:
  510. resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==}
  511. engines: {node: '>=0.10'}
  512. hasBin: true
  513. dir-glob@3.0.1:
  514. resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
  515. engines: {node: '>=8'}
  516. doctrine@3.0.0:
  517. resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
  518. engines: {node: '>=6.0.0'}
  519. dunder-proto@1.0.1:
  520. resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
  521. engines: {node: '>= 0.4'}
  522. element-plus@2.10.7:
  523. resolution: {integrity: sha512-bL4yhepL8/0NEQA5+N2Q6ZVKLipIDkiQjK2mqtSmGh6CxJk1yaBMdG5HXfYkbk1htNcT3ULk9g23lzT323JGcA==}
  524. peerDependencies:
  525. vue: ^3.2.0
  526. entities@4.5.0:
  527. resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
  528. engines: {node: '>=0.12'}
  529. es-define-property@1.0.1:
  530. resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
  531. engines: {node: '>= 0.4'}
  532. es-errors@1.3.0:
  533. resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
  534. engines: {node: '>= 0.4'}
  535. es-object-atoms@1.1.1:
  536. resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
  537. engines: {node: '>= 0.4'}
  538. es-set-tostringtag@2.1.0:
  539. resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
  540. engines: {node: '>= 0.4'}
  541. esbuild@0.18.20:
  542. resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==}
  543. engines: {node: '>=12'}
  544. hasBin: true
  545. escape-html@1.0.3:
  546. resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
  547. escape-string-regexp@4.0.0:
  548. resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
  549. engines: {node: '>=10'}
  550. escape-string-regexp@5.0.0:
  551. resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
  552. engines: {node: '>=12'}
  553. eslint-config-prettier@8.10.2:
  554. resolution: {integrity: sha512-/IGJ6+Dka158JnP5n5YFMOszjDWrXggGz1LaK/guZq9vZTmniaKlHcsscvkAhn9y4U+BU3JuUdYvtAMcv30y4A==}
  555. hasBin: true
  556. peerDependencies:
  557. eslint: '>=7.0.0'
  558. eslint-plugin-prettier@4.2.5:
  559. resolution: {integrity: sha512-9Ni+xgemM2IWLq6aXEpP2+V/V30GeA/46Ar629vcMqVPodFFWC9skHu/D1phvuqtS8bJCFnNf01/qcmqYEwNfg==}
  560. engines: {node: '>=12.0.0'}
  561. peerDependencies:
  562. eslint: '>=7.28.0'
  563. eslint-config-prettier: '*'
  564. prettier: '>=2.0.0'
  565. peerDependenciesMeta:
  566. eslint-config-prettier:
  567. optional: true
  568. eslint-plugin-vue@9.33.0:
  569. resolution: {integrity: sha512-174lJKuNsuDIlLpjeXc5E2Tss8P44uIimAfGD0b90k0NoirJqpG7stLuU9Vp/9ioTOrQdWVREc4mRd1BD+CvGw==}
  570. engines: {node: ^14.17.0 || >=16.0.0}
  571. peerDependencies:
  572. eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
  573. eslint-scope@5.1.1:
  574. resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
  575. engines: {node: '>=8.0.0'}
  576. eslint-scope@7.2.2:
  577. resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
  578. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  579. eslint-visitor-keys@3.4.3:
  580. resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
  581. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  582. eslint@8.57.1:
  583. resolution: {integrity: sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==}
  584. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  585. deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options.
  586. hasBin: true
  587. espree@9.6.1:
  588. resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
  589. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  590. esquery@1.6.0:
  591. resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
  592. engines: {node: '>=0.10'}
  593. esrecurse@4.3.0:
  594. resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
  595. engines: {node: '>=4.0'}
  596. estraverse@4.3.0:
  597. resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
  598. engines: {node: '>=4.0'}
  599. estraverse@5.3.0:
  600. resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
  601. engines: {node: '>=4.0'}
  602. estree-walker@2.0.2:
  603. resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
  604. estree-walker@3.0.3:
  605. resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
  606. esutils@2.0.3:
  607. resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
  608. engines: {node: '>=0.10.0'}
  609. exsolve@1.0.7:
  610. resolution: {integrity: sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw==}
  611. fast-deep-equal@3.1.3:
  612. resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
  613. fast-diff@1.3.0:
  614. resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==}
  615. fast-glob@3.3.3:
  616. resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
  617. engines: {node: '>=8.6.0'}
  618. fast-json-stable-stringify@2.1.0:
  619. resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
  620. fast-levenshtein@2.0.6:
  621. resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
  622. fastq@1.19.1:
  623. resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==}
  624. fdir@6.4.6:
  625. resolution: {integrity: sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==}
  626. peerDependencies:
  627. picomatch: ^3 || ^4
  628. peerDependenciesMeta:
  629. picomatch:
  630. optional: true
  631. file-entry-cache@6.0.1:
  632. resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
  633. engines: {node: ^10.12.0 || >=12.0.0}
  634. fill-range@7.1.1:
  635. resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
  636. engines: {node: '>=8'}
  637. find-up@5.0.0:
  638. resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
  639. engines: {node: '>=10'}
  640. flat-cache@3.2.0:
  641. resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
  642. engines: {node: ^10.12.0 || >=12.0.0}
  643. flatted@3.3.3:
  644. resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
  645. follow-redirects@1.15.11:
  646. resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
  647. engines: {node: '>=4.0'}
  648. peerDependencies:
  649. debug: '*'
  650. peerDependenciesMeta:
  651. debug:
  652. optional: true
  653. form-data@4.0.4:
  654. resolution: {integrity: sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==}
  655. engines: {node: '>= 6'}
  656. fs.realpath@1.0.0:
  657. resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
  658. fsevents@2.3.3:
  659. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  660. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  661. os: [darwin]
  662. function-bind@1.1.2:
  663. resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
  664. get-intrinsic@1.3.0:
  665. resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
  666. engines: {node: '>= 0.4'}
  667. get-proto@1.0.1:
  668. resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
  669. engines: {node: '>= 0.4'}
  670. glob-parent@5.1.2:
  671. resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
  672. engines: {node: '>= 6'}
  673. glob-parent@6.0.2:
  674. resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
  675. engines: {node: '>=10.13.0'}
  676. glob@7.2.3:
  677. resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
  678. deprecated: Glob versions prior to v9 are no longer supported
  679. globals@13.24.0:
  680. resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
  681. engines: {node: '>=8'}
  682. globby@11.1.0:
  683. resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
  684. engines: {node: '>=10'}
  685. gopd@1.2.0:
  686. resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
  687. engines: {node: '>= 0.4'}
  688. graphemer@1.4.0:
  689. resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
  690. has-flag@4.0.0:
  691. resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
  692. engines: {node: '>=8'}
  693. has-symbols@1.1.0:
  694. resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
  695. engines: {node: '>= 0.4'}
  696. has-tostringtag@1.0.2:
  697. resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
  698. engines: {node: '>= 0.4'}
  699. hasown@2.0.2:
  700. resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
  701. engines: {node: '>= 0.4'}
  702. ignore@5.3.2:
  703. resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
  704. engines: {node: '>= 4'}
  705. immutable@5.1.3:
  706. resolution: {integrity: sha512-+chQdDfvscSF1SJqv2gn4SRO2ZyS3xL3r7IW/wWEEzrzLisnOlKiQu5ytC/BVNcS15C39WT2Hg/bjKjDMcu+zg==}
  707. import-fresh@3.3.1:
  708. resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
  709. engines: {node: '>=6'}
  710. imurmurhash@0.1.4:
  711. resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
  712. engines: {node: '>=0.8.19'}
  713. inflight@1.0.6:
  714. resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
  715. deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
  716. inherits@2.0.4:
  717. resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
  718. is-binary-path@2.1.0:
  719. resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
  720. engines: {node: '>=8'}
  721. is-extglob@2.1.1:
  722. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  723. engines: {node: '>=0.10.0'}
  724. is-glob@4.0.3:
  725. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  726. engines: {node: '>=0.10.0'}
  727. is-number@7.0.0:
  728. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  729. engines: {node: '>=0.12.0'}
  730. is-path-inside@3.0.3:
  731. resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
  732. engines: {node: '>=8'}
  733. isexe@2.0.0:
  734. resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
  735. js-tokens@9.0.1:
  736. resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==}
  737. js-yaml@4.1.0:
  738. resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
  739. hasBin: true
  740. json-buffer@3.0.1:
  741. resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
  742. json-schema-traverse@0.4.1:
  743. resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
  744. json-stable-stringify-without-jsonify@1.0.1:
  745. resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
  746. keyv@4.5.4:
  747. resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
  748. levn@0.4.1:
  749. resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
  750. engines: {node: '>= 0.8.0'}
  751. local-pkg@1.1.1:
  752. resolution: {integrity: sha512-WunYko2W1NcdfAFpuLUoucsgULmgDBRkdxHxWQ7mK0cQqwPiy8E1enjuRBrhLtZkB5iScJ1XIPdhVEFK8aOLSg==}
  753. engines: {node: '>=14'}
  754. locate-path@6.0.0:
  755. resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
  756. engines: {node: '>=10'}
  757. lodash-es@4.17.21:
  758. resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==}
  759. lodash-unified@1.0.3:
  760. resolution: {integrity: sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==}
  761. peerDependencies:
  762. '@types/lodash-es': '*'
  763. lodash: '*'
  764. lodash-es: '*'
  765. lodash.merge@4.6.2:
  766. resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
  767. lodash@4.17.21:
  768. resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
  769. magic-string@0.30.17:
  770. resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==}
  771. math-intrinsics@1.1.0:
  772. resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
  773. engines: {node: '>= 0.4'}
  774. memoize-one@6.0.0:
  775. resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==}
  776. merge2@1.4.1:
  777. resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
  778. engines: {node: '>= 8'}
  779. micromatch@4.0.8:
  780. resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
  781. engines: {node: '>=8.6'}
  782. mime-db@1.52.0:
  783. resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
  784. engines: {node: '>= 0.6'}
  785. mime-types@2.1.35:
  786. resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
  787. engines: {node: '>= 0.6'}
  788. minimatch@3.1.2:
  789. resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
  790. mlly@1.7.4:
  791. resolution: {integrity: sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==}
  792. ms@2.1.3:
  793. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  794. nanoid@3.3.11:
  795. resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
  796. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  797. hasBin: true
  798. natural-compare-lite@1.4.0:
  799. resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==}
  800. natural-compare@1.4.0:
  801. resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
  802. node-addon-api@7.1.1:
  803. resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
  804. normalize-path@3.0.0:
  805. resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
  806. engines: {node: '>=0.10.0'}
  807. normalize-wheel-es@1.2.0:
  808. resolution: {integrity: sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==}
  809. nth-check@2.1.1:
  810. resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
  811. once@1.4.0:
  812. resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
  813. optionator@0.9.4:
  814. resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
  815. engines: {node: '>= 0.8.0'}
  816. p-limit@3.1.0:
  817. resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
  818. engines: {node: '>=10'}
  819. p-locate@5.0.0:
  820. resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
  821. engines: {node: '>=10'}
  822. parent-module@1.0.1:
  823. resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
  824. engines: {node: '>=6'}
  825. path-exists@4.0.0:
  826. resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
  827. engines: {node: '>=8'}
  828. path-is-absolute@1.0.1:
  829. resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
  830. engines: {node: '>=0.10.0'}
  831. path-key@3.1.1:
  832. resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
  833. engines: {node: '>=8'}
  834. path-type@4.0.0:
  835. resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
  836. engines: {node: '>=8'}
  837. pathe@2.0.3:
  838. resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
  839. picocolors@1.1.1:
  840. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  841. picomatch@2.3.1:
  842. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  843. engines: {node: '>=8.6'}
  844. picomatch@4.0.3:
  845. resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
  846. engines: {node: '>=12'}
  847. pinia@2.3.1:
  848. resolution: {integrity: sha512-khUlZSwt9xXCaTbbxFYBKDc/bWAGWJjOgvxETwkTN7KRm66EeT1ZdZj6i2ceh9sP2Pzqsbc704r2yngBrxBVug==}
  849. peerDependencies:
  850. typescript: '>=4.4.4'
  851. vue: ^2.7.0 || ^3.5.11
  852. peerDependenciesMeta:
  853. typescript:
  854. optional: true
  855. pkg-types@1.3.1:
  856. resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
  857. pkg-types@2.2.0:
  858. resolution: {integrity: sha512-2SM/GZGAEkPp3KWORxQZns4M+WSeXbC2HEvmOIJe3Cmiv6ieAJvdVhDldtHqM5J1Y7MrR1XhkBT/rMlhh9FdqQ==}
  859. postcss-selector-parser@6.1.2:
  860. resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
  861. engines: {node: '>=4'}
  862. postcss@8.5.6:
  863. resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
  864. engines: {node: ^10 || ^12 || >=14}
  865. prelude-ls@1.2.1:
  866. resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
  867. engines: {node: '>= 0.8.0'}
  868. prettier-linter-helpers@1.0.0:
  869. resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}
  870. engines: {node: '>=6.0.0'}
  871. prettier@2.8.8:
  872. resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
  873. engines: {node: '>=10.13.0'}
  874. hasBin: true
  875. proxy-from-env@1.1.0:
  876. resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
  877. punycode@2.3.1:
  878. resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
  879. engines: {node: '>=6'}
  880. quansync@0.2.10:
  881. resolution: {integrity: sha512-t41VRkMYbkHyCYmOvx/6URnN80H7k4X0lLdBMGsz+maAwrJQYB1djpV6vHrQIBE0WBSGqhtEHrK9U3DWWH8v7A==}
  882. queue-microtask@1.2.3:
  883. resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
  884. readdirp@3.6.0:
  885. resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
  886. engines: {node: '>=8.10.0'}
  887. readdirp@4.1.2:
  888. resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
  889. engines: {node: '>= 14.18.0'}
  890. resolve-from@4.0.0:
  891. resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
  892. engines: {node: '>=4'}
  893. reusify@1.1.0:
  894. resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
  895. engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
  896. rimraf@3.0.2:
  897. resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
  898. deprecated: Rimraf versions prior to v4 are no longer supported
  899. hasBin: true
  900. rollup@3.29.5:
  901. resolution: {integrity: sha512-GVsDdsbJzzy4S/v3dqWPJ7EfvZJfCHiDqe80IyrF59LYuP+e6U1LJoUqeuqRbwAWoMNoXivMNeNAOf5E22VA1w==}
  902. engines: {node: '>=14.18.0', npm: '>=8.0.0'}
  903. hasBin: true
  904. run-parallel@1.2.0:
  905. resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
  906. sass@1.90.0:
  907. resolution: {integrity: sha512-9GUyuksjw70uNpb1MTYWsH9MQHOHY6kwfnkafC24+7aOMZn9+rVMBxRbLvw756mrBFbIsFg6Xw9IkR2Fnn3k+Q==}
  908. engines: {node: '>=14.0.0'}
  909. hasBin: true
  910. scule@1.3.0:
  911. resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==}
  912. semver@7.7.2:
  913. resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==}
  914. engines: {node: '>=10'}
  915. hasBin: true
  916. shebang-command@2.0.0:
  917. resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
  918. engines: {node: '>=8'}
  919. shebang-regex@3.0.0:
  920. resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
  921. engines: {node: '>=8'}
  922. slash@3.0.0:
  923. resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
  924. engines: {node: '>=8'}
  925. source-map-js@1.2.1:
  926. resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  927. engines: {node: '>=0.10.0'}
  928. strip-ansi@6.0.1:
  929. resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
  930. engines: {node: '>=8'}
  931. strip-json-comments@3.1.1:
  932. resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
  933. engines: {node: '>=8'}
  934. strip-literal@3.0.0:
  935. resolution: {integrity: sha512-TcccoMhJOM3OebGhSBEmp3UZ2SfDMZUEBdRA/9ynfLi8yYajyWX3JiXArcJt4Umh4vISpspkQIY8ZZoCqjbviA==}
  936. supports-color@7.2.0:
  937. resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
  938. engines: {node: '>=8'}
  939. text-table@0.2.0:
  940. resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
  941. tinyglobby@0.2.14:
  942. resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==}
  943. engines: {node: '>=12.0.0'}
  944. to-regex-range@5.0.1:
  945. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  946. engines: {node: '>=8.0'}
  947. tslib@1.14.1:
  948. resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
  949. tsutils@3.21.0:
  950. resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
  951. engines: {node: '>= 6'}
  952. peerDependencies:
  953. typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
  954. type-check@0.4.0:
  955. resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
  956. engines: {node: '>= 0.8.0'}
  957. type-fest@0.20.2:
  958. resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
  959. engines: {node: '>=10'}
  960. typescript@5.9.2:
  961. resolution: {integrity: sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==}
  962. engines: {node: '>=14.17'}
  963. hasBin: true
  964. ufo@1.6.1:
  965. resolution: {integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==}
  966. undici-types@7.10.0:
  967. resolution: {integrity: sha512-t5Fy/nfn+14LuOc2KNYg75vZqClpAiqscVvMygNnlsHBFpSXdJaYtXMcdNLpl/Qvc3P2cB3s6lOV51nqsFq4ag==}
  968. unimport@5.2.0:
  969. resolution: {integrity: sha512-bTuAMMOOqIAyjV4i4UH7P07pO+EsVxmhOzQ2YJ290J6mkLUdozNhb5I/YoOEheeNADC03ent3Qj07X0fWfUpmw==}
  970. engines: {node: '>=18.12.0'}
  971. unplugin-auto-import@20.0.0:
  972. resolution: {integrity: sha512-YAqD07gQa5PpGlhLFQ9rWDtGa42nBR2oNMudnX7G5P8XmkQx3EPL7sKNQroTdt5ehwks55NHy0dzxwwA3xtqQg==}
  973. engines: {node: '>=14'}
  974. peerDependencies:
  975. '@nuxt/kit': ^4.0.0
  976. '@vueuse/core': '*'
  977. peerDependenciesMeta:
  978. '@nuxt/kit':
  979. optional: true
  980. '@vueuse/core':
  981. optional: true
  982. unplugin-utils@0.2.5:
  983. resolution: {integrity: sha512-gwXJnPRewT4rT7sBi/IvxKTjsms7jX7QIDLOClApuZwR49SXbrB1z2NLUZ+vDHyqCj/n58OzRRqaW+B8OZi8vg==}
  984. engines: {node: '>=18.12.0'}
  985. unplugin-vue-components@29.0.0:
  986. resolution: {integrity: sha512-M2DX44g4/jvBkB0V6uwqTbkTd5DMRHpeGoi/cIKwGG4HPuNxLbe8zoTStB2n12hoDiWc9I1PIRQruRWExNXHlQ==}
  987. engines: {node: '>=14'}
  988. peerDependencies:
  989. '@babel/parser': ^7.15.8
  990. '@nuxt/kit': ^3.2.2 || ^4.0.0
  991. vue: 2 || 3
  992. peerDependenciesMeta:
  993. '@babel/parser':
  994. optional: true
  995. '@nuxt/kit':
  996. optional: true
  997. unplugin@2.3.5:
  998. resolution: {integrity: sha512-RyWSb5AHmGtjjNQ6gIlA67sHOsWpsbWpwDokLwTcejVdOjEkJZh7QKu14J00gDDVSh8kGH4KYC/TNBceXFZhtw==}
  999. engines: {node: '>=18.12.0'}
  1000. uri-js@4.4.1:
  1001. resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
  1002. util-deprecate@1.0.2:
  1003. resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
  1004. vite@4.5.14:
  1005. resolution: {integrity: sha512-+v57oAaoYNnO3hIu5Z/tJRZjq5aHM2zDve9YZ8HngVHbhk66RStobhb1sqPMIPEleV6cNKYK4eGrAbE9Ulbl2g==}
  1006. engines: {node: ^14.18.0 || >=16.0.0}
  1007. hasBin: true
  1008. peerDependencies:
  1009. '@types/node': '>= 14'
  1010. less: '*'
  1011. lightningcss: ^1.21.0
  1012. sass: '*'
  1013. stylus: '*'
  1014. sugarss: '*'
  1015. terser: ^5.4.0
  1016. peerDependenciesMeta:
  1017. '@types/node':
  1018. optional: true
  1019. less:
  1020. optional: true
  1021. lightningcss:
  1022. optional: true
  1023. sass:
  1024. optional: true
  1025. stylus:
  1026. optional: true
  1027. sugarss:
  1028. optional: true
  1029. terser:
  1030. optional: true
  1031. vue-demi@0.14.10:
  1032. resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==}
  1033. engines: {node: '>=12'}
  1034. hasBin: true
  1035. peerDependencies:
  1036. '@vue/composition-api': ^1.0.0-rc.1
  1037. vue: ^3.0.0-0 || ^2.6.0
  1038. peerDependenciesMeta:
  1039. '@vue/composition-api':
  1040. optional: true
  1041. vue-eslint-parser@9.4.3:
  1042. resolution: {integrity: sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==}
  1043. engines: {node: ^14.17.0 || >=16.0.0}
  1044. peerDependencies:
  1045. eslint: '>=6.0.0'
  1046. vue-router@4.5.1:
  1047. resolution: {integrity: sha512-ogAF3P97NPm8fJsE4by9dwSYtDwXIY1nFY9T6DyQnGHd1E2Da94w9JIolpe42LJGIl0DwOHBi8TcRPlPGwbTtw==}
  1048. peerDependencies:
  1049. vue: ^3.2.0
  1050. vue@3.5.18:
  1051. resolution: {integrity: sha512-7W4Y4ZbMiQ3SEo+m9lnoNpV9xG7QVMLa+/0RFwwiAVkeYoyGXqWE85jabU4pllJNUzqfLShJ5YLptewhCWUgNA==}
  1052. peerDependencies:
  1053. typescript: '*'
  1054. peerDependenciesMeta:
  1055. typescript:
  1056. optional: true
  1057. webpack-virtual-modules@0.6.2:
  1058. resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
  1059. which@2.0.2:
  1060. resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
  1061. engines: {node: '>= 8'}
  1062. hasBin: true
  1063. word-wrap@1.2.5:
  1064. resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
  1065. engines: {node: '>=0.10.0'}
  1066. wrappy@1.0.2:
  1067. resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
  1068. xml-name-validator@4.0.0:
  1069. resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}
  1070. engines: {node: '>=12'}
  1071. yocto-queue@0.1.0:
  1072. resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
  1073. engines: {node: '>=10'}
  1074. snapshots:
  1075. '@babel/helper-string-parser@7.27.1': {}
  1076. '@babel/helper-validator-identifier@7.27.1': {}
  1077. '@babel/parser@7.28.0':
  1078. dependencies:
  1079. '@babel/types': 7.28.2
  1080. '@babel/types@7.28.2':
  1081. dependencies:
  1082. '@babel/helper-string-parser': 7.27.1
  1083. '@babel/helper-validator-identifier': 7.27.1
  1084. '@ctrl/tinycolor@3.6.1': {}
  1085. '@element-plus/icons-vue@2.3.2(vue@3.5.18(typescript@5.9.2))':
  1086. dependencies:
  1087. vue: 3.5.18(typescript@5.9.2)
  1088. '@esbuild/android-arm64@0.18.20':
  1089. optional: true
  1090. '@esbuild/android-arm@0.18.20':
  1091. optional: true
  1092. '@esbuild/android-x64@0.18.20':
  1093. optional: true
  1094. '@esbuild/darwin-arm64@0.18.20':
  1095. optional: true
  1096. '@esbuild/darwin-x64@0.18.20':
  1097. optional: true
  1098. '@esbuild/freebsd-arm64@0.18.20':
  1099. optional: true
  1100. '@esbuild/freebsd-x64@0.18.20':
  1101. optional: true
  1102. '@esbuild/linux-arm64@0.18.20':
  1103. optional: true
  1104. '@esbuild/linux-arm@0.18.20':
  1105. optional: true
  1106. '@esbuild/linux-ia32@0.18.20':
  1107. optional: true
  1108. '@esbuild/linux-loong64@0.18.20':
  1109. optional: true
  1110. '@esbuild/linux-mips64el@0.18.20':
  1111. optional: true
  1112. '@esbuild/linux-ppc64@0.18.20':
  1113. optional: true
  1114. '@esbuild/linux-riscv64@0.18.20':
  1115. optional: true
  1116. '@esbuild/linux-s390x@0.18.20':
  1117. optional: true
  1118. '@esbuild/linux-x64@0.18.20':
  1119. optional: true
  1120. '@esbuild/netbsd-x64@0.18.20':
  1121. optional: true
  1122. '@esbuild/openbsd-x64@0.18.20':
  1123. optional: true
  1124. '@esbuild/sunos-x64@0.18.20':
  1125. optional: true
  1126. '@esbuild/win32-arm64@0.18.20':
  1127. optional: true
  1128. '@esbuild/win32-ia32@0.18.20':
  1129. optional: true
  1130. '@esbuild/win32-x64@0.18.20':
  1131. optional: true
  1132. '@eslint-community/eslint-utils@4.7.0(eslint@8.57.1)':
  1133. dependencies:
  1134. eslint: 8.57.1
  1135. eslint-visitor-keys: 3.4.3
  1136. '@eslint-community/regexpp@4.12.1': {}
  1137. '@eslint/eslintrc@2.1.4':
  1138. dependencies:
  1139. ajv: 6.12.6
  1140. debug: 4.4.1
  1141. espree: 9.6.1
  1142. globals: 13.24.0
  1143. ignore: 5.3.2
  1144. import-fresh: 3.3.1
  1145. js-yaml: 4.1.0
  1146. minimatch: 3.1.2
  1147. strip-json-comments: 3.1.1
  1148. transitivePeerDependencies:
  1149. - supports-color
  1150. '@eslint/js@8.57.1': {}
  1151. '@floating-ui/core@1.7.3':
  1152. dependencies:
  1153. '@floating-ui/utils': 0.2.10
  1154. '@floating-ui/dom@1.7.3':
  1155. dependencies:
  1156. '@floating-ui/core': 1.7.3
  1157. '@floating-ui/utils': 0.2.10
  1158. '@floating-ui/utils@0.2.10': {}
  1159. '@humanwhocodes/config-array@0.13.0':
  1160. dependencies:
  1161. '@humanwhocodes/object-schema': 2.0.3
  1162. debug: 4.4.1
  1163. minimatch: 3.1.2
  1164. transitivePeerDependencies:
  1165. - supports-color
  1166. '@humanwhocodes/module-importer@1.0.1': {}
  1167. '@humanwhocodes/object-schema@2.0.3': {}
  1168. '@jridgewell/sourcemap-codec@1.5.4': {}
  1169. '@nodelib/fs.scandir@2.1.5':
  1170. dependencies:
  1171. '@nodelib/fs.stat': 2.0.5
  1172. run-parallel: 1.2.0
  1173. '@nodelib/fs.stat@2.0.5': {}
  1174. '@nodelib/fs.walk@1.2.8':
  1175. dependencies:
  1176. '@nodelib/fs.scandir': 2.1.5
  1177. fastq: 1.19.1
  1178. '@parcel/watcher-android-arm64@2.5.1':
  1179. optional: true
  1180. '@parcel/watcher-darwin-arm64@2.5.1':
  1181. optional: true
  1182. '@parcel/watcher-darwin-x64@2.5.1':
  1183. optional: true
  1184. '@parcel/watcher-freebsd-x64@2.5.1':
  1185. optional: true
  1186. '@parcel/watcher-linux-arm-glibc@2.5.1':
  1187. optional: true
  1188. '@parcel/watcher-linux-arm-musl@2.5.1':
  1189. optional: true
  1190. '@parcel/watcher-linux-arm64-glibc@2.5.1':
  1191. optional: true
  1192. '@parcel/watcher-linux-arm64-musl@2.5.1':
  1193. optional: true
  1194. '@parcel/watcher-linux-x64-glibc@2.5.1':
  1195. optional: true
  1196. '@parcel/watcher-linux-x64-musl@2.5.1':
  1197. optional: true
  1198. '@parcel/watcher-win32-arm64@2.5.1':
  1199. optional: true
  1200. '@parcel/watcher-win32-ia32@2.5.1':
  1201. optional: true
  1202. '@parcel/watcher-win32-x64@2.5.1':
  1203. optional: true
  1204. '@parcel/watcher@2.5.1':
  1205. dependencies:
  1206. detect-libc: 1.0.3
  1207. is-glob: 4.0.3
  1208. micromatch: 4.0.8
  1209. node-addon-api: 7.1.1
  1210. optionalDependencies:
  1211. '@parcel/watcher-android-arm64': 2.5.1
  1212. '@parcel/watcher-darwin-arm64': 2.5.1
  1213. '@parcel/watcher-darwin-x64': 2.5.1
  1214. '@parcel/watcher-freebsd-x64': 2.5.1
  1215. '@parcel/watcher-linux-arm-glibc': 2.5.1
  1216. '@parcel/watcher-linux-arm-musl': 2.5.1
  1217. '@parcel/watcher-linux-arm64-glibc': 2.5.1
  1218. '@parcel/watcher-linux-arm64-musl': 2.5.1
  1219. '@parcel/watcher-linux-x64-glibc': 2.5.1
  1220. '@parcel/watcher-linux-x64-musl': 2.5.1
  1221. '@parcel/watcher-win32-arm64': 2.5.1
  1222. '@parcel/watcher-win32-ia32': 2.5.1
  1223. '@parcel/watcher-win32-x64': 2.5.1
  1224. optional: true
  1225. '@sxzz/popperjs-es@2.11.7': {}
  1226. '@types/estree@1.0.8': {}
  1227. '@types/json-schema@7.0.15': {}
  1228. '@types/lodash-es@4.17.12':
  1229. dependencies:
  1230. '@types/lodash': 4.17.20
  1231. '@types/lodash@4.17.20': {}
  1232. '@types/node@24.2.1':
  1233. dependencies:
  1234. undici-types: 7.10.0
  1235. '@types/semver@7.7.0': {}
  1236. '@types/web-bluetooth@0.0.16': {}
  1237. '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.9.2))(eslint@8.57.1)(typescript@5.9.2)':
  1238. dependencies:
  1239. '@eslint-community/regexpp': 4.12.1
  1240. '@typescript-eslint/parser': 5.62.0(eslint@8.57.1)(typescript@5.9.2)
  1241. '@typescript-eslint/scope-manager': 5.62.0
  1242. '@typescript-eslint/type-utils': 5.62.0(eslint@8.57.1)(typescript@5.9.2)
  1243. '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.9.2)
  1244. debug: 4.4.1
  1245. eslint: 8.57.1
  1246. graphemer: 1.4.0
  1247. ignore: 5.3.2
  1248. natural-compare-lite: 1.4.0
  1249. semver: 7.7.2
  1250. tsutils: 3.21.0(typescript@5.9.2)
  1251. optionalDependencies:
  1252. typescript: 5.9.2
  1253. transitivePeerDependencies:
  1254. - supports-color
  1255. '@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.9.2)':
  1256. dependencies:
  1257. '@typescript-eslint/scope-manager': 5.62.0
  1258. '@typescript-eslint/types': 5.62.0
  1259. '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.9.2)
  1260. debug: 4.4.1
  1261. eslint: 8.57.1
  1262. optionalDependencies:
  1263. typescript: 5.9.2
  1264. transitivePeerDependencies:
  1265. - supports-color
  1266. '@typescript-eslint/scope-manager@5.62.0':
  1267. dependencies:
  1268. '@typescript-eslint/types': 5.62.0
  1269. '@typescript-eslint/visitor-keys': 5.62.0
  1270. '@typescript-eslint/type-utils@5.62.0(eslint@8.57.1)(typescript@5.9.2)':
  1271. dependencies:
  1272. '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.9.2)
  1273. '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.9.2)
  1274. debug: 4.4.1
  1275. eslint: 8.57.1
  1276. tsutils: 3.21.0(typescript@5.9.2)
  1277. optionalDependencies:
  1278. typescript: 5.9.2
  1279. transitivePeerDependencies:
  1280. - supports-color
  1281. '@typescript-eslint/types@5.62.0': {}
  1282. '@typescript-eslint/typescript-estree@5.62.0(typescript@5.9.2)':
  1283. dependencies:
  1284. '@typescript-eslint/types': 5.62.0
  1285. '@typescript-eslint/visitor-keys': 5.62.0
  1286. debug: 4.4.1
  1287. globby: 11.1.0
  1288. is-glob: 4.0.3
  1289. semver: 7.7.2
  1290. tsutils: 3.21.0(typescript@5.9.2)
  1291. optionalDependencies:
  1292. typescript: 5.9.2
  1293. transitivePeerDependencies:
  1294. - supports-color
  1295. '@typescript-eslint/utils@5.62.0(eslint@8.57.1)(typescript@5.9.2)':
  1296. dependencies:
  1297. '@eslint-community/eslint-utils': 4.7.0(eslint@8.57.1)
  1298. '@types/json-schema': 7.0.15
  1299. '@types/semver': 7.7.0
  1300. '@typescript-eslint/scope-manager': 5.62.0
  1301. '@typescript-eslint/types': 5.62.0
  1302. '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.9.2)
  1303. eslint: 8.57.1
  1304. eslint-scope: 5.1.1
  1305. semver: 7.7.2
  1306. transitivePeerDependencies:
  1307. - supports-color
  1308. - typescript
  1309. '@typescript-eslint/visitor-keys@5.62.0':
  1310. dependencies:
  1311. '@typescript-eslint/types': 5.62.0
  1312. eslint-visitor-keys: 3.4.3
  1313. '@ungap/structured-clone@1.3.0': {}
  1314. '@vitejs/plugin-vue@4.6.2(vite@4.5.14(@types/node@24.2.1)(sass@1.90.0))(vue@3.5.18(typescript@5.9.2))':
  1315. dependencies:
  1316. vite: 4.5.14(@types/node@24.2.1)(sass@1.90.0)
  1317. vue: 3.5.18(typescript@5.9.2)
  1318. '@vue/compiler-core@3.5.18':
  1319. dependencies:
  1320. '@babel/parser': 7.28.0
  1321. '@vue/shared': 3.5.18
  1322. entities: 4.5.0
  1323. estree-walker: 2.0.2
  1324. source-map-js: 1.2.1
  1325. '@vue/compiler-dom@3.5.18':
  1326. dependencies:
  1327. '@vue/compiler-core': 3.5.18
  1328. '@vue/shared': 3.5.18
  1329. '@vue/compiler-sfc@3.5.18':
  1330. dependencies:
  1331. '@babel/parser': 7.28.0
  1332. '@vue/compiler-core': 3.5.18
  1333. '@vue/compiler-dom': 3.5.18
  1334. '@vue/compiler-ssr': 3.5.18
  1335. '@vue/shared': 3.5.18
  1336. estree-walker: 2.0.2
  1337. magic-string: 0.30.17
  1338. postcss: 8.5.6
  1339. source-map-js: 1.2.1
  1340. '@vue/compiler-ssr@3.5.18':
  1341. dependencies:
  1342. '@vue/compiler-dom': 3.5.18
  1343. '@vue/shared': 3.5.18
  1344. '@vue/devtools-api@6.6.4': {}
  1345. '@vue/reactivity@3.5.18':
  1346. dependencies:
  1347. '@vue/shared': 3.5.18
  1348. '@vue/runtime-core@3.5.18':
  1349. dependencies:
  1350. '@vue/reactivity': 3.5.18
  1351. '@vue/shared': 3.5.18
  1352. '@vue/runtime-dom@3.5.18':
  1353. dependencies:
  1354. '@vue/reactivity': 3.5.18
  1355. '@vue/runtime-core': 3.5.18
  1356. '@vue/shared': 3.5.18
  1357. csstype: 3.1.3
  1358. '@vue/server-renderer@3.5.18(vue@3.5.18(typescript@5.9.2))':
  1359. dependencies:
  1360. '@vue/compiler-ssr': 3.5.18
  1361. '@vue/shared': 3.5.18
  1362. vue: 3.5.18(typescript@5.9.2)
  1363. '@vue/shared@3.5.18': {}
  1364. '@vueuse/core@9.13.0(vue@3.5.18(typescript@5.9.2))':
  1365. dependencies:
  1366. '@types/web-bluetooth': 0.0.16
  1367. '@vueuse/metadata': 9.13.0
  1368. '@vueuse/shared': 9.13.0(vue@3.5.18(typescript@5.9.2))
  1369. vue-demi: 0.14.10(vue@3.5.18(typescript@5.9.2))
  1370. transitivePeerDependencies:
  1371. - '@vue/composition-api'
  1372. - vue
  1373. '@vueuse/metadata@9.13.0': {}
  1374. '@vueuse/shared@9.13.0(vue@3.5.18(typescript@5.9.2))':
  1375. dependencies:
  1376. vue-demi: 0.14.10(vue@3.5.18(typescript@5.9.2))
  1377. transitivePeerDependencies:
  1378. - '@vue/composition-api'
  1379. - vue
  1380. acorn-jsx@5.3.2(acorn@8.15.0):
  1381. dependencies:
  1382. acorn: 8.15.0
  1383. acorn@8.15.0: {}
  1384. ajv@6.12.6:
  1385. dependencies:
  1386. fast-deep-equal: 3.1.3
  1387. fast-json-stable-stringify: 2.1.0
  1388. json-schema-traverse: 0.4.1
  1389. uri-js: 4.4.1
  1390. ansi-regex@5.0.1: {}
  1391. ansi-styles@4.3.0:
  1392. dependencies:
  1393. color-convert: 2.0.1
  1394. anymatch@3.1.3:
  1395. dependencies:
  1396. normalize-path: 3.0.0
  1397. picomatch: 2.3.1
  1398. argparse@2.0.1: {}
  1399. array-union@2.1.0: {}
  1400. async-validator@4.2.5: {}
  1401. asynckit@0.4.0: {}
  1402. axios@1.11.0:
  1403. dependencies:
  1404. follow-redirects: 1.15.11
  1405. form-data: 4.0.4
  1406. proxy-from-env: 1.1.0
  1407. transitivePeerDependencies:
  1408. - debug
  1409. balanced-match@1.0.2: {}
  1410. binary-extensions@2.3.0: {}
  1411. boolbase@1.0.0: {}
  1412. brace-expansion@1.1.12:
  1413. dependencies:
  1414. balanced-match: 1.0.2
  1415. concat-map: 0.0.1
  1416. braces@3.0.3:
  1417. dependencies:
  1418. fill-range: 7.1.1
  1419. call-bind-apply-helpers@1.0.2:
  1420. dependencies:
  1421. es-errors: 1.3.0
  1422. function-bind: 1.1.2
  1423. callsites@3.1.0: {}
  1424. chalk@4.1.2:
  1425. dependencies:
  1426. ansi-styles: 4.3.0
  1427. supports-color: 7.2.0
  1428. chokidar@3.6.0:
  1429. dependencies:
  1430. anymatch: 3.1.3
  1431. braces: 3.0.3
  1432. glob-parent: 5.1.2
  1433. is-binary-path: 2.1.0
  1434. is-glob: 4.0.3
  1435. normalize-path: 3.0.0
  1436. readdirp: 3.6.0
  1437. optionalDependencies:
  1438. fsevents: 2.3.3
  1439. chokidar@4.0.3:
  1440. dependencies:
  1441. readdirp: 4.1.2
  1442. color-convert@2.0.1:
  1443. dependencies:
  1444. color-name: 1.1.4
  1445. color-name@1.1.4: {}
  1446. combined-stream@1.0.8:
  1447. dependencies:
  1448. delayed-stream: 1.0.0
  1449. concat-map@0.0.1: {}
  1450. confbox@0.1.8: {}
  1451. confbox@0.2.2: {}
  1452. cross-spawn@7.0.6:
  1453. dependencies:
  1454. path-key: 3.1.1
  1455. shebang-command: 2.0.0
  1456. which: 2.0.2
  1457. cssesc@3.0.0: {}
  1458. csstype@3.1.3: {}
  1459. dayjs@1.11.13: {}
  1460. debug@4.4.1:
  1461. dependencies:
  1462. ms: 2.1.3
  1463. deep-is@0.1.4: {}
  1464. delayed-stream@1.0.0: {}
  1465. detect-libc@1.0.3:
  1466. optional: true
  1467. dir-glob@3.0.1:
  1468. dependencies:
  1469. path-type: 4.0.0
  1470. doctrine@3.0.0:
  1471. dependencies:
  1472. esutils: 2.0.3
  1473. dunder-proto@1.0.1:
  1474. dependencies:
  1475. call-bind-apply-helpers: 1.0.2
  1476. es-errors: 1.3.0
  1477. gopd: 1.2.0
  1478. element-plus@2.10.7(vue@3.5.18(typescript@5.9.2)):
  1479. dependencies:
  1480. '@ctrl/tinycolor': 3.6.1
  1481. '@element-plus/icons-vue': 2.3.2(vue@3.5.18(typescript@5.9.2))
  1482. '@floating-ui/dom': 1.7.3
  1483. '@popperjs/core': '@sxzz/popperjs-es@2.11.7'
  1484. '@types/lodash': 4.17.20
  1485. '@types/lodash-es': 4.17.12
  1486. '@vueuse/core': 9.13.0(vue@3.5.18(typescript@5.9.2))
  1487. async-validator: 4.2.5
  1488. dayjs: 1.11.13
  1489. escape-html: 1.0.3
  1490. lodash: 4.17.21
  1491. lodash-es: 4.17.21
  1492. lodash-unified: 1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.21)(lodash@4.17.21)
  1493. memoize-one: 6.0.0
  1494. normalize-wheel-es: 1.2.0
  1495. vue: 3.5.18(typescript@5.9.2)
  1496. transitivePeerDependencies:
  1497. - '@vue/composition-api'
  1498. entities@4.5.0: {}
  1499. es-define-property@1.0.1: {}
  1500. es-errors@1.3.0: {}
  1501. es-object-atoms@1.1.1:
  1502. dependencies:
  1503. es-errors: 1.3.0
  1504. es-set-tostringtag@2.1.0:
  1505. dependencies:
  1506. es-errors: 1.3.0
  1507. get-intrinsic: 1.3.0
  1508. has-tostringtag: 1.0.2
  1509. hasown: 2.0.2
  1510. esbuild@0.18.20:
  1511. optionalDependencies:
  1512. '@esbuild/android-arm': 0.18.20
  1513. '@esbuild/android-arm64': 0.18.20
  1514. '@esbuild/android-x64': 0.18.20
  1515. '@esbuild/darwin-arm64': 0.18.20
  1516. '@esbuild/darwin-x64': 0.18.20
  1517. '@esbuild/freebsd-arm64': 0.18.20
  1518. '@esbuild/freebsd-x64': 0.18.20
  1519. '@esbuild/linux-arm': 0.18.20
  1520. '@esbuild/linux-arm64': 0.18.20
  1521. '@esbuild/linux-ia32': 0.18.20
  1522. '@esbuild/linux-loong64': 0.18.20
  1523. '@esbuild/linux-mips64el': 0.18.20
  1524. '@esbuild/linux-ppc64': 0.18.20
  1525. '@esbuild/linux-riscv64': 0.18.20
  1526. '@esbuild/linux-s390x': 0.18.20
  1527. '@esbuild/linux-x64': 0.18.20
  1528. '@esbuild/netbsd-x64': 0.18.20
  1529. '@esbuild/openbsd-x64': 0.18.20
  1530. '@esbuild/sunos-x64': 0.18.20
  1531. '@esbuild/win32-arm64': 0.18.20
  1532. '@esbuild/win32-ia32': 0.18.20
  1533. '@esbuild/win32-x64': 0.18.20
  1534. escape-html@1.0.3: {}
  1535. escape-string-regexp@4.0.0: {}
  1536. escape-string-regexp@5.0.0: {}
  1537. eslint-config-prettier@8.10.2(eslint@8.57.1):
  1538. dependencies:
  1539. eslint: 8.57.1
  1540. eslint-plugin-prettier@4.2.5(eslint-config-prettier@8.10.2(eslint@8.57.1))(eslint@8.57.1)(prettier@2.8.8):
  1541. dependencies:
  1542. eslint: 8.57.1
  1543. prettier: 2.8.8
  1544. prettier-linter-helpers: 1.0.0
  1545. optionalDependencies:
  1546. eslint-config-prettier: 8.10.2(eslint@8.57.1)
  1547. eslint-plugin-vue@9.33.0(eslint@8.57.1):
  1548. dependencies:
  1549. '@eslint-community/eslint-utils': 4.7.0(eslint@8.57.1)
  1550. eslint: 8.57.1
  1551. globals: 13.24.0
  1552. natural-compare: 1.4.0
  1553. nth-check: 2.1.1
  1554. postcss-selector-parser: 6.1.2
  1555. semver: 7.7.2
  1556. vue-eslint-parser: 9.4.3(eslint@8.57.1)
  1557. xml-name-validator: 4.0.0
  1558. transitivePeerDependencies:
  1559. - supports-color
  1560. eslint-scope@5.1.1:
  1561. dependencies:
  1562. esrecurse: 4.3.0
  1563. estraverse: 4.3.0
  1564. eslint-scope@7.2.2:
  1565. dependencies:
  1566. esrecurse: 4.3.0
  1567. estraverse: 5.3.0
  1568. eslint-visitor-keys@3.4.3: {}
  1569. eslint@8.57.1:
  1570. dependencies:
  1571. '@eslint-community/eslint-utils': 4.7.0(eslint@8.57.1)
  1572. '@eslint-community/regexpp': 4.12.1
  1573. '@eslint/eslintrc': 2.1.4
  1574. '@eslint/js': 8.57.1
  1575. '@humanwhocodes/config-array': 0.13.0
  1576. '@humanwhocodes/module-importer': 1.0.1
  1577. '@nodelib/fs.walk': 1.2.8
  1578. '@ungap/structured-clone': 1.3.0
  1579. ajv: 6.12.6
  1580. chalk: 4.1.2
  1581. cross-spawn: 7.0.6
  1582. debug: 4.4.1
  1583. doctrine: 3.0.0
  1584. escape-string-regexp: 4.0.0
  1585. eslint-scope: 7.2.2
  1586. eslint-visitor-keys: 3.4.3
  1587. espree: 9.6.1
  1588. esquery: 1.6.0
  1589. esutils: 2.0.3
  1590. fast-deep-equal: 3.1.3
  1591. file-entry-cache: 6.0.1
  1592. find-up: 5.0.0
  1593. glob-parent: 6.0.2
  1594. globals: 13.24.0
  1595. graphemer: 1.4.0
  1596. ignore: 5.3.2
  1597. imurmurhash: 0.1.4
  1598. is-glob: 4.0.3
  1599. is-path-inside: 3.0.3
  1600. js-yaml: 4.1.0
  1601. json-stable-stringify-without-jsonify: 1.0.1
  1602. levn: 0.4.1
  1603. lodash.merge: 4.6.2
  1604. minimatch: 3.1.2
  1605. natural-compare: 1.4.0
  1606. optionator: 0.9.4
  1607. strip-ansi: 6.0.1
  1608. text-table: 0.2.0
  1609. transitivePeerDependencies:
  1610. - supports-color
  1611. espree@9.6.1:
  1612. dependencies:
  1613. acorn: 8.15.0
  1614. acorn-jsx: 5.3.2(acorn@8.15.0)
  1615. eslint-visitor-keys: 3.4.3
  1616. esquery@1.6.0:
  1617. dependencies:
  1618. estraverse: 5.3.0
  1619. esrecurse@4.3.0:
  1620. dependencies:
  1621. estraverse: 5.3.0
  1622. estraverse@4.3.0: {}
  1623. estraverse@5.3.0: {}
  1624. estree-walker@2.0.2: {}
  1625. estree-walker@3.0.3:
  1626. dependencies:
  1627. '@types/estree': 1.0.8
  1628. esutils@2.0.3: {}
  1629. exsolve@1.0.7: {}
  1630. fast-deep-equal@3.1.3: {}
  1631. fast-diff@1.3.0: {}
  1632. fast-glob@3.3.3:
  1633. dependencies:
  1634. '@nodelib/fs.stat': 2.0.5
  1635. '@nodelib/fs.walk': 1.2.8
  1636. glob-parent: 5.1.2
  1637. merge2: 1.4.1
  1638. micromatch: 4.0.8
  1639. fast-json-stable-stringify@2.1.0: {}
  1640. fast-levenshtein@2.0.6: {}
  1641. fastq@1.19.1:
  1642. dependencies:
  1643. reusify: 1.1.0
  1644. fdir@6.4.6(picomatch@4.0.3):
  1645. optionalDependencies:
  1646. picomatch: 4.0.3
  1647. file-entry-cache@6.0.1:
  1648. dependencies:
  1649. flat-cache: 3.2.0
  1650. fill-range@7.1.1:
  1651. dependencies:
  1652. to-regex-range: 5.0.1
  1653. find-up@5.0.0:
  1654. dependencies:
  1655. locate-path: 6.0.0
  1656. path-exists: 4.0.0
  1657. flat-cache@3.2.0:
  1658. dependencies:
  1659. flatted: 3.3.3
  1660. keyv: 4.5.4
  1661. rimraf: 3.0.2
  1662. flatted@3.3.3: {}
  1663. follow-redirects@1.15.11: {}
  1664. form-data@4.0.4:
  1665. dependencies:
  1666. asynckit: 0.4.0
  1667. combined-stream: 1.0.8
  1668. es-set-tostringtag: 2.1.0
  1669. hasown: 2.0.2
  1670. mime-types: 2.1.35
  1671. fs.realpath@1.0.0: {}
  1672. fsevents@2.3.3:
  1673. optional: true
  1674. function-bind@1.1.2: {}
  1675. get-intrinsic@1.3.0:
  1676. dependencies:
  1677. call-bind-apply-helpers: 1.0.2
  1678. es-define-property: 1.0.1
  1679. es-errors: 1.3.0
  1680. es-object-atoms: 1.1.1
  1681. function-bind: 1.1.2
  1682. get-proto: 1.0.1
  1683. gopd: 1.2.0
  1684. has-symbols: 1.1.0
  1685. hasown: 2.0.2
  1686. math-intrinsics: 1.1.0
  1687. get-proto@1.0.1:
  1688. dependencies:
  1689. dunder-proto: 1.0.1
  1690. es-object-atoms: 1.1.1
  1691. glob-parent@5.1.2:
  1692. dependencies:
  1693. is-glob: 4.0.3
  1694. glob-parent@6.0.2:
  1695. dependencies:
  1696. is-glob: 4.0.3
  1697. glob@7.2.3:
  1698. dependencies:
  1699. fs.realpath: 1.0.0
  1700. inflight: 1.0.6
  1701. inherits: 2.0.4
  1702. minimatch: 3.1.2
  1703. once: 1.4.0
  1704. path-is-absolute: 1.0.1
  1705. globals@13.24.0:
  1706. dependencies:
  1707. type-fest: 0.20.2
  1708. globby@11.1.0:
  1709. dependencies:
  1710. array-union: 2.1.0
  1711. dir-glob: 3.0.1
  1712. fast-glob: 3.3.3
  1713. ignore: 5.3.2
  1714. merge2: 1.4.1
  1715. slash: 3.0.0
  1716. gopd@1.2.0: {}
  1717. graphemer@1.4.0: {}
  1718. has-flag@4.0.0: {}
  1719. has-symbols@1.1.0: {}
  1720. has-tostringtag@1.0.2:
  1721. dependencies:
  1722. has-symbols: 1.1.0
  1723. hasown@2.0.2:
  1724. dependencies:
  1725. function-bind: 1.1.2
  1726. ignore@5.3.2: {}
  1727. immutable@5.1.3: {}
  1728. import-fresh@3.3.1:
  1729. dependencies:
  1730. parent-module: 1.0.1
  1731. resolve-from: 4.0.0
  1732. imurmurhash@0.1.4: {}
  1733. inflight@1.0.6:
  1734. dependencies:
  1735. once: 1.4.0
  1736. wrappy: 1.0.2
  1737. inherits@2.0.4: {}
  1738. is-binary-path@2.1.0:
  1739. dependencies:
  1740. binary-extensions: 2.3.0
  1741. is-extglob@2.1.1: {}
  1742. is-glob@4.0.3:
  1743. dependencies:
  1744. is-extglob: 2.1.1
  1745. is-number@7.0.0: {}
  1746. is-path-inside@3.0.3: {}
  1747. isexe@2.0.0: {}
  1748. js-tokens@9.0.1: {}
  1749. js-yaml@4.1.0:
  1750. dependencies:
  1751. argparse: 2.0.1
  1752. json-buffer@3.0.1: {}
  1753. json-schema-traverse@0.4.1: {}
  1754. json-stable-stringify-without-jsonify@1.0.1: {}
  1755. keyv@4.5.4:
  1756. dependencies:
  1757. json-buffer: 3.0.1
  1758. levn@0.4.1:
  1759. dependencies:
  1760. prelude-ls: 1.2.1
  1761. type-check: 0.4.0
  1762. local-pkg@1.1.1:
  1763. dependencies:
  1764. mlly: 1.7.4
  1765. pkg-types: 2.2.0
  1766. quansync: 0.2.10
  1767. locate-path@6.0.0:
  1768. dependencies:
  1769. p-locate: 5.0.0
  1770. lodash-es@4.17.21: {}
  1771. lodash-unified@1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.21)(lodash@4.17.21):
  1772. dependencies:
  1773. '@types/lodash-es': 4.17.12
  1774. lodash: 4.17.21
  1775. lodash-es: 4.17.21
  1776. lodash.merge@4.6.2: {}
  1777. lodash@4.17.21: {}
  1778. magic-string@0.30.17:
  1779. dependencies:
  1780. '@jridgewell/sourcemap-codec': 1.5.4
  1781. math-intrinsics@1.1.0: {}
  1782. memoize-one@6.0.0: {}
  1783. merge2@1.4.1: {}
  1784. micromatch@4.0.8:
  1785. dependencies:
  1786. braces: 3.0.3
  1787. picomatch: 2.3.1
  1788. mime-db@1.52.0: {}
  1789. mime-types@2.1.35:
  1790. dependencies:
  1791. mime-db: 1.52.0
  1792. minimatch@3.1.2:
  1793. dependencies:
  1794. brace-expansion: 1.1.12
  1795. mlly@1.7.4:
  1796. dependencies:
  1797. acorn: 8.15.0
  1798. pathe: 2.0.3
  1799. pkg-types: 1.3.1
  1800. ufo: 1.6.1
  1801. ms@2.1.3: {}
  1802. nanoid@3.3.11: {}
  1803. natural-compare-lite@1.4.0: {}
  1804. natural-compare@1.4.0: {}
  1805. node-addon-api@7.1.1:
  1806. optional: true
  1807. normalize-path@3.0.0: {}
  1808. normalize-wheel-es@1.2.0: {}
  1809. nth-check@2.1.1:
  1810. dependencies:
  1811. boolbase: 1.0.0
  1812. once@1.4.0:
  1813. dependencies:
  1814. wrappy: 1.0.2
  1815. optionator@0.9.4:
  1816. dependencies:
  1817. deep-is: 0.1.4
  1818. fast-levenshtein: 2.0.6
  1819. levn: 0.4.1
  1820. prelude-ls: 1.2.1
  1821. type-check: 0.4.0
  1822. word-wrap: 1.2.5
  1823. p-limit@3.1.0:
  1824. dependencies:
  1825. yocto-queue: 0.1.0
  1826. p-locate@5.0.0:
  1827. dependencies:
  1828. p-limit: 3.1.0
  1829. parent-module@1.0.1:
  1830. dependencies:
  1831. callsites: 3.1.0
  1832. path-exists@4.0.0: {}
  1833. path-is-absolute@1.0.1: {}
  1834. path-key@3.1.1: {}
  1835. path-type@4.0.0: {}
  1836. pathe@2.0.3: {}
  1837. picocolors@1.1.1: {}
  1838. picomatch@2.3.1: {}
  1839. picomatch@4.0.3: {}
  1840. pinia@2.3.1(typescript@5.9.2)(vue@3.5.18(typescript@5.9.2)):
  1841. dependencies:
  1842. '@vue/devtools-api': 6.6.4
  1843. vue: 3.5.18(typescript@5.9.2)
  1844. vue-demi: 0.14.10(vue@3.5.18(typescript@5.9.2))
  1845. optionalDependencies:
  1846. typescript: 5.9.2
  1847. transitivePeerDependencies:
  1848. - '@vue/composition-api'
  1849. pkg-types@1.3.1:
  1850. dependencies:
  1851. confbox: 0.1.8
  1852. mlly: 1.7.4
  1853. pathe: 2.0.3
  1854. pkg-types@2.2.0:
  1855. dependencies:
  1856. confbox: 0.2.2
  1857. exsolve: 1.0.7
  1858. pathe: 2.0.3
  1859. postcss-selector-parser@6.1.2:
  1860. dependencies:
  1861. cssesc: 3.0.0
  1862. util-deprecate: 1.0.2
  1863. postcss@8.5.6:
  1864. dependencies:
  1865. nanoid: 3.3.11
  1866. picocolors: 1.1.1
  1867. source-map-js: 1.2.1
  1868. prelude-ls@1.2.1: {}
  1869. prettier-linter-helpers@1.0.0:
  1870. dependencies:
  1871. fast-diff: 1.3.0
  1872. prettier@2.8.8: {}
  1873. proxy-from-env@1.1.0: {}
  1874. punycode@2.3.1: {}
  1875. quansync@0.2.10: {}
  1876. queue-microtask@1.2.3: {}
  1877. readdirp@3.6.0:
  1878. dependencies:
  1879. picomatch: 2.3.1
  1880. readdirp@4.1.2: {}
  1881. resolve-from@4.0.0: {}
  1882. reusify@1.1.0: {}
  1883. rimraf@3.0.2:
  1884. dependencies:
  1885. glob: 7.2.3
  1886. rollup@3.29.5:
  1887. optionalDependencies:
  1888. fsevents: 2.3.3
  1889. run-parallel@1.2.0:
  1890. dependencies:
  1891. queue-microtask: 1.2.3
  1892. sass@1.90.0:
  1893. dependencies:
  1894. chokidar: 4.0.3
  1895. immutable: 5.1.3
  1896. source-map-js: 1.2.1
  1897. optionalDependencies:
  1898. '@parcel/watcher': 2.5.1
  1899. scule@1.3.0: {}
  1900. semver@7.7.2: {}
  1901. shebang-command@2.0.0:
  1902. dependencies:
  1903. shebang-regex: 3.0.0
  1904. shebang-regex@3.0.0: {}
  1905. slash@3.0.0: {}
  1906. source-map-js@1.2.1: {}
  1907. strip-ansi@6.0.1:
  1908. dependencies:
  1909. ansi-regex: 5.0.1
  1910. strip-json-comments@3.1.1: {}
  1911. strip-literal@3.0.0:
  1912. dependencies:
  1913. js-tokens: 9.0.1
  1914. supports-color@7.2.0:
  1915. dependencies:
  1916. has-flag: 4.0.0
  1917. text-table@0.2.0: {}
  1918. tinyglobby@0.2.14:
  1919. dependencies:
  1920. fdir: 6.4.6(picomatch@4.0.3)
  1921. picomatch: 4.0.3
  1922. to-regex-range@5.0.1:
  1923. dependencies:
  1924. is-number: 7.0.0
  1925. tslib@1.14.1: {}
  1926. tsutils@3.21.0(typescript@5.9.2):
  1927. dependencies:
  1928. tslib: 1.14.1
  1929. typescript: 5.9.2
  1930. type-check@0.4.0:
  1931. dependencies:
  1932. prelude-ls: 1.2.1
  1933. type-fest@0.20.2: {}
  1934. typescript@5.9.2: {}
  1935. ufo@1.6.1: {}
  1936. undici-types@7.10.0: {}
  1937. unimport@5.2.0:
  1938. dependencies:
  1939. acorn: 8.15.0
  1940. escape-string-regexp: 5.0.0
  1941. estree-walker: 3.0.3
  1942. local-pkg: 1.1.1
  1943. magic-string: 0.30.17
  1944. mlly: 1.7.4
  1945. pathe: 2.0.3
  1946. picomatch: 4.0.3
  1947. pkg-types: 2.2.0
  1948. scule: 1.3.0
  1949. strip-literal: 3.0.0
  1950. tinyglobby: 0.2.14
  1951. unplugin: 2.3.5
  1952. unplugin-utils: 0.2.5
  1953. unplugin-auto-import@20.0.0(@vueuse/core@9.13.0(vue@3.5.18(typescript@5.9.2))):
  1954. dependencies:
  1955. local-pkg: 1.1.1
  1956. magic-string: 0.30.17
  1957. picomatch: 4.0.3
  1958. unimport: 5.2.0
  1959. unplugin: 2.3.5
  1960. unplugin-utils: 0.2.5
  1961. optionalDependencies:
  1962. '@vueuse/core': 9.13.0(vue@3.5.18(typescript@5.9.2))
  1963. unplugin-utils@0.2.5:
  1964. dependencies:
  1965. pathe: 2.0.3
  1966. picomatch: 4.0.3
  1967. unplugin-vue-components@29.0.0(@babel/parser@7.28.0)(vue@3.5.18(typescript@5.9.2)):
  1968. dependencies:
  1969. chokidar: 3.6.0
  1970. debug: 4.4.1
  1971. local-pkg: 1.1.1
  1972. magic-string: 0.30.17
  1973. mlly: 1.7.4
  1974. tinyglobby: 0.2.14
  1975. unplugin: 2.3.5
  1976. unplugin-utils: 0.2.5
  1977. vue: 3.5.18(typescript@5.9.2)
  1978. optionalDependencies:
  1979. '@babel/parser': 7.28.0
  1980. transitivePeerDependencies:
  1981. - supports-color
  1982. unplugin@2.3.5:
  1983. dependencies:
  1984. acorn: 8.15.0
  1985. picomatch: 4.0.3
  1986. webpack-virtual-modules: 0.6.2
  1987. uri-js@4.4.1:
  1988. dependencies:
  1989. punycode: 2.3.1
  1990. util-deprecate@1.0.2: {}
  1991. vite@4.5.14(@types/node@24.2.1)(sass@1.90.0):
  1992. dependencies:
  1993. esbuild: 0.18.20
  1994. postcss: 8.5.6
  1995. rollup: 3.29.5
  1996. optionalDependencies:
  1997. '@types/node': 24.2.1
  1998. fsevents: 2.3.3
  1999. sass: 1.90.0
  2000. vue-demi@0.14.10(vue@3.5.18(typescript@5.9.2)):
  2001. dependencies:
  2002. vue: 3.5.18(typescript@5.9.2)
  2003. vue-eslint-parser@9.4.3(eslint@8.57.1):
  2004. dependencies:
  2005. debug: 4.4.1
  2006. eslint: 8.57.1
  2007. eslint-scope: 7.2.2
  2008. eslint-visitor-keys: 3.4.3
  2009. espree: 9.6.1
  2010. esquery: 1.6.0
  2011. lodash: 4.17.21
  2012. semver: 7.7.2
  2013. transitivePeerDependencies:
  2014. - supports-color
  2015. vue-router@4.5.1(vue@3.5.18(typescript@5.9.2)):
  2016. dependencies:
  2017. '@vue/devtools-api': 6.6.4
  2018. vue: 3.5.18(typescript@5.9.2)
  2019. vue@3.5.18(typescript@5.9.2):
  2020. dependencies:
  2021. '@vue/compiler-dom': 3.5.18
  2022. '@vue/compiler-sfc': 3.5.18
  2023. '@vue/runtime-dom': 3.5.18
  2024. '@vue/server-renderer': 3.5.18(vue@3.5.18(typescript@5.9.2))
  2025. '@vue/shared': 3.5.18
  2026. optionalDependencies:
  2027. typescript: 5.9.2
  2028. webpack-virtual-modules@0.6.2: {}
  2029. which@2.0.2:
  2030. dependencies:
  2031. isexe: 2.0.0
  2032. word-wrap@1.2.5: {}
  2033. wrappy@1.0.2: {}
  2034. xml-name-validator@4.0.0: {}
  2035. yocto-queue@0.1.0: {}