package-lock.json 97 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930
  1. {
  2. "name": "warp-solana-bot",
  3. "version": "2.0.0",
  4. "lockfileVersion": 3,
  5. "requires": true,
  6. "packages": {
  7. "": {
  8. "name": "warp-solana-bot",
  9. "version": "2.0.0",
  10. "dependencies": {
  11. "@raydium-io/raydium-sdk": "^1.3.1-beta.47",
  12. "@solana/spl-token": "^0.4.0",
  13. "@solana/web3.js": "^1.89.1",
  14. "async-mutex": "^0.5.0",
  15. "bigint-buffer": "^1.1.5",
  16. "bip39": "^3.1.0",
  17. "bn.js": "^5.2.1",
  18. "bs58": "^5.0.0",
  19. "dotenv": "^16.4.1",
  20. "ed25519-hd-key": "^1.3.0",
  21. "i": "^0.3.7",
  22. "npm": "^10.5.2",
  23. "pino": "^8.18.0",
  24. "pino-pretty": "^10.3.1",
  25. "pino-std-serializers": "^6.2.2"
  26. },
  27. "devDependencies": {
  28. "@types/bn.js": "^5.1.5",
  29. "prettier": "^3.2.4",
  30. "ts-node": "^10.9.2",
  31. "typescript": "^5.3.3"
  32. }
  33. },
  34. "node_modules/@babel/runtime": {
  35. "version": "7.23.8",
  36. "license": "MIT",
  37. "dependencies": {
  38. "regenerator-runtime": "^0.14.0"
  39. },
  40. "engines": {
  41. "node": ">=6.9.0"
  42. }
  43. },
  44. "node_modules/@cspotcode/source-map-support": {
  45. "version": "0.8.1",
  46. "dev": true,
  47. "license": "MIT",
  48. "dependencies": {
  49. "@jridgewell/trace-mapping": "0.3.9"
  50. },
  51. "engines": {
  52. "node": ">=12"
  53. }
  54. },
  55. "node_modules/@jridgewell/resolve-uri": {
  56. "version": "3.1.1",
  57. "dev": true,
  58. "license": "MIT",
  59. "engines": {
  60. "node": ">=6.0.0"
  61. }
  62. },
  63. "node_modules/@jridgewell/sourcemap-codec": {
  64. "version": "1.4.15",
  65. "dev": true,
  66. "license": "MIT"
  67. },
  68. "node_modules/@jridgewell/trace-mapping": {
  69. "version": "0.3.9",
  70. "dev": true,
  71. "license": "MIT",
  72. "dependencies": {
  73. "@jridgewell/resolve-uri": "^3.0.3",
  74. "@jridgewell/sourcemap-codec": "^1.4.10"
  75. }
  76. },
  77. "node_modules/@noble/curves": {
  78. "version": "1.3.0",
  79. "license": "MIT",
  80. "dependencies": {
  81. "@noble/hashes": "1.3.3"
  82. },
  83. "funding": {
  84. "url": "https://paulmillr.com/funding/"
  85. }
  86. },
  87. "node_modules/@noble/hashes": {
  88. "version": "1.3.3",
  89. "license": "MIT",
  90. "engines": {
  91. "node": ">= 16"
  92. },
  93. "funding": {
  94. "url": "https://paulmillr.com/funding/"
  95. }
  96. },
  97. "node_modules/@raydium-io/raydium-sdk": {
  98. "version": "1.3.1-beta.47",
  99. "license": "GPL-3.0",
  100. "dependencies": {
  101. "@solana/buffer-layout": "^4.0.1",
  102. "@solana/spl-token": "^0.3.9",
  103. "axios": "^1.6.2",
  104. "big.js": "^6.2.1",
  105. "bn.js": "^5.2.1",
  106. "decimal.js": "^10.4.3",
  107. "decimal.js-light": "^2.5.1",
  108. "fecha": "^4.2.3",
  109. "lodash": "^4.17.21",
  110. "toformat": "^2.0.0"
  111. },
  112. "peerDependencies": {
  113. "@solana/web3.js": "^1.73.0"
  114. }
  115. },
  116. "node_modules/@raydium-io/raydium-sdk/node_modules/@solana/spl-token": {
  117. "version": "0.3.11",
  118. "license": "Apache-2.0",
  119. "dependencies": {
  120. "@solana/buffer-layout": "^4.0.0",
  121. "@solana/buffer-layout-utils": "^0.2.0",
  122. "@solana/spl-token-metadata": "^0.1.2",
  123. "buffer": "^6.0.3"
  124. },
  125. "engines": {
  126. "node": ">=16"
  127. },
  128. "peerDependencies": {
  129. "@solana/web3.js": "^1.88.0"
  130. }
  131. },
  132. "node_modules/@solana/buffer-layout": {
  133. "version": "4.0.1",
  134. "license": "MIT",
  135. "dependencies": {
  136. "buffer": "~6.0.3"
  137. },
  138. "engines": {
  139. "node": ">=5.10"
  140. }
  141. },
  142. "node_modules/@solana/buffer-layout-utils": {
  143. "version": "0.2.0",
  144. "license": "Apache-2.0",
  145. "dependencies": {
  146. "@solana/buffer-layout": "^4.0.0",
  147. "@solana/web3.js": "^1.32.0",
  148. "bigint-buffer": "^1.1.5",
  149. "bignumber.js": "^9.0.1"
  150. },
  151. "engines": {
  152. "node": ">= 10"
  153. }
  154. },
  155. "node_modules/@solana/codecs-core": {
  156. "version": "2.0.0-experimental.8618508",
  157. "license": "MIT"
  158. },
  159. "node_modules/@solana/codecs-data-structures": {
  160. "version": "2.0.0-experimental.8618508",
  161. "license": "MIT",
  162. "dependencies": {
  163. "@solana/codecs-core": "2.0.0-experimental.8618508",
  164. "@solana/codecs-numbers": "2.0.0-experimental.8618508"
  165. }
  166. },
  167. "node_modules/@solana/codecs-numbers": {
  168. "version": "2.0.0-experimental.8618508",
  169. "license": "MIT",
  170. "dependencies": {
  171. "@solana/codecs-core": "2.0.0-experimental.8618508"
  172. }
  173. },
  174. "node_modules/@solana/codecs-strings": {
  175. "version": "2.0.0-experimental.8618508",
  176. "license": "MIT",
  177. "dependencies": {
  178. "@solana/codecs-core": "2.0.0-experimental.8618508",
  179. "@solana/codecs-numbers": "2.0.0-experimental.8618508"
  180. },
  181. "peerDependencies": {
  182. "fastestsmallesttextencoderdecoder": "^1.0.22"
  183. }
  184. },
  185. "node_modules/@solana/options": {
  186. "version": "2.0.0-experimental.8618508",
  187. "license": "MIT",
  188. "dependencies": {
  189. "@solana/codecs-core": "2.0.0-experimental.8618508",
  190. "@solana/codecs-numbers": "2.0.0-experimental.8618508"
  191. }
  192. },
  193. "node_modules/@solana/spl-token": {
  194. "version": "0.4.0",
  195. "license": "Apache-2.0",
  196. "dependencies": {
  197. "@solana/buffer-layout": "^4.0.0",
  198. "@solana/buffer-layout-utils": "^0.2.0",
  199. "@solana/spl-token-metadata": "^0.1.2",
  200. "buffer": "^6.0.3"
  201. },
  202. "engines": {
  203. "node": ">=16"
  204. },
  205. "peerDependencies": {
  206. "@solana/web3.js": "^1.89.1"
  207. }
  208. },
  209. "node_modules/@solana/spl-token-metadata": {
  210. "version": "0.1.2",
  211. "license": "Apache-2.0",
  212. "dependencies": {
  213. "@solana/codecs-core": "2.0.0-experimental.8618508",
  214. "@solana/codecs-data-structures": "2.0.0-experimental.8618508",
  215. "@solana/codecs-numbers": "2.0.0-experimental.8618508",
  216. "@solana/codecs-strings": "2.0.0-experimental.8618508",
  217. "@solana/options": "2.0.0-experimental.8618508",
  218. "@solana/spl-type-length-value": "0.1.0"
  219. },
  220. "engines": {
  221. "node": ">=16"
  222. },
  223. "peerDependencies": {
  224. "@solana/web3.js": "^1.87.6"
  225. }
  226. },
  227. "node_modules/@solana/spl-type-length-value": {
  228. "version": "0.1.0",
  229. "license": "Apache-2.0",
  230. "dependencies": {
  231. "buffer": "^6.0.3"
  232. },
  233. "engines": {
  234. "node": ">=16"
  235. }
  236. },
  237. "node_modules/@solana/web3.js": {
  238. "version": "1.89.1",
  239. "license": "MIT",
  240. "dependencies": {
  241. "@babel/runtime": "^7.23.4",
  242. "@noble/curves": "^1.2.0",
  243. "@noble/hashes": "^1.3.2",
  244. "@solana/buffer-layout": "^4.0.1",
  245. "agentkeepalive": "^4.5.0",
  246. "bigint-buffer": "^1.1.5",
  247. "bn.js": "^5.2.1",
  248. "borsh": "^0.7.0",
  249. "bs58": "^4.0.1",
  250. "buffer": "6.0.3",
  251. "fast-stable-stringify": "^1.0.0",
  252. "jayson": "^4.1.0",
  253. "node-fetch": "^2.7.0",
  254. "rpc-websockets": "^7.5.1",
  255. "superstruct": "^0.14.2"
  256. }
  257. },
  258. "node_modules/@solana/web3.js/node_modules/base-x": {
  259. "version": "3.0.9",
  260. "license": "MIT",
  261. "dependencies": {
  262. "safe-buffer": "^5.0.1"
  263. }
  264. },
  265. "node_modules/@solana/web3.js/node_modules/bs58": {
  266. "version": "4.0.1",
  267. "license": "MIT",
  268. "dependencies": {
  269. "base-x": "^3.0.2"
  270. }
  271. },
  272. "node_modules/@solana/web3.js/node_modules/node-fetch": {
  273. "version": "2.7.0",
  274. "license": "MIT",
  275. "dependencies": {
  276. "whatwg-url": "^5.0.0"
  277. },
  278. "engines": {
  279. "node": "4.x || >=6.0.0"
  280. },
  281. "peerDependencies": {
  282. "encoding": "^0.1.0"
  283. },
  284. "peerDependenciesMeta": {
  285. "encoding": {
  286. "optional": true
  287. }
  288. }
  289. },
  290. "node_modules/@tsconfig/node10": {
  291. "version": "1.0.9",
  292. "dev": true,
  293. "license": "MIT"
  294. },
  295. "node_modules/@tsconfig/node12": {
  296. "version": "1.0.11",
  297. "dev": true,
  298. "license": "MIT"
  299. },
  300. "node_modules/@tsconfig/node14": {
  301. "version": "1.0.3",
  302. "dev": true,
  303. "license": "MIT"
  304. },
  305. "node_modules/@tsconfig/node16": {
  306. "version": "1.0.3",
  307. "dev": true,
  308. "license": "MIT"
  309. },
  310. "node_modules/@types/bn.js": {
  311. "version": "5.1.5",
  312. "dev": true,
  313. "license": "MIT",
  314. "dependencies": {
  315. "@types/node": "*"
  316. }
  317. },
  318. "node_modules/@types/connect": {
  319. "version": "3.4.38",
  320. "license": "MIT",
  321. "dependencies": {
  322. "@types/node": "*"
  323. }
  324. },
  325. "node_modules/@types/node": {
  326. "version": "12.20.55",
  327. "license": "MIT"
  328. },
  329. "node_modules/@types/ws": {
  330. "version": "7.4.7",
  331. "license": "MIT",
  332. "dependencies": {
  333. "@types/node": "*"
  334. }
  335. },
  336. "node_modules/abort-controller": {
  337. "version": "3.0.0",
  338. "license": "MIT",
  339. "dependencies": {
  340. "event-target-shim": "^5.0.0"
  341. },
  342. "engines": {
  343. "node": ">=6.5"
  344. }
  345. },
  346. "node_modules/acorn": {
  347. "version": "8.8.2",
  348. "dev": true,
  349. "license": "MIT",
  350. "bin": {
  351. "acorn": "bin/acorn"
  352. },
  353. "engines": {
  354. "node": ">=0.4.0"
  355. }
  356. },
  357. "node_modules/acorn-walk": {
  358. "version": "8.2.0",
  359. "dev": true,
  360. "license": "MIT",
  361. "engines": {
  362. "node": ">=0.4.0"
  363. }
  364. },
  365. "node_modules/agentkeepalive": {
  366. "version": "4.5.0",
  367. "license": "MIT",
  368. "dependencies": {
  369. "humanize-ms": "^1.2.1"
  370. },
  371. "engines": {
  372. "node": ">= 8.0.0"
  373. }
  374. },
  375. "node_modules/arg": {
  376. "version": "4.1.3",
  377. "dev": true,
  378. "license": "MIT"
  379. },
  380. "node_modules/async-mutex": {
  381. "version": "0.5.0",
  382. "license": "MIT",
  383. "dependencies": {
  384. "tslib": "^2.4.0"
  385. }
  386. },
  387. "node_modules/asynckit": {
  388. "version": "0.4.0",
  389. "license": "MIT"
  390. },
  391. "node_modules/atomic-sleep": {
  392. "version": "1.0.0",
  393. "license": "MIT",
  394. "engines": {
  395. "node": ">=8.0.0"
  396. }
  397. },
  398. "node_modules/axios": {
  399. "version": "1.6.7",
  400. "license": "MIT",
  401. "dependencies": {
  402. "follow-redirects": "^1.15.4",
  403. "form-data": "^4.0.0",
  404. "proxy-from-env": "^1.1.0"
  405. }
  406. },
  407. "node_modules/base-x": {
  408. "version": "4.0.0",
  409. "license": "MIT"
  410. },
  411. "node_modules/base64-js": {
  412. "version": "1.5.1",
  413. "funding": [
  414. {
  415. "type": "github",
  416. "url": "https://github.com/sponsors/feross"
  417. },
  418. {
  419. "type": "patreon",
  420. "url": "https://www.patreon.com/feross"
  421. },
  422. {
  423. "type": "consulting",
  424. "url": "https://feross.org/support"
  425. }
  426. ],
  427. "license": "MIT"
  428. },
  429. "node_modules/big.js": {
  430. "version": "6.2.1",
  431. "license": "MIT",
  432. "engines": {
  433. "node": "*"
  434. },
  435. "funding": {
  436. "type": "opencollective",
  437. "url": "https://opencollective.com/bigjs"
  438. }
  439. },
  440. "node_modules/bigint-buffer": {
  441. "version": "1.1.5",
  442. "hasInstallScript": true,
  443. "license": "Apache-2.0",
  444. "dependencies": {
  445. "bindings": "^1.3.0"
  446. },
  447. "engines": {
  448. "node": ">= 10.0.0"
  449. }
  450. },
  451. "node_modules/bignumber.js": {
  452. "version": "9.1.2",
  453. "license": "MIT",
  454. "engines": {
  455. "node": "*"
  456. }
  457. },
  458. "node_modules/bindings": {
  459. "version": "1.5.0",
  460. "license": "MIT",
  461. "dependencies": {
  462. "file-uri-to-path": "1.0.0"
  463. }
  464. },
  465. "node_modules/bip39": {
  466. "version": "3.1.0",
  467. "license": "ISC",
  468. "dependencies": {
  469. "@noble/hashes": "^1.2.0"
  470. }
  471. },
  472. "node_modules/bn.js": {
  473. "version": "5.2.1",
  474. "license": "MIT"
  475. },
  476. "node_modules/borsh": {
  477. "version": "0.7.0",
  478. "license": "Apache-2.0",
  479. "dependencies": {
  480. "bn.js": "^5.2.0",
  481. "bs58": "^4.0.0",
  482. "text-encoding-utf-8": "^1.0.2"
  483. }
  484. },
  485. "node_modules/borsh/node_modules/base-x": {
  486. "version": "3.0.9",
  487. "license": "MIT",
  488. "dependencies": {
  489. "safe-buffer": "^5.0.1"
  490. }
  491. },
  492. "node_modules/borsh/node_modules/bs58": {
  493. "version": "4.0.1",
  494. "license": "MIT",
  495. "dependencies": {
  496. "base-x": "^3.0.2"
  497. }
  498. },
  499. "node_modules/bs58": {
  500. "version": "5.0.0",
  501. "license": "MIT",
  502. "dependencies": {
  503. "base-x": "^4.0.0"
  504. }
  505. },
  506. "node_modules/buffer": {
  507. "version": "6.0.3",
  508. "funding": [
  509. {
  510. "type": "github",
  511. "url": "https://github.com/sponsors/feross"
  512. },
  513. {
  514. "type": "patreon",
  515. "url": "https://www.patreon.com/feross"
  516. },
  517. {
  518. "type": "consulting",
  519. "url": "https://feross.org/support"
  520. }
  521. ],
  522. "license": "MIT",
  523. "dependencies": {
  524. "base64-js": "^1.3.1",
  525. "ieee754": "^1.2.1"
  526. }
  527. },
  528. "node_modules/bufferutil": {
  529. "version": "4.0.8",
  530. "hasInstallScript": true,
  531. "license": "MIT",
  532. "optional": true,
  533. "dependencies": {
  534. "node-gyp-build": "^4.3.0"
  535. },
  536. "engines": {
  537. "node": ">=6.14.2"
  538. }
  539. },
  540. "node_modules/cipher-base": {
  541. "version": "1.0.4",
  542. "license": "MIT",
  543. "dependencies": {
  544. "inherits": "^2.0.1",
  545. "safe-buffer": "^5.0.1"
  546. }
  547. },
  548. "node_modules/colorette": {
  549. "version": "2.0.20",
  550. "license": "MIT"
  551. },
  552. "node_modules/combined-stream": {
  553. "version": "1.0.8",
  554. "license": "MIT",
  555. "dependencies": {
  556. "delayed-stream": "~1.0.0"
  557. },
  558. "engines": {
  559. "node": ">= 0.8"
  560. }
  561. },
  562. "node_modules/commander": {
  563. "version": "2.20.3",
  564. "license": "MIT"
  565. },
  566. "node_modules/create-hash": {
  567. "version": "1.2.0",
  568. "license": "MIT",
  569. "dependencies": {
  570. "cipher-base": "^1.0.1",
  571. "inherits": "^2.0.1",
  572. "md5.js": "^1.3.4",
  573. "ripemd160": "^2.0.1",
  574. "sha.js": "^2.4.0"
  575. }
  576. },
  577. "node_modules/create-hmac": {
  578. "version": "1.1.7",
  579. "license": "MIT",
  580. "dependencies": {
  581. "cipher-base": "^1.0.3",
  582. "create-hash": "^1.1.0",
  583. "inherits": "^2.0.1",
  584. "ripemd160": "^2.0.0",
  585. "safe-buffer": "^5.0.1",
  586. "sha.js": "^2.4.8"
  587. }
  588. },
  589. "node_modules/create-require": {
  590. "version": "1.1.1",
  591. "dev": true,
  592. "license": "MIT"
  593. },
  594. "node_modules/dateformat": {
  595. "version": "4.6.3",
  596. "license": "MIT",
  597. "engines": {
  598. "node": "*"
  599. }
  600. },
  601. "node_modules/decimal.js": {
  602. "version": "10.4.3",
  603. "license": "MIT"
  604. },
  605. "node_modules/decimal.js-light": {
  606. "version": "2.5.1",
  607. "license": "MIT"
  608. },
  609. "node_modules/delay": {
  610. "version": "5.0.0",
  611. "license": "MIT",
  612. "engines": {
  613. "node": ">=10"
  614. },
  615. "funding": {
  616. "url": "https://github.com/sponsors/sindresorhus"
  617. }
  618. },
  619. "node_modules/delayed-stream": {
  620. "version": "1.0.0",
  621. "license": "MIT",
  622. "engines": {
  623. "node": ">=0.4.0"
  624. }
  625. },
  626. "node_modules/diff": {
  627. "version": "4.0.2",
  628. "dev": true,
  629. "license": "BSD-3-Clause",
  630. "engines": {
  631. "node": ">=0.3.1"
  632. }
  633. },
  634. "node_modules/dotenv": {
  635. "version": "16.4.1",
  636. "license": "BSD-2-Clause",
  637. "engines": {
  638. "node": ">=12"
  639. },
  640. "funding": {
  641. "url": "https://github.com/motdotla/dotenv?sponsor=1"
  642. }
  643. },
  644. "node_modules/ed25519-hd-key": {
  645. "version": "1.3.0",
  646. "license": "MIT",
  647. "dependencies": {
  648. "create-hmac": "1.1.7",
  649. "tweetnacl": "1.0.3"
  650. }
  651. },
  652. "node_modules/end-of-stream": {
  653. "version": "1.4.4",
  654. "license": "MIT",
  655. "dependencies": {
  656. "once": "^1.4.0"
  657. }
  658. },
  659. "node_modules/es6-promise": {
  660. "version": "4.2.8",
  661. "license": "MIT"
  662. },
  663. "node_modules/es6-promisify": {
  664. "version": "5.0.0",
  665. "license": "MIT",
  666. "dependencies": {
  667. "es6-promise": "^4.0.3"
  668. }
  669. },
  670. "node_modules/event-target-shim": {
  671. "version": "5.0.1",
  672. "license": "MIT",
  673. "engines": {
  674. "node": ">=6"
  675. }
  676. },
  677. "node_modules/eventemitter3": {
  678. "version": "4.0.7",
  679. "license": "MIT"
  680. },
  681. "node_modules/events": {
  682. "version": "3.3.0",
  683. "license": "MIT",
  684. "engines": {
  685. "node": ">=0.8.x"
  686. }
  687. },
  688. "node_modules/eyes": {
  689. "version": "0.1.8",
  690. "engines": {
  691. "node": "> 0.1.90"
  692. }
  693. },
  694. "node_modules/fast-copy": {
  695. "version": "3.0.1",
  696. "license": "MIT"
  697. },
  698. "node_modules/fast-redact": {
  699. "version": "3.2.0",
  700. "license": "MIT",
  701. "engines": {
  702. "node": ">=6"
  703. }
  704. },
  705. "node_modules/fast-safe-stringify": {
  706. "version": "2.1.1",
  707. "license": "MIT"
  708. },
  709. "node_modules/fast-stable-stringify": {
  710. "version": "1.0.0",
  711. "license": "MIT"
  712. },
  713. "node_modules/fastestsmallesttextencoderdecoder": {
  714. "version": "1.0.22",
  715. "license": "CC0-1.0",
  716. "peer": true
  717. },
  718. "node_modules/fecha": {
  719. "version": "4.2.3",
  720. "license": "MIT"
  721. },
  722. "node_modules/file-uri-to-path": {
  723. "version": "1.0.0",
  724. "license": "MIT"
  725. },
  726. "node_modules/follow-redirects": {
  727. "version": "1.15.5",
  728. "funding": [
  729. {
  730. "type": "individual",
  731. "url": "https://github.com/sponsors/RubenVerborgh"
  732. }
  733. ],
  734. "license": "MIT",
  735. "engines": {
  736. "node": ">=4.0"
  737. },
  738. "peerDependenciesMeta": {
  739. "debug": {
  740. "optional": true
  741. }
  742. }
  743. },
  744. "node_modules/form-data": {
  745. "version": "4.0.0",
  746. "license": "MIT",
  747. "dependencies": {
  748. "asynckit": "^0.4.0",
  749. "combined-stream": "^1.0.8",
  750. "mime-types": "^2.1.12"
  751. },
  752. "engines": {
  753. "node": ">= 6"
  754. }
  755. },
  756. "node_modules/hash-base": {
  757. "version": "3.1.0",
  758. "license": "MIT",
  759. "dependencies": {
  760. "inherits": "^2.0.4",
  761. "readable-stream": "^3.6.0",
  762. "safe-buffer": "^5.2.0"
  763. },
  764. "engines": {
  765. "node": ">=4"
  766. }
  767. },
  768. "node_modules/hash-base/node_modules/readable-stream": {
  769. "version": "3.6.2",
  770. "license": "MIT",
  771. "dependencies": {
  772. "inherits": "^2.0.3",
  773. "string_decoder": "^1.1.1",
  774. "util-deprecate": "^1.0.1"
  775. },
  776. "engines": {
  777. "node": ">= 6"
  778. }
  779. },
  780. "node_modules/help-me": {
  781. "version": "5.0.0",
  782. "license": "MIT"
  783. },
  784. "node_modules/humanize-ms": {
  785. "version": "1.2.1",
  786. "license": "MIT",
  787. "dependencies": {
  788. "ms": "^2.0.0"
  789. }
  790. },
  791. "node_modules/i": {
  792. "version": "0.3.7",
  793. "engines": {
  794. "node": ">=0.4"
  795. }
  796. },
  797. "node_modules/ieee754": {
  798. "version": "1.2.1",
  799. "funding": [
  800. {
  801. "type": "github",
  802. "url": "https://github.com/sponsors/feross"
  803. },
  804. {
  805. "type": "patreon",
  806. "url": "https://www.patreon.com/feross"
  807. },
  808. {
  809. "type": "consulting",
  810. "url": "https://feross.org/support"
  811. }
  812. ],
  813. "license": "BSD-3-Clause"
  814. },
  815. "node_modules/inherits": {
  816. "version": "2.0.4",
  817. "license": "ISC"
  818. },
  819. "node_modules/isomorphic-ws": {
  820. "version": "4.0.1",
  821. "license": "MIT",
  822. "peerDependencies": {
  823. "ws": "*"
  824. }
  825. },
  826. "node_modules/jayson": {
  827. "version": "4.1.0",
  828. "license": "MIT",
  829. "dependencies": {
  830. "@types/connect": "^3.4.33",
  831. "@types/node": "^12.12.54",
  832. "@types/ws": "^7.4.4",
  833. "commander": "^2.20.3",
  834. "delay": "^5.0.0",
  835. "es6-promisify": "^5.0.0",
  836. "eyes": "^0.1.8",
  837. "isomorphic-ws": "^4.0.1",
  838. "json-stringify-safe": "^5.0.1",
  839. "JSONStream": "^1.3.5",
  840. "uuid": "^8.3.2",
  841. "ws": "^7.4.5"
  842. },
  843. "bin": {
  844. "jayson": "bin/jayson.js"
  845. },
  846. "engines": {
  847. "node": ">=8"
  848. }
  849. },
  850. "node_modules/joycon": {
  851. "version": "3.1.1",
  852. "license": "MIT",
  853. "engines": {
  854. "node": ">=10"
  855. }
  856. },
  857. "node_modules/json-stringify-safe": {
  858. "version": "5.0.1",
  859. "license": "ISC"
  860. },
  861. "node_modules/jsonparse": {
  862. "version": "1.3.1",
  863. "engines": [
  864. "node >= 0.2.0"
  865. ],
  866. "license": "MIT"
  867. },
  868. "node_modules/JSONStream": {
  869. "version": "1.3.5",
  870. "license": "(MIT OR Apache-2.0)",
  871. "dependencies": {
  872. "jsonparse": "^1.2.0",
  873. "through": ">=2.2.7 <3"
  874. },
  875. "bin": {
  876. "JSONStream": "bin.js"
  877. },
  878. "engines": {
  879. "node": "*"
  880. }
  881. },
  882. "node_modules/lodash": {
  883. "version": "4.17.21",
  884. "license": "MIT"
  885. },
  886. "node_modules/make-error": {
  887. "version": "1.3.6",
  888. "dev": true,
  889. "license": "ISC"
  890. },
  891. "node_modules/md5.js": {
  892. "version": "1.3.5",
  893. "license": "MIT",
  894. "dependencies": {
  895. "hash-base": "^3.0.0",
  896. "inherits": "^2.0.1",
  897. "safe-buffer": "^5.1.2"
  898. }
  899. },
  900. "node_modules/mime-db": {
  901. "version": "1.52.0",
  902. "license": "MIT",
  903. "engines": {
  904. "node": ">= 0.6"
  905. }
  906. },
  907. "node_modules/mime-types": {
  908. "version": "2.1.35",
  909. "license": "MIT",
  910. "dependencies": {
  911. "mime-db": "1.52.0"
  912. },
  913. "engines": {
  914. "node": ">= 0.6"
  915. }
  916. },
  917. "node_modules/minimist": {
  918. "version": "1.2.8",
  919. "license": "MIT",
  920. "funding": {
  921. "url": "https://github.com/sponsors/ljharb"
  922. }
  923. },
  924. "node_modules/ms": {
  925. "version": "2.1.3",
  926. "license": "MIT"
  927. },
  928. "node_modules/node-gyp-build": {
  929. "version": "4.8.0",
  930. "license": "MIT",
  931. "optional": true,
  932. "bin": {
  933. "node-gyp-build": "bin.js",
  934. "node-gyp-build-optional": "optional.js",
  935. "node-gyp-build-test": "build-test.js"
  936. }
  937. },
  938. "node_modules/npm": {
  939. "version": "10.5.2",
  940. "bundleDependencies": [
  941. "@isaacs/string-locale-compare",
  942. "@npmcli/arborist",
  943. "@npmcli/config",
  944. "@npmcli/fs",
  945. "@npmcli/map-workspaces",
  946. "@npmcli/package-json",
  947. "@npmcli/promise-spawn",
  948. "@npmcli/redact",
  949. "@npmcli/run-script",
  950. "@sigstore/tuf",
  951. "abbrev",
  952. "archy",
  953. "cacache",
  954. "chalk",
  955. "ci-info",
  956. "cli-columns",
  957. "cli-table3",
  958. "columnify",
  959. "fastest-levenshtein",
  960. "fs-minipass",
  961. "glob",
  962. "graceful-fs",
  963. "hosted-git-info",
  964. "ini",
  965. "init-package-json",
  966. "is-cidr",
  967. "json-parse-even-better-errors",
  968. "libnpmaccess",
  969. "libnpmdiff",
  970. "libnpmexec",
  971. "libnpmfund",
  972. "libnpmhook",
  973. "libnpmorg",
  974. "libnpmpack",
  975. "libnpmpublish",
  976. "libnpmsearch",
  977. "libnpmteam",
  978. "libnpmversion",
  979. "make-fetch-happen",
  980. "minimatch",
  981. "minipass",
  982. "minipass-pipeline",
  983. "ms",
  984. "node-gyp",
  985. "nopt",
  986. "normalize-package-data",
  987. "npm-audit-report",
  988. "npm-install-checks",
  989. "npm-package-arg",
  990. "npm-pick-manifest",
  991. "npm-profile",
  992. "npm-registry-fetch",
  993. "npm-user-validate",
  994. "npmlog",
  995. "p-map",
  996. "pacote",
  997. "parse-conflict-json",
  998. "proc-log",
  999. "qrcode-terminal",
  1000. "read",
  1001. "semver",
  1002. "spdx-expression-parse",
  1003. "ssri",
  1004. "supports-color",
  1005. "tar",
  1006. "text-table",
  1007. "tiny-relative-date",
  1008. "treeverse",
  1009. "validate-npm-package-name",
  1010. "which",
  1011. "write-file-atomic"
  1012. ],
  1013. "license": "Artistic-2.0",
  1014. "workspaces": [
  1015. "docs",
  1016. "smoke-tests",
  1017. "mock-globals",
  1018. "mock-registry",
  1019. "workspaces/*"
  1020. ],
  1021. "dependencies": {
  1022. "@isaacs/string-locale-compare": "^1.1.0",
  1023. "@npmcli/arborist": "^7.2.1",
  1024. "@npmcli/config": "^8.0.2",
  1025. "@npmcli/fs": "^3.1.0",
  1026. "@npmcli/map-workspaces": "^3.0.6",
  1027. "@npmcli/package-json": "^5.0.2",
  1028. "@npmcli/promise-spawn": "^7.0.1",
  1029. "@npmcli/redact": "^1.1.0",
  1030. "@npmcli/run-script": "^7.0.4",
  1031. "@sigstore/tuf": "^2.3.2",
  1032. "abbrev": "^2.0.0",
  1033. "archy": "~1.0.0",
  1034. "cacache": "^18.0.2",
  1035. "chalk": "^5.3.0",
  1036. "ci-info": "^4.0.0",
  1037. "cli-columns": "^4.0.0",
  1038. "cli-table3": "^0.6.4",
  1039. "columnify": "^1.6.0",
  1040. "fastest-levenshtein": "^1.0.16",
  1041. "fs-minipass": "^3.0.3",
  1042. "glob": "^10.3.12",
  1043. "graceful-fs": "^4.2.11",
  1044. "hosted-git-info": "^7.0.1",
  1045. "ini": "^4.1.2",
  1046. "init-package-json": "^6.0.2",
  1047. "is-cidr": "^5.0.5",
  1048. "json-parse-even-better-errors": "^3.0.1",
  1049. "libnpmaccess": "^8.0.1",
  1050. "libnpmdiff": "^6.0.3",
  1051. "libnpmexec": "^7.0.4",
  1052. "libnpmfund": "^5.0.1",
  1053. "libnpmhook": "^10.0.0",
  1054. "libnpmorg": "^6.0.1",
  1055. "libnpmpack": "^6.0.3",
  1056. "libnpmpublish": "^9.0.2",
  1057. "libnpmsearch": "^7.0.0",
  1058. "libnpmteam": "^6.0.0",
  1059. "libnpmversion": "^5.0.1",
  1060. "make-fetch-happen": "^13.0.0",
  1061. "minimatch": "^9.0.4",
  1062. "minipass": "^7.0.4",
  1063. "minipass-pipeline": "^1.2.4",
  1064. "ms": "^2.1.2",
  1065. "node-gyp": "^10.1.0",
  1066. "nopt": "^7.2.0",
  1067. "normalize-package-data": "^6.0.0",
  1068. "npm-audit-report": "^5.0.0",
  1069. "npm-install-checks": "^6.3.0",
  1070. "npm-package-arg": "^11.0.1",
  1071. "npm-pick-manifest": "^9.0.0",
  1072. "npm-profile": "^9.0.0",
  1073. "npm-registry-fetch": "^16.2.0",
  1074. "npm-user-validate": "^2.0.0",
  1075. "npmlog": "^7.0.1",
  1076. "p-map": "^4.0.0",
  1077. "pacote": "^17.0.6",
  1078. "parse-conflict-json": "^3.0.1",
  1079. "proc-log": "^3.0.0",
  1080. "qrcode-terminal": "^0.12.0",
  1081. "read": "^3.0.1",
  1082. "semver": "^7.6.0",
  1083. "spdx-expression-parse": "^4.0.0",
  1084. "ssri": "^10.0.5",
  1085. "supports-color": "^9.4.0",
  1086. "tar": "^6.2.1",
  1087. "text-table": "~0.2.0",
  1088. "tiny-relative-date": "^1.3.0",
  1089. "treeverse": "^3.0.0",
  1090. "validate-npm-package-name": "^5.0.0",
  1091. "which": "^4.0.0",
  1092. "write-file-atomic": "^5.0.1"
  1093. },
  1094. "bin": {
  1095. "npm": "bin/npm-cli.js",
  1096. "npx": "bin/npx-cli.js"
  1097. },
  1098. "engines": {
  1099. "node": "^18.17.0 || >=20.5.0"
  1100. }
  1101. },
  1102. "node_modules/npm/node_modules/@colors/colors": {
  1103. "version": "1.5.0",
  1104. "inBundle": true,
  1105. "license": "MIT",
  1106. "optional": true,
  1107. "engines": {
  1108. "node": ">=0.1.90"
  1109. }
  1110. },
  1111. "node_modules/npm/node_modules/@isaacs/cliui": {
  1112. "version": "8.0.2",
  1113. "inBundle": true,
  1114. "license": "ISC",
  1115. "dependencies": {
  1116. "string-width": "^5.1.2",
  1117. "string-width-cjs": "npm:string-width@^4.2.0",
  1118. "strip-ansi": "^7.0.1",
  1119. "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
  1120. "wrap-ansi": "^8.1.0",
  1121. "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
  1122. },
  1123. "engines": {
  1124. "node": ">=12"
  1125. }
  1126. },
  1127. "node_modules/npm/node_modules/@isaacs/cliui/node_modules/ansi-regex": {
  1128. "version": "6.0.1",
  1129. "inBundle": true,
  1130. "license": "MIT",
  1131. "engines": {
  1132. "node": ">=12"
  1133. },
  1134. "funding": {
  1135. "url": "https://github.com/chalk/ansi-regex?sponsor=1"
  1136. }
  1137. },
  1138. "node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex": {
  1139. "version": "9.2.2",
  1140. "inBundle": true,
  1141. "license": "MIT"
  1142. },
  1143. "node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width": {
  1144. "version": "5.1.2",
  1145. "inBundle": true,
  1146. "license": "MIT",
  1147. "dependencies": {
  1148. "eastasianwidth": "^0.2.0",
  1149. "emoji-regex": "^9.2.2",
  1150. "strip-ansi": "^7.0.1"
  1151. },
  1152. "engines": {
  1153. "node": ">=12"
  1154. },
  1155. "funding": {
  1156. "url": "https://github.com/sponsors/sindresorhus"
  1157. }
  1158. },
  1159. "node_modules/npm/node_modules/@isaacs/cliui/node_modules/strip-ansi": {
  1160. "version": "7.1.0",
  1161. "inBundle": true,
  1162. "license": "MIT",
  1163. "dependencies": {
  1164. "ansi-regex": "^6.0.1"
  1165. },
  1166. "engines": {
  1167. "node": ">=12"
  1168. },
  1169. "funding": {
  1170. "url": "https://github.com/chalk/strip-ansi?sponsor=1"
  1171. }
  1172. },
  1173. "node_modules/npm/node_modules/@isaacs/string-locale-compare": {
  1174. "version": "1.1.0",
  1175. "inBundle": true,
  1176. "license": "ISC"
  1177. },
  1178. "node_modules/npm/node_modules/@npmcli/agent": {
  1179. "version": "2.2.2",
  1180. "inBundle": true,
  1181. "license": "ISC",
  1182. "dependencies": {
  1183. "agent-base": "^7.1.0",
  1184. "http-proxy-agent": "^7.0.0",
  1185. "https-proxy-agent": "^7.0.1",
  1186. "lru-cache": "^10.0.1",
  1187. "socks-proxy-agent": "^8.0.3"
  1188. },
  1189. "engines": {
  1190. "node": "^16.14.0 || >=18.0.0"
  1191. }
  1192. },
  1193. "node_modules/npm/node_modules/@npmcli/arborist": {
  1194. "version": "7.4.2",
  1195. "inBundle": true,
  1196. "license": "ISC",
  1197. "dependencies": {
  1198. "@isaacs/string-locale-compare": "^1.1.0",
  1199. "@npmcli/fs": "^3.1.0",
  1200. "@npmcli/installed-package-contents": "^2.0.2",
  1201. "@npmcli/map-workspaces": "^3.0.2",
  1202. "@npmcli/metavuln-calculator": "^7.0.0",
  1203. "@npmcli/name-from-folder": "^2.0.0",
  1204. "@npmcli/node-gyp": "^3.0.0",
  1205. "@npmcli/package-json": "^5.0.0",
  1206. "@npmcli/query": "^3.1.0",
  1207. "@npmcli/redact": "^1.1.0",
  1208. "@npmcli/run-script": "^7.0.2",
  1209. "bin-links": "^4.0.1",
  1210. "cacache": "^18.0.0",
  1211. "common-ancestor-path": "^1.0.1",
  1212. "hosted-git-info": "^7.0.1",
  1213. "json-parse-even-better-errors": "^3.0.0",
  1214. "json-stringify-nice": "^1.1.4",
  1215. "minimatch": "^9.0.4",
  1216. "nopt": "^7.0.0",
  1217. "npm-install-checks": "^6.2.0",
  1218. "npm-package-arg": "^11.0.1",
  1219. "npm-pick-manifest": "^9.0.0",
  1220. "npm-registry-fetch": "^16.2.0",
  1221. "npmlog": "^7.0.1",
  1222. "pacote": "^17.0.4",
  1223. "parse-conflict-json": "^3.0.0",
  1224. "proc-log": "^3.0.0",
  1225. "promise-all-reject-late": "^1.0.0",
  1226. "promise-call-limit": "^3.0.1",
  1227. "read-package-json-fast": "^3.0.2",
  1228. "semver": "^7.3.7",
  1229. "ssri": "^10.0.5",
  1230. "treeverse": "^3.0.0",
  1231. "walk-up-path": "^3.0.1"
  1232. },
  1233. "bin": {
  1234. "arborist": "bin/index.js"
  1235. },
  1236. "engines": {
  1237. "node": "^16.14.0 || >=18.0.0"
  1238. }
  1239. },
  1240. "node_modules/npm/node_modules/@npmcli/config": {
  1241. "version": "8.2.2",
  1242. "inBundle": true,
  1243. "license": "ISC",
  1244. "dependencies": {
  1245. "@npmcli/map-workspaces": "^3.0.2",
  1246. "ci-info": "^4.0.0",
  1247. "ini": "^4.1.2",
  1248. "nopt": "^7.0.0",
  1249. "proc-log": "^3.0.0",
  1250. "read-package-json-fast": "^3.0.2",
  1251. "semver": "^7.3.5",
  1252. "walk-up-path": "^3.0.1"
  1253. },
  1254. "engines": {
  1255. "node": "^16.14.0 || >=18.0.0"
  1256. }
  1257. },
  1258. "node_modules/npm/node_modules/@npmcli/disparity-colors": {
  1259. "version": "3.0.0",
  1260. "inBundle": true,
  1261. "license": "ISC",
  1262. "dependencies": {
  1263. "ansi-styles": "^4.3.0"
  1264. },
  1265. "engines": {
  1266. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  1267. }
  1268. },
  1269. "node_modules/npm/node_modules/@npmcli/disparity-colors/node_modules/ansi-styles": {
  1270. "version": "4.3.0",
  1271. "inBundle": true,
  1272. "license": "MIT",
  1273. "dependencies": {
  1274. "color-convert": "^2.0.1"
  1275. },
  1276. "engines": {
  1277. "node": ">=8"
  1278. },
  1279. "funding": {
  1280. "url": "https://github.com/chalk/ansi-styles?sponsor=1"
  1281. }
  1282. },
  1283. "node_modules/npm/node_modules/@npmcli/fs": {
  1284. "version": "3.1.0",
  1285. "inBundle": true,
  1286. "license": "ISC",
  1287. "dependencies": {
  1288. "semver": "^7.3.5"
  1289. },
  1290. "engines": {
  1291. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  1292. }
  1293. },
  1294. "node_modules/npm/node_modules/@npmcli/git": {
  1295. "version": "5.0.5",
  1296. "inBundle": true,
  1297. "license": "ISC",
  1298. "dependencies": {
  1299. "@npmcli/promise-spawn": "^7.0.0",
  1300. "lru-cache": "^10.0.1",
  1301. "npm-pick-manifest": "^9.0.0",
  1302. "proc-log": "^3.0.0",
  1303. "promise-inflight": "^1.0.1",
  1304. "promise-retry": "^2.0.1",
  1305. "semver": "^7.3.5",
  1306. "which": "^4.0.0"
  1307. },
  1308. "engines": {
  1309. "node": "^16.14.0 || >=18.0.0"
  1310. }
  1311. },
  1312. "node_modules/npm/node_modules/@npmcli/installed-package-contents": {
  1313. "version": "2.0.2",
  1314. "inBundle": true,
  1315. "license": "ISC",
  1316. "dependencies": {
  1317. "npm-bundled": "^3.0.0",
  1318. "npm-normalize-package-bin": "^3.0.0"
  1319. },
  1320. "bin": {
  1321. "installed-package-contents": "lib/index.js"
  1322. },
  1323. "engines": {
  1324. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  1325. }
  1326. },
  1327. "node_modules/npm/node_modules/@npmcli/map-workspaces": {
  1328. "version": "3.0.6",
  1329. "inBundle": true,
  1330. "license": "ISC",
  1331. "dependencies": {
  1332. "@npmcli/name-from-folder": "^2.0.0",
  1333. "glob": "^10.2.2",
  1334. "minimatch": "^9.0.0",
  1335. "read-package-json-fast": "^3.0.0"
  1336. },
  1337. "engines": {
  1338. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  1339. }
  1340. },
  1341. "node_modules/npm/node_modules/@npmcli/metavuln-calculator": {
  1342. "version": "7.0.0",
  1343. "inBundle": true,
  1344. "license": "ISC",
  1345. "dependencies": {
  1346. "cacache": "^18.0.0",
  1347. "json-parse-even-better-errors": "^3.0.0",
  1348. "pacote": "^17.0.0",
  1349. "semver": "^7.3.5"
  1350. },
  1351. "engines": {
  1352. "node": "^16.14.0 || >=18.0.0"
  1353. }
  1354. },
  1355. "node_modules/npm/node_modules/@npmcli/name-from-folder": {
  1356. "version": "2.0.0",
  1357. "inBundle": true,
  1358. "license": "ISC",
  1359. "engines": {
  1360. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  1361. }
  1362. },
  1363. "node_modules/npm/node_modules/@npmcli/node-gyp": {
  1364. "version": "3.0.0",
  1365. "inBundle": true,
  1366. "license": "ISC",
  1367. "engines": {
  1368. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  1369. }
  1370. },
  1371. "node_modules/npm/node_modules/@npmcli/package-json": {
  1372. "version": "5.0.2",
  1373. "inBundle": true,
  1374. "license": "ISC",
  1375. "dependencies": {
  1376. "@npmcli/git": "^5.0.0",
  1377. "glob": "^10.2.2",
  1378. "hosted-git-info": "^7.0.0",
  1379. "json-parse-even-better-errors": "^3.0.0",
  1380. "normalize-package-data": "^6.0.0",
  1381. "proc-log": "^3.0.0",
  1382. "semver": "^7.5.3"
  1383. },
  1384. "engines": {
  1385. "node": "^16.14.0 || >=18.0.0"
  1386. }
  1387. },
  1388. "node_modules/npm/node_modules/@npmcli/promise-spawn": {
  1389. "version": "7.0.1",
  1390. "inBundle": true,
  1391. "license": "ISC",
  1392. "dependencies": {
  1393. "which": "^4.0.0"
  1394. },
  1395. "engines": {
  1396. "node": "^16.14.0 || >=18.0.0"
  1397. }
  1398. },
  1399. "node_modules/npm/node_modules/@npmcli/query": {
  1400. "version": "3.1.0",
  1401. "inBundle": true,
  1402. "license": "ISC",
  1403. "dependencies": {
  1404. "postcss-selector-parser": "^6.0.10"
  1405. },
  1406. "engines": {
  1407. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  1408. }
  1409. },
  1410. "node_modules/npm/node_modules/@npmcli/redact": {
  1411. "version": "1.1.0",
  1412. "inBundle": true,
  1413. "license": "ISC",
  1414. "engines": {
  1415. "node": "^16.14.0 || >=18.0.0"
  1416. }
  1417. },
  1418. "node_modules/npm/node_modules/@npmcli/run-script": {
  1419. "version": "7.0.4",
  1420. "inBundle": true,
  1421. "license": "ISC",
  1422. "dependencies": {
  1423. "@npmcli/node-gyp": "^3.0.0",
  1424. "@npmcli/package-json": "^5.0.0",
  1425. "@npmcli/promise-spawn": "^7.0.0",
  1426. "node-gyp": "^10.0.0",
  1427. "which": "^4.0.0"
  1428. },
  1429. "engines": {
  1430. "node": "^16.14.0 || >=18.0.0"
  1431. }
  1432. },
  1433. "node_modules/npm/node_modules/@pkgjs/parseargs": {
  1434. "version": "0.11.0",
  1435. "inBundle": true,
  1436. "license": "MIT",
  1437. "optional": true,
  1438. "engines": {
  1439. "node": ">=14"
  1440. }
  1441. },
  1442. "node_modules/npm/node_modules/@sigstore/bundle": {
  1443. "version": "2.3.1",
  1444. "inBundle": true,
  1445. "license": "Apache-2.0",
  1446. "dependencies": {
  1447. "@sigstore/protobuf-specs": "^0.3.1"
  1448. },
  1449. "engines": {
  1450. "node": "^16.14.0 || >=18.0.0"
  1451. }
  1452. },
  1453. "node_modules/npm/node_modules/@sigstore/core": {
  1454. "version": "1.1.0",
  1455. "inBundle": true,
  1456. "license": "Apache-2.0",
  1457. "engines": {
  1458. "node": "^16.14.0 || >=18.0.0"
  1459. }
  1460. },
  1461. "node_modules/npm/node_modules/@sigstore/protobuf-specs": {
  1462. "version": "0.3.1",
  1463. "inBundle": true,
  1464. "license": "Apache-2.0",
  1465. "engines": {
  1466. "node": "^16.14.0 || >=18.0.0"
  1467. }
  1468. },
  1469. "node_modules/npm/node_modules/@sigstore/sign": {
  1470. "version": "2.3.0",
  1471. "inBundle": true,
  1472. "license": "Apache-2.0",
  1473. "dependencies": {
  1474. "@sigstore/bundle": "^2.3.0",
  1475. "@sigstore/core": "^1.0.0",
  1476. "@sigstore/protobuf-specs": "^0.3.1",
  1477. "make-fetch-happen": "^13.0.0"
  1478. },
  1479. "engines": {
  1480. "node": "^16.14.0 || >=18.0.0"
  1481. }
  1482. },
  1483. "node_modules/npm/node_modules/@sigstore/tuf": {
  1484. "version": "2.3.2",
  1485. "inBundle": true,
  1486. "license": "Apache-2.0",
  1487. "dependencies": {
  1488. "@sigstore/protobuf-specs": "^0.3.0",
  1489. "tuf-js": "^2.2.0"
  1490. },
  1491. "engines": {
  1492. "node": "^16.14.0 || >=18.0.0"
  1493. }
  1494. },
  1495. "node_modules/npm/node_modules/@sigstore/verify": {
  1496. "version": "1.2.0",
  1497. "inBundle": true,
  1498. "license": "Apache-2.0",
  1499. "dependencies": {
  1500. "@sigstore/bundle": "^2.3.1",
  1501. "@sigstore/core": "^1.1.0",
  1502. "@sigstore/protobuf-specs": "^0.3.1"
  1503. },
  1504. "engines": {
  1505. "node": "^16.14.0 || >=18.0.0"
  1506. }
  1507. },
  1508. "node_modules/npm/node_modules/@tufjs/canonical-json": {
  1509. "version": "2.0.0",
  1510. "inBundle": true,
  1511. "license": "MIT",
  1512. "engines": {
  1513. "node": "^16.14.0 || >=18.0.0"
  1514. }
  1515. },
  1516. "node_modules/npm/node_modules/@tufjs/models": {
  1517. "version": "2.0.0",
  1518. "inBundle": true,
  1519. "license": "MIT",
  1520. "dependencies": {
  1521. "@tufjs/canonical-json": "2.0.0",
  1522. "minimatch": "^9.0.3"
  1523. },
  1524. "engines": {
  1525. "node": "^16.14.0 || >=18.0.0"
  1526. }
  1527. },
  1528. "node_modules/npm/node_modules/abbrev": {
  1529. "version": "2.0.0",
  1530. "inBundle": true,
  1531. "license": "ISC",
  1532. "engines": {
  1533. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  1534. }
  1535. },
  1536. "node_modules/npm/node_modules/agent-base": {
  1537. "version": "7.1.1",
  1538. "inBundle": true,
  1539. "license": "MIT",
  1540. "dependencies": {
  1541. "debug": "^4.3.4"
  1542. },
  1543. "engines": {
  1544. "node": ">= 14"
  1545. }
  1546. },
  1547. "node_modules/npm/node_modules/aggregate-error": {
  1548. "version": "3.1.0",
  1549. "inBundle": true,
  1550. "license": "MIT",
  1551. "dependencies": {
  1552. "clean-stack": "^2.0.0",
  1553. "indent-string": "^4.0.0"
  1554. },
  1555. "engines": {
  1556. "node": ">=8"
  1557. }
  1558. },
  1559. "node_modules/npm/node_modules/ansi-regex": {
  1560. "version": "5.0.1",
  1561. "inBundle": true,
  1562. "license": "MIT",
  1563. "engines": {
  1564. "node": ">=8"
  1565. }
  1566. },
  1567. "node_modules/npm/node_modules/ansi-styles": {
  1568. "version": "6.2.1",
  1569. "inBundle": true,
  1570. "license": "MIT",
  1571. "engines": {
  1572. "node": ">=12"
  1573. },
  1574. "funding": {
  1575. "url": "https://github.com/chalk/ansi-styles?sponsor=1"
  1576. }
  1577. },
  1578. "node_modules/npm/node_modules/aproba": {
  1579. "version": "2.0.0",
  1580. "inBundle": true,
  1581. "license": "ISC"
  1582. },
  1583. "node_modules/npm/node_modules/archy": {
  1584. "version": "1.0.0",
  1585. "inBundle": true,
  1586. "license": "MIT"
  1587. },
  1588. "node_modules/npm/node_modules/are-we-there-yet": {
  1589. "version": "4.0.2",
  1590. "inBundle": true,
  1591. "license": "ISC",
  1592. "engines": {
  1593. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  1594. }
  1595. },
  1596. "node_modules/npm/node_modules/balanced-match": {
  1597. "version": "1.0.2",
  1598. "inBundle": true,
  1599. "license": "MIT"
  1600. },
  1601. "node_modules/npm/node_modules/bin-links": {
  1602. "version": "4.0.3",
  1603. "inBundle": true,
  1604. "license": "ISC",
  1605. "dependencies": {
  1606. "cmd-shim": "^6.0.0",
  1607. "npm-normalize-package-bin": "^3.0.0",
  1608. "read-cmd-shim": "^4.0.0",
  1609. "write-file-atomic": "^5.0.0"
  1610. },
  1611. "engines": {
  1612. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  1613. }
  1614. },
  1615. "node_modules/npm/node_modules/binary-extensions": {
  1616. "version": "2.3.0",
  1617. "inBundle": true,
  1618. "license": "MIT",
  1619. "engines": {
  1620. "node": ">=8"
  1621. },
  1622. "funding": {
  1623. "url": "https://github.com/sponsors/sindresorhus"
  1624. }
  1625. },
  1626. "node_modules/npm/node_modules/brace-expansion": {
  1627. "version": "2.0.1",
  1628. "inBundle": true,
  1629. "license": "MIT",
  1630. "dependencies": {
  1631. "balanced-match": "^1.0.0"
  1632. }
  1633. },
  1634. "node_modules/npm/node_modules/builtins": {
  1635. "version": "5.1.0",
  1636. "inBundle": true,
  1637. "license": "MIT",
  1638. "dependencies": {
  1639. "semver": "^7.0.0"
  1640. }
  1641. },
  1642. "node_modules/npm/node_modules/cacache": {
  1643. "version": "18.0.2",
  1644. "inBundle": true,
  1645. "license": "ISC",
  1646. "dependencies": {
  1647. "@npmcli/fs": "^3.1.0",
  1648. "fs-minipass": "^3.0.0",
  1649. "glob": "^10.2.2",
  1650. "lru-cache": "^10.0.1",
  1651. "minipass": "^7.0.3",
  1652. "minipass-collect": "^2.0.1",
  1653. "minipass-flush": "^1.0.5",
  1654. "minipass-pipeline": "^1.2.4",
  1655. "p-map": "^4.0.0",
  1656. "ssri": "^10.0.0",
  1657. "tar": "^6.1.11",
  1658. "unique-filename": "^3.0.0"
  1659. },
  1660. "engines": {
  1661. "node": "^16.14.0 || >=18.0.0"
  1662. }
  1663. },
  1664. "node_modules/npm/node_modules/chalk": {
  1665. "version": "5.3.0",
  1666. "inBundle": true,
  1667. "license": "MIT",
  1668. "engines": {
  1669. "node": "^12.17.0 || ^14.13 || >=16.0.0"
  1670. },
  1671. "funding": {
  1672. "url": "https://github.com/chalk/chalk?sponsor=1"
  1673. }
  1674. },
  1675. "node_modules/npm/node_modules/chownr": {
  1676. "version": "2.0.0",
  1677. "inBundle": true,
  1678. "license": "ISC",
  1679. "engines": {
  1680. "node": ">=10"
  1681. }
  1682. },
  1683. "node_modules/npm/node_modules/ci-info": {
  1684. "version": "4.0.0",
  1685. "funding": [
  1686. {
  1687. "type": "github",
  1688. "url": "https://github.com/sponsors/sibiraj-s"
  1689. }
  1690. ],
  1691. "inBundle": true,
  1692. "license": "MIT",
  1693. "engines": {
  1694. "node": ">=8"
  1695. }
  1696. },
  1697. "node_modules/npm/node_modules/cidr-regex": {
  1698. "version": "4.0.5",
  1699. "inBundle": true,
  1700. "license": "BSD-2-Clause",
  1701. "dependencies": {
  1702. "ip-regex": "^5.0.0"
  1703. },
  1704. "engines": {
  1705. "node": ">=14"
  1706. }
  1707. },
  1708. "node_modules/npm/node_modules/clean-stack": {
  1709. "version": "2.2.0",
  1710. "inBundle": true,
  1711. "license": "MIT",
  1712. "engines": {
  1713. "node": ">=6"
  1714. }
  1715. },
  1716. "node_modules/npm/node_modules/cli-columns": {
  1717. "version": "4.0.0",
  1718. "inBundle": true,
  1719. "license": "MIT",
  1720. "dependencies": {
  1721. "string-width": "^4.2.3",
  1722. "strip-ansi": "^6.0.1"
  1723. },
  1724. "engines": {
  1725. "node": ">= 10"
  1726. }
  1727. },
  1728. "node_modules/npm/node_modules/cli-table3": {
  1729. "version": "0.6.4",
  1730. "inBundle": true,
  1731. "license": "MIT",
  1732. "dependencies": {
  1733. "string-width": "^4.2.0"
  1734. },
  1735. "engines": {
  1736. "node": "10.* || >= 12.*"
  1737. },
  1738. "optionalDependencies": {
  1739. "@colors/colors": "1.5.0"
  1740. }
  1741. },
  1742. "node_modules/npm/node_modules/clone": {
  1743. "version": "1.0.4",
  1744. "inBundle": true,
  1745. "license": "MIT",
  1746. "engines": {
  1747. "node": ">=0.8"
  1748. }
  1749. },
  1750. "node_modules/npm/node_modules/cmd-shim": {
  1751. "version": "6.0.2",
  1752. "inBundle": true,
  1753. "license": "ISC",
  1754. "engines": {
  1755. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  1756. }
  1757. },
  1758. "node_modules/npm/node_modules/color-convert": {
  1759. "version": "2.0.1",
  1760. "inBundle": true,
  1761. "license": "MIT",
  1762. "dependencies": {
  1763. "color-name": "~1.1.4"
  1764. },
  1765. "engines": {
  1766. "node": ">=7.0.0"
  1767. }
  1768. },
  1769. "node_modules/npm/node_modules/color-name": {
  1770. "version": "1.1.4",
  1771. "inBundle": true,
  1772. "license": "MIT"
  1773. },
  1774. "node_modules/npm/node_modules/color-support": {
  1775. "version": "1.1.3",
  1776. "inBundle": true,
  1777. "license": "ISC",
  1778. "bin": {
  1779. "color-support": "bin.js"
  1780. }
  1781. },
  1782. "node_modules/npm/node_modules/columnify": {
  1783. "version": "1.6.0",
  1784. "inBundle": true,
  1785. "license": "MIT",
  1786. "dependencies": {
  1787. "strip-ansi": "^6.0.1",
  1788. "wcwidth": "^1.0.0"
  1789. },
  1790. "engines": {
  1791. "node": ">=8.0.0"
  1792. }
  1793. },
  1794. "node_modules/npm/node_modules/common-ancestor-path": {
  1795. "version": "1.0.1",
  1796. "inBundle": true,
  1797. "license": "ISC"
  1798. },
  1799. "node_modules/npm/node_modules/console-control-strings": {
  1800. "version": "1.1.0",
  1801. "inBundle": true,
  1802. "license": "ISC"
  1803. },
  1804. "node_modules/npm/node_modules/cross-spawn": {
  1805. "version": "7.0.3",
  1806. "inBundle": true,
  1807. "license": "MIT",
  1808. "dependencies": {
  1809. "path-key": "^3.1.0",
  1810. "shebang-command": "^2.0.0",
  1811. "which": "^2.0.1"
  1812. },
  1813. "engines": {
  1814. "node": ">= 8"
  1815. }
  1816. },
  1817. "node_modules/npm/node_modules/cross-spawn/node_modules/which": {
  1818. "version": "2.0.2",
  1819. "inBundle": true,
  1820. "license": "ISC",
  1821. "dependencies": {
  1822. "isexe": "^2.0.0"
  1823. },
  1824. "bin": {
  1825. "node-which": "bin/node-which"
  1826. },
  1827. "engines": {
  1828. "node": ">= 8"
  1829. }
  1830. },
  1831. "node_modules/npm/node_modules/cssesc": {
  1832. "version": "3.0.0",
  1833. "inBundle": true,
  1834. "license": "MIT",
  1835. "bin": {
  1836. "cssesc": "bin/cssesc"
  1837. },
  1838. "engines": {
  1839. "node": ">=4"
  1840. }
  1841. },
  1842. "node_modules/npm/node_modules/debug": {
  1843. "version": "4.3.4",
  1844. "inBundle": true,
  1845. "license": "MIT",
  1846. "dependencies": {
  1847. "ms": "2.1.2"
  1848. },
  1849. "engines": {
  1850. "node": ">=6.0"
  1851. },
  1852. "peerDependenciesMeta": {
  1853. "supports-color": {
  1854. "optional": true
  1855. }
  1856. }
  1857. },
  1858. "node_modules/npm/node_modules/debug/node_modules/ms": {
  1859. "version": "2.1.2",
  1860. "inBundle": true,
  1861. "license": "MIT"
  1862. },
  1863. "node_modules/npm/node_modules/defaults": {
  1864. "version": "1.0.4",
  1865. "inBundle": true,
  1866. "license": "MIT",
  1867. "dependencies": {
  1868. "clone": "^1.0.2"
  1869. },
  1870. "funding": {
  1871. "url": "https://github.com/sponsors/sindresorhus"
  1872. }
  1873. },
  1874. "node_modules/npm/node_modules/diff": {
  1875. "version": "5.2.0",
  1876. "inBundle": true,
  1877. "license": "BSD-3-Clause",
  1878. "engines": {
  1879. "node": ">=0.3.1"
  1880. }
  1881. },
  1882. "node_modules/npm/node_modules/eastasianwidth": {
  1883. "version": "0.2.0",
  1884. "inBundle": true,
  1885. "license": "MIT"
  1886. },
  1887. "node_modules/npm/node_modules/emoji-regex": {
  1888. "version": "8.0.0",
  1889. "inBundle": true,
  1890. "license": "MIT"
  1891. },
  1892. "node_modules/npm/node_modules/encoding": {
  1893. "version": "0.1.13",
  1894. "inBundle": true,
  1895. "license": "MIT",
  1896. "optional": true,
  1897. "dependencies": {
  1898. "iconv-lite": "^0.6.2"
  1899. }
  1900. },
  1901. "node_modules/npm/node_modules/env-paths": {
  1902. "version": "2.2.1",
  1903. "inBundle": true,
  1904. "license": "MIT",
  1905. "engines": {
  1906. "node": ">=6"
  1907. }
  1908. },
  1909. "node_modules/npm/node_modules/err-code": {
  1910. "version": "2.0.3",
  1911. "inBundle": true,
  1912. "license": "MIT"
  1913. },
  1914. "node_modules/npm/node_modules/exponential-backoff": {
  1915. "version": "3.1.1",
  1916. "inBundle": true,
  1917. "license": "Apache-2.0"
  1918. },
  1919. "node_modules/npm/node_modules/fastest-levenshtein": {
  1920. "version": "1.0.16",
  1921. "inBundle": true,
  1922. "license": "MIT",
  1923. "engines": {
  1924. "node": ">= 4.9.1"
  1925. }
  1926. },
  1927. "node_modules/npm/node_modules/foreground-child": {
  1928. "version": "3.1.1",
  1929. "inBundle": true,
  1930. "license": "ISC",
  1931. "dependencies": {
  1932. "cross-spawn": "^7.0.0",
  1933. "signal-exit": "^4.0.1"
  1934. },
  1935. "engines": {
  1936. "node": ">=14"
  1937. },
  1938. "funding": {
  1939. "url": "https://github.com/sponsors/isaacs"
  1940. }
  1941. },
  1942. "node_modules/npm/node_modules/fs-minipass": {
  1943. "version": "3.0.3",
  1944. "inBundle": true,
  1945. "license": "ISC",
  1946. "dependencies": {
  1947. "minipass": "^7.0.3"
  1948. },
  1949. "engines": {
  1950. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  1951. }
  1952. },
  1953. "node_modules/npm/node_modules/function-bind": {
  1954. "version": "1.1.2",
  1955. "inBundle": true,
  1956. "license": "MIT",
  1957. "funding": {
  1958. "url": "https://github.com/sponsors/ljharb"
  1959. }
  1960. },
  1961. "node_modules/npm/node_modules/gauge": {
  1962. "version": "5.0.1",
  1963. "inBundle": true,
  1964. "license": "ISC",
  1965. "dependencies": {
  1966. "aproba": "^1.0.3 || ^2.0.0",
  1967. "color-support": "^1.1.3",
  1968. "console-control-strings": "^1.1.0",
  1969. "has-unicode": "^2.0.1",
  1970. "signal-exit": "^4.0.1",
  1971. "string-width": "^4.2.3",
  1972. "strip-ansi": "^6.0.1",
  1973. "wide-align": "^1.1.5"
  1974. },
  1975. "engines": {
  1976. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  1977. }
  1978. },
  1979. "node_modules/npm/node_modules/glob": {
  1980. "version": "10.3.12",
  1981. "inBundle": true,
  1982. "license": "ISC",
  1983. "dependencies": {
  1984. "foreground-child": "^3.1.0",
  1985. "jackspeak": "^2.3.6",
  1986. "minimatch": "^9.0.1",
  1987. "minipass": "^7.0.4",
  1988. "path-scurry": "^1.10.2"
  1989. },
  1990. "bin": {
  1991. "glob": "dist/esm/bin.mjs"
  1992. },
  1993. "engines": {
  1994. "node": ">=16 || 14 >=14.17"
  1995. },
  1996. "funding": {
  1997. "url": "https://github.com/sponsors/isaacs"
  1998. }
  1999. },
  2000. "node_modules/npm/node_modules/graceful-fs": {
  2001. "version": "4.2.11",
  2002. "inBundle": true,
  2003. "license": "ISC"
  2004. },
  2005. "node_modules/npm/node_modules/has-unicode": {
  2006. "version": "2.0.1",
  2007. "inBundle": true,
  2008. "license": "ISC"
  2009. },
  2010. "node_modules/npm/node_modules/hasown": {
  2011. "version": "2.0.2",
  2012. "inBundle": true,
  2013. "license": "MIT",
  2014. "dependencies": {
  2015. "function-bind": "^1.1.2"
  2016. },
  2017. "engines": {
  2018. "node": ">= 0.4"
  2019. }
  2020. },
  2021. "node_modules/npm/node_modules/hosted-git-info": {
  2022. "version": "7.0.1",
  2023. "inBundle": true,
  2024. "license": "ISC",
  2025. "dependencies": {
  2026. "lru-cache": "^10.0.1"
  2027. },
  2028. "engines": {
  2029. "node": "^16.14.0 || >=18.0.0"
  2030. }
  2031. },
  2032. "node_modules/npm/node_modules/http-cache-semantics": {
  2033. "version": "4.1.1",
  2034. "inBundle": true,
  2035. "license": "BSD-2-Clause"
  2036. },
  2037. "node_modules/npm/node_modules/http-proxy-agent": {
  2038. "version": "7.0.2",
  2039. "inBundle": true,
  2040. "license": "MIT",
  2041. "dependencies": {
  2042. "agent-base": "^7.1.0",
  2043. "debug": "^4.3.4"
  2044. },
  2045. "engines": {
  2046. "node": ">= 14"
  2047. }
  2048. },
  2049. "node_modules/npm/node_modules/https-proxy-agent": {
  2050. "version": "7.0.4",
  2051. "inBundle": true,
  2052. "license": "MIT",
  2053. "dependencies": {
  2054. "agent-base": "^7.0.2",
  2055. "debug": "4"
  2056. },
  2057. "engines": {
  2058. "node": ">= 14"
  2059. }
  2060. },
  2061. "node_modules/npm/node_modules/iconv-lite": {
  2062. "version": "0.6.3",
  2063. "inBundle": true,
  2064. "license": "MIT",
  2065. "optional": true,
  2066. "dependencies": {
  2067. "safer-buffer": ">= 2.1.2 < 3.0.0"
  2068. },
  2069. "engines": {
  2070. "node": ">=0.10.0"
  2071. }
  2072. },
  2073. "node_modules/npm/node_modules/ignore-walk": {
  2074. "version": "6.0.4",
  2075. "inBundle": true,
  2076. "license": "ISC",
  2077. "dependencies": {
  2078. "minimatch": "^9.0.0"
  2079. },
  2080. "engines": {
  2081. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  2082. }
  2083. },
  2084. "node_modules/npm/node_modules/imurmurhash": {
  2085. "version": "0.1.4",
  2086. "inBundle": true,
  2087. "license": "MIT",
  2088. "engines": {
  2089. "node": ">=0.8.19"
  2090. }
  2091. },
  2092. "node_modules/npm/node_modules/indent-string": {
  2093. "version": "4.0.0",
  2094. "inBundle": true,
  2095. "license": "MIT",
  2096. "engines": {
  2097. "node": ">=8"
  2098. }
  2099. },
  2100. "node_modules/npm/node_modules/ini": {
  2101. "version": "4.1.2",
  2102. "inBundle": true,
  2103. "license": "ISC",
  2104. "engines": {
  2105. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  2106. }
  2107. },
  2108. "node_modules/npm/node_modules/init-package-json": {
  2109. "version": "6.0.2",
  2110. "inBundle": true,
  2111. "license": "ISC",
  2112. "dependencies": {
  2113. "@npmcli/package-json": "^5.0.0",
  2114. "npm-package-arg": "^11.0.0",
  2115. "promzard": "^1.0.0",
  2116. "read": "^3.0.1",
  2117. "semver": "^7.3.5",
  2118. "validate-npm-package-license": "^3.0.4",
  2119. "validate-npm-package-name": "^5.0.0"
  2120. },
  2121. "engines": {
  2122. "node": "^16.14.0 || >=18.0.0"
  2123. }
  2124. },
  2125. "node_modules/npm/node_modules/ip-address": {
  2126. "version": "9.0.5",
  2127. "inBundle": true,
  2128. "license": "MIT",
  2129. "dependencies": {
  2130. "jsbn": "1.1.0",
  2131. "sprintf-js": "^1.1.3"
  2132. },
  2133. "engines": {
  2134. "node": ">= 12"
  2135. }
  2136. },
  2137. "node_modules/npm/node_modules/ip-address/node_modules/sprintf-js": {
  2138. "version": "1.1.3",
  2139. "inBundle": true,
  2140. "license": "BSD-3-Clause"
  2141. },
  2142. "node_modules/npm/node_modules/ip-regex": {
  2143. "version": "5.0.0",
  2144. "inBundle": true,
  2145. "license": "MIT",
  2146. "engines": {
  2147. "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
  2148. },
  2149. "funding": {
  2150. "url": "https://github.com/sponsors/sindresorhus"
  2151. }
  2152. },
  2153. "node_modules/npm/node_modules/is-cidr": {
  2154. "version": "5.0.5",
  2155. "inBundle": true,
  2156. "license": "BSD-2-Clause",
  2157. "dependencies": {
  2158. "cidr-regex": "^4.0.4"
  2159. },
  2160. "engines": {
  2161. "node": ">=14"
  2162. }
  2163. },
  2164. "node_modules/npm/node_modules/is-core-module": {
  2165. "version": "2.13.1",
  2166. "inBundle": true,
  2167. "license": "MIT",
  2168. "dependencies": {
  2169. "hasown": "^2.0.0"
  2170. },
  2171. "funding": {
  2172. "url": "https://github.com/sponsors/ljharb"
  2173. }
  2174. },
  2175. "node_modules/npm/node_modules/is-fullwidth-code-point": {
  2176. "version": "3.0.0",
  2177. "inBundle": true,
  2178. "license": "MIT",
  2179. "engines": {
  2180. "node": ">=8"
  2181. }
  2182. },
  2183. "node_modules/npm/node_modules/is-lambda": {
  2184. "version": "1.0.1",
  2185. "inBundle": true,
  2186. "license": "MIT"
  2187. },
  2188. "node_modules/npm/node_modules/isexe": {
  2189. "version": "2.0.0",
  2190. "inBundle": true,
  2191. "license": "ISC"
  2192. },
  2193. "node_modules/npm/node_modules/jackspeak": {
  2194. "version": "2.3.6",
  2195. "inBundle": true,
  2196. "license": "BlueOak-1.0.0",
  2197. "dependencies": {
  2198. "@isaacs/cliui": "^8.0.2"
  2199. },
  2200. "engines": {
  2201. "node": ">=14"
  2202. },
  2203. "funding": {
  2204. "url": "https://github.com/sponsors/isaacs"
  2205. },
  2206. "optionalDependencies": {
  2207. "@pkgjs/parseargs": "^0.11.0"
  2208. }
  2209. },
  2210. "node_modules/npm/node_modules/jsbn": {
  2211. "version": "1.1.0",
  2212. "inBundle": true,
  2213. "license": "MIT"
  2214. },
  2215. "node_modules/npm/node_modules/json-parse-even-better-errors": {
  2216. "version": "3.0.1",
  2217. "inBundle": true,
  2218. "license": "MIT",
  2219. "engines": {
  2220. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  2221. }
  2222. },
  2223. "node_modules/npm/node_modules/json-stringify-nice": {
  2224. "version": "1.1.4",
  2225. "inBundle": true,
  2226. "license": "ISC",
  2227. "funding": {
  2228. "url": "https://github.com/sponsors/isaacs"
  2229. }
  2230. },
  2231. "node_modules/npm/node_modules/jsonparse": {
  2232. "version": "1.3.1",
  2233. "engines": [
  2234. "node >= 0.2.0"
  2235. ],
  2236. "inBundle": true,
  2237. "license": "MIT"
  2238. },
  2239. "node_modules/npm/node_modules/just-diff": {
  2240. "version": "6.0.2",
  2241. "inBundle": true,
  2242. "license": "MIT"
  2243. },
  2244. "node_modules/npm/node_modules/just-diff-apply": {
  2245. "version": "5.5.0",
  2246. "inBundle": true,
  2247. "license": "MIT"
  2248. },
  2249. "node_modules/npm/node_modules/libnpmaccess": {
  2250. "version": "8.0.3",
  2251. "inBundle": true,
  2252. "license": "ISC",
  2253. "dependencies": {
  2254. "npm-package-arg": "^11.0.1",
  2255. "npm-registry-fetch": "^16.2.0"
  2256. },
  2257. "engines": {
  2258. "node": "^16.14.0 || >=18.0.0"
  2259. }
  2260. },
  2261. "node_modules/npm/node_modules/libnpmdiff": {
  2262. "version": "6.0.9",
  2263. "inBundle": true,
  2264. "license": "ISC",
  2265. "dependencies": {
  2266. "@npmcli/arborist": "^7.2.1",
  2267. "@npmcli/disparity-colors": "^3.0.0",
  2268. "@npmcli/installed-package-contents": "^2.0.2",
  2269. "binary-extensions": "^2.3.0",
  2270. "diff": "^5.1.0",
  2271. "minimatch": "^9.0.4",
  2272. "npm-package-arg": "^11.0.1",
  2273. "pacote": "^17.0.4",
  2274. "tar": "^6.2.1"
  2275. },
  2276. "engines": {
  2277. "node": "^16.14.0 || >=18.0.0"
  2278. }
  2279. },
  2280. "node_modules/npm/node_modules/libnpmexec": {
  2281. "version": "7.0.10",
  2282. "inBundle": true,
  2283. "license": "ISC",
  2284. "dependencies": {
  2285. "@npmcli/arborist": "^7.2.1",
  2286. "@npmcli/run-script": "^7.0.2",
  2287. "ci-info": "^4.0.0",
  2288. "npm-package-arg": "^11.0.1",
  2289. "npmlog": "^7.0.1",
  2290. "pacote": "^17.0.4",
  2291. "proc-log": "^3.0.0",
  2292. "read": "^3.0.1",
  2293. "read-package-json-fast": "^3.0.2",
  2294. "semver": "^7.3.7",
  2295. "walk-up-path": "^3.0.1"
  2296. },
  2297. "engines": {
  2298. "node": "^16.14.0 || >=18.0.0"
  2299. }
  2300. },
  2301. "node_modules/npm/node_modules/libnpmfund": {
  2302. "version": "5.0.7",
  2303. "inBundle": true,
  2304. "license": "ISC",
  2305. "dependencies": {
  2306. "@npmcli/arborist": "^7.2.1"
  2307. },
  2308. "engines": {
  2309. "node": "^16.14.0 || >=18.0.0"
  2310. }
  2311. },
  2312. "node_modules/npm/node_modules/libnpmhook": {
  2313. "version": "10.0.2",
  2314. "inBundle": true,
  2315. "license": "ISC",
  2316. "dependencies": {
  2317. "aproba": "^2.0.0",
  2318. "npm-registry-fetch": "^16.2.0"
  2319. },
  2320. "engines": {
  2321. "node": "^16.14.0 || >=18.0.0"
  2322. }
  2323. },
  2324. "node_modules/npm/node_modules/libnpmorg": {
  2325. "version": "6.0.3",
  2326. "inBundle": true,
  2327. "license": "ISC",
  2328. "dependencies": {
  2329. "aproba": "^2.0.0",
  2330. "npm-registry-fetch": "^16.2.0"
  2331. },
  2332. "engines": {
  2333. "node": "^16.14.0 || >=18.0.0"
  2334. }
  2335. },
  2336. "node_modules/npm/node_modules/libnpmpack": {
  2337. "version": "6.0.9",
  2338. "inBundle": true,
  2339. "license": "ISC",
  2340. "dependencies": {
  2341. "@npmcli/arborist": "^7.2.1",
  2342. "@npmcli/run-script": "^7.0.2",
  2343. "npm-package-arg": "^11.0.1",
  2344. "pacote": "^17.0.4"
  2345. },
  2346. "engines": {
  2347. "node": "^16.14.0 || >=18.0.0"
  2348. }
  2349. },
  2350. "node_modules/npm/node_modules/libnpmpublish": {
  2351. "version": "9.0.5",
  2352. "inBundle": true,
  2353. "license": "ISC",
  2354. "dependencies": {
  2355. "ci-info": "^4.0.0",
  2356. "normalize-package-data": "^6.0.0",
  2357. "npm-package-arg": "^11.0.1",
  2358. "npm-registry-fetch": "^16.2.0",
  2359. "proc-log": "^3.0.0",
  2360. "semver": "^7.3.7",
  2361. "sigstore": "^2.2.0",
  2362. "ssri": "^10.0.5"
  2363. },
  2364. "engines": {
  2365. "node": "^16.14.0 || >=18.0.0"
  2366. }
  2367. },
  2368. "node_modules/npm/node_modules/libnpmsearch": {
  2369. "version": "7.0.2",
  2370. "inBundle": true,
  2371. "license": "ISC",
  2372. "dependencies": {
  2373. "npm-registry-fetch": "^16.2.0"
  2374. },
  2375. "engines": {
  2376. "node": "^16.14.0 || >=18.0.0"
  2377. }
  2378. },
  2379. "node_modules/npm/node_modules/libnpmteam": {
  2380. "version": "6.0.2",
  2381. "inBundle": true,
  2382. "license": "ISC",
  2383. "dependencies": {
  2384. "aproba": "^2.0.0",
  2385. "npm-registry-fetch": "^16.2.0"
  2386. },
  2387. "engines": {
  2388. "node": "^16.14.0 || >=18.0.0"
  2389. }
  2390. },
  2391. "node_modules/npm/node_modules/libnpmversion": {
  2392. "version": "5.0.2",
  2393. "inBundle": true,
  2394. "license": "ISC",
  2395. "dependencies": {
  2396. "@npmcli/git": "^5.0.3",
  2397. "@npmcli/run-script": "^7.0.2",
  2398. "json-parse-even-better-errors": "^3.0.0",
  2399. "proc-log": "^3.0.0",
  2400. "semver": "^7.3.7"
  2401. },
  2402. "engines": {
  2403. "node": "^16.14.0 || >=18.0.0"
  2404. }
  2405. },
  2406. "node_modules/npm/node_modules/lru-cache": {
  2407. "version": "10.2.0",
  2408. "inBundle": true,
  2409. "license": "ISC",
  2410. "engines": {
  2411. "node": "14 || >=16.14"
  2412. }
  2413. },
  2414. "node_modules/npm/node_modules/make-fetch-happen": {
  2415. "version": "13.0.0",
  2416. "inBundle": true,
  2417. "license": "ISC",
  2418. "dependencies": {
  2419. "@npmcli/agent": "^2.0.0",
  2420. "cacache": "^18.0.0",
  2421. "http-cache-semantics": "^4.1.1",
  2422. "is-lambda": "^1.0.1",
  2423. "minipass": "^7.0.2",
  2424. "minipass-fetch": "^3.0.0",
  2425. "minipass-flush": "^1.0.5",
  2426. "minipass-pipeline": "^1.2.4",
  2427. "negotiator": "^0.6.3",
  2428. "promise-retry": "^2.0.1",
  2429. "ssri": "^10.0.0"
  2430. },
  2431. "engines": {
  2432. "node": "^16.14.0 || >=18.0.0"
  2433. }
  2434. },
  2435. "node_modules/npm/node_modules/minimatch": {
  2436. "version": "9.0.4",
  2437. "inBundle": true,
  2438. "license": "ISC",
  2439. "dependencies": {
  2440. "brace-expansion": "^2.0.1"
  2441. },
  2442. "engines": {
  2443. "node": ">=16 || 14 >=14.17"
  2444. },
  2445. "funding": {
  2446. "url": "https://github.com/sponsors/isaacs"
  2447. }
  2448. },
  2449. "node_modules/npm/node_modules/minipass": {
  2450. "version": "7.0.4",
  2451. "inBundle": true,
  2452. "license": "ISC",
  2453. "engines": {
  2454. "node": ">=16 || 14 >=14.17"
  2455. }
  2456. },
  2457. "node_modules/npm/node_modules/minipass-collect": {
  2458. "version": "2.0.1",
  2459. "inBundle": true,
  2460. "license": "ISC",
  2461. "dependencies": {
  2462. "minipass": "^7.0.3"
  2463. },
  2464. "engines": {
  2465. "node": ">=16 || 14 >=14.17"
  2466. }
  2467. },
  2468. "node_modules/npm/node_modules/minipass-fetch": {
  2469. "version": "3.0.4",
  2470. "inBundle": true,
  2471. "license": "MIT",
  2472. "dependencies": {
  2473. "minipass": "^7.0.3",
  2474. "minipass-sized": "^1.0.3",
  2475. "minizlib": "^2.1.2"
  2476. },
  2477. "engines": {
  2478. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  2479. },
  2480. "optionalDependencies": {
  2481. "encoding": "^0.1.13"
  2482. }
  2483. },
  2484. "node_modules/npm/node_modules/minipass-flush": {
  2485. "version": "1.0.5",
  2486. "inBundle": true,
  2487. "license": "ISC",
  2488. "dependencies": {
  2489. "minipass": "^3.0.0"
  2490. },
  2491. "engines": {
  2492. "node": ">= 8"
  2493. }
  2494. },
  2495. "node_modules/npm/node_modules/minipass-flush/node_modules/minipass": {
  2496. "version": "3.3.6",
  2497. "inBundle": true,
  2498. "license": "ISC",
  2499. "dependencies": {
  2500. "yallist": "^4.0.0"
  2501. },
  2502. "engines": {
  2503. "node": ">=8"
  2504. }
  2505. },
  2506. "node_modules/npm/node_modules/minipass-json-stream": {
  2507. "version": "1.0.1",
  2508. "inBundle": true,
  2509. "license": "MIT",
  2510. "dependencies": {
  2511. "jsonparse": "^1.3.1",
  2512. "minipass": "^3.0.0"
  2513. }
  2514. },
  2515. "node_modules/npm/node_modules/minipass-json-stream/node_modules/minipass": {
  2516. "version": "3.3.6",
  2517. "inBundle": true,
  2518. "license": "ISC",
  2519. "dependencies": {
  2520. "yallist": "^4.0.0"
  2521. },
  2522. "engines": {
  2523. "node": ">=8"
  2524. }
  2525. },
  2526. "node_modules/npm/node_modules/minipass-pipeline": {
  2527. "version": "1.2.4",
  2528. "inBundle": true,
  2529. "license": "ISC",
  2530. "dependencies": {
  2531. "minipass": "^3.0.0"
  2532. },
  2533. "engines": {
  2534. "node": ">=8"
  2535. }
  2536. },
  2537. "node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass": {
  2538. "version": "3.3.6",
  2539. "inBundle": true,
  2540. "license": "ISC",
  2541. "dependencies": {
  2542. "yallist": "^4.0.0"
  2543. },
  2544. "engines": {
  2545. "node": ">=8"
  2546. }
  2547. },
  2548. "node_modules/npm/node_modules/minipass-sized": {
  2549. "version": "1.0.3",
  2550. "inBundle": true,
  2551. "license": "ISC",
  2552. "dependencies": {
  2553. "minipass": "^3.0.0"
  2554. },
  2555. "engines": {
  2556. "node": ">=8"
  2557. }
  2558. },
  2559. "node_modules/npm/node_modules/minipass-sized/node_modules/minipass": {
  2560. "version": "3.3.6",
  2561. "inBundle": true,
  2562. "license": "ISC",
  2563. "dependencies": {
  2564. "yallist": "^4.0.0"
  2565. },
  2566. "engines": {
  2567. "node": ">=8"
  2568. }
  2569. },
  2570. "node_modules/npm/node_modules/minizlib": {
  2571. "version": "2.1.2",
  2572. "inBundle": true,
  2573. "license": "MIT",
  2574. "dependencies": {
  2575. "minipass": "^3.0.0",
  2576. "yallist": "^4.0.0"
  2577. },
  2578. "engines": {
  2579. "node": ">= 8"
  2580. }
  2581. },
  2582. "node_modules/npm/node_modules/minizlib/node_modules/minipass": {
  2583. "version": "3.3.6",
  2584. "inBundle": true,
  2585. "license": "ISC",
  2586. "dependencies": {
  2587. "yallist": "^4.0.0"
  2588. },
  2589. "engines": {
  2590. "node": ">=8"
  2591. }
  2592. },
  2593. "node_modules/npm/node_modules/mkdirp": {
  2594. "version": "1.0.4",
  2595. "inBundle": true,
  2596. "license": "MIT",
  2597. "bin": {
  2598. "mkdirp": "bin/cmd.js"
  2599. },
  2600. "engines": {
  2601. "node": ">=10"
  2602. }
  2603. },
  2604. "node_modules/npm/node_modules/ms": {
  2605. "version": "2.1.3",
  2606. "inBundle": true,
  2607. "license": "MIT"
  2608. },
  2609. "node_modules/npm/node_modules/mute-stream": {
  2610. "version": "1.0.0",
  2611. "inBundle": true,
  2612. "license": "ISC",
  2613. "engines": {
  2614. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  2615. }
  2616. },
  2617. "node_modules/npm/node_modules/negotiator": {
  2618. "version": "0.6.3",
  2619. "inBundle": true,
  2620. "license": "MIT",
  2621. "engines": {
  2622. "node": ">= 0.6"
  2623. }
  2624. },
  2625. "node_modules/npm/node_modules/node-gyp": {
  2626. "version": "10.1.0",
  2627. "inBundle": true,
  2628. "license": "MIT",
  2629. "dependencies": {
  2630. "env-paths": "^2.2.0",
  2631. "exponential-backoff": "^3.1.1",
  2632. "glob": "^10.3.10",
  2633. "graceful-fs": "^4.2.6",
  2634. "make-fetch-happen": "^13.0.0",
  2635. "nopt": "^7.0.0",
  2636. "proc-log": "^3.0.0",
  2637. "semver": "^7.3.5",
  2638. "tar": "^6.1.2",
  2639. "which": "^4.0.0"
  2640. },
  2641. "bin": {
  2642. "node-gyp": "bin/node-gyp.js"
  2643. },
  2644. "engines": {
  2645. "node": "^16.14.0 || >=18.0.0"
  2646. }
  2647. },
  2648. "node_modules/npm/node_modules/nopt": {
  2649. "version": "7.2.0",
  2650. "inBundle": true,
  2651. "license": "ISC",
  2652. "dependencies": {
  2653. "abbrev": "^2.0.0"
  2654. },
  2655. "bin": {
  2656. "nopt": "bin/nopt.js"
  2657. },
  2658. "engines": {
  2659. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  2660. }
  2661. },
  2662. "node_modules/npm/node_modules/normalize-package-data": {
  2663. "version": "6.0.0",
  2664. "inBundle": true,
  2665. "license": "BSD-2-Clause",
  2666. "dependencies": {
  2667. "hosted-git-info": "^7.0.0",
  2668. "is-core-module": "^2.8.1",
  2669. "semver": "^7.3.5",
  2670. "validate-npm-package-license": "^3.0.4"
  2671. },
  2672. "engines": {
  2673. "node": "^16.14.0 || >=18.0.0"
  2674. }
  2675. },
  2676. "node_modules/npm/node_modules/npm-audit-report": {
  2677. "version": "5.0.0",
  2678. "inBundle": true,
  2679. "license": "ISC",
  2680. "engines": {
  2681. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  2682. }
  2683. },
  2684. "node_modules/npm/node_modules/npm-bundled": {
  2685. "version": "3.0.0",
  2686. "inBundle": true,
  2687. "license": "ISC",
  2688. "dependencies": {
  2689. "npm-normalize-package-bin": "^3.0.0"
  2690. },
  2691. "engines": {
  2692. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  2693. }
  2694. },
  2695. "node_modules/npm/node_modules/npm-install-checks": {
  2696. "version": "6.3.0",
  2697. "inBundle": true,
  2698. "license": "BSD-2-Clause",
  2699. "dependencies": {
  2700. "semver": "^7.1.1"
  2701. },
  2702. "engines": {
  2703. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  2704. }
  2705. },
  2706. "node_modules/npm/node_modules/npm-normalize-package-bin": {
  2707. "version": "3.0.1",
  2708. "inBundle": true,
  2709. "license": "ISC",
  2710. "engines": {
  2711. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  2712. }
  2713. },
  2714. "node_modules/npm/node_modules/npm-package-arg": {
  2715. "version": "11.0.1",
  2716. "inBundle": true,
  2717. "license": "ISC",
  2718. "dependencies": {
  2719. "hosted-git-info": "^7.0.0",
  2720. "proc-log": "^3.0.0",
  2721. "semver": "^7.3.5",
  2722. "validate-npm-package-name": "^5.0.0"
  2723. },
  2724. "engines": {
  2725. "node": "^16.14.0 || >=18.0.0"
  2726. }
  2727. },
  2728. "node_modules/npm/node_modules/npm-packlist": {
  2729. "version": "8.0.2",
  2730. "inBundle": true,
  2731. "license": "ISC",
  2732. "dependencies": {
  2733. "ignore-walk": "^6.0.4"
  2734. },
  2735. "engines": {
  2736. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  2737. }
  2738. },
  2739. "node_modules/npm/node_modules/npm-pick-manifest": {
  2740. "version": "9.0.0",
  2741. "inBundle": true,
  2742. "license": "ISC",
  2743. "dependencies": {
  2744. "npm-install-checks": "^6.0.0",
  2745. "npm-normalize-package-bin": "^3.0.0",
  2746. "npm-package-arg": "^11.0.0",
  2747. "semver": "^7.3.5"
  2748. },
  2749. "engines": {
  2750. "node": "^16.14.0 || >=18.0.0"
  2751. }
  2752. },
  2753. "node_modules/npm/node_modules/npm-profile": {
  2754. "version": "9.0.0",
  2755. "inBundle": true,
  2756. "license": "ISC",
  2757. "dependencies": {
  2758. "npm-registry-fetch": "^16.0.0",
  2759. "proc-log": "^3.0.0"
  2760. },
  2761. "engines": {
  2762. "node": "^16.14.0 || >=18.0.0"
  2763. }
  2764. },
  2765. "node_modules/npm/node_modules/npm-registry-fetch": {
  2766. "version": "16.2.0",
  2767. "inBundle": true,
  2768. "license": "ISC",
  2769. "dependencies": {
  2770. "@npmcli/redact": "^1.1.0",
  2771. "make-fetch-happen": "^13.0.0",
  2772. "minipass": "^7.0.2",
  2773. "minipass-fetch": "^3.0.0",
  2774. "minipass-json-stream": "^1.0.1",
  2775. "minizlib": "^2.1.2",
  2776. "npm-package-arg": "^11.0.0",
  2777. "proc-log": "^3.0.0"
  2778. },
  2779. "engines": {
  2780. "node": "^16.14.0 || >=18.0.0"
  2781. }
  2782. },
  2783. "node_modules/npm/node_modules/npm-user-validate": {
  2784. "version": "2.0.0",
  2785. "inBundle": true,
  2786. "license": "BSD-2-Clause",
  2787. "engines": {
  2788. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  2789. }
  2790. },
  2791. "node_modules/npm/node_modules/npmlog": {
  2792. "version": "7.0.1",
  2793. "inBundle": true,
  2794. "license": "ISC",
  2795. "dependencies": {
  2796. "are-we-there-yet": "^4.0.0",
  2797. "console-control-strings": "^1.1.0",
  2798. "gauge": "^5.0.0",
  2799. "set-blocking": "^2.0.0"
  2800. },
  2801. "engines": {
  2802. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  2803. }
  2804. },
  2805. "node_modules/npm/node_modules/p-map": {
  2806. "version": "4.0.0",
  2807. "inBundle": true,
  2808. "license": "MIT",
  2809. "dependencies": {
  2810. "aggregate-error": "^3.0.0"
  2811. },
  2812. "engines": {
  2813. "node": ">=10"
  2814. },
  2815. "funding": {
  2816. "url": "https://github.com/sponsors/sindresorhus"
  2817. }
  2818. },
  2819. "node_modules/npm/node_modules/pacote": {
  2820. "version": "17.0.6",
  2821. "inBundle": true,
  2822. "license": "ISC",
  2823. "dependencies": {
  2824. "@npmcli/git": "^5.0.0",
  2825. "@npmcli/installed-package-contents": "^2.0.1",
  2826. "@npmcli/promise-spawn": "^7.0.0",
  2827. "@npmcli/run-script": "^7.0.0",
  2828. "cacache": "^18.0.0",
  2829. "fs-minipass": "^3.0.0",
  2830. "minipass": "^7.0.2",
  2831. "npm-package-arg": "^11.0.0",
  2832. "npm-packlist": "^8.0.0",
  2833. "npm-pick-manifest": "^9.0.0",
  2834. "npm-registry-fetch": "^16.0.0",
  2835. "proc-log": "^3.0.0",
  2836. "promise-retry": "^2.0.1",
  2837. "read-package-json": "^7.0.0",
  2838. "read-package-json-fast": "^3.0.0",
  2839. "sigstore": "^2.2.0",
  2840. "ssri": "^10.0.0",
  2841. "tar": "^6.1.11"
  2842. },
  2843. "bin": {
  2844. "pacote": "lib/bin.js"
  2845. },
  2846. "engines": {
  2847. "node": "^16.14.0 || >=18.0.0"
  2848. }
  2849. },
  2850. "node_modules/npm/node_modules/parse-conflict-json": {
  2851. "version": "3.0.1",
  2852. "inBundle": true,
  2853. "license": "ISC",
  2854. "dependencies": {
  2855. "json-parse-even-better-errors": "^3.0.0",
  2856. "just-diff": "^6.0.0",
  2857. "just-diff-apply": "^5.2.0"
  2858. },
  2859. "engines": {
  2860. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  2861. }
  2862. },
  2863. "node_modules/npm/node_modules/path-key": {
  2864. "version": "3.1.1",
  2865. "inBundle": true,
  2866. "license": "MIT",
  2867. "engines": {
  2868. "node": ">=8"
  2869. }
  2870. },
  2871. "node_modules/npm/node_modules/path-scurry": {
  2872. "version": "1.10.2",
  2873. "inBundle": true,
  2874. "license": "BlueOak-1.0.0",
  2875. "dependencies": {
  2876. "lru-cache": "^10.2.0",
  2877. "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
  2878. },
  2879. "engines": {
  2880. "node": ">=16 || 14 >=14.17"
  2881. },
  2882. "funding": {
  2883. "url": "https://github.com/sponsors/isaacs"
  2884. }
  2885. },
  2886. "node_modules/npm/node_modules/postcss-selector-parser": {
  2887. "version": "6.0.16",
  2888. "inBundle": true,
  2889. "license": "MIT",
  2890. "dependencies": {
  2891. "cssesc": "^3.0.0",
  2892. "util-deprecate": "^1.0.2"
  2893. },
  2894. "engines": {
  2895. "node": ">=4"
  2896. }
  2897. },
  2898. "node_modules/npm/node_modules/proc-log": {
  2899. "version": "3.0.0",
  2900. "inBundle": true,
  2901. "license": "ISC",
  2902. "engines": {
  2903. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  2904. }
  2905. },
  2906. "node_modules/npm/node_modules/promise-all-reject-late": {
  2907. "version": "1.0.1",
  2908. "inBundle": true,
  2909. "license": "ISC",
  2910. "funding": {
  2911. "url": "https://github.com/sponsors/isaacs"
  2912. }
  2913. },
  2914. "node_modules/npm/node_modules/promise-call-limit": {
  2915. "version": "3.0.1",
  2916. "inBundle": true,
  2917. "license": "ISC",
  2918. "funding": {
  2919. "url": "https://github.com/sponsors/isaacs"
  2920. }
  2921. },
  2922. "node_modules/npm/node_modules/promise-inflight": {
  2923. "version": "1.0.1",
  2924. "inBundle": true,
  2925. "license": "ISC"
  2926. },
  2927. "node_modules/npm/node_modules/promise-retry": {
  2928. "version": "2.0.1",
  2929. "inBundle": true,
  2930. "license": "MIT",
  2931. "dependencies": {
  2932. "err-code": "^2.0.2",
  2933. "retry": "^0.12.0"
  2934. },
  2935. "engines": {
  2936. "node": ">=10"
  2937. }
  2938. },
  2939. "node_modules/npm/node_modules/promzard": {
  2940. "version": "1.0.1",
  2941. "inBundle": true,
  2942. "license": "ISC",
  2943. "dependencies": {
  2944. "read": "^3.0.1"
  2945. },
  2946. "engines": {
  2947. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  2948. }
  2949. },
  2950. "node_modules/npm/node_modules/qrcode-terminal": {
  2951. "version": "0.12.0",
  2952. "inBundle": true,
  2953. "bin": {
  2954. "qrcode-terminal": "bin/qrcode-terminal.js"
  2955. }
  2956. },
  2957. "node_modules/npm/node_modules/read": {
  2958. "version": "3.0.1",
  2959. "inBundle": true,
  2960. "license": "ISC",
  2961. "dependencies": {
  2962. "mute-stream": "^1.0.0"
  2963. },
  2964. "engines": {
  2965. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  2966. }
  2967. },
  2968. "node_modules/npm/node_modules/read-cmd-shim": {
  2969. "version": "4.0.0",
  2970. "inBundle": true,
  2971. "license": "ISC",
  2972. "engines": {
  2973. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  2974. }
  2975. },
  2976. "node_modules/npm/node_modules/read-package-json": {
  2977. "version": "7.0.0",
  2978. "inBundle": true,
  2979. "license": "ISC",
  2980. "dependencies": {
  2981. "glob": "^10.2.2",
  2982. "json-parse-even-better-errors": "^3.0.0",
  2983. "normalize-package-data": "^6.0.0",
  2984. "npm-normalize-package-bin": "^3.0.0"
  2985. },
  2986. "engines": {
  2987. "node": "^16.14.0 || >=18.0.0"
  2988. }
  2989. },
  2990. "node_modules/npm/node_modules/read-package-json-fast": {
  2991. "version": "3.0.2",
  2992. "inBundle": true,
  2993. "license": "ISC",
  2994. "dependencies": {
  2995. "json-parse-even-better-errors": "^3.0.0",
  2996. "npm-normalize-package-bin": "^3.0.0"
  2997. },
  2998. "engines": {
  2999. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  3000. }
  3001. },
  3002. "node_modules/npm/node_modules/retry": {
  3003. "version": "0.12.0",
  3004. "inBundle": true,
  3005. "license": "MIT",
  3006. "engines": {
  3007. "node": ">= 4"
  3008. }
  3009. },
  3010. "node_modules/npm/node_modules/safer-buffer": {
  3011. "version": "2.1.2",
  3012. "inBundle": true,
  3013. "license": "MIT",
  3014. "optional": true
  3015. },
  3016. "node_modules/npm/node_modules/semver": {
  3017. "version": "7.6.0",
  3018. "inBundle": true,
  3019. "license": "ISC",
  3020. "dependencies": {
  3021. "lru-cache": "^6.0.0"
  3022. },
  3023. "bin": {
  3024. "semver": "bin/semver.js"
  3025. },
  3026. "engines": {
  3027. "node": ">=10"
  3028. }
  3029. },
  3030. "node_modules/npm/node_modules/semver/node_modules/lru-cache": {
  3031. "version": "6.0.0",
  3032. "inBundle": true,
  3033. "license": "ISC",
  3034. "dependencies": {
  3035. "yallist": "^4.0.0"
  3036. },
  3037. "engines": {
  3038. "node": ">=10"
  3039. }
  3040. },
  3041. "node_modules/npm/node_modules/set-blocking": {
  3042. "version": "2.0.0",
  3043. "inBundle": true,
  3044. "license": "ISC"
  3045. },
  3046. "node_modules/npm/node_modules/shebang-command": {
  3047. "version": "2.0.0",
  3048. "inBundle": true,
  3049. "license": "MIT",
  3050. "dependencies": {
  3051. "shebang-regex": "^3.0.0"
  3052. },
  3053. "engines": {
  3054. "node": ">=8"
  3055. }
  3056. },
  3057. "node_modules/npm/node_modules/shebang-regex": {
  3058. "version": "3.0.0",
  3059. "inBundle": true,
  3060. "license": "MIT",
  3061. "engines": {
  3062. "node": ">=8"
  3063. }
  3064. },
  3065. "node_modules/npm/node_modules/signal-exit": {
  3066. "version": "4.1.0",
  3067. "inBundle": true,
  3068. "license": "ISC",
  3069. "engines": {
  3070. "node": ">=14"
  3071. },
  3072. "funding": {
  3073. "url": "https://github.com/sponsors/isaacs"
  3074. }
  3075. },
  3076. "node_modules/npm/node_modules/sigstore": {
  3077. "version": "2.3.0",
  3078. "inBundle": true,
  3079. "license": "Apache-2.0",
  3080. "dependencies": {
  3081. "@sigstore/bundle": "^2.3.1",
  3082. "@sigstore/core": "^1.0.0",
  3083. "@sigstore/protobuf-specs": "^0.3.1",
  3084. "@sigstore/sign": "^2.3.0",
  3085. "@sigstore/tuf": "^2.3.1",
  3086. "@sigstore/verify": "^1.2.0"
  3087. },
  3088. "engines": {
  3089. "node": "^16.14.0 || >=18.0.0"
  3090. }
  3091. },
  3092. "node_modules/npm/node_modules/smart-buffer": {
  3093. "version": "4.2.0",
  3094. "inBundle": true,
  3095. "license": "MIT",
  3096. "engines": {
  3097. "node": ">= 6.0.0",
  3098. "npm": ">= 3.0.0"
  3099. }
  3100. },
  3101. "node_modules/npm/node_modules/socks": {
  3102. "version": "2.8.3",
  3103. "inBundle": true,
  3104. "license": "MIT",
  3105. "dependencies": {
  3106. "ip-address": "^9.0.5",
  3107. "smart-buffer": "^4.2.0"
  3108. },
  3109. "engines": {
  3110. "node": ">= 10.0.0",
  3111. "npm": ">= 3.0.0"
  3112. }
  3113. },
  3114. "node_modules/npm/node_modules/socks-proxy-agent": {
  3115. "version": "8.0.3",
  3116. "inBundle": true,
  3117. "license": "MIT",
  3118. "dependencies": {
  3119. "agent-base": "^7.1.1",
  3120. "debug": "^4.3.4",
  3121. "socks": "^2.7.1"
  3122. },
  3123. "engines": {
  3124. "node": ">= 14"
  3125. }
  3126. },
  3127. "node_modules/npm/node_modules/spdx-correct": {
  3128. "version": "3.2.0",
  3129. "inBundle": true,
  3130. "license": "Apache-2.0",
  3131. "dependencies": {
  3132. "spdx-expression-parse": "^3.0.0",
  3133. "spdx-license-ids": "^3.0.0"
  3134. }
  3135. },
  3136. "node_modules/npm/node_modules/spdx-correct/node_modules/spdx-expression-parse": {
  3137. "version": "3.0.1",
  3138. "inBundle": true,
  3139. "license": "MIT",
  3140. "dependencies": {
  3141. "spdx-exceptions": "^2.1.0",
  3142. "spdx-license-ids": "^3.0.0"
  3143. }
  3144. },
  3145. "node_modules/npm/node_modules/spdx-exceptions": {
  3146. "version": "2.5.0",
  3147. "inBundle": true,
  3148. "license": "CC-BY-3.0"
  3149. },
  3150. "node_modules/npm/node_modules/spdx-expression-parse": {
  3151. "version": "4.0.0",
  3152. "inBundle": true,
  3153. "license": "MIT",
  3154. "dependencies": {
  3155. "spdx-exceptions": "^2.1.0",
  3156. "spdx-license-ids": "^3.0.0"
  3157. }
  3158. },
  3159. "node_modules/npm/node_modules/spdx-license-ids": {
  3160. "version": "3.0.17",
  3161. "inBundle": true,
  3162. "license": "CC0-1.0"
  3163. },
  3164. "node_modules/npm/node_modules/ssri": {
  3165. "version": "10.0.5",
  3166. "inBundle": true,
  3167. "license": "ISC",
  3168. "dependencies": {
  3169. "minipass": "^7.0.3"
  3170. },
  3171. "engines": {
  3172. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  3173. }
  3174. },
  3175. "node_modules/npm/node_modules/string-width": {
  3176. "version": "4.2.3",
  3177. "inBundle": true,
  3178. "license": "MIT",
  3179. "dependencies": {
  3180. "emoji-regex": "^8.0.0",
  3181. "is-fullwidth-code-point": "^3.0.0",
  3182. "strip-ansi": "^6.0.1"
  3183. },
  3184. "engines": {
  3185. "node": ">=8"
  3186. }
  3187. },
  3188. "node_modules/npm/node_modules/string-width-cjs": {
  3189. "name": "string-width",
  3190. "version": "4.2.3",
  3191. "inBundle": true,
  3192. "license": "MIT",
  3193. "dependencies": {
  3194. "emoji-regex": "^8.0.0",
  3195. "is-fullwidth-code-point": "^3.0.0",
  3196. "strip-ansi": "^6.0.1"
  3197. },
  3198. "engines": {
  3199. "node": ">=8"
  3200. }
  3201. },
  3202. "node_modules/npm/node_modules/strip-ansi": {
  3203. "version": "6.0.1",
  3204. "inBundle": true,
  3205. "license": "MIT",
  3206. "dependencies": {
  3207. "ansi-regex": "^5.0.1"
  3208. },
  3209. "engines": {
  3210. "node": ">=8"
  3211. }
  3212. },
  3213. "node_modules/npm/node_modules/strip-ansi-cjs": {
  3214. "name": "strip-ansi",
  3215. "version": "6.0.1",
  3216. "inBundle": true,
  3217. "license": "MIT",
  3218. "dependencies": {
  3219. "ansi-regex": "^5.0.1"
  3220. },
  3221. "engines": {
  3222. "node": ">=8"
  3223. }
  3224. },
  3225. "node_modules/npm/node_modules/supports-color": {
  3226. "version": "9.4.0",
  3227. "inBundle": true,
  3228. "license": "MIT",
  3229. "engines": {
  3230. "node": ">=12"
  3231. },
  3232. "funding": {
  3233. "url": "https://github.com/chalk/supports-color?sponsor=1"
  3234. }
  3235. },
  3236. "node_modules/npm/node_modules/tar": {
  3237. "version": "6.2.1",
  3238. "inBundle": true,
  3239. "license": "ISC",
  3240. "dependencies": {
  3241. "chownr": "^2.0.0",
  3242. "fs-minipass": "^2.0.0",
  3243. "minipass": "^5.0.0",
  3244. "minizlib": "^2.1.1",
  3245. "mkdirp": "^1.0.3",
  3246. "yallist": "^4.0.0"
  3247. },
  3248. "engines": {
  3249. "node": ">=10"
  3250. }
  3251. },
  3252. "node_modules/npm/node_modules/tar/node_modules/fs-minipass": {
  3253. "version": "2.1.0",
  3254. "inBundle": true,
  3255. "license": "ISC",
  3256. "dependencies": {
  3257. "minipass": "^3.0.0"
  3258. },
  3259. "engines": {
  3260. "node": ">= 8"
  3261. }
  3262. },
  3263. "node_modules/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass": {
  3264. "version": "3.3.6",
  3265. "inBundle": true,
  3266. "license": "ISC",
  3267. "dependencies": {
  3268. "yallist": "^4.0.0"
  3269. },
  3270. "engines": {
  3271. "node": ">=8"
  3272. }
  3273. },
  3274. "node_modules/npm/node_modules/tar/node_modules/minipass": {
  3275. "version": "5.0.0",
  3276. "inBundle": true,
  3277. "license": "ISC",
  3278. "engines": {
  3279. "node": ">=8"
  3280. }
  3281. },
  3282. "node_modules/npm/node_modules/text-table": {
  3283. "version": "0.2.0",
  3284. "inBundle": true,
  3285. "license": "MIT"
  3286. },
  3287. "node_modules/npm/node_modules/tiny-relative-date": {
  3288. "version": "1.3.0",
  3289. "inBundle": true,
  3290. "license": "MIT"
  3291. },
  3292. "node_modules/npm/node_modules/treeverse": {
  3293. "version": "3.0.0",
  3294. "inBundle": true,
  3295. "license": "ISC",
  3296. "engines": {
  3297. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  3298. }
  3299. },
  3300. "node_modules/npm/node_modules/tuf-js": {
  3301. "version": "2.2.0",
  3302. "inBundle": true,
  3303. "license": "MIT",
  3304. "dependencies": {
  3305. "@tufjs/models": "2.0.0",
  3306. "debug": "^4.3.4",
  3307. "make-fetch-happen": "^13.0.0"
  3308. },
  3309. "engines": {
  3310. "node": "^16.14.0 || >=18.0.0"
  3311. }
  3312. },
  3313. "node_modules/npm/node_modules/unique-filename": {
  3314. "version": "3.0.0",
  3315. "inBundle": true,
  3316. "license": "ISC",
  3317. "dependencies": {
  3318. "unique-slug": "^4.0.0"
  3319. },
  3320. "engines": {
  3321. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  3322. }
  3323. },
  3324. "node_modules/npm/node_modules/unique-slug": {
  3325. "version": "4.0.0",
  3326. "inBundle": true,
  3327. "license": "ISC",
  3328. "dependencies": {
  3329. "imurmurhash": "^0.1.4"
  3330. },
  3331. "engines": {
  3332. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  3333. }
  3334. },
  3335. "node_modules/npm/node_modules/util-deprecate": {
  3336. "version": "1.0.2",
  3337. "inBundle": true,
  3338. "license": "MIT"
  3339. },
  3340. "node_modules/npm/node_modules/validate-npm-package-license": {
  3341. "version": "3.0.4",
  3342. "inBundle": true,
  3343. "license": "Apache-2.0",
  3344. "dependencies": {
  3345. "spdx-correct": "^3.0.0",
  3346. "spdx-expression-parse": "^3.0.0"
  3347. }
  3348. },
  3349. "node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-expression-parse": {
  3350. "version": "3.0.1",
  3351. "inBundle": true,
  3352. "license": "MIT",
  3353. "dependencies": {
  3354. "spdx-exceptions": "^2.1.0",
  3355. "spdx-license-ids": "^3.0.0"
  3356. }
  3357. },
  3358. "node_modules/npm/node_modules/validate-npm-package-name": {
  3359. "version": "5.0.0",
  3360. "inBundle": true,
  3361. "license": "ISC",
  3362. "dependencies": {
  3363. "builtins": "^5.0.0"
  3364. },
  3365. "engines": {
  3366. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  3367. }
  3368. },
  3369. "node_modules/npm/node_modules/walk-up-path": {
  3370. "version": "3.0.1",
  3371. "inBundle": true,
  3372. "license": "ISC"
  3373. },
  3374. "node_modules/npm/node_modules/wcwidth": {
  3375. "version": "1.0.1",
  3376. "inBundle": true,
  3377. "license": "MIT",
  3378. "dependencies": {
  3379. "defaults": "^1.0.3"
  3380. }
  3381. },
  3382. "node_modules/npm/node_modules/which": {
  3383. "version": "4.0.0",
  3384. "inBundle": true,
  3385. "license": "ISC",
  3386. "dependencies": {
  3387. "isexe": "^3.1.1"
  3388. },
  3389. "bin": {
  3390. "node-which": "bin/which.js"
  3391. },
  3392. "engines": {
  3393. "node": "^16.13.0 || >=18.0.0"
  3394. }
  3395. },
  3396. "node_modules/npm/node_modules/which/node_modules/isexe": {
  3397. "version": "3.1.1",
  3398. "inBundle": true,
  3399. "license": "ISC",
  3400. "engines": {
  3401. "node": ">=16"
  3402. }
  3403. },
  3404. "node_modules/npm/node_modules/wide-align": {
  3405. "version": "1.1.5",
  3406. "inBundle": true,
  3407. "license": "ISC",
  3408. "dependencies": {
  3409. "string-width": "^1.0.2 || 2 || 3 || 4"
  3410. }
  3411. },
  3412. "node_modules/npm/node_modules/wrap-ansi": {
  3413. "version": "8.1.0",
  3414. "inBundle": true,
  3415. "license": "MIT",
  3416. "dependencies": {
  3417. "ansi-styles": "^6.1.0",
  3418. "string-width": "^5.0.1",
  3419. "strip-ansi": "^7.0.1"
  3420. },
  3421. "engines": {
  3422. "node": ">=12"
  3423. },
  3424. "funding": {
  3425. "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
  3426. }
  3427. },
  3428. "node_modules/npm/node_modules/wrap-ansi-cjs": {
  3429. "name": "wrap-ansi",
  3430. "version": "7.0.0",
  3431. "inBundle": true,
  3432. "license": "MIT",
  3433. "dependencies": {
  3434. "ansi-styles": "^4.0.0",
  3435. "string-width": "^4.1.0",
  3436. "strip-ansi": "^6.0.0"
  3437. },
  3438. "engines": {
  3439. "node": ">=10"
  3440. },
  3441. "funding": {
  3442. "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
  3443. }
  3444. },
  3445. "node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles": {
  3446. "version": "4.3.0",
  3447. "inBundle": true,
  3448. "license": "MIT",
  3449. "dependencies": {
  3450. "color-convert": "^2.0.1"
  3451. },
  3452. "engines": {
  3453. "node": ">=8"
  3454. },
  3455. "funding": {
  3456. "url": "https://github.com/chalk/ansi-styles?sponsor=1"
  3457. }
  3458. },
  3459. "node_modules/npm/node_modules/wrap-ansi/node_modules/ansi-regex": {
  3460. "version": "6.0.1",
  3461. "inBundle": true,
  3462. "license": "MIT",
  3463. "engines": {
  3464. "node": ">=12"
  3465. },
  3466. "funding": {
  3467. "url": "https://github.com/chalk/ansi-regex?sponsor=1"
  3468. }
  3469. },
  3470. "node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex": {
  3471. "version": "9.2.2",
  3472. "inBundle": true,
  3473. "license": "MIT"
  3474. },
  3475. "node_modules/npm/node_modules/wrap-ansi/node_modules/string-width": {
  3476. "version": "5.1.2",
  3477. "inBundle": true,
  3478. "license": "MIT",
  3479. "dependencies": {
  3480. "eastasianwidth": "^0.2.0",
  3481. "emoji-regex": "^9.2.2",
  3482. "strip-ansi": "^7.0.1"
  3483. },
  3484. "engines": {
  3485. "node": ">=12"
  3486. },
  3487. "funding": {
  3488. "url": "https://github.com/sponsors/sindresorhus"
  3489. }
  3490. },
  3491. "node_modules/npm/node_modules/wrap-ansi/node_modules/strip-ansi": {
  3492. "version": "7.1.0",
  3493. "inBundle": true,
  3494. "license": "MIT",
  3495. "dependencies": {
  3496. "ansi-regex": "^6.0.1"
  3497. },
  3498. "engines": {
  3499. "node": ">=12"
  3500. },
  3501. "funding": {
  3502. "url": "https://github.com/chalk/strip-ansi?sponsor=1"
  3503. }
  3504. },
  3505. "node_modules/npm/node_modules/write-file-atomic": {
  3506. "version": "5.0.1",
  3507. "inBundle": true,
  3508. "license": "ISC",
  3509. "dependencies": {
  3510. "imurmurhash": "^0.1.4",
  3511. "signal-exit": "^4.0.1"
  3512. },
  3513. "engines": {
  3514. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  3515. }
  3516. },
  3517. "node_modules/npm/node_modules/yallist": {
  3518. "version": "4.0.0",
  3519. "inBundle": true,
  3520. "license": "ISC"
  3521. },
  3522. "node_modules/on-exit-leak-free": {
  3523. "version": "2.1.0",
  3524. "license": "MIT"
  3525. },
  3526. "node_modules/once": {
  3527. "version": "1.4.0",
  3528. "license": "ISC",
  3529. "dependencies": {
  3530. "wrappy": "1"
  3531. }
  3532. },
  3533. "node_modules/pino": {
  3534. "version": "8.18.0",
  3535. "license": "MIT",
  3536. "dependencies": {
  3537. "atomic-sleep": "^1.0.0",
  3538. "fast-redact": "^3.1.1",
  3539. "on-exit-leak-free": "^2.1.0",
  3540. "pino-abstract-transport": "v1.1.0",
  3541. "pino-std-serializers": "^6.0.0",
  3542. "process-warning": "^3.0.0",
  3543. "quick-format-unescaped": "^4.0.3",
  3544. "real-require": "^0.2.0",
  3545. "safe-stable-stringify": "^2.3.1",
  3546. "sonic-boom": "^3.7.0",
  3547. "thread-stream": "^2.0.0"
  3548. },
  3549. "bin": {
  3550. "pino": "bin.js"
  3551. }
  3552. },
  3553. "node_modules/pino-abstract-transport": {
  3554. "version": "1.1.0",
  3555. "license": "MIT",
  3556. "dependencies": {
  3557. "readable-stream": "^4.0.0",
  3558. "split2": "^4.0.0"
  3559. }
  3560. },
  3561. "node_modules/pino-pretty": {
  3562. "version": "10.3.1",
  3563. "license": "MIT",
  3564. "dependencies": {
  3565. "colorette": "^2.0.7",
  3566. "dateformat": "^4.6.3",
  3567. "fast-copy": "^3.0.0",
  3568. "fast-safe-stringify": "^2.1.1",
  3569. "help-me": "^5.0.0",
  3570. "joycon": "^3.1.1",
  3571. "minimist": "^1.2.6",
  3572. "on-exit-leak-free": "^2.1.0",
  3573. "pino-abstract-transport": "^1.0.0",
  3574. "pump": "^3.0.0",
  3575. "readable-stream": "^4.0.0",
  3576. "secure-json-parse": "^2.4.0",
  3577. "sonic-boom": "^3.0.0",
  3578. "strip-json-comments": "^3.1.1"
  3579. },
  3580. "bin": {
  3581. "pino-pretty": "bin.js"
  3582. }
  3583. },
  3584. "node_modules/pino-std-serializers": {
  3585. "version": "6.2.2",
  3586. "license": "MIT"
  3587. },
  3588. "node_modules/prettier": {
  3589. "version": "3.2.4",
  3590. "dev": true,
  3591. "license": "MIT",
  3592. "bin": {
  3593. "prettier": "bin/prettier.cjs"
  3594. },
  3595. "engines": {
  3596. "node": ">=14"
  3597. },
  3598. "funding": {
  3599. "url": "https://github.com/prettier/prettier?sponsor=1"
  3600. }
  3601. },
  3602. "node_modules/process": {
  3603. "version": "0.11.10",
  3604. "license": "MIT",
  3605. "engines": {
  3606. "node": ">= 0.6.0"
  3607. }
  3608. },
  3609. "node_modules/process-warning": {
  3610. "version": "3.0.0",
  3611. "license": "MIT"
  3612. },
  3613. "node_modules/proxy-from-env": {
  3614. "version": "1.1.0",
  3615. "license": "MIT"
  3616. },
  3617. "node_modules/pump": {
  3618. "version": "3.0.0",
  3619. "license": "MIT",
  3620. "dependencies": {
  3621. "end-of-stream": "^1.1.0",
  3622. "once": "^1.3.1"
  3623. }
  3624. },
  3625. "node_modules/quick-format-unescaped": {
  3626. "version": "4.0.4",
  3627. "license": "MIT"
  3628. },
  3629. "node_modules/readable-stream": {
  3630. "version": "4.5.2",
  3631. "license": "MIT",
  3632. "dependencies": {
  3633. "abort-controller": "^3.0.0",
  3634. "buffer": "^6.0.3",
  3635. "events": "^3.3.0",
  3636. "process": "^0.11.10",
  3637. "string_decoder": "^1.3.0"
  3638. },
  3639. "engines": {
  3640. "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
  3641. }
  3642. },
  3643. "node_modules/real-require": {
  3644. "version": "0.2.0",
  3645. "license": "MIT",
  3646. "engines": {
  3647. "node": ">= 12.13.0"
  3648. }
  3649. },
  3650. "node_modules/regenerator-runtime": {
  3651. "version": "0.14.1",
  3652. "license": "MIT"
  3653. },
  3654. "node_modules/ripemd160": {
  3655. "version": "2.0.2",
  3656. "license": "MIT",
  3657. "dependencies": {
  3658. "hash-base": "^3.0.0",
  3659. "inherits": "^2.0.1"
  3660. }
  3661. },
  3662. "node_modules/rpc-websockets": {
  3663. "version": "7.9.0",
  3664. "license": "LGPL-3.0-only",
  3665. "dependencies": {
  3666. "@babel/runtime": "^7.17.2",
  3667. "eventemitter3": "^4.0.7",
  3668. "uuid": "^8.3.2",
  3669. "ws": "^8.5.0"
  3670. },
  3671. "funding": {
  3672. "type": "paypal",
  3673. "url": "https://paypal.me/kozjak"
  3674. },
  3675. "optionalDependencies": {
  3676. "bufferutil": "^4.0.1",
  3677. "utf-8-validate": "^5.0.2"
  3678. }
  3679. },
  3680. "node_modules/rpc-websockets/node_modules/ws": {
  3681. "version": "8.16.0",
  3682. "license": "MIT",
  3683. "engines": {
  3684. "node": ">=10.0.0"
  3685. },
  3686. "peerDependencies": {
  3687. "bufferutil": "^4.0.1",
  3688. "utf-8-validate": ">=5.0.2"
  3689. },
  3690. "peerDependenciesMeta": {
  3691. "bufferutil": {
  3692. "optional": true
  3693. },
  3694. "utf-8-validate": {
  3695. "optional": true
  3696. }
  3697. }
  3698. },
  3699. "node_modules/safe-buffer": {
  3700. "version": "5.2.1",
  3701. "funding": [
  3702. {
  3703. "type": "github",
  3704. "url": "https://github.com/sponsors/feross"
  3705. },
  3706. {
  3707. "type": "patreon",
  3708. "url": "https://www.patreon.com/feross"
  3709. },
  3710. {
  3711. "type": "consulting",
  3712. "url": "https://feross.org/support"
  3713. }
  3714. ],
  3715. "license": "MIT"
  3716. },
  3717. "node_modules/safe-stable-stringify": {
  3718. "version": "2.4.3",
  3719. "license": "MIT",
  3720. "engines": {
  3721. "node": ">=10"
  3722. }
  3723. },
  3724. "node_modules/secure-json-parse": {
  3725. "version": "2.7.0",
  3726. "license": "BSD-3-Clause"
  3727. },
  3728. "node_modules/sha.js": {
  3729. "version": "2.4.11",
  3730. "license": "(MIT AND BSD-3-Clause)",
  3731. "dependencies": {
  3732. "inherits": "^2.0.1",
  3733. "safe-buffer": "^5.0.1"
  3734. },
  3735. "bin": {
  3736. "sha.js": "bin.js"
  3737. }
  3738. },
  3739. "node_modules/sonic-boom": {
  3740. "version": "3.8.0",
  3741. "license": "MIT",
  3742. "dependencies": {
  3743. "atomic-sleep": "^1.0.0"
  3744. }
  3745. },
  3746. "node_modules/split2": {
  3747. "version": "4.2.0",
  3748. "license": "ISC",
  3749. "engines": {
  3750. "node": ">= 10.x"
  3751. }
  3752. },
  3753. "node_modules/string_decoder": {
  3754. "version": "1.3.0",
  3755. "license": "MIT",
  3756. "dependencies": {
  3757. "safe-buffer": "~5.2.0"
  3758. }
  3759. },
  3760. "node_modules/strip-json-comments": {
  3761. "version": "3.1.1",
  3762. "license": "MIT",
  3763. "engines": {
  3764. "node": ">=8"
  3765. },
  3766. "funding": {
  3767. "url": "https://github.com/sponsors/sindresorhus"
  3768. }
  3769. },
  3770. "node_modules/superstruct": {
  3771. "version": "0.14.2",
  3772. "license": "MIT"
  3773. },
  3774. "node_modules/text-encoding-utf-8": {
  3775. "version": "1.0.2"
  3776. },
  3777. "node_modules/thread-stream": {
  3778. "version": "2.3.0",
  3779. "license": "MIT",
  3780. "dependencies": {
  3781. "real-require": "^0.2.0"
  3782. }
  3783. },
  3784. "node_modules/through": {
  3785. "version": "2.3.8",
  3786. "license": "MIT"
  3787. },
  3788. "node_modules/toformat": {
  3789. "version": "2.0.0",
  3790. "license": "MIT"
  3791. },
  3792. "node_modules/tr46": {
  3793. "version": "0.0.3",
  3794. "license": "MIT"
  3795. },
  3796. "node_modules/ts-node": {
  3797. "version": "10.9.2",
  3798. "dev": true,
  3799. "license": "MIT",
  3800. "dependencies": {
  3801. "@cspotcode/source-map-support": "^0.8.0",
  3802. "@tsconfig/node10": "^1.0.7",
  3803. "@tsconfig/node12": "^1.0.7",
  3804. "@tsconfig/node14": "^1.0.0",
  3805. "@tsconfig/node16": "^1.0.2",
  3806. "acorn": "^8.4.1",
  3807. "acorn-walk": "^8.1.1",
  3808. "arg": "^4.1.0",
  3809. "create-require": "^1.1.0",
  3810. "diff": "^4.0.1",
  3811. "make-error": "^1.1.1",
  3812. "v8-compile-cache-lib": "^3.0.1",
  3813. "yn": "3.1.1"
  3814. },
  3815. "bin": {
  3816. "ts-node": "dist/bin.js",
  3817. "ts-node-cwd": "dist/bin-cwd.js",
  3818. "ts-node-esm": "dist/bin-esm.js",
  3819. "ts-node-script": "dist/bin-script.js",
  3820. "ts-node-transpile-only": "dist/bin-transpile.js",
  3821. "ts-script": "dist/bin-script-deprecated.js"
  3822. },
  3823. "peerDependencies": {
  3824. "@swc/core": ">=1.2.50",
  3825. "@swc/wasm": ">=1.2.50",
  3826. "@types/node": "*",
  3827. "typescript": ">=2.7"
  3828. },
  3829. "peerDependenciesMeta": {
  3830. "@swc/core": {
  3831. "optional": true
  3832. },
  3833. "@swc/wasm": {
  3834. "optional": true
  3835. }
  3836. }
  3837. },
  3838. "node_modules/tslib": {
  3839. "version": "2.6.2",
  3840. "license": "0BSD"
  3841. },
  3842. "node_modules/tweetnacl": {
  3843. "version": "1.0.3",
  3844. "license": "Unlicense"
  3845. },
  3846. "node_modules/typescript": {
  3847. "version": "5.3.3",
  3848. "dev": true,
  3849. "license": "Apache-2.0",
  3850. "bin": {
  3851. "tsc": "bin/tsc",
  3852. "tsserver": "bin/tsserver"
  3853. },
  3854. "engines": {
  3855. "node": ">=14.17"
  3856. }
  3857. },
  3858. "node_modules/utf-8-validate": {
  3859. "version": "5.0.10",
  3860. "hasInstallScript": true,
  3861. "license": "MIT",
  3862. "optional": true,
  3863. "dependencies": {
  3864. "node-gyp-build": "^4.3.0"
  3865. },
  3866. "engines": {
  3867. "node": ">=6.14.2"
  3868. }
  3869. },
  3870. "node_modules/util-deprecate": {
  3871. "version": "1.0.2",
  3872. "license": "MIT"
  3873. },
  3874. "node_modules/uuid": {
  3875. "version": "8.3.2",
  3876. "license": "MIT",
  3877. "bin": {
  3878. "uuid": "dist/bin/uuid"
  3879. }
  3880. },
  3881. "node_modules/v8-compile-cache-lib": {
  3882. "version": "3.0.1",
  3883. "dev": true,
  3884. "license": "MIT"
  3885. },
  3886. "node_modules/webidl-conversions": {
  3887. "version": "3.0.1",
  3888. "license": "BSD-2-Clause"
  3889. },
  3890. "node_modules/whatwg-url": {
  3891. "version": "5.0.0",
  3892. "license": "MIT",
  3893. "dependencies": {
  3894. "tr46": "~0.0.3",
  3895. "webidl-conversions": "^3.0.0"
  3896. }
  3897. },
  3898. "node_modules/wrappy": {
  3899. "version": "1.0.2",
  3900. "license": "ISC"
  3901. },
  3902. "node_modules/ws": {
  3903. "version": "7.5.9",
  3904. "license": "MIT",
  3905. "engines": {
  3906. "node": ">=8.3.0"
  3907. },
  3908. "peerDependencies": {
  3909. "bufferutil": "^4.0.1",
  3910. "utf-8-validate": "^5.0.2"
  3911. },
  3912. "peerDependenciesMeta": {
  3913. "bufferutil": {
  3914. "optional": true
  3915. },
  3916. "utf-8-validate": {
  3917. "optional": true
  3918. }
  3919. }
  3920. },
  3921. "node_modules/yn": {
  3922. "version": "3.1.1",
  3923. "dev": true,
  3924. "license": "MIT",
  3925. "engines": {
  3926. "node": ">=6"
  3927. }
  3928. }
  3929. }
  3930. }