package-lock.json 140 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966
  1. {
  2. "name": "easyBlockchain",
  3. "lockfileVersion": 3,
  4. "requires": true,
  5. "packages": {
  6. "": {
  7. "dependencies": {
  8. "@nomicfoundation/hardhat-toolbox-mocha-ethers": "^3.0.0",
  9. "@openzeppelin/contracts": "^5.4.0",
  10. "hardhat": "^3.0.8"
  11. }
  12. },
  13. "node_modules/@adraffy/ens-normalize": {
  14. "version": "1.10.1",
  15. "resolved": "https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.10.1.tgz",
  16. "integrity": "sha512-96Z2IP3mYmF1Xg2cDm8f1gWGf/HUVedQ3FMifV4kG/PQ4yEP51xDtRAEfhVNt5f/uzpNkZHwWQuUcu6D6K+Ekw==",
  17. "license": "MIT",
  18. "peer": true
  19. },
  20. "node_modules/@esbuild/aix-ppc64": {
  21. "version": "0.25.11",
  22. "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.11.tgz",
  23. "integrity": "sha512-Xt1dOL13m8u0WE8iplx9Ibbm+hFAO0GsU2P34UNoDGvZYkY8ifSiy6Zuc1lYxfG7svWE2fzqCUmFp5HCn51gJg==",
  24. "cpu": [
  25. "ppc64"
  26. ],
  27. "license": "MIT",
  28. "optional": true,
  29. "os": [
  30. "aix"
  31. ],
  32. "engines": {
  33. "node": ">=18"
  34. }
  35. },
  36. "node_modules/@esbuild/android-arm": {
  37. "version": "0.25.11",
  38. "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.11.tgz",
  39. "integrity": "sha512-uoa7dU+Dt3HYsethkJ1k6Z9YdcHjTrSb5NUy66ZfZaSV8hEYGD5ZHbEMXnqLFlbBflLsl89Zke7CAdDJ4JI+Gg==",
  40. "cpu": [
  41. "arm"
  42. ],
  43. "license": "MIT",
  44. "optional": true,
  45. "os": [
  46. "android"
  47. ],
  48. "engines": {
  49. "node": ">=18"
  50. }
  51. },
  52. "node_modules/@esbuild/android-arm64": {
  53. "version": "0.25.11",
  54. "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.11.tgz",
  55. "integrity": "sha512-9slpyFBc4FPPz48+f6jyiXOx/Y4v34TUeDDXJpZqAWQn/08lKGeD8aDp9TMn9jDz2CiEuHwfhRmGBvpnd/PWIQ==",
  56. "cpu": [
  57. "arm64"
  58. ],
  59. "license": "MIT",
  60. "optional": true,
  61. "os": [
  62. "android"
  63. ],
  64. "engines": {
  65. "node": ">=18"
  66. }
  67. },
  68. "node_modules/@esbuild/android-x64": {
  69. "version": "0.25.11",
  70. "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.11.tgz",
  71. "integrity": "sha512-Sgiab4xBjPU1QoPEIqS3Xx+R2lezu0LKIEcYe6pftr56PqPygbB7+szVnzoShbx64MUupqoE0KyRlN7gezbl8g==",
  72. "cpu": [
  73. "x64"
  74. ],
  75. "license": "MIT",
  76. "optional": true,
  77. "os": [
  78. "android"
  79. ],
  80. "engines": {
  81. "node": ">=18"
  82. }
  83. },
  84. "node_modules/@esbuild/darwin-arm64": {
  85. "version": "0.25.11",
  86. "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.11.tgz",
  87. "integrity": "sha512-VekY0PBCukppoQrycFxUqkCojnTQhdec0vevUL/EDOCnXd9LKWqD/bHwMPzigIJXPhC59Vd1WFIL57SKs2mg4w==",
  88. "cpu": [
  89. "arm64"
  90. ],
  91. "license": "MIT",
  92. "optional": true,
  93. "os": [
  94. "darwin"
  95. ],
  96. "engines": {
  97. "node": ">=18"
  98. }
  99. },
  100. "node_modules/@esbuild/darwin-x64": {
  101. "version": "0.25.11",
  102. "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.11.tgz",
  103. "integrity": "sha512-+hfp3yfBalNEpTGp9loYgbknjR695HkqtY3d3/JjSRUyPg/xd6q+mQqIb5qdywnDxRZykIHs3axEqU6l1+oWEQ==",
  104. "cpu": [
  105. "x64"
  106. ],
  107. "license": "MIT",
  108. "optional": true,
  109. "os": [
  110. "darwin"
  111. ],
  112. "engines": {
  113. "node": ">=18"
  114. }
  115. },
  116. "node_modules/@esbuild/freebsd-arm64": {
  117. "version": "0.25.11",
  118. "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.11.tgz",
  119. "integrity": "sha512-CmKjrnayyTJF2eVuO//uSjl/K3KsMIeYeyN7FyDBjsR3lnSJHaXlVoAK8DZa7lXWChbuOk7NjAc7ygAwrnPBhA==",
  120. "cpu": [
  121. "arm64"
  122. ],
  123. "license": "MIT",
  124. "optional": true,
  125. "os": [
  126. "freebsd"
  127. ],
  128. "engines": {
  129. "node": ">=18"
  130. }
  131. },
  132. "node_modules/@esbuild/freebsd-x64": {
  133. "version": "0.25.11",
  134. "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.11.tgz",
  135. "integrity": "sha512-Dyq+5oscTJvMaYPvW3x3FLpi2+gSZTCE/1ffdwuM6G1ARang/mb3jvjxs0mw6n3Lsw84ocfo9CrNMqc5lTfGOw==",
  136. "cpu": [
  137. "x64"
  138. ],
  139. "license": "MIT",
  140. "optional": true,
  141. "os": [
  142. "freebsd"
  143. ],
  144. "engines": {
  145. "node": ">=18"
  146. }
  147. },
  148. "node_modules/@esbuild/linux-arm": {
  149. "version": "0.25.11",
  150. "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.11.tgz",
  151. "integrity": "sha512-TBMv6B4kCfrGJ8cUPo7vd6NECZH/8hPpBHHlYI3qzoYFvWu2AdTvZNuU/7hsbKWqu/COU7NIK12dHAAqBLLXgw==",
  152. "cpu": [
  153. "arm"
  154. ],
  155. "license": "MIT",
  156. "optional": true,
  157. "os": [
  158. "linux"
  159. ],
  160. "engines": {
  161. "node": ">=18"
  162. }
  163. },
  164. "node_modules/@esbuild/linux-arm64": {
  165. "version": "0.25.11",
  166. "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.11.tgz",
  167. "integrity": "sha512-Qr8AzcplUhGvdyUF08A1kHU3Vr2O88xxP0Tm8GcdVOUm25XYcMPp2YqSVHbLuXzYQMf9Bh/iKx7YPqECs6ffLA==",
  168. "cpu": [
  169. "arm64"
  170. ],
  171. "license": "MIT",
  172. "optional": true,
  173. "os": [
  174. "linux"
  175. ],
  176. "engines": {
  177. "node": ">=18"
  178. }
  179. },
  180. "node_modules/@esbuild/linux-ia32": {
  181. "version": "0.25.11",
  182. "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.11.tgz",
  183. "integrity": "sha512-TmnJg8BMGPehs5JKrCLqyWTVAvielc615jbkOirATQvWWB1NMXY77oLMzsUjRLa0+ngecEmDGqt5jiDC6bfvOw==",
  184. "cpu": [
  185. "ia32"
  186. ],
  187. "license": "MIT",
  188. "optional": true,
  189. "os": [
  190. "linux"
  191. ],
  192. "engines": {
  193. "node": ">=18"
  194. }
  195. },
  196. "node_modules/@esbuild/linux-loong64": {
  197. "version": "0.25.11",
  198. "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.11.tgz",
  199. "integrity": "sha512-DIGXL2+gvDaXlaq8xruNXUJdT5tF+SBbJQKbWy/0J7OhU8gOHOzKmGIlfTTl6nHaCOoipxQbuJi7O++ldrxgMw==",
  200. "cpu": [
  201. "loong64"
  202. ],
  203. "license": "MIT",
  204. "optional": true,
  205. "os": [
  206. "linux"
  207. ],
  208. "engines": {
  209. "node": ">=18"
  210. }
  211. },
  212. "node_modules/@esbuild/linux-mips64el": {
  213. "version": "0.25.11",
  214. "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.11.tgz",
  215. "integrity": "sha512-Osx1nALUJu4pU43o9OyjSCXokFkFbyzjXb6VhGIJZQ5JZi8ylCQ9/LFagolPsHtgw6himDSyb5ETSfmp4rpiKQ==",
  216. "cpu": [
  217. "mips64el"
  218. ],
  219. "license": "MIT",
  220. "optional": true,
  221. "os": [
  222. "linux"
  223. ],
  224. "engines": {
  225. "node": ">=18"
  226. }
  227. },
  228. "node_modules/@esbuild/linux-ppc64": {
  229. "version": "0.25.11",
  230. "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.11.tgz",
  231. "integrity": "sha512-nbLFgsQQEsBa8XSgSTSlrnBSrpoWh7ioFDUmwo158gIm5NNP+17IYmNWzaIzWmgCxq56vfr34xGkOcZ7jX6CPw==",
  232. "cpu": [
  233. "ppc64"
  234. ],
  235. "license": "MIT",
  236. "optional": true,
  237. "os": [
  238. "linux"
  239. ],
  240. "engines": {
  241. "node": ">=18"
  242. }
  243. },
  244. "node_modules/@esbuild/linux-riscv64": {
  245. "version": "0.25.11",
  246. "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.11.tgz",
  247. "integrity": "sha512-HfyAmqZi9uBAbgKYP1yGuI7tSREXwIb438q0nqvlpxAOs3XnZ8RsisRfmVsgV486NdjD7Mw2UrFSw51lzUk1ww==",
  248. "cpu": [
  249. "riscv64"
  250. ],
  251. "license": "MIT",
  252. "optional": true,
  253. "os": [
  254. "linux"
  255. ],
  256. "engines": {
  257. "node": ">=18"
  258. }
  259. },
  260. "node_modules/@esbuild/linux-s390x": {
  261. "version": "0.25.11",
  262. "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.11.tgz",
  263. "integrity": "sha512-HjLqVgSSYnVXRisyfmzsH6mXqyvj0SA7pG5g+9W7ESgwA70AXYNpfKBqh1KbTxmQVaYxpzA/SvlB9oclGPbApw==",
  264. "cpu": [
  265. "s390x"
  266. ],
  267. "license": "MIT",
  268. "optional": true,
  269. "os": [
  270. "linux"
  271. ],
  272. "engines": {
  273. "node": ">=18"
  274. }
  275. },
  276. "node_modules/@esbuild/linux-x64": {
  277. "version": "0.25.11",
  278. "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.11.tgz",
  279. "integrity": "sha512-HSFAT4+WYjIhrHxKBwGmOOSpphjYkcswF449j6EjsjbinTZbp8PJtjsVK1XFJStdzXdy/jaddAep2FGY+wyFAQ==",
  280. "cpu": [
  281. "x64"
  282. ],
  283. "license": "MIT",
  284. "optional": true,
  285. "os": [
  286. "linux"
  287. ],
  288. "engines": {
  289. "node": ">=18"
  290. }
  291. },
  292. "node_modules/@esbuild/netbsd-arm64": {
  293. "version": "0.25.11",
  294. "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.11.tgz",
  295. "integrity": "sha512-hr9Oxj1Fa4r04dNpWr3P8QKVVsjQhqrMSUzZzf+LZcYjZNqhA3IAfPQdEh1FLVUJSiu6sgAwp3OmwBfbFgG2Xg==",
  296. "cpu": [
  297. "arm64"
  298. ],
  299. "license": "MIT",
  300. "optional": true,
  301. "os": [
  302. "netbsd"
  303. ],
  304. "engines": {
  305. "node": ">=18"
  306. }
  307. },
  308. "node_modules/@esbuild/netbsd-x64": {
  309. "version": "0.25.11",
  310. "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.11.tgz",
  311. "integrity": "sha512-u7tKA+qbzBydyj0vgpu+5h5AeudxOAGncb8N6C9Kh1N4n7wU1Xw1JDApsRjpShRpXRQlJLb9wY28ELpwdPcZ7A==",
  312. "cpu": [
  313. "x64"
  314. ],
  315. "license": "MIT",
  316. "optional": true,
  317. "os": [
  318. "netbsd"
  319. ],
  320. "engines": {
  321. "node": ">=18"
  322. }
  323. },
  324. "node_modules/@esbuild/openbsd-arm64": {
  325. "version": "0.25.11",
  326. "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.11.tgz",
  327. "integrity": "sha512-Qq6YHhayieor3DxFOoYM1q0q1uMFYb7cSpLD2qzDSvK1NAvqFi8Xgivv0cFC6J+hWVw2teCYltyy9/m/14ryHg==",
  328. "cpu": [
  329. "arm64"
  330. ],
  331. "license": "MIT",
  332. "optional": true,
  333. "os": [
  334. "openbsd"
  335. ],
  336. "engines": {
  337. "node": ">=18"
  338. }
  339. },
  340. "node_modules/@esbuild/openbsd-x64": {
  341. "version": "0.25.11",
  342. "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.11.tgz",
  343. "integrity": "sha512-CN+7c++kkbrckTOz5hrehxWN7uIhFFlmS/hqziSFVWpAzpWrQoAG4chH+nN3Be+Kzv/uuo7zhX716x3Sn2Jduw==",
  344. "cpu": [
  345. "x64"
  346. ],
  347. "license": "MIT",
  348. "optional": true,
  349. "os": [
  350. "openbsd"
  351. ],
  352. "engines": {
  353. "node": ">=18"
  354. }
  355. },
  356. "node_modules/@esbuild/openharmony-arm64": {
  357. "version": "0.25.11",
  358. "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.11.tgz",
  359. "integrity": "sha512-rOREuNIQgaiR+9QuNkbkxubbp8MSO9rONmwP5nKncnWJ9v5jQ4JxFnLu4zDSRPf3x4u+2VN4pM4RdyIzDty/wQ==",
  360. "cpu": [
  361. "arm64"
  362. ],
  363. "license": "MIT",
  364. "optional": true,
  365. "os": [
  366. "openharmony"
  367. ],
  368. "engines": {
  369. "node": ">=18"
  370. }
  371. },
  372. "node_modules/@esbuild/sunos-x64": {
  373. "version": "0.25.11",
  374. "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.11.tgz",
  375. "integrity": "sha512-nq2xdYaWxyg9DcIyXkZhcYulC6pQ2FuCgem3LI92IwMgIZ69KHeY8T4Y88pcwoLIjbed8n36CyKoYRDygNSGhA==",
  376. "cpu": [
  377. "x64"
  378. ],
  379. "license": "MIT",
  380. "optional": true,
  381. "os": [
  382. "sunos"
  383. ],
  384. "engines": {
  385. "node": ">=18"
  386. }
  387. },
  388. "node_modules/@esbuild/win32-arm64": {
  389. "version": "0.25.11",
  390. "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.11.tgz",
  391. "integrity": "sha512-3XxECOWJq1qMZ3MN8srCJ/QfoLpL+VaxD/WfNRm1O3B4+AZ/BnLVgFbUV3eiRYDMXetciH16dwPbbHqwe1uU0Q==",
  392. "cpu": [
  393. "arm64"
  394. ],
  395. "license": "MIT",
  396. "optional": true,
  397. "os": [
  398. "win32"
  399. ],
  400. "engines": {
  401. "node": ">=18"
  402. }
  403. },
  404. "node_modules/@esbuild/win32-ia32": {
  405. "version": "0.25.11",
  406. "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.11.tgz",
  407. "integrity": "sha512-3ukss6gb9XZ8TlRyJlgLn17ecsK4NSQTmdIXRASVsiS2sQ6zPPZklNJT5GR5tE/MUarymmy8kCEf5xPCNCqVOA==",
  408. "cpu": [
  409. "ia32"
  410. ],
  411. "license": "MIT",
  412. "optional": true,
  413. "os": [
  414. "win32"
  415. ],
  416. "engines": {
  417. "node": ">=18"
  418. }
  419. },
  420. "node_modules/@esbuild/win32-x64": {
  421. "version": "0.25.11",
  422. "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.11.tgz",
  423. "integrity": "sha512-D7Hpz6A2L4hzsRpPaCYkQnGOotdUpDzSGRIv9I+1ITdHROSFUWW95ZPZWQmGka1Fg7W3zFJowyn9WGwMJ0+KPA==",
  424. "cpu": [
  425. "x64"
  426. ],
  427. "license": "MIT",
  428. "optional": true,
  429. "os": [
  430. "win32"
  431. ],
  432. "engines": {
  433. "node": ">=18"
  434. }
  435. },
  436. "node_modules/@ethersproject/abi": {
  437. "version": "5.8.0",
  438. "resolved": "https://registry.npmjs.org/@ethersproject/abi/-/abi-5.8.0.tgz",
  439. "integrity": "sha512-b9YS/43ObplgyV6SlyQsG53/vkSal0MNA1fskSC4mbnCMi8R+NkcH8K9FPYNESf6jUefBUniE4SOKms0E/KK1Q==",
  440. "funding": [
  441. {
  442. "type": "individual",
  443. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  444. },
  445. {
  446. "type": "individual",
  447. "url": "https://www.buymeacoffee.com/ricmoo"
  448. }
  449. ],
  450. "license": "MIT",
  451. "peer": true,
  452. "dependencies": {
  453. "@ethersproject/address": "^5.8.0",
  454. "@ethersproject/bignumber": "^5.8.0",
  455. "@ethersproject/bytes": "^5.8.0",
  456. "@ethersproject/constants": "^5.8.0",
  457. "@ethersproject/hash": "^5.8.0",
  458. "@ethersproject/keccak256": "^5.8.0",
  459. "@ethersproject/logger": "^5.8.0",
  460. "@ethersproject/properties": "^5.8.0",
  461. "@ethersproject/strings": "^5.8.0"
  462. }
  463. },
  464. "node_modules/@ethersproject/abstract-provider": {
  465. "version": "5.8.0",
  466. "resolved": "https://registry.npmjs.org/@ethersproject/abstract-provider/-/abstract-provider-5.8.0.tgz",
  467. "integrity": "sha512-wC9SFcmh4UK0oKuLJQItoQdzS/qZ51EJegK6EmAWlh+OptpQ/npECOR3QqECd8iGHC0RJb4WKbVdSfif4ammrg==",
  468. "funding": [
  469. {
  470. "type": "individual",
  471. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  472. },
  473. {
  474. "type": "individual",
  475. "url": "https://www.buymeacoffee.com/ricmoo"
  476. }
  477. ],
  478. "license": "MIT",
  479. "peer": true,
  480. "dependencies": {
  481. "@ethersproject/bignumber": "^5.8.0",
  482. "@ethersproject/bytes": "^5.8.0",
  483. "@ethersproject/logger": "^5.8.0",
  484. "@ethersproject/networks": "^5.8.0",
  485. "@ethersproject/properties": "^5.8.0",
  486. "@ethersproject/transactions": "^5.8.0",
  487. "@ethersproject/web": "^5.8.0"
  488. }
  489. },
  490. "node_modules/@ethersproject/abstract-signer": {
  491. "version": "5.8.0",
  492. "resolved": "https://registry.npmjs.org/@ethersproject/abstract-signer/-/abstract-signer-5.8.0.tgz",
  493. "integrity": "sha512-N0XhZTswXcmIZQdYtUnd79VJzvEwXQw6PK0dTl9VoYrEBxxCPXqS0Eod7q5TNKRxe1/5WUMuR0u0nqTF/avdCA==",
  494. "funding": [
  495. {
  496. "type": "individual",
  497. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  498. },
  499. {
  500. "type": "individual",
  501. "url": "https://www.buymeacoffee.com/ricmoo"
  502. }
  503. ],
  504. "license": "MIT",
  505. "peer": true,
  506. "dependencies": {
  507. "@ethersproject/abstract-provider": "^5.8.0",
  508. "@ethersproject/bignumber": "^5.8.0",
  509. "@ethersproject/bytes": "^5.8.0",
  510. "@ethersproject/logger": "^5.8.0",
  511. "@ethersproject/properties": "^5.8.0"
  512. }
  513. },
  514. "node_modules/@ethersproject/address": {
  515. "version": "5.8.0",
  516. "resolved": "https://registry.npmjs.org/@ethersproject/address/-/address-5.8.0.tgz",
  517. "integrity": "sha512-GhH/abcC46LJwshoN+uBNoKVFPxUuZm6dA257z0vZkKmU1+t8xTn8oK7B9qrj8W2rFRMch4gbJl6PmVxjxBEBA==",
  518. "funding": [
  519. {
  520. "type": "individual",
  521. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  522. },
  523. {
  524. "type": "individual",
  525. "url": "https://www.buymeacoffee.com/ricmoo"
  526. }
  527. ],
  528. "license": "MIT",
  529. "peer": true,
  530. "dependencies": {
  531. "@ethersproject/bignumber": "^5.8.0",
  532. "@ethersproject/bytes": "^5.8.0",
  533. "@ethersproject/keccak256": "^5.8.0",
  534. "@ethersproject/logger": "^5.8.0",
  535. "@ethersproject/rlp": "^5.8.0"
  536. }
  537. },
  538. "node_modules/@ethersproject/base64": {
  539. "version": "5.8.0",
  540. "resolved": "https://registry.npmjs.org/@ethersproject/base64/-/base64-5.8.0.tgz",
  541. "integrity": "sha512-lN0oIwfkYj9LbPx4xEkie6rAMJtySbpOAFXSDVQaBnAzYfB4X2Qr+FXJGxMoc3Bxp2Sm8OwvzMrywxyw0gLjIQ==",
  542. "funding": [
  543. {
  544. "type": "individual",
  545. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  546. },
  547. {
  548. "type": "individual",
  549. "url": "https://www.buymeacoffee.com/ricmoo"
  550. }
  551. ],
  552. "license": "MIT",
  553. "peer": true,
  554. "dependencies": {
  555. "@ethersproject/bytes": "^5.8.0"
  556. }
  557. },
  558. "node_modules/@ethersproject/bignumber": {
  559. "version": "5.8.0",
  560. "resolved": "https://registry.npmjs.org/@ethersproject/bignumber/-/bignumber-5.8.0.tgz",
  561. "integrity": "sha512-ZyaT24bHaSeJon2tGPKIiHszWjD/54Sz8t57Toch475lCLljC6MgPmxk7Gtzz+ddNN5LuHea9qhAe0x3D+uYPA==",
  562. "funding": [
  563. {
  564. "type": "individual",
  565. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  566. },
  567. {
  568. "type": "individual",
  569. "url": "https://www.buymeacoffee.com/ricmoo"
  570. }
  571. ],
  572. "license": "MIT",
  573. "peer": true,
  574. "dependencies": {
  575. "@ethersproject/bytes": "^5.8.0",
  576. "@ethersproject/logger": "^5.8.0",
  577. "bn.js": "^5.2.1"
  578. }
  579. },
  580. "node_modules/@ethersproject/bytes": {
  581. "version": "5.8.0",
  582. "resolved": "https://registry.npmjs.org/@ethersproject/bytes/-/bytes-5.8.0.tgz",
  583. "integrity": "sha512-vTkeohgJVCPVHu5c25XWaWQOZ4v+DkGoC42/TS2ond+PARCxTJvgTFUNDZovyQ/uAQ4EcpqqowKydcdmRKjg7A==",
  584. "funding": [
  585. {
  586. "type": "individual",
  587. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  588. },
  589. {
  590. "type": "individual",
  591. "url": "https://www.buymeacoffee.com/ricmoo"
  592. }
  593. ],
  594. "license": "MIT",
  595. "peer": true,
  596. "dependencies": {
  597. "@ethersproject/logger": "^5.8.0"
  598. }
  599. },
  600. "node_modules/@ethersproject/constants": {
  601. "version": "5.8.0",
  602. "resolved": "https://registry.npmjs.org/@ethersproject/constants/-/constants-5.8.0.tgz",
  603. "integrity": "sha512-wigX4lrf5Vu+axVTIvNsuL6YrV4O5AXl5ubcURKMEME5TnWBouUh0CDTWxZ2GpnRn1kcCgE7l8O5+VbV9QTTcg==",
  604. "funding": [
  605. {
  606. "type": "individual",
  607. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  608. },
  609. {
  610. "type": "individual",
  611. "url": "https://www.buymeacoffee.com/ricmoo"
  612. }
  613. ],
  614. "license": "MIT",
  615. "peer": true,
  616. "dependencies": {
  617. "@ethersproject/bignumber": "^5.8.0"
  618. }
  619. },
  620. "node_modules/@ethersproject/hash": {
  621. "version": "5.8.0",
  622. "resolved": "https://registry.npmjs.org/@ethersproject/hash/-/hash-5.8.0.tgz",
  623. "integrity": "sha512-ac/lBcTbEWW/VGJij0CNSw/wPcw9bSRgCB0AIBz8CvED/jfvDoV9hsIIiWfvWmFEi8RcXtlNwp2jv6ozWOsooA==",
  624. "funding": [
  625. {
  626. "type": "individual",
  627. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  628. },
  629. {
  630. "type": "individual",
  631. "url": "https://www.buymeacoffee.com/ricmoo"
  632. }
  633. ],
  634. "license": "MIT",
  635. "peer": true,
  636. "dependencies": {
  637. "@ethersproject/abstract-signer": "^5.8.0",
  638. "@ethersproject/address": "^5.8.0",
  639. "@ethersproject/base64": "^5.8.0",
  640. "@ethersproject/bignumber": "^5.8.0",
  641. "@ethersproject/bytes": "^5.8.0",
  642. "@ethersproject/keccak256": "^5.8.0",
  643. "@ethersproject/logger": "^5.8.0",
  644. "@ethersproject/properties": "^5.8.0",
  645. "@ethersproject/strings": "^5.8.0"
  646. }
  647. },
  648. "node_modules/@ethersproject/keccak256": {
  649. "version": "5.8.0",
  650. "resolved": "https://registry.npmjs.org/@ethersproject/keccak256/-/keccak256-5.8.0.tgz",
  651. "integrity": "sha512-A1pkKLZSz8pDaQ1ftutZoaN46I6+jvuqugx5KYNeQOPqq+JZ0Txm7dlWesCHB5cndJSu5vP2VKptKf7cksERng==",
  652. "funding": [
  653. {
  654. "type": "individual",
  655. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  656. },
  657. {
  658. "type": "individual",
  659. "url": "https://www.buymeacoffee.com/ricmoo"
  660. }
  661. ],
  662. "license": "MIT",
  663. "peer": true,
  664. "dependencies": {
  665. "@ethersproject/bytes": "^5.8.0",
  666. "js-sha3": "0.8.0"
  667. }
  668. },
  669. "node_modules/@ethersproject/logger": {
  670. "version": "5.8.0",
  671. "resolved": "https://registry.npmjs.org/@ethersproject/logger/-/logger-5.8.0.tgz",
  672. "integrity": "sha512-Qe6knGmY+zPPWTC+wQrpitodgBfH7XoceCGL5bJVejmH+yCS3R8jJm8iiWuvWbG76RUmyEG53oqv6GMVWqunjA==",
  673. "funding": [
  674. {
  675. "type": "individual",
  676. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  677. },
  678. {
  679. "type": "individual",
  680. "url": "https://www.buymeacoffee.com/ricmoo"
  681. }
  682. ],
  683. "license": "MIT",
  684. "peer": true
  685. },
  686. "node_modules/@ethersproject/networks": {
  687. "version": "5.8.0",
  688. "resolved": "https://registry.npmjs.org/@ethersproject/networks/-/networks-5.8.0.tgz",
  689. "integrity": "sha512-egPJh3aPVAzbHwq8DD7Po53J4OUSsA1MjQp8Vf/OZPav5rlmWUaFLiq8cvQiGK0Z5K6LYzm29+VA/p4RL1FzNg==",
  690. "funding": [
  691. {
  692. "type": "individual",
  693. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  694. },
  695. {
  696. "type": "individual",
  697. "url": "https://www.buymeacoffee.com/ricmoo"
  698. }
  699. ],
  700. "license": "MIT",
  701. "peer": true,
  702. "dependencies": {
  703. "@ethersproject/logger": "^5.8.0"
  704. }
  705. },
  706. "node_modules/@ethersproject/properties": {
  707. "version": "5.8.0",
  708. "resolved": "https://registry.npmjs.org/@ethersproject/properties/-/properties-5.8.0.tgz",
  709. "integrity": "sha512-PYuiEoQ+FMaZZNGrStmN7+lWjlsoufGIHdww7454FIaGdbe/p5rnaCXTr5MtBYl3NkeoVhHZuyzChPeGeKIpQw==",
  710. "funding": [
  711. {
  712. "type": "individual",
  713. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  714. },
  715. {
  716. "type": "individual",
  717. "url": "https://www.buymeacoffee.com/ricmoo"
  718. }
  719. ],
  720. "license": "MIT",
  721. "peer": true,
  722. "dependencies": {
  723. "@ethersproject/logger": "^5.8.0"
  724. }
  725. },
  726. "node_modules/@ethersproject/rlp": {
  727. "version": "5.8.0",
  728. "resolved": "https://registry.npmjs.org/@ethersproject/rlp/-/rlp-5.8.0.tgz",
  729. "integrity": "sha512-LqZgAznqDbiEunaUvykH2JAoXTT9NV0Atqk8rQN9nx9SEgThA/WMx5DnW8a9FOufo//6FZOCHZ+XiClzgbqV9Q==",
  730. "funding": [
  731. {
  732. "type": "individual",
  733. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  734. },
  735. {
  736. "type": "individual",
  737. "url": "https://www.buymeacoffee.com/ricmoo"
  738. }
  739. ],
  740. "license": "MIT",
  741. "peer": true,
  742. "dependencies": {
  743. "@ethersproject/bytes": "^5.8.0",
  744. "@ethersproject/logger": "^5.8.0"
  745. }
  746. },
  747. "node_modules/@ethersproject/signing-key": {
  748. "version": "5.8.0",
  749. "resolved": "https://registry.npmjs.org/@ethersproject/signing-key/-/signing-key-5.8.0.tgz",
  750. "integrity": "sha512-LrPW2ZxoigFi6U6aVkFN/fa9Yx/+4AtIUe4/HACTvKJdhm0eeb107EVCIQcrLZkxaSIgc/eCrX8Q1GtbH+9n3w==",
  751. "funding": [
  752. {
  753. "type": "individual",
  754. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  755. },
  756. {
  757. "type": "individual",
  758. "url": "https://www.buymeacoffee.com/ricmoo"
  759. }
  760. ],
  761. "license": "MIT",
  762. "peer": true,
  763. "dependencies": {
  764. "@ethersproject/bytes": "^5.8.0",
  765. "@ethersproject/logger": "^5.8.0",
  766. "@ethersproject/properties": "^5.8.0",
  767. "bn.js": "^5.2.1",
  768. "elliptic": "6.6.1",
  769. "hash.js": "1.1.7"
  770. }
  771. },
  772. "node_modules/@ethersproject/strings": {
  773. "version": "5.8.0",
  774. "resolved": "https://registry.npmjs.org/@ethersproject/strings/-/strings-5.8.0.tgz",
  775. "integrity": "sha512-qWEAk0MAvl0LszjdfnZ2uC8xbR2wdv4cDabyHiBh3Cldq/T8dPH3V4BbBsAYJUeonwD+8afVXld274Ls+Y1xXg==",
  776. "funding": [
  777. {
  778. "type": "individual",
  779. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  780. },
  781. {
  782. "type": "individual",
  783. "url": "https://www.buymeacoffee.com/ricmoo"
  784. }
  785. ],
  786. "license": "MIT",
  787. "peer": true,
  788. "dependencies": {
  789. "@ethersproject/bytes": "^5.8.0",
  790. "@ethersproject/constants": "^5.8.0",
  791. "@ethersproject/logger": "^5.8.0"
  792. }
  793. },
  794. "node_modules/@ethersproject/transactions": {
  795. "version": "5.8.0",
  796. "resolved": "https://registry.npmjs.org/@ethersproject/transactions/-/transactions-5.8.0.tgz",
  797. "integrity": "sha512-UglxSDjByHG0TuU17bDfCemZ3AnKO2vYrL5/2n2oXvKzvb7Cz+W9gOWXKARjp2URVwcWlQlPOEQyAviKwT4AHg==",
  798. "funding": [
  799. {
  800. "type": "individual",
  801. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  802. },
  803. {
  804. "type": "individual",
  805. "url": "https://www.buymeacoffee.com/ricmoo"
  806. }
  807. ],
  808. "license": "MIT",
  809. "peer": true,
  810. "dependencies": {
  811. "@ethersproject/address": "^5.8.0",
  812. "@ethersproject/bignumber": "^5.8.0",
  813. "@ethersproject/bytes": "^5.8.0",
  814. "@ethersproject/constants": "^5.8.0",
  815. "@ethersproject/keccak256": "^5.8.0",
  816. "@ethersproject/logger": "^5.8.0",
  817. "@ethersproject/properties": "^5.8.0",
  818. "@ethersproject/rlp": "^5.8.0",
  819. "@ethersproject/signing-key": "^5.8.0"
  820. }
  821. },
  822. "node_modules/@ethersproject/web": {
  823. "version": "5.8.0",
  824. "resolved": "https://registry.npmjs.org/@ethersproject/web/-/web-5.8.0.tgz",
  825. "integrity": "sha512-j7+Ksi/9KfGviws6Qtf9Q7KCqRhpwrYKQPs+JBA/rKVFF/yaWLHJEH3zfVP2plVu+eys0d2DlFmhoQJayFewcw==",
  826. "funding": [
  827. {
  828. "type": "individual",
  829. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  830. },
  831. {
  832. "type": "individual",
  833. "url": "https://www.buymeacoffee.com/ricmoo"
  834. }
  835. ],
  836. "license": "MIT",
  837. "peer": true,
  838. "dependencies": {
  839. "@ethersproject/base64": "^5.8.0",
  840. "@ethersproject/bytes": "^5.8.0",
  841. "@ethersproject/logger": "^5.8.0",
  842. "@ethersproject/properties": "^5.8.0",
  843. "@ethersproject/strings": "^5.8.0"
  844. }
  845. },
  846. "node_modules/@isaacs/cliui": {
  847. "version": "8.0.2",
  848. "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
  849. "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
  850. "license": "ISC",
  851. "peer": true,
  852. "dependencies": {
  853. "string-width": "^5.1.2",
  854. "string-width-cjs": "npm:string-width@^4.2.0",
  855. "strip-ansi": "^7.0.1",
  856. "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
  857. "wrap-ansi": "^8.1.0",
  858. "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
  859. },
  860. "engines": {
  861. "node": ">=12"
  862. }
  863. },
  864. "node_modules/@isaacs/cliui/node_modules/ansi-regex": {
  865. "version": "6.2.2",
  866. "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz",
  867. "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==",
  868. "license": "MIT",
  869. "peer": true,
  870. "engines": {
  871. "node": ">=12"
  872. },
  873. "funding": {
  874. "url": "https://github.com/chalk/ansi-regex?sponsor=1"
  875. }
  876. },
  877. "node_modules/@isaacs/cliui/node_modules/strip-ansi": {
  878. "version": "7.1.2",
  879. "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.2.tgz",
  880. "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==",
  881. "license": "MIT",
  882. "peer": true,
  883. "dependencies": {
  884. "ansi-regex": "^6.0.1"
  885. },
  886. "engines": {
  887. "node": ">=12"
  888. },
  889. "funding": {
  890. "url": "https://github.com/chalk/strip-ansi?sponsor=1"
  891. }
  892. },
  893. "node_modules/@noble/ciphers": {
  894. "version": "1.2.1",
  895. "resolved": "https://registry.npmjs.org/@noble/ciphers/-/ciphers-1.2.1.tgz",
  896. "integrity": "sha512-rONPWMC7PeExE077uLE4oqWrZ1IvAfz3oH9LibVAcVCopJiA9R62uavnbEzdkVmJYI6M6Zgkbeb07+tWjlq2XA==",
  897. "license": "MIT",
  898. "peer": true,
  899. "engines": {
  900. "node": "^14.21.3 || >=16"
  901. },
  902. "funding": {
  903. "url": "https://paulmillr.com/funding/"
  904. }
  905. },
  906. "node_modules/@noble/curves": {
  907. "version": "1.4.2",
  908. "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.4.2.tgz",
  909. "integrity": "sha512-TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw==",
  910. "license": "MIT",
  911. "dependencies": {
  912. "@noble/hashes": "1.4.0"
  913. },
  914. "funding": {
  915. "url": "https://paulmillr.com/funding/"
  916. }
  917. },
  918. "node_modules/@noble/hashes": {
  919. "version": "1.4.0",
  920. "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.4.0.tgz",
  921. "integrity": "sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==",
  922. "license": "MIT",
  923. "engines": {
  924. "node": ">= 16"
  925. },
  926. "funding": {
  927. "url": "https://paulmillr.com/funding/"
  928. }
  929. },
  930. "node_modules/@nomicfoundation/edr": {
  931. "version": "0.12.0-next.7",
  932. "resolved": "https://registry.npmjs.org/@nomicfoundation/edr/-/edr-0.12.0-next.7.tgz",
  933. "integrity": "sha512-w8blgst1EHXuvjYNSEkTYRFNiqYWi7T2+OurJasQI8W+uOYKeIFY5m9GPTwbMgeS+5Q/8QW1vLyxiR8RDHEvqA==",
  934. "license": "MIT",
  935. "engines": {
  936. "node": ">= 20"
  937. },
  938. "optionalDependencies": {
  939. "@nomicfoundation/edr-darwin-arm64": "0.12.0-next.7",
  940. "@nomicfoundation/edr-darwin-x64": "0.12.0-next.7",
  941. "@nomicfoundation/edr-linux-arm64-gnu": "0.12.0-next.7",
  942. "@nomicfoundation/edr-linux-arm64-musl": "0.12.0-next.7",
  943. "@nomicfoundation/edr-linux-x64-gnu": "0.12.0-next.7",
  944. "@nomicfoundation/edr-linux-x64-musl": "0.12.0-next.7",
  945. "@nomicfoundation/edr-win32-x64-msvc": "0.12.0-next.7"
  946. }
  947. },
  948. "node_modules/@nomicfoundation/edr-darwin-arm64": {
  949. "version": "0.12.0-next.7",
  950. "resolved": "https://registry.npmjs.org/@nomicfoundation/edr-darwin-arm64/-/edr-darwin-arm64-0.12.0-next.7.tgz",
  951. "integrity": "sha512-i3TVHIqZJAXqUh3nR9rlAx/fUrWQDXRtJhEtM9ZwgmKQMYO5+QmcmcA58qo/Yw3xb44hOk1TX9JgSkpjCIhgaQ==",
  952. "license": "MIT",
  953. "optional": true,
  954. "engines": {
  955. "node": ">= 18"
  956. }
  957. },
  958. "node_modules/@nomicfoundation/edr-darwin-x64": {
  959. "version": "0.12.0-next.7",
  960. "resolved": "https://registry.npmjs.org/@nomicfoundation/edr-darwin-x64/-/edr-darwin-x64-0.12.0-next.7.tgz",
  961. "integrity": "sha512-vvoBA5nowhd56iPbDtDsIq+ZBHHWP4pwUC34zi0Eq7SSofll7MVm6KKYcEPrUsrjPtCWqswv6dnuuVJYS8U+kg==",
  962. "license": "MIT",
  963. "optional": true,
  964. "engines": {
  965. "node": ">= 18"
  966. }
  967. },
  968. "node_modules/@nomicfoundation/edr-linux-arm64-gnu": {
  969. "version": "0.12.0-next.7",
  970. "resolved": "https://registry.npmjs.org/@nomicfoundation/edr-linux-arm64-gnu/-/edr-linux-arm64-gnu-0.12.0-next.7.tgz",
  971. "integrity": "sha512-pXzAYhcVR+3udnylfNk4q/YUOMthhozUB/KxMV6V2oXX3X/SujB03m8JnoeUKsqVIVILbN9PVYz3V6rCjZg84g==",
  972. "license": "MIT",
  973. "optional": true,
  974. "engines": {
  975. "node": ">= 18"
  976. }
  977. },
  978. "node_modules/@nomicfoundation/edr-linux-arm64-musl": {
  979. "version": "0.12.0-next.7",
  980. "resolved": "https://registry.npmjs.org/@nomicfoundation/edr-linux-arm64-musl/-/edr-linux-arm64-musl-0.12.0-next.7.tgz",
  981. "integrity": "sha512-Ny463r0bZ97hfvCBpPZieDpPCuq9RXk3vrCTjCa8uHg+Tu8Prx3MvutbP1lJi5klO5qPVot+aikBgVZ+D0dG2g==",
  982. "license": "MIT",
  983. "optional": true,
  984. "engines": {
  985. "node": ">= 18"
  986. }
  987. },
  988. "node_modules/@nomicfoundation/edr-linux-x64-gnu": {
  989. "version": "0.12.0-next.7",
  990. "resolved": "https://registry.npmjs.org/@nomicfoundation/edr-linux-x64-gnu/-/edr-linux-x64-gnu-0.12.0-next.7.tgz",
  991. "integrity": "sha512-ST676U0TDc1Jh6U237a/NgcoxOh828T5+zrVNz7IENdMw6liZ4F/ubBZc+3MVtOqPFzPpIItz02DDjr+KhEISw==",
  992. "license": "MIT",
  993. "optional": true,
  994. "engines": {
  995. "node": ">= 18"
  996. }
  997. },
  998. "node_modules/@nomicfoundation/edr-linux-x64-musl": {
  999. "version": "0.12.0-next.7",
  1000. "resolved": "https://registry.npmjs.org/@nomicfoundation/edr-linux-x64-musl/-/edr-linux-x64-musl-0.12.0-next.7.tgz",
  1001. "integrity": "sha512-wCPFuf6bHH34fM0lClHuUoH57hJW/Rwh1TB0MqlZaiMhxPxdwVws28bAm4Rxr3OO7qNFn89pvG4yOhBcEqPdDg==",
  1002. "license": "MIT",
  1003. "optional": true,
  1004. "engines": {
  1005. "node": ">= 18"
  1006. }
  1007. },
  1008. "node_modules/@nomicfoundation/edr-win32-x64-msvc": {
  1009. "version": "0.12.0-next.7",
  1010. "resolved": "https://registry.npmjs.org/@nomicfoundation/edr-win32-x64-msvc/-/edr-win32-x64-msvc-0.12.0-next.7.tgz",
  1011. "integrity": "sha512-nhyPbpnKoZcKRsAciE4DNF0IDltBh7cuAgWGdtJt/TTwQcWTYdEeb6iYRlXGI9eUsFdhrnvwIRN7bKfkOBDbCQ==",
  1012. "license": "MIT",
  1013. "optional": true,
  1014. "engines": {
  1015. "node": ">= 18"
  1016. }
  1017. },
  1018. "node_modules/@nomicfoundation/hardhat-errors": {
  1019. "version": "3.0.3",
  1020. "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-errors/-/hardhat-errors-3.0.3.tgz",
  1021. "integrity": "sha512-qvVIyNE5yXFdwCD7G74fb3j+p5PjYSej/K2mhOuJBhxdGwzARpyoJbcDZrjkNyabytlt95iniZLHHWM9jvVXEA==",
  1022. "license": "MIT",
  1023. "dependencies": {
  1024. "@nomicfoundation/hardhat-utils": "^3.0.1"
  1025. }
  1026. },
  1027. "node_modules/@nomicfoundation/hardhat-ethers": {
  1028. "version": "4.0.2",
  1029. "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-ethers/-/hardhat-ethers-4.0.2.tgz",
  1030. "integrity": "sha512-teW1GpImmpKF5pZGM5SVDHD10bGj5MafjdmmG/Ort0gRuPt0PZz1Up2ggJQPHdzP6/Q30Wgdmhg/qLGL/48lpw==",
  1031. "license": "MIT",
  1032. "peer": true,
  1033. "dependencies": {
  1034. "@nomicfoundation/hardhat-errors": "^3.0.2",
  1035. "@nomicfoundation/hardhat-utils": "^3.0.3",
  1036. "debug": "^4.3.2",
  1037. "ethereum-cryptography": "^2.2.1",
  1038. "ethers": "^6.14.0"
  1039. },
  1040. "peerDependencies": {
  1041. "hardhat": "^3.0.7"
  1042. }
  1043. },
  1044. "node_modules/@nomicfoundation/hardhat-ethers-chai-matchers": {
  1045. "version": "3.0.0",
  1046. "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-ethers-chai-matchers/-/hardhat-ethers-chai-matchers-3.0.0.tgz",
  1047. "integrity": "sha512-IhDOUXv5+7cH1b8X5TX2qr2jLsMPjboFH/jXh7j090PbYWCRGwzdG3Olzzmd1X1WWpkw16nnz91+6pXuLpbQkw==",
  1048. "license": "MIT",
  1049. "peer": true,
  1050. "dependencies": {
  1051. "@nomicfoundation/hardhat-errors": "^3.0.0",
  1052. "@nomicfoundation/hardhat-utils": "^3.0.0",
  1053. "@types/chai-as-promised": "^8.0.1",
  1054. "chai-as-promised": "^8.0.0",
  1055. "deep-eql": "^5.0.1"
  1056. },
  1057. "peerDependencies": {
  1058. "@nomicfoundation/hardhat-ethers": "^4.0.0",
  1059. "chai": "^5.1.2",
  1060. "ethers": "^6.14.0",
  1061. "hardhat": "^3.0.0"
  1062. }
  1063. },
  1064. "node_modules/@nomicfoundation/hardhat-ignition": {
  1065. "version": "3.0.3",
  1066. "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-ignition/-/hardhat-ignition-3.0.3.tgz",
  1067. "integrity": "sha512-wFHgY+JAaIFPBxyJbrNJl7TjDmXtFod3nPDTPTMerPP+i69yk4yl3CM8nvjUzTKSACf7Ci3xfNfoqc3voeuaLQ==",
  1068. "license": "MIT",
  1069. "peer": true,
  1070. "dependencies": {
  1071. "@nomicfoundation/hardhat-errors": "^3.0.2",
  1072. "@nomicfoundation/hardhat-utils": "^3.0.1",
  1073. "@nomicfoundation/ignition-core": "^3.0.3",
  1074. "@nomicfoundation/ignition-ui": "^3.0.3",
  1075. "chalk": "^5.3.0",
  1076. "debug": "^4.3.2",
  1077. "json5": "^2.2.3",
  1078. "prompts": "^2.4.2"
  1079. },
  1080. "peerDependencies": {
  1081. "@nomicfoundation/hardhat-verify": "^3.0.0",
  1082. "hardhat": "^3.0.0"
  1083. }
  1084. },
  1085. "node_modules/@nomicfoundation/hardhat-ignition-ethers": {
  1086. "version": "3.0.3",
  1087. "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-ignition-ethers/-/hardhat-ignition-ethers-3.0.3.tgz",
  1088. "integrity": "sha512-TfiHLbOKGqDLmtIHpo3dKg9sPTx5HCPih2NdvQvRTI3kb2+GwBuFOYSF9k5jHXtSch25E9HfCc2aqA7SgsnS2A==",
  1089. "license": "MIT",
  1090. "peer": true,
  1091. "dependencies": {
  1092. "@nomicfoundation/hardhat-errors": "^3.0.2"
  1093. },
  1094. "peerDependencies": {
  1095. "@nomicfoundation/hardhat-ethers": "^4.0.0",
  1096. "@nomicfoundation/hardhat-ignition": "^3.0.2",
  1097. "@nomicfoundation/hardhat-verify": "^3.0.0",
  1098. "@nomicfoundation/ignition-core": "^3.0.2",
  1099. "ethers": "^6.14.0",
  1100. "hardhat": "^3.0.0"
  1101. }
  1102. },
  1103. "node_modules/@nomicfoundation/hardhat-keystore": {
  1104. "version": "3.0.1",
  1105. "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-keystore/-/hardhat-keystore-3.0.1.tgz",
  1106. "integrity": "sha512-IHjTWf88Kp6ZsnwngVYNJphWwwhnkSjg+wBd9im5yo8IbvCjd0Otyv2ucw0Dol+mxM3t/6XJhEnhbA3JGe/EdQ==",
  1107. "license": "MIT",
  1108. "peer": true,
  1109. "dependencies": {
  1110. "@noble/ciphers": "1.2.1",
  1111. "@noble/hashes": "1.7.1",
  1112. "@nomicfoundation/hardhat-errors": "^3.0.0",
  1113. "@nomicfoundation/hardhat-utils": "^3.0.0",
  1114. "@nomicfoundation/hardhat-zod-utils": "^3.0.0",
  1115. "chalk": "^5.3.0",
  1116. "debug": "^4.3.2",
  1117. "zod": "^3.23.8"
  1118. },
  1119. "peerDependencies": {
  1120. "hardhat": "^3.0.0"
  1121. }
  1122. },
  1123. "node_modules/@nomicfoundation/hardhat-keystore/node_modules/@noble/hashes": {
  1124. "version": "1.7.1",
  1125. "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.7.1.tgz",
  1126. "integrity": "sha512-B8XBPsn4vT/KJAGqDzbwztd+6Yte3P4V7iafm24bxgDe/mlRuK6xmWPuCNrKt2vDafZ8MfJLlchDG/vYafQEjQ==",
  1127. "license": "MIT",
  1128. "peer": true,
  1129. "engines": {
  1130. "node": "^14.21.3 || >=16"
  1131. },
  1132. "funding": {
  1133. "url": "https://paulmillr.com/funding/"
  1134. }
  1135. },
  1136. "node_modules/@nomicfoundation/hardhat-mocha": {
  1137. "version": "3.0.3",
  1138. "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-mocha/-/hardhat-mocha-3.0.3.tgz",
  1139. "integrity": "sha512-84FKWng9dSP3JdsBRFy+vL3fEuskd+U6Qi7ccjEnuofvBiMm1JMpgJI48rgtG6kqSfFOL4NacPbs74oJk9+/GQ==",
  1140. "license": "MIT",
  1141. "peer": true,
  1142. "dependencies": {
  1143. "@nomicfoundation/hardhat-errors": "^3.0.3",
  1144. "@nomicfoundation/hardhat-utils": "^3.0.1",
  1145. "@nomicfoundation/hardhat-zod-utils": "^3.0.0",
  1146. "chalk": "^5.3.0",
  1147. "hardhat": "^3.0.8",
  1148. "mocha": "^11.0.0",
  1149. "tsx": "^4.19.3",
  1150. "zod": "^3.23.8"
  1151. }
  1152. },
  1153. "node_modules/@nomicfoundation/hardhat-network-helpers": {
  1154. "version": "3.0.1",
  1155. "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-network-helpers/-/hardhat-network-helpers-3.0.1.tgz",
  1156. "integrity": "sha512-bNDZJawEEZhUQkUwvwlM5lLwcEBxQ5wNYDZsNHeiycPcYsDRhSFDuVPuKppJ78NGGnDUiwVsEogr/kRcQHk9rg==",
  1157. "license": "MIT",
  1158. "peer": true,
  1159. "dependencies": {
  1160. "@nomicfoundation/hardhat-errors": "^3.0.0",
  1161. "@nomicfoundation/hardhat-utils": "^3.0.3"
  1162. },
  1163. "peerDependencies": {
  1164. "hardhat": "^3.0.0"
  1165. }
  1166. },
  1167. "node_modules/@nomicfoundation/hardhat-toolbox-mocha-ethers": {
  1168. "version": "3.0.0",
  1169. "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-toolbox-mocha-ethers/-/hardhat-toolbox-mocha-ethers-3.0.0.tgz",
  1170. "integrity": "sha512-2WiLWh701im222k/rdSPaQSQzR5RdrpaIVbsGt9z42zqZoEmehoYidUcVrIWG1ocAvfHS9LuxHo6nBd0xMHRnQ==",
  1171. "license": "MIT",
  1172. "peerDependencies": {
  1173. "@nomicfoundation/hardhat-ethers": "^4.0.0",
  1174. "@nomicfoundation/hardhat-ethers-chai-matchers": "^3.0.0",
  1175. "@nomicfoundation/hardhat-ignition": "^3.0.0",
  1176. "@nomicfoundation/hardhat-ignition-ethers": "^3.0.0",
  1177. "@nomicfoundation/hardhat-keystore": "^3.0.0",
  1178. "@nomicfoundation/hardhat-mocha": "^3.0.0",
  1179. "@nomicfoundation/hardhat-network-helpers": "^3.0.0",
  1180. "@nomicfoundation/hardhat-typechain": "^3.0.0",
  1181. "@nomicfoundation/hardhat-verify": "^3.0.0",
  1182. "@nomicfoundation/ignition-core": "^3.0.0",
  1183. "chai": "^5.1.2",
  1184. "ethers": "^6.14.0",
  1185. "hardhat": "^3.0.0"
  1186. }
  1187. },
  1188. "node_modules/@nomicfoundation/hardhat-typechain": {
  1189. "version": "3.0.0",
  1190. "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-typechain/-/hardhat-typechain-3.0.0.tgz",
  1191. "integrity": "sha512-wwPNrb+a/IrvMpj94VsXyKM64T0SJFXsmmqCHnGfh/iAdZmX5J9ILBLeDUE9JW5rL6ove8TB7OcXZkGp8unB4w==",
  1192. "license": "MIT",
  1193. "peer": true,
  1194. "dependencies": {
  1195. "@nomicfoundation/hardhat-errors": "^3.0.0",
  1196. "@nomicfoundation/hardhat-utils": "^3.0.0",
  1197. "@nomicfoundation/hardhat-zod-utils": "^3.0.0",
  1198. "@typechain/ethers-v6": "^0.5.0",
  1199. "debug": "^4.3.2",
  1200. "typechain": "^8.3.1",
  1201. "zod": "^3.23.8"
  1202. },
  1203. "peerDependencies": {
  1204. "@nomicfoundation/hardhat-ethers": "^4.0.0",
  1205. "ethers": "^6.14.0",
  1206. "hardhat": "^3.0.0"
  1207. }
  1208. },
  1209. "node_modules/@nomicfoundation/hardhat-utils": {
  1210. "version": "3.0.3",
  1211. "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-utils/-/hardhat-utils-3.0.3.tgz",
  1212. "integrity": "sha512-XNoDJshvGR3l8/oQdNoLPLlcv+P+mGZBLixCyuO8Q0wTIyH/1+KYI77E+yvgTyw+GG4UmldFw9R3Hmnemk3KCA==",
  1213. "license": "MIT",
  1214. "dependencies": {
  1215. "@streamparser/json-node": "^0.0.22",
  1216. "debug": "^4.3.2",
  1217. "env-paths": "^2.2.0",
  1218. "ethereum-cryptography": "^2.2.1",
  1219. "fast-equals": "^5.0.1",
  1220. "json-stream-stringify": "^3.1.6",
  1221. "rfdc": "^1.3.1",
  1222. "undici": "^6.16.1"
  1223. }
  1224. },
  1225. "node_modules/@nomicfoundation/hardhat-verify": {
  1226. "version": "3.0.4",
  1227. "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-verify/-/hardhat-verify-3.0.4.tgz",
  1228. "integrity": "sha512-2EeteIxYL+teGDDm/NxMXmyiclAeg3XLAgGRL3CWCjEpxHX0xHa1sQOIsBkTs+DaVZnPCOY/s6/F+xvXgfoVyQ==",
  1229. "license": "MIT",
  1230. "peer": true,
  1231. "dependencies": {
  1232. "@ethersproject/abi": "^5.8.0",
  1233. "@nomicfoundation/hardhat-errors": "^3.0.3",
  1234. "@nomicfoundation/hardhat-utils": "^3.0.3",
  1235. "@nomicfoundation/hardhat-zod-utils": "^3.0.0",
  1236. "cbor2": "^1.9.0",
  1237. "chalk": "^5.3.0",
  1238. "debug": "^4.3.2",
  1239. "semver": "^7.6.3",
  1240. "zod": "^3.23.8"
  1241. },
  1242. "peerDependencies": {
  1243. "hardhat": "^3.0.0"
  1244. }
  1245. },
  1246. "node_modules/@nomicfoundation/hardhat-zod-utils": {
  1247. "version": "3.0.1",
  1248. "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-zod-utils/-/hardhat-zod-utils-3.0.1.tgz",
  1249. "integrity": "sha512-I6/pyYiS9p2lLkzQuedr1ScMocH+ew8l233xTi+LP92gjEiviJDxselpkzgU01MUM0t6BPpfP8yMO958LDEJVg==",
  1250. "license": "MIT",
  1251. "dependencies": {
  1252. "@nomicfoundation/hardhat-errors": "^3.0.0",
  1253. "@nomicfoundation/hardhat-utils": "^3.0.2"
  1254. },
  1255. "peerDependencies": {
  1256. "zod": "^3.23.8"
  1257. }
  1258. },
  1259. "node_modules/@nomicfoundation/ignition-core": {
  1260. "version": "3.0.3",
  1261. "resolved": "https://registry.npmjs.org/@nomicfoundation/ignition-core/-/ignition-core-3.0.3.tgz",
  1262. "integrity": "sha512-XlExOpCNyjLhAnfo/RaAknQ/0nYXl5+0+3Cg7T3zZAh/nEC52gecuhjG27jhIdtts2Oo78bwCsvnY2Wp0kHhpg==",
  1263. "license": "MIT",
  1264. "peer": true,
  1265. "dependencies": {
  1266. "@ethersproject/address": "5.6.1",
  1267. "@nomicfoundation/hardhat-errors": "^3.0.2",
  1268. "@nomicfoundation/hardhat-utils": "^3.0.1",
  1269. "@nomicfoundation/solidity-analyzer": "^0.1.1",
  1270. "cbor2": "^1.9.0",
  1271. "debug": "^4.3.2",
  1272. "ethers": "^6.14.0",
  1273. "immer": "10.0.2",
  1274. "lodash-es": "4.17.21",
  1275. "ndjson": "2.0.0"
  1276. }
  1277. },
  1278. "node_modules/@nomicfoundation/ignition-core/node_modules/@ethersproject/address": {
  1279. "version": "5.6.1",
  1280. "resolved": "https://registry.npmjs.org/@ethersproject/address/-/address-5.6.1.tgz",
  1281. "integrity": "sha512-uOgF0kS5MJv9ZvCz7x6T2EXJSzotiybApn4XlOgoTX0xdtyVIJ7pF+6cGPxiEq/dpBiTfMiw7Yc81JcwhSYA0Q==",
  1282. "funding": [
  1283. {
  1284. "type": "individual",
  1285. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  1286. },
  1287. {
  1288. "type": "individual",
  1289. "url": "https://www.buymeacoffee.com/ricmoo"
  1290. }
  1291. ],
  1292. "license": "MIT",
  1293. "peer": true,
  1294. "dependencies": {
  1295. "@ethersproject/bignumber": "^5.6.2",
  1296. "@ethersproject/bytes": "^5.6.1",
  1297. "@ethersproject/keccak256": "^5.6.1",
  1298. "@ethersproject/logger": "^5.6.0",
  1299. "@ethersproject/rlp": "^5.6.1"
  1300. }
  1301. },
  1302. "node_modules/@nomicfoundation/ignition-ui": {
  1303. "version": "3.0.3",
  1304. "resolved": "https://registry.npmjs.org/@nomicfoundation/ignition-ui/-/ignition-ui-3.0.3.tgz",
  1305. "integrity": "sha512-9xpwKi68P4ckMucpNnoKlDei2A3wgbPAnJN8ouYxGZpPtzT0kTfDtRCPAQEGqPoQiOWAn84jojVYrJmL+RQS+A==",
  1306. "peer": true
  1307. },
  1308. "node_modules/@nomicfoundation/solidity-analyzer": {
  1309. "version": "0.1.2",
  1310. "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer/-/solidity-analyzer-0.1.2.tgz",
  1311. "integrity": "sha512-q4n32/FNKIhQ3zQGGw5CvPF6GTvDCpYwIf7bEY/dZTZbgfDsHyjJwURxUJf3VQuuJj+fDIFl4+KkBVbw4Ef6jA==",
  1312. "license": "MIT",
  1313. "engines": {
  1314. "node": ">= 12"
  1315. },
  1316. "optionalDependencies": {
  1317. "@nomicfoundation/solidity-analyzer-darwin-arm64": "0.1.2",
  1318. "@nomicfoundation/solidity-analyzer-darwin-x64": "0.1.2",
  1319. "@nomicfoundation/solidity-analyzer-linux-arm64-gnu": "0.1.2",
  1320. "@nomicfoundation/solidity-analyzer-linux-arm64-musl": "0.1.2",
  1321. "@nomicfoundation/solidity-analyzer-linux-x64-gnu": "0.1.2",
  1322. "@nomicfoundation/solidity-analyzer-linux-x64-musl": "0.1.2",
  1323. "@nomicfoundation/solidity-analyzer-win32-x64-msvc": "0.1.2"
  1324. }
  1325. },
  1326. "node_modules/@nomicfoundation/solidity-analyzer-darwin-arm64": {
  1327. "version": "0.1.2",
  1328. "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-darwin-arm64/-/solidity-analyzer-darwin-arm64-0.1.2.tgz",
  1329. "integrity": "sha512-JaqcWPDZENCvm++lFFGjrDd8mxtf+CtLd2MiXvMNTBD33dContTZ9TWETwNFwg7JTJT5Q9HEecH7FA+HTSsIUw==",
  1330. "license": "MIT",
  1331. "optional": true,
  1332. "engines": {
  1333. "node": ">= 12"
  1334. }
  1335. },
  1336. "node_modules/@nomicfoundation/solidity-analyzer-darwin-x64": {
  1337. "version": "0.1.2",
  1338. "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-darwin-x64/-/solidity-analyzer-darwin-x64-0.1.2.tgz",
  1339. "integrity": "sha512-fZNmVztrSXC03e9RONBT+CiksSeYcxI1wlzqyr0L7hsQlK1fzV+f04g2JtQ1c/Fe74ZwdV6aQBdd6Uwl1052sw==",
  1340. "license": "MIT",
  1341. "optional": true,
  1342. "engines": {
  1343. "node": ">= 12"
  1344. }
  1345. },
  1346. "node_modules/@nomicfoundation/solidity-analyzer-linux-arm64-gnu": {
  1347. "version": "0.1.2",
  1348. "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-linux-arm64-gnu/-/solidity-analyzer-linux-arm64-gnu-0.1.2.tgz",
  1349. "integrity": "sha512-3d54oc+9ZVBuB6nbp8wHylk4xh0N0Gc+bk+/uJae+rUgbOBwQSfuGIbAZt1wBXs5REkSmynEGcqx6DutoK0tPA==",
  1350. "license": "MIT",
  1351. "optional": true,
  1352. "engines": {
  1353. "node": ">= 12"
  1354. }
  1355. },
  1356. "node_modules/@nomicfoundation/solidity-analyzer-linux-arm64-musl": {
  1357. "version": "0.1.2",
  1358. "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-linux-arm64-musl/-/solidity-analyzer-linux-arm64-musl-0.1.2.tgz",
  1359. "integrity": "sha512-iDJfR2qf55vgsg7BtJa7iPiFAsYf2d0Tv/0B+vhtnI16+wfQeTbP7teookbGvAo0eJo7aLLm0xfS/GTkvHIucA==",
  1360. "license": "MIT",
  1361. "optional": true,
  1362. "engines": {
  1363. "node": ">= 12"
  1364. }
  1365. },
  1366. "node_modules/@nomicfoundation/solidity-analyzer-linux-x64-gnu": {
  1367. "version": "0.1.2",
  1368. "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-linux-x64-gnu/-/solidity-analyzer-linux-x64-gnu-0.1.2.tgz",
  1369. "integrity": "sha512-9dlHMAt5/2cpWyuJ9fQNOUXFB/vgSFORg1jpjX1Mh9hJ/MfZXlDdHQ+DpFCs32Zk5pxRBb07yGvSHk9/fezL+g==",
  1370. "license": "MIT",
  1371. "optional": true,
  1372. "engines": {
  1373. "node": ">= 12"
  1374. }
  1375. },
  1376. "node_modules/@nomicfoundation/solidity-analyzer-linux-x64-musl": {
  1377. "version": "0.1.2",
  1378. "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-linux-x64-musl/-/solidity-analyzer-linux-x64-musl-0.1.2.tgz",
  1379. "integrity": "sha512-GzzVeeJob3lfrSlDKQw2bRJ8rBf6mEYaWY+gW0JnTDHINA0s2gPR4km5RLIj1xeZZOYz4zRw+AEeYgLRqB2NXg==",
  1380. "license": "MIT",
  1381. "optional": true,
  1382. "engines": {
  1383. "node": ">= 12"
  1384. }
  1385. },
  1386. "node_modules/@nomicfoundation/solidity-analyzer-win32-x64-msvc": {
  1387. "version": "0.1.2",
  1388. "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-win32-x64-msvc/-/solidity-analyzer-win32-x64-msvc-0.1.2.tgz",
  1389. "integrity": "sha512-Fdjli4DCcFHb4Zgsz0uEJXZ2K7VEO+w5KVv7HmT7WO10iODdU9csC2az4jrhEsRtiR9Gfd74FlG0NYlw1BMdyA==",
  1390. "license": "MIT",
  1391. "optional": true,
  1392. "engines": {
  1393. "node": ">= 12"
  1394. }
  1395. },
  1396. "node_modules/@openzeppelin/contracts": {
  1397. "version": "5.4.0",
  1398. "resolved": "https://registry.npmjs.org/@openzeppelin/contracts/-/contracts-5.4.0.tgz",
  1399. "integrity": "sha512-eCYgWnLg6WO+X52I16TZt8uEjbtdkgLC0SUX/xnAksjjrQI4Xfn4iBRoI5j55dmlOhDv1Y7BoR3cU7e3WWhC6A==",
  1400. "license": "MIT"
  1401. },
  1402. "node_modules/@pkgjs/parseargs": {
  1403. "version": "0.11.0",
  1404. "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
  1405. "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
  1406. "license": "MIT",
  1407. "optional": true,
  1408. "peer": true,
  1409. "engines": {
  1410. "node": ">=14"
  1411. }
  1412. },
  1413. "node_modules/@scure/base": {
  1414. "version": "1.1.9",
  1415. "resolved": "https://registry.npmjs.org/@scure/base/-/base-1.1.9.tgz",
  1416. "integrity": "sha512-8YKhl8GHiNI/pU2VMaofa2Tor7PJRAjwQLBBuilkJ9L5+13yVbC7JO/wS7piioAvPSwR3JKM1IJ/u4xQzbcXKg==",
  1417. "license": "MIT",
  1418. "funding": {
  1419. "url": "https://paulmillr.com/funding/"
  1420. }
  1421. },
  1422. "node_modules/@scure/bip32": {
  1423. "version": "1.4.0",
  1424. "resolved": "https://registry.npmjs.org/@scure/bip32/-/bip32-1.4.0.tgz",
  1425. "integrity": "sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg==",
  1426. "license": "MIT",
  1427. "dependencies": {
  1428. "@noble/curves": "~1.4.0",
  1429. "@noble/hashes": "~1.4.0",
  1430. "@scure/base": "~1.1.6"
  1431. },
  1432. "funding": {
  1433. "url": "https://paulmillr.com/funding/"
  1434. }
  1435. },
  1436. "node_modules/@scure/bip39": {
  1437. "version": "1.3.0",
  1438. "resolved": "https://registry.npmjs.org/@scure/bip39/-/bip39-1.3.0.tgz",
  1439. "integrity": "sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==",
  1440. "license": "MIT",
  1441. "dependencies": {
  1442. "@noble/hashes": "~1.4.0",
  1443. "@scure/base": "~1.1.6"
  1444. },
  1445. "funding": {
  1446. "url": "https://paulmillr.com/funding/"
  1447. }
  1448. },
  1449. "node_modules/@sentry/core": {
  1450. "version": "9.46.0",
  1451. "resolved": "https://registry.npmjs.org/@sentry/core/-/core-9.46.0.tgz",
  1452. "integrity": "sha512-it7JMFqxVproAgEtbLgCVBYtQ9fIb+Bu0JD+cEplTN/Ukpe6GaolyYib5geZqslVxhp2sQgT+58aGvfd/k0N8Q==",
  1453. "license": "MIT",
  1454. "engines": {
  1455. "node": ">=18"
  1456. }
  1457. },
  1458. "node_modules/@streamparser/json": {
  1459. "version": "0.0.22",
  1460. "resolved": "https://registry.npmjs.org/@streamparser/json/-/json-0.0.22.tgz",
  1461. "integrity": "sha512-b6gTSBjJ8G8SuO3Gbbj+zXbVx8NSs1EbpbMKpzGLWMdkR+98McH9bEjSz3+0mPJf68c5nxa3CrJHp5EQNXM6zQ==",
  1462. "license": "MIT"
  1463. },
  1464. "node_modules/@streamparser/json-node": {
  1465. "version": "0.0.22",
  1466. "resolved": "https://registry.npmjs.org/@streamparser/json-node/-/json-node-0.0.22.tgz",
  1467. "integrity": "sha512-sJT2ptNRwqB1lIsQrQlCoWk5rF4tif9wDh+7yluAGijJamAhrHGYpFB/Zg3hJeceoZypi74ftXk8DHzwYpbZSg==",
  1468. "license": "MIT",
  1469. "dependencies": {
  1470. "@streamparser/json": "^0.0.22"
  1471. }
  1472. },
  1473. "node_modules/@typechain/ethers-v6": {
  1474. "version": "0.5.1",
  1475. "resolved": "https://registry.npmjs.org/@typechain/ethers-v6/-/ethers-v6-0.5.1.tgz",
  1476. "integrity": "sha512-F+GklO8jBWlsaVV+9oHaPh5NJdd6rAKN4tklGfInX1Q7h0xPgVLP39Jl3eCulPB5qexI71ZFHwbljx4ZXNfouA==",
  1477. "license": "MIT",
  1478. "peer": true,
  1479. "dependencies": {
  1480. "lodash": "^4.17.15",
  1481. "ts-essentials": "^7.0.1"
  1482. },
  1483. "peerDependencies": {
  1484. "ethers": "6.x",
  1485. "typechain": "^8.3.2",
  1486. "typescript": ">=4.7.0"
  1487. }
  1488. },
  1489. "node_modules/@types/chai": {
  1490. "version": "5.2.3",
  1491. "resolved": "https://registry.npmjs.org/@types/chai/-/chai-5.2.3.tgz",
  1492. "integrity": "sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==",
  1493. "license": "MIT",
  1494. "peer": true,
  1495. "dependencies": {
  1496. "@types/deep-eql": "*",
  1497. "assertion-error": "^2.0.1"
  1498. }
  1499. },
  1500. "node_modules/@types/chai-as-promised": {
  1501. "version": "8.0.2",
  1502. "resolved": "https://registry.npmjs.org/@types/chai-as-promised/-/chai-as-promised-8.0.2.tgz",
  1503. "integrity": "sha512-meQ1wDr1K5KRCSvG2lX7n7/5wf70BeptTKst0axGvnN6zqaVpRqegoIbugiAPSqOW9K9aL8gDVrm7a2LXOtn2Q==",
  1504. "license": "MIT",
  1505. "peer": true,
  1506. "dependencies": {
  1507. "@types/chai": "*"
  1508. }
  1509. },
  1510. "node_modules/@types/deep-eql": {
  1511. "version": "4.0.2",
  1512. "resolved": "https://registry.npmjs.org/@types/deep-eql/-/deep-eql-4.0.2.tgz",
  1513. "integrity": "sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==",
  1514. "license": "MIT",
  1515. "peer": true
  1516. },
  1517. "node_modules/@types/node": {
  1518. "version": "22.7.5",
  1519. "resolved": "https://registry.npmjs.org/@types/node/-/node-22.7.5.tgz",
  1520. "integrity": "sha512-jML7s2NAzMWc//QSJ1a3prpk78cOPchGvXJsC3C6R6PSMoooztvRVQEz89gmBTBY1SPMaqo5teB4uNHPdetShQ==",
  1521. "license": "MIT",
  1522. "peer": true,
  1523. "dependencies": {
  1524. "undici-types": "~6.19.2"
  1525. }
  1526. },
  1527. "node_modules/@types/prettier": {
  1528. "version": "2.7.3",
  1529. "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz",
  1530. "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==",
  1531. "license": "MIT",
  1532. "peer": true
  1533. },
  1534. "node_modules/adm-zip": {
  1535. "version": "0.4.16",
  1536. "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.4.16.tgz",
  1537. "integrity": "sha512-TFi4HBKSGfIKsK5YCkKaaFG2m4PEDyViZmEwof3MTIgzimHLto6muaHVpbrljdIvIrFZzEq/p4nafOeLcYegrg==",
  1538. "license": "MIT",
  1539. "engines": {
  1540. "node": ">=0.3.0"
  1541. }
  1542. },
  1543. "node_modules/aes-js": {
  1544. "version": "4.0.0-beta.5",
  1545. "resolved": "https://registry.npmjs.org/aes-js/-/aes-js-4.0.0-beta.5.tgz",
  1546. "integrity": "sha512-G965FqalsNyrPqgEGON7nIx1e/OVENSgiEIzyC63haUMuvNnwIgIjMs52hlTCKhkBny7A2ORNlfY9Zu+jmGk1Q==",
  1547. "license": "MIT",
  1548. "peer": true
  1549. },
  1550. "node_modules/ansi-colors": {
  1551. "version": "4.1.3",
  1552. "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz",
  1553. "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==",
  1554. "license": "MIT",
  1555. "engines": {
  1556. "node": ">=6"
  1557. }
  1558. },
  1559. "node_modules/ansi-regex": {
  1560. "version": "5.0.1",
  1561. "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
  1562. "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
  1563. "license": "MIT",
  1564. "engines": {
  1565. "node": ">=8"
  1566. }
  1567. },
  1568. "node_modules/ansi-styles": {
  1569. "version": "6.2.3",
  1570. "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz",
  1571. "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==",
  1572. "license": "MIT",
  1573. "peer": true,
  1574. "engines": {
  1575. "node": ">=12"
  1576. },
  1577. "funding": {
  1578. "url": "https://github.com/chalk/ansi-styles?sponsor=1"
  1579. }
  1580. },
  1581. "node_modules/argparse": {
  1582. "version": "2.0.1",
  1583. "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
  1584. "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
  1585. "license": "Python-2.0",
  1586. "peer": true
  1587. },
  1588. "node_modules/array-back": {
  1589. "version": "3.1.0",
  1590. "resolved": "https://registry.npmjs.org/array-back/-/array-back-3.1.0.tgz",
  1591. "integrity": "sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==",
  1592. "license": "MIT",
  1593. "peer": true,
  1594. "engines": {
  1595. "node": ">=6"
  1596. }
  1597. },
  1598. "node_modules/assertion-error": {
  1599. "version": "2.0.1",
  1600. "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz",
  1601. "integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==",
  1602. "license": "MIT",
  1603. "peer": true,
  1604. "engines": {
  1605. "node": ">=12"
  1606. }
  1607. },
  1608. "node_modules/balanced-match": {
  1609. "version": "1.0.2",
  1610. "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
  1611. "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
  1612. "license": "MIT",
  1613. "peer": true
  1614. },
  1615. "node_modules/bn.js": {
  1616. "version": "5.2.2",
  1617. "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.2.tgz",
  1618. "integrity": "sha512-v2YAxEmKaBLahNwE1mjp4WON6huMNeuDvagFZW+ASCuA/ku0bXR9hSMw0XpiqMoA3+rmnyck/tPRSFQkoC9Cuw==",
  1619. "license": "MIT",
  1620. "peer": true
  1621. },
  1622. "node_modules/brace-expansion": {
  1623. "version": "2.0.2",
  1624. "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz",
  1625. "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
  1626. "license": "MIT",
  1627. "peer": true,
  1628. "dependencies": {
  1629. "balanced-match": "^1.0.0"
  1630. }
  1631. },
  1632. "node_modules/brorand": {
  1633. "version": "1.1.0",
  1634. "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz",
  1635. "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==",
  1636. "license": "MIT",
  1637. "peer": true
  1638. },
  1639. "node_modules/browser-stdout": {
  1640. "version": "1.3.1",
  1641. "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz",
  1642. "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==",
  1643. "license": "ISC",
  1644. "peer": true
  1645. },
  1646. "node_modules/camelcase": {
  1647. "version": "6.3.0",
  1648. "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
  1649. "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
  1650. "license": "MIT",
  1651. "peer": true,
  1652. "engines": {
  1653. "node": ">=10"
  1654. },
  1655. "funding": {
  1656. "url": "https://github.com/sponsors/sindresorhus"
  1657. }
  1658. },
  1659. "node_modules/cbor2": {
  1660. "version": "1.12.0",
  1661. "resolved": "https://registry.npmjs.org/cbor2/-/cbor2-1.12.0.tgz",
  1662. "integrity": "sha512-3Cco8XQhi27DogSp9Ri6LYNZLi/TBY/JVnDe+mj06NkBjW/ZYOtekaEU4wZ4xcRMNrFkDv8KNtOAqHyDfz3lYg==",
  1663. "license": "MIT",
  1664. "peer": true,
  1665. "engines": {
  1666. "node": ">=18.7"
  1667. }
  1668. },
  1669. "node_modules/chai": {
  1670. "version": "5.3.3",
  1671. "resolved": "https://registry.npmjs.org/chai/-/chai-5.3.3.tgz",
  1672. "integrity": "sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==",
  1673. "license": "MIT",
  1674. "peer": true,
  1675. "dependencies": {
  1676. "assertion-error": "^2.0.1",
  1677. "check-error": "^2.1.1",
  1678. "deep-eql": "^5.0.1",
  1679. "loupe": "^3.1.0",
  1680. "pathval": "^2.0.0"
  1681. },
  1682. "engines": {
  1683. "node": ">=18"
  1684. }
  1685. },
  1686. "node_modules/chai-as-promised": {
  1687. "version": "8.0.2",
  1688. "resolved": "https://registry.npmjs.org/chai-as-promised/-/chai-as-promised-8.0.2.tgz",
  1689. "integrity": "sha512-1GadL+sEJVLzDjcawPM4kjfnL+p/9vrxiEUonowKOAzvVg0PixJUdtuDzdkDeQhK3zfOE76GqGkZIQ7/Adcrqw==",
  1690. "license": "MIT",
  1691. "peer": true,
  1692. "dependencies": {
  1693. "check-error": "^2.1.1"
  1694. },
  1695. "peerDependencies": {
  1696. "chai": ">= 2.1.2 < 7"
  1697. }
  1698. },
  1699. "node_modules/chalk": {
  1700. "version": "5.6.2",
  1701. "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.6.2.tgz",
  1702. "integrity": "sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==",
  1703. "license": "MIT",
  1704. "engines": {
  1705. "node": "^12.17.0 || ^14.13 || >=16.0.0"
  1706. },
  1707. "funding": {
  1708. "url": "https://github.com/chalk/chalk?sponsor=1"
  1709. }
  1710. },
  1711. "node_modules/check-error": {
  1712. "version": "2.1.1",
  1713. "resolved": "https://registry.npmjs.org/check-error/-/check-error-2.1.1.tgz",
  1714. "integrity": "sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==",
  1715. "license": "MIT",
  1716. "peer": true,
  1717. "engines": {
  1718. "node": ">= 16"
  1719. }
  1720. },
  1721. "node_modules/chokidar": {
  1722. "version": "4.0.3",
  1723. "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz",
  1724. "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==",
  1725. "license": "MIT",
  1726. "dependencies": {
  1727. "readdirp": "^4.0.1"
  1728. },
  1729. "engines": {
  1730. "node": ">= 14.16.0"
  1731. },
  1732. "funding": {
  1733. "url": "https://paulmillr.com/funding/"
  1734. }
  1735. },
  1736. "node_modules/cliui": {
  1737. "version": "8.0.1",
  1738. "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
  1739. "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
  1740. "license": "ISC",
  1741. "peer": true,
  1742. "dependencies": {
  1743. "string-width": "^4.2.0",
  1744. "strip-ansi": "^6.0.1",
  1745. "wrap-ansi": "^7.0.0"
  1746. },
  1747. "engines": {
  1748. "node": ">=12"
  1749. }
  1750. },
  1751. "node_modules/cliui/node_modules/ansi-styles": {
  1752. "version": "4.3.0",
  1753. "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
  1754. "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
  1755. "license": "MIT",
  1756. "peer": true,
  1757. "dependencies": {
  1758. "color-convert": "^2.0.1"
  1759. },
  1760. "engines": {
  1761. "node": ">=8"
  1762. },
  1763. "funding": {
  1764. "url": "https://github.com/chalk/ansi-styles?sponsor=1"
  1765. }
  1766. },
  1767. "node_modules/cliui/node_modules/emoji-regex": {
  1768. "version": "8.0.0",
  1769. "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
  1770. "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
  1771. "license": "MIT",
  1772. "peer": true
  1773. },
  1774. "node_modules/cliui/node_modules/string-width": {
  1775. "version": "4.2.3",
  1776. "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
  1777. "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
  1778. "license": "MIT",
  1779. "peer": true,
  1780. "dependencies": {
  1781. "emoji-regex": "^8.0.0",
  1782. "is-fullwidth-code-point": "^3.0.0",
  1783. "strip-ansi": "^6.0.1"
  1784. },
  1785. "engines": {
  1786. "node": ">=8"
  1787. }
  1788. },
  1789. "node_modules/cliui/node_modules/wrap-ansi": {
  1790. "version": "7.0.0",
  1791. "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
  1792. "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
  1793. "license": "MIT",
  1794. "peer": true,
  1795. "dependencies": {
  1796. "ansi-styles": "^4.0.0",
  1797. "string-width": "^4.1.0",
  1798. "strip-ansi": "^6.0.0"
  1799. },
  1800. "engines": {
  1801. "node": ">=10"
  1802. },
  1803. "funding": {
  1804. "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
  1805. }
  1806. },
  1807. "node_modules/color-convert": {
  1808. "version": "2.0.1",
  1809. "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
  1810. "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
  1811. "license": "MIT",
  1812. "peer": true,
  1813. "dependencies": {
  1814. "color-name": "~1.1.4"
  1815. },
  1816. "engines": {
  1817. "node": ">=7.0.0"
  1818. }
  1819. },
  1820. "node_modules/color-name": {
  1821. "version": "1.1.4",
  1822. "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
  1823. "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
  1824. "license": "MIT",
  1825. "peer": true
  1826. },
  1827. "node_modules/command-line-args": {
  1828. "version": "5.2.1",
  1829. "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-5.2.1.tgz",
  1830. "integrity": "sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==",
  1831. "license": "MIT",
  1832. "peer": true,
  1833. "dependencies": {
  1834. "array-back": "^3.1.0",
  1835. "find-replace": "^3.0.0",
  1836. "lodash.camelcase": "^4.3.0",
  1837. "typical": "^4.0.0"
  1838. },
  1839. "engines": {
  1840. "node": ">=4.0.0"
  1841. }
  1842. },
  1843. "node_modules/command-line-usage": {
  1844. "version": "6.1.3",
  1845. "resolved": "https://registry.npmjs.org/command-line-usage/-/command-line-usage-6.1.3.tgz",
  1846. "integrity": "sha512-sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw==",
  1847. "license": "MIT",
  1848. "peer": true,
  1849. "dependencies": {
  1850. "array-back": "^4.0.2",
  1851. "chalk": "^2.4.2",
  1852. "table-layout": "^1.0.2",
  1853. "typical": "^5.2.0"
  1854. },
  1855. "engines": {
  1856. "node": ">=8.0.0"
  1857. }
  1858. },
  1859. "node_modules/command-line-usage/node_modules/ansi-styles": {
  1860. "version": "3.2.1",
  1861. "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
  1862. "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
  1863. "license": "MIT",
  1864. "peer": true,
  1865. "dependencies": {
  1866. "color-convert": "^1.9.0"
  1867. },
  1868. "engines": {
  1869. "node": ">=4"
  1870. }
  1871. },
  1872. "node_modules/command-line-usage/node_modules/array-back": {
  1873. "version": "4.0.2",
  1874. "resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.2.tgz",
  1875. "integrity": "sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==",
  1876. "license": "MIT",
  1877. "peer": true,
  1878. "engines": {
  1879. "node": ">=8"
  1880. }
  1881. },
  1882. "node_modules/command-line-usage/node_modules/chalk": {
  1883. "version": "2.4.2",
  1884. "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
  1885. "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
  1886. "license": "MIT",
  1887. "peer": true,
  1888. "dependencies": {
  1889. "ansi-styles": "^3.2.1",
  1890. "escape-string-regexp": "^1.0.5",
  1891. "supports-color": "^5.3.0"
  1892. },
  1893. "engines": {
  1894. "node": ">=4"
  1895. }
  1896. },
  1897. "node_modules/command-line-usage/node_modules/color-convert": {
  1898. "version": "1.9.3",
  1899. "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
  1900. "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
  1901. "license": "MIT",
  1902. "peer": true,
  1903. "dependencies": {
  1904. "color-name": "1.1.3"
  1905. }
  1906. },
  1907. "node_modules/command-line-usage/node_modules/color-name": {
  1908. "version": "1.1.3",
  1909. "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
  1910. "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==",
  1911. "license": "MIT",
  1912. "peer": true
  1913. },
  1914. "node_modules/command-line-usage/node_modules/escape-string-regexp": {
  1915. "version": "1.0.5",
  1916. "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
  1917. "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
  1918. "license": "MIT",
  1919. "peer": true,
  1920. "engines": {
  1921. "node": ">=0.8.0"
  1922. }
  1923. },
  1924. "node_modules/command-line-usage/node_modules/has-flag": {
  1925. "version": "3.0.0",
  1926. "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
  1927. "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
  1928. "license": "MIT",
  1929. "peer": true,
  1930. "engines": {
  1931. "node": ">=4"
  1932. }
  1933. },
  1934. "node_modules/command-line-usage/node_modules/supports-color": {
  1935. "version": "5.5.0",
  1936. "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
  1937. "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
  1938. "license": "MIT",
  1939. "peer": true,
  1940. "dependencies": {
  1941. "has-flag": "^3.0.0"
  1942. },
  1943. "engines": {
  1944. "node": ">=4"
  1945. }
  1946. },
  1947. "node_modules/command-line-usage/node_modules/typical": {
  1948. "version": "5.2.0",
  1949. "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz",
  1950. "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==",
  1951. "license": "MIT",
  1952. "peer": true,
  1953. "engines": {
  1954. "node": ">=8"
  1955. }
  1956. },
  1957. "node_modules/concat-map": {
  1958. "version": "0.0.1",
  1959. "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
  1960. "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
  1961. "license": "MIT",
  1962. "peer": true
  1963. },
  1964. "node_modules/cross-spawn": {
  1965. "version": "7.0.6",
  1966. "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
  1967. "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
  1968. "license": "MIT",
  1969. "peer": true,
  1970. "dependencies": {
  1971. "path-key": "^3.1.0",
  1972. "shebang-command": "^2.0.0",
  1973. "which": "^2.0.1"
  1974. },
  1975. "engines": {
  1976. "node": ">= 8"
  1977. }
  1978. },
  1979. "node_modules/debug": {
  1980. "version": "4.4.3",
  1981. "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
  1982. "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
  1983. "license": "MIT",
  1984. "dependencies": {
  1985. "ms": "^2.1.3"
  1986. },
  1987. "engines": {
  1988. "node": ">=6.0"
  1989. },
  1990. "peerDependenciesMeta": {
  1991. "supports-color": {
  1992. "optional": true
  1993. }
  1994. }
  1995. },
  1996. "node_modules/decamelize": {
  1997. "version": "4.0.0",
  1998. "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz",
  1999. "integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==",
  2000. "license": "MIT",
  2001. "peer": true,
  2002. "engines": {
  2003. "node": ">=10"
  2004. },
  2005. "funding": {
  2006. "url": "https://github.com/sponsors/sindresorhus"
  2007. }
  2008. },
  2009. "node_modules/deep-eql": {
  2010. "version": "5.0.2",
  2011. "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-5.0.2.tgz",
  2012. "integrity": "sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==",
  2013. "license": "MIT",
  2014. "peer": true,
  2015. "engines": {
  2016. "node": ">=6"
  2017. }
  2018. },
  2019. "node_modules/deep-extend": {
  2020. "version": "0.6.0",
  2021. "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
  2022. "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==",
  2023. "license": "MIT",
  2024. "peer": true,
  2025. "engines": {
  2026. "node": ">=4.0.0"
  2027. }
  2028. },
  2029. "node_modules/diff": {
  2030. "version": "7.0.0",
  2031. "resolved": "https://registry.npmjs.org/diff/-/diff-7.0.0.tgz",
  2032. "integrity": "sha512-PJWHUb1RFevKCwaFA9RlG5tCd+FO5iRh9A8HEtkmBH2Li03iJriB6m6JIN4rGz3K3JLawI7/veA1xzRKP6ISBw==",
  2033. "license": "BSD-3-Clause",
  2034. "peer": true,
  2035. "engines": {
  2036. "node": ">=0.3.1"
  2037. }
  2038. },
  2039. "node_modules/eastasianwidth": {
  2040. "version": "0.2.0",
  2041. "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
  2042. "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
  2043. "license": "MIT",
  2044. "peer": true
  2045. },
  2046. "node_modules/elliptic": {
  2047. "version": "6.6.1",
  2048. "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.6.1.tgz",
  2049. "integrity": "sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==",
  2050. "license": "MIT",
  2051. "peer": true,
  2052. "dependencies": {
  2053. "bn.js": "^4.11.9",
  2054. "brorand": "^1.1.0",
  2055. "hash.js": "^1.0.0",
  2056. "hmac-drbg": "^1.0.1",
  2057. "inherits": "^2.0.4",
  2058. "minimalistic-assert": "^1.0.1",
  2059. "minimalistic-crypto-utils": "^1.0.1"
  2060. }
  2061. },
  2062. "node_modules/elliptic/node_modules/bn.js": {
  2063. "version": "4.12.2",
  2064. "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.2.tgz",
  2065. "integrity": "sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw==",
  2066. "license": "MIT",
  2067. "peer": true
  2068. },
  2069. "node_modules/emoji-regex": {
  2070. "version": "9.2.2",
  2071. "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
  2072. "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
  2073. "license": "MIT",
  2074. "peer": true
  2075. },
  2076. "node_modules/enquirer": {
  2077. "version": "2.4.1",
  2078. "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.4.1.tgz",
  2079. "integrity": "sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==",
  2080. "license": "MIT",
  2081. "dependencies": {
  2082. "ansi-colors": "^4.1.1",
  2083. "strip-ansi": "^6.0.1"
  2084. },
  2085. "engines": {
  2086. "node": ">=8.6"
  2087. }
  2088. },
  2089. "node_modules/env-paths": {
  2090. "version": "2.2.1",
  2091. "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz",
  2092. "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==",
  2093. "license": "MIT",
  2094. "engines": {
  2095. "node": ">=6"
  2096. }
  2097. },
  2098. "node_modules/esbuild": {
  2099. "version": "0.25.11",
  2100. "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.11.tgz",
  2101. "integrity": "sha512-KohQwyzrKTQmhXDW1PjCv3Tyspn9n5GcY2RTDqeORIdIJY8yKIF7sTSopFmn/wpMPW4rdPXI0UE5LJLuq3bx0Q==",
  2102. "hasInstallScript": true,
  2103. "license": "MIT",
  2104. "bin": {
  2105. "esbuild": "bin/esbuild"
  2106. },
  2107. "engines": {
  2108. "node": ">=18"
  2109. },
  2110. "optionalDependencies": {
  2111. "@esbuild/aix-ppc64": "0.25.11",
  2112. "@esbuild/android-arm": "0.25.11",
  2113. "@esbuild/android-arm64": "0.25.11",
  2114. "@esbuild/android-x64": "0.25.11",
  2115. "@esbuild/darwin-arm64": "0.25.11",
  2116. "@esbuild/darwin-x64": "0.25.11",
  2117. "@esbuild/freebsd-arm64": "0.25.11",
  2118. "@esbuild/freebsd-x64": "0.25.11",
  2119. "@esbuild/linux-arm": "0.25.11",
  2120. "@esbuild/linux-arm64": "0.25.11",
  2121. "@esbuild/linux-ia32": "0.25.11",
  2122. "@esbuild/linux-loong64": "0.25.11",
  2123. "@esbuild/linux-mips64el": "0.25.11",
  2124. "@esbuild/linux-ppc64": "0.25.11",
  2125. "@esbuild/linux-riscv64": "0.25.11",
  2126. "@esbuild/linux-s390x": "0.25.11",
  2127. "@esbuild/linux-x64": "0.25.11",
  2128. "@esbuild/netbsd-arm64": "0.25.11",
  2129. "@esbuild/netbsd-x64": "0.25.11",
  2130. "@esbuild/openbsd-arm64": "0.25.11",
  2131. "@esbuild/openbsd-x64": "0.25.11",
  2132. "@esbuild/openharmony-arm64": "0.25.11",
  2133. "@esbuild/sunos-x64": "0.25.11",
  2134. "@esbuild/win32-arm64": "0.25.11",
  2135. "@esbuild/win32-ia32": "0.25.11",
  2136. "@esbuild/win32-x64": "0.25.11"
  2137. }
  2138. },
  2139. "node_modules/escalade": {
  2140. "version": "3.2.0",
  2141. "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
  2142. "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
  2143. "license": "MIT",
  2144. "peer": true,
  2145. "engines": {
  2146. "node": ">=6"
  2147. }
  2148. },
  2149. "node_modules/escape-string-regexp": {
  2150. "version": "4.0.0",
  2151. "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
  2152. "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
  2153. "license": "MIT",
  2154. "peer": true,
  2155. "engines": {
  2156. "node": ">=10"
  2157. },
  2158. "funding": {
  2159. "url": "https://github.com/sponsors/sindresorhus"
  2160. }
  2161. },
  2162. "node_modules/ethereum-cryptography": {
  2163. "version": "2.2.1",
  2164. "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-2.2.1.tgz",
  2165. "integrity": "sha512-r/W8lkHSiTLxUxW8Rf3u4HGB0xQweG2RyETjywylKZSzLWoWAijRz8WCuOtJ6wah+avllXBqZuk29HCCvhEIRg==",
  2166. "license": "MIT",
  2167. "dependencies": {
  2168. "@noble/curves": "1.4.2",
  2169. "@noble/hashes": "1.4.0",
  2170. "@scure/bip32": "1.4.0",
  2171. "@scure/bip39": "1.3.0"
  2172. }
  2173. },
  2174. "node_modules/ethers": {
  2175. "version": "6.15.0",
  2176. "resolved": "https://registry.npmjs.org/ethers/-/ethers-6.15.0.tgz",
  2177. "integrity": "sha512-Kf/3ZW54L4UT0pZtsY/rf+EkBU7Qi5nnhonjUb8yTXcxH3cdcWrV2cRyk0Xk/4jK6OoHhxxZHriyhje20If2hQ==",
  2178. "funding": [
  2179. {
  2180. "type": "individual",
  2181. "url": "https://github.com/sponsors/ethers-io/"
  2182. },
  2183. {
  2184. "type": "individual",
  2185. "url": "https://www.buymeacoffee.com/ricmoo"
  2186. }
  2187. ],
  2188. "license": "MIT",
  2189. "peer": true,
  2190. "dependencies": {
  2191. "@adraffy/ens-normalize": "1.10.1",
  2192. "@noble/curves": "1.2.0",
  2193. "@noble/hashes": "1.3.2",
  2194. "@types/node": "22.7.5",
  2195. "aes-js": "4.0.0-beta.5",
  2196. "tslib": "2.7.0",
  2197. "ws": "8.17.1"
  2198. },
  2199. "engines": {
  2200. "node": ">=14.0.0"
  2201. }
  2202. },
  2203. "node_modules/ethers/node_modules/@noble/curves": {
  2204. "version": "1.2.0",
  2205. "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.2.0.tgz",
  2206. "integrity": "sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==",
  2207. "license": "MIT",
  2208. "peer": true,
  2209. "dependencies": {
  2210. "@noble/hashes": "1.3.2"
  2211. },
  2212. "funding": {
  2213. "url": "https://paulmillr.com/funding/"
  2214. }
  2215. },
  2216. "node_modules/ethers/node_modules/@noble/hashes": {
  2217. "version": "1.3.2",
  2218. "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.2.tgz",
  2219. "integrity": "sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==",
  2220. "license": "MIT",
  2221. "peer": true,
  2222. "engines": {
  2223. "node": ">= 16"
  2224. },
  2225. "funding": {
  2226. "url": "https://paulmillr.com/funding/"
  2227. }
  2228. },
  2229. "node_modules/ethers/node_modules/ws": {
  2230. "version": "8.17.1",
  2231. "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz",
  2232. "integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==",
  2233. "license": "MIT",
  2234. "peer": true,
  2235. "engines": {
  2236. "node": ">=10.0.0"
  2237. },
  2238. "peerDependencies": {
  2239. "bufferutil": "^4.0.1",
  2240. "utf-8-validate": ">=5.0.2"
  2241. },
  2242. "peerDependenciesMeta": {
  2243. "bufferutil": {
  2244. "optional": true
  2245. },
  2246. "utf-8-validate": {
  2247. "optional": true
  2248. }
  2249. }
  2250. },
  2251. "node_modules/fast-equals": {
  2252. "version": "5.3.2",
  2253. "resolved": "https://registry.npmjs.org/fast-equals/-/fast-equals-5.3.2.tgz",
  2254. "integrity": "sha512-6rxyATwPCkaFIL3JLqw8qXqMpIZ942pTX/tbQFkRsDGblS8tNGtlUauA/+mt6RUfqn/4MoEr+WDkYoIQbibWuQ==",
  2255. "license": "MIT",
  2256. "engines": {
  2257. "node": ">=6.0.0"
  2258. }
  2259. },
  2260. "node_modules/find-replace": {
  2261. "version": "3.0.0",
  2262. "resolved": "https://registry.npmjs.org/find-replace/-/find-replace-3.0.0.tgz",
  2263. "integrity": "sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==",
  2264. "license": "MIT",
  2265. "peer": true,
  2266. "dependencies": {
  2267. "array-back": "^3.0.1"
  2268. },
  2269. "engines": {
  2270. "node": ">=4.0.0"
  2271. }
  2272. },
  2273. "node_modules/find-up": {
  2274. "version": "5.0.0",
  2275. "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
  2276. "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
  2277. "license": "MIT",
  2278. "peer": true,
  2279. "dependencies": {
  2280. "locate-path": "^6.0.0",
  2281. "path-exists": "^4.0.0"
  2282. },
  2283. "engines": {
  2284. "node": ">=10"
  2285. },
  2286. "funding": {
  2287. "url": "https://github.com/sponsors/sindresorhus"
  2288. }
  2289. },
  2290. "node_modules/flat": {
  2291. "version": "5.0.2",
  2292. "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz",
  2293. "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==",
  2294. "license": "BSD-3-Clause",
  2295. "peer": true,
  2296. "bin": {
  2297. "flat": "cli.js"
  2298. }
  2299. },
  2300. "node_modules/foreground-child": {
  2301. "version": "3.3.1",
  2302. "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz",
  2303. "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==",
  2304. "license": "ISC",
  2305. "peer": true,
  2306. "dependencies": {
  2307. "cross-spawn": "^7.0.6",
  2308. "signal-exit": "^4.0.1"
  2309. },
  2310. "engines": {
  2311. "node": ">=14"
  2312. },
  2313. "funding": {
  2314. "url": "https://github.com/sponsors/isaacs"
  2315. }
  2316. },
  2317. "node_modules/fs-extra": {
  2318. "version": "7.0.1",
  2319. "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz",
  2320. "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==",
  2321. "license": "MIT",
  2322. "peer": true,
  2323. "dependencies": {
  2324. "graceful-fs": "^4.1.2",
  2325. "jsonfile": "^4.0.0",
  2326. "universalify": "^0.1.0"
  2327. },
  2328. "engines": {
  2329. "node": ">=6 <7 || >=8"
  2330. }
  2331. },
  2332. "node_modules/fs.realpath": {
  2333. "version": "1.0.0",
  2334. "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
  2335. "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
  2336. "license": "ISC",
  2337. "peer": true
  2338. },
  2339. "node_modules/fsevents": {
  2340. "version": "2.3.3",
  2341. "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
  2342. "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
  2343. "hasInstallScript": true,
  2344. "license": "MIT",
  2345. "optional": true,
  2346. "os": [
  2347. "darwin"
  2348. ],
  2349. "engines": {
  2350. "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
  2351. }
  2352. },
  2353. "node_modules/get-caller-file": {
  2354. "version": "2.0.5",
  2355. "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
  2356. "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
  2357. "license": "ISC",
  2358. "peer": true,
  2359. "engines": {
  2360. "node": "6.* || 8.* || >= 10.*"
  2361. }
  2362. },
  2363. "node_modules/get-tsconfig": {
  2364. "version": "4.12.0",
  2365. "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.12.0.tgz",
  2366. "integrity": "sha512-LScr2aNr2FbjAjZh2C6X6BxRx1/x+aTDExct/xyq2XKbYOiG5c0aK7pMsSuyc0brz3ibr/lbQiHD9jzt4lccJw==",
  2367. "license": "MIT",
  2368. "dependencies": {
  2369. "resolve-pkg-maps": "^1.0.0"
  2370. },
  2371. "funding": {
  2372. "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1"
  2373. }
  2374. },
  2375. "node_modules/glob": {
  2376. "version": "10.4.5",
  2377. "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz",
  2378. "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
  2379. "license": "ISC",
  2380. "peer": true,
  2381. "dependencies": {
  2382. "foreground-child": "^3.1.0",
  2383. "jackspeak": "^3.1.2",
  2384. "minimatch": "^9.0.4",
  2385. "minipass": "^7.1.2",
  2386. "package-json-from-dist": "^1.0.0",
  2387. "path-scurry": "^1.11.1"
  2388. },
  2389. "bin": {
  2390. "glob": "dist/esm/bin.mjs"
  2391. },
  2392. "funding": {
  2393. "url": "https://github.com/sponsors/isaacs"
  2394. }
  2395. },
  2396. "node_modules/graceful-fs": {
  2397. "version": "4.2.11",
  2398. "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
  2399. "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
  2400. "license": "ISC",
  2401. "peer": true
  2402. },
  2403. "node_modules/hardhat": {
  2404. "version": "3.0.8",
  2405. "resolved": "https://registry.npmjs.org/hardhat/-/hardhat-3.0.8.tgz",
  2406. "integrity": "sha512-OebUJWdqnYtcDtmuhMc8bnuTrMOMxVyPkl1kUX0YgwiMui37fzSv2qjmbVgE9LCuIyuGxBKkor6CQmvOheSygA==",
  2407. "license": "MIT",
  2408. "dependencies": {
  2409. "@nomicfoundation/edr": "0.12.0-next.7",
  2410. "@nomicfoundation/hardhat-errors": "^3.0.3",
  2411. "@nomicfoundation/hardhat-utils": "^3.0.3",
  2412. "@nomicfoundation/hardhat-zod-utils": "^3.0.1",
  2413. "@nomicfoundation/solidity-analyzer": "^0.1.1",
  2414. "@sentry/core": "^9.4.0",
  2415. "adm-zip": "^0.4.16",
  2416. "chalk": "^5.3.0",
  2417. "chokidar": "^4.0.3",
  2418. "debug": "^4.3.2",
  2419. "enquirer": "^2.3.0",
  2420. "ethereum-cryptography": "^2.2.1",
  2421. "micro-eth-signer": "^0.14.0",
  2422. "p-map": "^7.0.2",
  2423. "resolve.exports": "^2.0.3",
  2424. "semver": "^7.6.3",
  2425. "tsx": "^4.19.3",
  2426. "ws": "^8.18.0",
  2427. "zod": "^3.23.8"
  2428. },
  2429. "bin": {
  2430. "hardhat": "dist/src/cli.js"
  2431. }
  2432. },
  2433. "node_modules/has-flag": {
  2434. "version": "4.0.0",
  2435. "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
  2436. "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
  2437. "license": "MIT",
  2438. "peer": true,
  2439. "engines": {
  2440. "node": ">=8"
  2441. }
  2442. },
  2443. "node_modules/hash.js": {
  2444. "version": "1.1.7",
  2445. "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz",
  2446. "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==",
  2447. "license": "MIT",
  2448. "peer": true,
  2449. "dependencies": {
  2450. "inherits": "^2.0.3",
  2451. "minimalistic-assert": "^1.0.1"
  2452. }
  2453. },
  2454. "node_modules/he": {
  2455. "version": "1.2.0",
  2456. "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz",
  2457. "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==",
  2458. "license": "MIT",
  2459. "peer": true,
  2460. "bin": {
  2461. "he": "bin/he"
  2462. }
  2463. },
  2464. "node_modules/hmac-drbg": {
  2465. "version": "1.0.1",
  2466. "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz",
  2467. "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==",
  2468. "license": "MIT",
  2469. "peer": true,
  2470. "dependencies": {
  2471. "hash.js": "^1.0.3",
  2472. "minimalistic-assert": "^1.0.0",
  2473. "minimalistic-crypto-utils": "^1.0.1"
  2474. }
  2475. },
  2476. "node_modules/immer": {
  2477. "version": "10.0.2",
  2478. "resolved": "https://registry.npmjs.org/immer/-/immer-10.0.2.tgz",
  2479. "integrity": "sha512-Rx3CqeqQ19sxUtYV9CU911Vhy8/721wRFnJv3REVGWUmoAcIwzifTsdmJte/MV+0/XpM35LZdQMBGkRIoLPwQA==",
  2480. "license": "MIT",
  2481. "peer": true,
  2482. "funding": {
  2483. "type": "opencollective",
  2484. "url": "https://opencollective.com/immer"
  2485. }
  2486. },
  2487. "node_modules/inflight": {
  2488. "version": "1.0.6",
  2489. "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
  2490. "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
  2491. "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.",
  2492. "license": "ISC",
  2493. "peer": true,
  2494. "dependencies": {
  2495. "once": "^1.3.0",
  2496. "wrappy": "1"
  2497. }
  2498. },
  2499. "node_modules/inherits": {
  2500. "version": "2.0.4",
  2501. "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
  2502. "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
  2503. "license": "ISC",
  2504. "peer": true
  2505. },
  2506. "node_modules/is-fullwidth-code-point": {
  2507. "version": "3.0.0",
  2508. "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
  2509. "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
  2510. "license": "MIT",
  2511. "peer": true,
  2512. "engines": {
  2513. "node": ">=8"
  2514. }
  2515. },
  2516. "node_modules/is-path-inside": {
  2517. "version": "3.0.3",
  2518. "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz",
  2519. "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==",
  2520. "license": "MIT",
  2521. "peer": true,
  2522. "engines": {
  2523. "node": ">=8"
  2524. }
  2525. },
  2526. "node_modules/is-plain-obj": {
  2527. "version": "2.1.0",
  2528. "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz",
  2529. "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==",
  2530. "license": "MIT",
  2531. "peer": true,
  2532. "engines": {
  2533. "node": ">=8"
  2534. }
  2535. },
  2536. "node_modules/is-unicode-supported": {
  2537. "version": "0.1.0",
  2538. "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz",
  2539. "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==",
  2540. "license": "MIT",
  2541. "peer": true,
  2542. "engines": {
  2543. "node": ">=10"
  2544. },
  2545. "funding": {
  2546. "url": "https://github.com/sponsors/sindresorhus"
  2547. }
  2548. },
  2549. "node_modules/isexe": {
  2550. "version": "2.0.0",
  2551. "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
  2552. "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
  2553. "license": "ISC",
  2554. "peer": true
  2555. },
  2556. "node_modules/jackspeak": {
  2557. "version": "3.4.3",
  2558. "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz",
  2559. "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==",
  2560. "license": "BlueOak-1.0.0",
  2561. "peer": true,
  2562. "dependencies": {
  2563. "@isaacs/cliui": "^8.0.2"
  2564. },
  2565. "funding": {
  2566. "url": "https://github.com/sponsors/isaacs"
  2567. },
  2568. "optionalDependencies": {
  2569. "@pkgjs/parseargs": "^0.11.0"
  2570. }
  2571. },
  2572. "node_modules/js-sha3": {
  2573. "version": "0.8.0",
  2574. "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.8.0.tgz",
  2575. "integrity": "sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==",
  2576. "license": "MIT",
  2577. "peer": true
  2578. },
  2579. "node_modules/js-yaml": {
  2580. "version": "4.1.0",
  2581. "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
  2582. "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
  2583. "license": "MIT",
  2584. "peer": true,
  2585. "dependencies": {
  2586. "argparse": "^2.0.1"
  2587. },
  2588. "bin": {
  2589. "js-yaml": "bin/js-yaml.js"
  2590. }
  2591. },
  2592. "node_modules/json-stream-stringify": {
  2593. "version": "3.1.6",
  2594. "resolved": "https://registry.npmjs.org/json-stream-stringify/-/json-stream-stringify-3.1.6.tgz",
  2595. "integrity": "sha512-x7fpwxOkbhFCaJDJ8vb1fBY3DdSa4AlITaz+HHILQJzdPMnHEFjxPwVUi1ALIbcIxDE0PNe/0i7frnY8QnBQog==",
  2596. "license": "MIT",
  2597. "engines": {
  2598. "node": ">=7.10.1"
  2599. }
  2600. },
  2601. "node_modules/json-stringify-safe": {
  2602. "version": "5.0.1",
  2603. "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
  2604. "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==",
  2605. "license": "ISC",
  2606. "peer": true
  2607. },
  2608. "node_modules/json5": {
  2609. "version": "2.2.3",
  2610. "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
  2611. "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
  2612. "license": "MIT",
  2613. "peer": true,
  2614. "bin": {
  2615. "json5": "lib/cli.js"
  2616. },
  2617. "engines": {
  2618. "node": ">=6"
  2619. }
  2620. },
  2621. "node_modules/jsonfile": {
  2622. "version": "4.0.0",
  2623. "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz",
  2624. "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==",
  2625. "license": "MIT",
  2626. "peer": true,
  2627. "optionalDependencies": {
  2628. "graceful-fs": "^4.1.6"
  2629. }
  2630. },
  2631. "node_modules/kleur": {
  2632. "version": "3.0.3",
  2633. "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz",
  2634. "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==",
  2635. "license": "MIT",
  2636. "peer": true,
  2637. "engines": {
  2638. "node": ">=6"
  2639. }
  2640. },
  2641. "node_modules/locate-path": {
  2642. "version": "6.0.0",
  2643. "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
  2644. "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
  2645. "license": "MIT",
  2646. "peer": true,
  2647. "dependencies": {
  2648. "p-locate": "^5.0.0"
  2649. },
  2650. "engines": {
  2651. "node": ">=10"
  2652. },
  2653. "funding": {
  2654. "url": "https://github.com/sponsors/sindresorhus"
  2655. }
  2656. },
  2657. "node_modules/lodash": {
  2658. "version": "4.17.21",
  2659. "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
  2660. "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
  2661. "license": "MIT",
  2662. "peer": true
  2663. },
  2664. "node_modules/lodash-es": {
  2665. "version": "4.17.21",
  2666. "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz",
  2667. "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==",
  2668. "license": "MIT",
  2669. "peer": true
  2670. },
  2671. "node_modules/lodash.camelcase": {
  2672. "version": "4.3.0",
  2673. "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz",
  2674. "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==",
  2675. "license": "MIT",
  2676. "peer": true
  2677. },
  2678. "node_modules/log-symbols": {
  2679. "version": "4.1.0",
  2680. "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz",
  2681. "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==",
  2682. "license": "MIT",
  2683. "peer": true,
  2684. "dependencies": {
  2685. "chalk": "^4.1.0",
  2686. "is-unicode-supported": "^0.1.0"
  2687. },
  2688. "engines": {
  2689. "node": ">=10"
  2690. },
  2691. "funding": {
  2692. "url": "https://github.com/sponsors/sindresorhus"
  2693. }
  2694. },
  2695. "node_modules/log-symbols/node_modules/ansi-styles": {
  2696. "version": "4.3.0",
  2697. "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
  2698. "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
  2699. "license": "MIT",
  2700. "peer": true,
  2701. "dependencies": {
  2702. "color-convert": "^2.0.1"
  2703. },
  2704. "engines": {
  2705. "node": ">=8"
  2706. },
  2707. "funding": {
  2708. "url": "https://github.com/chalk/ansi-styles?sponsor=1"
  2709. }
  2710. },
  2711. "node_modules/log-symbols/node_modules/chalk": {
  2712. "version": "4.1.2",
  2713. "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
  2714. "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
  2715. "license": "MIT",
  2716. "peer": true,
  2717. "dependencies": {
  2718. "ansi-styles": "^4.1.0",
  2719. "supports-color": "^7.1.0"
  2720. },
  2721. "engines": {
  2722. "node": ">=10"
  2723. },
  2724. "funding": {
  2725. "url": "https://github.com/chalk/chalk?sponsor=1"
  2726. }
  2727. },
  2728. "node_modules/log-symbols/node_modules/supports-color": {
  2729. "version": "7.2.0",
  2730. "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
  2731. "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
  2732. "license": "MIT",
  2733. "peer": true,
  2734. "dependencies": {
  2735. "has-flag": "^4.0.0"
  2736. },
  2737. "engines": {
  2738. "node": ">=8"
  2739. }
  2740. },
  2741. "node_modules/loupe": {
  2742. "version": "3.2.1",
  2743. "resolved": "https://registry.npmjs.org/loupe/-/loupe-3.2.1.tgz",
  2744. "integrity": "sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==",
  2745. "license": "MIT",
  2746. "peer": true
  2747. },
  2748. "node_modules/lru-cache": {
  2749. "version": "10.4.3",
  2750. "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
  2751. "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
  2752. "license": "ISC",
  2753. "peer": true
  2754. },
  2755. "node_modules/micro-eth-signer": {
  2756. "version": "0.14.0",
  2757. "resolved": "https://registry.npmjs.org/micro-eth-signer/-/micro-eth-signer-0.14.0.tgz",
  2758. "integrity": "sha512-5PLLzHiVYPWClEvZIXXFu5yutzpadb73rnQCpUqIHu3No3coFuWQNfE5tkBQJ7djuLYl6aRLaS0MgWJYGoqiBw==",
  2759. "license": "MIT",
  2760. "dependencies": {
  2761. "@noble/curves": "~1.8.1",
  2762. "@noble/hashes": "~1.7.1",
  2763. "micro-packed": "~0.7.2"
  2764. }
  2765. },
  2766. "node_modules/micro-eth-signer/node_modules/@noble/curves": {
  2767. "version": "1.8.2",
  2768. "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.8.2.tgz",
  2769. "integrity": "sha512-vnI7V6lFNe0tLAuJMu+2sX+FcL14TaCWy1qiczg1VwRmPrpQCdq5ESXQMqUc2tluRNf6irBXrWbl1mGN8uaU/g==",
  2770. "license": "MIT",
  2771. "dependencies": {
  2772. "@noble/hashes": "1.7.2"
  2773. },
  2774. "engines": {
  2775. "node": "^14.21.3 || >=16"
  2776. },
  2777. "funding": {
  2778. "url": "https://paulmillr.com/funding/"
  2779. }
  2780. },
  2781. "node_modules/micro-eth-signer/node_modules/@noble/hashes": {
  2782. "version": "1.7.2",
  2783. "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.7.2.tgz",
  2784. "integrity": "sha512-biZ0NUSxyjLLqo6KxEJ1b+C2NAx0wtDoFvCaXHGgUkeHzf3Xc1xKumFKREuT7f7DARNZ/slvYUwFG6B0f2b6hQ==",
  2785. "license": "MIT",
  2786. "engines": {
  2787. "node": "^14.21.3 || >=16"
  2788. },
  2789. "funding": {
  2790. "url": "https://paulmillr.com/funding/"
  2791. }
  2792. },
  2793. "node_modules/micro-packed": {
  2794. "version": "0.7.3",
  2795. "resolved": "https://registry.npmjs.org/micro-packed/-/micro-packed-0.7.3.tgz",
  2796. "integrity": "sha512-2Milxs+WNC00TRlem41oRswvw31146GiSaoCT7s3Xi2gMUglW5QBeqlQaZeHr5tJx9nm3i57LNXPqxOOaWtTYg==",
  2797. "license": "MIT",
  2798. "dependencies": {
  2799. "@scure/base": "~1.2.5"
  2800. },
  2801. "funding": {
  2802. "url": "https://paulmillr.com/funding/"
  2803. }
  2804. },
  2805. "node_modules/micro-packed/node_modules/@scure/base": {
  2806. "version": "1.2.6",
  2807. "resolved": "https://registry.npmjs.org/@scure/base/-/base-1.2.6.tgz",
  2808. "integrity": "sha512-g/nm5FgUa//MCj1gV09zTJTaM6KBAHqLN907YVQqf7zC49+DcO4B1so4ZX07Ef10Twr6nuqYEH9GEggFXA4Fmg==",
  2809. "license": "MIT",
  2810. "funding": {
  2811. "url": "https://paulmillr.com/funding/"
  2812. }
  2813. },
  2814. "node_modules/minimalistic-assert": {
  2815. "version": "1.0.1",
  2816. "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz",
  2817. "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==",
  2818. "license": "ISC",
  2819. "peer": true
  2820. },
  2821. "node_modules/minimalistic-crypto-utils": {
  2822. "version": "1.0.1",
  2823. "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz",
  2824. "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==",
  2825. "license": "MIT",
  2826. "peer": true
  2827. },
  2828. "node_modules/minimatch": {
  2829. "version": "9.0.5",
  2830. "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
  2831. "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
  2832. "license": "ISC",
  2833. "peer": true,
  2834. "dependencies": {
  2835. "brace-expansion": "^2.0.1"
  2836. },
  2837. "engines": {
  2838. "node": ">=16 || 14 >=14.17"
  2839. },
  2840. "funding": {
  2841. "url": "https://github.com/sponsors/isaacs"
  2842. }
  2843. },
  2844. "node_modules/minimist": {
  2845. "version": "1.2.8",
  2846. "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
  2847. "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
  2848. "license": "MIT",
  2849. "peer": true,
  2850. "funding": {
  2851. "url": "https://github.com/sponsors/ljharb"
  2852. }
  2853. },
  2854. "node_modules/minipass": {
  2855. "version": "7.1.2",
  2856. "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz",
  2857. "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
  2858. "license": "ISC",
  2859. "peer": true,
  2860. "engines": {
  2861. "node": ">=16 || 14 >=14.17"
  2862. }
  2863. },
  2864. "node_modules/mkdirp": {
  2865. "version": "1.0.4",
  2866. "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
  2867. "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
  2868. "license": "MIT",
  2869. "peer": true,
  2870. "bin": {
  2871. "mkdirp": "bin/cmd.js"
  2872. },
  2873. "engines": {
  2874. "node": ">=10"
  2875. }
  2876. },
  2877. "node_modules/mocha": {
  2878. "version": "11.7.4",
  2879. "resolved": "https://registry.npmjs.org/mocha/-/mocha-11.7.4.tgz",
  2880. "integrity": "sha512-1jYAaY8x0kAZ0XszLWu14pzsf4KV740Gld4HXkhNTXwcHx4AUEDkPzgEHg9CM5dVcW+zv036tjpsEbLraPJj4w==",
  2881. "license": "MIT",
  2882. "peer": true,
  2883. "dependencies": {
  2884. "browser-stdout": "^1.3.1",
  2885. "chokidar": "^4.0.1",
  2886. "debug": "^4.3.5",
  2887. "diff": "^7.0.0",
  2888. "escape-string-regexp": "^4.0.0",
  2889. "find-up": "^5.0.0",
  2890. "glob": "^10.4.5",
  2891. "he": "^1.2.0",
  2892. "is-path-inside": "^3.0.3",
  2893. "js-yaml": "^4.1.0",
  2894. "log-symbols": "^4.1.0",
  2895. "minimatch": "^9.0.5",
  2896. "ms": "^2.1.3",
  2897. "picocolors": "^1.1.1",
  2898. "serialize-javascript": "^6.0.2",
  2899. "strip-json-comments": "^3.1.1",
  2900. "supports-color": "^8.1.1",
  2901. "workerpool": "^9.2.0",
  2902. "yargs": "^17.7.2",
  2903. "yargs-parser": "^21.1.1",
  2904. "yargs-unparser": "^2.0.0"
  2905. },
  2906. "bin": {
  2907. "_mocha": "bin/_mocha",
  2908. "mocha": "bin/mocha.js"
  2909. },
  2910. "engines": {
  2911. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  2912. }
  2913. },
  2914. "node_modules/ms": {
  2915. "version": "2.1.3",
  2916. "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
  2917. "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
  2918. "license": "MIT"
  2919. },
  2920. "node_modules/ndjson": {
  2921. "version": "2.0.0",
  2922. "resolved": "https://registry.npmjs.org/ndjson/-/ndjson-2.0.0.tgz",
  2923. "integrity": "sha512-nGl7LRGrzugTtaFcJMhLbpzJM6XdivmbkdlaGcrk/LXg2KL/YBC6z1g70xh0/al+oFuVFP8N8kiWRucmeEH/qQ==",
  2924. "license": "BSD-3-Clause",
  2925. "peer": true,
  2926. "dependencies": {
  2927. "json-stringify-safe": "^5.0.1",
  2928. "minimist": "^1.2.5",
  2929. "readable-stream": "^3.6.0",
  2930. "split2": "^3.0.0",
  2931. "through2": "^4.0.0"
  2932. },
  2933. "bin": {
  2934. "ndjson": "cli.js"
  2935. },
  2936. "engines": {
  2937. "node": ">=10"
  2938. }
  2939. },
  2940. "node_modules/once": {
  2941. "version": "1.4.0",
  2942. "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
  2943. "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
  2944. "license": "ISC",
  2945. "peer": true,
  2946. "dependencies": {
  2947. "wrappy": "1"
  2948. }
  2949. },
  2950. "node_modules/p-limit": {
  2951. "version": "3.1.0",
  2952. "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
  2953. "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
  2954. "license": "MIT",
  2955. "peer": true,
  2956. "dependencies": {
  2957. "yocto-queue": "^0.1.0"
  2958. },
  2959. "engines": {
  2960. "node": ">=10"
  2961. },
  2962. "funding": {
  2963. "url": "https://github.com/sponsors/sindresorhus"
  2964. }
  2965. },
  2966. "node_modules/p-locate": {
  2967. "version": "5.0.0",
  2968. "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
  2969. "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
  2970. "license": "MIT",
  2971. "peer": true,
  2972. "dependencies": {
  2973. "p-limit": "^3.0.2"
  2974. },
  2975. "engines": {
  2976. "node": ">=10"
  2977. },
  2978. "funding": {
  2979. "url": "https://github.com/sponsors/sindresorhus"
  2980. }
  2981. },
  2982. "node_modules/p-map": {
  2983. "version": "7.0.3",
  2984. "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.3.tgz",
  2985. "integrity": "sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA==",
  2986. "license": "MIT",
  2987. "engines": {
  2988. "node": ">=18"
  2989. },
  2990. "funding": {
  2991. "url": "https://github.com/sponsors/sindresorhus"
  2992. }
  2993. },
  2994. "node_modules/package-json-from-dist": {
  2995. "version": "1.0.1",
  2996. "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz",
  2997. "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
  2998. "license": "BlueOak-1.0.0",
  2999. "peer": true
  3000. },
  3001. "node_modules/path-exists": {
  3002. "version": "4.0.0",
  3003. "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
  3004. "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
  3005. "license": "MIT",
  3006. "peer": true,
  3007. "engines": {
  3008. "node": ">=8"
  3009. }
  3010. },
  3011. "node_modules/path-is-absolute": {
  3012. "version": "1.0.1",
  3013. "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
  3014. "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
  3015. "license": "MIT",
  3016. "peer": true,
  3017. "engines": {
  3018. "node": ">=0.10.0"
  3019. }
  3020. },
  3021. "node_modules/path-key": {
  3022. "version": "3.1.1",
  3023. "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
  3024. "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
  3025. "license": "MIT",
  3026. "peer": true,
  3027. "engines": {
  3028. "node": ">=8"
  3029. }
  3030. },
  3031. "node_modules/path-scurry": {
  3032. "version": "1.11.1",
  3033. "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz",
  3034. "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
  3035. "license": "BlueOak-1.0.0",
  3036. "peer": true,
  3037. "dependencies": {
  3038. "lru-cache": "^10.2.0",
  3039. "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
  3040. },
  3041. "engines": {
  3042. "node": ">=16 || 14 >=14.18"
  3043. },
  3044. "funding": {
  3045. "url": "https://github.com/sponsors/isaacs"
  3046. }
  3047. },
  3048. "node_modules/pathval": {
  3049. "version": "2.0.1",
  3050. "resolved": "https://registry.npmjs.org/pathval/-/pathval-2.0.1.tgz",
  3051. "integrity": "sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==",
  3052. "license": "MIT",
  3053. "peer": true,
  3054. "engines": {
  3055. "node": ">= 14.16"
  3056. }
  3057. },
  3058. "node_modules/picocolors": {
  3059. "version": "1.1.1",
  3060. "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
  3061. "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
  3062. "license": "ISC",
  3063. "peer": true
  3064. },
  3065. "node_modules/prettier": {
  3066. "version": "2.8.8",
  3067. "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz",
  3068. "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==",
  3069. "license": "MIT",
  3070. "peer": true,
  3071. "bin": {
  3072. "prettier": "bin-prettier.js"
  3073. },
  3074. "engines": {
  3075. "node": ">=10.13.0"
  3076. },
  3077. "funding": {
  3078. "url": "https://github.com/prettier/prettier?sponsor=1"
  3079. }
  3080. },
  3081. "node_modules/prompts": {
  3082. "version": "2.4.2",
  3083. "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz",
  3084. "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==",
  3085. "license": "MIT",
  3086. "peer": true,
  3087. "dependencies": {
  3088. "kleur": "^3.0.3",
  3089. "sisteransi": "^1.0.5"
  3090. },
  3091. "engines": {
  3092. "node": ">= 6"
  3093. }
  3094. },
  3095. "node_modules/randombytes": {
  3096. "version": "2.1.0",
  3097. "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
  3098. "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
  3099. "license": "MIT",
  3100. "peer": true,
  3101. "dependencies": {
  3102. "safe-buffer": "^5.1.0"
  3103. }
  3104. },
  3105. "node_modules/readable-stream": {
  3106. "version": "3.6.2",
  3107. "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
  3108. "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
  3109. "license": "MIT",
  3110. "peer": true,
  3111. "dependencies": {
  3112. "inherits": "^2.0.3",
  3113. "string_decoder": "^1.1.1",
  3114. "util-deprecate": "^1.0.1"
  3115. },
  3116. "engines": {
  3117. "node": ">= 6"
  3118. }
  3119. },
  3120. "node_modules/readdirp": {
  3121. "version": "4.1.2",
  3122. "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz",
  3123. "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==",
  3124. "license": "MIT",
  3125. "engines": {
  3126. "node": ">= 14.18.0"
  3127. },
  3128. "funding": {
  3129. "type": "individual",
  3130. "url": "https://paulmillr.com/funding/"
  3131. }
  3132. },
  3133. "node_modules/reduce-flatten": {
  3134. "version": "2.0.0",
  3135. "resolved": "https://registry.npmjs.org/reduce-flatten/-/reduce-flatten-2.0.0.tgz",
  3136. "integrity": "sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==",
  3137. "license": "MIT",
  3138. "peer": true,
  3139. "engines": {
  3140. "node": ">=6"
  3141. }
  3142. },
  3143. "node_modules/require-directory": {
  3144. "version": "2.1.1",
  3145. "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
  3146. "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
  3147. "license": "MIT",
  3148. "peer": true,
  3149. "engines": {
  3150. "node": ">=0.10.0"
  3151. }
  3152. },
  3153. "node_modules/resolve-pkg-maps": {
  3154. "version": "1.0.0",
  3155. "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz",
  3156. "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==",
  3157. "license": "MIT",
  3158. "funding": {
  3159. "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1"
  3160. }
  3161. },
  3162. "node_modules/resolve.exports": {
  3163. "version": "2.0.3",
  3164. "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.3.tgz",
  3165. "integrity": "sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==",
  3166. "license": "MIT",
  3167. "engines": {
  3168. "node": ">=10"
  3169. }
  3170. },
  3171. "node_modules/rfdc": {
  3172. "version": "1.4.1",
  3173. "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz",
  3174. "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==",
  3175. "license": "MIT"
  3176. },
  3177. "node_modules/safe-buffer": {
  3178. "version": "5.2.1",
  3179. "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
  3180. "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
  3181. "funding": [
  3182. {
  3183. "type": "github",
  3184. "url": "https://github.com/sponsors/feross"
  3185. },
  3186. {
  3187. "type": "patreon",
  3188. "url": "https://www.patreon.com/feross"
  3189. },
  3190. {
  3191. "type": "consulting",
  3192. "url": "https://feross.org/support"
  3193. }
  3194. ],
  3195. "license": "MIT",
  3196. "peer": true
  3197. },
  3198. "node_modules/semver": {
  3199. "version": "7.7.3",
  3200. "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz",
  3201. "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==",
  3202. "license": "ISC",
  3203. "bin": {
  3204. "semver": "bin/semver.js"
  3205. },
  3206. "engines": {
  3207. "node": ">=10"
  3208. }
  3209. },
  3210. "node_modules/serialize-javascript": {
  3211. "version": "6.0.2",
  3212. "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz",
  3213. "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==",
  3214. "license": "BSD-3-Clause",
  3215. "peer": true,
  3216. "dependencies": {
  3217. "randombytes": "^2.1.0"
  3218. }
  3219. },
  3220. "node_modules/shebang-command": {
  3221. "version": "2.0.0",
  3222. "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
  3223. "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
  3224. "license": "MIT",
  3225. "peer": true,
  3226. "dependencies": {
  3227. "shebang-regex": "^3.0.0"
  3228. },
  3229. "engines": {
  3230. "node": ">=8"
  3231. }
  3232. },
  3233. "node_modules/shebang-regex": {
  3234. "version": "3.0.0",
  3235. "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
  3236. "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
  3237. "license": "MIT",
  3238. "peer": true,
  3239. "engines": {
  3240. "node": ">=8"
  3241. }
  3242. },
  3243. "node_modules/signal-exit": {
  3244. "version": "4.1.0",
  3245. "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
  3246. "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
  3247. "license": "ISC",
  3248. "peer": true,
  3249. "engines": {
  3250. "node": ">=14"
  3251. },
  3252. "funding": {
  3253. "url": "https://github.com/sponsors/isaacs"
  3254. }
  3255. },
  3256. "node_modules/sisteransi": {
  3257. "version": "1.0.5",
  3258. "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",
  3259. "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==",
  3260. "license": "MIT",
  3261. "peer": true
  3262. },
  3263. "node_modules/split2": {
  3264. "version": "3.2.2",
  3265. "resolved": "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz",
  3266. "integrity": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==",
  3267. "license": "ISC",
  3268. "peer": true,
  3269. "dependencies": {
  3270. "readable-stream": "^3.0.0"
  3271. }
  3272. },
  3273. "node_modules/string_decoder": {
  3274. "version": "1.3.0",
  3275. "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
  3276. "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
  3277. "license": "MIT",
  3278. "peer": true,
  3279. "dependencies": {
  3280. "safe-buffer": "~5.2.0"
  3281. }
  3282. },
  3283. "node_modules/string-format": {
  3284. "version": "2.0.0",
  3285. "resolved": "https://registry.npmjs.org/string-format/-/string-format-2.0.0.tgz",
  3286. "integrity": "sha512-bbEs3scLeYNXLecRRuk6uJxdXUSj6le/8rNPHChIJTn2V79aXVTR1EH2OH5zLKKoz0V02fOUKZZcw01pLUShZA==",
  3287. "license": "WTFPL OR MIT",
  3288. "peer": true
  3289. },
  3290. "node_modules/string-width": {
  3291. "version": "5.1.2",
  3292. "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
  3293. "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
  3294. "license": "MIT",
  3295. "peer": true,
  3296. "dependencies": {
  3297. "eastasianwidth": "^0.2.0",
  3298. "emoji-regex": "^9.2.2",
  3299. "strip-ansi": "^7.0.1"
  3300. },
  3301. "engines": {
  3302. "node": ">=12"
  3303. },
  3304. "funding": {
  3305. "url": "https://github.com/sponsors/sindresorhus"
  3306. }
  3307. },
  3308. "node_modules/string-width-cjs": {
  3309. "name": "string-width",
  3310. "version": "4.2.3",
  3311. "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
  3312. "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
  3313. "license": "MIT",
  3314. "peer": true,
  3315. "dependencies": {
  3316. "emoji-regex": "^8.0.0",
  3317. "is-fullwidth-code-point": "^3.0.0",
  3318. "strip-ansi": "^6.0.1"
  3319. },
  3320. "engines": {
  3321. "node": ">=8"
  3322. }
  3323. },
  3324. "node_modules/string-width-cjs/node_modules/emoji-regex": {
  3325. "version": "8.0.0",
  3326. "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
  3327. "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
  3328. "license": "MIT",
  3329. "peer": true
  3330. },
  3331. "node_modules/string-width/node_modules/ansi-regex": {
  3332. "version": "6.2.2",
  3333. "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz",
  3334. "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==",
  3335. "license": "MIT",
  3336. "peer": true,
  3337. "engines": {
  3338. "node": ">=12"
  3339. },
  3340. "funding": {
  3341. "url": "https://github.com/chalk/ansi-regex?sponsor=1"
  3342. }
  3343. },
  3344. "node_modules/string-width/node_modules/strip-ansi": {
  3345. "version": "7.1.2",
  3346. "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.2.tgz",
  3347. "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==",
  3348. "license": "MIT",
  3349. "peer": true,
  3350. "dependencies": {
  3351. "ansi-regex": "^6.0.1"
  3352. },
  3353. "engines": {
  3354. "node": ">=12"
  3355. },
  3356. "funding": {
  3357. "url": "https://github.com/chalk/strip-ansi?sponsor=1"
  3358. }
  3359. },
  3360. "node_modules/strip-ansi": {
  3361. "version": "6.0.1",
  3362. "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
  3363. "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
  3364. "license": "MIT",
  3365. "dependencies": {
  3366. "ansi-regex": "^5.0.1"
  3367. },
  3368. "engines": {
  3369. "node": ">=8"
  3370. }
  3371. },
  3372. "node_modules/strip-ansi-cjs": {
  3373. "name": "strip-ansi",
  3374. "version": "6.0.1",
  3375. "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
  3376. "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
  3377. "license": "MIT",
  3378. "peer": true,
  3379. "dependencies": {
  3380. "ansi-regex": "^5.0.1"
  3381. },
  3382. "engines": {
  3383. "node": ">=8"
  3384. }
  3385. },
  3386. "node_modules/strip-json-comments": {
  3387. "version": "3.1.1",
  3388. "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
  3389. "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
  3390. "license": "MIT",
  3391. "peer": true,
  3392. "engines": {
  3393. "node": ">=8"
  3394. },
  3395. "funding": {
  3396. "url": "https://github.com/sponsors/sindresorhus"
  3397. }
  3398. },
  3399. "node_modules/supports-color": {
  3400. "version": "8.1.1",
  3401. "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
  3402. "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
  3403. "license": "MIT",
  3404. "peer": true,
  3405. "dependencies": {
  3406. "has-flag": "^4.0.0"
  3407. },
  3408. "engines": {
  3409. "node": ">=10"
  3410. },
  3411. "funding": {
  3412. "url": "https://github.com/chalk/supports-color?sponsor=1"
  3413. }
  3414. },
  3415. "node_modules/table-layout": {
  3416. "version": "1.0.2",
  3417. "resolved": "https://registry.npmjs.org/table-layout/-/table-layout-1.0.2.tgz",
  3418. "integrity": "sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==",
  3419. "license": "MIT",
  3420. "peer": true,
  3421. "dependencies": {
  3422. "array-back": "^4.0.1",
  3423. "deep-extend": "~0.6.0",
  3424. "typical": "^5.2.0",
  3425. "wordwrapjs": "^4.0.0"
  3426. },
  3427. "engines": {
  3428. "node": ">=8.0.0"
  3429. }
  3430. },
  3431. "node_modules/table-layout/node_modules/array-back": {
  3432. "version": "4.0.2",
  3433. "resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.2.tgz",
  3434. "integrity": "sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==",
  3435. "license": "MIT",
  3436. "peer": true,
  3437. "engines": {
  3438. "node": ">=8"
  3439. }
  3440. },
  3441. "node_modules/table-layout/node_modules/typical": {
  3442. "version": "5.2.0",
  3443. "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz",
  3444. "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==",
  3445. "license": "MIT",
  3446. "peer": true,
  3447. "engines": {
  3448. "node": ">=8"
  3449. }
  3450. },
  3451. "node_modules/through2": {
  3452. "version": "4.0.2",
  3453. "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz",
  3454. "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==",
  3455. "license": "MIT",
  3456. "peer": true,
  3457. "dependencies": {
  3458. "readable-stream": "3"
  3459. }
  3460. },
  3461. "node_modules/ts-command-line-args": {
  3462. "version": "2.5.1",
  3463. "resolved": "https://registry.npmjs.org/ts-command-line-args/-/ts-command-line-args-2.5.1.tgz",
  3464. "integrity": "sha512-H69ZwTw3rFHb5WYpQya40YAX2/w7Ut75uUECbgBIsLmM+BNuYnxsltfyyLMxy6sEeKxgijLTnQtLd0nKd6+IYw==",
  3465. "license": "ISC",
  3466. "peer": true,
  3467. "dependencies": {
  3468. "chalk": "^4.1.0",
  3469. "command-line-args": "^5.1.1",
  3470. "command-line-usage": "^6.1.0",
  3471. "string-format": "^2.0.0"
  3472. },
  3473. "bin": {
  3474. "write-markdown": "dist/write-markdown.js"
  3475. }
  3476. },
  3477. "node_modules/ts-command-line-args/node_modules/ansi-styles": {
  3478. "version": "4.3.0",
  3479. "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
  3480. "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
  3481. "license": "MIT",
  3482. "peer": true,
  3483. "dependencies": {
  3484. "color-convert": "^2.0.1"
  3485. },
  3486. "engines": {
  3487. "node": ">=8"
  3488. },
  3489. "funding": {
  3490. "url": "https://github.com/chalk/ansi-styles?sponsor=1"
  3491. }
  3492. },
  3493. "node_modules/ts-command-line-args/node_modules/chalk": {
  3494. "version": "4.1.2",
  3495. "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
  3496. "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
  3497. "license": "MIT",
  3498. "peer": true,
  3499. "dependencies": {
  3500. "ansi-styles": "^4.1.0",
  3501. "supports-color": "^7.1.0"
  3502. },
  3503. "engines": {
  3504. "node": ">=10"
  3505. },
  3506. "funding": {
  3507. "url": "https://github.com/chalk/chalk?sponsor=1"
  3508. }
  3509. },
  3510. "node_modules/ts-command-line-args/node_modules/supports-color": {
  3511. "version": "7.2.0",
  3512. "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
  3513. "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
  3514. "license": "MIT",
  3515. "peer": true,
  3516. "dependencies": {
  3517. "has-flag": "^4.0.0"
  3518. },
  3519. "engines": {
  3520. "node": ">=8"
  3521. }
  3522. },
  3523. "node_modules/ts-essentials": {
  3524. "version": "7.0.3",
  3525. "resolved": "https://registry.npmjs.org/ts-essentials/-/ts-essentials-7.0.3.tgz",
  3526. "integrity": "sha512-8+gr5+lqO3G84KdiTSMRLtuyJ+nTBVRKuCrK4lidMPdVeEp0uqC875uE5NMcaA7YYMN7XsNiFQuMvasF8HT/xQ==",
  3527. "license": "MIT",
  3528. "peer": true,
  3529. "peerDependencies": {
  3530. "typescript": ">=3.7.0"
  3531. }
  3532. },
  3533. "node_modules/tslib": {
  3534. "version": "2.7.0",
  3535. "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz",
  3536. "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==",
  3537. "license": "0BSD",
  3538. "peer": true
  3539. },
  3540. "node_modules/tsx": {
  3541. "version": "4.20.6",
  3542. "resolved": "https://registry.npmjs.org/tsx/-/tsx-4.20.6.tgz",
  3543. "integrity": "sha512-ytQKuwgmrrkDTFP4LjR0ToE2nqgy886GpvRSpU0JAnrdBYppuY5rLkRUYPU1yCryb24SsKBTL/hlDQAEFVwtZg==",
  3544. "license": "MIT",
  3545. "dependencies": {
  3546. "esbuild": "~0.25.0",
  3547. "get-tsconfig": "^4.7.5"
  3548. },
  3549. "bin": {
  3550. "tsx": "dist/cli.mjs"
  3551. },
  3552. "engines": {
  3553. "node": ">=18.0.0"
  3554. },
  3555. "optionalDependencies": {
  3556. "fsevents": "~2.3.3"
  3557. }
  3558. },
  3559. "node_modules/typechain": {
  3560. "version": "8.3.2",
  3561. "resolved": "https://registry.npmjs.org/typechain/-/typechain-8.3.2.tgz",
  3562. "integrity": "sha512-x/sQYr5w9K7yv3es7jo4KTX05CLxOf7TRWwoHlrjRh8H82G64g+k7VuWPJlgMo6qrjfCulOdfBjiaDtmhFYD/Q==",
  3563. "license": "MIT",
  3564. "peer": true,
  3565. "dependencies": {
  3566. "@types/prettier": "^2.1.1",
  3567. "debug": "^4.3.1",
  3568. "fs-extra": "^7.0.0",
  3569. "glob": "7.1.7",
  3570. "js-sha3": "^0.8.0",
  3571. "lodash": "^4.17.15",
  3572. "mkdirp": "^1.0.4",
  3573. "prettier": "^2.3.1",
  3574. "ts-command-line-args": "^2.2.0",
  3575. "ts-essentials": "^7.0.1"
  3576. },
  3577. "bin": {
  3578. "typechain": "dist/cli/cli.js"
  3579. },
  3580. "peerDependencies": {
  3581. "typescript": ">=4.3.0"
  3582. }
  3583. },
  3584. "node_modules/typechain/node_modules/brace-expansion": {
  3585. "version": "1.1.12",
  3586. "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
  3587. "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
  3588. "license": "MIT",
  3589. "peer": true,
  3590. "dependencies": {
  3591. "balanced-match": "^1.0.0",
  3592. "concat-map": "0.0.1"
  3593. }
  3594. },
  3595. "node_modules/typechain/node_modules/glob": {
  3596. "version": "7.1.7",
  3597. "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz",
  3598. "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==",
  3599. "deprecated": "Glob versions prior to v9 are no longer supported",
  3600. "license": "ISC",
  3601. "peer": true,
  3602. "dependencies": {
  3603. "fs.realpath": "^1.0.0",
  3604. "inflight": "^1.0.4",
  3605. "inherits": "2",
  3606. "minimatch": "^3.0.4",
  3607. "once": "^1.3.0",
  3608. "path-is-absolute": "^1.0.0"
  3609. },
  3610. "engines": {
  3611. "node": "*"
  3612. },
  3613. "funding": {
  3614. "url": "https://github.com/sponsors/isaacs"
  3615. }
  3616. },
  3617. "node_modules/typechain/node_modules/minimatch": {
  3618. "version": "3.1.2",
  3619. "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
  3620. "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
  3621. "license": "ISC",
  3622. "peer": true,
  3623. "dependencies": {
  3624. "brace-expansion": "^1.1.7"
  3625. },
  3626. "engines": {
  3627. "node": "*"
  3628. }
  3629. },
  3630. "node_modules/typescript": {
  3631. "version": "5.9.3",
  3632. "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
  3633. "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
  3634. "license": "Apache-2.0",
  3635. "peer": true,
  3636. "bin": {
  3637. "tsc": "bin/tsc",
  3638. "tsserver": "bin/tsserver"
  3639. },
  3640. "engines": {
  3641. "node": ">=14.17"
  3642. }
  3643. },
  3644. "node_modules/typical": {
  3645. "version": "4.0.0",
  3646. "resolved": "https://registry.npmjs.org/typical/-/typical-4.0.0.tgz",
  3647. "integrity": "sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==",
  3648. "license": "MIT",
  3649. "peer": true,
  3650. "engines": {
  3651. "node": ">=8"
  3652. }
  3653. },
  3654. "node_modules/undici": {
  3655. "version": "6.22.0",
  3656. "resolved": "https://registry.npmjs.org/undici/-/undici-6.22.0.tgz",
  3657. "integrity": "sha512-hU/10obOIu62MGYjdskASR3CUAiYaFTtC9Pa6vHyf//mAipSvSQg6od2CnJswq7fvzNS3zJhxoRkgNVaHurWKw==",
  3658. "license": "MIT",
  3659. "engines": {
  3660. "node": ">=18.17"
  3661. }
  3662. },
  3663. "node_modules/undici-types": {
  3664. "version": "6.19.8",
  3665. "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz",
  3666. "integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==",
  3667. "license": "MIT",
  3668. "peer": true
  3669. },
  3670. "node_modules/universalify": {
  3671. "version": "0.1.2",
  3672. "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz",
  3673. "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==",
  3674. "license": "MIT",
  3675. "peer": true,
  3676. "engines": {
  3677. "node": ">= 4.0.0"
  3678. }
  3679. },
  3680. "node_modules/util-deprecate": {
  3681. "version": "1.0.2",
  3682. "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
  3683. "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
  3684. "license": "MIT",
  3685. "peer": true
  3686. },
  3687. "node_modules/which": {
  3688. "version": "2.0.2",
  3689. "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
  3690. "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
  3691. "license": "ISC",
  3692. "peer": true,
  3693. "dependencies": {
  3694. "isexe": "^2.0.0"
  3695. },
  3696. "bin": {
  3697. "node-which": "bin/node-which"
  3698. },
  3699. "engines": {
  3700. "node": ">= 8"
  3701. }
  3702. },
  3703. "node_modules/wordwrapjs": {
  3704. "version": "4.0.1",
  3705. "resolved": "https://registry.npmjs.org/wordwrapjs/-/wordwrapjs-4.0.1.tgz",
  3706. "integrity": "sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==",
  3707. "license": "MIT",
  3708. "peer": true,
  3709. "dependencies": {
  3710. "reduce-flatten": "^2.0.0",
  3711. "typical": "^5.2.0"
  3712. },
  3713. "engines": {
  3714. "node": ">=8.0.0"
  3715. }
  3716. },
  3717. "node_modules/wordwrapjs/node_modules/typical": {
  3718. "version": "5.2.0",
  3719. "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz",
  3720. "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==",
  3721. "license": "MIT",
  3722. "peer": true,
  3723. "engines": {
  3724. "node": ">=8"
  3725. }
  3726. },
  3727. "node_modules/workerpool": {
  3728. "version": "9.3.4",
  3729. "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-9.3.4.tgz",
  3730. "integrity": "sha512-TmPRQYYSAnnDiEB0P/Ytip7bFGvqnSU6I2BcuSw7Hx+JSg/DsUi5ebYfc8GYaSdpuvOcEs6dXxPurOYpe9QFwg==",
  3731. "license": "Apache-2.0",
  3732. "peer": true
  3733. },
  3734. "node_modules/wrap-ansi": {
  3735. "version": "8.1.0",
  3736. "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
  3737. "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
  3738. "license": "MIT",
  3739. "peer": true,
  3740. "dependencies": {
  3741. "ansi-styles": "^6.1.0",
  3742. "string-width": "^5.0.1",
  3743. "strip-ansi": "^7.0.1"
  3744. },
  3745. "engines": {
  3746. "node": ">=12"
  3747. },
  3748. "funding": {
  3749. "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
  3750. }
  3751. },
  3752. "node_modules/wrap-ansi-cjs": {
  3753. "name": "wrap-ansi",
  3754. "version": "7.0.0",
  3755. "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
  3756. "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
  3757. "license": "MIT",
  3758. "peer": true,
  3759. "dependencies": {
  3760. "ansi-styles": "^4.0.0",
  3761. "string-width": "^4.1.0",
  3762. "strip-ansi": "^6.0.0"
  3763. },
  3764. "engines": {
  3765. "node": ">=10"
  3766. },
  3767. "funding": {
  3768. "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
  3769. }
  3770. },
  3771. "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": {
  3772. "version": "4.3.0",
  3773. "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
  3774. "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
  3775. "license": "MIT",
  3776. "peer": true,
  3777. "dependencies": {
  3778. "color-convert": "^2.0.1"
  3779. },
  3780. "engines": {
  3781. "node": ">=8"
  3782. },
  3783. "funding": {
  3784. "url": "https://github.com/chalk/ansi-styles?sponsor=1"
  3785. }
  3786. },
  3787. "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": {
  3788. "version": "8.0.0",
  3789. "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
  3790. "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
  3791. "license": "MIT",
  3792. "peer": true
  3793. },
  3794. "node_modules/wrap-ansi-cjs/node_modules/string-width": {
  3795. "version": "4.2.3",
  3796. "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
  3797. "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
  3798. "license": "MIT",
  3799. "peer": true,
  3800. "dependencies": {
  3801. "emoji-regex": "^8.0.0",
  3802. "is-fullwidth-code-point": "^3.0.0",
  3803. "strip-ansi": "^6.0.1"
  3804. },
  3805. "engines": {
  3806. "node": ">=8"
  3807. }
  3808. },
  3809. "node_modules/wrap-ansi/node_modules/ansi-regex": {
  3810. "version": "6.2.2",
  3811. "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz",
  3812. "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==",
  3813. "license": "MIT",
  3814. "peer": true,
  3815. "engines": {
  3816. "node": ">=12"
  3817. },
  3818. "funding": {
  3819. "url": "https://github.com/chalk/ansi-regex?sponsor=1"
  3820. }
  3821. },
  3822. "node_modules/wrap-ansi/node_modules/strip-ansi": {
  3823. "version": "7.1.2",
  3824. "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.2.tgz",
  3825. "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==",
  3826. "license": "MIT",
  3827. "peer": true,
  3828. "dependencies": {
  3829. "ansi-regex": "^6.0.1"
  3830. },
  3831. "engines": {
  3832. "node": ">=12"
  3833. },
  3834. "funding": {
  3835. "url": "https://github.com/chalk/strip-ansi?sponsor=1"
  3836. }
  3837. },
  3838. "node_modules/wrappy": {
  3839. "version": "1.0.2",
  3840. "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
  3841. "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
  3842. "license": "ISC",
  3843. "peer": true
  3844. },
  3845. "node_modules/ws": {
  3846. "version": "8.18.3",
  3847. "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz",
  3848. "integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==",
  3849. "license": "MIT",
  3850. "engines": {
  3851. "node": ">=10.0.0"
  3852. },
  3853. "peerDependencies": {
  3854. "bufferutil": "^4.0.1",
  3855. "utf-8-validate": ">=5.0.2"
  3856. },
  3857. "peerDependenciesMeta": {
  3858. "bufferutil": {
  3859. "optional": true
  3860. },
  3861. "utf-8-validate": {
  3862. "optional": true
  3863. }
  3864. }
  3865. },
  3866. "node_modules/y18n": {
  3867. "version": "5.0.8",
  3868. "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
  3869. "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
  3870. "license": "ISC",
  3871. "peer": true,
  3872. "engines": {
  3873. "node": ">=10"
  3874. }
  3875. },
  3876. "node_modules/yargs": {
  3877. "version": "17.7.2",
  3878. "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
  3879. "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
  3880. "license": "MIT",
  3881. "peer": true,
  3882. "dependencies": {
  3883. "cliui": "^8.0.1",
  3884. "escalade": "^3.1.1",
  3885. "get-caller-file": "^2.0.5",
  3886. "require-directory": "^2.1.1",
  3887. "string-width": "^4.2.3",
  3888. "y18n": "^5.0.5",
  3889. "yargs-parser": "^21.1.1"
  3890. },
  3891. "engines": {
  3892. "node": ">=12"
  3893. }
  3894. },
  3895. "node_modules/yargs-parser": {
  3896. "version": "21.1.1",
  3897. "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
  3898. "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
  3899. "license": "ISC",
  3900. "peer": true,
  3901. "engines": {
  3902. "node": ">=12"
  3903. }
  3904. },
  3905. "node_modules/yargs-unparser": {
  3906. "version": "2.0.0",
  3907. "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz",
  3908. "integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==",
  3909. "license": "MIT",
  3910. "peer": true,
  3911. "dependencies": {
  3912. "camelcase": "^6.0.0",
  3913. "decamelize": "^4.0.0",
  3914. "flat": "^5.0.2",
  3915. "is-plain-obj": "^2.1.0"
  3916. },
  3917. "engines": {
  3918. "node": ">=10"
  3919. }
  3920. },
  3921. "node_modules/yargs/node_modules/emoji-regex": {
  3922. "version": "8.0.0",
  3923. "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
  3924. "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
  3925. "license": "MIT",
  3926. "peer": true
  3927. },
  3928. "node_modules/yargs/node_modules/string-width": {
  3929. "version": "4.2.3",
  3930. "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
  3931. "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
  3932. "license": "MIT",
  3933. "peer": true,
  3934. "dependencies": {
  3935. "emoji-regex": "^8.0.0",
  3936. "is-fullwidth-code-point": "^3.0.0",
  3937. "strip-ansi": "^6.0.1"
  3938. },
  3939. "engines": {
  3940. "node": ">=8"
  3941. }
  3942. },
  3943. "node_modules/yocto-queue": {
  3944. "version": "0.1.0",
  3945. "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
  3946. "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
  3947. "license": "MIT",
  3948. "peer": true,
  3949. "engines": {
  3950. "node": ">=10"
  3951. },
  3952. "funding": {
  3953. "url": "https://github.com/sponsors/sindresorhus"
  3954. }
  3955. },
  3956. "node_modules/zod": {
  3957. "version": "3.25.76",
  3958. "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
  3959. "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
  3960. "license": "MIT",
  3961. "funding": {
  3962. "url": "https://github.com/sponsors/colinhacks"
  3963. }
  3964. }
  3965. }
  3966. }