pnpm-lock.yaml 170 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. '@iconify/vue':
  9. specifier: ^5.0.0
  10. version: 5.0.1(vue@3.5.34(typescript@5.9.3))
  11. '@vueuse/core':
  12. specifier: ^14.2.1
  13. version: 14.3.0(vue@3.5.34(typescript@5.9.3))
  14. '@vueuse/motion':
  15. specifier: ^3.0.3
  16. version: 3.0.3(vue@3.5.34(typescript@5.9.3))
  17. '@walletconnect/ethereum-provider':
  18. specifier: ^2.21.10
  19. version: 2.23.9(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(use-sync-external-store@1.2.0(react@18.3.1))(zod@4.4.3)
  20. '@walletconnect/modal':
  21. specifier: ^2.7.0
  22. version: 2.7.0(@types/react@19.2.15)(react@18.3.1)
  23. '@walletconnect/universal-provider':
  24. specifier: ^2.23.9
  25. version: 2.23.9(typescript@5.9.3)(zod@4.4.3)
  26. axios:
  27. specifier: ^1.13.6
  28. version: 1.16.0
  29. buffer:
  30. specifier: ^6.0.3
  31. version: 6.0.3
  32. dayjs:
  33. specifier: ^1.11.20
  34. version: 1.11.20
  35. klinecharts:
  36. specifier: ^10.0.0-beta1
  37. version: 10.0.0-beta1
  38. lightweight-charts:
  39. specifier: ^5.1.0
  40. version: 5.2.0
  41. pinia:
  42. specifier: ^2.1.7
  43. version: 2.3.1(typescript@5.9.3)(vue@3.5.34(typescript@5.9.3))
  44. qrcode:
  45. specifier: ^1.5.4
  46. version: 1.5.4
  47. tronweb:
  48. specifier: ^6.3.0
  49. version: 6.3.0
  50. vee-validate:
  51. specifier: ^4.15.1
  52. version: 4.15.1(vue@3.5.34(typescript@5.9.3))
  53. viem:
  54. specifier: ^2.31.0
  55. version: 2.51.2(typescript@5.9.3)(zod@4.4.3)
  56. vue:
  57. specifier: ^3.4.0
  58. version: 3.5.34(typescript@5.9.3)
  59. vue-i18n:
  60. specifier: ^11.4.2
  61. version: 11.4.4(vue@3.5.34(typescript@5.9.3))
  62. vue-router:
  63. specifier: ^4.3.0
  64. version: 4.6.4(vue@3.5.34(typescript@5.9.3))
  65. zod:
  66. specifier: ^4.3.6
  67. version: 4.4.3
  68. devDependencies:
  69. '@types/qrcode':
  70. specifier: ^1.5.6
  71. version: 1.5.6
  72. '@vitejs/plugin-vue':
  73. specifier: ^5.0.0
  74. version: 5.2.4(vite@5.4.21(@types/node@25.6.2))(vue@3.5.34(typescript@5.9.3))
  75. typescript:
  76. specifier: ^5.3.0
  77. version: 5.9.3
  78. vite:
  79. specifier: ^5.1.0
  80. version: 5.4.21(@types/node@25.6.2)
  81. vue-tsc:
  82. specifier: ^2.0.0
  83. version: 2.2.12(typescript@5.9.3)
  84. packages:
  85. '@adraffy/ens-normalize@1.10.1':
  86. resolution: {integrity: sha512-96Z2IP3mYmF1Xg2cDm8f1gWGf/HUVedQ3FMifV4kG/PQ4yEP51xDtRAEfhVNt5f/uzpNkZHwWQuUcu6D6K+Ekw==}
  87. '@adraffy/ens-normalize@1.11.1':
  88. resolution: {integrity: sha512-nhCBV3quEgesuf7c7KYfperqSS14T8bYuvJ8PcLJp6znkZpFc0AuW4qBtr8eKVyPPe/8RSr7sglCWPU5eaxwKQ==}
  89. '@babel/helper-string-parser@7.27.1':
  90. resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
  91. engines: {node: '>=6.9.0'}
  92. '@babel/helper-validator-identifier@7.28.5':
  93. resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
  94. engines: {node: '>=6.9.0'}
  95. '@babel/parser@7.29.3':
  96. resolution: {integrity: sha512-b3ctpQwp+PROvU/cttc4OYl4MzfJUWy6FZg+PMXfzmt/+39iHVF0sDfqay8TQM3JA2EUOyKcFZt75jWriQijsA==}
  97. engines: {node: '>=6.0.0'}
  98. hasBin: true
  99. '@babel/runtime@7.26.10':
  100. resolution: {integrity: sha512-2WJMeRQPHKSPemqk/awGrAiuFfzBmOIPXKizAsVhWH9YJqLZ0H+HS4c8loHGgW6utJ3E/ejXQUsiGaQy2NZ9Fw==}
  101. engines: {node: '>=6.9.0'}
  102. '@babel/types@7.29.0':
  103. resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
  104. engines: {node: '>=6.9.0'}
  105. '@base-org/account@2.4.0':
  106. resolution: {integrity: sha512-A4Umpi8B9/pqR78D1Yoze4xHyQaujioVRqqO3d6xuDFw9VRtjg6tK3bPlwE0aW+nVH/ntllCpPa2PbI8Rnjcug==}
  107. '@coinbase/cdp-sdk@1.50.0':
  108. resolution: {integrity: sha512-lKK6aC2z8q8C3IA39unNuWc8lgM0hU9mSqkdd7Bncf5xvT28f8G6upexFtJweNwxkeAJwiLSgBkwOhqMK2/OGQ==}
  109. '@esbuild/aix-ppc64@0.21.5':
  110. resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
  111. engines: {node: '>=12'}
  112. cpu: [ppc64]
  113. os: [aix]
  114. '@esbuild/android-arm64@0.21.5':
  115. resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
  116. engines: {node: '>=12'}
  117. cpu: [arm64]
  118. os: [android]
  119. '@esbuild/android-arm@0.21.5':
  120. resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
  121. engines: {node: '>=12'}
  122. cpu: [arm]
  123. os: [android]
  124. '@esbuild/android-x64@0.21.5':
  125. resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
  126. engines: {node: '>=12'}
  127. cpu: [x64]
  128. os: [android]
  129. '@esbuild/darwin-arm64@0.21.5':
  130. resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
  131. engines: {node: '>=12'}
  132. cpu: [arm64]
  133. os: [darwin]
  134. '@esbuild/darwin-x64@0.21.5':
  135. resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
  136. engines: {node: '>=12'}
  137. cpu: [x64]
  138. os: [darwin]
  139. '@esbuild/freebsd-arm64@0.21.5':
  140. resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
  141. engines: {node: '>=12'}
  142. cpu: [arm64]
  143. os: [freebsd]
  144. '@esbuild/freebsd-x64@0.21.5':
  145. resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
  146. engines: {node: '>=12'}
  147. cpu: [x64]
  148. os: [freebsd]
  149. '@esbuild/linux-arm64@0.21.5':
  150. resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
  151. engines: {node: '>=12'}
  152. cpu: [arm64]
  153. os: [linux]
  154. '@esbuild/linux-arm@0.21.5':
  155. resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
  156. engines: {node: '>=12'}
  157. cpu: [arm]
  158. os: [linux]
  159. '@esbuild/linux-ia32@0.21.5':
  160. resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
  161. engines: {node: '>=12'}
  162. cpu: [ia32]
  163. os: [linux]
  164. '@esbuild/linux-loong64@0.21.5':
  165. resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
  166. engines: {node: '>=12'}
  167. cpu: [loong64]
  168. os: [linux]
  169. '@esbuild/linux-mips64el@0.21.5':
  170. resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
  171. engines: {node: '>=12'}
  172. cpu: [mips64el]
  173. os: [linux]
  174. '@esbuild/linux-ppc64@0.21.5':
  175. resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
  176. engines: {node: '>=12'}
  177. cpu: [ppc64]
  178. os: [linux]
  179. '@esbuild/linux-riscv64@0.21.5':
  180. resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
  181. engines: {node: '>=12'}
  182. cpu: [riscv64]
  183. os: [linux]
  184. '@esbuild/linux-s390x@0.21.5':
  185. resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
  186. engines: {node: '>=12'}
  187. cpu: [s390x]
  188. os: [linux]
  189. '@esbuild/linux-x64@0.21.5':
  190. resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
  191. engines: {node: '>=12'}
  192. cpu: [x64]
  193. os: [linux]
  194. '@esbuild/netbsd-x64@0.21.5':
  195. resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
  196. engines: {node: '>=12'}
  197. cpu: [x64]
  198. os: [netbsd]
  199. '@esbuild/openbsd-x64@0.21.5':
  200. resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
  201. engines: {node: '>=12'}
  202. cpu: [x64]
  203. os: [openbsd]
  204. '@esbuild/sunos-x64@0.21.5':
  205. resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
  206. engines: {node: '>=12'}
  207. cpu: [x64]
  208. os: [sunos]
  209. '@esbuild/win32-arm64@0.21.5':
  210. resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
  211. engines: {node: '>=12'}
  212. cpu: [arm64]
  213. os: [win32]
  214. '@esbuild/win32-ia32@0.21.5':
  215. resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
  216. engines: {node: '>=12'}
  217. cpu: [ia32]
  218. os: [win32]
  219. '@esbuild/win32-x64@0.21.5':
  220. resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
  221. engines: {node: '>=12'}
  222. cpu: [x64]
  223. os: [win32]
  224. '@iconify/types@2.0.0':
  225. resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
  226. '@iconify/vue@5.0.1':
  227. resolution: {integrity: sha512-aumwwooJlFJ5H5qYWB6ZTAyM0C8hpfcSVLB9/a3qnH1GGvIJ+FEbpEs4s/HfErYe/M5qZeLjwmESR5fFm3lXEw==}
  228. peerDependencies:
  229. vue: '>=3.0.0'
  230. '@intlify/core-base@11.4.4':
  231. resolution: {integrity: sha512-w/vItlylrAmhebkIbVl5YY8XMCtj8Mb2g70ttxktMYuf5AuRahgEHL2iLgLIsZBIbTSgs4hkUo7ucCL0uTJvOg==}
  232. engines: {node: '>= 22'}
  233. '@intlify/devtools-types@11.4.4':
  234. resolution: {integrity: sha512-PcBLmGmDQsTSVV911P8upzpcLJO1CNVYi/IH6bGnLR2nA+0L963+kXN1ZrisTEnbtw2ewN6HMMSldqzjronA0Q==}
  235. engines: {node: '>= 22'}
  236. '@intlify/message-compiler@11.4.4':
  237. resolution: {integrity: sha512-vn0OAV9pYkJlPPmgnsSm5eAG3mL0+9C/oaded2JY9jmxBbhmUXT3TcAUY8WRgLY9Hte7lkUJKpXrVlYjMXBD2w==}
  238. engines: {node: '>= 22'}
  239. '@intlify/shared@11.4.4':
  240. resolution: {integrity: sha512-QRUCHqda1U6aR14FR0vvXD4+4gj6+fm0AhAozvSuRCw0fCvrmCugWpgiR4xH2NI6s8am6N9p5OhirplsX8ZS3g==}
  241. engines: {node: '>= 22'}
  242. '@jridgewell/gen-mapping@0.3.13':
  243. resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
  244. '@jridgewell/remapping@2.3.5':
  245. resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
  246. '@jridgewell/resolve-uri@3.1.2':
  247. resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
  248. engines: {node: '>=6.0.0'}
  249. '@jridgewell/sourcemap-codec@1.5.5':
  250. resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
  251. '@jridgewell/trace-mapping@0.3.31':
  252. resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
  253. '@lit-labs/ssr-dom-shim@1.6.0':
  254. resolution: {integrity: sha512-VHb0ALPMTlgKjM6yIxxoQNnpKyUKLD04VzeQdsiXkMqkvYlAHxq9glGLmgbb889/1GsohSOAjvQYoiBppXFqrQ==}
  255. '@lit/react@1.0.8':
  256. resolution: {integrity: sha512-p2+YcF+JE67SRX3mMlJ1TKCSTsgyOVdAwd/nxp3NuV1+Cb6MWALbN6nT7Ld4tpmYofcE5kcaSY1YBB9erY+6fw==}
  257. peerDependencies:
  258. '@types/react': 17 || 18 || 19
  259. '@lit/reactive-element@1.6.3':
  260. resolution: {integrity: sha512-QuTgnG52Poic7uM1AN5yJ09QMe0O28e10XzSvWDz02TJiiKee4stsiownEIadWm8nYzyDAyT+gKzUoZmiWQtsQ==}
  261. '@lit/reactive-element@2.1.2':
  262. resolution: {integrity: sha512-pbCDiVMnne1lYUIaYNN5wrwQXDtHaYtg7YEFPeW+hws6U47WeFvISGUWekPGKWOP1ygrs0ef0o1VJMk1exos5A==}
  263. '@motionone/animation@10.18.0':
  264. resolution: {integrity: sha512-9z2p5GFGCm0gBsZbi8rVMOAJCtw1WqBTIPw3ozk06gDvZInBPIsQcHgYogEJ4yuHJ+akuW8g1SEIOpTOvYs8hw==}
  265. '@motionone/dom@10.18.0':
  266. resolution: {integrity: sha512-bKLP7E0eyO4B2UaHBBN55tnppwRnaE3KFfh3Ps9HhnAkar3Cb69kUCJY9as8LrccVYKgHA+JY5dOQqJLOPhF5A==}
  267. '@motionone/easing@10.18.0':
  268. resolution: {integrity: sha512-VcjByo7XpdLS4o9T8t99JtgxkdMcNWD3yHU/n6CLEz3bkmKDRZyYQ/wmSf6daum8ZXqfUAgFeCZSpJZIMxaCzg==}
  269. '@motionone/generators@10.18.0':
  270. resolution: {integrity: sha512-+qfkC2DtkDj4tHPu+AFKVfR/C30O1vYdvsGYaR13W/1cczPrrcjdvYCj0VLFuRMN+lP1xvpNZHCRNM4fBzn1jg==}
  271. '@motionone/svelte@10.16.4':
  272. resolution: {integrity: sha512-zRVqk20lD1xqe+yEDZhMYgftsuHc25+9JSo+r0a0OWUJFocjSV9D/+UGhX4xgJsuwB9acPzXLr20w40VnY2PQA==}
  273. '@motionone/types@10.17.1':
  274. resolution: {integrity: sha512-KaC4kgiODDz8hswCrS0btrVrzyU2CSQKO7Ps90ibBVSQmjkrt2teqta6/sOG59v7+dPnKMAg13jyqtMKV2yJ7A==}
  275. '@motionone/utils@10.18.0':
  276. resolution: {integrity: sha512-3XVF7sgyTSI2KWvTf6uLlBJ5iAgRgmvp3bpuOiQJvInd4nZ19ET8lX5unn30SlmRH7hXbBbH+Gxd0m0klJ3Xtw==}
  277. '@motionone/vue@10.16.4':
  278. resolution: {integrity: sha512-z10PF9JV6SbjFq+/rYabM+8CVlMokgl8RFGvieSGNTmrkQanfHn+15XBrhG3BgUfvmTeSeyShfOHpG0i9zEdcg==}
  279. deprecated: Motion One for Vue is deprecated. Use Oku Motion instead https://oku-ui.com/motion
  280. '@msgpack/msgpack@3.1.2':
  281. resolution: {integrity: sha512-JEW4DEtBzfe8HvUYecLU9e6+XJnKDlUAIve8FvPzF3Kzs6Xo/KuZkZJsDH0wJXl/qEZbeeE7edxDNY3kMs39hQ==}
  282. engines: {node: '>= 18'}
  283. '@msgpack/msgpack@3.1.3':
  284. resolution: {integrity: sha512-47XIizs9XZXvuJgoaJUIE2lFoID8ugvc0jzSHP+Ptfk8nTbnR8g788wv48N03Kx0UkAv559HWRQ3yzOgzlRNUA==}
  285. engines: {node: '>= 18'}
  286. '@noble/ciphers@1.3.0':
  287. resolution: {integrity: sha512-2I0gnIVPtfnMw9ee9h1dJG7tp81+8Ob3OJb3Mv37rx5L40/b0i7djjCVvGOVqc9AEIQyvyu1i6ypKdFw8R8gQw==}
  288. engines: {node: ^14.21.3 || >=16}
  289. '@noble/curves@1.2.0':
  290. resolution: {integrity: sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==}
  291. '@noble/curves@1.4.2':
  292. resolution: {integrity: sha512-TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw==}
  293. '@noble/curves@1.8.0':
  294. resolution: {integrity: sha512-j84kjAbzEnQHaSIhRPUmB3/eVXu2k3dKPl2LOrR8fSOIL+89U+7lV117EWHtq/GHM3ReGHM46iRBdZfpc4HRUQ==}
  295. engines: {node: ^14.21.3 || >=16}
  296. '@noble/curves@1.9.1':
  297. resolution: {integrity: sha512-k11yZxZg+t+gWvBbIswW0yoJlu8cHOC7dhunwOzoWH/mXGBiYyR4YY6hAEK/3EUs4UpB8la1RfdRpeGsFHkWsA==}
  298. engines: {node: ^14.21.3 || >=16}
  299. '@noble/curves@1.9.7':
  300. resolution: {integrity: sha512-gbKGcRUYIjA3/zCCNaWDciTMFI0dCkvou3TL8Zmy5Nc7sJ47a0jtOeZoTaMxkuqRo9cRhjOdZJXegxYE5FN/xw==}
  301. engines: {node: ^14.21.3 || >=16}
  302. '@noble/hashes@1.3.2':
  303. resolution: {integrity: sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==}
  304. engines: {node: '>= 16'}
  305. '@noble/hashes@1.4.0':
  306. resolution: {integrity: sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==}
  307. engines: {node: '>= 16'}
  308. '@noble/hashes@1.7.0':
  309. resolution: {integrity: sha512-HXydb0DgzTpDPwbVeDGCG1gIu7X6+AuU6Zl6av/E/KG8LMsvPntvq+w17CHRpKBmN6Ybdrt1eP3k4cj8DJa78w==}
  310. engines: {node: ^14.21.3 || >=16}
  311. '@noble/hashes@1.8.0':
  312. resolution: {integrity: sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==}
  313. engines: {node: ^14.21.3 || >=16}
  314. '@nuxt/kit@3.21.4':
  315. resolution: {integrity: sha512-XDWhQJsA5hpdFpVSmImQIVXcsANJI07TjT1LZC/AUKJxl/dcM52Rq4uU+b3uqyVl4LZR1fODSDEzLxcdXq4Rmg==}
  316. engines: {node: '>=18.12.0'}
  317. '@phosphor-icons/webcomponents@2.1.5':
  318. resolution: {integrity: sha512-JcvQkZxvcX2jK+QCclm8+e8HXqtdFW9xV4/kk2aL9Y3dJA2oQVt+pzbv1orkumz3rfx4K9mn9fDoMr1He1yr7Q==}
  319. '@reown/appkit-common@1.8.17-wc-circular-dependencies-fix.0':
  320. resolution: {integrity: sha512-wf53EzDmCJ5ICtDY5B1MddVeCwoqDGPVmaxD4wQJLR9uanhBXfKq1sJou+Uj8lZCyI72Z+r9YlsePOlYH2Ge3A==}
  321. '@reown/appkit-controllers@1.8.17-wc-circular-dependencies-fix.0':
  322. resolution: {integrity: sha512-wY5yvMB0o2AwitwDHHO0u2tmqR+n3Crv0AHjIcY037PC3mhF9TPEUKqE9vlrFImQWQRxl0WRfuKfzmUAPxZExw==}
  323. '@reown/appkit-pay@1.8.17-wc-circular-dependencies-fix.0':
  324. resolution: {integrity: sha512-sVE8UT7CDA8zsg3opvbGjSZHSnohOVPF77vP6Ln4G0+vfoiXNhZaZa89Pg0MDjh+KGy0OulWVUdXuZ9jJQFvPg==}
  325. '@reown/appkit-polyfills@1.8.17-wc-circular-dependencies-fix.0':
  326. resolution: {integrity: sha512-OyYavslCegfUlKu8Ah6BZhbqQrK7bImvUm+EKjjvnfNN9J0F9uWMFwbTpZxenBcfAI6cyaD9aTTUunMn5no1Og==}
  327. '@reown/appkit-scaffold-ui@1.8.17-wc-circular-dependencies-fix.0':
  328. resolution: {integrity: sha512-f+SYFGDy+uY1EAvWcH6vZgga1bOuzBvYSKYiRX2QQy8INtZqwwiLLvS4cgm5Yp1WvYRal5RdfZkKl5qha498gw==}
  329. '@reown/appkit-ui@1.8.17-wc-circular-dependencies-fix.0':
  330. resolution: {integrity: sha512-E1u2ZVZV0iFDSgrgtdQTZAXNbI+Lakj8E8V+jJQ47JaEVKv9SROvPu2fVqfIrqHQF68NmAk1dnbYi4luOiM0Fg==}
  331. '@reown/appkit-utils@1.8.17-wc-circular-dependencies-fix.0':
  332. resolution: {integrity: sha512-9El8sYbXDaMYxg4R6LujA965yYQGjNcPMXqympLtzNl1es5qkniW7eAdEpLmZrsaqNrfTaHT1G65wYy7sA595w==}
  333. peerDependencies:
  334. valtio: 2.1.7
  335. '@reown/appkit-wallet@1.8.17-wc-circular-dependencies-fix.0':
  336. resolution: {integrity: sha512-s0RTVNtgPtXGs+eZELVvTu1FRLuN15MyhVS//3/4XafVQkBBJarciXk9pFP71xeSHRzjYR1lXHnVw28687cUvQ==}
  337. '@reown/appkit@1.8.17-wc-circular-dependencies-fix.0':
  338. resolution: {integrity: sha512-7JjEp+JNxRUDOa7CxOCbUbG8uYVo38ojc9FN/fuzJuJADUzKDaH287MLV9qI1ZyQyXA8qXvhXRqjtw+3xo2/7A==}
  339. '@rollup/rollup-android-arm-eabi@4.60.3':
  340. resolution: {integrity: sha512-x35CNW/ANXG3hE/EZpRU8MXX1JDN86hBb2wMGAtltkz7pc6cxgjpy1OMMfDosOQ+2hWqIkag/fGok1Yady9nGw==}
  341. cpu: [arm]
  342. os: [android]
  343. '@rollup/rollup-android-arm64@4.60.3':
  344. resolution: {integrity: sha512-xw3xtkDApIOGayehp2+Rz4zimfkaX65r4t47iy+ymQB2G4iJCBBfj0ogVg5jpvjpn8UWn/+q9tprxleYeNp3Hw==}
  345. cpu: [arm64]
  346. os: [android]
  347. '@rollup/rollup-darwin-arm64@4.60.3':
  348. resolution: {integrity: sha512-vo6Y5Qfpx7/5EaamIwi0WqW2+zfiusVihKatLvtN1VFVy3D13uERk/6gZLU1UiHRL6fDXqj/ELIeVRGnvcTE1g==}
  349. cpu: [arm64]
  350. os: [darwin]
  351. '@rollup/rollup-darwin-x64@4.60.3':
  352. resolution: {integrity: sha512-D+0QGcZhBzTN82weOnsSlY7V7+RMmPuF1CkbxyMAGE8+ZHeUjyb76ZiWmBlCu//AQQONvxcqRbwZTajZKqjuOw==}
  353. cpu: [x64]
  354. os: [darwin]
  355. '@rollup/rollup-freebsd-arm64@4.60.3':
  356. resolution: {integrity: sha512-6HnvHCT7fDyj6R0Ph7A6x8dQS/S38MClRWeDLqc0MdfWkxjiu1HSDYrdPhqSILzjTIC/pnXbbJbo+ft+gy/9hQ==}
  357. cpu: [arm64]
  358. os: [freebsd]
  359. '@rollup/rollup-freebsd-x64@4.60.3':
  360. resolution: {integrity: sha512-KHLgC3WKlUYW3ShFKnnosZDOJ0xjg9zp7au3sIm2bs/tGBeC2ipmvRh/N7JKi0t9Ue20C0dpEshi8WUubg+cnA==}
  361. cpu: [x64]
  362. os: [freebsd]
  363. '@rollup/rollup-linux-arm-gnueabihf@4.60.3':
  364. resolution: {integrity: sha512-DV6fJoxEYWJOvaZIsok7KrYl0tPvga5OZ2yvKHNNYyk/2roMLqQAbGhr78EQ5YhHpnhLKJD3S1WFusAkmUuV5g==}
  365. cpu: [arm]
  366. os: [linux]
  367. '@rollup/rollup-linux-arm-musleabihf@4.60.3':
  368. resolution: {integrity: sha512-mQKoJAzvuOs6F+TZybQO4GOTSMUu7v0WdxEk24krQ/uUxXoPTtHjuaUuPmFhtBcM4K0ons8nrE3JyhTuCFtT/w==}
  369. cpu: [arm]
  370. os: [linux]
  371. '@rollup/rollup-linux-arm64-gnu@4.60.3':
  372. resolution: {integrity: sha512-Whjj2qoiJ6+OOJMGptTYazaJvjOJm+iKHpXQM1P3LzGjt7Ff++Tp7nH4N8J/BUA7R9IHfDyx4DJIflifwnbmIA==}
  373. cpu: [arm64]
  374. os: [linux]
  375. '@rollup/rollup-linux-arm64-musl@4.60.3':
  376. resolution: {integrity: sha512-4YTNHKqGng5+yiZt3mg77nmyuCfmNfX4fPmyUapBcIk+BdwSwmCWGXOUxhXbBEkFHtoN5boLj/5NON+u5QC9tg==}
  377. cpu: [arm64]
  378. os: [linux]
  379. '@rollup/rollup-linux-loong64-gnu@4.60.3':
  380. resolution: {integrity: sha512-SU3kNlhkpI4UqlUc2VXPGK9o886ZsSeGfMAX2ba2b8DKmMXq4AL7KUrkSWVbb7koVqx41Yczx6dx5PNargIrEA==}
  381. cpu: [loong64]
  382. os: [linux]
  383. '@rollup/rollup-linux-loong64-musl@4.60.3':
  384. resolution: {integrity: sha512-6lDLl5h4TXpB1mTf2rQWnAk/LcXrx9vBfu/DT5TIPhvMhRWaZ5MxkIc8u4lJAmBo6klTe1ywXIUHFjylW505sg==}
  385. cpu: [loong64]
  386. os: [linux]
  387. '@rollup/rollup-linux-ppc64-gnu@4.60.3':
  388. resolution: {integrity: sha512-BMo8bOw8evlup/8G+cj5xWtPyp93xPdyoSN16Zy90Q2QZ0ZYRhCt6ZJSwbrRzG9HApFabjwj2p25TUPDWrhzqQ==}
  389. cpu: [ppc64]
  390. os: [linux]
  391. '@rollup/rollup-linux-ppc64-musl@4.60.3':
  392. resolution: {integrity: sha512-E0L8X1dZN1/Rph+5VPF6Xj2G7JJvMACVXtamTJIDrVI44Y3K+G8gQaMEAavbqCGTa16InptiVrX6eM6pmJ+7qA==}
  393. cpu: [ppc64]
  394. os: [linux]
  395. '@rollup/rollup-linux-riscv64-gnu@4.60.3':
  396. resolution: {integrity: sha512-oZJ/WHaVfHUiRAtmTAeo3DcevNsVvH8mbvodjZy7D5QKvCefO371SiKRpxoDcCxB3PTRTLayWBkvmDQKTcX/sw==}
  397. cpu: [riscv64]
  398. os: [linux]
  399. '@rollup/rollup-linux-riscv64-musl@4.60.3':
  400. resolution: {integrity: sha512-Dhbyh7j9FybM3YaTgaHmVALwA8AkUwTPccyCQ79TG9AJUsMQqgN1DDEZNr4+QUfwiWvLDumW5vdwzoeUF+TNxQ==}
  401. cpu: [riscv64]
  402. os: [linux]
  403. '@rollup/rollup-linux-s390x-gnu@4.60.3':
  404. resolution: {integrity: sha512-cJd1X5XhHHlltkaypz1UcWLA8AcoIi1aWhsvaWDskD1oz2eKCypnqvTQ8ykMNI0RSmm7NkTdSqSSD7zM0xa6Ig==}
  405. cpu: [s390x]
  406. os: [linux]
  407. '@rollup/rollup-linux-x64-gnu@4.60.3':
  408. resolution: {integrity: sha512-DAZDBHQfG2oQuhY7mc6I3/qB4LU2fQCjRvxbDwd/Jdvb9fypP4IJ4qmtu6lNjes6B531AI8cg1aKC2di97bUxA==}
  409. cpu: [x64]
  410. os: [linux]
  411. '@rollup/rollup-linux-x64-musl@4.60.3':
  412. resolution: {integrity: sha512-cRxsE8c13mZOh3vP+wLDxpQBRrOHDIGOWyDL93Sy0Ga8y515fBcC2pjUfFwUe5T7tqvTvWbCpg1URM/AXdWIXA==}
  413. cpu: [x64]
  414. os: [linux]
  415. '@rollup/rollup-openbsd-x64@4.60.3':
  416. resolution: {integrity: sha512-QaWcIgRxqEdQdhJqW4DJctsH6HCmo5vHxY0krHSX4jMtOqfzC+dqDGuHM87bu4H8JBeibWx7jFz+h6/4C8wA5Q==}
  417. cpu: [x64]
  418. os: [openbsd]
  419. '@rollup/rollup-openharmony-arm64@4.60.3':
  420. resolution: {integrity: sha512-AaXwSvUi3QIPtroAUw1t5yHGIyqKEXwH54WUocFolZhpGDruJcs8c+xPNDRn4XiQsS7MEwnYsHW2l0MBLDMkWg==}
  421. cpu: [arm64]
  422. os: [openharmony]
  423. '@rollup/rollup-win32-arm64-msvc@4.60.3':
  424. resolution: {integrity: sha512-65LAKM/bAWDqKNEelHlcHvm2V+Vfb8C6INFxQXRHCvaVN1rJfwr4NvdP4FyzUaLqWfaCGaadf6UbTm8xJeYfEg==}
  425. cpu: [arm64]
  426. os: [win32]
  427. '@rollup/rollup-win32-ia32-msvc@4.60.3':
  428. resolution: {integrity: sha512-EEM2gyhBF5MFnI6vMKdX1LAosE627RGBzIoGMdLloPZkXrUN0Ckqgr2Qi8+J3zip/8NVVro3/FjB+tjhZUgUHA==}
  429. cpu: [ia32]
  430. os: [win32]
  431. '@rollup/rollup-win32-x64-gnu@4.60.3':
  432. resolution: {integrity: sha512-E5Eb5H/DpxaoXH++Qkv28RcUJboMopmdDUALBczvHMf7hNIxaDZqwY5lK12UK1BHacSmvupoEWGu+n993Z0y1A==}
  433. cpu: [x64]
  434. os: [win32]
  435. '@rollup/rollup-win32-x64-msvc@4.60.3':
  436. resolution: {integrity: sha512-hPt/bgL5cE+Qp+/TPHBqptcAgPzgj46mPcg/16zNUmbQk0j+mOEQV/+Lqu8QRtDV3Ek95Q6FeFITpuhl6OTsAA==}
  437. cpu: [x64]
  438. os: [win32]
  439. '@safe-global/safe-apps-provider@0.18.6':
  440. resolution: {integrity: sha512-4LhMmjPWlIO8TTDC2AwLk44XKXaK6hfBTWyljDm0HQ6TWlOEijVWNrt2s3OCVMSxlXAcEzYfqyu1daHZooTC2Q==}
  441. '@safe-global/safe-apps-sdk@9.1.0':
  442. resolution: {integrity: sha512-N5p/ulfnnA2Pi2M3YeWjULeWbjo7ei22JwU/IXnhoHzKq3pYCN6ynL9mJBOlvDVv892EgLPCWCOwQk/uBT2v0Q==}
  443. '@safe-global/safe-gateway-typescript-sdk@3.23.1':
  444. resolution: {integrity: sha512-6ORQfwtEJYpalCeVO21L4XXGSdbEMfyp2hEv6cP82afKXSwvse6d3sdelgaPWUxHIsFRkWvHDdzh8IyyKHZKxw==}
  445. engines: {node: '>=16'}
  446. deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
  447. '@scure/base@1.1.9':
  448. resolution: {integrity: sha512-8YKhl8GHiNI/pU2VMaofa2Tor7PJRAjwQLBBuilkJ9L5+13yVbC7JO/wS7piioAvPSwR3JKM1IJ/u4xQzbcXKg==}
  449. '@scure/base@1.2.6':
  450. resolution: {integrity: sha512-g/nm5FgUa//MCj1gV09zTJTaM6KBAHqLN907YVQqf7zC49+DcO4B1so4ZX07Ef10Twr6nuqYEH9GEggFXA4Fmg==}
  451. '@scure/bip32@1.4.0':
  452. resolution: {integrity: sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg==}
  453. '@scure/bip32@1.7.0':
  454. resolution: {integrity: sha512-E4FFX/N3f4B80AKWp5dP6ow+flD1LQZo/w8UnLGYZO674jS6YnYeepycOOksv+vLPSpgN35wgKgy+ybfTb2SMw==}
  455. '@scure/bip39@1.3.0':
  456. resolution: {integrity: sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==}
  457. '@scure/bip39@1.6.0':
  458. resolution: {integrity: sha512-+lF0BbLiJNwVlev4eKelw1WWLaiKXw7sSl8T6FvBlWkdX+94aGJ4o8XjUdlyhTCjd8c+B3KT3JfS8P0bLRNU6A==}
  459. '@solana-program/system@0.10.0':
  460. resolution: {integrity: sha512-Go+LOEZmqmNlfr+Gjy5ZWAdY5HbYzk2RBewD9QinEU/bBSzpFfzqDRT55JjFRBGJUvMgf3C2vfXEGT4i8DSI4g==}
  461. peerDependencies:
  462. '@solana/kit': ^5.0
  463. '@solana-program/token@0.9.0':
  464. resolution: {integrity: sha512-vnZxndd4ED4Fc56sw93cWZ2djEeeOFxtaPS8SPf5+a+JZjKA/EnKqzbE1y04FuMhIVrLERQ8uR8H2h72eZzlsA==}
  465. peerDependencies:
  466. '@solana/kit': ^5.0
  467. '@solana/accounts@5.5.1':
  468. resolution: {integrity: sha512-TfOY9xixg5rizABuLVuZ9XI2x2tmWUC/OoN556xwfDlhBHBjKfszicYYOyD6nbFmwTGYarCmyGIdteXxTXIdhQ==}
  469. engines: {node: '>=20.18.0'}
  470. peerDependencies:
  471. typescript: ^5.0.0
  472. peerDependenciesMeta:
  473. typescript:
  474. optional: true
  475. '@solana/addresses@5.5.1':
  476. resolution: {integrity: sha512-5xoah3Q9G30HQghu/9BiHLb5pzlPKRC3zydQDmE3O9H//WfayxTFppsUDCL6FjYUHqj/wzK6CWHySglc2RkpdA==}
  477. engines: {node: '>=20.18.0'}
  478. peerDependencies:
  479. typescript: ^5.0.0
  480. peerDependenciesMeta:
  481. typescript:
  482. optional: true
  483. '@solana/assertions@5.5.1':
  484. resolution: {integrity: sha512-YTCSWAlGwSlVPnWtWLm3ukz81wH4j2YaCveK+TjpvUU88hTy6fmUqxi0+hvAMAe4zKXpJyj3Az7BrLJRxbIm4Q==}
  485. engines: {node: '>=20.18.0'}
  486. peerDependencies:
  487. typescript: ^5.0.0
  488. peerDependenciesMeta:
  489. typescript:
  490. optional: true
  491. '@solana/codecs-core@5.5.1':
  492. resolution: {integrity: sha512-TgBt//bbKBct0t6/MpA8ElaOA3sa8eYVvR7LGslCZ84WiAwwjCY0lW/lOYsFHJQzwREMdUyuEyy5YWBKtdh8Rw==}
  493. engines: {node: '>=20.18.0'}
  494. peerDependencies:
  495. typescript: ^5.0.0
  496. peerDependenciesMeta:
  497. typescript:
  498. optional: true
  499. '@solana/codecs-data-structures@5.5.1':
  500. resolution: {integrity: sha512-97bJWGyUY9WvBz3mX1UV3YPWGDTez6btCfD0ip3UVEXJbItVuUiOkzcO5iFDUtQT5riKT6xC+Mzl+0nO76gd0w==}
  501. engines: {node: '>=20.18.0'}
  502. peerDependencies:
  503. typescript: ^5.0.0
  504. peerDependenciesMeta:
  505. typescript:
  506. optional: true
  507. '@solana/codecs-numbers@5.5.1':
  508. resolution: {integrity: sha512-rllMIZAHqmtvC0HO/dc/21wDuWaD0B8Ryv8o+YtsICQBuiL/0U4AGwH7Pi5GNFySYk0/crSuwfIqQFtmxNSPFw==}
  509. engines: {node: '>=20.18.0'}
  510. peerDependencies:
  511. typescript: ^5.0.0
  512. peerDependenciesMeta:
  513. typescript:
  514. optional: true
  515. '@solana/codecs-strings@5.5.1':
  516. resolution: {integrity: sha512-7klX4AhfHYA+uKKC/nxRGP2MntbYQCR3N6+v7bk1W/rSxYuhNmt+FN8aoThSZtWIKwN6BEyR1167ka8Co1+E7A==}
  517. engines: {node: '>=20.18.0'}
  518. peerDependencies:
  519. fastestsmallesttextencoderdecoder: ^1.0.22
  520. typescript: ^5.0.0
  521. peerDependenciesMeta:
  522. fastestsmallesttextencoderdecoder:
  523. optional: true
  524. typescript:
  525. optional: true
  526. '@solana/codecs@5.5.1':
  527. resolution: {integrity: sha512-Vea29nJub/bXjfzEV7ZZQ/PWr1pYLZo3z0qW0LQL37uKKVzVFRQlwetd7INk3YtTD3xm9WUYr7bCvYUk3uKy2g==}
  528. engines: {node: '>=20.18.0'}
  529. peerDependencies:
  530. typescript: ^5.0.0
  531. peerDependenciesMeta:
  532. typescript:
  533. optional: true
  534. '@solana/errors@5.5.1':
  535. resolution: {integrity: sha512-vFO3p+S7HoyyrcAectnXbdsMfwUzY2zYFUc2DEe5BwpiE9J1IAxPBGjOWO6hL1bbYdBrlmjNx8DXCslqS+Kcmg==}
  536. engines: {node: '>=20.18.0'}
  537. hasBin: true
  538. peerDependencies:
  539. typescript: ^5.0.0
  540. peerDependenciesMeta:
  541. typescript:
  542. optional: true
  543. '@solana/fast-stable-stringify@5.5.1':
  544. resolution: {integrity: sha512-Ni7s2FN33zTzhTFgRjEbOVFO+UAmK8qi3Iu0/GRFYK4jN696OjKHnboSQH/EacQ+yGqS54bfxf409wU5dsLLCw==}
  545. engines: {node: '>=20.18.0'}
  546. peerDependencies:
  547. typescript: ^5.0.0
  548. peerDependenciesMeta:
  549. typescript:
  550. optional: true
  551. '@solana/functional@5.5.1':
  552. resolution: {integrity: sha512-tTHoJcEQq3gQx5qsdsDJ0LEJeFzwNpXD80xApW9o/PPoCNimI3SALkZl+zNW8VnxRrV3l3yYvfHWBKe/X3WG3w==}
  553. engines: {node: '>=20.18.0'}
  554. peerDependencies:
  555. typescript: ^5.0.0
  556. peerDependenciesMeta:
  557. typescript:
  558. optional: true
  559. '@solana/instruction-plans@5.5.1':
  560. resolution: {integrity: sha512-7z3CB7YMcFKuVvgcnNY8bY6IsZ8LG61Iytbz7HpNVGX2u1RthOs1tRW8luTzSG1MPL0Ox7afyAVMYeFqSPHnaQ==}
  561. engines: {node: '>=20.18.0'}
  562. peerDependencies:
  563. typescript: ^5.0.0
  564. peerDependenciesMeta:
  565. typescript:
  566. optional: true
  567. '@solana/instructions@5.5.1':
  568. resolution: {integrity: sha512-h0G1CG6S+gUUSt0eo6rOtsaXRBwCq1+Js2a+Ps9Bzk9q7YHNFA75/X0NWugWLgC92waRp66hrjMTiYYnLBoWOQ==}
  569. engines: {node: '>=20.18.0'}
  570. peerDependencies:
  571. typescript: ^5.0.0
  572. peerDependenciesMeta:
  573. typescript:
  574. optional: true
  575. '@solana/keys@5.5.1':
  576. resolution: {integrity: sha512-KRD61cL7CRL+b4r/eB9dEoVxIf/2EJ1Pm1DmRYhtSUAJD2dJ5Xw8QFuehobOGm9URqQ7gaQl+Fkc1qvDlsWqKg==}
  577. engines: {node: '>=20.18.0'}
  578. peerDependencies:
  579. typescript: ^5.0.0
  580. peerDependenciesMeta:
  581. typescript:
  582. optional: true
  583. '@solana/kit@5.5.1':
  584. resolution: {integrity: sha512-irKUGiV2yRoyf+4eGQ/ZeCRxa43yjFEL1DUI5B0DkcfZw3cr0VJtVJnrG8OtVF01vT0OUfYOcUn6zJW5TROHvQ==}
  585. engines: {node: '>=20.18.0'}
  586. peerDependencies:
  587. typescript: ^5.0.0
  588. peerDependenciesMeta:
  589. typescript:
  590. optional: true
  591. '@solana/nominal-types@5.5.1':
  592. resolution: {integrity: sha512-I1ImR+kfrLFxN5z22UDiTWLdRZeKtU0J/pkWkO8qm/8WxveiwdIv4hooi8pb6JnlR4mSrWhq0pCIOxDYrL9GIQ==}
  593. engines: {node: '>=20.18.0'}
  594. peerDependencies:
  595. typescript: ^5.0.0
  596. peerDependenciesMeta:
  597. typescript:
  598. optional: true
  599. '@solana/offchain-messages@5.5.1':
  600. resolution: {integrity: sha512-g+xHH95prTU+KujtbOzj8wn+C7ZNoiLhf3hj6nYq3MTyxOXtBEysguc97jJveUZG0K97aIKG6xVUlMutg5yxhw==}
  601. engines: {node: '>=20.18.0'}
  602. peerDependencies:
  603. typescript: ^5.0.0
  604. peerDependenciesMeta:
  605. typescript:
  606. optional: true
  607. '@solana/options@5.5.1':
  608. resolution: {integrity: sha512-eo971c9iLNLmk+yOFyo7yKIJzJ/zou6uKpy6mBuyb/thKtS/haiKIc3VLhyTXty3OH2PW8yOlORJnv4DexJB8A==}
  609. engines: {node: '>=20.18.0'}
  610. peerDependencies:
  611. typescript: ^5.0.0
  612. peerDependenciesMeta:
  613. typescript:
  614. optional: true
  615. '@solana/plugin-core@5.5.1':
  616. resolution: {integrity: sha512-VUZl30lDQFJeiSyNfzU1EjYt2QZvoBFKEwjn1lilUJw7KgqD5z7mbV7diJhT+dLFs36i0OsjXvq5kSygn8YJ3A==}
  617. engines: {node: '>=20.18.0'}
  618. peerDependencies:
  619. typescript: ^5.0.0
  620. peerDependenciesMeta:
  621. typescript:
  622. optional: true
  623. '@solana/programs@5.5.1':
  624. resolution: {integrity: sha512-7U9kn0Jsx1NuBLn5HRTFYh78MV4XN145Yc3WP/q5BlqAVNlMoU9coG5IUTJIG847TUqC1lRto3Dnpwm6T4YRpA==}
  625. engines: {node: '>=20.18.0'}
  626. peerDependencies:
  627. typescript: ^5.0.0
  628. peerDependenciesMeta:
  629. typescript:
  630. optional: true
  631. '@solana/promises@5.5.1':
  632. resolution: {integrity: sha512-T9lfuUYkGykJmppEcssNiCf6yiYQxJkhiLPP+pyAc2z84/7r3UVIb2tNJk4A9sucS66pzJnVHZKcZVGUUp6wzA==}
  633. engines: {node: '>=20.18.0'}
  634. peerDependencies:
  635. typescript: ^5.0.0
  636. peerDependenciesMeta:
  637. typescript:
  638. optional: true
  639. '@solana/rpc-api@5.5.1':
  640. resolution: {integrity: sha512-XWOQQPhKl06Vj0xi3RYHAc6oEQd8B82okYJ04K7N0Vvy3J4PN2cxeK7klwkjgavdcN9EVkYCChm2ADAtnztKnA==}
  641. engines: {node: '>=20.18.0'}
  642. peerDependencies:
  643. typescript: ^5.0.0
  644. peerDependenciesMeta:
  645. typescript:
  646. optional: true
  647. '@solana/rpc-parsed-types@5.5.1':
  648. resolution: {integrity: sha512-HEi3G2nZqGEsa3vX6U0FrXLaqnUCg4SKIUrOe8CezD+cSFbRTOn3rCLrUmJrhVyXlHoQVaRO9mmeovk31jWxJg==}
  649. engines: {node: '>=20.18.0'}
  650. peerDependencies:
  651. typescript: ^5.0.0
  652. peerDependenciesMeta:
  653. typescript:
  654. optional: true
  655. '@solana/rpc-spec-types@5.5.1':
  656. resolution: {integrity: sha512-6OFKtRpIEJQs8Jb2C4OO8KyP2h2Hy1MFhatMAoXA+0Ik8S3H+CicIuMZvGZ91mIu/tXicuOOsNNLu3HAkrakrw==}
  657. engines: {node: '>=20.18.0'}
  658. peerDependencies:
  659. typescript: ^5.0.0
  660. peerDependenciesMeta:
  661. typescript:
  662. optional: true
  663. '@solana/rpc-spec@5.5.1':
  664. resolution: {integrity: sha512-m3LX2bChm3E3by4mQrH4YwCAFY57QBzuUSWqlUw7ChuZ+oLLOq7b2czi4i6L4Vna67j3eCmB3e+4tqy1j5wy7Q==}
  665. engines: {node: '>=20.18.0'}
  666. peerDependencies:
  667. typescript: ^5.0.0
  668. peerDependenciesMeta:
  669. typescript:
  670. optional: true
  671. '@solana/rpc-subscriptions-api@5.5.1':
  672. resolution: {integrity: sha512-5Oi7k+GdeS8xR2ly1iuSFkAv6CZqwG0Z6b1QZKbEgxadE1XGSDrhM2cn59l+bqCozUWCqh4c/A2znU/qQjROlw==}
  673. engines: {node: '>=20.18.0'}
  674. peerDependencies:
  675. typescript: ^5.0.0
  676. peerDependenciesMeta:
  677. typescript:
  678. optional: true
  679. '@solana/rpc-subscriptions-channel-websocket@5.5.1':
  680. resolution: {integrity: sha512-7tGfBBrYY8TrngOyxSHoCU5shy86iA9SRMRrPSyBhEaZRAk6dnbdpmUTez7gtdVo0BCvh9nzQtUycKWSS7PnFQ==}
  681. engines: {node: '>=20.18.0'}
  682. peerDependencies:
  683. typescript: ^5.0.0
  684. peerDependenciesMeta:
  685. typescript:
  686. optional: true
  687. '@solana/rpc-subscriptions-spec@5.5.1':
  688. resolution: {integrity: sha512-iq+rGq5fMKP3/mKHPNB6MC8IbVW41KGZg83Us/+LE3AWOTWV1WT20KT2iH1F1ik9roi42COv/TpoZZvhKj45XQ==}
  689. engines: {node: '>=20.18.0'}
  690. peerDependencies:
  691. typescript: ^5.0.0
  692. peerDependenciesMeta:
  693. typescript:
  694. optional: true
  695. '@solana/rpc-subscriptions@5.5.1':
  696. resolution: {integrity: sha512-CTMy5bt/6mDh4tc6vUJms9EcuZj3xvK0/xq8IQ90rhkpYvate91RjBP+egvjgSayUg9yucU9vNuUpEjz4spM7w==}
  697. engines: {node: '>=20.18.0'}
  698. peerDependencies:
  699. typescript: ^5.0.0
  700. peerDependenciesMeta:
  701. typescript:
  702. optional: true
  703. '@solana/rpc-transformers@5.5.1':
  704. resolution: {integrity: sha512-OsWqLCQdcrRJKvHiMmwFhp9noNZ4FARuMkHT5us3ustDLXaxOjF0gfqZLnMkulSLcKt7TGXqMhBV+HCo7z5M8Q==}
  705. engines: {node: '>=20.18.0'}
  706. peerDependencies:
  707. typescript: ^5.0.0
  708. peerDependenciesMeta:
  709. typescript:
  710. optional: true
  711. '@solana/rpc-transport-http@5.5.1':
  712. resolution: {integrity: sha512-yv8GoVSHqEV0kUJEIhkdOVkR2SvJ6yoWC51cJn2rSV7plr6huLGe0JgujCmB7uZhhaLbcbP3zxXxu9sOjsi7Fg==}
  713. engines: {node: '>=20.18.0'}
  714. peerDependencies:
  715. typescript: ^5.0.0
  716. peerDependenciesMeta:
  717. typescript:
  718. optional: true
  719. '@solana/rpc-types@5.5.1':
  720. resolution: {integrity: sha512-bibTFQ7PbHJJjGJPmfYC2I+/5CRFS4O2p9WwbFraX1Keeel+nRrt/NBXIy8veP5AEn2sVJIyJPpWBRpCx1oATA==}
  721. engines: {node: '>=20.18.0'}
  722. peerDependencies:
  723. typescript: ^5.0.0
  724. peerDependenciesMeta:
  725. typescript:
  726. optional: true
  727. '@solana/rpc@5.5.1':
  728. resolution: {integrity: sha512-ku8zTUMrkCWci66PRIBC+1mXepEnZH/q1f3ck0kJZ95a06bOTl5KU7HeXWtskkyefzARJ5zvCs54AD5nxjQJ+A==}
  729. engines: {node: '>=20.18.0'}
  730. peerDependencies:
  731. typescript: ^5.0.0
  732. peerDependenciesMeta:
  733. typescript:
  734. optional: true
  735. '@solana/signers@5.5.1':
  736. resolution: {integrity: sha512-FY0IVaBT2kCAze55vEieR6hag4coqcuJ31Aw3hqRH7mv6sV8oqwuJmUrx+uFwOp1gwd5OEAzlv6N4hOOple4sQ==}
  737. engines: {node: '>=20.18.0'}
  738. peerDependencies:
  739. typescript: ^5.0.0
  740. peerDependenciesMeta:
  741. typescript:
  742. optional: true
  743. '@solana/subscribable@5.5.1':
  744. resolution: {integrity: sha512-9K0PsynFq0CsmK1CDi5Y2vUIJpCqkgSS5yfDN0eKPgHqEptLEaia09Kaxc90cSZDZU5mKY/zv1NBmB6Aro9zQQ==}
  745. engines: {node: '>=20.18.0'}
  746. peerDependencies:
  747. typescript: ^5.0.0
  748. peerDependenciesMeta:
  749. typescript:
  750. optional: true
  751. '@solana/sysvars@5.5.1':
  752. resolution: {integrity: sha512-k3Quq87Mm+geGUu1GWv6knPk0ALsfY6EKSJGw9xUJDHzY/RkYSBnh0RiOrUhtFm2TDNjOailg8/m0VHmi3reFA==}
  753. engines: {node: '>=20.18.0'}
  754. peerDependencies:
  755. typescript: ^5.0.0
  756. peerDependenciesMeta:
  757. typescript:
  758. optional: true
  759. '@solana/transaction-confirmation@5.5.1':
  760. resolution: {integrity: sha512-j4mKlYPHEyu+OD7MBt3jRoX4ScFgkhZC6H65on4Fux6LMScgivPJlwnKoZMnsgxFgWds0pl+BYzSiALDsXlYtw==}
  761. engines: {node: '>=20.18.0'}
  762. peerDependencies:
  763. typescript: ^5.0.0
  764. peerDependenciesMeta:
  765. typescript:
  766. optional: true
  767. '@solana/transaction-messages@5.5.1':
  768. resolution: {integrity: sha512-aXyhMCEaAp3M/4fP0akwBBQkFPr4pfwoC5CLDq999r/FUwDax2RE/h4Ic7h2Xk+JdcUwsb+rLq85Y52hq84XvQ==}
  769. engines: {node: '>=20.18.0'}
  770. peerDependencies:
  771. typescript: ^5.0.0
  772. peerDependenciesMeta:
  773. typescript:
  774. optional: true
  775. '@solana/transactions@5.5.1':
  776. resolution: {integrity: sha512-8hHtDxtqalZ157pnx6p8k10D7J/KY/biLzfgh9R09VNLLY3Fqi7kJvJCr7M2ik3oRll56pxhraAGCC9yIT6eOA==}
  777. engines: {node: '>=20.18.0'}
  778. peerDependencies:
  779. typescript: ^5.0.0
  780. peerDependenciesMeta:
  781. typescript:
  782. optional: true
  783. '@types/estree@1.0.8':
  784. resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
  785. '@types/estree@1.0.9':
  786. resolution: {integrity: sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==}
  787. '@types/node@22.7.5':
  788. resolution: {integrity: sha512-jML7s2NAzMWc//QSJ1a3prpk78cOPchGvXJsC3C6R6PSMoooztvRVQEz89gmBTBY1SPMaqo5teB4uNHPdetShQ==}
  789. '@types/node@25.6.2':
  790. resolution: {integrity: sha512-sokuT28dxf9JT5Kady1fsXOvI4HVpjZa95NKT5y9PNTIrs2AsobR4GFAA90ZG8M+nxVRLysCXsVj6eGC7Vbrlw==}
  791. '@types/qrcode@1.5.6':
  792. resolution: {integrity: sha512-te7NQcV2BOvdj2b1hCAHzAoMNuj65kNBMz0KBaxM6c3VGBOhU0dURQKOtH8CFNI/dsKkwlv32p26qYQTWoB5bw==}
  793. '@types/react@19.2.15':
  794. resolution: {integrity: sha512-eRwcGNHve+E8qtEQSSRl6urh+rFop4v8gm6O8rGv25CodbvFdLjA1vVQ1KkiFE0w0UPOnb8tDiFKL5lp0rtY5Q==}
  795. '@types/trusted-types@2.0.7':
  796. resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==}
  797. '@types/web-bluetooth@0.0.21':
  798. resolution: {integrity: sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==}
  799. '@vitejs/plugin-vue@5.2.4':
  800. resolution: {integrity: sha512-7Yx/SXSOcQq5HiiV3orevHUFn+pmMB4cgbEkDYgnkUWb0WfeQ/wa2yFv6D5ICiCQOVpjA7vYDXrC7AGO8yjDHA==}
  801. engines: {node: ^18.0.0 || >=20.0.0}
  802. peerDependencies:
  803. vite: ^5.0.0 || ^6.0.0
  804. vue: ^3.2.25
  805. '@volar/language-core@2.4.15':
  806. resolution: {integrity: sha512-3VHw+QZU0ZG9IuQmzT68IyN4hZNd9GchGPhbD9+pa8CVv7rnoOZwo7T8weIbrRmihqy3ATpdfXFnqRrfPVK6CA==}
  807. '@volar/source-map@2.4.15':
  808. resolution: {integrity: sha512-CPbMWlUN6hVZJYGcU/GSoHu4EnCHiLaXI9n8c9la6RaI9W5JHX+NqG+GSQcB0JdC2FIBLdZJwGsfKyBB71VlTg==}
  809. '@volar/typescript@2.4.15':
  810. resolution: {integrity: sha512-2aZ8i0cqPGjXb4BhkMsPYDkkuc2ZQ6yOpqwAuNwUoncELqoy5fRgOQtLR9gB0g902iS0NAkvpIzs27geVyVdPg==}
  811. '@vue/compiler-core@3.5.34':
  812. resolution: {integrity: sha512-s9cLyK5mLcvZ4Agva5QgRsQyLKvts9WbU9DB6NqiZkkGEdwmcEiylj5Jbwkp680drF/NNCV8OlAJSe+yMLxaJw==}
  813. '@vue/compiler-dom@3.5.34':
  814. resolution: {integrity: sha512-EbF/T++k0e2MMZlJsBhzK8Sgwt0HcIPOhzn1CTB/lv6sQcyk+OWf8YeiLxZp3ro7MbbLcAfAJ6sEvjFWuNgUCw==}
  815. '@vue/compiler-sfc@3.5.34':
  816. resolution: {integrity: sha512-D/ihr6uZeIt6r+pVZf46RWT1fAsLFMbUP7k8G1VkiiWexriED9GrX3echHd4Abbt17zjlfiFJ8z7a3BxZOPNjg==}
  817. '@vue/compiler-ssr@3.5.34':
  818. resolution: {integrity: sha512-cDtTHKibkThKGHH1SP+WdccquNRYQDFH6rRjQCqT9G2ltFAfoR5pUftpab/z+aM5mW9HLLVQW7hfKKQe/1GBeQ==}
  819. '@vue/compiler-vue2@2.7.16':
  820. resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
  821. '@vue/devtools-api@6.6.4':
  822. resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
  823. '@vue/devtools-api@7.7.9':
  824. resolution: {integrity: sha512-kIE8wvwlcZ6TJTbNeU2HQNtaxLx3a84aotTITUuL/4bzfPxzajGBOoqjMhwZJ8L9qFYDU/lAYMEEm11dnZOD6g==}
  825. '@vue/devtools-kit@7.7.9':
  826. resolution: {integrity: sha512-PyQ6odHSgiDVd4hnTP+aDk2X4gl2HmLDfiyEnn3/oV+ckFDuswRs4IbBT7vacMuGdwY/XemxBoh302ctbsptuA==}
  827. '@vue/devtools-shared@7.7.9':
  828. resolution: {integrity: sha512-iWAb0v2WYf0QWmxCGy0seZNDPdO3Sp5+u78ORnyeonS6MT4PC7VPrryX2BpMJrwlDeaZ6BD4vP4XKjK0SZqaeA==}
  829. '@vue/language-core@2.2.12':
  830. resolution: {integrity: sha512-IsGljWbKGU1MZpBPN+BvPAdr55YPkj2nB/TBNGNC32Vy2qLG25DYu/NBN2vNtZqdRbTRjaoYrahLrToim2NanA==}
  831. peerDependencies:
  832. typescript: '*'
  833. peerDependenciesMeta:
  834. typescript:
  835. optional: true
  836. '@vue/reactivity@3.5.34':
  837. resolution: {integrity: sha512-y9XDjCEuBp+98k+UL5dbYkh57AHU4o6cxZedOPXw3bmrZZYLQsVHguGurq7hVrPCSrQtrnz1f9dssyFr+dMXfQ==}
  838. '@vue/runtime-core@3.5.34':
  839. resolution: {integrity: sha512-mKeBYvu8tcMSLhypAHBmriUFfWXKTCF/23Z4jiCoYK3UtWepkliViNLuR90V9XOyD62mUxs9p1jsrpK3CCGIzw==}
  840. '@vue/runtime-dom@3.5.34':
  841. resolution: {integrity: sha512-e8kZzERmCwUnBRVsgSQlAfrfU2rGoy0FFKPBXSlfEjc/O3KfA7QP0t1/2ZylrbchjmIKB4dPTd07A6WPr0eOrg==}
  842. '@vue/server-renderer@3.5.34':
  843. resolution: {integrity: sha512-nHxmJoTrKsmrkbILRhkC9gY1G3moZbJTqCzDd7DOOzG5KH9oeJ0Unqrff5f9v0pW//jES05ZkJcNtfE8JjOIew==}
  844. peerDependencies:
  845. vue: 3.5.34
  846. '@vue/shared@3.5.34':
  847. resolution: {integrity: sha512-24uqU4OIiX29ryC3MeWid/Xf2fa2EFRUVLb77nRhk+UrTVrh/XiGtFAFmJBAtBRbjwNdsPRP+jj/OL27Eg1NDA==}
  848. '@vueuse/core@13.9.0':
  849. resolution: {integrity: sha512-ts3regBQyURfCE2BcytLqzm8+MmLlo5Ln/KLoxDVcsZ2gzIwVNnQpQOL/UKV8alUqjSZOlpFZcRNsLRqj+OzyA==}
  850. peerDependencies:
  851. vue: ^3.5.0
  852. '@vueuse/core@14.3.0':
  853. resolution: {integrity: sha512-aHfz47g0ZhMtTVHmIzMVpJy8ePhhOy68GY5bv110+5DVtZ+W7BsOx+m61UNQqfrWyPztIHIanWa3E2tib3NFIw==}
  854. peerDependencies:
  855. vue: ^3.5.0
  856. '@vueuse/metadata@13.9.0':
  857. resolution: {integrity: sha512-1AFRvuiGphfF7yWixZa0KwjYH8ulyjDCC0aFgrGRz8+P4kvDFSdXLVfTk5xAN9wEuD1J6z4/myMoYbnHoX07zg==}
  858. '@vueuse/metadata@14.3.0':
  859. resolution: {integrity: sha512-BwxmbAzwAVF50+MW57GXOUEV61nFBGnlBvrTqj49PqWJu3uw7hdu72ztXeZ33RdZtDY6kO+bfCAE1PCn88Tktw==}
  860. '@vueuse/motion@3.0.3':
  861. resolution: {integrity: sha512-4B+ITsxCI9cojikvrpaJcLXyq0spj3sdlzXjzesWdMRd99hhtFI6OJ/1JsqwtF73YooLe0hUn/xDR6qCtmn5GQ==}
  862. peerDependencies:
  863. vue: '>=3.0.0'
  864. '@vueuse/shared@13.9.0':
  865. resolution: {integrity: sha512-e89uuTLMh0U5cZ9iDpEI2senqPGfbPRTHM/0AaQkcxnpqjkZqDYP8rpfm7edOz8s+pOCOROEy1PIveSW8+fL5g==}
  866. peerDependencies:
  867. vue: ^3.5.0
  868. '@vueuse/shared@14.3.0':
  869. resolution: {integrity: sha512-bZpge9eSXwa4ToSiqJ7j6KRwhAsneMFoSz3LMWKQDkqimm3D/tbFlrklrs/IOqC8tEcYmXQZJ6N0UrjhBirVCg==}
  870. peerDependencies:
  871. vue: ^3.5.0
  872. '@wallet-standard/base@1.1.0':
  873. resolution: {integrity: sha512-DJDQhjKmSNVLKWItoKThJS+CsJQjR9AOBOirBVT1F9YpRyC9oYHE+ZnSf8y8bxUphtKqdQMPVQ2mHohYdRvDVQ==}
  874. engines: {node: '>=16'}
  875. '@wallet-standard/wallet@1.1.0':
  876. resolution: {integrity: sha512-Gt8TnSlDZpAl+RWOOAB/kuvC7RpcdWAlFbHNoi4gsXsfaWa1QCT6LBcfIYTPdOZC9OVZUDwqGuGAcqZejDmHjg==}
  877. engines: {node: '>=16'}
  878. '@walletconnect/core@2.23.2':
  879. resolution: {integrity: sha512-KkaTELRu8t/mt3J9doCQ1fBGCbYsCNfpo2JpKdCwKQR7PVjVKeVpYQK/blVkA5m6uLPpBtVRbOMKjnHW1m7JLw==}
  880. engines: {node: '>=18.20.8'}
  881. '@walletconnect/core@2.23.9':
  882. resolution: {integrity: sha512-ws4WG8LeagUo2ERRo02HryXRcpwIRmCQ3pHLW5gWbVReLXXIpgk6ZAfID3fEGHevIwwnHSGww+nNhNpdXyiq0g==}
  883. engines: {node: '>=18.20.8'}
  884. '@walletconnect/environment@1.0.1':
  885. resolution: {integrity: sha512-T426LLZtHj8e8rYnKfzsw1aG6+M0BT1ZxayMdv/p8yM0MU+eJDISqNY3/bccxRr4LrF9csq02Rhqt08Ibl0VRg==}
  886. '@walletconnect/ethereum-provider@2.23.9':
  887. resolution: {integrity: sha512-Cb72KWl9S6mMs+c1MVGlSx07Dap1LFznYyWrg/XT5B8VtBKaH9Sw2lAvAL0ajGet6J5sq8sUx1pkg68tZwkqmA==}
  888. '@walletconnect/events@1.0.1':
  889. resolution: {integrity: sha512-NPTqaoi0oPBVNuLv7qPaJazmGHs5JGyO8eEAk5VGKmJzDR7AHzD4k6ilox5kxk1iwiOnFopBOOMLs86Oa76HpQ==}
  890. '@walletconnect/heartbeat@1.2.2':
  891. resolution: {integrity: sha512-uASiRmC5MwhuRuf05vq4AT48Pq8RMi876zV8rr8cV969uTOzWdB/k+Lj5yI2PBtB1bGQisGen7MM1GcZlQTBXw==}
  892. '@walletconnect/jsonrpc-http-connection@1.0.8':
  893. resolution: {integrity: sha512-+B7cRuaxijLeFDJUq5hAzNyef3e3tBDIxyaCNmFtjwnod5AGis3RToNqzFU33vpVcxFhofkpE7Cx+5MYejbMGw==}
  894. '@walletconnect/jsonrpc-provider@1.0.14':
  895. resolution: {integrity: sha512-rtsNY1XqHvWj0EtITNeuf8PHMvlCLiS3EjQL+WOkxEOA4KPxsohFnBDeyPYiNm4ZvkQdLnece36opYidmtbmow==}
  896. '@walletconnect/jsonrpc-types@1.0.4':
  897. resolution: {integrity: sha512-P6679fG/M+wuWg9TY8mh6xFSdYnFyFjwFelxyISxMDrlbXokorEVXYOxiqEbrU3x1BmBoCAJJ+vtEaEoMlpCBQ==}
  898. '@walletconnect/jsonrpc-utils@1.0.8':
  899. resolution: {integrity: sha512-vdeb03bD8VzJUL6ZtzRYsFMq1eZQcM3EAzT0a3st59dyLfJ0wq+tKMpmGH7HlB7waD858UWgfIcudbPFsbzVdw==}
  900. '@walletconnect/jsonrpc-ws-connection@1.0.16':
  901. resolution: {integrity: sha512-G81JmsMqh5nJheE1mPst1W0WfVv0SG3N7JggwLLGnI7iuDZJq8cRJvQwLGKHn5H1WTW7DEPCo00zz5w62AbL3Q==}
  902. '@walletconnect/keyvaluestorage@1.1.1':
  903. resolution: {integrity: sha512-V7ZQq2+mSxAq7MrRqDxanTzu2RcElfK1PfNYiaVnJgJ7Q7G7hTVwF8voIBx92qsRyGHZihrwNPHuZd1aKkd0rA==}
  904. peerDependencies:
  905. '@react-native-async-storage/async-storage': 1.x
  906. peerDependenciesMeta:
  907. '@react-native-async-storage/async-storage':
  908. optional: true
  909. '@walletconnect/logger@3.0.2':
  910. resolution: {integrity: sha512-7wR3wAwJTOmX4gbcUZcFMov8fjftY05+5cO/d4cpDD8wDzJ+cIlKdYOXaXfxHLSYeDazMXIsxMYjHYVDfkx+nA==}
  911. '@walletconnect/modal-core@2.7.0':
  912. resolution: {integrity: sha512-oyMIfdlNdpyKF2kTJowTixZSo0PGlCJRdssUN/EZdA6H6v03hZnf09JnwpljZNfir2M65Dvjm/15nGrDQnlxSA==}
  913. '@walletconnect/modal-ui@2.7.0':
  914. resolution: {integrity: sha512-gERYvU7D7K1ANCN/8vUgsE0d2hnRemfAFZ2novm9aZBg7TEd/4EgB+AqbJ+1dc7GhOL6dazckVq78TgccHb7mQ==}
  915. '@walletconnect/modal@2.7.0':
  916. resolution: {integrity: sha512-RQVt58oJ+rwqnPcIvRFeMGKuXb9qkgSmwz4noF8JZGUym3gUAzVs+uW2NQ1Owm9XOJAV+sANrtJ+VoVq1ftElw==}
  917. deprecated: Please follow the migration guide on https://docs.reown.com/appkit/upgrade/wcm
  918. '@walletconnect/relay-api@1.0.11':
  919. resolution: {integrity: sha512-tLPErkze/HmC9aCmdZOhtVmYZq1wKfWTJtygQHoWtgg722Jd4homo54Cs4ak2RUFUZIGO2RsOpIcWipaua5D5Q==}
  920. '@walletconnect/relay-auth@1.1.0':
  921. resolution: {integrity: sha512-qFw+a9uRz26jRCDgL7Q5TA9qYIgcNY8jpJzI1zAWNZ8i7mQjaijRnWFKsCHAU9CyGjvt6RKrRXyFtFOpWTVmCQ==}
  922. '@walletconnect/safe-json@1.0.2':
  923. resolution: {integrity: sha512-Ogb7I27kZ3LPC3ibn8ldyUr5544t3/STow9+lzz7Sfo808YD7SBWk7SAsdBFlYgP2zDRy2hS3sKRcuSRM0OTmA==}
  924. '@walletconnect/sign-client@2.23.2':
  925. resolution: {integrity: sha512-LL5KgmJHvY5NqQn+ZHQJLia1p6fpUWXHtiG97S5rNfyuPx6gT/Jkkwqc2LwdmAjFkr61t8zTagHC9ETq203mNA==}
  926. '@walletconnect/sign-client@2.23.9':
  927. resolution: {integrity: sha512-Xj+hw4E6mGRyhCdVOT/RMgnG+up/Y3v0ho5PlkVozvXWeVSqHNh9DmjLuU97a7OACoGd/oHBF6g3NVqD7MgCMQ==}
  928. '@walletconnect/time@1.0.2':
  929. resolution: {integrity: sha512-uzdd9woDcJ1AaBZRhqy5rNC9laqWGErfc4dxA9a87mPdKOgWMD85mcFo9dIYIts/Jwocfwn07EC6EzclKubk/g==}
  930. '@walletconnect/types@2.23.2':
  931. resolution: {integrity: sha512-5dxBCdUM+4Dqe1/A7uqkm2tWPXce4UUGSr+ImfI0YjwEExQS8+TzdOlhMt3n32ncnBCllU5paG+fsndT06R0iw==}
  932. '@walletconnect/types@2.23.9':
  933. resolution: {integrity: sha512-IUl1PpD/Dig8IE2OZ9XtjbPohEyOZJ73xs92EDUzoIyzRtfm36g2D340pY3iu3AAdLv1yFiaZafB8Hf8RFze8A==}
  934. '@walletconnect/universal-provider@2.23.2':
  935. resolution: {integrity: sha512-vs9iorPUAiVesFJ95O6XvLjmRgF+B2TspxJNL90ZULbrkRw4JFsmaRdb965PZKc+s182k1MkS/MQ0o964xRcEw==}
  936. '@walletconnect/universal-provider@2.23.9':
  937. resolution: {integrity: sha512-dNk6X1USUcIX1nx3H61V3pO15E/2ejyeBsKLBOo8YXrnYCrKGG/KB1LIqJXHpQlXT+9bJE9cOnn61ETdCXgkPw==}
  938. '@walletconnect/utils@2.23.2':
  939. resolution: {integrity: sha512-ReSjU3kX+3i3tYJQZbVfetY5SSUL+iM6uiIVVD1PJalePa/5A40VgLVRTF7sDCJTIFfpf3Mt4bFjeaYuoxWtIw==}
  940. '@walletconnect/utils@2.23.9':
  941. resolution: {integrity: sha512-C5TltCs8UPypNiteYnKSv8+ZDK2EjVDyXCxN6kA9bkA+j6KGsNIV7l9MUA8WBAvE5Gi5EcBdhD3R9Hpo/1HHqQ==}
  942. '@walletconnect/window-getters@1.0.1':
  943. resolution: {integrity: sha512-vHp+HqzGxORPAN8gY03qnbTMnhqIwjeRJNOMOAzePRg4xVEEE2WvYsI9G2NMjOknA8hnuYbU3/hwLcKbjhc8+Q==}
  944. '@walletconnect/window-metadata@1.0.1':
  945. resolution: {integrity: sha512-9koTqyGrM2cqFRW517BPY/iEtUDx2r1+Pwwu5m7sJ7ka79wi3EyqhqcICk/yDmv6jAS1rjKgTKXlEhanYjijcA==}
  946. abitype@1.0.6:
  947. resolution: {integrity: sha512-MMSqYh4+C/aVqI2RQaWqbvI4Kxo5cQV40WQ4QFtDnNzCkqChm8MuENhElmynZlO0qUy/ObkEUaXtKqYnx1Kp3A==}
  948. peerDependencies:
  949. typescript: '>=5.0.4'
  950. zod: ^3 >=3.22.0
  951. peerDependenciesMeta:
  952. typescript:
  953. optional: true
  954. zod:
  955. optional: true
  956. abitype@1.2.3:
  957. resolution: {integrity: sha512-Ofer5QUnuUdTFsBRwARMoWKOH1ND5ehwYhJ3OJ/BQO+StkwQjHw0XyVh4vDttzHB7QOFhPHa/o413PJ82gU/Tg==}
  958. peerDependencies:
  959. typescript: '>=5.0.4'
  960. zod: ^3.22.0 || ^4.0.0
  961. peerDependenciesMeta:
  962. typescript:
  963. optional: true
  964. zod:
  965. optional: true
  966. abitype@1.2.4:
  967. resolution: {integrity: sha512-dpKH+N27vRjarMVTFFkeY445VTKftzGWpL0FiT7xmVmzQRKazZexzC5uHG0f6XKsVLAuUlndnbGau6lRejClxg==}
  968. peerDependencies:
  969. typescript: '>=5.0.4'
  970. zod: ^3.22.0 || ^4.0.0
  971. peerDependenciesMeta:
  972. typescript:
  973. optional: true
  974. zod:
  975. optional: true
  976. acorn@8.16.0:
  977. resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
  978. engines: {node: '>=0.4.0'}
  979. hasBin: true
  980. aes-js@4.0.0-beta.5:
  981. resolution: {integrity: sha512-G965FqalsNyrPqgEGON7nIx1e/OVENSgiEIzyC63haUMuvNnwIgIjMs52hlTCKhkBny7A2ORNlfY9Zu+jmGk1Q==}
  982. alien-signals@1.0.13:
  983. resolution: {integrity: sha512-OGj9yyTnJEttvzhTUWuscOvtqxq5vrhF7vL9oS0xJ2mK0ItPYP1/y+vCFebfxoEyAz0++1AIwJ5CMr+Fk3nDmg==}
  984. ansi-regex@5.0.1:
  985. resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
  986. engines: {node: '>=8'}
  987. ansi-styles@4.3.0:
  988. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  989. engines: {node: '>=8'}
  990. anymatch@3.1.3:
  991. resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
  992. engines: {node: '>= 8'}
  993. asynckit@0.4.0:
  994. resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
  995. atomic-sleep@1.0.0:
  996. resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==}
  997. engines: {node: '>=8.0.0'}
  998. axios-retry@4.5.0:
  999. resolution: {integrity: sha512-aR99oXhpEDGo0UuAlYcn2iGRds30k366Zfa05XWScR9QaQD4JYiP3/1Qt1u7YlefUOK+cn0CcwoL1oefavQUlQ==}
  1000. peerDependencies:
  1001. axios: 0.x || 1.x
  1002. axios@1.15.0:
  1003. resolution: {integrity: sha512-wWyJDlAatxk30ZJer+GeCWS209sA42X+N5jU2jy6oHTp7ufw8uzUTVFBX9+wTfAlhiJXGS0Bq7X6efruWjuK9Q==}
  1004. axios@1.16.0:
  1005. resolution: {integrity: sha512-6hp5CwvTPlN2A31g5dxnwAX0orzM7pmCRDLnZSX772mv8WDqICwFjowHuPs04Mc8deIld1+ejhtaMn5vp6b+1w==}
  1006. balanced-match@1.0.2:
  1007. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  1008. base-x@5.0.1:
  1009. resolution: {integrity: sha512-M7uio8Zt++eg3jPj+rHMfCC+IuygQHHCOU+IYsVtik6FWjuYpVt/+MRKcgsAMHh8mMFAwnB+Bs+mTrFiXjMzKg==}
  1010. base64-js@1.5.1:
  1011. resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
  1012. big.js@6.2.2:
  1013. resolution: {integrity: sha512-y/ie+Faknx7sZA5MfGA2xKlu0GDv8RWrXGsmlteyJQ2lvoKv9GBK/fpRMc2qlSoBAgNxrixICFCBefIq8WCQpQ==}
  1014. bignumber.js@9.1.2:
  1015. resolution: {integrity: sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==}
  1016. birpc@2.9.0:
  1017. resolution: {integrity: sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==}
  1018. blakejs@1.2.1:
  1019. resolution: {integrity: sha512-QXUSXI3QVc/gJME0dBpXrag1kbzOqCjCX8/b54ntNyW6sjtoqxqRk3LTmXzaJoh71zMsDCjM+47jS7XiwN/+fQ==}
  1020. brace-expansion@2.1.0:
  1021. resolution: {integrity: sha512-TN1kCZAgdgweJhWWpgKYrQaMNHcDULHkWwQIspdtjV4Y5aurRdZpjAqn6yX3FPqTA9ngHCc4hJxMAMgGfve85w==}
  1022. bs58@6.0.0:
  1023. resolution: {integrity: sha512-PD0wEnEYg6ijszw/u8s+iI3H17cTymlrwkKhDhPZq+Sokl3AU4htyBFTjAeNAlCCmg0f53g6ih3jATyCKftTfw==}
  1024. buffer@6.0.3:
  1025. resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
  1026. c12@3.3.4:
  1027. resolution: {integrity: sha512-cM0ApFQSBXuourJejzwv/AuPRvAxordTyParRVcHjjtXirtkzM0uK2L9TTn9s0cXZbG7E55jCivRQzoxYmRAlA==}
  1028. peerDependencies:
  1029. magicast: '*'
  1030. peerDependenciesMeta:
  1031. magicast:
  1032. optional: true
  1033. call-bind-apply-helpers@1.0.2:
  1034. resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
  1035. engines: {node: '>= 0.4'}
  1036. camelcase@5.3.1:
  1037. resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
  1038. engines: {node: '>=6'}
  1039. chalk@5.6.2:
  1040. resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==}
  1041. engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
  1042. charenc@0.0.2:
  1043. resolution: {integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==}
  1044. chokidar@5.0.0:
  1045. resolution: {integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==}
  1046. engines: {node: '>= 20.19.0'}
  1047. citty@0.1.6:
  1048. resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==}
  1049. cliui@6.0.0:
  1050. resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==}
  1051. clsx@1.2.1:
  1052. resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==}
  1053. engines: {node: '>=6'}
  1054. color-convert@2.0.1:
  1055. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  1056. engines: {node: '>=7.0.0'}
  1057. color-name@1.1.4:
  1058. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  1059. combined-stream@1.0.8:
  1060. resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
  1061. engines: {node: '>= 0.8'}
  1062. commander@14.0.2:
  1063. resolution: {integrity: sha512-TywoWNNRbhoD0BXs1P3ZEScW8W5iKrnbithIl0YH+uCmBd0QpPOA8yc82DS3BIE5Ma6FnBVUsJ7wVUDz4dvOWQ==}
  1064. engines: {node: '>=20'}
  1065. confbox@0.1.8:
  1066. resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
  1067. confbox@0.2.4:
  1068. resolution: {integrity: sha512-ysOGlgTFbN2/Y6Cg3Iye8YKulHw+R2fNXHrgSmXISQdMnomY6eNDprVdW9R5xBguEqI954+S6709UyiO7B+6OQ==}
  1069. consola@3.4.2:
  1070. resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==}
  1071. engines: {node: ^14.18.0 || >=16.10.0}
  1072. cookie-es@1.2.3:
  1073. resolution: {integrity: sha512-lXVyvUvrNXblMqzIRrxHb57UUVmqsSWlxqt3XIjCkUP0wDAf6uicO6KMbEgYrMNtEvWgWHwe42CKxPu9MYAnWw==}
  1074. copy-anything@4.0.5:
  1075. resolution: {integrity: sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==}
  1076. engines: {node: '>=18'}
  1077. cross-fetch@3.2.0:
  1078. resolution: {integrity: sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==}
  1079. crossws@0.3.5:
  1080. resolution: {integrity: sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==}
  1081. crypt@0.0.2:
  1082. resolution: {integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==}
  1083. csstype@3.2.3:
  1084. resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
  1085. dayjs@1.11.13:
  1086. resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
  1087. dayjs@1.11.20:
  1088. resolution: {integrity: sha512-YbwwqR/uYpeoP4pu043q+LTDLFBLApUP6VxRihdfNTqu4ubqMlGDLd6ErXhEgsyvY0K6nCs7nggYumAN+9uEuQ==}
  1089. de-indent@1.0.2:
  1090. resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
  1091. decamelize@1.2.0:
  1092. resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
  1093. engines: {node: '>=0.10.0'}
  1094. defu@6.1.7:
  1095. resolution: {integrity: sha512-7z22QmUWiQ/2d0KkdYmANbRUVABpZ9SNYyH5vx6PZ+nE5bcC0l7uFvEfHlyld/HcGBFTL536ClDt3DEcSlEJAQ==}
  1096. delayed-stream@1.0.0:
  1097. resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
  1098. engines: {node: '>=0.4.0'}
  1099. destr@2.0.5:
  1100. resolution: {integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==}
  1101. detect-browser@5.3.0:
  1102. resolution: {integrity: sha512-53rsFbGdwMwlF7qvCt0ypLM5V5/Mbl0szB7GPN8y9NCcbknYOeVVXdrXEq+90IwAfrrzt6Hd+u2E2ntakICU8w==}
  1103. dijkstrajs@1.0.3:
  1104. resolution: {integrity: sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==}
  1105. dotenv@17.4.2:
  1106. resolution: {integrity: sha512-nI4U3TottKAcAD9LLud4Cb7b2QztQMUEfHbvhTH09bqXTxnSie8WnjPALV/WMCrJZ6UV/qHJ6L03OqO3LcdYZw==}
  1107. engines: {node: '>=12'}
  1108. dunder-proto@1.0.1:
  1109. resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
  1110. engines: {node: '>= 0.4'}
  1111. emoji-regex@8.0.0:
  1112. resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
  1113. encode-utf8@1.0.3:
  1114. resolution: {integrity: sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw==}
  1115. entities@7.0.1:
  1116. resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==}
  1117. engines: {node: '>=0.12'}
  1118. errx@0.1.0:
  1119. resolution: {integrity: sha512-fZmsRiDNv07K6s2KkKFTiD2aIvECa7++PKyD5NC32tpRw46qZA3sOz+aM+/V9V0GDHxVTKLziveV4JhzBHDp9Q==}
  1120. es-define-property@1.0.1:
  1121. resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
  1122. engines: {node: '>= 0.4'}
  1123. es-errors@1.3.0:
  1124. resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
  1125. engines: {node: '>= 0.4'}
  1126. es-object-atoms@1.1.1:
  1127. resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
  1128. engines: {node: '>= 0.4'}
  1129. es-set-tostringtag@2.1.0:
  1130. resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
  1131. engines: {node: '>= 0.4'}
  1132. es-toolkit@1.39.3:
  1133. resolution: {integrity: sha512-Qb/TCFCldgOy8lZ5uC7nLGdqJwSabkQiYQShmw4jyiPk1pZzaYWTwaYKYP7EgLccWYgZocMrtItrwh683voaww==}
  1134. es-toolkit@1.44.0:
  1135. resolution: {integrity: sha512-6penXeZalaV88MM3cGkFZZfOoLGWshWWfdy0tWw/RlVVyhvMaWSBTOvXNeiW3e5FwdS5ePW0LGEu17zT139ktg==}
  1136. esbuild@0.21.5:
  1137. resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
  1138. engines: {node: '>=12'}
  1139. hasBin: true
  1140. estree-walker@2.0.2:
  1141. resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
  1142. estree-walker@3.0.3:
  1143. resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
  1144. ethereum-cryptography@2.2.1:
  1145. resolution: {integrity: sha512-r/W8lkHSiTLxUxW8Rf3u4HGB0xQweG2RyETjywylKZSzLWoWAijRz8WCuOtJ6wah+avllXBqZuk29HCCvhEIRg==}
  1146. ethers@6.13.5:
  1147. resolution: {integrity: sha512-+knKNieu5EKRThQJWwqaJ10a6HE9sSehGeqWN65//wE7j47ZpFhKAnHB/JJFibwwg61I/koxaPsXbXpD/skNOQ==}
  1148. engines: {node: '>=14.0.0'}
  1149. eventemitter3@5.0.1:
  1150. resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==}
  1151. events@3.3.0:
  1152. resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
  1153. engines: {node: '>=0.8.x'}
  1154. exsolve@1.0.8:
  1155. resolution: {integrity: sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA==}
  1156. fancy-canvas@2.1.0:
  1157. resolution: {integrity: sha512-nifxXJ95JNLFR2NgRV4/MxVP45G9909wJTEKz5fg/TZS20JJZA6hfgRVh/bC9bwl2zBtBNcYPjiBE4njQHVBwQ==}
  1158. fdir@6.5.0:
  1159. resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
  1160. engines: {node: '>=12.0.0'}
  1161. peerDependencies:
  1162. picomatch: ^3 || ^4
  1163. peerDependenciesMeta:
  1164. picomatch:
  1165. optional: true
  1166. find-up@4.1.0:
  1167. resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
  1168. engines: {node: '>=8'}
  1169. follow-redirects@1.16.0:
  1170. resolution: {integrity: sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw==}
  1171. engines: {node: '>=4.0'}
  1172. peerDependencies:
  1173. debug: '*'
  1174. peerDependenciesMeta:
  1175. debug:
  1176. optional: true
  1177. form-data@4.0.5:
  1178. resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==}
  1179. engines: {node: '>= 6'}
  1180. framesync@6.1.2:
  1181. resolution: {integrity: sha512-jBTqhX6KaQVDyus8muwZbBeGGP0XgujBRbQ7gM7BRdS3CadCZIHiawyzYLnafYcvZIh5j8WE7cxZKFn7dXhu9g==}
  1182. fsevents@2.3.3:
  1183. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  1184. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  1185. os: [darwin]
  1186. function-bind@1.1.2:
  1187. resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
  1188. get-caller-file@2.0.5:
  1189. resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
  1190. engines: {node: 6.* || 8.* || >= 10.*}
  1191. get-intrinsic@1.3.0:
  1192. resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
  1193. engines: {node: '>= 0.4'}
  1194. get-proto@1.0.1:
  1195. resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
  1196. engines: {node: '>= 0.4'}
  1197. giget@3.2.0:
  1198. resolution: {integrity: sha512-GvHTWcykIR/fP8cj8dMpuMMkvaeJfPvYnhq0oW+chSeIr+ldX21ifU2Ms6KBoyKZQZmVaUAAhQ2EZ68KJF8a7A==}
  1199. hasBin: true
  1200. google-protobuf@3.21.4:
  1201. resolution: {integrity: sha512-MnG7N936zcKTco4Jd2PX2U96Kf9PxygAPKBug+74LHzmHXmceN16MmRcdgZv+DGef/S9YvQAfRsNCn4cjf9yyQ==}
  1202. gopd@1.2.0:
  1203. resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
  1204. engines: {node: '>= 0.4'}
  1205. h3@1.15.11:
  1206. resolution: {integrity: sha512-L3THSe2MPeBwgIZVSH5zLdBBU90TOxarvhK9d04IDY2AmVS8j2Jz2LIWtwsGOU3lu2I5jCN7FNvVfY2+XyF+mg==}
  1207. has-symbols@1.1.0:
  1208. resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
  1209. engines: {node: '>= 0.4'}
  1210. has-tostringtag@1.0.2:
  1211. resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
  1212. engines: {node: '>= 0.4'}
  1213. hasown@2.0.3:
  1214. resolution: {integrity: sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg==}
  1215. engines: {node: '>= 0.4'}
  1216. he@1.2.0:
  1217. resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
  1218. hasBin: true
  1219. hey-listen@1.0.8:
  1220. resolution: {integrity: sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==}
  1221. hookable@5.5.3:
  1222. resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
  1223. idb-keyval@6.2.1:
  1224. resolution: {integrity: sha512-8Sb3veuYCyrZL+VBt9LJfZjLUPWVvqn8tG28VqYNFCo43KHcKuq+b4EiXGeuaLAQWL2YmyDgMp2aSpH9JHsEQg==}
  1225. idb-keyval@6.2.4:
  1226. resolution: {integrity: sha512-D/NzHWUmYJGXi++z67aMSrnisb9A3621CyRK5G89JyTlN13C8xf0g04DLxUKMufPem3e3L2JAXR6Z00OWy183Q==}
  1227. ieee754@1.2.1:
  1228. resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
  1229. ignore@7.0.5:
  1230. resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
  1231. engines: {node: '>= 4'}
  1232. iron-webcrypto@1.2.1:
  1233. resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==}
  1234. is-buffer@1.1.6:
  1235. resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==}
  1236. is-fullwidth-code-point@3.0.0:
  1237. resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
  1238. engines: {node: '>=8'}
  1239. is-retry-allowed@2.2.0:
  1240. resolution: {integrity: sha512-XVm7LOeLpTW4jV19QSH38vkswxoLud8sQ57YwJVTPWdiaI9I8keEhGFpBlslyVsgdQy4Opg8QOLb8YRgsyZiQg==}
  1241. engines: {node: '>=10'}
  1242. is-what@5.5.0:
  1243. resolution: {integrity: sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw==}
  1244. engines: {node: '>=18'}
  1245. isows@1.0.7:
  1246. resolution: {integrity: sha512-I1fSfDCZL5P0v33sVqeTDSpcstAg/N+wF5HS033mogOVIp4B+oHC7oOCsA3axAbBSGTJ8QubbNmnIRN/h8U7hg==}
  1247. peerDependencies:
  1248. ws: '*'
  1249. jiti@2.7.0:
  1250. resolution: {integrity: sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==}
  1251. hasBin: true
  1252. jose@6.2.3:
  1253. resolution: {integrity: sha512-YYVDInQKFJfR/xa3ojUTl8c2KoTwiL1R5Wg9YCydwH0x0B9grbzlg5HC7mMjCtUJjbQ/YnGEZIhI5tCgfTb4Hw==}
  1254. js-tokens@4.0.0:
  1255. resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
  1256. keyvaluestorage-interface@1.0.0:
  1257. resolution: {integrity: sha512-8t6Q3TclQ4uZynJY9IGr2+SsIGwK9JHcO6ootkHCGA0CrQCRy+VkouYNO2xicET6b9al7QKzpebNow+gkpCL8g==}
  1258. klinecharts@10.0.0-beta1:
  1259. resolution: {integrity: sha512-5ZxFGjJeZqt9+q45lZDhApC3kdgrk51i27uSpIELgXJLNgfSc0anlb8XkU+52LVrBYnTv9dFr8/Q7lG81vIV1w==}
  1260. klona@2.0.6:
  1261. resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==}
  1262. engines: {node: '>= 8'}
  1263. knitwork@1.3.0:
  1264. resolution: {integrity: sha512-4LqMNoONzR43B1W0ek0fhXMsDNW/zxa1NdFAVMY+k28pgZLovR4G3PB5MrpTxCy1QaZCqNoiaKPr5w5qZHfSNw==}
  1265. lightweight-charts@5.2.0:
  1266. resolution: {integrity: sha512-ey3Vas8UhV06ni+LT9TA1nEe4y8So4Mi6CL/oarNHFMyTktz/xy8e8+oh04Q//eO3t6etvFXgayz2fClyFQb5w==}
  1267. lit-element@3.3.3:
  1268. resolution: {integrity: sha512-XbeRxmTHubXENkV4h8RIPyr8lXc+Ff28rkcQzw3G6up2xg5E8Zu1IgOWIwBLEQsu3cOVFqdYwiVi0hv0SlpqUA==}
  1269. lit-element@4.2.2:
  1270. resolution: {integrity: sha512-aFKhNToWxoyhkNDmWZwEva2SlQia+jfG0fjIWV//YeTaWrVnOxD89dPKfigCUspXFmjzOEUQpOkejH5Ly6sG0w==}
  1271. lit-html@2.8.0:
  1272. resolution: {integrity: sha512-o9t+MQM3P4y7M7yNzqAyjp7z+mQGa4NS4CxiyLqFPyFWyc4O+nodLrkrxSaCTrla6M5YOLaT3RpbbqjszB5g3Q==}
  1273. lit-html@3.3.3:
  1274. resolution: {integrity: sha512-el8M6jK2o3RXBnrSHX3ZKrsN8zEV63pSExTO1wYJz7QndGYZ8353e2a5PPX+qHe2aGayfnchQmkAojaWAREOIA==}
  1275. lit@2.8.0:
  1276. resolution: {integrity: sha512-4Sc3OFX9QHOJaHbmTMk28SYgVxLN3ePDjg7hofEft2zWlehFL3LiAuapWc4U/kYwMYJSh2hTCPZ6/LIC7ii0MA==}
  1277. lit@3.3.0:
  1278. resolution: {integrity: sha512-DGVsqsOIHBww2DqnuZzW7QsuCdahp50ojuDaBPC7jUDRpYoH0z7kHBBYZewRzer75FwtrkmkKk7iOAwSaWdBmw==}
  1279. locate-path@5.0.0:
  1280. resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
  1281. engines: {node: '>=8'}
  1282. loose-envify@1.4.0:
  1283. resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
  1284. hasBin: true
  1285. lru-cache@11.5.0:
  1286. resolution: {integrity: sha512-5YgH9UJd7wVb9hIouI2adWpgqrrICkt070Dnj8EUY1+B4B2P9eRLPAkAAo6NICA7CEhOIeBHl46u9zSNpNu7zA==}
  1287. engines: {node: 20 || >=22}
  1288. magic-string@0.30.21:
  1289. resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
  1290. math-intrinsics@1.1.0:
  1291. resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
  1292. engines: {node: '>= 0.4'}
  1293. md5@2.3.0:
  1294. resolution: {integrity: sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==}
  1295. mime-db@1.52.0:
  1296. resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
  1297. engines: {node: '>= 0.6'}
  1298. mime-types@2.1.35:
  1299. resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
  1300. engines: {node: '>= 0.6'}
  1301. minimatch@9.0.9:
  1302. resolution: {integrity: sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==}
  1303. engines: {node: '>=16 || 14 >=14.17'}
  1304. mitt@3.0.1:
  1305. resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
  1306. mlly@1.8.2:
  1307. resolution: {integrity: sha512-d+ObxMQFmbt10sretNDytwt85VrbkhhUA/JBGm1MPaWJ65Cl4wOgLaB1NYvJSZ0Ef03MMEU/0xpPMXUIQ29UfA==}
  1308. motion@10.16.2:
  1309. resolution: {integrity: sha512-p+PurYqfUdcJZvtnmAqu5fJgV2kR0uLFQuBKtLeFVTrYEVllI99tiOTSefVNYuip9ELTEkepIIDftNdze76NAQ==}
  1310. muggle-string@0.4.1:
  1311. resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
  1312. multiformats@9.9.0:
  1313. resolution: {integrity: sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==}
  1314. nanoid@3.3.12:
  1315. resolution: {integrity: sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==}
  1316. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  1317. hasBin: true
  1318. node-fetch-native@1.6.7:
  1319. resolution: {integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==}
  1320. node-fetch@2.7.0:
  1321. resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
  1322. engines: {node: 4.x || >=6.0.0}
  1323. peerDependencies:
  1324. encoding: ^0.1.0
  1325. peerDependenciesMeta:
  1326. encoding:
  1327. optional: true
  1328. node-mock-http@1.0.4:
  1329. resolution: {integrity: sha512-8DY+kFsDkNXy1sJglUfuODx1/opAGJGyrTuFqEoN90oRc2Vk0ZbD4K2qmKXBBEhZQzdKHIVfEJpDU8Ak2NJEvQ==}
  1330. normalize-path@3.0.0:
  1331. resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
  1332. engines: {node: '>=0.10.0'}
  1333. ofetch@1.5.1:
  1334. resolution: {integrity: sha512-2W4oUZlVaqAPAil6FUg/difl6YhqhUR7x2eZY4bQCko22UXg3hptq9KLQdqFClV+Wu85UX7hNtdGTngi/1BxcA==}
  1335. ohash@2.0.11:
  1336. resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==}
  1337. on-exit-leak-free@2.1.2:
  1338. resolution: {integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==}
  1339. engines: {node: '>=14.0.0'}
  1340. ox@0.14.25:
  1341. resolution: {integrity: sha512-8DoibKtxE8yw63Y2jjMhlbjaURev6WCx4QR4MWLusl2/qIaeTzMJMBIYIDl1KOF45+8H1Ur6eLTdPlUoO8PlRw==}
  1342. peerDependencies:
  1343. typescript: '>=5.4.0'
  1344. peerDependenciesMeta:
  1345. typescript:
  1346. optional: true
  1347. ox@0.6.9:
  1348. resolution: {integrity: sha512-wi5ShvzE4eOcTwQVsIPdFr+8ycyX+5le/96iAJutaZAvCes1J0+RvpEPg5QDPDiaR0XQQAvZVl7AwqQcINuUug==}
  1349. peerDependencies:
  1350. typescript: '>=5.4.0'
  1351. peerDependenciesMeta:
  1352. typescript:
  1353. optional: true
  1354. ox@0.9.3:
  1355. resolution: {integrity: sha512-KzyJP+fPV4uhuuqrTZyok4DC7vFzi7HLUFiUNEmpbyh59htKWkOC98IONC1zgXJPbHAhQgqs6B0Z6StCGhmQvg==}
  1356. peerDependencies:
  1357. typescript: '>=5.4.0'
  1358. peerDependenciesMeta:
  1359. typescript:
  1360. optional: true
  1361. p-limit@2.3.0:
  1362. resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
  1363. engines: {node: '>=6'}
  1364. p-locate@4.1.0:
  1365. resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
  1366. engines: {node: '>=8'}
  1367. p-try@2.2.0:
  1368. resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
  1369. engines: {node: '>=6'}
  1370. path-browserify@1.0.1:
  1371. resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
  1372. path-exists@4.0.0:
  1373. resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
  1374. engines: {node: '>=8'}
  1375. pathe@2.0.3:
  1376. resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
  1377. perfect-debounce@1.0.0:
  1378. resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
  1379. perfect-debounce@2.1.0:
  1380. resolution: {integrity: sha512-LjgdTytVFXeUgtHZr9WYViYSM/g8MkcTPYDlPa3cDqMirHjKiSZPYd6DoL7pK8AJQr+uWkQvCjHNdiMqsrJs+g==}
  1381. picocolors@1.1.1:
  1382. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  1383. picomatch@2.3.2:
  1384. resolution: {integrity: sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==}
  1385. engines: {node: '>=8.6'}
  1386. picomatch@4.0.4:
  1387. resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==}
  1388. engines: {node: '>=12'}
  1389. pinia@2.3.1:
  1390. resolution: {integrity: sha512-khUlZSwt9xXCaTbbxFYBKDc/bWAGWJjOgvxETwkTN7KRm66EeT1ZdZj6i2ceh9sP2Pzqsbc704r2yngBrxBVug==}
  1391. peerDependencies:
  1392. typescript: '>=4.4.4'
  1393. vue: ^2.7.0 || ^3.5.11
  1394. peerDependenciesMeta:
  1395. typescript:
  1396. optional: true
  1397. pino-abstract-transport@2.0.0:
  1398. resolution: {integrity: sha512-F63x5tizV6WCh4R6RHyi2Ml+M70DNRXt/+HANowMflpgGFMAym/VKm6G7ZOQRjqN7XbGxK1Lg9t6ZrtzOaivMw==}
  1399. pino-std-serializers@7.1.0:
  1400. resolution: {integrity: sha512-BndPH67/JxGExRgiX1dX0w1FvZck5Wa4aal9198SrRhZjH3GxKQUKIBnYJTdj2HDN3UQAS06HlfcSbQj2OHmaw==}
  1401. pino@10.0.0:
  1402. resolution: {integrity: sha512-eI9pKwWEix40kfvSzqEP6ldqOoBIN7dwD/o91TY5z8vQI12sAffpR/pOqAD1IVVwIVHDpHjkq0joBPdJD0rafA==}
  1403. hasBin: true
  1404. pkg-types@1.3.1:
  1405. resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
  1406. pkg-types@2.3.1:
  1407. resolution: {integrity: sha512-y+ichcgc2LrADuhLNAx8DFjVfgz91pRxfZdI3UDhxHvcVEZsenLO+7XaU5vOp0u/7V/wZ+plyuQxtrDlZJ+yeg==}
  1408. pngjs@5.0.0:
  1409. resolution: {integrity: sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==}
  1410. engines: {node: '>=10.13.0'}
  1411. popmotion@11.0.5:
  1412. resolution: {integrity: sha512-la8gPM1WYeFznb/JqF4GiTkRRPZsfaj2+kCxqQgr2MJylMmIKUwBfWW8Wa5fml/8gmtlD5yI01MP1QCZPWmppA==}
  1413. postcss@8.5.14:
  1414. resolution: {integrity: sha512-SoSL4+OSEtR99LHFZQiJLkT59C5B1amGO1NzTwj7TT1qCUgUO6hxOvzkOYxD+vMrXBM3XJIKzokoERdqQq/Zmg==}
  1415. engines: {node: ^10 || ^12 || >=14}
  1416. preact@10.24.2:
  1417. resolution: {integrity: sha512-1cSoF0aCC8uaARATfrlz4VCBqE8LwZwRfLgkxJOQwAlQt6ayTmi0D9OF7nXid1POI5SZidFuG9CnlXbDfLqY/Q==}
  1418. process-warning@5.0.0:
  1419. resolution: {integrity: sha512-a39t9ApHNx2L4+HBnQKqxxHNs1r7KF+Intd8Q/g1bUh6q0WIp9voPXJ/x0j+ZL45KF1pJd9+q2jLIRMfvEshkA==}
  1420. proxy-compare@2.5.1:
  1421. resolution: {integrity: sha512-oyfc0Tx87Cpwva5ZXezSp5V9vht1c7dZBhvuV/y3ctkgMVUmiAGDVeeB0dKhGSyT0v1ZTEQYpe/RXlBVBNuCLA==}
  1422. proxy-compare@3.0.1:
  1423. resolution: {integrity: sha512-V9plBAt3qjMlS1+nC8771KNf6oJ12gExvaxnNzN/9yVRLdTv/lc+oJlnSzrdYDAvBfTStPCoiaCOTmTs0adv7Q==}
  1424. proxy-from-env@2.1.0:
  1425. resolution: {integrity: sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==}
  1426. engines: {node: '>=10'}
  1427. qrcode@1.5.3:
  1428. resolution: {integrity: sha512-puyri6ApkEHYiVl4CFzo1tDkAZ+ATcnbJrJ6RiBM1Fhctdn/ix9MTE3hRph33omisEbC/2fcfemsseiKgBPKZg==}
  1429. engines: {node: '>=10.13.0'}
  1430. hasBin: true
  1431. qrcode@1.5.4:
  1432. resolution: {integrity: sha512-1ca71Zgiu6ORjHqFBDpnSMTR2ReToX4l1Au1VFLyVeBTFavzQnv5JxMFr3ukHVKpSrSA2MCk0lNJSykjUfz7Zg==}
  1433. engines: {node: '>=10.13.0'}
  1434. hasBin: true
  1435. quick-format-unescaped@4.0.4:
  1436. resolution: {integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==}
  1437. radix3@1.1.2:
  1438. resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==}
  1439. rc9@3.0.1:
  1440. resolution: {integrity: sha512-gMDyleLWVE+i6Sgtc0QbbY6pEKqYs97NGi6isHQPqYlLemPoO8dxQ3uGi0f4NiP98c+jMW6cG1Kx9dDwfvqARQ==}
  1441. react@18.3.1:
  1442. resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
  1443. engines: {node: '>=0.10.0'}
  1444. readdirp@5.0.0:
  1445. resolution: {integrity: sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==}
  1446. engines: {node: '>= 20.19.0'}
  1447. real-require@0.2.0:
  1448. resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==}
  1449. engines: {node: '>= 12.13.0'}
  1450. regenerator-runtime@0.14.1:
  1451. resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
  1452. require-directory@2.1.1:
  1453. resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
  1454. engines: {node: '>=0.10.0'}
  1455. require-main-filename@2.0.0:
  1456. resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
  1457. rfdc@1.4.1:
  1458. resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
  1459. rollup@4.60.3:
  1460. resolution: {integrity: sha512-pAQK9HalE84QSm4Po3EmWIZPd3FnjkShVkiMlz1iligWYkWQ7wHYd1PF/T7QZ5TVSD6uSTon5gBVMSM4JfBV+A==}
  1461. engines: {node: '>=18.0.0', npm: '>=8.0.0'}
  1462. hasBin: true
  1463. safe-stable-stringify@2.5.0:
  1464. resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==}
  1465. engines: {node: '>=10'}
  1466. scule@1.3.0:
  1467. resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==}
  1468. semver@7.7.1:
  1469. resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==}
  1470. engines: {node: '>=10'}
  1471. hasBin: true
  1472. semver@7.7.2:
  1473. resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==}
  1474. engines: {node: '>=10'}
  1475. hasBin: true
  1476. semver@7.7.4:
  1477. resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==}
  1478. engines: {node: '>=10'}
  1479. hasBin: true
  1480. set-blocking@2.0.0:
  1481. resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
  1482. slow-redact@0.3.2:
  1483. resolution: {integrity: sha512-MseHyi2+E/hBRqdOi5COy6wZ7j7DxXRz9NkseavNYSvvWC06D8a5cidVZX3tcG5eCW3NIyVU4zT63hw0Q486jw==}
  1484. sonic-boom@4.2.1:
  1485. resolution: {integrity: sha512-w6AxtubXa2wTXAUsZMMWERrsIRAdrK0Sc+FUytWvYAhBJLyuI4llrMIC1DtlNSdI99EI86KZum2MMq3EAZlF9Q==}
  1486. source-map-js@1.2.1:
  1487. resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  1488. engines: {node: '>=0.10.0'}
  1489. speakingurl@14.0.1:
  1490. resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==}
  1491. engines: {node: '>=0.10.0'}
  1492. split2@4.2.0:
  1493. resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
  1494. engines: {node: '>= 10.x'}
  1495. string-width@4.2.3:
  1496. resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
  1497. engines: {node: '>=8'}
  1498. strip-ansi@6.0.1:
  1499. resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
  1500. engines: {node: '>=8'}
  1501. style-value-types@5.1.2:
  1502. resolution: {integrity: sha512-Vs9fNreYF9j6W2VvuDTP7kepALi7sk0xtk2Tu8Yxi9UoajJdEVpNpCov0HsLTqXvNGKX+Uv09pkozVITi1jf3Q==}
  1503. superjson@2.2.6:
  1504. resolution: {integrity: sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA==}
  1505. engines: {node: '>=16'}
  1506. thread-stream@3.1.0:
  1507. resolution: {integrity: sha512-OqyPZ9u96VohAyMfJykzmivOrY2wfMSf3C5TtFJVgN+Hm6aj+voFhlK+kZEIv2FBh1X6Xp3DlnCOfEQ3B2J86A==}
  1508. tinyglobby@0.2.16:
  1509. resolution: {integrity: sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==}
  1510. engines: {node: '>=12.0.0'}
  1511. tr46@0.0.3:
  1512. resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
  1513. tronweb@6.3.0:
  1514. resolution: {integrity: sha512-5CAjDO4/KfymgjKFgnXgfKKQp0xgOn8otCBYjgYAEIpLZDKNAk14Z0dDeg0UqYuceCiyMHjW7a19Rsz8EmhAOw==}
  1515. tslib@1.14.1:
  1516. resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
  1517. tslib@2.4.0:
  1518. resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==}
  1519. tslib@2.7.0:
  1520. resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==}
  1521. type-fest@4.41.0:
  1522. resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==}
  1523. engines: {node: '>=16'}
  1524. typescript@5.9.3:
  1525. resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
  1526. engines: {node: '>=14.17'}
  1527. hasBin: true
  1528. ufo@1.6.4:
  1529. resolution: {integrity: sha512-JFNbkD1Svwe0KvGi8GOeLcP4kAWQ609twvCdcHxq1oSL8svv39ZuSvajcD8B+5D0eL4+s1Is2D/O6KN3qcTeRA==}
  1530. uint8arrays@3.1.1:
  1531. resolution: {integrity: sha512-+QJa8QRnbdXVpHYjLoTpJIdCTiw9Ir62nocClWuXIq2JIh4Uta0cQsTSpFL678p2CN8B+XSApwcU+pQEqVpKWg==}
  1532. uncrypto@0.1.3:
  1533. resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==}
  1534. unctx@2.5.0:
  1535. resolution: {integrity: sha512-p+Rz9x0R7X+CYDkT+Xg8/GhpcShTlU8n+cf9OtOEf7zEQsNcCZO1dPKNRDqvUTaq+P32PMMkxWHwfrxkqfqAYg==}
  1536. undici-types@6.19.8:
  1537. resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==}
  1538. undici-types@7.19.2:
  1539. resolution: {integrity: sha512-qYVnV5OEm2AW8cJMCpdV20CDyaN3g0AjDlOGf1OW4iaDEx8MwdtChUp4zu4H0VP3nDRF/8RKWH+IPp9uW0YGZg==}
  1540. unplugin@2.3.11:
  1541. resolution: {integrity: sha512-5uKD0nqiYVzlmCRs01Fhs2BdkEgBS3SAVP6ndrBsuK42iC2+JHyxM05Rm9G8+5mkmRtzMZGY8Ct5+mliZxU/Ww==}
  1542. engines: {node: '>=18.12.0'}
  1543. unstorage@1.17.5:
  1544. resolution: {integrity: sha512-0i3iqvRfx29hkNntHyQvJTpf5W9dQ9ZadSoRU8+xVlhVtT7jAX57fazYO9EHvcRCfBCyi5YRya7XCDOsbTgkPg==}
  1545. peerDependencies:
  1546. '@azure/app-configuration': ^1.8.0
  1547. '@azure/cosmos': ^4.2.0
  1548. '@azure/data-tables': ^13.3.0
  1549. '@azure/identity': ^4.6.0
  1550. '@azure/keyvault-secrets': ^4.9.0
  1551. '@azure/storage-blob': ^12.26.0
  1552. '@capacitor/preferences': ^6 || ^7 || ^8
  1553. '@deno/kv': '>=0.9.0'
  1554. '@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0 || ^9.0.0 || ^10.0.0
  1555. '@planetscale/database': ^1.19.0
  1556. '@upstash/redis': ^1.34.3
  1557. '@vercel/blob': '>=0.27.1'
  1558. '@vercel/functions': ^2.2.12 || ^3.0.0
  1559. '@vercel/kv': ^1 || ^2 || ^3
  1560. aws4fetch: ^1.0.20
  1561. db0: '>=0.2.1'
  1562. idb-keyval: ^6.2.1
  1563. ioredis: ^5.4.2
  1564. uploadthing: ^7.4.4
  1565. peerDependenciesMeta:
  1566. '@azure/app-configuration':
  1567. optional: true
  1568. '@azure/cosmos':
  1569. optional: true
  1570. '@azure/data-tables':
  1571. optional: true
  1572. '@azure/identity':
  1573. optional: true
  1574. '@azure/keyvault-secrets':
  1575. optional: true
  1576. '@azure/storage-blob':
  1577. optional: true
  1578. '@capacitor/preferences':
  1579. optional: true
  1580. '@deno/kv':
  1581. optional: true
  1582. '@netlify/blobs':
  1583. optional: true
  1584. '@planetscale/database':
  1585. optional: true
  1586. '@upstash/redis':
  1587. optional: true
  1588. '@vercel/blob':
  1589. optional: true
  1590. '@vercel/functions':
  1591. optional: true
  1592. '@vercel/kv':
  1593. optional: true
  1594. aws4fetch:
  1595. optional: true
  1596. db0:
  1597. optional: true
  1598. idb-keyval:
  1599. optional: true
  1600. ioredis:
  1601. optional: true
  1602. uploadthing:
  1603. optional: true
  1604. untyped@2.0.0:
  1605. resolution: {integrity: sha512-nwNCjxJTjNuLCgFr42fEak5OcLuB3ecca+9ksPFNvtfYSLpjf+iJqSIaSnIile6ZPbKYxI5k2AfXqeopGudK/g==}
  1606. hasBin: true
  1607. use-sync-external-store@1.2.0:
  1608. resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==}
  1609. peerDependencies:
  1610. react: ^16.8.0 || ^17.0.0 || ^18.0.0
  1611. validator@13.15.23:
  1612. resolution: {integrity: sha512-4yoz1kEWqUjzi5zsPbAS/903QXSYp0UOtHsPpp7p9rHAw/W+dkInskAE386Fat3oKRROwO98d9ZB0G4cObgUyw==}
  1613. engines: {node: '>= 0.10'}
  1614. valtio@1.11.2:
  1615. resolution: {integrity: sha512-1XfIxnUXzyswPAPXo1P3Pdx2mq/pIqZICkWN60Hby0d9Iqb+MEIpqgYVlbflvHdrp2YR/q3jyKWRPJJ100yxaw==}
  1616. engines: {node: '>=12.20.0'}
  1617. peerDependencies:
  1618. '@types/react': '>=16.8'
  1619. react: '>=16.8'
  1620. peerDependenciesMeta:
  1621. '@types/react':
  1622. optional: true
  1623. react:
  1624. optional: true
  1625. valtio@2.1.7:
  1626. resolution: {integrity: sha512-DwJhCDpujuQuKdJ2H84VbTjEJJteaSmqsuUltsfbfdbotVfNeTE4K/qc/Wi57I9x8/2ed4JNdjEna7O6PfavRg==}
  1627. engines: {node: '>=12.20.0'}
  1628. peerDependencies:
  1629. '@types/react': '>=18.0.0'
  1630. react: '>=18.0.0'
  1631. peerDependenciesMeta:
  1632. '@types/react':
  1633. optional: true
  1634. react:
  1635. optional: true
  1636. vee-validate@4.15.1:
  1637. resolution: {integrity: sha512-DkFsiTwEKau8VIxyZBGdO6tOudD+QoUBPuHj3e6QFqmbfCRj1ArmYWue9lEp6jLSWBIw4XPlDLjFIZNLdRAMSg==}
  1638. peerDependencies:
  1639. vue: ^3.4.26
  1640. viem@2.51.2:
  1641. resolution: {integrity: sha512-2x4YAtr3PUPIW++Ov96clnWtRsyqMfpFfooQRIxCpAMsTgxioJTdIQ0ywbjhlHDCUJEGM6M8q8ILOeaPRViH9w==}
  1642. peerDependencies:
  1643. typescript: '>=5.0.4'
  1644. peerDependenciesMeta:
  1645. typescript:
  1646. optional: true
  1647. vite@5.4.21:
  1648. resolution: {integrity: sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==}
  1649. engines: {node: ^18.0.0 || >=20.0.0}
  1650. hasBin: true
  1651. peerDependencies:
  1652. '@types/node': ^18.0.0 || >=20.0.0
  1653. less: '*'
  1654. lightningcss: ^1.21.0
  1655. sass: '*'
  1656. sass-embedded: '*'
  1657. stylus: '*'
  1658. sugarss: '*'
  1659. terser: ^5.4.0
  1660. peerDependenciesMeta:
  1661. '@types/node':
  1662. optional: true
  1663. less:
  1664. optional: true
  1665. lightningcss:
  1666. optional: true
  1667. sass:
  1668. optional: true
  1669. sass-embedded:
  1670. optional: true
  1671. stylus:
  1672. optional: true
  1673. sugarss:
  1674. optional: true
  1675. terser:
  1676. optional: true
  1677. vscode-uri@3.1.0:
  1678. resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==}
  1679. vue-demi@0.14.10:
  1680. resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==}
  1681. engines: {node: '>=12'}
  1682. hasBin: true
  1683. peerDependencies:
  1684. '@vue/composition-api': ^1.0.0-rc.1
  1685. vue: ^3.0.0-0 || ^2.6.0
  1686. peerDependenciesMeta:
  1687. '@vue/composition-api':
  1688. optional: true
  1689. vue-i18n@11.4.4:
  1690. resolution: {integrity: sha512-gIbXVSFQV4jcSJxfwdZ5zSZmZ+12CnX0K3vBkRSd6Zn+HSzCp+QwUgPwpD/uN0oKNKI9RzlUXPKVedEuMgNG0A==}
  1691. engines: {node: '>= 22'}
  1692. peerDependencies:
  1693. vue: ^3.0.0
  1694. vue-router@4.6.4:
  1695. resolution: {integrity: sha512-Hz9q5sa33Yhduglwz6g9skT8OBPii+4bFn88w6J+J4MfEo4KRRpmiNG/hHHkdbRFlLBOqxN8y8gf2Fb0MTUgVg==}
  1696. peerDependencies:
  1697. vue: ^3.5.0
  1698. vue-tsc@2.2.12:
  1699. resolution: {integrity: sha512-P7OP77b2h/Pmk+lZdJ0YWs+5tJ6J2+uOQPo7tlBnY44QqQSPYvS0qVT4wqDJgwrZaLe47etJLLQRFia71GYITw==}
  1700. hasBin: true
  1701. peerDependencies:
  1702. typescript: '>=5.0.0'
  1703. vue@3.5.34:
  1704. resolution: {integrity: sha512-WdLBG9gm02OgJIG9axd5Hpx0TFLdzVgfG2evFFu8Rur5O/IoGc5cMjnjh3tPL6GnRGsYvUhBSKVPYVcxRKpMCA==}
  1705. peerDependencies:
  1706. typescript: '*'
  1707. peerDependenciesMeta:
  1708. typescript:
  1709. optional: true
  1710. webidl-conversions@3.0.1:
  1711. resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
  1712. webpack-virtual-modules@0.6.2:
  1713. resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
  1714. whatwg-url@5.0.0:
  1715. resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
  1716. which-module@2.0.1:
  1717. resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==}
  1718. wrap-ansi@6.2.0:
  1719. resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
  1720. engines: {node: '>=8'}
  1721. ws@7.5.11:
  1722. resolution: {integrity: sha512-zS54Oen9bITtp7kp2XM3AydrCIq1D+HwJOuH+c+e4LfpL/lotP5osijd+UoMnxwAam1GN8R4KtLAyIrIcBNpiA==}
  1723. engines: {node: '>=8.3.0'}
  1724. peerDependencies:
  1725. bufferutil: ^4.0.1
  1726. utf-8-validate: ^5.0.2
  1727. peerDependenciesMeta:
  1728. bufferutil:
  1729. optional: true
  1730. utf-8-validate:
  1731. optional: true
  1732. ws@8.17.1:
  1733. resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==}
  1734. engines: {node: '>=10.0.0'}
  1735. peerDependencies:
  1736. bufferutil: ^4.0.1
  1737. utf-8-validate: '>=5.0.2'
  1738. peerDependenciesMeta:
  1739. bufferutil:
  1740. optional: true
  1741. utf-8-validate:
  1742. optional: true
  1743. ws@8.20.1:
  1744. resolution: {integrity: sha512-It4dO0K5v//JtTXuPkfEOaI3uUN87iYPnqo/ZzqCoG3g8uhA66QUMs/SrM0YK7/NAu+r4LMh/9dq2A7k+rHs+w==}
  1745. engines: {node: '>=10.0.0'}
  1746. peerDependencies:
  1747. bufferutil: ^4.0.1
  1748. utf-8-validate: '>=5.0.2'
  1749. peerDependenciesMeta:
  1750. bufferutil:
  1751. optional: true
  1752. utf-8-validate:
  1753. optional: true
  1754. ws@8.21.0:
  1755. resolution: {integrity: sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==}
  1756. engines: {node: '>=10.0.0'}
  1757. peerDependencies:
  1758. bufferutil: ^4.0.1
  1759. utf-8-validate: '>=5.0.2'
  1760. peerDependenciesMeta:
  1761. bufferutil:
  1762. optional: true
  1763. utf-8-validate:
  1764. optional: true
  1765. y18n@4.0.3:
  1766. resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==}
  1767. yargs-parser@18.1.3:
  1768. resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==}
  1769. engines: {node: '>=6'}
  1770. yargs@15.4.1:
  1771. resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==}
  1772. engines: {node: '>=8'}
  1773. zod@3.22.4:
  1774. resolution: {integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==}
  1775. zod@3.25.76:
  1776. resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==}
  1777. zod@4.4.3:
  1778. resolution: {integrity: sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==}
  1779. zustand@5.0.3:
  1780. resolution: {integrity: sha512-14fwWQtU3pH4dE0dOpdMiWjddcH+QzKIgk1cl8epwSE7yag43k/AD/m4L6+K7DytAOr9gGBe3/EXj9g7cdostg==}
  1781. engines: {node: '>=12.20.0'}
  1782. peerDependencies:
  1783. '@types/react': '>=18.0.0'
  1784. immer: '>=9.0.6'
  1785. react: '>=18.0.0'
  1786. use-sync-external-store: '>=1.2.0'
  1787. peerDependenciesMeta:
  1788. '@types/react':
  1789. optional: true
  1790. immer:
  1791. optional: true
  1792. react:
  1793. optional: true
  1794. use-sync-external-store:
  1795. optional: true
  1796. snapshots:
  1797. '@adraffy/ens-normalize@1.10.1': {}
  1798. '@adraffy/ens-normalize@1.11.1': {}
  1799. '@babel/helper-string-parser@7.27.1': {}
  1800. '@babel/helper-validator-identifier@7.28.5': {}
  1801. '@babel/parser@7.29.3':
  1802. dependencies:
  1803. '@babel/types': 7.29.0
  1804. '@babel/runtime@7.26.10':
  1805. dependencies:
  1806. regenerator-runtime: 0.14.1
  1807. '@babel/types@7.29.0':
  1808. dependencies:
  1809. '@babel/helper-string-parser': 7.27.1
  1810. '@babel/helper-validator-identifier': 7.28.5
  1811. '@base-org/account@2.4.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(use-sync-external-store@1.2.0(react@18.3.1))(zod@4.4.3)':
  1812. dependencies:
  1813. '@coinbase/cdp-sdk': 1.50.0(typescript@5.9.3)
  1814. '@noble/hashes': 1.4.0
  1815. clsx: 1.2.1
  1816. eventemitter3: 5.0.1
  1817. idb-keyval: 6.2.1
  1818. ox: 0.6.9(typescript@5.9.3)(zod@4.4.3)
  1819. preact: 10.24.2
  1820. viem: 2.51.2(typescript@5.9.3)(zod@4.4.3)
  1821. zustand: 5.0.3(@types/react@19.2.15)(react@18.3.1)(use-sync-external-store@1.2.0(react@18.3.1))
  1822. transitivePeerDependencies:
  1823. - '@types/react'
  1824. - bufferutil
  1825. - debug
  1826. - fastestsmallesttextencoderdecoder
  1827. - immer
  1828. - react
  1829. - typescript
  1830. - use-sync-external-store
  1831. - utf-8-validate
  1832. - zod
  1833. optional: true
  1834. '@coinbase/cdp-sdk@1.50.0(typescript@5.9.3)':
  1835. dependencies:
  1836. '@solana-program/system': 0.10.0(@solana/kit@5.5.1(typescript@5.9.3))
  1837. '@solana-program/token': 0.9.0(@solana/kit@5.5.1(typescript@5.9.3))
  1838. '@solana/kit': 5.5.1(typescript@5.9.3)
  1839. abitype: 1.0.6(typescript@5.9.3)(zod@3.25.76)
  1840. axios: 1.16.0
  1841. axios-retry: 4.5.0(axios@1.16.0)
  1842. bs58: 6.0.0
  1843. jose: 6.2.3
  1844. md5: 2.3.0
  1845. uncrypto: 0.1.3
  1846. viem: 2.51.2(typescript@5.9.3)(zod@3.25.76)
  1847. zod: 3.25.76
  1848. transitivePeerDependencies:
  1849. - bufferutil
  1850. - debug
  1851. - fastestsmallesttextencoderdecoder
  1852. - typescript
  1853. - utf-8-validate
  1854. optional: true
  1855. '@esbuild/aix-ppc64@0.21.5':
  1856. optional: true
  1857. '@esbuild/android-arm64@0.21.5':
  1858. optional: true
  1859. '@esbuild/android-arm@0.21.5':
  1860. optional: true
  1861. '@esbuild/android-x64@0.21.5':
  1862. optional: true
  1863. '@esbuild/darwin-arm64@0.21.5':
  1864. optional: true
  1865. '@esbuild/darwin-x64@0.21.5':
  1866. optional: true
  1867. '@esbuild/freebsd-arm64@0.21.5':
  1868. optional: true
  1869. '@esbuild/freebsd-x64@0.21.5':
  1870. optional: true
  1871. '@esbuild/linux-arm64@0.21.5':
  1872. optional: true
  1873. '@esbuild/linux-arm@0.21.5':
  1874. optional: true
  1875. '@esbuild/linux-ia32@0.21.5':
  1876. optional: true
  1877. '@esbuild/linux-loong64@0.21.5':
  1878. optional: true
  1879. '@esbuild/linux-mips64el@0.21.5':
  1880. optional: true
  1881. '@esbuild/linux-ppc64@0.21.5':
  1882. optional: true
  1883. '@esbuild/linux-riscv64@0.21.5':
  1884. optional: true
  1885. '@esbuild/linux-s390x@0.21.5':
  1886. optional: true
  1887. '@esbuild/linux-x64@0.21.5':
  1888. optional: true
  1889. '@esbuild/netbsd-x64@0.21.5':
  1890. optional: true
  1891. '@esbuild/openbsd-x64@0.21.5':
  1892. optional: true
  1893. '@esbuild/sunos-x64@0.21.5':
  1894. optional: true
  1895. '@esbuild/win32-arm64@0.21.5':
  1896. optional: true
  1897. '@esbuild/win32-ia32@0.21.5':
  1898. optional: true
  1899. '@esbuild/win32-x64@0.21.5':
  1900. optional: true
  1901. '@iconify/types@2.0.0': {}
  1902. '@iconify/vue@5.0.1(vue@3.5.34(typescript@5.9.3))':
  1903. dependencies:
  1904. '@iconify/types': 2.0.0
  1905. vue: 3.5.34(typescript@5.9.3)
  1906. '@intlify/core-base@11.4.4':
  1907. dependencies:
  1908. '@intlify/devtools-types': 11.4.4
  1909. '@intlify/message-compiler': 11.4.4
  1910. '@intlify/shared': 11.4.4
  1911. '@intlify/devtools-types@11.4.4':
  1912. dependencies:
  1913. '@intlify/core-base': 11.4.4
  1914. '@intlify/shared': 11.4.4
  1915. '@intlify/message-compiler@11.4.4':
  1916. dependencies:
  1917. '@intlify/shared': 11.4.4
  1918. source-map-js: 1.2.1
  1919. '@intlify/shared@11.4.4': {}
  1920. '@jridgewell/gen-mapping@0.3.13':
  1921. dependencies:
  1922. '@jridgewell/sourcemap-codec': 1.5.5
  1923. '@jridgewell/trace-mapping': 0.3.31
  1924. optional: true
  1925. '@jridgewell/remapping@2.3.5':
  1926. dependencies:
  1927. '@jridgewell/gen-mapping': 0.3.13
  1928. '@jridgewell/trace-mapping': 0.3.31
  1929. optional: true
  1930. '@jridgewell/resolve-uri@3.1.2':
  1931. optional: true
  1932. '@jridgewell/sourcemap-codec@1.5.5': {}
  1933. '@jridgewell/trace-mapping@0.3.31':
  1934. dependencies:
  1935. '@jridgewell/resolve-uri': 3.1.2
  1936. '@jridgewell/sourcemap-codec': 1.5.5
  1937. optional: true
  1938. '@lit-labs/ssr-dom-shim@1.6.0': {}
  1939. '@lit/react@1.0.8(@types/react@19.2.15)':
  1940. dependencies:
  1941. '@types/react': 19.2.15
  1942. optional: true
  1943. '@lit/reactive-element@1.6.3':
  1944. dependencies:
  1945. '@lit-labs/ssr-dom-shim': 1.6.0
  1946. '@lit/reactive-element@2.1.2':
  1947. dependencies:
  1948. '@lit-labs/ssr-dom-shim': 1.6.0
  1949. '@motionone/animation@10.18.0':
  1950. dependencies:
  1951. '@motionone/easing': 10.18.0
  1952. '@motionone/types': 10.17.1
  1953. '@motionone/utils': 10.18.0
  1954. tslib: 2.4.0
  1955. '@motionone/dom@10.18.0':
  1956. dependencies:
  1957. '@motionone/animation': 10.18.0
  1958. '@motionone/generators': 10.18.0
  1959. '@motionone/types': 10.17.1
  1960. '@motionone/utils': 10.18.0
  1961. hey-listen: 1.0.8
  1962. tslib: 2.4.0
  1963. '@motionone/easing@10.18.0':
  1964. dependencies:
  1965. '@motionone/utils': 10.18.0
  1966. tslib: 2.4.0
  1967. '@motionone/generators@10.18.0':
  1968. dependencies:
  1969. '@motionone/types': 10.17.1
  1970. '@motionone/utils': 10.18.0
  1971. tslib: 2.4.0
  1972. '@motionone/svelte@10.16.4':
  1973. dependencies:
  1974. '@motionone/dom': 10.18.0
  1975. tslib: 2.4.0
  1976. '@motionone/types@10.17.1': {}
  1977. '@motionone/utils@10.18.0':
  1978. dependencies:
  1979. '@motionone/types': 10.17.1
  1980. hey-listen: 1.0.8
  1981. tslib: 2.4.0
  1982. '@motionone/vue@10.16.4':
  1983. dependencies:
  1984. '@motionone/dom': 10.18.0
  1985. tslib: 2.4.0
  1986. '@msgpack/msgpack@3.1.2': {}
  1987. '@msgpack/msgpack@3.1.3': {}
  1988. '@noble/ciphers@1.3.0': {}
  1989. '@noble/curves@1.2.0':
  1990. dependencies:
  1991. '@noble/hashes': 1.3.2
  1992. '@noble/curves@1.4.2':
  1993. dependencies:
  1994. '@noble/hashes': 1.4.0
  1995. '@noble/curves@1.8.0':
  1996. dependencies:
  1997. '@noble/hashes': 1.7.0
  1998. '@noble/curves@1.9.1':
  1999. dependencies:
  2000. '@noble/hashes': 1.8.0
  2001. '@noble/curves@1.9.7':
  2002. dependencies:
  2003. '@noble/hashes': 1.8.0
  2004. '@noble/hashes@1.3.2': {}
  2005. '@noble/hashes@1.4.0': {}
  2006. '@noble/hashes@1.7.0': {}
  2007. '@noble/hashes@1.8.0': {}
  2008. '@nuxt/kit@3.21.4':
  2009. dependencies:
  2010. c12: 3.3.4
  2011. consola: 3.4.2
  2012. defu: 6.1.7
  2013. destr: 2.0.5
  2014. errx: 0.1.0
  2015. exsolve: 1.0.8
  2016. ignore: 7.0.5
  2017. jiti: 2.7.0
  2018. klona: 2.0.6
  2019. knitwork: 1.3.0
  2020. mlly: 1.8.2
  2021. ohash: 2.0.11
  2022. pathe: 2.0.3
  2023. pkg-types: 2.3.1
  2024. rc9: 3.0.1
  2025. scule: 1.3.0
  2026. semver: 7.7.4
  2027. tinyglobby: 0.2.16
  2028. ufo: 1.6.4
  2029. unctx: 2.5.0
  2030. untyped: 2.0.0
  2031. transitivePeerDependencies:
  2032. - magicast
  2033. optional: true
  2034. '@phosphor-icons/webcomponents@2.1.5':
  2035. dependencies:
  2036. lit: 3.3.0
  2037. '@reown/appkit-common@1.8.17-wc-circular-dependencies-fix.0(typescript@5.9.3)(zod@3.22.4)':
  2038. dependencies:
  2039. big.js: 6.2.2
  2040. dayjs: 1.11.13
  2041. viem: 2.51.2(typescript@5.9.3)(zod@3.22.4)
  2042. transitivePeerDependencies:
  2043. - bufferutil
  2044. - typescript
  2045. - utf-8-validate
  2046. - zod
  2047. '@reown/appkit-common@1.8.17-wc-circular-dependencies-fix.0(typescript@5.9.3)(zod@4.4.3)':
  2048. dependencies:
  2049. big.js: 6.2.2
  2050. dayjs: 1.11.13
  2051. viem: 2.51.2(typescript@5.9.3)(zod@4.4.3)
  2052. transitivePeerDependencies:
  2053. - bufferutil
  2054. - typescript
  2055. - utf-8-validate
  2056. - zod
  2057. '@reown/appkit-controllers@1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(zod@4.4.3)':
  2058. dependencies:
  2059. '@reown/appkit-common': 1.8.17-wc-circular-dependencies-fix.0(typescript@5.9.3)(zod@4.4.3)
  2060. '@reown/appkit-wallet': 1.8.17-wc-circular-dependencies-fix.0(typescript@5.9.3)
  2061. '@walletconnect/universal-provider': 2.23.2(typescript@5.9.3)(zod@4.4.3)
  2062. valtio: 2.1.7(@types/react@19.2.15)(react@18.3.1)
  2063. viem: 2.51.2(typescript@5.9.3)(zod@4.4.3)
  2064. transitivePeerDependencies:
  2065. - '@azure/app-configuration'
  2066. - '@azure/cosmos'
  2067. - '@azure/data-tables'
  2068. - '@azure/identity'
  2069. - '@azure/keyvault-secrets'
  2070. - '@azure/storage-blob'
  2071. - '@capacitor/preferences'
  2072. - '@deno/kv'
  2073. - '@netlify/blobs'
  2074. - '@planetscale/database'
  2075. - '@react-native-async-storage/async-storage'
  2076. - '@types/react'
  2077. - '@upstash/redis'
  2078. - '@vercel/blob'
  2079. - '@vercel/functions'
  2080. - '@vercel/kv'
  2081. - aws4fetch
  2082. - bufferutil
  2083. - db0
  2084. - encoding
  2085. - ioredis
  2086. - react
  2087. - typescript
  2088. - uploadthing
  2089. - utf-8-validate
  2090. - zod
  2091. '@reown/appkit-pay@1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(use-sync-external-store@1.2.0(react@18.3.1))(zod@4.4.3)':
  2092. dependencies:
  2093. '@reown/appkit-common': 1.8.17-wc-circular-dependencies-fix.0(typescript@5.9.3)(zod@4.4.3)
  2094. '@reown/appkit-controllers': 1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(zod@4.4.3)
  2095. '@reown/appkit-ui': 1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(zod@4.4.3)
  2096. '@reown/appkit-utils': 1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(use-sync-external-store@1.2.0(react@18.3.1))(valtio@2.1.7(@types/react@19.2.15)(react@18.3.1))(zod@4.4.3)
  2097. lit: 3.3.0
  2098. valtio: 2.1.7(@types/react@19.2.15)(react@18.3.1)
  2099. transitivePeerDependencies:
  2100. - '@azure/app-configuration'
  2101. - '@azure/cosmos'
  2102. - '@azure/data-tables'
  2103. - '@azure/identity'
  2104. - '@azure/keyvault-secrets'
  2105. - '@azure/storage-blob'
  2106. - '@capacitor/preferences'
  2107. - '@deno/kv'
  2108. - '@netlify/blobs'
  2109. - '@planetscale/database'
  2110. - '@react-native-async-storage/async-storage'
  2111. - '@types/react'
  2112. - '@upstash/redis'
  2113. - '@vercel/blob'
  2114. - '@vercel/functions'
  2115. - '@vercel/kv'
  2116. - aws4fetch
  2117. - bufferutil
  2118. - db0
  2119. - debug
  2120. - encoding
  2121. - fastestsmallesttextencoderdecoder
  2122. - immer
  2123. - ioredis
  2124. - react
  2125. - typescript
  2126. - uploadthing
  2127. - use-sync-external-store
  2128. - utf-8-validate
  2129. - zod
  2130. '@reown/appkit-polyfills@1.8.17-wc-circular-dependencies-fix.0':
  2131. dependencies:
  2132. buffer: 6.0.3
  2133. '@reown/appkit-scaffold-ui@1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(use-sync-external-store@1.2.0(react@18.3.1))(valtio@2.1.7(@types/react@19.2.15)(react@18.3.1))(zod@4.4.3)':
  2134. dependencies:
  2135. '@reown/appkit-common': 1.8.17-wc-circular-dependencies-fix.0(typescript@5.9.3)(zod@4.4.3)
  2136. '@reown/appkit-controllers': 1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(zod@4.4.3)
  2137. '@reown/appkit-pay': 1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(use-sync-external-store@1.2.0(react@18.3.1))(zod@4.4.3)
  2138. '@reown/appkit-ui': 1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(zod@4.4.3)
  2139. '@reown/appkit-utils': 1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(use-sync-external-store@1.2.0(react@18.3.1))(valtio@2.1.7(@types/react@19.2.15)(react@18.3.1))(zod@4.4.3)
  2140. '@reown/appkit-wallet': 1.8.17-wc-circular-dependencies-fix.0(typescript@5.9.3)
  2141. lit: 3.3.0
  2142. transitivePeerDependencies:
  2143. - '@azure/app-configuration'
  2144. - '@azure/cosmos'
  2145. - '@azure/data-tables'
  2146. - '@azure/identity'
  2147. - '@azure/keyvault-secrets'
  2148. - '@azure/storage-blob'
  2149. - '@capacitor/preferences'
  2150. - '@deno/kv'
  2151. - '@netlify/blobs'
  2152. - '@planetscale/database'
  2153. - '@react-native-async-storage/async-storage'
  2154. - '@types/react'
  2155. - '@upstash/redis'
  2156. - '@vercel/blob'
  2157. - '@vercel/functions'
  2158. - '@vercel/kv'
  2159. - aws4fetch
  2160. - bufferutil
  2161. - db0
  2162. - debug
  2163. - encoding
  2164. - fastestsmallesttextencoderdecoder
  2165. - immer
  2166. - ioredis
  2167. - react
  2168. - typescript
  2169. - uploadthing
  2170. - use-sync-external-store
  2171. - utf-8-validate
  2172. - valtio
  2173. - zod
  2174. '@reown/appkit-ui@1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(zod@4.4.3)':
  2175. dependencies:
  2176. '@phosphor-icons/webcomponents': 2.1.5
  2177. '@reown/appkit-common': 1.8.17-wc-circular-dependencies-fix.0(typescript@5.9.3)(zod@4.4.3)
  2178. '@reown/appkit-controllers': 1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(zod@4.4.3)
  2179. '@reown/appkit-wallet': 1.8.17-wc-circular-dependencies-fix.0(typescript@5.9.3)
  2180. lit: 3.3.0
  2181. qrcode: 1.5.3
  2182. transitivePeerDependencies:
  2183. - '@azure/app-configuration'
  2184. - '@azure/cosmos'
  2185. - '@azure/data-tables'
  2186. - '@azure/identity'
  2187. - '@azure/keyvault-secrets'
  2188. - '@azure/storage-blob'
  2189. - '@capacitor/preferences'
  2190. - '@deno/kv'
  2191. - '@netlify/blobs'
  2192. - '@planetscale/database'
  2193. - '@react-native-async-storage/async-storage'
  2194. - '@types/react'
  2195. - '@upstash/redis'
  2196. - '@vercel/blob'
  2197. - '@vercel/functions'
  2198. - '@vercel/kv'
  2199. - aws4fetch
  2200. - bufferutil
  2201. - db0
  2202. - encoding
  2203. - ioredis
  2204. - react
  2205. - typescript
  2206. - uploadthing
  2207. - utf-8-validate
  2208. - zod
  2209. '@reown/appkit-utils@1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(use-sync-external-store@1.2.0(react@18.3.1))(valtio@2.1.7(@types/react@19.2.15)(react@18.3.1))(zod@4.4.3)':
  2210. dependencies:
  2211. '@reown/appkit-common': 1.8.17-wc-circular-dependencies-fix.0(typescript@5.9.3)(zod@4.4.3)
  2212. '@reown/appkit-controllers': 1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(zod@4.4.3)
  2213. '@reown/appkit-polyfills': 1.8.17-wc-circular-dependencies-fix.0
  2214. '@reown/appkit-wallet': 1.8.17-wc-circular-dependencies-fix.0(typescript@5.9.3)
  2215. '@wallet-standard/wallet': 1.1.0
  2216. '@walletconnect/logger': 3.0.2
  2217. '@walletconnect/universal-provider': 2.23.2(typescript@5.9.3)(zod@4.4.3)
  2218. valtio: 2.1.7(@types/react@19.2.15)(react@18.3.1)
  2219. viem: 2.51.2(typescript@5.9.3)(zod@4.4.3)
  2220. optionalDependencies:
  2221. '@base-org/account': 2.4.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(use-sync-external-store@1.2.0(react@18.3.1))(zod@4.4.3)
  2222. '@safe-global/safe-apps-provider': 0.18.6(typescript@5.9.3)(zod@4.4.3)
  2223. '@safe-global/safe-apps-sdk': 9.1.0(typescript@5.9.3)(zod@4.4.3)
  2224. transitivePeerDependencies:
  2225. - '@azure/app-configuration'
  2226. - '@azure/cosmos'
  2227. - '@azure/data-tables'
  2228. - '@azure/identity'
  2229. - '@azure/keyvault-secrets'
  2230. - '@azure/storage-blob'
  2231. - '@capacitor/preferences'
  2232. - '@deno/kv'
  2233. - '@netlify/blobs'
  2234. - '@planetscale/database'
  2235. - '@react-native-async-storage/async-storage'
  2236. - '@types/react'
  2237. - '@upstash/redis'
  2238. - '@vercel/blob'
  2239. - '@vercel/functions'
  2240. - '@vercel/kv'
  2241. - aws4fetch
  2242. - bufferutil
  2243. - db0
  2244. - debug
  2245. - encoding
  2246. - fastestsmallesttextencoderdecoder
  2247. - immer
  2248. - ioredis
  2249. - react
  2250. - typescript
  2251. - uploadthing
  2252. - use-sync-external-store
  2253. - utf-8-validate
  2254. - zod
  2255. '@reown/appkit-wallet@1.8.17-wc-circular-dependencies-fix.0(typescript@5.9.3)':
  2256. dependencies:
  2257. '@reown/appkit-common': 1.8.17-wc-circular-dependencies-fix.0(typescript@5.9.3)(zod@3.22.4)
  2258. '@reown/appkit-polyfills': 1.8.17-wc-circular-dependencies-fix.0
  2259. '@walletconnect/logger': 3.0.2
  2260. zod: 3.22.4
  2261. transitivePeerDependencies:
  2262. - bufferutil
  2263. - typescript
  2264. - utf-8-validate
  2265. '@reown/appkit@1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(use-sync-external-store@1.2.0(react@18.3.1))(zod@4.4.3)':
  2266. dependencies:
  2267. '@reown/appkit-common': 1.8.17-wc-circular-dependencies-fix.0(typescript@5.9.3)(zod@4.4.3)
  2268. '@reown/appkit-controllers': 1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(zod@4.4.3)
  2269. '@reown/appkit-pay': 1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(use-sync-external-store@1.2.0(react@18.3.1))(zod@4.4.3)
  2270. '@reown/appkit-polyfills': 1.8.17-wc-circular-dependencies-fix.0
  2271. '@reown/appkit-scaffold-ui': 1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(use-sync-external-store@1.2.0(react@18.3.1))(valtio@2.1.7(@types/react@19.2.15)(react@18.3.1))(zod@4.4.3)
  2272. '@reown/appkit-ui': 1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(zod@4.4.3)
  2273. '@reown/appkit-utils': 1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(use-sync-external-store@1.2.0(react@18.3.1))(valtio@2.1.7(@types/react@19.2.15)(react@18.3.1))(zod@4.4.3)
  2274. '@reown/appkit-wallet': 1.8.17-wc-circular-dependencies-fix.0(typescript@5.9.3)
  2275. '@walletconnect/universal-provider': 2.23.2(typescript@5.9.3)(zod@4.4.3)
  2276. bs58: 6.0.0
  2277. semver: 7.7.2
  2278. valtio: 2.1.7(@types/react@19.2.15)(react@18.3.1)
  2279. viem: 2.51.2(typescript@5.9.3)(zod@4.4.3)
  2280. optionalDependencies:
  2281. '@lit/react': 1.0.8(@types/react@19.2.15)
  2282. transitivePeerDependencies:
  2283. - '@azure/app-configuration'
  2284. - '@azure/cosmos'
  2285. - '@azure/data-tables'
  2286. - '@azure/identity'
  2287. - '@azure/keyvault-secrets'
  2288. - '@azure/storage-blob'
  2289. - '@capacitor/preferences'
  2290. - '@deno/kv'
  2291. - '@netlify/blobs'
  2292. - '@planetscale/database'
  2293. - '@react-native-async-storage/async-storage'
  2294. - '@types/react'
  2295. - '@upstash/redis'
  2296. - '@vercel/blob'
  2297. - '@vercel/functions'
  2298. - '@vercel/kv'
  2299. - aws4fetch
  2300. - bufferutil
  2301. - db0
  2302. - debug
  2303. - encoding
  2304. - fastestsmallesttextencoderdecoder
  2305. - immer
  2306. - ioredis
  2307. - react
  2308. - typescript
  2309. - uploadthing
  2310. - use-sync-external-store
  2311. - utf-8-validate
  2312. - zod
  2313. '@rollup/rollup-android-arm-eabi@4.60.3':
  2314. optional: true
  2315. '@rollup/rollup-android-arm64@4.60.3':
  2316. optional: true
  2317. '@rollup/rollup-darwin-arm64@4.60.3':
  2318. optional: true
  2319. '@rollup/rollup-darwin-x64@4.60.3':
  2320. optional: true
  2321. '@rollup/rollup-freebsd-arm64@4.60.3':
  2322. optional: true
  2323. '@rollup/rollup-freebsd-x64@4.60.3':
  2324. optional: true
  2325. '@rollup/rollup-linux-arm-gnueabihf@4.60.3':
  2326. optional: true
  2327. '@rollup/rollup-linux-arm-musleabihf@4.60.3':
  2328. optional: true
  2329. '@rollup/rollup-linux-arm64-gnu@4.60.3':
  2330. optional: true
  2331. '@rollup/rollup-linux-arm64-musl@4.60.3':
  2332. optional: true
  2333. '@rollup/rollup-linux-loong64-gnu@4.60.3':
  2334. optional: true
  2335. '@rollup/rollup-linux-loong64-musl@4.60.3':
  2336. optional: true
  2337. '@rollup/rollup-linux-ppc64-gnu@4.60.3':
  2338. optional: true
  2339. '@rollup/rollup-linux-ppc64-musl@4.60.3':
  2340. optional: true
  2341. '@rollup/rollup-linux-riscv64-gnu@4.60.3':
  2342. optional: true
  2343. '@rollup/rollup-linux-riscv64-musl@4.60.3':
  2344. optional: true
  2345. '@rollup/rollup-linux-s390x-gnu@4.60.3':
  2346. optional: true
  2347. '@rollup/rollup-linux-x64-gnu@4.60.3':
  2348. optional: true
  2349. '@rollup/rollup-linux-x64-musl@4.60.3':
  2350. optional: true
  2351. '@rollup/rollup-openbsd-x64@4.60.3':
  2352. optional: true
  2353. '@rollup/rollup-openharmony-arm64@4.60.3':
  2354. optional: true
  2355. '@rollup/rollup-win32-arm64-msvc@4.60.3':
  2356. optional: true
  2357. '@rollup/rollup-win32-ia32-msvc@4.60.3':
  2358. optional: true
  2359. '@rollup/rollup-win32-x64-gnu@4.60.3':
  2360. optional: true
  2361. '@rollup/rollup-win32-x64-msvc@4.60.3':
  2362. optional: true
  2363. '@safe-global/safe-apps-provider@0.18.6(typescript@5.9.3)(zod@4.4.3)':
  2364. dependencies:
  2365. '@safe-global/safe-apps-sdk': 9.1.0(typescript@5.9.3)(zod@4.4.3)
  2366. events: 3.3.0
  2367. transitivePeerDependencies:
  2368. - bufferutil
  2369. - typescript
  2370. - utf-8-validate
  2371. - zod
  2372. optional: true
  2373. '@safe-global/safe-apps-sdk@9.1.0(typescript@5.9.3)(zod@4.4.3)':
  2374. dependencies:
  2375. '@safe-global/safe-gateway-typescript-sdk': 3.23.1
  2376. viem: 2.51.2(typescript@5.9.3)(zod@4.4.3)
  2377. transitivePeerDependencies:
  2378. - bufferutil
  2379. - typescript
  2380. - utf-8-validate
  2381. - zod
  2382. optional: true
  2383. '@safe-global/safe-gateway-typescript-sdk@3.23.1':
  2384. optional: true
  2385. '@scure/base@1.1.9': {}
  2386. '@scure/base@1.2.6': {}
  2387. '@scure/bip32@1.4.0':
  2388. dependencies:
  2389. '@noble/curves': 1.4.2
  2390. '@noble/hashes': 1.4.0
  2391. '@scure/base': 1.1.9
  2392. '@scure/bip32@1.7.0':
  2393. dependencies:
  2394. '@noble/curves': 1.9.1
  2395. '@noble/hashes': 1.8.0
  2396. '@scure/base': 1.2.6
  2397. '@scure/bip39@1.3.0':
  2398. dependencies:
  2399. '@noble/hashes': 1.4.0
  2400. '@scure/base': 1.1.9
  2401. '@scure/bip39@1.6.0':
  2402. dependencies:
  2403. '@noble/hashes': 1.8.0
  2404. '@scure/base': 1.2.6
  2405. '@solana-program/system@0.10.0(@solana/kit@5.5.1(typescript@5.9.3))':
  2406. dependencies:
  2407. '@solana/kit': 5.5.1(typescript@5.9.3)
  2408. optional: true
  2409. '@solana-program/token@0.9.0(@solana/kit@5.5.1(typescript@5.9.3))':
  2410. dependencies:
  2411. '@solana/kit': 5.5.1(typescript@5.9.3)
  2412. optional: true
  2413. '@solana/accounts@5.5.1(typescript@5.9.3)':
  2414. dependencies:
  2415. '@solana/addresses': 5.5.1(typescript@5.9.3)
  2416. '@solana/codecs-core': 5.5.1(typescript@5.9.3)
  2417. '@solana/codecs-strings': 5.5.1(typescript@5.9.3)
  2418. '@solana/errors': 5.5.1(typescript@5.9.3)
  2419. '@solana/rpc-spec': 5.5.1(typescript@5.9.3)
  2420. '@solana/rpc-types': 5.5.1(typescript@5.9.3)
  2421. optionalDependencies:
  2422. typescript: 5.9.3
  2423. transitivePeerDependencies:
  2424. - fastestsmallesttextencoderdecoder
  2425. optional: true
  2426. '@solana/addresses@5.5.1(typescript@5.9.3)':
  2427. dependencies:
  2428. '@solana/assertions': 5.5.1(typescript@5.9.3)
  2429. '@solana/codecs-core': 5.5.1(typescript@5.9.3)
  2430. '@solana/codecs-strings': 5.5.1(typescript@5.9.3)
  2431. '@solana/errors': 5.5.1(typescript@5.9.3)
  2432. '@solana/nominal-types': 5.5.1(typescript@5.9.3)
  2433. optionalDependencies:
  2434. typescript: 5.9.3
  2435. transitivePeerDependencies:
  2436. - fastestsmallesttextencoderdecoder
  2437. optional: true
  2438. '@solana/assertions@5.5.1(typescript@5.9.3)':
  2439. dependencies:
  2440. '@solana/errors': 5.5.1(typescript@5.9.3)
  2441. optionalDependencies:
  2442. typescript: 5.9.3
  2443. optional: true
  2444. '@solana/codecs-core@5.5.1(typescript@5.9.3)':
  2445. dependencies:
  2446. '@solana/errors': 5.5.1(typescript@5.9.3)
  2447. optionalDependencies:
  2448. typescript: 5.9.3
  2449. optional: true
  2450. '@solana/codecs-data-structures@5.5.1(typescript@5.9.3)':
  2451. dependencies:
  2452. '@solana/codecs-core': 5.5.1(typescript@5.9.3)
  2453. '@solana/codecs-numbers': 5.5.1(typescript@5.9.3)
  2454. '@solana/errors': 5.5.1(typescript@5.9.3)
  2455. optionalDependencies:
  2456. typescript: 5.9.3
  2457. optional: true
  2458. '@solana/codecs-numbers@5.5.1(typescript@5.9.3)':
  2459. dependencies:
  2460. '@solana/codecs-core': 5.5.1(typescript@5.9.3)
  2461. '@solana/errors': 5.5.1(typescript@5.9.3)
  2462. optionalDependencies:
  2463. typescript: 5.9.3
  2464. optional: true
  2465. '@solana/codecs-strings@5.5.1(typescript@5.9.3)':
  2466. dependencies:
  2467. '@solana/codecs-core': 5.5.1(typescript@5.9.3)
  2468. '@solana/codecs-numbers': 5.5.1(typescript@5.9.3)
  2469. '@solana/errors': 5.5.1(typescript@5.9.3)
  2470. optionalDependencies:
  2471. typescript: 5.9.3
  2472. optional: true
  2473. '@solana/codecs@5.5.1(typescript@5.9.3)':
  2474. dependencies:
  2475. '@solana/codecs-core': 5.5.1(typescript@5.9.3)
  2476. '@solana/codecs-data-structures': 5.5.1(typescript@5.9.3)
  2477. '@solana/codecs-numbers': 5.5.1(typescript@5.9.3)
  2478. '@solana/codecs-strings': 5.5.1(typescript@5.9.3)
  2479. '@solana/options': 5.5.1(typescript@5.9.3)
  2480. optionalDependencies:
  2481. typescript: 5.9.3
  2482. transitivePeerDependencies:
  2483. - fastestsmallesttextencoderdecoder
  2484. optional: true
  2485. '@solana/errors@5.5.1(typescript@5.9.3)':
  2486. dependencies:
  2487. chalk: 5.6.2
  2488. commander: 14.0.2
  2489. optionalDependencies:
  2490. typescript: 5.9.3
  2491. optional: true
  2492. '@solana/fast-stable-stringify@5.5.1(typescript@5.9.3)':
  2493. optionalDependencies:
  2494. typescript: 5.9.3
  2495. optional: true
  2496. '@solana/functional@5.5.1(typescript@5.9.3)':
  2497. optionalDependencies:
  2498. typescript: 5.9.3
  2499. optional: true
  2500. '@solana/instruction-plans@5.5.1(typescript@5.9.3)':
  2501. dependencies:
  2502. '@solana/errors': 5.5.1(typescript@5.9.3)
  2503. '@solana/instructions': 5.5.1(typescript@5.9.3)
  2504. '@solana/keys': 5.5.1(typescript@5.9.3)
  2505. '@solana/promises': 5.5.1(typescript@5.9.3)
  2506. '@solana/transaction-messages': 5.5.1(typescript@5.9.3)
  2507. '@solana/transactions': 5.5.1(typescript@5.9.3)
  2508. optionalDependencies:
  2509. typescript: 5.9.3
  2510. transitivePeerDependencies:
  2511. - fastestsmallesttextencoderdecoder
  2512. optional: true
  2513. '@solana/instructions@5.5.1(typescript@5.9.3)':
  2514. dependencies:
  2515. '@solana/codecs-core': 5.5.1(typescript@5.9.3)
  2516. '@solana/errors': 5.5.1(typescript@5.9.3)
  2517. optionalDependencies:
  2518. typescript: 5.9.3
  2519. optional: true
  2520. '@solana/keys@5.5.1(typescript@5.9.3)':
  2521. dependencies:
  2522. '@solana/assertions': 5.5.1(typescript@5.9.3)
  2523. '@solana/codecs-core': 5.5.1(typescript@5.9.3)
  2524. '@solana/codecs-strings': 5.5.1(typescript@5.9.3)
  2525. '@solana/errors': 5.5.1(typescript@5.9.3)
  2526. '@solana/nominal-types': 5.5.1(typescript@5.9.3)
  2527. optionalDependencies:
  2528. typescript: 5.9.3
  2529. transitivePeerDependencies:
  2530. - fastestsmallesttextencoderdecoder
  2531. optional: true
  2532. '@solana/kit@5.5.1(typescript@5.9.3)':
  2533. dependencies:
  2534. '@solana/accounts': 5.5.1(typescript@5.9.3)
  2535. '@solana/addresses': 5.5.1(typescript@5.9.3)
  2536. '@solana/codecs': 5.5.1(typescript@5.9.3)
  2537. '@solana/errors': 5.5.1(typescript@5.9.3)
  2538. '@solana/functional': 5.5.1(typescript@5.9.3)
  2539. '@solana/instruction-plans': 5.5.1(typescript@5.9.3)
  2540. '@solana/instructions': 5.5.1(typescript@5.9.3)
  2541. '@solana/keys': 5.5.1(typescript@5.9.3)
  2542. '@solana/offchain-messages': 5.5.1(typescript@5.9.3)
  2543. '@solana/plugin-core': 5.5.1(typescript@5.9.3)
  2544. '@solana/programs': 5.5.1(typescript@5.9.3)
  2545. '@solana/rpc': 5.5.1(typescript@5.9.3)
  2546. '@solana/rpc-api': 5.5.1(typescript@5.9.3)
  2547. '@solana/rpc-parsed-types': 5.5.1(typescript@5.9.3)
  2548. '@solana/rpc-spec-types': 5.5.1(typescript@5.9.3)
  2549. '@solana/rpc-subscriptions': 5.5.1(typescript@5.9.3)
  2550. '@solana/rpc-types': 5.5.1(typescript@5.9.3)
  2551. '@solana/signers': 5.5.1(typescript@5.9.3)
  2552. '@solana/sysvars': 5.5.1(typescript@5.9.3)
  2553. '@solana/transaction-confirmation': 5.5.1(typescript@5.9.3)
  2554. '@solana/transaction-messages': 5.5.1(typescript@5.9.3)
  2555. '@solana/transactions': 5.5.1(typescript@5.9.3)
  2556. optionalDependencies:
  2557. typescript: 5.9.3
  2558. transitivePeerDependencies:
  2559. - bufferutil
  2560. - fastestsmallesttextencoderdecoder
  2561. - utf-8-validate
  2562. optional: true
  2563. '@solana/nominal-types@5.5.1(typescript@5.9.3)':
  2564. optionalDependencies:
  2565. typescript: 5.9.3
  2566. optional: true
  2567. '@solana/offchain-messages@5.5.1(typescript@5.9.3)':
  2568. dependencies:
  2569. '@solana/addresses': 5.5.1(typescript@5.9.3)
  2570. '@solana/codecs-core': 5.5.1(typescript@5.9.3)
  2571. '@solana/codecs-data-structures': 5.5.1(typescript@5.9.3)
  2572. '@solana/codecs-numbers': 5.5.1(typescript@5.9.3)
  2573. '@solana/codecs-strings': 5.5.1(typescript@5.9.3)
  2574. '@solana/errors': 5.5.1(typescript@5.9.3)
  2575. '@solana/keys': 5.5.1(typescript@5.9.3)
  2576. '@solana/nominal-types': 5.5.1(typescript@5.9.3)
  2577. optionalDependencies:
  2578. typescript: 5.9.3
  2579. transitivePeerDependencies:
  2580. - fastestsmallesttextencoderdecoder
  2581. optional: true
  2582. '@solana/options@5.5.1(typescript@5.9.3)':
  2583. dependencies:
  2584. '@solana/codecs-core': 5.5.1(typescript@5.9.3)
  2585. '@solana/codecs-data-structures': 5.5.1(typescript@5.9.3)
  2586. '@solana/codecs-numbers': 5.5.1(typescript@5.9.3)
  2587. '@solana/codecs-strings': 5.5.1(typescript@5.9.3)
  2588. '@solana/errors': 5.5.1(typescript@5.9.3)
  2589. optionalDependencies:
  2590. typescript: 5.9.3
  2591. transitivePeerDependencies:
  2592. - fastestsmallesttextencoderdecoder
  2593. optional: true
  2594. '@solana/plugin-core@5.5.1(typescript@5.9.3)':
  2595. optionalDependencies:
  2596. typescript: 5.9.3
  2597. optional: true
  2598. '@solana/programs@5.5.1(typescript@5.9.3)':
  2599. dependencies:
  2600. '@solana/addresses': 5.5.1(typescript@5.9.3)
  2601. '@solana/errors': 5.5.1(typescript@5.9.3)
  2602. optionalDependencies:
  2603. typescript: 5.9.3
  2604. transitivePeerDependencies:
  2605. - fastestsmallesttextencoderdecoder
  2606. optional: true
  2607. '@solana/promises@5.5.1(typescript@5.9.3)':
  2608. optionalDependencies:
  2609. typescript: 5.9.3
  2610. optional: true
  2611. '@solana/rpc-api@5.5.1(typescript@5.9.3)':
  2612. dependencies:
  2613. '@solana/addresses': 5.5.1(typescript@5.9.3)
  2614. '@solana/codecs-core': 5.5.1(typescript@5.9.3)
  2615. '@solana/codecs-strings': 5.5.1(typescript@5.9.3)
  2616. '@solana/errors': 5.5.1(typescript@5.9.3)
  2617. '@solana/keys': 5.5.1(typescript@5.9.3)
  2618. '@solana/rpc-parsed-types': 5.5.1(typescript@5.9.3)
  2619. '@solana/rpc-spec': 5.5.1(typescript@5.9.3)
  2620. '@solana/rpc-transformers': 5.5.1(typescript@5.9.3)
  2621. '@solana/rpc-types': 5.5.1(typescript@5.9.3)
  2622. '@solana/transaction-messages': 5.5.1(typescript@5.9.3)
  2623. '@solana/transactions': 5.5.1(typescript@5.9.3)
  2624. optionalDependencies:
  2625. typescript: 5.9.3
  2626. transitivePeerDependencies:
  2627. - fastestsmallesttextencoderdecoder
  2628. optional: true
  2629. '@solana/rpc-parsed-types@5.5.1(typescript@5.9.3)':
  2630. optionalDependencies:
  2631. typescript: 5.9.3
  2632. optional: true
  2633. '@solana/rpc-spec-types@5.5.1(typescript@5.9.3)':
  2634. optionalDependencies:
  2635. typescript: 5.9.3
  2636. optional: true
  2637. '@solana/rpc-spec@5.5.1(typescript@5.9.3)':
  2638. dependencies:
  2639. '@solana/errors': 5.5.1(typescript@5.9.3)
  2640. '@solana/rpc-spec-types': 5.5.1(typescript@5.9.3)
  2641. optionalDependencies:
  2642. typescript: 5.9.3
  2643. optional: true
  2644. '@solana/rpc-subscriptions-api@5.5.1(typescript@5.9.3)':
  2645. dependencies:
  2646. '@solana/addresses': 5.5.1(typescript@5.9.3)
  2647. '@solana/keys': 5.5.1(typescript@5.9.3)
  2648. '@solana/rpc-subscriptions-spec': 5.5.1(typescript@5.9.3)
  2649. '@solana/rpc-transformers': 5.5.1(typescript@5.9.3)
  2650. '@solana/rpc-types': 5.5.1(typescript@5.9.3)
  2651. '@solana/transaction-messages': 5.5.1(typescript@5.9.3)
  2652. '@solana/transactions': 5.5.1(typescript@5.9.3)
  2653. optionalDependencies:
  2654. typescript: 5.9.3
  2655. transitivePeerDependencies:
  2656. - fastestsmallesttextencoderdecoder
  2657. optional: true
  2658. '@solana/rpc-subscriptions-channel-websocket@5.5.1(typescript@5.9.3)':
  2659. dependencies:
  2660. '@solana/errors': 5.5.1(typescript@5.9.3)
  2661. '@solana/functional': 5.5.1(typescript@5.9.3)
  2662. '@solana/rpc-subscriptions-spec': 5.5.1(typescript@5.9.3)
  2663. '@solana/subscribable': 5.5.1(typescript@5.9.3)
  2664. ws: 8.21.0
  2665. optionalDependencies:
  2666. typescript: 5.9.3
  2667. transitivePeerDependencies:
  2668. - bufferutil
  2669. - utf-8-validate
  2670. optional: true
  2671. '@solana/rpc-subscriptions-spec@5.5.1(typescript@5.9.3)':
  2672. dependencies:
  2673. '@solana/errors': 5.5.1(typescript@5.9.3)
  2674. '@solana/promises': 5.5.1(typescript@5.9.3)
  2675. '@solana/rpc-spec-types': 5.5.1(typescript@5.9.3)
  2676. '@solana/subscribable': 5.5.1(typescript@5.9.3)
  2677. optionalDependencies:
  2678. typescript: 5.9.3
  2679. optional: true
  2680. '@solana/rpc-subscriptions@5.5.1(typescript@5.9.3)':
  2681. dependencies:
  2682. '@solana/errors': 5.5.1(typescript@5.9.3)
  2683. '@solana/fast-stable-stringify': 5.5.1(typescript@5.9.3)
  2684. '@solana/functional': 5.5.1(typescript@5.9.3)
  2685. '@solana/promises': 5.5.1(typescript@5.9.3)
  2686. '@solana/rpc-spec-types': 5.5.1(typescript@5.9.3)
  2687. '@solana/rpc-subscriptions-api': 5.5.1(typescript@5.9.3)
  2688. '@solana/rpc-subscriptions-channel-websocket': 5.5.1(typescript@5.9.3)
  2689. '@solana/rpc-subscriptions-spec': 5.5.1(typescript@5.9.3)
  2690. '@solana/rpc-transformers': 5.5.1(typescript@5.9.3)
  2691. '@solana/rpc-types': 5.5.1(typescript@5.9.3)
  2692. '@solana/subscribable': 5.5.1(typescript@5.9.3)
  2693. optionalDependencies:
  2694. typescript: 5.9.3
  2695. transitivePeerDependencies:
  2696. - bufferutil
  2697. - fastestsmallesttextencoderdecoder
  2698. - utf-8-validate
  2699. optional: true
  2700. '@solana/rpc-transformers@5.5.1(typescript@5.9.3)':
  2701. dependencies:
  2702. '@solana/errors': 5.5.1(typescript@5.9.3)
  2703. '@solana/functional': 5.5.1(typescript@5.9.3)
  2704. '@solana/nominal-types': 5.5.1(typescript@5.9.3)
  2705. '@solana/rpc-spec-types': 5.5.1(typescript@5.9.3)
  2706. '@solana/rpc-types': 5.5.1(typescript@5.9.3)
  2707. optionalDependencies:
  2708. typescript: 5.9.3
  2709. transitivePeerDependencies:
  2710. - fastestsmallesttextencoderdecoder
  2711. optional: true
  2712. '@solana/rpc-transport-http@5.5.1(typescript@5.9.3)':
  2713. dependencies:
  2714. '@solana/errors': 5.5.1(typescript@5.9.3)
  2715. '@solana/rpc-spec': 5.5.1(typescript@5.9.3)
  2716. '@solana/rpc-spec-types': 5.5.1(typescript@5.9.3)
  2717. undici-types: 7.19.2
  2718. optionalDependencies:
  2719. typescript: 5.9.3
  2720. optional: true
  2721. '@solana/rpc-types@5.5.1(typescript@5.9.3)':
  2722. dependencies:
  2723. '@solana/addresses': 5.5.1(typescript@5.9.3)
  2724. '@solana/codecs-core': 5.5.1(typescript@5.9.3)
  2725. '@solana/codecs-numbers': 5.5.1(typescript@5.9.3)
  2726. '@solana/codecs-strings': 5.5.1(typescript@5.9.3)
  2727. '@solana/errors': 5.5.1(typescript@5.9.3)
  2728. '@solana/nominal-types': 5.5.1(typescript@5.9.3)
  2729. optionalDependencies:
  2730. typescript: 5.9.3
  2731. transitivePeerDependencies:
  2732. - fastestsmallesttextencoderdecoder
  2733. optional: true
  2734. '@solana/rpc@5.5.1(typescript@5.9.3)':
  2735. dependencies:
  2736. '@solana/errors': 5.5.1(typescript@5.9.3)
  2737. '@solana/fast-stable-stringify': 5.5.1(typescript@5.9.3)
  2738. '@solana/functional': 5.5.1(typescript@5.9.3)
  2739. '@solana/rpc-api': 5.5.1(typescript@5.9.3)
  2740. '@solana/rpc-spec': 5.5.1(typescript@5.9.3)
  2741. '@solana/rpc-spec-types': 5.5.1(typescript@5.9.3)
  2742. '@solana/rpc-transformers': 5.5.1(typescript@5.9.3)
  2743. '@solana/rpc-transport-http': 5.5.1(typescript@5.9.3)
  2744. '@solana/rpc-types': 5.5.1(typescript@5.9.3)
  2745. optionalDependencies:
  2746. typescript: 5.9.3
  2747. transitivePeerDependencies:
  2748. - fastestsmallesttextencoderdecoder
  2749. optional: true
  2750. '@solana/signers@5.5.1(typescript@5.9.3)':
  2751. dependencies:
  2752. '@solana/addresses': 5.5.1(typescript@5.9.3)
  2753. '@solana/codecs-core': 5.5.1(typescript@5.9.3)
  2754. '@solana/errors': 5.5.1(typescript@5.9.3)
  2755. '@solana/instructions': 5.5.1(typescript@5.9.3)
  2756. '@solana/keys': 5.5.1(typescript@5.9.3)
  2757. '@solana/nominal-types': 5.5.1(typescript@5.9.3)
  2758. '@solana/offchain-messages': 5.5.1(typescript@5.9.3)
  2759. '@solana/transaction-messages': 5.5.1(typescript@5.9.3)
  2760. '@solana/transactions': 5.5.1(typescript@5.9.3)
  2761. optionalDependencies:
  2762. typescript: 5.9.3
  2763. transitivePeerDependencies:
  2764. - fastestsmallesttextencoderdecoder
  2765. optional: true
  2766. '@solana/subscribable@5.5.1(typescript@5.9.3)':
  2767. dependencies:
  2768. '@solana/errors': 5.5.1(typescript@5.9.3)
  2769. optionalDependencies:
  2770. typescript: 5.9.3
  2771. optional: true
  2772. '@solana/sysvars@5.5.1(typescript@5.9.3)':
  2773. dependencies:
  2774. '@solana/accounts': 5.5.1(typescript@5.9.3)
  2775. '@solana/codecs': 5.5.1(typescript@5.9.3)
  2776. '@solana/errors': 5.5.1(typescript@5.9.3)
  2777. '@solana/rpc-types': 5.5.1(typescript@5.9.3)
  2778. optionalDependencies:
  2779. typescript: 5.9.3
  2780. transitivePeerDependencies:
  2781. - fastestsmallesttextencoderdecoder
  2782. optional: true
  2783. '@solana/transaction-confirmation@5.5.1(typescript@5.9.3)':
  2784. dependencies:
  2785. '@solana/addresses': 5.5.1(typescript@5.9.3)
  2786. '@solana/codecs-strings': 5.5.1(typescript@5.9.3)
  2787. '@solana/errors': 5.5.1(typescript@5.9.3)
  2788. '@solana/keys': 5.5.1(typescript@5.9.3)
  2789. '@solana/promises': 5.5.1(typescript@5.9.3)
  2790. '@solana/rpc': 5.5.1(typescript@5.9.3)
  2791. '@solana/rpc-subscriptions': 5.5.1(typescript@5.9.3)
  2792. '@solana/rpc-types': 5.5.1(typescript@5.9.3)
  2793. '@solana/transaction-messages': 5.5.1(typescript@5.9.3)
  2794. '@solana/transactions': 5.5.1(typescript@5.9.3)
  2795. optionalDependencies:
  2796. typescript: 5.9.3
  2797. transitivePeerDependencies:
  2798. - bufferutil
  2799. - fastestsmallesttextencoderdecoder
  2800. - utf-8-validate
  2801. optional: true
  2802. '@solana/transaction-messages@5.5.1(typescript@5.9.3)':
  2803. dependencies:
  2804. '@solana/addresses': 5.5.1(typescript@5.9.3)
  2805. '@solana/codecs-core': 5.5.1(typescript@5.9.3)
  2806. '@solana/codecs-data-structures': 5.5.1(typescript@5.9.3)
  2807. '@solana/codecs-numbers': 5.5.1(typescript@5.9.3)
  2808. '@solana/errors': 5.5.1(typescript@5.9.3)
  2809. '@solana/functional': 5.5.1(typescript@5.9.3)
  2810. '@solana/instructions': 5.5.1(typescript@5.9.3)
  2811. '@solana/nominal-types': 5.5.1(typescript@5.9.3)
  2812. '@solana/rpc-types': 5.5.1(typescript@5.9.3)
  2813. optionalDependencies:
  2814. typescript: 5.9.3
  2815. transitivePeerDependencies:
  2816. - fastestsmallesttextencoderdecoder
  2817. optional: true
  2818. '@solana/transactions@5.5.1(typescript@5.9.3)':
  2819. dependencies:
  2820. '@solana/addresses': 5.5.1(typescript@5.9.3)
  2821. '@solana/codecs-core': 5.5.1(typescript@5.9.3)
  2822. '@solana/codecs-data-structures': 5.5.1(typescript@5.9.3)
  2823. '@solana/codecs-numbers': 5.5.1(typescript@5.9.3)
  2824. '@solana/codecs-strings': 5.5.1(typescript@5.9.3)
  2825. '@solana/errors': 5.5.1(typescript@5.9.3)
  2826. '@solana/functional': 5.5.1(typescript@5.9.3)
  2827. '@solana/instructions': 5.5.1(typescript@5.9.3)
  2828. '@solana/keys': 5.5.1(typescript@5.9.3)
  2829. '@solana/nominal-types': 5.5.1(typescript@5.9.3)
  2830. '@solana/rpc-types': 5.5.1(typescript@5.9.3)
  2831. '@solana/transaction-messages': 5.5.1(typescript@5.9.3)
  2832. optionalDependencies:
  2833. typescript: 5.9.3
  2834. transitivePeerDependencies:
  2835. - fastestsmallesttextencoderdecoder
  2836. optional: true
  2837. '@types/estree@1.0.8': {}
  2838. '@types/estree@1.0.9':
  2839. optional: true
  2840. '@types/node@22.7.5':
  2841. dependencies:
  2842. undici-types: 6.19.8
  2843. '@types/node@25.6.2':
  2844. dependencies:
  2845. undici-types: 7.19.2
  2846. '@types/qrcode@1.5.6':
  2847. dependencies:
  2848. '@types/node': 25.6.2
  2849. '@types/react@19.2.15':
  2850. dependencies:
  2851. csstype: 3.2.3
  2852. optional: true
  2853. '@types/trusted-types@2.0.7': {}
  2854. '@types/web-bluetooth@0.0.21': {}
  2855. '@vitejs/plugin-vue@5.2.4(vite@5.4.21(@types/node@25.6.2))(vue@3.5.34(typescript@5.9.3))':
  2856. dependencies:
  2857. vite: 5.4.21(@types/node@25.6.2)
  2858. vue: 3.5.34(typescript@5.9.3)
  2859. '@volar/language-core@2.4.15':
  2860. dependencies:
  2861. '@volar/source-map': 2.4.15
  2862. '@volar/source-map@2.4.15': {}
  2863. '@volar/typescript@2.4.15':
  2864. dependencies:
  2865. '@volar/language-core': 2.4.15
  2866. path-browserify: 1.0.1
  2867. vscode-uri: 3.1.0
  2868. '@vue/compiler-core@3.5.34':
  2869. dependencies:
  2870. '@babel/parser': 7.29.3
  2871. '@vue/shared': 3.5.34
  2872. entities: 7.0.1
  2873. estree-walker: 2.0.2
  2874. source-map-js: 1.2.1
  2875. '@vue/compiler-dom@3.5.34':
  2876. dependencies:
  2877. '@vue/compiler-core': 3.5.34
  2878. '@vue/shared': 3.5.34
  2879. '@vue/compiler-sfc@3.5.34':
  2880. dependencies:
  2881. '@babel/parser': 7.29.3
  2882. '@vue/compiler-core': 3.5.34
  2883. '@vue/compiler-dom': 3.5.34
  2884. '@vue/compiler-ssr': 3.5.34
  2885. '@vue/shared': 3.5.34
  2886. estree-walker: 2.0.2
  2887. magic-string: 0.30.21
  2888. postcss: 8.5.14
  2889. source-map-js: 1.2.1
  2890. '@vue/compiler-ssr@3.5.34':
  2891. dependencies:
  2892. '@vue/compiler-dom': 3.5.34
  2893. '@vue/shared': 3.5.34
  2894. '@vue/compiler-vue2@2.7.16':
  2895. dependencies:
  2896. de-indent: 1.0.2
  2897. he: 1.2.0
  2898. '@vue/devtools-api@6.6.4': {}
  2899. '@vue/devtools-api@7.7.9':
  2900. dependencies:
  2901. '@vue/devtools-kit': 7.7.9
  2902. '@vue/devtools-kit@7.7.9':
  2903. dependencies:
  2904. '@vue/devtools-shared': 7.7.9
  2905. birpc: 2.9.0
  2906. hookable: 5.5.3
  2907. mitt: 3.0.1
  2908. perfect-debounce: 1.0.0
  2909. speakingurl: 14.0.1
  2910. superjson: 2.2.6
  2911. '@vue/devtools-shared@7.7.9':
  2912. dependencies:
  2913. rfdc: 1.4.1
  2914. '@vue/language-core@2.2.12(typescript@5.9.3)':
  2915. dependencies:
  2916. '@volar/language-core': 2.4.15
  2917. '@vue/compiler-dom': 3.5.34
  2918. '@vue/compiler-vue2': 2.7.16
  2919. '@vue/shared': 3.5.34
  2920. alien-signals: 1.0.13
  2921. minimatch: 9.0.9
  2922. muggle-string: 0.4.1
  2923. path-browserify: 1.0.1
  2924. optionalDependencies:
  2925. typescript: 5.9.3
  2926. '@vue/reactivity@3.5.34':
  2927. dependencies:
  2928. '@vue/shared': 3.5.34
  2929. '@vue/runtime-core@3.5.34':
  2930. dependencies:
  2931. '@vue/reactivity': 3.5.34
  2932. '@vue/shared': 3.5.34
  2933. '@vue/runtime-dom@3.5.34':
  2934. dependencies:
  2935. '@vue/reactivity': 3.5.34
  2936. '@vue/runtime-core': 3.5.34
  2937. '@vue/shared': 3.5.34
  2938. csstype: 3.2.3
  2939. '@vue/server-renderer@3.5.34(vue@3.5.34(typescript@5.9.3))':
  2940. dependencies:
  2941. '@vue/compiler-ssr': 3.5.34
  2942. '@vue/shared': 3.5.34
  2943. vue: 3.5.34(typescript@5.9.3)
  2944. '@vue/shared@3.5.34': {}
  2945. '@vueuse/core@13.9.0(vue@3.5.34(typescript@5.9.3))':
  2946. dependencies:
  2947. '@types/web-bluetooth': 0.0.21
  2948. '@vueuse/metadata': 13.9.0
  2949. '@vueuse/shared': 13.9.0(vue@3.5.34(typescript@5.9.3))
  2950. vue: 3.5.34(typescript@5.9.3)
  2951. '@vueuse/core@14.3.0(vue@3.5.34(typescript@5.9.3))':
  2952. dependencies:
  2953. '@types/web-bluetooth': 0.0.21
  2954. '@vueuse/metadata': 14.3.0
  2955. '@vueuse/shared': 14.3.0(vue@3.5.34(typescript@5.9.3))
  2956. vue: 3.5.34(typescript@5.9.3)
  2957. '@vueuse/metadata@13.9.0': {}
  2958. '@vueuse/metadata@14.3.0': {}
  2959. '@vueuse/motion@3.0.3(vue@3.5.34(typescript@5.9.3))':
  2960. dependencies:
  2961. '@vueuse/core': 13.9.0(vue@3.5.34(typescript@5.9.3))
  2962. '@vueuse/shared': 13.9.0(vue@3.5.34(typescript@5.9.3))
  2963. defu: 6.1.7
  2964. framesync: 6.1.2
  2965. popmotion: 11.0.5
  2966. style-value-types: 5.1.2
  2967. vue: 3.5.34(typescript@5.9.3)
  2968. optionalDependencies:
  2969. '@nuxt/kit': 3.21.4
  2970. transitivePeerDependencies:
  2971. - magicast
  2972. '@vueuse/shared@13.9.0(vue@3.5.34(typescript@5.9.3))':
  2973. dependencies:
  2974. vue: 3.5.34(typescript@5.9.3)
  2975. '@vueuse/shared@14.3.0(vue@3.5.34(typescript@5.9.3))':
  2976. dependencies:
  2977. vue: 3.5.34(typescript@5.9.3)
  2978. '@wallet-standard/base@1.1.0': {}
  2979. '@wallet-standard/wallet@1.1.0':
  2980. dependencies:
  2981. '@wallet-standard/base': 1.1.0
  2982. '@walletconnect/core@2.23.2(typescript@5.9.3)(zod@4.4.3)':
  2983. dependencies:
  2984. '@walletconnect/heartbeat': 1.2.2
  2985. '@walletconnect/jsonrpc-provider': 1.0.14
  2986. '@walletconnect/jsonrpc-types': 1.0.4
  2987. '@walletconnect/jsonrpc-utils': 1.0.8
  2988. '@walletconnect/jsonrpc-ws-connection': 1.0.16
  2989. '@walletconnect/keyvaluestorage': 1.1.1
  2990. '@walletconnect/logger': 3.0.2
  2991. '@walletconnect/relay-api': 1.0.11
  2992. '@walletconnect/relay-auth': 1.1.0
  2993. '@walletconnect/safe-json': 1.0.2
  2994. '@walletconnect/time': 1.0.2
  2995. '@walletconnect/types': 2.23.2
  2996. '@walletconnect/utils': 2.23.2(typescript@5.9.3)(zod@4.4.3)
  2997. '@walletconnect/window-getters': 1.0.1
  2998. es-toolkit: 1.39.3
  2999. events: 3.3.0
  3000. uint8arrays: 3.1.1
  3001. transitivePeerDependencies:
  3002. - '@azure/app-configuration'
  3003. - '@azure/cosmos'
  3004. - '@azure/data-tables'
  3005. - '@azure/identity'
  3006. - '@azure/keyvault-secrets'
  3007. - '@azure/storage-blob'
  3008. - '@capacitor/preferences'
  3009. - '@deno/kv'
  3010. - '@netlify/blobs'
  3011. - '@planetscale/database'
  3012. - '@react-native-async-storage/async-storage'
  3013. - '@upstash/redis'
  3014. - '@vercel/blob'
  3015. - '@vercel/functions'
  3016. - '@vercel/kv'
  3017. - aws4fetch
  3018. - bufferutil
  3019. - db0
  3020. - ioredis
  3021. - typescript
  3022. - uploadthing
  3023. - utf-8-validate
  3024. - zod
  3025. '@walletconnect/core@2.23.9(typescript@5.9.3)(zod@4.4.3)':
  3026. dependencies:
  3027. '@walletconnect/heartbeat': 1.2.2
  3028. '@walletconnect/jsonrpc-provider': 1.0.14
  3029. '@walletconnect/jsonrpc-types': 1.0.4
  3030. '@walletconnect/jsonrpc-utils': 1.0.8
  3031. '@walletconnect/jsonrpc-ws-connection': 1.0.16
  3032. '@walletconnect/keyvaluestorage': 1.1.1
  3033. '@walletconnect/logger': 3.0.2
  3034. '@walletconnect/relay-api': 1.0.11
  3035. '@walletconnect/relay-auth': 1.1.0
  3036. '@walletconnect/safe-json': 1.0.2
  3037. '@walletconnect/time': 1.0.2
  3038. '@walletconnect/types': 2.23.9
  3039. '@walletconnect/utils': 2.23.9(typescript@5.9.3)(zod@4.4.3)
  3040. '@walletconnect/window-getters': 1.0.1
  3041. es-toolkit: 1.44.0
  3042. events: 3.3.0
  3043. uint8arrays: 3.1.1
  3044. transitivePeerDependencies:
  3045. - '@azure/app-configuration'
  3046. - '@azure/cosmos'
  3047. - '@azure/data-tables'
  3048. - '@azure/identity'
  3049. - '@azure/keyvault-secrets'
  3050. - '@azure/storage-blob'
  3051. - '@capacitor/preferences'
  3052. - '@deno/kv'
  3053. - '@netlify/blobs'
  3054. - '@planetscale/database'
  3055. - '@react-native-async-storage/async-storage'
  3056. - '@upstash/redis'
  3057. - '@vercel/blob'
  3058. - '@vercel/functions'
  3059. - '@vercel/kv'
  3060. - aws4fetch
  3061. - bufferutil
  3062. - db0
  3063. - ioredis
  3064. - typescript
  3065. - uploadthing
  3066. - utf-8-validate
  3067. - zod
  3068. '@walletconnect/environment@1.0.1':
  3069. dependencies:
  3070. tslib: 1.14.1
  3071. '@walletconnect/ethereum-provider@2.23.9(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(use-sync-external-store@1.2.0(react@18.3.1))(zod@4.4.3)':
  3072. dependencies:
  3073. '@reown/appkit': 1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(use-sync-external-store@1.2.0(react@18.3.1))(zod@4.4.3)
  3074. '@walletconnect/jsonrpc-http-connection': 1.0.8
  3075. '@walletconnect/jsonrpc-provider': 1.0.14
  3076. '@walletconnect/jsonrpc-types': 1.0.4
  3077. '@walletconnect/jsonrpc-utils': 1.0.8
  3078. '@walletconnect/keyvaluestorage': 1.1.1
  3079. '@walletconnect/logger': 3.0.2
  3080. '@walletconnect/sign-client': 2.23.9(typescript@5.9.3)(zod@4.4.3)
  3081. '@walletconnect/types': 2.23.9
  3082. '@walletconnect/universal-provider': 2.23.9(typescript@5.9.3)(zod@4.4.3)
  3083. '@walletconnect/utils': 2.23.9(typescript@5.9.3)(zod@4.4.3)
  3084. events: 3.3.0
  3085. transitivePeerDependencies:
  3086. - '@azure/app-configuration'
  3087. - '@azure/cosmos'
  3088. - '@azure/data-tables'
  3089. - '@azure/identity'
  3090. - '@azure/keyvault-secrets'
  3091. - '@azure/storage-blob'
  3092. - '@capacitor/preferences'
  3093. - '@deno/kv'
  3094. - '@netlify/blobs'
  3095. - '@planetscale/database'
  3096. - '@react-native-async-storage/async-storage'
  3097. - '@types/react'
  3098. - '@upstash/redis'
  3099. - '@vercel/blob'
  3100. - '@vercel/functions'
  3101. - '@vercel/kv'
  3102. - aws4fetch
  3103. - bufferutil
  3104. - db0
  3105. - debug
  3106. - encoding
  3107. - fastestsmallesttextencoderdecoder
  3108. - immer
  3109. - ioredis
  3110. - react
  3111. - typescript
  3112. - uploadthing
  3113. - use-sync-external-store
  3114. - utf-8-validate
  3115. - zod
  3116. '@walletconnect/events@1.0.1':
  3117. dependencies:
  3118. keyvaluestorage-interface: 1.0.0
  3119. tslib: 1.14.1
  3120. '@walletconnect/heartbeat@1.2.2':
  3121. dependencies:
  3122. '@walletconnect/events': 1.0.1
  3123. '@walletconnect/time': 1.0.2
  3124. events: 3.3.0
  3125. '@walletconnect/jsonrpc-http-connection@1.0.8':
  3126. dependencies:
  3127. '@walletconnect/jsonrpc-utils': 1.0.8
  3128. '@walletconnect/safe-json': 1.0.2
  3129. cross-fetch: 3.2.0
  3130. events: 3.3.0
  3131. transitivePeerDependencies:
  3132. - encoding
  3133. '@walletconnect/jsonrpc-provider@1.0.14':
  3134. dependencies:
  3135. '@walletconnect/jsonrpc-utils': 1.0.8
  3136. '@walletconnect/safe-json': 1.0.2
  3137. events: 3.3.0
  3138. '@walletconnect/jsonrpc-types@1.0.4':
  3139. dependencies:
  3140. events: 3.3.0
  3141. keyvaluestorage-interface: 1.0.0
  3142. '@walletconnect/jsonrpc-utils@1.0.8':
  3143. dependencies:
  3144. '@walletconnect/environment': 1.0.1
  3145. '@walletconnect/jsonrpc-types': 1.0.4
  3146. tslib: 1.14.1
  3147. '@walletconnect/jsonrpc-ws-connection@1.0.16':
  3148. dependencies:
  3149. '@walletconnect/jsonrpc-utils': 1.0.8
  3150. '@walletconnect/safe-json': 1.0.2
  3151. events: 3.3.0
  3152. ws: 7.5.11
  3153. transitivePeerDependencies:
  3154. - bufferutil
  3155. - utf-8-validate
  3156. '@walletconnect/keyvaluestorage@1.1.1':
  3157. dependencies:
  3158. '@walletconnect/safe-json': 1.0.2
  3159. idb-keyval: 6.2.4
  3160. unstorage: 1.17.5(idb-keyval@6.2.4)
  3161. transitivePeerDependencies:
  3162. - '@azure/app-configuration'
  3163. - '@azure/cosmos'
  3164. - '@azure/data-tables'
  3165. - '@azure/identity'
  3166. - '@azure/keyvault-secrets'
  3167. - '@azure/storage-blob'
  3168. - '@capacitor/preferences'
  3169. - '@deno/kv'
  3170. - '@netlify/blobs'
  3171. - '@planetscale/database'
  3172. - '@upstash/redis'
  3173. - '@vercel/blob'
  3174. - '@vercel/functions'
  3175. - '@vercel/kv'
  3176. - aws4fetch
  3177. - db0
  3178. - ioredis
  3179. - uploadthing
  3180. '@walletconnect/logger@3.0.2':
  3181. dependencies:
  3182. '@walletconnect/safe-json': 1.0.2
  3183. pino: 10.0.0
  3184. '@walletconnect/modal-core@2.7.0(@types/react@19.2.15)(react@18.3.1)':
  3185. dependencies:
  3186. valtio: 1.11.2(@types/react@19.2.15)(react@18.3.1)
  3187. transitivePeerDependencies:
  3188. - '@types/react'
  3189. - react
  3190. '@walletconnect/modal-ui@2.7.0(@types/react@19.2.15)(react@18.3.1)':
  3191. dependencies:
  3192. '@walletconnect/modal-core': 2.7.0(@types/react@19.2.15)(react@18.3.1)
  3193. lit: 2.8.0
  3194. motion: 10.16.2
  3195. qrcode: 1.5.3
  3196. transitivePeerDependencies:
  3197. - '@types/react'
  3198. - react
  3199. '@walletconnect/modal@2.7.0(@types/react@19.2.15)(react@18.3.1)':
  3200. dependencies:
  3201. '@walletconnect/modal-core': 2.7.0(@types/react@19.2.15)(react@18.3.1)
  3202. '@walletconnect/modal-ui': 2.7.0(@types/react@19.2.15)(react@18.3.1)
  3203. transitivePeerDependencies:
  3204. - '@types/react'
  3205. - react
  3206. '@walletconnect/relay-api@1.0.11':
  3207. dependencies:
  3208. '@walletconnect/jsonrpc-types': 1.0.4
  3209. '@walletconnect/relay-auth@1.1.0':
  3210. dependencies:
  3211. '@noble/curves': 1.8.0
  3212. '@noble/hashes': 1.7.0
  3213. '@walletconnect/safe-json': 1.0.2
  3214. '@walletconnect/time': 1.0.2
  3215. uint8arrays: 3.1.1
  3216. '@walletconnect/safe-json@1.0.2':
  3217. dependencies:
  3218. tslib: 1.14.1
  3219. '@walletconnect/sign-client@2.23.2(typescript@5.9.3)(zod@4.4.3)':
  3220. dependencies:
  3221. '@walletconnect/core': 2.23.2(typescript@5.9.3)(zod@4.4.3)
  3222. '@walletconnect/events': 1.0.1
  3223. '@walletconnect/heartbeat': 1.2.2
  3224. '@walletconnect/jsonrpc-utils': 1.0.8
  3225. '@walletconnect/logger': 3.0.2
  3226. '@walletconnect/time': 1.0.2
  3227. '@walletconnect/types': 2.23.2
  3228. '@walletconnect/utils': 2.23.2(typescript@5.9.3)(zod@4.4.3)
  3229. events: 3.3.0
  3230. transitivePeerDependencies:
  3231. - '@azure/app-configuration'
  3232. - '@azure/cosmos'
  3233. - '@azure/data-tables'
  3234. - '@azure/identity'
  3235. - '@azure/keyvault-secrets'
  3236. - '@azure/storage-blob'
  3237. - '@capacitor/preferences'
  3238. - '@deno/kv'
  3239. - '@netlify/blobs'
  3240. - '@planetscale/database'
  3241. - '@react-native-async-storage/async-storage'
  3242. - '@upstash/redis'
  3243. - '@vercel/blob'
  3244. - '@vercel/functions'
  3245. - '@vercel/kv'
  3246. - aws4fetch
  3247. - bufferutil
  3248. - db0
  3249. - ioredis
  3250. - typescript
  3251. - uploadthing
  3252. - utf-8-validate
  3253. - zod
  3254. '@walletconnect/sign-client@2.23.9(typescript@5.9.3)(zod@4.4.3)':
  3255. dependencies:
  3256. '@walletconnect/core': 2.23.9(typescript@5.9.3)(zod@4.4.3)
  3257. '@walletconnect/events': 1.0.1
  3258. '@walletconnect/heartbeat': 1.2.2
  3259. '@walletconnect/jsonrpc-utils': 1.0.8
  3260. '@walletconnect/logger': 3.0.2
  3261. '@walletconnect/time': 1.0.2
  3262. '@walletconnect/types': 2.23.9
  3263. '@walletconnect/utils': 2.23.9(typescript@5.9.3)(zod@4.4.3)
  3264. events: 3.3.0
  3265. transitivePeerDependencies:
  3266. - '@azure/app-configuration'
  3267. - '@azure/cosmos'
  3268. - '@azure/data-tables'
  3269. - '@azure/identity'
  3270. - '@azure/keyvault-secrets'
  3271. - '@azure/storage-blob'
  3272. - '@capacitor/preferences'
  3273. - '@deno/kv'
  3274. - '@netlify/blobs'
  3275. - '@planetscale/database'
  3276. - '@react-native-async-storage/async-storage'
  3277. - '@upstash/redis'
  3278. - '@vercel/blob'
  3279. - '@vercel/functions'
  3280. - '@vercel/kv'
  3281. - aws4fetch
  3282. - bufferutil
  3283. - db0
  3284. - ioredis
  3285. - typescript
  3286. - uploadthing
  3287. - utf-8-validate
  3288. - zod
  3289. '@walletconnect/time@1.0.2':
  3290. dependencies:
  3291. tslib: 1.14.1
  3292. '@walletconnect/types@2.23.2':
  3293. dependencies:
  3294. '@walletconnect/events': 1.0.1
  3295. '@walletconnect/heartbeat': 1.2.2
  3296. '@walletconnect/jsonrpc-types': 1.0.4
  3297. '@walletconnect/keyvaluestorage': 1.1.1
  3298. '@walletconnect/logger': 3.0.2
  3299. events: 3.3.0
  3300. transitivePeerDependencies:
  3301. - '@azure/app-configuration'
  3302. - '@azure/cosmos'
  3303. - '@azure/data-tables'
  3304. - '@azure/identity'
  3305. - '@azure/keyvault-secrets'
  3306. - '@azure/storage-blob'
  3307. - '@capacitor/preferences'
  3308. - '@deno/kv'
  3309. - '@netlify/blobs'
  3310. - '@planetscale/database'
  3311. - '@react-native-async-storage/async-storage'
  3312. - '@upstash/redis'
  3313. - '@vercel/blob'
  3314. - '@vercel/functions'
  3315. - '@vercel/kv'
  3316. - aws4fetch
  3317. - db0
  3318. - ioredis
  3319. - uploadthing
  3320. '@walletconnect/types@2.23.9':
  3321. dependencies:
  3322. '@walletconnect/events': 1.0.1
  3323. '@walletconnect/heartbeat': 1.2.2
  3324. '@walletconnect/jsonrpc-types': 1.0.4
  3325. '@walletconnect/keyvaluestorage': 1.1.1
  3326. '@walletconnect/logger': 3.0.2
  3327. events: 3.3.0
  3328. transitivePeerDependencies:
  3329. - '@azure/app-configuration'
  3330. - '@azure/cosmos'
  3331. - '@azure/data-tables'
  3332. - '@azure/identity'
  3333. - '@azure/keyvault-secrets'
  3334. - '@azure/storage-blob'
  3335. - '@capacitor/preferences'
  3336. - '@deno/kv'
  3337. - '@netlify/blobs'
  3338. - '@planetscale/database'
  3339. - '@react-native-async-storage/async-storage'
  3340. - '@upstash/redis'
  3341. - '@vercel/blob'
  3342. - '@vercel/functions'
  3343. - '@vercel/kv'
  3344. - aws4fetch
  3345. - db0
  3346. - ioredis
  3347. - uploadthing
  3348. '@walletconnect/universal-provider@2.23.2(typescript@5.9.3)(zod@4.4.3)':
  3349. dependencies:
  3350. '@walletconnect/events': 1.0.1
  3351. '@walletconnect/jsonrpc-http-connection': 1.0.8
  3352. '@walletconnect/jsonrpc-provider': 1.0.14
  3353. '@walletconnect/jsonrpc-types': 1.0.4
  3354. '@walletconnect/jsonrpc-utils': 1.0.8
  3355. '@walletconnect/keyvaluestorage': 1.1.1
  3356. '@walletconnect/logger': 3.0.2
  3357. '@walletconnect/sign-client': 2.23.2(typescript@5.9.3)(zod@4.4.3)
  3358. '@walletconnect/types': 2.23.2
  3359. '@walletconnect/utils': 2.23.2(typescript@5.9.3)(zod@4.4.3)
  3360. es-toolkit: 1.39.3
  3361. events: 3.3.0
  3362. transitivePeerDependencies:
  3363. - '@azure/app-configuration'
  3364. - '@azure/cosmos'
  3365. - '@azure/data-tables'
  3366. - '@azure/identity'
  3367. - '@azure/keyvault-secrets'
  3368. - '@azure/storage-blob'
  3369. - '@capacitor/preferences'
  3370. - '@deno/kv'
  3371. - '@netlify/blobs'
  3372. - '@planetscale/database'
  3373. - '@react-native-async-storage/async-storage'
  3374. - '@upstash/redis'
  3375. - '@vercel/blob'
  3376. - '@vercel/functions'
  3377. - '@vercel/kv'
  3378. - aws4fetch
  3379. - bufferutil
  3380. - db0
  3381. - encoding
  3382. - ioredis
  3383. - typescript
  3384. - uploadthing
  3385. - utf-8-validate
  3386. - zod
  3387. '@walletconnect/universal-provider@2.23.9(typescript@5.9.3)(zod@4.4.3)':
  3388. dependencies:
  3389. '@walletconnect/events': 1.0.1
  3390. '@walletconnect/jsonrpc-http-connection': 1.0.8
  3391. '@walletconnect/jsonrpc-provider': 1.0.14
  3392. '@walletconnect/jsonrpc-types': 1.0.4
  3393. '@walletconnect/jsonrpc-utils': 1.0.8
  3394. '@walletconnect/keyvaluestorage': 1.1.1
  3395. '@walletconnect/logger': 3.0.2
  3396. '@walletconnect/sign-client': 2.23.9(typescript@5.9.3)(zod@4.4.3)
  3397. '@walletconnect/types': 2.23.9
  3398. '@walletconnect/utils': 2.23.9(typescript@5.9.3)(zod@4.4.3)
  3399. es-toolkit: 1.44.0
  3400. events: 3.3.0
  3401. transitivePeerDependencies:
  3402. - '@azure/app-configuration'
  3403. - '@azure/cosmos'
  3404. - '@azure/data-tables'
  3405. - '@azure/identity'
  3406. - '@azure/keyvault-secrets'
  3407. - '@azure/storage-blob'
  3408. - '@capacitor/preferences'
  3409. - '@deno/kv'
  3410. - '@netlify/blobs'
  3411. - '@planetscale/database'
  3412. - '@react-native-async-storage/async-storage'
  3413. - '@upstash/redis'
  3414. - '@vercel/blob'
  3415. - '@vercel/functions'
  3416. - '@vercel/kv'
  3417. - aws4fetch
  3418. - bufferutil
  3419. - db0
  3420. - encoding
  3421. - ioredis
  3422. - typescript
  3423. - uploadthing
  3424. - utf-8-validate
  3425. - zod
  3426. '@walletconnect/utils@2.23.2(typescript@5.9.3)(zod@4.4.3)':
  3427. dependencies:
  3428. '@msgpack/msgpack': 3.1.2
  3429. '@noble/ciphers': 1.3.0
  3430. '@noble/curves': 1.9.7
  3431. '@noble/hashes': 1.8.0
  3432. '@scure/base': 1.2.6
  3433. '@walletconnect/jsonrpc-utils': 1.0.8
  3434. '@walletconnect/keyvaluestorage': 1.1.1
  3435. '@walletconnect/logger': 3.0.2
  3436. '@walletconnect/relay-api': 1.0.11
  3437. '@walletconnect/relay-auth': 1.1.0
  3438. '@walletconnect/safe-json': 1.0.2
  3439. '@walletconnect/time': 1.0.2
  3440. '@walletconnect/types': 2.23.2
  3441. '@walletconnect/window-getters': 1.0.1
  3442. '@walletconnect/window-metadata': 1.0.1
  3443. blakejs: 1.2.1
  3444. bs58: 6.0.0
  3445. detect-browser: 5.3.0
  3446. ox: 0.9.3(typescript@5.9.3)(zod@4.4.3)
  3447. uint8arrays: 3.1.1
  3448. transitivePeerDependencies:
  3449. - '@azure/app-configuration'
  3450. - '@azure/cosmos'
  3451. - '@azure/data-tables'
  3452. - '@azure/identity'
  3453. - '@azure/keyvault-secrets'
  3454. - '@azure/storage-blob'
  3455. - '@capacitor/preferences'
  3456. - '@deno/kv'
  3457. - '@netlify/blobs'
  3458. - '@planetscale/database'
  3459. - '@react-native-async-storage/async-storage'
  3460. - '@upstash/redis'
  3461. - '@vercel/blob'
  3462. - '@vercel/functions'
  3463. - '@vercel/kv'
  3464. - aws4fetch
  3465. - db0
  3466. - ioredis
  3467. - typescript
  3468. - uploadthing
  3469. - zod
  3470. '@walletconnect/utils@2.23.9(typescript@5.9.3)(zod@4.4.3)':
  3471. dependencies:
  3472. '@msgpack/msgpack': 3.1.3
  3473. '@noble/ciphers': 1.3.0
  3474. '@noble/curves': 1.9.7
  3475. '@noble/hashes': 1.8.0
  3476. '@scure/base': 1.2.6
  3477. '@walletconnect/jsonrpc-utils': 1.0.8
  3478. '@walletconnect/keyvaluestorage': 1.1.1
  3479. '@walletconnect/logger': 3.0.2
  3480. '@walletconnect/relay-api': 1.0.11
  3481. '@walletconnect/relay-auth': 1.1.0
  3482. '@walletconnect/safe-json': 1.0.2
  3483. '@walletconnect/time': 1.0.2
  3484. '@walletconnect/types': 2.23.9
  3485. '@walletconnect/window-getters': 1.0.1
  3486. '@walletconnect/window-metadata': 1.0.1
  3487. blakejs: 1.2.1
  3488. detect-browser: 5.3.0
  3489. ox: 0.9.3(typescript@5.9.3)(zod@4.4.3)
  3490. uint8arrays: 3.1.1
  3491. transitivePeerDependencies:
  3492. - '@azure/app-configuration'
  3493. - '@azure/cosmos'
  3494. - '@azure/data-tables'
  3495. - '@azure/identity'
  3496. - '@azure/keyvault-secrets'
  3497. - '@azure/storage-blob'
  3498. - '@capacitor/preferences'
  3499. - '@deno/kv'
  3500. - '@netlify/blobs'
  3501. - '@planetscale/database'
  3502. - '@react-native-async-storage/async-storage'
  3503. - '@upstash/redis'
  3504. - '@vercel/blob'
  3505. - '@vercel/functions'
  3506. - '@vercel/kv'
  3507. - aws4fetch
  3508. - db0
  3509. - ioredis
  3510. - typescript
  3511. - uploadthing
  3512. - zod
  3513. '@walletconnect/window-getters@1.0.1':
  3514. dependencies:
  3515. tslib: 1.14.1
  3516. '@walletconnect/window-metadata@1.0.1':
  3517. dependencies:
  3518. '@walletconnect/window-getters': 1.0.1
  3519. tslib: 1.14.1
  3520. abitype@1.0.6(typescript@5.9.3)(zod@3.25.76):
  3521. optionalDependencies:
  3522. typescript: 5.9.3
  3523. zod: 3.25.76
  3524. optional: true
  3525. abitype@1.2.3(typescript@5.9.3)(zod@3.22.4):
  3526. optionalDependencies:
  3527. typescript: 5.9.3
  3528. zod: 3.22.4
  3529. abitype@1.2.3(typescript@5.9.3)(zod@3.25.76):
  3530. optionalDependencies:
  3531. typescript: 5.9.3
  3532. zod: 3.25.76
  3533. optional: true
  3534. abitype@1.2.3(typescript@5.9.3)(zod@4.4.3):
  3535. optionalDependencies:
  3536. typescript: 5.9.3
  3537. zod: 4.4.3
  3538. abitype@1.2.4(typescript@5.9.3)(zod@4.4.3):
  3539. optionalDependencies:
  3540. typescript: 5.9.3
  3541. zod: 4.4.3
  3542. acorn@8.16.0:
  3543. optional: true
  3544. aes-js@4.0.0-beta.5: {}
  3545. alien-signals@1.0.13: {}
  3546. ansi-regex@5.0.1: {}
  3547. ansi-styles@4.3.0:
  3548. dependencies:
  3549. color-convert: 2.0.1
  3550. anymatch@3.1.3:
  3551. dependencies:
  3552. normalize-path: 3.0.0
  3553. picomatch: 2.3.2
  3554. asynckit@0.4.0: {}
  3555. atomic-sleep@1.0.0: {}
  3556. axios-retry@4.5.0(axios@1.16.0):
  3557. dependencies:
  3558. axios: 1.16.0
  3559. is-retry-allowed: 2.2.0
  3560. optional: true
  3561. axios@1.15.0:
  3562. dependencies:
  3563. follow-redirects: 1.16.0
  3564. form-data: 4.0.5
  3565. proxy-from-env: 2.1.0
  3566. transitivePeerDependencies:
  3567. - debug
  3568. axios@1.16.0:
  3569. dependencies:
  3570. follow-redirects: 1.16.0
  3571. form-data: 4.0.5
  3572. proxy-from-env: 2.1.0
  3573. transitivePeerDependencies:
  3574. - debug
  3575. balanced-match@1.0.2: {}
  3576. base-x@5.0.1: {}
  3577. base64-js@1.5.1: {}
  3578. big.js@6.2.2: {}
  3579. bignumber.js@9.1.2: {}
  3580. birpc@2.9.0: {}
  3581. blakejs@1.2.1: {}
  3582. brace-expansion@2.1.0:
  3583. dependencies:
  3584. balanced-match: 1.0.2
  3585. bs58@6.0.0:
  3586. dependencies:
  3587. base-x: 5.0.1
  3588. buffer@6.0.3:
  3589. dependencies:
  3590. base64-js: 1.5.1
  3591. ieee754: 1.2.1
  3592. c12@3.3.4:
  3593. dependencies:
  3594. chokidar: 5.0.0
  3595. confbox: 0.2.4
  3596. defu: 6.1.7
  3597. dotenv: 17.4.2
  3598. exsolve: 1.0.8
  3599. giget: 3.2.0
  3600. jiti: 2.7.0
  3601. ohash: 2.0.11
  3602. pathe: 2.0.3
  3603. perfect-debounce: 2.1.0
  3604. pkg-types: 2.3.1
  3605. rc9: 3.0.1
  3606. optional: true
  3607. call-bind-apply-helpers@1.0.2:
  3608. dependencies:
  3609. es-errors: 1.3.0
  3610. function-bind: 1.1.2
  3611. camelcase@5.3.1: {}
  3612. chalk@5.6.2:
  3613. optional: true
  3614. charenc@0.0.2:
  3615. optional: true
  3616. chokidar@5.0.0:
  3617. dependencies:
  3618. readdirp: 5.0.0
  3619. citty@0.1.6:
  3620. dependencies:
  3621. consola: 3.4.2
  3622. optional: true
  3623. cliui@6.0.0:
  3624. dependencies:
  3625. string-width: 4.2.3
  3626. strip-ansi: 6.0.1
  3627. wrap-ansi: 6.2.0
  3628. clsx@1.2.1:
  3629. optional: true
  3630. color-convert@2.0.1:
  3631. dependencies:
  3632. color-name: 1.1.4
  3633. color-name@1.1.4: {}
  3634. combined-stream@1.0.8:
  3635. dependencies:
  3636. delayed-stream: 1.0.0
  3637. commander@14.0.2:
  3638. optional: true
  3639. confbox@0.1.8:
  3640. optional: true
  3641. confbox@0.2.4:
  3642. optional: true
  3643. consola@3.4.2:
  3644. optional: true
  3645. cookie-es@1.2.3: {}
  3646. copy-anything@4.0.5:
  3647. dependencies:
  3648. is-what: 5.5.0
  3649. cross-fetch@3.2.0:
  3650. dependencies:
  3651. node-fetch: 2.7.0
  3652. transitivePeerDependencies:
  3653. - encoding
  3654. crossws@0.3.5:
  3655. dependencies:
  3656. uncrypto: 0.1.3
  3657. crypt@0.0.2:
  3658. optional: true
  3659. csstype@3.2.3: {}
  3660. dayjs@1.11.13: {}
  3661. dayjs@1.11.20: {}
  3662. de-indent@1.0.2: {}
  3663. decamelize@1.2.0: {}
  3664. defu@6.1.7: {}
  3665. delayed-stream@1.0.0: {}
  3666. destr@2.0.5: {}
  3667. detect-browser@5.3.0: {}
  3668. dijkstrajs@1.0.3: {}
  3669. dotenv@17.4.2:
  3670. optional: true
  3671. dunder-proto@1.0.1:
  3672. dependencies:
  3673. call-bind-apply-helpers: 1.0.2
  3674. es-errors: 1.3.0
  3675. gopd: 1.2.0
  3676. emoji-regex@8.0.0: {}
  3677. encode-utf8@1.0.3: {}
  3678. entities@7.0.1: {}
  3679. errx@0.1.0:
  3680. optional: true
  3681. es-define-property@1.0.1: {}
  3682. es-errors@1.3.0: {}
  3683. es-object-atoms@1.1.1:
  3684. dependencies:
  3685. es-errors: 1.3.0
  3686. es-set-tostringtag@2.1.0:
  3687. dependencies:
  3688. es-errors: 1.3.0
  3689. get-intrinsic: 1.3.0
  3690. has-tostringtag: 1.0.2
  3691. hasown: 2.0.3
  3692. es-toolkit@1.39.3: {}
  3693. es-toolkit@1.44.0: {}
  3694. esbuild@0.21.5:
  3695. optionalDependencies:
  3696. '@esbuild/aix-ppc64': 0.21.5
  3697. '@esbuild/android-arm': 0.21.5
  3698. '@esbuild/android-arm64': 0.21.5
  3699. '@esbuild/android-x64': 0.21.5
  3700. '@esbuild/darwin-arm64': 0.21.5
  3701. '@esbuild/darwin-x64': 0.21.5
  3702. '@esbuild/freebsd-arm64': 0.21.5
  3703. '@esbuild/freebsd-x64': 0.21.5
  3704. '@esbuild/linux-arm': 0.21.5
  3705. '@esbuild/linux-arm64': 0.21.5
  3706. '@esbuild/linux-ia32': 0.21.5
  3707. '@esbuild/linux-loong64': 0.21.5
  3708. '@esbuild/linux-mips64el': 0.21.5
  3709. '@esbuild/linux-ppc64': 0.21.5
  3710. '@esbuild/linux-riscv64': 0.21.5
  3711. '@esbuild/linux-s390x': 0.21.5
  3712. '@esbuild/linux-x64': 0.21.5
  3713. '@esbuild/netbsd-x64': 0.21.5
  3714. '@esbuild/openbsd-x64': 0.21.5
  3715. '@esbuild/sunos-x64': 0.21.5
  3716. '@esbuild/win32-arm64': 0.21.5
  3717. '@esbuild/win32-ia32': 0.21.5
  3718. '@esbuild/win32-x64': 0.21.5
  3719. estree-walker@2.0.2: {}
  3720. estree-walker@3.0.3:
  3721. dependencies:
  3722. '@types/estree': 1.0.9
  3723. optional: true
  3724. ethereum-cryptography@2.2.1:
  3725. dependencies:
  3726. '@noble/curves': 1.4.2
  3727. '@noble/hashes': 1.4.0
  3728. '@scure/bip32': 1.4.0
  3729. '@scure/bip39': 1.3.0
  3730. ethers@6.13.5:
  3731. dependencies:
  3732. '@adraffy/ens-normalize': 1.10.1
  3733. '@noble/curves': 1.2.0
  3734. '@noble/hashes': 1.3.2
  3735. '@types/node': 22.7.5
  3736. aes-js: 4.0.0-beta.5
  3737. tslib: 2.7.0
  3738. ws: 8.17.1
  3739. transitivePeerDependencies:
  3740. - bufferutil
  3741. - utf-8-validate
  3742. eventemitter3@5.0.1: {}
  3743. events@3.3.0: {}
  3744. exsolve@1.0.8:
  3745. optional: true
  3746. fancy-canvas@2.1.0: {}
  3747. fdir@6.5.0(picomatch@4.0.4):
  3748. optionalDependencies:
  3749. picomatch: 4.0.4
  3750. optional: true
  3751. find-up@4.1.0:
  3752. dependencies:
  3753. locate-path: 5.0.0
  3754. path-exists: 4.0.0
  3755. follow-redirects@1.16.0: {}
  3756. form-data@4.0.5:
  3757. dependencies:
  3758. asynckit: 0.4.0
  3759. combined-stream: 1.0.8
  3760. es-set-tostringtag: 2.1.0
  3761. hasown: 2.0.3
  3762. mime-types: 2.1.35
  3763. framesync@6.1.2:
  3764. dependencies:
  3765. tslib: 2.4.0
  3766. fsevents@2.3.3:
  3767. optional: true
  3768. function-bind@1.1.2: {}
  3769. get-caller-file@2.0.5: {}
  3770. get-intrinsic@1.3.0:
  3771. dependencies:
  3772. call-bind-apply-helpers: 1.0.2
  3773. es-define-property: 1.0.1
  3774. es-errors: 1.3.0
  3775. es-object-atoms: 1.1.1
  3776. function-bind: 1.1.2
  3777. get-proto: 1.0.1
  3778. gopd: 1.2.0
  3779. has-symbols: 1.1.0
  3780. hasown: 2.0.3
  3781. math-intrinsics: 1.1.0
  3782. get-proto@1.0.1:
  3783. dependencies:
  3784. dunder-proto: 1.0.1
  3785. es-object-atoms: 1.1.1
  3786. giget@3.2.0:
  3787. optional: true
  3788. google-protobuf@3.21.4: {}
  3789. gopd@1.2.0: {}
  3790. h3@1.15.11:
  3791. dependencies:
  3792. cookie-es: 1.2.3
  3793. crossws: 0.3.5
  3794. defu: 6.1.7
  3795. destr: 2.0.5
  3796. iron-webcrypto: 1.2.1
  3797. node-mock-http: 1.0.4
  3798. radix3: 1.1.2
  3799. ufo: 1.6.4
  3800. uncrypto: 0.1.3
  3801. has-symbols@1.1.0: {}
  3802. has-tostringtag@1.0.2:
  3803. dependencies:
  3804. has-symbols: 1.1.0
  3805. hasown@2.0.3:
  3806. dependencies:
  3807. function-bind: 1.1.2
  3808. he@1.2.0: {}
  3809. hey-listen@1.0.8: {}
  3810. hookable@5.5.3: {}
  3811. idb-keyval@6.2.1:
  3812. optional: true
  3813. idb-keyval@6.2.4: {}
  3814. ieee754@1.2.1: {}
  3815. ignore@7.0.5:
  3816. optional: true
  3817. iron-webcrypto@1.2.1: {}
  3818. is-buffer@1.1.6:
  3819. optional: true
  3820. is-fullwidth-code-point@3.0.0: {}
  3821. is-retry-allowed@2.2.0:
  3822. optional: true
  3823. is-what@5.5.0: {}
  3824. isows@1.0.7(ws@8.20.1):
  3825. dependencies:
  3826. ws: 8.20.1
  3827. jiti@2.7.0:
  3828. optional: true
  3829. jose@6.2.3:
  3830. optional: true
  3831. js-tokens@4.0.0: {}
  3832. keyvaluestorage-interface@1.0.0: {}
  3833. klinecharts@10.0.0-beta1: {}
  3834. klona@2.0.6:
  3835. optional: true
  3836. knitwork@1.3.0:
  3837. optional: true
  3838. lightweight-charts@5.2.0:
  3839. dependencies:
  3840. fancy-canvas: 2.1.0
  3841. lit-element@3.3.3:
  3842. dependencies:
  3843. '@lit-labs/ssr-dom-shim': 1.6.0
  3844. '@lit/reactive-element': 1.6.3
  3845. lit-html: 2.8.0
  3846. lit-element@4.2.2:
  3847. dependencies:
  3848. '@lit-labs/ssr-dom-shim': 1.6.0
  3849. '@lit/reactive-element': 2.1.2
  3850. lit-html: 3.3.3
  3851. lit-html@2.8.0:
  3852. dependencies:
  3853. '@types/trusted-types': 2.0.7
  3854. lit-html@3.3.3:
  3855. dependencies:
  3856. '@types/trusted-types': 2.0.7
  3857. lit@2.8.0:
  3858. dependencies:
  3859. '@lit/reactive-element': 1.6.3
  3860. lit-element: 3.3.3
  3861. lit-html: 2.8.0
  3862. lit@3.3.0:
  3863. dependencies:
  3864. '@lit/reactive-element': 2.1.2
  3865. lit-element: 4.2.2
  3866. lit-html: 3.3.3
  3867. locate-path@5.0.0:
  3868. dependencies:
  3869. p-locate: 4.1.0
  3870. loose-envify@1.4.0:
  3871. dependencies:
  3872. js-tokens: 4.0.0
  3873. lru-cache@11.5.0: {}
  3874. magic-string@0.30.21:
  3875. dependencies:
  3876. '@jridgewell/sourcemap-codec': 1.5.5
  3877. math-intrinsics@1.1.0: {}
  3878. md5@2.3.0:
  3879. dependencies:
  3880. charenc: 0.0.2
  3881. crypt: 0.0.2
  3882. is-buffer: 1.1.6
  3883. optional: true
  3884. mime-db@1.52.0: {}
  3885. mime-types@2.1.35:
  3886. dependencies:
  3887. mime-db: 1.52.0
  3888. minimatch@9.0.9:
  3889. dependencies:
  3890. brace-expansion: 2.1.0
  3891. mitt@3.0.1: {}
  3892. mlly@1.8.2:
  3893. dependencies:
  3894. acorn: 8.16.0
  3895. pathe: 2.0.3
  3896. pkg-types: 1.3.1
  3897. ufo: 1.6.4
  3898. optional: true
  3899. motion@10.16.2:
  3900. dependencies:
  3901. '@motionone/animation': 10.18.0
  3902. '@motionone/dom': 10.18.0
  3903. '@motionone/svelte': 10.16.4
  3904. '@motionone/types': 10.17.1
  3905. '@motionone/utils': 10.18.0
  3906. '@motionone/vue': 10.16.4
  3907. muggle-string@0.4.1: {}
  3908. multiformats@9.9.0: {}
  3909. nanoid@3.3.12: {}
  3910. node-fetch-native@1.6.7: {}
  3911. node-fetch@2.7.0:
  3912. dependencies:
  3913. whatwg-url: 5.0.0
  3914. node-mock-http@1.0.4: {}
  3915. normalize-path@3.0.0: {}
  3916. ofetch@1.5.1:
  3917. dependencies:
  3918. destr: 2.0.5
  3919. node-fetch-native: 1.6.7
  3920. ufo: 1.6.4
  3921. ohash@2.0.11:
  3922. optional: true
  3923. on-exit-leak-free@2.1.2: {}
  3924. ox@0.14.25(typescript@5.9.3)(zod@3.22.4):
  3925. dependencies:
  3926. '@adraffy/ens-normalize': 1.11.1
  3927. '@noble/ciphers': 1.3.0
  3928. '@noble/curves': 1.9.1
  3929. '@noble/hashes': 1.8.0
  3930. '@scure/bip32': 1.7.0
  3931. '@scure/bip39': 1.6.0
  3932. abitype: 1.2.3(typescript@5.9.3)(zod@3.22.4)
  3933. eventemitter3: 5.0.1
  3934. optionalDependencies:
  3935. typescript: 5.9.3
  3936. transitivePeerDependencies:
  3937. - zod
  3938. ox@0.14.25(typescript@5.9.3)(zod@3.25.76):
  3939. dependencies:
  3940. '@adraffy/ens-normalize': 1.11.1
  3941. '@noble/ciphers': 1.3.0
  3942. '@noble/curves': 1.9.1
  3943. '@noble/hashes': 1.8.0
  3944. '@scure/bip32': 1.7.0
  3945. '@scure/bip39': 1.6.0
  3946. abitype: 1.2.3(typescript@5.9.3)(zod@3.25.76)
  3947. eventemitter3: 5.0.1
  3948. optionalDependencies:
  3949. typescript: 5.9.3
  3950. transitivePeerDependencies:
  3951. - zod
  3952. optional: true
  3953. ox@0.14.25(typescript@5.9.3)(zod@4.4.3):
  3954. dependencies:
  3955. '@adraffy/ens-normalize': 1.11.1
  3956. '@noble/ciphers': 1.3.0
  3957. '@noble/curves': 1.9.1
  3958. '@noble/hashes': 1.8.0
  3959. '@scure/bip32': 1.7.0
  3960. '@scure/bip39': 1.6.0
  3961. abitype: 1.2.3(typescript@5.9.3)(zod@4.4.3)
  3962. eventemitter3: 5.0.1
  3963. optionalDependencies:
  3964. typescript: 5.9.3
  3965. transitivePeerDependencies:
  3966. - zod
  3967. ox@0.6.9(typescript@5.9.3)(zod@4.4.3):
  3968. dependencies:
  3969. '@adraffy/ens-normalize': 1.11.1
  3970. '@noble/curves': 1.9.7
  3971. '@noble/hashes': 1.8.0
  3972. '@scure/bip32': 1.7.0
  3973. '@scure/bip39': 1.6.0
  3974. abitype: 1.2.4(typescript@5.9.3)(zod@4.4.3)
  3975. eventemitter3: 5.0.1
  3976. optionalDependencies:
  3977. typescript: 5.9.3
  3978. transitivePeerDependencies:
  3979. - zod
  3980. optional: true
  3981. ox@0.9.3(typescript@5.9.3)(zod@4.4.3):
  3982. dependencies:
  3983. '@adraffy/ens-normalize': 1.11.1
  3984. '@noble/ciphers': 1.3.0
  3985. '@noble/curves': 1.9.1
  3986. '@noble/hashes': 1.8.0
  3987. '@scure/bip32': 1.7.0
  3988. '@scure/bip39': 1.6.0
  3989. abitype: 1.2.4(typescript@5.9.3)(zod@4.4.3)
  3990. eventemitter3: 5.0.1
  3991. optionalDependencies:
  3992. typescript: 5.9.3
  3993. transitivePeerDependencies:
  3994. - zod
  3995. p-limit@2.3.0:
  3996. dependencies:
  3997. p-try: 2.2.0
  3998. p-locate@4.1.0:
  3999. dependencies:
  4000. p-limit: 2.3.0
  4001. p-try@2.2.0: {}
  4002. path-browserify@1.0.1: {}
  4003. path-exists@4.0.0: {}
  4004. pathe@2.0.3:
  4005. optional: true
  4006. perfect-debounce@1.0.0: {}
  4007. perfect-debounce@2.1.0:
  4008. optional: true
  4009. picocolors@1.1.1: {}
  4010. picomatch@2.3.2: {}
  4011. picomatch@4.0.4:
  4012. optional: true
  4013. pinia@2.3.1(typescript@5.9.3)(vue@3.5.34(typescript@5.9.3)):
  4014. dependencies:
  4015. '@vue/devtools-api': 6.6.4
  4016. vue: 3.5.34(typescript@5.9.3)
  4017. vue-demi: 0.14.10(vue@3.5.34(typescript@5.9.3))
  4018. optionalDependencies:
  4019. typescript: 5.9.3
  4020. transitivePeerDependencies:
  4021. - '@vue/composition-api'
  4022. pino-abstract-transport@2.0.0:
  4023. dependencies:
  4024. split2: 4.2.0
  4025. pino-std-serializers@7.1.0: {}
  4026. pino@10.0.0:
  4027. dependencies:
  4028. atomic-sleep: 1.0.0
  4029. on-exit-leak-free: 2.1.2
  4030. pino-abstract-transport: 2.0.0
  4031. pino-std-serializers: 7.1.0
  4032. process-warning: 5.0.0
  4033. quick-format-unescaped: 4.0.4
  4034. real-require: 0.2.0
  4035. safe-stable-stringify: 2.5.0
  4036. slow-redact: 0.3.2
  4037. sonic-boom: 4.2.1
  4038. thread-stream: 3.1.0
  4039. pkg-types@1.3.1:
  4040. dependencies:
  4041. confbox: 0.1.8
  4042. mlly: 1.8.2
  4043. pathe: 2.0.3
  4044. optional: true
  4045. pkg-types@2.3.1:
  4046. dependencies:
  4047. confbox: 0.2.4
  4048. exsolve: 1.0.8
  4049. pathe: 2.0.3
  4050. optional: true
  4051. pngjs@5.0.0: {}
  4052. popmotion@11.0.5:
  4053. dependencies:
  4054. framesync: 6.1.2
  4055. hey-listen: 1.0.8
  4056. style-value-types: 5.1.2
  4057. tslib: 2.4.0
  4058. postcss@8.5.14:
  4059. dependencies:
  4060. nanoid: 3.3.12
  4061. picocolors: 1.1.1
  4062. source-map-js: 1.2.1
  4063. preact@10.24.2:
  4064. optional: true
  4065. process-warning@5.0.0: {}
  4066. proxy-compare@2.5.1: {}
  4067. proxy-compare@3.0.1: {}
  4068. proxy-from-env@2.1.0: {}
  4069. qrcode@1.5.3:
  4070. dependencies:
  4071. dijkstrajs: 1.0.3
  4072. encode-utf8: 1.0.3
  4073. pngjs: 5.0.0
  4074. yargs: 15.4.1
  4075. qrcode@1.5.4:
  4076. dependencies:
  4077. dijkstrajs: 1.0.3
  4078. pngjs: 5.0.0
  4079. yargs: 15.4.1
  4080. quick-format-unescaped@4.0.4: {}
  4081. radix3@1.1.2: {}
  4082. rc9@3.0.1:
  4083. dependencies:
  4084. defu: 6.1.7
  4085. destr: 2.0.5
  4086. optional: true
  4087. react@18.3.1:
  4088. dependencies:
  4089. loose-envify: 1.4.0
  4090. readdirp@5.0.0: {}
  4091. real-require@0.2.0: {}
  4092. regenerator-runtime@0.14.1: {}
  4093. require-directory@2.1.1: {}
  4094. require-main-filename@2.0.0: {}
  4095. rfdc@1.4.1: {}
  4096. rollup@4.60.3:
  4097. dependencies:
  4098. '@types/estree': 1.0.8
  4099. optionalDependencies:
  4100. '@rollup/rollup-android-arm-eabi': 4.60.3
  4101. '@rollup/rollup-android-arm64': 4.60.3
  4102. '@rollup/rollup-darwin-arm64': 4.60.3
  4103. '@rollup/rollup-darwin-x64': 4.60.3
  4104. '@rollup/rollup-freebsd-arm64': 4.60.3
  4105. '@rollup/rollup-freebsd-x64': 4.60.3
  4106. '@rollup/rollup-linux-arm-gnueabihf': 4.60.3
  4107. '@rollup/rollup-linux-arm-musleabihf': 4.60.3
  4108. '@rollup/rollup-linux-arm64-gnu': 4.60.3
  4109. '@rollup/rollup-linux-arm64-musl': 4.60.3
  4110. '@rollup/rollup-linux-loong64-gnu': 4.60.3
  4111. '@rollup/rollup-linux-loong64-musl': 4.60.3
  4112. '@rollup/rollup-linux-ppc64-gnu': 4.60.3
  4113. '@rollup/rollup-linux-ppc64-musl': 4.60.3
  4114. '@rollup/rollup-linux-riscv64-gnu': 4.60.3
  4115. '@rollup/rollup-linux-riscv64-musl': 4.60.3
  4116. '@rollup/rollup-linux-s390x-gnu': 4.60.3
  4117. '@rollup/rollup-linux-x64-gnu': 4.60.3
  4118. '@rollup/rollup-linux-x64-musl': 4.60.3
  4119. '@rollup/rollup-openbsd-x64': 4.60.3
  4120. '@rollup/rollup-openharmony-arm64': 4.60.3
  4121. '@rollup/rollup-win32-arm64-msvc': 4.60.3
  4122. '@rollup/rollup-win32-ia32-msvc': 4.60.3
  4123. '@rollup/rollup-win32-x64-gnu': 4.60.3
  4124. '@rollup/rollup-win32-x64-msvc': 4.60.3
  4125. fsevents: 2.3.3
  4126. safe-stable-stringify@2.5.0: {}
  4127. scule@1.3.0:
  4128. optional: true
  4129. semver@7.7.1: {}
  4130. semver@7.7.2: {}
  4131. semver@7.7.4:
  4132. optional: true
  4133. set-blocking@2.0.0: {}
  4134. slow-redact@0.3.2: {}
  4135. sonic-boom@4.2.1:
  4136. dependencies:
  4137. atomic-sleep: 1.0.0
  4138. source-map-js@1.2.1: {}
  4139. speakingurl@14.0.1: {}
  4140. split2@4.2.0: {}
  4141. string-width@4.2.3:
  4142. dependencies:
  4143. emoji-regex: 8.0.0
  4144. is-fullwidth-code-point: 3.0.0
  4145. strip-ansi: 6.0.1
  4146. strip-ansi@6.0.1:
  4147. dependencies:
  4148. ansi-regex: 5.0.1
  4149. style-value-types@5.1.2:
  4150. dependencies:
  4151. hey-listen: 1.0.8
  4152. tslib: 2.4.0
  4153. superjson@2.2.6:
  4154. dependencies:
  4155. copy-anything: 4.0.5
  4156. thread-stream@3.1.0:
  4157. dependencies:
  4158. real-require: 0.2.0
  4159. tinyglobby@0.2.16:
  4160. dependencies:
  4161. fdir: 6.5.0(picomatch@4.0.4)
  4162. picomatch: 4.0.4
  4163. optional: true
  4164. tr46@0.0.3: {}
  4165. tronweb@6.3.0:
  4166. dependencies:
  4167. '@babel/runtime': 7.26.10
  4168. axios: 1.15.0
  4169. bignumber.js: 9.1.2
  4170. ethereum-cryptography: 2.2.1
  4171. ethers: 6.13.5
  4172. eventemitter3: 5.0.1
  4173. google-protobuf: 3.21.4
  4174. semver: 7.7.1
  4175. validator: 13.15.23
  4176. transitivePeerDependencies:
  4177. - bufferutil
  4178. - debug
  4179. - utf-8-validate
  4180. tslib@1.14.1: {}
  4181. tslib@2.4.0: {}
  4182. tslib@2.7.0: {}
  4183. type-fest@4.41.0: {}
  4184. typescript@5.9.3: {}
  4185. ufo@1.6.4: {}
  4186. uint8arrays@3.1.1:
  4187. dependencies:
  4188. multiformats: 9.9.0
  4189. uncrypto@0.1.3: {}
  4190. unctx@2.5.0:
  4191. dependencies:
  4192. acorn: 8.16.0
  4193. estree-walker: 3.0.3
  4194. magic-string: 0.30.21
  4195. unplugin: 2.3.11
  4196. optional: true
  4197. undici-types@6.19.8: {}
  4198. undici-types@7.19.2: {}
  4199. unplugin@2.3.11:
  4200. dependencies:
  4201. '@jridgewell/remapping': 2.3.5
  4202. acorn: 8.16.0
  4203. picomatch: 4.0.4
  4204. webpack-virtual-modules: 0.6.2
  4205. optional: true
  4206. unstorage@1.17.5(idb-keyval@6.2.4):
  4207. dependencies:
  4208. anymatch: 3.1.3
  4209. chokidar: 5.0.0
  4210. destr: 2.0.5
  4211. h3: 1.15.11
  4212. lru-cache: 11.5.0
  4213. node-fetch-native: 1.6.7
  4214. ofetch: 1.5.1
  4215. ufo: 1.6.4
  4216. optionalDependencies:
  4217. idb-keyval: 6.2.4
  4218. untyped@2.0.0:
  4219. dependencies:
  4220. citty: 0.1.6
  4221. defu: 6.1.7
  4222. jiti: 2.7.0
  4223. knitwork: 1.3.0
  4224. scule: 1.3.0
  4225. optional: true
  4226. use-sync-external-store@1.2.0(react@18.3.1):
  4227. dependencies:
  4228. react: 18.3.1
  4229. validator@13.15.23: {}
  4230. valtio@1.11.2(@types/react@19.2.15)(react@18.3.1):
  4231. dependencies:
  4232. proxy-compare: 2.5.1
  4233. use-sync-external-store: 1.2.0(react@18.3.1)
  4234. optionalDependencies:
  4235. '@types/react': 19.2.15
  4236. react: 18.3.1
  4237. valtio@2.1.7(@types/react@19.2.15)(react@18.3.1):
  4238. dependencies:
  4239. proxy-compare: 3.0.1
  4240. optionalDependencies:
  4241. '@types/react': 19.2.15
  4242. react: 18.3.1
  4243. vee-validate@4.15.1(vue@3.5.34(typescript@5.9.3)):
  4244. dependencies:
  4245. '@vue/devtools-api': 7.7.9
  4246. type-fest: 4.41.0
  4247. vue: 3.5.34(typescript@5.9.3)
  4248. viem@2.51.2(typescript@5.9.3)(zod@3.22.4):
  4249. dependencies:
  4250. '@noble/curves': 1.9.1
  4251. '@noble/hashes': 1.8.0
  4252. '@scure/bip32': 1.7.0
  4253. '@scure/bip39': 1.6.0
  4254. abitype: 1.2.3(typescript@5.9.3)(zod@3.22.4)
  4255. isows: 1.0.7(ws@8.20.1)
  4256. ox: 0.14.25(typescript@5.9.3)(zod@3.22.4)
  4257. ws: 8.20.1
  4258. optionalDependencies:
  4259. typescript: 5.9.3
  4260. transitivePeerDependencies:
  4261. - bufferutil
  4262. - utf-8-validate
  4263. - zod
  4264. viem@2.51.2(typescript@5.9.3)(zod@3.25.76):
  4265. dependencies:
  4266. '@noble/curves': 1.9.1
  4267. '@noble/hashes': 1.8.0
  4268. '@scure/bip32': 1.7.0
  4269. '@scure/bip39': 1.6.0
  4270. abitype: 1.2.3(typescript@5.9.3)(zod@3.25.76)
  4271. isows: 1.0.7(ws@8.20.1)
  4272. ox: 0.14.25(typescript@5.9.3)(zod@3.25.76)
  4273. ws: 8.20.1
  4274. optionalDependencies:
  4275. typescript: 5.9.3
  4276. transitivePeerDependencies:
  4277. - bufferutil
  4278. - utf-8-validate
  4279. - zod
  4280. optional: true
  4281. viem@2.51.2(typescript@5.9.3)(zod@4.4.3):
  4282. dependencies:
  4283. '@noble/curves': 1.9.1
  4284. '@noble/hashes': 1.8.0
  4285. '@scure/bip32': 1.7.0
  4286. '@scure/bip39': 1.6.0
  4287. abitype: 1.2.3(typescript@5.9.3)(zod@4.4.3)
  4288. isows: 1.0.7(ws@8.20.1)
  4289. ox: 0.14.25(typescript@5.9.3)(zod@4.4.3)
  4290. ws: 8.20.1
  4291. optionalDependencies:
  4292. typescript: 5.9.3
  4293. transitivePeerDependencies:
  4294. - bufferutil
  4295. - utf-8-validate
  4296. - zod
  4297. vite@5.4.21(@types/node@25.6.2):
  4298. dependencies:
  4299. esbuild: 0.21.5
  4300. postcss: 8.5.14
  4301. rollup: 4.60.3
  4302. optionalDependencies:
  4303. '@types/node': 25.6.2
  4304. fsevents: 2.3.3
  4305. vscode-uri@3.1.0: {}
  4306. vue-demi@0.14.10(vue@3.5.34(typescript@5.9.3)):
  4307. dependencies:
  4308. vue: 3.5.34(typescript@5.9.3)
  4309. vue-i18n@11.4.4(vue@3.5.34(typescript@5.9.3)):
  4310. dependencies:
  4311. '@intlify/core-base': 11.4.4
  4312. '@intlify/devtools-types': 11.4.4
  4313. '@intlify/shared': 11.4.4
  4314. '@vue/devtools-api': 6.6.4
  4315. vue: 3.5.34(typescript@5.9.3)
  4316. vue-router@4.6.4(vue@3.5.34(typescript@5.9.3)):
  4317. dependencies:
  4318. '@vue/devtools-api': 6.6.4
  4319. vue: 3.5.34(typescript@5.9.3)
  4320. vue-tsc@2.2.12(typescript@5.9.3):
  4321. dependencies:
  4322. '@volar/typescript': 2.4.15
  4323. '@vue/language-core': 2.2.12(typescript@5.9.3)
  4324. typescript: 5.9.3
  4325. vue@3.5.34(typescript@5.9.3):
  4326. dependencies:
  4327. '@vue/compiler-dom': 3.5.34
  4328. '@vue/compiler-sfc': 3.5.34
  4329. '@vue/runtime-dom': 3.5.34
  4330. '@vue/server-renderer': 3.5.34(vue@3.5.34(typescript@5.9.3))
  4331. '@vue/shared': 3.5.34
  4332. optionalDependencies:
  4333. typescript: 5.9.3
  4334. webidl-conversions@3.0.1: {}
  4335. webpack-virtual-modules@0.6.2:
  4336. optional: true
  4337. whatwg-url@5.0.0:
  4338. dependencies:
  4339. tr46: 0.0.3
  4340. webidl-conversions: 3.0.1
  4341. which-module@2.0.1: {}
  4342. wrap-ansi@6.2.0:
  4343. dependencies:
  4344. ansi-styles: 4.3.0
  4345. string-width: 4.2.3
  4346. strip-ansi: 6.0.1
  4347. ws@7.5.11: {}
  4348. ws@8.17.1: {}
  4349. ws@8.20.1: {}
  4350. ws@8.21.0:
  4351. optional: true
  4352. y18n@4.0.3: {}
  4353. yargs-parser@18.1.3:
  4354. dependencies:
  4355. camelcase: 5.3.1
  4356. decamelize: 1.2.0
  4357. yargs@15.4.1:
  4358. dependencies:
  4359. cliui: 6.0.0
  4360. decamelize: 1.2.0
  4361. find-up: 4.1.0
  4362. get-caller-file: 2.0.5
  4363. require-directory: 2.1.1
  4364. require-main-filename: 2.0.0
  4365. set-blocking: 2.0.0
  4366. string-width: 4.2.3
  4367. which-module: 2.0.1
  4368. y18n: 4.0.3
  4369. yargs-parser: 18.1.3
  4370. zod@3.22.4: {}
  4371. zod@3.25.76:
  4372. optional: true
  4373. zod@4.4.3: {}
  4374. zustand@5.0.3(@types/react@19.2.15)(react@18.3.1)(use-sync-external-store@1.2.0(react@18.3.1)):
  4375. optionalDependencies:
  4376. '@types/react': 19.2.15
  4377. react: 18.3.1
  4378. use-sync-external-store: 1.2.0(react@18.3.1)
  4379. optional: true