pnpm-lock.yaml 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. art-template:
  9. specifier: ^4.13.2
  10. version: 4.13.4
  11. axios:
  12. specifier: ^1.7.8
  13. version: 1.9.0
  14. jimp:
  15. specifier: ^1.6.0
  16. version: 1.6.0
  17. js-yaml:
  18. specifier: ^4.1.0
  19. version: 4.1.0
  20. minimist:
  21. specifier: ^1.2.8
  22. version: 1.2.8
  23. node-cron:
  24. specifier: ^3.0.3
  25. version: 3.0.3
  26. node-napcat-ts:
  27. specifier: ^0.4.0
  28. version: 0.4.11
  29. puppeteer:
  30. specifier: ^23.9.0
  31. version: 23.11.1(typescript@4.9.5)
  32. reflect-metadata:
  33. specifier: ^0.2.2
  34. version: 0.2.2
  35. tesseract.js:
  36. specifier: ^6.0.1
  37. version: 6.0.1
  38. winston:
  39. specifier: ^3.17.0
  40. version: 3.17.0
  41. winston-daily-rotate-file:
  42. specifier: ^5.0.0
  43. version: 5.0.0(winston@3.17.0)
  44. yaml:
  45. specifier: ^2.6.1
  46. version: 2.8.0
  47. devDependencies:
  48. '@types/js-yaml':
  49. specifier: ^4.0.9
  50. version: 4.0.9
  51. '@types/minimist':
  52. specifier: ^1.2.5
  53. version: 1.2.5
  54. '@types/node':
  55. specifier: ^16.18.126
  56. version: 16.18.126
  57. '@types/node-cron':
  58. specifier: ^3.0.11
  59. version: 3.0.11
  60. '@types/winston':
  61. specifier: ^2.4.4
  62. version: 2.4.4
  63. nodemon:
  64. specifier: ^3.1.9
  65. version: 3.1.10
  66. ts-node:
  67. specifier: ^10.9.2
  68. version: 10.9.2(@types/node@16.18.126)(typescript@4.9.5)
  69. tsconfig-paths:
  70. specifier: ^4.2.0
  71. version: 4.2.0
  72. typescript:
  73. specifier: ^4.9.5
  74. version: 4.9.5
  75. packages:
  76. '@babel/code-frame@7.27.1':
  77. resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
  78. engines: {node: '>=6.9.0'}
  79. '@babel/helper-validator-identifier@7.27.1':
  80. resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
  81. engines: {node: '>=6.9.0'}
  82. '@colors/colors@1.6.0':
  83. resolution: {integrity: sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==}
  84. engines: {node: '>=0.1.90'}
  85. '@cspotcode/source-map-support@0.8.1':
  86. resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
  87. engines: {node: '>=12'}
  88. '@dabh/diagnostics@2.0.3':
  89. resolution: {integrity: sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==}
  90. '@jimp/core@1.6.0':
  91. resolution: {integrity: sha512-EQQlKU3s9QfdJqiSrZWNTxBs3rKXgO2W+GxNXDtwchF3a4IqxDheFX1ti+Env9hdJXDiYLp2jTRjlxhPthsk8w==}
  92. engines: {node: '>=18'}
  93. '@jimp/diff@1.6.0':
  94. resolution: {integrity: sha512-+yUAQ5gvRC5D1WHYxjBHZI7JBRusGGSLf8AmPRPCenTzh4PA+wZ1xv2+cYqQwTfQHU5tXYOhA0xDytfHUf1Zyw==}
  95. engines: {node: '>=18'}
  96. '@jimp/file-ops@1.6.0':
  97. resolution: {integrity: sha512-Dx/bVDmgnRe1AlniRpCKrGRm5YvGmUwbDzt+MAkgmLGf+jvBT75hmMEZ003n9HQI/aPnm/YKnXjg/hOpzNCpHQ==}
  98. engines: {node: '>=18'}
  99. '@jimp/js-bmp@1.6.0':
  100. resolution: {integrity: sha512-FU6Q5PC/e3yzLyBDXupR3SnL3htU7S3KEs4e6rjDP6gNEOXRFsWs6YD3hXuXd50jd8ummy+q2WSwuGkr8wi+Gw==}
  101. engines: {node: '>=18'}
  102. '@jimp/js-gif@1.6.0':
  103. resolution: {integrity: sha512-N9CZPHOrJTsAUoWkWZstLPpwT5AwJ0wge+47+ix3++SdSL/H2QzyMqxbcDYNFe4MoI5MIhATfb0/dl/wmX221g==}
  104. engines: {node: '>=18'}
  105. '@jimp/js-jpeg@1.6.0':
  106. resolution: {integrity: sha512-6vgFDqeusblf5Pok6B2DUiMXplH8RhIKAryj1yn+007SIAQ0khM1Uptxmpku/0MfbClx2r7pnJv9gWpAEJdMVA==}
  107. engines: {node: '>=18'}
  108. '@jimp/js-png@1.6.0':
  109. resolution: {integrity: sha512-AbQHScy3hDDgMRNfG0tPjL88AV6qKAILGReIa3ATpW5QFjBKpisvUaOqhzJ7Reic1oawx3Riyv152gaPfqsBVg==}
  110. engines: {node: '>=18'}
  111. '@jimp/js-tiff@1.6.0':
  112. resolution: {integrity: sha512-zhReR8/7KO+adijj3h0ZQUOiun3mXUv79zYEAKvE0O+rP7EhgtKvWJOZfRzdZSNv0Pu1rKtgM72qgtwe2tFvyw==}
  113. engines: {node: '>=18'}
  114. '@jimp/plugin-blit@1.6.0':
  115. resolution: {integrity: sha512-M+uRWl1csi7qilnSK8uxK4RJMSuVeBiO1AY0+7APnfUbQNZm6hCe0CCFv1Iyw1D/Dhb8ph8fQgm5mwM0eSxgVA==}
  116. engines: {node: '>=18'}
  117. '@jimp/plugin-blur@1.6.0':
  118. resolution: {integrity: sha512-zrM7iic1OTwUCb0g/rN5y+UnmdEsT3IfuCXCJJNs8SZzP0MkZ1eTvuwK9ZidCuMo4+J3xkzCidRwYXB5CyGZTw==}
  119. engines: {node: '>=18'}
  120. '@jimp/plugin-circle@1.6.0':
  121. resolution: {integrity: sha512-xt1Gp+LtdMKAXfDp3HNaG30SPZW6AQ7dtAtTnoRKorRi+5yCJjKqXRgkewS5bvj8DEh87Ko1ydJfzqS3P2tdWw==}
  122. engines: {node: '>=18'}
  123. '@jimp/plugin-color@1.6.0':
  124. resolution: {integrity: sha512-J5q8IVCpkBsxIXM+45XOXTrsyfblyMZg3a9eAo0P7VPH4+CrvyNQwaYatbAIamSIN1YzxmO3DkIZXzRjFSz1SA==}
  125. engines: {node: '>=18'}
  126. '@jimp/plugin-contain@1.6.0':
  127. resolution: {integrity: sha512-oN/n+Vdq/Qg9bB4yOBOxtY9IPAtEfES8J1n9Ddx+XhGBYT1/QTU/JYkGaAkIGoPnyYvmLEDqMz2SGihqlpqfzQ==}
  128. engines: {node: '>=18'}
  129. '@jimp/plugin-cover@1.6.0':
  130. resolution: {integrity: sha512-Iow0h6yqSC269YUJ8HC3Q/MpCi2V55sMlbkkTTx4zPvd8mWZlC0ykrNDeAy9IJegrQ7v5E99rJwmQu25lygKLA==}
  131. engines: {node: '>=18'}
  132. '@jimp/plugin-crop@1.6.0':
  133. resolution: {integrity: sha512-KqZkEhvs+21USdySCUDI+GFa393eDIzbi1smBqkUPTE+pRwSWMAf01D5OC3ZWB+xZsNla93BDS9iCkLHA8wang==}
  134. engines: {node: '>=18'}
  135. '@jimp/plugin-displace@1.6.0':
  136. resolution: {integrity: sha512-4Y10X9qwr5F+Bo5ME356XSACEF55485j5nGdiyJ9hYzjQP9nGgxNJaZ4SAOqpd+k5sFaIeD7SQ0Occ26uIng5Q==}
  137. engines: {node: '>=18'}
  138. '@jimp/plugin-dither@1.6.0':
  139. resolution: {integrity: sha512-600d1RxY0pKwgyU0tgMahLNKsqEcxGdbgXadCiVCoGd6V6glyCvkNrnnwC0n5aJ56Htkj88PToSdF88tNVZEEQ==}
  140. engines: {node: '>=18'}
  141. '@jimp/plugin-fisheye@1.6.0':
  142. resolution: {integrity: sha512-E5QHKWSCBFtpgZarlmN3Q6+rTQxjirFqo44ohoTjzYVrDI6B6beXNnPIThJgPr0Y9GwfzgyarKvQuQuqCnnfbA==}
  143. engines: {node: '>=18'}
  144. '@jimp/plugin-flip@1.6.0':
  145. resolution: {integrity: sha512-/+rJVDuBIVOgwoyVkBjUFHtP+wmW0r+r5OQ2GpatQofToPVbJw1DdYWXlwviSx7hvixTWLKVgRWQ5Dw862emDg==}
  146. engines: {node: '>=18'}
  147. '@jimp/plugin-hash@1.6.0':
  148. resolution: {integrity: sha512-wWzl0kTpDJgYVbZdajTf+4NBSKvmI3bRI8q6EH9CVeIHps9VWVsUvEyb7rpbcwVLWYuzDtP2R0lTT6WeBNQH9Q==}
  149. engines: {node: '>=18'}
  150. '@jimp/plugin-mask@1.6.0':
  151. resolution: {integrity: sha512-Cwy7ExSJMZszvkad8NV8o/Z92X2kFUFM8mcDAhNVxU0Q6tA0op2UKRJY51eoK8r6eds/qak3FQkXakvNabdLnA==}
  152. engines: {node: '>=18'}
  153. '@jimp/plugin-print@1.6.0':
  154. resolution: {integrity: sha512-zarTIJi8fjoGMSI/M3Xh5yY9T65p03XJmPsuNet19K/Q7mwRU6EV2pfj+28++2PV2NJ+htDF5uecAlnGyxFN2A==}
  155. engines: {node: '>=18'}
  156. '@jimp/plugin-quantize@1.6.0':
  157. resolution: {integrity: sha512-EmzZ/s9StYQwbpG6rUGBCisc3f64JIhSH+ncTJd+iFGtGo0YvSeMdAd+zqgiHpfZoOL54dNavZNjF4otK+mvlg==}
  158. engines: {node: '>=18'}
  159. '@jimp/plugin-resize@1.6.0':
  160. resolution: {integrity: sha512-uSUD1mqXN9i1SGSz5ov3keRZ7S9L32/mAQG08wUwZiEi5FpbV0K8A8l1zkazAIZi9IJzLlTauRNU41Mi8IF9fA==}
  161. engines: {node: '>=18'}
  162. '@jimp/plugin-rotate@1.6.0':
  163. resolution: {integrity: sha512-JagdjBLnUZGSG4xjCLkIpQOZZ3Mjbg8aGCCi4G69qR+OjNpOeGI7N2EQlfK/WE8BEHOW5vdjSyglNqcYbQBWRw==}
  164. engines: {node: '>=18'}
  165. '@jimp/plugin-threshold@1.6.0':
  166. resolution: {integrity: sha512-M59m5dzLoHOVWdM41O8z9SyySzcDn43xHseOH0HavjsfQsT56GGCC4QzU1banJidbUrePhzoEdS42uFE8Fei8w==}
  167. engines: {node: '>=18'}
  168. '@jimp/types@1.6.0':
  169. resolution: {integrity: sha512-7UfRsiKo5GZTAATxm2qQ7jqmUXP0DxTArztllTcYdyw6Xi5oT4RaoXynVtCD4UyLK5gJgkZJcwonoijrhYFKfg==}
  170. engines: {node: '>=18'}
  171. '@jimp/utils@1.6.0':
  172. resolution: {integrity: sha512-gqFTGEosKbOkYF/WFj26jMHOI5OH2jeP1MmC/zbK6BF6VJBf8rIC5898dPfSzZEbSA0wbbV5slbntWVc5PKLFA==}
  173. engines: {node: '>=18'}
  174. '@jridgewell/resolve-uri@3.1.2':
  175. resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
  176. engines: {node: '>=6.0.0'}
  177. '@jridgewell/sourcemap-codec@1.5.0':
  178. resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
  179. '@jridgewell/trace-mapping@0.3.9':
  180. resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
  181. '@puppeteer/browsers@2.6.1':
  182. resolution: {integrity: sha512-aBSREisdsGH890S2rQqK82qmQYU3uFpSH8wcZWHgHzl3LfzsxAKbLNiAG9mO8v1Y0UICBeClICxPJvyr0rcuxg==}
  183. engines: {node: '>=18'}
  184. hasBin: true
  185. '@tokenizer/token@0.3.0':
  186. resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==}
  187. '@tootallnate/quickjs-emscripten@0.23.0':
  188. resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==}
  189. '@tsconfig/node10@1.0.11':
  190. resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==}
  191. '@tsconfig/node12@1.0.11':
  192. resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==}
  193. '@tsconfig/node14@1.0.3':
  194. resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
  195. '@tsconfig/node16@1.0.4':
  196. resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==}
  197. '@types/js-yaml@4.0.9':
  198. resolution: {integrity: sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==}
  199. '@types/minimist@1.2.5':
  200. resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==}
  201. '@types/node-cron@3.0.11':
  202. resolution: {integrity: sha512-0ikrnug3/IyneSHqCBeslAhlK2aBfYek1fGo4bP4QnZPmiqSGRK+Oy7ZMisLWkesffJvQ1cqAcBnJC+8+nxIAg==}
  203. '@types/node@16.18.126':
  204. resolution: {integrity: sha512-OTcgaiwfGFBKacvfwuHzzn1KLxH/er8mluiy8/uM3sGXHaRe73RrSIj01jow9t4kJEW633Ov+cOexXeiApTyAw==}
  205. '@types/node@16.9.1':
  206. resolution: {integrity: sha512-QpLcX9ZSsq3YYUUnD3nFDY8H7wctAhQj/TFKL8Ya8v5fMm3CFXxo8zStsLAl780ltoYoo1WvKUVGBQK+1ifr7g==}
  207. '@types/triple-beam@1.3.5':
  208. resolution: {integrity: sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==}
  209. '@types/winston@2.4.4':
  210. resolution: {integrity: sha512-BVGCztsypW8EYwJ+Hq+QNYiT/MUyCif0ouBH+flrY66O5W+KIXAMML6E/0fJpm7VjIzgangahl5S03bJJQGrZw==}
  211. deprecated: This is a stub types definition. winston provides its own type definitions, so you do not need this installed.
  212. '@types/yauzl@2.10.3':
  213. resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==}
  214. abort-controller@3.0.0:
  215. resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==}
  216. engines: {node: '>=6.5'}
  217. acorn-walk@8.3.4:
  218. resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==}
  219. engines: {node: '>=0.4.0'}
  220. acorn@5.7.4:
  221. resolution: {integrity: sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==}
  222. engines: {node: '>=0.4.0'}
  223. hasBin: true
  224. acorn@8.14.1:
  225. resolution: {integrity: sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==}
  226. engines: {node: '>=0.4.0'}
  227. hasBin: true
  228. agent-base@7.1.3:
  229. resolution: {integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==}
  230. engines: {node: '>= 14'}
  231. ansi-regex@5.0.1:
  232. resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
  233. engines: {node: '>=8'}
  234. ansi-styles@4.3.0:
  235. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  236. engines: {node: '>=8'}
  237. any-base@1.1.0:
  238. resolution: {integrity: sha512-uMgjozySS8adZZYePpaWs8cxB9/kdzmpX6SgJZ+wbz1K5eYk5QMYDVJaZKhxyIHUdnnJkfR7SVgStgH7LkGUyg==}
  239. anymatch@3.1.3:
  240. resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
  241. engines: {node: '>= 8'}
  242. arg@4.1.3:
  243. resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
  244. argparse@2.0.1:
  245. resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
  246. art-template@4.13.4:
  247. resolution: {integrity: sha512-SoCdwWrj6VNoErheIKnDSzBEO0SsZJK9p34nliZUuChkfiReu8x4hLP/jBTLG6yEr+tWxdANufophDYsau52Fg==}
  248. engines: {node: '>= 1.0.0'}
  249. ast-types@0.13.4:
  250. resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==}
  251. engines: {node: '>=4'}
  252. async@3.2.6:
  253. resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==}
  254. asynckit@0.4.0:
  255. resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
  256. await-to-js@3.0.0:
  257. resolution: {integrity: sha512-zJAaP9zxTcvTHRlejau3ZOY4V7SRpiByf3/dxx2uyKxxor19tpmpV2QRsTKikckwhaPmr2dVpxxMr7jOCYVp5g==}
  258. engines: {node: '>=6.0.0'}
  259. axios@1.9.0:
  260. resolution: {integrity: sha512-re4CqKTJaURpzbLHtIi6XpDv20/CnpXOtjRY5/CU32L8gU8ek9UIivcfvSWvmKEngmVbrUtPpdDwWDWL7DNHvg==}
  261. b4a@1.6.7:
  262. resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==}
  263. balanced-match@1.0.2:
  264. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  265. bare-events@2.5.4:
  266. resolution: {integrity: sha512-+gFfDkR8pj4/TrWCGUGWmJIkBwuxPS5F+a5yWjOHQt2hHvNZd5YLzadjmDUtFmMM4y429bnKLa8bYBMHcYdnQA==}
  267. bare-fs@4.1.5:
  268. resolution: {integrity: sha512-1zccWBMypln0jEE05LzZt+V/8y8AQsQQqxtklqaIyg5nu6OAYFhZxPXinJTSG+kU5qyNmeLgcn9AW7eHiCHVLA==}
  269. engines: {bare: '>=1.16.0'}
  270. peerDependencies:
  271. bare-buffer: '*'
  272. peerDependenciesMeta:
  273. bare-buffer:
  274. optional: true
  275. bare-os@3.6.1:
  276. resolution: {integrity: sha512-uaIjxokhFidJP+bmmvKSgiMzj2sV5GPHaZVAIktcxcpCyBFFWO+YlikVAdhmUo2vYFvFhOXIAlldqV29L8126g==}
  277. engines: {bare: '>=1.14.0'}
  278. bare-path@3.0.0:
  279. resolution: {integrity: sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==}
  280. bare-stream@2.6.5:
  281. resolution: {integrity: sha512-jSmxKJNJmHySi6hC42zlZnq00rga4jjxcgNZjY9N5WlOe/iOoGRtdwGsHzQv2RlH2KOYMwGUXhf2zXd32BA9RA==}
  282. peerDependencies:
  283. bare-buffer: '*'
  284. bare-events: '*'
  285. peerDependenciesMeta:
  286. bare-buffer:
  287. optional: true
  288. bare-events:
  289. optional: true
  290. base64-js@1.5.1:
  291. resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
  292. basic-ftp@5.0.5:
  293. resolution: {integrity: sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==}
  294. engines: {node: '>=10.0.0'}
  295. binary-extensions@2.3.0:
  296. resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
  297. engines: {node: '>=8'}
  298. bmp-js@0.1.0:
  299. resolution: {integrity: sha512-vHdS19CnY3hwiNdkaqk93DvjVLfbEcI8mys4UjuWrlX1haDmroo8o4xCzh4wD6DGV6HxRCyauwhHRqMTfERtjw==}
  300. bmp-ts@1.0.9:
  301. resolution: {integrity: sha512-cTEHk2jLrPyi+12M3dhpEbnnPOsaZuq7C45ylbbQIiWgDFZq4UVYPEY5mlqjvsj/6gJv9qX5sa+ebDzLXT28Vw==}
  302. brace-expansion@1.1.11:
  303. resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
  304. braces@3.0.3:
  305. resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
  306. engines: {node: '>=8'}
  307. buffer-crc32@0.2.13:
  308. resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
  309. buffer@5.7.1:
  310. resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
  311. buffer@6.0.3:
  312. resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
  313. call-bind-apply-helpers@1.0.2:
  314. resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
  315. engines: {node: '>= 0.4'}
  316. callsites@3.1.0:
  317. resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
  318. engines: {node: '>=6'}
  319. camel-case@3.0.0:
  320. resolution: {integrity: sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==}
  321. chokidar@3.6.0:
  322. resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
  323. engines: {node: '>= 8.10.0'}
  324. chromium-bidi@0.11.0:
  325. resolution: {integrity: sha512-6CJWHkNRoyZyjV9Rwv2lYONZf1Xm0IuDyNq97nwSsxxP3wf5Bwy15K5rOvVKMtJ127jJBmxFUanSAOjgFRxgrA==}
  326. peerDependencies:
  327. devtools-protocol: '*'
  328. clean-css@4.2.4:
  329. resolution: {integrity: sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==}
  330. engines: {node: '>= 4.0'}
  331. cliui@8.0.1:
  332. resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
  333. engines: {node: '>=12'}
  334. color-convert@1.9.3:
  335. resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
  336. color-convert@2.0.1:
  337. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  338. engines: {node: '>=7.0.0'}
  339. color-name@1.1.3:
  340. resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
  341. color-name@1.1.4:
  342. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  343. color-string@1.9.1:
  344. resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
  345. color@3.2.1:
  346. resolution: {integrity: sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==}
  347. colorspace@1.1.4:
  348. resolution: {integrity: sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==}
  349. combined-stream@1.0.8:
  350. resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
  351. engines: {node: '>= 0.8'}
  352. commander@2.17.1:
  353. resolution: {integrity: sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==}
  354. commander@2.19.0:
  355. resolution: {integrity: sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==}
  356. concat-map@0.0.1:
  357. resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
  358. cosmiconfig@9.0.0:
  359. resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==}
  360. engines: {node: '>=14'}
  361. peerDependencies:
  362. typescript: '>=4.9.5'
  363. peerDependenciesMeta:
  364. typescript:
  365. optional: true
  366. create-require@1.1.1:
  367. resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
  368. data-uri-to-buffer@6.0.2:
  369. resolution: {integrity: sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==}
  370. engines: {node: '>= 14'}
  371. debug@4.4.1:
  372. resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==}
  373. engines: {node: '>=6.0'}
  374. peerDependencies:
  375. supports-color: '*'
  376. peerDependenciesMeta:
  377. supports-color:
  378. optional: true
  379. deep-is@0.1.4:
  380. resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
  381. degenerator@5.0.1:
  382. resolution: {integrity: sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==}
  383. engines: {node: '>= 14'}
  384. delayed-stream@1.0.0:
  385. resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
  386. engines: {node: '>=0.4.0'}
  387. devtools-protocol@0.0.1367902:
  388. resolution: {integrity: sha512-XxtPuC3PGakY6PD7dG66/o8KwJ/LkH2/EKe19Dcw58w53dv4/vSQEkn/SzuyhHE2q4zPgCkxQBxus3VV4ql+Pg==}
  389. diff@4.0.2:
  390. resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==}
  391. engines: {node: '>=0.3.1'}
  392. dunder-proto@1.0.1:
  393. resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
  394. engines: {node: '>= 0.4'}
  395. emoji-regex@8.0.0:
  396. resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
  397. enabled@2.0.0:
  398. resolution: {integrity: sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==}
  399. end-of-stream@1.4.4:
  400. resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
  401. env-paths@2.2.1:
  402. resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
  403. engines: {node: '>=6'}
  404. error-ex@1.3.2:
  405. resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
  406. es-define-property@1.0.1:
  407. resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
  408. engines: {node: '>= 0.4'}
  409. es-errors@1.3.0:
  410. resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
  411. engines: {node: '>= 0.4'}
  412. es-object-atoms@1.1.1:
  413. resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
  414. engines: {node: '>= 0.4'}
  415. es-set-tostringtag@2.1.0:
  416. resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
  417. engines: {node: '>= 0.4'}
  418. escalade@3.2.0:
  419. resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
  420. engines: {node: '>=6'}
  421. escodegen@1.14.3:
  422. resolution: {integrity: sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==}
  423. engines: {node: '>=4.0'}
  424. hasBin: true
  425. escodegen@2.1.0:
  426. resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==}
  427. engines: {node: '>=6.0'}
  428. hasBin: true
  429. esprima@4.0.1:
  430. resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
  431. engines: {node: '>=4'}
  432. hasBin: true
  433. estraverse@4.3.0:
  434. resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
  435. engines: {node: '>=4.0'}
  436. estraverse@5.3.0:
  437. resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
  438. engines: {node: '>=4.0'}
  439. esutils@2.0.3:
  440. resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
  441. engines: {node: '>=0.10.0'}
  442. event-target-shim@5.0.1:
  443. resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
  444. engines: {node: '>=6'}
  445. events@3.3.0:
  446. resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
  447. engines: {node: '>=0.8.x'}
  448. exif-parser@0.1.12:
  449. resolution: {integrity: sha512-c2bQfLNbMzLPmzQuOr8fy0csy84WmwnER81W88DzTp9CYNPJ6yzOj2EZAh9pywYpqHnshVLHQJ8WzldAyfY+Iw==}
  450. extract-zip@2.0.1:
  451. resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==}
  452. engines: {node: '>= 10.17.0'}
  453. hasBin: true
  454. fast-fifo@1.3.2:
  455. resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==}
  456. fast-levenshtein@2.0.6:
  457. resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
  458. fd-slicer@1.1.0:
  459. resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==}
  460. fecha@4.2.3:
  461. resolution: {integrity: sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==}
  462. file-stream-rotator@0.6.1:
  463. resolution: {integrity: sha512-u+dBid4PvZw17PmDeRcNOtCP9CCK/9lRN2w+r1xIS7yOL9JFrIBKTvrYsxT4P0pGtThYTn++QS5ChHaUov3+zQ==}
  464. file-type@16.5.4:
  465. resolution: {integrity: sha512-/yFHK0aGjFEgDJjEKP0pWCplsPFPhwyfwevf/pVxiN0tmE4L9LmwWxWukdJSHdoCli4VgQLehjJtwQBnqmsKcw==}
  466. engines: {node: '>=10'}
  467. fill-range@7.1.1:
  468. resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
  469. engines: {node: '>=8'}
  470. fn.name@1.1.0:
  471. resolution: {integrity: sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==}
  472. follow-redirects@1.15.9:
  473. resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
  474. engines: {node: '>=4.0'}
  475. peerDependencies:
  476. debug: '*'
  477. peerDependenciesMeta:
  478. debug:
  479. optional: true
  480. form-data@4.0.2:
  481. resolution: {integrity: sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==}
  482. engines: {node: '>= 6'}
  483. fsevents@2.3.3:
  484. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  485. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  486. os: [darwin]
  487. function-bind@1.1.2:
  488. resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
  489. get-caller-file@2.0.5:
  490. resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
  491. engines: {node: 6.* || 8.* || >= 10.*}
  492. get-intrinsic@1.3.0:
  493. resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
  494. engines: {node: '>= 0.4'}
  495. get-proto@1.0.1:
  496. resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
  497. engines: {node: '>= 0.4'}
  498. get-stream@5.2.0:
  499. resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==}
  500. engines: {node: '>=8'}
  501. get-uri@6.0.4:
  502. resolution: {integrity: sha512-E1b1lFFLvLgak2whF2xDBcOy6NLVGZBqqjJjsIhvopKfWWEi64pLVTWWehV8KlLerZkfNTA95sTe2OdJKm1OzQ==}
  503. engines: {node: '>= 14'}
  504. gifwrap@0.10.1:
  505. resolution: {integrity: sha512-2760b1vpJHNmLzZ/ubTtNnEx5WApN/PYWJvXvgS+tL1egTTthayFYIQQNi136FLEDcN/IyEY2EcGpIITD6eYUw==}
  506. glob-parent@5.1.2:
  507. resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
  508. engines: {node: '>= 6'}
  509. gopd@1.2.0:
  510. resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
  511. engines: {node: '>= 0.4'}
  512. has-flag@3.0.0:
  513. resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
  514. engines: {node: '>=4'}
  515. has-symbols@1.1.0:
  516. resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
  517. engines: {node: '>= 0.4'}
  518. has-tostringtag@1.0.2:
  519. resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
  520. engines: {node: '>= 0.4'}
  521. hasown@2.0.2:
  522. resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
  523. engines: {node: '>= 0.4'}
  524. he@1.2.0:
  525. resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
  526. hasBin: true
  527. html-minifier@3.5.21:
  528. resolution: {integrity: sha512-LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA==}
  529. engines: {node: '>=4'}
  530. hasBin: true
  531. http-proxy-agent@7.0.2:
  532. resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}
  533. engines: {node: '>= 14'}
  534. https-proxy-agent@7.0.6:
  535. resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==}
  536. engines: {node: '>= 14'}
  537. idb-keyval@6.2.2:
  538. resolution: {integrity: sha512-yjD9nARJ/jb1g+CvD0tlhUHOrJ9Sy0P8T9MF3YaLlHnSRpwPfpTX0XIvpmw3gAJUmEu3FiICLBDPXVwyEvrleg==}
  539. ieee754@1.2.1:
  540. resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
  541. ignore-by-default@1.0.1:
  542. resolution: {integrity: sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==}
  543. image-q@4.0.0:
  544. resolution: {integrity: sha512-PfJGVgIfKQJuq3s0tTDOKtztksibuUEbJQIYT3by6wctQo+Rdlh7ef4evJ5NCdxY4CfMbvFkocEwbl4BF8RlJw==}
  545. import-fresh@3.3.1:
  546. resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
  547. engines: {node: '>=6'}
  548. inherits@2.0.4:
  549. resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
  550. ip-address@9.0.5:
  551. resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==}
  552. engines: {node: '>= 12'}
  553. is-arrayish@0.2.1:
  554. resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
  555. is-arrayish@0.3.2:
  556. resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
  557. is-binary-path@2.1.0:
  558. resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
  559. engines: {node: '>=8'}
  560. is-extglob@2.1.1:
  561. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  562. engines: {node: '>=0.10.0'}
  563. is-fullwidth-code-point@3.0.0:
  564. resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
  565. engines: {node: '>=8'}
  566. is-glob@4.0.3:
  567. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  568. engines: {node: '>=0.10.0'}
  569. is-keyword-js@1.0.3:
  570. resolution: {integrity: sha512-EW8wNCNvomPa/jsH1g0DmLfPakkRCRTcTML1v1fZMLiVCvQ/1YB+tKsRzShBiWQhqrYCi5a+WsepA4Z8TA9iaA==}
  571. engines: {node: '>=0.10.0'}
  572. is-number@7.0.0:
  573. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  574. engines: {node: '>=0.12.0'}
  575. is-stream@2.0.1:
  576. resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
  577. engines: {node: '>=8'}
  578. is-url@1.2.4:
  579. resolution: {integrity: sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==}
  580. isomorphic-ws@5.0.0:
  581. resolution: {integrity: sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==}
  582. peerDependencies:
  583. ws: '*'
  584. jimp@1.6.0:
  585. resolution: {integrity: sha512-YcwCHw1kiqEeI5xRpDlPPBGL2EOpBKLwO4yIBJcXWHPj5PnA5urGq0jbyhM5KoNpypQ6VboSoxc9D8HyfvngSg==}
  586. engines: {node: '>=18'}
  587. jpeg-js@0.4.4:
  588. resolution: {integrity: sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==}
  589. js-tokens@3.0.2:
  590. resolution: {integrity: sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg==}
  591. js-tokens@4.0.0:
  592. resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
  593. js-yaml@4.1.0:
  594. resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
  595. hasBin: true
  596. jsbn@1.1.0:
  597. resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==}
  598. json-parse-even-better-errors@2.3.1:
  599. resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
  600. json5@2.2.3:
  601. resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
  602. engines: {node: '>=6'}
  603. hasBin: true
  604. kuler@2.0.0:
  605. resolution: {integrity: sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==}
  606. levn@0.3.0:
  607. resolution: {integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==}
  608. engines: {node: '>= 0.8.0'}
  609. lines-and-columns@1.2.4:
  610. resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
  611. logform@2.7.0:
  612. resolution: {integrity: sha512-TFYA4jnP7PVbmlBIfhlSe+WKxs9dklXMTEGcBCIvLhE/Tn3H6Gk1norupVW7m5Cnd4bLcr08AytbyV/xj7f/kQ==}
  613. engines: {node: '>= 12.0.0'}
  614. lower-case@1.1.4:
  615. resolution: {integrity: sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==}
  616. lru-cache@7.18.3:
  617. resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==}
  618. engines: {node: '>=12'}
  619. make-error@1.3.6:
  620. resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
  621. math-intrinsics@1.1.0:
  622. resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
  623. engines: {node: '>= 0.4'}
  624. merge-source-map@1.1.0:
  625. resolution: {integrity: sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw==}
  626. mime-db@1.52.0:
  627. resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
  628. engines: {node: '>= 0.6'}
  629. mime-types@2.1.35:
  630. resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
  631. engines: {node: '>= 0.6'}
  632. mime@3.0.0:
  633. resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==}
  634. engines: {node: '>=10.0.0'}
  635. hasBin: true
  636. minimatch@3.1.2:
  637. resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
  638. minimist@1.2.8:
  639. resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
  640. mitt@3.0.1:
  641. resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
  642. moment@2.30.1:
  643. resolution: {integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==}
  644. ms@2.1.3:
  645. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  646. nanoid@5.1.5:
  647. resolution: {integrity: sha512-Ir/+ZpE9fDsNH0hQ3C68uyThDXzYcim2EqcZ8zn8Chtt1iylPT9xXJB0kPCnqzgcEGikO9RxSrh63MsmVCU7Fw==}
  648. engines: {node: ^18 || >=20}
  649. hasBin: true
  650. netmask@2.0.2:
  651. resolution: {integrity: sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==}
  652. engines: {node: '>= 0.4.0'}
  653. no-case@2.3.2:
  654. resolution: {integrity: sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==}
  655. node-cron@3.0.3:
  656. resolution: {integrity: sha512-dOal67//nohNgYWb+nWmg5dkFdIwDm8EpeGYMekPMrngV3637lqnX0lbUcCtgibHTz6SEz7DAIjKvKDFYCnO1A==}
  657. engines: {node: '>=6.0.0'}
  658. node-fetch@2.7.0:
  659. resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
  660. engines: {node: 4.x || >=6.0.0}
  661. peerDependencies:
  662. encoding: ^0.1.0
  663. peerDependenciesMeta:
  664. encoding:
  665. optional: true
  666. node-napcat-ts@0.4.11:
  667. resolution: {integrity: sha512-T2l8NeDhWr/UOqVKCDnBOWxVZvncNMRyEQExOgqRzJoQkGJFqiBWiW/xIRlye7d5en2bWdIFvWoyR+Vv/As6LA==}
  668. nodemon@3.1.10:
  669. resolution: {integrity: sha512-WDjw3pJ0/0jMFmyNDp3gvY2YizjLmmOUQo6DEBY+JgdvW/yQ9mEeSw6H5ythl5Ny2ytb7f9C2nIbjSxMNzbJXw==}
  670. engines: {node: '>=10'}
  671. hasBin: true
  672. normalize-path@3.0.0:
  673. resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
  674. engines: {node: '>=0.10.0'}
  675. object-hash@3.0.0:
  676. resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
  677. engines: {node: '>= 6'}
  678. omggif@1.0.10:
  679. resolution: {integrity: sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw==}
  680. once@1.4.0:
  681. resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
  682. one-time@1.0.0:
  683. resolution: {integrity: sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==}
  684. opencollective-postinstall@2.0.3:
  685. resolution: {integrity: sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==}
  686. hasBin: true
  687. optionator@0.8.3:
  688. resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==}
  689. engines: {node: '>= 0.8.0'}
  690. pac-proxy-agent@7.2.0:
  691. resolution: {integrity: sha512-TEB8ESquiLMc0lV8vcd5Ql/JAKAoyzHFXaStwjkzpOpC5Yv+pIzLfHvjTSdf3vpa2bMiUQrg9i6276yn8666aA==}
  692. engines: {node: '>= 14'}
  693. pac-resolver@7.0.1:
  694. resolution: {integrity: sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==}
  695. engines: {node: '>= 14'}
  696. pako@1.0.11:
  697. resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==}
  698. param-case@2.1.1:
  699. resolution: {integrity: sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==}
  700. parent-module@1.0.1:
  701. resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
  702. engines: {node: '>=6'}
  703. parse-bmfont-ascii@1.0.6:
  704. resolution: {integrity: sha512-U4RrVsUFCleIOBsIGYOMKjn9PavsGOXxbvYGtMOEfnId0SVNsgehXh1DxUdVPLoxd5mvcEtvmKs2Mmf0Mpa1ZA==}
  705. parse-bmfont-binary@1.0.6:
  706. resolution: {integrity: sha512-GxmsRea0wdGdYthjuUeWTMWPqm2+FAd4GI8vCvhgJsFnoGhTrLhXDDupwTo7rXVAgaLIGoVHDZS9p/5XbSqeWA==}
  707. parse-bmfont-xml@1.1.6:
  708. resolution: {integrity: sha512-0cEliVMZEhrFDwMh4SxIyVJpqYoOWDJ9P895tFuS+XuNzI5UBmBk5U5O4KuJdTnZpSBI4LFA2+ZiJaiwfSwlMA==}
  709. parse-json@5.2.0:
  710. resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
  711. engines: {node: '>=8'}
  712. peek-readable@4.1.0:
  713. resolution: {integrity: sha512-ZI3LnwUv5nOGbQzD9c2iDG6toheuXSZP5esSHBjopsXH4dg19soufvpUGA3uohi5anFtGb2lhAVdHzH6R/Evvg==}
  714. engines: {node: '>=8'}
  715. pend@1.2.0:
  716. resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==}
  717. picocolors@1.1.1:
  718. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  719. picomatch@2.3.1:
  720. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  721. engines: {node: '>=8.6'}
  722. pixelmatch@5.3.0:
  723. resolution: {integrity: sha512-o8mkY4E/+LNUf6LzX96ht6k6CEDi65k9G2rjMtBe9Oo+VPKSvl+0GKHuH/AlG+GA5LPG/i5hrekkxUc3s2HU+Q==}
  724. hasBin: true
  725. pngjs@6.0.0:
  726. resolution: {integrity: sha512-TRzzuFRRmEoSW/p1KVAmiOgPco2Irlah+bGFCeNfJXxxYGwSw7YwAOAcd7X28K/m5bjBWKsC29KyoMfHbypayg==}
  727. engines: {node: '>=12.13.0'}
  728. pngjs@7.0.0:
  729. resolution: {integrity: sha512-LKWqWJRhstyYo9pGvgor/ivk2w94eSjE3RGVuzLGlr3NmD8bf7RcYGze1mNdEHRP6TRP6rMuDHk5t44hnTRyow==}
  730. engines: {node: '>=14.19.0'}
  731. prelude-ls@1.1.2:
  732. resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==}
  733. engines: {node: '>= 0.8.0'}
  734. process@0.11.10:
  735. resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
  736. engines: {node: '>= 0.6.0'}
  737. progress@2.0.3:
  738. resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==}
  739. engines: {node: '>=0.4.0'}
  740. proxy-agent@6.5.0:
  741. resolution: {integrity: sha512-TmatMXdr2KlRiA2CyDu8GqR8EjahTG3aY3nXjdzFyoZbmB8hrBsTyMezhULIXKnC0jpfjlmiZ3+EaCzoInSu/A==}
  742. engines: {node: '>= 14'}
  743. proxy-from-env@1.1.0:
  744. resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
  745. pstree.remy@1.1.8:
  746. resolution: {integrity: sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==}
  747. pump@3.0.2:
  748. resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==}
  749. puppeteer-core@23.11.1:
  750. resolution: {integrity: sha512-3HZ2/7hdDKZvZQ7dhhITOUg4/wOrDRjyK2ZBllRB0ZCOi9u0cwq1ACHDjBB+nX+7+kltHjQvBRdeY7+W0T+7Gg==}
  751. engines: {node: '>=18'}
  752. puppeteer@23.11.1:
  753. resolution: {integrity: sha512-53uIX3KR5en8l7Vd8n5DUv90Ae9QDQsyIthaUFVzwV6yU750RjqRznEtNMBT20VthqAdemnJN+hxVdmMHKt7Zw==}
  754. engines: {node: '>=18'}
  755. hasBin: true
  756. readable-stream@3.6.2:
  757. resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
  758. engines: {node: '>= 6'}
  759. readable-stream@4.7.0:
  760. resolution: {integrity: sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==}
  761. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  762. readable-web-to-node-stream@3.0.4:
  763. resolution: {integrity: sha512-9nX56alTf5bwXQ3ZDipHJhusu9NTQJ/CVPtb/XHAJCXihZeitfJvIRS4GqQ/mfIoOE3IelHMrpayVrosdHBuLw==}
  764. engines: {node: '>=8'}
  765. readdirp@3.6.0:
  766. resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
  767. engines: {node: '>=8.10.0'}
  768. reflect-metadata@0.2.2:
  769. resolution: {integrity: sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==}
  770. regenerator-runtime@0.13.11:
  771. resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
  772. relateurl@0.2.7:
  773. resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==}
  774. engines: {node: '>= 0.10'}
  775. require-directory@2.1.1:
  776. resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
  777. engines: {node: '>=0.10.0'}
  778. resolve-from@4.0.0:
  779. resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
  780. engines: {node: '>=4'}
  781. safe-buffer@5.2.1:
  782. resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
  783. safe-stable-stringify@2.5.0:
  784. resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==}
  785. engines: {node: '>=10'}
  786. sax@1.4.1:
  787. resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==}
  788. semver@7.7.2:
  789. resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==}
  790. engines: {node: '>=10'}
  791. hasBin: true
  792. simple-swizzle@0.2.2:
  793. resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
  794. simple-update-notifier@2.0.0:
  795. resolution: {integrity: sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==}
  796. engines: {node: '>=10'}
  797. simple-xml-to-json@1.2.3:
  798. resolution: {integrity: sha512-kWJDCr9EWtZ+/EYYM5MareWj2cRnZGF93YDNpH4jQiHB+hBIZnfPFSQiVMzZOdk+zXWqTZ/9fTeQNu2DqeiudA==}
  799. engines: {node: '>=20.12.2'}
  800. smart-buffer@4.2.0:
  801. resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
  802. engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
  803. socks-proxy-agent@8.0.5:
  804. resolution: {integrity: sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==}
  805. engines: {node: '>= 14'}
  806. socks@2.8.4:
  807. resolution: {integrity: sha512-D3YaD0aRxR3mEcqnidIs7ReYJFVzWdd6fXJYUM8ixcQcJRGTka/b3saV0KflYhyVJXKhb947GndU35SxYNResQ==}
  808. engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
  809. source-map@0.5.7:
  810. resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==}
  811. engines: {node: '>=0.10.0'}
  812. source-map@0.6.1:
  813. resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
  814. engines: {node: '>=0.10.0'}
  815. sprintf-js@1.1.3:
  816. resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==}
  817. stack-trace@0.0.10:
  818. resolution: {integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==}
  819. streamx@2.22.0:
  820. resolution: {integrity: sha512-sLh1evHOzBy/iWRiR6d1zRcLao4gGZr3C1kzNz4fopCOKJb6xD9ub8Mpi9Mr1R6id5o43S+d93fI48UC5uM9aw==}
  821. string-width@4.2.3:
  822. resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
  823. engines: {node: '>=8'}
  824. string_decoder@1.3.0:
  825. resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
  826. strip-ansi@6.0.1:
  827. resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
  828. engines: {node: '>=8'}
  829. strip-bom@3.0.0:
  830. resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
  831. engines: {node: '>=4'}
  832. strtok3@6.3.0:
  833. resolution: {integrity: sha512-fZtbhtvI9I48xDSywd/somNqgUHl2L2cstmXCCif0itOf96jeW18MBSyrLuNicYQVkvpOxkZtkzujiTJ9LW5Jw==}
  834. engines: {node: '>=10'}
  835. supports-color@5.5.0:
  836. resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
  837. engines: {node: '>=4'}
  838. tar-fs@3.0.8:
  839. resolution: {integrity: sha512-ZoROL70jptorGAlgAYiLoBLItEKw/fUxg9BSYK/dF/GAGYFJOJJJMvjPAKDJraCXFwadD456FCuvLWgfhMsPwg==}
  840. tar-stream@3.1.7:
  841. resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==}
  842. tesseract.js-core@6.0.0:
  843. resolution: {integrity: sha512-1Qncm/9oKM7xgrQXZXNB+NRh19qiXGhxlrR8EwFbK5SaUbPZnS5OMtP/ghtqfd23hsr1ZvZbZjeuAGcMxd/ooA==}
  844. tesseract.js@6.0.1:
  845. resolution: {integrity: sha512-/sPvMvrCtgxnNRCjbTYbr7BRu0yfWDsMZQ2a/T5aN/L1t8wUQN6tTWv6p6FwzpoEBA0jrN2UD2SX4QQFRdoDbA==}
  846. text-decoder@1.2.3:
  847. resolution: {integrity: sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==}
  848. text-hex@1.0.0:
  849. resolution: {integrity: sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==}
  850. through@2.3.8:
  851. resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
  852. tinycolor2@1.6.0:
  853. resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==}
  854. to-regex-range@5.0.1:
  855. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  856. engines: {node: '>=8.0'}
  857. token-types@4.2.1:
  858. resolution: {integrity: sha512-6udB24Q737UD/SDsKAHI9FCRP7Bqc9D/MQUV02ORQg5iskjtLJlZJNdN4kKtcdtwCeWIwIHDGaUsTsCCAa8sFQ==}
  859. engines: {node: '>=10'}
  860. touch@3.1.1:
  861. resolution: {integrity: sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==}
  862. hasBin: true
  863. tr46@0.0.3:
  864. resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
  865. triple-beam@1.4.1:
  866. resolution: {integrity: sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg==}
  867. engines: {node: '>= 14.0.0'}
  868. ts-node@10.9.2:
  869. resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==}
  870. hasBin: true
  871. peerDependencies:
  872. '@swc/core': '>=1.2.50'
  873. '@swc/wasm': '>=1.2.50'
  874. '@types/node': '*'
  875. typescript: '>=2.7'
  876. peerDependenciesMeta:
  877. '@swc/core':
  878. optional: true
  879. '@swc/wasm':
  880. optional: true
  881. tsconfig-paths@4.2.0:
  882. resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==}
  883. engines: {node: '>=6'}
  884. tslib@2.8.1:
  885. resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
  886. type-check@0.3.2:
  887. resolution: {integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==}
  888. engines: {node: '>= 0.8.0'}
  889. typed-query-selector@2.12.0:
  890. resolution: {integrity: sha512-SbklCd1F0EiZOyPiW192rrHZzZ5sBijB6xM+cpmrwDqObvdtunOHHIk9fCGsoK5JVIYXoyEp4iEdE3upFH3PAg==}
  891. typescript@4.9.5:
  892. resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==}
  893. engines: {node: '>=4.2.0'}
  894. hasBin: true
  895. uglify-js@3.4.10:
  896. resolution: {integrity: sha512-Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw==}
  897. engines: {node: '>=0.8.0'}
  898. hasBin: true
  899. unbzip2-stream@1.4.3:
  900. resolution: {integrity: sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==}
  901. undefsafe@2.0.5:
  902. resolution: {integrity: sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==}
  903. upper-case@1.1.3:
  904. resolution: {integrity: sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==}
  905. utif2@4.1.0:
  906. resolution: {integrity: sha512-+oknB9FHrJ7oW7A2WZYajOcv4FcDR4CfoGB0dPNfxbi4GO05RRnFmt5oa23+9w32EanrYcSJWspUiJkLMs+37w==}
  907. util-deprecate@1.0.2:
  908. resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
  909. uuid@8.3.2:
  910. resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
  911. hasBin: true
  912. v8-compile-cache-lib@3.0.1:
  913. resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
  914. wasm-feature-detect@1.8.0:
  915. resolution: {integrity: sha512-zksaLKM2fVlnB5jQQDqKXXwYHLQUVH9es+5TOOHwGOVJOCeRBCiPjwSg+3tN2AdTCzjgli4jijCH290kXb/zWQ==}
  916. webidl-conversions@3.0.1:
  917. resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
  918. whatwg-url@5.0.0:
  919. resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
  920. winston-daily-rotate-file@5.0.0:
  921. resolution: {integrity: sha512-JDjiXXkM5qvwY06733vf09I2wnMXpZEhxEVOSPenZMii+g7pcDcTBt2MRugnoi8BwVSuCT2jfRXBUy+n1Zz/Yw==}
  922. engines: {node: '>=8'}
  923. peerDependencies:
  924. winston: ^3
  925. winston-transport@4.9.0:
  926. resolution: {integrity: sha512-8drMJ4rkgaPo1Me4zD/3WLfI/zPdA9o2IipKODunnGDcuqbHwjsbB79ylv04LCGGzU0xQ6vTznOMpQGaLhhm6A==}
  927. engines: {node: '>= 12.0.0'}
  928. winston@3.17.0:
  929. resolution: {integrity: sha512-DLiFIXYC5fMPxaRg832S6F5mJYvePtmO5G9v9IgUFPhXm9/GkXarH/TUrBAVzhTCzAj9anE/+GjrgXp/54nOgw==}
  930. engines: {node: '>= 12.0.0'}
  931. word-wrap@1.2.5:
  932. resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
  933. engines: {node: '>=0.10.0'}
  934. wrap-ansi@7.0.0:
  935. resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
  936. engines: {node: '>=10'}
  937. wrappy@1.0.2:
  938. resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
  939. ws@8.18.2:
  940. resolution: {integrity: sha512-DMricUmwGZUVr++AEAe2uiVM7UoO9MAVZMDu05UQOaUII0lp+zOzLLU4Xqh/JvTqklB1T4uELaaPBKyjE1r4fQ==}
  941. engines: {node: '>=10.0.0'}
  942. peerDependencies:
  943. bufferutil: ^4.0.1
  944. utf-8-validate: '>=5.0.2'
  945. peerDependenciesMeta:
  946. bufferutil:
  947. optional: true
  948. utf-8-validate:
  949. optional: true
  950. xml-parse-from-string@1.0.1:
  951. resolution: {integrity: sha512-ErcKwJTF54uRzzNMXq2X5sMIy88zJvfN2DmdoQvy7PAFJ+tPRU6ydWuOKNMyfmOjdyBQTFREi60s0Y0SyI0G0g==}
  952. xml2js@0.5.0:
  953. resolution: {integrity: sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA==}
  954. engines: {node: '>=4.0.0'}
  955. xmlbuilder@11.0.1:
  956. resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==}
  957. engines: {node: '>=4.0'}
  958. y18n@5.0.8:
  959. resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
  960. engines: {node: '>=10'}
  961. yaml@2.8.0:
  962. resolution: {integrity: sha512-4lLa/EcQCB0cJkyts+FpIRx5G/llPxfP6VQU5KByHEhLxY3IJCH0f0Hy1MHI8sClTvsIb8qwRJ6R/ZdlDJ/leQ==}
  963. engines: {node: '>= 14.6'}
  964. hasBin: true
  965. yargs-parser@21.1.1:
  966. resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
  967. engines: {node: '>=12'}
  968. yargs@17.7.2:
  969. resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
  970. engines: {node: '>=12'}
  971. yauzl@2.10.0:
  972. resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==}
  973. yn@3.1.1:
  974. resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==}
  975. engines: {node: '>=6'}
  976. zlibjs@0.3.1:
  977. resolution: {integrity: sha512-+J9RrgTKOmlxFSDHo0pI1xM6BLVUv+o0ZT9ANtCxGkjIVCCUdx9alUF8Gm+dGLKbkkkidWIHFDZHDMpfITt4+w==}
  978. zod@3.23.8:
  979. resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==}
  980. snapshots:
  981. '@babel/code-frame@7.27.1':
  982. dependencies:
  983. '@babel/helper-validator-identifier': 7.27.1
  984. js-tokens: 4.0.0
  985. picocolors: 1.1.1
  986. '@babel/helper-validator-identifier@7.27.1': {}
  987. '@colors/colors@1.6.0': {}
  988. '@cspotcode/source-map-support@0.8.1':
  989. dependencies:
  990. '@jridgewell/trace-mapping': 0.3.9
  991. '@dabh/diagnostics@2.0.3':
  992. dependencies:
  993. colorspace: 1.1.4
  994. enabled: 2.0.0
  995. kuler: 2.0.0
  996. '@jimp/core@1.6.0':
  997. dependencies:
  998. '@jimp/file-ops': 1.6.0
  999. '@jimp/types': 1.6.0
  1000. '@jimp/utils': 1.6.0
  1001. await-to-js: 3.0.0
  1002. exif-parser: 0.1.12
  1003. file-type: 16.5.4
  1004. mime: 3.0.0
  1005. '@jimp/diff@1.6.0':
  1006. dependencies:
  1007. '@jimp/plugin-resize': 1.6.0
  1008. '@jimp/types': 1.6.0
  1009. '@jimp/utils': 1.6.0
  1010. pixelmatch: 5.3.0
  1011. '@jimp/file-ops@1.6.0': {}
  1012. '@jimp/js-bmp@1.6.0':
  1013. dependencies:
  1014. '@jimp/core': 1.6.0
  1015. '@jimp/types': 1.6.0
  1016. '@jimp/utils': 1.6.0
  1017. bmp-ts: 1.0.9
  1018. '@jimp/js-gif@1.6.0':
  1019. dependencies:
  1020. '@jimp/core': 1.6.0
  1021. '@jimp/types': 1.6.0
  1022. gifwrap: 0.10.1
  1023. omggif: 1.0.10
  1024. '@jimp/js-jpeg@1.6.0':
  1025. dependencies:
  1026. '@jimp/core': 1.6.0
  1027. '@jimp/types': 1.6.0
  1028. jpeg-js: 0.4.4
  1029. '@jimp/js-png@1.6.0':
  1030. dependencies:
  1031. '@jimp/core': 1.6.0
  1032. '@jimp/types': 1.6.0
  1033. pngjs: 7.0.0
  1034. '@jimp/js-tiff@1.6.0':
  1035. dependencies:
  1036. '@jimp/core': 1.6.0
  1037. '@jimp/types': 1.6.0
  1038. utif2: 4.1.0
  1039. '@jimp/plugin-blit@1.6.0':
  1040. dependencies:
  1041. '@jimp/types': 1.6.0
  1042. '@jimp/utils': 1.6.0
  1043. zod: 3.23.8
  1044. '@jimp/plugin-blur@1.6.0':
  1045. dependencies:
  1046. '@jimp/core': 1.6.0
  1047. '@jimp/utils': 1.6.0
  1048. '@jimp/plugin-circle@1.6.0':
  1049. dependencies:
  1050. '@jimp/types': 1.6.0
  1051. zod: 3.23.8
  1052. '@jimp/plugin-color@1.6.0':
  1053. dependencies:
  1054. '@jimp/core': 1.6.0
  1055. '@jimp/types': 1.6.0
  1056. '@jimp/utils': 1.6.0
  1057. tinycolor2: 1.6.0
  1058. zod: 3.23.8
  1059. '@jimp/plugin-contain@1.6.0':
  1060. dependencies:
  1061. '@jimp/core': 1.6.0
  1062. '@jimp/plugin-blit': 1.6.0
  1063. '@jimp/plugin-resize': 1.6.0
  1064. '@jimp/types': 1.6.0
  1065. '@jimp/utils': 1.6.0
  1066. zod: 3.23.8
  1067. '@jimp/plugin-cover@1.6.0':
  1068. dependencies:
  1069. '@jimp/core': 1.6.0
  1070. '@jimp/plugin-crop': 1.6.0
  1071. '@jimp/plugin-resize': 1.6.0
  1072. '@jimp/types': 1.6.0
  1073. zod: 3.23.8
  1074. '@jimp/plugin-crop@1.6.0':
  1075. dependencies:
  1076. '@jimp/core': 1.6.0
  1077. '@jimp/types': 1.6.0
  1078. '@jimp/utils': 1.6.0
  1079. zod: 3.23.8
  1080. '@jimp/plugin-displace@1.6.0':
  1081. dependencies:
  1082. '@jimp/types': 1.6.0
  1083. '@jimp/utils': 1.6.0
  1084. zod: 3.23.8
  1085. '@jimp/plugin-dither@1.6.0':
  1086. dependencies:
  1087. '@jimp/types': 1.6.0
  1088. '@jimp/plugin-fisheye@1.6.0':
  1089. dependencies:
  1090. '@jimp/types': 1.6.0
  1091. '@jimp/utils': 1.6.0
  1092. zod: 3.23.8
  1093. '@jimp/plugin-flip@1.6.0':
  1094. dependencies:
  1095. '@jimp/types': 1.6.0
  1096. zod: 3.23.8
  1097. '@jimp/plugin-hash@1.6.0':
  1098. dependencies:
  1099. '@jimp/core': 1.6.0
  1100. '@jimp/js-bmp': 1.6.0
  1101. '@jimp/js-jpeg': 1.6.0
  1102. '@jimp/js-png': 1.6.0
  1103. '@jimp/js-tiff': 1.6.0
  1104. '@jimp/plugin-color': 1.6.0
  1105. '@jimp/plugin-resize': 1.6.0
  1106. '@jimp/types': 1.6.0
  1107. '@jimp/utils': 1.6.0
  1108. any-base: 1.1.0
  1109. '@jimp/plugin-mask@1.6.0':
  1110. dependencies:
  1111. '@jimp/types': 1.6.0
  1112. zod: 3.23.8
  1113. '@jimp/plugin-print@1.6.0':
  1114. dependencies:
  1115. '@jimp/core': 1.6.0
  1116. '@jimp/js-jpeg': 1.6.0
  1117. '@jimp/js-png': 1.6.0
  1118. '@jimp/plugin-blit': 1.6.0
  1119. '@jimp/types': 1.6.0
  1120. parse-bmfont-ascii: 1.0.6
  1121. parse-bmfont-binary: 1.0.6
  1122. parse-bmfont-xml: 1.1.6
  1123. simple-xml-to-json: 1.2.3
  1124. zod: 3.23.8
  1125. '@jimp/plugin-quantize@1.6.0':
  1126. dependencies:
  1127. image-q: 4.0.0
  1128. zod: 3.23.8
  1129. '@jimp/plugin-resize@1.6.0':
  1130. dependencies:
  1131. '@jimp/core': 1.6.0
  1132. '@jimp/types': 1.6.0
  1133. zod: 3.23.8
  1134. '@jimp/plugin-rotate@1.6.0':
  1135. dependencies:
  1136. '@jimp/core': 1.6.0
  1137. '@jimp/plugin-crop': 1.6.0
  1138. '@jimp/plugin-resize': 1.6.0
  1139. '@jimp/types': 1.6.0
  1140. '@jimp/utils': 1.6.0
  1141. zod: 3.23.8
  1142. '@jimp/plugin-threshold@1.6.0':
  1143. dependencies:
  1144. '@jimp/core': 1.6.0
  1145. '@jimp/plugin-color': 1.6.0
  1146. '@jimp/plugin-hash': 1.6.0
  1147. '@jimp/types': 1.6.0
  1148. '@jimp/utils': 1.6.0
  1149. zod: 3.23.8
  1150. '@jimp/types@1.6.0':
  1151. dependencies:
  1152. zod: 3.23.8
  1153. '@jimp/utils@1.6.0':
  1154. dependencies:
  1155. '@jimp/types': 1.6.0
  1156. tinycolor2: 1.6.0
  1157. '@jridgewell/resolve-uri@3.1.2': {}
  1158. '@jridgewell/sourcemap-codec@1.5.0': {}
  1159. '@jridgewell/trace-mapping@0.3.9':
  1160. dependencies:
  1161. '@jridgewell/resolve-uri': 3.1.2
  1162. '@jridgewell/sourcemap-codec': 1.5.0
  1163. '@puppeteer/browsers@2.6.1':
  1164. dependencies:
  1165. debug: 4.4.1(supports-color@5.5.0)
  1166. extract-zip: 2.0.1
  1167. progress: 2.0.3
  1168. proxy-agent: 6.5.0
  1169. semver: 7.7.2
  1170. tar-fs: 3.0.8
  1171. unbzip2-stream: 1.4.3
  1172. yargs: 17.7.2
  1173. transitivePeerDependencies:
  1174. - bare-buffer
  1175. - supports-color
  1176. '@tokenizer/token@0.3.0': {}
  1177. '@tootallnate/quickjs-emscripten@0.23.0': {}
  1178. '@tsconfig/node10@1.0.11': {}
  1179. '@tsconfig/node12@1.0.11': {}
  1180. '@tsconfig/node14@1.0.3': {}
  1181. '@tsconfig/node16@1.0.4': {}
  1182. '@types/js-yaml@4.0.9': {}
  1183. '@types/minimist@1.2.5': {}
  1184. '@types/node-cron@3.0.11': {}
  1185. '@types/node@16.18.126': {}
  1186. '@types/node@16.9.1': {}
  1187. '@types/triple-beam@1.3.5': {}
  1188. '@types/winston@2.4.4':
  1189. dependencies:
  1190. winston: 3.17.0
  1191. '@types/yauzl@2.10.3':
  1192. dependencies:
  1193. '@types/node': 16.18.126
  1194. optional: true
  1195. abort-controller@3.0.0:
  1196. dependencies:
  1197. event-target-shim: 5.0.1
  1198. acorn-walk@8.3.4:
  1199. dependencies:
  1200. acorn: 8.14.1
  1201. acorn@5.7.4: {}
  1202. acorn@8.14.1: {}
  1203. agent-base@7.1.3: {}
  1204. ansi-regex@5.0.1: {}
  1205. ansi-styles@4.3.0:
  1206. dependencies:
  1207. color-convert: 2.0.1
  1208. any-base@1.1.0: {}
  1209. anymatch@3.1.3:
  1210. dependencies:
  1211. normalize-path: 3.0.0
  1212. picomatch: 2.3.1
  1213. arg@4.1.3: {}
  1214. argparse@2.0.1: {}
  1215. art-template@4.13.4:
  1216. dependencies:
  1217. acorn: 5.7.4
  1218. escodegen: 1.14.3
  1219. estraverse: 4.3.0
  1220. html-minifier: 3.5.21
  1221. is-keyword-js: 1.0.3
  1222. js-tokens: 3.0.2
  1223. merge-source-map: 1.1.0
  1224. source-map: 0.5.7
  1225. ast-types@0.13.4:
  1226. dependencies:
  1227. tslib: 2.8.1
  1228. async@3.2.6: {}
  1229. asynckit@0.4.0: {}
  1230. await-to-js@3.0.0: {}
  1231. axios@1.9.0:
  1232. dependencies:
  1233. follow-redirects: 1.15.9
  1234. form-data: 4.0.2
  1235. proxy-from-env: 1.1.0
  1236. transitivePeerDependencies:
  1237. - debug
  1238. b4a@1.6.7: {}
  1239. balanced-match@1.0.2: {}
  1240. bare-events@2.5.4:
  1241. optional: true
  1242. bare-fs@4.1.5:
  1243. dependencies:
  1244. bare-events: 2.5.4
  1245. bare-path: 3.0.0
  1246. bare-stream: 2.6.5(bare-events@2.5.4)
  1247. optional: true
  1248. bare-os@3.6.1:
  1249. optional: true
  1250. bare-path@3.0.0:
  1251. dependencies:
  1252. bare-os: 3.6.1
  1253. optional: true
  1254. bare-stream@2.6.5(bare-events@2.5.4):
  1255. dependencies:
  1256. streamx: 2.22.0
  1257. optionalDependencies:
  1258. bare-events: 2.5.4
  1259. optional: true
  1260. base64-js@1.5.1: {}
  1261. basic-ftp@5.0.5: {}
  1262. binary-extensions@2.3.0: {}
  1263. bmp-js@0.1.0: {}
  1264. bmp-ts@1.0.9: {}
  1265. brace-expansion@1.1.11:
  1266. dependencies:
  1267. balanced-match: 1.0.2
  1268. concat-map: 0.0.1
  1269. braces@3.0.3:
  1270. dependencies:
  1271. fill-range: 7.1.1
  1272. buffer-crc32@0.2.13: {}
  1273. buffer@5.7.1:
  1274. dependencies:
  1275. base64-js: 1.5.1
  1276. ieee754: 1.2.1
  1277. buffer@6.0.3:
  1278. dependencies:
  1279. base64-js: 1.5.1
  1280. ieee754: 1.2.1
  1281. call-bind-apply-helpers@1.0.2:
  1282. dependencies:
  1283. es-errors: 1.3.0
  1284. function-bind: 1.1.2
  1285. callsites@3.1.0: {}
  1286. camel-case@3.0.0:
  1287. dependencies:
  1288. no-case: 2.3.2
  1289. upper-case: 1.1.3
  1290. chokidar@3.6.0:
  1291. dependencies:
  1292. anymatch: 3.1.3
  1293. braces: 3.0.3
  1294. glob-parent: 5.1.2
  1295. is-binary-path: 2.1.0
  1296. is-glob: 4.0.3
  1297. normalize-path: 3.0.0
  1298. readdirp: 3.6.0
  1299. optionalDependencies:
  1300. fsevents: 2.3.3
  1301. chromium-bidi@0.11.0(devtools-protocol@0.0.1367902):
  1302. dependencies:
  1303. devtools-protocol: 0.0.1367902
  1304. mitt: 3.0.1
  1305. zod: 3.23.8
  1306. clean-css@4.2.4:
  1307. dependencies:
  1308. source-map: 0.6.1
  1309. cliui@8.0.1:
  1310. dependencies:
  1311. string-width: 4.2.3
  1312. strip-ansi: 6.0.1
  1313. wrap-ansi: 7.0.0
  1314. color-convert@1.9.3:
  1315. dependencies:
  1316. color-name: 1.1.3
  1317. color-convert@2.0.1:
  1318. dependencies:
  1319. color-name: 1.1.4
  1320. color-name@1.1.3: {}
  1321. color-name@1.1.4: {}
  1322. color-string@1.9.1:
  1323. dependencies:
  1324. color-name: 1.1.4
  1325. simple-swizzle: 0.2.2
  1326. color@3.2.1:
  1327. dependencies:
  1328. color-convert: 1.9.3
  1329. color-string: 1.9.1
  1330. colorspace@1.1.4:
  1331. dependencies:
  1332. color: 3.2.1
  1333. text-hex: 1.0.0
  1334. combined-stream@1.0.8:
  1335. dependencies:
  1336. delayed-stream: 1.0.0
  1337. commander@2.17.1: {}
  1338. commander@2.19.0: {}
  1339. concat-map@0.0.1: {}
  1340. cosmiconfig@9.0.0(typescript@4.9.5):
  1341. dependencies:
  1342. env-paths: 2.2.1
  1343. import-fresh: 3.3.1
  1344. js-yaml: 4.1.0
  1345. parse-json: 5.2.0
  1346. optionalDependencies:
  1347. typescript: 4.9.5
  1348. create-require@1.1.1: {}
  1349. data-uri-to-buffer@6.0.2: {}
  1350. debug@4.4.1(supports-color@5.5.0):
  1351. dependencies:
  1352. ms: 2.1.3
  1353. optionalDependencies:
  1354. supports-color: 5.5.0
  1355. deep-is@0.1.4: {}
  1356. degenerator@5.0.1:
  1357. dependencies:
  1358. ast-types: 0.13.4
  1359. escodegen: 2.1.0
  1360. esprima: 4.0.1
  1361. delayed-stream@1.0.0: {}
  1362. devtools-protocol@0.0.1367902: {}
  1363. diff@4.0.2: {}
  1364. dunder-proto@1.0.1:
  1365. dependencies:
  1366. call-bind-apply-helpers: 1.0.2
  1367. es-errors: 1.3.0
  1368. gopd: 1.2.0
  1369. emoji-regex@8.0.0: {}
  1370. enabled@2.0.0: {}
  1371. end-of-stream@1.4.4:
  1372. dependencies:
  1373. once: 1.4.0
  1374. env-paths@2.2.1: {}
  1375. error-ex@1.3.2:
  1376. dependencies:
  1377. is-arrayish: 0.2.1
  1378. es-define-property@1.0.1: {}
  1379. es-errors@1.3.0: {}
  1380. es-object-atoms@1.1.1:
  1381. dependencies:
  1382. es-errors: 1.3.0
  1383. es-set-tostringtag@2.1.0:
  1384. dependencies:
  1385. es-errors: 1.3.0
  1386. get-intrinsic: 1.3.0
  1387. has-tostringtag: 1.0.2
  1388. hasown: 2.0.2
  1389. escalade@3.2.0: {}
  1390. escodegen@1.14.3:
  1391. dependencies:
  1392. esprima: 4.0.1
  1393. estraverse: 4.3.0
  1394. esutils: 2.0.3
  1395. optionator: 0.8.3
  1396. optionalDependencies:
  1397. source-map: 0.6.1
  1398. escodegen@2.1.0:
  1399. dependencies:
  1400. esprima: 4.0.1
  1401. estraverse: 5.3.0
  1402. esutils: 2.0.3
  1403. optionalDependencies:
  1404. source-map: 0.6.1
  1405. esprima@4.0.1: {}
  1406. estraverse@4.3.0: {}
  1407. estraverse@5.3.0: {}
  1408. esutils@2.0.3: {}
  1409. event-target-shim@5.0.1: {}
  1410. events@3.3.0: {}
  1411. exif-parser@0.1.12: {}
  1412. extract-zip@2.0.1:
  1413. dependencies:
  1414. debug: 4.4.1(supports-color@5.5.0)
  1415. get-stream: 5.2.0
  1416. yauzl: 2.10.0
  1417. optionalDependencies:
  1418. '@types/yauzl': 2.10.3
  1419. transitivePeerDependencies:
  1420. - supports-color
  1421. fast-fifo@1.3.2: {}
  1422. fast-levenshtein@2.0.6: {}
  1423. fd-slicer@1.1.0:
  1424. dependencies:
  1425. pend: 1.2.0
  1426. fecha@4.2.3: {}
  1427. file-stream-rotator@0.6.1:
  1428. dependencies:
  1429. moment: 2.30.1
  1430. file-type@16.5.4:
  1431. dependencies:
  1432. readable-web-to-node-stream: 3.0.4
  1433. strtok3: 6.3.0
  1434. token-types: 4.2.1
  1435. fill-range@7.1.1:
  1436. dependencies:
  1437. to-regex-range: 5.0.1
  1438. fn.name@1.1.0: {}
  1439. follow-redirects@1.15.9: {}
  1440. form-data@4.0.2:
  1441. dependencies:
  1442. asynckit: 0.4.0
  1443. combined-stream: 1.0.8
  1444. es-set-tostringtag: 2.1.0
  1445. mime-types: 2.1.35
  1446. fsevents@2.3.3:
  1447. optional: true
  1448. function-bind@1.1.2: {}
  1449. get-caller-file@2.0.5: {}
  1450. get-intrinsic@1.3.0:
  1451. dependencies:
  1452. call-bind-apply-helpers: 1.0.2
  1453. es-define-property: 1.0.1
  1454. es-errors: 1.3.0
  1455. es-object-atoms: 1.1.1
  1456. function-bind: 1.1.2
  1457. get-proto: 1.0.1
  1458. gopd: 1.2.0
  1459. has-symbols: 1.1.0
  1460. hasown: 2.0.2
  1461. math-intrinsics: 1.1.0
  1462. get-proto@1.0.1:
  1463. dependencies:
  1464. dunder-proto: 1.0.1
  1465. es-object-atoms: 1.1.1
  1466. get-stream@5.2.0:
  1467. dependencies:
  1468. pump: 3.0.2
  1469. get-uri@6.0.4:
  1470. dependencies:
  1471. basic-ftp: 5.0.5
  1472. data-uri-to-buffer: 6.0.2
  1473. debug: 4.4.1(supports-color@5.5.0)
  1474. transitivePeerDependencies:
  1475. - supports-color
  1476. gifwrap@0.10.1:
  1477. dependencies:
  1478. image-q: 4.0.0
  1479. omggif: 1.0.10
  1480. glob-parent@5.1.2:
  1481. dependencies:
  1482. is-glob: 4.0.3
  1483. gopd@1.2.0: {}
  1484. has-flag@3.0.0: {}
  1485. has-symbols@1.1.0: {}
  1486. has-tostringtag@1.0.2:
  1487. dependencies:
  1488. has-symbols: 1.1.0
  1489. hasown@2.0.2:
  1490. dependencies:
  1491. function-bind: 1.1.2
  1492. he@1.2.0: {}
  1493. html-minifier@3.5.21:
  1494. dependencies:
  1495. camel-case: 3.0.0
  1496. clean-css: 4.2.4
  1497. commander: 2.17.1
  1498. he: 1.2.0
  1499. param-case: 2.1.1
  1500. relateurl: 0.2.7
  1501. uglify-js: 3.4.10
  1502. http-proxy-agent@7.0.2:
  1503. dependencies:
  1504. agent-base: 7.1.3
  1505. debug: 4.4.1(supports-color@5.5.0)
  1506. transitivePeerDependencies:
  1507. - supports-color
  1508. https-proxy-agent@7.0.6:
  1509. dependencies:
  1510. agent-base: 7.1.3
  1511. debug: 4.4.1(supports-color@5.5.0)
  1512. transitivePeerDependencies:
  1513. - supports-color
  1514. idb-keyval@6.2.2: {}
  1515. ieee754@1.2.1: {}
  1516. ignore-by-default@1.0.1: {}
  1517. image-q@4.0.0:
  1518. dependencies:
  1519. '@types/node': 16.9.1
  1520. import-fresh@3.3.1:
  1521. dependencies:
  1522. parent-module: 1.0.1
  1523. resolve-from: 4.0.0
  1524. inherits@2.0.4: {}
  1525. ip-address@9.0.5:
  1526. dependencies:
  1527. jsbn: 1.1.0
  1528. sprintf-js: 1.1.3
  1529. is-arrayish@0.2.1: {}
  1530. is-arrayish@0.3.2: {}
  1531. is-binary-path@2.1.0:
  1532. dependencies:
  1533. binary-extensions: 2.3.0
  1534. is-extglob@2.1.1: {}
  1535. is-fullwidth-code-point@3.0.0: {}
  1536. is-glob@4.0.3:
  1537. dependencies:
  1538. is-extglob: 2.1.1
  1539. is-keyword-js@1.0.3: {}
  1540. is-number@7.0.0: {}
  1541. is-stream@2.0.1: {}
  1542. is-url@1.2.4: {}
  1543. isomorphic-ws@5.0.0(ws@8.18.2):
  1544. dependencies:
  1545. ws: 8.18.2
  1546. jimp@1.6.0:
  1547. dependencies:
  1548. '@jimp/core': 1.6.0
  1549. '@jimp/diff': 1.6.0
  1550. '@jimp/js-bmp': 1.6.0
  1551. '@jimp/js-gif': 1.6.0
  1552. '@jimp/js-jpeg': 1.6.0
  1553. '@jimp/js-png': 1.6.0
  1554. '@jimp/js-tiff': 1.6.0
  1555. '@jimp/plugin-blit': 1.6.0
  1556. '@jimp/plugin-blur': 1.6.0
  1557. '@jimp/plugin-circle': 1.6.0
  1558. '@jimp/plugin-color': 1.6.0
  1559. '@jimp/plugin-contain': 1.6.0
  1560. '@jimp/plugin-cover': 1.6.0
  1561. '@jimp/plugin-crop': 1.6.0
  1562. '@jimp/plugin-displace': 1.6.0
  1563. '@jimp/plugin-dither': 1.6.0
  1564. '@jimp/plugin-fisheye': 1.6.0
  1565. '@jimp/plugin-flip': 1.6.0
  1566. '@jimp/plugin-hash': 1.6.0
  1567. '@jimp/plugin-mask': 1.6.0
  1568. '@jimp/plugin-print': 1.6.0
  1569. '@jimp/plugin-quantize': 1.6.0
  1570. '@jimp/plugin-resize': 1.6.0
  1571. '@jimp/plugin-rotate': 1.6.0
  1572. '@jimp/plugin-threshold': 1.6.0
  1573. '@jimp/types': 1.6.0
  1574. '@jimp/utils': 1.6.0
  1575. jpeg-js@0.4.4: {}
  1576. js-tokens@3.0.2: {}
  1577. js-tokens@4.0.0: {}
  1578. js-yaml@4.1.0:
  1579. dependencies:
  1580. argparse: 2.0.1
  1581. jsbn@1.1.0: {}
  1582. json-parse-even-better-errors@2.3.1: {}
  1583. json5@2.2.3: {}
  1584. kuler@2.0.0: {}
  1585. levn@0.3.0:
  1586. dependencies:
  1587. prelude-ls: 1.1.2
  1588. type-check: 0.3.2
  1589. lines-and-columns@1.2.4: {}
  1590. logform@2.7.0:
  1591. dependencies:
  1592. '@colors/colors': 1.6.0
  1593. '@types/triple-beam': 1.3.5
  1594. fecha: 4.2.3
  1595. ms: 2.1.3
  1596. safe-stable-stringify: 2.5.0
  1597. triple-beam: 1.4.1
  1598. lower-case@1.1.4: {}
  1599. lru-cache@7.18.3: {}
  1600. make-error@1.3.6: {}
  1601. math-intrinsics@1.1.0: {}
  1602. merge-source-map@1.1.0:
  1603. dependencies:
  1604. source-map: 0.6.1
  1605. mime-db@1.52.0: {}
  1606. mime-types@2.1.35:
  1607. dependencies:
  1608. mime-db: 1.52.0
  1609. mime@3.0.0: {}
  1610. minimatch@3.1.2:
  1611. dependencies:
  1612. brace-expansion: 1.1.11
  1613. minimist@1.2.8: {}
  1614. mitt@3.0.1: {}
  1615. moment@2.30.1: {}
  1616. ms@2.1.3: {}
  1617. nanoid@5.1.5: {}
  1618. netmask@2.0.2: {}
  1619. no-case@2.3.2:
  1620. dependencies:
  1621. lower-case: 1.1.4
  1622. node-cron@3.0.3:
  1623. dependencies:
  1624. uuid: 8.3.2
  1625. node-fetch@2.7.0:
  1626. dependencies:
  1627. whatwg-url: 5.0.0
  1628. node-napcat-ts@0.4.11:
  1629. dependencies:
  1630. isomorphic-ws: 5.0.0(ws@8.18.2)
  1631. nanoid: 5.1.5
  1632. ws: 8.18.2
  1633. transitivePeerDependencies:
  1634. - bufferutil
  1635. - utf-8-validate
  1636. nodemon@3.1.10:
  1637. dependencies:
  1638. chokidar: 3.6.0
  1639. debug: 4.4.1(supports-color@5.5.0)
  1640. ignore-by-default: 1.0.1
  1641. minimatch: 3.1.2
  1642. pstree.remy: 1.1.8
  1643. semver: 7.7.2
  1644. simple-update-notifier: 2.0.0
  1645. supports-color: 5.5.0
  1646. touch: 3.1.1
  1647. undefsafe: 2.0.5
  1648. normalize-path@3.0.0: {}
  1649. object-hash@3.0.0: {}
  1650. omggif@1.0.10: {}
  1651. once@1.4.0:
  1652. dependencies:
  1653. wrappy: 1.0.2
  1654. one-time@1.0.0:
  1655. dependencies:
  1656. fn.name: 1.1.0
  1657. opencollective-postinstall@2.0.3: {}
  1658. optionator@0.8.3:
  1659. dependencies:
  1660. deep-is: 0.1.4
  1661. fast-levenshtein: 2.0.6
  1662. levn: 0.3.0
  1663. prelude-ls: 1.1.2
  1664. type-check: 0.3.2
  1665. word-wrap: 1.2.5
  1666. pac-proxy-agent@7.2.0:
  1667. dependencies:
  1668. '@tootallnate/quickjs-emscripten': 0.23.0
  1669. agent-base: 7.1.3
  1670. debug: 4.4.1(supports-color@5.5.0)
  1671. get-uri: 6.0.4
  1672. http-proxy-agent: 7.0.2
  1673. https-proxy-agent: 7.0.6
  1674. pac-resolver: 7.0.1
  1675. socks-proxy-agent: 8.0.5
  1676. transitivePeerDependencies:
  1677. - supports-color
  1678. pac-resolver@7.0.1:
  1679. dependencies:
  1680. degenerator: 5.0.1
  1681. netmask: 2.0.2
  1682. pako@1.0.11: {}
  1683. param-case@2.1.1:
  1684. dependencies:
  1685. no-case: 2.3.2
  1686. parent-module@1.0.1:
  1687. dependencies:
  1688. callsites: 3.1.0
  1689. parse-bmfont-ascii@1.0.6: {}
  1690. parse-bmfont-binary@1.0.6: {}
  1691. parse-bmfont-xml@1.1.6:
  1692. dependencies:
  1693. xml-parse-from-string: 1.0.1
  1694. xml2js: 0.5.0
  1695. parse-json@5.2.0:
  1696. dependencies:
  1697. '@babel/code-frame': 7.27.1
  1698. error-ex: 1.3.2
  1699. json-parse-even-better-errors: 2.3.1
  1700. lines-and-columns: 1.2.4
  1701. peek-readable@4.1.0: {}
  1702. pend@1.2.0: {}
  1703. picocolors@1.1.1: {}
  1704. picomatch@2.3.1: {}
  1705. pixelmatch@5.3.0:
  1706. dependencies:
  1707. pngjs: 6.0.0
  1708. pngjs@6.0.0: {}
  1709. pngjs@7.0.0: {}
  1710. prelude-ls@1.1.2: {}
  1711. process@0.11.10: {}
  1712. progress@2.0.3: {}
  1713. proxy-agent@6.5.0:
  1714. dependencies:
  1715. agent-base: 7.1.3
  1716. debug: 4.4.1(supports-color@5.5.0)
  1717. http-proxy-agent: 7.0.2
  1718. https-proxy-agent: 7.0.6
  1719. lru-cache: 7.18.3
  1720. pac-proxy-agent: 7.2.0
  1721. proxy-from-env: 1.1.0
  1722. socks-proxy-agent: 8.0.5
  1723. transitivePeerDependencies:
  1724. - supports-color
  1725. proxy-from-env@1.1.0: {}
  1726. pstree.remy@1.1.8: {}
  1727. pump@3.0.2:
  1728. dependencies:
  1729. end-of-stream: 1.4.4
  1730. once: 1.4.0
  1731. puppeteer-core@23.11.1:
  1732. dependencies:
  1733. '@puppeteer/browsers': 2.6.1
  1734. chromium-bidi: 0.11.0(devtools-protocol@0.0.1367902)
  1735. debug: 4.4.1(supports-color@5.5.0)
  1736. devtools-protocol: 0.0.1367902
  1737. typed-query-selector: 2.12.0
  1738. ws: 8.18.2
  1739. transitivePeerDependencies:
  1740. - bare-buffer
  1741. - bufferutil
  1742. - supports-color
  1743. - utf-8-validate
  1744. puppeteer@23.11.1(typescript@4.9.5):
  1745. dependencies:
  1746. '@puppeteer/browsers': 2.6.1
  1747. chromium-bidi: 0.11.0(devtools-protocol@0.0.1367902)
  1748. cosmiconfig: 9.0.0(typescript@4.9.5)
  1749. devtools-protocol: 0.0.1367902
  1750. puppeteer-core: 23.11.1
  1751. typed-query-selector: 2.12.0
  1752. transitivePeerDependencies:
  1753. - bare-buffer
  1754. - bufferutil
  1755. - supports-color
  1756. - typescript
  1757. - utf-8-validate
  1758. readable-stream@3.6.2:
  1759. dependencies:
  1760. inherits: 2.0.4
  1761. string_decoder: 1.3.0
  1762. util-deprecate: 1.0.2
  1763. readable-stream@4.7.0:
  1764. dependencies:
  1765. abort-controller: 3.0.0
  1766. buffer: 6.0.3
  1767. events: 3.3.0
  1768. process: 0.11.10
  1769. string_decoder: 1.3.0
  1770. readable-web-to-node-stream@3.0.4:
  1771. dependencies:
  1772. readable-stream: 4.7.0
  1773. readdirp@3.6.0:
  1774. dependencies:
  1775. picomatch: 2.3.1
  1776. reflect-metadata@0.2.2: {}
  1777. regenerator-runtime@0.13.11: {}
  1778. relateurl@0.2.7: {}
  1779. require-directory@2.1.1: {}
  1780. resolve-from@4.0.0: {}
  1781. safe-buffer@5.2.1: {}
  1782. safe-stable-stringify@2.5.0: {}
  1783. sax@1.4.1: {}
  1784. semver@7.7.2: {}
  1785. simple-swizzle@0.2.2:
  1786. dependencies:
  1787. is-arrayish: 0.3.2
  1788. simple-update-notifier@2.0.0:
  1789. dependencies:
  1790. semver: 7.7.2
  1791. simple-xml-to-json@1.2.3: {}
  1792. smart-buffer@4.2.0: {}
  1793. socks-proxy-agent@8.0.5:
  1794. dependencies:
  1795. agent-base: 7.1.3
  1796. debug: 4.4.1(supports-color@5.5.0)
  1797. socks: 2.8.4
  1798. transitivePeerDependencies:
  1799. - supports-color
  1800. socks@2.8.4:
  1801. dependencies:
  1802. ip-address: 9.0.5
  1803. smart-buffer: 4.2.0
  1804. source-map@0.5.7: {}
  1805. source-map@0.6.1: {}
  1806. sprintf-js@1.1.3: {}
  1807. stack-trace@0.0.10: {}
  1808. streamx@2.22.0:
  1809. dependencies:
  1810. fast-fifo: 1.3.2
  1811. text-decoder: 1.2.3
  1812. optionalDependencies:
  1813. bare-events: 2.5.4
  1814. string-width@4.2.3:
  1815. dependencies:
  1816. emoji-regex: 8.0.0
  1817. is-fullwidth-code-point: 3.0.0
  1818. strip-ansi: 6.0.1
  1819. string_decoder@1.3.0:
  1820. dependencies:
  1821. safe-buffer: 5.2.1
  1822. strip-ansi@6.0.1:
  1823. dependencies:
  1824. ansi-regex: 5.0.1
  1825. strip-bom@3.0.0: {}
  1826. strtok3@6.3.0:
  1827. dependencies:
  1828. '@tokenizer/token': 0.3.0
  1829. peek-readable: 4.1.0
  1830. supports-color@5.5.0:
  1831. dependencies:
  1832. has-flag: 3.0.0
  1833. tar-fs@3.0.8:
  1834. dependencies:
  1835. pump: 3.0.2
  1836. tar-stream: 3.1.7
  1837. optionalDependencies:
  1838. bare-fs: 4.1.5
  1839. bare-path: 3.0.0
  1840. transitivePeerDependencies:
  1841. - bare-buffer
  1842. tar-stream@3.1.7:
  1843. dependencies:
  1844. b4a: 1.6.7
  1845. fast-fifo: 1.3.2
  1846. streamx: 2.22.0
  1847. tesseract.js-core@6.0.0: {}
  1848. tesseract.js@6.0.1:
  1849. dependencies:
  1850. bmp-js: 0.1.0
  1851. idb-keyval: 6.2.2
  1852. is-url: 1.2.4
  1853. node-fetch: 2.7.0
  1854. opencollective-postinstall: 2.0.3
  1855. regenerator-runtime: 0.13.11
  1856. tesseract.js-core: 6.0.0
  1857. wasm-feature-detect: 1.8.0
  1858. zlibjs: 0.3.1
  1859. transitivePeerDependencies:
  1860. - encoding
  1861. text-decoder@1.2.3:
  1862. dependencies:
  1863. b4a: 1.6.7
  1864. text-hex@1.0.0: {}
  1865. through@2.3.8: {}
  1866. tinycolor2@1.6.0: {}
  1867. to-regex-range@5.0.1:
  1868. dependencies:
  1869. is-number: 7.0.0
  1870. token-types@4.2.1:
  1871. dependencies:
  1872. '@tokenizer/token': 0.3.0
  1873. ieee754: 1.2.1
  1874. touch@3.1.1: {}
  1875. tr46@0.0.3: {}
  1876. triple-beam@1.4.1: {}
  1877. ts-node@10.9.2(@types/node@16.18.126)(typescript@4.9.5):
  1878. dependencies:
  1879. '@cspotcode/source-map-support': 0.8.1
  1880. '@tsconfig/node10': 1.0.11
  1881. '@tsconfig/node12': 1.0.11
  1882. '@tsconfig/node14': 1.0.3
  1883. '@tsconfig/node16': 1.0.4
  1884. '@types/node': 16.18.126
  1885. acorn: 8.14.1
  1886. acorn-walk: 8.3.4
  1887. arg: 4.1.3
  1888. create-require: 1.1.1
  1889. diff: 4.0.2
  1890. make-error: 1.3.6
  1891. typescript: 4.9.5
  1892. v8-compile-cache-lib: 3.0.1
  1893. yn: 3.1.1
  1894. tsconfig-paths@4.2.0:
  1895. dependencies:
  1896. json5: 2.2.3
  1897. minimist: 1.2.8
  1898. strip-bom: 3.0.0
  1899. tslib@2.8.1: {}
  1900. type-check@0.3.2:
  1901. dependencies:
  1902. prelude-ls: 1.1.2
  1903. typed-query-selector@2.12.0: {}
  1904. typescript@4.9.5: {}
  1905. uglify-js@3.4.10:
  1906. dependencies:
  1907. commander: 2.19.0
  1908. source-map: 0.6.1
  1909. unbzip2-stream@1.4.3:
  1910. dependencies:
  1911. buffer: 5.7.1
  1912. through: 2.3.8
  1913. undefsafe@2.0.5: {}
  1914. upper-case@1.1.3: {}
  1915. utif2@4.1.0:
  1916. dependencies:
  1917. pako: 1.0.11
  1918. util-deprecate@1.0.2: {}
  1919. uuid@8.3.2: {}
  1920. v8-compile-cache-lib@3.0.1: {}
  1921. wasm-feature-detect@1.8.0: {}
  1922. webidl-conversions@3.0.1: {}
  1923. whatwg-url@5.0.0:
  1924. dependencies:
  1925. tr46: 0.0.3
  1926. webidl-conversions: 3.0.1
  1927. winston-daily-rotate-file@5.0.0(winston@3.17.0):
  1928. dependencies:
  1929. file-stream-rotator: 0.6.1
  1930. object-hash: 3.0.0
  1931. triple-beam: 1.4.1
  1932. winston: 3.17.0
  1933. winston-transport: 4.9.0
  1934. winston-transport@4.9.0:
  1935. dependencies:
  1936. logform: 2.7.0
  1937. readable-stream: 3.6.2
  1938. triple-beam: 1.4.1
  1939. winston@3.17.0:
  1940. dependencies:
  1941. '@colors/colors': 1.6.0
  1942. '@dabh/diagnostics': 2.0.3
  1943. async: 3.2.6
  1944. is-stream: 2.0.1
  1945. logform: 2.7.0
  1946. one-time: 1.0.0
  1947. readable-stream: 3.6.2
  1948. safe-stable-stringify: 2.5.0
  1949. stack-trace: 0.0.10
  1950. triple-beam: 1.4.1
  1951. winston-transport: 4.9.0
  1952. word-wrap@1.2.5: {}
  1953. wrap-ansi@7.0.0:
  1954. dependencies:
  1955. ansi-styles: 4.3.0
  1956. string-width: 4.2.3
  1957. strip-ansi: 6.0.1
  1958. wrappy@1.0.2: {}
  1959. ws@8.18.2: {}
  1960. xml-parse-from-string@1.0.1: {}
  1961. xml2js@0.5.0:
  1962. dependencies:
  1963. sax: 1.4.1
  1964. xmlbuilder: 11.0.1
  1965. xmlbuilder@11.0.1: {}
  1966. y18n@5.0.8: {}
  1967. yaml@2.8.0: {}
  1968. yargs-parser@21.1.1: {}
  1969. yargs@17.7.2:
  1970. dependencies:
  1971. cliui: 8.0.1
  1972. escalade: 3.2.0
  1973. get-caller-file: 2.0.5
  1974. require-directory: 2.1.1
  1975. string-width: 4.2.3
  1976. y18n: 5.0.8
  1977. yargs-parser: 21.1.1
  1978. yauzl@2.10.0:
  1979. dependencies:
  1980. buffer-crc32: 0.2.13
  1981. fd-slicer: 1.1.0
  1982. yn@3.1.1: {}
  1983. zlibjs@0.3.1: {}
  1984. zod@3.23.8: {}