pnpm-lock.yaml 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. '@amap/amap-jsapi-loader':
  9. specifier: ^1.0.1
  10. version: 1.0.1
  11. '@ffmpeg/ffmpeg':
  12. specifier: ^0.12.15
  13. version: 0.12.15
  14. '@ffmpeg/util':
  15. specifier: ^0.12.2
  16. version: 0.12.2
  17. '@vladmandic/face-api':
  18. specifier: ^1.7.15
  19. version: 1.7.15
  20. '@wangeditor/editor':
  21. specifier: ^5.1.23
  22. version: 5.1.23
  23. '@wangeditor/editor-for-vue':
  24. specifier: next
  25. version: 5.1.12(@wangeditor/editor@5.1.23)(vue@3.5.18)
  26. axios:
  27. specifier: ^1.8.3
  28. version: 1.11.0
  29. crypto-js:
  30. specifier: ^4.2.0
  31. version: 4.2.0
  32. echarts:
  33. specifier: ^5.6.0
  34. version: 5.6.0
  35. jsencrypt:
  36. specifier: ^3.3.2
  37. version: 3.5.4
  38. lru-cache:
  39. specifier: ^11.1.0
  40. version: 11.1.0
  41. markdown-it:
  42. specifier: ^14.1.0
  43. version: 14.1.0
  44. mitt:
  45. specifier: ^3.0.1
  46. version: 3.0.1
  47. pinia:
  48. specifier: ^3.0.1
  49. version: 3.0.3(vue@3.5.18)
  50. store:
  51. specifier: ^2.0.12
  52. version: 2.0.12
  53. three:
  54. specifier: ^0.175.0
  55. version: 0.175.0
  56. uuid:
  57. specifier: ^11.1.0
  58. version: 11.1.0
  59. vue:
  60. specifier: ^3.5.13
  61. version: 3.5.18
  62. vue-echarts:
  63. specifier: ^7.0.3
  64. version: 7.0.3(@vue/runtime-core@3.5.18)(echarts@5.6.0)(vue@3.5.18)
  65. vue-router:
  66. specifier: ^4.5.0
  67. version: 4.5.1(vue@3.5.18)
  68. devDependencies:
  69. '@arco-design/web-vue':
  70. specifier: ^2.57.0
  71. version: 2.57.0(vue@3.5.18)
  72. '@arco-plugins/vite-vue':
  73. specifier: ^1.4.5
  74. version: 1.4.5
  75. '@vitejs/plugin-vue':
  76. specifier: ^5.2.1
  77. version: 5.2.4(vite@6.3.5(less@4.4.1))(vue@3.5.18)
  78. less:
  79. specifier: ^4.2.2
  80. version: 4.4.1
  81. vite:
  82. specifier: ^6.2.0
  83. version: 6.3.5(less@4.4.1)
  84. packages:
  85. '@amap/amap-jsapi-loader@1.0.1':
  86. resolution: {integrity: sha512-nPyLKt7Ow/ThHLkSvn2etQlUzqxmTVgK7bIgwdBRTg2HK5668oN7xVxkaiRe3YZEzGzfV2XgH5Jmu2T73ljejw==}
  87. '@arco-design/color@0.4.0':
  88. resolution: {integrity: sha512-s7p9MSwJgHeL8DwcATaXvWT3m2SigKpxx4JA1BGPHL4gfvaQsmQfrLBDpjOJFJuJ2jG2dMt3R3P8Pm9E65q18g==}
  89. '@arco-design/web-vue@2.57.0':
  90. resolution: {integrity: sha512-R5YReC3C2sG3Jv0+YuR3B7kzkq2KdhhQNCGXD8T11xAoa0zMt6SWTP1xJQOdZcM9du+q3z6tk5mRvh4qkieRJw==}
  91. peerDependencies:
  92. vue: ^3.1.0
  93. '@arco-plugins/vite-vue@1.4.5':
  94. resolution: {integrity: sha512-2pJ9mpZP9mRD7NGZwRsZTS9C/US5ilEBBUqxN5Qgnd3Td50u9apJVKAABCZjG2K2eHiyZg7Fd9XhgHJXVJJmsw==}
  95. '@babel/code-frame@7.27.1':
  96. resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
  97. engines: {node: '>=6.9.0'}
  98. '@babel/generator@7.28.3':
  99. resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==}
  100. engines: {node: '>=6.9.0'}
  101. '@babel/helper-globals@7.28.0':
  102. resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
  103. engines: {node: '>=6.9.0'}
  104. '@babel/helper-module-imports@7.27.1':
  105. resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
  106. engines: {node: '>=6.9.0'}
  107. '@babel/helper-string-parser@7.27.1':
  108. resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
  109. engines: {node: '>=6.9.0'}
  110. '@babel/helper-validator-identifier@7.27.1':
  111. resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
  112. engines: {node: '>=6.9.0'}
  113. '@babel/parser@7.28.3':
  114. resolution: {integrity: sha512-7+Ey1mAgYqFAx2h0RuoxcQT5+MlG3GTV0TQrgr7/ZliKsm/MNDxVVutlWaziMq7wJNAz8MTqz55XLpWvva6StA==}
  115. engines: {node: '>=6.0.0'}
  116. hasBin: true
  117. '@babel/runtime@7.28.3':
  118. resolution: {integrity: sha512-9uIQ10o0WGdpP6GDhXcdOJPJuDgFtIDtN/9+ArJQ2NAfAmiuhTQdzkaTGR33v43GYS2UrSA0eX2pPPHoFVvpxA==}
  119. engines: {node: '>=6.9.0'}
  120. '@babel/template@7.27.2':
  121. resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
  122. engines: {node: '>=6.9.0'}
  123. '@babel/traverse@7.28.3':
  124. resolution: {integrity: sha512-7w4kZYHneL3A6NP2nxzHvT3HCZ7puDZZjFMqDpBPECub79sTtSO5CGXDkKrTQq8ksAwfD/XI2MRFX23njdDaIQ==}
  125. engines: {node: '>=6.9.0'}
  126. '@babel/types@7.28.2':
  127. resolution: {integrity: sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==}
  128. engines: {node: '>=6.9.0'}
  129. '@esbuild/aix-ppc64@0.25.9':
  130. resolution: {integrity: sha512-OaGtL73Jck6pBKjNIe24BnFE6agGl+6KxDtTfHhy1HmhthfKouEcOhqpSL64K4/0WCtbKFLOdzD/44cJ4k9opA==}
  131. engines: {node: '>=18'}
  132. cpu: [ppc64]
  133. os: [aix]
  134. '@esbuild/android-arm64@0.25.9':
  135. resolution: {integrity: sha512-IDrddSmpSv51ftWslJMvl3Q2ZT98fUSL2/rlUXuVqRXHCs5EUF1/f+jbjF5+NG9UffUDMCiTyh8iec7u8RlTLg==}
  136. engines: {node: '>=18'}
  137. cpu: [arm64]
  138. os: [android]
  139. '@esbuild/android-arm@0.25.9':
  140. resolution: {integrity: sha512-5WNI1DaMtxQ7t7B6xa572XMXpHAaI/9Hnhk8lcxF4zVN4xstUgTlvuGDorBguKEnZO70qwEcLpfifMLoxiPqHQ==}
  141. engines: {node: '>=18'}
  142. cpu: [arm]
  143. os: [android]
  144. '@esbuild/android-x64@0.25.9':
  145. resolution: {integrity: sha512-I853iMZ1hWZdNllhVZKm34f4wErd4lMyeV7BLzEExGEIZYsOzqDWDf+y082izYUE8gtJnYHdeDpN/6tUdwvfiw==}
  146. engines: {node: '>=18'}
  147. cpu: [x64]
  148. os: [android]
  149. '@esbuild/darwin-arm64@0.25.9':
  150. resolution: {integrity: sha512-XIpIDMAjOELi/9PB30vEbVMs3GV1v2zkkPnuyRRURbhqjyzIINwj+nbQATh4H9GxUgH1kFsEyQMxwiLFKUS6Rg==}
  151. engines: {node: '>=18'}
  152. cpu: [arm64]
  153. os: [darwin]
  154. '@esbuild/darwin-x64@0.25.9':
  155. resolution: {integrity: sha512-jhHfBzjYTA1IQu8VyrjCX4ApJDnH+ez+IYVEoJHeqJm9VhG9Dh2BYaJritkYK3vMaXrf7Ogr/0MQ8/MeIefsPQ==}
  156. engines: {node: '>=18'}
  157. cpu: [x64]
  158. os: [darwin]
  159. '@esbuild/freebsd-arm64@0.25.9':
  160. resolution: {integrity: sha512-z93DmbnY6fX9+KdD4Ue/H6sYs+bhFQJNCPZsi4XWJoYblUqT06MQUdBCpcSfuiN72AbqeBFu5LVQTjfXDE2A6Q==}
  161. engines: {node: '>=18'}
  162. cpu: [arm64]
  163. os: [freebsd]
  164. '@esbuild/freebsd-x64@0.25.9':
  165. resolution: {integrity: sha512-mrKX6H/vOyo5v71YfXWJxLVxgy1kyt1MQaD8wZJgJfG4gq4DpQGpgTB74e5yBeQdyMTbgxp0YtNj7NuHN0PoZg==}
  166. engines: {node: '>=18'}
  167. cpu: [x64]
  168. os: [freebsd]
  169. '@esbuild/linux-arm64@0.25.9':
  170. resolution: {integrity: sha512-BlB7bIcLT3G26urh5Dmse7fiLmLXnRlopw4s8DalgZ8ef79Jj4aUcYbk90g8iCa2467HX8SAIidbL7gsqXHdRw==}
  171. engines: {node: '>=18'}
  172. cpu: [arm64]
  173. os: [linux]
  174. '@esbuild/linux-arm@0.25.9':
  175. resolution: {integrity: sha512-HBU2Xv78SMgaydBmdor38lg8YDnFKSARg1Q6AT0/y2ezUAKiZvc211RDFHlEZRFNRVhcMamiToo7bDx3VEOYQw==}
  176. engines: {node: '>=18'}
  177. cpu: [arm]
  178. os: [linux]
  179. '@esbuild/linux-ia32@0.25.9':
  180. resolution: {integrity: sha512-e7S3MOJPZGp2QW6AK6+Ly81rC7oOSerQ+P8L0ta4FhVi+/j/v2yZzx5CqqDaWjtPFfYz21Vi1S0auHrap3Ma3A==}
  181. engines: {node: '>=18'}
  182. cpu: [ia32]
  183. os: [linux]
  184. '@esbuild/linux-loong64@0.25.9':
  185. resolution: {integrity: sha512-Sbe10Bnn0oUAB2AalYztvGcK+o6YFFA/9829PhOCUS9vkJElXGdphz0A3DbMdP8gmKkqPmPcMJmJOrI3VYB1JQ==}
  186. engines: {node: '>=18'}
  187. cpu: [loong64]
  188. os: [linux]
  189. '@esbuild/linux-mips64el@0.25.9':
  190. resolution: {integrity: sha512-YcM5br0mVyZw2jcQeLIkhWtKPeVfAerES5PvOzaDxVtIyZ2NUBZKNLjC5z3/fUlDgT6w89VsxP2qzNipOaaDyA==}
  191. engines: {node: '>=18'}
  192. cpu: [mips64el]
  193. os: [linux]
  194. '@esbuild/linux-ppc64@0.25.9':
  195. resolution: {integrity: sha512-++0HQvasdo20JytyDpFvQtNrEsAgNG2CY1CLMwGXfFTKGBGQT3bOeLSYE2l1fYdvML5KUuwn9Z8L1EWe2tzs1w==}
  196. engines: {node: '>=18'}
  197. cpu: [ppc64]
  198. os: [linux]
  199. '@esbuild/linux-riscv64@0.25.9':
  200. resolution: {integrity: sha512-uNIBa279Y3fkjV+2cUjx36xkx7eSjb8IvnL01eXUKXez/CBHNRw5ekCGMPM0BcmqBxBcdgUWuUXmVWwm4CH9kg==}
  201. engines: {node: '>=18'}
  202. cpu: [riscv64]
  203. os: [linux]
  204. '@esbuild/linux-s390x@0.25.9':
  205. resolution: {integrity: sha512-Mfiphvp3MjC/lctb+7D287Xw1DGzqJPb/J2aHHcHxflUo+8tmN/6d4k6I2yFR7BVo5/g7x2Monq4+Yew0EHRIA==}
  206. engines: {node: '>=18'}
  207. cpu: [s390x]
  208. os: [linux]
  209. '@esbuild/linux-x64@0.25.9':
  210. resolution: {integrity: sha512-iSwByxzRe48YVkmpbgoxVzn76BXjlYFXC7NvLYq+b+kDjyyk30J0JY47DIn8z1MO3K0oSl9fZoRmZPQI4Hklzg==}
  211. engines: {node: '>=18'}
  212. cpu: [x64]
  213. os: [linux]
  214. '@esbuild/netbsd-arm64@0.25.9':
  215. resolution: {integrity: sha512-9jNJl6FqaUG+COdQMjSCGW4QiMHH88xWbvZ+kRVblZsWrkXlABuGdFJ1E9L7HK+T0Yqd4akKNa/lO0+jDxQD4Q==}
  216. engines: {node: '>=18'}
  217. cpu: [arm64]
  218. os: [netbsd]
  219. '@esbuild/netbsd-x64@0.25.9':
  220. resolution: {integrity: sha512-RLLdkflmqRG8KanPGOU7Rpg829ZHu8nFy5Pqdi9U01VYtG9Y0zOG6Vr2z4/S+/3zIyOxiK6cCeYNWOFR9QP87g==}
  221. engines: {node: '>=18'}
  222. cpu: [x64]
  223. os: [netbsd]
  224. '@esbuild/openbsd-arm64@0.25.9':
  225. resolution: {integrity: sha512-YaFBlPGeDasft5IIM+CQAhJAqS3St3nJzDEgsgFixcfZeyGPCd6eJBWzke5piZuZ7CtL656eOSYKk4Ls2C0FRQ==}
  226. engines: {node: '>=18'}
  227. cpu: [arm64]
  228. os: [openbsd]
  229. '@esbuild/openbsd-x64@0.25.9':
  230. resolution: {integrity: sha512-1MkgTCuvMGWuqVtAvkpkXFmtL8XhWy+j4jaSO2wxfJtilVCi0ZE37b8uOdMItIHz4I6z1bWWtEX4CJwcKYLcuA==}
  231. engines: {node: '>=18'}
  232. cpu: [x64]
  233. os: [openbsd]
  234. '@esbuild/openharmony-arm64@0.25.9':
  235. resolution: {integrity: sha512-4Xd0xNiMVXKh6Fa7HEJQbrpP3m3DDn43jKxMjxLLRjWnRsfxjORYJlXPO4JNcXtOyfajXorRKY9NkOpTHptErg==}
  236. engines: {node: '>=18'}
  237. cpu: [arm64]
  238. os: [openharmony]
  239. '@esbuild/sunos-x64@0.25.9':
  240. resolution: {integrity: sha512-WjH4s6hzo00nNezhp3wFIAfmGZ8U7KtrJNlFMRKxiI9mxEK1scOMAaa9i4crUtu+tBr+0IN6JCuAcSBJZfnphw==}
  241. engines: {node: '>=18'}
  242. cpu: [x64]
  243. os: [sunos]
  244. '@esbuild/win32-arm64@0.25.9':
  245. resolution: {integrity: sha512-mGFrVJHmZiRqmP8xFOc6b84/7xa5y5YvR1x8djzXpJBSv/UsNK6aqec+6JDjConTgvvQefdGhFDAs2DLAds6gQ==}
  246. engines: {node: '>=18'}
  247. cpu: [arm64]
  248. os: [win32]
  249. '@esbuild/win32-ia32@0.25.9':
  250. resolution: {integrity: sha512-b33gLVU2k11nVx1OhX3C8QQP6UHQK4ZtN56oFWvVXvz2VkDoe6fbG8TOgHFxEvqeqohmRnIHe5A1+HADk4OQww==}
  251. engines: {node: '>=18'}
  252. cpu: [ia32]
  253. os: [win32]
  254. '@esbuild/win32-x64@0.25.9':
  255. resolution: {integrity: sha512-PPOl1mi6lpLNQxnGoyAfschAodRFYXJ+9fs6WHXz7CSWKbOqiMZsubC+BQsVKuul+3vKLuwTHsS2c2y9EoKwxQ==}
  256. engines: {node: '>=18'}
  257. cpu: [x64]
  258. os: [win32]
  259. '@ffmpeg/ffmpeg@0.12.15':
  260. resolution: {integrity: sha512-1C8Obr4GsN3xw+/1Ww6PFM84wSQAGsdoTuTWPOj2OizsRDLT4CXTaVjPhkw6ARyDus1B9X/L2LiXHqYYsGnRFw==}
  261. engines: {node: '>=18.x'}
  262. '@ffmpeg/types@0.12.4':
  263. resolution: {integrity: sha512-k9vJQNBGTxE5AhYDtOYR5rO5fKsspbg51gbcwtbkw2lCdoIILzklulcjJfIDwrtn7XhDeF2M+THwJ2FGrLeV6A==}
  264. engines: {node: '>=16.x'}
  265. '@ffmpeg/util@0.12.2':
  266. resolution: {integrity: sha512-ouyoW+4JB7WxjeZ2y6KpRvB+dLp7Cp4ro8z0HIVpZVCM7AwFlHa0c4R8Y/a4M3wMqATpYKhC7lSFHQ0T11MEDw==}
  267. engines: {node: '>=18.x'}
  268. '@jridgewell/gen-mapping@0.3.13':
  269. resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
  270. '@jridgewell/resolve-uri@3.1.2':
  271. resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
  272. engines: {node: '>=6.0.0'}
  273. '@jridgewell/sourcemap-codec@1.5.5':
  274. resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
  275. '@jridgewell/trace-mapping@0.3.30':
  276. resolution: {integrity: sha512-GQ7Nw5G2lTu/BtHTKfXhKHok2WGetd4XYcVKGx00SjAk8GMwgJM3zr6zORiPGuOE+/vkc90KtTosSSvaCjKb2Q==}
  277. '@rollup/rollup-android-arm-eabi@4.46.3':
  278. resolution: {integrity: sha512-UmTdvXnLlqQNOCJnyksjPs1G4GqXNGW1LrzCe8+8QoaLhhDeTXYBgJ3k6x61WIhlHX2U+VzEJ55TtIjR/HTySA==}
  279. cpu: [arm]
  280. os: [android]
  281. '@rollup/rollup-android-arm64@4.46.3':
  282. resolution: {integrity: sha512-8NoxqLpXm7VyeI0ocidh335D6OKT0UJ6fHdnIxf3+6oOerZZc+O7r+UhvROji6OspyPm+rrIdb1gTXtVIqn+Sg==}
  283. cpu: [arm64]
  284. os: [android]
  285. '@rollup/rollup-darwin-arm64@4.46.3':
  286. resolution: {integrity: sha512-csnNavqZVs1+7/hUKtgjMECsNG2cdB8F7XBHP6FfQjqhjF8rzMzb3SLyy/1BG7YSfQ+bG75Ph7DyedbUqwq1rA==}
  287. cpu: [arm64]
  288. os: [darwin]
  289. '@rollup/rollup-darwin-x64@4.46.3':
  290. resolution: {integrity: sha512-r2MXNjbuYabSIX5yQqnT8SGSQ26XQc8fmp6UhlYJd95PZJkQD1u82fWP7HqvGUf33IsOC6qsiV+vcuD4SDP6iw==}
  291. cpu: [x64]
  292. os: [darwin]
  293. '@rollup/rollup-freebsd-arm64@4.46.3':
  294. resolution: {integrity: sha512-uluObTmgPJDuJh9xqxyr7MV61Imq+0IvVsAlWyvxAaBSNzCcmZlhfYcRhCdMaCsy46ccZa7vtDDripgs9Jkqsw==}
  295. cpu: [arm64]
  296. os: [freebsd]
  297. '@rollup/rollup-freebsd-x64@4.46.3':
  298. resolution: {integrity: sha512-AVJXEq9RVHQnejdbFvh1eWEoobohUYN3nqJIPI4mNTMpsyYN01VvcAClxflyk2HIxvLpRcRggpX1m9hkXkpC/A==}
  299. cpu: [x64]
  300. os: [freebsd]
  301. '@rollup/rollup-linux-arm-gnueabihf@4.46.3':
  302. resolution: {integrity: sha512-byyflM+huiwHlKi7VHLAYTKr67X199+V+mt1iRgJenAI594vcmGGddWlu6eHujmcdl6TqSNnvqaXJqZdnEWRGA==}
  303. cpu: [arm]
  304. os: [linux]
  305. '@rollup/rollup-linux-arm-musleabihf@4.46.3':
  306. resolution: {integrity: sha512-aLm3NMIjr4Y9LklrH5cu7yybBqoVCdr4Nvnm8WB7PKCn34fMCGypVNpGK0JQWdPAzR/FnoEoFtlRqZbBBLhVoQ==}
  307. cpu: [arm]
  308. os: [linux]
  309. '@rollup/rollup-linux-arm64-gnu@4.46.3':
  310. resolution: {integrity: sha512-VtilE6eznJRDIoFOzaagQodUksTEfLIsvXymS+UdJiSXrPW7Ai+WG4uapAc3F7Hgs791TwdGh4xyOzbuzIZrnw==}
  311. cpu: [arm64]
  312. os: [linux]
  313. '@rollup/rollup-linux-arm64-musl@4.46.3':
  314. resolution: {integrity: sha512-dG3JuS6+cRAL0GQ925Vppafi0qwZnkHdPeuZIxIPXqkCLP02l7ka+OCyBoDEv8S+nKHxfjvjW4OZ7hTdHkx8/w==}
  315. cpu: [arm64]
  316. os: [linux]
  317. '@rollup/rollup-linux-loongarch64-gnu@4.46.3':
  318. resolution: {integrity: sha512-iU8DxnxEKJptf8Vcx4XvAUdpkZfaz0KWfRrnIRrOndL0SvzEte+MTM7nDH4A2Now4FvTZ01yFAgj6TX/mZl8hQ==}
  319. cpu: [loong64]
  320. os: [linux]
  321. '@rollup/rollup-linux-ppc64-gnu@4.46.3':
  322. resolution: {integrity: sha512-VrQZp9tkk0yozJoQvQcqlWiqaPnLM6uY1qPYXvukKePb0fqaiQtOdMJSxNFUZFsGw5oA5vvVokjHrx8a9Qsz2A==}
  323. cpu: [ppc64]
  324. os: [linux]
  325. '@rollup/rollup-linux-riscv64-gnu@4.46.3':
  326. resolution: {integrity: sha512-uf2eucWSUb+M7b0poZ/08LsbcRgaDYL8NCGjUeFMwCWFwOuFcZ8D9ayPl25P3pl+D2FH45EbHdfyUesQ2Lt9wA==}
  327. cpu: [riscv64]
  328. os: [linux]
  329. '@rollup/rollup-linux-riscv64-musl@4.46.3':
  330. resolution: {integrity: sha512-7tnUcDvN8DHm/9ra+/nF7lLzYHDeODKKKrh6JmZejbh1FnCNZS8zMkZY5J4sEipy2OW1d1Ncc4gNHUd0DLqkSg==}
  331. cpu: [riscv64]
  332. os: [linux]
  333. '@rollup/rollup-linux-s390x-gnu@4.46.3':
  334. resolution: {integrity: sha512-MUpAOallJim8CsJK+4Lc9tQzlfPbHxWDrGXZm2z6biaadNpvh3a5ewcdat478W+tXDoUiHwErX/dOql7ETcLqg==}
  335. cpu: [s390x]
  336. os: [linux]
  337. '@rollup/rollup-linux-x64-gnu@4.46.3':
  338. resolution: {integrity: sha512-F42IgZI4JicE2vM2PWCe0N5mR5vR0gIdORPqhGQ32/u1S1v3kLtbZ0C/mi9FFk7C5T0PgdeyWEPajPjaUpyoKg==}
  339. cpu: [x64]
  340. os: [linux]
  341. '@rollup/rollup-linux-x64-musl@4.46.3':
  342. resolution: {integrity: sha512-oLc+JrwwvbimJUInzx56Q3ujL3Kkhxehg7O1gWAYzm8hImCd5ld1F2Gry5YDjR21MNb5WCKhC9hXgU7rRlyegQ==}
  343. cpu: [x64]
  344. os: [linux]
  345. '@rollup/rollup-win32-arm64-msvc@4.46.3':
  346. resolution: {integrity: sha512-lOrQ+BVRstruD1fkWg9yjmumhowR0oLAAzavB7yFSaGltY8klttmZtCLvOXCmGE9mLIn8IBV/IFrQOWz5xbFPg==}
  347. cpu: [arm64]
  348. os: [win32]
  349. '@rollup/rollup-win32-ia32-msvc@4.46.3':
  350. resolution: {integrity: sha512-vvrVKPRS4GduGR7VMH8EylCBqsDcw6U+/0nPDuIjXQRbHJc6xOBj+frx8ksfZAh6+Fptw5wHrN7etlMmQnPQVg==}
  351. cpu: [ia32]
  352. os: [win32]
  353. '@rollup/rollup-win32-x64-msvc@4.46.3':
  354. resolution: {integrity: sha512-fi3cPxCnu3ZeM3EwKZPgXbWoGzm2XHgB/WShKI81uj8wG0+laobmqy5wbgEwzstlbLu4MyO8C19FyhhWseYKNQ==}
  355. cpu: [x64]
  356. os: [win32]
  357. '@transloadit/prettier-bytes@0.0.7':
  358. resolution: {integrity: sha512-VeJbUb0wEKbcwaSlj5n+LscBl9IPgLPkHVGBkh00cztv6X4L/TJXK58LzFuBKX7/GAfiGhIwH67YTLTlzvIzBA==}
  359. '@types/estree@1.0.8':
  360. resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
  361. '@types/event-emitter@0.3.5':
  362. resolution: {integrity: sha512-zx2/Gg0Eg7gwEiOIIh5w9TrhKKTeQh7CPCOPNc0el4pLSwzebA8SmnHwZs2dWlLONvyulykSwGSQxQHLhjGLvQ==}
  363. '@types/node@16.18.126':
  364. resolution: {integrity: sha512-OTcgaiwfGFBKacvfwuHzzn1KLxH/er8mluiy8/uM3sGXHaRe73RrSIj01jow9t4kJEW633Ov+cOexXeiApTyAw==}
  365. '@uppy/companion-client@2.2.2':
  366. resolution: {integrity: sha512-5mTp2iq97/mYSisMaBtFRry6PTgZA6SIL7LePteOV5x0/DxKfrZW3DEiQERJmYpHzy7k8johpm2gHnEKto56Og==}
  367. '@uppy/core@2.3.4':
  368. resolution: {integrity: sha512-iWAqppC8FD8mMVqewavCz+TNaet6HPXitmGXpGGREGrakZ4FeuWytVdrelydzTdXx6vVKkOmI2FLztGg73sENQ==}
  369. '@uppy/store-default@2.1.1':
  370. resolution: {integrity: sha512-xnpTxvot2SeAwGwbvmJ899ASk5tYXhmZzD/aCFsXePh/v8rNvR2pKlcQUH7cF/y4baUGq3FHO/daKCok/mpKqQ==}
  371. '@uppy/utils@4.1.3':
  372. resolution: {integrity: sha512-nTuMvwWYobnJcytDO3t+D6IkVq/Qs4Xv3vyoEZ+Iaf8gegZP+rEyoaFT2CK5XLRMienPyqRqNbIfRuFaOWSIFw==}
  373. '@uppy/xhr-upload@2.1.3':
  374. resolution: {integrity: sha512-YWOQ6myBVPs+mhNjfdWsQyMRWUlrDLMoaG7nvf/G6Y3GKZf8AyjFDjvvJ49XWQ+DaZOftGkHmF1uh/DBeGivJQ==}
  375. peerDependencies:
  376. '@uppy/core': ^2.3.3
  377. '@vitejs/plugin-vue@5.2.4':
  378. resolution: {integrity: sha512-7Yx/SXSOcQq5HiiV3orevHUFn+pmMB4cgbEkDYgnkUWb0WfeQ/wa2yFv6D5ICiCQOVpjA7vYDXrC7AGO8yjDHA==}
  379. engines: {node: ^18.0.0 || >=20.0.0}
  380. peerDependencies:
  381. vite: ^5.0.0 || ^6.0.0
  382. vue: ^3.2.25
  383. '@vladmandic/face-api@1.7.15':
  384. resolution: {integrity: sha512-WDMmK3CfNLo8jylWqMoQgf4nIst3M0fzx1dnac96wv/dvMTN4DxC/Pq1DGtduDk1lktCamQ3MIDXFnvrdHTXDw==}
  385. engines: {node: '>=14.0.0'}
  386. '@vue/compiler-core@3.5.18':
  387. resolution: {integrity: sha512-3slwjQrrV1TO8MoXgy3aynDQ7lslj5UqDxuHnrzHtpON5CBinhWjJETciPngpin/T3OuW3tXUf86tEurusnztw==}
  388. '@vue/compiler-dom@3.5.18':
  389. resolution: {integrity: sha512-RMbU6NTU70++B1JyVJbNbeFkK+A+Q7y9XKE2EM4NLGm2WFR8x9MbAtWxPPLdm0wUkuZv9trpwfSlL6tjdIa1+A==}
  390. '@vue/compiler-sfc@3.5.18':
  391. resolution: {integrity: sha512-5aBjvGqsWs+MoxswZPoTB9nSDb3dhd1x30xrrltKujlCxo48j8HGDNj3QPhF4VIS0VQDUrA1xUfp2hEa+FNyXA==}
  392. '@vue/compiler-ssr@3.5.18':
  393. resolution: {integrity: sha512-xM16Ak7rSWHkM3m22NlmcdIM+K4BMyFARAfV9hYFl+SFuRzrZ3uGMNW05kA5pmeMa0X9X963Kgou7ufdbpOP9g==}
  394. '@vue/devtools-api@6.6.4':
  395. resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
  396. '@vue/devtools-api@7.7.7':
  397. resolution: {integrity: sha512-lwOnNBH2e7x1fIIbVT7yF5D+YWhqELm55/4ZKf45R9T8r9dE2AIOy8HKjfqzGsoTHFbWbr337O4E0A0QADnjBg==}
  398. '@vue/devtools-kit@7.7.7':
  399. resolution: {integrity: sha512-wgoZtxcTta65cnZ1Q6MbAfePVFxfM+gq0saaeytoph7nEa7yMXoi6sCPy4ufO111B9msnw0VOWjPEFCXuAKRHA==}
  400. '@vue/devtools-shared@7.7.7':
  401. resolution: {integrity: sha512-+udSj47aRl5aKb0memBvcUG9koarqnxNM5yjuREvqwK6T3ap4mn3Zqqc17QrBFTqSMjr3HK1cvStEZpMDpfdyw==}
  402. '@vue/reactivity@3.5.18':
  403. resolution: {integrity: sha512-x0vPO5Imw+3sChLM5Y+B6G1zPjwdOri9e8V21NnTnlEvkxatHEH5B5KEAJcjuzQ7BsjGrKtfzuQ5eQwXh8HXBg==}
  404. '@vue/runtime-core@3.5.18':
  405. resolution: {integrity: sha512-DUpHa1HpeOQEt6+3nheUfqVXRog2kivkXHUhoqJiKR33SO4x+a5uNOMkV487WPerQkL0vUuRvq/7JhRgLW3S+w==}
  406. '@vue/runtime-dom@3.5.18':
  407. resolution: {integrity: sha512-YwDj71iV05j4RnzZnZtGaXwPoUWeRsqinblgVJwR8XTXYZ9D5PbahHQgsbmzUvCWNF6x7siQ89HgnX5eWkr3mw==}
  408. '@vue/server-renderer@3.5.18':
  409. resolution: {integrity: sha512-PvIHLUoWgSbDG7zLHqSqaCoZvHi6NNmfVFOqO+OnwvqMz/tqQr3FuGWS8ufluNddk7ZLBJYMrjcw1c6XzR12mA==}
  410. peerDependencies:
  411. vue: 3.5.18
  412. '@vue/shared@3.5.18':
  413. resolution: {integrity: sha512-cZy8Dq+uuIXbxCZpuLd2GJdeSO/lIzIspC2WtkqIpje5QyFbvLaI5wZtdUjLHjGZrlVX6GilejatWwVYYRc8tA==}
  414. '@wangeditor/basic-modules@1.1.7':
  415. resolution: {integrity: sha512-cY9CPkLJaqF05STqfpZKWG4LpxTMeGSIIF1fHvfm/mz+JXatCagjdkbxdikOuKYlxDdeqvOeBmsUBItufDLXZg==}
  416. peerDependencies:
  417. '@wangeditor/core': 1.x
  418. dom7: ^3.0.0
  419. lodash.throttle: ^4.1.1
  420. nanoid: ^3.2.0
  421. slate: ^0.72.0
  422. snabbdom: ^3.1.0
  423. '@wangeditor/code-highlight@1.0.3':
  424. resolution: {integrity: sha512-iazHwO14XpCuIWJNTQTikqUhGKyqj+dUNWJ9288Oym9M2xMVHvnsOmDU2sgUDWVy+pOLojReMPgXCsvvNlOOhw==}
  425. peerDependencies:
  426. '@wangeditor/core': 1.x
  427. dom7: ^3.0.0
  428. slate: ^0.72.0
  429. snabbdom: ^3.1.0
  430. '@wangeditor/core@1.1.19':
  431. resolution: {integrity: sha512-KevkB47+7GhVszyYF2pKGKtCSj/YzmClsD03C3zTt+9SR2XWT5T0e3yQqg8baZpcMvkjs1D8Dv4fk8ok/UaS2Q==}
  432. peerDependencies:
  433. '@uppy/core': ^2.1.1
  434. '@uppy/xhr-upload': ^2.0.3
  435. dom7: ^3.0.0
  436. is-hotkey: ^0.2.0
  437. lodash.camelcase: ^4.3.0
  438. lodash.clonedeep: ^4.5.0
  439. lodash.debounce: ^4.0.8
  440. lodash.foreach: ^4.5.0
  441. lodash.isequal: ^4.5.0
  442. lodash.throttle: ^4.1.1
  443. lodash.toarray: ^4.4.0
  444. nanoid: ^3.2.0
  445. slate: ^0.72.0
  446. snabbdom: ^3.1.0
  447. '@wangeditor/editor-for-vue@5.1.12':
  448. resolution: {integrity: sha512-0Ds3D8I+xnpNWezAeO7HmPRgTfUxHLMd9JKcIw+QzvSmhC5xUHbpCcLU+KLmeBKTR/zffnS5GQo6qi3GhTMJWQ==}
  449. peerDependencies:
  450. '@wangeditor/editor': '>=5.1.0'
  451. vue: ^3.0.5
  452. '@wangeditor/editor@5.1.23':
  453. resolution: {integrity: sha512-0RxfeVTuK1tktUaPROnCoFfaHVJpRAIE2zdS0mpP+vq1axVQpLjM8+fCvKzqYIkH0Pg+C+44hJpe3VVroSkEuQ==}
  454. '@wangeditor/list-module@1.0.5':
  455. resolution: {integrity: sha512-uDuYTP6DVhcYf7mF1pTlmNn5jOb4QtcVhYwSSAkyg09zqxI1qBqsfUnveeDeDqIuptSJhkh81cyxi+MF8sEPOQ==}
  456. peerDependencies:
  457. '@wangeditor/core': 1.x
  458. dom7: ^3.0.0
  459. slate: ^0.72.0
  460. snabbdom: ^3.1.0
  461. '@wangeditor/table-module@1.1.4':
  462. resolution: {integrity: sha512-5saanU9xuEocxaemGdNi9t8MCDSucnykEC6jtuiT72kt+/Hhh4nERYx1J20OPsTCCdVr7hIyQenFD1iSRkIQ6w==}
  463. peerDependencies:
  464. '@wangeditor/core': 1.x
  465. dom7: ^3.0.0
  466. lodash.isequal: ^4.5.0
  467. lodash.throttle: ^4.1.1
  468. nanoid: ^3.2.0
  469. slate: ^0.72.0
  470. snabbdom: ^3.1.0
  471. '@wangeditor/upload-image-module@1.0.2':
  472. resolution: {integrity: sha512-z81lk/v71OwPDYeQDxj6cVr81aDP90aFuywb8nPD6eQeECtOymrqRODjpO6VGvCVxVck8nUxBHtbxKtjgcwyiA==}
  473. peerDependencies:
  474. '@uppy/core': ^2.0.3
  475. '@uppy/xhr-upload': ^2.0.3
  476. '@wangeditor/basic-modules': 1.x
  477. '@wangeditor/core': 1.x
  478. dom7: ^3.0.0
  479. lodash.foreach: ^4.5.0
  480. slate: ^0.72.0
  481. snabbdom: ^3.1.0
  482. '@wangeditor/video-module@1.1.4':
  483. resolution: {integrity: sha512-ZdodDPqKQrgx3IwWu4ZiQmXI8EXZ3hm2/fM6E3t5dB8tCaIGWQZhmqd6P5knfkRAd3z2+YRSRbxOGfoRSp/rLg==}
  484. peerDependencies:
  485. '@uppy/core': ^2.1.4
  486. '@uppy/xhr-upload': ^2.0.7
  487. '@wangeditor/core': 1.x
  488. dom7: ^3.0.0
  489. nanoid: ^3.2.0
  490. slate: ^0.72.0
  491. snabbdom: ^3.1.0
  492. argparse@2.0.1:
  493. resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
  494. asynckit@0.4.0:
  495. resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
  496. axios@1.11.0:
  497. resolution: {integrity: sha512-1Lx3WLFQWm3ooKDYZD1eXmoGO9fxYQjrycfHFC8P0sCfQVXyROp0p9PFWBehewBOdCwHc+f/b8I0fMto5eSfwA==}
  498. b-tween@0.3.3:
  499. resolution: {integrity: sha512-oEHegcRpA7fAuc9KC4nktucuZn2aS8htymCPcP3qkEGPqiBH+GfqtqoG2l7LxHngg6O0HFM7hOeOYExl1Oz4ZA==}
  500. b-validate@1.5.3:
  501. resolution: {integrity: sha512-iCvCkGFskbaYtfQ0a3GmcQCHl/Sv1GufXFGuUQ+FE+WJa7A/espLOuFIn09B944V8/ImPj71T4+rTASxO2PAuA==}
  502. birpc@2.5.0:
  503. resolution: {integrity: sha512-VSWO/W6nNQdyP520F1mhf+Lc2f8pjGQOtoHHm7Ze8Go1kX7akpVIrtTa0fn+HB0QJEDVacl6aO08YE0PgXfdnQ==}
  504. call-bind-apply-helpers@1.0.2:
  505. resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
  506. engines: {node: '>= 0.4'}
  507. color-convert@1.9.3:
  508. resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
  509. color-name@1.1.3:
  510. resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
  511. color-name@1.1.4:
  512. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  513. color-string@1.9.1:
  514. resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
  515. color@3.2.1:
  516. resolution: {integrity: sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==}
  517. combined-stream@1.0.8:
  518. resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
  519. engines: {node: '>= 0.8'}
  520. compute-scroll-into-view@1.0.20:
  521. resolution: {integrity: sha512-UCB0ioiyj8CRjtrvaceBLqqhZCVP+1B8+NWQhmdsm0VXOJtobBCf1dBQmebCCo34qZmUwZfIH2MZLqNHazrfjg==}
  522. copy-anything@2.0.6:
  523. resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==}
  524. copy-anything@3.0.5:
  525. resolution: {integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==}
  526. engines: {node: '>=12.13'}
  527. crypto-js@4.2.0:
  528. resolution: {integrity: sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==}
  529. csstype@3.1.3:
  530. resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
  531. d@1.0.2:
  532. resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==}
  533. engines: {node: '>=0.12'}
  534. dayjs@1.11.13:
  535. resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
  536. debug@4.4.1:
  537. resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==}
  538. engines: {node: '>=6.0'}
  539. peerDependencies:
  540. supports-color: '*'
  541. peerDependenciesMeta:
  542. supports-color:
  543. optional: true
  544. delayed-stream@1.0.0:
  545. resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
  546. engines: {node: '>=0.4.0'}
  547. dom7@3.0.0:
  548. resolution: {integrity: sha512-oNlcUdHsC4zb7Msx7JN3K0Nro1dzJ48knvBOnDPKJ2GV9wl1i5vydJZUSyOfrkKFDZEud/jBsTk92S/VGSAe/g==}
  549. dunder-proto@1.0.1:
  550. resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
  551. engines: {node: '>= 0.4'}
  552. echarts@5.6.0:
  553. resolution: {integrity: sha512-oTbVTsXfKuEhxftHqL5xprgLoc0k7uScAwtryCgWF6hPYFLRwOUHiFmHGCBKP5NPFNkDVopOieyUqYGH8Fa3kA==}
  554. entities@4.5.0:
  555. resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
  556. engines: {node: '>=0.12'}
  557. errno@0.1.8:
  558. resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==}
  559. hasBin: true
  560. es-define-property@1.0.1:
  561. resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
  562. engines: {node: '>= 0.4'}
  563. es-errors@1.3.0:
  564. resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
  565. engines: {node: '>= 0.4'}
  566. es-object-atoms@1.1.1:
  567. resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
  568. engines: {node: '>= 0.4'}
  569. es-set-tostringtag@2.1.0:
  570. resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
  571. engines: {node: '>= 0.4'}
  572. es5-ext@0.10.64:
  573. resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==}
  574. engines: {node: '>=0.10'}
  575. es6-iterator@2.0.3:
  576. resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==}
  577. es6-symbol@3.1.4:
  578. resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==}
  579. engines: {node: '>=0.12'}
  580. esbuild@0.25.9:
  581. resolution: {integrity: sha512-CRbODhYyQx3qp7ZEwzxOk4JBqmD/seJrzPa/cGjY1VtIn5E09Oi9/dB4JwctnfZ8Q8iT7rioVv5k/FNT/uf54g==}
  582. engines: {node: '>=18'}
  583. hasBin: true
  584. esniff@2.0.1:
  585. resolution: {integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==}
  586. engines: {node: '>=0.10'}
  587. estree-walker@2.0.2:
  588. resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
  589. event-emitter@0.3.5:
  590. resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==}
  591. ext@1.7.0:
  592. resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==}
  593. fdir@6.5.0:
  594. resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
  595. engines: {node: '>=12.0.0'}
  596. peerDependencies:
  597. picomatch: ^3 || ^4
  598. peerDependenciesMeta:
  599. picomatch:
  600. optional: true
  601. follow-redirects@1.15.11:
  602. resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
  603. engines: {node: '>=4.0'}
  604. peerDependencies:
  605. debug: '*'
  606. peerDependenciesMeta:
  607. debug:
  608. optional: true
  609. form-data@4.0.4:
  610. resolution: {integrity: sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==}
  611. engines: {node: '>= 6'}
  612. fsevents@2.3.3:
  613. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  614. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  615. os: [darwin]
  616. function-bind@1.1.2:
  617. resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
  618. get-intrinsic@1.3.0:
  619. resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
  620. engines: {node: '>= 0.4'}
  621. get-proto@1.0.1:
  622. resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
  623. engines: {node: '>= 0.4'}
  624. gopd@1.2.0:
  625. resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
  626. engines: {node: '>= 0.4'}
  627. graceful-fs@4.2.11:
  628. resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
  629. has-symbols@1.1.0:
  630. resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
  631. engines: {node: '>= 0.4'}
  632. has-tostringtag@1.0.2:
  633. resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
  634. engines: {node: '>= 0.4'}
  635. hasown@2.0.2:
  636. resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
  637. engines: {node: '>= 0.4'}
  638. hookable@5.5.3:
  639. resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
  640. html-void-elements@2.0.1:
  641. resolution: {integrity: sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==}
  642. i18next@20.6.1:
  643. resolution: {integrity: sha512-yCMYTMEJ9ihCwEQQ3phLo7I/Pwycf8uAx+sRHwwk5U9Aui/IZYgQRyMqXafQOw5QQ7DM1Z+WyEXWIqSuJHhG2A==}
  644. iconv-lite@0.6.3:
  645. resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
  646. engines: {node: '>=0.10.0'}
  647. image-size@0.5.5:
  648. resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==}
  649. engines: {node: '>=0.10.0'}
  650. hasBin: true
  651. immer@9.0.21:
  652. resolution: {integrity: sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==}
  653. is-arrayish@0.3.2:
  654. resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
  655. is-hotkey@0.2.0:
  656. resolution: {integrity: sha512-UknnZK4RakDmTgz4PI1wIph5yxSs/mvChWs9ifnlXsKuXgWmOkY/hAE0H/k2MIqH0RlRye0i1oC07MCRSD28Mw==}
  657. is-plain-object@5.0.0:
  658. resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
  659. engines: {node: '>=0.10.0'}
  660. is-url@1.2.4:
  661. resolution: {integrity: sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==}
  662. is-what@3.14.1:
  663. resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==}
  664. is-what@4.1.16:
  665. resolution: {integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==}
  666. engines: {node: '>=12.13'}
  667. js-tokens@4.0.0:
  668. resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
  669. jsencrypt@3.5.4:
  670. resolution: {integrity: sha512-kNjfYEMNASxrDGsmcSQh/rUTmcoRfSUkxnAz+MMywM8jtGu+fFEZ3nJjHM58zscVnwR0fYmG9sGkTDjqUdpiwA==}
  671. jsesc@3.1.0:
  672. resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
  673. engines: {node: '>=6'}
  674. hasBin: true
  675. less@4.4.1:
  676. resolution: {integrity: sha512-X9HKyiXPi0f/ed0XhgUlBeFfxrlDP3xR4M7768Zl+WXLUViuL9AOPPJP4nCV0tgRWvTYvpNmN0SFhZOQzy16PA==}
  677. engines: {node: '>=14'}
  678. hasBin: true
  679. linkify-it@5.0.0:
  680. resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==}
  681. lodash.camelcase@4.3.0:
  682. resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==}
  683. lodash.clonedeep@4.5.0:
  684. resolution: {integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==}
  685. lodash.debounce@4.0.8:
  686. resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
  687. lodash.foreach@4.5.0:
  688. resolution: {integrity: sha512-aEXTF4d+m05rVOAUG3z4vZZ4xVexLKZGF0lIxuHZ1Hplpk/3B6Z1+/ICICYRLm7c41Z2xiejbkCkJoTlypoXhQ==}
  689. lodash.isequal@4.5.0:
  690. resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==}
  691. deprecated: This package is deprecated. Use require('node:util').isDeepStrictEqual instead.
  692. lodash.throttle@4.1.1:
  693. resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==}
  694. lodash.toarray@4.4.0:
  695. resolution: {integrity: sha512-QyffEA3i5dma5q2490+SgCvDN0pXLmRGSyAANuVi0HQ01Pkfr9fuoKQW8wm1wGBnJITs/mS7wQvS6VshUEBFCw==}
  696. lru-cache@11.1.0:
  697. resolution: {integrity: sha512-QIXZUBJUx+2zHUdQujWejBkcD9+cs94tLn0+YL8UrCh+D5sCXZ4c7LaEH48pNwRY3MLDgqUFyhlCyjJPf1WP0A==}
  698. engines: {node: 20 || >=22}
  699. magic-string@0.30.17:
  700. resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==}
  701. make-dir@2.1.0:
  702. resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
  703. engines: {node: '>=6'}
  704. markdown-it@14.1.0:
  705. resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==}
  706. hasBin: true
  707. math-intrinsics@1.1.0:
  708. resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
  709. engines: {node: '>= 0.4'}
  710. mdurl@2.0.0:
  711. resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==}
  712. mime-db@1.52.0:
  713. resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
  714. engines: {node: '>= 0.6'}
  715. mime-match@1.0.2:
  716. resolution: {integrity: sha512-VXp/ugGDVh3eCLOBCiHZMYWQaTNUHv2IJrut+yXA6+JbLPXHglHwfS/5A5L0ll+jkCY7fIzRJcH6OIunF+c6Cg==}
  717. mime-types@2.1.35:
  718. resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
  719. engines: {node: '>= 0.6'}
  720. mime@1.6.0:
  721. resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
  722. engines: {node: '>=4'}
  723. hasBin: true
  724. mitt@3.0.1:
  725. resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
  726. ms@2.1.3:
  727. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  728. namespace-emitter@2.0.1:
  729. resolution: {integrity: sha512-N/sMKHniSDJBjfrkbS/tpkPj4RAbvW3mr8UAzvlMHyun93XEm83IAvhWtJVHo+RHn/oO8Job5YN4b+wRjSVp5g==}
  730. nanoid@3.3.11:
  731. resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
  732. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  733. hasBin: true
  734. needle@3.3.1:
  735. resolution: {integrity: sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==}
  736. engines: {node: '>= 4.4.x'}
  737. hasBin: true
  738. next-tick@1.1.0:
  739. resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==}
  740. number-precision@1.6.0:
  741. resolution: {integrity: sha512-05OLPgbgmnixJw+VvEh18yNPUo3iyp4BEWJcrLu4X9W05KmMifN7Mu5exYvQXqxxeNWhvIF+j3Rij+HmddM/hQ==}
  742. parse-node-version@1.0.1:
  743. resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==}
  744. engines: {node: '>= 0.10'}
  745. perfect-debounce@1.0.0:
  746. resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
  747. picocolors@1.1.1:
  748. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  749. picomatch@4.0.3:
  750. resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
  751. engines: {node: '>=12'}
  752. pify@4.0.1:
  753. resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
  754. engines: {node: '>=6'}
  755. pinia@3.0.3:
  756. resolution: {integrity: sha512-ttXO/InUULUXkMHpTdp9Fj4hLpD/2AoJdmAbAeW2yu1iy1k+pkFekQXw5VpC0/5p51IOR/jDaDRfRWRnMMsGOA==}
  757. peerDependencies:
  758. typescript: '>=4.4.4'
  759. vue: ^2.7.0 || ^3.5.11
  760. peerDependenciesMeta:
  761. typescript:
  762. optional: true
  763. postcss@8.5.6:
  764. resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
  765. engines: {node: ^10 || ^12 || >=14}
  766. preact@10.27.1:
  767. resolution: {integrity: sha512-V79raXEWch/rbqoNc7nT9E4ep7lu+mI3+sBmfRD4i1M73R3WLYcCtdI0ibxGVf4eQL8ZIz2nFacqEC+rmnOORQ==}
  768. prismjs@1.30.0:
  769. resolution: {integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==}
  770. engines: {node: '>=6'}
  771. proxy-from-env@1.1.0:
  772. resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
  773. prr@1.0.1:
  774. resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
  775. punycode.js@2.3.1:
  776. resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==}
  777. engines: {node: '>=6'}
  778. resize-observer-polyfill@1.5.1:
  779. resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==}
  780. rfdc@1.4.1:
  781. resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
  782. rollup@4.46.3:
  783. resolution: {integrity: sha512-RZn2XTjXb8t5g13f5YclGoilU/kwT696DIkY3sywjdZidNSi3+vseaQov7D7BZXVJCPv3pDWUN69C78GGbXsKw==}
  784. engines: {node: '>=18.0.0', npm: '>=8.0.0'}
  785. hasBin: true
  786. safer-buffer@2.1.2:
  787. resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
  788. sax@1.4.1:
  789. resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==}
  790. scroll-into-view-if-needed@2.2.31:
  791. resolution: {integrity: sha512-dGCXy99wZQivjmjIqihaBQNjryrz5rueJY7eHfTdyWEiR4ttYpsajb14rn9s5d4DY4EcY6+4+U/maARBXJedkA==}
  792. semver@5.7.2:
  793. resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
  794. hasBin: true
  795. simple-swizzle@0.2.2:
  796. resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
  797. slate-history@0.66.0:
  798. resolution: {integrity: sha512-6MWpxGQZiMvSINlCbMW43E2YBSVMCMCIwQfBzGssjWw4kb0qfvj0pIdblWNRQZD0hR6WHP+dHHgGSeVdMWzfng==}
  799. peerDependencies:
  800. slate: '>=0.65.3'
  801. slate@0.72.8:
  802. resolution: {integrity: sha512-/nJwTswQgnRurpK+bGJFH1oM7naD5qDmHd89JyiKNT2oOKD8marW0QSBtuFnwEbL5aGCS8AmrhXQgNOsn4osAw==}
  803. snabbdom@3.6.2:
  804. resolution: {integrity: sha512-ig5qOnCDbugFntKi6c7Xlib8bA6xiJVk8O+WdFrV3wxbMqeHO0hXFQC4nAhPVWfZfi8255lcZkNhtIBINCc4+Q==}
  805. engines: {node: '>=12.17.0'}
  806. source-map-js@1.2.1:
  807. resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  808. engines: {node: '>=0.10.0'}
  809. source-map@0.6.1:
  810. resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
  811. engines: {node: '>=0.10.0'}
  812. speakingurl@14.0.1:
  813. resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==}
  814. engines: {node: '>=0.10.0'}
  815. ssr-window@3.0.0:
  816. resolution: {integrity: sha512-q+8UfWDg9Itrg0yWK7oe5p/XRCJpJF9OBtXfOPgSJl+u3Xd5KI328RUEvUqSMVM9CiQUEf1QdBzJMkYGErj9QA==}
  817. store@2.0.12:
  818. resolution: {integrity: sha512-eO9xlzDpXLiMr9W1nQ3Nfp9EzZieIQc10zPPMP5jsVV7bLOziSFFBP0XoDXACEIFtdI+rIz0NwWVA/QVJ8zJtw==}
  819. superjson@2.2.2:
  820. resolution: {integrity: sha512-5JRxVqC8I8NuOUjzBbvVJAKNM8qoVuH0O77h4WInc/qC2q5IreqKxYwgkga3PfA22OayK2ikceb/B26dztPl+Q==}
  821. engines: {node: '>=16'}
  822. three@0.175.0:
  823. resolution: {integrity: sha512-nNE3pnTHxXN/Phw768u0Grr7W4+rumGg/H6PgeseNJojkJtmeHJfZWi41Gp2mpXl1pg1pf1zjwR4McM1jTqkpg==}
  824. tiny-warning@1.0.3:
  825. resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==}
  826. tinyglobby@0.2.14:
  827. resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==}
  828. engines: {node: '>=12.0.0'}
  829. tslib@2.3.0:
  830. resolution: {integrity: sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==}
  831. tslib@2.8.1:
  832. resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
  833. type@2.7.3:
  834. resolution: {integrity: sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==}
  835. uc.micro@2.1.0:
  836. resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==}
  837. uuid@11.1.0:
  838. resolution: {integrity: sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A==}
  839. hasBin: true
  840. vite@6.3.5:
  841. resolution: {integrity: sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==}
  842. engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
  843. hasBin: true
  844. peerDependencies:
  845. '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
  846. jiti: '>=1.21.0'
  847. less: '*'
  848. lightningcss: ^1.21.0
  849. sass: '*'
  850. sass-embedded: '*'
  851. stylus: '*'
  852. sugarss: '*'
  853. terser: ^5.16.0
  854. tsx: ^4.8.1
  855. yaml: ^2.4.2
  856. peerDependenciesMeta:
  857. '@types/node':
  858. optional: true
  859. jiti:
  860. optional: true
  861. less:
  862. optional: true
  863. lightningcss:
  864. optional: true
  865. sass:
  866. optional: true
  867. sass-embedded:
  868. optional: true
  869. stylus:
  870. optional: true
  871. sugarss:
  872. optional: true
  873. terser:
  874. optional: true
  875. tsx:
  876. optional: true
  877. yaml:
  878. optional: true
  879. vue-demi@0.13.11:
  880. resolution: {integrity: sha512-IR8HoEEGM65YY3ZJYAjMlKygDQn25D5ajNFNoKh9RSDMQtlzCxtfQjdQgv9jjK+m3377SsJXY8ysq8kLCZL25A==}
  881. engines: {node: '>=12'}
  882. hasBin: true
  883. peerDependencies:
  884. '@vue/composition-api': ^1.0.0-rc.1
  885. vue: ^3.0.0-0 || ^2.6.0
  886. peerDependenciesMeta:
  887. '@vue/composition-api':
  888. optional: true
  889. vue-echarts@7.0.3:
  890. resolution: {integrity: sha512-/jSxNwOsw5+dYAUcwSfkLwKPuzTQ0Cepz1LxCOpj2QcHrrmUa/Ql0eQqMmc1rTPQVrh2JQ29n2dhq75ZcHvRDw==}
  891. peerDependencies:
  892. '@vue/runtime-core': ^3.0.0
  893. echarts: ^5.5.1
  894. vue: ^2.7.0 || ^3.1.1
  895. peerDependenciesMeta:
  896. '@vue/runtime-core':
  897. optional: true
  898. vue-router@4.5.1:
  899. resolution: {integrity: sha512-ogAF3P97NPm8fJsE4by9dwSYtDwXIY1nFY9T6DyQnGHd1E2Da94w9JIolpe42LJGIl0DwOHBi8TcRPlPGwbTtw==}
  900. peerDependencies:
  901. vue: ^3.2.0
  902. vue@3.5.18:
  903. resolution: {integrity: sha512-7W4Y4ZbMiQ3SEo+m9lnoNpV9xG7QVMLa+/0RFwwiAVkeYoyGXqWE85jabU4pllJNUzqfLShJ5YLptewhCWUgNA==}
  904. peerDependencies:
  905. typescript: '*'
  906. peerDependenciesMeta:
  907. typescript:
  908. optional: true
  909. wildcard@1.1.2:
  910. resolution: {integrity: sha512-DXukZJxpHA8LuotRwL0pP1+rS6CS7FF2qStDDE1C7DDg2rLud2PXRMuEDYIPhgEezwnlHNL4c+N6MfMTjCGTng==}
  911. zrender@5.6.1:
  912. resolution: {integrity: sha512-OFXkDJKcrlx5su2XbzJvj/34Q3m6PvyCZkVPHGYpcCJ52ek4U/ymZyfuV1nKE23AyBJ51E/6Yr0mhZ7xGTO4ag==}
  913. snapshots:
  914. '@amap/amap-jsapi-loader@1.0.1': {}
  915. '@arco-design/color@0.4.0':
  916. dependencies:
  917. color: 3.2.1
  918. '@arco-design/web-vue@2.57.0(vue@3.5.18)':
  919. dependencies:
  920. '@arco-design/color': 0.4.0
  921. b-tween: 0.3.3
  922. b-validate: 1.5.3
  923. compute-scroll-into-view: 1.0.20
  924. dayjs: 1.11.13
  925. number-precision: 1.6.0
  926. resize-observer-polyfill: 1.5.1
  927. scroll-into-view-if-needed: 2.2.31
  928. vue: 3.5.18
  929. '@arco-plugins/vite-vue@1.4.5':
  930. dependencies:
  931. '@babel/generator': 7.28.3
  932. '@babel/helper-module-imports': 7.27.1
  933. '@babel/parser': 7.28.3
  934. '@babel/traverse': 7.28.3
  935. '@babel/types': 7.28.2
  936. '@types/node': 16.18.126
  937. transitivePeerDependencies:
  938. - supports-color
  939. '@babel/code-frame@7.27.1':
  940. dependencies:
  941. '@babel/helper-validator-identifier': 7.27.1
  942. js-tokens: 4.0.0
  943. picocolors: 1.1.1
  944. '@babel/generator@7.28.3':
  945. dependencies:
  946. '@babel/parser': 7.28.3
  947. '@babel/types': 7.28.2
  948. '@jridgewell/gen-mapping': 0.3.13
  949. '@jridgewell/trace-mapping': 0.3.30
  950. jsesc: 3.1.0
  951. '@babel/helper-globals@7.28.0': {}
  952. '@babel/helper-module-imports@7.27.1':
  953. dependencies:
  954. '@babel/traverse': 7.28.3
  955. '@babel/types': 7.28.2
  956. transitivePeerDependencies:
  957. - supports-color
  958. '@babel/helper-string-parser@7.27.1': {}
  959. '@babel/helper-validator-identifier@7.27.1': {}
  960. '@babel/parser@7.28.3':
  961. dependencies:
  962. '@babel/types': 7.28.2
  963. '@babel/runtime@7.28.3': {}
  964. '@babel/template@7.27.2':
  965. dependencies:
  966. '@babel/code-frame': 7.27.1
  967. '@babel/parser': 7.28.3
  968. '@babel/types': 7.28.2
  969. '@babel/traverse@7.28.3':
  970. dependencies:
  971. '@babel/code-frame': 7.27.1
  972. '@babel/generator': 7.28.3
  973. '@babel/helper-globals': 7.28.0
  974. '@babel/parser': 7.28.3
  975. '@babel/template': 7.27.2
  976. '@babel/types': 7.28.2
  977. debug: 4.4.1
  978. transitivePeerDependencies:
  979. - supports-color
  980. '@babel/types@7.28.2':
  981. dependencies:
  982. '@babel/helper-string-parser': 7.27.1
  983. '@babel/helper-validator-identifier': 7.27.1
  984. '@esbuild/aix-ppc64@0.25.9':
  985. optional: true
  986. '@esbuild/android-arm64@0.25.9':
  987. optional: true
  988. '@esbuild/android-arm@0.25.9':
  989. optional: true
  990. '@esbuild/android-x64@0.25.9':
  991. optional: true
  992. '@esbuild/darwin-arm64@0.25.9':
  993. optional: true
  994. '@esbuild/darwin-x64@0.25.9':
  995. optional: true
  996. '@esbuild/freebsd-arm64@0.25.9':
  997. optional: true
  998. '@esbuild/freebsd-x64@0.25.9':
  999. optional: true
  1000. '@esbuild/linux-arm64@0.25.9':
  1001. optional: true
  1002. '@esbuild/linux-arm@0.25.9':
  1003. optional: true
  1004. '@esbuild/linux-ia32@0.25.9':
  1005. optional: true
  1006. '@esbuild/linux-loong64@0.25.9':
  1007. optional: true
  1008. '@esbuild/linux-mips64el@0.25.9':
  1009. optional: true
  1010. '@esbuild/linux-ppc64@0.25.9':
  1011. optional: true
  1012. '@esbuild/linux-riscv64@0.25.9':
  1013. optional: true
  1014. '@esbuild/linux-s390x@0.25.9':
  1015. optional: true
  1016. '@esbuild/linux-x64@0.25.9':
  1017. optional: true
  1018. '@esbuild/netbsd-arm64@0.25.9':
  1019. optional: true
  1020. '@esbuild/netbsd-x64@0.25.9':
  1021. optional: true
  1022. '@esbuild/openbsd-arm64@0.25.9':
  1023. optional: true
  1024. '@esbuild/openbsd-x64@0.25.9':
  1025. optional: true
  1026. '@esbuild/openharmony-arm64@0.25.9':
  1027. optional: true
  1028. '@esbuild/sunos-x64@0.25.9':
  1029. optional: true
  1030. '@esbuild/win32-arm64@0.25.9':
  1031. optional: true
  1032. '@esbuild/win32-ia32@0.25.9':
  1033. optional: true
  1034. '@esbuild/win32-x64@0.25.9':
  1035. optional: true
  1036. '@ffmpeg/ffmpeg@0.12.15':
  1037. dependencies:
  1038. '@ffmpeg/types': 0.12.4
  1039. '@ffmpeg/types@0.12.4': {}
  1040. '@ffmpeg/util@0.12.2': {}
  1041. '@jridgewell/gen-mapping@0.3.13':
  1042. dependencies:
  1043. '@jridgewell/sourcemap-codec': 1.5.5
  1044. '@jridgewell/trace-mapping': 0.3.30
  1045. '@jridgewell/resolve-uri@3.1.2': {}
  1046. '@jridgewell/sourcemap-codec@1.5.5': {}
  1047. '@jridgewell/trace-mapping@0.3.30':
  1048. dependencies:
  1049. '@jridgewell/resolve-uri': 3.1.2
  1050. '@jridgewell/sourcemap-codec': 1.5.5
  1051. '@rollup/rollup-android-arm-eabi@4.46.3':
  1052. optional: true
  1053. '@rollup/rollup-android-arm64@4.46.3':
  1054. optional: true
  1055. '@rollup/rollup-darwin-arm64@4.46.3':
  1056. optional: true
  1057. '@rollup/rollup-darwin-x64@4.46.3':
  1058. optional: true
  1059. '@rollup/rollup-freebsd-arm64@4.46.3':
  1060. optional: true
  1061. '@rollup/rollup-freebsd-x64@4.46.3':
  1062. optional: true
  1063. '@rollup/rollup-linux-arm-gnueabihf@4.46.3':
  1064. optional: true
  1065. '@rollup/rollup-linux-arm-musleabihf@4.46.3':
  1066. optional: true
  1067. '@rollup/rollup-linux-arm64-gnu@4.46.3':
  1068. optional: true
  1069. '@rollup/rollup-linux-arm64-musl@4.46.3':
  1070. optional: true
  1071. '@rollup/rollup-linux-loongarch64-gnu@4.46.3':
  1072. optional: true
  1073. '@rollup/rollup-linux-ppc64-gnu@4.46.3':
  1074. optional: true
  1075. '@rollup/rollup-linux-riscv64-gnu@4.46.3':
  1076. optional: true
  1077. '@rollup/rollup-linux-riscv64-musl@4.46.3':
  1078. optional: true
  1079. '@rollup/rollup-linux-s390x-gnu@4.46.3':
  1080. optional: true
  1081. '@rollup/rollup-linux-x64-gnu@4.46.3':
  1082. optional: true
  1083. '@rollup/rollup-linux-x64-musl@4.46.3':
  1084. optional: true
  1085. '@rollup/rollup-win32-arm64-msvc@4.46.3':
  1086. optional: true
  1087. '@rollup/rollup-win32-ia32-msvc@4.46.3':
  1088. optional: true
  1089. '@rollup/rollup-win32-x64-msvc@4.46.3':
  1090. optional: true
  1091. '@transloadit/prettier-bytes@0.0.7': {}
  1092. '@types/estree@1.0.8': {}
  1093. '@types/event-emitter@0.3.5': {}
  1094. '@types/node@16.18.126': {}
  1095. '@uppy/companion-client@2.2.2':
  1096. dependencies:
  1097. '@uppy/utils': 4.1.3
  1098. namespace-emitter: 2.0.1
  1099. '@uppy/core@2.3.4':
  1100. dependencies:
  1101. '@transloadit/prettier-bytes': 0.0.7
  1102. '@uppy/store-default': 2.1.1
  1103. '@uppy/utils': 4.1.3
  1104. lodash.throttle: 4.1.1
  1105. mime-match: 1.0.2
  1106. namespace-emitter: 2.0.1
  1107. nanoid: 3.3.11
  1108. preact: 10.27.1
  1109. '@uppy/store-default@2.1.1': {}
  1110. '@uppy/utils@4.1.3':
  1111. dependencies:
  1112. lodash.throttle: 4.1.1
  1113. '@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4)':
  1114. dependencies:
  1115. '@uppy/companion-client': 2.2.2
  1116. '@uppy/core': 2.3.4
  1117. '@uppy/utils': 4.1.3
  1118. nanoid: 3.3.11
  1119. '@vitejs/plugin-vue@5.2.4(vite@6.3.5(less@4.4.1))(vue@3.5.18)':
  1120. dependencies:
  1121. vite: 6.3.5(less@4.4.1)
  1122. vue: 3.5.18
  1123. '@vladmandic/face-api@1.7.15': {}
  1124. '@vue/compiler-core@3.5.18':
  1125. dependencies:
  1126. '@babel/parser': 7.28.3
  1127. '@vue/shared': 3.5.18
  1128. entities: 4.5.0
  1129. estree-walker: 2.0.2
  1130. source-map-js: 1.2.1
  1131. '@vue/compiler-dom@3.5.18':
  1132. dependencies:
  1133. '@vue/compiler-core': 3.5.18
  1134. '@vue/shared': 3.5.18
  1135. '@vue/compiler-sfc@3.5.18':
  1136. dependencies:
  1137. '@babel/parser': 7.28.3
  1138. '@vue/compiler-core': 3.5.18
  1139. '@vue/compiler-dom': 3.5.18
  1140. '@vue/compiler-ssr': 3.5.18
  1141. '@vue/shared': 3.5.18
  1142. estree-walker: 2.0.2
  1143. magic-string: 0.30.17
  1144. postcss: 8.5.6
  1145. source-map-js: 1.2.1
  1146. '@vue/compiler-ssr@3.5.18':
  1147. dependencies:
  1148. '@vue/compiler-dom': 3.5.18
  1149. '@vue/shared': 3.5.18
  1150. '@vue/devtools-api@6.6.4': {}
  1151. '@vue/devtools-api@7.7.7':
  1152. dependencies:
  1153. '@vue/devtools-kit': 7.7.7
  1154. '@vue/devtools-kit@7.7.7':
  1155. dependencies:
  1156. '@vue/devtools-shared': 7.7.7
  1157. birpc: 2.5.0
  1158. hookable: 5.5.3
  1159. mitt: 3.0.1
  1160. perfect-debounce: 1.0.0
  1161. speakingurl: 14.0.1
  1162. superjson: 2.2.2
  1163. '@vue/devtools-shared@7.7.7':
  1164. dependencies:
  1165. rfdc: 1.4.1
  1166. '@vue/reactivity@3.5.18':
  1167. dependencies:
  1168. '@vue/shared': 3.5.18
  1169. '@vue/runtime-core@3.5.18':
  1170. dependencies:
  1171. '@vue/reactivity': 3.5.18
  1172. '@vue/shared': 3.5.18
  1173. '@vue/runtime-dom@3.5.18':
  1174. dependencies:
  1175. '@vue/reactivity': 3.5.18
  1176. '@vue/runtime-core': 3.5.18
  1177. '@vue/shared': 3.5.18
  1178. csstype: 3.1.3
  1179. '@vue/server-renderer@3.5.18(vue@3.5.18)':
  1180. dependencies:
  1181. '@vue/compiler-ssr': 3.5.18
  1182. '@vue/shared': 3.5.18
  1183. vue: 3.5.18
  1184. '@vue/shared@3.5.18': {}
  1185. '@wangeditor/basic-modules@1.1.7(@wangeditor/core@1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.2))(dom7@3.0.0)(lodash.throttle@4.1.1)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.2)':
  1186. dependencies:
  1187. '@wangeditor/core': 1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.2)
  1188. dom7: 3.0.0
  1189. is-url: 1.2.4
  1190. lodash.throttle: 4.1.1
  1191. nanoid: 3.3.11
  1192. slate: 0.72.8
  1193. snabbdom: 3.6.2
  1194. '@wangeditor/code-highlight@1.0.3(@wangeditor/core@1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.2))(dom7@3.0.0)(slate@0.72.8)(snabbdom@3.6.2)':
  1195. dependencies:
  1196. '@wangeditor/core': 1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.2)
  1197. dom7: 3.0.0
  1198. prismjs: 1.30.0
  1199. slate: 0.72.8
  1200. snabbdom: 3.6.2
  1201. '@wangeditor/core@1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.2)':
  1202. dependencies:
  1203. '@types/event-emitter': 0.3.5
  1204. '@uppy/core': 2.3.4
  1205. '@uppy/xhr-upload': 2.1.3(@uppy/core@2.3.4)
  1206. dom7: 3.0.0
  1207. event-emitter: 0.3.5
  1208. html-void-elements: 2.0.1
  1209. i18next: 20.6.1
  1210. is-hotkey: 0.2.0
  1211. lodash.camelcase: 4.3.0
  1212. lodash.clonedeep: 4.5.0
  1213. lodash.debounce: 4.0.8
  1214. lodash.foreach: 4.5.0
  1215. lodash.isequal: 4.5.0
  1216. lodash.throttle: 4.1.1
  1217. lodash.toarray: 4.4.0
  1218. nanoid: 3.3.11
  1219. scroll-into-view-if-needed: 2.2.31
  1220. slate: 0.72.8
  1221. slate-history: 0.66.0(slate@0.72.8)
  1222. snabbdom: 3.6.2
  1223. '@wangeditor/editor-for-vue@5.1.12(@wangeditor/editor@5.1.23)(vue@3.5.18)':
  1224. dependencies:
  1225. '@wangeditor/editor': 5.1.23
  1226. vue: 3.5.18
  1227. '@wangeditor/editor@5.1.23':
  1228. dependencies:
  1229. '@uppy/core': 2.3.4
  1230. '@uppy/xhr-upload': 2.1.3(@uppy/core@2.3.4)
  1231. '@wangeditor/basic-modules': 1.1.7(@wangeditor/core@1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.2))(dom7@3.0.0)(lodash.throttle@4.1.1)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.2)
  1232. '@wangeditor/code-highlight': 1.0.3(@wangeditor/core@1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.2))(dom7@3.0.0)(slate@0.72.8)(snabbdom@3.6.2)
  1233. '@wangeditor/core': 1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.2)
  1234. '@wangeditor/list-module': 1.0.5(@wangeditor/core@1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.2))(dom7@3.0.0)(slate@0.72.8)(snabbdom@3.6.2)
  1235. '@wangeditor/table-module': 1.1.4(@wangeditor/core@1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.2))(dom7@3.0.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.2)
  1236. '@wangeditor/upload-image-module': 1.0.2(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(@wangeditor/basic-modules@1.1.7(@wangeditor/core@1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.2))(dom7@3.0.0)(lodash.throttle@4.1.1)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.2))(@wangeditor/core@1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.2))(dom7@3.0.0)(lodash.foreach@4.5.0)(slate@0.72.8)(snabbdom@3.6.2)
  1237. '@wangeditor/video-module': 1.1.4(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(@wangeditor/core@1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.2))(dom7@3.0.0)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.2)
  1238. dom7: 3.0.0
  1239. is-hotkey: 0.2.0
  1240. lodash.camelcase: 4.3.0
  1241. lodash.clonedeep: 4.5.0
  1242. lodash.debounce: 4.0.8
  1243. lodash.foreach: 4.5.0
  1244. lodash.isequal: 4.5.0
  1245. lodash.throttle: 4.1.1
  1246. lodash.toarray: 4.4.0
  1247. nanoid: 3.3.11
  1248. slate: 0.72.8
  1249. snabbdom: 3.6.2
  1250. '@wangeditor/list-module@1.0.5(@wangeditor/core@1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.2))(dom7@3.0.0)(slate@0.72.8)(snabbdom@3.6.2)':
  1251. dependencies:
  1252. '@wangeditor/core': 1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.2)
  1253. dom7: 3.0.0
  1254. slate: 0.72.8
  1255. snabbdom: 3.6.2
  1256. '@wangeditor/table-module@1.1.4(@wangeditor/core@1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.2))(dom7@3.0.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.2)':
  1257. dependencies:
  1258. '@wangeditor/core': 1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.2)
  1259. dom7: 3.0.0
  1260. lodash.isequal: 4.5.0
  1261. lodash.throttle: 4.1.1
  1262. nanoid: 3.3.11
  1263. slate: 0.72.8
  1264. snabbdom: 3.6.2
  1265. '@wangeditor/upload-image-module@1.0.2(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(@wangeditor/basic-modules@1.1.7(@wangeditor/core@1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.2))(dom7@3.0.0)(lodash.throttle@4.1.1)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.2))(@wangeditor/core@1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.2))(dom7@3.0.0)(lodash.foreach@4.5.0)(slate@0.72.8)(snabbdom@3.6.2)':
  1266. dependencies:
  1267. '@uppy/core': 2.3.4
  1268. '@uppy/xhr-upload': 2.1.3(@uppy/core@2.3.4)
  1269. '@wangeditor/basic-modules': 1.1.7(@wangeditor/core@1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.2))(dom7@3.0.0)(lodash.throttle@4.1.1)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.2)
  1270. '@wangeditor/core': 1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.2)
  1271. dom7: 3.0.0
  1272. lodash.foreach: 4.5.0
  1273. slate: 0.72.8
  1274. snabbdom: 3.6.2
  1275. '@wangeditor/video-module@1.1.4(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(@wangeditor/core@1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.2))(dom7@3.0.0)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.2)':
  1276. dependencies:
  1277. '@uppy/core': 2.3.4
  1278. '@uppy/xhr-upload': 2.1.3(@uppy/core@2.3.4)
  1279. '@wangeditor/core': 1.1.19(@uppy/core@2.3.4)(@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4))(dom7@3.0.0)(is-hotkey@0.2.0)(lodash.camelcase@4.3.0)(lodash.clonedeep@4.5.0)(lodash.debounce@4.0.8)(lodash.foreach@4.5.0)(lodash.isequal@4.5.0)(lodash.throttle@4.1.1)(lodash.toarray@4.4.0)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.2)
  1280. dom7: 3.0.0
  1281. nanoid: 3.3.11
  1282. slate: 0.72.8
  1283. snabbdom: 3.6.2
  1284. argparse@2.0.1: {}
  1285. asynckit@0.4.0: {}
  1286. axios@1.11.0:
  1287. dependencies:
  1288. follow-redirects: 1.15.11
  1289. form-data: 4.0.4
  1290. proxy-from-env: 1.1.0
  1291. transitivePeerDependencies:
  1292. - debug
  1293. b-tween@0.3.3: {}
  1294. b-validate@1.5.3: {}
  1295. birpc@2.5.0: {}
  1296. call-bind-apply-helpers@1.0.2:
  1297. dependencies:
  1298. es-errors: 1.3.0
  1299. function-bind: 1.1.2
  1300. color-convert@1.9.3:
  1301. dependencies:
  1302. color-name: 1.1.3
  1303. color-name@1.1.3: {}
  1304. color-name@1.1.4: {}
  1305. color-string@1.9.1:
  1306. dependencies:
  1307. color-name: 1.1.4
  1308. simple-swizzle: 0.2.2
  1309. color@3.2.1:
  1310. dependencies:
  1311. color-convert: 1.9.3
  1312. color-string: 1.9.1
  1313. combined-stream@1.0.8:
  1314. dependencies:
  1315. delayed-stream: 1.0.0
  1316. compute-scroll-into-view@1.0.20: {}
  1317. copy-anything@2.0.6:
  1318. dependencies:
  1319. is-what: 3.14.1
  1320. copy-anything@3.0.5:
  1321. dependencies:
  1322. is-what: 4.1.16
  1323. crypto-js@4.2.0: {}
  1324. csstype@3.1.3: {}
  1325. d@1.0.2:
  1326. dependencies:
  1327. es5-ext: 0.10.64
  1328. type: 2.7.3
  1329. dayjs@1.11.13: {}
  1330. debug@4.4.1:
  1331. dependencies:
  1332. ms: 2.1.3
  1333. delayed-stream@1.0.0: {}
  1334. dom7@3.0.0:
  1335. dependencies:
  1336. ssr-window: 3.0.0
  1337. dunder-proto@1.0.1:
  1338. dependencies:
  1339. call-bind-apply-helpers: 1.0.2
  1340. es-errors: 1.3.0
  1341. gopd: 1.2.0
  1342. echarts@5.6.0:
  1343. dependencies:
  1344. tslib: 2.3.0
  1345. zrender: 5.6.1
  1346. entities@4.5.0: {}
  1347. errno@0.1.8:
  1348. dependencies:
  1349. prr: 1.0.1
  1350. optional: true
  1351. es-define-property@1.0.1: {}
  1352. es-errors@1.3.0: {}
  1353. es-object-atoms@1.1.1:
  1354. dependencies:
  1355. es-errors: 1.3.0
  1356. es-set-tostringtag@2.1.0:
  1357. dependencies:
  1358. es-errors: 1.3.0
  1359. get-intrinsic: 1.3.0
  1360. has-tostringtag: 1.0.2
  1361. hasown: 2.0.2
  1362. es5-ext@0.10.64:
  1363. dependencies:
  1364. es6-iterator: 2.0.3
  1365. es6-symbol: 3.1.4
  1366. esniff: 2.0.1
  1367. next-tick: 1.1.0
  1368. es6-iterator@2.0.3:
  1369. dependencies:
  1370. d: 1.0.2
  1371. es5-ext: 0.10.64
  1372. es6-symbol: 3.1.4
  1373. es6-symbol@3.1.4:
  1374. dependencies:
  1375. d: 1.0.2
  1376. ext: 1.7.0
  1377. esbuild@0.25.9:
  1378. optionalDependencies:
  1379. '@esbuild/aix-ppc64': 0.25.9
  1380. '@esbuild/android-arm': 0.25.9
  1381. '@esbuild/android-arm64': 0.25.9
  1382. '@esbuild/android-x64': 0.25.9
  1383. '@esbuild/darwin-arm64': 0.25.9
  1384. '@esbuild/darwin-x64': 0.25.9
  1385. '@esbuild/freebsd-arm64': 0.25.9
  1386. '@esbuild/freebsd-x64': 0.25.9
  1387. '@esbuild/linux-arm': 0.25.9
  1388. '@esbuild/linux-arm64': 0.25.9
  1389. '@esbuild/linux-ia32': 0.25.9
  1390. '@esbuild/linux-loong64': 0.25.9
  1391. '@esbuild/linux-mips64el': 0.25.9
  1392. '@esbuild/linux-ppc64': 0.25.9
  1393. '@esbuild/linux-riscv64': 0.25.9
  1394. '@esbuild/linux-s390x': 0.25.9
  1395. '@esbuild/linux-x64': 0.25.9
  1396. '@esbuild/netbsd-arm64': 0.25.9
  1397. '@esbuild/netbsd-x64': 0.25.9
  1398. '@esbuild/openbsd-arm64': 0.25.9
  1399. '@esbuild/openbsd-x64': 0.25.9
  1400. '@esbuild/openharmony-arm64': 0.25.9
  1401. '@esbuild/sunos-x64': 0.25.9
  1402. '@esbuild/win32-arm64': 0.25.9
  1403. '@esbuild/win32-ia32': 0.25.9
  1404. '@esbuild/win32-x64': 0.25.9
  1405. esniff@2.0.1:
  1406. dependencies:
  1407. d: 1.0.2
  1408. es5-ext: 0.10.64
  1409. event-emitter: 0.3.5
  1410. type: 2.7.3
  1411. estree-walker@2.0.2: {}
  1412. event-emitter@0.3.5:
  1413. dependencies:
  1414. d: 1.0.2
  1415. es5-ext: 0.10.64
  1416. ext@1.7.0:
  1417. dependencies:
  1418. type: 2.7.3
  1419. fdir@6.5.0(picomatch@4.0.3):
  1420. optionalDependencies:
  1421. picomatch: 4.0.3
  1422. follow-redirects@1.15.11: {}
  1423. form-data@4.0.4:
  1424. dependencies:
  1425. asynckit: 0.4.0
  1426. combined-stream: 1.0.8
  1427. es-set-tostringtag: 2.1.0
  1428. hasown: 2.0.2
  1429. mime-types: 2.1.35
  1430. fsevents@2.3.3:
  1431. optional: true
  1432. function-bind@1.1.2: {}
  1433. get-intrinsic@1.3.0:
  1434. dependencies:
  1435. call-bind-apply-helpers: 1.0.2
  1436. es-define-property: 1.0.1
  1437. es-errors: 1.3.0
  1438. es-object-atoms: 1.1.1
  1439. function-bind: 1.1.2
  1440. get-proto: 1.0.1
  1441. gopd: 1.2.0
  1442. has-symbols: 1.1.0
  1443. hasown: 2.0.2
  1444. math-intrinsics: 1.1.0
  1445. get-proto@1.0.1:
  1446. dependencies:
  1447. dunder-proto: 1.0.1
  1448. es-object-atoms: 1.1.1
  1449. gopd@1.2.0: {}
  1450. graceful-fs@4.2.11:
  1451. optional: true
  1452. has-symbols@1.1.0: {}
  1453. has-tostringtag@1.0.2:
  1454. dependencies:
  1455. has-symbols: 1.1.0
  1456. hasown@2.0.2:
  1457. dependencies:
  1458. function-bind: 1.1.2
  1459. hookable@5.5.3: {}
  1460. html-void-elements@2.0.1: {}
  1461. i18next@20.6.1:
  1462. dependencies:
  1463. '@babel/runtime': 7.28.3
  1464. iconv-lite@0.6.3:
  1465. dependencies:
  1466. safer-buffer: 2.1.2
  1467. optional: true
  1468. image-size@0.5.5:
  1469. optional: true
  1470. immer@9.0.21: {}
  1471. is-arrayish@0.3.2: {}
  1472. is-hotkey@0.2.0: {}
  1473. is-plain-object@5.0.0: {}
  1474. is-url@1.2.4: {}
  1475. is-what@3.14.1: {}
  1476. is-what@4.1.16: {}
  1477. js-tokens@4.0.0: {}
  1478. jsencrypt@3.5.4: {}
  1479. jsesc@3.1.0: {}
  1480. less@4.4.1:
  1481. dependencies:
  1482. copy-anything: 2.0.6
  1483. parse-node-version: 1.0.1
  1484. tslib: 2.8.1
  1485. optionalDependencies:
  1486. errno: 0.1.8
  1487. graceful-fs: 4.2.11
  1488. image-size: 0.5.5
  1489. make-dir: 2.1.0
  1490. mime: 1.6.0
  1491. needle: 3.3.1
  1492. source-map: 0.6.1
  1493. linkify-it@5.0.0:
  1494. dependencies:
  1495. uc.micro: 2.1.0
  1496. lodash.camelcase@4.3.0: {}
  1497. lodash.clonedeep@4.5.0: {}
  1498. lodash.debounce@4.0.8: {}
  1499. lodash.foreach@4.5.0: {}
  1500. lodash.isequal@4.5.0: {}
  1501. lodash.throttle@4.1.1: {}
  1502. lodash.toarray@4.4.0: {}
  1503. lru-cache@11.1.0: {}
  1504. magic-string@0.30.17:
  1505. dependencies:
  1506. '@jridgewell/sourcemap-codec': 1.5.5
  1507. make-dir@2.1.0:
  1508. dependencies:
  1509. pify: 4.0.1
  1510. semver: 5.7.2
  1511. optional: true
  1512. markdown-it@14.1.0:
  1513. dependencies:
  1514. argparse: 2.0.1
  1515. entities: 4.5.0
  1516. linkify-it: 5.0.0
  1517. mdurl: 2.0.0
  1518. punycode.js: 2.3.1
  1519. uc.micro: 2.1.0
  1520. math-intrinsics@1.1.0: {}
  1521. mdurl@2.0.0: {}
  1522. mime-db@1.52.0: {}
  1523. mime-match@1.0.2:
  1524. dependencies:
  1525. wildcard: 1.1.2
  1526. mime-types@2.1.35:
  1527. dependencies:
  1528. mime-db: 1.52.0
  1529. mime@1.6.0:
  1530. optional: true
  1531. mitt@3.0.1: {}
  1532. ms@2.1.3: {}
  1533. namespace-emitter@2.0.1: {}
  1534. nanoid@3.3.11: {}
  1535. needle@3.3.1:
  1536. dependencies:
  1537. iconv-lite: 0.6.3
  1538. sax: 1.4.1
  1539. optional: true
  1540. next-tick@1.1.0: {}
  1541. number-precision@1.6.0: {}
  1542. parse-node-version@1.0.1: {}
  1543. perfect-debounce@1.0.0: {}
  1544. picocolors@1.1.1: {}
  1545. picomatch@4.0.3: {}
  1546. pify@4.0.1:
  1547. optional: true
  1548. pinia@3.0.3(vue@3.5.18):
  1549. dependencies:
  1550. '@vue/devtools-api': 7.7.7
  1551. vue: 3.5.18
  1552. postcss@8.5.6:
  1553. dependencies:
  1554. nanoid: 3.3.11
  1555. picocolors: 1.1.1
  1556. source-map-js: 1.2.1
  1557. preact@10.27.1: {}
  1558. prismjs@1.30.0: {}
  1559. proxy-from-env@1.1.0: {}
  1560. prr@1.0.1:
  1561. optional: true
  1562. punycode.js@2.3.1: {}
  1563. resize-observer-polyfill@1.5.1: {}
  1564. rfdc@1.4.1: {}
  1565. rollup@4.46.3:
  1566. dependencies:
  1567. '@types/estree': 1.0.8
  1568. optionalDependencies:
  1569. '@rollup/rollup-android-arm-eabi': 4.46.3
  1570. '@rollup/rollup-android-arm64': 4.46.3
  1571. '@rollup/rollup-darwin-arm64': 4.46.3
  1572. '@rollup/rollup-darwin-x64': 4.46.3
  1573. '@rollup/rollup-freebsd-arm64': 4.46.3
  1574. '@rollup/rollup-freebsd-x64': 4.46.3
  1575. '@rollup/rollup-linux-arm-gnueabihf': 4.46.3
  1576. '@rollup/rollup-linux-arm-musleabihf': 4.46.3
  1577. '@rollup/rollup-linux-arm64-gnu': 4.46.3
  1578. '@rollup/rollup-linux-arm64-musl': 4.46.3
  1579. '@rollup/rollup-linux-loongarch64-gnu': 4.46.3
  1580. '@rollup/rollup-linux-ppc64-gnu': 4.46.3
  1581. '@rollup/rollup-linux-riscv64-gnu': 4.46.3
  1582. '@rollup/rollup-linux-riscv64-musl': 4.46.3
  1583. '@rollup/rollup-linux-s390x-gnu': 4.46.3
  1584. '@rollup/rollup-linux-x64-gnu': 4.46.3
  1585. '@rollup/rollup-linux-x64-musl': 4.46.3
  1586. '@rollup/rollup-win32-arm64-msvc': 4.46.3
  1587. '@rollup/rollup-win32-ia32-msvc': 4.46.3
  1588. '@rollup/rollup-win32-x64-msvc': 4.46.3
  1589. fsevents: 2.3.3
  1590. safer-buffer@2.1.2:
  1591. optional: true
  1592. sax@1.4.1:
  1593. optional: true
  1594. scroll-into-view-if-needed@2.2.31:
  1595. dependencies:
  1596. compute-scroll-into-view: 1.0.20
  1597. semver@5.7.2:
  1598. optional: true
  1599. simple-swizzle@0.2.2:
  1600. dependencies:
  1601. is-arrayish: 0.3.2
  1602. slate-history@0.66.0(slate@0.72.8):
  1603. dependencies:
  1604. is-plain-object: 5.0.0
  1605. slate: 0.72.8
  1606. slate@0.72.8:
  1607. dependencies:
  1608. immer: 9.0.21
  1609. is-plain-object: 5.0.0
  1610. tiny-warning: 1.0.3
  1611. snabbdom@3.6.2: {}
  1612. source-map-js@1.2.1: {}
  1613. source-map@0.6.1:
  1614. optional: true
  1615. speakingurl@14.0.1: {}
  1616. ssr-window@3.0.0: {}
  1617. store@2.0.12: {}
  1618. superjson@2.2.2:
  1619. dependencies:
  1620. copy-anything: 3.0.5
  1621. three@0.175.0: {}
  1622. tiny-warning@1.0.3: {}
  1623. tinyglobby@0.2.14:
  1624. dependencies:
  1625. fdir: 6.5.0(picomatch@4.0.3)
  1626. picomatch: 4.0.3
  1627. tslib@2.3.0: {}
  1628. tslib@2.8.1: {}
  1629. type@2.7.3: {}
  1630. uc.micro@2.1.0: {}
  1631. uuid@11.1.0: {}
  1632. vite@6.3.5(less@4.4.1):
  1633. dependencies:
  1634. esbuild: 0.25.9
  1635. fdir: 6.5.0(picomatch@4.0.3)
  1636. picomatch: 4.0.3
  1637. postcss: 8.5.6
  1638. rollup: 4.46.3
  1639. tinyglobby: 0.2.14
  1640. optionalDependencies:
  1641. fsevents: 2.3.3
  1642. less: 4.4.1
  1643. vue-demi@0.13.11(vue@3.5.18):
  1644. dependencies:
  1645. vue: 3.5.18
  1646. vue-echarts@7.0.3(@vue/runtime-core@3.5.18)(echarts@5.6.0)(vue@3.5.18):
  1647. dependencies:
  1648. echarts: 5.6.0
  1649. vue: 3.5.18
  1650. vue-demi: 0.13.11(vue@3.5.18)
  1651. optionalDependencies:
  1652. '@vue/runtime-core': 3.5.18
  1653. transitivePeerDependencies:
  1654. - '@vue/composition-api'
  1655. vue-router@4.5.1(vue@3.5.18):
  1656. dependencies:
  1657. '@vue/devtools-api': 6.6.4
  1658. vue: 3.5.18
  1659. vue@3.5.18:
  1660. dependencies:
  1661. '@vue/compiler-dom': 3.5.18
  1662. '@vue/compiler-sfc': 3.5.18
  1663. '@vue/runtime-dom': 3.5.18
  1664. '@vue/server-renderer': 3.5.18(vue@3.5.18)
  1665. '@vue/shared': 3.5.18
  1666. wildcard@1.1.2: {}
  1667. zrender@5.6.1:
  1668. dependencies:
  1669. tslib: 2.3.0