package-lock.json 97 KB

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