pnpm-lock.yaml 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. '@wangeditor/editor':
  9. specifier: ^5.1.23
  10. version: 5.1.23
  11. '@wangeditor/editor-for-vue':
  12. specifier: ^5.1.12
  13. version: 5.1.12(@wangeditor/editor@5.1.23)(vue@3.5.25)
  14. axios:
  15. specifier: ^1.6.0
  16. version: 1.13.2
  17. axios-jsonp:
  18. specifier: ^1.0.4
  19. version: 1.0.4
  20. element-plus:
  21. specifier: ^2.3.12
  22. version: 2.11.9(vue@3.5.25)
  23. pnpm:
  24. specifier: ^10.15.1
  25. version: 10.24.0
  26. sass:
  27. specifier: ^1.66.1
  28. version: 1.94.2
  29. vue:
  30. specifier: ^3.3.4
  31. version: 3.5.25
  32. vue-qrcode:
  33. specifier: ^2.2.0
  34. version: 2.2.2(qrcode@1.5.4)(vue@3.5.25)
  35. vue-router:
  36. specifier: ^4.2.4
  37. version: 4.6.3(vue@3.5.25)
  38. vuex:
  39. specifier: ^4.0.2
  40. version: 4.1.0(vue@3.5.25)
  41. devDependencies:
  42. '@vitejs/plugin-vue':
  43. specifier: ^4.2.3
  44. version: 4.6.2(vite@4.5.14(sass@1.94.2))(vue@3.5.25)
  45. vite:
  46. specifier: ^4.4.5
  47. version: 4.5.14(sass@1.94.2)
  48. packages:
  49. '@babel/helper-string-parser@7.27.1':
  50. resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
  51. engines: {node: '>=6.9.0'}
  52. '@babel/helper-validator-identifier@7.28.5':
  53. resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
  54. engines: {node: '>=6.9.0'}
  55. '@babel/parser@7.28.5':
  56. resolution: {integrity: sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==}
  57. engines: {node: '>=6.0.0'}
  58. hasBin: true
  59. '@babel/runtime@7.28.4':
  60. resolution: {integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==}
  61. engines: {node: '>=6.9.0'}
  62. '@babel/types@7.28.5':
  63. resolution: {integrity: sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==}
  64. engines: {node: '>=6.9.0'}
  65. '@ctrl/tinycolor@3.6.1':
  66. resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==}
  67. engines: {node: '>=10'}
  68. '@element-plus/icons-vue@2.3.2':
  69. resolution: {integrity: sha512-OzIuTaIfC8QXEPmJvB4Y4kw34rSXdCJzxcD1kFStBvr8bK6X1zQAYDo0CNMjojnfTqRQCJ0I7prlErcoRiET2A==}
  70. peerDependencies:
  71. vue: ^3.2.0
  72. '@esbuild/android-arm64@0.18.20':
  73. resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==}
  74. engines: {node: '>=12'}
  75. cpu: [arm64]
  76. os: [android]
  77. '@esbuild/android-arm@0.18.20':
  78. resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==}
  79. engines: {node: '>=12'}
  80. cpu: [arm]
  81. os: [android]
  82. '@esbuild/android-x64@0.18.20':
  83. resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==}
  84. engines: {node: '>=12'}
  85. cpu: [x64]
  86. os: [android]
  87. '@esbuild/darwin-arm64@0.18.20':
  88. resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==}
  89. engines: {node: '>=12'}
  90. cpu: [arm64]
  91. os: [darwin]
  92. '@esbuild/darwin-x64@0.18.20':
  93. resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==}
  94. engines: {node: '>=12'}
  95. cpu: [x64]
  96. os: [darwin]
  97. '@esbuild/freebsd-arm64@0.18.20':
  98. resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==}
  99. engines: {node: '>=12'}
  100. cpu: [arm64]
  101. os: [freebsd]
  102. '@esbuild/freebsd-x64@0.18.20':
  103. resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==}
  104. engines: {node: '>=12'}
  105. cpu: [x64]
  106. os: [freebsd]
  107. '@esbuild/linux-arm64@0.18.20':
  108. resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==}
  109. engines: {node: '>=12'}
  110. cpu: [arm64]
  111. os: [linux]
  112. '@esbuild/linux-arm@0.18.20':
  113. resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==}
  114. engines: {node: '>=12'}
  115. cpu: [arm]
  116. os: [linux]
  117. '@esbuild/linux-ia32@0.18.20':
  118. resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==}
  119. engines: {node: '>=12'}
  120. cpu: [ia32]
  121. os: [linux]
  122. '@esbuild/linux-loong64@0.18.20':
  123. resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==}
  124. engines: {node: '>=12'}
  125. cpu: [loong64]
  126. os: [linux]
  127. '@esbuild/linux-mips64el@0.18.20':
  128. resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==}
  129. engines: {node: '>=12'}
  130. cpu: [mips64el]
  131. os: [linux]
  132. '@esbuild/linux-ppc64@0.18.20':
  133. resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==}
  134. engines: {node: '>=12'}
  135. cpu: [ppc64]
  136. os: [linux]
  137. '@esbuild/linux-riscv64@0.18.20':
  138. resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==}
  139. engines: {node: '>=12'}
  140. cpu: [riscv64]
  141. os: [linux]
  142. '@esbuild/linux-s390x@0.18.20':
  143. resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==}
  144. engines: {node: '>=12'}
  145. cpu: [s390x]
  146. os: [linux]
  147. '@esbuild/linux-x64@0.18.20':
  148. resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==}
  149. engines: {node: '>=12'}
  150. cpu: [x64]
  151. os: [linux]
  152. '@esbuild/netbsd-x64@0.18.20':
  153. resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==}
  154. engines: {node: '>=12'}
  155. cpu: [x64]
  156. os: [netbsd]
  157. '@esbuild/openbsd-x64@0.18.20':
  158. resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==}
  159. engines: {node: '>=12'}
  160. cpu: [x64]
  161. os: [openbsd]
  162. '@esbuild/sunos-x64@0.18.20':
  163. resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==}
  164. engines: {node: '>=12'}
  165. cpu: [x64]
  166. os: [sunos]
  167. '@esbuild/win32-arm64@0.18.20':
  168. resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==}
  169. engines: {node: '>=12'}
  170. cpu: [arm64]
  171. os: [win32]
  172. '@esbuild/win32-ia32@0.18.20':
  173. resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==}
  174. engines: {node: '>=12'}
  175. cpu: [ia32]
  176. os: [win32]
  177. '@esbuild/win32-x64@0.18.20':
  178. resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==}
  179. engines: {node: '>=12'}
  180. cpu: [x64]
  181. os: [win32]
  182. '@floating-ui/core@1.7.3':
  183. resolution: {integrity: sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==}
  184. '@floating-ui/dom@1.7.4':
  185. resolution: {integrity: sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==}
  186. '@floating-ui/utils@0.2.10':
  187. resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==}
  188. '@jridgewell/sourcemap-codec@1.5.5':
  189. resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
  190. '@parcel/watcher-android-arm64@2.5.1':
  191. resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==}
  192. engines: {node: '>= 10.0.0'}
  193. cpu: [arm64]
  194. os: [android]
  195. '@parcel/watcher-darwin-arm64@2.5.1':
  196. resolution: {integrity: sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==}
  197. engines: {node: '>= 10.0.0'}
  198. cpu: [arm64]
  199. os: [darwin]
  200. '@parcel/watcher-darwin-x64@2.5.1':
  201. resolution: {integrity: sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==}
  202. engines: {node: '>= 10.0.0'}
  203. cpu: [x64]
  204. os: [darwin]
  205. '@parcel/watcher-freebsd-x64@2.5.1':
  206. resolution: {integrity: sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==}
  207. engines: {node: '>= 10.0.0'}
  208. cpu: [x64]
  209. os: [freebsd]
  210. '@parcel/watcher-linux-arm-glibc@2.5.1':
  211. resolution: {integrity: sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==}
  212. engines: {node: '>= 10.0.0'}
  213. cpu: [arm]
  214. os: [linux]
  215. libc: [glibc]
  216. '@parcel/watcher-linux-arm-musl@2.5.1':
  217. resolution: {integrity: sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==}
  218. engines: {node: '>= 10.0.0'}
  219. cpu: [arm]
  220. os: [linux]
  221. libc: [musl]
  222. '@parcel/watcher-linux-arm64-glibc@2.5.1':
  223. resolution: {integrity: sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==}
  224. engines: {node: '>= 10.0.0'}
  225. cpu: [arm64]
  226. os: [linux]
  227. libc: [glibc]
  228. '@parcel/watcher-linux-arm64-musl@2.5.1':
  229. resolution: {integrity: sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==}
  230. engines: {node: '>= 10.0.0'}
  231. cpu: [arm64]
  232. os: [linux]
  233. libc: [musl]
  234. '@parcel/watcher-linux-x64-glibc@2.5.1':
  235. resolution: {integrity: sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==}
  236. engines: {node: '>= 10.0.0'}
  237. cpu: [x64]
  238. os: [linux]
  239. libc: [glibc]
  240. '@parcel/watcher-linux-x64-musl@2.5.1':
  241. resolution: {integrity: sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==}
  242. engines: {node: '>= 10.0.0'}
  243. cpu: [x64]
  244. os: [linux]
  245. libc: [musl]
  246. '@parcel/watcher-win32-arm64@2.5.1':
  247. resolution: {integrity: sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==}
  248. engines: {node: '>= 10.0.0'}
  249. cpu: [arm64]
  250. os: [win32]
  251. '@parcel/watcher-win32-ia32@2.5.1':
  252. resolution: {integrity: sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==}
  253. engines: {node: '>= 10.0.0'}
  254. cpu: [ia32]
  255. os: [win32]
  256. '@parcel/watcher-win32-x64@2.5.1':
  257. resolution: {integrity: sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==}
  258. engines: {node: '>= 10.0.0'}
  259. cpu: [x64]
  260. os: [win32]
  261. '@parcel/watcher@2.5.1':
  262. resolution: {integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==}
  263. engines: {node: '>= 10.0.0'}
  264. '@sxzz/popperjs-es@2.11.7':
  265. resolution: {integrity: sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==}
  266. '@transloadit/prettier-bytes@0.0.7':
  267. resolution: {integrity: sha512-VeJbUb0wEKbcwaSlj5n+LscBl9IPgLPkHVGBkh00cztv6X4L/TJXK58LzFuBKX7/GAfiGhIwH67YTLTlzvIzBA==}
  268. '@types/event-emitter@0.3.5':
  269. resolution: {integrity: sha512-zx2/Gg0Eg7gwEiOIIh5w9TrhKKTeQh7CPCOPNc0el4pLSwzebA8SmnHwZs2dWlLONvyulykSwGSQxQHLhjGLvQ==}
  270. '@types/lodash-es@4.17.12':
  271. resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==}
  272. '@types/lodash@4.17.21':
  273. resolution: {integrity: sha512-FOvQ0YPD5NOfPgMzJihoT+Za5pdkDJWcbpuj1DjaKZIr/gxodQjY/uWEFlTNqW2ugXHUiL8lRQgw63dzKHZdeQ==}
  274. '@types/web-bluetooth@0.0.16':
  275. resolution: {integrity: sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==}
  276. '@uppy/companion-client@2.2.2':
  277. resolution: {integrity: sha512-5mTp2iq97/mYSisMaBtFRry6PTgZA6SIL7LePteOV5x0/DxKfrZW3DEiQERJmYpHzy7k8johpm2gHnEKto56Og==}
  278. '@uppy/core@2.3.4':
  279. resolution: {integrity: sha512-iWAqppC8FD8mMVqewavCz+TNaet6HPXitmGXpGGREGrakZ4FeuWytVdrelydzTdXx6vVKkOmI2FLztGg73sENQ==}
  280. '@uppy/store-default@2.1.1':
  281. resolution: {integrity: sha512-xnpTxvot2SeAwGwbvmJ899ASk5tYXhmZzD/aCFsXePh/v8rNvR2pKlcQUH7cF/y4baUGq3FHO/daKCok/mpKqQ==}
  282. '@uppy/utils@4.1.3':
  283. resolution: {integrity: sha512-nTuMvwWYobnJcytDO3t+D6IkVq/Qs4Xv3vyoEZ+Iaf8gegZP+rEyoaFT2CK5XLRMienPyqRqNbIfRuFaOWSIFw==}
  284. '@uppy/xhr-upload@2.1.3':
  285. resolution: {integrity: sha512-YWOQ6myBVPs+mhNjfdWsQyMRWUlrDLMoaG7nvf/G6Y3GKZf8AyjFDjvvJ49XWQ+DaZOftGkHmF1uh/DBeGivJQ==}
  286. peerDependencies:
  287. '@uppy/core': ^2.3.3
  288. '@vitejs/plugin-vue@4.6.2':
  289. resolution: {integrity: sha512-kqf7SGFoG+80aZG6Pf+gsZIVvGSCKE98JbiWqcCV9cThtg91Jav0yvYFC9Zb+jKetNGF6ZKeoaxgZfND21fWKw==}
  290. engines: {node: ^14.18.0 || >=16.0.0}
  291. peerDependencies:
  292. vite: ^4.0.0 || ^5.0.0
  293. vue: ^3.2.25
  294. '@vue/compiler-core@3.5.25':
  295. resolution: {integrity: sha512-vay5/oQJdsNHmliWoZfHPoVZZRmnSWhug0BYT34njkYTPqClh3DNWLkZNJBVSjsNMrg0CCrBfoKkjZQPM/QVUw==}
  296. '@vue/compiler-dom@3.5.25':
  297. resolution: {integrity: sha512-4We0OAcMZsKgYoGlMjzYvaoErltdFI2/25wqanuTu+S4gismOTRTBPi4IASOjxWdzIwrYSjnqONfKvuqkXzE2Q==}
  298. '@vue/compiler-sfc@3.5.25':
  299. resolution: {integrity: sha512-PUgKp2rn8fFsI++lF2sO7gwO2d9Yj57Utr5yEsDf3GNaQcowCLKL7sf+LvVFvtJDXUp/03+dC6f2+LCv5aK1ag==}
  300. '@vue/compiler-ssr@3.5.25':
  301. resolution: {integrity: sha512-ritPSKLBcParnsKYi+GNtbdbrIE1mtuFEJ4U1sWeuOMlIziK5GtOL85t5RhsNy4uWIXPgk+OUdpnXiTdzn8o3A==}
  302. '@vue/devtools-api@6.6.4':
  303. resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
  304. '@vue/reactivity@3.5.25':
  305. resolution: {integrity: sha512-5xfAypCQepv4Jog1U4zn8cZIcbKKFka3AgWHEFQeK65OW+Ys4XybP6z2kKgws4YB43KGpqp5D/K3go2UPPunLA==}
  306. '@vue/runtime-core@3.5.25':
  307. resolution: {integrity: sha512-Z751v203YWwYzy460bzsYQISDfPjHTl+6Zzwo/a3CsAf+0ccEjQ8c+0CdX1WsumRTHeywvyUFtW6KvNukT/smA==}
  308. '@vue/runtime-dom@3.5.25':
  309. resolution: {integrity: sha512-a4WrkYFbb19i9pjkz38zJBg8wa/rboNERq3+hRRb0dHiJh13c+6kAbgqCPfMaJ2gg4weWD3APZswASOfmKwamA==}
  310. '@vue/server-renderer@3.5.25':
  311. resolution: {integrity: sha512-UJaXR54vMG61i8XNIzTSf2Q7MOqZHpp8+x3XLGtE3+fL+nQd+k7O5+X3D/uWrnQXOdMw5VPih+Uremcw+u1woQ==}
  312. peerDependencies:
  313. vue: 3.5.25
  314. '@vue/shared@3.5.25':
  315. resolution: {integrity: sha512-AbOPdQQnAnzs58H2FrrDxYj/TJfmeS2jdfEEhgiKINy+bnOANmVizIEgq1r+C5zsbs6l1CCQxtcj71rwNQ4jWg==}
  316. '@vueuse/core@9.13.0':
  317. resolution: {integrity: sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==}
  318. '@vueuse/metadata@9.13.0':
  319. resolution: {integrity: sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==}
  320. '@vueuse/shared@9.13.0':
  321. resolution: {integrity: sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==}
  322. '@wangeditor/basic-modules@1.1.7':
  323. resolution: {integrity: sha512-cY9CPkLJaqF05STqfpZKWG4LpxTMeGSIIF1fHvfm/mz+JXatCagjdkbxdikOuKYlxDdeqvOeBmsUBItufDLXZg==}
  324. peerDependencies:
  325. '@wangeditor/core': 1.x
  326. dom7: ^3.0.0
  327. lodash.throttle: ^4.1.1
  328. nanoid: ^3.2.0
  329. slate: ^0.72.0
  330. snabbdom: ^3.1.0
  331. '@wangeditor/code-highlight@1.0.3':
  332. resolution: {integrity: sha512-iazHwO14XpCuIWJNTQTikqUhGKyqj+dUNWJ9288Oym9M2xMVHvnsOmDU2sgUDWVy+pOLojReMPgXCsvvNlOOhw==}
  333. peerDependencies:
  334. '@wangeditor/core': 1.x
  335. dom7: ^3.0.0
  336. slate: ^0.72.0
  337. snabbdom: ^3.1.0
  338. '@wangeditor/core@1.1.19':
  339. resolution: {integrity: sha512-KevkB47+7GhVszyYF2pKGKtCSj/YzmClsD03C3zTt+9SR2XWT5T0e3yQqg8baZpcMvkjs1D8Dv4fk8ok/UaS2Q==}
  340. peerDependencies:
  341. '@uppy/core': ^2.1.1
  342. '@uppy/xhr-upload': ^2.0.3
  343. dom7: ^3.0.0
  344. is-hotkey: ^0.2.0
  345. lodash.camelcase: ^4.3.0
  346. lodash.clonedeep: ^4.5.0
  347. lodash.debounce: ^4.0.8
  348. lodash.foreach: ^4.5.0
  349. lodash.isequal: ^4.5.0
  350. lodash.throttle: ^4.1.1
  351. lodash.toarray: ^4.4.0
  352. nanoid: ^3.2.0
  353. slate: ^0.72.0
  354. snabbdom: ^3.1.0
  355. '@wangeditor/editor-for-vue@5.1.12':
  356. resolution: {integrity: sha512-0Ds3D8I+xnpNWezAeO7HmPRgTfUxHLMd9JKcIw+QzvSmhC5xUHbpCcLU+KLmeBKTR/zffnS5GQo6qi3GhTMJWQ==}
  357. peerDependencies:
  358. '@wangeditor/editor': '>=5.1.0'
  359. vue: ^3.0.5
  360. '@wangeditor/editor@5.1.23':
  361. resolution: {integrity: sha512-0RxfeVTuK1tktUaPROnCoFfaHVJpRAIE2zdS0mpP+vq1axVQpLjM8+fCvKzqYIkH0Pg+C+44hJpe3VVroSkEuQ==}
  362. '@wangeditor/list-module@1.0.5':
  363. resolution: {integrity: sha512-uDuYTP6DVhcYf7mF1pTlmNn5jOb4QtcVhYwSSAkyg09zqxI1qBqsfUnveeDeDqIuptSJhkh81cyxi+MF8sEPOQ==}
  364. peerDependencies:
  365. '@wangeditor/core': 1.x
  366. dom7: ^3.0.0
  367. slate: ^0.72.0
  368. snabbdom: ^3.1.0
  369. '@wangeditor/table-module@1.1.4':
  370. resolution: {integrity: sha512-5saanU9xuEocxaemGdNi9t8MCDSucnykEC6jtuiT72kt+/Hhh4nERYx1J20OPsTCCdVr7hIyQenFD1iSRkIQ6w==}
  371. peerDependencies:
  372. '@wangeditor/core': 1.x
  373. dom7: ^3.0.0
  374. lodash.isequal: ^4.5.0
  375. lodash.throttle: ^4.1.1
  376. nanoid: ^3.2.0
  377. slate: ^0.72.0
  378. snabbdom: ^3.1.0
  379. '@wangeditor/upload-image-module@1.0.2':
  380. resolution: {integrity: sha512-z81lk/v71OwPDYeQDxj6cVr81aDP90aFuywb8nPD6eQeECtOymrqRODjpO6VGvCVxVck8nUxBHtbxKtjgcwyiA==}
  381. peerDependencies:
  382. '@uppy/core': ^2.0.3
  383. '@uppy/xhr-upload': ^2.0.3
  384. '@wangeditor/basic-modules': 1.x
  385. '@wangeditor/core': 1.x
  386. dom7: ^3.0.0
  387. lodash.foreach: ^4.5.0
  388. slate: ^0.72.0
  389. snabbdom: ^3.1.0
  390. '@wangeditor/video-module@1.1.4':
  391. resolution: {integrity: sha512-ZdodDPqKQrgx3IwWu4ZiQmXI8EXZ3hm2/fM6E3t5dB8tCaIGWQZhmqd6P5knfkRAd3z2+YRSRbxOGfoRSp/rLg==}
  392. peerDependencies:
  393. '@uppy/core': ^2.1.4
  394. '@uppy/xhr-upload': ^2.0.7
  395. '@wangeditor/core': 1.x
  396. dom7: ^3.0.0
  397. nanoid: ^3.2.0
  398. slate: ^0.72.0
  399. snabbdom: ^3.1.0
  400. ansi-regex@5.0.1:
  401. resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
  402. engines: {node: '>=8'}
  403. ansi-styles@4.3.0:
  404. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  405. engines: {node: '>=8'}
  406. async-validator@4.2.5:
  407. resolution: {integrity: sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==}
  408. asynckit@0.4.0:
  409. resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
  410. axios-jsonp@1.0.4:
  411. resolution: {integrity: sha512-KI5Fc4ery6DR+oneXG09hPZfGuNUW8Lblhe750h53Z0Eh5MRsrHn49YitDU4RsMk0HV+12zcvL2Q51QkOLGdIQ==}
  412. axios@1.13.2:
  413. resolution: {integrity: sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==}
  414. braces@3.0.3:
  415. resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
  416. engines: {node: '>=8'}
  417. call-bind-apply-helpers@1.0.2:
  418. resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
  419. engines: {node: '>= 0.4'}
  420. camelcase@5.3.1:
  421. resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
  422. engines: {node: '>=6'}
  423. chokidar@4.0.3:
  424. resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
  425. engines: {node: '>= 14.16.0'}
  426. cliui@6.0.0:
  427. resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==}
  428. color-convert@2.0.1:
  429. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  430. engines: {node: '>=7.0.0'}
  431. color-name@1.1.4:
  432. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  433. combined-stream@1.0.8:
  434. resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
  435. engines: {node: '>= 0.8'}
  436. compute-scroll-into-view@1.0.20:
  437. resolution: {integrity: sha512-UCB0ioiyj8CRjtrvaceBLqqhZCVP+1B8+NWQhmdsm0VXOJtobBCf1dBQmebCCo34qZmUwZfIH2MZLqNHazrfjg==}
  438. csstype@3.2.3:
  439. resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
  440. d@1.0.2:
  441. resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==}
  442. engines: {node: '>=0.12'}
  443. dayjs@1.11.19:
  444. resolution: {integrity: sha512-t5EcLVS6QPBNqM2z8fakk/NKel+Xzshgt8FFKAn+qwlD1pzZWxh0nVCrvFK7ZDb6XucZeF9z8C7CBWTRIVApAw==}
  445. decamelize@1.2.0:
  446. resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
  447. engines: {node: '>=0.10.0'}
  448. delayed-stream@1.0.0:
  449. resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
  450. engines: {node: '>=0.4.0'}
  451. detect-libc@1.0.3:
  452. resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==}
  453. engines: {node: '>=0.10'}
  454. hasBin: true
  455. dijkstrajs@1.0.3:
  456. resolution: {integrity: sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==}
  457. dom7@3.0.0:
  458. resolution: {integrity: sha512-oNlcUdHsC4zb7Msx7JN3K0Nro1dzJ48knvBOnDPKJ2GV9wl1i5vydJZUSyOfrkKFDZEud/jBsTk92S/VGSAe/g==}
  459. dunder-proto@1.0.1:
  460. resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
  461. engines: {node: '>= 0.4'}
  462. element-plus@2.11.9:
  463. resolution: {integrity: sha512-yTckX+fMGDGiBHVL1gpwfmjEc8P8OwuyU5ZX3f4FhMy2OdC2Y+OwQYWUXmuB+jFMukuSdnGYXYgHq6muBjSxTg==}
  464. peerDependencies:
  465. vue: ^3.2.0
  466. emoji-regex@8.0.0:
  467. resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
  468. entities@4.5.0:
  469. resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
  470. engines: {node: '>=0.12'}
  471. es-define-property@1.0.1:
  472. resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
  473. engines: {node: '>= 0.4'}
  474. es-errors@1.3.0:
  475. resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
  476. engines: {node: '>= 0.4'}
  477. es-object-atoms@1.1.1:
  478. resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
  479. engines: {node: '>= 0.4'}
  480. es-set-tostringtag@2.1.0:
  481. resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
  482. engines: {node: '>= 0.4'}
  483. es5-ext@0.10.64:
  484. resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==}
  485. engines: {node: '>=0.10'}
  486. es6-iterator@2.0.3:
  487. resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==}
  488. es6-symbol@3.1.4:
  489. resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==}
  490. engines: {node: '>=0.12'}
  491. esbuild@0.18.20:
  492. resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==}
  493. engines: {node: '>=12'}
  494. hasBin: true
  495. esniff@2.0.1:
  496. resolution: {integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==}
  497. engines: {node: '>=0.10'}
  498. estree-walker@2.0.2:
  499. resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
  500. event-emitter@0.3.5:
  501. resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==}
  502. ext@1.7.0:
  503. resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==}
  504. fill-range@7.1.1:
  505. resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
  506. engines: {node: '>=8'}
  507. find-up@4.1.0:
  508. resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
  509. engines: {node: '>=8'}
  510. follow-redirects@1.15.11:
  511. resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
  512. engines: {node: '>=4.0'}
  513. peerDependencies:
  514. debug: '*'
  515. peerDependenciesMeta:
  516. debug:
  517. optional: true
  518. form-data@4.0.5:
  519. resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==}
  520. engines: {node: '>= 6'}
  521. fsevents@2.3.3:
  522. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  523. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  524. os: [darwin]
  525. function-bind@1.1.2:
  526. resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
  527. get-caller-file@2.0.5:
  528. resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
  529. engines: {node: 6.* || 8.* || >= 10.*}
  530. get-intrinsic@1.3.0:
  531. resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
  532. engines: {node: '>= 0.4'}
  533. get-proto@1.0.1:
  534. resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
  535. engines: {node: '>= 0.4'}
  536. gopd@1.2.0:
  537. resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
  538. engines: {node: '>= 0.4'}
  539. has-symbols@1.1.0:
  540. resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
  541. engines: {node: '>= 0.4'}
  542. has-tostringtag@1.0.2:
  543. resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
  544. engines: {node: '>= 0.4'}
  545. hasown@2.0.2:
  546. resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
  547. engines: {node: '>= 0.4'}
  548. html-void-elements@2.0.1:
  549. resolution: {integrity: sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==}
  550. i18next@20.6.1:
  551. resolution: {integrity: sha512-yCMYTMEJ9ihCwEQQ3phLo7I/Pwycf8uAx+sRHwwk5U9Aui/IZYgQRyMqXafQOw5QQ7DM1Z+WyEXWIqSuJHhG2A==}
  552. immer@9.0.21:
  553. resolution: {integrity: sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==}
  554. immutable@5.1.4:
  555. resolution: {integrity: sha512-p6u1bG3YSnINT5RQmx/yRZBpenIl30kVxkTLDyHLIMk0gict704Q9n+thfDI7lTRm9vXdDYutVzXhzcThxTnXA==}
  556. is-extglob@2.1.1:
  557. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  558. engines: {node: '>=0.10.0'}
  559. is-fullwidth-code-point@3.0.0:
  560. resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
  561. engines: {node: '>=8'}
  562. is-glob@4.0.3:
  563. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  564. engines: {node: '>=0.10.0'}
  565. is-hotkey@0.2.0:
  566. resolution: {integrity: sha512-UknnZK4RakDmTgz4PI1wIph5yxSs/mvChWs9ifnlXsKuXgWmOkY/hAE0H/k2MIqH0RlRye0i1oC07MCRSD28Mw==}
  567. is-number@7.0.0:
  568. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  569. engines: {node: '>=0.12.0'}
  570. is-plain-object@5.0.0:
  571. resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
  572. engines: {node: '>=0.10.0'}
  573. is-url@1.2.4:
  574. resolution: {integrity: sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==}
  575. locate-path@5.0.0:
  576. resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
  577. engines: {node: '>=8'}
  578. lodash-es@4.17.21:
  579. resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==}
  580. lodash-unified@1.0.3:
  581. resolution: {integrity: sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==}
  582. peerDependencies:
  583. '@types/lodash-es': '*'
  584. lodash: '*'
  585. lodash-es: '*'
  586. lodash.camelcase@4.3.0:
  587. resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==}
  588. lodash.clonedeep@4.5.0:
  589. resolution: {integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==}
  590. lodash.debounce@4.0.8:
  591. resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
  592. lodash.foreach@4.5.0:
  593. resolution: {integrity: sha512-aEXTF4d+m05rVOAUG3z4vZZ4xVexLKZGF0lIxuHZ1Hplpk/3B6Z1+/ICICYRLm7c41Z2xiejbkCkJoTlypoXhQ==}
  594. lodash.isequal@4.5.0:
  595. resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==}
  596. deprecated: This package is deprecated. Use require('node:util').isDeepStrictEqual instead.
  597. lodash.throttle@4.1.1:
  598. resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==}
  599. lodash.toarray@4.4.0:
  600. resolution: {integrity: sha512-QyffEA3i5dma5q2490+SgCvDN0pXLmRGSyAANuVi0HQ01Pkfr9fuoKQW8wm1wGBnJITs/mS7wQvS6VshUEBFCw==}
  601. lodash@4.17.21:
  602. resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
  603. magic-string@0.30.21:
  604. resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
  605. math-intrinsics@1.1.0:
  606. resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
  607. engines: {node: '>= 0.4'}
  608. memoize-one@6.0.0:
  609. resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==}
  610. micromatch@4.0.8:
  611. resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
  612. engines: {node: '>=8.6'}
  613. mime-db@1.52.0:
  614. resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
  615. engines: {node: '>= 0.6'}
  616. mime-match@1.0.2:
  617. resolution: {integrity: sha512-VXp/ugGDVh3eCLOBCiHZMYWQaTNUHv2IJrut+yXA6+JbLPXHglHwfS/5A5L0ll+jkCY7fIzRJcH6OIunF+c6Cg==}
  618. mime-types@2.1.35:
  619. resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
  620. engines: {node: '>= 0.6'}
  621. namespace-emitter@2.0.1:
  622. resolution: {integrity: sha512-N/sMKHniSDJBjfrkbS/tpkPj4RAbvW3mr8UAzvlMHyun93XEm83IAvhWtJVHo+RHn/oO8Job5YN4b+wRjSVp5g==}
  623. nanoid@3.3.11:
  624. resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
  625. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  626. hasBin: true
  627. next-tick@1.1.0:
  628. resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==}
  629. node-addon-api@7.1.1:
  630. resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
  631. normalize-wheel-es@1.2.0:
  632. resolution: {integrity: sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==}
  633. p-limit@2.3.0:
  634. resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
  635. engines: {node: '>=6'}
  636. p-locate@4.1.0:
  637. resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
  638. engines: {node: '>=8'}
  639. p-try@2.2.0:
  640. resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
  641. engines: {node: '>=6'}
  642. path-exists@4.0.0:
  643. resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
  644. engines: {node: '>=8'}
  645. picocolors@1.1.1:
  646. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  647. picomatch@2.3.1:
  648. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  649. engines: {node: '>=8.6'}
  650. pngjs@5.0.0:
  651. resolution: {integrity: sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==}
  652. engines: {node: '>=10.13.0'}
  653. pnpm@10.24.0:
  654. resolution: {integrity: sha512-Af+K5xtEGZA7ZcYPstydNM+LtuBtA73hEu8496NNaQTEJLpmvqXNzxKJAjC/OflYBHMUDtnJRv7zKLblI4o0Wg==}
  655. engines: {node: '>=18.12'}
  656. hasBin: true
  657. postcss@8.5.6:
  658. resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
  659. engines: {node: ^10 || ^12 || >=14}
  660. preact@10.28.0:
  661. resolution: {integrity: sha512-rytDAoiXr3+t6OIP3WGlDd0ouCUG1iCWzkcY3++Nreuoi17y6T5i/zRhe6uYfoVcxq6YU+sBtJouuRDsq8vvqA==}
  662. prismjs@1.30.0:
  663. resolution: {integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==}
  664. engines: {node: '>=6'}
  665. proxy-from-env@1.1.0:
  666. resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
  667. qrcode@1.5.4:
  668. resolution: {integrity: sha512-1ca71Zgiu6ORjHqFBDpnSMTR2ReToX4l1Au1VFLyVeBTFavzQnv5JxMFr3ukHVKpSrSA2MCk0lNJSykjUfz7Zg==}
  669. engines: {node: '>=10.13.0'}
  670. hasBin: true
  671. readdirp@4.1.2:
  672. resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
  673. engines: {node: '>= 14.18.0'}
  674. require-directory@2.1.1:
  675. resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
  676. engines: {node: '>=0.10.0'}
  677. require-main-filename@2.0.0:
  678. resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
  679. rollup@3.29.5:
  680. resolution: {integrity: sha512-GVsDdsbJzzy4S/v3dqWPJ7EfvZJfCHiDqe80IyrF59LYuP+e6U1LJoUqeuqRbwAWoMNoXivMNeNAOf5E22VA1w==}
  681. engines: {node: '>=14.18.0', npm: '>=8.0.0'}
  682. hasBin: true
  683. sass@1.94.2:
  684. resolution: {integrity: sha512-N+7WK20/wOr7CzA2snJcUSSNTCzeCGUTFY3OgeQP3mZ1aj9NMQ0mSTXwlrnd89j33zzQJGqIN52GIOmYrfq46A==}
  685. engines: {node: '>=14.0.0'}
  686. hasBin: true
  687. scroll-into-view-if-needed@2.2.31:
  688. resolution: {integrity: sha512-dGCXy99wZQivjmjIqihaBQNjryrz5rueJY7eHfTdyWEiR4ttYpsajb14rn9s5d4DY4EcY6+4+U/maARBXJedkA==}
  689. set-blocking@2.0.0:
  690. resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
  691. slate-history@0.66.0:
  692. resolution: {integrity: sha512-6MWpxGQZiMvSINlCbMW43E2YBSVMCMCIwQfBzGssjWw4kb0qfvj0pIdblWNRQZD0hR6WHP+dHHgGSeVdMWzfng==}
  693. peerDependencies:
  694. slate: '>=0.65.3'
  695. slate@0.72.8:
  696. resolution: {integrity: sha512-/nJwTswQgnRurpK+bGJFH1oM7naD5qDmHd89JyiKNT2oOKD8marW0QSBtuFnwEbL5aGCS8AmrhXQgNOsn4osAw==}
  697. snabbdom@3.6.3:
  698. resolution: {integrity: sha512-W2lHLLw2qR2Vv0DcMmcxXqcfdBaIcoN+y/86SmHv8fn4DazEQSH6KN3TjZcWvwujW56OHiiirsbHWZb4vx/0fg==}
  699. engines: {node: '>=12.17.0'}
  700. source-map-js@1.2.1:
  701. resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  702. engines: {node: '>=0.10.0'}
  703. ssr-window@3.0.0:
  704. resolution: {integrity: sha512-q+8UfWDg9Itrg0yWK7oe5p/XRCJpJF9OBtXfOPgSJl+u3Xd5KI328RUEvUqSMVM9CiQUEf1QdBzJMkYGErj9QA==}
  705. string-width@4.2.3:
  706. resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
  707. engines: {node: '>=8'}
  708. strip-ansi@6.0.1:
  709. resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
  710. engines: {node: '>=8'}
  711. tiny-warning@1.0.3:
  712. resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==}
  713. to-regex-range@5.0.1:
  714. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  715. engines: {node: '>=8.0'}
  716. tslib@2.8.1:
  717. resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
  718. type@2.7.3:
  719. resolution: {integrity: sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==}
  720. vite@4.5.14:
  721. resolution: {integrity: sha512-+v57oAaoYNnO3hIu5Z/tJRZjq5aHM2zDve9YZ8HngVHbhk66RStobhb1sqPMIPEleV6cNKYK4eGrAbE9Ulbl2g==}
  722. engines: {node: ^14.18.0 || >=16.0.0}
  723. hasBin: true
  724. peerDependencies:
  725. '@types/node': '>= 14'
  726. less: '*'
  727. lightningcss: ^1.21.0
  728. sass: '*'
  729. stylus: '*'
  730. sugarss: '*'
  731. terser: ^5.4.0
  732. peerDependenciesMeta:
  733. '@types/node':
  734. optional: true
  735. less:
  736. optional: true
  737. lightningcss:
  738. optional: true
  739. sass:
  740. optional: true
  741. stylus:
  742. optional: true
  743. sugarss:
  744. optional: true
  745. terser:
  746. optional: true
  747. vue-demi@0.14.10:
  748. resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==}
  749. engines: {node: '>=12'}
  750. hasBin: true
  751. peerDependencies:
  752. '@vue/composition-api': ^1.0.0-rc.1
  753. vue: ^3.0.0-0 || ^2.6.0
  754. peerDependenciesMeta:
  755. '@vue/composition-api':
  756. optional: true
  757. vue-qrcode@2.2.2:
  758. resolution: {integrity: sha512-SbrXq/mSb1g2tbDyXPe9gy9KiMYsvxWKRErlpij1BqiFoHwQckheZV63CTw6yRLLUVG2RXAVlX+APkpdCK7SQQ==}
  759. peerDependencies:
  760. qrcode: ^1.0.0
  761. vue: ^2.7.0 || ^3.0.0
  762. vue-router@4.6.3:
  763. resolution: {integrity: sha512-ARBedLm9YlbvQomnmq91Os7ck6efydTSpRP3nuOKCvgJOHNrhRoJDSKtee8kcL1Vf7nz6U+PMBL+hTvR3bTVQg==}
  764. peerDependencies:
  765. vue: ^3.5.0
  766. vue@3.5.25:
  767. resolution: {integrity: sha512-YLVdgv2K13WJ6n+kD5owehKtEXwdwXuj2TTyJMsO7pSeKw2bfRNZGjhB7YzrpbMYj5b5QsUebHpOqR3R3ziy/g==}
  768. peerDependencies:
  769. typescript: '*'
  770. peerDependenciesMeta:
  771. typescript:
  772. optional: true
  773. vuex@4.1.0:
  774. resolution: {integrity: sha512-hmV6UerDrPcgbSy9ORAtNXDr9M4wlNP4pEFKye4ujJF8oqgFFuxDCdOLS3eNoRTtq5O3hoBDh9Doj1bQMYHRbQ==}
  775. peerDependencies:
  776. vue: ^3.2.0
  777. which-module@2.0.1:
  778. resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==}
  779. wildcard@1.1.2:
  780. resolution: {integrity: sha512-DXukZJxpHA8LuotRwL0pP1+rS6CS7FF2qStDDE1C7DDg2rLud2PXRMuEDYIPhgEezwnlHNL4c+N6MfMTjCGTng==}
  781. wrap-ansi@6.2.0:
  782. resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
  783. engines: {node: '>=8'}
  784. y18n@4.0.3:
  785. resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==}
  786. yargs-parser@18.1.3:
  787. resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==}
  788. engines: {node: '>=6'}
  789. yargs@15.4.1:
  790. resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==}
  791. engines: {node: '>=8'}
  792. snapshots:
  793. '@babel/helper-string-parser@7.27.1': {}
  794. '@babel/helper-validator-identifier@7.28.5': {}
  795. '@babel/parser@7.28.5':
  796. dependencies:
  797. '@babel/types': 7.28.5
  798. '@babel/runtime@7.28.4': {}
  799. '@babel/types@7.28.5':
  800. dependencies:
  801. '@babel/helper-string-parser': 7.27.1
  802. '@babel/helper-validator-identifier': 7.28.5
  803. '@ctrl/tinycolor@3.6.1': {}
  804. '@element-plus/icons-vue@2.3.2(vue@3.5.25)':
  805. dependencies:
  806. vue: 3.5.25
  807. '@esbuild/android-arm64@0.18.20':
  808. optional: true
  809. '@esbuild/android-arm@0.18.20':
  810. optional: true
  811. '@esbuild/android-x64@0.18.20':
  812. optional: true
  813. '@esbuild/darwin-arm64@0.18.20':
  814. optional: true
  815. '@esbuild/darwin-x64@0.18.20':
  816. optional: true
  817. '@esbuild/freebsd-arm64@0.18.20':
  818. optional: true
  819. '@esbuild/freebsd-x64@0.18.20':
  820. optional: true
  821. '@esbuild/linux-arm64@0.18.20':
  822. optional: true
  823. '@esbuild/linux-arm@0.18.20':
  824. optional: true
  825. '@esbuild/linux-ia32@0.18.20':
  826. optional: true
  827. '@esbuild/linux-loong64@0.18.20':
  828. optional: true
  829. '@esbuild/linux-mips64el@0.18.20':
  830. optional: true
  831. '@esbuild/linux-ppc64@0.18.20':
  832. optional: true
  833. '@esbuild/linux-riscv64@0.18.20':
  834. optional: true
  835. '@esbuild/linux-s390x@0.18.20':
  836. optional: true
  837. '@esbuild/linux-x64@0.18.20':
  838. optional: true
  839. '@esbuild/netbsd-x64@0.18.20':
  840. optional: true
  841. '@esbuild/openbsd-x64@0.18.20':
  842. optional: true
  843. '@esbuild/sunos-x64@0.18.20':
  844. optional: true
  845. '@esbuild/win32-arm64@0.18.20':
  846. optional: true
  847. '@esbuild/win32-ia32@0.18.20':
  848. optional: true
  849. '@esbuild/win32-x64@0.18.20':
  850. optional: true
  851. '@floating-ui/core@1.7.3':
  852. dependencies:
  853. '@floating-ui/utils': 0.2.10
  854. '@floating-ui/dom@1.7.4':
  855. dependencies:
  856. '@floating-ui/core': 1.7.3
  857. '@floating-ui/utils': 0.2.10
  858. '@floating-ui/utils@0.2.10': {}
  859. '@jridgewell/sourcemap-codec@1.5.5': {}
  860. '@parcel/watcher-android-arm64@2.5.1':
  861. optional: true
  862. '@parcel/watcher-darwin-arm64@2.5.1':
  863. optional: true
  864. '@parcel/watcher-darwin-x64@2.5.1':
  865. optional: true
  866. '@parcel/watcher-freebsd-x64@2.5.1':
  867. optional: true
  868. '@parcel/watcher-linux-arm-glibc@2.5.1':
  869. optional: true
  870. '@parcel/watcher-linux-arm-musl@2.5.1':
  871. optional: true
  872. '@parcel/watcher-linux-arm64-glibc@2.5.1':
  873. optional: true
  874. '@parcel/watcher-linux-arm64-musl@2.5.1':
  875. optional: true
  876. '@parcel/watcher-linux-x64-glibc@2.5.1':
  877. optional: true
  878. '@parcel/watcher-linux-x64-musl@2.5.1':
  879. optional: true
  880. '@parcel/watcher-win32-arm64@2.5.1':
  881. optional: true
  882. '@parcel/watcher-win32-ia32@2.5.1':
  883. optional: true
  884. '@parcel/watcher-win32-x64@2.5.1':
  885. optional: true
  886. '@parcel/watcher@2.5.1':
  887. dependencies:
  888. detect-libc: 1.0.3
  889. is-glob: 4.0.3
  890. micromatch: 4.0.8
  891. node-addon-api: 7.1.1
  892. optionalDependencies:
  893. '@parcel/watcher-android-arm64': 2.5.1
  894. '@parcel/watcher-darwin-arm64': 2.5.1
  895. '@parcel/watcher-darwin-x64': 2.5.1
  896. '@parcel/watcher-freebsd-x64': 2.5.1
  897. '@parcel/watcher-linux-arm-glibc': 2.5.1
  898. '@parcel/watcher-linux-arm-musl': 2.5.1
  899. '@parcel/watcher-linux-arm64-glibc': 2.5.1
  900. '@parcel/watcher-linux-arm64-musl': 2.5.1
  901. '@parcel/watcher-linux-x64-glibc': 2.5.1
  902. '@parcel/watcher-linux-x64-musl': 2.5.1
  903. '@parcel/watcher-win32-arm64': 2.5.1
  904. '@parcel/watcher-win32-ia32': 2.5.1
  905. '@parcel/watcher-win32-x64': 2.5.1
  906. optional: true
  907. '@sxzz/popperjs-es@2.11.7': {}
  908. '@transloadit/prettier-bytes@0.0.7': {}
  909. '@types/event-emitter@0.3.5': {}
  910. '@types/lodash-es@4.17.12':
  911. dependencies:
  912. '@types/lodash': 4.17.21
  913. '@types/lodash@4.17.21': {}
  914. '@types/web-bluetooth@0.0.16': {}
  915. '@uppy/companion-client@2.2.2':
  916. dependencies:
  917. '@uppy/utils': 4.1.3
  918. namespace-emitter: 2.0.1
  919. '@uppy/core@2.3.4':
  920. dependencies:
  921. '@transloadit/prettier-bytes': 0.0.7
  922. '@uppy/store-default': 2.1.1
  923. '@uppy/utils': 4.1.3
  924. lodash.throttle: 4.1.1
  925. mime-match: 1.0.2
  926. namespace-emitter: 2.0.1
  927. nanoid: 3.3.11
  928. preact: 10.28.0
  929. '@uppy/store-default@2.1.1': {}
  930. '@uppy/utils@4.1.3':
  931. dependencies:
  932. lodash.throttle: 4.1.1
  933. '@uppy/xhr-upload@2.1.3(@uppy/core@2.3.4)':
  934. dependencies:
  935. '@uppy/companion-client': 2.2.2
  936. '@uppy/core': 2.3.4
  937. '@uppy/utils': 4.1.3
  938. nanoid: 3.3.11
  939. '@vitejs/plugin-vue@4.6.2(vite@4.5.14(sass@1.94.2))(vue@3.5.25)':
  940. dependencies:
  941. vite: 4.5.14(sass@1.94.2)
  942. vue: 3.5.25
  943. '@vue/compiler-core@3.5.25':
  944. dependencies:
  945. '@babel/parser': 7.28.5
  946. '@vue/shared': 3.5.25
  947. entities: 4.5.0
  948. estree-walker: 2.0.2
  949. source-map-js: 1.2.1
  950. '@vue/compiler-dom@3.5.25':
  951. dependencies:
  952. '@vue/compiler-core': 3.5.25
  953. '@vue/shared': 3.5.25
  954. '@vue/compiler-sfc@3.5.25':
  955. dependencies:
  956. '@babel/parser': 7.28.5
  957. '@vue/compiler-core': 3.5.25
  958. '@vue/compiler-dom': 3.5.25
  959. '@vue/compiler-ssr': 3.5.25
  960. '@vue/shared': 3.5.25
  961. estree-walker: 2.0.2
  962. magic-string: 0.30.21
  963. postcss: 8.5.6
  964. source-map-js: 1.2.1
  965. '@vue/compiler-ssr@3.5.25':
  966. dependencies:
  967. '@vue/compiler-dom': 3.5.25
  968. '@vue/shared': 3.5.25
  969. '@vue/devtools-api@6.6.4': {}
  970. '@vue/reactivity@3.5.25':
  971. dependencies:
  972. '@vue/shared': 3.5.25
  973. '@vue/runtime-core@3.5.25':
  974. dependencies:
  975. '@vue/reactivity': 3.5.25
  976. '@vue/shared': 3.5.25
  977. '@vue/runtime-dom@3.5.25':
  978. dependencies:
  979. '@vue/reactivity': 3.5.25
  980. '@vue/runtime-core': 3.5.25
  981. '@vue/shared': 3.5.25
  982. csstype: 3.2.3
  983. '@vue/server-renderer@3.5.25(vue@3.5.25)':
  984. dependencies:
  985. '@vue/compiler-ssr': 3.5.25
  986. '@vue/shared': 3.5.25
  987. vue: 3.5.25
  988. '@vue/shared@3.5.25': {}
  989. '@vueuse/core@9.13.0(vue@3.5.25)':
  990. dependencies:
  991. '@types/web-bluetooth': 0.0.16
  992. '@vueuse/metadata': 9.13.0
  993. '@vueuse/shared': 9.13.0(vue@3.5.25)
  994. vue-demi: 0.14.10(vue@3.5.25)
  995. transitivePeerDependencies:
  996. - '@vue/composition-api'
  997. - vue
  998. '@vueuse/metadata@9.13.0': {}
  999. '@vueuse/shared@9.13.0(vue@3.5.25)':
  1000. dependencies:
  1001. vue-demi: 0.14.10(vue@3.5.25)
  1002. transitivePeerDependencies:
  1003. - '@vue/composition-api'
  1004. - vue
  1005. '@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.3))(dom7@3.0.0)(lodash.throttle@4.1.1)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.3)':
  1006. dependencies:
  1007. '@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.3)
  1008. dom7: 3.0.0
  1009. is-url: 1.2.4
  1010. lodash.throttle: 4.1.1
  1011. nanoid: 3.3.11
  1012. slate: 0.72.8
  1013. snabbdom: 3.6.3
  1014. '@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.3))(dom7@3.0.0)(slate@0.72.8)(snabbdom@3.6.3)':
  1015. dependencies:
  1016. '@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.3)
  1017. dom7: 3.0.0
  1018. prismjs: 1.30.0
  1019. slate: 0.72.8
  1020. snabbdom: 3.6.3
  1021. '@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.3)':
  1022. dependencies:
  1023. '@types/event-emitter': 0.3.5
  1024. '@uppy/core': 2.3.4
  1025. '@uppy/xhr-upload': 2.1.3(@uppy/core@2.3.4)
  1026. dom7: 3.0.0
  1027. event-emitter: 0.3.5
  1028. html-void-elements: 2.0.1
  1029. i18next: 20.6.1
  1030. is-hotkey: 0.2.0
  1031. lodash.camelcase: 4.3.0
  1032. lodash.clonedeep: 4.5.0
  1033. lodash.debounce: 4.0.8
  1034. lodash.foreach: 4.5.0
  1035. lodash.isequal: 4.5.0
  1036. lodash.throttle: 4.1.1
  1037. lodash.toarray: 4.4.0
  1038. nanoid: 3.3.11
  1039. scroll-into-view-if-needed: 2.2.31
  1040. slate: 0.72.8
  1041. slate-history: 0.66.0(slate@0.72.8)
  1042. snabbdom: 3.6.3
  1043. '@wangeditor/editor-for-vue@5.1.12(@wangeditor/editor@5.1.23)(vue@3.5.25)':
  1044. dependencies:
  1045. '@wangeditor/editor': 5.1.23
  1046. vue: 3.5.25
  1047. '@wangeditor/editor@5.1.23':
  1048. dependencies:
  1049. '@uppy/core': 2.3.4
  1050. '@uppy/xhr-upload': 2.1.3(@uppy/core@2.3.4)
  1051. '@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.3))(dom7@3.0.0)(lodash.throttle@4.1.1)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.3)
  1052. '@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.3))(dom7@3.0.0)(slate@0.72.8)(snabbdom@3.6.3)
  1053. '@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.3)
  1054. '@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.3))(dom7@3.0.0)(slate@0.72.8)(snabbdom@3.6.3)
  1055. '@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.3))(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.3)
  1056. '@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.3))(dom7@3.0.0)(lodash.throttle@4.1.1)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.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.3))(dom7@3.0.0)(lodash.foreach@4.5.0)(slate@0.72.8)(snabbdom@3.6.3)
  1057. '@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.3))(dom7@3.0.0)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.3)
  1058. dom7: 3.0.0
  1059. is-hotkey: 0.2.0
  1060. lodash.camelcase: 4.3.0
  1061. lodash.clonedeep: 4.5.0
  1062. lodash.debounce: 4.0.8
  1063. lodash.foreach: 4.5.0
  1064. lodash.isequal: 4.5.0
  1065. lodash.throttle: 4.1.1
  1066. lodash.toarray: 4.4.0
  1067. nanoid: 3.3.11
  1068. slate: 0.72.8
  1069. snabbdom: 3.6.3
  1070. '@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.3))(dom7@3.0.0)(slate@0.72.8)(snabbdom@3.6.3)':
  1071. dependencies:
  1072. '@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.3)
  1073. dom7: 3.0.0
  1074. slate: 0.72.8
  1075. snabbdom: 3.6.3
  1076. '@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.3))(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.3)':
  1077. dependencies:
  1078. '@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.3)
  1079. dom7: 3.0.0
  1080. lodash.isequal: 4.5.0
  1081. lodash.throttle: 4.1.1
  1082. nanoid: 3.3.11
  1083. slate: 0.72.8
  1084. snabbdom: 3.6.3
  1085. '@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.3))(dom7@3.0.0)(lodash.throttle@4.1.1)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.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.3))(dom7@3.0.0)(lodash.foreach@4.5.0)(slate@0.72.8)(snabbdom@3.6.3)':
  1086. dependencies:
  1087. '@uppy/core': 2.3.4
  1088. '@uppy/xhr-upload': 2.1.3(@uppy/core@2.3.4)
  1089. '@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.3))(dom7@3.0.0)(lodash.throttle@4.1.1)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.3)
  1090. '@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.3)
  1091. dom7: 3.0.0
  1092. lodash.foreach: 4.5.0
  1093. slate: 0.72.8
  1094. snabbdom: 3.6.3
  1095. '@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.3))(dom7@3.0.0)(nanoid@3.3.11)(slate@0.72.8)(snabbdom@3.6.3)':
  1096. dependencies:
  1097. '@uppy/core': 2.3.4
  1098. '@uppy/xhr-upload': 2.1.3(@uppy/core@2.3.4)
  1099. '@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.3)
  1100. dom7: 3.0.0
  1101. nanoid: 3.3.11
  1102. slate: 0.72.8
  1103. snabbdom: 3.6.3
  1104. ansi-regex@5.0.1: {}
  1105. ansi-styles@4.3.0:
  1106. dependencies:
  1107. color-convert: 2.0.1
  1108. async-validator@4.2.5: {}
  1109. asynckit@0.4.0: {}
  1110. axios-jsonp@1.0.4: {}
  1111. axios@1.13.2:
  1112. dependencies:
  1113. follow-redirects: 1.15.11
  1114. form-data: 4.0.5
  1115. proxy-from-env: 1.1.0
  1116. transitivePeerDependencies:
  1117. - debug
  1118. braces@3.0.3:
  1119. dependencies:
  1120. fill-range: 7.1.1
  1121. optional: true
  1122. call-bind-apply-helpers@1.0.2:
  1123. dependencies:
  1124. es-errors: 1.3.0
  1125. function-bind: 1.1.2
  1126. camelcase@5.3.1: {}
  1127. chokidar@4.0.3:
  1128. dependencies:
  1129. readdirp: 4.1.2
  1130. cliui@6.0.0:
  1131. dependencies:
  1132. string-width: 4.2.3
  1133. strip-ansi: 6.0.1
  1134. wrap-ansi: 6.2.0
  1135. color-convert@2.0.1:
  1136. dependencies:
  1137. color-name: 1.1.4
  1138. color-name@1.1.4: {}
  1139. combined-stream@1.0.8:
  1140. dependencies:
  1141. delayed-stream: 1.0.0
  1142. compute-scroll-into-view@1.0.20: {}
  1143. csstype@3.2.3: {}
  1144. d@1.0.2:
  1145. dependencies:
  1146. es5-ext: 0.10.64
  1147. type: 2.7.3
  1148. dayjs@1.11.19: {}
  1149. decamelize@1.2.0: {}
  1150. delayed-stream@1.0.0: {}
  1151. detect-libc@1.0.3:
  1152. optional: true
  1153. dijkstrajs@1.0.3: {}
  1154. dom7@3.0.0:
  1155. dependencies:
  1156. ssr-window: 3.0.0
  1157. dunder-proto@1.0.1:
  1158. dependencies:
  1159. call-bind-apply-helpers: 1.0.2
  1160. es-errors: 1.3.0
  1161. gopd: 1.2.0
  1162. element-plus@2.11.9(vue@3.5.25):
  1163. dependencies:
  1164. '@ctrl/tinycolor': 3.6.1
  1165. '@element-plus/icons-vue': 2.3.2(vue@3.5.25)
  1166. '@floating-ui/dom': 1.7.4
  1167. '@popperjs/core': '@sxzz/popperjs-es@2.11.7'
  1168. '@types/lodash': 4.17.21
  1169. '@types/lodash-es': 4.17.12
  1170. '@vueuse/core': 9.13.0(vue@3.5.25)
  1171. async-validator: 4.2.5
  1172. dayjs: 1.11.19
  1173. lodash: 4.17.21
  1174. lodash-es: 4.17.21
  1175. lodash-unified: 1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.21)(lodash@4.17.21)
  1176. memoize-one: 6.0.0
  1177. normalize-wheel-es: 1.2.0
  1178. vue: 3.5.25
  1179. transitivePeerDependencies:
  1180. - '@vue/composition-api'
  1181. emoji-regex@8.0.0: {}
  1182. entities@4.5.0: {}
  1183. es-define-property@1.0.1: {}
  1184. es-errors@1.3.0: {}
  1185. es-object-atoms@1.1.1:
  1186. dependencies:
  1187. es-errors: 1.3.0
  1188. es-set-tostringtag@2.1.0:
  1189. dependencies:
  1190. es-errors: 1.3.0
  1191. get-intrinsic: 1.3.0
  1192. has-tostringtag: 1.0.2
  1193. hasown: 2.0.2
  1194. es5-ext@0.10.64:
  1195. dependencies:
  1196. es6-iterator: 2.0.3
  1197. es6-symbol: 3.1.4
  1198. esniff: 2.0.1
  1199. next-tick: 1.1.0
  1200. es6-iterator@2.0.3:
  1201. dependencies:
  1202. d: 1.0.2
  1203. es5-ext: 0.10.64
  1204. es6-symbol: 3.1.4
  1205. es6-symbol@3.1.4:
  1206. dependencies:
  1207. d: 1.0.2
  1208. ext: 1.7.0
  1209. esbuild@0.18.20:
  1210. optionalDependencies:
  1211. '@esbuild/android-arm': 0.18.20
  1212. '@esbuild/android-arm64': 0.18.20
  1213. '@esbuild/android-x64': 0.18.20
  1214. '@esbuild/darwin-arm64': 0.18.20
  1215. '@esbuild/darwin-x64': 0.18.20
  1216. '@esbuild/freebsd-arm64': 0.18.20
  1217. '@esbuild/freebsd-x64': 0.18.20
  1218. '@esbuild/linux-arm': 0.18.20
  1219. '@esbuild/linux-arm64': 0.18.20
  1220. '@esbuild/linux-ia32': 0.18.20
  1221. '@esbuild/linux-loong64': 0.18.20
  1222. '@esbuild/linux-mips64el': 0.18.20
  1223. '@esbuild/linux-ppc64': 0.18.20
  1224. '@esbuild/linux-riscv64': 0.18.20
  1225. '@esbuild/linux-s390x': 0.18.20
  1226. '@esbuild/linux-x64': 0.18.20
  1227. '@esbuild/netbsd-x64': 0.18.20
  1228. '@esbuild/openbsd-x64': 0.18.20
  1229. '@esbuild/sunos-x64': 0.18.20
  1230. '@esbuild/win32-arm64': 0.18.20
  1231. '@esbuild/win32-ia32': 0.18.20
  1232. '@esbuild/win32-x64': 0.18.20
  1233. esniff@2.0.1:
  1234. dependencies:
  1235. d: 1.0.2
  1236. es5-ext: 0.10.64
  1237. event-emitter: 0.3.5
  1238. type: 2.7.3
  1239. estree-walker@2.0.2: {}
  1240. event-emitter@0.3.5:
  1241. dependencies:
  1242. d: 1.0.2
  1243. es5-ext: 0.10.64
  1244. ext@1.7.0:
  1245. dependencies:
  1246. type: 2.7.3
  1247. fill-range@7.1.1:
  1248. dependencies:
  1249. to-regex-range: 5.0.1
  1250. optional: true
  1251. find-up@4.1.0:
  1252. dependencies:
  1253. locate-path: 5.0.0
  1254. path-exists: 4.0.0
  1255. follow-redirects@1.15.11: {}
  1256. form-data@4.0.5:
  1257. dependencies:
  1258. asynckit: 0.4.0
  1259. combined-stream: 1.0.8
  1260. es-set-tostringtag: 2.1.0
  1261. hasown: 2.0.2
  1262. mime-types: 2.1.35
  1263. fsevents@2.3.3:
  1264. optional: true
  1265. function-bind@1.1.2: {}
  1266. get-caller-file@2.0.5: {}
  1267. get-intrinsic@1.3.0:
  1268. dependencies:
  1269. call-bind-apply-helpers: 1.0.2
  1270. es-define-property: 1.0.1
  1271. es-errors: 1.3.0
  1272. es-object-atoms: 1.1.1
  1273. function-bind: 1.1.2
  1274. get-proto: 1.0.1
  1275. gopd: 1.2.0
  1276. has-symbols: 1.1.0
  1277. hasown: 2.0.2
  1278. math-intrinsics: 1.1.0
  1279. get-proto@1.0.1:
  1280. dependencies:
  1281. dunder-proto: 1.0.1
  1282. es-object-atoms: 1.1.1
  1283. gopd@1.2.0: {}
  1284. has-symbols@1.1.0: {}
  1285. has-tostringtag@1.0.2:
  1286. dependencies:
  1287. has-symbols: 1.1.0
  1288. hasown@2.0.2:
  1289. dependencies:
  1290. function-bind: 1.1.2
  1291. html-void-elements@2.0.1: {}
  1292. i18next@20.6.1:
  1293. dependencies:
  1294. '@babel/runtime': 7.28.4
  1295. immer@9.0.21: {}
  1296. immutable@5.1.4: {}
  1297. is-extglob@2.1.1:
  1298. optional: true
  1299. is-fullwidth-code-point@3.0.0: {}
  1300. is-glob@4.0.3:
  1301. dependencies:
  1302. is-extglob: 2.1.1
  1303. optional: true
  1304. is-hotkey@0.2.0: {}
  1305. is-number@7.0.0:
  1306. optional: true
  1307. is-plain-object@5.0.0: {}
  1308. is-url@1.2.4: {}
  1309. locate-path@5.0.0:
  1310. dependencies:
  1311. p-locate: 4.1.0
  1312. lodash-es@4.17.21: {}
  1313. lodash-unified@1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.21)(lodash@4.17.21):
  1314. dependencies:
  1315. '@types/lodash-es': 4.17.12
  1316. lodash: 4.17.21
  1317. lodash-es: 4.17.21
  1318. lodash.camelcase@4.3.0: {}
  1319. lodash.clonedeep@4.5.0: {}
  1320. lodash.debounce@4.0.8: {}
  1321. lodash.foreach@4.5.0: {}
  1322. lodash.isequal@4.5.0: {}
  1323. lodash.throttle@4.1.1: {}
  1324. lodash.toarray@4.4.0: {}
  1325. lodash@4.17.21: {}
  1326. magic-string@0.30.21:
  1327. dependencies:
  1328. '@jridgewell/sourcemap-codec': 1.5.5
  1329. math-intrinsics@1.1.0: {}
  1330. memoize-one@6.0.0: {}
  1331. micromatch@4.0.8:
  1332. dependencies:
  1333. braces: 3.0.3
  1334. picomatch: 2.3.1
  1335. optional: true
  1336. mime-db@1.52.0: {}
  1337. mime-match@1.0.2:
  1338. dependencies:
  1339. wildcard: 1.1.2
  1340. mime-types@2.1.35:
  1341. dependencies:
  1342. mime-db: 1.52.0
  1343. namespace-emitter@2.0.1: {}
  1344. nanoid@3.3.11: {}
  1345. next-tick@1.1.0: {}
  1346. node-addon-api@7.1.1:
  1347. optional: true
  1348. normalize-wheel-es@1.2.0: {}
  1349. p-limit@2.3.0:
  1350. dependencies:
  1351. p-try: 2.2.0
  1352. p-locate@4.1.0:
  1353. dependencies:
  1354. p-limit: 2.3.0
  1355. p-try@2.2.0: {}
  1356. path-exists@4.0.0: {}
  1357. picocolors@1.1.1: {}
  1358. picomatch@2.3.1:
  1359. optional: true
  1360. pngjs@5.0.0: {}
  1361. pnpm@10.24.0: {}
  1362. postcss@8.5.6:
  1363. dependencies:
  1364. nanoid: 3.3.11
  1365. picocolors: 1.1.1
  1366. source-map-js: 1.2.1
  1367. preact@10.28.0: {}
  1368. prismjs@1.30.0: {}
  1369. proxy-from-env@1.1.0: {}
  1370. qrcode@1.5.4:
  1371. dependencies:
  1372. dijkstrajs: 1.0.3
  1373. pngjs: 5.0.0
  1374. yargs: 15.4.1
  1375. readdirp@4.1.2: {}
  1376. require-directory@2.1.1: {}
  1377. require-main-filename@2.0.0: {}
  1378. rollup@3.29.5:
  1379. optionalDependencies:
  1380. fsevents: 2.3.3
  1381. sass@1.94.2:
  1382. dependencies:
  1383. chokidar: 4.0.3
  1384. immutable: 5.1.4
  1385. source-map-js: 1.2.1
  1386. optionalDependencies:
  1387. '@parcel/watcher': 2.5.1
  1388. scroll-into-view-if-needed@2.2.31:
  1389. dependencies:
  1390. compute-scroll-into-view: 1.0.20
  1391. set-blocking@2.0.0: {}
  1392. slate-history@0.66.0(slate@0.72.8):
  1393. dependencies:
  1394. is-plain-object: 5.0.0
  1395. slate: 0.72.8
  1396. slate@0.72.8:
  1397. dependencies:
  1398. immer: 9.0.21
  1399. is-plain-object: 5.0.0
  1400. tiny-warning: 1.0.3
  1401. snabbdom@3.6.3: {}
  1402. source-map-js@1.2.1: {}
  1403. ssr-window@3.0.0: {}
  1404. string-width@4.2.3:
  1405. dependencies:
  1406. emoji-regex: 8.0.0
  1407. is-fullwidth-code-point: 3.0.0
  1408. strip-ansi: 6.0.1
  1409. strip-ansi@6.0.1:
  1410. dependencies:
  1411. ansi-regex: 5.0.1
  1412. tiny-warning@1.0.3: {}
  1413. to-regex-range@5.0.1:
  1414. dependencies:
  1415. is-number: 7.0.0
  1416. optional: true
  1417. tslib@2.8.1: {}
  1418. type@2.7.3: {}
  1419. vite@4.5.14(sass@1.94.2):
  1420. dependencies:
  1421. esbuild: 0.18.20
  1422. postcss: 8.5.6
  1423. rollup: 3.29.5
  1424. optionalDependencies:
  1425. fsevents: 2.3.3
  1426. sass: 1.94.2
  1427. vue-demi@0.14.10(vue@3.5.25):
  1428. dependencies:
  1429. vue: 3.5.25
  1430. vue-qrcode@2.2.2(qrcode@1.5.4)(vue@3.5.25):
  1431. dependencies:
  1432. qrcode: 1.5.4
  1433. tslib: 2.8.1
  1434. vue: 3.5.25
  1435. vue-router@4.6.3(vue@3.5.25):
  1436. dependencies:
  1437. '@vue/devtools-api': 6.6.4
  1438. vue: 3.5.25
  1439. vue@3.5.25:
  1440. dependencies:
  1441. '@vue/compiler-dom': 3.5.25
  1442. '@vue/compiler-sfc': 3.5.25
  1443. '@vue/runtime-dom': 3.5.25
  1444. '@vue/server-renderer': 3.5.25(vue@3.5.25)
  1445. '@vue/shared': 3.5.25
  1446. vuex@4.1.0(vue@3.5.25):
  1447. dependencies:
  1448. '@vue/devtools-api': 6.6.4
  1449. vue: 3.5.25
  1450. which-module@2.0.1: {}
  1451. wildcard@1.1.2: {}
  1452. wrap-ansi@6.2.0:
  1453. dependencies:
  1454. ansi-styles: 4.3.0
  1455. string-width: 4.2.3
  1456. strip-ansi: 6.0.1
  1457. y18n@4.0.3: {}
  1458. yargs-parser@18.1.3:
  1459. dependencies:
  1460. camelcase: 5.3.1
  1461. decamelize: 1.2.0
  1462. yargs@15.4.1:
  1463. dependencies:
  1464. cliui: 6.0.0
  1465. decamelize: 1.2.0
  1466. find-up: 4.1.0
  1467. get-caller-file: 2.0.5
  1468. require-directory: 2.1.1
  1469. require-main-filename: 2.0.0
  1470. set-blocking: 2.0.0
  1471. string-width: 4.2.3
  1472. which-module: 2.0.1
  1473. y18n: 4.0.3
  1474. yargs-parser: 18.1.3