package-lock.json 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984
  1. {
  2. "name": "cline-core",
  3. "version": "0.0.1",
  4. "lockfileVersion": 3,
  5. "requires": true,
  6. "packages": {
  7. "": {
  8. "name": "cline-core",
  9. "version": "0.0.1",
  10. "dependencies": {
  11. "@grpc/grpc-js": "^1.13.3",
  12. "@grpc/reflection": "^1.0.4",
  13. "better-sqlite3": "^12.4.1",
  14. "grpc-health-check": "^2.0.2",
  15. "open": "^10.1.2",
  16. "vscode-uri": "^3.1.0"
  17. }
  18. },
  19. "node_modules/@grpc/grpc-js": {
  20. "version": "1.13.3",
  21. "resolved": "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.13.3.tgz",
  22. "integrity": "sha512-FTXHdOoPbZrBjlVLHuKbDZnsTxXv2BlHF57xw6LuThXacXvtkahEPED0CKMk6obZDf65Hv4k3z62eyPNpvinIg==",
  23. "license": "Apache-2.0",
  24. "dependencies": {
  25. "@grpc/proto-loader": "^0.7.13",
  26. "@js-sdsl/ordered-map": "^4.4.2"
  27. },
  28. "engines": {
  29. "node": ">=12.10.0"
  30. }
  31. },
  32. "node_modules/@grpc/proto-loader": {
  33. "version": "0.7.15",
  34. "resolved": "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.7.15.tgz",
  35. "integrity": "sha512-tMXdRCfYVixjuFK+Hk0Q1s38gV9zDiDJfWL3h1rv4Qc39oILCu1TRTDt7+fGUI8K4G1Fj125Hx/ru3azECWTyQ==",
  36. "license": "Apache-2.0",
  37. "dependencies": {
  38. "lodash.camelcase": "^4.3.0",
  39. "long": "^5.0.0",
  40. "protobufjs": "^7.2.5",
  41. "yargs": "^17.7.2"
  42. },
  43. "bin": {
  44. "proto-loader-gen-types": "build/bin/proto-loader-gen-types.js"
  45. },
  46. "engines": {
  47. "node": ">=6"
  48. }
  49. },
  50. "node_modules/@grpc/reflection": {
  51. "version": "1.0.4",
  52. "resolved": "https://registry.npmjs.org/@grpc/reflection/-/reflection-1.0.4.tgz",
  53. "integrity": "sha512-znA8v4AviOD3OPOxy11pxrtP8k8DanpefeTymS8iGW1fVr1U2cHuzfhYqDPHnVNDf4qvF9E25KtSihPy2DBWfQ==",
  54. "license": "Apache-2.0",
  55. "dependencies": {
  56. "@grpc/proto-loader": "^0.7.13",
  57. "protobufjs": "^7.2.5"
  58. },
  59. "peerDependencies": {
  60. "@grpc/grpc-js": "^1.8.21"
  61. }
  62. },
  63. "node_modules/@js-sdsl/ordered-map": {
  64. "version": "4.4.2",
  65. "resolved": "https://registry.npmjs.org/@js-sdsl/ordered-map/-/ordered-map-4.4.2.tgz",
  66. "integrity": "sha512-iUKgm52T8HOE/makSxjqoWhe95ZJA1/G1sYsGev2JDKUSS14KAgg1LHb+Ba+IPow0xflbnSkOsZcO08C7w1gYw==",
  67. "license": "MIT",
  68. "funding": {
  69. "type": "opencollective",
  70. "url": "https://opencollective.com/js-sdsl"
  71. }
  72. },
  73. "node_modules/@protobufjs/aspromise": {
  74. "version": "1.1.2",
  75. "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz",
  76. "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==",
  77. "license": "BSD-3-Clause"
  78. },
  79. "node_modules/@protobufjs/base64": {
  80. "version": "1.1.2",
  81. "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz",
  82. "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==",
  83. "license": "BSD-3-Clause"
  84. },
  85. "node_modules/@protobufjs/codegen": {
  86. "version": "2.0.4",
  87. "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz",
  88. "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==",
  89. "license": "BSD-3-Clause"
  90. },
  91. "node_modules/@protobufjs/eventemitter": {
  92. "version": "1.1.0",
  93. "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz",
  94. "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==",
  95. "license": "BSD-3-Clause"
  96. },
  97. "node_modules/@protobufjs/fetch": {
  98. "version": "1.1.0",
  99. "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz",
  100. "integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==",
  101. "license": "BSD-3-Clause",
  102. "dependencies": {
  103. "@protobufjs/aspromise": "^1.1.1",
  104. "@protobufjs/inquire": "^1.1.0"
  105. }
  106. },
  107. "node_modules/@protobufjs/float": {
  108. "version": "1.0.2",
  109. "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz",
  110. "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==",
  111. "license": "BSD-3-Clause"
  112. },
  113. "node_modules/@protobufjs/inquire": {
  114. "version": "1.1.0",
  115. "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz",
  116. "integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==",
  117. "license": "BSD-3-Clause"
  118. },
  119. "node_modules/@protobufjs/path": {
  120. "version": "1.1.2",
  121. "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz",
  122. "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==",
  123. "license": "BSD-3-Clause"
  124. },
  125. "node_modules/@protobufjs/pool": {
  126. "version": "1.1.0",
  127. "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz",
  128. "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==",
  129. "license": "BSD-3-Clause"
  130. },
  131. "node_modules/@protobufjs/utf8": {
  132. "version": "1.1.0",
  133. "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz",
  134. "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==",
  135. "license": "BSD-3-Clause"
  136. },
  137. "node_modules/@types/node": {
  138. "version": "22.15.18",
  139. "resolved": "https://registry.npmjs.org/@types/node/-/node-22.15.18.tgz",
  140. "integrity": "sha512-v1DKRfUdyW+jJhZNEI1PYy29S2YRxMV5AOO/x/SjKmW0acCIOqmbj6Haf9eHAhsPmrhlHSxEhv/1WszcLWV4cg==",
  141. "license": "MIT",
  142. "dependencies": {
  143. "undici-types": "~6.21.0"
  144. }
  145. },
  146. "node_modules/ansi-regex": {
  147. "version": "5.0.1",
  148. "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
  149. "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
  150. "license": "MIT",
  151. "engines": {
  152. "node": ">=8"
  153. }
  154. },
  155. "node_modules/ansi-styles": {
  156. "version": "4.3.0",
  157. "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
  158. "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
  159. "license": "MIT",
  160. "dependencies": {
  161. "color-convert": "^2.0.1"
  162. },
  163. "engines": {
  164. "node": ">=8"
  165. },
  166. "funding": {
  167. "url": "https://github.com/chalk/ansi-styles?sponsor=1"
  168. }
  169. },
  170. "node_modules/b4a": {
  171. "version": "1.7.3",
  172. "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.7.3.tgz",
  173. "integrity": "sha512-5Q2mfq2WfGuFp3uS//0s6baOJLMoVduPYVeNmDYxu5OUA1/cBfvr2RIS7vi62LdNj/urk1hfmj867I3qt6uZ7Q==",
  174. "license": "Apache-2.0",
  175. "peerDependencies": {
  176. "react-native-b4a": "*"
  177. },
  178. "peerDependenciesMeta": {
  179. "react-native-b4a": {
  180. "optional": true
  181. }
  182. }
  183. },
  184. "node_modules/bare-events": {
  185. "version": "2.8.0",
  186. "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.8.0.tgz",
  187. "integrity": "sha512-AOhh6Bg5QmFIXdViHbMc2tLDsBIRxdkIaIddPslJF9Z5De3APBScuqGP2uThXnIpqFrgoxMNC6km7uXNIMLHXA==",
  188. "license": "Apache-2.0",
  189. "peerDependencies": {
  190. "bare-abort-controller": "*"
  191. },
  192. "peerDependenciesMeta": {
  193. "bare-abort-controller": {
  194. "optional": true
  195. }
  196. }
  197. },
  198. "node_modules/bare-fs": {
  199. "version": "4.4.11",
  200. "resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-4.4.11.tgz",
  201. "integrity": "sha512-Bejmm9zRMvMTRoHS+2adgmXw1ANZnCNx+B5dgZpGwlP1E3x6Yuxea8RToddHUbWtVV0iUMWqsgZr8+jcgUI2SA==",
  202. "license": "Apache-2.0",
  203. "optional": true,
  204. "dependencies": {
  205. "bare-events": "^2.5.4",
  206. "bare-path": "^3.0.0",
  207. "bare-stream": "^2.6.4",
  208. "bare-url": "^2.2.2",
  209. "fast-fifo": "^1.3.2"
  210. },
  211. "engines": {
  212. "bare": ">=1.16.0"
  213. },
  214. "peerDependencies": {
  215. "bare-buffer": "*"
  216. },
  217. "peerDependenciesMeta": {
  218. "bare-buffer": {
  219. "optional": true
  220. }
  221. }
  222. },
  223. "node_modules/bare-os": {
  224. "version": "3.6.2",
  225. "resolved": "https://registry.npmjs.org/bare-os/-/bare-os-3.6.2.tgz",
  226. "integrity": "sha512-T+V1+1srU2qYNBmJCXZkUY5vQ0B4FSlL3QDROnKQYOqeiQR8UbjNHlPa+TIbM4cuidiN9GaTaOZgSEgsvPbh5A==",
  227. "license": "Apache-2.0",
  228. "optional": true,
  229. "engines": {
  230. "bare": ">=1.14.0"
  231. }
  232. },
  233. "node_modules/bare-path": {
  234. "version": "3.0.0",
  235. "resolved": "https://registry.npmjs.org/bare-path/-/bare-path-3.0.0.tgz",
  236. "integrity": "sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==",
  237. "license": "Apache-2.0",
  238. "optional": true,
  239. "dependencies": {
  240. "bare-os": "^3.0.1"
  241. }
  242. },
  243. "node_modules/bare-stream": {
  244. "version": "2.7.0",
  245. "resolved": "https://registry.npmjs.org/bare-stream/-/bare-stream-2.7.0.tgz",
  246. "integrity": "sha512-oyXQNicV1y8nc2aKffH+BUHFRXmx6VrPzlnaEvMhram0nPBrKcEdcyBg5r08D0i8VxngHFAiVyn1QKXpSG0B8A==",
  247. "license": "Apache-2.0",
  248. "optional": true,
  249. "dependencies": {
  250. "streamx": "^2.21.0"
  251. },
  252. "peerDependencies": {
  253. "bare-buffer": "*",
  254. "bare-events": "*"
  255. },
  256. "peerDependenciesMeta": {
  257. "bare-buffer": {
  258. "optional": true
  259. },
  260. "bare-events": {
  261. "optional": true
  262. }
  263. }
  264. },
  265. "node_modules/bare-url": {
  266. "version": "2.3.1",
  267. "resolved": "https://registry.npmjs.org/bare-url/-/bare-url-2.3.1.tgz",
  268. "integrity": "sha512-v2yl0TnaZTdEnelkKtXZGnotiV6qATBlnNuUMrHl6v9Lmmrh9mw9RYyImPU7/4RahumSwQS1k2oKXcRfXcbjJw==",
  269. "license": "Apache-2.0",
  270. "optional": true,
  271. "dependencies": {
  272. "bare-path": "^3.0.0"
  273. }
  274. },
  275. "node_modules/better-sqlite3": {
  276. "version": "12.4.1",
  277. "resolved": "https://registry.npmjs.org/better-sqlite3/-/better-sqlite3-12.4.1.tgz",
  278. "integrity": "sha512-3yVdyZhklTiNrtg+4WqHpJpFDd+WHTg2oM7UcR80GqL05AOV0xEJzc6qNvFYoEtE+hRp1n9MpN6/+4yhlGkDXQ==",
  279. "hasInstallScript": true,
  280. "license": "MIT",
  281. "dependencies": {
  282. "bindings": "^1.5.0",
  283. "prebuild-install": "^7.1.1"
  284. },
  285. "engines": {
  286. "node": "20.x || 22.x || 23.x || 24.x"
  287. }
  288. },
  289. "node_modules/bindings": {
  290. "version": "1.5.0",
  291. "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz",
  292. "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==",
  293. "license": "MIT",
  294. "dependencies": {
  295. "file-uri-to-path": "1.0.0"
  296. }
  297. },
  298. "node_modules/bundle-name": {
  299. "version": "4.1.0",
  300. "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-4.1.0.tgz",
  301. "integrity": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==",
  302. "license": "MIT",
  303. "dependencies": {
  304. "run-applescript": "^7.0.0"
  305. },
  306. "engines": {
  307. "node": ">=18"
  308. },
  309. "funding": {
  310. "url": "https://github.com/sponsors/sindresorhus"
  311. }
  312. },
  313. "node_modules/cliui": {
  314. "version": "8.0.1",
  315. "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
  316. "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
  317. "license": "ISC",
  318. "dependencies": {
  319. "string-width": "^4.2.0",
  320. "strip-ansi": "^6.0.1",
  321. "wrap-ansi": "^7.0.0"
  322. },
  323. "engines": {
  324. "node": ">=12"
  325. }
  326. },
  327. "node_modules/color-convert": {
  328. "version": "2.0.1",
  329. "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
  330. "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
  331. "license": "MIT",
  332. "dependencies": {
  333. "color-name": "~1.1.4"
  334. },
  335. "engines": {
  336. "node": ">=7.0.0"
  337. }
  338. },
  339. "node_modules/color-name": {
  340. "version": "1.1.4",
  341. "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
  342. "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
  343. "license": "MIT"
  344. },
  345. "node_modules/decompress-response": {
  346. "version": "6.0.0",
  347. "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz",
  348. "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==",
  349. "license": "MIT",
  350. "dependencies": {
  351. "mimic-response": "^3.1.0"
  352. },
  353. "engines": {
  354. "node": ">=10"
  355. },
  356. "funding": {
  357. "url": "https://github.com/sponsors/sindresorhus"
  358. }
  359. },
  360. "node_modules/deep-extend": {
  361. "version": "0.6.0",
  362. "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
  363. "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==",
  364. "license": "MIT",
  365. "engines": {
  366. "node": ">=4.0.0"
  367. }
  368. },
  369. "node_modules/default-browser": {
  370. "version": "5.2.1",
  371. "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-5.2.1.tgz",
  372. "integrity": "sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==",
  373. "license": "MIT",
  374. "dependencies": {
  375. "bundle-name": "^4.1.0",
  376. "default-browser-id": "^5.0.0"
  377. },
  378. "engines": {
  379. "node": ">=18"
  380. },
  381. "funding": {
  382. "url": "https://github.com/sponsors/sindresorhus"
  383. }
  384. },
  385. "node_modules/default-browser-id": {
  386. "version": "5.0.0",
  387. "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-5.0.0.tgz",
  388. "integrity": "sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==",
  389. "license": "MIT",
  390. "engines": {
  391. "node": ">=18"
  392. },
  393. "funding": {
  394. "url": "https://github.com/sponsors/sindresorhus"
  395. }
  396. },
  397. "node_modules/define-lazy-prop": {
  398. "version": "3.0.0",
  399. "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz",
  400. "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==",
  401. "license": "MIT",
  402. "engines": {
  403. "node": ">=12"
  404. },
  405. "funding": {
  406. "url": "https://github.com/sponsors/sindresorhus"
  407. }
  408. },
  409. "node_modules/detect-libc": {
  410. "version": "2.0.4",
  411. "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.4.tgz",
  412. "integrity": "sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==",
  413. "license": "Apache-2.0",
  414. "engines": {
  415. "node": ">=8"
  416. }
  417. },
  418. "node_modules/emoji-regex": {
  419. "version": "8.0.0",
  420. "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
  421. "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
  422. "license": "MIT"
  423. },
  424. "node_modules/end-of-stream": {
  425. "version": "1.4.5",
  426. "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz",
  427. "integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==",
  428. "license": "MIT",
  429. "dependencies": {
  430. "once": "^1.4.0"
  431. }
  432. },
  433. "node_modules/escalade": {
  434. "version": "3.2.0",
  435. "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
  436. "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
  437. "license": "MIT",
  438. "engines": {
  439. "node": ">=6"
  440. }
  441. },
  442. "node_modules/events-universal": {
  443. "version": "1.0.1",
  444. "resolved": "https://registry.npmjs.org/events-universal/-/events-universal-1.0.1.tgz",
  445. "integrity": "sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw==",
  446. "license": "Apache-2.0",
  447. "dependencies": {
  448. "bare-events": "^2.7.0"
  449. }
  450. },
  451. "node_modules/expand-template": {
  452. "version": "2.0.3",
  453. "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz",
  454. "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==",
  455. "license": "(MIT OR WTFPL)",
  456. "engines": {
  457. "node": ">=6"
  458. }
  459. },
  460. "node_modules/fast-fifo": {
  461. "version": "1.3.2",
  462. "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz",
  463. "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==",
  464. "license": "MIT"
  465. },
  466. "node_modules/file-uri-to-path": {
  467. "version": "1.0.0",
  468. "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz",
  469. "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==",
  470. "license": "MIT"
  471. },
  472. "node_modules/get-caller-file": {
  473. "version": "2.0.5",
  474. "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
  475. "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
  476. "license": "ISC",
  477. "engines": {
  478. "node": "6.* || 8.* || >= 10.*"
  479. }
  480. },
  481. "node_modules/github-from-package": {
  482. "version": "0.0.0",
  483. "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz",
  484. "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==",
  485. "license": "MIT"
  486. },
  487. "node_modules/grpc-health-check": {
  488. "version": "2.0.2",
  489. "resolved": "https://registry.npmjs.org/grpc-health-check/-/grpc-health-check-2.0.2.tgz",
  490. "integrity": "sha512-5XKOdg/gIlTsZZR+8QJjzmW2CHBnn+NfM8zevIpzg+96i9dAuoH+Guu/L/5vuUkSbVZG69wVPnLpEnW+Smon1A==",
  491. "license": "Apache-2.0",
  492. "dependencies": {
  493. "@grpc/proto-loader": "^0.7.13"
  494. }
  495. },
  496. "node_modules/ini": {
  497. "version": "1.3.8",
  498. "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
  499. "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
  500. "license": "ISC"
  501. },
  502. "node_modules/is-docker": {
  503. "version": "3.0.0",
  504. "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz",
  505. "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==",
  506. "license": "MIT",
  507. "bin": {
  508. "is-docker": "cli.js"
  509. },
  510. "engines": {
  511. "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
  512. },
  513. "funding": {
  514. "url": "https://github.com/sponsors/sindresorhus"
  515. }
  516. },
  517. "node_modules/is-fullwidth-code-point": {
  518. "version": "3.0.0",
  519. "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
  520. "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
  521. "license": "MIT",
  522. "engines": {
  523. "node": ">=8"
  524. }
  525. },
  526. "node_modules/is-inside-container": {
  527. "version": "1.0.0",
  528. "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz",
  529. "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==",
  530. "license": "MIT",
  531. "dependencies": {
  532. "is-docker": "^3.0.0"
  533. },
  534. "bin": {
  535. "is-inside-container": "cli.js"
  536. },
  537. "engines": {
  538. "node": ">=14.16"
  539. },
  540. "funding": {
  541. "url": "https://github.com/sponsors/sindresorhus"
  542. }
  543. },
  544. "node_modules/is-wsl": {
  545. "version": "3.1.0",
  546. "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz",
  547. "integrity": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==",
  548. "license": "MIT",
  549. "dependencies": {
  550. "is-inside-container": "^1.0.0"
  551. },
  552. "engines": {
  553. "node": ">=16"
  554. },
  555. "funding": {
  556. "url": "https://github.com/sponsors/sindresorhus"
  557. }
  558. },
  559. "node_modules/lodash.camelcase": {
  560. "version": "4.3.0",
  561. "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz",
  562. "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==",
  563. "license": "MIT"
  564. },
  565. "node_modules/long": {
  566. "version": "5.3.2",
  567. "resolved": "https://registry.npmjs.org/long/-/long-5.3.2.tgz",
  568. "integrity": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==",
  569. "license": "Apache-2.0"
  570. },
  571. "node_modules/mimic-response": {
  572. "version": "3.1.0",
  573. "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz",
  574. "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==",
  575. "license": "MIT",
  576. "engines": {
  577. "node": ">=10"
  578. },
  579. "funding": {
  580. "url": "https://github.com/sponsors/sindresorhus"
  581. }
  582. },
  583. "node_modules/minimist": {
  584. "version": "1.2.8",
  585. "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
  586. "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
  587. "license": "MIT",
  588. "funding": {
  589. "url": "https://github.com/sponsors/ljharb"
  590. }
  591. },
  592. "node_modules/mkdirp-classic": {
  593. "version": "0.5.3",
  594. "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz",
  595. "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==",
  596. "license": "MIT"
  597. },
  598. "node_modules/napi-build-utils": {
  599. "version": "2.0.0",
  600. "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-2.0.0.tgz",
  601. "integrity": "sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==",
  602. "license": "MIT"
  603. },
  604. "node_modules/node-abi": {
  605. "version": "3.77.0",
  606. "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.77.0.tgz",
  607. "integrity": "sha512-DSmt0OEcLoK4i3NuscSbGjOf3bqiDEutejqENSplMSFA/gmB8mkED9G4pKWnPl7MDU4rSHebKPHeitpDfyH0cQ==",
  608. "license": "MIT",
  609. "dependencies": {
  610. "semver": "^7.3.5"
  611. },
  612. "engines": {
  613. "node": ">=10"
  614. }
  615. },
  616. "node_modules/once": {
  617. "version": "1.4.0",
  618. "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
  619. "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
  620. "license": "ISC",
  621. "dependencies": {
  622. "wrappy": "1"
  623. }
  624. },
  625. "node_modules/open": {
  626. "version": "10.1.2",
  627. "resolved": "https://registry.npmjs.org/open/-/open-10.1.2.tgz",
  628. "integrity": "sha512-cxN6aIDPz6rm8hbebcP7vrQNhvRcveZoJU72Y7vskh4oIm+BZwBECnx5nTmrlres1Qapvx27Qo1Auukpf8PKXw==",
  629. "license": "MIT",
  630. "dependencies": {
  631. "default-browser": "^5.2.1",
  632. "define-lazy-prop": "^3.0.0",
  633. "is-inside-container": "^1.0.0",
  634. "is-wsl": "^3.1.0"
  635. },
  636. "engines": {
  637. "node": ">=18"
  638. },
  639. "funding": {
  640. "url": "https://github.com/sponsors/sindresorhus"
  641. }
  642. },
  643. "node_modules/prebuild-install": {
  644. "version": "7.1.3",
  645. "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.3.tgz",
  646. "integrity": "sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==",
  647. "license": "MIT",
  648. "dependencies": {
  649. "detect-libc": "^2.0.0",
  650. "expand-template": "^2.0.3",
  651. "github-from-package": "0.0.0",
  652. "minimist": "^1.2.3",
  653. "mkdirp-classic": "^0.5.3",
  654. "napi-build-utils": "^2.0.0",
  655. "node-abi": "^3.3.0",
  656. "pump": "^3.0.0",
  657. "rc": "^1.2.7",
  658. "simple-get": "^4.0.0",
  659. "tar-fs": "^2.0.0",
  660. "tunnel-agent": "^0.6.0"
  661. },
  662. "bin": {
  663. "prebuild-install": "bin.js"
  664. },
  665. "engines": {
  666. "node": ">=10"
  667. }
  668. },
  669. "node_modules/protobufjs": {
  670. "version": "7.5.2",
  671. "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.5.2.tgz",
  672. "integrity": "sha512-f2ls6rpO6G153Cy+o2XQ+Y0sARLOZ17+OGVLHrc3VUKcLHYKEKWbkSujdBWQXM7gKn5NTfp0XnRPZn1MIu8n9w==",
  673. "hasInstallScript": true,
  674. "license": "BSD-3-Clause",
  675. "dependencies": {
  676. "@protobufjs/aspromise": "^1.1.2",
  677. "@protobufjs/base64": "^1.1.2",
  678. "@protobufjs/codegen": "^2.0.4",
  679. "@protobufjs/eventemitter": "^1.1.0",
  680. "@protobufjs/fetch": "^1.1.0",
  681. "@protobufjs/float": "^1.0.2",
  682. "@protobufjs/inquire": "^1.1.0",
  683. "@protobufjs/path": "^1.1.2",
  684. "@protobufjs/pool": "^1.1.0",
  685. "@protobufjs/utf8": "^1.1.0",
  686. "@types/node": ">=13.7.0",
  687. "long": "^5.0.0"
  688. },
  689. "engines": {
  690. "node": ">=12.0.0"
  691. }
  692. },
  693. "node_modules/pump": {
  694. "version": "3.0.3",
  695. "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.3.tgz",
  696. "integrity": "sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==",
  697. "license": "MIT",
  698. "dependencies": {
  699. "end-of-stream": "^1.1.0",
  700. "once": "^1.3.1"
  701. }
  702. },
  703. "node_modules/rc": {
  704. "version": "1.2.8",
  705. "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz",
  706. "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==",
  707. "license": "(BSD-2-Clause OR MIT OR Apache-2.0)",
  708. "dependencies": {
  709. "deep-extend": "^0.6.0",
  710. "ini": "~1.3.0",
  711. "minimist": "^1.2.0",
  712. "strip-json-comments": "~2.0.1"
  713. },
  714. "bin": {
  715. "rc": "cli.js"
  716. }
  717. },
  718. "node_modules/require-directory": {
  719. "version": "2.1.1",
  720. "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
  721. "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
  722. "license": "MIT",
  723. "engines": {
  724. "node": ">=0.10.0"
  725. }
  726. },
  727. "node_modules/run-applescript": {
  728. "version": "7.0.0",
  729. "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-7.0.0.tgz",
  730. "integrity": "sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==",
  731. "license": "MIT",
  732. "engines": {
  733. "node": ">=18"
  734. },
  735. "funding": {
  736. "url": "https://github.com/sponsors/sindresorhus"
  737. }
  738. },
  739. "node_modules/safe-buffer": {
  740. "version": "5.2.1",
  741. "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
  742. "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
  743. "funding": [
  744. {
  745. "type": "github",
  746. "url": "https://github.com/sponsors/feross"
  747. },
  748. {
  749. "type": "patreon",
  750. "url": "https://www.patreon.com/feross"
  751. },
  752. {
  753. "type": "consulting",
  754. "url": "https://feross.org/support"
  755. }
  756. ],
  757. "license": "MIT"
  758. },
  759. "node_modules/semver": {
  760. "version": "7.7.2",
  761. "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz",
  762. "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==",
  763. "license": "ISC",
  764. "bin": {
  765. "semver": "bin/semver.js"
  766. },
  767. "engines": {
  768. "node": ">=10"
  769. }
  770. },
  771. "node_modules/simple-concat": {
  772. "version": "1.0.1",
  773. "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz",
  774. "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==",
  775. "funding": [
  776. {
  777. "type": "github",
  778. "url": "https://github.com/sponsors/feross"
  779. },
  780. {
  781. "type": "patreon",
  782. "url": "https://www.patreon.com/feross"
  783. },
  784. {
  785. "type": "consulting",
  786. "url": "https://feross.org/support"
  787. }
  788. ],
  789. "license": "MIT"
  790. },
  791. "node_modules/simple-get": {
  792. "version": "4.0.1",
  793. "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz",
  794. "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==",
  795. "funding": [
  796. {
  797. "type": "github",
  798. "url": "https://github.com/sponsors/feross"
  799. },
  800. {
  801. "type": "patreon",
  802. "url": "https://www.patreon.com/feross"
  803. },
  804. {
  805. "type": "consulting",
  806. "url": "https://feross.org/support"
  807. }
  808. ],
  809. "license": "MIT",
  810. "dependencies": {
  811. "decompress-response": "^6.0.0",
  812. "once": "^1.3.1",
  813. "simple-concat": "^1.0.0"
  814. }
  815. },
  816. "node_modules/streamx": {
  817. "version": "2.23.0",
  818. "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.23.0.tgz",
  819. "integrity": "sha512-kn+e44esVfn2Fa/O0CPFcex27fjIL6MkVae0Mm6q+E6f0hWv578YCERbv+4m02cjxvDsPKLnmxral/rR6lBMAg==",
  820. "license": "MIT",
  821. "dependencies": {
  822. "events-universal": "^1.0.0",
  823. "fast-fifo": "^1.3.2",
  824. "text-decoder": "^1.1.0"
  825. }
  826. },
  827. "node_modules/string-width": {
  828. "version": "4.2.3",
  829. "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
  830. "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
  831. "license": "MIT",
  832. "dependencies": {
  833. "emoji-regex": "^8.0.0",
  834. "is-fullwidth-code-point": "^3.0.0",
  835. "strip-ansi": "^6.0.1"
  836. },
  837. "engines": {
  838. "node": ">=8"
  839. }
  840. },
  841. "node_modules/strip-ansi": {
  842. "version": "6.0.1",
  843. "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
  844. "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
  845. "license": "MIT",
  846. "dependencies": {
  847. "ansi-regex": "^5.0.1"
  848. },
  849. "engines": {
  850. "node": ">=8"
  851. }
  852. },
  853. "node_modules/strip-json-comments": {
  854. "version": "2.0.1",
  855. "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
  856. "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==",
  857. "license": "MIT",
  858. "engines": {
  859. "node": ">=0.10.0"
  860. }
  861. },
  862. "node_modules/tar-fs": {
  863. "version": "3.1.1",
  864. "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.1.1.tgz",
  865. "integrity": "sha512-LZA0oaPOc2fVo82Txf3gw+AkEd38szODlptMYejQUhndHMLQ9M059uXR+AfS7DNo0NpINvSqDsvyaCrBVkptWg==",
  866. "license": "MIT",
  867. "dependencies": {
  868. "pump": "^3.0.0",
  869. "tar-stream": "^3.1.5"
  870. },
  871. "optionalDependencies": {
  872. "bare-fs": "^4.0.1",
  873. "bare-path": "^3.0.0"
  874. }
  875. },
  876. "node_modules/tar-stream": {
  877. "version": "3.1.7",
  878. "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.7.tgz",
  879. "integrity": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==",
  880. "license": "MIT",
  881. "dependencies": {
  882. "b4a": "^1.6.4",
  883. "fast-fifo": "^1.2.0",
  884. "streamx": "^2.15.0"
  885. }
  886. },
  887. "node_modules/text-decoder": {
  888. "version": "1.2.3",
  889. "resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.2.3.tgz",
  890. "integrity": "sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==",
  891. "license": "Apache-2.0",
  892. "dependencies": {
  893. "b4a": "^1.6.4"
  894. }
  895. },
  896. "node_modules/tunnel-agent": {
  897. "version": "0.6.0",
  898. "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
  899. "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==",
  900. "license": "Apache-2.0",
  901. "dependencies": {
  902. "safe-buffer": "^5.0.1"
  903. },
  904. "engines": {
  905. "node": "*"
  906. }
  907. },
  908. "node_modules/undici-types": {
  909. "version": "6.21.0",
  910. "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
  911. "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
  912. "license": "MIT"
  913. },
  914. "node_modules/vscode-uri": {
  915. "version": "3.1.0",
  916. "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.1.0.tgz",
  917. "integrity": "sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==",
  918. "license": "MIT"
  919. },
  920. "node_modules/wrap-ansi": {
  921. "version": "7.0.0",
  922. "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
  923. "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
  924. "license": "MIT",
  925. "dependencies": {
  926. "ansi-styles": "^4.0.0",
  927. "string-width": "^4.1.0",
  928. "strip-ansi": "^6.0.0"
  929. },
  930. "engines": {
  931. "node": ">=10"
  932. },
  933. "funding": {
  934. "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
  935. }
  936. },
  937. "node_modules/wrappy": {
  938. "version": "1.0.2",
  939. "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
  940. "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
  941. "license": "ISC"
  942. },
  943. "node_modules/y18n": {
  944. "version": "5.0.8",
  945. "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
  946. "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
  947. "license": "ISC",
  948. "engines": {
  949. "node": ">=10"
  950. }
  951. },
  952. "node_modules/yargs": {
  953. "version": "17.7.2",
  954. "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
  955. "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
  956. "license": "MIT",
  957. "dependencies": {
  958. "cliui": "^8.0.1",
  959. "escalade": "^3.1.1",
  960. "get-caller-file": "^2.0.5",
  961. "require-directory": "^2.1.1",
  962. "string-width": "^4.2.3",
  963. "y18n": "^5.0.5",
  964. "yargs-parser": "^21.1.1"
  965. },
  966. "engines": {
  967. "node": ">=12"
  968. }
  969. },
  970. "node_modules/yargs-parser": {
  971. "version": "21.1.1",
  972. "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
  973. "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
  974. "license": "ISC",
  975. "engines": {
  976. "node": ">=12"
  977. }
  978. },
  979. "vscode": {
  980. "version": "1.0.0",
  981. "extraneous": true
  982. }
  983. }
  984. }