.package-lock.json 102 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823
  1. {
  2. "name": "png-viewer-server",
  3. "version": "1.0.0",
  4. "lockfileVersion": 3,
  5. "requires": true,
  6. "packages": {
  7. "node_modules/@gar/promisify": {
  8. "version": "1.1.3",
  9. "resolved": "https://registry.npmmirror.com/@gar/promisify/-/promisify-1.1.3.tgz",
  10. "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==",
  11. "license": "MIT",
  12. "optional": true
  13. },
  14. "node_modules/@img/sharp-win32-x64": {
  15. "version": "0.33.5",
  16. "resolved": "https://registry.npmmirror.com/@img/sharp-win32-x64/-/sharp-win32-x64-0.33.5.tgz",
  17. "integrity": "sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==",
  18. "cpu": [
  19. "x64"
  20. ],
  21. "license": "Apache-2.0 AND LGPL-3.0-or-later",
  22. "optional": true,
  23. "os": [
  24. "win32"
  25. ],
  26. "engines": {
  27. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  28. },
  29. "funding": {
  30. "url": "https://opencollective.com/libvips"
  31. }
  32. },
  33. "node_modules/@isaacs/cliui": {
  34. "version": "8.0.2",
  35. "resolved": "https://registry.npmmirror.com/@isaacs/cliui/-/cliui-8.0.2.tgz",
  36. "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
  37. "license": "ISC",
  38. "dependencies": {
  39. "string-width": "^5.1.2",
  40. "string-width-cjs": "npm:string-width@^4.2.0",
  41. "strip-ansi": "^7.0.1",
  42. "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
  43. "wrap-ansi": "^8.1.0",
  44. "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
  45. },
  46. "engines": {
  47. "node": ">=12"
  48. }
  49. },
  50. "node_modules/@noble/hashes": {
  51. "version": "1.8.0",
  52. "resolved": "https://registry.npmmirror.com/@noble/hashes/-/hashes-1.8.0.tgz",
  53. "integrity": "sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==",
  54. "license": "MIT",
  55. "engines": {
  56. "node": "^14.21.3 || >=16"
  57. },
  58. "funding": {
  59. "url": "https://paulmillr.com/funding/"
  60. }
  61. },
  62. "node_modules/@npmcli/fs": {
  63. "version": "1.1.1",
  64. "resolved": "https://registry.npmmirror.com/@npmcli/fs/-/fs-1.1.1.tgz",
  65. "integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==",
  66. "license": "ISC",
  67. "optional": true,
  68. "dependencies": {
  69. "@gar/promisify": "^1.0.1",
  70. "semver": "^7.3.5"
  71. }
  72. },
  73. "node_modules/@npmcli/move-file": {
  74. "version": "1.1.2",
  75. "resolved": "https://registry.npmmirror.com/@npmcli/move-file/-/move-file-1.1.2.tgz",
  76. "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==",
  77. "deprecated": "This functionality has been moved to @npmcli/fs",
  78. "license": "MIT",
  79. "optional": true,
  80. "dependencies": {
  81. "mkdirp": "^1.0.4",
  82. "rimraf": "^3.0.2"
  83. },
  84. "engines": {
  85. "node": ">=10"
  86. }
  87. },
  88. "node_modules/@paralleldrive/cuid2": {
  89. "version": "2.3.1",
  90. "resolved": "https://registry.npmmirror.com/@paralleldrive/cuid2/-/cuid2-2.3.1.tgz",
  91. "integrity": "sha512-XO7cAxhnTZl0Yggq6jOgjiOHhbgcO4NqFqwSmQpjK3b6TEE6Uj/jfSk6wzYyemh3+I0sHirKSetjQwn5cZktFw==",
  92. "license": "MIT",
  93. "dependencies": {
  94. "@noble/hashes": "^1.1.5"
  95. }
  96. },
  97. "node_modules/@pkgjs/parseargs": {
  98. "version": "0.11.0",
  99. "resolved": "https://registry.npmmirror.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
  100. "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
  101. "license": "MIT",
  102. "optional": true,
  103. "engines": {
  104. "node": ">=14"
  105. }
  106. },
  107. "node_modules/@tootallnate/once": {
  108. "version": "1.1.2",
  109. "resolved": "https://registry.npmmirror.com/@tootallnate/once/-/once-1.1.2.tgz",
  110. "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==",
  111. "license": "MIT",
  112. "optional": true,
  113. "engines": {
  114. "node": ">= 6"
  115. }
  116. },
  117. "node_modules/abbrev": {
  118. "version": "1.1.1",
  119. "resolved": "https://registry.npmmirror.com/abbrev/-/abbrev-1.1.1.tgz",
  120. "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==",
  121. "license": "ISC",
  122. "optional": true
  123. },
  124. "node_modules/abort-controller": {
  125. "version": "3.0.0",
  126. "resolved": "https://registry.npmmirror.com/abort-controller/-/abort-controller-3.0.0.tgz",
  127. "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==",
  128. "license": "MIT",
  129. "dependencies": {
  130. "event-target-shim": "^5.0.0"
  131. },
  132. "engines": {
  133. "node": ">=6.5"
  134. }
  135. },
  136. "node_modules/agent-base": {
  137. "version": "6.0.2",
  138. "resolved": "https://registry.npmmirror.com/agent-base/-/agent-base-6.0.2.tgz",
  139. "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
  140. "license": "MIT",
  141. "optional": true,
  142. "dependencies": {
  143. "debug": "4"
  144. },
  145. "engines": {
  146. "node": ">= 6.0.0"
  147. }
  148. },
  149. "node_modules/agentkeepalive": {
  150. "version": "4.6.0",
  151. "resolved": "https://registry.npmmirror.com/agentkeepalive/-/agentkeepalive-4.6.0.tgz",
  152. "integrity": "sha512-kja8j7PjmncONqaTsB8fQ+wE2mSU2DJ9D4XKoJ5PFWIdRMa6SLSN1ff4mOr4jCbfRSsxR4keIiySJU0N9T5hIQ==",
  153. "license": "MIT",
  154. "optional": true,
  155. "dependencies": {
  156. "humanize-ms": "^1.2.1"
  157. },
  158. "engines": {
  159. "node": ">= 8.0.0"
  160. }
  161. },
  162. "node_modules/aggregate-error": {
  163. "version": "3.1.0",
  164. "resolved": "https://registry.npmmirror.com/aggregate-error/-/aggregate-error-3.1.0.tgz",
  165. "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==",
  166. "license": "MIT",
  167. "optional": true,
  168. "dependencies": {
  169. "clean-stack": "^2.0.0",
  170. "indent-string": "^4.0.0"
  171. },
  172. "engines": {
  173. "node": ">=8"
  174. }
  175. },
  176. "node_modules/ansi-regex": {
  177. "version": "6.2.2",
  178. "resolved": "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-6.2.2.tgz",
  179. "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==",
  180. "license": "MIT",
  181. "engines": {
  182. "node": ">=12"
  183. },
  184. "funding": {
  185. "url": "https://github.com/chalk/ansi-regex?sponsor=1"
  186. }
  187. },
  188. "node_modules/ansi-styles": {
  189. "version": "6.2.3",
  190. "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-6.2.3.tgz",
  191. "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==",
  192. "license": "MIT",
  193. "engines": {
  194. "node": ">=12"
  195. },
  196. "funding": {
  197. "url": "https://github.com/chalk/ansi-styles?sponsor=1"
  198. }
  199. },
  200. "node_modules/aproba": {
  201. "version": "2.1.0",
  202. "resolved": "https://registry.npmmirror.com/aproba/-/aproba-2.1.0.tgz",
  203. "integrity": "sha512-tLIEcj5GuR2RSTnxNKdkK0dJ/GrC7P38sUkiDmDuHfsHmbagTFAxDVIBltoklXEVIQ/f14IL8IMJ5pn9Hez1Ew==",
  204. "license": "ISC",
  205. "optional": true
  206. },
  207. "node_modules/archiver": {
  208. "version": "7.0.1",
  209. "resolved": "https://registry.npmmirror.com/archiver/-/archiver-7.0.1.tgz",
  210. "integrity": "sha512-ZcbTaIqJOfCc03QwD468Unz/5Ir8ATtvAHsK+FdXbDIbGfihqh9mrvdcYunQzqn4HrvWWaFyaxJhGZagaJJpPQ==",
  211. "license": "MIT",
  212. "dependencies": {
  213. "archiver-utils": "^5.0.2",
  214. "async": "^3.2.4",
  215. "buffer-crc32": "^1.0.0",
  216. "readable-stream": "^4.0.0",
  217. "readdir-glob": "^1.1.2",
  218. "tar-stream": "^3.0.0",
  219. "zip-stream": "^6.0.1"
  220. },
  221. "engines": {
  222. "node": ">= 14"
  223. }
  224. },
  225. "node_modules/archiver-utils": {
  226. "version": "5.0.2",
  227. "resolved": "https://registry.npmmirror.com/archiver-utils/-/archiver-utils-5.0.2.tgz",
  228. "integrity": "sha512-wuLJMmIBQYCsGZgYLTy5FIB2pF6Lfb6cXMSF8Qywwk3t20zWnAi7zLcQFdKQmIB8wyZpY5ER38x08GbwtR2cLA==",
  229. "license": "MIT",
  230. "dependencies": {
  231. "glob": "^10.0.0",
  232. "graceful-fs": "^4.2.0",
  233. "is-stream": "^2.0.1",
  234. "lazystream": "^1.0.0",
  235. "lodash": "^4.17.15",
  236. "normalize-path": "^3.0.0",
  237. "readable-stream": "^4.0.0"
  238. },
  239. "engines": {
  240. "node": ">= 14"
  241. }
  242. },
  243. "node_modules/are-we-there-yet": {
  244. "version": "3.0.1",
  245. "resolved": "https://registry.npmmirror.com/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz",
  246. "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==",
  247. "deprecated": "This package is no longer supported.",
  248. "license": "ISC",
  249. "optional": true,
  250. "dependencies": {
  251. "delegates": "^1.0.0",
  252. "readable-stream": "^3.6.0"
  253. },
  254. "engines": {
  255. "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
  256. }
  257. },
  258. "node_modules/are-we-there-yet/node_modules/readable-stream": {
  259. "version": "3.6.2",
  260. "resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz",
  261. "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
  262. "license": "MIT",
  263. "optional": true,
  264. "dependencies": {
  265. "inherits": "^2.0.3",
  266. "string_decoder": "^1.1.1",
  267. "util-deprecate": "^1.0.1"
  268. },
  269. "engines": {
  270. "node": ">= 6"
  271. }
  272. },
  273. "node_modules/asap": {
  274. "version": "2.0.6",
  275. "resolved": "https://registry.npmmirror.com/asap/-/asap-2.0.6.tgz",
  276. "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==",
  277. "license": "MIT"
  278. },
  279. "node_modules/async": {
  280. "version": "3.2.6",
  281. "resolved": "https://registry.npmmirror.com/async/-/async-3.2.6.tgz",
  282. "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==",
  283. "license": "MIT"
  284. },
  285. "node_modules/b4a": {
  286. "version": "1.7.3",
  287. "resolved": "https://registry.npmmirror.com/b4a/-/b4a-1.7.3.tgz",
  288. "integrity": "sha512-5Q2mfq2WfGuFp3uS//0s6baOJLMoVduPYVeNmDYxu5OUA1/cBfvr2RIS7vi62LdNj/urk1hfmj867I3qt6uZ7Q==",
  289. "license": "Apache-2.0",
  290. "peerDependencies": {
  291. "react-native-b4a": "*"
  292. },
  293. "peerDependenciesMeta": {
  294. "react-native-b4a": {
  295. "optional": true
  296. }
  297. }
  298. },
  299. "node_modules/balanced-match": {
  300. "version": "1.0.2",
  301. "resolved": "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz",
  302. "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
  303. "license": "MIT"
  304. },
  305. "node_modules/bare-events": {
  306. "version": "2.8.2",
  307. "resolved": "https://registry.npmmirror.com/bare-events/-/bare-events-2.8.2.tgz",
  308. "integrity": "sha512-riJjyv1/mHLIPX4RwiK+oW9/4c3TEUeORHKefKAKnZ5kyslbN+HXowtbaVEqt4IMUB7OXlfixcs6gsFeo/jhiQ==",
  309. "license": "Apache-2.0",
  310. "peerDependencies": {
  311. "bare-abort-controller": "*"
  312. },
  313. "peerDependenciesMeta": {
  314. "bare-abort-controller": {
  315. "optional": true
  316. }
  317. }
  318. },
  319. "node_modules/base64-js": {
  320. "version": "1.5.1",
  321. "resolved": "https://registry.npmmirror.com/base64-js/-/base64-js-1.5.1.tgz",
  322. "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
  323. "funding": [
  324. {
  325. "type": "github",
  326. "url": "https://github.com/sponsors/feross"
  327. },
  328. {
  329. "type": "patreon",
  330. "url": "https://www.patreon.com/feross"
  331. },
  332. {
  333. "type": "consulting",
  334. "url": "https://feross.org/support"
  335. }
  336. ],
  337. "license": "MIT"
  338. },
  339. "node_modules/better-sqlite3": {
  340. "version": "12.5.0",
  341. "resolved": "https://registry.npmmirror.com/better-sqlite3/-/better-sqlite3-12.5.0.tgz",
  342. "integrity": "sha512-WwCZ/5Diz7rsF29o27o0Gcc1Du+l7Zsv7SYtVPG0X3G/uUI1LqdxrQI7c9Hs2FWpqXXERjW9hp6g3/tH7DlVKg==",
  343. "hasInstallScript": true,
  344. "license": "MIT",
  345. "dependencies": {
  346. "bindings": "^1.5.0",
  347. "prebuild-install": "^7.1.1"
  348. },
  349. "engines": {
  350. "node": "20.x || 22.x || 23.x || 24.x || 25.x"
  351. }
  352. },
  353. "node_modules/bindings": {
  354. "version": "1.5.0",
  355. "resolved": "https://registry.npmmirror.com/bindings/-/bindings-1.5.0.tgz",
  356. "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==",
  357. "license": "MIT",
  358. "dependencies": {
  359. "file-uri-to-path": "1.0.0"
  360. }
  361. },
  362. "node_modules/bl": {
  363. "version": "4.1.0",
  364. "resolved": "https://registry.npmmirror.com/bl/-/bl-4.1.0.tgz",
  365. "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==",
  366. "license": "MIT",
  367. "dependencies": {
  368. "buffer": "^5.5.0",
  369. "inherits": "^2.0.4",
  370. "readable-stream": "^3.4.0"
  371. }
  372. },
  373. "node_modules/bl/node_modules/buffer": {
  374. "version": "5.7.1",
  375. "resolved": "https://registry.npmmirror.com/buffer/-/buffer-5.7.1.tgz",
  376. "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
  377. "funding": [
  378. {
  379. "type": "github",
  380. "url": "https://github.com/sponsors/feross"
  381. },
  382. {
  383. "type": "patreon",
  384. "url": "https://www.patreon.com/feross"
  385. },
  386. {
  387. "type": "consulting",
  388. "url": "https://feross.org/support"
  389. }
  390. ],
  391. "license": "MIT",
  392. "dependencies": {
  393. "base64-js": "^1.3.1",
  394. "ieee754": "^1.1.13"
  395. }
  396. },
  397. "node_modules/bl/node_modules/readable-stream": {
  398. "version": "3.6.2",
  399. "resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz",
  400. "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
  401. "license": "MIT",
  402. "dependencies": {
  403. "inherits": "^2.0.3",
  404. "string_decoder": "^1.1.1",
  405. "util-deprecate": "^1.0.1"
  406. },
  407. "engines": {
  408. "node": ">= 6"
  409. }
  410. },
  411. "node_modules/bluebird": {
  412. "version": "3.7.2",
  413. "resolved": "https://registry.npmmirror.com/bluebird/-/bluebird-3.7.2.tgz",
  414. "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==",
  415. "license": "MIT"
  416. },
  417. "node_modules/brace-expansion": {
  418. "version": "2.0.2",
  419. "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.0.2.tgz",
  420. "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
  421. "license": "MIT",
  422. "dependencies": {
  423. "balanced-match": "^1.0.0"
  424. }
  425. },
  426. "node_modules/buffer": {
  427. "version": "6.0.3",
  428. "resolved": "https://registry.npmmirror.com/buffer/-/buffer-6.0.3.tgz",
  429. "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
  430. "funding": [
  431. {
  432. "type": "github",
  433. "url": "https://github.com/sponsors/feross"
  434. },
  435. {
  436. "type": "patreon",
  437. "url": "https://www.patreon.com/feross"
  438. },
  439. {
  440. "type": "consulting",
  441. "url": "https://feross.org/support"
  442. }
  443. ],
  444. "license": "MIT",
  445. "dependencies": {
  446. "base64-js": "^1.3.1",
  447. "ieee754": "^1.2.1"
  448. }
  449. },
  450. "node_modules/buffer-crc32": {
  451. "version": "1.0.0",
  452. "resolved": "https://registry.npmmirror.com/buffer-crc32/-/buffer-crc32-1.0.0.tgz",
  453. "integrity": "sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==",
  454. "license": "MIT",
  455. "engines": {
  456. "node": ">=8.0.0"
  457. }
  458. },
  459. "node_modules/cacache": {
  460. "version": "15.3.0",
  461. "resolved": "https://registry.npmmirror.com/cacache/-/cacache-15.3.0.tgz",
  462. "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==",
  463. "license": "ISC",
  464. "optional": true,
  465. "dependencies": {
  466. "@npmcli/fs": "^1.0.0",
  467. "@npmcli/move-file": "^1.0.1",
  468. "chownr": "^2.0.0",
  469. "fs-minipass": "^2.0.0",
  470. "glob": "^7.1.4",
  471. "infer-owner": "^1.0.4",
  472. "lru-cache": "^6.0.0",
  473. "minipass": "^3.1.1",
  474. "minipass-collect": "^1.0.2",
  475. "minipass-flush": "^1.0.5",
  476. "minipass-pipeline": "^1.2.2",
  477. "mkdirp": "^1.0.3",
  478. "p-map": "^4.0.0",
  479. "promise-inflight": "^1.0.1",
  480. "rimraf": "^3.0.2",
  481. "ssri": "^8.0.1",
  482. "tar": "^6.0.2",
  483. "unique-filename": "^1.1.1"
  484. },
  485. "engines": {
  486. "node": ">= 10"
  487. }
  488. },
  489. "node_modules/cacache/node_modules/brace-expansion": {
  490. "version": "1.1.12",
  491. "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.12.tgz",
  492. "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
  493. "license": "MIT",
  494. "optional": true,
  495. "dependencies": {
  496. "balanced-match": "^1.0.0",
  497. "concat-map": "0.0.1"
  498. }
  499. },
  500. "node_modules/cacache/node_modules/glob": {
  501. "version": "7.2.3",
  502. "resolved": "https://registry.npmmirror.com/glob/-/glob-7.2.3.tgz",
  503. "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
  504. "deprecated": "Glob versions prior to v9 are no longer supported",
  505. "license": "ISC",
  506. "optional": true,
  507. "dependencies": {
  508. "fs.realpath": "^1.0.0",
  509. "inflight": "^1.0.4",
  510. "inherits": "2",
  511. "minimatch": "^3.1.1",
  512. "once": "^1.3.0",
  513. "path-is-absolute": "^1.0.0"
  514. },
  515. "engines": {
  516. "node": "*"
  517. },
  518. "funding": {
  519. "url": "https://github.com/sponsors/isaacs"
  520. }
  521. },
  522. "node_modules/cacache/node_modules/lru-cache": {
  523. "version": "6.0.0",
  524. "resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-6.0.0.tgz",
  525. "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
  526. "license": "ISC",
  527. "optional": true,
  528. "dependencies": {
  529. "yallist": "^4.0.0"
  530. },
  531. "engines": {
  532. "node": ">=10"
  533. }
  534. },
  535. "node_modules/cacache/node_modules/minimatch": {
  536. "version": "3.1.2",
  537. "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz",
  538. "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
  539. "license": "ISC",
  540. "optional": true,
  541. "dependencies": {
  542. "brace-expansion": "^1.1.7"
  543. },
  544. "engines": {
  545. "node": "*"
  546. }
  547. },
  548. "node_modules/cacache/node_modules/minipass": {
  549. "version": "3.3.6",
  550. "resolved": "https://registry.npmmirror.com/minipass/-/minipass-3.3.6.tgz",
  551. "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
  552. "license": "ISC",
  553. "optional": true,
  554. "dependencies": {
  555. "yallist": "^4.0.0"
  556. },
  557. "engines": {
  558. "node": ">=8"
  559. }
  560. },
  561. "node_modules/chownr": {
  562. "version": "2.0.0",
  563. "resolved": "https://registry.npmmirror.com/chownr/-/chownr-2.0.0.tgz",
  564. "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==",
  565. "license": "ISC",
  566. "engines": {
  567. "node": ">=10"
  568. }
  569. },
  570. "node_modules/clean-stack": {
  571. "version": "2.2.0",
  572. "resolved": "https://registry.npmmirror.com/clean-stack/-/clean-stack-2.2.0.tgz",
  573. "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==",
  574. "license": "MIT",
  575. "optional": true,
  576. "engines": {
  577. "node": ">=6"
  578. }
  579. },
  580. "node_modules/color": {
  581. "version": "4.2.3",
  582. "resolved": "https://registry.npmmirror.com/color/-/color-4.2.3.tgz",
  583. "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==",
  584. "license": "MIT",
  585. "dependencies": {
  586. "color-convert": "^2.0.1",
  587. "color-string": "^1.9.0"
  588. },
  589. "engines": {
  590. "node": ">=12.5.0"
  591. }
  592. },
  593. "node_modules/color-convert": {
  594. "version": "2.0.1",
  595. "resolved": "https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz",
  596. "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
  597. "license": "MIT",
  598. "dependencies": {
  599. "color-name": "~1.1.4"
  600. },
  601. "engines": {
  602. "node": ">=7.0.0"
  603. }
  604. },
  605. "node_modules/color-name": {
  606. "version": "1.1.4",
  607. "resolved": "https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz",
  608. "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
  609. "license": "MIT"
  610. },
  611. "node_modules/color-string": {
  612. "version": "1.9.1",
  613. "resolved": "https://registry.npmmirror.com/color-string/-/color-string-1.9.1.tgz",
  614. "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==",
  615. "license": "MIT",
  616. "dependencies": {
  617. "color-name": "^1.0.0",
  618. "simple-swizzle": "^0.2.2"
  619. }
  620. },
  621. "node_modules/color-support": {
  622. "version": "1.1.3",
  623. "resolved": "https://registry.npmmirror.com/color-support/-/color-support-1.1.3.tgz",
  624. "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==",
  625. "license": "ISC",
  626. "optional": true,
  627. "bin": {
  628. "color-support": "bin.js"
  629. }
  630. },
  631. "node_modules/compress-commons": {
  632. "version": "6.0.2",
  633. "resolved": "https://registry.npmmirror.com/compress-commons/-/compress-commons-6.0.2.tgz",
  634. "integrity": "sha512-6FqVXeETqWPoGcfzrXb37E50NP0LXT8kAMu5ooZayhWWdgEY4lBEEcbQNXtkuKQsGduxiIcI4gOTsxTmuq/bSg==",
  635. "license": "MIT",
  636. "dependencies": {
  637. "crc-32": "^1.2.0",
  638. "crc32-stream": "^6.0.0",
  639. "is-stream": "^2.0.1",
  640. "normalize-path": "^3.0.0",
  641. "readable-stream": "^4.0.0"
  642. },
  643. "engines": {
  644. "node": ">= 14"
  645. }
  646. },
  647. "node_modules/concat-map": {
  648. "version": "0.0.1",
  649. "resolved": "https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz",
  650. "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
  651. "license": "MIT",
  652. "optional": true
  653. },
  654. "node_modules/console-control-strings": {
  655. "version": "1.1.0",
  656. "resolved": "https://registry.npmmirror.com/console-control-strings/-/console-control-strings-1.1.0.tgz",
  657. "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==",
  658. "license": "ISC",
  659. "optional": true
  660. },
  661. "node_modules/core-util-is": {
  662. "version": "1.0.3",
  663. "resolved": "https://registry.npmmirror.com/core-util-is/-/core-util-is-1.0.3.tgz",
  664. "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
  665. "license": "MIT"
  666. },
  667. "node_modules/crc-32": {
  668. "version": "1.2.2",
  669. "resolved": "https://registry.npmmirror.com/crc-32/-/crc-32-1.2.2.tgz",
  670. "integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==",
  671. "license": "Apache-2.0",
  672. "bin": {
  673. "crc32": "bin/crc32.njs"
  674. },
  675. "engines": {
  676. "node": ">=0.8"
  677. }
  678. },
  679. "node_modules/crc32-stream": {
  680. "version": "6.0.0",
  681. "resolved": "https://registry.npmmirror.com/crc32-stream/-/crc32-stream-6.0.0.tgz",
  682. "integrity": "sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g==",
  683. "license": "MIT",
  684. "dependencies": {
  685. "crc-32": "^1.2.0",
  686. "readable-stream": "^4.0.0"
  687. },
  688. "engines": {
  689. "node": ">= 14"
  690. }
  691. },
  692. "node_modules/cross-spawn": {
  693. "version": "7.0.6",
  694. "resolved": "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.6.tgz",
  695. "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
  696. "license": "MIT",
  697. "dependencies": {
  698. "path-key": "^3.1.0",
  699. "shebang-command": "^2.0.0",
  700. "which": "^2.0.1"
  701. },
  702. "engines": {
  703. "node": ">= 8"
  704. }
  705. },
  706. "node_modules/debug": {
  707. "version": "4.4.3",
  708. "resolved": "https://registry.npmmirror.com/debug/-/debug-4.4.3.tgz",
  709. "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
  710. "license": "MIT",
  711. "optional": true,
  712. "dependencies": {
  713. "ms": "^2.1.3"
  714. },
  715. "engines": {
  716. "node": ">=6.0"
  717. },
  718. "peerDependenciesMeta": {
  719. "supports-color": {
  720. "optional": true
  721. }
  722. }
  723. },
  724. "node_modules/decompress-response": {
  725. "version": "6.0.0",
  726. "resolved": "https://registry.npmmirror.com/decompress-response/-/decompress-response-6.0.0.tgz",
  727. "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==",
  728. "license": "MIT",
  729. "dependencies": {
  730. "mimic-response": "^3.1.0"
  731. },
  732. "engines": {
  733. "node": ">=10"
  734. },
  735. "funding": {
  736. "url": "https://github.com/sponsors/sindresorhus"
  737. }
  738. },
  739. "node_modules/deep-extend": {
  740. "version": "0.6.0",
  741. "resolved": "https://registry.npmmirror.com/deep-extend/-/deep-extend-0.6.0.tgz",
  742. "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==",
  743. "license": "MIT",
  744. "engines": {
  745. "node": ">=4.0.0"
  746. }
  747. },
  748. "node_modules/delegates": {
  749. "version": "1.0.0",
  750. "resolved": "https://registry.npmmirror.com/delegates/-/delegates-1.0.0.tgz",
  751. "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==",
  752. "license": "MIT",
  753. "optional": true
  754. },
  755. "node_modules/detect-libc": {
  756. "version": "2.1.2",
  757. "resolved": "https://registry.npmmirror.com/detect-libc/-/detect-libc-2.1.2.tgz",
  758. "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
  759. "license": "Apache-2.0",
  760. "engines": {
  761. "node": ">=8"
  762. }
  763. },
  764. "node_modules/dezalgo": {
  765. "version": "1.0.4",
  766. "resolved": "https://registry.npmmirror.com/dezalgo/-/dezalgo-1.0.4.tgz",
  767. "integrity": "sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==",
  768. "license": "ISC",
  769. "dependencies": {
  770. "asap": "^2.0.0",
  771. "wrappy": "1"
  772. }
  773. },
  774. "node_modules/duplexer2": {
  775. "version": "0.1.4",
  776. "resolved": "https://registry.npmmirror.com/duplexer2/-/duplexer2-0.1.4.tgz",
  777. "integrity": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==",
  778. "license": "BSD-3-Clause",
  779. "dependencies": {
  780. "readable-stream": "^2.0.2"
  781. }
  782. },
  783. "node_modules/duplexer2/node_modules/readable-stream": {
  784. "version": "2.3.8",
  785. "resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-2.3.8.tgz",
  786. "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
  787. "license": "MIT",
  788. "dependencies": {
  789. "core-util-is": "~1.0.0",
  790. "inherits": "~2.0.3",
  791. "isarray": "~1.0.0",
  792. "process-nextick-args": "~2.0.0",
  793. "safe-buffer": "~5.1.1",
  794. "string_decoder": "~1.1.1",
  795. "util-deprecate": "~1.0.1"
  796. }
  797. },
  798. "node_modules/duplexer2/node_modules/safe-buffer": {
  799. "version": "5.1.2",
  800. "resolved": "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.1.2.tgz",
  801. "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
  802. "license": "MIT"
  803. },
  804. "node_modules/duplexer2/node_modules/string_decoder": {
  805. "version": "1.1.1",
  806. "resolved": "https://registry.npmmirror.com/string_decoder/-/string_decoder-1.1.1.tgz",
  807. "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
  808. "license": "MIT",
  809. "dependencies": {
  810. "safe-buffer": "~5.1.0"
  811. }
  812. },
  813. "node_modules/eastasianwidth": {
  814. "version": "0.2.0",
  815. "resolved": "https://registry.npmmirror.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
  816. "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
  817. "license": "MIT"
  818. },
  819. "node_modules/emoji-regex": {
  820. "version": "9.2.2",
  821. "resolved": "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-9.2.2.tgz",
  822. "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
  823. "license": "MIT"
  824. },
  825. "node_modules/encoding": {
  826. "version": "0.1.13",
  827. "resolved": "https://registry.npmmirror.com/encoding/-/encoding-0.1.13.tgz",
  828. "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==",
  829. "license": "MIT",
  830. "optional": true,
  831. "dependencies": {
  832. "iconv-lite": "^0.6.2"
  833. }
  834. },
  835. "node_modules/end-of-stream": {
  836. "version": "1.4.5",
  837. "resolved": "https://registry.npmmirror.com/end-of-stream/-/end-of-stream-1.4.5.tgz",
  838. "integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==",
  839. "license": "MIT",
  840. "dependencies": {
  841. "once": "^1.4.0"
  842. }
  843. },
  844. "node_modules/env-paths": {
  845. "version": "2.2.1",
  846. "resolved": "https://registry.npmmirror.com/env-paths/-/env-paths-2.2.1.tgz",
  847. "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==",
  848. "license": "MIT",
  849. "optional": true,
  850. "engines": {
  851. "node": ">=6"
  852. }
  853. },
  854. "node_modules/err-code": {
  855. "version": "2.0.3",
  856. "resolved": "https://registry.npmmirror.com/err-code/-/err-code-2.0.3.tgz",
  857. "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==",
  858. "license": "MIT",
  859. "optional": true
  860. },
  861. "node_modules/event-target-shim": {
  862. "version": "5.0.1",
  863. "resolved": "https://registry.npmmirror.com/event-target-shim/-/event-target-shim-5.0.1.tgz",
  864. "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==",
  865. "license": "MIT",
  866. "engines": {
  867. "node": ">=6"
  868. }
  869. },
  870. "node_modules/events": {
  871. "version": "3.3.0",
  872. "resolved": "https://registry.npmmirror.com/events/-/events-3.3.0.tgz",
  873. "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==",
  874. "license": "MIT",
  875. "engines": {
  876. "node": ">=0.8.x"
  877. }
  878. },
  879. "node_modules/events-universal": {
  880. "version": "1.0.1",
  881. "resolved": "https://registry.npmmirror.com/events-universal/-/events-universal-1.0.1.tgz",
  882. "integrity": "sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw==",
  883. "license": "Apache-2.0",
  884. "dependencies": {
  885. "bare-events": "^2.7.0"
  886. }
  887. },
  888. "node_modules/expand-template": {
  889. "version": "2.0.3",
  890. "resolved": "https://registry.npmmirror.com/expand-template/-/expand-template-2.0.3.tgz",
  891. "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==",
  892. "license": "(MIT OR WTFPL)",
  893. "engines": {
  894. "node": ">=6"
  895. }
  896. },
  897. "node_modules/fast-fifo": {
  898. "version": "1.3.2",
  899. "resolved": "https://registry.npmmirror.com/fast-fifo/-/fast-fifo-1.3.2.tgz",
  900. "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==",
  901. "license": "MIT"
  902. },
  903. "node_modules/file-uri-to-path": {
  904. "version": "1.0.0",
  905. "resolved": "https://registry.npmmirror.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz",
  906. "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==",
  907. "license": "MIT"
  908. },
  909. "node_modules/foreground-child": {
  910. "version": "3.3.1",
  911. "resolved": "https://registry.npmmirror.com/foreground-child/-/foreground-child-3.3.1.tgz",
  912. "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==",
  913. "license": "ISC",
  914. "dependencies": {
  915. "cross-spawn": "^7.0.6",
  916. "signal-exit": "^4.0.1"
  917. },
  918. "engines": {
  919. "node": ">=14"
  920. },
  921. "funding": {
  922. "url": "https://github.com/sponsors/isaacs"
  923. }
  924. },
  925. "node_modules/formidable": {
  926. "version": "3.5.4",
  927. "resolved": "https://registry.npmmirror.com/formidable/-/formidable-3.5.4.tgz",
  928. "integrity": "sha512-YikH+7CUTOtP44ZTnUhR7Ic2UASBPOqmaRkRKxRbywPTe5VxF7RRCck4af9wutiZ/QKM5nME9Bie2fFaPz5Gug==",
  929. "license": "MIT",
  930. "dependencies": {
  931. "@paralleldrive/cuid2": "^2.2.2",
  932. "dezalgo": "^1.0.4",
  933. "once": "^1.4.0"
  934. },
  935. "engines": {
  936. "node": ">=14.0.0"
  937. },
  938. "funding": {
  939. "url": "https://ko-fi.com/tunnckoCore/commissions"
  940. }
  941. },
  942. "node_modules/fs-constants": {
  943. "version": "1.0.0",
  944. "resolved": "https://registry.npmmirror.com/fs-constants/-/fs-constants-1.0.0.tgz",
  945. "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==",
  946. "license": "MIT"
  947. },
  948. "node_modules/fs-extra": {
  949. "version": "11.3.2",
  950. "resolved": "https://registry.npmmirror.com/fs-extra/-/fs-extra-11.3.2.tgz",
  951. "integrity": "sha512-Xr9F6z6up6Ws+NjzMCZc6WXg2YFRlrLP9NQDO3VQrWrfiojdhS56TzueT88ze0uBdCTwEIhQ3ptnmKeWGFAe0A==",
  952. "license": "MIT",
  953. "dependencies": {
  954. "graceful-fs": "^4.2.0",
  955. "jsonfile": "^6.0.1",
  956. "universalify": "^2.0.0"
  957. },
  958. "engines": {
  959. "node": ">=14.14"
  960. }
  961. },
  962. "node_modules/fs-minipass": {
  963. "version": "2.1.0",
  964. "resolved": "https://registry.npmmirror.com/fs-minipass/-/fs-minipass-2.1.0.tgz",
  965. "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
  966. "license": "ISC",
  967. "dependencies": {
  968. "minipass": "^3.0.0"
  969. },
  970. "engines": {
  971. "node": ">= 8"
  972. }
  973. },
  974. "node_modules/fs-minipass/node_modules/minipass": {
  975. "version": "3.3.6",
  976. "resolved": "https://registry.npmmirror.com/minipass/-/minipass-3.3.6.tgz",
  977. "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
  978. "license": "ISC",
  979. "dependencies": {
  980. "yallist": "^4.0.0"
  981. },
  982. "engines": {
  983. "node": ">=8"
  984. }
  985. },
  986. "node_modules/fs.realpath": {
  987. "version": "1.0.0",
  988. "resolved": "https://registry.npmmirror.com/fs.realpath/-/fs.realpath-1.0.0.tgz",
  989. "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
  990. "license": "ISC",
  991. "optional": true
  992. },
  993. "node_modules/gauge": {
  994. "version": "4.0.4",
  995. "resolved": "https://registry.npmmirror.com/gauge/-/gauge-4.0.4.tgz",
  996. "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==",
  997. "deprecated": "This package is no longer supported.",
  998. "license": "ISC",
  999. "optional": true,
  1000. "dependencies": {
  1001. "aproba": "^1.0.3 || ^2.0.0",
  1002. "color-support": "^1.1.3",
  1003. "console-control-strings": "^1.1.0",
  1004. "has-unicode": "^2.0.1",
  1005. "signal-exit": "^3.0.7",
  1006. "string-width": "^4.2.3",
  1007. "strip-ansi": "^6.0.1",
  1008. "wide-align": "^1.1.5"
  1009. },
  1010. "engines": {
  1011. "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
  1012. }
  1013. },
  1014. "node_modules/gauge/node_modules/ansi-regex": {
  1015. "version": "5.0.1",
  1016. "resolved": "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz",
  1017. "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
  1018. "license": "MIT",
  1019. "optional": true,
  1020. "engines": {
  1021. "node": ">=8"
  1022. }
  1023. },
  1024. "node_modules/gauge/node_modules/emoji-regex": {
  1025. "version": "8.0.0",
  1026. "resolved": "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz",
  1027. "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
  1028. "license": "MIT",
  1029. "optional": true
  1030. },
  1031. "node_modules/gauge/node_modules/signal-exit": {
  1032. "version": "3.0.7",
  1033. "resolved": "https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz",
  1034. "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
  1035. "license": "ISC",
  1036. "optional": true
  1037. },
  1038. "node_modules/gauge/node_modules/string-width": {
  1039. "version": "4.2.3",
  1040. "resolved": "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz",
  1041. "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
  1042. "license": "MIT",
  1043. "optional": true,
  1044. "dependencies": {
  1045. "emoji-regex": "^8.0.0",
  1046. "is-fullwidth-code-point": "^3.0.0",
  1047. "strip-ansi": "^6.0.1"
  1048. },
  1049. "engines": {
  1050. "node": ">=8"
  1051. }
  1052. },
  1053. "node_modules/gauge/node_modules/strip-ansi": {
  1054. "version": "6.0.1",
  1055. "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz",
  1056. "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
  1057. "license": "MIT",
  1058. "optional": true,
  1059. "dependencies": {
  1060. "ansi-regex": "^5.0.1"
  1061. },
  1062. "engines": {
  1063. "node": ">=8"
  1064. }
  1065. },
  1066. "node_modules/github-from-package": {
  1067. "version": "0.0.0",
  1068. "resolved": "https://registry.npmmirror.com/github-from-package/-/github-from-package-0.0.0.tgz",
  1069. "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==",
  1070. "license": "MIT"
  1071. },
  1072. "node_modules/glob": {
  1073. "version": "10.5.0",
  1074. "resolved": "https://registry.npmmirror.com/glob/-/glob-10.5.0.tgz",
  1075. "integrity": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==",
  1076. "license": "ISC",
  1077. "dependencies": {
  1078. "foreground-child": "^3.1.0",
  1079. "jackspeak": "^3.1.2",
  1080. "minimatch": "^9.0.4",
  1081. "minipass": "^7.1.2",
  1082. "package-json-from-dist": "^1.0.0",
  1083. "path-scurry": "^1.11.1"
  1084. },
  1085. "bin": {
  1086. "glob": "dist/esm/bin.mjs"
  1087. },
  1088. "funding": {
  1089. "url": "https://github.com/sponsors/isaacs"
  1090. }
  1091. },
  1092. "node_modules/graceful-fs": {
  1093. "version": "4.2.11",
  1094. "resolved": "https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.11.tgz",
  1095. "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
  1096. "license": "ISC"
  1097. },
  1098. "node_modules/has-unicode": {
  1099. "version": "2.0.1",
  1100. "resolved": "https://registry.npmmirror.com/has-unicode/-/has-unicode-2.0.1.tgz",
  1101. "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==",
  1102. "license": "ISC",
  1103. "optional": true
  1104. },
  1105. "node_modules/http-cache-semantics": {
  1106. "version": "4.2.0",
  1107. "resolved": "https://registry.npmmirror.com/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz",
  1108. "integrity": "sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==",
  1109. "license": "BSD-2-Clause",
  1110. "optional": true
  1111. },
  1112. "node_modules/http-proxy-agent": {
  1113. "version": "4.0.1",
  1114. "resolved": "https://registry.npmmirror.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz",
  1115. "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==",
  1116. "license": "MIT",
  1117. "optional": true,
  1118. "dependencies": {
  1119. "@tootallnate/once": "1",
  1120. "agent-base": "6",
  1121. "debug": "4"
  1122. },
  1123. "engines": {
  1124. "node": ">= 6"
  1125. }
  1126. },
  1127. "node_modules/https-proxy-agent": {
  1128. "version": "5.0.1",
  1129. "resolved": "https://registry.npmmirror.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
  1130. "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
  1131. "license": "MIT",
  1132. "optional": true,
  1133. "dependencies": {
  1134. "agent-base": "6",
  1135. "debug": "4"
  1136. },
  1137. "engines": {
  1138. "node": ">= 6"
  1139. }
  1140. },
  1141. "node_modules/humanize-ms": {
  1142. "version": "1.2.1",
  1143. "resolved": "https://registry.npmmirror.com/humanize-ms/-/humanize-ms-1.2.1.tgz",
  1144. "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==",
  1145. "license": "MIT",
  1146. "optional": true,
  1147. "dependencies": {
  1148. "ms": "^2.0.0"
  1149. }
  1150. },
  1151. "node_modules/iconv-lite": {
  1152. "version": "0.6.3",
  1153. "resolved": "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.6.3.tgz",
  1154. "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
  1155. "license": "MIT",
  1156. "optional": true,
  1157. "dependencies": {
  1158. "safer-buffer": ">= 2.1.2 < 3.0.0"
  1159. },
  1160. "engines": {
  1161. "node": ">=0.10.0"
  1162. }
  1163. },
  1164. "node_modules/ieee754": {
  1165. "version": "1.2.1",
  1166. "resolved": "https://registry.npmmirror.com/ieee754/-/ieee754-1.2.1.tgz",
  1167. "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
  1168. "funding": [
  1169. {
  1170. "type": "github",
  1171. "url": "https://github.com/sponsors/feross"
  1172. },
  1173. {
  1174. "type": "patreon",
  1175. "url": "https://www.patreon.com/feross"
  1176. },
  1177. {
  1178. "type": "consulting",
  1179. "url": "https://feross.org/support"
  1180. }
  1181. ],
  1182. "license": "BSD-3-Clause"
  1183. },
  1184. "node_modules/imurmurhash": {
  1185. "version": "0.1.4",
  1186. "resolved": "https://registry.npmmirror.com/imurmurhash/-/imurmurhash-0.1.4.tgz",
  1187. "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
  1188. "license": "MIT",
  1189. "optional": true,
  1190. "engines": {
  1191. "node": ">=0.8.19"
  1192. }
  1193. },
  1194. "node_modules/indent-string": {
  1195. "version": "4.0.0",
  1196. "resolved": "https://registry.npmmirror.com/indent-string/-/indent-string-4.0.0.tgz",
  1197. "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==",
  1198. "license": "MIT",
  1199. "optional": true,
  1200. "engines": {
  1201. "node": ">=8"
  1202. }
  1203. },
  1204. "node_modules/infer-owner": {
  1205. "version": "1.0.4",
  1206. "resolved": "https://registry.npmmirror.com/infer-owner/-/infer-owner-1.0.4.tgz",
  1207. "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==",
  1208. "license": "ISC",
  1209. "optional": true
  1210. },
  1211. "node_modules/inflight": {
  1212. "version": "1.0.6",
  1213. "resolved": "https://registry.npmmirror.com/inflight/-/inflight-1.0.6.tgz",
  1214. "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
  1215. "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.",
  1216. "license": "ISC",
  1217. "optional": true,
  1218. "dependencies": {
  1219. "once": "^1.3.0",
  1220. "wrappy": "1"
  1221. }
  1222. },
  1223. "node_modules/inherits": {
  1224. "version": "2.0.4",
  1225. "resolved": "https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz",
  1226. "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
  1227. "license": "ISC"
  1228. },
  1229. "node_modules/ini": {
  1230. "version": "1.3.8",
  1231. "resolved": "https://registry.npmmirror.com/ini/-/ini-1.3.8.tgz",
  1232. "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
  1233. "license": "ISC"
  1234. },
  1235. "node_modules/ip-address": {
  1236. "version": "10.1.0",
  1237. "resolved": "https://registry.npmmirror.com/ip-address/-/ip-address-10.1.0.tgz",
  1238. "integrity": "sha512-XXADHxXmvT9+CRxhXg56LJovE+bmWnEWB78LB83VZTprKTmaC5QfruXocxzTZ2Kl0DNwKuBdlIhjL8LeY8Sf8Q==",
  1239. "license": "MIT",
  1240. "optional": true,
  1241. "engines": {
  1242. "node": ">= 12"
  1243. }
  1244. },
  1245. "node_modules/is-arrayish": {
  1246. "version": "0.3.4",
  1247. "resolved": "https://registry.npmmirror.com/is-arrayish/-/is-arrayish-0.3.4.tgz",
  1248. "integrity": "sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==",
  1249. "license": "MIT"
  1250. },
  1251. "node_modules/is-fullwidth-code-point": {
  1252. "version": "3.0.0",
  1253. "resolved": "https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
  1254. "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
  1255. "license": "MIT",
  1256. "engines": {
  1257. "node": ">=8"
  1258. }
  1259. },
  1260. "node_modules/is-lambda": {
  1261. "version": "1.0.1",
  1262. "resolved": "https://registry.npmmirror.com/is-lambda/-/is-lambda-1.0.1.tgz",
  1263. "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==",
  1264. "license": "MIT",
  1265. "optional": true
  1266. },
  1267. "node_modules/is-stream": {
  1268. "version": "2.0.1",
  1269. "resolved": "https://registry.npmmirror.com/is-stream/-/is-stream-2.0.1.tgz",
  1270. "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
  1271. "license": "MIT",
  1272. "engines": {
  1273. "node": ">=8"
  1274. },
  1275. "funding": {
  1276. "url": "https://github.com/sponsors/sindresorhus"
  1277. }
  1278. },
  1279. "node_modules/isarray": {
  1280. "version": "1.0.0",
  1281. "resolved": "https://registry.npmmirror.com/isarray/-/isarray-1.0.0.tgz",
  1282. "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==",
  1283. "license": "MIT"
  1284. },
  1285. "node_modules/isexe": {
  1286. "version": "2.0.0",
  1287. "resolved": "https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz",
  1288. "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
  1289. "license": "ISC"
  1290. },
  1291. "node_modules/jackspeak": {
  1292. "version": "3.4.3",
  1293. "resolved": "https://registry.npmmirror.com/jackspeak/-/jackspeak-3.4.3.tgz",
  1294. "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==",
  1295. "license": "BlueOak-1.0.0",
  1296. "dependencies": {
  1297. "@isaacs/cliui": "^8.0.2"
  1298. },
  1299. "funding": {
  1300. "url": "https://github.com/sponsors/isaacs"
  1301. },
  1302. "optionalDependencies": {
  1303. "@pkgjs/parseargs": "^0.11.0"
  1304. }
  1305. },
  1306. "node_modules/jsonfile": {
  1307. "version": "6.2.0",
  1308. "resolved": "https://registry.npmmirror.com/jsonfile/-/jsonfile-6.2.0.tgz",
  1309. "integrity": "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==",
  1310. "license": "MIT",
  1311. "dependencies": {
  1312. "universalify": "^2.0.0"
  1313. },
  1314. "optionalDependencies": {
  1315. "graceful-fs": "^4.1.6"
  1316. }
  1317. },
  1318. "node_modules/lazystream": {
  1319. "version": "1.0.1",
  1320. "resolved": "https://registry.npmmirror.com/lazystream/-/lazystream-1.0.1.tgz",
  1321. "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==",
  1322. "license": "MIT",
  1323. "dependencies": {
  1324. "readable-stream": "^2.0.5"
  1325. },
  1326. "engines": {
  1327. "node": ">= 0.6.3"
  1328. }
  1329. },
  1330. "node_modules/lazystream/node_modules/readable-stream": {
  1331. "version": "2.3.8",
  1332. "resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-2.3.8.tgz",
  1333. "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
  1334. "license": "MIT",
  1335. "dependencies": {
  1336. "core-util-is": "~1.0.0",
  1337. "inherits": "~2.0.3",
  1338. "isarray": "~1.0.0",
  1339. "process-nextick-args": "~2.0.0",
  1340. "safe-buffer": "~5.1.1",
  1341. "string_decoder": "~1.1.1",
  1342. "util-deprecate": "~1.0.1"
  1343. }
  1344. },
  1345. "node_modules/lazystream/node_modules/safe-buffer": {
  1346. "version": "5.1.2",
  1347. "resolved": "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.1.2.tgz",
  1348. "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
  1349. "license": "MIT"
  1350. },
  1351. "node_modules/lazystream/node_modules/string_decoder": {
  1352. "version": "1.1.1",
  1353. "resolved": "https://registry.npmmirror.com/string_decoder/-/string_decoder-1.1.1.tgz",
  1354. "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
  1355. "license": "MIT",
  1356. "dependencies": {
  1357. "safe-buffer": "~5.1.0"
  1358. }
  1359. },
  1360. "node_modules/lodash": {
  1361. "version": "4.17.21",
  1362. "resolved": "https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz",
  1363. "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
  1364. "license": "MIT"
  1365. },
  1366. "node_modules/lru-cache": {
  1367. "version": "10.4.3",
  1368. "resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-10.4.3.tgz",
  1369. "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
  1370. "license": "ISC"
  1371. },
  1372. "node_modules/make-fetch-happen": {
  1373. "version": "9.1.0",
  1374. "resolved": "https://registry.npmmirror.com/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz",
  1375. "integrity": "sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==",
  1376. "license": "ISC",
  1377. "optional": true,
  1378. "dependencies": {
  1379. "agentkeepalive": "^4.1.3",
  1380. "cacache": "^15.2.0",
  1381. "http-cache-semantics": "^4.1.0",
  1382. "http-proxy-agent": "^4.0.1",
  1383. "https-proxy-agent": "^5.0.0",
  1384. "is-lambda": "^1.0.1",
  1385. "lru-cache": "^6.0.0",
  1386. "minipass": "^3.1.3",
  1387. "minipass-collect": "^1.0.2",
  1388. "minipass-fetch": "^1.3.2",
  1389. "minipass-flush": "^1.0.5",
  1390. "minipass-pipeline": "^1.2.4",
  1391. "negotiator": "^0.6.2",
  1392. "promise-retry": "^2.0.1",
  1393. "socks-proxy-agent": "^6.0.0",
  1394. "ssri": "^8.0.0"
  1395. },
  1396. "engines": {
  1397. "node": ">= 10"
  1398. }
  1399. },
  1400. "node_modules/make-fetch-happen/node_modules/lru-cache": {
  1401. "version": "6.0.0",
  1402. "resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-6.0.0.tgz",
  1403. "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
  1404. "license": "ISC",
  1405. "optional": true,
  1406. "dependencies": {
  1407. "yallist": "^4.0.0"
  1408. },
  1409. "engines": {
  1410. "node": ">=10"
  1411. }
  1412. },
  1413. "node_modules/make-fetch-happen/node_modules/minipass": {
  1414. "version": "3.3.6",
  1415. "resolved": "https://registry.npmmirror.com/minipass/-/minipass-3.3.6.tgz",
  1416. "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
  1417. "license": "ISC",
  1418. "optional": true,
  1419. "dependencies": {
  1420. "yallist": "^4.0.0"
  1421. },
  1422. "engines": {
  1423. "node": ">=8"
  1424. }
  1425. },
  1426. "node_modules/mimic-response": {
  1427. "version": "3.1.0",
  1428. "resolved": "https://registry.npmmirror.com/mimic-response/-/mimic-response-3.1.0.tgz",
  1429. "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==",
  1430. "license": "MIT",
  1431. "engines": {
  1432. "node": ">=10"
  1433. },
  1434. "funding": {
  1435. "url": "https://github.com/sponsors/sindresorhus"
  1436. }
  1437. },
  1438. "node_modules/minimatch": {
  1439. "version": "9.0.5",
  1440. "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-9.0.5.tgz",
  1441. "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
  1442. "license": "ISC",
  1443. "dependencies": {
  1444. "brace-expansion": "^2.0.1"
  1445. },
  1446. "engines": {
  1447. "node": ">=16 || 14 >=14.17"
  1448. },
  1449. "funding": {
  1450. "url": "https://github.com/sponsors/isaacs"
  1451. }
  1452. },
  1453. "node_modules/minimist": {
  1454. "version": "1.2.8",
  1455. "resolved": "https://registry.npmmirror.com/minimist/-/minimist-1.2.8.tgz",
  1456. "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
  1457. "license": "MIT",
  1458. "funding": {
  1459. "url": "https://github.com/sponsors/ljharb"
  1460. }
  1461. },
  1462. "node_modules/minipass": {
  1463. "version": "7.1.2",
  1464. "resolved": "https://registry.npmmirror.com/minipass/-/minipass-7.1.2.tgz",
  1465. "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
  1466. "license": "ISC",
  1467. "engines": {
  1468. "node": ">=16 || 14 >=14.17"
  1469. }
  1470. },
  1471. "node_modules/minipass-collect": {
  1472. "version": "1.0.2",
  1473. "resolved": "https://registry.npmmirror.com/minipass-collect/-/minipass-collect-1.0.2.tgz",
  1474. "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==",
  1475. "license": "ISC",
  1476. "optional": true,
  1477. "dependencies": {
  1478. "minipass": "^3.0.0"
  1479. },
  1480. "engines": {
  1481. "node": ">= 8"
  1482. }
  1483. },
  1484. "node_modules/minipass-collect/node_modules/minipass": {
  1485. "version": "3.3.6",
  1486. "resolved": "https://registry.npmmirror.com/minipass/-/minipass-3.3.6.tgz",
  1487. "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
  1488. "license": "ISC",
  1489. "optional": true,
  1490. "dependencies": {
  1491. "yallist": "^4.0.0"
  1492. },
  1493. "engines": {
  1494. "node": ">=8"
  1495. }
  1496. },
  1497. "node_modules/minipass-fetch": {
  1498. "version": "1.4.1",
  1499. "resolved": "https://registry.npmmirror.com/minipass-fetch/-/minipass-fetch-1.4.1.tgz",
  1500. "integrity": "sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==",
  1501. "license": "MIT",
  1502. "optional": true,
  1503. "dependencies": {
  1504. "minipass": "^3.1.0",
  1505. "minipass-sized": "^1.0.3",
  1506. "minizlib": "^2.0.0"
  1507. },
  1508. "engines": {
  1509. "node": ">=8"
  1510. },
  1511. "optionalDependencies": {
  1512. "encoding": "^0.1.12"
  1513. }
  1514. },
  1515. "node_modules/minipass-fetch/node_modules/minipass": {
  1516. "version": "3.3.6",
  1517. "resolved": "https://registry.npmmirror.com/minipass/-/minipass-3.3.6.tgz",
  1518. "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
  1519. "license": "ISC",
  1520. "optional": true,
  1521. "dependencies": {
  1522. "yallist": "^4.0.0"
  1523. },
  1524. "engines": {
  1525. "node": ">=8"
  1526. }
  1527. },
  1528. "node_modules/minipass-flush": {
  1529. "version": "1.0.5",
  1530. "resolved": "https://registry.npmmirror.com/minipass-flush/-/minipass-flush-1.0.5.tgz",
  1531. "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==",
  1532. "license": "ISC",
  1533. "optional": true,
  1534. "dependencies": {
  1535. "minipass": "^3.0.0"
  1536. },
  1537. "engines": {
  1538. "node": ">= 8"
  1539. }
  1540. },
  1541. "node_modules/minipass-flush/node_modules/minipass": {
  1542. "version": "3.3.6",
  1543. "resolved": "https://registry.npmmirror.com/minipass/-/minipass-3.3.6.tgz",
  1544. "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
  1545. "license": "ISC",
  1546. "optional": true,
  1547. "dependencies": {
  1548. "yallist": "^4.0.0"
  1549. },
  1550. "engines": {
  1551. "node": ">=8"
  1552. }
  1553. },
  1554. "node_modules/minipass-pipeline": {
  1555. "version": "1.2.4",
  1556. "resolved": "https://registry.npmmirror.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz",
  1557. "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==",
  1558. "license": "ISC",
  1559. "optional": true,
  1560. "dependencies": {
  1561. "minipass": "^3.0.0"
  1562. },
  1563. "engines": {
  1564. "node": ">=8"
  1565. }
  1566. },
  1567. "node_modules/minipass-pipeline/node_modules/minipass": {
  1568. "version": "3.3.6",
  1569. "resolved": "https://registry.npmmirror.com/minipass/-/minipass-3.3.6.tgz",
  1570. "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
  1571. "license": "ISC",
  1572. "optional": true,
  1573. "dependencies": {
  1574. "yallist": "^4.0.0"
  1575. },
  1576. "engines": {
  1577. "node": ">=8"
  1578. }
  1579. },
  1580. "node_modules/minipass-sized": {
  1581. "version": "1.0.3",
  1582. "resolved": "https://registry.npmmirror.com/minipass-sized/-/minipass-sized-1.0.3.tgz",
  1583. "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==",
  1584. "license": "ISC",
  1585. "optional": true,
  1586. "dependencies": {
  1587. "minipass": "^3.0.0"
  1588. },
  1589. "engines": {
  1590. "node": ">=8"
  1591. }
  1592. },
  1593. "node_modules/minipass-sized/node_modules/minipass": {
  1594. "version": "3.3.6",
  1595. "resolved": "https://registry.npmmirror.com/minipass/-/minipass-3.3.6.tgz",
  1596. "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
  1597. "license": "ISC",
  1598. "optional": true,
  1599. "dependencies": {
  1600. "yallist": "^4.0.0"
  1601. },
  1602. "engines": {
  1603. "node": ">=8"
  1604. }
  1605. },
  1606. "node_modules/minizlib": {
  1607. "version": "2.1.2",
  1608. "resolved": "https://registry.npmmirror.com/minizlib/-/minizlib-2.1.2.tgz",
  1609. "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==",
  1610. "license": "MIT",
  1611. "dependencies": {
  1612. "minipass": "^3.0.0",
  1613. "yallist": "^4.0.0"
  1614. },
  1615. "engines": {
  1616. "node": ">= 8"
  1617. }
  1618. },
  1619. "node_modules/minizlib/node_modules/minipass": {
  1620. "version": "3.3.6",
  1621. "resolved": "https://registry.npmmirror.com/minipass/-/minipass-3.3.6.tgz",
  1622. "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
  1623. "license": "ISC",
  1624. "dependencies": {
  1625. "yallist": "^4.0.0"
  1626. },
  1627. "engines": {
  1628. "node": ">=8"
  1629. }
  1630. },
  1631. "node_modules/mkdirp": {
  1632. "version": "1.0.4",
  1633. "resolved": "https://registry.npmmirror.com/mkdirp/-/mkdirp-1.0.4.tgz",
  1634. "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
  1635. "license": "MIT",
  1636. "bin": {
  1637. "mkdirp": "bin/cmd.js"
  1638. },
  1639. "engines": {
  1640. "node": ">=10"
  1641. }
  1642. },
  1643. "node_modules/mkdirp-classic": {
  1644. "version": "0.5.3",
  1645. "resolved": "https://registry.npmmirror.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz",
  1646. "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==",
  1647. "license": "MIT"
  1648. },
  1649. "node_modules/ms": {
  1650. "version": "2.1.3",
  1651. "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz",
  1652. "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
  1653. "license": "MIT",
  1654. "optional": true
  1655. },
  1656. "node_modules/napi-build-utils": {
  1657. "version": "2.0.0",
  1658. "resolved": "https://registry.npmmirror.com/napi-build-utils/-/napi-build-utils-2.0.0.tgz",
  1659. "integrity": "sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==",
  1660. "license": "MIT"
  1661. },
  1662. "node_modules/negotiator": {
  1663. "version": "0.6.4",
  1664. "resolved": "https://registry.npmmirror.com/negotiator/-/negotiator-0.6.4.tgz",
  1665. "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==",
  1666. "license": "MIT",
  1667. "optional": true,
  1668. "engines": {
  1669. "node": ">= 0.6"
  1670. }
  1671. },
  1672. "node_modules/node-abi": {
  1673. "version": "3.85.0",
  1674. "resolved": "https://registry.npmmirror.com/node-abi/-/node-abi-3.85.0.tgz",
  1675. "integrity": "sha512-zsFhmbkAzwhTft6nd3VxcG0cvJsT70rL+BIGHWVq5fi6MwGrHwzqKaxXE+Hl2GmnGItnDKPPkO5/LQqjVkIdFg==",
  1676. "license": "MIT",
  1677. "dependencies": {
  1678. "semver": "^7.3.5"
  1679. },
  1680. "engines": {
  1681. "node": ">=10"
  1682. }
  1683. },
  1684. "node_modules/node-addon-api": {
  1685. "version": "7.1.1",
  1686. "resolved": "https://registry.npmmirror.com/node-addon-api/-/node-addon-api-7.1.1.tgz",
  1687. "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==",
  1688. "license": "MIT"
  1689. },
  1690. "node_modules/node-gyp": {
  1691. "version": "8.4.1",
  1692. "resolved": "https://registry.npmmirror.com/node-gyp/-/node-gyp-8.4.1.tgz",
  1693. "integrity": "sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==",
  1694. "license": "MIT",
  1695. "optional": true,
  1696. "dependencies": {
  1697. "env-paths": "^2.2.0",
  1698. "glob": "^7.1.4",
  1699. "graceful-fs": "^4.2.6",
  1700. "make-fetch-happen": "^9.1.0",
  1701. "nopt": "^5.0.0",
  1702. "npmlog": "^6.0.0",
  1703. "rimraf": "^3.0.2",
  1704. "semver": "^7.3.5",
  1705. "tar": "^6.1.2",
  1706. "which": "^2.0.2"
  1707. },
  1708. "bin": {
  1709. "node-gyp": "bin/node-gyp.js"
  1710. },
  1711. "engines": {
  1712. "node": ">= 10.12.0"
  1713. }
  1714. },
  1715. "node_modules/node-gyp/node_modules/brace-expansion": {
  1716. "version": "1.1.12",
  1717. "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.12.tgz",
  1718. "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
  1719. "license": "MIT",
  1720. "optional": true,
  1721. "dependencies": {
  1722. "balanced-match": "^1.0.0",
  1723. "concat-map": "0.0.1"
  1724. }
  1725. },
  1726. "node_modules/node-gyp/node_modules/glob": {
  1727. "version": "7.2.3",
  1728. "resolved": "https://registry.npmmirror.com/glob/-/glob-7.2.3.tgz",
  1729. "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
  1730. "deprecated": "Glob versions prior to v9 are no longer supported",
  1731. "license": "ISC",
  1732. "optional": true,
  1733. "dependencies": {
  1734. "fs.realpath": "^1.0.0",
  1735. "inflight": "^1.0.4",
  1736. "inherits": "2",
  1737. "minimatch": "^3.1.1",
  1738. "once": "^1.3.0",
  1739. "path-is-absolute": "^1.0.0"
  1740. },
  1741. "engines": {
  1742. "node": "*"
  1743. },
  1744. "funding": {
  1745. "url": "https://github.com/sponsors/isaacs"
  1746. }
  1747. },
  1748. "node_modules/node-gyp/node_modules/minimatch": {
  1749. "version": "3.1.2",
  1750. "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz",
  1751. "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
  1752. "license": "ISC",
  1753. "optional": true,
  1754. "dependencies": {
  1755. "brace-expansion": "^1.1.7"
  1756. },
  1757. "engines": {
  1758. "node": "*"
  1759. }
  1760. },
  1761. "node_modules/node-int64": {
  1762. "version": "0.4.0",
  1763. "resolved": "https://registry.npmmirror.com/node-int64/-/node-int64-0.4.0.tgz",
  1764. "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==",
  1765. "license": "MIT"
  1766. },
  1767. "node_modules/nopt": {
  1768. "version": "5.0.0",
  1769. "resolved": "https://registry.npmmirror.com/nopt/-/nopt-5.0.0.tgz",
  1770. "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==",
  1771. "license": "ISC",
  1772. "optional": true,
  1773. "dependencies": {
  1774. "abbrev": "1"
  1775. },
  1776. "bin": {
  1777. "nopt": "bin/nopt.js"
  1778. },
  1779. "engines": {
  1780. "node": ">=6"
  1781. }
  1782. },
  1783. "node_modules/normalize-path": {
  1784. "version": "3.0.0",
  1785. "resolved": "https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz",
  1786. "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
  1787. "license": "MIT",
  1788. "engines": {
  1789. "node": ">=0.10.0"
  1790. }
  1791. },
  1792. "node_modules/npmlog": {
  1793. "version": "6.0.2",
  1794. "resolved": "https://registry.npmmirror.com/npmlog/-/npmlog-6.0.2.tgz",
  1795. "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==",
  1796. "deprecated": "This package is no longer supported.",
  1797. "license": "ISC",
  1798. "optional": true,
  1799. "dependencies": {
  1800. "are-we-there-yet": "^3.0.0",
  1801. "console-control-strings": "^1.1.0",
  1802. "gauge": "^4.0.3",
  1803. "set-blocking": "^2.0.0"
  1804. },
  1805. "engines": {
  1806. "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
  1807. }
  1808. },
  1809. "node_modules/once": {
  1810. "version": "1.4.0",
  1811. "resolved": "https://registry.npmmirror.com/once/-/once-1.4.0.tgz",
  1812. "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
  1813. "license": "ISC",
  1814. "dependencies": {
  1815. "wrappy": "1"
  1816. }
  1817. },
  1818. "node_modules/p-map": {
  1819. "version": "4.0.0",
  1820. "resolved": "https://registry.npmmirror.com/p-map/-/p-map-4.0.0.tgz",
  1821. "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==",
  1822. "license": "MIT",
  1823. "optional": true,
  1824. "dependencies": {
  1825. "aggregate-error": "^3.0.0"
  1826. },
  1827. "engines": {
  1828. "node": ">=10"
  1829. },
  1830. "funding": {
  1831. "url": "https://github.com/sponsors/sindresorhus"
  1832. }
  1833. },
  1834. "node_modules/package-json-from-dist": {
  1835. "version": "1.0.1",
  1836. "resolved": "https://registry.npmmirror.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz",
  1837. "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
  1838. "license": "BlueOak-1.0.0"
  1839. },
  1840. "node_modules/path-is-absolute": {
  1841. "version": "1.0.1",
  1842. "resolved": "https://registry.npmmirror.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
  1843. "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
  1844. "license": "MIT",
  1845. "optional": true,
  1846. "engines": {
  1847. "node": ">=0.10.0"
  1848. }
  1849. },
  1850. "node_modules/path-key": {
  1851. "version": "3.1.1",
  1852. "resolved": "https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz",
  1853. "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
  1854. "license": "MIT",
  1855. "engines": {
  1856. "node": ">=8"
  1857. }
  1858. },
  1859. "node_modules/path-scurry": {
  1860. "version": "1.11.1",
  1861. "resolved": "https://registry.npmmirror.com/path-scurry/-/path-scurry-1.11.1.tgz",
  1862. "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
  1863. "license": "BlueOak-1.0.0",
  1864. "dependencies": {
  1865. "lru-cache": "^10.2.0",
  1866. "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
  1867. },
  1868. "engines": {
  1869. "node": ">=16 || 14 >=14.18"
  1870. },
  1871. "funding": {
  1872. "url": "https://github.com/sponsors/isaacs"
  1873. }
  1874. },
  1875. "node_modules/prebuild-install": {
  1876. "version": "7.1.3",
  1877. "resolved": "https://registry.npmmirror.com/prebuild-install/-/prebuild-install-7.1.3.tgz",
  1878. "integrity": "sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==",
  1879. "license": "MIT",
  1880. "dependencies": {
  1881. "detect-libc": "^2.0.0",
  1882. "expand-template": "^2.0.3",
  1883. "github-from-package": "0.0.0",
  1884. "minimist": "^1.2.3",
  1885. "mkdirp-classic": "^0.5.3",
  1886. "napi-build-utils": "^2.0.0",
  1887. "node-abi": "^3.3.0",
  1888. "pump": "^3.0.0",
  1889. "rc": "^1.2.7",
  1890. "simple-get": "^4.0.0",
  1891. "tar-fs": "^2.0.0",
  1892. "tunnel-agent": "^0.6.0"
  1893. },
  1894. "bin": {
  1895. "prebuild-install": "bin.js"
  1896. },
  1897. "engines": {
  1898. "node": ">=10"
  1899. }
  1900. },
  1901. "node_modules/process": {
  1902. "version": "0.11.10",
  1903. "resolved": "https://registry.npmmirror.com/process/-/process-0.11.10.tgz",
  1904. "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==",
  1905. "license": "MIT",
  1906. "engines": {
  1907. "node": ">= 0.6.0"
  1908. }
  1909. },
  1910. "node_modules/process-nextick-args": {
  1911. "version": "2.0.1",
  1912. "resolved": "https://registry.npmmirror.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
  1913. "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
  1914. "license": "MIT"
  1915. },
  1916. "node_modules/promise-inflight": {
  1917. "version": "1.0.1",
  1918. "resolved": "https://registry.npmmirror.com/promise-inflight/-/promise-inflight-1.0.1.tgz",
  1919. "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==",
  1920. "license": "ISC",
  1921. "optional": true
  1922. },
  1923. "node_modules/promise-retry": {
  1924. "version": "2.0.1",
  1925. "resolved": "https://registry.npmmirror.com/promise-retry/-/promise-retry-2.0.1.tgz",
  1926. "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==",
  1927. "license": "MIT",
  1928. "optional": true,
  1929. "dependencies": {
  1930. "err-code": "^2.0.2",
  1931. "retry": "^0.12.0"
  1932. },
  1933. "engines": {
  1934. "node": ">=10"
  1935. }
  1936. },
  1937. "node_modules/pump": {
  1938. "version": "3.0.3",
  1939. "resolved": "https://registry.npmmirror.com/pump/-/pump-3.0.3.tgz",
  1940. "integrity": "sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==",
  1941. "license": "MIT",
  1942. "dependencies": {
  1943. "end-of-stream": "^1.1.0",
  1944. "once": "^1.3.1"
  1945. }
  1946. },
  1947. "node_modules/rc": {
  1948. "version": "1.2.8",
  1949. "resolved": "https://registry.npmmirror.com/rc/-/rc-1.2.8.tgz",
  1950. "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==",
  1951. "license": "(BSD-2-Clause OR MIT OR Apache-2.0)",
  1952. "dependencies": {
  1953. "deep-extend": "^0.6.0",
  1954. "ini": "~1.3.0",
  1955. "minimist": "^1.2.0",
  1956. "strip-json-comments": "~2.0.1"
  1957. },
  1958. "bin": {
  1959. "rc": "cli.js"
  1960. }
  1961. },
  1962. "node_modules/readable-stream": {
  1963. "version": "4.7.0",
  1964. "resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-4.7.0.tgz",
  1965. "integrity": "sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==",
  1966. "license": "MIT",
  1967. "dependencies": {
  1968. "abort-controller": "^3.0.0",
  1969. "buffer": "^6.0.3",
  1970. "events": "^3.3.0",
  1971. "process": "^0.11.10",
  1972. "string_decoder": "^1.3.0"
  1973. },
  1974. "engines": {
  1975. "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
  1976. }
  1977. },
  1978. "node_modules/readdir-glob": {
  1979. "version": "1.1.3",
  1980. "resolved": "https://registry.npmmirror.com/readdir-glob/-/readdir-glob-1.1.3.tgz",
  1981. "integrity": "sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==",
  1982. "license": "Apache-2.0",
  1983. "dependencies": {
  1984. "minimatch": "^5.1.0"
  1985. }
  1986. },
  1987. "node_modules/readdir-glob/node_modules/minimatch": {
  1988. "version": "5.1.6",
  1989. "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-5.1.6.tgz",
  1990. "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
  1991. "license": "ISC",
  1992. "dependencies": {
  1993. "brace-expansion": "^2.0.1"
  1994. },
  1995. "engines": {
  1996. "node": ">=10"
  1997. }
  1998. },
  1999. "node_modules/retry": {
  2000. "version": "0.12.0",
  2001. "resolved": "https://registry.npmmirror.com/retry/-/retry-0.12.0.tgz",
  2002. "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==",
  2003. "license": "MIT",
  2004. "optional": true,
  2005. "engines": {
  2006. "node": ">= 4"
  2007. }
  2008. },
  2009. "node_modules/rimraf": {
  2010. "version": "3.0.2",
  2011. "resolved": "https://registry.npmmirror.com/rimraf/-/rimraf-3.0.2.tgz",
  2012. "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
  2013. "deprecated": "Rimraf versions prior to v4 are no longer supported",
  2014. "license": "ISC",
  2015. "optional": true,
  2016. "dependencies": {
  2017. "glob": "^7.1.3"
  2018. },
  2019. "bin": {
  2020. "rimraf": "bin.js"
  2021. },
  2022. "funding": {
  2023. "url": "https://github.com/sponsors/isaacs"
  2024. }
  2025. },
  2026. "node_modules/rimraf/node_modules/brace-expansion": {
  2027. "version": "1.1.12",
  2028. "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.12.tgz",
  2029. "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
  2030. "license": "MIT",
  2031. "optional": true,
  2032. "dependencies": {
  2033. "balanced-match": "^1.0.0",
  2034. "concat-map": "0.0.1"
  2035. }
  2036. },
  2037. "node_modules/rimraf/node_modules/glob": {
  2038. "version": "7.2.3",
  2039. "resolved": "https://registry.npmmirror.com/glob/-/glob-7.2.3.tgz",
  2040. "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
  2041. "deprecated": "Glob versions prior to v9 are no longer supported",
  2042. "license": "ISC",
  2043. "optional": true,
  2044. "dependencies": {
  2045. "fs.realpath": "^1.0.0",
  2046. "inflight": "^1.0.4",
  2047. "inherits": "2",
  2048. "minimatch": "^3.1.1",
  2049. "once": "^1.3.0",
  2050. "path-is-absolute": "^1.0.0"
  2051. },
  2052. "engines": {
  2053. "node": "*"
  2054. },
  2055. "funding": {
  2056. "url": "https://github.com/sponsors/isaacs"
  2057. }
  2058. },
  2059. "node_modules/rimraf/node_modules/minimatch": {
  2060. "version": "3.1.2",
  2061. "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz",
  2062. "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
  2063. "license": "ISC",
  2064. "optional": true,
  2065. "dependencies": {
  2066. "brace-expansion": "^1.1.7"
  2067. },
  2068. "engines": {
  2069. "node": "*"
  2070. }
  2071. },
  2072. "node_modules/safe-buffer": {
  2073. "version": "5.2.1",
  2074. "resolved": "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz",
  2075. "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
  2076. "funding": [
  2077. {
  2078. "type": "github",
  2079. "url": "https://github.com/sponsors/feross"
  2080. },
  2081. {
  2082. "type": "patreon",
  2083. "url": "https://www.patreon.com/feross"
  2084. },
  2085. {
  2086. "type": "consulting",
  2087. "url": "https://feross.org/support"
  2088. }
  2089. ],
  2090. "license": "MIT"
  2091. },
  2092. "node_modules/safer-buffer": {
  2093. "version": "2.1.2",
  2094. "resolved": "https://registry.npmmirror.com/safer-buffer/-/safer-buffer-2.1.2.tgz",
  2095. "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
  2096. "license": "MIT",
  2097. "optional": true
  2098. },
  2099. "node_modules/semver": {
  2100. "version": "7.7.3",
  2101. "resolved": "https://registry.npmmirror.com/semver/-/semver-7.7.3.tgz",
  2102. "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==",
  2103. "license": "ISC",
  2104. "bin": {
  2105. "semver": "bin/semver.js"
  2106. },
  2107. "engines": {
  2108. "node": ">=10"
  2109. }
  2110. },
  2111. "node_modules/set-blocking": {
  2112. "version": "2.0.0",
  2113. "resolved": "https://registry.npmmirror.com/set-blocking/-/set-blocking-2.0.0.tgz",
  2114. "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==",
  2115. "license": "ISC",
  2116. "optional": true
  2117. },
  2118. "node_modules/sharp": {
  2119. "version": "0.33.5",
  2120. "resolved": "https://registry.npmmirror.com/sharp/-/sharp-0.33.5.tgz",
  2121. "integrity": "sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==",
  2122. "hasInstallScript": true,
  2123. "license": "Apache-2.0",
  2124. "dependencies": {
  2125. "color": "^4.2.3",
  2126. "detect-libc": "^2.0.3",
  2127. "semver": "^7.6.3"
  2128. },
  2129. "engines": {
  2130. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  2131. },
  2132. "funding": {
  2133. "url": "https://opencollective.com/libvips"
  2134. },
  2135. "optionalDependencies": {
  2136. "@img/sharp-darwin-arm64": "0.33.5",
  2137. "@img/sharp-darwin-x64": "0.33.5",
  2138. "@img/sharp-libvips-darwin-arm64": "1.0.4",
  2139. "@img/sharp-libvips-darwin-x64": "1.0.4",
  2140. "@img/sharp-libvips-linux-arm": "1.0.5",
  2141. "@img/sharp-libvips-linux-arm64": "1.0.4",
  2142. "@img/sharp-libvips-linux-s390x": "1.0.4",
  2143. "@img/sharp-libvips-linux-x64": "1.0.4",
  2144. "@img/sharp-libvips-linuxmusl-arm64": "1.0.4",
  2145. "@img/sharp-libvips-linuxmusl-x64": "1.0.4",
  2146. "@img/sharp-linux-arm": "0.33.5",
  2147. "@img/sharp-linux-arm64": "0.33.5",
  2148. "@img/sharp-linux-s390x": "0.33.5",
  2149. "@img/sharp-linux-x64": "0.33.5",
  2150. "@img/sharp-linuxmusl-arm64": "0.33.5",
  2151. "@img/sharp-linuxmusl-x64": "0.33.5",
  2152. "@img/sharp-wasm32": "0.33.5",
  2153. "@img/sharp-win32-ia32": "0.33.5",
  2154. "@img/sharp-win32-x64": "0.33.5"
  2155. }
  2156. },
  2157. "node_modules/shebang-command": {
  2158. "version": "2.0.0",
  2159. "resolved": "https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz",
  2160. "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
  2161. "license": "MIT",
  2162. "dependencies": {
  2163. "shebang-regex": "^3.0.0"
  2164. },
  2165. "engines": {
  2166. "node": ">=8"
  2167. }
  2168. },
  2169. "node_modules/shebang-regex": {
  2170. "version": "3.0.0",
  2171. "resolved": "https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz",
  2172. "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
  2173. "license": "MIT",
  2174. "engines": {
  2175. "node": ">=8"
  2176. }
  2177. },
  2178. "node_modules/signal-exit": {
  2179. "version": "4.1.0",
  2180. "resolved": "https://registry.npmmirror.com/signal-exit/-/signal-exit-4.1.0.tgz",
  2181. "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
  2182. "license": "ISC",
  2183. "engines": {
  2184. "node": ">=14"
  2185. },
  2186. "funding": {
  2187. "url": "https://github.com/sponsors/isaacs"
  2188. }
  2189. },
  2190. "node_modules/simple-concat": {
  2191. "version": "1.0.1",
  2192. "resolved": "https://registry.npmmirror.com/simple-concat/-/simple-concat-1.0.1.tgz",
  2193. "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==",
  2194. "funding": [
  2195. {
  2196. "type": "github",
  2197. "url": "https://github.com/sponsors/feross"
  2198. },
  2199. {
  2200. "type": "patreon",
  2201. "url": "https://www.patreon.com/feross"
  2202. },
  2203. {
  2204. "type": "consulting",
  2205. "url": "https://feross.org/support"
  2206. }
  2207. ],
  2208. "license": "MIT"
  2209. },
  2210. "node_modules/simple-get": {
  2211. "version": "4.0.1",
  2212. "resolved": "https://registry.npmmirror.com/simple-get/-/simple-get-4.0.1.tgz",
  2213. "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==",
  2214. "funding": [
  2215. {
  2216. "type": "github",
  2217. "url": "https://github.com/sponsors/feross"
  2218. },
  2219. {
  2220. "type": "patreon",
  2221. "url": "https://www.patreon.com/feross"
  2222. },
  2223. {
  2224. "type": "consulting",
  2225. "url": "https://feross.org/support"
  2226. }
  2227. ],
  2228. "license": "MIT",
  2229. "dependencies": {
  2230. "decompress-response": "^6.0.0",
  2231. "once": "^1.3.1",
  2232. "simple-concat": "^1.0.0"
  2233. }
  2234. },
  2235. "node_modules/simple-swizzle": {
  2236. "version": "0.2.4",
  2237. "resolved": "https://registry.npmmirror.com/simple-swizzle/-/simple-swizzle-0.2.4.tgz",
  2238. "integrity": "sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==",
  2239. "license": "MIT",
  2240. "dependencies": {
  2241. "is-arrayish": "^0.3.1"
  2242. }
  2243. },
  2244. "node_modules/smart-buffer": {
  2245. "version": "4.2.0",
  2246. "resolved": "https://registry.npmmirror.com/smart-buffer/-/smart-buffer-4.2.0.tgz",
  2247. "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==",
  2248. "license": "MIT",
  2249. "optional": true,
  2250. "engines": {
  2251. "node": ">= 6.0.0",
  2252. "npm": ">= 3.0.0"
  2253. }
  2254. },
  2255. "node_modules/socks": {
  2256. "version": "2.8.7",
  2257. "resolved": "https://registry.npmmirror.com/socks/-/socks-2.8.7.tgz",
  2258. "integrity": "sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A==",
  2259. "license": "MIT",
  2260. "optional": true,
  2261. "dependencies": {
  2262. "ip-address": "^10.0.1",
  2263. "smart-buffer": "^4.2.0"
  2264. },
  2265. "engines": {
  2266. "node": ">= 10.0.0",
  2267. "npm": ">= 3.0.0"
  2268. }
  2269. },
  2270. "node_modules/socks-proxy-agent": {
  2271. "version": "6.2.1",
  2272. "resolved": "https://registry.npmmirror.com/socks-proxy-agent/-/socks-proxy-agent-6.2.1.tgz",
  2273. "integrity": "sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ==",
  2274. "license": "MIT",
  2275. "optional": true,
  2276. "dependencies": {
  2277. "agent-base": "^6.0.2",
  2278. "debug": "^4.3.3",
  2279. "socks": "^2.6.2"
  2280. },
  2281. "engines": {
  2282. "node": ">= 10"
  2283. }
  2284. },
  2285. "node_modules/sqlite3": {
  2286. "version": "5.1.7",
  2287. "resolved": "https://registry.npmmirror.com/sqlite3/-/sqlite3-5.1.7.tgz",
  2288. "integrity": "sha512-GGIyOiFaG+TUra3JIfkI/zGP8yZYLPQ0pl1bH+ODjiX57sPhrLU5sQJn1y9bDKZUFYkX1crlrPfSYt0BKKdkog==",
  2289. "hasInstallScript": true,
  2290. "license": "BSD-3-Clause",
  2291. "dependencies": {
  2292. "bindings": "^1.5.0",
  2293. "node-addon-api": "^7.0.0",
  2294. "prebuild-install": "^7.1.1",
  2295. "tar": "^6.1.11"
  2296. },
  2297. "optionalDependencies": {
  2298. "node-gyp": "8.x"
  2299. },
  2300. "peerDependencies": {
  2301. "node-gyp": "8.x"
  2302. },
  2303. "peerDependenciesMeta": {
  2304. "node-gyp": {
  2305. "optional": true
  2306. }
  2307. }
  2308. },
  2309. "node_modules/ssri": {
  2310. "version": "8.0.1",
  2311. "resolved": "https://registry.npmmirror.com/ssri/-/ssri-8.0.1.tgz",
  2312. "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==",
  2313. "license": "ISC",
  2314. "optional": true,
  2315. "dependencies": {
  2316. "minipass": "^3.1.1"
  2317. },
  2318. "engines": {
  2319. "node": ">= 8"
  2320. }
  2321. },
  2322. "node_modules/ssri/node_modules/minipass": {
  2323. "version": "3.3.6",
  2324. "resolved": "https://registry.npmmirror.com/minipass/-/minipass-3.3.6.tgz",
  2325. "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
  2326. "license": "ISC",
  2327. "optional": true,
  2328. "dependencies": {
  2329. "yallist": "^4.0.0"
  2330. },
  2331. "engines": {
  2332. "node": ">=8"
  2333. }
  2334. },
  2335. "node_modules/streamx": {
  2336. "version": "2.23.0",
  2337. "resolved": "https://registry.npmmirror.com/streamx/-/streamx-2.23.0.tgz",
  2338. "integrity": "sha512-kn+e44esVfn2Fa/O0CPFcex27fjIL6MkVae0Mm6q+E6f0hWv578YCERbv+4m02cjxvDsPKLnmxral/rR6lBMAg==",
  2339. "license": "MIT",
  2340. "dependencies": {
  2341. "events-universal": "^1.0.0",
  2342. "fast-fifo": "^1.3.2",
  2343. "text-decoder": "^1.1.0"
  2344. }
  2345. },
  2346. "node_modules/string_decoder": {
  2347. "version": "1.3.0",
  2348. "resolved": "https://registry.npmmirror.com/string_decoder/-/string_decoder-1.3.0.tgz",
  2349. "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
  2350. "license": "MIT",
  2351. "dependencies": {
  2352. "safe-buffer": "~5.2.0"
  2353. }
  2354. },
  2355. "node_modules/string-width": {
  2356. "version": "5.1.2",
  2357. "resolved": "https://registry.npmmirror.com/string-width/-/string-width-5.1.2.tgz",
  2358. "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
  2359. "license": "MIT",
  2360. "dependencies": {
  2361. "eastasianwidth": "^0.2.0",
  2362. "emoji-regex": "^9.2.2",
  2363. "strip-ansi": "^7.0.1"
  2364. },
  2365. "engines": {
  2366. "node": ">=12"
  2367. },
  2368. "funding": {
  2369. "url": "https://github.com/sponsors/sindresorhus"
  2370. }
  2371. },
  2372. "node_modules/string-width-cjs": {
  2373. "name": "string-width",
  2374. "version": "4.2.3",
  2375. "resolved": "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz",
  2376. "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
  2377. "license": "MIT",
  2378. "dependencies": {
  2379. "emoji-regex": "^8.0.0",
  2380. "is-fullwidth-code-point": "^3.0.0",
  2381. "strip-ansi": "^6.0.1"
  2382. },
  2383. "engines": {
  2384. "node": ">=8"
  2385. }
  2386. },
  2387. "node_modules/string-width-cjs/node_modules/ansi-regex": {
  2388. "version": "5.0.1",
  2389. "resolved": "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz",
  2390. "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
  2391. "license": "MIT",
  2392. "engines": {
  2393. "node": ">=8"
  2394. }
  2395. },
  2396. "node_modules/string-width-cjs/node_modules/emoji-regex": {
  2397. "version": "8.0.0",
  2398. "resolved": "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz",
  2399. "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
  2400. "license": "MIT"
  2401. },
  2402. "node_modules/string-width-cjs/node_modules/strip-ansi": {
  2403. "version": "6.0.1",
  2404. "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz",
  2405. "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
  2406. "license": "MIT",
  2407. "dependencies": {
  2408. "ansi-regex": "^5.0.1"
  2409. },
  2410. "engines": {
  2411. "node": ">=8"
  2412. }
  2413. },
  2414. "node_modules/strip-ansi": {
  2415. "version": "7.1.2",
  2416. "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-7.1.2.tgz",
  2417. "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==",
  2418. "license": "MIT",
  2419. "dependencies": {
  2420. "ansi-regex": "^6.0.1"
  2421. },
  2422. "engines": {
  2423. "node": ">=12"
  2424. },
  2425. "funding": {
  2426. "url": "https://github.com/chalk/strip-ansi?sponsor=1"
  2427. }
  2428. },
  2429. "node_modules/strip-ansi-cjs": {
  2430. "name": "strip-ansi",
  2431. "version": "6.0.1",
  2432. "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz",
  2433. "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
  2434. "license": "MIT",
  2435. "dependencies": {
  2436. "ansi-regex": "^5.0.1"
  2437. },
  2438. "engines": {
  2439. "node": ">=8"
  2440. }
  2441. },
  2442. "node_modules/strip-ansi-cjs/node_modules/ansi-regex": {
  2443. "version": "5.0.1",
  2444. "resolved": "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz",
  2445. "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
  2446. "license": "MIT",
  2447. "engines": {
  2448. "node": ">=8"
  2449. }
  2450. },
  2451. "node_modules/strip-json-comments": {
  2452. "version": "2.0.1",
  2453. "resolved": "https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
  2454. "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==",
  2455. "license": "MIT",
  2456. "engines": {
  2457. "node": ">=0.10.0"
  2458. }
  2459. },
  2460. "node_modules/tar": {
  2461. "version": "6.2.1",
  2462. "resolved": "https://registry.npmmirror.com/tar/-/tar-6.2.1.tgz",
  2463. "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==",
  2464. "license": "ISC",
  2465. "dependencies": {
  2466. "chownr": "^2.0.0",
  2467. "fs-minipass": "^2.0.0",
  2468. "minipass": "^5.0.0",
  2469. "minizlib": "^2.1.1",
  2470. "mkdirp": "^1.0.3",
  2471. "yallist": "^4.0.0"
  2472. },
  2473. "engines": {
  2474. "node": ">=10"
  2475. }
  2476. },
  2477. "node_modules/tar-fs": {
  2478. "version": "2.1.4",
  2479. "resolved": "https://registry.npmmirror.com/tar-fs/-/tar-fs-2.1.4.tgz",
  2480. "integrity": "sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==",
  2481. "license": "MIT",
  2482. "dependencies": {
  2483. "chownr": "^1.1.1",
  2484. "mkdirp-classic": "^0.5.2",
  2485. "pump": "^3.0.0",
  2486. "tar-stream": "^2.1.4"
  2487. }
  2488. },
  2489. "node_modules/tar-fs/node_modules/chownr": {
  2490. "version": "1.1.4",
  2491. "resolved": "https://registry.npmmirror.com/chownr/-/chownr-1.1.4.tgz",
  2492. "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==",
  2493. "license": "ISC"
  2494. },
  2495. "node_modules/tar-fs/node_modules/readable-stream": {
  2496. "version": "3.6.2",
  2497. "resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz",
  2498. "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
  2499. "license": "MIT",
  2500. "dependencies": {
  2501. "inherits": "^2.0.3",
  2502. "string_decoder": "^1.1.1",
  2503. "util-deprecate": "^1.0.1"
  2504. },
  2505. "engines": {
  2506. "node": ">= 6"
  2507. }
  2508. },
  2509. "node_modules/tar-fs/node_modules/tar-stream": {
  2510. "version": "2.2.0",
  2511. "resolved": "https://registry.npmmirror.com/tar-stream/-/tar-stream-2.2.0.tgz",
  2512. "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==",
  2513. "license": "MIT",
  2514. "dependencies": {
  2515. "bl": "^4.0.3",
  2516. "end-of-stream": "^1.4.1",
  2517. "fs-constants": "^1.0.0",
  2518. "inherits": "^2.0.3",
  2519. "readable-stream": "^3.1.1"
  2520. },
  2521. "engines": {
  2522. "node": ">=6"
  2523. }
  2524. },
  2525. "node_modules/tar-stream": {
  2526. "version": "3.1.7",
  2527. "resolved": "https://registry.npmmirror.com/tar-stream/-/tar-stream-3.1.7.tgz",
  2528. "integrity": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==",
  2529. "license": "MIT",
  2530. "dependencies": {
  2531. "b4a": "^1.6.4",
  2532. "fast-fifo": "^1.2.0",
  2533. "streamx": "^2.15.0"
  2534. }
  2535. },
  2536. "node_modules/tar/node_modules/minipass": {
  2537. "version": "5.0.0",
  2538. "resolved": "https://registry.npmmirror.com/minipass/-/minipass-5.0.0.tgz",
  2539. "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==",
  2540. "license": "ISC",
  2541. "engines": {
  2542. "node": ">=8"
  2543. }
  2544. },
  2545. "node_modules/text-decoder": {
  2546. "version": "1.2.3",
  2547. "resolved": "https://registry.npmmirror.com/text-decoder/-/text-decoder-1.2.3.tgz",
  2548. "integrity": "sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==",
  2549. "license": "Apache-2.0",
  2550. "dependencies": {
  2551. "b4a": "^1.6.4"
  2552. }
  2553. },
  2554. "node_modules/tunnel-agent": {
  2555. "version": "0.6.0",
  2556. "resolved": "https://registry.npmmirror.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
  2557. "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==",
  2558. "license": "Apache-2.0",
  2559. "dependencies": {
  2560. "safe-buffer": "^5.0.1"
  2561. },
  2562. "engines": {
  2563. "node": "*"
  2564. }
  2565. },
  2566. "node_modules/unique-filename": {
  2567. "version": "1.1.1",
  2568. "resolved": "https://registry.npmmirror.com/unique-filename/-/unique-filename-1.1.1.tgz",
  2569. "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==",
  2570. "license": "ISC",
  2571. "optional": true,
  2572. "dependencies": {
  2573. "unique-slug": "^2.0.0"
  2574. }
  2575. },
  2576. "node_modules/unique-slug": {
  2577. "version": "2.0.2",
  2578. "resolved": "https://registry.npmmirror.com/unique-slug/-/unique-slug-2.0.2.tgz",
  2579. "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==",
  2580. "license": "ISC",
  2581. "optional": true,
  2582. "dependencies": {
  2583. "imurmurhash": "^0.1.4"
  2584. }
  2585. },
  2586. "node_modules/universalify": {
  2587. "version": "2.0.1",
  2588. "resolved": "https://registry.npmmirror.com/universalify/-/universalify-2.0.1.tgz",
  2589. "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
  2590. "license": "MIT",
  2591. "engines": {
  2592. "node": ">= 10.0.0"
  2593. }
  2594. },
  2595. "node_modules/unzipper": {
  2596. "version": "0.12.3",
  2597. "resolved": "https://registry.npmmirror.com/unzipper/-/unzipper-0.12.3.tgz",
  2598. "integrity": "sha512-PZ8hTS+AqcGxsaQntl3IRBw65QrBI6lxzqDEL7IAo/XCEqRTKGfOX56Vea5TH9SZczRVxuzk1re04z/YjuYCJA==",
  2599. "license": "MIT",
  2600. "dependencies": {
  2601. "bluebird": "~3.7.2",
  2602. "duplexer2": "~0.1.4",
  2603. "fs-extra": "^11.2.0",
  2604. "graceful-fs": "^4.2.2",
  2605. "node-int64": "^0.4.0"
  2606. }
  2607. },
  2608. "node_modules/util-deprecate": {
  2609. "version": "1.0.2",
  2610. "resolved": "https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz",
  2611. "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
  2612. "license": "MIT"
  2613. },
  2614. "node_modules/which": {
  2615. "version": "2.0.2",
  2616. "resolved": "https://registry.npmmirror.com/which/-/which-2.0.2.tgz",
  2617. "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
  2618. "license": "ISC",
  2619. "dependencies": {
  2620. "isexe": "^2.0.0"
  2621. },
  2622. "bin": {
  2623. "node-which": "bin/node-which"
  2624. },
  2625. "engines": {
  2626. "node": ">= 8"
  2627. }
  2628. },
  2629. "node_modules/wide-align": {
  2630. "version": "1.1.5",
  2631. "resolved": "https://registry.npmmirror.com/wide-align/-/wide-align-1.1.5.tgz",
  2632. "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==",
  2633. "license": "ISC",
  2634. "optional": true,
  2635. "dependencies": {
  2636. "string-width": "^1.0.2 || 2 || 3 || 4"
  2637. }
  2638. },
  2639. "node_modules/wide-align/node_modules/ansi-regex": {
  2640. "version": "5.0.1",
  2641. "resolved": "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz",
  2642. "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
  2643. "license": "MIT",
  2644. "optional": true,
  2645. "engines": {
  2646. "node": ">=8"
  2647. }
  2648. },
  2649. "node_modules/wide-align/node_modules/emoji-regex": {
  2650. "version": "8.0.0",
  2651. "resolved": "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz",
  2652. "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
  2653. "license": "MIT",
  2654. "optional": true
  2655. },
  2656. "node_modules/wide-align/node_modules/string-width": {
  2657. "version": "4.2.3",
  2658. "resolved": "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz",
  2659. "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
  2660. "license": "MIT",
  2661. "optional": true,
  2662. "dependencies": {
  2663. "emoji-regex": "^8.0.0",
  2664. "is-fullwidth-code-point": "^3.0.0",
  2665. "strip-ansi": "^6.0.1"
  2666. },
  2667. "engines": {
  2668. "node": ">=8"
  2669. }
  2670. },
  2671. "node_modules/wide-align/node_modules/strip-ansi": {
  2672. "version": "6.0.1",
  2673. "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz",
  2674. "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
  2675. "license": "MIT",
  2676. "optional": true,
  2677. "dependencies": {
  2678. "ansi-regex": "^5.0.1"
  2679. },
  2680. "engines": {
  2681. "node": ">=8"
  2682. }
  2683. },
  2684. "node_modules/wrap-ansi": {
  2685. "version": "8.1.0",
  2686. "resolved": "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
  2687. "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
  2688. "license": "MIT",
  2689. "dependencies": {
  2690. "ansi-styles": "^6.1.0",
  2691. "string-width": "^5.0.1",
  2692. "strip-ansi": "^7.0.1"
  2693. },
  2694. "engines": {
  2695. "node": ">=12"
  2696. },
  2697. "funding": {
  2698. "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
  2699. }
  2700. },
  2701. "node_modules/wrap-ansi-cjs": {
  2702. "name": "wrap-ansi",
  2703. "version": "7.0.0",
  2704. "resolved": "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
  2705. "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
  2706. "license": "MIT",
  2707. "dependencies": {
  2708. "ansi-styles": "^4.0.0",
  2709. "string-width": "^4.1.0",
  2710. "strip-ansi": "^6.0.0"
  2711. },
  2712. "engines": {
  2713. "node": ">=10"
  2714. },
  2715. "funding": {
  2716. "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
  2717. }
  2718. },
  2719. "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": {
  2720. "version": "5.0.1",
  2721. "resolved": "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz",
  2722. "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
  2723. "license": "MIT",
  2724. "engines": {
  2725. "node": ">=8"
  2726. }
  2727. },
  2728. "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": {
  2729. "version": "4.3.0",
  2730. "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz",
  2731. "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
  2732. "license": "MIT",
  2733. "dependencies": {
  2734. "color-convert": "^2.0.1"
  2735. },
  2736. "engines": {
  2737. "node": ">=8"
  2738. },
  2739. "funding": {
  2740. "url": "https://github.com/chalk/ansi-styles?sponsor=1"
  2741. }
  2742. },
  2743. "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": {
  2744. "version": "8.0.0",
  2745. "resolved": "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz",
  2746. "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
  2747. "license": "MIT"
  2748. },
  2749. "node_modules/wrap-ansi-cjs/node_modules/string-width": {
  2750. "version": "4.2.3",
  2751. "resolved": "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz",
  2752. "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
  2753. "license": "MIT",
  2754. "dependencies": {
  2755. "emoji-regex": "^8.0.0",
  2756. "is-fullwidth-code-point": "^3.0.0",
  2757. "strip-ansi": "^6.0.1"
  2758. },
  2759. "engines": {
  2760. "node": ">=8"
  2761. }
  2762. },
  2763. "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": {
  2764. "version": "6.0.1",
  2765. "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz",
  2766. "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
  2767. "license": "MIT",
  2768. "dependencies": {
  2769. "ansi-regex": "^5.0.1"
  2770. },
  2771. "engines": {
  2772. "node": ">=8"
  2773. }
  2774. },
  2775. "node_modules/wrappy": {
  2776. "version": "1.0.2",
  2777. "resolved": "https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz",
  2778. "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
  2779. "license": "ISC"
  2780. },
  2781. "node_modules/ws": {
  2782. "version": "8.18.3",
  2783. "resolved": "https://registry.npmmirror.com/ws/-/ws-8.18.3.tgz",
  2784. "integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==",
  2785. "license": "MIT",
  2786. "engines": {
  2787. "node": ">=10.0.0"
  2788. },
  2789. "peerDependencies": {
  2790. "bufferutil": "^4.0.1",
  2791. "utf-8-validate": ">=5.0.2"
  2792. },
  2793. "peerDependenciesMeta": {
  2794. "bufferutil": {
  2795. "optional": true
  2796. },
  2797. "utf-8-validate": {
  2798. "optional": true
  2799. }
  2800. }
  2801. },
  2802. "node_modules/yallist": {
  2803. "version": "4.0.0",
  2804. "resolved": "https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz",
  2805. "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
  2806. "license": "ISC"
  2807. },
  2808. "node_modules/zip-stream": {
  2809. "version": "6.0.1",
  2810. "resolved": "https://registry.npmmirror.com/zip-stream/-/zip-stream-6.0.1.tgz",
  2811. "integrity": "sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA==",
  2812. "license": "MIT",
  2813. "dependencies": {
  2814. "archiver-utils": "^5.0.0",
  2815. "compress-commons": "^6.0.2",
  2816. "readable-stream": "^4.0.0"
  2817. },
  2818. "engines": {
  2819. "node": ">= 14"
  2820. }
  2821. }
  2822. }
  2823. }