pnpm-lock.yaml 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. docx-preview:
  9. specifier: 0.3.5
  10. version: 0.3.5
  11. element-plus:
  12. specifier: ^2.9.8
  13. version: 2.9.8(vue@3.5.13(typescript@5.7.3))
  14. exceljs:
  15. specifier: 4.4.0
  16. version: 4.4.0
  17. html2canvas:
  18. specifier: 1.4.1
  19. version: 1.4.1
  20. lodash-es:
  21. specifier: ^4.17.21
  22. version: 4.17.21
  23. pdfjs-dist:
  24. specifier: ^5.1.91
  25. version: 5.1.91
  26. tinycolor2:
  27. specifier: 1.6.0
  28. version: 1.6.0
  29. vue:
  30. specifier: ^3.5.13
  31. version: 3.5.13(typescript@5.7.3)
  32. vue-router:
  33. specifier: '4'
  34. version: 4.5.0(vue@3.5.13(typescript@5.7.3))
  35. wisdom-pptxtojson:
  36. specifier: ^1.0.0
  37. version: 1.0.0
  38. x-data-spreadsheet:
  39. specifier: ^1.1.9
  40. version: 1.1.9
  41. devDependencies:
  42. '@vitejs/plugin-vue':
  43. specifier: ^5.2.2
  44. version: 5.2.3(vite@6.3.3(less@4.3.0))(vue@3.5.13(typescript@5.7.3))
  45. '@vue/tsconfig':
  46. specifier: ^0.7.0
  47. version: 0.7.0(typescript@5.7.3)(vue@3.5.13(typescript@5.7.3))
  48. less:
  49. specifier: ^4.3.0
  50. version: 4.3.0
  51. typescript:
  52. specifier: ~5.7.2
  53. version: 5.7.3
  54. unplugin-auto-import:
  55. specifier: ^19.1.2
  56. version: 19.1.2(@vueuse/core@9.13.0(vue@3.5.13(typescript@5.7.3)))
  57. unplugin-vue-components:
  58. specifier: ^28.5.0
  59. version: 28.5.0(@babel/parser@7.27.0)(vue@3.5.13(typescript@5.7.3))
  60. vite:
  61. specifier: ^6.3.1
  62. version: 6.3.3(less@4.3.0)
  63. vue-tsc:
  64. specifier: ^2.2.8
  65. version: 2.2.10(typescript@5.7.3)
  66. packages:
  67. '@babel/helper-string-parser@7.25.9':
  68. resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
  69. engines: {node: '>=6.9.0'}
  70. '@babel/helper-validator-identifier@7.25.9':
  71. resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
  72. engines: {node: '>=6.9.0'}
  73. '@babel/parser@7.27.0':
  74. resolution: {integrity: sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==}
  75. engines: {node: '>=6.0.0'}
  76. hasBin: true
  77. '@babel/types@7.27.0':
  78. resolution: {integrity: sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==}
  79. engines: {node: '>=6.9.0'}
  80. '@ctrl/tinycolor@3.6.1':
  81. resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==}
  82. engines: {node: '>=10'}
  83. '@element-plus/icons-vue@2.3.1':
  84. resolution: {integrity: sha512-XxVUZv48RZAd87ucGS48jPf6pKu0yV5UCg9f4FFwtrYxXOwWuVJo6wOvSLKEoMQKjv8GsX/mhP6UsC1lRwbUWg==}
  85. peerDependencies:
  86. vue: ^3.2.0
  87. '@esbuild/aix-ppc64@0.25.3':
  88. resolution: {integrity: sha512-W8bFfPA8DowP8l//sxjJLSLkD8iEjMc7cBVyP+u4cEv9sM7mdUCkgsj+t0n/BWPFtv7WWCN5Yzj0N6FJNUUqBQ==}
  89. engines: {node: '>=18'}
  90. cpu: [ppc64]
  91. os: [aix]
  92. '@esbuild/android-arm64@0.25.3':
  93. resolution: {integrity: sha512-XelR6MzjlZuBM4f5z2IQHK6LkK34Cvv6Rj2EntER3lwCBFdg6h2lKbtRjpTTsdEjD/WSe1q8UyPBXP1x3i/wYQ==}
  94. engines: {node: '>=18'}
  95. cpu: [arm64]
  96. os: [android]
  97. '@esbuild/android-arm@0.25.3':
  98. resolution: {integrity: sha512-PuwVXbnP87Tcff5I9ngV0lmiSu40xw1At6i3GsU77U7cjDDB4s0X2cyFuBiDa1SBk9DnvWwnGvVaGBqoFWPb7A==}
  99. engines: {node: '>=18'}
  100. cpu: [arm]
  101. os: [android]
  102. '@esbuild/android-x64@0.25.3':
  103. resolution: {integrity: sha512-ogtTpYHT/g1GWS/zKM0cc/tIebFjm1F9Aw1boQ2Y0eUQ+J89d0jFY//s9ei9jVIlkYi8AfOjiixcLJSGNSOAdQ==}
  104. engines: {node: '>=18'}
  105. cpu: [x64]
  106. os: [android]
  107. '@esbuild/darwin-arm64@0.25.3':
  108. resolution: {integrity: sha512-eESK5yfPNTqpAmDfFWNsOhmIOaQA59tAcF/EfYvo5/QWQCzXn5iUSOnqt3ra3UdzBv073ykTtmeLJZGt3HhA+w==}
  109. engines: {node: '>=18'}
  110. cpu: [arm64]
  111. os: [darwin]
  112. '@esbuild/darwin-x64@0.25.3':
  113. resolution: {integrity: sha512-Kd8glo7sIZtwOLcPbW0yLpKmBNWMANZhrC1r6K++uDR2zyzb6AeOYtI6udbtabmQpFaxJ8uduXMAo1gs5ozz8A==}
  114. engines: {node: '>=18'}
  115. cpu: [x64]
  116. os: [darwin]
  117. '@esbuild/freebsd-arm64@0.25.3':
  118. resolution: {integrity: sha512-EJiyS70BYybOBpJth3M0KLOus0n+RRMKTYzhYhFeMwp7e/RaajXvP+BWlmEXNk6uk+KAu46j/kaQzr6au+JcIw==}
  119. engines: {node: '>=18'}
  120. cpu: [arm64]
  121. os: [freebsd]
  122. '@esbuild/freebsd-x64@0.25.3':
  123. resolution: {integrity: sha512-Q+wSjaLpGxYf7zC0kL0nDlhsfuFkoN+EXrx2KSB33RhinWzejOd6AvgmP5JbkgXKmjhmpfgKZq24pneodYqE8Q==}
  124. engines: {node: '>=18'}
  125. cpu: [x64]
  126. os: [freebsd]
  127. '@esbuild/linux-arm64@0.25.3':
  128. resolution: {integrity: sha512-xCUgnNYhRD5bb1C1nqrDV1PfkwgbswTTBRbAd8aH5PhYzikdf/ddtsYyMXFfGSsb/6t6QaPSzxtbfAZr9uox4A==}
  129. engines: {node: '>=18'}
  130. cpu: [arm64]
  131. os: [linux]
  132. '@esbuild/linux-arm@0.25.3':
  133. resolution: {integrity: sha512-dUOVmAUzuHy2ZOKIHIKHCm58HKzFqd+puLaS424h6I85GlSDRZIA5ycBixb3mFgM0Jdh+ZOSB6KptX30DD8YOQ==}
  134. engines: {node: '>=18'}
  135. cpu: [arm]
  136. os: [linux]
  137. '@esbuild/linux-ia32@0.25.3':
  138. resolution: {integrity: sha512-yplPOpczHOO4jTYKmuYuANI3WhvIPSVANGcNUeMlxH4twz/TeXuzEP41tGKNGWJjuMhotpGabeFYGAOU2ummBw==}
  139. engines: {node: '>=18'}
  140. cpu: [ia32]
  141. os: [linux]
  142. '@esbuild/linux-loong64@0.25.3':
  143. resolution: {integrity: sha512-P4BLP5/fjyihmXCELRGrLd793q/lBtKMQl8ARGpDxgzgIKJDRJ/u4r1A/HgpBpKpKZelGct2PGI4T+axcedf6g==}
  144. engines: {node: '>=18'}
  145. cpu: [loong64]
  146. os: [linux]
  147. '@esbuild/linux-mips64el@0.25.3':
  148. resolution: {integrity: sha512-eRAOV2ODpu6P5divMEMa26RRqb2yUoYsuQQOuFUexUoQndm4MdpXXDBbUoKIc0iPa4aCO7gIhtnYomkn2x+bag==}
  149. engines: {node: '>=18'}
  150. cpu: [mips64el]
  151. os: [linux]
  152. '@esbuild/linux-ppc64@0.25.3':
  153. resolution: {integrity: sha512-ZC4jV2p7VbzTlnl8nZKLcBkfzIf4Yad1SJM4ZMKYnJqZFD4rTI+pBG65u8ev4jk3/MPwY9DvGn50wi3uhdaghg==}
  154. engines: {node: '>=18'}
  155. cpu: [ppc64]
  156. os: [linux]
  157. '@esbuild/linux-riscv64@0.25.3':
  158. resolution: {integrity: sha512-LDDODcFzNtECTrUUbVCs6j9/bDVqy7DDRsuIXJg6so+mFksgwG7ZVnTruYi5V+z3eE5y+BJZw7VvUadkbfg7QA==}
  159. engines: {node: '>=18'}
  160. cpu: [riscv64]
  161. os: [linux]
  162. '@esbuild/linux-s390x@0.25.3':
  163. resolution: {integrity: sha512-s+w/NOY2k0yC2p9SLen+ymflgcpRkvwwa02fqmAwhBRI3SC12uiS10edHHXlVWwfAagYSY5UpmT/zISXPMW3tQ==}
  164. engines: {node: '>=18'}
  165. cpu: [s390x]
  166. os: [linux]
  167. '@esbuild/linux-x64@0.25.3':
  168. resolution: {integrity: sha512-nQHDz4pXjSDC6UfOE1Fw9Q8d6GCAd9KdvMZpfVGWSJztYCarRgSDfOVBY5xwhQXseiyxapkiSJi/5/ja8mRFFA==}
  169. engines: {node: '>=18'}
  170. cpu: [x64]
  171. os: [linux]
  172. '@esbuild/netbsd-arm64@0.25.3':
  173. resolution: {integrity: sha512-1QaLtOWq0mzK6tzzp0jRN3eccmN3hezey7mhLnzC6oNlJoUJz4nym5ZD7mDnS/LZQgkrhEbEiTn515lPeLpgWA==}
  174. engines: {node: '>=18'}
  175. cpu: [arm64]
  176. os: [netbsd]
  177. '@esbuild/netbsd-x64@0.25.3':
  178. resolution: {integrity: sha512-i5Hm68HXHdgv8wkrt+10Bc50zM0/eonPb/a/OFVfB6Qvpiirco5gBA5bz7S2SHuU+Y4LWn/zehzNX14Sp4r27g==}
  179. engines: {node: '>=18'}
  180. cpu: [x64]
  181. os: [netbsd]
  182. '@esbuild/openbsd-arm64@0.25.3':
  183. resolution: {integrity: sha512-zGAVApJEYTbOC6H/3QBr2mq3upG/LBEXr85/pTtKiv2IXcgKV0RT0QA/hSXZqSvLEpXeIxah7LczB4lkiYhTAQ==}
  184. engines: {node: '>=18'}
  185. cpu: [arm64]
  186. os: [openbsd]
  187. '@esbuild/openbsd-x64@0.25.3':
  188. resolution: {integrity: sha512-fpqctI45NnCIDKBH5AXQBsD0NDPbEFczK98hk/aa6HJxbl+UtLkJV2+Bvy5hLSLk3LHmqt0NTkKNso1A9y1a4w==}
  189. engines: {node: '>=18'}
  190. cpu: [x64]
  191. os: [openbsd]
  192. '@esbuild/sunos-x64@0.25.3':
  193. resolution: {integrity: sha512-ROJhm7d8bk9dMCUZjkS8fgzsPAZEjtRJqCAmVgB0gMrvG7hfmPmz9k1rwO4jSiblFjYmNvbECL9uhaPzONMfgA==}
  194. engines: {node: '>=18'}
  195. cpu: [x64]
  196. os: [sunos]
  197. '@esbuild/win32-arm64@0.25.3':
  198. resolution: {integrity: sha512-YWcow8peiHpNBiIXHwaswPnAXLsLVygFwCB3A7Bh5jRkIBFWHGmNQ48AlX4xDvQNoMZlPYzjVOQDYEzWCqufMQ==}
  199. engines: {node: '>=18'}
  200. cpu: [arm64]
  201. os: [win32]
  202. '@esbuild/win32-ia32@0.25.3':
  203. resolution: {integrity: sha512-qspTZOIGoXVS4DpNqUYUs9UxVb04khS1Degaw/MnfMe7goQ3lTfQ13Vw4qY/Nj0979BGvMRpAYbs/BAxEvU8ew==}
  204. engines: {node: '>=18'}
  205. cpu: [ia32]
  206. os: [win32]
  207. '@esbuild/win32-x64@0.25.3':
  208. resolution: {integrity: sha512-ICgUR+kPimx0vvRzf+N/7L7tVSQeE3BYY+NhHRHXS1kBuPO7z2+7ea2HbhDyZdTephgvNvKrlDDKUexuCVBVvg==}
  209. engines: {node: '>=18'}
  210. cpu: [x64]
  211. os: [win32]
  212. '@fast-csv/format@4.3.5':
  213. resolution: {integrity: sha512-8iRn6QF3I8Ak78lNAa+Gdl5MJJBM5vRHivFtMRUWINdevNo00K7OXxS2PshawLKTejVwieIlPmK5YlLu6w4u8A==}
  214. '@fast-csv/parse@4.3.6':
  215. resolution: {integrity: sha512-uRsLYksqpbDmWaSmzvJcuApSEe38+6NQZBUsuAyMZKqHxH0g1wcJgsKUvN3WC8tewaqFjBMMGrkHmC+T7k8LvA==}
  216. '@floating-ui/core@1.6.9':
  217. resolution: {integrity: sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==}
  218. '@floating-ui/dom@1.6.13':
  219. resolution: {integrity: sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==}
  220. '@floating-ui/utils@0.2.9':
  221. resolution: {integrity: sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==}
  222. '@jridgewell/sourcemap-codec@1.5.0':
  223. resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
  224. '@napi-rs/canvas-android-arm64@0.1.69':
  225. resolution: {integrity: sha512-4icWTByY8zPvM9SelfQKf3I6kwXw0aI5drBOVrwfER5kjwXJd78FPSDSZkxDHjvIo9Q86ljl18Yr963ehA4sHQ==}
  226. engines: {node: '>= 10'}
  227. cpu: [arm64]
  228. os: [android]
  229. '@napi-rs/canvas-darwin-arm64@0.1.69':
  230. resolution: {integrity: sha512-HOanhhYlHdukA+unjelT4Dg3ta7e820x87/AG2dKUMsUzH19jaeZs9bcYjzEy2vYi/dFWKz7cSv2yaIOudB8Yg==}
  231. engines: {node: '>= 10'}
  232. cpu: [arm64]
  233. os: [darwin]
  234. '@napi-rs/canvas-darwin-x64@0.1.69':
  235. resolution: {integrity: sha512-SIp7WfhxAPnSVK9bkFfJp+84rbATCIq9jMUzDwpCLhQ+v+OqtXe4pggX1oeV+62/HK6BT1t18qRmJfyqwJ9f3g==}
  236. engines: {node: '>= 10'}
  237. cpu: [x64]
  238. os: [darwin]
  239. '@napi-rs/canvas-linux-arm-gnueabihf@0.1.69':
  240. resolution: {integrity: sha512-Ls+KujCp6TGpkuMVFvrlx+CxtL+casdkrprFjqIuOAnB30Mct6bCEr+I83Tu29s3nNq4EzIGjdmA3fFAZG/Dtw==}
  241. engines: {node: '>= 10'}
  242. cpu: [arm]
  243. os: [linux]
  244. '@napi-rs/canvas-linux-arm64-gnu@0.1.69':
  245. resolution: {integrity: sha512-m8VcGmeSBNRbHZBd1srvdM1aq/ScS2y8KqGqmCCEgJlytYK4jdULzAo2K/BPKE1v3xvn8oUPZDLI/NBJbJkEoA==}
  246. engines: {node: '>= 10'}
  247. cpu: [arm64]
  248. os: [linux]
  249. '@napi-rs/canvas-linux-arm64-musl@0.1.69':
  250. resolution: {integrity: sha512-a3xjNRIeK2m2ZORGv2moBvv3vbkaFZG1QKMeiEv/BKij+rkztuEhTJGMar+buICFgS0fLgphXXsKNkUSJb7eRQ==}
  251. engines: {node: '>= 10'}
  252. cpu: [arm64]
  253. os: [linux]
  254. '@napi-rs/canvas-linux-riscv64-gnu@0.1.69':
  255. resolution: {integrity: sha512-pClUoJF5wdC9AvD0mc15G9JffL1Q85nuH1rLSQPRkGmGmQOtRjw5E9xNbanz7oFUiPbjH7xcAXUjVAcf7tdgPQ==}
  256. engines: {node: '>= 10'}
  257. cpu: [riscv64]
  258. os: [linux]
  259. '@napi-rs/canvas-linux-x64-gnu@0.1.69':
  260. resolution: {integrity: sha512-96X3bFAmzemfw84Ts6Jg/omL86uuynvK06MWGR/mp3JYNumY9RXofA14eF/kJIYelbYFWXcwpbcBR71lJ6G/YQ==}
  261. engines: {node: '>= 10'}
  262. cpu: [x64]
  263. os: [linux]
  264. '@napi-rs/canvas-linux-x64-musl@0.1.69':
  265. resolution: {integrity: sha512-2QTsEFO72Kwkj53W9hc5y1FAUvdGx0V+pjJB+9oQF6Ys9+y989GyPIl5wZDzeh8nIJW6koZZ1eFa8pD+pA5BFQ==}
  266. engines: {node: '>= 10'}
  267. cpu: [x64]
  268. os: [linux]
  269. '@napi-rs/canvas-win32-x64-msvc@0.1.69':
  270. resolution: {integrity: sha512-Q4YA8kVnKarApBVLu7F8icGlIfSll5Glswo5hY6gPS4Is2dCI8+ig9OeDM8RlwYevUIxKq8lZBypN8Q1iLAQ7w==}
  271. engines: {node: '>= 10'}
  272. cpu: [x64]
  273. os: [win32]
  274. '@napi-rs/canvas@0.1.69':
  275. resolution: {integrity: sha512-ydvNeJMRm+l3T14yCoUKqjYQiEdXDq1isznI93LEBGYssXKfSaLNLHOkeM4z9Fnw9Pkt2EKOCAtW9cS4b00Zcg==}
  276. engines: {node: '>= 10'}
  277. '@rollup/rollup-android-arm-eabi@4.40.0':
  278. resolution: {integrity: sha512-+Fbls/diZ0RDerhE8kyC6hjADCXA1K4yVNlH0EYfd2XjyH0UGgzaQ8MlT0pCXAThfxv3QUAczHaL+qSv1E4/Cg==}
  279. cpu: [arm]
  280. os: [android]
  281. '@rollup/rollup-android-arm64@4.40.0':
  282. resolution: {integrity: sha512-PPA6aEEsTPRz+/4xxAmaoWDqh67N7wFbgFUJGMnanCFs0TV99M0M8QhhaSCks+n6EbQoFvLQgYOGXxlMGQe/6w==}
  283. cpu: [arm64]
  284. os: [android]
  285. '@rollup/rollup-darwin-arm64@4.40.0':
  286. resolution: {integrity: sha512-GwYOcOakYHdfnjjKwqpTGgn5a6cUX7+Ra2HeNj/GdXvO2VJOOXCiYYlRFU4CubFM67EhbmzLOmACKEfvp3J1kQ==}
  287. cpu: [arm64]
  288. os: [darwin]
  289. '@rollup/rollup-darwin-x64@4.40.0':
  290. resolution: {integrity: sha512-CoLEGJ+2eheqD9KBSxmma6ld01czS52Iw0e2qMZNpPDlf7Z9mj8xmMemxEucinev4LgHalDPczMyxzbq+Q+EtA==}
  291. cpu: [x64]
  292. os: [darwin]
  293. '@rollup/rollup-freebsd-arm64@4.40.0':
  294. resolution: {integrity: sha512-r7yGiS4HN/kibvESzmrOB/PxKMhPTlz+FcGvoUIKYoTyGd5toHp48g1uZy1o1xQvybwwpqpe010JrcGG2s5nkg==}
  295. cpu: [arm64]
  296. os: [freebsd]
  297. '@rollup/rollup-freebsd-x64@4.40.0':
  298. resolution: {integrity: sha512-mVDxzlf0oLzV3oZOr0SMJ0lSDd3xC4CmnWJ8Val8isp9jRGl5Dq//LLDSPFrasS7pSm6m5xAcKaw3sHXhBjoRw==}
  299. cpu: [x64]
  300. os: [freebsd]
  301. '@rollup/rollup-linux-arm-gnueabihf@4.40.0':
  302. resolution: {integrity: sha512-y/qUMOpJxBMy8xCXD++jeu8t7kzjlOCkoxxajL58G62PJGBZVl/Gwpm7JK9+YvlB701rcQTzjUZ1JgUoPTnoQA==}
  303. cpu: [arm]
  304. os: [linux]
  305. '@rollup/rollup-linux-arm-musleabihf@4.40.0':
  306. resolution: {integrity: sha512-GoCsPibtVdJFPv/BOIvBKO/XmwZLwaNWdyD8TKlXuqp0veo2sHE+A/vpMQ5iSArRUz/uaoj4h5S6Pn0+PdhRjg==}
  307. cpu: [arm]
  308. os: [linux]
  309. '@rollup/rollup-linux-arm64-gnu@4.40.0':
  310. resolution: {integrity: sha512-L5ZLphTjjAD9leJzSLI7rr8fNqJMlGDKlazW2tX4IUF9P7R5TMQPElpH82Q7eNIDQnQlAyiNVfRPfP2vM5Avvg==}
  311. cpu: [arm64]
  312. os: [linux]
  313. '@rollup/rollup-linux-arm64-musl@4.40.0':
  314. resolution: {integrity: sha512-ATZvCRGCDtv1Y4gpDIXsS+wfFeFuLwVxyUBSLawjgXK2tRE6fnsQEkE4csQQYWlBlsFztRzCnBvWVfcae/1qxQ==}
  315. cpu: [arm64]
  316. os: [linux]
  317. '@rollup/rollup-linux-loongarch64-gnu@4.40.0':
  318. resolution: {integrity: sha512-wG9e2XtIhd++QugU5MD9i7OnpaVb08ji3P1y/hNbxrQ3sYEelKJOq1UJ5dXczeo6Hj2rfDEL5GdtkMSVLa/AOg==}
  319. cpu: [loong64]
  320. os: [linux]
  321. '@rollup/rollup-linux-powerpc64le-gnu@4.40.0':
  322. resolution: {integrity: sha512-vgXfWmj0f3jAUvC7TZSU/m/cOE558ILWDzS7jBhiCAFpY2WEBn5jqgbqvmzlMjtp8KlLcBlXVD2mkTSEQE6Ixw==}
  323. cpu: [ppc64]
  324. os: [linux]
  325. '@rollup/rollup-linux-riscv64-gnu@4.40.0':
  326. resolution: {integrity: sha512-uJkYTugqtPZBS3Z136arevt/FsKTF/J9dEMTX/cwR7lsAW4bShzI2R0pJVw+hcBTWF4dxVckYh72Hk3/hWNKvA==}
  327. cpu: [riscv64]
  328. os: [linux]
  329. '@rollup/rollup-linux-riscv64-musl@4.40.0':
  330. resolution: {integrity: sha512-rKmSj6EXQRnhSkE22+WvrqOqRtk733x3p5sWpZilhmjnkHkpeCgWsFFo0dGnUGeA+OZjRl3+VYq+HyCOEuwcxQ==}
  331. cpu: [riscv64]
  332. os: [linux]
  333. '@rollup/rollup-linux-s390x-gnu@4.40.0':
  334. resolution: {integrity: sha512-SpnYlAfKPOoVsQqmTFJ0usx0z84bzGOS9anAC0AZ3rdSo3snecihbhFTlJZ8XMwzqAcodjFU4+/SM311dqE5Sw==}
  335. cpu: [s390x]
  336. os: [linux]
  337. '@rollup/rollup-linux-x64-gnu@4.40.0':
  338. resolution: {integrity: sha512-RcDGMtqF9EFN8i2RYN2W+64CdHruJ5rPqrlYw+cgM3uOVPSsnAQps7cpjXe9be/yDp8UC7VLoCoKC8J3Kn2FkQ==}
  339. cpu: [x64]
  340. os: [linux]
  341. '@rollup/rollup-linux-x64-musl@4.40.0':
  342. resolution: {integrity: sha512-HZvjpiUmSNx5zFgwtQAV1GaGazT2RWvqeDi0hV+AtC8unqqDSsaFjPxfsO6qPtKRRg25SisACWnJ37Yio8ttaw==}
  343. cpu: [x64]
  344. os: [linux]
  345. '@rollup/rollup-win32-arm64-msvc@4.40.0':
  346. resolution: {integrity: sha512-UtZQQI5k/b8d7d3i9AZmA/t+Q4tk3hOC0tMOMSq2GlMYOfxbesxG4mJSeDp0EHs30N9bsfwUvs3zF4v/RzOeTQ==}
  347. cpu: [arm64]
  348. os: [win32]
  349. '@rollup/rollup-win32-ia32-msvc@4.40.0':
  350. resolution: {integrity: sha512-+m03kvI2f5syIqHXCZLPVYplP8pQch9JHyXKZ3AGMKlg8dCyr2PKHjwRLiW53LTrN/Nc3EqHOKxUxzoSPdKddA==}
  351. cpu: [ia32]
  352. os: [win32]
  353. '@rollup/rollup-win32-x64-msvc@4.40.0':
  354. resolution: {integrity: sha512-lpPE1cLfP5oPzVjKMx10pgBmKELQnFJXHgvtHCtuJWOv8MxqdEIMNtgHgBFf7Ea2/7EuVwa9fodWUfXAlXZLZQ==}
  355. cpu: [x64]
  356. os: [win32]
  357. '@sxzz/popperjs-es@2.11.7':
  358. resolution: {integrity: sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==}
  359. '@types/estree@1.0.7':
  360. resolution: {integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==}
  361. '@types/lodash-es@4.17.12':
  362. resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==}
  363. '@types/lodash@4.17.16':
  364. resolution: {integrity: sha512-HX7Em5NYQAXKW+1T+FiuG27NGwzJfCX3s1GjOa7ujxZa52kjJLOr4FUxT+giF6Tgxv1e+/czV/iTtBw27WTU9g==}
  365. '@types/node@14.18.63':
  366. resolution: {integrity: sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==}
  367. '@types/web-bluetooth@0.0.16':
  368. resolution: {integrity: sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==}
  369. '@vitejs/plugin-vue@5.2.3':
  370. resolution: {integrity: sha512-IYSLEQj4LgZZuoVpdSUCw3dIynTWQgPlaRP6iAvMle4My0HdYwr5g5wQAfwOeHQBmYwEkqF70nRpSilr6PoUDg==}
  371. engines: {node: ^18.0.0 || >=20.0.0}
  372. peerDependencies:
  373. vite: ^5.0.0 || ^6.0.0
  374. vue: ^3.2.25
  375. '@volar/language-core@2.4.12':
  376. resolution: {integrity: sha512-RLrFdXEaQBWfSnYGVxvR2WrO6Bub0unkdHYIdC31HzIEqATIuuhRRzYu76iGPZ6OtA4Au1SnW0ZwIqPP217YhA==}
  377. '@volar/source-map@2.4.12':
  378. resolution: {integrity: sha512-bUFIKvn2U0AWojOaqf63ER0N/iHIBYZPpNGogfLPQ68F5Eet6FnLlyho7BS0y2HJ1jFhSif7AcuTx1TqsCzRzw==}
  379. '@volar/typescript@2.4.12':
  380. resolution: {integrity: sha512-HJB73OTJDgPc80K30wxi3if4fSsZZAOScbj2fcicMuOPoOkcf9NNAINb33o+DzhBdF9xTKC1gnPmIRDous5S0g==}
  381. '@vue/compiler-core@3.5.13':
  382. resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==}
  383. '@vue/compiler-dom@3.5.13':
  384. resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==}
  385. '@vue/compiler-sfc@3.5.13':
  386. resolution: {integrity: sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==}
  387. '@vue/compiler-ssr@3.5.13':
  388. resolution: {integrity: sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==}
  389. '@vue/compiler-vue2@2.7.16':
  390. resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
  391. '@vue/devtools-api@6.6.4':
  392. resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
  393. '@vue/language-core@2.2.10':
  394. resolution: {integrity: sha512-+yNoYx6XIKuAO8Mqh1vGytu8jkFEOH5C8iOv3i8Z/65A7x9iAOXA97Q+PqZ3nlm2lxf5rOJuIGI/wDtx/riNYw==}
  395. peerDependencies:
  396. typescript: '*'
  397. peerDependenciesMeta:
  398. typescript:
  399. optional: true
  400. '@vue/reactivity@3.5.13':
  401. resolution: {integrity: sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==}
  402. '@vue/runtime-core@3.5.13':
  403. resolution: {integrity: sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==}
  404. '@vue/runtime-dom@3.5.13':
  405. resolution: {integrity: sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==}
  406. '@vue/server-renderer@3.5.13':
  407. resolution: {integrity: sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==}
  408. peerDependencies:
  409. vue: 3.5.13
  410. '@vue/shared@3.5.13':
  411. resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==}
  412. '@vue/tsconfig@0.7.0':
  413. resolution: {integrity: sha512-ku2uNz5MaZ9IerPPUyOHzyjhXoX2kVJaVf7hL315DC17vS6IiZRmmCPfggNbU16QTvM80+uYYy3eYJB59WCtvg==}
  414. peerDependencies:
  415. typescript: 5.x
  416. vue: ^3.4.0
  417. peerDependenciesMeta:
  418. typescript:
  419. optional: true
  420. vue:
  421. optional: true
  422. '@vueuse/core@9.13.0':
  423. resolution: {integrity: sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==}
  424. '@vueuse/metadata@9.13.0':
  425. resolution: {integrity: sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==}
  426. '@vueuse/shared@9.13.0':
  427. resolution: {integrity: sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==}
  428. acorn@8.14.1:
  429. resolution: {integrity: sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==}
  430. engines: {node: '>=0.4.0'}
  431. hasBin: true
  432. alien-signals@1.0.13:
  433. resolution: {integrity: sha512-OGj9yyTnJEttvzhTUWuscOvtqxq5vrhF7vL9oS0xJ2mK0ItPYP1/y+vCFebfxoEyAz0++1AIwJ5CMr+Fk3nDmg==}
  434. ansi-escapes@1.4.0:
  435. resolution: {integrity: sha512-wiXutNjDUlNEDWHcYH3jtZUhd3c4/VojassD8zHdHCY13xbZy2XbW+NKQwA0tWGBVzDA9qEzYwfoSsWmviidhw==}
  436. engines: {node: '>=0.10.0'}
  437. ansi-regex@2.1.1:
  438. resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==}
  439. engines: {node: '>=0.10.0'}
  440. ansi-regex@3.0.1:
  441. resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==}
  442. engines: {node: '>=4'}
  443. ansi-styles@2.2.1:
  444. resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==}
  445. engines: {node: '>=0.10.0'}
  446. anymatch@3.1.3:
  447. resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
  448. engines: {node: '>= 8'}
  449. archiver-utils@2.1.0:
  450. resolution: {integrity: sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw==}
  451. engines: {node: '>= 6'}
  452. archiver-utils@3.0.4:
  453. resolution: {integrity: sha512-KVgf4XQVrTjhyWmx6cte4RxonPLR9onExufI1jhvw/MQ4BB6IsZD5gT8Lq+u/+pRkWna/6JoHpiQioaqFP5Rzw==}
  454. engines: {node: '>= 10'}
  455. archiver@5.3.2:
  456. resolution: {integrity: sha512-+25nxyyznAXF7Nef3y0EbBeqmGZgeN/BxHX29Rs39djAfaFalmQ89SE6CWyDCHzGL0yt/ycBtNOmGTW0FyGWNw==}
  457. engines: {node: '>= 10'}
  458. async-validator@4.2.5:
  459. resolution: {integrity: sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==}
  460. async@3.2.6:
  461. resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==}
  462. babel-polyfill@6.23.0:
  463. resolution: {integrity: sha512-0l7mVU+LrQ2X/ZTUq63T5i3VyR2aTgcRTFmBcD6djQ/Fek6q1A9t5u0F4jZVYHzp78jwWAzGfLpAY1b4/I3lfg==}
  464. babel-runtime@6.26.0:
  465. resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==}
  466. balanced-match@1.0.2:
  467. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  468. base64-arraybuffer@1.0.2:
  469. resolution: {integrity: sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==}
  470. engines: {node: '>= 0.6.0'}
  471. base64-js@1.5.1:
  472. resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
  473. big-integer@1.6.52:
  474. resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==}
  475. engines: {node: '>=0.6'}
  476. binary-extensions@2.3.0:
  477. resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
  478. engines: {node: '>=8'}
  479. binary@0.3.0:
  480. resolution: {integrity: sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==}
  481. bl@4.1.0:
  482. resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
  483. bluebird@3.4.7:
  484. resolution: {integrity: sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==}
  485. brace-expansion@1.1.11:
  486. resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
  487. brace-expansion@2.0.1:
  488. resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
  489. braces@3.0.3:
  490. resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
  491. engines: {node: '>=8'}
  492. buffer-crc32@0.2.13:
  493. resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
  494. buffer-indexof-polyfill@1.0.2:
  495. resolution: {integrity: sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==}
  496. engines: {node: '>=0.10'}
  497. buffer@5.7.1:
  498. resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
  499. buffers@0.1.1:
  500. resolution: {integrity: sha512-9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ==}
  501. engines: {node: '>=0.2.0'}
  502. chainsaw@0.1.0:
  503. resolution: {integrity: sha512-75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ==}
  504. chalk@1.1.3:
  505. resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==}
  506. engines: {node: '>=0.10.0'}
  507. chardet@0.4.2:
  508. resolution: {integrity: sha512-j/Toj7f1z98Hh2cYo2BVr85EpIRWqUi7rtRSGxh/cqUjqrnJe9l9UE7IUGd2vQ2p+kSHLkSzObQPZPLUC6TQwg==}
  509. chokidar@3.6.0:
  510. resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
  511. engines: {node: '>= 8.10.0'}
  512. cli-cursor@2.1.0:
  513. resolution: {integrity: sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==}
  514. engines: {node: '>=4'}
  515. cli-width@2.2.1:
  516. resolution: {integrity: sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==}
  517. compress-commons@4.1.2:
  518. resolution: {integrity: sha512-D3uMHtGc/fcO1Gt1/L7i1e33VOvD4A9hfQLP+6ewd+BvG/gQ84Yh4oftEhAdjSMgBgwGL+jsppT7JYNpo6MHHg==}
  519. engines: {node: '>= 10'}
  520. concat-map@0.0.1:
  521. resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
  522. confbox@0.1.8:
  523. resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
  524. confbox@0.2.2:
  525. resolution: {integrity: sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==}
  526. copy-anything@2.0.6:
  527. resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==}
  528. core-js@2.6.12:
  529. resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==}
  530. deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.
  531. core-util-is@1.0.3:
  532. resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
  533. crc-32@1.2.2:
  534. resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==}
  535. engines: {node: '>=0.8'}
  536. hasBin: true
  537. crc32-stream@4.0.3:
  538. resolution: {integrity: sha512-NT7w2JVU7DFroFdYkeq8cywxrgjPHWkdX1wjpRQXPX5Asews3tA+Ght6lddQO5Mkumffp3X7GEqku3epj2toIw==}
  539. engines: {node: '>= 10'}
  540. css-line-break@2.1.0:
  541. resolution: {integrity: sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==}
  542. csstype@3.1.3:
  543. resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
  544. dayjs@1.11.13:
  545. resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
  546. de-indent@1.0.2:
  547. resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
  548. debug@4.4.0:
  549. resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
  550. engines: {node: '>=6.0'}
  551. peerDependencies:
  552. supports-color: '*'
  553. peerDependenciesMeta:
  554. supports-color:
  555. optional: true
  556. docx-preview@0.3.5:
  557. resolution: {integrity: sha512-nod1jG5PkvzDIiZAcgAY4gSFQzgmAAChcuZH4Hj9dj7oCzscY3Hn8NfbUv7X7Jk4xL1lfKO113JLDhWKOt6fYw==}
  558. duplexer2@0.1.4:
  559. resolution: {integrity: sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==}
  560. element-plus@2.9.8:
  561. resolution: {integrity: sha512-srViUaUdfblBKGMeuEPiXxxKlH5aUmKqEwmhb/At9Sj91DbU6od/jYN1955cTnzt3wTSA7GfnZF7UiRX9sdRHg==}
  562. peerDependencies:
  563. vue: ^3.2.0
  564. encoding@0.1.13:
  565. resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==}
  566. end-of-stream@1.4.4:
  567. resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
  568. entities@4.5.0:
  569. resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
  570. engines: {node: '>=0.12'}
  571. errno@0.1.8:
  572. resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==}
  573. hasBin: true
  574. esbuild@0.25.3:
  575. resolution: {integrity: sha512-qKA6Pvai73+M2FtftpNKRxJ78GIjmFXFxd/1DVBqGo/qNhLSfv+G12n9pNoWdytJC8U00TrViOwpjT0zgqQS8Q==}
  576. engines: {node: '>=18'}
  577. hasBin: true
  578. escape-html@1.0.3:
  579. resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
  580. escape-string-regexp@1.0.5:
  581. resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
  582. engines: {node: '>=0.8.0'}
  583. escape-string-regexp@5.0.0:
  584. resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
  585. engines: {node: '>=12'}
  586. estree-walker@2.0.2:
  587. resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
  588. estree-walker@3.0.3:
  589. resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
  590. exceljs@4.4.0:
  591. resolution: {integrity: sha512-XctvKaEMaj1Ii9oDOqbW/6e1gXknSY4g/aLCDicOXqBE4M0nRWkUu0PTp++UPNzoFY12BNHMfs/VadKIS6llvg==}
  592. engines: {node: '>=8.3.0'}
  593. exsolve@1.0.5:
  594. resolution: {integrity: sha512-pz5dvkYYKQ1AHVrgOzBKWeP4u4FRb3a6DNK2ucr0OoNwYIU4QWsJ+NM36LLzORT+z845MzKHHhpXiUF5nvQoJg==}
  595. external-editor@2.2.0:
  596. resolution: {integrity: sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A==}
  597. engines: {node: '>=0.12'}
  598. fast-csv@4.3.6:
  599. resolution: {integrity: sha512-2RNSpuwwsJGP0frGsOmTb9oUF+VkFSM4SyLTDgwf2ciHWTarN0lQTC+F2f/t5J9QjW+c65VFIAAu85GsvMIusw==}
  600. engines: {node: '>=10.0.0'}
  601. fdir@6.4.4:
  602. resolution: {integrity: sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg==}
  603. peerDependencies:
  604. picomatch: ^3 || ^4
  605. peerDependenciesMeta:
  606. picomatch:
  607. optional: true
  608. figures@2.0.0:
  609. resolution: {integrity: sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==}
  610. engines: {node: '>=4'}
  611. fill-range@7.1.1:
  612. resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
  613. engines: {node: '>=8'}
  614. fs-constants@1.0.0:
  615. resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
  616. fs.realpath@1.0.0:
  617. resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
  618. fsevents@2.3.3:
  619. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  620. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  621. os: [darwin]
  622. fstream@1.0.12:
  623. resolution: {integrity: sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==}
  624. engines: {node: '>=0.6'}
  625. deprecated: This package is no longer supported.
  626. glob-parent@5.1.2:
  627. resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
  628. engines: {node: '>= 6'}
  629. glob@7.2.3:
  630. resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
  631. deprecated: Glob versions prior to v9 are no longer supported
  632. graceful-fs@4.2.11:
  633. resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
  634. has-ansi@2.0.0:
  635. resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==}
  636. engines: {node: '>=0.10.0'}
  637. he@1.2.0:
  638. resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
  639. hasBin: true
  640. html2canvas@1.4.1:
  641. resolution: {integrity: sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==}
  642. engines: {node: '>=8.0.0'}
  643. iconv-lite@0.4.24:
  644. resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
  645. engines: {node: '>=0.10.0'}
  646. iconv-lite@0.6.3:
  647. resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
  648. engines: {node: '>=0.10.0'}
  649. ieee754@1.2.1:
  650. resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
  651. image-size@0.5.5:
  652. resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==}
  653. engines: {node: '>=0.10.0'}
  654. hasBin: true
  655. immediate@3.0.6:
  656. resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==}
  657. inflight@1.0.6:
  658. resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
  659. deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
  660. inherits@2.0.4:
  661. resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
  662. inquirer@3.0.6:
  663. resolution: {integrity: sha512-thluxTGBXUGb8DuQcvH9/CM/CrcGyB5xUpWc9x6Slqcq1z/hRr2a6KxUpX4ddRfmbe0hg3E4jTvo5833aWz3BA==}
  664. is-binary-path@2.1.0:
  665. resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
  666. engines: {node: '>=8'}
  667. is-extglob@2.1.1:
  668. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  669. engines: {node: '>=0.10.0'}
  670. is-fullwidth-code-point@2.0.0:
  671. resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==}
  672. engines: {node: '>=4'}
  673. is-glob@4.0.3:
  674. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  675. engines: {node: '>=0.10.0'}
  676. is-number@7.0.0:
  677. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  678. engines: {node: '>=0.12.0'}
  679. is-stream@1.1.0:
  680. resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==}
  681. engines: {node: '>=0.10.0'}
  682. is-what@3.14.1:
  683. resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==}
  684. isarray@1.0.0:
  685. resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
  686. js-tokens@9.0.1:
  687. resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==}
  688. jszip@3.10.1:
  689. resolution: {integrity: sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==}
  690. lazystream@1.0.1:
  691. resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==}
  692. engines: {node: '>= 0.6.3'}
  693. less@4.3.0:
  694. resolution: {integrity: sha512-X9RyH9fvemArzfdP8Pi3irr7lor2Ok4rOttDXBhlwDg+wKQsXOXgHWduAJE1EsF7JJx0w0bcO6BC6tCKKYnXKA==}
  695. engines: {node: '>=14'}
  696. hasBin: true
  697. lie@3.3.0:
  698. resolution: {integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==}
  699. listenercount@1.0.1:
  700. resolution: {integrity: sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==}
  701. local-pkg@1.1.1:
  702. resolution: {integrity: sha512-WunYko2W1NcdfAFpuLUoucsgULmgDBRkdxHxWQ7mK0cQqwPiy8E1enjuRBrhLtZkB5iScJ1XIPdhVEFK8aOLSg==}
  703. engines: {node: '>=14'}
  704. lodash-es@4.17.21:
  705. resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==}
  706. lodash-unified@1.0.3:
  707. resolution: {integrity: sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==}
  708. peerDependencies:
  709. '@types/lodash-es': '*'
  710. lodash: '*'
  711. lodash-es: '*'
  712. lodash.defaults@4.2.0:
  713. resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==}
  714. lodash.difference@4.5.0:
  715. resolution: {integrity: sha512-dS2j+W26TQ7taQBGN8Lbbq04ssV3emRw4NY58WErlTO29pIqS0HmoT5aJ9+TUQ1N3G+JOZSji4eugsWwGp9yPA==}
  716. lodash.escaperegexp@4.1.2:
  717. resolution: {integrity: sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==}
  718. lodash.flatten@4.4.0:
  719. resolution: {integrity: sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==}
  720. lodash.groupby@4.6.0:
  721. resolution: {integrity: sha512-5dcWxm23+VAoz+awKmBaiBvzox8+RqMgFhi7UvX9DHZr2HdxHXM/Wrf8cfKpsW37RNrvtPn6hSwNqurSILbmJw==}
  722. lodash.isboolean@3.0.3:
  723. resolution: {integrity: sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==}
  724. lodash.isequal@4.5.0:
  725. resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==}
  726. deprecated: This package is deprecated. Use require('node:util').isDeepStrictEqual instead.
  727. lodash.isfunction@3.0.9:
  728. resolution: {integrity: sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==}
  729. lodash.isnil@4.0.0:
  730. resolution: {integrity: sha512-up2Mzq3545mwVnMhTDMdfoG1OurpA/s5t88JmQX809eH3C8491iu2sfKhTfhQtKY78oPNhiaHJUpT/dUDAAtng==}
  731. lodash.isplainobject@4.0.6:
  732. resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==}
  733. lodash.isundefined@3.0.1:
  734. resolution: {integrity: sha512-MXB1is3s899/cD8jheYYE2V9qTHwKvt+npCwpD+1Sxm3Q3cECXCiYHjeHWXNwr6Q0SOBPrYUDxendrO6goVTEA==}
  735. lodash.union@4.6.0:
  736. resolution: {integrity: sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw==}
  737. lodash.uniq@4.5.0:
  738. resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
  739. lodash@4.17.21:
  740. resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
  741. magic-string@0.30.17:
  742. resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==}
  743. make-dir@2.1.0:
  744. resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
  745. engines: {node: '>=6'}
  746. memoize-one@6.0.0:
  747. resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==}
  748. mime@1.6.0:
  749. resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
  750. engines: {node: '>=4'}
  751. hasBin: true
  752. mimic-fn@1.2.0:
  753. resolution: {integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==}
  754. engines: {node: '>=4'}
  755. minimatch@3.1.2:
  756. resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
  757. minimatch@5.1.6:
  758. resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
  759. engines: {node: '>=10'}
  760. minimatch@9.0.5:
  761. resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
  762. engines: {node: '>=16 || 14 >=14.17'}
  763. minimist@1.2.0:
  764. resolution: {integrity: sha512-7Wl+Jz+IGWuSdgsQEJ4JunV0si/iMhg42MnQQG6h1R6TNeVenp4U9x5CC5v/gYqz/fENLQITAWXidNtVL0NNbw==}
  765. minimist@1.2.8:
  766. resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
  767. mkdirp@0.5.6:
  768. resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
  769. hasBin: true
  770. mlly@1.7.4:
  771. resolution: {integrity: sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==}
  772. ms@2.1.3:
  773. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  774. muggle-string@0.4.1:
  775. resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
  776. mute-stream@0.0.7:
  777. resolution: {integrity: sha512-r65nCZhrbXXb6dXOACihYApHw2Q6pV0M3V0PSxd74N0+D8nzAdEAITq2oAjA1jVnKI+tGvEBUpqiMh0+rW6zDQ==}
  778. nanoid@3.3.11:
  779. resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
  780. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  781. hasBin: true
  782. needle@3.3.1:
  783. resolution: {integrity: sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==}
  784. engines: {node: '>= 4.4.x'}
  785. hasBin: true
  786. node-fetch@1.6.3:
  787. resolution: {integrity: sha512-BDxbhLHXFFFvilHjh9xihcDyPkXQ+kjblxnl82zAX41xUYSNvuRpFRznmldR9+OKu+p+ULZ7hNoyunlLB5ecUA==}
  788. normalize-path@3.0.0:
  789. resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
  790. engines: {node: '>=0.10.0'}
  791. normalize-wheel-es@1.2.0:
  792. resolution: {integrity: sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==}
  793. object-assign@4.1.1:
  794. resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
  795. engines: {node: '>=0.10.0'}
  796. once@1.4.0:
  797. resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
  798. onetime@2.0.1:
  799. resolution: {integrity: sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==}
  800. engines: {node: '>=4'}
  801. opencollective-postinstall@2.0.3:
  802. resolution: {integrity: sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==}
  803. hasBin: true
  804. opencollective@1.0.3:
  805. resolution: {integrity: sha512-YBRI0Qa8+Ui0/STV1qYuPrJm889PT3oCPHMVoL+8Y3nwCffj7PSrB2NlGgrhgBKDujxTjxknHWJ/FiqOsYcIDw==}
  806. hasBin: true
  807. opn@4.0.2:
  808. resolution: {integrity: sha512-iPBWbPP4OEOzR1xfhpGLDh+ypKBOygunZhM9jBtA7FS5sKjEiMZw0EFb82hnDOmTZX90ZWLoZKUza4cVt8MexA==}
  809. engines: {node: '>=0.10.0'}
  810. os-tmpdir@1.0.2:
  811. resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
  812. engines: {node: '>=0.10.0'}
  813. pako@1.0.11:
  814. resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==}
  815. parse-node-version@1.0.1:
  816. resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==}
  817. engines: {node: '>= 0.10'}
  818. path-browserify@1.0.1:
  819. resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
  820. path-is-absolute@1.0.1:
  821. resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
  822. engines: {node: '>=0.10.0'}
  823. pathe@2.0.3:
  824. resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
  825. pdfjs-dist@5.1.91:
  826. resolution: {integrity: sha512-qSIADdagooJB4wWCBnrBJjRvASevmxL0BwafvOuKJG5uTQdYoFBrhrRYnucKNiSc9qS6JIk0hC5y1yktFljXkA==}
  827. engines: {node: '>=20'}
  828. picocolors@1.1.1:
  829. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  830. picomatch@2.3.1:
  831. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  832. engines: {node: '>=8.6'}
  833. picomatch@4.0.2:
  834. resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
  835. engines: {node: '>=12'}
  836. pify@4.0.1:
  837. resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
  838. engines: {node: '>=6'}
  839. pinkie-promise@2.0.1:
  840. resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==}
  841. engines: {node: '>=0.10.0'}
  842. pinkie@2.0.4:
  843. resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==}
  844. engines: {node: '>=0.10.0'}
  845. pkg-types@1.3.1:
  846. resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
  847. pkg-types@2.1.0:
  848. resolution: {integrity: sha512-wmJwA+8ihJixSoHKxZJRBQG1oY8Yr9pGLzRmSsNms0iNWyHHAlZCa7mmKiFR10YPZuz/2k169JiS/inOjBCZ2A==}
  849. postcss@8.5.3:
  850. resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
  851. engines: {node: ^10 || ^12 || >=14}
  852. process-nextick-args@2.0.1:
  853. resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
  854. prr@1.0.1:
  855. resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
  856. quansync@0.2.10:
  857. resolution: {integrity: sha512-t41VRkMYbkHyCYmOvx/6URnN80H7k4X0lLdBMGsz+maAwrJQYB1djpV6vHrQIBE0WBSGqhtEHrK9U3DWWH8v7A==}
  858. readable-stream@2.3.8:
  859. resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
  860. readable-stream@3.6.2:
  861. resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
  862. engines: {node: '>= 6'}
  863. readdir-glob@1.1.3:
  864. resolution: {integrity: sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==}
  865. readdirp@3.6.0:
  866. resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
  867. engines: {node: '>=8.10.0'}
  868. regenerator-runtime@0.10.5:
  869. resolution: {integrity: sha512-02YopEIhAgiBHWeoTiA8aitHDt8z6w+rQqNuIftlM+ZtvSl/brTouaU7DW6GO/cHtvxJvS4Hwv2ibKdxIRi24w==}
  870. regenerator-runtime@0.11.1:
  871. resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==}
  872. restore-cursor@2.0.0:
  873. resolution: {integrity: sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==}
  874. engines: {node: '>=4'}
  875. rimraf@2.7.1:
  876. resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
  877. deprecated: Rimraf versions prior to v4 are no longer supported
  878. hasBin: true
  879. rollup@4.40.0:
  880. resolution: {integrity: sha512-Noe455xmA96nnqH5piFtLobsGbCij7Tu+tb3c1vYjNbTkfzGqXqQXG3wJaYXkRZuQ0vEYN4bhwg7QnIrqB5B+w==}
  881. engines: {node: '>=18.0.0', npm: '>=8.0.0'}
  882. hasBin: true
  883. run-async@2.4.1:
  884. resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==}
  885. engines: {node: '>=0.12.0'}
  886. rx@4.1.0:
  887. resolution: {integrity: sha512-CiaiuN6gapkdl+cZUr67W6I8jquN4lkak3vtIsIWCl4XIPP8ffsoyN6/+PuGXnQy8Cu8W2y9Xxh31Rq4M6wUug==}
  888. safe-buffer@5.1.2:
  889. resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
  890. safe-buffer@5.2.1:
  891. resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
  892. safer-buffer@2.1.2:
  893. resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
  894. sax@1.4.1:
  895. resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==}
  896. saxes@5.0.1:
  897. resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==}
  898. engines: {node: '>=10'}
  899. scule@1.3.0:
  900. resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==}
  901. semver@5.7.2:
  902. resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
  903. hasBin: true
  904. setimmediate@1.0.5:
  905. resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
  906. signal-exit@3.0.7:
  907. resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
  908. source-map-js@1.2.1:
  909. resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  910. engines: {node: '>=0.10.0'}
  911. source-map@0.6.1:
  912. resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
  913. engines: {node: '>=0.10.0'}
  914. string-width@2.1.1:
  915. resolution: {integrity: sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==}
  916. engines: {node: '>=4'}
  917. string_decoder@1.1.1:
  918. resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
  919. string_decoder@1.3.0:
  920. resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
  921. strip-ansi@3.0.1:
  922. resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==}
  923. engines: {node: '>=0.10.0'}
  924. strip-ansi@4.0.0:
  925. resolution: {integrity: sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==}
  926. engines: {node: '>=4'}
  927. strip-literal@3.0.0:
  928. resolution: {integrity: sha512-TcccoMhJOM3OebGhSBEmp3UZ2SfDMZUEBdRA/9ynfLi8yYajyWX3JiXArcJt4Umh4vISpspkQIY8ZZoCqjbviA==}
  929. supports-color@2.0.0:
  930. resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==}
  931. engines: {node: '>=0.8.0'}
  932. tar-stream@2.2.0:
  933. resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
  934. engines: {node: '>=6'}
  935. text-segmentation@1.0.3:
  936. resolution: {integrity: sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==}
  937. through2@3.0.2:
  938. resolution: {integrity: sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==}
  939. through@2.3.8:
  940. resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
  941. tinycolor2@1.6.0:
  942. resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==}
  943. tinyglobby@0.2.13:
  944. resolution: {integrity: sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw==}
  945. engines: {node: '>=12.0.0'}
  946. tmp@0.0.33:
  947. resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
  948. engines: {node: '>=0.6.0'}
  949. tmp@0.2.3:
  950. resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==}
  951. engines: {node: '>=14.14'}
  952. to-regex-range@5.0.1:
  953. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  954. engines: {node: '>=8.0'}
  955. traverse@0.3.9:
  956. resolution: {integrity: sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ==}
  957. tslib@2.8.1:
  958. resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
  959. txml@5.1.1:
  960. resolution: {integrity: sha512-TwMDLnXQ09enNaxybLVvKZU7rqog8LgnuAs4ZYXM0nV0eu10iLsSFwlX3AEknAXXtH1wT3CYfoiXAjyBexcmuw==}
  961. typescript@5.7.3:
  962. resolution: {integrity: sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==}
  963. engines: {node: '>=14.17'}
  964. hasBin: true
  965. ufo@1.6.1:
  966. resolution: {integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==}
  967. unimport@4.2.0:
  968. resolution: {integrity: sha512-mYVtA0nmzrysnYnyb3ALMbByJ+Maosee2+WyE0puXl+Xm2bUwPorPaaeZt0ETfuroPOtG8jj1g/qeFZ6buFnag==}
  969. engines: {node: '>=18.12.0'}
  970. unplugin-auto-import@19.1.2:
  971. resolution: {integrity: sha512-EkxNIJm4ZPYtV7rRaPBKnsscgTaifIZNrJF5DkMffTxkUOJOlJuKVypA6YBSBOjzPJDTFPjfVmCQPoBuOO+YYQ==}
  972. engines: {node: '>=14'}
  973. peerDependencies:
  974. '@nuxt/kit': ^3.2.2
  975. '@vueuse/core': '*'
  976. peerDependenciesMeta:
  977. '@nuxt/kit':
  978. optional: true
  979. '@vueuse/core':
  980. optional: true
  981. unplugin-utils@0.2.4:
  982. resolution: {integrity: sha512-8U/MtpkPkkk3Atewj1+RcKIjb5WBimZ/WSLhhR3w6SsIj8XJuKTacSP8g+2JhfSGw0Cb125Y+2zA/IzJZDVbhA==}
  983. engines: {node: '>=18.12.0'}
  984. unplugin-vue-components@28.5.0:
  985. resolution: {integrity: sha512-o7fMKU/uI8NiP+E0W62zoduuguWqB0obTfHFtbr1AP2uo2lhUPnPttWUE92yesdiYfo9/0hxIrj38FMc1eaySg==}
  986. engines: {node: '>=14'}
  987. peerDependencies:
  988. '@babel/parser': ^7.15.8
  989. '@nuxt/kit': ^3.2.2
  990. vue: 2 || 3
  991. peerDependenciesMeta:
  992. '@babel/parser':
  993. optional: true
  994. '@nuxt/kit':
  995. optional: true
  996. unplugin@2.3.2:
  997. resolution: {integrity: sha512-3n7YA46rROb3zSj8fFxtxC/PqoyvYQ0llwz9wtUPUutr9ig09C8gGo5CWCwHrUzlqC1LLR43kxp5vEIyH1ac1w==}
  998. engines: {node: '>=18.12.0'}
  999. unzipper@0.10.14:
  1000. resolution: {integrity: sha512-ti4wZj+0bQTiX2KmKWuwj7lhV+2n//uXEotUmGuQqrbVZSEGFMbI68+c6JCQ8aAmUWYvtHEz2A8K6wXvueR/6g==}
  1001. util-deprecate@1.0.2:
  1002. resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
  1003. utrie@1.0.2:
  1004. resolution: {integrity: sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw==}
  1005. uuid@8.3.2:
  1006. resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
  1007. hasBin: true
  1008. vite@6.3.3:
  1009. resolution: {integrity: sha512-5nXH+QsELbFKhsEfWLkHrvgRpTdGJzqOZ+utSdmPTvwHmvU6ITTm3xx+mRusihkcI8GeC7lCDyn3kDtiki9scw==}
  1010. engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
  1011. hasBin: true
  1012. peerDependencies:
  1013. '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
  1014. jiti: '>=1.21.0'
  1015. less: '*'
  1016. lightningcss: ^1.21.0
  1017. sass: '*'
  1018. sass-embedded: '*'
  1019. stylus: '*'
  1020. sugarss: '*'
  1021. terser: ^5.16.0
  1022. tsx: ^4.8.1
  1023. yaml: ^2.4.2
  1024. peerDependenciesMeta:
  1025. '@types/node':
  1026. optional: true
  1027. jiti:
  1028. optional: true
  1029. less:
  1030. optional: true
  1031. lightningcss:
  1032. optional: true
  1033. sass:
  1034. optional: true
  1035. sass-embedded:
  1036. optional: true
  1037. stylus:
  1038. optional: true
  1039. sugarss:
  1040. optional: true
  1041. terser:
  1042. optional: true
  1043. tsx:
  1044. optional: true
  1045. yaml:
  1046. optional: true
  1047. vscode-uri@3.1.0:
  1048. resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==}
  1049. vue-demi@0.14.10:
  1050. resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==}
  1051. engines: {node: '>=12'}
  1052. hasBin: true
  1053. peerDependencies:
  1054. '@vue/composition-api': ^1.0.0-rc.1
  1055. vue: ^3.0.0-0 || ^2.6.0
  1056. peerDependenciesMeta:
  1057. '@vue/composition-api':
  1058. optional: true
  1059. vue-router@4.5.0:
  1060. resolution: {integrity: sha512-HDuk+PuH5monfNuY+ct49mNmkCRK4xJAV9Ts4z9UFc4rzdDnxQLyCMGGc8pKhZhHTVzfanpNwB/lwqevcBwI4w==}
  1061. peerDependencies:
  1062. vue: ^3.2.0
  1063. vue-tsc@2.2.10:
  1064. resolution: {integrity: sha512-jWZ1xSaNbabEV3whpIDMbjVSVawjAyW+x1n3JeGQo7S0uv2n9F/JMgWW90tGWNFRKya4YwKMZgCtr0vRAM7DeQ==}
  1065. hasBin: true
  1066. peerDependencies:
  1067. typescript: '>=5.0.0'
  1068. vue@3.5.13:
  1069. resolution: {integrity: sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==}
  1070. peerDependencies:
  1071. typescript: '*'
  1072. peerDependenciesMeta:
  1073. typescript:
  1074. optional: true
  1075. webpack-virtual-modules@0.6.2:
  1076. resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
  1077. wisdom-pptxtojson@1.0.0:
  1078. resolution: {integrity: sha512-fKtOHCaLASVBTe6Qu8oCjD1cvUjkB+wO/VryRo37xNMa2Ym9Afi7uS/ukbkUEFrNYxRHrSfg/PqUp/XUpLXjGg==}
  1079. wrappy@1.0.2:
  1080. resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
  1081. x-data-spreadsheet@1.1.9:
  1082. resolution: {integrity: sha512-wk7knDBYdHjtWiHUVQryZMy00dsGNCF+6wMb5ykwEFcAtBYkYZakJCOCHpEo8onC0Lb/q2gIynWpbQxA4qakyg==}
  1083. xmlchars@2.2.0:
  1084. resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
  1085. zip-stream@4.1.1:
  1086. resolution: {integrity: sha512-9qv4rlDiopXg4E69k+vMHjNN63YFMe9sZMrdlvKnCjlCRWeCBswPPMPUfx+ipsAWq1LXHe70RcbaHdJJpS6hyQ==}
  1087. engines: {node: '>= 10'}
  1088. snapshots:
  1089. '@babel/helper-string-parser@7.25.9': {}
  1090. '@babel/helper-validator-identifier@7.25.9': {}
  1091. '@babel/parser@7.27.0':
  1092. dependencies:
  1093. '@babel/types': 7.27.0
  1094. '@babel/types@7.27.0':
  1095. dependencies:
  1096. '@babel/helper-string-parser': 7.25.9
  1097. '@babel/helper-validator-identifier': 7.25.9
  1098. '@ctrl/tinycolor@3.6.1': {}
  1099. '@element-plus/icons-vue@2.3.1(vue@3.5.13(typescript@5.7.3))':
  1100. dependencies:
  1101. vue: 3.5.13(typescript@5.7.3)
  1102. '@esbuild/aix-ppc64@0.25.3':
  1103. optional: true
  1104. '@esbuild/android-arm64@0.25.3':
  1105. optional: true
  1106. '@esbuild/android-arm@0.25.3':
  1107. optional: true
  1108. '@esbuild/android-x64@0.25.3':
  1109. optional: true
  1110. '@esbuild/darwin-arm64@0.25.3':
  1111. optional: true
  1112. '@esbuild/darwin-x64@0.25.3':
  1113. optional: true
  1114. '@esbuild/freebsd-arm64@0.25.3':
  1115. optional: true
  1116. '@esbuild/freebsd-x64@0.25.3':
  1117. optional: true
  1118. '@esbuild/linux-arm64@0.25.3':
  1119. optional: true
  1120. '@esbuild/linux-arm@0.25.3':
  1121. optional: true
  1122. '@esbuild/linux-ia32@0.25.3':
  1123. optional: true
  1124. '@esbuild/linux-loong64@0.25.3':
  1125. optional: true
  1126. '@esbuild/linux-mips64el@0.25.3':
  1127. optional: true
  1128. '@esbuild/linux-ppc64@0.25.3':
  1129. optional: true
  1130. '@esbuild/linux-riscv64@0.25.3':
  1131. optional: true
  1132. '@esbuild/linux-s390x@0.25.3':
  1133. optional: true
  1134. '@esbuild/linux-x64@0.25.3':
  1135. optional: true
  1136. '@esbuild/netbsd-arm64@0.25.3':
  1137. optional: true
  1138. '@esbuild/netbsd-x64@0.25.3':
  1139. optional: true
  1140. '@esbuild/openbsd-arm64@0.25.3':
  1141. optional: true
  1142. '@esbuild/openbsd-x64@0.25.3':
  1143. optional: true
  1144. '@esbuild/sunos-x64@0.25.3':
  1145. optional: true
  1146. '@esbuild/win32-arm64@0.25.3':
  1147. optional: true
  1148. '@esbuild/win32-ia32@0.25.3':
  1149. optional: true
  1150. '@esbuild/win32-x64@0.25.3':
  1151. optional: true
  1152. '@fast-csv/format@4.3.5':
  1153. dependencies:
  1154. '@types/node': 14.18.63
  1155. lodash.escaperegexp: 4.1.2
  1156. lodash.isboolean: 3.0.3
  1157. lodash.isequal: 4.5.0
  1158. lodash.isfunction: 3.0.9
  1159. lodash.isnil: 4.0.0
  1160. '@fast-csv/parse@4.3.6':
  1161. dependencies:
  1162. '@types/node': 14.18.63
  1163. lodash.escaperegexp: 4.1.2
  1164. lodash.groupby: 4.6.0
  1165. lodash.isfunction: 3.0.9
  1166. lodash.isnil: 4.0.0
  1167. lodash.isundefined: 3.0.1
  1168. lodash.uniq: 4.5.0
  1169. '@floating-ui/core@1.6.9':
  1170. dependencies:
  1171. '@floating-ui/utils': 0.2.9
  1172. '@floating-ui/dom@1.6.13':
  1173. dependencies:
  1174. '@floating-ui/core': 1.6.9
  1175. '@floating-ui/utils': 0.2.9
  1176. '@floating-ui/utils@0.2.9': {}
  1177. '@jridgewell/sourcemap-codec@1.5.0': {}
  1178. '@napi-rs/canvas-android-arm64@0.1.69':
  1179. optional: true
  1180. '@napi-rs/canvas-darwin-arm64@0.1.69':
  1181. optional: true
  1182. '@napi-rs/canvas-darwin-x64@0.1.69':
  1183. optional: true
  1184. '@napi-rs/canvas-linux-arm-gnueabihf@0.1.69':
  1185. optional: true
  1186. '@napi-rs/canvas-linux-arm64-gnu@0.1.69':
  1187. optional: true
  1188. '@napi-rs/canvas-linux-arm64-musl@0.1.69':
  1189. optional: true
  1190. '@napi-rs/canvas-linux-riscv64-gnu@0.1.69':
  1191. optional: true
  1192. '@napi-rs/canvas-linux-x64-gnu@0.1.69':
  1193. optional: true
  1194. '@napi-rs/canvas-linux-x64-musl@0.1.69':
  1195. optional: true
  1196. '@napi-rs/canvas-win32-x64-msvc@0.1.69':
  1197. optional: true
  1198. '@napi-rs/canvas@0.1.69':
  1199. optionalDependencies:
  1200. '@napi-rs/canvas-android-arm64': 0.1.69
  1201. '@napi-rs/canvas-darwin-arm64': 0.1.69
  1202. '@napi-rs/canvas-darwin-x64': 0.1.69
  1203. '@napi-rs/canvas-linux-arm-gnueabihf': 0.1.69
  1204. '@napi-rs/canvas-linux-arm64-gnu': 0.1.69
  1205. '@napi-rs/canvas-linux-arm64-musl': 0.1.69
  1206. '@napi-rs/canvas-linux-riscv64-gnu': 0.1.69
  1207. '@napi-rs/canvas-linux-x64-gnu': 0.1.69
  1208. '@napi-rs/canvas-linux-x64-musl': 0.1.69
  1209. '@napi-rs/canvas-win32-x64-msvc': 0.1.69
  1210. optional: true
  1211. '@rollup/rollup-android-arm-eabi@4.40.0':
  1212. optional: true
  1213. '@rollup/rollup-android-arm64@4.40.0':
  1214. optional: true
  1215. '@rollup/rollup-darwin-arm64@4.40.0':
  1216. optional: true
  1217. '@rollup/rollup-darwin-x64@4.40.0':
  1218. optional: true
  1219. '@rollup/rollup-freebsd-arm64@4.40.0':
  1220. optional: true
  1221. '@rollup/rollup-freebsd-x64@4.40.0':
  1222. optional: true
  1223. '@rollup/rollup-linux-arm-gnueabihf@4.40.0':
  1224. optional: true
  1225. '@rollup/rollup-linux-arm-musleabihf@4.40.0':
  1226. optional: true
  1227. '@rollup/rollup-linux-arm64-gnu@4.40.0':
  1228. optional: true
  1229. '@rollup/rollup-linux-arm64-musl@4.40.0':
  1230. optional: true
  1231. '@rollup/rollup-linux-loongarch64-gnu@4.40.0':
  1232. optional: true
  1233. '@rollup/rollup-linux-powerpc64le-gnu@4.40.0':
  1234. optional: true
  1235. '@rollup/rollup-linux-riscv64-gnu@4.40.0':
  1236. optional: true
  1237. '@rollup/rollup-linux-riscv64-musl@4.40.0':
  1238. optional: true
  1239. '@rollup/rollup-linux-s390x-gnu@4.40.0':
  1240. optional: true
  1241. '@rollup/rollup-linux-x64-gnu@4.40.0':
  1242. optional: true
  1243. '@rollup/rollup-linux-x64-musl@4.40.0':
  1244. optional: true
  1245. '@rollup/rollup-win32-arm64-msvc@4.40.0':
  1246. optional: true
  1247. '@rollup/rollup-win32-ia32-msvc@4.40.0':
  1248. optional: true
  1249. '@rollup/rollup-win32-x64-msvc@4.40.0':
  1250. optional: true
  1251. '@sxzz/popperjs-es@2.11.7': {}
  1252. '@types/estree@1.0.7': {}
  1253. '@types/lodash-es@4.17.12':
  1254. dependencies:
  1255. '@types/lodash': 4.17.16
  1256. '@types/lodash@4.17.16': {}
  1257. '@types/node@14.18.63': {}
  1258. '@types/web-bluetooth@0.0.16': {}
  1259. '@vitejs/plugin-vue@5.2.3(vite@6.3.3(less@4.3.0))(vue@3.5.13(typescript@5.7.3))':
  1260. dependencies:
  1261. vite: 6.3.3(less@4.3.0)
  1262. vue: 3.5.13(typescript@5.7.3)
  1263. '@volar/language-core@2.4.12':
  1264. dependencies:
  1265. '@volar/source-map': 2.4.12
  1266. '@volar/source-map@2.4.12': {}
  1267. '@volar/typescript@2.4.12':
  1268. dependencies:
  1269. '@volar/language-core': 2.4.12
  1270. path-browserify: 1.0.1
  1271. vscode-uri: 3.1.0
  1272. '@vue/compiler-core@3.5.13':
  1273. dependencies:
  1274. '@babel/parser': 7.27.0
  1275. '@vue/shared': 3.5.13
  1276. entities: 4.5.0
  1277. estree-walker: 2.0.2
  1278. source-map-js: 1.2.1
  1279. '@vue/compiler-dom@3.5.13':
  1280. dependencies:
  1281. '@vue/compiler-core': 3.5.13
  1282. '@vue/shared': 3.5.13
  1283. '@vue/compiler-sfc@3.5.13':
  1284. dependencies:
  1285. '@babel/parser': 7.27.0
  1286. '@vue/compiler-core': 3.5.13
  1287. '@vue/compiler-dom': 3.5.13
  1288. '@vue/compiler-ssr': 3.5.13
  1289. '@vue/shared': 3.5.13
  1290. estree-walker: 2.0.2
  1291. magic-string: 0.30.17
  1292. postcss: 8.5.3
  1293. source-map-js: 1.2.1
  1294. '@vue/compiler-ssr@3.5.13':
  1295. dependencies:
  1296. '@vue/compiler-dom': 3.5.13
  1297. '@vue/shared': 3.5.13
  1298. '@vue/compiler-vue2@2.7.16':
  1299. dependencies:
  1300. de-indent: 1.0.2
  1301. he: 1.2.0
  1302. '@vue/devtools-api@6.6.4': {}
  1303. '@vue/language-core@2.2.10(typescript@5.7.3)':
  1304. dependencies:
  1305. '@volar/language-core': 2.4.12
  1306. '@vue/compiler-dom': 3.5.13
  1307. '@vue/compiler-vue2': 2.7.16
  1308. '@vue/shared': 3.5.13
  1309. alien-signals: 1.0.13
  1310. minimatch: 9.0.5
  1311. muggle-string: 0.4.1
  1312. path-browserify: 1.0.1
  1313. optionalDependencies:
  1314. typescript: 5.7.3
  1315. '@vue/reactivity@3.5.13':
  1316. dependencies:
  1317. '@vue/shared': 3.5.13
  1318. '@vue/runtime-core@3.5.13':
  1319. dependencies:
  1320. '@vue/reactivity': 3.5.13
  1321. '@vue/shared': 3.5.13
  1322. '@vue/runtime-dom@3.5.13':
  1323. dependencies:
  1324. '@vue/reactivity': 3.5.13
  1325. '@vue/runtime-core': 3.5.13
  1326. '@vue/shared': 3.5.13
  1327. csstype: 3.1.3
  1328. '@vue/server-renderer@3.5.13(vue@3.5.13(typescript@5.7.3))':
  1329. dependencies:
  1330. '@vue/compiler-ssr': 3.5.13
  1331. '@vue/shared': 3.5.13
  1332. vue: 3.5.13(typescript@5.7.3)
  1333. '@vue/shared@3.5.13': {}
  1334. '@vue/tsconfig@0.7.0(typescript@5.7.3)(vue@3.5.13(typescript@5.7.3))':
  1335. optionalDependencies:
  1336. typescript: 5.7.3
  1337. vue: 3.5.13(typescript@5.7.3)
  1338. '@vueuse/core@9.13.0(vue@3.5.13(typescript@5.7.3))':
  1339. dependencies:
  1340. '@types/web-bluetooth': 0.0.16
  1341. '@vueuse/metadata': 9.13.0
  1342. '@vueuse/shared': 9.13.0(vue@3.5.13(typescript@5.7.3))
  1343. vue-demi: 0.14.10(vue@3.5.13(typescript@5.7.3))
  1344. transitivePeerDependencies:
  1345. - '@vue/composition-api'
  1346. - vue
  1347. '@vueuse/metadata@9.13.0': {}
  1348. '@vueuse/shared@9.13.0(vue@3.5.13(typescript@5.7.3))':
  1349. dependencies:
  1350. vue-demi: 0.14.10(vue@3.5.13(typescript@5.7.3))
  1351. transitivePeerDependencies:
  1352. - '@vue/composition-api'
  1353. - vue
  1354. acorn@8.14.1: {}
  1355. alien-signals@1.0.13: {}
  1356. ansi-escapes@1.4.0: {}
  1357. ansi-regex@2.1.1: {}
  1358. ansi-regex@3.0.1: {}
  1359. ansi-styles@2.2.1: {}
  1360. anymatch@3.1.3:
  1361. dependencies:
  1362. normalize-path: 3.0.0
  1363. picomatch: 2.3.1
  1364. archiver-utils@2.1.0:
  1365. dependencies:
  1366. glob: 7.2.3
  1367. graceful-fs: 4.2.11
  1368. lazystream: 1.0.1
  1369. lodash.defaults: 4.2.0
  1370. lodash.difference: 4.5.0
  1371. lodash.flatten: 4.4.0
  1372. lodash.isplainobject: 4.0.6
  1373. lodash.union: 4.6.0
  1374. normalize-path: 3.0.0
  1375. readable-stream: 2.3.8
  1376. archiver-utils@3.0.4:
  1377. dependencies:
  1378. glob: 7.2.3
  1379. graceful-fs: 4.2.11
  1380. lazystream: 1.0.1
  1381. lodash.defaults: 4.2.0
  1382. lodash.difference: 4.5.0
  1383. lodash.flatten: 4.4.0
  1384. lodash.isplainobject: 4.0.6
  1385. lodash.union: 4.6.0
  1386. normalize-path: 3.0.0
  1387. readable-stream: 3.6.2
  1388. archiver@5.3.2:
  1389. dependencies:
  1390. archiver-utils: 2.1.0
  1391. async: 3.2.6
  1392. buffer-crc32: 0.2.13
  1393. readable-stream: 3.6.2
  1394. readdir-glob: 1.1.3
  1395. tar-stream: 2.2.0
  1396. zip-stream: 4.1.1
  1397. async-validator@4.2.5: {}
  1398. async@3.2.6: {}
  1399. babel-polyfill@6.23.0:
  1400. dependencies:
  1401. babel-runtime: 6.26.0
  1402. core-js: 2.6.12
  1403. regenerator-runtime: 0.10.5
  1404. babel-runtime@6.26.0:
  1405. dependencies:
  1406. core-js: 2.6.12
  1407. regenerator-runtime: 0.11.1
  1408. balanced-match@1.0.2: {}
  1409. base64-arraybuffer@1.0.2: {}
  1410. base64-js@1.5.1: {}
  1411. big-integer@1.6.52: {}
  1412. binary-extensions@2.3.0: {}
  1413. binary@0.3.0:
  1414. dependencies:
  1415. buffers: 0.1.1
  1416. chainsaw: 0.1.0
  1417. bl@4.1.0:
  1418. dependencies:
  1419. buffer: 5.7.1
  1420. inherits: 2.0.4
  1421. readable-stream: 3.6.2
  1422. bluebird@3.4.7: {}
  1423. brace-expansion@1.1.11:
  1424. dependencies:
  1425. balanced-match: 1.0.2
  1426. concat-map: 0.0.1
  1427. brace-expansion@2.0.1:
  1428. dependencies:
  1429. balanced-match: 1.0.2
  1430. braces@3.0.3:
  1431. dependencies:
  1432. fill-range: 7.1.1
  1433. buffer-crc32@0.2.13: {}
  1434. buffer-indexof-polyfill@1.0.2: {}
  1435. buffer@5.7.1:
  1436. dependencies:
  1437. base64-js: 1.5.1
  1438. ieee754: 1.2.1
  1439. buffers@0.1.1: {}
  1440. chainsaw@0.1.0:
  1441. dependencies:
  1442. traverse: 0.3.9
  1443. chalk@1.1.3:
  1444. dependencies:
  1445. ansi-styles: 2.2.1
  1446. escape-string-regexp: 1.0.5
  1447. has-ansi: 2.0.0
  1448. strip-ansi: 3.0.1
  1449. supports-color: 2.0.0
  1450. chardet@0.4.2: {}
  1451. chokidar@3.6.0:
  1452. dependencies:
  1453. anymatch: 3.1.3
  1454. braces: 3.0.3
  1455. glob-parent: 5.1.2
  1456. is-binary-path: 2.1.0
  1457. is-glob: 4.0.3
  1458. normalize-path: 3.0.0
  1459. readdirp: 3.6.0
  1460. optionalDependencies:
  1461. fsevents: 2.3.3
  1462. cli-cursor@2.1.0:
  1463. dependencies:
  1464. restore-cursor: 2.0.0
  1465. cli-width@2.2.1: {}
  1466. compress-commons@4.1.2:
  1467. dependencies:
  1468. buffer-crc32: 0.2.13
  1469. crc32-stream: 4.0.3
  1470. normalize-path: 3.0.0
  1471. readable-stream: 3.6.2
  1472. concat-map@0.0.1: {}
  1473. confbox@0.1.8: {}
  1474. confbox@0.2.2: {}
  1475. copy-anything@2.0.6:
  1476. dependencies:
  1477. is-what: 3.14.1
  1478. core-js@2.6.12: {}
  1479. core-util-is@1.0.3: {}
  1480. crc-32@1.2.2: {}
  1481. crc32-stream@4.0.3:
  1482. dependencies:
  1483. crc-32: 1.2.2
  1484. readable-stream: 3.6.2
  1485. css-line-break@2.1.0:
  1486. dependencies:
  1487. utrie: 1.0.2
  1488. csstype@3.1.3: {}
  1489. dayjs@1.11.13: {}
  1490. de-indent@1.0.2: {}
  1491. debug@4.4.0:
  1492. dependencies:
  1493. ms: 2.1.3
  1494. docx-preview@0.3.5:
  1495. dependencies:
  1496. jszip: 3.10.1
  1497. duplexer2@0.1.4:
  1498. dependencies:
  1499. readable-stream: 2.3.8
  1500. element-plus@2.9.8(vue@3.5.13(typescript@5.7.3)):
  1501. dependencies:
  1502. '@ctrl/tinycolor': 3.6.1
  1503. '@element-plus/icons-vue': 2.3.1(vue@3.5.13(typescript@5.7.3))
  1504. '@floating-ui/dom': 1.6.13
  1505. '@popperjs/core': '@sxzz/popperjs-es@2.11.7'
  1506. '@types/lodash': 4.17.16
  1507. '@types/lodash-es': 4.17.12
  1508. '@vueuse/core': 9.13.0(vue@3.5.13(typescript@5.7.3))
  1509. async-validator: 4.2.5
  1510. dayjs: 1.11.13
  1511. escape-html: 1.0.3
  1512. lodash: 4.17.21
  1513. lodash-es: 4.17.21
  1514. lodash-unified: 1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.21)(lodash@4.17.21)
  1515. memoize-one: 6.0.0
  1516. normalize-wheel-es: 1.2.0
  1517. vue: 3.5.13(typescript@5.7.3)
  1518. transitivePeerDependencies:
  1519. - '@vue/composition-api'
  1520. encoding@0.1.13:
  1521. dependencies:
  1522. iconv-lite: 0.6.3
  1523. end-of-stream@1.4.4:
  1524. dependencies:
  1525. once: 1.4.0
  1526. entities@4.5.0: {}
  1527. errno@0.1.8:
  1528. dependencies:
  1529. prr: 1.0.1
  1530. optional: true
  1531. esbuild@0.25.3:
  1532. optionalDependencies:
  1533. '@esbuild/aix-ppc64': 0.25.3
  1534. '@esbuild/android-arm': 0.25.3
  1535. '@esbuild/android-arm64': 0.25.3
  1536. '@esbuild/android-x64': 0.25.3
  1537. '@esbuild/darwin-arm64': 0.25.3
  1538. '@esbuild/darwin-x64': 0.25.3
  1539. '@esbuild/freebsd-arm64': 0.25.3
  1540. '@esbuild/freebsd-x64': 0.25.3
  1541. '@esbuild/linux-arm': 0.25.3
  1542. '@esbuild/linux-arm64': 0.25.3
  1543. '@esbuild/linux-ia32': 0.25.3
  1544. '@esbuild/linux-loong64': 0.25.3
  1545. '@esbuild/linux-mips64el': 0.25.3
  1546. '@esbuild/linux-ppc64': 0.25.3
  1547. '@esbuild/linux-riscv64': 0.25.3
  1548. '@esbuild/linux-s390x': 0.25.3
  1549. '@esbuild/linux-x64': 0.25.3
  1550. '@esbuild/netbsd-arm64': 0.25.3
  1551. '@esbuild/netbsd-x64': 0.25.3
  1552. '@esbuild/openbsd-arm64': 0.25.3
  1553. '@esbuild/openbsd-x64': 0.25.3
  1554. '@esbuild/sunos-x64': 0.25.3
  1555. '@esbuild/win32-arm64': 0.25.3
  1556. '@esbuild/win32-ia32': 0.25.3
  1557. '@esbuild/win32-x64': 0.25.3
  1558. escape-html@1.0.3: {}
  1559. escape-string-regexp@1.0.5: {}
  1560. escape-string-regexp@5.0.0: {}
  1561. estree-walker@2.0.2: {}
  1562. estree-walker@3.0.3:
  1563. dependencies:
  1564. '@types/estree': 1.0.7
  1565. exceljs@4.4.0:
  1566. dependencies:
  1567. archiver: 5.3.2
  1568. dayjs: 1.11.13
  1569. fast-csv: 4.3.6
  1570. jszip: 3.10.1
  1571. readable-stream: 3.6.2
  1572. saxes: 5.0.1
  1573. tmp: 0.2.3
  1574. unzipper: 0.10.14
  1575. uuid: 8.3.2
  1576. exsolve@1.0.5: {}
  1577. external-editor@2.2.0:
  1578. dependencies:
  1579. chardet: 0.4.2
  1580. iconv-lite: 0.4.24
  1581. tmp: 0.0.33
  1582. fast-csv@4.3.6:
  1583. dependencies:
  1584. '@fast-csv/format': 4.3.5
  1585. '@fast-csv/parse': 4.3.6
  1586. fdir@6.4.4(picomatch@4.0.2):
  1587. optionalDependencies:
  1588. picomatch: 4.0.2
  1589. figures@2.0.0:
  1590. dependencies:
  1591. escape-string-regexp: 1.0.5
  1592. fill-range@7.1.1:
  1593. dependencies:
  1594. to-regex-range: 5.0.1
  1595. fs-constants@1.0.0: {}
  1596. fs.realpath@1.0.0: {}
  1597. fsevents@2.3.3:
  1598. optional: true
  1599. fstream@1.0.12:
  1600. dependencies:
  1601. graceful-fs: 4.2.11
  1602. inherits: 2.0.4
  1603. mkdirp: 0.5.6
  1604. rimraf: 2.7.1
  1605. glob-parent@5.1.2:
  1606. dependencies:
  1607. is-glob: 4.0.3
  1608. glob@7.2.3:
  1609. dependencies:
  1610. fs.realpath: 1.0.0
  1611. inflight: 1.0.6
  1612. inherits: 2.0.4
  1613. minimatch: 3.1.2
  1614. once: 1.4.0
  1615. path-is-absolute: 1.0.1
  1616. graceful-fs@4.2.11: {}
  1617. has-ansi@2.0.0:
  1618. dependencies:
  1619. ansi-regex: 2.1.1
  1620. he@1.2.0: {}
  1621. html2canvas@1.4.1:
  1622. dependencies:
  1623. css-line-break: 2.1.0
  1624. text-segmentation: 1.0.3
  1625. iconv-lite@0.4.24:
  1626. dependencies:
  1627. safer-buffer: 2.1.2
  1628. iconv-lite@0.6.3:
  1629. dependencies:
  1630. safer-buffer: 2.1.2
  1631. ieee754@1.2.1: {}
  1632. image-size@0.5.5:
  1633. optional: true
  1634. immediate@3.0.6: {}
  1635. inflight@1.0.6:
  1636. dependencies:
  1637. once: 1.4.0
  1638. wrappy: 1.0.2
  1639. inherits@2.0.4: {}
  1640. inquirer@3.0.6:
  1641. dependencies:
  1642. ansi-escapes: 1.4.0
  1643. chalk: 1.1.3
  1644. cli-cursor: 2.1.0
  1645. cli-width: 2.2.1
  1646. external-editor: 2.2.0
  1647. figures: 2.0.0
  1648. lodash: 4.17.21
  1649. mute-stream: 0.0.7
  1650. run-async: 2.4.1
  1651. rx: 4.1.0
  1652. string-width: 2.1.1
  1653. strip-ansi: 3.0.1
  1654. through: 2.3.8
  1655. is-binary-path@2.1.0:
  1656. dependencies:
  1657. binary-extensions: 2.3.0
  1658. is-extglob@2.1.1: {}
  1659. is-fullwidth-code-point@2.0.0: {}
  1660. is-glob@4.0.3:
  1661. dependencies:
  1662. is-extglob: 2.1.1
  1663. is-number@7.0.0: {}
  1664. is-stream@1.1.0: {}
  1665. is-what@3.14.1: {}
  1666. isarray@1.0.0: {}
  1667. js-tokens@9.0.1: {}
  1668. jszip@3.10.1:
  1669. dependencies:
  1670. lie: 3.3.0
  1671. pako: 1.0.11
  1672. readable-stream: 2.3.8
  1673. setimmediate: 1.0.5
  1674. lazystream@1.0.1:
  1675. dependencies:
  1676. readable-stream: 2.3.8
  1677. less@4.3.0:
  1678. dependencies:
  1679. copy-anything: 2.0.6
  1680. parse-node-version: 1.0.1
  1681. tslib: 2.8.1
  1682. optionalDependencies:
  1683. errno: 0.1.8
  1684. graceful-fs: 4.2.11
  1685. image-size: 0.5.5
  1686. make-dir: 2.1.0
  1687. mime: 1.6.0
  1688. needle: 3.3.1
  1689. source-map: 0.6.1
  1690. lie@3.3.0:
  1691. dependencies:
  1692. immediate: 3.0.6
  1693. listenercount@1.0.1: {}
  1694. local-pkg@1.1.1:
  1695. dependencies:
  1696. mlly: 1.7.4
  1697. pkg-types: 2.1.0
  1698. quansync: 0.2.10
  1699. lodash-es@4.17.21: {}
  1700. lodash-unified@1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.21)(lodash@4.17.21):
  1701. dependencies:
  1702. '@types/lodash-es': 4.17.12
  1703. lodash: 4.17.21
  1704. lodash-es: 4.17.21
  1705. lodash.defaults@4.2.0: {}
  1706. lodash.difference@4.5.0: {}
  1707. lodash.escaperegexp@4.1.2: {}
  1708. lodash.flatten@4.4.0: {}
  1709. lodash.groupby@4.6.0: {}
  1710. lodash.isboolean@3.0.3: {}
  1711. lodash.isequal@4.5.0: {}
  1712. lodash.isfunction@3.0.9: {}
  1713. lodash.isnil@4.0.0: {}
  1714. lodash.isplainobject@4.0.6: {}
  1715. lodash.isundefined@3.0.1: {}
  1716. lodash.union@4.6.0: {}
  1717. lodash.uniq@4.5.0: {}
  1718. lodash@4.17.21: {}
  1719. magic-string@0.30.17:
  1720. dependencies:
  1721. '@jridgewell/sourcemap-codec': 1.5.0
  1722. make-dir@2.1.0:
  1723. dependencies:
  1724. pify: 4.0.1
  1725. semver: 5.7.2
  1726. optional: true
  1727. memoize-one@6.0.0: {}
  1728. mime@1.6.0:
  1729. optional: true
  1730. mimic-fn@1.2.0: {}
  1731. minimatch@3.1.2:
  1732. dependencies:
  1733. brace-expansion: 1.1.11
  1734. minimatch@5.1.6:
  1735. dependencies:
  1736. brace-expansion: 2.0.1
  1737. minimatch@9.0.5:
  1738. dependencies:
  1739. brace-expansion: 2.0.1
  1740. minimist@1.2.0: {}
  1741. minimist@1.2.8: {}
  1742. mkdirp@0.5.6:
  1743. dependencies:
  1744. minimist: 1.2.8
  1745. mlly@1.7.4:
  1746. dependencies:
  1747. acorn: 8.14.1
  1748. pathe: 2.0.3
  1749. pkg-types: 1.3.1
  1750. ufo: 1.6.1
  1751. ms@2.1.3: {}
  1752. muggle-string@0.4.1: {}
  1753. mute-stream@0.0.7: {}
  1754. nanoid@3.3.11: {}
  1755. needle@3.3.1:
  1756. dependencies:
  1757. iconv-lite: 0.6.3
  1758. sax: 1.4.1
  1759. optional: true
  1760. node-fetch@1.6.3:
  1761. dependencies:
  1762. encoding: 0.1.13
  1763. is-stream: 1.1.0
  1764. normalize-path@3.0.0: {}
  1765. normalize-wheel-es@1.2.0: {}
  1766. object-assign@4.1.1: {}
  1767. once@1.4.0:
  1768. dependencies:
  1769. wrappy: 1.0.2
  1770. onetime@2.0.1:
  1771. dependencies:
  1772. mimic-fn: 1.2.0
  1773. opencollective-postinstall@2.0.3: {}
  1774. opencollective@1.0.3:
  1775. dependencies:
  1776. babel-polyfill: 6.23.0
  1777. chalk: 1.1.3
  1778. inquirer: 3.0.6
  1779. minimist: 1.2.0
  1780. node-fetch: 1.6.3
  1781. opn: 4.0.2
  1782. opn@4.0.2:
  1783. dependencies:
  1784. object-assign: 4.1.1
  1785. pinkie-promise: 2.0.1
  1786. os-tmpdir@1.0.2: {}
  1787. pako@1.0.11: {}
  1788. parse-node-version@1.0.1: {}
  1789. path-browserify@1.0.1: {}
  1790. path-is-absolute@1.0.1: {}
  1791. pathe@2.0.3: {}
  1792. pdfjs-dist@5.1.91:
  1793. optionalDependencies:
  1794. '@napi-rs/canvas': 0.1.69
  1795. picocolors@1.1.1: {}
  1796. picomatch@2.3.1: {}
  1797. picomatch@4.0.2: {}
  1798. pify@4.0.1:
  1799. optional: true
  1800. pinkie-promise@2.0.1:
  1801. dependencies:
  1802. pinkie: 2.0.4
  1803. pinkie@2.0.4: {}
  1804. pkg-types@1.3.1:
  1805. dependencies:
  1806. confbox: 0.1.8
  1807. mlly: 1.7.4
  1808. pathe: 2.0.3
  1809. pkg-types@2.1.0:
  1810. dependencies:
  1811. confbox: 0.2.2
  1812. exsolve: 1.0.5
  1813. pathe: 2.0.3
  1814. postcss@8.5.3:
  1815. dependencies:
  1816. nanoid: 3.3.11
  1817. picocolors: 1.1.1
  1818. source-map-js: 1.2.1
  1819. process-nextick-args@2.0.1: {}
  1820. prr@1.0.1:
  1821. optional: true
  1822. quansync@0.2.10: {}
  1823. readable-stream@2.3.8:
  1824. dependencies:
  1825. core-util-is: 1.0.3
  1826. inherits: 2.0.4
  1827. isarray: 1.0.0
  1828. process-nextick-args: 2.0.1
  1829. safe-buffer: 5.1.2
  1830. string_decoder: 1.1.1
  1831. util-deprecate: 1.0.2
  1832. readable-stream@3.6.2:
  1833. dependencies:
  1834. inherits: 2.0.4
  1835. string_decoder: 1.3.0
  1836. util-deprecate: 1.0.2
  1837. readdir-glob@1.1.3:
  1838. dependencies:
  1839. minimatch: 5.1.6
  1840. readdirp@3.6.0:
  1841. dependencies:
  1842. picomatch: 2.3.1
  1843. regenerator-runtime@0.10.5: {}
  1844. regenerator-runtime@0.11.1: {}
  1845. restore-cursor@2.0.0:
  1846. dependencies:
  1847. onetime: 2.0.1
  1848. signal-exit: 3.0.7
  1849. rimraf@2.7.1:
  1850. dependencies:
  1851. glob: 7.2.3
  1852. rollup@4.40.0:
  1853. dependencies:
  1854. '@types/estree': 1.0.7
  1855. optionalDependencies:
  1856. '@rollup/rollup-android-arm-eabi': 4.40.0
  1857. '@rollup/rollup-android-arm64': 4.40.0
  1858. '@rollup/rollup-darwin-arm64': 4.40.0
  1859. '@rollup/rollup-darwin-x64': 4.40.0
  1860. '@rollup/rollup-freebsd-arm64': 4.40.0
  1861. '@rollup/rollup-freebsd-x64': 4.40.0
  1862. '@rollup/rollup-linux-arm-gnueabihf': 4.40.0
  1863. '@rollup/rollup-linux-arm-musleabihf': 4.40.0
  1864. '@rollup/rollup-linux-arm64-gnu': 4.40.0
  1865. '@rollup/rollup-linux-arm64-musl': 4.40.0
  1866. '@rollup/rollup-linux-loongarch64-gnu': 4.40.0
  1867. '@rollup/rollup-linux-powerpc64le-gnu': 4.40.0
  1868. '@rollup/rollup-linux-riscv64-gnu': 4.40.0
  1869. '@rollup/rollup-linux-riscv64-musl': 4.40.0
  1870. '@rollup/rollup-linux-s390x-gnu': 4.40.0
  1871. '@rollup/rollup-linux-x64-gnu': 4.40.0
  1872. '@rollup/rollup-linux-x64-musl': 4.40.0
  1873. '@rollup/rollup-win32-arm64-msvc': 4.40.0
  1874. '@rollup/rollup-win32-ia32-msvc': 4.40.0
  1875. '@rollup/rollup-win32-x64-msvc': 4.40.0
  1876. fsevents: 2.3.3
  1877. run-async@2.4.1: {}
  1878. rx@4.1.0: {}
  1879. safe-buffer@5.1.2: {}
  1880. safe-buffer@5.2.1: {}
  1881. safer-buffer@2.1.2: {}
  1882. sax@1.4.1:
  1883. optional: true
  1884. saxes@5.0.1:
  1885. dependencies:
  1886. xmlchars: 2.2.0
  1887. scule@1.3.0: {}
  1888. semver@5.7.2:
  1889. optional: true
  1890. setimmediate@1.0.5: {}
  1891. signal-exit@3.0.7: {}
  1892. source-map-js@1.2.1: {}
  1893. source-map@0.6.1:
  1894. optional: true
  1895. string-width@2.1.1:
  1896. dependencies:
  1897. is-fullwidth-code-point: 2.0.0
  1898. strip-ansi: 4.0.0
  1899. string_decoder@1.1.1:
  1900. dependencies:
  1901. safe-buffer: 5.1.2
  1902. string_decoder@1.3.0:
  1903. dependencies:
  1904. safe-buffer: 5.2.1
  1905. strip-ansi@3.0.1:
  1906. dependencies:
  1907. ansi-regex: 2.1.1
  1908. strip-ansi@4.0.0:
  1909. dependencies:
  1910. ansi-regex: 3.0.1
  1911. strip-literal@3.0.0:
  1912. dependencies:
  1913. js-tokens: 9.0.1
  1914. supports-color@2.0.0: {}
  1915. tar-stream@2.2.0:
  1916. dependencies:
  1917. bl: 4.1.0
  1918. end-of-stream: 1.4.4
  1919. fs-constants: 1.0.0
  1920. inherits: 2.0.4
  1921. readable-stream: 3.6.2
  1922. text-segmentation@1.0.3:
  1923. dependencies:
  1924. utrie: 1.0.2
  1925. through2@3.0.2:
  1926. dependencies:
  1927. inherits: 2.0.4
  1928. readable-stream: 3.6.2
  1929. through@2.3.8: {}
  1930. tinycolor2@1.6.0: {}
  1931. tinyglobby@0.2.13:
  1932. dependencies:
  1933. fdir: 6.4.4(picomatch@4.0.2)
  1934. picomatch: 4.0.2
  1935. tmp@0.0.33:
  1936. dependencies:
  1937. os-tmpdir: 1.0.2
  1938. tmp@0.2.3: {}
  1939. to-regex-range@5.0.1:
  1940. dependencies:
  1941. is-number: 7.0.0
  1942. traverse@0.3.9: {}
  1943. tslib@2.8.1: {}
  1944. txml@5.1.1:
  1945. dependencies:
  1946. through2: 3.0.2
  1947. typescript@5.7.3: {}
  1948. ufo@1.6.1: {}
  1949. unimport@4.2.0:
  1950. dependencies:
  1951. acorn: 8.14.1
  1952. escape-string-regexp: 5.0.0
  1953. estree-walker: 3.0.3
  1954. local-pkg: 1.1.1
  1955. magic-string: 0.30.17
  1956. mlly: 1.7.4
  1957. pathe: 2.0.3
  1958. picomatch: 4.0.2
  1959. pkg-types: 2.1.0
  1960. scule: 1.3.0
  1961. strip-literal: 3.0.0
  1962. tinyglobby: 0.2.13
  1963. unplugin: 2.3.2
  1964. unplugin-utils: 0.2.4
  1965. unplugin-auto-import@19.1.2(@vueuse/core@9.13.0(vue@3.5.13(typescript@5.7.3))):
  1966. dependencies:
  1967. local-pkg: 1.1.1
  1968. magic-string: 0.30.17
  1969. picomatch: 4.0.2
  1970. unimport: 4.2.0
  1971. unplugin: 2.3.2
  1972. unplugin-utils: 0.2.4
  1973. optionalDependencies:
  1974. '@vueuse/core': 9.13.0(vue@3.5.13(typescript@5.7.3))
  1975. unplugin-utils@0.2.4:
  1976. dependencies:
  1977. pathe: 2.0.3
  1978. picomatch: 4.0.2
  1979. unplugin-vue-components@28.5.0(@babel/parser@7.27.0)(vue@3.5.13(typescript@5.7.3)):
  1980. dependencies:
  1981. chokidar: 3.6.0
  1982. debug: 4.4.0
  1983. local-pkg: 1.1.1
  1984. magic-string: 0.30.17
  1985. mlly: 1.7.4
  1986. tinyglobby: 0.2.13
  1987. unplugin: 2.3.2
  1988. unplugin-utils: 0.2.4
  1989. vue: 3.5.13(typescript@5.7.3)
  1990. optionalDependencies:
  1991. '@babel/parser': 7.27.0
  1992. transitivePeerDependencies:
  1993. - supports-color
  1994. unplugin@2.3.2:
  1995. dependencies:
  1996. acorn: 8.14.1
  1997. picomatch: 4.0.2
  1998. webpack-virtual-modules: 0.6.2
  1999. unzipper@0.10.14:
  2000. dependencies:
  2001. big-integer: 1.6.52
  2002. binary: 0.3.0
  2003. bluebird: 3.4.7
  2004. buffer-indexof-polyfill: 1.0.2
  2005. duplexer2: 0.1.4
  2006. fstream: 1.0.12
  2007. graceful-fs: 4.2.11
  2008. listenercount: 1.0.1
  2009. readable-stream: 2.3.8
  2010. setimmediate: 1.0.5
  2011. util-deprecate@1.0.2: {}
  2012. utrie@1.0.2:
  2013. dependencies:
  2014. base64-arraybuffer: 1.0.2
  2015. uuid@8.3.2: {}
  2016. vite@6.3.3(less@4.3.0):
  2017. dependencies:
  2018. esbuild: 0.25.3
  2019. fdir: 6.4.4(picomatch@4.0.2)
  2020. picomatch: 4.0.2
  2021. postcss: 8.5.3
  2022. rollup: 4.40.0
  2023. tinyglobby: 0.2.13
  2024. optionalDependencies:
  2025. fsevents: 2.3.3
  2026. less: 4.3.0
  2027. vscode-uri@3.1.0: {}
  2028. vue-demi@0.14.10(vue@3.5.13(typescript@5.7.3)):
  2029. dependencies:
  2030. vue: 3.5.13(typescript@5.7.3)
  2031. vue-router@4.5.0(vue@3.5.13(typescript@5.7.3)):
  2032. dependencies:
  2033. '@vue/devtools-api': 6.6.4
  2034. vue: 3.5.13(typescript@5.7.3)
  2035. vue-tsc@2.2.10(typescript@5.7.3):
  2036. dependencies:
  2037. '@volar/typescript': 2.4.12
  2038. '@vue/language-core': 2.2.10(typescript@5.7.3)
  2039. typescript: 5.7.3
  2040. vue@3.5.13(typescript@5.7.3):
  2041. dependencies:
  2042. '@vue/compiler-dom': 3.5.13
  2043. '@vue/compiler-sfc': 3.5.13
  2044. '@vue/runtime-dom': 3.5.13
  2045. '@vue/server-renderer': 3.5.13(vue@3.5.13(typescript@5.7.3))
  2046. '@vue/shared': 3.5.13
  2047. optionalDependencies:
  2048. typescript: 5.7.3
  2049. webpack-virtual-modules@0.6.2: {}
  2050. wisdom-pptxtojson@1.0.0:
  2051. dependencies:
  2052. jszip: 3.10.1
  2053. tinycolor2: 1.6.0
  2054. txml: 5.1.1
  2055. wrappy@1.0.2: {}
  2056. x-data-spreadsheet@1.1.9:
  2057. dependencies:
  2058. opencollective: 1.0.3
  2059. opencollective-postinstall: 2.0.3
  2060. xmlchars@2.2.0: {}
  2061. zip-stream@4.1.1:
  2062. dependencies:
  2063. archiver-utils: 3.0.4
  2064. compress-commons: 4.1.2
  2065. readable-stream: 3.6.2