package-lock.json 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860
  1. {
  2. "name": "png-viewer-server",
  3. "version": "1.0.0",
  4. "lockfileVersion": 3,
  5. "requires": true,
  6. "packages": {
  7. "": {
  8. "name": "png-viewer-server",
  9. "version": "1.0.0",
  10. "license": "MIT",
  11. "dependencies": {
  12. "archiver": "^7.0.1",
  13. "better-sqlite3": "^12.5.0",
  14. "formidable": "^3.5.4",
  15. "sharp": "^0.33.0",
  16. "ws": "^8.14.2"
  17. }
  18. },
  19. "node_modules/@emnapi/runtime": {
  20. "version": "1.7.1",
  21. "resolved": "https://registry.npmmirror.com/@emnapi/runtime/-/runtime-1.7.1.tgz",
  22. "integrity": "sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA==",
  23. "license": "MIT",
  24. "optional": true,
  25. "dependencies": {
  26. "tslib": "^2.4.0"
  27. }
  28. },
  29. "node_modules/@img/sharp-darwin-arm64": {
  30. "version": "0.33.5",
  31. "resolved": "https://registry.npmmirror.com/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.33.5.tgz",
  32. "integrity": "sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==",
  33. "cpu": [
  34. "arm64"
  35. ],
  36. "license": "Apache-2.0",
  37. "optional": true,
  38. "os": [
  39. "darwin"
  40. ],
  41. "engines": {
  42. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  43. },
  44. "funding": {
  45. "url": "https://opencollective.com/libvips"
  46. },
  47. "optionalDependencies": {
  48. "@img/sharp-libvips-darwin-arm64": "1.0.4"
  49. }
  50. },
  51. "node_modules/@img/sharp-darwin-x64": {
  52. "version": "0.33.5",
  53. "resolved": "https://registry.npmmirror.com/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.5.tgz",
  54. "integrity": "sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==",
  55. "cpu": [
  56. "x64"
  57. ],
  58. "license": "Apache-2.0",
  59. "optional": true,
  60. "os": [
  61. "darwin"
  62. ],
  63. "engines": {
  64. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  65. },
  66. "funding": {
  67. "url": "https://opencollective.com/libvips"
  68. },
  69. "optionalDependencies": {
  70. "@img/sharp-libvips-darwin-x64": "1.0.4"
  71. }
  72. },
  73. "node_modules/@img/sharp-libvips-darwin-arm64": {
  74. "version": "1.0.4",
  75. "resolved": "https://registry.npmmirror.com/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.0.4.tgz",
  76. "integrity": "sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==",
  77. "cpu": [
  78. "arm64"
  79. ],
  80. "license": "LGPL-3.0-or-later",
  81. "optional": true,
  82. "os": [
  83. "darwin"
  84. ],
  85. "funding": {
  86. "url": "https://opencollective.com/libvips"
  87. }
  88. },
  89. "node_modules/@img/sharp-libvips-darwin-x64": {
  90. "version": "1.0.4",
  91. "resolved": "https://registry.npmmirror.com/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.4.tgz",
  92. "integrity": "sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==",
  93. "cpu": [
  94. "x64"
  95. ],
  96. "license": "LGPL-3.0-or-later",
  97. "optional": true,
  98. "os": [
  99. "darwin"
  100. ],
  101. "funding": {
  102. "url": "https://opencollective.com/libvips"
  103. }
  104. },
  105. "node_modules/@img/sharp-libvips-linux-arm": {
  106. "version": "1.0.5",
  107. "resolved": "https://registry.npmmirror.com/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.0.5.tgz",
  108. "integrity": "sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==",
  109. "cpu": [
  110. "arm"
  111. ],
  112. "license": "LGPL-3.0-or-later",
  113. "optional": true,
  114. "os": [
  115. "linux"
  116. ],
  117. "funding": {
  118. "url": "https://opencollective.com/libvips"
  119. }
  120. },
  121. "node_modules/@img/sharp-libvips-linux-arm64": {
  122. "version": "1.0.4",
  123. "resolved": "https://registry.npmmirror.com/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.0.4.tgz",
  124. "integrity": "sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==",
  125. "cpu": [
  126. "arm64"
  127. ],
  128. "license": "LGPL-3.0-or-later",
  129. "optional": true,
  130. "os": [
  131. "linux"
  132. ],
  133. "funding": {
  134. "url": "https://opencollective.com/libvips"
  135. }
  136. },
  137. "node_modules/@img/sharp-libvips-linux-s390x": {
  138. "version": "1.0.4",
  139. "resolved": "https://registry.npmmirror.com/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.0.4.tgz",
  140. "integrity": "sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==",
  141. "cpu": [
  142. "s390x"
  143. ],
  144. "license": "LGPL-3.0-or-later",
  145. "optional": true,
  146. "os": [
  147. "linux"
  148. ],
  149. "funding": {
  150. "url": "https://opencollective.com/libvips"
  151. }
  152. },
  153. "node_modules/@img/sharp-libvips-linux-x64": {
  154. "version": "1.0.4",
  155. "resolved": "https://registry.npmmirror.com/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.4.tgz",
  156. "integrity": "sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==",
  157. "cpu": [
  158. "x64"
  159. ],
  160. "license": "LGPL-3.0-or-later",
  161. "optional": true,
  162. "os": [
  163. "linux"
  164. ],
  165. "funding": {
  166. "url": "https://opencollective.com/libvips"
  167. }
  168. },
  169. "node_modules/@img/sharp-libvips-linuxmusl-arm64": {
  170. "version": "1.0.4",
  171. "resolved": "https://registry.npmmirror.com/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.0.4.tgz",
  172. "integrity": "sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==",
  173. "cpu": [
  174. "arm64"
  175. ],
  176. "license": "LGPL-3.0-or-later",
  177. "optional": true,
  178. "os": [
  179. "linux"
  180. ],
  181. "funding": {
  182. "url": "https://opencollective.com/libvips"
  183. }
  184. },
  185. "node_modules/@img/sharp-libvips-linuxmusl-x64": {
  186. "version": "1.0.4",
  187. "resolved": "https://registry.npmmirror.com/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.4.tgz",
  188. "integrity": "sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==",
  189. "cpu": [
  190. "x64"
  191. ],
  192. "license": "LGPL-3.0-or-later",
  193. "optional": true,
  194. "os": [
  195. "linux"
  196. ],
  197. "funding": {
  198. "url": "https://opencollective.com/libvips"
  199. }
  200. },
  201. "node_modules/@img/sharp-linux-arm": {
  202. "version": "0.33.5",
  203. "resolved": "https://registry.npmmirror.com/@img/sharp-linux-arm/-/sharp-linux-arm-0.33.5.tgz",
  204. "integrity": "sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==",
  205. "cpu": [
  206. "arm"
  207. ],
  208. "license": "Apache-2.0",
  209. "optional": true,
  210. "os": [
  211. "linux"
  212. ],
  213. "engines": {
  214. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  215. },
  216. "funding": {
  217. "url": "https://opencollective.com/libvips"
  218. },
  219. "optionalDependencies": {
  220. "@img/sharp-libvips-linux-arm": "1.0.5"
  221. }
  222. },
  223. "node_modules/@img/sharp-linux-arm64": {
  224. "version": "0.33.5",
  225. "resolved": "https://registry.npmmirror.com/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.33.5.tgz",
  226. "integrity": "sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==",
  227. "cpu": [
  228. "arm64"
  229. ],
  230. "license": "Apache-2.0",
  231. "optional": true,
  232. "os": [
  233. "linux"
  234. ],
  235. "engines": {
  236. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  237. },
  238. "funding": {
  239. "url": "https://opencollective.com/libvips"
  240. },
  241. "optionalDependencies": {
  242. "@img/sharp-libvips-linux-arm64": "1.0.4"
  243. }
  244. },
  245. "node_modules/@img/sharp-linux-s390x": {
  246. "version": "0.33.5",
  247. "resolved": "https://registry.npmmirror.com/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.33.5.tgz",
  248. "integrity": "sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==",
  249. "cpu": [
  250. "s390x"
  251. ],
  252. "license": "Apache-2.0",
  253. "optional": true,
  254. "os": [
  255. "linux"
  256. ],
  257. "engines": {
  258. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  259. },
  260. "funding": {
  261. "url": "https://opencollective.com/libvips"
  262. },
  263. "optionalDependencies": {
  264. "@img/sharp-libvips-linux-s390x": "1.0.4"
  265. }
  266. },
  267. "node_modules/@img/sharp-linux-x64": {
  268. "version": "0.33.5",
  269. "resolved": "https://registry.npmmirror.com/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.5.tgz",
  270. "integrity": "sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==",
  271. "cpu": [
  272. "x64"
  273. ],
  274. "license": "Apache-2.0",
  275. "optional": true,
  276. "os": [
  277. "linux"
  278. ],
  279. "engines": {
  280. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  281. },
  282. "funding": {
  283. "url": "https://opencollective.com/libvips"
  284. },
  285. "optionalDependencies": {
  286. "@img/sharp-libvips-linux-x64": "1.0.4"
  287. }
  288. },
  289. "node_modules/@img/sharp-linuxmusl-arm64": {
  290. "version": "0.33.5",
  291. "resolved": "https://registry.npmmirror.com/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.33.5.tgz",
  292. "integrity": "sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==",
  293. "cpu": [
  294. "arm64"
  295. ],
  296. "license": "Apache-2.0",
  297. "optional": true,
  298. "os": [
  299. "linux"
  300. ],
  301. "engines": {
  302. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  303. },
  304. "funding": {
  305. "url": "https://opencollective.com/libvips"
  306. },
  307. "optionalDependencies": {
  308. "@img/sharp-libvips-linuxmusl-arm64": "1.0.4"
  309. }
  310. },
  311. "node_modules/@img/sharp-linuxmusl-x64": {
  312. "version": "0.33.5",
  313. "resolved": "https://registry.npmmirror.com/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.33.5.tgz",
  314. "integrity": "sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==",
  315. "cpu": [
  316. "x64"
  317. ],
  318. "license": "Apache-2.0",
  319. "optional": true,
  320. "os": [
  321. "linux"
  322. ],
  323. "engines": {
  324. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  325. },
  326. "funding": {
  327. "url": "https://opencollective.com/libvips"
  328. },
  329. "optionalDependencies": {
  330. "@img/sharp-libvips-linuxmusl-x64": "1.0.4"
  331. }
  332. },
  333. "node_modules/@img/sharp-wasm32": {
  334. "version": "0.33.5",
  335. "resolved": "https://registry.npmmirror.com/@img/sharp-wasm32/-/sharp-wasm32-0.33.5.tgz",
  336. "integrity": "sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==",
  337. "cpu": [
  338. "wasm32"
  339. ],
  340. "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT",
  341. "optional": true,
  342. "dependencies": {
  343. "@emnapi/runtime": "^1.2.0"
  344. },
  345. "engines": {
  346. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  347. },
  348. "funding": {
  349. "url": "https://opencollective.com/libvips"
  350. }
  351. },
  352. "node_modules/@img/sharp-win32-ia32": {
  353. "version": "0.33.5",
  354. "resolved": "https://registry.npmmirror.com/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.33.5.tgz",
  355. "integrity": "sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==",
  356. "cpu": [
  357. "ia32"
  358. ],
  359. "license": "Apache-2.0 AND LGPL-3.0-or-later",
  360. "optional": true,
  361. "os": [
  362. "win32"
  363. ],
  364. "engines": {
  365. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  366. },
  367. "funding": {
  368. "url": "https://opencollective.com/libvips"
  369. }
  370. },
  371. "node_modules/@img/sharp-win32-x64": {
  372. "version": "0.33.5",
  373. "resolved": "https://registry.npmmirror.com/@img/sharp-win32-x64/-/sharp-win32-x64-0.33.5.tgz",
  374. "integrity": "sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==",
  375. "cpu": [
  376. "x64"
  377. ],
  378. "license": "Apache-2.0 AND LGPL-3.0-or-later",
  379. "optional": true,
  380. "os": [
  381. "win32"
  382. ],
  383. "engines": {
  384. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  385. },
  386. "funding": {
  387. "url": "https://opencollective.com/libvips"
  388. }
  389. },
  390. "node_modules/@isaacs/cliui": {
  391. "version": "8.0.2",
  392. "resolved": "https://registry.npmmirror.com/@isaacs/cliui/-/cliui-8.0.2.tgz",
  393. "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
  394. "license": "ISC",
  395. "dependencies": {
  396. "string-width": "^5.1.2",
  397. "string-width-cjs": "npm:string-width@^4.2.0",
  398. "strip-ansi": "^7.0.1",
  399. "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
  400. "wrap-ansi": "^8.1.0",
  401. "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
  402. },
  403. "engines": {
  404. "node": ">=12"
  405. }
  406. },
  407. "node_modules/@noble/hashes": {
  408. "version": "1.8.0",
  409. "resolved": "https://registry.npmmirror.com/@noble/hashes/-/hashes-1.8.0.tgz",
  410. "integrity": "sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==",
  411. "license": "MIT",
  412. "engines": {
  413. "node": "^14.21.3 || >=16"
  414. },
  415. "funding": {
  416. "url": "https://paulmillr.com/funding/"
  417. }
  418. },
  419. "node_modules/@paralleldrive/cuid2": {
  420. "version": "2.3.1",
  421. "resolved": "https://registry.npmmirror.com/@paralleldrive/cuid2/-/cuid2-2.3.1.tgz",
  422. "integrity": "sha512-XO7cAxhnTZl0Yggq6jOgjiOHhbgcO4NqFqwSmQpjK3b6TEE6Uj/jfSk6wzYyemh3+I0sHirKSetjQwn5cZktFw==",
  423. "license": "MIT",
  424. "dependencies": {
  425. "@noble/hashes": "^1.1.5"
  426. }
  427. },
  428. "node_modules/@pkgjs/parseargs": {
  429. "version": "0.11.0",
  430. "resolved": "https://registry.npmmirror.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
  431. "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
  432. "license": "MIT",
  433. "optional": true,
  434. "engines": {
  435. "node": ">=14"
  436. }
  437. },
  438. "node_modules/abort-controller": {
  439. "version": "3.0.0",
  440. "resolved": "https://registry.npmmirror.com/abort-controller/-/abort-controller-3.0.0.tgz",
  441. "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==",
  442. "license": "MIT",
  443. "dependencies": {
  444. "event-target-shim": "^5.0.0"
  445. },
  446. "engines": {
  447. "node": ">=6.5"
  448. }
  449. },
  450. "node_modules/ansi-regex": {
  451. "version": "6.2.2",
  452. "resolved": "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-6.2.2.tgz",
  453. "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==",
  454. "license": "MIT",
  455. "engines": {
  456. "node": ">=12"
  457. },
  458. "funding": {
  459. "url": "https://github.com/chalk/ansi-regex?sponsor=1"
  460. }
  461. },
  462. "node_modules/ansi-styles": {
  463. "version": "6.2.3",
  464. "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-6.2.3.tgz",
  465. "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==",
  466. "license": "MIT",
  467. "engines": {
  468. "node": ">=12"
  469. },
  470. "funding": {
  471. "url": "https://github.com/chalk/ansi-styles?sponsor=1"
  472. }
  473. },
  474. "node_modules/archiver": {
  475. "version": "7.0.1",
  476. "resolved": "https://registry.npmmirror.com/archiver/-/archiver-7.0.1.tgz",
  477. "integrity": "sha512-ZcbTaIqJOfCc03QwD468Unz/5Ir8ATtvAHsK+FdXbDIbGfihqh9mrvdcYunQzqn4HrvWWaFyaxJhGZagaJJpPQ==",
  478. "license": "MIT",
  479. "dependencies": {
  480. "archiver-utils": "^5.0.2",
  481. "async": "^3.2.4",
  482. "buffer-crc32": "^1.0.0",
  483. "readable-stream": "^4.0.0",
  484. "readdir-glob": "^1.1.2",
  485. "tar-stream": "^3.0.0",
  486. "zip-stream": "^6.0.1"
  487. },
  488. "engines": {
  489. "node": ">= 14"
  490. }
  491. },
  492. "node_modules/archiver-utils": {
  493. "version": "5.0.2",
  494. "resolved": "https://registry.npmmirror.com/archiver-utils/-/archiver-utils-5.0.2.tgz",
  495. "integrity": "sha512-wuLJMmIBQYCsGZgYLTy5FIB2pF6Lfb6cXMSF8Qywwk3t20zWnAi7zLcQFdKQmIB8wyZpY5ER38x08GbwtR2cLA==",
  496. "license": "MIT",
  497. "dependencies": {
  498. "glob": "^10.0.0",
  499. "graceful-fs": "^4.2.0",
  500. "is-stream": "^2.0.1",
  501. "lazystream": "^1.0.0",
  502. "lodash": "^4.17.15",
  503. "normalize-path": "^3.0.0",
  504. "readable-stream": "^4.0.0"
  505. },
  506. "engines": {
  507. "node": ">= 14"
  508. }
  509. },
  510. "node_modules/asap": {
  511. "version": "2.0.6",
  512. "resolved": "https://registry.npmmirror.com/asap/-/asap-2.0.6.tgz",
  513. "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==",
  514. "license": "MIT"
  515. },
  516. "node_modules/async": {
  517. "version": "3.2.6",
  518. "resolved": "https://registry.npmmirror.com/async/-/async-3.2.6.tgz",
  519. "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==",
  520. "license": "MIT"
  521. },
  522. "node_modules/b4a": {
  523. "version": "1.7.3",
  524. "resolved": "https://registry.npmmirror.com/b4a/-/b4a-1.7.3.tgz",
  525. "integrity": "sha512-5Q2mfq2WfGuFp3uS//0s6baOJLMoVduPYVeNmDYxu5OUA1/cBfvr2RIS7vi62LdNj/urk1hfmj867I3qt6uZ7Q==",
  526. "license": "Apache-2.0",
  527. "peerDependencies": {
  528. "react-native-b4a": "*"
  529. },
  530. "peerDependenciesMeta": {
  531. "react-native-b4a": {
  532. "optional": true
  533. }
  534. }
  535. },
  536. "node_modules/balanced-match": {
  537. "version": "1.0.2",
  538. "resolved": "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz",
  539. "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
  540. "license": "MIT"
  541. },
  542. "node_modules/bare-events": {
  543. "version": "2.8.2",
  544. "resolved": "https://registry.npmmirror.com/bare-events/-/bare-events-2.8.2.tgz",
  545. "integrity": "sha512-riJjyv1/mHLIPX4RwiK+oW9/4c3TEUeORHKefKAKnZ5kyslbN+HXowtbaVEqt4IMUB7OXlfixcs6gsFeo/jhiQ==",
  546. "license": "Apache-2.0",
  547. "peerDependencies": {
  548. "bare-abort-controller": "*"
  549. },
  550. "peerDependenciesMeta": {
  551. "bare-abort-controller": {
  552. "optional": true
  553. }
  554. }
  555. },
  556. "node_modules/base64-js": {
  557. "version": "1.5.1",
  558. "resolved": "https://registry.npmmirror.com/base64-js/-/base64-js-1.5.1.tgz",
  559. "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
  560. "funding": [
  561. {
  562. "type": "github",
  563. "url": "https://github.com/sponsors/feross"
  564. },
  565. {
  566. "type": "patreon",
  567. "url": "https://www.patreon.com/feross"
  568. },
  569. {
  570. "type": "consulting",
  571. "url": "https://feross.org/support"
  572. }
  573. ],
  574. "license": "MIT"
  575. },
  576. "node_modules/better-sqlite3": {
  577. "version": "12.5.0",
  578. "resolved": "https://registry.npmmirror.com/better-sqlite3/-/better-sqlite3-12.5.0.tgz",
  579. "integrity": "sha512-WwCZ/5Diz7rsF29o27o0Gcc1Du+l7Zsv7SYtVPG0X3G/uUI1LqdxrQI7c9Hs2FWpqXXERjW9hp6g3/tH7DlVKg==",
  580. "hasInstallScript": true,
  581. "license": "MIT",
  582. "dependencies": {
  583. "bindings": "^1.5.0",
  584. "prebuild-install": "^7.1.1"
  585. },
  586. "engines": {
  587. "node": "20.x || 22.x || 23.x || 24.x || 25.x"
  588. }
  589. },
  590. "node_modules/bindings": {
  591. "version": "1.5.0",
  592. "resolved": "https://registry.npmmirror.com/bindings/-/bindings-1.5.0.tgz",
  593. "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==",
  594. "license": "MIT",
  595. "dependencies": {
  596. "file-uri-to-path": "1.0.0"
  597. }
  598. },
  599. "node_modules/bl": {
  600. "version": "4.1.0",
  601. "resolved": "https://registry.npmmirror.com/bl/-/bl-4.1.0.tgz",
  602. "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==",
  603. "license": "MIT",
  604. "dependencies": {
  605. "buffer": "^5.5.0",
  606. "inherits": "^2.0.4",
  607. "readable-stream": "^3.4.0"
  608. }
  609. },
  610. "node_modules/bl/node_modules/buffer": {
  611. "version": "5.7.1",
  612. "resolved": "https://registry.npmmirror.com/buffer/-/buffer-5.7.1.tgz",
  613. "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
  614. "funding": [
  615. {
  616. "type": "github",
  617. "url": "https://github.com/sponsors/feross"
  618. },
  619. {
  620. "type": "patreon",
  621. "url": "https://www.patreon.com/feross"
  622. },
  623. {
  624. "type": "consulting",
  625. "url": "https://feross.org/support"
  626. }
  627. ],
  628. "license": "MIT",
  629. "dependencies": {
  630. "base64-js": "^1.3.1",
  631. "ieee754": "^1.1.13"
  632. }
  633. },
  634. "node_modules/bl/node_modules/readable-stream": {
  635. "version": "3.6.2",
  636. "resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz",
  637. "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
  638. "license": "MIT",
  639. "dependencies": {
  640. "inherits": "^2.0.3",
  641. "string_decoder": "^1.1.1",
  642. "util-deprecate": "^1.0.1"
  643. },
  644. "engines": {
  645. "node": ">= 6"
  646. }
  647. },
  648. "node_modules/brace-expansion": {
  649. "version": "2.0.2",
  650. "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.0.2.tgz",
  651. "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
  652. "license": "MIT",
  653. "dependencies": {
  654. "balanced-match": "^1.0.0"
  655. }
  656. },
  657. "node_modules/buffer": {
  658. "version": "6.0.3",
  659. "resolved": "https://registry.npmmirror.com/buffer/-/buffer-6.0.3.tgz",
  660. "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
  661. "funding": [
  662. {
  663. "type": "github",
  664. "url": "https://github.com/sponsors/feross"
  665. },
  666. {
  667. "type": "patreon",
  668. "url": "https://www.patreon.com/feross"
  669. },
  670. {
  671. "type": "consulting",
  672. "url": "https://feross.org/support"
  673. }
  674. ],
  675. "license": "MIT",
  676. "dependencies": {
  677. "base64-js": "^1.3.1",
  678. "ieee754": "^1.2.1"
  679. }
  680. },
  681. "node_modules/buffer-crc32": {
  682. "version": "1.0.0",
  683. "resolved": "https://registry.npmmirror.com/buffer-crc32/-/buffer-crc32-1.0.0.tgz",
  684. "integrity": "sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==",
  685. "license": "MIT",
  686. "engines": {
  687. "node": ">=8.0.0"
  688. }
  689. },
  690. "node_modules/color": {
  691. "version": "4.2.3",
  692. "resolved": "https://registry.npmmirror.com/color/-/color-4.2.3.tgz",
  693. "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==",
  694. "license": "MIT",
  695. "dependencies": {
  696. "color-convert": "^2.0.1",
  697. "color-string": "^1.9.0"
  698. },
  699. "engines": {
  700. "node": ">=12.5.0"
  701. }
  702. },
  703. "node_modules/color-convert": {
  704. "version": "2.0.1",
  705. "resolved": "https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz",
  706. "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
  707. "license": "MIT",
  708. "dependencies": {
  709. "color-name": "~1.1.4"
  710. },
  711. "engines": {
  712. "node": ">=7.0.0"
  713. }
  714. },
  715. "node_modules/color-name": {
  716. "version": "1.1.4",
  717. "resolved": "https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz",
  718. "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
  719. "license": "MIT"
  720. },
  721. "node_modules/color-string": {
  722. "version": "1.9.1",
  723. "resolved": "https://registry.npmmirror.com/color-string/-/color-string-1.9.1.tgz",
  724. "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==",
  725. "license": "MIT",
  726. "dependencies": {
  727. "color-name": "^1.0.0",
  728. "simple-swizzle": "^0.2.2"
  729. }
  730. },
  731. "node_modules/compress-commons": {
  732. "version": "6.0.2",
  733. "resolved": "https://registry.npmmirror.com/compress-commons/-/compress-commons-6.0.2.tgz",
  734. "integrity": "sha512-6FqVXeETqWPoGcfzrXb37E50NP0LXT8kAMu5ooZayhWWdgEY4lBEEcbQNXtkuKQsGduxiIcI4gOTsxTmuq/bSg==",
  735. "license": "MIT",
  736. "dependencies": {
  737. "crc-32": "^1.2.0",
  738. "crc32-stream": "^6.0.0",
  739. "is-stream": "^2.0.1",
  740. "normalize-path": "^3.0.0",
  741. "readable-stream": "^4.0.0"
  742. },
  743. "engines": {
  744. "node": ">= 14"
  745. }
  746. },
  747. "node_modules/core-util-is": {
  748. "version": "1.0.3",
  749. "resolved": "https://registry.npmmirror.com/core-util-is/-/core-util-is-1.0.3.tgz",
  750. "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
  751. "license": "MIT"
  752. },
  753. "node_modules/crc-32": {
  754. "version": "1.2.2",
  755. "resolved": "https://registry.npmmirror.com/crc-32/-/crc-32-1.2.2.tgz",
  756. "integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==",
  757. "license": "Apache-2.0",
  758. "bin": {
  759. "crc32": "bin/crc32.njs"
  760. },
  761. "engines": {
  762. "node": ">=0.8"
  763. }
  764. },
  765. "node_modules/crc32-stream": {
  766. "version": "6.0.0",
  767. "resolved": "https://registry.npmmirror.com/crc32-stream/-/crc32-stream-6.0.0.tgz",
  768. "integrity": "sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g==",
  769. "license": "MIT",
  770. "dependencies": {
  771. "crc-32": "^1.2.0",
  772. "readable-stream": "^4.0.0"
  773. },
  774. "engines": {
  775. "node": ">= 14"
  776. }
  777. },
  778. "node_modules/cross-spawn": {
  779. "version": "7.0.6",
  780. "resolved": "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.6.tgz",
  781. "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
  782. "license": "MIT",
  783. "dependencies": {
  784. "path-key": "^3.1.0",
  785. "shebang-command": "^2.0.0",
  786. "which": "^2.0.1"
  787. },
  788. "engines": {
  789. "node": ">= 8"
  790. }
  791. },
  792. "node_modules/decompress-response": {
  793. "version": "6.0.0",
  794. "resolved": "https://registry.npmmirror.com/decompress-response/-/decompress-response-6.0.0.tgz",
  795. "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==",
  796. "license": "MIT",
  797. "dependencies": {
  798. "mimic-response": "^3.1.0"
  799. },
  800. "engines": {
  801. "node": ">=10"
  802. },
  803. "funding": {
  804. "url": "https://github.com/sponsors/sindresorhus"
  805. }
  806. },
  807. "node_modules/deep-extend": {
  808. "version": "0.6.0",
  809. "resolved": "https://registry.npmmirror.com/deep-extend/-/deep-extend-0.6.0.tgz",
  810. "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==",
  811. "license": "MIT",
  812. "engines": {
  813. "node": ">=4.0.0"
  814. }
  815. },
  816. "node_modules/detect-libc": {
  817. "version": "2.1.2",
  818. "resolved": "https://registry.npmmirror.com/detect-libc/-/detect-libc-2.1.2.tgz",
  819. "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
  820. "license": "Apache-2.0",
  821. "engines": {
  822. "node": ">=8"
  823. }
  824. },
  825. "node_modules/dezalgo": {
  826. "version": "1.0.4",
  827. "resolved": "https://registry.npmmirror.com/dezalgo/-/dezalgo-1.0.4.tgz",
  828. "integrity": "sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==",
  829. "license": "ISC",
  830. "dependencies": {
  831. "asap": "^2.0.0",
  832. "wrappy": "1"
  833. }
  834. },
  835. "node_modules/eastasianwidth": {
  836. "version": "0.2.0",
  837. "resolved": "https://registry.npmmirror.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
  838. "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
  839. "license": "MIT"
  840. },
  841. "node_modules/emoji-regex": {
  842. "version": "9.2.2",
  843. "resolved": "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-9.2.2.tgz",
  844. "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
  845. "license": "MIT"
  846. },
  847. "node_modules/end-of-stream": {
  848. "version": "1.4.5",
  849. "resolved": "https://registry.npmmirror.com/end-of-stream/-/end-of-stream-1.4.5.tgz",
  850. "integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==",
  851. "license": "MIT",
  852. "dependencies": {
  853. "once": "^1.4.0"
  854. }
  855. },
  856. "node_modules/event-target-shim": {
  857. "version": "5.0.1",
  858. "resolved": "https://registry.npmmirror.com/event-target-shim/-/event-target-shim-5.0.1.tgz",
  859. "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==",
  860. "license": "MIT",
  861. "engines": {
  862. "node": ">=6"
  863. }
  864. },
  865. "node_modules/events": {
  866. "version": "3.3.0",
  867. "resolved": "https://registry.npmmirror.com/events/-/events-3.3.0.tgz",
  868. "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==",
  869. "license": "MIT",
  870. "engines": {
  871. "node": ">=0.8.x"
  872. }
  873. },
  874. "node_modules/events-universal": {
  875. "version": "1.0.1",
  876. "resolved": "https://registry.npmmirror.com/events-universal/-/events-universal-1.0.1.tgz",
  877. "integrity": "sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw==",
  878. "license": "Apache-2.0",
  879. "dependencies": {
  880. "bare-events": "^2.7.0"
  881. }
  882. },
  883. "node_modules/expand-template": {
  884. "version": "2.0.3",
  885. "resolved": "https://registry.npmmirror.com/expand-template/-/expand-template-2.0.3.tgz",
  886. "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==",
  887. "license": "(MIT OR WTFPL)",
  888. "engines": {
  889. "node": ">=6"
  890. }
  891. },
  892. "node_modules/fast-fifo": {
  893. "version": "1.3.2",
  894. "resolved": "https://registry.npmmirror.com/fast-fifo/-/fast-fifo-1.3.2.tgz",
  895. "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==",
  896. "license": "MIT"
  897. },
  898. "node_modules/file-uri-to-path": {
  899. "version": "1.0.0",
  900. "resolved": "https://registry.npmmirror.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz",
  901. "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==",
  902. "license": "MIT"
  903. },
  904. "node_modules/foreground-child": {
  905. "version": "3.3.1",
  906. "resolved": "https://registry.npmmirror.com/foreground-child/-/foreground-child-3.3.1.tgz",
  907. "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==",
  908. "license": "ISC",
  909. "dependencies": {
  910. "cross-spawn": "^7.0.6",
  911. "signal-exit": "^4.0.1"
  912. },
  913. "engines": {
  914. "node": ">=14"
  915. },
  916. "funding": {
  917. "url": "https://github.com/sponsors/isaacs"
  918. }
  919. },
  920. "node_modules/formidable": {
  921. "version": "3.5.4",
  922. "resolved": "https://registry.npmmirror.com/formidable/-/formidable-3.5.4.tgz",
  923. "integrity": "sha512-YikH+7CUTOtP44ZTnUhR7Ic2UASBPOqmaRkRKxRbywPTe5VxF7RRCck4af9wutiZ/QKM5nME9Bie2fFaPz5Gug==",
  924. "license": "MIT",
  925. "dependencies": {
  926. "@paralleldrive/cuid2": "^2.2.2",
  927. "dezalgo": "^1.0.4",
  928. "once": "^1.4.0"
  929. },
  930. "engines": {
  931. "node": ">=14.0.0"
  932. },
  933. "funding": {
  934. "url": "https://ko-fi.com/tunnckoCore/commissions"
  935. }
  936. },
  937. "node_modules/fs-constants": {
  938. "version": "1.0.0",
  939. "resolved": "https://registry.npmmirror.com/fs-constants/-/fs-constants-1.0.0.tgz",
  940. "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==",
  941. "license": "MIT"
  942. },
  943. "node_modules/github-from-package": {
  944. "version": "0.0.0",
  945. "resolved": "https://registry.npmmirror.com/github-from-package/-/github-from-package-0.0.0.tgz",
  946. "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==",
  947. "license": "MIT"
  948. },
  949. "node_modules/glob": {
  950. "version": "10.5.0",
  951. "resolved": "https://registry.npmmirror.com/glob/-/glob-10.5.0.tgz",
  952. "integrity": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==",
  953. "license": "ISC",
  954. "dependencies": {
  955. "foreground-child": "^3.1.0",
  956. "jackspeak": "^3.1.2",
  957. "minimatch": "^9.0.4",
  958. "minipass": "^7.1.2",
  959. "package-json-from-dist": "^1.0.0",
  960. "path-scurry": "^1.11.1"
  961. },
  962. "bin": {
  963. "glob": "dist/esm/bin.mjs"
  964. },
  965. "funding": {
  966. "url": "https://github.com/sponsors/isaacs"
  967. }
  968. },
  969. "node_modules/graceful-fs": {
  970. "version": "4.2.11",
  971. "resolved": "https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.11.tgz",
  972. "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
  973. "license": "ISC"
  974. },
  975. "node_modules/ieee754": {
  976. "version": "1.2.1",
  977. "resolved": "https://registry.npmmirror.com/ieee754/-/ieee754-1.2.1.tgz",
  978. "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
  979. "funding": [
  980. {
  981. "type": "github",
  982. "url": "https://github.com/sponsors/feross"
  983. },
  984. {
  985. "type": "patreon",
  986. "url": "https://www.patreon.com/feross"
  987. },
  988. {
  989. "type": "consulting",
  990. "url": "https://feross.org/support"
  991. }
  992. ],
  993. "license": "BSD-3-Clause"
  994. },
  995. "node_modules/inherits": {
  996. "version": "2.0.4",
  997. "resolved": "https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz",
  998. "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
  999. "license": "ISC"
  1000. },
  1001. "node_modules/ini": {
  1002. "version": "1.3.8",
  1003. "resolved": "https://registry.npmmirror.com/ini/-/ini-1.3.8.tgz",
  1004. "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
  1005. "license": "ISC"
  1006. },
  1007. "node_modules/is-arrayish": {
  1008. "version": "0.3.4",
  1009. "resolved": "https://registry.npmmirror.com/is-arrayish/-/is-arrayish-0.3.4.tgz",
  1010. "integrity": "sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==",
  1011. "license": "MIT"
  1012. },
  1013. "node_modules/is-fullwidth-code-point": {
  1014. "version": "3.0.0",
  1015. "resolved": "https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
  1016. "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
  1017. "license": "MIT",
  1018. "engines": {
  1019. "node": ">=8"
  1020. }
  1021. },
  1022. "node_modules/is-stream": {
  1023. "version": "2.0.1",
  1024. "resolved": "https://registry.npmmirror.com/is-stream/-/is-stream-2.0.1.tgz",
  1025. "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
  1026. "license": "MIT",
  1027. "engines": {
  1028. "node": ">=8"
  1029. },
  1030. "funding": {
  1031. "url": "https://github.com/sponsors/sindresorhus"
  1032. }
  1033. },
  1034. "node_modules/isarray": {
  1035. "version": "1.0.0",
  1036. "resolved": "https://registry.npmmirror.com/isarray/-/isarray-1.0.0.tgz",
  1037. "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==",
  1038. "license": "MIT"
  1039. },
  1040. "node_modules/isexe": {
  1041. "version": "2.0.0",
  1042. "resolved": "https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz",
  1043. "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
  1044. "license": "ISC"
  1045. },
  1046. "node_modules/jackspeak": {
  1047. "version": "3.4.3",
  1048. "resolved": "https://registry.npmmirror.com/jackspeak/-/jackspeak-3.4.3.tgz",
  1049. "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==",
  1050. "license": "BlueOak-1.0.0",
  1051. "dependencies": {
  1052. "@isaacs/cliui": "^8.0.2"
  1053. },
  1054. "funding": {
  1055. "url": "https://github.com/sponsors/isaacs"
  1056. },
  1057. "optionalDependencies": {
  1058. "@pkgjs/parseargs": "^0.11.0"
  1059. }
  1060. },
  1061. "node_modules/lazystream": {
  1062. "version": "1.0.1",
  1063. "resolved": "https://registry.npmmirror.com/lazystream/-/lazystream-1.0.1.tgz",
  1064. "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==",
  1065. "license": "MIT",
  1066. "dependencies": {
  1067. "readable-stream": "^2.0.5"
  1068. },
  1069. "engines": {
  1070. "node": ">= 0.6.3"
  1071. }
  1072. },
  1073. "node_modules/lazystream/node_modules/readable-stream": {
  1074. "version": "2.3.8",
  1075. "resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-2.3.8.tgz",
  1076. "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
  1077. "license": "MIT",
  1078. "dependencies": {
  1079. "core-util-is": "~1.0.0",
  1080. "inherits": "~2.0.3",
  1081. "isarray": "~1.0.0",
  1082. "process-nextick-args": "~2.0.0",
  1083. "safe-buffer": "~5.1.1",
  1084. "string_decoder": "~1.1.1",
  1085. "util-deprecate": "~1.0.1"
  1086. }
  1087. },
  1088. "node_modules/lazystream/node_modules/safe-buffer": {
  1089. "version": "5.1.2",
  1090. "resolved": "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.1.2.tgz",
  1091. "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
  1092. "license": "MIT"
  1093. },
  1094. "node_modules/lazystream/node_modules/string_decoder": {
  1095. "version": "1.1.1",
  1096. "resolved": "https://registry.npmmirror.com/string_decoder/-/string_decoder-1.1.1.tgz",
  1097. "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
  1098. "license": "MIT",
  1099. "dependencies": {
  1100. "safe-buffer": "~5.1.0"
  1101. }
  1102. },
  1103. "node_modules/lodash": {
  1104. "version": "4.17.21",
  1105. "resolved": "https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz",
  1106. "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
  1107. "license": "MIT"
  1108. },
  1109. "node_modules/lru-cache": {
  1110. "version": "10.4.3",
  1111. "resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-10.4.3.tgz",
  1112. "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
  1113. "license": "ISC"
  1114. },
  1115. "node_modules/mimic-response": {
  1116. "version": "3.1.0",
  1117. "resolved": "https://registry.npmmirror.com/mimic-response/-/mimic-response-3.1.0.tgz",
  1118. "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==",
  1119. "license": "MIT",
  1120. "engines": {
  1121. "node": ">=10"
  1122. },
  1123. "funding": {
  1124. "url": "https://github.com/sponsors/sindresorhus"
  1125. }
  1126. },
  1127. "node_modules/minimatch": {
  1128. "version": "9.0.5",
  1129. "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-9.0.5.tgz",
  1130. "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
  1131. "license": "ISC",
  1132. "dependencies": {
  1133. "brace-expansion": "^2.0.1"
  1134. },
  1135. "engines": {
  1136. "node": ">=16 || 14 >=14.17"
  1137. },
  1138. "funding": {
  1139. "url": "https://github.com/sponsors/isaacs"
  1140. }
  1141. },
  1142. "node_modules/minimist": {
  1143. "version": "1.2.8",
  1144. "resolved": "https://registry.npmmirror.com/minimist/-/minimist-1.2.8.tgz",
  1145. "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
  1146. "license": "MIT",
  1147. "funding": {
  1148. "url": "https://github.com/sponsors/ljharb"
  1149. }
  1150. },
  1151. "node_modules/minipass": {
  1152. "version": "7.1.2",
  1153. "resolved": "https://registry.npmmirror.com/minipass/-/minipass-7.1.2.tgz",
  1154. "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
  1155. "license": "ISC",
  1156. "engines": {
  1157. "node": ">=16 || 14 >=14.17"
  1158. }
  1159. },
  1160. "node_modules/mkdirp-classic": {
  1161. "version": "0.5.3",
  1162. "resolved": "https://registry.npmmirror.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz",
  1163. "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==",
  1164. "license": "MIT"
  1165. },
  1166. "node_modules/napi-build-utils": {
  1167. "version": "2.0.0",
  1168. "resolved": "https://registry.npmmirror.com/napi-build-utils/-/napi-build-utils-2.0.0.tgz",
  1169. "integrity": "sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==",
  1170. "license": "MIT"
  1171. },
  1172. "node_modules/node-abi": {
  1173. "version": "3.85.0",
  1174. "resolved": "https://registry.npmmirror.com/node-abi/-/node-abi-3.85.0.tgz",
  1175. "integrity": "sha512-zsFhmbkAzwhTft6nd3VxcG0cvJsT70rL+BIGHWVq5fi6MwGrHwzqKaxXE+Hl2GmnGItnDKPPkO5/LQqjVkIdFg==",
  1176. "license": "MIT",
  1177. "dependencies": {
  1178. "semver": "^7.3.5"
  1179. },
  1180. "engines": {
  1181. "node": ">=10"
  1182. }
  1183. },
  1184. "node_modules/normalize-path": {
  1185. "version": "3.0.0",
  1186. "resolved": "https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz",
  1187. "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
  1188. "license": "MIT",
  1189. "engines": {
  1190. "node": ">=0.10.0"
  1191. }
  1192. },
  1193. "node_modules/once": {
  1194. "version": "1.4.0",
  1195. "resolved": "https://registry.npmmirror.com/once/-/once-1.4.0.tgz",
  1196. "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
  1197. "license": "ISC",
  1198. "dependencies": {
  1199. "wrappy": "1"
  1200. }
  1201. },
  1202. "node_modules/package-json-from-dist": {
  1203. "version": "1.0.1",
  1204. "resolved": "https://registry.npmmirror.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz",
  1205. "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
  1206. "license": "BlueOak-1.0.0"
  1207. },
  1208. "node_modules/path-key": {
  1209. "version": "3.1.1",
  1210. "resolved": "https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz",
  1211. "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
  1212. "license": "MIT",
  1213. "engines": {
  1214. "node": ">=8"
  1215. }
  1216. },
  1217. "node_modules/path-scurry": {
  1218. "version": "1.11.1",
  1219. "resolved": "https://registry.npmmirror.com/path-scurry/-/path-scurry-1.11.1.tgz",
  1220. "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
  1221. "license": "BlueOak-1.0.0",
  1222. "dependencies": {
  1223. "lru-cache": "^10.2.0",
  1224. "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
  1225. },
  1226. "engines": {
  1227. "node": ">=16 || 14 >=14.18"
  1228. },
  1229. "funding": {
  1230. "url": "https://github.com/sponsors/isaacs"
  1231. }
  1232. },
  1233. "node_modules/prebuild-install": {
  1234. "version": "7.1.3",
  1235. "resolved": "https://registry.npmmirror.com/prebuild-install/-/prebuild-install-7.1.3.tgz",
  1236. "integrity": "sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==",
  1237. "license": "MIT",
  1238. "dependencies": {
  1239. "detect-libc": "^2.0.0",
  1240. "expand-template": "^2.0.3",
  1241. "github-from-package": "0.0.0",
  1242. "minimist": "^1.2.3",
  1243. "mkdirp-classic": "^0.5.3",
  1244. "napi-build-utils": "^2.0.0",
  1245. "node-abi": "^3.3.0",
  1246. "pump": "^3.0.0",
  1247. "rc": "^1.2.7",
  1248. "simple-get": "^4.0.0",
  1249. "tar-fs": "^2.0.0",
  1250. "tunnel-agent": "^0.6.0"
  1251. },
  1252. "bin": {
  1253. "prebuild-install": "bin.js"
  1254. },
  1255. "engines": {
  1256. "node": ">=10"
  1257. }
  1258. },
  1259. "node_modules/process": {
  1260. "version": "0.11.10",
  1261. "resolved": "https://registry.npmmirror.com/process/-/process-0.11.10.tgz",
  1262. "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==",
  1263. "license": "MIT",
  1264. "engines": {
  1265. "node": ">= 0.6.0"
  1266. }
  1267. },
  1268. "node_modules/process-nextick-args": {
  1269. "version": "2.0.1",
  1270. "resolved": "https://registry.npmmirror.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
  1271. "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
  1272. "license": "MIT"
  1273. },
  1274. "node_modules/pump": {
  1275. "version": "3.0.3",
  1276. "resolved": "https://registry.npmmirror.com/pump/-/pump-3.0.3.tgz",
  1277. "integrity": "sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==",
  1278. "license": "MIT",
  1279. "dependencies": {
  1280. "end-of-stream": "^1.1.0",
  1281. "once": "^1.3.1"
  1282. }
  1283. },
  1284. "node_modules/rc": {
  1285. "version": "1.2.8",
  1286. "resolved": "https://registry.npmmirror.com/rc/-/rc-1.2.8.tgz",
  1287. "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==",
  1288. "license": "(BSD-2-Clause OR MIT OR Apache-2.0)",
  1289. "dependencies": {
  1290. "deep-extend": "^0.6.0",
  1291. "ini": "~1.3.0",
  1292. "minimist": "^1.2.0",
  1293. "strip-json-comments": "~2.0.1"
  1294. },
  1295. "bin": {
  1296. "rc": "cli.js"
  1297. }
  1298. },
  1299. "node_modules/readable-stream": {
  1300. "version": "4.7.0",
  1301. "resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-4.7.0.tgz",
  1302. "integrity": "sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==",
  1303. "license": "MIT",
  1304. "dependencies": {
  1305. "abort-controller": "^3.0.0",
  1306. "buffer": "^6.0.3",
  1307. "events": "^3.3.0",
  1308. "process": "^0.11.10",
  1309. "string_decoder": "^1.3.0"
  1310. },
  1311. "engines": {
  1312. "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
  1313. }
  1314. },
  1315. "node_modules/readdir-glob": {
  1316. "version": "1.1.3",
  1317. "resolved": "https://registry.npmmirror.com/readdir-glob/-/readdir-glob-1.1.3.tgz",
  1318. "integrity": "sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==",
  1319. "license": "Apache-2.0",
  1320. "dependencies": {
  1321. "minimatch": "^5.1.0"
  1322. }
  1323. },
  1324. "node_modules/readdir-glob/node_modules/minimatch": {
  1325. "version": "5.1.6",
  1326. "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-5.1.6.tgz",
  1327. "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
  1328. "license": "ISC",
  1329. "dependencies": {
  1330. "brace-expansion": "^2.0.1"
  1331. },
  1332. "engines": {
  1333. "node": ">=10"
  1334. }
  1335. },
  1336. "node_modules/safe-buffer": {
  1337. "version": "5.2.1",
  1338. "resolved": "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz",
  1339. "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
  1340. "funding": [
  1341. {
  1342. "type": "github",
  1343. "url": "https://github.com/sponsors/feross"
  1344. },
  1345. {
  1346. "type": "patreon",
  1347. "url": "https://www.patreon.com/feross"
  1348. },
  1349. {
  1350. "type": "consulting",
  1351. "url": "https://feross.org/support"
  1352. }
  1353. ],
  1354. "license": "MIT"
  1355. },
  1356. "node_modules/semver": {
  1357. "version": "7.7.3",
  1358. "resolved": "https://registry.npmmirror.com/semver/-/semver-7.7.3.tgz",
  1359. "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==",
  1360. "license": "ISC",
  1361. "bin": {
  1362. "semver": "bin/semver.js"
  1363. },
  1364. "engines": {
  1365. "node": ">=10"
  1366. }
  1367. },
  1368. "node_modules/sharp": {
  1369. "version": "0.33.5",
  1370. "resolved": "https://registry.npmmirror.com/sharp/-/sharp-0.33.5.tgz",
  1371. "integrity": "sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==",
  1372. "hasInstallScript": true,
  1373. "license": "Apache-2.0",
  1374. "dependencies": {
  1375. "color": "^4.2.3",
  1376. "detect-libc": "^2.0.3",
  1377. "semver": "^7.6.3"
  1378. },
  1379. "engines": {
  1380. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  1381. },
  1382. "funding": {
  1383. "url": "https://opencollective.com/libvips"
  1384. },
  1385. "optionalDependencies": {
  1386. "@img/sharp-darwin-arm64": "0.33.5",
  1387. "@img/sharp-darwin-x64": "0.33.5",
  1388. "@img/sharp-libvips-darwin-arm64": "1.0.4",
  1389. "@img/sharp-libvips-darwin-x64": "1.0.4",
  1390. "@img/sharp-libvips-linux-arm": "1.0.5",
  1391. "@img/sharp-libvips-linux-arm64": "1.0.4",
  1392. "@img/sharp-libvips-linux-s390x": "1.0.4",
  1393. "@img/sharp-libvips-linux-x64": "1.0.4",
  1394. "@img/sharp-libvips-linuxmusl-arm64": "1.0.4",
  1395. "@img/sharp-libvips-linuxmusl-x64": "1.0.4",
  1396. "@img/sharp-linux-arm": "0.33.5",
  1397. "@img/sharp-linux-arm64": "0.33.5",
  1398. "@img/sharp-linux-s390x": "0.33.5",
  1399. "@img/sharp-linux-x64": "0.33.5",
  1400. "@img/sharp-linuxmusl-arm64": "0.33.5",
  1401. "@img/sharp-linuxmusl-x64": "0.33.5",
  1402. "@img/sharp-wasm32": "0.33.5",
  1403. "@img/sharp-win32-ia32": "0.33.5",
  1404. "@img/sharp-win32-x64": "0.33.5"
  1405. }
  1406. },
  1407. "node_modules/shebang-command": {
  1408. "version": "2.0.0",
  1409. "resolved": "https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz",
  1410. "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
  1411. "license": "MIT",
  1412. "dependencies": {
  1413. "shebang-regex": "^3.0.0"
  1414. },
  1415. "engines": {
  1416. "node": ">=8"
  1417. }
  1418. },
  1419. "node_modules/shebang-regex": {
  1420. "version": "3.0.0",
  1421. "resolved": "https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz",
  1422. "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
  1423. "license": "MIT",
  1424. "engines": {
  1425. "node": ">=8"
  1426. }
  1427. },
  1428. "node_modules/signal-exit": {
  1429. "version": "4.1.0",
  1430. "resolved": "https://registry.npmmirror.com/signal-exit/-/signal-exit-4.1.0.tgz",
  1431. "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
  1432. "license": "ISC",
  1433. "engines": {
  1434. "node": ">=14"
  1435. },
  1436. "funding": {
  1437. "url": "https://github.com/sponsors/isaacs"
  1438. }
  1439. },
  1440. "node_modules/simple-concat": {
  1441. "version": "1.0.1",
  1442. "resolved": "https://registry.npmmirror.com/simple-concat/-/simple-concat-1.0.1.tgz",
  1443. "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==",
  1444. "funding": [
  1445. {
  1446. "type": "github",
  1447. "url": "https://github.com/sponsors/feross"
  1448. },
  1449. {
  1450. "type": "patreon",
  1451. "url": "https://www.patreon.com/feross"
  1452. },
  1453. {
  1454. "type": "consulting",
  1455. "url": "https://feross.org/support"
  1456. }
  1457. ],
  1458. "license": "MIT"
  1459. },
  1460. "node_modules/simple-get": {
  1461. "version": "4.0.1",
  1462. "resolved": "https://registry.npmmirror.com/simple-get/-/simple-get-4.0.1.tgz",
  1463. "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==",
  1464. "funding": [
  1465. {
  1466. "type": "github",
  1467. "url": "https://github.com/sponsors/feross"
  1468. },
  1469. {
  1470. "type": "patreon",
  1471. "url": "https://www.patreon.com/feross"
  1472. },
  1473. {
  1474. "type": "consulting",
  1475. "url": "https://feross.org/support"
  1476. }
  1477. ],
  1478. "license": "MIT",
  1479. "dependencies": {
  1480. "decompress-response": "^6.0.0",
  1481. "once": "^1.3.1",
  1482. "simple-concat": "^1.0.0"
  1483. }
  1484. },
  1485. "node_modules/simple-swizzle": {
  1486. "version": "0.2.4",
  1487. "resolved": "https://registry.npmmirror.com/simple-swizzle/-/simple-swizzle-0.2.4.tgz",
  1488. "integrity": "sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==",
  1489. "license": "MIT",
  1490. "dependencies": {
  1491. "is-arrayish": "^0.3.1"
  1492. }
  1493. },
  1494. "node_modules/streamx": {
  1495. "version": "2.23.0",
  1496. "resolved": "https://registry.npmmirror.com/streamx/-/streamx-2.23.0.tgz",
  1497. "integrity": "sha512-kn+e44esVfn2Fa/O0CPFcex27fjIL6MkVae0Mm6q+E6f0hWv578YCERbv+4m02cjxvDsPKLnmxral/rR6lBMAg==",
  1498. "license": "MIT",
  1499. "dependencies": {
  1500. "events-universal": "^1.0.0",
  1501. "fast-fifo": "^1.3.2",
  1502. "text-decoder": "^1.1.0"
  1503. }
  1504. },
  1505. "node_modules/string_decoder": {
  1506. "version": "1.3.0",
  1507. "resolved": "https://registry.npmmirror.com/string_decoder/-/string_decoder-1.3.0.tgz",
  1508. "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
  1509. "license": "MIT",
  1510. "dependencies": {
  1511. "safe-buffer": "~5.2.0"
  1512. }
  1513. },
  1514. "node_modules/string-width": {
  1515. "version": "5.1.2",
  1516. "resolved": "https://registry.npmmirror.com/string-width/-/string-width-5.1.2.tgz",
  1517. "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
  1518. "license": "MIT",
  1519. "dependencies": {
  1520. "eastasianwidth": "^0.2.0",
  1521. "emoji-regex": "^9.2.2",
  1522. "strip-ansi": "^7.0.1"
  1523. },
  1524. "engines": {
  1525. "node": ">=12"
  1526. },
  1527. "funding": {
  1528. "url": "https://github.com/sponsors/sindresorhus"
  1529. }
  1530. },
  1531. "node_modules/string-width-cjs": {
  1532. "name": "string-width",
  1533. "version": "4.2.3",
  1534. "resolved": "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz",
  1535. "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
  1536. "license": "MIT",
  1537. "dependencies": {
  1538. "emoji-regex": "^8.0.0",
  1539. "is-fullwidth-code-point": "^3.0.0",
  1540. "strip-ansi": "^6.0.1"
  1541. },
  1542. "engines": {
  1543. "node": ">=8"
  1544. }
  1545. },
  1546. "node_modules/string-width-cjs/node_modules/ansi-regex": {
  1547. "version": "5.0.1",
  1548. "resolved": "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz",
  1549. "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
  1550. "license": "MIT",
  1551. "engines": {
  1552. "node": ">=8"
  1553. }
  1554. },
  1555. "node_modules/string-width-cjs/node_modules/emoji-regex": {
  1556. "version": "8.0.0",
  1557. "resolved": "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz",
  1558. "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
  1559. "license": "MIT"
  1560. },
  1561. "node_modules/string-width-cjs/node_modules/strip-ansi": {
  1562. "version": "6.0.1",
  1563. "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz",
  1564. "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
  1565. "license": "MIT",
  1566. "dependencies": {
  1567. "ansi-regex": "^5.0.1"
  1568. },
  1569. "engines": {
  1570. "node": ">=8"
  1571. }
  1572. },
  1573. "node_modules/strip-ansi": {
  1574. "version": "7.1.2",
  1575. "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-7.1.2.tgz",
  1576. "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==",
  1577. "license": "MIT",
  1578. "dependencies": {
  1579. "ansi-regex": "^6.0.1"
  1580. },
  1581. "engines": {
  1582. "node": ">=12"
  1583. },
  1584. "funding": {
  1585. "url": "https://github.com/chalk/strip-ansi?sponsor=1"
  1586. }
  1587. },
  1588. "node_modules/strip-ansi-cjs": {
  1589. "name": "strip-ansi",
  1590. "version": "6.0.1",
  1591. "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz",
  1592. "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
  1593. "license": "MIT",
  1594. "dependencies": {
  1595. "ansi-regex": "^5.0.1"
  1596. },
  1597. "engines": {
  1598. "node": ">=8"
  1599. }
  1600. },
  1601. "node_modules/strip-ansi-cjs/node_modules/ansi-regex": {
  1602. "version": "5.0.1",
  1603. "resolved": "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz",
  1604. "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
  1605. "license": "MIT",
  1606. "engines": {
  1607. "node": ">=8"
  1608. }
  1609. },
  1610. "node_modules/strip-json-comments": {
  1611. "version": "2.0.1",
  1612. "resolved": "https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
  1613. "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==",
  1614. "license": "MIT",
  1615. "engines": {
  1616. "node": ">=0.10.0"
  1617. }
  1618. },
  1619. "node_modules/tar-fs": {
  1620. "version": "2.1.4",
  1621. "resolved": "https://registry.npmmirror.com/tar-fs/-/tar-fs-2.1.4.tgz",
  1622. "integrity": "sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==",
  1623. "license": "MIT",
  1624. "dependencies": {
  1625. "chownr": "^1.1.1",
  1626. "mkdirp-classic": "^0.5.2",
  1627. "pump": "^3.0.0",
  1628. "tar-stream": "^2.1.4"
  1629. }
  1630. },
  1631. "node_modules/tar-fs/node_modules/chownr": {
  1632. "version": "1.1.4",
  1633. "resolved": "https://registry.npmmirror.com/chownr/-/chownr-1.1.4.tgz",
  1634. "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==",
  1635. "license": "ISC"
  1636. },
  1637. "node_modules/tar-fs/node_modules/readable-stream": {
  1638. "version": "3.6.2",
  1639. "resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz",
  1640. "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
  1641. "license": "MIT",
  1642. "dependencies": {
  1643. "inherits": "^2.0.3",
  1644. "string_decoder": "^1.1.1",
  1645. "util-deprecate": "^1.0.1"
  1646. },
  1647. "engines": {
  1648. "node": ">= 6"
  1649. }
  1650. },
  1651. "node_modules/tar-fs/node_modules/tar-stream": {
  1652. "version": "2.2.0",
  1653. "resolved": "https://registry.npmmirror.com/tar-stream/-/tar-stream-2.2.0.tgz",
  1654. "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==",
  1655. "license": "MIT",
  1656. "dependencies": {
  1657. "bl": "^4.0.3",
  1658. "end-of-stream": "^1.4.1",
  1659. "fs-constants": "^1.0.0",
  1660. "inherits": "^2.0.3",
  1661. "readable-stream": "^3.1.1"
  1662. },
  1663. "engines": {
  1664. "node": ">=6"
  1665. }
  1666. },
  1667. "node_modules/tar-stream": {
  1668. "version": "3.1.7",
  1669. "resolved": "https://registry.npmmirror.com/tar-stream/-/tar-stream-3.1.7.tgz",
  1670. "integrity": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==",
  1671. "license": "MIT",
  1672. "dependencies": {
  1673. "b4a": "^1.6.4",
  1674. "fast-fifo": "^1.2.0",
  1675. "streamx": "^2.15.0"
  1676. }
  1677. },
  1678. "node_modules/text-decoder": {
  1679. "version": "1.2.3",
  1680. "resolved": "https://registry.npmmirror.com/text-decoder/-/text-decoder-1.2.3.tgz",
  1681. "integrity": "sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==",
  1682. "license": "Apache-2.0",
  1683. "dependencies": {
  1684. "b4a": "^1.6.4"
  1685. }
  1686. },
  1687. "node_modules/tslib": {
  1688. "version": "2.8.1",
  1689. "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.8.1.tgz",
  1690. "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
  1691. "license": "0BSD",
  1692. "optional": true
  1693. },
  1694. "node_modules/tunnel-agent": {
  1695. "version": "0.6.0",
  1696. "resolved": "https://registry.npmmirror.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
  1697. "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==",
  1698. "license": "Apache-2.0",
  1699. "dependencies": {
  1700. "safe-buffer": "^5.0.1"
  1701. },
  1702. "engines": {
  1703. "node": "*"
  1704. }
  1705. },
  1706. "node_modules/util-deprecate": {
  1707. "version": "1.0.2",
  1708. "resolved": "https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz",
  1709. "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
  1710. "license": "MIT"
  1711. },
  1712. "node_modules/which": {
  1713. "version": "2.0.2",
  1714. "resolved": "https://registry.npmmirror.com/which/-/which-2.0.2.tgz",
  1715. "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
  1716. "license": "ISC",
  1717. "dependencies": {
  1718. "isexe": "^2.0.0"
  1719. },
  1720. "bin": {
  1721. "node-which": "bin/node-which"
  1722. },
  1723. "engines": {
  1724. "node": ">= 8"
  1725. }
  1726. },
  1727. "node_modules/wrap-ansi": {
  1728. "version": "8.1.0",
  1729. "resolved": "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
  1730. "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
  1731. "license": "MIT",
  1732. "dependencies": {
  1733. "ansi-styles": "^6.1.0",
  1734. "string-width": "^5.0.1",
  1735. "strip-ansi": "^7.0.1"
  1736. },
  1737. "engines": {
  1738. "node": ">=12"
  1739. },
  1740. "funding": {
  1741. "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
  1742. }
  1743. },
  1744. "node_modules/wrap-ansi-cjs": {
  1745. "name": "wrap-ansi",
  1746. "version": "7.0.0",
  1747. "resolved": "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
  1748. "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
  1749. "license": "MIT",
  1750. "dependencies": {
  1751. "ansi-styles": "^4.0.0",
  1752. "string-width": "^4.1.0",
  1753. "strip-ansi": "^6.0.0"
  1754. },
  1755. "engines": {
  1756. "node": ">=10"
  1757. },
  1758. "funding": {
  1759. "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
  1760. }
  1761. },
  1762. "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": {
  1763. "version": "5.0.1",
  1764. "resolved": "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz",
  1765. "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
  1766. "license": "MIT",
  1767. "engines": {
  1768. "node": ">=8"
  1769. }
  1770. },
  1771. "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": {
  1772. "version": "4.3.0",
  1773. "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz",
  1774. "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
  1775. "license": "MIT",
  1776. "dependencies": {
  1777. "color-convert": "^2.0.1"
  1778. },
  1779. "engines": {
  1780. "node": ">=8"
  1781. },
  1782. "funding": {
  1783. "url": "https://github.com/chalk/ansi-styles?sponsor=1"
  1784. }
  1785. },
  1786. "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": {
  1787. "version": "8.0.0",
  1788. "resolved": "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz",
  1789. "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
  1790. "license": "MIT"
  1791. },
  1792. "node_modules/wrap-ansi-cjs/node_modules/string-width": {
  1793. "version": "4.2.3",
  1794. "resolved": "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz",
  1795. "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
  1796. "license": "MIT",
  1797. "dependencies": {
  1798. "emoji-regex": "^8.0.0",
  1799. "is-fullwidth-code-point": "^3.0.0",
  1800. "strip-ansi": "^6.0.1"
  1801. },
  1802. "engines": {
  1803. "node": ">=8"
  1804. }
  1805. },
  1806. "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": {
  1807. "version": "6.0.1",
  1808. "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz",
  1809. "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
  1810. "license": "MIT",
  1811. "dependencies": {
  1812. "ansi-regex": "^5.0.1"
  1813. },
  1814. "engines": {
  1815. "node": ">=8"
  1816. }
  1817. },
  1818. "node_modules/wrappy": {
  1819. "version": "1.0.2",
  1820. "resolved": "https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz",
  1821. "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
  1822. "license": "ISC"
  1823. },
  1824. "node_modules/ws": {
  1825. "version": "8.18.3",
  1826. "resolved": "https://registry.npmmirror.com/ws/-/ws-8.18.3.tgz",
  1827. "integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==",
  1828. "license": "MIT",
  1829. "engines": {
  1830. "node": ">=10.0.0"
  1831. },
  1832. "peerDependencies": {
  1833. "bufferutil": "^4.0.1",
  1834. "utf-8-validate": ">=5.0.2"
  1835. },
  1836. "peerDependenciesMeta": {
  1837. "bufferutil": {
  1838. "optional": true
  1839. },
  1840. "utf-8-validate": {
  1841. "optional": true
  1842. }
  1843. }
  1844. },
  1845. "node_modules/zip-stream": {
  1846. "version": "6.0.1",
  1847. "resolved": "https://registry.npmmirror.com/zip-stream/-/zip-stream-6.0.1.tgz",
  1848. "integrity": "sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA==",
  1849. "license": "MIT",
  1850. "dependencies": {
  1851. "archiver-utils": "^5.0.0",
  1852. "compress-commons": "^6.0.2",
  1853. "readable-stream": "^4.0.0"
  1854. },
  1855. "engines": {
  1856. "node": ">= 14"
  1857. }
  1858. }
  1859. }
  1860. }