pnpm-lock.yaml 72 KB

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