pnpm-lock.yaml 94 KB

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