pnpm-lock.yaml 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. '@ant-design/icons-vue':
  9. specifier: ^7.0.1
  10. version: 7.0.1(vue@3.2.47)
  11. ant-design-vue:
  12. specifier: ^4.2.6
  13. version: 4.2.6(vue@3.2.47)
  14. axios:
  15. specifier: ^0.27.2
  16. version: 0.27.2
  17. body-parser:
  18. specifier: ^1.20.3
  19. version: 1.20.3
  20. coordtransform:
  21. specifier: ^2.1.2
  22. version: 2.1.2
  23. express:
  24. specifier: ^4.21.2
  25. version: 4.21.2
  26. i18n:
  27. specifier: ^0.15.1
  28. version: 0.15.1
  29. less:
  30. specifier: ^4.1.3
  31. version: 4.3.0
  32. mitt:
  33. specifier: ^3.0.0
  34. version: 3.0.1
  35. simaqcore:
  36. specifier: ^1.2.0
  37. version: 1.2.0
  38. swiper:
  39. specifier: ^11.1.15
  40. version: 11.2.6
  41. vite-plugin-mkcert:
  42. specifier: ^1.10.1
  43. version: 1.17.8(vite@3.2.11(@types/node@18.19.87)(less@4.3.0)(sass@1.87.0))
  44. vue:
  45. specifier: 3.2.47
  46. version: 3.2.47
  47. vue-cropper:
  48. specifier: 1.0.2
  49. version: 1.0.2
  50. vue-i18n:
  51. specifier: ^11.1.1
  52. version: 11.1.4(vue@3.2.47)
  53. vue-router:
  54. specifier: ^4.1.3
  55. version: 4.5.1(vue@3.2.47)
  56. vuedraggable:
  57. specifier: ^4.1.0
  58. version: 4.1.0(vue@3.2.47)
  59. xlsx:
  60. specifier: ^0.18.5
  61. version: 0.18.5
  62. devDependencies:
  63. '@types/node':
  64. specifier: ^18.6.5
  65. version: 18.19.87
  66. '@vitejs/plugin-vue':
  67. specifier: ^3.0.0
  68. version: 3.2.0(vite@3.2.11(@types/node@18.19.87)(less@4.3.0)(sass@1.87.0))(vue@3.2.47)
  69. sass:
  70. specifier: ^1.54.3
  71. version: 1.87.0
  72. typescript:
  73. specifier: ^4.6.4
  74. version: 4.9.5
  75. vite:
  76. specifier: ^3.0.0
  77. version: 3.2.11(@types/node@18.19.87)(less@4.3.0)(sass@1.87.0)
  78. vue-tsc:
  79. specifier: ^0.38.4
  80. version: 0.38.9(typescript@4.9.5)
  81. packages:
  82. '@ant-design/colors@6.0.0':
  83. resolution: {integrity: sha512-qAZRvPzfdWHtfameEGP2Qvuf838NhergR35o+EuVyB5XvSA98xod5r4utvi4TJ3ywmevm290g9nsCG5MryrdWQ==}
  84. '@ant-design/icons-svg@4.4.2':
  85. resolution: {integrity: sha512-vHbT+zJEVzllwP+CM+ul7reTEfBR0vgxFe7+lREAsAA7YGsYpboiq2sQNeQeRvh09GfQgs/GyFEvZpJ9cLXpXA==}
  86. '@ant-design/icons-vue@7.0.1':
  87. resolution: {integrity: sha512-eCqY2unfZK6Fe02AwFlDHLfoyEFreP6rBwAZMIJ1LugmfMiVgwWDYlp1YsRugaPtICYOabV1iWxXdP12u9U43Q==}
  88. peerDependencies:
  89. vue: '>=3.0.3'
  90. '@babel/helper-string-parser@7.25.9':
  91. resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
  92. engines: {node: '>=6.9.0'}
  93. '@babel/helper-validator-identifier@7.25.9':
  94. resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
  95. engines: {node: '>=6.9.0'}
  96. '@babel/parser@7.27.0':
  97. resolution: {integrity: sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==}
  98. engines: {node: '>=6.0.0'}
  99. hasBin: true
  100. '@babel/runtime@7.27.0':
  101. resolution: {integrity: sha512-VtPOkrdPHZsKc/clNqyi9WUA8TINkZ4cGk63UUE3u4pmB2k+ZMQRDuIOagv8UVd6j7k0T3+RRIb7beKTebNbcw==}
  102. engines: {node: '>=6.9.0'}
  103. '@babel/types@7.27.0':
  104. resolution: {integrity: sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==}
  105. engines: {node: '>=6.9.0'}
  106. '@ctrl/tinycolor@3.6.1':
  107. resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==}
  108. engines: {node: '>=10'}
  109. '@emotion/hash@0.9.2':
  110. resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==}
  111. '@emotion/unitless@0.8.1':
  112. resolution: {integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==}
  113. '@esbuild/android-arm@0.15.18':
  114. resolution: {integrity: sha512-5GT+kcs2WVGjVs7+boataCkO5Fg0y4kCjzkB5bAip7H4jfnOS3dA6KPiww9W1OEKTKeAcUVhdZGvgI65OXmUnw==}
  115. engines: {node: '>=12'}
  116. cpu: [arm]
  117. os: [android]
  118. '@esbuild/linux-loong64@0.15.18':
  119. resolution: {integrity: sha512-L4jVKS82XVhw2nvzLg/19ClLWg0y27ulRwuP7lcyL6AbUWB5aPglXY3M21mauDQMDfRLs8cQmeT03r/+X3cZYQ==}
  120. engines: {node: '>=12'}
  121. cpu: [loong64]
  122. os: [linux]
  123. '@intlify/core-base@11.1.4':
  124. resolution: {integrity: sha512-VNIanL84HNBNAoJjPA2V8EykT5NtgNDquO2MsDQcSheo7EcCt4uvH14IHBEDKVoL6k38NNICLuRhtKOKqW2ylA==}
  125. engines: {node: '>= 16'}
  126. '@intlify/message-compiler@11.1.4':
  127. resolution: {integrity: sha512-fQWJwTOBFNFGNr4I5k629hQxTGEKsDWhhTzr6Y4CN4OXJw/dLB/VbbQm5jlylqnv44RBZN5GSD+d1nWpNcAR5A==}
  128. engines: {node: '>= 16'}
  129. '@intlify/shared@11.1.4':
  130. resolution: {integrity: sha512-zOW2L5+QnWRQgM/7WNSPxa6E0F3wR2/KEQV7P4s4AXzxzmg0MuzLNiixvkRJU5h0Xb3DnHic6zybKva28kabDw==}
  131. engines: {node: '>= 16'}
  132. '@jridgewell/sourcemap-codec@1.5.0':
  133. resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
  134. '@messageformat/core@3.4.0':
  135. resolution: {integrity: sha512-NgCFubFFIdMWJGN5WuQhHCNmzk7QgiVfrViFxcS99j7F5dDS5EP6raR54I+2ydhe4+5/XTn/YIEppFaqqVWHsw==}
  136. '@messageformat/date-skeleton@1.1.0':
  137. resolution: {integrity: sha512-rmGAfB1tIPER+gh3p/RgA+PVeRE/gxuQ2w4snFWPF5xtb5mbWR7Cbw7wCOftcUypbD6HVoxrVdyyghPm3WzP5A==}
  138. '@messageformat/number-skeleton@1.2.0':
  139. resolution: {integrity: sha512-xsgwcL7J7WhlHJ3RNbaVgssaIwcEyFkBqxHdcdaiJzwTZAWEOD8BuUFxnxV9k5S0qHN3v/KzUpq0IUpjH1seRg==}
  140. '@messageformat/parser@5.1.1':
  141. resolution: {integrity: sha512-3p0YRGCcTUCYvBKLIxtDDyrJ0YijGIwrTRu1DT8gIviIDZru8H23+FkY6MJBzM1n9n20CiM4VeDYuBsrrwnLjg==}
  142. '@messageformat/runtime@3.0.1':
  143. resolution: {integrity: sha512-6RU5ol2lDtO8bD9Yxe6CZkl0DArdv0qkuoZC+ZwowU+cdRlVE1157wjCmlA5Rsf1Xc/brACnsZa5PZpEDfTFFg==}
  144. '@parcel/watcher-android-arm64@2.5.1':
  145. resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==}
  146. engines: {node: '>= 10.0.0'}
  147. cpu: [arm64]
  148. os: [android]
  149. '@parcel/watcher-darwin-arm64@2.5.1':
  150. resolution: {integrity: sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==}
  151. engines: {node: '>= 10.0.0'}
  152. cpu: [arm64]
  153. os: [darwin]
  154. '@parcel/watcher-darwin-x64@2.5.1':
  155. resolution: {integrity: sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==}
  156. engines: {node: '>= 10.0.0'}
  157. cpu: [x64]
  158. os: [darwin]
  159. '@parcel/watcher-freebsd-x64@2.5.1':
  160. resolution: {integrity: sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==}
  161. engines: {node: '>= 10.0.0'}
  162. cpu: [x64]
  163. os: [freebsd]
  164. '@parcel/watcher-linux-arm-glibc@2.5.1':
  165. resolution: {integrity: sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==}
  166. engines: {node: '>= 10.0.0'}
  167. cpu: [arm]
  168. os: [linux]
  169. '@parcel/watcher-linux-arm-musl@2.5.1':
  170. resolution: {integrity: sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==}
  171. engines: {node: '>= 10.0.0'}
  172. cpu: [arm]
  173. os: [linux]
  174. '@parcel/watcher-linux-arm64-glibc@2.5.1':
  175. resolution: {integrity: sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==}
  176. engines: {node: '>= 10.0.0'}
  177. cpu: [arm64]
  178. os: [linux]
  179. '@parcel/watcher-linux-arm64-musl@2.5.1':
  180. resolution: {integrity: sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==}
  181. engines: {node: '>= 10.0.0'}
  182. cpu: [arm64]
  183. os: [linux]
  184. '@parcel/watcher-linux-x64-glibc@2.5.1':
  185. resolution: {integrity: sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==}
  186. engines: {node: '>= 10.0.0'}
  187. cpu: [x64]
  188. os: [linux]
  189. '@parcel/watcher-linux-x64-musl@2.5.1':
  190. resolution: {integrity: sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==}
  191. engines: {node: '>= 10.0.0'}
  192. cpu: [x64]
  193. os: [linux]
  194. '@parcel/watcher-win32-arm64@2.5.1':
  195. resolution: {integrity: sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==}
  196. engines: {node: '>= 10.0.0'}
  197. cpu: [arm64]
  198. os: [win32]
  199. '@parcel/watcher-win32-ia32@2.5.1':
  200. resolution: {integrity: sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==}
  201. engines: {node: '>= 10.0.0'}
  202. cpu: [ia32]
  203. os: [win32]
  204. '@parcel/watcher-win32-x64@2.5.1':
  205. resolution: {integrity: sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==}
  206. engines: {node: '>= 10.0.0'}
  207. cpu: [x64]
  208. os: [win32]
  209. '@parcel/watcher@2.5.1':
  210. resolution: {integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==}
  211. engines: {node: '>= 10.0.0'}
  212. '@simonwep/pickr@1.8.2':
  213. resolution: {integrity: sha512-/l5w8BIkrpP6n1xsetx9MWPWlU6OblN5YgZZphxan0Tq4BByTCETL6lyIeY8lagalS2Nbt4F2W034KHLIiunKA==}
  214. '@types/node@18.19.87':
  215. resolution: {integrity: sha512-OIAAu6ypnVZHmsHCeJ+7CCSub38QNBS9uceMQeg7K5Ur0Jr+wG9wEOEvvMbhp09pxD5czIUy/jND7s7Tb6Nw7A==}
  216. '@vitejs/plugin-vue@3.2.0':
  217. resolution: {integrity: sha512-E0tnaL4fr+qkdCNxJ+Xd0yM31UwMkQje76fsDVBBUCoGOUPexu2VDUYHL8P4CwV+zMvWw6nlRw19OnRKmYAJpw==}
  218. engines: {node: ^14.18.0 || >=16.0.0}
  219. peerDependencies:
  220. vite: ^3.0.0
  221. vue: ^3.2.25
  222. '@volar/code-gen@0.38.9':
  223. resolution: {integrity: sha512-n6LClucfA+37rQeskvh9vDoZV1VvCVNy++MAPKj2dT4FT+Fbmty/SDQqnsEBtdEe6E3OQctFvA/IcKsx3Mns0A==}
  224. '@volar/source-map@0.38.9':
  225. resolution: {integrity: sha512-ba0UFoHDYry+vwKdgkWJ6xlQT+8TFtZg1zj9tSjj4PykW1JZDuM0xplMotLun4h3YOoYfY9K1huY5gvxmrNLIw==}
  226. '@volar/vue-code-gen@0.38.9':
  227. resolution: {integrity: sha512-tzj7AoarFBKl7e41MR006ncrEmNPHALuk8aG4WdDIaG387X5//5KhWC5Ff3ZfB2InGSeNT+CVUd74M0gS20rjA==}
  228. deprecated: 'WARNING: This project has been renamed to @vue/language-core. Install using @vue/language-core instead.'
  229. '@volar/vue-typescript@0.38.9':
  230. resolution: {integrity: sha512-iJMQGU91ADi98u8V1vXd2UBmELDAaeSP0ZJaFjwosClQdKlJQYc6MlxxKfXBZisHqfbhdtrGRyaryulnYtliZw==}
  231. deprecated: 'WARNING: This project has been renamed to @vue/typescript. Install using @vue/typescript instead.'
  232. '@vue/compiler-core@3.2.47':
  233. resolution: {integrity: sha512-p4D7FDnQb7+YJmO2iPEv0SQNeNzcbHdGByJDsT4lynf63AFkOTFN07HsiRSvjGo0QrxR/o3d0hUyNCUnBU2Tig==}
  234. '@vue/compiler-core@3.5.13':
  235. resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==}
  236. '@vue/compiler-dom@3.2.47':
  237. resolution: {integrity: sha512-dBBnEHEPoftUiS03a4ggEig74J2YBZ2UIeyfpcRM2tavgMWo4bsEfgCGsu+uJIL/vax9S+JztH8NmQerUo7shQ==}
  238. '@vue/compiler-dom@3.5.13':
  239. resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==}
  240. '@vue/compiler-sfc@3.2.47':
  241. resolution: {integrity: sha512-rog05W+2IFfxjMcFw10tM9+f7i/+FFpZJJ5XHX72NP9eC2uRD+42M3pYcQqDXVYoj74kHMSEdQ/WmCjt8JFksQ==}
  242. '@vue/compiler-sfc@3.5.13':
  243. resolution: {integrity: sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==}
  244. '@vue/compiler-ssr@3.2.47':
  245. resolution: {integrity: sha512-wVXC+gszhulcMD8wpxMsqSOpvDZ6xKXSVWkf50Guf/S+28hTAXPDYRTbLQ3EDkOP5Xz/+SY37YiwDquKbJOgZw==}
  246. '@vue/compiler-ssr@3.5.13':
  247. resolution: {integrity: sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==}
  248. '@vue/devtools-api@6.6.4':
  249. resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
  250. '@vue/reactivity-transform@3.2.47':
  251. resolution: {integrity: sha512-m8lGXw8rdnPVVIdIFhf0LeQ/ixyHkH5plYuS83yop5n7ggVJU+z5v0zecwEnX7fa7HNLBhh2qngJJkxpwEEmYA==}
  252. '@vue/reactivity@3.2.47':
  253. resolution: {integrity: sha512-7khqQ/75oyyg+N/e+iwV6lpy1f5wq759NdlS1fpAhFXa8VeAIKGgk2E/C4VF59lx5b+Ezs5fpp/5WsRYXQiKxQ==}
  254. '@vue/reactivity@3.5.13':
  255. resolution: {integrity: sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==}
  256. '@vue/runtime-core@3.2.47':
  257. resolution: {integrity: sha512-RZxbLQIRB/K0ev0K9FXhNbBzT32H9iRtYbaXb0ZIz2usLms/D55dJR2t6cIEUn6vyhS3ALNvNthI+Q95C+NOpA==}
  258. '@vue/runtime-dom@3.2.47':
  259. resolution: {integrity: sha512-ArXrFTjS6TsDei4qwNvgrdmHtD930KgSKGhS5M+j8QxXrDJYLqYw4RRcDy1bz1m1wMmb6j+zGLifdVHtkXA7gA==}
  260. '@vue/server-renderer@3.2.47':
  261. resolution: {integrity: sha512-dN9gc1i8EvmP9RCzvneONXsKfBRgqFeFZLurmHOveL7oH6HiFXJw5OGu294n1nHc/HMgTy6LulU/tv5/A7f/LA==}
  262. peerDependencies:
  263. vue: 3.2.47
  264. '@vue/shared@3.2.47':
  265. resolution: {integrity: sha512-BHGyyGN3Q97EZx0taMQ+OLNuZcW3d37ZEVmEAyeoA9ERdGvm9Irc/0Fua8SNyOtV1w6BS4q25wbMzJujO9HIfQ==}
  266. '@vue/shared@3.5.13':
  267. resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==}
  268. accepts@1.3.8:
  269. resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
  270. engines: {node: '>= 0.6'}
  271. adler-32@1.3.1:
  272. resolution: {integrity: sha512-ynZ4w/nUUv5rrsR8UUGoe1VC9hZj6V5hU9Qw1HlMDJGEJw5S7TfTErWTjMys6M7vr0YWcPqs3qAr4ss0nDfP+A==}
  273. engines: {node: '>=0.8'}
  274. ant-design-vue@4.2.6:
  275. resolution: {integrity: sha512-t7eX13Yj3i9+i5g9lqFyYneoIb3OzTvQjq9Tts1i+eiOd3Eva/6GagxBSXM1fOCjqemIu0FYVE1ByZ/38epR3Q==}
  276. engines: {node: '>=12.22.0'}
  277. peerDependencies:
  278. vue: '>=3.2.0'
  279. array-flatten@1.1.1:
  280. resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
  281. array-tree-filter@2.1.0:
  282. resolution: {integrity: sha512-4ROwICNlNw/Hqa9v+rk5h22KjmzB1JGTMVKP2AKJBOCgb0yL0ASf0+YvCcLNNwquOHNX48jkeZIJ3a+oOQqKcw==}
  283. async-validator@4.2.5:
  284. resolution: {integrity: sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==}
  285. asynckit@0.4.0:
  286. resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
  287. axios@0.27.2:
  288. resolution: {integrity: sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==}
  289. axios@1.9.0:
  290. resolution: {integrity: sha512-re4CqKTJaURpzbLHtIi6XpDv20/CnpXOtjRY5/CU32L8gU8ek9UIivcfvSWvmKEngmVbrUtPpdDwWDWL7DNHvg==}
  291. body-parser@1.20.3:
  292. resolution: {integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==}
  293. engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
  294. braces@3.0.3:
  295. resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
  296. engines: {node: '>=8'}
  297. bytes@3.1.2:
  298. resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
  299. engines: {node: '>= 0.8'}
  300. call-bind-apply-helpers@1.0.2:
  301. resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
  302. engines: {node: '>= 0.4'}
  303. call-bound@1.0.4:
  304. resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==}
  305. engines: {node: '>= 0.4'}
  306. cfb@1.2.2:
  307. resolution: {integrity: sha512-KfdUZsSOw19/ObEWasvBP/Ac4reZvAGauZhs6S/gqNhXhI7cKwvlH7ulj+dOEYnca4bm4SGo8C1bTAQvnTjgQA==}
  308. engines: {node: '>=0.8'}
  309. chokidar@4.0.3:
  310. resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
  311. engines: {node: '>= 14.16.0'}
  312. codepage@1.15.0:
  313. resolution: {integrity: sha512-3g6NUTPd/YtuuGrhMnOMRjFc+LJw/bnMp3+0r/Wcz3IXUuCosKRJvMphm5+Q+bvTVGcJJuRvVLuYba+WojaFaA==}
  314. engines: {node: '>=0.8'}
  315. combined-stream@1.0.8:
  316. resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
  317. engines: {node: '>= 0.8'}
  318. compute-scroll-into-view@1.0.20:
  319. resolution: {integrity: sha512-UCB0ioiyj8CRjtrvaceBLqqhZCVP+1B8+NWQhmdsm0VXOJtobBCf1dBQmebCCo34qZmUwZfIH2MZLqNHazrfjg==}
  320. content-disposition@0.5.4:
  321. resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
  322. engines: {node: '>= 0.6'}
  323. content-type@1.0.5:
  324. resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
  325. engines: {node: '>= 0.6'}
  326. cookie-signature@1.0.6:
  327. resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
  328. cookie@0.7.1:
  329. resolution: {integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==}
  330. engines: {node: '>= 0.6'}
  331. coordtransform@2.1.2:
  332. resolution: {integrity: sha512-0xLJApBlrUP+clyLJWIaqg4GXE5JTbAJb5d/CDMqebIksAMMze8eAyO6YfHEIxWJ+c42mXoMHBzWTeUrG7RFhw==}
  333. copy-anything@2.0.6:
  334. resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==}
  335. core-js@3.41.0:
  336. resolution: {integrity: sha512-SJ4/EHwS36QMJd6h/Rg+GyR4A5xE0FSI3eZ+iBVpfqf1x0eTSg1smWLHrA+2jQThZSh97fmSgFSU8B61nxosxA==}
  337. crc-32@1.2.2:
  338. resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==}
  339. engines: {node: '>=0.8'}
  340. hasBin: true
  341. csstype@2.6.21:
  342. resolution: {integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==}
  343. csstype@3.1.3:
  344. resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
  345. dayjs@1.11.13:
  346. resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
  347. debug@2.6.9:
  348. resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
  349. peerDependencies:
  350. supports-color: '*'
  351. peerDependenciesMeta:
  352. supports-color:
  353. optional: true
  354. debug@4.4.0:
  355. resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
  356. engines: {node: '>=6.0'}
  357. peerDependencies:
  358. supports-color: '*'
  359. peerDependenciesMeta:
  360. supports-color:
  361. optional: true
  362. delayed-stream@1.0.0:
  363. resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
  364. engines: {node: '>=0.4.0'}
  365. depd@2.0.0:
  366. resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
  367. engines: {node: '>= 0.8'}
  368. destroy@1.2.0:
  369. resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
  370. engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
  371. detect-libc@1.0.3:
  372. resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==}
  373. engines: {node: '>=0.10'}
  374. hasBin: true
  375. dom-align@1.12.4:
  376. resolution: {integrity: sha512-R8LUSEay/68zE5c8/3BDxiTEvgb4xZTF0RKmAHfiEVN3klfIpXfi2/QCoiWPccVQ0J/ZGdz9OjzL4uJEP/MRAw==}
  377. dom-scroll-into-view@2.0.1:
  378. resolution: {integrity: sha512-bvVTQe1lfaUr1oFzZX80ce9KLDlZ3iU+XGNE/bz9HnGdklTieqsbmsLHe+rT2XWqopvL0PckkYqN7ksmm5pe3w==}
  379. dunder-proto@1.0.1:
  380. resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
  381. engines: {node: '>= 0.4'}
  382. ee-first@1.1.1:
  383. resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
  384. encodeurl@1.0.2:
  385. resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
  386. engines: {node: '>= 0.8'}
  387. encodeurl@2.0.0:
  388. resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
  389. engines: {node: '>= 0.8'}
  390. entities@4.5.0:
  391. resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
  392. engines: {node: '>=0.12'}
  393. errno@0.1.8:
  394. resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==}
  395. hasBin: true
  396. es-define-property@1.0.1:
  397. resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
  398. engines: {node: '>= 0.4'}
  399. es-errors@1.3.0:
  400. resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
  401. engines: {node: '>= 0.4'}
  402. es-object-atoms@1.1.1:
  403. resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
  404. engines: {node: '>= 0.4'}
  405. es-set-tostringtag@2.1.0:
  406. resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
  407. engines: {node: '>= 0.4'}
  408. esbuild-android-64@0.15.18:
  409. resolution: {integrity: sha512-wnpt3OXRhcjfIDSZu9bnzT4/TNTDsOUvip0foZOUBG7QbSt//w3QV4FInVJxNhKc/ErhUxc5z4QjHtMi7/TbgA==}
  410. engines: {node: '>=12'}
  411. cpu: [x64]
  412. os: [android]
  413. esbuild-android-arm64@0.15.18:
  414. resolution: {integrity: sha512-G4xu89B8FCzav9XU8EjsXacCKSG2FT7wW9J6hOc18soEHJdtWu03L3TQDGf0geNxfLTtxENKBzMSq9LlbjS8OQ==}
  415. engines: {node: '>=12'}
  416. cpu: [arm64]
  417. os: [android]
  418. esbuild-darwin-64@0.15.18:
  419. resolution: {integrity: sha512-2WAvs95uPnVJPuYKP0Eqx+Dl/jaYseZEUUT1sjg97TJa4oBtbAKnPnl3b5M9l51/nbx7+QAEtuummJZW0sBEmg==}
  420. engines: {node: '>=12'}
  421. cpu: [x64]
  422. os: [darwin]
  423. esbuild-darwin-arm64@0.15.18:
  424. resolution: {integrity: sha512-tKPSxcTJ5OmNb1btVikATJ8NftlyNlc8BVNtyT/UAr62JFOhwHlnoPrhYWz09akBLHI9nElFVfWSTSRsrZiDUA==}
  425. engines: {node: '>=12'}
  426. cpu: [arm64]
  427. os: [darwin]
  428. esbuild-freebsd-64@0.15.18:
  429. resolution: {integrity: sha512-TT3uBUxkteAjR1QbsmvSsjpKjOX6UkCstr8nMr+q7zi3NuZ1oIpa8U41Y8I8dJH2fJgdC3Dj3CXO5biLQpfdZA==}
  430. engines: {node: '>=12'}
  431. cpu: [x64]
  432. os: [freebsd]
  433. esbuild-freebsd-arm64@0.15.18:
  434. resolution: {integrity: sha512-R/oVr+X3Tkh+S0+tL41wRMbdWtpWB8hEAMsOXDumSSa6qJR89U0S/PpLXrGF7Wk/JykfpWNokERUpCeHDl47wA==}
  435. engines: {node: '>=12'}
  436. cpu: [arm64]
  437. os: [freebsd]
  438. esbuild-linux-32@0.15.18:
  439. resolution: {integrity: sha512-lphF3HiCSYtaa9p1DtXndiQEeQDKPl9eN/XNoBf2amEghugNuqXNZA/ZovthNE2aa4EN43WroO0B85xVSjYkbg==}
  440. engines: {node: '>=12'}
  441. cpu: [ia32]
  442. os: [linux]
  443. esbuild-linux-64@0.15.18:
  444. resolution: {integrity: sha512-hNSeP97IviD7oxLKFuii5sDPJ+QHeiFTFLoLm7NZQligur8poNOWGIgpQ7Qf8Balb69hptMZzyOBIPtY09GZYw==}
  445. engines: {node: '>=12'}
  446. cpu: [x64]
  447. os: [linux]
  448. esbuild-linux-arm64@0.15.18:
  449. resolution: {integrity: sha512-54qr8kg/6ilcxd+0V3h9rjT4qmjc0CccMVWrjOEM/pEcUzt8X62HfBSeZfT2ECpM7104mk4yfQXkosY8Quptug==}
  450. engines: {node: '>=12'}
  451. cpu: [arm64]
  452. os: [linux]
  453. esbuild-linux-arm@0.15.18:
  454. resolution: {integrity: sha512-UH779gstRblS4aoS2qpMl3wjg7U0j+ygu3GjIeTonCcN79ZvpPee12Qun3vcdxX+37O5LFxz39XeW2I9bybMVA==}
  455. engines: {node: '>=12'}
  456. cpu: [arm]
  457. os: [linux]
  458. esbuild-linux-mips64le@0.15.18:
  459. resolution: {integrity: sha512-Mk6Ppwzzz3YbMl/ZZL2P0q1tnYqh/trYZ1VfNP47C31yT0K8t9s7Z077QrDA/guU60tGNp2GOwCQnp+DYv7bxQ==}
  460. engines: {node: '>=12'}
  461. cpu: [mips64el]
  462. os: [linux]
  463. esbuild-linux-ppc64le@0.15.18:
  464. resolution: {integrity: sha512-b0XkN4pL9WUulPTa/VKHx2wLCgvIAbgwABGnKMY19WhKZPT+8BxhZdqz6EgkqCLld7X5qiCY2F/bfpUUlnFZ9w==}
  465. engines: {node: '>=12'}
  466. cpu: [ppc64]
  467. os: [linux]
  468. esbuild-linux-riscv64@0.15.18:
  469. resolution: {integrity: sha512-ba2COaoF5wL6VLZWn04k+ACZjZ6NYniMSQStodFKH/Pu6RxzQqzsmjR1t9QC89VYJxBeyVPTaHuBMCejl3O/xg==}
  470. engines: {node: '>=12'}
  471. cpu: [riscv64]
  472. os: [linux]
  473. esbuild-linux-s390x@0.15.18:
  474. resolution: {integrity: sha512-VbpGuXEl5FCs1wDVp93O8UIzl3ZrglgnSQ+Hu79g7hZu6te6/YHgVJxCM2SqfIila0J3k0csfnf8VD2W7u2kzQ==}
  475. engines: {node: '>=12'}
  476. cpu: [s390x]
  477. os: [linux]
  478. esbuild-netbsd-64@0.15.18:
  479. resolution: {integrity: sha512-98ukeCdvdX7wr1vUYQzKo4kQ0N2p27H7I11maINv73fVEXt2kyh4K4m9f35U1K43Xc2QGXlzAw0K9yoU7JUjOg==}
  480. engines: {node: '>=12'}
  481. cpu: [x64]
  482. os: [netbsd]
  483. esbuild-openbsd-64@0.15.18:
  484. resolution: {integrity: sha512-yK5NCcH31Uae076AyQAXeJzt/vxIo9+omZRKj1pauhk3ITuADzuOx5N2fdHrAKPxN+zH3w96uFKlY7yIn490xQ==}
  485. engines: {node: '>=12'}
  486. cpu: [x64]
  487. os: [openbsd]
  488. esbuild-sunos-64@0.15.18:
  489. resolution: {integrity: sha512-On22LLFlBeLNj/YF3FT+cXcyKPEI263nflYlAhz5crxtp3yRG1Ugfr7ITyxmCmjm4vbN/dGrb/B7w7U8yJR9yw==}
  490. engines: {node: '>=12'}
  491. cpu: [x64]
  492. os: [sunos]
  493. esbuild-windows-32@0.15.18:
  494. resolution: {integrity: sha512-o+eyLu2MjVny/nt+E0uPnBxYuJHBvho8vWsC2lV61A7wwTWC3jkN2w36jtA+yv1UgYkHRihPuQsL23hsCYGcOQ==}
  495. engines: {node: '>=12'}
  496. cpu: [ia32]
  497. os: [win32]
  498. esbuild-windows-64@0.15.18:
  499. resolution: {integrity: sha512-qinug1iTTaIIrCorAUjR0fcBk24fjzEedFYhhispP8Oc7SFvs+XeW3YpAKiKp8dRpizl4YYAhxMjlftAMJiaUw==}
  500. engines: {node: '>=12'}
  501. cpu: [x64]
  502. os: [win32]
  503. esbuild-windows-arm64@0.15.18:
  504. resolution: {integrity: sha512-q9bsYzegpZcLziq0zgUi5KqGVtfhjxGbnksaBFYmWLxeV/S1fK4OLdq2DFYnXcLMjlZw2L0jLsk1eGoB522WXQ==}
  505. engines: {node: '>=12'}
  506. cpu: [arm64]
  507. os: [win32]
  508. esbuild@0.15.18:
  509. resolution: {integrity: sha512-x/R72SmW3sSFRm5zrrIjAhCeQSAWoni3CmHEqfQrZIQTM3lVCdehdwuIqaOtfC2slvpdlLa62GYoN8SxT23m6Q==}
  510. engines: {node: '>=12'}
  511. hasBin: true
  512. escape-html@1.0.3:
  513. resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
  514. estree-walker@2.0.2:
  515. resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
  516. etag@1.8.1:
  517. resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
  518. engines: {node: '>= 0.6'}
  519. eventemitter3@4.0.7:
  520. resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
  521. express@4.21.2:
  522. resolution: {integrity: sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==}
  523. engines: {node: '>= 0.10.0'}
  524. fast-printf@1.6.10:
  525. resolution: {integrity: sha512-GwTgG9O4FVIdShhbVF3JxOgSBY2+ePGsu2V/UONgoCPzF9VY6ZdBMKsHKCYQHZwNk3qNouUolRDsgVxcVA5G1w==}
  526. engines: {node: '>=10.0'}
  527. fill-range@7.1.1:
  528. resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
  529. engines: {node: '>=8'}
  530. finalhandler@1.3.1:
  531. resolution: {integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==}
  532. engines: {node: '>= 0.8'}
  533. follow-redirects@1.15.9:
  534. resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
  535. engines: {node: '>=4.0'}
  536. peerDependencies:
  537. debug: '*'
  538. peerDependenciesMeta:
  539. debug:
  540. optional: true
  541. form-data@4.0.2:
  542. resolution: {integrity: sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==}
  543. engines: {node: '>= 6'}
  544. forwarded@0.2.0:
  545. resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
  546. engines: {node: '>= 0.6'}
  547. frac@1.1.2:
  548. resolution: {integrity: sha512-w/XBfkibaTl3YDqASwfDUqkna4Z2p9cFSr1aHDt0WoMTECnRfBOv2WArlZILlqgWlmdIlALXGpM2AOhEk5W3IA==}
  549. engines: {node: '>=0.8'}
  550. fresh@0.5.2:
  551. resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
  552. engines: {node: '>= 0.6'}
  553. fsevents@2.3.3:
  554. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  555. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  556. os: [darwin]
  557. function-bind@1.1.2:
  558. resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
  559. get-intrinsic@1.3.0:
  560. resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
  561. engines: {node: '>= 0.4'}
  562. get-proto@1.0.1:
  563. resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
  564. engines: {node: '>= 0.4'}
  565. gopd@1.2.0:
  566. resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
  567. engines: {node: '>= 0.4'}
  568. graceful-fs@4.2.11:
  569. resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
  570. has-symbols@1.1.0:
  571. resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
  572. engines: {node: '>= 0.4'}
  573. has-tostringtag@1.0.2:
  574. resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
  575. engines: {node: '>= 0.4'}
  576. hasown@2.0.2:
  577. resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
  578. engines: {node: '>= 0.4'}
  579. http-errors@2.0.0:
  580. resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
  581. engines: {node: '>= 0.8'}
  582. i18n@0.15.1:
  583. resolution: {integrity: sha512-yue187t8MqUPMHdKjiZGrX+L+xcUsDClGO0Cz4loaKUOK9WrGw5pgan4bv130utOwX7fHE9w2iUeHFalVQWkXA==}
  584. engines: {node: '>=10'}
  585. iconv-lite@0.4.24:
  586. resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
  587. engines: {node: '>=0.10.0'}
  588. iconv-lite@0.6.3:
  589. resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
  590. engines: {node: '>=0.10.0'}
  591. image-size@0.5.5:
  592. resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==}
  593. engines: {node: '>=0.10.0'}
  594. hasBin: true
  595. immutable@5.1.1:
  596. resolution: {integrity: sha512-3jatXi9ObIsPGr3N5hGw/vWWcTkq6hUYhpQz4k0wLC+owqWi/LiugIw9x0EdNZ2yGedKN/HzePiBvaJRXa0Ujg==}
  597. inherits@2.0.4:
  598. resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
  599. ipaddr.js@1.9.1:
  600. resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
  601. engines: {node: '>= 0.10'}
  602. is-core-module@2.16.1:
  603. resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
  604. engines: {node: '>= 0.4'}
  605. is-extglob@2.1.1:
  606. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  607. engines: {node: '>=0.10.0'}
  608. is-glob@4.0.3:
  609. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  610. engines: {node: '>=0.10.0'}
  611. is-number@7.0.0:
  612. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  613. engines: {node: '>=0.12.0'}
  614. is-plain-object@3.0.1:
  615. resolution: {integrity: sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==}
  616. engines: {node: '>=0.10.0'}
  617. is-what@3.14.1:
  618. resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==}
  619. js-tokens@4.0.0:
  620. resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
  621. less@4.3.0:
  622. resolution: {integrity: sha512-X9RyH9fvemArzfdP8Pi3irr7lor2Ok4rOttDXBhlwDg+wKQsXOXgHWduAJE1EsF7JJx0w0bcO6BC6tCKKYnXKA==}
  623. engines: {node: '>=14'}
  624. hasBin: true
  625. lodash-es@4.17.21:
  626. resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==}
  627. lodash@4.17.21:
  628. resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
  629. loose-envify@1.4.0:
  630. resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
  631. hasBin: true
  632. magic-string@0.25.9:
  633. resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==}
  634. magic-string@0.30.17:
  635. resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==}
  636. make-dir@2.1.0:
  637. resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
  638. engines: {node: '>=6'}
  639. make-plural@7.4.0:
  640. resolution: {integrity: sha512-4/gC9KVNTV6pvYg2gFeQYTW3mWaoJt7WZE5vrp1KnQDgW92JtYZnzmZT81oj/dUTqAIu0ufI2x3dkgu3bB1tYg==}
  641. math-interval-parser@2.0.1:
  642. resolution: {integrity: sha512-VmlAmb0UJwlvMyx8iPhXUDnVW1F9IrGEd9CIOmv+XL8AErCUUuozoDMrgImvnYt2A+53qVX/tPW6YJurMKYsvA==}
  643. engines: {node: '>=0.10.0'}
  644. math-intrinsics@1.1.0:
  645. resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
  646. engines: {node: '>= 0.4'}
  647. media-typer@0.3.0:
  648. resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
  649. engines: {node: '>= 0.6'}
  650. merge-descriptors@1.0.3:
  651. resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==}
  652. methods@1.1.2:
  653. resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
  654. engines: {node: '>= 0.6'}
  655. micromatch@4.0.8:
  656. resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
  657. engines: {node: '>=8.6'}
  658. mime-db@1.52.0:
  659. resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
  660. engines: {node: '>= 0.6'}
  661. mime-types@2.1.35:
  662. resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
  663. engines: {node: '>= 0.6'}
  664. mime@1.6.0:
  665. resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
  666. engines: {node: '>=4'}
  667. hasBin: true
  668. mitt@3.0.1:
  669. resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
  670. moo@0.5.2:
  671. resolution: {integrity: sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==}
  672. ms@2.0.0:
  673. resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
  674. ms@2.1.3:
  675. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  676. mustache@4.2.0:
  677. resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==}
  678. hasBin: true
  679. nanoid@3.3.11:
  680. resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
  681. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  682. hasBin: true
  683. nanopop@2.4.2:
  684. resolution: {integrity: sha512-NzOgmMQ+elxxHeIha+OG/Pv3Oc3p4RU2aBhwWwAqDpXrdTbtRylbRLQztLy8dMMwfl6pclznBdfUhccEn9ZIzw==}
  685. needle@3.3.1:
  686. resolution: {integrity: sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==}
  687. engines: {node: '>= 4.4.x'}
  688. hasBin: true
  689. negotiator@0.6.3:
  690. resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
  691. engines: {node: '>= 0.6'}
  692. node-addon-api@7.1.1:
  693. resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
  694. object-inspect@1.13.4:
  695. resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
  696. engines: {node: '>= 0.4'}
  697. on-finished@2.4.1:
  698. resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
  699. engines: {node: '>= 0.8'}
  700. parse-node-version@1.0.1:
  701. resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==}
  702. engines: {node: '>= 0.10'}
  703. parseurl@1.3.3:
  704. resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
  705. engines: {node: '>= 0.8'}
  706. path-parse@1.0.7:
  707. resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
  708. path-to-regexp@0.1.12:
  709. resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==}
  710. picocolors@1.1.1:
  711. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  712. picomatch@2.3.1:
  713. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  714. engines: {node: '>=8.6'}
  715. pify@4.0.1:
  716. resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
  717. engines: {node: '>=6'}
  718. postcss@8.5.3:
  719. resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
  720. engines: {node: ^10 || ^12 || >=14}
  721. proxy-addr@2.0.7:
  722. resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
  723. engines: {node: '>= 0.10'}
  724. proxy-from-env@1.1.0:
  725. resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
  726. prr@1.0.1:
  727. resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
  728. qs@6.13.0:
  729. resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==}
  730. engines: {node: '>=0.6'}
  731. range-parser@1.2.1:
  732. resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
  733. engines: {node: '>= 0.6'}
  734. raw-body@2.5.2:
  735. resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==}
  736. engines: {node: '>= 0.8'}
  737. readdirp@4.1.2:
  738. resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
  739. engines: {node: '>= 14.18.0'}
  740. regenerator-runtime@0.14.1:
  741. resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
  742. resize-observer-polyfill@1.5.1:
  743. resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==}
  744. resolve@1.22.10:
  745. resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
  746. engines: {node: '>= 0.4'}
  747. hasBin: true
  748. rollup@2.79.2:
  749. resolution: {integrity: sha512-fS6iqSPZDs3dr/y7Od6y5nha8dW1YnbgtsyotCVvoFGKbERG++CVRFv1meyGDE1SNItQA8BrnCw7ScdAhRJ3XQ==}
  750. engines: {node: '>=10.0.0'}
  751. hasBin: true
  752. rxjs@7.5.7:
  753. resolution: {integrity: sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==}
  754. safe-buffer@5.2.1:
  755. resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
  756. safe-identifier@0.4.2:
  757. resolution: {integrity: sha512-6pNbSMW6OhAi9j+N8V+U715yBQsaWJ7eyEUaOrawX+isg5ZxhUlV1NipNtgaKHmFGiABwt+ZF04Ii+3Xjkg+8w==}
  758. safer-buffer@2.1.2:
  759. resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
  760. sass@1.87.0:
  761. resolution: {integrity: sha512-d0NoFH4v6SjEK7BoX810Jsrhj7IQSYHAHLi/iSpgqKc7LaIDshFRlSg5LOymf9FqQhxEHs2W5ZQXlvy0KD45Uw==}
  762. engines: {node: '>=14.0.0'}
  763. hasBin: true
  764. sax@1.4.1:
  765. resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==}
  766. scroll-into-view-if-needed@2.2.31:
  767. resolution: {integrity: sha512-dGCXy99wZQivjmjIqihaBQNjryrz5rueJY7eHfTdyWEiR4ttYpsajb14rn9s5d4DY4EcY6+4+U/maARBXJedkA==}
  768. semver@5.7.2:
  769. resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
  770. hasBin: true
  771. send@0.19.0:
  772. resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==}
  773. engines: {node: '>= 0.8.0'}
  774. serve-static@1.16.2:
  775. resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==}
  776. engines: {node: '>= 0.8.0'}
  777. setprototypeof@1.2.0:
  778. resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
  779. shallow-equal@1.2.1:
  780. resolution: {integrity: sha512-S4vJDjHHMBaiZuT9NPb616CSmLf618jawtv3sufLl6ivK8WocjAo58cXwbRV1cgqxH0Qbv+iUt6m05eqEa2IRA==}
  781. side-channel-list@1.0.0:
  782. resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
  783. engines: {node: '>= 0.4'}
  784. side-channel-map@1.0.1:
  785. resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
  786. engines: {node: '>= 0.4'}
  787. side-channel-weakmap@1.0.2:
  788. resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
  789. engines: {node: '>= 0.4'}
  790. side-channel@1.1.0:
  791. resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
  792. engines: {node: '>= 0.4'}
  793. simaqcore@1.2.0:
  794. resolution: {integrity: sha512-WViM7DhEJ/2JlF23apBIYP0KcjHqTjqxlMOlPXJsZ6Fp/726APxT0s9P/hsApHYJMu3/Ztkd/3iTOGEOFTPE0Q==}
  795. sortablejs@1.14.0:
  796. resolution: {integrity: sha512-pBXvQCs5/33fdN1/39pPL0NZF20LeRbLQ5jtnheIPN9JQAaufGjKdWduZn4U7wCtVuzKhmRkI0DFYHYRbB2H1w==}
  797. source-map-js@1.2.1:
  798. resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  799. engines: {node: '>=0.10.0'}
  800. source-map@0.6.1:
  801. resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
  802. engines: {node: '>=0.10.0'}
  803. sourcemap-codec@1.4.8:
  804. resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==}
  805. deprecated: Please use @jridgewell/sourcemap-codec instead
  806. ssf@0.11.2:
  807. resolution: {integrity: sha512-+idbmIXoYET47hH+d7dfm2epdOMUDjqcB4648sTZ+t2JwoyBFL/insLfB/racrDmsKB3diwsDA696pZMieAC5g==}
  808. engines: {node: '>=0.8'}
  809. statuses@2.0.1:
  810. resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
  811. engines: {node: '>= 0.8'}
  812. stylis@4.3.6:
  813. resolution: {integrity: sha512-yQ3rwFWRfwNUY7H5vpU0wfdkNSnvnJinhF9830Swlaxl03zsOjCfmX0ugac+3LtK0lYSgwL/KXc8oYL3mG4YFQ==}
  814. supports-preserve-symlinks-flag@1.0.0:
  815. resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
  816. engines: {node: '>= 0.4'}
  817. swiper@11.2.6:
  818. resolution: {integrity: sha512-8aXpYKtjy3DjcbzZfz+/OX/GhcU5h+looA6PbAzHMZT6ESSycSp9nAjPCenczgJyslV+rUGse64LMGpWE3PX9Q==}
  819. engines: {node: '>= 4.7.0'}
  820. throttle-debounce@5.0.2:
  821. resolution: {integrity: sha512-B71/4oyj61iNH0KeCamLuE2rmKuTO5byTOSVwECM5FA7TiAiAW+UqTKZ9ERueC4qvgSttUhdmq1mXC3kJqGX7A==}
  822. engines: {node: '>=12.22'}
  823. to-regex-range@5.0.1:
  824. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  825. engines: {node: '>=8.0'}
  826. toidentifier@1.0.1:
  827. resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
  828. engines: {node: '>=0.6'}
  829. tslib@2.8.1:
  830. resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
  831. type-is@1.6.18:
  832. resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
  833. engines: {node: '>= 0.6'}
  834. typescript@4.9.5:
  835. resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==}
  836. engines: {node: '>=4.2.0'}
  837. hasBin: true
  838. undici-types@5.26.5:
  839. resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
  840. unpipe@1.0.0:
  841. resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
  842. engines: {node: '>= 0.8'}
  843. utils-merge@1.0.1:
  844. resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
  845. engines: {node: '>= 0.4.0'}
  846. vary@1.1.2:
  847. resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
  848. engines: {node: '>= 0.8'}
  849. vite-plugin-mkcert@1.17.8:
  850. resolution: {integrity: sha512-S+4tNEyGqdZQ3RLAG54ETeO2qyURHWrVjUWKYikLAbmhh/iJ+36gDEja4OWwFyXNuvyXcZwNt5TZZR9itPeG5Q==}
  851. engines: {node: '>=v16.7.0'}
  852. peerDependencies:
  853. vite: '>=3'
  854. vite@3.2.11:
  855. resolution: {integrity: sha512-K/jGKL/PgbIgKCiJo5QbASQhFiV02X9Jh+Qq0AKCRCRKZtOTVi4t6wh75FDpGf2N9rYOnzH87OEFQNaFy6pdxQ==}
  856. engines: {node: ^14.18.0 || >=16.0.0}
  857. hasBin: true
  858. peerDependencies:
  859. '@types/node': '>= 14'
  860. less: '*'
  861. sass: '*'
  862. stylus: '*'
  863. sugarss: '*'
  864. terser: ^5.4.0
  865. peerDependenciesMeta:
  866. '@types/node':
  867. optional: true
  868. less:
  869. optional: true
  870. sass:
  871. optional: true
  872. stylus:
  873. optional: true
  874. sugarss:
  875. optional: true
  876. terser:
  877. optional: true
  878. vue-cropper@1.0.2:
  879. resolution: {integrity: sha512-ZD1kl8OMMrDXJOS1ZRdnohh2BFfYjTeq+r7+yAahydQvrVOKbzXixx6f8LCoMjB+AgAf5BXnlWsZxmu964wJYA==}
  880. vue-i18n@11.1.4:
  881. resolution: {integrity: sha512-0B2Q4rTSzQigfIQnsgNMgWOekouT2lr3hiKG3k7q3fQykr968BRdIUDnIvHisq/f1FPKbBznHpvAyGg78eDAyg==}
  882. engines: {node: '>= 16'}
  883. peerDependencies:
  884. vue: ^3.0.0
  885. vue-router@4.5.1:
  886. resolution: {integrity: sha512-ogAF3P97NPm8fJsE4by9dwSYtDwXIY1nFY9T6DyQnGHd1E2Da94w9JIolpe42LJGIl0DwOHBi8TcRPlPGwbTtw==}
  887. peerDependencies:
  888. vue: ^3.2.0
  889. vue-tsc@0.38.9:
  890. resolution: {integrity: sha512-Yoy5phgvGqyF98Fb4mYqboR4Q149jrdcGv5kSmufXJUq++RZJ2iMVG0g6zl+v3t4ORVWkQmRpsV4x2szufZ0LQ==}
  891. hasBin: true
  892. peerDependencies:
  893. typescript: '*'
  894. vue-types@3.0.2:
  895. resolution: {integrity: sha512-IwUC0Aq2zwaXqy74h4WCvFCUtoV0iSWr0snWnE9TnU18S66GAQyqQbRf2qfJtUuiFsBf6qp0MEwdonlwznlcrw==}
  896. engines: {node: '>=10.15.0'}
  897. peerDependencies:
  898. vue: ^3.0.0
  899. vue@3.2.47:
  900. resolution: {integrity: sha512-60188y/9Dc9WVrAZeUVSDxRQOZ+z+y5nO2ts9jWXSTkMvayiWxCWOWtBQoYjLeccfXkiiPZWAHcV+WTPhkqJHQ==}
  901. vuedraggable@4.1.0:
  902. resolution: {integrity: sha512-FU5HCWBmsf20GpP3eudURW3WdWTKIbEIQxh9/8GE806hydR9qZqRRxRE3RjqX7PkuLuMQG/A7n3cfj9rCEchww==}
  903. peerDependencies:
  904. vue: ^3.0.1
  905. warning@4.0.3:
  906. resolution: {integrity: sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==}
  907. wmf@1.0.2:
  908. resolution: {integrity: sha512-/p9K7bEh0Dj6WbXg4JG0xvLQmIadrner1bi45VMJTfnbVHsc7yIajZyoSoK60/dtVBs12Fm6WkUI5/3WAVsNMw==}
  909. engines: {node: '>=0.8'}
  910. word@0.3.0:
  911. resolution: {integrity: sha512-OELeY0Q61OXpdUfTp+oweA/vtLVg5VDOXh+3he3PNzLGG/y0oylSOC1xRVj0+l4vQ3tj/bB1HVHv1ocXkQceFA==}
  912. engines: {node: '>=0.8'}
  913. xlsx@0.18.5:
  914. resolution: {integrity: sha512-dmg3LCjBPHZnQp5/F/+nnTa+miPJxUXB6vtk42YjBBKayDNagxGEeIdWApkYPOf3Z3pm3k62Knjzp7lMeTEtFQ==}
  915. engines: {node: '>=0.8'}
  916. hasBin: true
  917. snapshots:
  918. '@ant-design/colors@6.0.0':
  919. dependencies:
  920. '@ctrl/tinycolor': 3.6.1
  921. '@ant-design/icons-svg@4.4.2': {}
  922. '@ant-design/icons-vue@7.0.1(vue@3.2.47)':
  923. dependencies:
  924. '@ant-design/colors': 6.0.0
  925. '@ant-design/icons-svg': 4.4.2
  926. vue: 3.2.47
  927. '@babel/helper-string-parser@7.25.9': {}
  928. '@babel/helper-validator-identifier@7.25.9': {}
  929. '@babel/parser@7.27.0':
  930. dependencies:
  931. '@babel/types': 7.27.0
  932. '@babel/runtime@7.27.0':
  933. dependencies:
  934. regenerator-runtime: 0.14.1
  935. '@babel/types@7.27.0':
  936. dependencies:
  937. '@babel/helper-string-parser': 7.25.9
  938. '@babel/helper-validator-identifier': 7.25.9
  939. '@ctrl/tinycolor@3.6.1': {}
  940. '@emotion/hash@0.9.2': {}
  941. '@emotion/unitless@0.8.1': {}
  942. '@esbuild/android-arm@0.15.18':
  943. optional: true
  944. '@esbuild/linux-loong64@0.15.18':
  945. optional: true
  946. '@intlify/core-base@11.1.4':
  947. dependencies:
  948. '@intlify/message-compiler': 11.1.4
  949. '@intlify/shared': 11.1.4
  950. '@intlify/message-compiler@11.1.4':
  951. dependencies:
  952. '@intlify/shared': 11.1.4
  953. source-map-js: 1.2.1
  954. '@intlify/shared@11.1.4': {}
  955. '@jridgewell/sourcemap-codec@1.5.0': {}
  956. '@messageformat/core@3.4.0':
  957. dependencies:
  958. '@messageformat/date-skeleton': 1.1.0
  959. '@messageformat/number-skeleton': 1.2.0
  960. '@messageformat/parser': 5.1.1
  961. '@messageformat/runtime': 3.0.1
  962. make-plural: 7.4.0
  963. safe-identifier: 0.4.2
  964. '@messageformat/date-skeleton@1.1.0': {}
  965. '@messageformat/number-skeleton@1.2.0': {}
  966. '@messageformat/parser@5.1.1':
  967. dependencies:
  968. moo: 0.5.2
  969. '@messageformat/runtime@3.0.1':
  970. dependencies:
  971. make-plural: 7.4.0
  972. '@parcel/watcher-android-arm64@2.5.1':
  973. optional: true
  974. '@parcel/watcher-darwin-arm64@2.5.1':
  975. optional: true
  976. '@parcel/watcher-darwin-x64@2.5.1':
  977. optional: true
  978. '@parcel/watcher-freebsd-x64@2.5.1':
  979. optional: true
  980. '@parcel/watcher-linux-arm-glibc@2.5.1':
  981. optional: true
  982. '@parcel/watcher-linux-arm-musl@2.5.1':
  983. optional: true
  984. '@parcel/watcher-linux-arm64-glibc@2.5.1':
  985. optional: true
  986. '@parcel/watcher-linux-arm64-musl@2.5.1':
  987. optional: true
  988. '@parcel/watcher-linux-x64-glibc@2.5.1':
  989. optional: true
  990. '@parcel/watcher-linux-x64-musl@2.5.1':
  991. optional: true
  992. '@parcel/watcher-win32-arm64@2.5.1':
  993. optional: true
  994. '@parcel/watcher-win32-ia32@2.5.1':
  995. optional: true
  996. '@parcel/watcher-win32-x64@2.5.1':
  997. optional: true
  998. '@parcel/watcher@2.5.1':
  999. dependencies:
  1000. detect-libc: 1.0.3
  1001. is-glob: 4.0.3
  1002. micromatch: 4.0.8
  1003. node-addon-api: 7.1.1
  1004. optionalDependencies:
  1005. '@parcel/watcher-android-arm64': 2.5.1
  1006. '@parcel/watcher-darwin-arm64': 2.5.1
  1007. '@parcel/watcher-darwin-x64': 2.5.1
  1008. '@parcel/watcher-freebsd-x64': 2.5.1
  1009. '@parcel/watcher-linux-arm-glibc': 2.5.1
  1010. '@parcel/watcher-linux-arm-musl': 2.5.1
  1011. '@parcel/watcher-linux-arm64-glibc': 2.5.1
  1012. '@parcel/watcher-linux-arm64-musl': 2.5.1
  1013. '@parcel/watcher-linux-x64-glibc': 2.5.1
  1014. '@parcel/watcher-linux-x64-musl': 2.5.1
  1015. '@parcel/watcher-win32-arm64': 2.5.1
  1016. '@parcel/watcher-win32-ia32': 2.5.1
  1017. '@parcel/watcher-win32-x64': 2.5.1
  1018. optional: true
  1019. '@simonwep/pickr@1.8.2':
  1020. dependencies:
  1021. core-js: 3.41.0
  1022. nanopop: 2.4.2
  1023. '@types/node@18.19.87':
  1024. dependencies:
  1025. undici-types: 5.26.5
  1026. '@vitejs/plugin-vue@3.2.0(vite@3.2.11(@types/node@18.19.87)(less@4.3.0)(sass@1.87.0))(vue@3.2.47)':
  1027. dependencies:
  1028. vite: 3.2.11(@types/node@18.19.87)(less@4.3.0)(sass@1.87.0)
  1029. vue: 3.2.47
  1030. '@volar/code-gen@0.38.9':
  1031. dependencies:
  1032. '@volar/source-map': 0.38.9
  1033. '@volar/source-map@0.38.9': {}
  1034. '@volar/vue-code-gen@0.38.9':
  1035. dependencies:
  1036. '@volar/code-gen': 0.38.9
  1037. '@volar/source-map': 0.38.9
  1038. '@vue/compiler-core': 3.5.13
  1039. '@vue/compiler-dom': 3.5.13
  1040. '@vue/shared': 3.5.13
  1041. '@volar/vue-typescript@0.38.9':
  1042. dependencies:
  1043. '@volar/code-gen': 0.38.9
  1044. '@volar/source-map': 0.38.9
  1045. '@volar/vue-code-gen': 0.38.9
  1046. '@vue/compiler-sfc': 3.5.13
  1047. '@vue/reactivity': 3.5.13
  1048. '@vue/compiler-core@3.2.47':
  1049. dependencies:
  1050. '@babel/parser': 7.27.0
  1051. '@vue/shared': 3.2.47
  1052. estree-walker: 2.0.2
  1053. source-map: 0.6.1
  1054. '@vue/compiler-core@3.5.13':
  1055. dependencies:
  1056. '@babel/parser': 7.27.0
  1057. '@vue/shared': 3.5.13
  1058. entities: 4.5.0
  1059. estree-walker: 2.0.2
  1060. source-map-js: 1.2.1
  1061. '@vue/compiler-dom@3.2.47':
  1062. dependencies:
  1063. '@vue/compiler-core': 3.2.47
  1064. '@vue/shared': 3.2.47
  1065. '@vue/compiler-dom@3.5.13':
  1066. dependencies:
  1067. '@vue/compiler-core': 3.5.13
  1068. '@vue/shared': 3.5.13
  1069. '@vue/compiler-sfc@3.2.47':
  1070. dependencies:
  1071. '@babel/parser': 7.27.0
  1072. '@vue/compiler-core': 3.2.47
  1073. '@vue/compiler-dom': 3.2.47
  1074. '@vue/compiler-ssr': 3.2.47
  1075. '@vue/reactivity-transform': 3.2.47
  1076. '@vue/shared': 3.2.47
  1077. estree-walker: 2.0.2
  1078. magic-string: 0.25.9
  1079. postcss: 8.5.3
  1080. source-map: 0.6.1
  1081. '@vue/compiler-sfc@3.5.13':
  1082. dependencies:
  1083. '@babel/parser': 7.27.0
  1084. '@vue/compiler-core': 3.5.13
  1085. '@vue/compiler-dom': 3.5.13
  1086. '@vue/compiler-ssr': 3.5.13
  1087. '@vue/shared': 3.5.13
  1088. estree-walker: 2.0.2
  1089. magic-string: 0.30.17
  1090. postcss: 8.5.3
  1091. source-map-js: 1.2.1
  1092. '@vue/compiler-ssr@3.2.47':
  1093. dependencies:
  1094. '@vue/compiler-dom': 3.2.47
  1095. '@vue/shared': 3.2.47
  1096. '@vue/compiler-ssr@3.5.13':
  1097. dependencies:
  1098. '@vue/compiler-dom': 3.5.13
  1099. '@vue/shared': 3.5.13
  1100. '@vue/devtools-api@6.6.4': {}
  1101. '@vue/reactivity-transform@3.2.47':
  1102. dependencies:
  1103. '@babel/parser': 7.27.0
  1104. '@vue/compiler-core': 3.2.47
  1105. '@vue/shared': 3.2.47
  1106. estree-walker: 2.0.2
  1107. magic-string: 0.25.9
  1108. '@vue/reactivity@3.2.47':
  1109. dependencies:
  1110. '@vue/shared': 3.2.47
  1111. '@vue/reactivity@3.5.13':
  1112. dependencies:
  1113. '@vue/shared': 3.5.13
  1114. '@vue/runtime-core@3.2.47':
  1115. dependencies:
  1116. '@vue/reactivity': 3.2.47
  1117. '@vue/shared': 3.2.47
  1118. '@vue/runtime-dom@3.2.47':
  1119. dependencies:
  1120. '@vue/runtime-core': 3.2.47
  1121. '@vue/shared': 3.2.47
  1122. csstype: 2.6.21
  1123. '@vue/server-renderer@3.2.47(vue@3.2.47)':
  1124. dependencies:
  1125. '@vue/compiler-ssr': 3.2.47
  1126. '@vue/shared': 3.2.47
  1127. vue: 3.2.47
  1128. '@vue/shared@3.2.47': {}
  1129. '@vue/shared@3.5.13': {}
  1130. accepts@1.3.8:
  1131. dependencies:
  1132. mime-types: 2.1.35
  1133. negotiator: 0.6.3
  1134. adler-32@1.3.1: {}
  1135. ant-design-vue@4.2.6(vue@3.2.47):
  1136. dependencies:
  1137. '@ant-design/colors': 6.0.0
  1138. '@ant-design/icons-vue': 7.0.1(vue@3.2.47)
  1139. '@babel/runtime': 7.27.0
  1140. '@ctrl/tinycolor': 3.6.1
  1141. '@emotion/hash': 0.9.2
  1142. '@emotion/unitless': 0.8.1
  1143. '@simonwep/pickr': 1.8.2
  1144. array-tree-filter: 2.1.0
  1145. async-validator: 4.2.5
  1146. csstype: 3.1.3
  1147. dayjs: 1.11.13
  1148. dom-align: 1.12.4
  1149. dom-scroll-into-view: 2.0.1
  1150. lodash: 4.17.21
  1151. lodash-es: 4.17.21
  1152. resize-observer-polyfill: 1.5.1
  1153. scroll-into-view-if-needed: 2.2.31
  1154. shallow-equal: 1.2.1
  1155. stylis: 4.3.6
  1156. throttle-debounce: 5.0.2
  1157. vue: 3.2.47
  1158. vue-types: 3.0.2(vue@3.2.47)
  1159. warning: 4.0.3
  1160. array-flatten@1.1.1: {}
  1161. array-tree-filter@2.1.0: {}
  1162. async-validator@4.2.5: {}
  1163. asynckit@0.4.0: {}
  1164. axios@0.27.2:
  1165. dependencies:
  1166. follow-redirects: 1.15.9(debug@4.4.0)
  1167. form-data: 4.0.2
  1168. transitivePeerDependencies:
  1169. - debug
  1170. axios@1.9.0(debug@4.4.0):
  1171. dependencies:
  1172. follow-redirects: 1.15.9(debug@4.4.0)
  1173. form-data: 4.0.2
  1174. proxy-from-env: 1.1.0
  1175. transitivePeerDependencies:
  1176. - debug
  1177. body-parser@1.20.3:
  1178. dependencies:
  1179. bytes: 3.1.2
  1180. content-type: 1.0.5
  1181. debug: 2.6.9
  1182. depd: 2.0.0
  1183. destroy: 1.2.0
  1184. http-errors: 2.0.0
  1185. iconv-lite: 0.4.24
  1186. on-finished: 2.4.1
  1187. qs: 6.13.0
  1188. raw-body: 2.5.2
  1189. type-is: 1.6.18
  1190. unpipe: 1.0.0
  1191. transitivePeerDependencies:
  1192. - supports-color
  1193. braces@3.0.3:
  1194. dependencies:
  1195. fill-range: 7.1.1
  1196. optional: true
  1197. bytes@3.1.2: {}
  1198. call-bind-apply-helpers@1.0.2:
  1199. dependencies:
  1200. es-errors: 1.3.0
  1201. function-bind: 1.1.2
  1202. call-bound@1.0.4:
  1203. dependencies:
  1204. call-bind-apply-helpers: 1.0.2
  1205. get-intrinsic: 1.3.0
  1206. cfb@1.2.2:
  1207. dependencies:
  1208. adler-32: 1.3.1
  1209. crc-32: 1.2.2
  1210. chokidar@4.0.3:
  1211. dependencies:
  1212. readdirp: 4.1.2
  1213. codepage@1.15.0: {}
  1214. combined-stream@1.0.8:
  1215. dependencies:
  1216. delayed-stream: 1.0.0
  1217. compute-scroll-into-view@1.0.20: {}
  1218. content-disposition@0.5.4:
  1219. dependencies:
  1220. safe-buffer: 5.2.1
  1221. content-type@1.0.5: {}
  1222. cookie-signature@1.0.6: {}
  1223. cookie@0.7.1: {}
  1224. coordtransform@2.1.2: {}
  1225. copy-anything@2.0.6:
  1226. dependencies:
  1227. is-what: 3.14.1
  1228. core-js@3.41.0: {}
  1229. crc-32@1.2.2: {}
  1230. csstype@2.6.21: {}
  1231. csstype@3.1.3: {}
  1232. dayjs@1.11.13: {}
  1233. debug@2.6.9:
  1234. dependencies:
  1235. ms: 2.0.0
  1236. debug@4.4.0:
  1237. dependencies:
  1238. ms: 2.1.3
  1239. delayed-stream@1.0.0: {}
  1240. depd@2.0.0: {}
  1241. destroy@1.2.0: {}
  1242. detect-libc@1.0.3:
  1243. optional: true
  1244. dom-align@1.12.4: {}
  1245. dom-scroll-into-view@2.0.1: {}
  1246. dunder-proto@1.0.1:
  1247. dependencies:
  1248. call-bind-apply-helpers: 1.0.2
  1249. es-errors: 1.3.0
  1250. gopd: 1.2.0
  1251. ee-first@1.1.1: {}
  1252. encodeurl@1.0.2: {}
  1253. encodeurl@2.0.0: {}
  1254. entities@4.5.0: {}
  1255. errno@0.1.8:
  1256. dependencies:
  1257. prr: 1.0.1
  1258. optional: true
  1259. es-define-property@1.0.1: {}
  1260. es-errors@1.3.0: {}
  1261. es-object-atoms@1.1.1:
  1262. dependencies:
  1263. es-errors: 1.3.0
  1264. es-set-tostringtag@2.1.0:
  1265. dependencies:
  1266. es-errors: 1.3.0
  1267. get-intrinsic: 1.3.0
  1268. has-tostringtag: 1.0.2
  1269. hasown: 2.0.2
  1270. esbuild-android-64@0.15.18:
  1271. optional: true
  1272. esbuild-android-arm64@0.15.18:
  1273. optional: true
  1274. esbuild-darwin-64@0.15.18:
  1275. optional: true
  1276. esbuild-darwin-arm64@0.15.18:
  1277. optional: true
  1278. esbuild-freebsd-64@0.15.18:
  1279. optional: true
  1280. esbuild-freebsd-arm64@0.15.18:
  1281. optional: true
  1282. esbuild-linux-32@0.15.18:
  1283. optional: true
  1284. esbuild-linux-64@0.15.18:
  1285. optional: true
  1286. esbuild-linux-arm64@0.15.18:
  1287. optional: true
  1288. esbuild-linux-arm@0.15.18:
  1289. optional: true
  1290. esbuild-linux-mips64le@0.15.18:
  1291. optional: true
  1292. esbuild-linux-ppc64le@0.15.18:
  1293. optional: true
  1294. esbuild-linux-riscv64@0.15.18:
  1295. optional: true
  1296. esbuild-linux-s390x@0.15.18:
  1297. optional: true
  1298. esbuild-netbsd-64@0.15.18:
  1299. optional: true
  1300. esbuild-openbsd-64@0.15.18:
  1301. optional: true
  1302. esbuild-sunos-64@0.15.18:
  1303. optional: true
  1304. esbuild-windows-32@0.15.18:
  1305. optional: true
  1306. esbuild-windows-64@0.15.18:
  1307. optional: true
  1308. esbuild-windows-arm64@0.15.18:
  1309. optional: true
  1310. esbuild@0.15.18:
  1311. optionalDependencies:
  1312. '@esbuild/android-arm': 0.15.18
  1313. '@esbuild/linux-loong64': 0.15.18
  1314. esbuild-android-64: 0.15.18
  1315. esbuild-android-arm64: 0.15.18
  1316. esbuild-darwin-64: 0.15.18
  1317. esbuild-darwin-arm64: 0.15.18
  1318. esbuild-freebsd-64: 0.15.18
  1319. esbuild-freebsd-arm64: 0.15.18
  1320. esbuild-linux-32: 0.15.18
  1321. esbuild-linux-64: 0.15.18
  1322. esbuild-linux-arm: 0.15.18
  1323. esbuild-linux-arm64: 0.15.18
  1324. esbuild-linux-mips64le: 0.15.18
  1325. esbuild-linux-ppc64le: 0.15.18
  1326. esbuild-linux-riscv64: 0.15.18
  1327. esbuild-linux-s390x: 0.15.18
  1328. esbuild-netbsd-64: 0.15.18
  1329. esbuild-openbsd-64: 0.15.18
  1330. esbuild-sunos-64: 0.15.18
  1331. esbuild-windows-32: 0.15.18
  1332. esbuild-windows-64: 0.15.18
  1333. esbuild-windows-arm64: 0.15.18
  1334. escape-html@1.0.3: {}
  1335. estree-walker@2.0.2: {}
  1336. etag@1.8.1: {}
  1337. eventemitter3@4.0.7: {}
  1338. express@4.21.2:
  1339. dependencies:
  1340. accepts: 1.3.8
  1341. array-flatten: 1.1.1
  1342. body-parser: 1.20.3
  1343. content-disposition: 0.5.4
  1344. content-type: 1.0.5
  1345. cookie: 0.7.1
  1346. cookie-signature: 1.0.6
  1347. debug: 2.6.9
  1348. depd: 2.0.0
  1349. encodeurl: 2.0.0
  1350. escape-html: 1.0.3
  1351. etag: 1.8.1
  1352. finalhandler: 1.3.1
  1353. fresh: 0.5.2
  1354. http-errors: 2.0.0
  1355. merge-descriptors: 1.0.3
  1356. methods: 1.1.2
  1357. on-finished: 2.4.1
  1358. parseurl: 1.3.3
  1359. path-to-regexp: 0.1.12
  1360. proxy-addr: 2.0.7
  1361. qs: 6.13.0
  1362. range-parser: 1.2.1
  1363. safe-buffer: 5.2.1
  1364. send: 0.19.0
  1365. serve-static: 1.16.2
  1366. setprototypeof: 1.2.0
  1367. statuses: 2.0.1
  1368. type-is: 1.6.18
  1369. utils-merge: 1.0.1
  1370. vary: 1.1.2
  1371. transitivePeerDependencies:
  1372. - supports-color
  1373. fast-printf@1.6.10: {}
  1374. fill-range@7.1.1:
  1375. dependencies:
  1376. to-regex-range: 5.0.1
  1377. optional: true
  1378. finalhandler@1.3.1:
  1379. dependencies:
  1380. debug: 2.6.9
  1381. encodeurl: 2.0.0
  1382. escape-html: 1.0.3
  1383. on-finished: 2.4.1
  1384. parseurl: 1.3.3
  1385. statuses: 2.0.1
  1386. unpipe: 1.0.0
  1387. transitivePeerDependencies:
  1388. - supports-color
  1389. follow-redirects@1.15.9(debug@4.4.0):
  1390. optionalDependencies:
  1391. debug: 4.4.0
  1392. form-data@4.0.2:
  1393. dependencies:
  1394. asynckit: 0.4.0
  1395. combined-stream: 1.0.8
  1396. es-set-tostringtag: 2.1.0
  1397. mime-types: 2.1.35
  1398. forwarded@0.2.0: {}
  1399. frac@1.1.2: {}
  1400. fresh@0.5.2: {}
  1401. fsevents@2.3.3:
  1402. optional: true
  1403. function-bind@1.1.2: {}
  1404. get-intrinsic@1.3.0:
  1405. dependencies:
  1406. call-bind-apply-helpers: 1.0.2
  1407. es-define-property: 1.0.1
  1408. es-errors: 1.3.0
  1409. es-object-atoms: 1.1.1
  1410. function-bind: 1.1.2
  1411. get-proto: 1.0.1
  1412. gopd: 1.2.0
  1413. has-symbols: 1.1.0
  1414. hasown: 2.0.2
  1415. math-intrinsics: 1.1.0
  1416. get-proto@1.0.1:
  1417. dependencies:
  1418. dunder-proto: 1.0.1
  1419. es-object-atoms: 1.1.1
  1420. gopd@1.2.0: {}
  1421. graceful-fs@4.2.11:
  1422. optional: true
  1423. has-symbols@1.1.0: {}
  1424. has-tostringtag@1.0.2:
  1425. dependencies:
  1426. has-symbols: 1.1.0
  1427. hasown@2.0.2:
  1428. dependencies:
  1429. function-bind: 1.1.2
  1430. http-errors@2.0.0:
  1431. dependencies:
  1432. depd: 2.0.0
  1433. inherits: 2.0.4
  1434. setprototypeof: 1.2.0
  1435. statuses: 2.0.1
  1436. toidentifier: 1.0.1
  1437. i18n@0.15.1:
  1438. dependencies:
  1439. '@messageformat/core': 3.4.0
  1440. debug: 4.4.0
  1441. fast-printf: 1.6.10
  1442. make-plural: 7.4.0
  1443. math-interval-parser: 2.0.1
  1444. mustache: 4.2.0
  1445. transitivePeerDependencies:
  1446. - supports-color
  1447. iconv-lite@0.4.24:
  1448. dependencies:
  1449. safer-buffer: 2.1.2
  1450. iconv-lite@0.6.3:
  1451. dependencies:
  1452. safer-buffer: 2.1.2
  1453. optional: true
  1454. image-size@0.5.5:
  1455. optional: true
  1456. immutable@5.1.1: {}
  1457. inherits@2.0.4: {}
  1458. ipaddr.js@1.9.1: {}
  1459. is-core-module@2.16.1:
  1460. dependencies:
  1461. hasown: 2.0.2
  1462. is-extglob@2.1.1:
  1463. optional: true
  1464. is-glob@4.0.3:
  1465. dependencies:
  1466. is-extglob: 2.1.1
  1467. optional: true
  1468. is-number@7.0.0:
  1469. optional: true
  1470. is-plain-object@3.0.1: {}
  1471. is-what@3.14.1: {}
  1472. js-tokens@4.0.0: {}
  1473. less@4.3.0:
  1474. dependencies:
  1475. copy-anything: 2.0.6
  1476. parse-node-version: 1.0.1
  1477. tslib: 2.8.1
  1478. optionalDependencies:
  1479. errno: 0.1.8
  1480. graceful-fs: 4.2.11
  1481. image-size: 0.5.5
  1482. make-dir: 2.1.0
  1483. mime: 1.6.0
  1484. needle: 3.3.1
  1485. source-map: 0.6.1
  1486. lodash-es@4.17.21: {}
  1487. lodash@4.17.21: {}
  1488. loose-envify@1.4.0:
  1489. dependencies:
  1490. js-tokens: 4.0.0
  1491. magic-string@0.25.9:
  1492. dependencies:
  1493. sourcemap-codec: 1.4.8
  1494. magic-string@0.30.17:
  1495. dependencies:
  1496. '@jridgewell/sourcemap-codec': 1.5.0
  1497. make-dir@2.1.0:
  1498. dependencies:
  1499. pify: 4.0.1
  1500. semver: 5.7.2
  1501. optional: true
  1502. make-plural@7.4.0: {}
  1503. math-interval-parser@2.0.1: {}
  1504. math-intrinsics@1.1.0: {}
  1505. media-typer@0.3.0: {}
  1506. merge-descriptors@1.0.3: {}
  1507. methods@1.1.2: {}
  1508. micromatch@4.0.8:
  1509. dependencies:
  1510. braces: 3.0.3
  1511. picomatch: 2.3.1
  1512. optional: true
  1513. mime-db@1.52.0: {}
  1514. mime-types@2.1.35:
  1515. dependencies:
  1516. mime-db: 1.52.0
  1517. mime@1.6.0: {}
  1518. mitt@3.0.1: {}
  1519. moo@0.5.2: {}
  1520. ms@2.0.0: {}
  1521. ms@2.1.3: {}
  1522. mustache@4.2.0: {}
  1523. nanoid@3.3.11: {}
  1524. nanopop@2.4.2: {}
  1525. needle@3.3.1:
  1526. dependencies:
  1527. iconv-lite: 0.6.3
  1528. sax: 1.4.1
  1529. optional: true
  1530. negotiator@0.6.3: {}
  1531. node-addon-api@7.1.1:
  1532. optional: true
  1533. object-inspect@1.13.4: {}
  1534. on-finished@2.4.1:
  1535. dependencies:
  1536. ee-first: 1.1.1
  1537. parse-node-version@1.0.1: {}
  1538. parseurl@1.3.3: {}
  1539. path-parse@1.0.7: {}
  1540. path-to-regexp@0.1.12: {}
  1541. picocolors@1.1.1: {}
  1542. picomatch@2.3.1:
  1543. optional: true
  1544. pify@4.0.1:
  1545. optional: true
  1546. postcss@8.5.3:
  1547. dependencies:
  1548. nanoid: 3.3.11
  1549. picocolors: 1.1.1
  1550. source-map-js: 1.2.1
  1551. proxy-addr@2.0.7:
  1552. dependencies:
  1553. forwarded: 0.2.0
  1554. ipaddr.js: 1.9.1
  1555. proxy-from-env@1.1.0: {}
  1556. prr@1.0.1:
  1557. optional: true
  1558. qs@6.13.0:
  1559. dependencies:
  1560. side-channel: 1.1.0
  1561. range-parser@1.2.1: {}
  1562. raw-body@2.5.2:
  1563. dependencies:
  1564. bytes: 3.1.2
  1565. http-errors: 2.0.0
  1566. iconv-lite: 0.4.24
  1567. unpipe: 1.0.0
  1568. readdirp@4.1.2: {}
  1569. regenerator-runtime@0.14.1: {}
  1570. resize-observer-polyfill@1.5.1: {}
  1571. resolve@1.22.10:
  1572. dependencies:
  1573. is-core-module: 2.16.1
  1574. path-parse: 1.0.7
  1575. supports-preserve-symlinks-flag: 1.0.0
  1576. rollup@2.79.2:
  1577. optionalDependencies:
  1578. fsevents: 2.3.3
  1579. rxjs@7.5.7:
  1580. dependencies:
  1581. tslib: 2.8.1
  1582. safe-buffer@5.2.1: {}
  1583. safe-identifier@0.4.2: {}
  1584. safer-buffer@2.1.2: {}
  1585. sass@1.87.0:
  1586. dependencies:
  1587. chokidar: 4.0.3
  1588. immutable: 5.1.1
  1589. source-map-js: 1.2.1
  1590. optionalDependencies:
  1591. '@parcel/watcher': 2.5.1
  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. send@0.19.0:
  1600. dependencies:
  1601. debug: 2.6.9
  1602. depd: 2.0.0
  1603. destroy: 1.2.0
  1604. encodeurl: 1.0.2
  1605. escape-html: 1.0.3
  1606. etag: 1.8.1
  1607. fresh: 0.5.2
  1608. http-errors: 2.0.0
  1609. mime: 1.6.0
  1610. ms: 2.1.3
  1611. on-finished: 2.4.1
  1612. range-parser: 1.2.1
  1613. statuses: 2.0.1
  1614. transitivePeerDependencies:
  1615. - supports-color
  1616. serve-static@1.16.2:
  1617. dependencies:
  1618. encodeurl: 2.0.0
  1619. escape-html: 1.0.3
  1620. parseurl: 1.3.3
  1621. send: 0.19.0
  1622. transitivePeerDependencies:
  1623. - supports-color
  1624. setprototypeof@1.2.0: {}
  1625. shallow-equal@1.2.1: {}
  1626. side-channel-list@1.0.0:
  1627. dependencies:
  1628. es-errors: 1.3.0
  1629. object-inspect: 1.13.4
  1630. side-channel-map@1.0.1:
  1631. dependencies:
  1632. call-bound: 1.0.4
  1633. es-errors: 1.3.0
  1634. get-intrinsic: 1.3.0
  1635. object-inspect: 1.13.4
  1636. side-channel-weakmap@1.0.2:
  1637. dependencies:
  1638. call-bound: 1.0.4
  1639. es-errors: 1.3.0
  1640. get-intrinsic: 1.3.0
  1641. object-inspect: 1.13.4
  1642. side-channel-map: 1.0.1
  1643. side-channel@1.1.0:
  1644. dependencies:
  1645. es-errors: 1.3.0
  1646. object-inspect: 1.13.4
  1647. side-channel-list: 1.0.0
  1648. side-channel-map: 1.0.1
  1649. side-channel-weakmap: 1.0.2
  1650. simaqcore@1.2.0:
  1651. dependencies:
  1652. eventemitter3: 4.0.7
  1653. rxjs: 7.5.7
  1654. sortablejs@1.14.0: {}
  1655. source-map-js@1.2.1: {}
  1656. source-map@0.6.1: {}
  1657. sourcemap-codec@1.4.8: {}
  1658. ssf@0.11.2:
  1659. dependencies:
  1660. frac: 1.1.2
  1661. statuses@2.0.1: {}
  1662. stylis@4.3.6: {}
  1663. supports-preserve-symlinks-flag@1.0.0: {}
  1664. swiper@11.2.6: {}
  1665. throttle-debounce@5.0.2: {}
  1666. to-regex-range@5.0.1:
  1667. dependencies:
  1668. is-number: 7.0.0
  1669. optional: true
  1670. toidentifier@1.0.1: {}
  1671. tslib@2.8.1: {}
  1672. type-is@1.6.18:
  1673. dependencies:
  1674. media-typer: 0.3.0
  1675. mime-types: 2.1.35
  1676. typescript@4.9.5: {}
  1677. undici-types@5.26.5: {}
  1678. unpipe@1.0.0: {}
  1679. utils-merge@1.0.1: {}
  1680. vary@1.1.2: {}
  1681. vite-plugin-mkcert@1.17.8(vite@3.2.11(@types/node@18.19.87)(less@4.3.0)(sass@1.87.0)):
  1682. dependencies:
  1683. axios: 1.9.0(debug@4.4.0)
  1684. debug: 4.4.0
  1685. picocolors: 1.1.1
  1686. vite: 3.2.11(@types/node@18.19.87)(less@4.3.0)(sass@1.87.0)
  1687. transitivePeerDependencies:
  1688. - supports-color
  1689. vite@3.2.11(@types/node@18.19.87)(less@4.3.0)(sass@1.87.0):
  1690. dependencies:
  1691. esbuild: 0.15.18
  1692. postcss: 8.5.3
  1693. resolve: 1.22.10
  1694. rollup: 2.79.2
  1695. optionalDependencies:
  1696. '@types/node': 18.19.87
  1697. fsevents: 2.3.3
  1698. less: 4.3.0
  1699. sass: 1.87.0
  1700. vue-cropper@1.0.2: {}
  1701. vue-i18n@11.1.4(vue@3.2.47):
  1702. dependencies:
  1703. '@intlify/core-base': 11.1.4
  1704. '@intlify/shared': 11.1.4
  1705. '@vue/devtools-api': 6.6.4
  1706. vue: 3.2.47
  1707. vue-router@4.5.1(vue@3.2.47):
  1708. dependencies:
  1709. '@vue/devtools-api': 6.6.4
  1710. vue: 3.2.47
  1711. vue-tsc@0.38.9(typescript@4.9.5):
  1712. dependencies:
  1713. '@volar/vue-typescript': 0.38.9
  1714. typescript: 4.9.5
  1715. vue-types@3.0.2(vue@3.2.47):
  1716. dependencies:
  1717. is-plain-object: 3.0.1
  1718. vue: 3.2.47
  1719. vue@3.2.47:
  1720. dependencies:
  1721. '@vue/compiler-dom': 3.2.47
  1722. '@vue/compiler-sfc': 3.2.47
  1723. '@vue/runtime-dom': 3.2.47
  1724. '@vue/server-renderer': 3.2.47(vue@3.2.47)
  1725. '@vue/shared': 3.2.47
  1726. vuedraggable@4.1.0(vue@3.2.47):
  1727. dependencies:
  1728. sortablejs: 1.14.0
  1729. vue: 3.2.47
  1730. warning@4.0.3:
  1731. dependencies:
  1732. loose-envify: 1.4.0
  1733. wmf@1.0.2: {}
  1734. word@0.3.0: {}
  1735. xlsx@0.18.5:
  1736. dependencies:
  1737. adler-32: 1.3.1
  1738. cfb: 1.2.2
  1739. codepage: 1.15.0
  1740. crc-32: 1.2.2
  1741. ssf: 0.11.2
  1742. wmf: 1.0.2
  1743. word: 0.3.0