package-lock.json 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312
  1. {
  2. "name": "vsix-cp-ai-ctx",
  3. "version": "0.2.2",
  4. "lockfileVersion": 3,
  5. "requires": true,
  6. "packages": {
  7. "": {
  8. "name": "vsix-cp-ai-ctx",
  9. "version": "0.2.2",
  10. "devDependencies": {
  11. "@types/node": "^20.0.0",
  12. "@types/vscode": "^1.85.0",
  13. "@typescript-eslint/eslint-plugin": "^6.0.0",
  14. "@typescript-eslint/parser": "^6.0.0",
  15. "@vscode/vsce": "^2.19.0",
  16. "esbuild": "^0.20.0",
  17. "eslint": "^8.56.0",
  18. "typescript": "^5.3.0"
  19. },
  20. "engines": {
  21. "vscode": "^1.85.0"
  22. }
  23. },
  24. "node_modules/@esbuild/linux-x64": {
  25. "version": "0.20.2",
  26. "cpu": [
  27. "x64"
  28. ],
  29. "dev": true,
  30. "license": "MIT",
  31. "optional": true,
  32. "os": [
  33. "linux"
  34. ],
  35. "engines": {
  36. "node": ">=12"
  37. }
  38. },
  39. "node_modules/@eslint-community/eslint-utils": {
  40. "version": "4.9.1",
  41. "dev": true,
  42. "license": "MIT",
  43. "dependencies": {
  44. "eslint-visitor-keys": "^3.4.3"
  45. },
  46. "engines": {
  47. "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
  48. },
  49. "funding": {
  50. "url": "https://opencollective.com/eslint"
  51. },
  52. "peerDependencies": {
  53. "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
  54. }
  55. },
  56. "node_modules/@eslint-community/regexpp": {
  57. "version": "4.12.2",
  58. "dev": true,
  59. "license": "MIT",
  60. "engines": {
  61. "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
  62. }
  63. },
  64. "node_modules/@eslint/eslintrc": {
  65. "version": "2.1.4",
  66. "dev": true,
  67. "license": "MIT",
  68. "dependencies": {
  69. "ajv": "^6.12.4",
  70. "debug": "^4.3.2",
  71. "espree": "^9.6.0",
  72. "globals": "^13.19.0",
  73. "ignore": "^5.2.0",
  74. "import-fresh": "^3.2.1",
  75. "js-yaml": "^4.1.0",
  76. "minimatch": "^3.1.2",
  77. "strip-json-comments": "^3.1.1"
  78. },
  79. "engines": {
  80. "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
  81. },
  82. "funding": {
  83. "url": "https://opencollective.com/eslint"
  84. }
  85. },
  86. "node_modules/@eslint/eslintrc/node_modules/brace-expansion": {
  87. "version": "1.1.16",
  88. "dev": true,
  89. "license": "MIT",
  90. "dependencies": {
  91. "balanced-match": "^1.0.0",
  92. "concat-map": "0.0.1"
  93. }
  94. },
  95. "node_modules/@eslint/eslintrc/node_modules/minimatch": {
  96. "version": "3.1.5",
  97. "dev": true,
  98. "license": "ISC",
  99. "dependencies": {
  100. "brace-expansion": "^1.1.7"
  101. },
  102. "engines": {
  103. "node": "*"
  104. }
  105. },
  106. "node_modules/@eslint/js": {
  107. "version": "8.57.1",
  108. "dev": true,
  109. "license": "MIT",
  110. "engines": {
  111. "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
  112. }
  113. },
  114. "node_modules/@humanwhocodes/config-array": {
  115. "version": "0.13.0",
  116. "dev": true,
  117. "license": "Apache-2.0",
  118. "dependencies": {
  119. "@humanwhocodes/object-schema": "^2.0.3",
  120. "debug": "^4.3.1",
  121. "minimatch": "^3.0.5"
  122. },
  123. "engines": {
  124. "node": ">=10.10.0"
  125. }
  126. },
  127. "node_modules/@humanwhocodes/config-array/node_modules/brace-expansion": {
  128. "version": "1.1.16",
  129. "dev": true,
  130. "license": "MIT",
  131. "dependencies": {
  132. "balanced-match": "^1.0.0",
  133. "concat-map": "0.0.1"
  134. }
  135. },
  136. "node_modules/@humanwhocodes/config-array/node_modules/minimatch": {
  137. "version": "3.1.5",
  138. "dev": true,
  139. "license": "ISC",
  140. "dependencies": {
  141. "brace-expansion": "^1.1.7"
  142. },
  143. "engines": {
  144. "node": "*"
  145. }
  146. },
  147. "node_modules/@humanwhocodes/module-importer": {
  148. "version": "1.0.1",
  149. "dev": true,
  150. "license": "Apache-2.0",
  151. "engines": {
  152. "node": ">=12.22"
  153. },
  154. "funding": {
  155. "type": "github",
  156. "url": "https://github.com/sponsors/nzakas"
  157. }
  158. },
  159. "node_modules/@humanwhocodes/object-schema": {
  160. "version": "2.0.3",
  161. "dev": true,
  162. "license": "BSD-3-Clause"
  163. },
  164. "node_modules/@nodelib/fs.scandir": {
  165. "version": "2.1.5",
  166. "dev": true,
  167. "license": "MIT",
  168. "dependencies": {
  169. "@nodelib/fs.stat": "2.0.5",
  170. "run-parallel": "^1.1.9"
  171. },
  172. "engines": {
  173. "node": ">= 8"
  174. }
  175. },
  176. "node_modules/@nodelib/fs.stat": {
  177. "version": "2.0.5",
  178. "dev": true,
  179. "license": "MIT",
  180. "engines": {
  181. "node": ">= 8"
  182. }
  183. },
  184. "node_modules/@nodelib/fs.walk": {
  185. "version": "1.2.8",
  186. "dev": true,
  187. "license": "MIT",
  188. "dependencies": {
  189. "@nodelib/fs.scandir": "2.1.5",
  190. "fastq": "^1.6.0"
  191. },
  192. "engines": {
  193. "node": ">= 8"
  194. }
  195. },
  196. "node_modules/@types/json-schema": {
  197. "version": "7.0.15",
  198. "dev": true,
  199. "license": "MIT"
  200. },
  201. "node_modules/@types/node": {
  202. "version": "20.19.43",
  203. "dev": true,
  204. "license": "MIT",
  205. "dependencies": {
  206. "undici-types": "~6.21.0"
  207. }
  208. },
  209. "node_modules/@types/semver": {
  210. "version": "7.7.1",
  211. "dev": true,
  212. "license": "MIT"
  213. },
  214. "node_modules/@types/vscode": {
  215. "version": "1.125.0",
  216. "dev": true,
  217. "license": "MIT"
  218. },
  219. "node_modules/@typescript-eslint/eslint-plugin": {
  220. "version": "6.21.0",
  221. "dev": true,
  222. "license": "MIT",
  223. "dependencies": {
  224. "@eslint-community/regexpp": "^4.5.1",
  225. "@typescript-eslint/scope-manager": "6.21.0",
  226. "@typescript-eslint/type-utils": "6.21.0",
  227. "@typescript-eslint/utils": "6.21.0",
  228. "@typescript-eslint/visitor-keys": "6.21.0",
  229. "debug": "^4.3.4",
  230. "graphemer": "^1.4.0",
  231. "ignore": "^5.2.4",
  232. "natural-compare": "^1.4.0",
  233. "semver": "^7.5.4",
  234. "ts-api-utils": "^1.0.1"
  235. },
  236. "engines": {
  237. "node": "^16.0.0 || >=18.0.0"
  238. },
  239. "funding": {
  240. "type": "opencollective",
  241. "url": "https://opencollective.com/typescript-eslint"
  242. },
  243. "peerDependencies": {
  244. "@typescript-eslint/parser": "^6.0.0 || ^6.0.0-alpha",
  245. "eslint": "^7.0.0 || ^8.0.0"
  246. },
  247. "peerDependenciesMeta": {
  248. "typescript": {
  249. "optional": true
  250. }
  251. }
  252. },
  253. "node_modules/@typescript-eslint/parser": {
  254. "version": "6.21.0",
  255. "dev": true,
  256. "license": "BSD-2-Clause",
  257. "dependencies": {
  258. "@typescript-eslint/scope-manager": "6.21.0",
  259. "@typescript-eslint/types": "6.21.0",
  260. "@typescript-eslint/typescript-estree": "6.21.0",
  261. "@typescript-eslint/visitor-keys": "6.21.0",
  262. "debug": "^4.3.4"
  263. },
  264. "engines": {
  265. "node": "^16.0.0 || >=18.0.0"
  266. },
  267. "funding": {
  268. "type": "opencollective",
  269. "url": "https://opencollective.com/typescript-eslint"
  270. },
  271. "peerDependencies": {
  272. "eslint": "^7.0.0 || ^8.0.0"
  273. },
  274. "peerDependenciesMeta": {
  275. "typescript": {
  276. "optional": true
  277. }
  278. }
  279. },
  280. "node_modules/@typescript-eslint/scope-manager": {
  281. "version": "6.21.0",
  282. "dev": true,
  283. "license": "MIT",
  284. "dependencies": {
  285. "@typescript-eslint/types": "6.21.0",
  286. "@typescript-eslint/visitor-keys": "6.21.0"
  287. },
  288. "engines": {
  289. "node": "^16.0.0 || >=18.0.0"
  290. },
  291. "funding": {
  292. "type": "opencollective",
  293. "url": "https://opencollective.com/typescript-eslint"
  294. }
  295. },
  296. "node_modules/@typescript-eslint/type-utils": {
  297. "version": "6.21.0",
  298. "dev": true,
  299. "license": "MIT",
  300. "dependencies": {
  301. "@typescript-eslint/typescript-estree": "6.21.0",
  302. "@typescript-eslint/utils": "6.21.0",
  303. "debug": "^4.3.4",
  304. "ts-api-utils": "^1.0.1"
  305. },
  306. "engines": {
  307. "node": "^16.0.0 || >=18.0.0"
  308. },
  309. "funding": {
  310. "type": "opencollective",
  311. "url": "https://opencollective.com/typescript-eslint"
  312. },
  313. "peerDependencies": {
  314. "eslint": "^7.0.0 || ^8.0.0"
  315. },
  316. "peerDependenciesMeta": {
  317. "typescript": {
  318. "optional": true
  319. }
  320. }
  321. },
  322. "node_modules/@typescript-eslint/types": {
  323. "version": "6.21.0",
  324. "dev": true,
  325. "license": "MIT",
  326. "engines": {
  327. "node": "^16.0.0 || >=18.0.0"
  328. },
  329. "funding": {
  330. "type": "opencollective",
  331. "url": "https://opencollective.com/typescript-eslint"
  332. }
  333. },
  334. "node_modules/@typescript-eslint/typescript-estree": {
  335. "version": "6.21.0",
  336. "dev": true,
  337. "license": "BSD-2-Clause",
  338. "dependencies": {
  339. "@typescript-eslint/types": "6.21.0",
  340. "@typescript-eslint/visitor-keys": "6.21.0",
  341. "debug": "^4.3.4",
  342. "globby": "^11.1.0",
  343. "is-glob": "^4.0.3",
  344. "minimatch": "9.0.3",
  345. "semver": "^7.5.4",
  346. "ts-api-utils": "^1.0.1"
  347. },
  348. "engines": {
  349. "node": "^16.0.0 || >=18.0.0"
  350. },
  351. "funding": {
  352. "type": "opencollective",
  353. "url": "https://opencollective.com/typescript-eslint"
  354. },
  355. "peerDependenciesMeta": {
  356. "typescript": {
  357. "optional": true
  358. }
  359. }
  360. },
  361. "node_modules/@typescript-eslint/utils": {
  362. "version": "6.21.0",
  363. "dev": true,
  364. "license": "MIT",
  365. "dependencies": {
  366. "@eslint-community/eslint-utils": "^4.4.0",
  367. "@types/json-schema": "^7.0.12",
  368. "@types/semver": "^7.5.0",
  369. "@typescript-eslint/scope-manager": "6.21.0",
  370. "@typescript-eslint/types": "6.21.0",
  371. "@typescript-eslint/typescript-estree": "6.21.0",
  372. "semver": "^7.5.4"
  373. },
  374. "engines": {
  375. "node": "^16.0.0 || >=18.0.0"
  376. },
  377. "funding": {
  378. "type": "opencollective",
  379. "url": "https://opencollective.com/typescript-eslint"
  380. },
  381. "peerDependencies": {
  382. "eslint": "^7.0.0 || ^8.0.0"
  383. }
  384. },
  385. "node_modules/@typescript-eslint/visitor-keys": {
  386. "version": "6.21.0",
  387. "dev": true,
  388. "license": "MIT",
  389. "dependencies": {
  390. "@typescript-eslint/types": "6.21.0",
  391. "eslint-visitor-keys": "^3.4.1"
  392. },
  393. "engines": {
  394. "node": "^16.0.0 || >=18.0.0"
  395. },
  396. "funding": {
  397. "type": "opencollective",
  398. "url": "https://opencollective.com/typescript-eslint"
  399. }
  400. },
  401. "node_modules/@ungap/structured-clone": {
  402. "version": "1.3.3",
  403. "dev": true,
  404. "license": "ISC"
  405. },
  406. "node_modules/@vscode/vsce": {
  407. "version": "2.19.0",
  408. "resolved": "https://registry.npmjs.org/@vscode/vsce/-/vsce-2.19.0.tgz",
  409. "integrity": "sha512-dAlILxC5ggOutcvJY24jxz913wimGiUrHaPkk16Gm9/PGFbz1YezWtrXsTKUtJws4fIlpX2UIlVlVESWq8lkfQ==",
  410. "dev": true,
  411. "license": "MIT",
  412. "dependencies": {
  413. "azure-devops-node-api": "^11.0.1",
  414. "chalk": "^2.4.2",
  415. "cheerio": "^1.0.0-rc.9",
  416. "commander": "^6.1.0",
  417. "glob": "^7.0.6",
  418. "hosted-git-info": "^4.0.2",
  419. "jsonc-parser": "^3.2.0",
  420. "leven": "^3.1.0",
  421. "markdown-it": "^12.3.2",
  422. "mime": "^1.3.4",
  423. "minimatch": "^3.0.3",
  424. "parse-semver": "^1.1.1",
  425. "read": "^1.0.7",
  426. "semver": "^5.1.0",
  427. "tmp": "^0.2.1",
  428. "typed-rest-client": "^1.8.4",
  429. "url-join": "^4.0.1",
  430. "xml2js": "^0.5.0",
  431. "yauzl": "^2.3.1",
  432. "yazl": "^2.2.2"
  433. },
  434. "bin": {
  435. "vsce": "vsce"
  436. },
  437. "engines": {
  438. "node": ">= 14"
  439. },
  440. "optionalDependencies": {
  441. "keytar": "^7.7.0"
  442. }
  443. },
  444. "node_modules/@vscode/vsce/node_modules/brace-expansion": {
  445. "version": "1.1.16",
  446. "dev": true,
  447. "license": "MIT",
  448. "dependencies": {
  449. "balanced-match": "^1.0.0",
  450. "concat-map": "0.0.1"
  451. }
  452. },
  453. "node_modules/@vscode/vsce/node_modules/minimatch": {
  454. "version": "3.1.5",
  455. "dev": true,
  456. "license": "ISC",
  457. "dependencies": {
  458. "brace-expansion": "^1.1.7"
  459. },
  460. "engines": {
  461. "node": "*"
  462. }
  463. },
  464. "node_modules/@vscode/vsce/node_modules/semver": {
  465. "version": "5.7.2",
  466. "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
  467. "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
  468. "dev": true,
  469. "license": "ISC",
  470. "bin": {
  471. "semver": "bin/semver"
  472. }
  473. },
  474. "node_modules/acorn": {
  475. "version": "8.17.0",
  476. "dev": true,
  477. "license": "MIT",
  478. "bin": {
  479. "acorn": "bin/acorn"
  480. },
  481. "engines": {
  482. "node": ">=0.4.0"
  483. }
  484. },
  485. "node_modules/acorn-jsx": {
  486. "version": "5.3.2",
  487. "dev": true,
  488. "license": "MIT",
  489. "peerDependencies": {
  490. "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
  491. }
  492. },
  493. "node_modules/ajv": {
  494. "version": "6.15.0",
  495. "dev": true,
  496. "license": "MIT",
  497. "dependencies": {
  498. "fast-deep-equal": "^3.1.1",
  499. "fast-json-stable-stringify": "^2.0.0",
  500. "json-schema-traverse": "^0.4.1",
  501. "uri-js": "^4.2.2"
  502. },
  503. "funding": {
  504. "type": "github",
  505. "url": "https://github.com/sponsors/epoberezkin"
  506. }
  507. },
  508. "node_modules/ansi-regex": {
  509. "version": "5.0.1",
  510. "dev": true,
  511. "license": "MIT",
  512. "engines": {
  513. "node": ">=8"
  514. }
  515. },
  516. "node_modules/ansi-styles": {
  517. "version": "3.2.1",
  518. "dev": true,
  519. "license": "MIT",
  520. "dependencies": {
  521. "color-convert": "^1.9.0"
  522. },
  523. "engines": {
  524. "node": ">=4"
  525. }
  526. },
  527. "node_modules/argparse": {
  528. "version": "2.0.1",
  529. "dev": true,
  530. "license": "Python-2.0"
  531. },
  532. "node_modules/array-union": {
  533. "version": "2.1.0",
  534. "dev": true,
  535. "license": "MIT",
  536. "engines": {
  537. "node": ">=8"
  538. }
  539. },
  540. "node_modules/azure-devops-node-api": {
  541. "version": "11.2.0",
  542. "resolved": "https://registry.npmjs.org/azure-devops-node-api/-/azure-devops-node-api-11.2.0.tgz",
  543. "integrity": "sha512-XdiGPhrpaT5J8wdERRKs5g8E0Zy1pvOYTli7z9E8nmOn3YGp4FhtjhrOyFmX/8veWCwdI69mCHKJw6l+4J/bHA==",
  544. "dev": true,
  545. "license": "MIT",
  546. "dependencies": {
  547. "tunnel": "0.0.6",
  548. "typed-rest-client": "^1.8.4"
  549. }
  550. },
  551. "node_modules/balanced-match": {
  552. "version": "1.0.2",
  553. "dev": true,
  554. "license": "MIT"
  555. },
  556. "node_modules/base64-js": {
  557. "version": "1.5.1",
  558. "dev": true,
  559. "funding": [
  560. {
  561. "type": "github",
  562. "url": "https://github.com/sponsors/feross"
  563. },
  564. {
  565. "type": "patreon",
  566. "url": "https://www.patreon.com/feross"
  567. },
  568. {
  569. "type": "consulting",
  570. "url": "https://feross.org/support"
  571. }
  572. ],
  573. "license": "MIT",
  574. "optional": true
  575. },
  576. "node_modules/bl": {
  577. "version": "4.1.0",
  578. "dev": true,
  579. "license": "MIT",
  580. "optional": true,
  581. "dependencies": {
  582. "buffer": "^5.5.0",
  583. "inherits": "^2.0.4",
  584. "readable-stream": "^3.4.0"
  585. }
  586. },
  587. "node_modules/boolbase": {
  588. "version": "1.0.0",
  589. "dev": true,
  590. "license": "ISC"
  591. },
  592. "node_modules/brace-expansion": {
  593. "version": "2.1.2",
  594. "dev": true,
  595. "license": "MIT",
  596. "dependencies": {
  597. "balanced-match": "^1.0.0"
  598. }
  599. },
  600. "node_modules/braces": {
  601. "version": "3.0.3",
  602. "dev": true,
  603. "license": "MIT",
  604. "dependencies": {
  605. "fill-range": "^7.1.1"
  606. },
  607. "engines": {
  608. "node": ">=8"
  609. }
  610. },
  611. "node_modules/buffer": {
  612. "version": "5.7.1",
  613. "dev": true,
  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. "optional": true,
  630. "dependencies": {
  631. "base64-js": "^1.3.1",
  632. "ieee754": "^1.1.13"
  633. }
  634. },
  635. "node_modules/buffer-crc32": {
  636. "version": "0.2.13",
  637. "dev": true,
  638. "license": "MIT",
  639. "engines": {
  640. "node": "*"
  641. }
  642. },
  643. "node_modules/call-bind-apply-helpers": {
  644. "version": "1.0.2",
  645. "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
  646. "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
  647. "dev": true,
  648. "license": "MIT",
  649. "dependencies": {
  650. "es-errors": "^1.3.0",
  651. "function-bind": "^1.1.2"
  652. },
  653. "engines": {
  654. "node": ">= 0.4"
  655. }
  656. },
  657. "node_modules/call-bound": {
  658. "version": "1.0.4",
  659. "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
  660. "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
  661. "dev": true,
  662. "license": "MIT",
  663. "dependencies": {
  664. "call-bind-apply-helpers": "^1.0.2",
  665. "get-intrinsic": "^1.3.0"
  666. },
  667. "engines": {
  668. "node": ">= 0.4"
  669. },
  670. "funding": {
  671. "url": "https://github.com/sponsors/ljharb"
  672. }
  673. },
  674. "node_modules/callsites": {
  675. "version": "3.1.0",
  676. "dev": true,
  677. "license": "MIT",
  678. "engines": {
  679. "node": ">=6"
  680. }
  681. },
  682. "node_modules/chalk": {
  683. "version": "2.4.2",
  684. "dev": true,
  685. "license": "MIT",
  686. "dependencies": {
  687. "ansi-styles": "^3.2.1",
  688. "escape-string-regexp": "^1.0.5",
  689. "supports-color": "^5.3.0"
  690. },
  691. "engines": {
  692. "node": ">=4"
  693. }
  694. },
  695. "node_modules/cheerio": {
  696. "version": "1.2.0",
  697. "dev": true,
  698. "license": "MIT",
  699. "dependencies": {
  700. "cheerio-select": "^2.1.0",
  701. "dom-serializer": "^2.0.0",
  702. "domhandler": "^5.0.3",
  703. "domutils": "^3.2.2",
  704. "encoding-sniffer": "^0.2.1",
  705. "htmlparser2": "^10.1.0",
  706. "parse5": "^7.3.0",
  707. "parse5-htmlparser2-tree-adapter": "^7.1.0",
  708. "parse5-parser-stream": "^7.1.2",
  709. "undici": "^7.19.0",
  710. "whatwg-mimetype": "^4.0.0"
  711. },
  712. "engines": {
  713. "node": ">=20.18.1"
  714. },
  715. "funding": {
  716. "url": "https://github.com/cheeriojs/cheerio?sponsor=1"
  717. }
  718. },
  719. "node_modules/cheerio-select": {
  720. "version": "2.1.0",
  721. "dev": true,
  722. "license": "BSD-2-Clause",
  723. "dependencies": {
  724. "boolbase": "^1.0.0",
  725. "css-select": "^5.1.0",
  726. "css-what": "^6.1.0",
  727. "domelementtype": "^2.3.0",
  728. "domhandler": "^5.0.3",
  729. "domutils": "^3.0.1"
  730. },
  731. "funding": {
  732. "url": "https://github.com/sponsors/fb55"
  733. }
  734. },
  735. "node_modules/chownr": {
  736. "version": "1.1.4",
  737. "dev": true,
  738. "license": "ISC",
  739. "optional": true
  740. },
  741. "node_modules/color-convert": {
  742. "version": "1.9.3",
  743. "dev": true,
  744. "license": "MIT",
  745. "dependencies": {
  746. "color-name": "1.1.3"
  747. }
  748. },
  749. "node_modules/color-name": {
  750. "version": "1.1.3",
  751. "dev": true,
  752. "license": "MIT"
  753. },
  754. "node_modules/commander": {
  755. "version": "6.2.1",
  756. "dev": true,
  757. "license": "MIT",
  758. "engines": {
  759. "node": ">= 6"
  760. }
  761. },
  762. "node_modules/concat-map": {
  763. "version": "0.0.1",
  764. "dev": true,
  765. "license": "MIT"
  766. },
  767. "node_modules/cross-spawn": {
  768. "version": "7.0.6",
  769. "dev": true,
  770. "license": "MIT",
  771. "dependencies": {
  772. "path-key": "^3.1.0",
  773. "shebang-command": "^2.0.0",
  774. "which": "^2.0.1"
  775. },
  776. "engines": {
  777. "node": ">= 8"
  778. }
  779. },
  780. "node_modules/css-select": {
  781. "version": "5.2.2",
  782. "dev": true,
  783. "license": "BSD-2-Clause",
  784. "dependencies": {
  785. "boolbase": "^1.0.0",
  786. "css-what": "^6.1.0",
  787. "domhandler": "^5.0.2",
  788. "domutils": "^3.0.1",
  789. "nth-check": "^2.0.1"
  790. },
  791. "funding": {
  792. "url": "https://github.com/sponsors/fb55"
  793. }
  794. },
  795. "node_modules/css-what": {
  796. "version": "6.2.2",
  797. "dev": true,
  798. "license": "BSD-2-Clause",
  799. "engines": {
  800. "node": ">= 6"
  801. },
  802. "funding": {
  803. "url": "https://github.com/sponsors/fb55"
  804. }
  805. },
  806. "node_modules/debug": {
  807. "version": "4.4.3",
  808. "dev": true,
  809. "license": "MIT",
  810. "dependencies": {
  811. "ms": "^2.1.3"
  812. },
  813. "engines": {
  814. "node": ">=6.0"
  815. },
  816. "peerDependenciesMeta": {
  817. "supports-color": {
  818. "optional": true
  819. }
  820. }
  821. },
  822. "node_modules/decompress-response": {
  823. "version": "6.0.0",
  824. "dev": true,
  825. "license": "MIT",
  826. "optional": true,
  827. "dependencies": {
  828. "mimic-response": "^3.1.0"
  829. },
  830. "engines": {
  831. "node": ">=10"
  832. },
  833. "funding": {
  834. "url": "https://github.com/sponsors/sindresorhus"
  835. }
  836. },
  837. "node_modules/deep-extend": {
  838. "version": "0.6.0",
  839. "dev": true,
  840. "license": "MIT",
  841. "optional": true,
  842. "engines": {
  843. "node": ">=4.0.0"
  844. }
  845. },
  846. "node_modules/deep-is": {
  847. "version": "0.1.4",
  848. "dev": true,
  849. "license": "MIT"
  850. },
  851. "node_modules/detect-libc": {
  852. "version": "2.1.2",
  853. "dev": true,
  854. "license": "Apache-2.0",
  855. "optional": true,
  856. "engines": {
  857. "node": ">=8"
  858. }
  859. },
  860. "node_modules/dir-glob": {
  861. "version": "3.0.1",
  862. "dev": true,
  863. "license": "MIT",
  864. "dependencies": {
  865. "path-type": "^4.0.0"
  866. },
  867. "engines": {
  868. "node": ">=8"
  869. }
  870. },
  871. "node_modules/doctrine": {
  872. "version": "3.0.0",
  873. "dev": true,
  874. "license": "Apache-2.0",
  875. "dependencies": {
  876. "esutils": "^2.0.2"
  877. },
  878. "engines": {
  879. "node": ">=6.0.0"
  880. }
  881. },
  882. "node_modules/dom-serializer": {
  883. "version": "2.0.0",
  884. "dev": true,
  885. "license": "MIT",
  886. "dependencies": {
  887. "domelementtype": "^2.3.0",
  888. "domhandler": "^5.0.2",
  889. "entities": "^4.2.0"
  890. },
  891. "funding": {
  892. "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1"
  893. }
  894. },
  895. "node_modules/domelementtype": {
  896. "version": "2.3.0",
  897. "dev": true,
  898. "funding": [
  899. {
  900. "type": "github",
  901. "url": "https://github.com/sponsors/fb55"
  902. }
  903. ],
  904. "license": "BSD-2-Clause"
  905. },
  906. "node_modules/domhandler": {
  907. "version": "5.0.3",
  908. "dev": true,
  909. "license": "BSD-2-Clause",
  910. "dependencies": {
  911. "domelementtype": "^2.3.0"
  912. },
  913. "engines": {
  914. "node": ">= 4"
  915. },
  916. "funding": {
  917. "url": "https://github.com/fb55/domhandler?sponsor=1"
  918. }
  919. },
  920. "node_modules/domutils": {
  921. "version": "3.2.2",
  922. "dev": true,
  923. "license": "BSD-2-Clause",
  924. "dependencies": {
  925. "dom-serializer": "^2.0.0",
  926. "domelementtype": "^2.3.0",
  927. "domhandler": "^5.0.3"
  928. },
  929. "funding": {
  930. "url": "https://github.com/fb55/domutils?sponsor=1"
  931. }
  932. },
  933. "node_modules/dunder-proto": {
  934. "version": "1.0.1",
  935. "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
  936. "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
  937. "dev": true,
  938. "license": "MIT",
  939. "dependencies": {
  940. "call-bind-apply-helpers": "^1.0.1",
  941. "es-errors": "^1.3.0",
  942. "gopd": "^1.2.0"
  943. },
  944. "engines": {
  945. "node": ">= 0.4"
  946. }
  947. },
  948. "node_modules/encoding-sniffer": {
  949. "version": "0.2.1",
  950. "dev": true,
  951. "license": "MIT",
  952. "dependencies": {
  953. "iconv-lite": "^0.6.3",
  954. "whatwg-encoding": "^3.1.1"
  955. },
  956. "funding": {
  957. "url": "https://github.com/fb55/encoding-sniffer?sponsor=1"
  958. }
  959. },
  960. "node_modules/end-of-stream": {
  961. "version": "1.4.5",
  962. "dev": true,
  963. "license": "MIT",
  964. "optional": true,
  965. "dependencies": {
  966. "once": "^1.4.0"
  967. }
  968. },
  969. "node_modules/entities": {
  970. "version": "4.5.0",
  971. "dev": true,
  972. "license": "BSD-2-Clause",
  973. "engines": {
  974. "node": ">=0.12"
  975. },
  976. "funding": {
  977. "url": "https://github.com/fb55/entities?sponsor=1"
  978. }
  979. },
  980. "node_modules/es-define-property": {
  981. "version": "1.0.1",
  982. "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
  983. "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
  984. "dev": true,
  985. "license": "MIT",
  986. "engines": {
  987. "node": ">= 0.4"
  988. }
  989. },
  990. "node_modules/es-errors": {
  991. "version": "1.3.0",
  992. "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
  993. "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
  994. "dev": true,
  995. "license": "MIT",
  996. "engines": {
  997. "node": ">= 0.4"
  998. }
  999. },
  1000. "node_modules/es-object-atoms": {
  1001. "version": "1.1.2",
  1002. "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.2.tgz",
  1003. "integrity": "sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==",
  1004. "dev": true,
  1005. "license": "MIT",
  1006. "dependencies": {
  1007. "es-errors": "^1.3.0"
  1008. },
  1009. "engines": {
  1010. "node": ">= 0.4"
  1011. }
  1012. },
  1013. "node_modules/esbuild": {
  1014. "version": "0.20.2",
  1015. "dev": true,
  1016. "hasInstallScript": true,
  1017. "license": "MIT",
  1018. "bin": {
  1019. "esbuild": "bin/esbuild"
  1020. },
  1021. "engines": {
  1022. "node": ">=12"
  1023. },
  1024. "optionalDependencies": {
  1025. "@esbuild/aix-ppc64": "0.20.2",
  1026. "@esbuild/android-arm": "0.20.2",
  1027. "@esbuild/android-arm64": "0.20.2",
  1028. "@esbuild/android-x64": "0.20.2",
  1029. "@esbuild/darwin-arm64": "0.20.2",
  1030. "@esbuild/darwin-x64": "0.20.2",
  1031. "@esbuild/freebsd-arm64": "0.20.2",
  1032. "@esbuild/freebsd-x64": "0.20.2",
  1033. "@esbuild/linux-arm": "0.20.2",
  1034. "@esbuild/linux-arm64": "0.20.2",
  1035. "@esbuild/linux-ia32": "0.20.2",
  1036. "@esbuild/linux-loong64": "0.20.2",
  1037. "@esbuild/linux-mips64el": "0.20.2",
  1038. "@esbuild/linux-ppc64": "0.20.2",
  1039. "@esbuild/linux-riscv64": "0.20.2",
  1040. "@esbuild/linux-s390x": "0.20.2",
  1041. "@esbuild/linux-x64": "0.20.2",
  1042. "@esbuild/netbsd-x64": "0.20.2",
  1043. "@esbuild/openbsd-x64": "0.20.2",
  1044. "@esbuild/sunos-x64": "0.20.2",
  1045. "@esbuild/win32-arm64": "0.20.2",
  1046. "@esbuild/win32-ia32": "0.20.2",
  1047. "@esbuild/win32-x64": "0.20.2"
  1048. }
  1049. },
  1050. "node_modules/esbuild/node_modules/@esbuild/aix-ppc64": {
  1051. "version": "0.20.2",
  1052. "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz",
  1053. "integrity": "sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==",
  1054. "cpu": [
  1055. "ppc64"
  1056. ],
  1057. "dev": true,
  1058. "license": "MIT",
  1059. "optional": true,
  1060. "os": [
  1061. "aix"
  1062. ],
  1063. "engines": {
  1064. "node": ">=12"
  1065. }
  1066. },
  1067. "node_modules/esbuild/node_modules/@esbuild/android-arm": {
  1068. "version": "0.20.2",
  1069. "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz",
  1070. "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==",
  1071. "cpu": [
  1072. "arm"
  1073. ],
  1074. "dev": true,
  1075. "license": "MIT",
  1076. "optional": true,
  1077. "os": [
  1078. "android"
  1079. ],
  1080. "engines": {
  1081. "node": ">=12"
  1082. }
  1083. },
  1084. "node_modules/esbuild/node_modules/@esbuild/android-arm64": {
  1085. "version": "0.20.2",
  1086. "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz",
  1087. "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==",
  1088. "cpu": [
  1089. "arm64"
  1090. ],
  1091. "dev": true,
  1092. "license": "MIT",
  1093. "optional": true,
  1094. "os": [
  1095. "android"
  1096. ],
  1097. "engines": {
  1098. "node": ">=12"
  1099. }
  1100. },
  1101. "node_modules/esbuild/node_modules/@esbuild/android-x64": {
  1102. "version": "0.20.2",
  1103. "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz",
  1104. "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==",
  1105. "cpu": [
  1106. "x64"
  1107. ],
  1108. "dev": true,
  1109. "license": "MIT",
  1110. "optional": true,
  1111. "os": [
  1112. "android"
  1113. ],
  1114. "engines": {
  1115. "node": ">=12"
  1116. }
  1117. },
  1118. "node_modules/esbuild/node_modules/@esbuild/darwin-arm64": {
  1119. "version": "0.20.2",
  1120. "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz",
  1121. "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==",
  1122. "cpu": [
  1123. "arm64"
  1124. ],
  1125. "dev": true,
  1126. "license": "MIT",
  1127. "optional": true,
  1128. "os": [
  1129. "darwin"
  1130. ],
  1131. "engines": {
  1132. "node": ">=12"
  1133. }
  1134. },
  1135. "node_modules/esbuild/node_modules/@esbuild/darwin-x64": {
  1136. "version": "0.20.2",
  1137. "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz",
  1138. "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==",
  1139. "cpu": [
  1140. "x64"
  1141. ],
  1142. "dev": true,
  1143. "license": "MIT",
  1144. "optional": true,
  1145. "os": [
  1146. "darwin"
  1147. ],
  1148. "engines": {
  1149. "node": ">=12"
  1150. }
  1151. },
  1152. "node_modules/esbuild/node_modules/@esbuild/freebsd-arm64": {
  1153. "version": "0.20.2",
  1154. "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz",
  1155. "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==",
  1156. "cpu": [
  1157. "arm64"
  1158. ],
  1159. "dev": true,
  1160. "license": "MIT",
  1161. "optional": true,
  1162. "os": [
  1163. "freebsd"
  1164. ],
  1165. "engines": {
  1166. "node": ">=12"
  1167. }
  1168. },
  1169. "node_modules/esbuild/node_modules/@esbuild/freebsd-x64": {
  1170. "version": "0.20.2",
  1171. "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz",
  1172. "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==",
  1173. "cpu": [
  1174. "x64"
  1175. ],
  1176. "dev": true,
  1177. "license": "MIT",
  1178. "optional": true,
  1179. "os": [
  1180. "freebsd"
  1181. ],
  1182. "engines": {
  1183. "node": ">=12"
  1184. }
  1185. },
  1186. "node_modules/esbuild/node_modules/@esbuild/linux-arm": {
  1187. "version": "0.20.2",
  1188. "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz",
  1189. "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==",
  1190. "cpu": [
  1191. "arm"
  1192. ],
  1193. "dev": true,
  1194. "license": "MIT",
  1195. "optional": true,
  1196. "os": [
  1197. "linux"
  1198. ],
  1199. "engines": {
  1200. "node": ">=12"
  1201. }
  1202. },
  1203. "node_modules/esbuild/node_modules/@esbuild/linux-arm64": {
  1204. "version": "0.20.2",
  1205. "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz",
  1206. "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==",
  1207. "cpu": [
  1208. "arm64"
  1209. ],
  1210. "dev": true,
  1211. "license": "MIT",
  1212. "optional": true,
  1213. "os": [
  1214. "linux"
  1215. ],
  1216. "engines": {
  1217. "node": ">=12"
  1218. }
  1219. },
  1220. "node_modules/esbuild/node_modules/@esbuild/linux-ia32": {
  1221. "version": "0.20.2",
  1222. "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz",
  1223. "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==",
  1224. "cpu": [
  1225. "ia32"
  1226. ],
  1227. "dev": true,
  1228. "license": "MIT",
  1229. "optional": true,
  1230. "os": [
  1231. "linux"
  1232. ],
  1233. "engines": {
  1234. "node": ">=12"
  1235. }
  1236. },
  1237. "node_modules/esbuild/node_modules/@esbuild/linux-loong64": {
  1238. "version": "0.20.2",
  1239. "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz",
  1240. "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==",
  1241. "cpu": [
  1242. "loong64"
  1243. ],
  1244. "dev": true,
  1245. "license": "MIT",
  1246. "optional": true,
  1247. "os": [
  1248. "linux"
  1249. ],
  1250. "engines": {
  1251. "node": ">=12"
  1252. }
  1253. },
  1254. "node_modules/esbuild/node_modules/@esbuild/linux-mips64el": {
  1255. "version": "0.20.2",
  1256. "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz",
  1257. "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==",
  1258. "cpu": [
  1259. "mips64el"
  1260. ],
  1261. "dev": true,
  1262. "license": "MIT",
  1263. "optional": true,
  1264. "os": [
  1265. "linux"
  1266. ],
  1267. "engines": {
  1268. "node": ">=12"
  1269. }
  1270. },
  1271. "node_modules/esbuild/node_modules/@esbuild/linux-ppc64": {
  1272. "version": "0.20.2",
  1273. "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz",
  1274. "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==",
  1275. "cpu": [
  1276. "ppc64"
  1277. ],
  1278. "dev": true,
  1279. "license": "MIT",
  1280. "optional": true,
  1281. "os": [
  1282. "linux"
  1283. ],
  1284. "engines": {
  1285. "node": ">=12"
  1286. }
  1287. },
  1288. "node_modules/esbuild/node_modules/@esbuild/linux-riscv64": {
  1289. "version": "0.20.2",
  1290. "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz",
  1291. "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==",
  1292. "cpu": [
  1293. "riscv64"
  1294. ],
  1295. "dev": true,
  1296. "license": "MIT",
  1297. "optional": true,
  1298. "os": [
  1299. "linux"
  1300. ],
  1301. "engines": {
  1302. "node": ">=12"
  1303. }
  1304. },
  1305. "node_modules/esbuild/node_modules/@esbuild/linux-s390x": {
  1306. "version": "0.20.2",
  1307. "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz",
  1308. "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==",
  1309. "cpu": [
  1310. "s390x"
  1311. ],
  1312. "dev": true,
  1313. "license": "MIT",
  1314. "optional": true,
  1315. "os": [
  1316. "linux"
  1317. ],
  1318. "engines": {
  1319. "node": ">=12"
  1320. }
  1321. },
  1322. "node_modules/esbuild/node_modules/@esbuild/netbsd-x64": {
  1323. "version": "0.20.2",
  1324. "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz",
  1325. "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==",
  1326. "cpu": [
  1327. "x64"
  1328. ],
  1329. "dev": true,
  1330. "license": "MIT",
  1331. "optional": true,
  1332. "os": [
  1333. "netbsd"
  1334. ],
  1335. "engines": {
  1336. "node": ">=12"
  1337. }
  1338. },
  1339. "node_modules/esbuild/node_modules/@esbuild/openbsd-x64": {
  1340. "version": "0.20.2",
  1341. "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz",
  1342. "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==",
  1343. "cpu": [
  1344. "x64"
  1345. ],
  1346. "dev": true,
  1347. "license": "MIT",
  1348. "optional": true,
  1349. "os": [
  1350. "openbsd"
  1351. ],
  1352. "engines": {
  1353. "node": ">=12"
  1354. }
  1355. },
  1356. "node_modules/esbuild/node_modules/@esbuild/sunos-x64": {
  1357. "version": "0.20.2",
  1358. "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz",
  1359. "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==",
  1360. "cpu": [
  1361. "x64"
  1362. ],
  1363. "dev": true,
  1364. "license": "MIT",
  1365. "optional": true,
  1366. "os": [
  1367. "sunos"
  1368. ],
  1369. "engines": {
  1370. "node": ">=12"
  1371. }
  1372. },
  1373. "node_modules/esbuild/node_modules/@esbuild/win32-arm64": {
  1374. "version": "0.20.2",
  1375. "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz",
  1376. "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==",
  1377. "cpu": [
  1378. "arm64"
  1379. ],
  1380. "dev": true,
  1381. "license": "MIT",
  1382. "optional": true,
  1383. "os": [
  1384. "win32"
  1385. ],
  1386. "engines": {
  1387. "node": ">=12"
  1388. }
  1389. },
  1390. "node_modules/esbuild/node_modules/@esbuild/win32-ia32": {
  1391. "version": "0.20.2",
  1392. "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz",
  1393. "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==",
  1394. "cpu": [
  1395. "ia32"
  1396. ],
  1397. "dev": true,
  1398. "license": "MIT",
  1399. "optional": true,
  1400. "os": [
  1401. "win32"
  1402. ],
  1403. "engines": {
  1404. "node": ">=12"
  1405. }
  1406. },
  1407. "node_modules/esbuild/node_modules/@esbuild/win32-x64": {
  1408. "version": "0.20.2",
  1409. "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz",
  1410. "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==",
  1411. "cpu": [
  1412. "x64"
  1413. ],
  1414. "dev": true,
  1415. "license": "MIT",
  1416. "optional": true,
  1417. "os": [
  1418. "win32"
  1419. ],
  1420. "engines": {
  1421. "node": ">=12"
  1422. }
  1423. },
  1424. "node_modules/escape-string-regexp": {
  1425. "version": "1.0.5",
  1426. "dev": true,
  1427. "license": "MIT",
  1428. "engines": {
  1429. "node": ">=0.8.0"
  1430. }
  1431. },
  1432. "node_modules/eslint": {
  1433. "version": "8.57.1",
  1434. "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz",
  1435. "integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==",
  1436. "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.",
  1437. "dev": true,
  1438. "license": "MIT",
  1439. "dependencies": {
  1440. "@eslint-community/eslint-utils": "^4.2.0",
  1441. "@eslint-community/regexpp": "^4.6.1",
  1442. "@eslint/eslintrc": "^2.1.4",
  1443. "@eslint/js": "8.57.1",
  1444. "@humanwhocodes/config-array": "^0.13.0",
  1445. "@humanwhocodes/module-importer": "^1.0.1",
  1446. "@nodelib/fs.walk": "^1.2.8",
  1447. "@ungap/structured-clone": "^1.2.0",
  1448. "ajv": "^6.12.4",
  1449. "chalk": "^4.0.0",
  1450. "cross-spawn": "^7.0.2",
  1451. "debug": "^4.3.2",
  1452. "doctrine": "^3.0.0",
  1453. "escape-string-regexp": "^4.0.0",
  1454. "eslint-scope": "^7.2.2",
  1455. "eslint-visitor-keys": "^3.4.3",
  1456. "espree": "^9.6.1",
  1457. "esquery": "^1.4.2",
  1458. "esutils": "^2.0.2",
  1459. "fast-deep-equal": "^3.1.3",
  1460. "file-entry-cache": "^6.0.1",
  1461. "find-up": "^5.0.0",
  1462. "glob-parent": "^6.0.2",
  1463. "globals": "^13.19.0",
  1464. "graphemer": "^1.4.0",
  1465. "ignore": "^5.2.0",
  1466. "imurmurhash": "^0.1.4",
  1467. "is-glob": "^4.0.0",
  1468. "is-path-inside": "^3.0.3",
  1469. "js-yaml": "^4.1.0",
  1470. "json-stable-stringify-without-jsonify": "^1.0.1",
  1471. "levn": "^0.4.1",
  1472. "lodash.merge": "^4.6.2",
  1473. "minimatch": "^3.1.2",
  1474. "natural-compare": "^1.4.0",
  1475. "optionator": "^0.9.3",
  1476. "strip-ansi": "^6.0.1",
  1477. "text-table": "^0.2.0"
  1478. },
  1479. "bin": {
  1480. "eslint": "bin/eslint.js"
  1481. },
  1482. "engines": {
  1483. "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
  1484. },
  1485. "funding": {
  1486. "url": "https://opencollective.com/eslint"
  1487. }
  1488. },
  1489. "node_modules/eslint-scope": {
  1490. "version": "7.2.2",
  1491. "dev": true,
  1492. "license": "BSD-2-Clause",
  1493. "dependencies": {
  1494. "esrecurse": "^4.3.0",
  1495. "estraverse": "^5.2.0"
  1496. },
  1497. "engines": {
  1498. "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
  1499. },
  1500. "funding": {
  1501. "url": "https://opencollective.com/eslint"
  1502. }
  1503. },
  1504. "node_modules/eslint-visitor-keys": {
  1505. "version": "3.4.3",
  1506. "dev": true,
  1507. "license": "Apache-2.0",
  1508. "engines": {
  1509. "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
  1510. },
  1511. "funding": {
  1512. "url": "https://opencollective.com/eslint"
  1513. }
  1514. },
  1515. "node_modules/eslint/node_modules/ansi-styles": {
  1516. "version": "4.3.0",
  1517. "dev": true,
  1518. "license": "MIT",
  1519. "dependencies": {
  1520. "color-convert": "^2.0.1"
  1521. },
  1522. "engines": {
  1523. "node": ">=8"
  1524. },
  1525. "funding": {
  1526. "url": "https://github.com/chalk/ansi-styles?sponsor=1"
  1527. }
  1528. },
  1529. "node_modules/eslint/node_modules/brace-expansion": {
  1530. "version": "1.1.16",
  1531. "dev": true,
  1532. "license": "MIT",
  1533. "dependencies": {
  1534. "balanced-match": "^1.0.0",
  1535. "concat-map": "0.0.1"
  1536. }
  1537. },
  1538. "node_modules/eslint/node_modules/chalk": {
  1539. "version": "4.1.2",
  1540. "dev": true,
  1541. "license": "MIT",
  1542. "dependencies": {
  1543. "ansi-styles": "^4.1.0",
  1544. "supports-color": "^7.1.0"
  1545. },
  1546. "engines": {
  1547. "node": ">=10"
  1548. },
  1549. "funding": {
  1550. "url": "https://github.com/chalk/chalk?sponsor=1"
  1551. }
  1552. },
  1553. "node_modules/eslint/node_modules/color-convert": {
  1554. "version": "2.0.1",
  1555. "dev": true,
  1556. "license": "MIT",
  1557. "dependencies": {
  1558. "color-name": "~1.1.4"
  1559. },
  1560. "engines": {
  1561. "node": ">=7.0.0"
  1562. }
  1563. },
  1564. "node_modules/eslint/node_modules/color-name": {
  1565. "version": "1.1.4",
  1566. "dev": true,
  1567. "license": "MIT"
  1568. },
  1569. "node_modules/eslint/node_modules/escape-string-regexp": {
  1570. "version": "4.0.0",
  1571. "dev": true,
  1572. "license": "MIT",
  1573. "engines": {
  1574. "node": ">=10"
  1575. },
  1576. "funding": {
  1577. "url": "https://github.com/sponsors/sindresorhus"
  1578. }
  1579. },
  1580. "node_modules/eslint/node_modules/has-flag": {
  1581. "version": "4.0.0",
  1582. "dev": true,
  1583. "license": "MIT",
  1584. "engines": {
  1585. "node": ">=8"
  1586. }
  1587. },
  1588. "node_modules/eslint/node_modules/minimatch": {
  1589. "version": "3.1.5",
  1590. "dev": true,
  1591. "license": "ISC",
  1592. "dependencies": {
  1593. "brace-expansion": "^1.1.7"
  1594. },
  1595. "engines": {
  1596. "node": "*"
  1597. }
  1598. },
  1599. "node_modules/eslint/node_modules/supports-color": {
  1600. "version": "7.2.0",
  1601. "dev": true,
  1602. "license": "MIT",
  1603. "dependencies": {
  1604. "has-flag": "^4.0.0"
  1605. },
  1606. "engines": {
  1607. "node": ">=8"
  1608. }
  1609. },
  1610. "node_modules/espree": {
  1611. "version": "9.6.1",
  1612. "dev": true,
  1613. "license": "BSD-2-Clause",
  1614. "dependencies": {
  1615. "acorn": "^8.9.0",
  1616. "acorn-jsx": "^5.3.2",
  1617. "eslint-visitor-keys": "^3.4.1"
  1618. },
  1619. "engines": {
  1620. "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
  1621. },
  1622. "funding": {
  1623. "url": "https://opencollective.com/eslint"
  1624. }
  1625. },
  1626. "node_modules/esquery": {
  1627. "version": "1.7.0",
  1628. "dev": true,
  1629. "license": "BSD-3-Clause",
  1630. "dependencies": {
  1631. "estraverse": "^5.1.0"
  1632. },
  1633. "engines": {
  1634. "node": ">=0.10"
  1635. }
  1636. },
  1637. "node_modules/esrecurse": {
  1638. "version": "4.3.0",
  1639. "dev": true,
  1640. "license": "BSD-2-Clause",
  1641. "dependencies": {
  1642. "estraverse": "^5.2.0"
  1643. },
  1644. "engines": {
  1645. "node": ">=4.0"
  1646. }
  1647. },
  1648. "node_modules/estraverse": {
  1649. "version": "5.3.0",
  1650. "dev": true,
  1651. "license": "BSD-2-Clause",
  1652. "engines": {
  1653. "node": ">=4.0"
  1654. }
  1655. },
  1656. "node_modules/esutils": {
  1657. "version": "2.0.3",
  1658. "dev": true,
  1659. "license": "BSD-2-Clause",
  1660. "engines": {
  1661. "node": ">=0.10.0"
  1662. }
  1663. },
  1664. "node_modules/expand-template": {
  1665. "version": "2.0.3",
  1666. "dev": true,
  1667. "license": "(MIT OR WTFPL)",
  1668. "optional": true,
  1669. "engines": {
  1670. "node": ">=6"
  1671. }
  1672. },
  1673. "node_modules/fast-deep-equal": {
  1674. "version": "3.1.3",
  1675. "dev": true,
  1676. "license": "MIT"
  1677. },
  1678. "node_modules/fast-glob": {
  1679. "version": "3.3.3",
  1680. "dev": true,
  1681. "license": "MIT",
  1682. "dependencies": {
  1683. "@nodelib/fs.stat": "^2.0.2",
  1684. "@nodelib/fs.walk": "^1.2.3",
  1685. "glob-parent": "^5.1.2",
  1686. "merge2": "^1.3.0",
  1687. "micromatch": "^4.0.8"
  1688. },
  1689. "engines": {
  1690. "node": ">=8.6.0"
  1691. }
  1692. },
  1693. "node_modules/fast-glob/node_modules/glob-parent": {
  1694. "version": "5.1.2",
  1695. "dev": true,
  1696. "license": "ISC",
  1697. "dependencies": {
  1698. "is-glob": "^4.0.1"
  1699. },
  1700. "engines": {
  1701. "node": ">= 6"
  1702. }
  1703. },
  1704. "node_modules/fast-json-stable-stringify": {
  1705. "version": "2.1.0",
  1706. "dev": true,
  1707. "license": "MIT"
  1708. },
  1709. "node_modules/fast-levenshtein": {
  1710. "version": "2.0.6",
  1711. "dev": true,
  1712. "license": "MIT"
  1713. },
  1714. "node_modules/fastq": {
  1715. "version": "1.20.1",
  1716. "dev": true,
  1717. "license": "ISC",
  1718. "dependencies": {
  1719. "reusify": "^1.0.4"
  1720. }
  1721. },
  1722. "node_modules/fd-slicer": {
  1723. "version": "1.1.0",
  1724. "dev": true,
  1725. "license": "MIT",
  1726. "dependencies": {
  1727. "pend": "~1.2.0"
  1728. }
  1729. },
  1730. "node_modules/file-entry-cache": {
  1731. "version": "6.0.1",
  1732. "dev": true,
  1733. "license": "MIT",
  1734. "dependencies": {
  1735. "flat-cache": "^3.0.4"
  1736. },
  1737. "engines": {
  1738. "node": "^10.12.0 || >=12.0.0"
  1739. }
  1740. },
  1741. "node_modules/fill-range": {
  1742. "version": "7.1.1",
  1743. "dev": true,
  1744. "license": "MIT",
  1745. "dependencies": {
  1746. "to-regex-range": "^5.0.1"
  1747. },
  1748. "engines": {
  1749. "node": ">=8"
  1750. }
  1751. },
  1752. "node_modules/find-up": {
  1753. "version": "5.0.0",
  1754. "dev": true,
  1755. "license": "MIT",
  1756. "dependencies": {
  1757. "locate-path": "^6.0.0",
  1758. "path-exists": "^4.0.0"
  1759. },
  1760. "engines": {
  1761. "node": ">=10"
  1762. },
  1763. "funding": {
  1764. "url": "https://github.com/sponsors/sindresorhus"
  1765. }
  1766. },
  1767. "node_modules/flat-cache": {
  1768. "version": "3.2.0",
  1769. "dev": true,
  1770. "license": "MIT",
  1771. "dependencies": {
  1772. "flatted": "^3.2.9",
  1773. "keyv": "^4.5.3",
  1774. "rimraf": "^3.0.2"
  1775. },
  1776. "engines": {
  1777. "node": "^10.12.0 || >=12.0.0"
  1778. }
  1779. },
  1780. "node_modules/flatted": {
  1781. "version": "3.4.2",
  1782. "dev": true,
  1783. "license": "ISC"
  1784. },
  1785. "node_modules/fs-constants": {
  1786. "version": "1.0.0",
  1787. "dev": true,
  1788. "license": "MIT",
  1789. "optional": true
  1790. },
  1791. "node_modules/fs.realpath": {
  1792. "version": "1.0.0",
  1793. "dev": true,
  1794. "license": "ISC"
  1795. },
  1796. "node_modules/function-bind": {
  1797. "version": "1.1.2",
  1798. "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
  1799. "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
  1800. "dev": true,
  1801. "license": "MIT",
  1802. "funding": {
  1803. "url": "https://github.com/sponsors/ljharb"
  1804. }
  1805. },
  1806. "node_modules/get-intrinsic": {
  1807. "version": "1.3.0",
  1808. "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
  1809. "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
  1810. "dev": true,
  1811. "license": "MIT",
  1812. "dependencies": {
  1813. "call-bind-apply-helpers": "^1.0.2",
  1814. "es-define-property": "^1.0.1",
  1815. "es-errors": "^1.3.0",
  1816. "es-object-atoms": "^1.1.1",
  1817. "function-bind": "^1.1.2",
  1818. "get-proto": "^1.0.1",
  1819. "gopd": "^1.2.0",
  1820. "has-symbols": "^1.1.0",
  1821. "hasown": "^2.0.2",
  1822. "math-intrinsics": "^1.1.0"
  1823. },
  1824. "engines": {
  1825. "node": ">= 0.4"
  1826. },
  1827. "funding": {
  1828. "url": "https://github.com/sponsors/ljharb"
  1829. }
  1830. },
  1831. "node_modules/get-proto": {
  1832. "version": "1.0.1",
  1833. "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
  1834. "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
  1835. "dev": true,
  1836. "license": "MIT",
  1837. "dependencies": {
  1838. "dunder-proto": "^1.0.1",
  1839. "es-object-atoms": "^1.0.0"
  1840. },
  1841. "engines": {
  1842. "node": ">= 0.4"
  1843. }
  1844. },
  1845. "node_modules/github-from-package": {
  1846. "version": "0.0.0",
  1847. "dev": true,
  1848. "license": "MIT",
  1849. "optional": true
  1850. },
  1851. "node_modules/glob": {
  1852. "version": "7.2.3",
  1853. "dev": true,
  1854. "license": "ISC",
  1855. "dependencies": {
  1856. "fs.realpath": "^1.0.0",
  1857. "inflight": "^1.0.4",
  1858. "inherits": "2",
  1859. "minimatch": "^3.1.1",
  1860. "once": "^1.3.0",
  1861. "path-is-absolute": "^1.0.0"
  1862. },
  1863. "engines": {
  1864. "node": "*"
  1865. },
  1866. "funding": {
  1867. "url": "https://github.com/sponsors/isaacs"
  1868. }
  1869. },
  1870. "node_modules/glob-parent": {
  1871. "version": "6.0.2",
  1872. "dev": true,
  1873. "license": "ISC",
  1874. "dependencies": {
  1875. "is-glob": "^4.0.3"
  1876. },
  1877. "engines": {
  1878. "node": ">=10.13.0"
  1879. }
  1880. },
  1881. "node_modules/glob/node_modules/brace-expansion": {
  1882. "version": "1.1.16",
  1883. "dev": true,
  1884. "license": "MIT",
  1885. "dependencies": {
  1886. "balanced-match": "^1.0.0",
  1887. "concat-map": "0.0.1"
  1888. }
  1889. },
  1890. "node_modules/glob/node_modules/minimatch": {
  1891. "version": "3.1.5",
  1892. "dev": true,
  1893. "license": "ISC",
  1894. "dependencies": {
  1895. "brace-expansion": "^1.1.7"
  1896. },
  1897. "engines": {
  1898. "node": "*"
  1899. }
  1900. },
  1901. "node_modules/globals": {
  1902. "version": "13.24.0",
  1903. "dev": true,
  1904. "license": "MIT",
  1905. "dependencies": {
  1906. "type-fest": "^0.20.2"
  1907. },
  1908. "engines": {
  1909. "node": ">=8"
  1910. },
  1911. "funding": {
  1912. "url": "https://github.com/sponsors/sindresorhus"
  1913. }
  1914. },
  1915. "node_modules/globby": {
  1916. "version": "11.1.0",
  1917. "dev": true,
  1918. "license": "MIT",
  1919. "dependencies": {
  1920. "array-union": "^2.1.0",
  1921. "dir-glob": "^3.0.1",
  1922. "fast-glob": "^3.2.9",
  1923. "ignore": "^5.2.0",
  1924. "merge2": "^1.4.1",
  1925. "slash": "^3.0.0"
  1926. },
  1927. "engines": {
  1928. "node": ">=10"
  1929. },
  1930. "funding": {
  1931. "url": "https://github.com/sponsors/sindresorhus"
  1932. }
  1933. },
  1934. "node_modules/gopd": {
  1935. "version": "1.2.0",
  1936. "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
  1937. "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
  1938. "dev": true,
  1939. "license": "MIT",
  1940. "engines": {
  1941. "node": ">= 0.4"
  1942. },
  1943. "funding": {
  1944. "url": "https://github.com/sponsors/ljharb"
  1945. }
  1946. },
  1947. "node_modules/graphemer": {
  1948. "version": "1.4.0",
  1949. "dev": true,
  1950. "license": "MIT"
  1951. },
  1952. "node_modules/has-flag": {
  1953. "version": "3.0.0",
  1954. "dev": true,
  1955. "license": "MIT",
  1956. "engines": {
  1957. "node": ">=4"
  1958. }
  1959. },
  1960. "node_modules/has-symbols": {
  1961. "version": "1.1.0",
  1962. "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
  1963. "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
  1964. "dev": true,
  1965. "license": "MIT",
  1966. "engines": {
  1967. "node": ">= 0.4"
  1968. },
  1969. "funding": {
  1970. "url": "https://github.com/sponsors/ljharb"
  1971. }
  1972. },
  1973. "node_modules/hasown": {
  1974. "version": "2.0.4",
  1975. "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.4.tgz",
  1976. "integrity": "sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==",
  1977. "dev": true,
  1978. "license": "MIT",
  1979. "dependencies": {
  1980. "function-bind": "^1.1.2"
  1981. },
  1982. "engines": {
  1983. "node": ">= 0.4"
  1984. }
  1985. },
  1986. "node_modules/hosted-git-info": {
  1987. "version": "4.1.0",
  1988. "dev": true,
  1989. "license": "ISC",
  1990. "dependencies": {
  1991. "lru-cache": "^6.0.0"
  1992. },
  1993. "engines": {
  1994. "node": ">=10"
  1995. }
  1996. },
  1997. "node_modules/htmlparser2": {
  1998. "version": "10.1.0",
  1999. "dev": true,
  2000. "funding": [
  2001. "https://github.com/fb55/htmlparser2?sponsor=1",
  2002. {
  2003. "type": "github",
  2004. "url": "https://github.com/sponsors/fb55"
  2005. }
  2006. ],
  2007. "license": "MIT",
  2008. "dependencies": {
  2009. "domelementtype": "^2.3.0",
  2010. "domhandler": "^5.0.3",
  2011. "domutils": "^3.2.2",
  2012. "entities": "^7.0.1"
  2013. }
  2014. },
  2015. "node_modules/htmlparser2/node_modules/entities": {
  2016. "version": "7.0.1",
  2017. "dev": true,
  2018. "license": "BSD-2-Clause",
  2019. "engines": {
  2020. "node": ">=0.12"
  2021. },
  2022. "funding": {
  2023. "url": "https://github.com/fb55/entities?sponsor=1"
  2024. }
  2025. },
  2026. "node_modules/iconv-lite": {
  2027. "version": "0.6.3",
  2028. "dev": true,
  2029. "license": "MIT",
  2030. "dependencies": {
  2031. "safer-buffer": ">= 2.1.2 < 3.0.0"
  2032. },
  2033. "engines": {
  2034. "node": ">=0.10.0"
  2035. }
  2036. },
  2037. "node_modules/ieee754": {
  2038. "version": "1.2.1",
  2039. "dev": true,
  2040. "funding": [
  2041. {
  2042. "type": "github",
  2043. "url": "https://github.com/sponsors/feross"
  2044. },
  2045. {
  2046. "type": "patreon",
  2047. "url": "https://www.patreon.com/feross"
  2048. },
  2049. {
  2050. "type": "consulting",
  2051. "url": "https://feross.org/support"
  2052. }
  2053. ],
  2054. "license": "BSD-3-Clause",
  2055. "optional": true
  2056. },
  2057. "node_modules/ignore": {
  2058. "version": "5.3.2",
  2059. "dev": true,
  2060. "license": "MIT",
  2061. "engines": {
  2062. "node": ">= 4"
  2063. }
  2064. },
  2065. "node_modules/import-fresh": {
  2066. "version": "3.3.1",
  2067. "dev": true,
  2068. "license": "MIT",
  2069. "dependencies": {
  2070. "parent-module": "^1.0.0",
  2071. "resolve-from": "^4.0.0"
  2072. },
  2073. "engines": {
  2074. "node": ">=6"
  2075. },
  2076. "funding": {
  2077. "url": "https://github.com/sponsors/sindresorhus"
  2078. }
  2079. },
  2080. "node_modules/imurmurhash": {
  2081. "version": "0.1.4",
  2082. "dev": true,
  2083. "license": "MIT",
  2084. "engines": {
  2085. "node": ">=0.8.19"
  2086. }
  2087. },
  2088. "node_modules/inflight": {
  2089. "version": "1.0.6",
  2090. "dev": true,
  2091. "license": "ISC",
  2092. "dependencies": {
  2093. "once": "^1.3.0",
  2094. "wrappy": "1"
  2095. }
  2096. },
  2097. "node_modules/inherits": {
  2098. "version": "2.0.4",
  2099. "dev": true,
  2100. "license": "ISC"
  2101. },
  2102. "node_modules/ini": {
  2103. "version": "1.3.8",
  2104. "dev": true,
  2105. "license": "ISC",
  2106. "optional": true
  2107. },
  2108. "node_modules/is-extglob": {
  2109. "version": "2.1.1",
  2110. "dev": true,
  2111. "license": "MIT",
  2112. "engines": {
  2113. "node": ">=0.10.0"
  2114. }
  2115. },
  2116. "node_modules/is-glob": {
  2117. "version": "4.0.3",
  2118. "dev": true,
  2119. "license": "MIT",
  2120. "dependencies": {
  2121. "is-extglob": "^2.1.1"
  2122. },
  2123. "engines": {
  2124. "node": ">=0.10.0"
  2125. }
  2126. },
  2127. "node_modules/is-number": {
  2128. "version": "7.0.0",
  2129. "dev": true,
  2130. "license": "MIT",
  2131. "engines": {
  2132. "node": ">=0.12.0"
  2133. }
  2134. },
  2135. "node_modules/is-path-inside": {
  2136. "version": "3.0.3",
  2137. "dev": true,
  2138. "license": "MIT",
  2139. "engines": {
  2140. "node": ">=8"
  2141. }
  2142. },
  2143. "node_modules/isexe": {
  2144. "version": "2.0.0",
  2145. "dev": true,
  2146. "license": "ISC"
  2147. },
  2148. "node_modules/js-yaml": {
  2149. "version": "4.3.0",
  2150. "dev": true,
  2151. "funding": [
  2152. {
  2153. "type": "github",
  2154. "url": "https://github.com/sponsors/puzrin"
  2155. },
  2156. {
  2157. "type": "github",
  2158. "url": "https://github.com/sponsors/nodeca"
  2159. }
  2160. ],
  2161. "license": "MIT",
  2162. "dependencies": {
  2163. "argparse": "^2.0.1"
  2164. },
  2165. "bin": {
  2166. "js-yaml": "bin/js-yaml.js"
  2167. }
  2168. },
  2169. "node_modules/json-buffer": {
  2170. "version": "3.0.1",
  2171. "dev": true,
  2172. "license": "MIT"
  2173. },
  2174. "node_modules/json-schema-traverse": {
  2175. "version": "0.4.1",
  2176. "dev": true,
  2177. "license": "MIT"
  2178. },
  2179. "node_modules/json-stable-stringify-without-jsonify": {
  2180. "version": "1.0.1",
  2181. "dev": true,
  2182. "license": "MIT"
  2183. },
  2184. "node_modules/jsonc-parser": {
  2185. "version": "3.3.1",
  2186. "dev": true,
  2187. "license": "MIT"
  2188. },
  2189. "node_modules/keytar": {
  2190. "version": "7.9.0",
  2191. "dev": true,
  2192. "hasInstallScript": true,
  2193. "license": "MIT",
  2194. "optional": true,
  2195. "dependencies": {
  2196. "node-addon-api": "^4.3.0",
  2197. "prebuild-install": "^7.0.1"
  2198. }
  2199. },
  2200. "node_modules/keyv": {
  2201. "version": "4.5.4",
  2202. "dev": true,
  2203. "license": "MIT",
  2204. "dependencies": {
  2205. "json-buffer": "3.0.1"
  2206. }
  2207. },
  2208. "node_modules/leven": {
  2209. "version": "3.1.0",
  2210. "dev": true,
  2211. "license": "MIT",
  2212. "engines": {
  2213. "node": ">=6"
  2214. }
  2215. },
  2216. "node_modules/levn": {
  2217. "version": "0.4.1",
  2218. "dev": true,
  2219. "license": "MIT",
  2220. "dependencies": {
  2221. "prelude-ls": "^1.2.1",
  2222. "type-check": "~0.4.0"
  2223. },
  2224. "engines": {
  2225. "node": ">= 0.8.0"
  2226. }
  2227. },
  2228. "node_modules/linkify-it": {
  2229. "version": "3.0.3",
  2230. "dev": true,
  2231. "license": "MIT",
  2232. "dependencies": {
  2233. "uc.micro": "^1.0.1"
  2234. }
  2235. },
  2236. "node_modules/locate-path": {
  2237. "version": "6.0.0",
  2238. "dev": true,
  2239. "license": "MIT",
  2240. "dependencies": {
  2241. "p-locate": "^5.0.0"
  2242. },
  2243. "engines": {
  2244. "node": ">=10"
  2245. },
  2246. "funding": {
  2247. "url": "https://github.com/sponsors/sindresorhus"
  2248. }
  2249. },
  2250. "node_modules/lodash.merge": {
  2251. "version": "4.6.2",
  2252. "dev": true,
  2253. "license": "MIT"
  2254. },
  2255. "node_modules/lru-cache": {
  2256. "version": "6.0.0",
  2257. "dev": true,
  2258. "license": "ISC",
  2259. "dependencies": {
  2260. "yallist": "^4.0.0"
  2261. },
  2262. "engines": {
  2263. "node": ">=10"
  2264. }
  2265. },
  2266. "node_modules/markdown-it": {
  2267. "version": "12.3.2",
  2268. "dev": true,
  2269. "license": "MIT",
  2270. "dependencies": {
  2271. "argparse": "^2.0.1",
  2272. "entities": "~2.1.0",
  2273. "linkify-it": "^3.0.1",
  2274. "mdurl": "^1.0.1",
  2275. "uc.micro": "^1.0.5"
  2276. },
  2277. "bin": {
  2278. "markdown-it": "bin/markdown-it.js"
  2279. }
  2280. },
  2281. "node_modules/markdown-it/node_modules/entities": {
  2282. "version": "2.1.0",
  2283. "dev": true,
  2284. "license": "BSD-2-Clause",
  2285. "funding": {
  2286. "url": "https://github.com/fb55/entities?sponsor=1"
  2287. }
  2288. },
  2289. "node_modules/math-intrinsics": {
  2290. "version": "1.1.0",
  2291. "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
  2292. "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
  2293. "dev": true,
  2294. "license": "MIT",
  2295. "engines": {
  2296. "node": ">= 0.4"
  2297. }
  2298. },
  2299. "node_modules/mdurl": {
  2300. "version": "1.0.1",
  2301. "dev": true,
  2302. "license": "MIT"
  2303. },
  2304. "node_modules/merge2": {
  2305. "version": "1.4.1",
  2306. "dev": true,
  2307. "license": "MIT",
  2308. "engines": {
  2309. "node": ">= 8"
  2310. }
  2311. },
  2312. "node_modules/micromatch": {
  2313. "version": "4.0.8",
  2314. "dev": true,
  2315. "license": "MIT",
  2316. "dependencies": {
  2317. "braces": "^3.0.3",
  2318. "picomatch": "^2.3.1"
  2319. },
  2320. "engines": {
  2321. "node": ">=8.6"
  2322. }
  2323. },
  2324. "node_modules/mime": {
  2325. "version": "1.6.0",
  2326. "dev": true,
  2327. "license": "MIT",
  2328. "bin": {
  2329. "mime": "cli.js"
  2330. },
  2331. "engines": {
  2332. "node": ">=4"
  2333. }
  2334. },
  2335. "node_modules/mimic-response": {
  2336. "version": "3.1.0",
  2337. "dev": true,
  2338. "license": "MIT",
  2339. "optional": true,
  2340. "engines": {
  2341. "node": ">=10"
  2342. },
  2343. "funding": {
  2344. "url": "https://github.com/sponsors/sindresorhus"
  2345. }
  2346. },
  2347. "node_modules/minimatch": {
  2348. "version": "9.0.3",
  2349. "dev": true,
  2350. "license": "ISC",
  2351. "dependencies": {
  2352. "brace-expansion": "^2.0.1"
  2353. },
  2354. "engines": {
  2355. "node": ">=16 || 14 >=14.17"
  2356. },
  2357. "funding": {
  2358. "url": "https://github.com/sponsors/isaacs"
  2359. }
  2360. },
  2361. "node_modules/minimist": {
  2362. "version": "1.2.8",
  2363. "dev": true,
  2364. "license": "MIT",
  2365. "optional": true,
  2366. "funding": {
  2367. "url": "https://github.com/sponsors/ljharb"
  2368. }
  2369. },
  2370. "node_modules/mkdirp-classic": {
  2371. "version": "0.5.3",
  2372. "dev": true,
  2373. "license": "MIT",
  2374. "optional": true
  2375. },
  2376. "node_modules/ms": {
  2377. "version": "2.1.3",
  2378. "dev": true,
  2379. "license": "MIT"
  2380. },
  2381. "node_modules/mute-stream": {
  2382. "version": "0.0.8",
  2383. "dev": true,
  2384. "license": "ISC"
  2385. },
  2386. "node_modules/napi-build-utils": {
  2387. "version": "2.0.0",
  2388. "dev": true,
  2389. "license": "MIT",
  2390. "optional": true
  2391. },
  2392. "node_modules/natural-compare": {
  2393. "version": "1.4.0",
  2394. "dev": true,
  2395. "license": "MIT"
  2396. },
  2397. "node_modules/node-abi": {
  2398. "version": "3.94.0",
  2399. "dev": true,
  2400. "license": "MIT",
  2401. "optional": true,
  2402. "dependencies": {
  2403. "semver": "^7.3.5"
  2404. },
  2405. "engines": {
  2406. "node": ">=10"
  2407. }
  2408. },
  2409. "node_modules/node-addon-api": {
  2410. "version": "4.3.0",
  2411. "dev": true,
  2412. "license": "MIT",
  2413. "optional": true
  2414. },
  2415. "node_modules/nth-check": {
  2416. "version": "2.1.1",
  2417. "dev": true,
  2418. "license": "BSD-2-Clause",
  2419. "dependencies": {
  2420. "boolbase": "^1.0.0"
  2421. },
  2422. "funding": {
  2423. "url": "https://github.com/fb55/nth-check?sponsor=1"
  2424. }
  2425. },
  2426. "node_modules/object-inspect": {
  2427. "version": "1.13.4",
  2428. "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
  2429. "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
  2430. "dev": true,
  2431. "license": "MIT",
  2432. "engines": {
  2433. "node": ">= 0.4"
  2434. },
  2435. "funding": {
  2436. "url": "https://github.com/sponsors/ljharb"
  2437. }
  2438. },
  2439. "node_modules/once": {
  2440. "version": "1.4.0",
  2441. "dev": true,
  2442. "license": "ISC",
  2443. "dependencies": {
  2444. "wrappy": "1"
  2445. }
  2446. },
  2447. "node_modules/optionator": {
  2448. "version": "0.9.4",
  2449. "dev": true,
  2450. "license": "MIT",
  2451. "dependencies": {
  2452. "deep-is": "^0.1.3",
  2453. "fast-levenshtein": "^2.0.6",
  2454. "levn": "^0.4.1",
  2455. "prelude-ls": "^1.2.1",
  2456. "type-check": "^0.4.0",
  2457. "word-wrap": "^1.2.5"
  2458. },
  2459. "engines": {
  2460. "node": ">= 0.8.0"
  2461. }
  2462. },
  2463. "node_modules/p-limit": {
  2464. "version": "3.1.0",
  2465. "dev": true,
  2466. "license": "MIT",
  2467. "dependencies": {
  2468. "yocto-queue": "^0.1.0"
  2469. },
  2470. "engines": {
  2471. "node": ">=10"
  2472. },
  2473. "funding": {
  2474. "url": "https://github.com/sponsors/sindresorhus"
  2475. }
  2476. },
  2477. "node_modules/p-locate": {
  2478. "version": "5.0.0",
  2479. "dev": true,
  2480. "license": "MIT",
  2481. "dependencies": {
  2482. "p-limit": "^3.0.2"
  2483. },
  2484. "engines": {
  2485. "node": ">=10"
  2486. },
  2487. "funding": {
  2488. "url": "https://github.com/sponsors/sindresorhus"
  2489. }
  2490. },
  2491. "node_modules/parent-module": {
  2492. "version": "1.0.1",
  2493. "dev": true,
  2494. "license": "MIT",
  2495. "dependencies": {
  2496. "callsites": "^3.0.0"
  2497. },
  2498. "engines": {
  2499. "node": ">=6"
  2500. }
  2501. },
  2502. "node_modules/parse-semver": {
  2503. "version": "1.1.1",
  2504. "dev": true,
  2505. "license": "MIT",
  2506. "dependencies": {
  2507. "semver": "^5.1.0"
  2508. }
  2509. },
  2510. "node_modules/parse-semver/node_modules/semver": {
  2511. "version": "5.7.2",
  2512. "dev": true,
  2513. "license": "ISC",
  2514. "bin": {
  2515. "semver": "bin/semver"
  2516. }
  2517. },
  2518. "node_modules/parse5": {
  2519. "version": "7.3.0",
  2520. "dev": true,
  2521. "license": "MIT",
  2522. "dependencies": {
  2523. "entities": "^6.0.0"
  2524. },
  2525. "funding": {
  2526. "url": "https://github.com/inikulin/parse5?sponsor=1"
  2527. }
  2528. },
  2529. "node_modules/parse5-htmlparser2-tree-adapter": {
  2530. "version": "7.1.0",
  2531. "dev": true,
  2532. "license": "MIT",
  2533. "dependencies": {
  2534. "domhandler": "^5.0.3",
  2535. "parse5": "^7.0.0"
  2536. },
  2537. "funding": {
  2538. "url": "https://github.com/inikulin/parse5?sponsor=1"
  2539. }
  2540. },
  2541. "node_modules/parse5-parser-stream": {
  2542. "version": "7.1.2",
  2543. "dev": true,
  2544. "license": "MIT",
  2545. "dependencies": {
  2546. "parse5": "^7.0.0"
  2547. },
  2548. "funding": {
  2549. "url": "https://github.com/inikulin/parse5?sponsor=1"
  2550. }
  2551. },
  2552. "node_modules/parse5/node_modules/entities": {
  2553. "version": "6.0.1",
  2554. "dev": true,
  2555. "license": "BSD-2-Clause",
  2556. "engines": {
  2557. "node": ">=0.12"
  2558. },
  2559. "funding": {
  2560. "url": "https://github.com/fb55/entities?sponsor=1"
  2561. }
  2562. },
  2563. "node_modules/path-exists": {
  2564. "version": "4.0.0",
  2565. "dev": true,
  2566. "license": "MIT",
  2567. "engines": {
  2568. "node": ">=8"
  2569. }
  2570. },
  2571. "node_modules/path-is-absolute": {
  2572. "version": "1.0.1",
  2573. "dev": true,
  2574. "license": "MIT",
  2575. "engines": {
  2576. "node": ">=0.10.0"
  2577. }
  2578. },
  2579. "node_modules/path-key": {
  2580. "version": "3.1.1",
  2581. "dev": true,
  2582. "license": "MIT",
  2583. "engines": {
  2584. "node": ">=8"
  2585. }
  2586. },
  2587. "node_modules/path-type": {
  2588. "version": "4.0.0",
  2589. "dev": true,
  2590. "license": "MIT",
  2591. "engines": {
  2592. "node": ">=8"
  2593. }
  2594. },
  2595. "node_modules/pend": {
  2596. "version": "1.2.0",
  2597. "dev": true,
  2598. "license": "MIT"
  2599. },
  2600. "node_modules/picomatch": {
  2601. "version": "2.3.2",
  2602. "dev": true,
  2603. "license": "MIT",
  2604. "engines": {
  2605. "node": ">=8.6"
  2606. },
  2607. "funding": {
  2608. "url": "https://github.com/sponsors/jonschlinkert"
  2609. }
  2610. },
  2611. "node_modules/prebuild-install": {
  2612. "version": "7.1.3",
  2613. "dev": true,
  2614. "license": "MIT",
  2615. "optional": true,
  2616. "dependencies": {
  2617. "detect-libc": "^2.0.0",
  2618. "expand-template": "^2.0.3",
  2619. "github-from-package": "0.0.0",
  2620. "minimist": "^1.2.3",
  2621. "mkdirp-classic": "^0.5.3",
  2622. "napi-build-utils": "^2.0.0",
  2623. "node-abi": "^3.3.0",
  2624. "pump": "^3.0.0",
  2625. "rc": "^1.2.7",
  2626. "simple-get": "^4.0.0",
  2627. "tar-fs": "^2.0.0",
  2628. "tunnel-agent": "^0.6.0"
  2629. },
  2630. "bin": {
  2631. "prebuild-install": "bin.js"
  2632. },
  2633. "engines": {
  2634. "node": ">=10"
  2635. }
  2636. },
  2637. "node_modules/prelude-ls": {
  2638. "version": "1.2.1",
  2639. "dev": true,
  2640. "license": "MIT",
  2641. "engines": {
  2642. "node": ">= 0.8.0"
  2643. }
  2644. },
  2645. "node_modules/pump": {
  2646. "version": "3.0.4",
  2647. "dev": true,
  2648. "license": "MIT",
  2649. "optional": true,
  2650. "dependencies": {
  2651. "end-of-stream": "^1.1.0",
  2652. "once": "^1.3.1"
  2653. }
  2654. },
  2655. "node_modules/punycode": {
  2656. "version": "2.3.1",
  2657. "dev": true,
  2658. "license": "MIT",
  2659. "engines": {
  2660. "node": ">=6"
  2661. }
  2662. },
  2663. "node_modules/qs": {
  2664. "version": "6.15.3",
  2665. "resolved": "https://registry.npmjs.org/qs/-/qs-6.15.3.tgz",
  2666. "integrity": "sha512-O9gl3zCl5h5blw1KGUzQKhA5oUXSl8rwUIM5o0S3nCXMliSvy5Dzx7/DJcI+SwgICv+IneSZwhBh1oSyEHA71A==",
  2667. "dev": true,
  2668. "license": "BSD-3-Clause",
  2669. "dependencies": {
  2670. "es-define-property": "^1.0.1",
  2671. "side-channel": "^1.1.1"
  2672. },
  2673. "engines": {
  2674. "node": ">=0.6"
  2675. },
  2676. "funding": {
  2677. "url": "https://github.com/sponsors/ljharb"
  2678. }
  2679. },
  2680. "node_modules/queue-microtask": {
  2681. "version": "1.2.3",
  2682. "dev": true,
  2683. "funding": [
  2684. {
  2685. "type": "github",
  2686. "url": "https://github.com/sponsors/feross"
  2687. },
  2688. {
  2689. "type": "patreon",
  2690. "url": "https://www.patreon.com/feross"
  2691. },
  2692. {
  2693. "type": "consulting",
  2694. "url": "https://feross.org/support"
  2695. }
  2696. ],
  2697. "license": "MIT"
  2698. },
  2699. "node_modules/rc": {
  2700. "version": "1.2.8",
  2701. "dev": true,
  2702. "license": "(BSD-2-Clause OR MIT OR Apache-2.0)",
  2703. "optional": true,
  2704. "dependencies": {
  2705. "deep-extend": "^0.6.0",
  2706. "ini": "~1.3.0",
  2707. "minimist": "^1.2.0",
  2708. "strip-json-comments": "~2.0.1"
  2709. },
  2710. "bin": {
  2711. "rc": "cli.js"
  2712. }
  2713. },
  2714. "node_modules/rc/node_modules/strip-json-comments": {
  2715. "version": "2.0.1",
  2716. "dev": true,
  2717. "license": "MIT",
  2718. "optional": true,
  2719. "engines": {
  2720. "node": ">=0.10.0"
  2721. }
  2722. },
  2723. "node_modules/read": {
  2724. "version": "1.0.7",
  2725. "dev": true,
  2726. "license": "ISC",
  2727. "dependencies": {
  2728. "mute-stream": "~0.0.4"
  2729. },
  2730. "engines": {
  2731. "node": ">=0.8"
  2732. }
  2733. },
  2734. "node_modules/readable-stream": {
  2735. "version": "3.6.2",
  2736. "dev": true,
  2737. "license": "MIT",
  2738. "optional": true,
  2739. "dependencies": {
  2740. "inherits": "^2.0.3",
  2741. "string_decoder": "^1.1.1",
  2742. "util-deprecate": "^1.0.1"
  2743. },
  2744. "engines": {
  2745. "node": ">= 6"
  2746. }
  2747. },
  2748. "node_modules/resolve-from": {
  2749. "version": "4.0.0",
  2750. "dev": true,
  2751. "license": "MIT",
  2752. "engines": {
  2753. "node": ">=4"
  2754. }
  2755. },
  2756. "node_modules/reusify": {
  2757. "version": "1.1.0",
  2758. "dev": true,
  2759. "license": "MIT",
  2760. "engines": {
  2761. "iojs": ">=1.0.0",
  2762. "node": ">=0.10.0"
  2763. }
  2764. },
  2765. "node_modules/rimraf": {
  2766. "version": "3.0.2",
  2767. "dev": true,
  2768. "license": "ISC",
  2769. "dependencies": {
  2770. "glob": "^7.1.3"
  2771. },
  2772. "bin": {
  2773. "rimraf": "bin.js"
  2774. },
  2775. "funding": {
  2776. "url": "https://github.com/sponsors/isaacs"
  2777. }
  2778. },
  2779. "node_modules/run-parallel": {
  2780. "version": "1.2.0",
  2781. "dev": true,
  2782. "funding": [
  2783. {
  2784. "type": "github",
  2785. "url": "https://github.com/sponsors/feross"
  2786. },
  2787. {
  2788. "type": "patreon",
  2789. "url": "https://www.patreon.com/feross"
  2790. },
  2791. {
  2792. "type": "consulting",
  2793. "url": "https://feross.org/support"
  2794. }
  2795. ],
  2796. "license": "MIT",
  2797. "dependencies": {
  2798. "queue-microtask": "^1.2.2"
  2799. }
  2800. },
  2801. "node_modules/safe-buffer": {
  2802. "version": "5.2.1",
  2803. "dev": true,
  2804. "funding": [
  2805. {
  2806. "type": "github",
  2807. "url": "https://github.com/sponsors/feross"
  2808. },
  2809. {
  2810. "type": "patreon",
  2811. "url": "https://www.patreon.com/feross"
  2812. },
  2813. {
  2814. "type": "consulting",
  2815. "url": "https://feross.org/support"
  2816. }
  2817. ],
  2818. "license": "MIT",
  2819. "optional": true
  2820. },
  2821. "node_modules/safer-buffer": {
  2822. "version": "2.1.2",
  2823. "dev": true,
  2824. "license": "MIT"
  2825. },
  2826. "node_modules/sax": {
  2827. "version": "1.6.0",
  2828. "dev": true,
  2829. "license": "BlueOak-1.0.0",
  2830. "engines": {
  2831. "node": ">=11.0.0"
  2832. }
  2833. },
  2834. "node_modules/semver": {
  2835. "version": "7.8.5",
  2836. "dev": true,
  2837. "license": "ISC",
  2838. "bin": {
  2839. "semver": "bin/semver.js"
  2840. },
  2841. "engines": {
  2842. "node": ">=10"
  2843. }
  2844. },
  2845. "node_modules/shebang-command": {
  2846. "version": "2.0.0",
  2847. "dev": true,
  2848. "license": "MIT",
  2849. "dependencies": {
  2850. "shebang-regex": "^3.0.0"
  2851. },
  2852. "engines": {
  2853. "node": ">=8"
  2854. }
  2855. },
  2856. "node_modules/shebang-regex": {
  2857. "version": "3.0.0",
  2858. "dev": true,
  2859. "license": "MIT",
  2860. "engines": {
  2861. "node": ">=8"
  2862. }
  2863. },
  2864. "node_modules/side-channel": {
  2865. "version": "1.1.1",
  2866. "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.1.tgz",
  2867. "integrity": "sha512-6x6dK6zJdpTzF4sQeNYxwtvBzf6Eg4GtlesS94HOvTudUeyK2WXAaIfmDgsyslYrRBeFIlsi54AYsFGUuhmvrQ==",
  2868. "dev": true,
  2869. "license": "MIT",
  2870. "dependencies": {
  2871. "es-errors": "^1.3.0",
  2872. "object-inspect": "^1.13.4",
  2873. "side-channel-list": "^1.0.1",
  2874. "side-channel-map": "^1.0.1",
  2875. "side-channel-weakmap": "^1.0.2"
  2876. },
  2877. "engines": {
  2878. "node": ">= 0.4"
  2879. },
  2880. "funding": {
  2881. "url": "https://github.com/sponsors/ljharb"
  2882. }
  2883. },
  2884. "node_modules/side-channel-list": {
  2885. "version": "1.0.1",
  2886. "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.1.tgz",
  2887. "integrity": "sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==",
  2888. "dev": true,
  2889. "license": "MIT",
  2890. "dependencies": {
  2891. "es-errors": "^1.3.0",
  2892. "object-inspect": "^1.13.4"
  2893. },
  2894. "engines": {
  2895. "node": ">= 0.4"
  2896. },
  2897. "funding": {
  2898. "url": "https://github.com/sponsors/ljharb"
  2899. }
  2900. },
  2901. "node_modules/side-channel-map": {
  2902. "version": "1.0.1",
  2903. "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
  2904. "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
  2905. "dev": true,
  2906. "license": "MIT",
  2907. "dependencies": {
  2908. "call-bound": "^1.0.2",
  2909. "es-errors": "^1.3.0",
  2910. "get-intrinsic": "^1.2.5",
  2911. "object-inspect": "^1.13.3"
  2912. },
  2913. "engines": {
  2914. "node": ">= 0.4"
  2915. },
  2916. "funding": {
  2917. "url": "https://github.com/sponsors/ljharb"
  2918. }
  2919. },
  2920. "node_modules/side-channel-weakmap": {
  2921. "version": "1.0.2",
  2922. "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
  2923. "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
  2924. "dev": true,
  2925. "license": "MIT",
  2926. "dependencies": {
  2927. "call-bound": "^1.0.2",
  2928. "es-errors": "^1.3.0",
  2929. "get-intrinsic": "^1.2.5",
  2930. "object-inspect": "^1.13.3",
  2931. "side-channel-map": "^1.0.1"
  2932. },
  2933. "engines": {
  2934. "node": ">= 0.4"
  2935. },
  2936. "funding": {
  2937. "url": "https://github.com/sponsors/ljharb"
  2938. }
  2939. },
  2940. "node_modules/simple-concat": {
  2941. "version": "1.0.1",
  2942. "dev": true,
  2943. "funding": [
  2944. {
  2945. "type": "github",
  2946. "url": "https://github.com/sponsors/feross"
  2947. },
  2948. {
  2949. "type": "patreon",
  2950. "url": "https://www.patreon.com/feross"
  2951. },
  2952. {
  2953. "type": "consulting",
  2954. "url": "https://feross.org/support"
  2955. }
  2956. ],
  2957. "license": "MIT",
  2958. "optional": true
  2959. },
  2960. "node_modules/simple-get": {
  2961. "version": "4.0.1",
  2962. "dev": true,
  2963. "funding": [
  2964. {
  2965. "type": "github",
  2966. "url": "https://github.com/sponsors/feross"
  2967. },
  2968. {
  2969. "type": "patreon",
  2970. "url": "https://www.patreon.com/feross"
  2971. },
  2972. {
  2973. "type": "consulting",
  2974. "url": "https://feross.org/support"
  2975. }
  2976. ],
  2977. "license": "MIT",
  2978. "optional": true,
  2979. "dependencies": {
  2980. "decompress-response": "^6.0.0",
  2981. "once": "^1.3.1",
  2982. "simple-concat": "^1.0.0"
  2983. }
  2984. },
  2985. "node_modules/slash": {
  2986. "version": "3.0.0",
  2987. "dev": true,
  2988. "license": "MIT",
  2989. "engines": {
  2990. "node": ">=8"
  2991. }
  2992. },
  2993. "node_modules/string_decoder": {
  2994. "version": "1.3.0",
  2995. "dev": true,
  2996. "license": "MIT",
  2997. "optional": true,
  2998. "dependencies": {
  2999. "safe-buffer": "~5.2.0"
  3000. }
  3001. },
  3002. "node_modules/strip-ansi": {
  3003. "version": "6.0.1",
  3004. "dev": true,
  3005. "license": "MIT",
  3006. "dependencies": {
  3007. "ansi-regex": "^5.0.1"
  3008. },
  3009. "engines": {
  3010. "node": ">=8"
  3011. }
  3012. },
  3013. "node_modules/strip-json-comments": {
  3014. "version": "3.1.1",
  3015. "dev": true,
  3016. "license": "MIT",
  3017. "engines": {
  3018. "node": ">=8"
  3019. },
  3020. "funding": {
  3021. "url": "https://github.com/sponsors/sindresorhus"
  3022. }
  3023. },
  3024. "node_modules/supports-color": {
  3025. "version": "5.5.0",
  3026. "dev": true,
  3027. "license": "MIT",
  3028. "dependencies": {
  3029. "has-flag": "^3.0.0"
  3030. },
  3031. "engines": {
  3032. "node": ">=4"
  3033. }
  3034. },
  3035. "node_modules/tar-fs": {
  3036. "version": "2.1.5",
  3037. "dev": true,
  3038. "license": "MIT",
  3039. "optional": true,
  3040. "dependencies": {
  3041. "chownr": "^1.1.1",
  3042. "mkdirp-classic": "^0.5.2",
  3043. "pump": "^3.0.0",
  3044. "tar-stream": "^2.1.4"
  3045. }
  3046. },
  3047. "node_modules/tar-stream": {
  3048. "version": "2.2.0",
  3049. "dev": true,
  3050. "license": "MIT",
  3051. "optional": true,
  3052. "dependencies": {
  3053. "bl": "^4.0.3",
  3054. "end-of-stream": "^1.4.1",
  3055. "fs-constants": "^1.0.0",
  3056. "inherits": "^2.0.3",
  3057. "readable-stream": "^3.1.1"
  3058. },
  3059. "engines": {
  3060. "node": ">=6"
  3061. }
  3062. },
  3063. "node_modules/text-table": {
  3064. "version": "0.2.0",
  3065. "dev": true,
  3066. "license": "MIT"
  3067. },
  3068. "node_modules/tmp": {
  3069. "version": "0.2.7",
  3070. "dev": true,
  3071. "license": "MIT",
  3072. "engines": {
  3073. "node": ">=14.14"
  3074. }
  3075. },
  3076. "node_modules/to-regex-range": {
  3077. "version": "5.0.1",
  3078. "dev": true,
  3079. "license": "MIT",
  3080. "dependencies": {
  3081. "is-number": "^7.0.0"
  3082. },
  3083. "engines": {
  3084. "node": ">=8.0"
  3085. }
  3086. },
  3087. "node_modules/ts-api-utils": {
  3088. "version": "1.4.3",
  3089. "dev": true,
  3090. "license": "MIT",
  3091. "engines": {
  3092. "node": ">=16"
  3093. },
  3094. "peerDependencies": {
  3095. "typescript": ">=4.2.0"
  3096. }
  3097. },
  3098. "node_modules/tunnel": {
  3099. "version": "0.0.6",
  3100. "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz",
  3101. "integrity": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==",
  3102. "dev": true,
  3103. "license": "MIT",
  3104. "engines": {
  3105. "node": ">=0.6.11 <=0.7.0 || >=0.7.3"
  3106. }
  3107. },
  3108. "node_modules/tunnel-agent": {
  3109. "version": "0.6.0",
  3110. "dev": true,
  3111. "license": "Apache-2.0",
  3112. "optional": true,
  3113. "dependencies": {
  3114. "safe-buffer": "^5.0.1"
  3115. },
  3116. "engines": {
  3117. "node": "*"
  3118. }
  3119. },
  3120. "node_modules/type-check": {
  3121. "version": "0.4.0",
  3122. "dev": true,
  3123. "license": "MIT",
  3124. "dependencies": {
  3125. "prelude-ls": "^1.2.1"
  3126. },
  3127. "engines": {
  3128. "node": ">= 0.8.0"
  3129. }
  3130. },
  3131. "node_modules/type-fest": {
  3132. "version": "0.20.2",
  3133. "dev": true,
  3134. "license": "(MIT OR CC0-1.0)",
  3135. "engines": {
  3136. "node": ">=10"
  3137. },
  3138. "funding": {
  3139. "url": "https://github.com/sponsors/sindresorhus"
  3140. }
  3141. },
  3142. "node_modules/typed-rest-client": {
  3143. "version": "1.8.11",
  3144. "resolved": "https://registry.npmjs.org/typed-rest-client/-/typed-rest-client-1.8.11.tgz",
  3145. "integrity": "sha512-5UvfMpd1oelmUPRbbaVnq+rHP7ng2cE4qoQkQeAqxRL6PklkxsM0g32/HL0yfvruK6ojQ5x8EE+HF4YV6DtuCA==",
  3146. "dev": true,
  3147. "license": "MIT",
  3148. "dependencies": {
  3149. "qs": "^6.9.1",
  3150. "tunnel": "0.0.6",
  3151. "underscore": "^1.12.1"
  3152. }
  3153. },
  3154. "node_modules/typescript": {
  3155. "version": "5.9.3",
  3156. "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
  3157. "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
  3158. "dev": true,
  3159. "license": "Apache-2.0",
  3160. "bin": {
  3161. "tsc": "bin/tsc",
  3162. "tsserver": "bin/tsserver"
  3163. },
  3164. "engines": {
  3165. "node": ">=14.17"
  3166. }
  3167. },
  3168. "node_modules/uc.micro": {
  3169. "version": "1.0.6",
  3170. "dev": true,
  3171. "license": "MIT"
  3172. },
  3173. "node_modules/underscore": {
  3174. "version": "1.13.8",
  3175. "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.8.tgz",
  3176. "integrity": "sha512-DXtD3ZtEQzc7M8m4cXotyHR+FAS18C64asBYY5vqZexfYryNNnDc02W4hKg3rdQuqOYas1jkseX0+nZXjTXnvQ==",
  3177. "dev": true,
  3178. "license": "MIT"
  3179. },
  3180. "node_modules/undici": {
  3181. "version": "7.28.0",
  3182. "dev": true,
  3183. "license": "MIT",
  3184. "engines": {
  3185. "node": ">=20.18.1"
  3186. }
  3187. },
  3188. "node_modules/undici-types": {
  3189. "version": "6.21.0",
  3190. "dev": true,
  3191. "license": "MIT"
  3192. },
  3193. "node_modules/uri-js": {
  3194. "version": "4.4.1",
  3195. "dev": true,
  3196. "license": "BSD-2-Clause",
  3197. "dependencies": {
  3198. "punycode": "^2.1.0"
  3199. }
  3200. },
  3201. "node_modules/url-join": {
  3202. "version": "4.0.1",
  3203. "dev": true,
  3204. "license": "MIT"
  3205. },
  3206. "node_modules/util-deprecate": {
  3207. "version": "1.0.2",
  3208. "dev": true,
  3209. "license": "MIT",
  3210. "optional": true
  3211. },
  3212. "node_modules/whatwg-encoding": {
  3213. "version": "3.1.1",
  3214. "dev": true,
  3215. "license": "MIT",
  3216. "dependencies": {
  3217. "iconv-lite": "0.6.3"
  3218. },
  3219. "engines": {
  3220. "node": ">=18"
  3221. }
  3222. },
  3223. "node_modules/whatwg-mimetype": {
  3224. "version": "4.0.0",
  3225. "dev": true,
  3226. "license": "MIT",
  3227. "engines": {
  3228. "node": ">=18"
  3229. }
  3230. },
  3231. "node_modules/which": {
  3232. "version": "2.0.2",
  3233. "dev": true,
  3234. "license": "ISC",
  3235. "dependencies": {
  3236. "isexe": "^2.0.0"
  3237. },
  3238. "bin": {
  3239. "node-which": "bin/node-which"
  3240. },
  3241. "engines": {
  3242. "node": ">= 8"
  3243. }
  3244. },
  3245. "node_modules/word-wrap": {
  3246. "version": "1.2.5",
  3247. "dev": true,
  3248. "license": "MIT",
  3249. "engines": {
  3250. "node": ">=0.10.0"
  3251. }
  3252. },
  3253. "node_modules/wrappy": {
  3254. "version": "1.0.2",
  3255. "dev": true,
  3256. "license": "ISC"
  3257. },
  3258. "node_modules/xml2js": {
  3259. "version": "0.5.0",
  3260. "dev": true,
  3261. "license": "MIT",
  3262. "dependencies": {
  3263. "sax": ">=0.6.0",
  3264. "xmlbuilder": "~11.0.0"
  3265. },
  3266. "engines": {
  3267. "node": ">=4.0.0"
  3268. }
  3269. },
  3270. "node_modules/xmlbuilder": {
  3271. "version": "11.0.1",
  3272. "dev": true,
  3273. "license": "MIT",
  3274. "engines": {
  3275. "node": ">=4.0"
  3276. }
  3277. },
  3278. "node_modules/yallist": {
  3279. "version": "4.0.0",
  3280. "dev": true,
  3281. "license": "ISC"
  3282. },
  3283. "node_modules/yauzl": {
  3284. "version": "2.10.0",
  3285. "dev": true,
  3286. "license": "MIT",
  3287. "dependencies": {
  3288. "buffer-crc32": "~0.2.3",
  3289. "fd-slicer": "~1.1.0"
  3290. }
  3291. },
  3292. "node_modules/yazl": {
  3293. "version": "2.5.1",
  3294. "dev": true,
  3295. "license": "MIT",
  3296. "dependencies": {
  3297. "buffer-crc32": "~0.2.3"
  3298. }
  3299. },
  3300. "node_modules/yocto-queue": {
  3301. "version": "0.1.0",
  3302. "dev": true,
  3303. "license": "MIT",
  3304. "engines": {
  3305. "node": ">=10"
  3306. },
  3307. "funding": {
  3308. "url": "https://github.com/sponsors/sindresorhus"
  3309. }
  3310. }
  3311. }
  3312. }