4
0

package-lock.json 225 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180
  1. {
  2. "name": "olivetin-webui",
  3. "version": "1.0.0",
  4. "lockfileVersion": 3,
  5. "requires": true,
  6. "packages": {
  7. "": {
  8. "name": "olivetin-webui",
  9. "version": "1.0.0",
  10. "license": "AGPL-3.0-only",
  11. "dependencies": {
  12. "@connectrpc/connect": "^2.1.1",
  13. "@connectrpc/connect-web": "^2.1.1",
  14. "@hugeicons/core-free-icons": "^4.1.3",
  15. "@hugeicons/vue": "^1.0.5",
  16. "@vitejs/plugin-vue": "^6.0.6",
  17. "@xterm/addon-fit": "^0.11.0",
  18. "@xterm/addon-web-links": "^0.12.0",
  19. "@xterm/xterm": "^6.0.0",
  20. "iconify-icon": "^3.0.2",
  21. "picocrank": "^1.15.0",
  22. "standard": "^17.1.2",
  23. "unplugin-vue-components": "^32.0.0",
  24. "vite": "^8.0.12",
  25. "vue": "^3.5.34",
  26. "vue-i18n": "^11.4.2",
  27. "vue-router": "^5.0.6"
  28. },
  29. "devDependencies": {
  30. "process": "^0.11.10",
  31. "stylelint": "^17.11.0",
  32. "stylelint-config-standard": "^40.0.0"
  33. }
  34. },
  35. "node_modules/@babel/code-frame": {
  36. "version": "7.29.0",
  37. "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz",
  38. "integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==",
  39. "dev": true,
  40. "license": "MIT",
  41. "dependencies": {
  42. "@babel/helper-validator-identifier": "^7.28.5",
  43. "js-tokens": "^4.0.0",
  44. "picocolors": "^1.1.1"
  45. },
  46. "engines": {
  47. "node": ">=6.9.0"
  48. }
  49. },
  50. "node_modules/@babel/generator": {
  51. "version": "7.29.0",
  52. "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.0.tgz",
  53. "integrity": "sha512-vSH118/wwM/pLR38g/Sgk05sNtro6TlTJKuiMXDaZqPUfjTFcudpCOt00IhOfj+1BFAX+UFAlzCU+6WXr3GLFQ==",
  54. "license": "MIT",
  55. "dependencies": {
  56. "@babel/parser": "^7.29.0",
  57. "@babel/types": "^7.29.0",
  58. "@jridgewell/gen-mapping": "^0.3.12",
  59. "@jridgewell/trace-mapping": "^0.3.28",
  60. "jsesc": "^3.0.2"
  61. },
  62. "engines": {
  63. "node": ">=6.9.0"
  64. }
  65. },
  66. "node_modules/@babel/helper-string-parser": {
  67. "version": "7.27.1",
  68. "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
  69. "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
  70. "license": "MIT",
  71. "engines": {
  72. "node": ">=6.9.0"
  73. }
  74. },
  75. "node_modules/@babel/helper-validator-identifier": {
  76. "version": "7.28.5",
  77. "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
  78. "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
  79. "license": "MIT",
  80. "engines": {
  81. "node": ">=6.9.0"
  82. }
  83. },
  84. "node_modules/@babel/parser": {
  85. "version": "7.29.3",
  86. "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.3.tgz",
  87. "integrity": "sha512-b3ctpQwp+PROvU/cttc4OYl4MzfJUWy6FZg+PMXfzmt/+39iHVF0sDfqay8TQM3JA2EUOyKcFZt75jWriQijsA==",
  88. "license": "MIT",
  89. "dependencies": {
  90. "@babel/types": "^7.29.0"
  91. },
  92. "bin": {
  93. "parser": "bin/babel-parser.js"
  94. },
  95. "engines": {
  96. "node": ">=6.0.0"
  97. }
  98. },
  99. "node_modules/@babel/types": {
  100. "version": "7.29.0",
  101. "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz",
  102. "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
  103. "license": "MIT",
  104. "dependencies": {
  105. "@babel/helper-string-parser": "^7.27.1",
  106. "@babel/helper-validator-identifier": "^7.28.5"
  107. },
  108. "engines": {
  109. "node": ">=6.9.0"
  110. }
  111. },
  112. "node_modules/@bufbuild/protobuf": {
  113. "version": "2.7.0",
  114. "resolved": "https://registry.npmjs.org/@bufbuild/protobuf/-/protobuf-2.7.0.tgz",
  115. "integrity": "sha512-qn6tAIZEw5i/wiESBF4nQxZkl86aY4KoO0IkUa2Lh+rya64oTOdJQFlZuMwI1Qz9VBJQrQC4QlSA2DNek5gCOA==",
  116. "license": "(Apache-2.0 AND BSD-3-Clause)",
  117. "peer": true
  118. },
  119. "node_modules/@cacheable/memory": {
  120. "version": "2.0.7",
  121. "resolved": "https://registry.npmjs.org/@cacheable/memory/-/memory-2.0.7.tgz",
  122. "integrity": "sha512-RbxnxAMf89Tp1dLhXMS7ceft/PGsDl1Ip7T20z5nZ+pwIAsQ1p2izPjVG69oCLv/jfQ7HDPHTWK0c9rcAWXN3A==",
  123. "dev": true,
  124. "license": "MIT",
  125. "dependencies": {
  126. "@cacheable/utils": "^2.3.3",
  127. "@keyv/bigmap": "^1.3.0",
  128. "hookified": "^1.14.0",
  129. "keyv": "^5.5.5"
  130. }
  131. },
  132. "node_modules/@cacheable/memory/node_modules/@keyv/bigmap": {
  133. "version": "1.3.1",
  134. "resolved": "https://registry.npmjs.org/@keyv/bigmap/-/bigmap-1.3.1.tgz",
  135. "integrity": "sha512-WbzE9sdmQtKy8vrNPa9BRnwZh5UF4s1KTmSK0KUVLo3eff5BlQNNWDnFOouNpKfPKDnms9xynJjsMYjMaT/aFQ==",
  136. "dev": true,
  137. "license": "MIT",
  138. "dependencies": {
  139. "hashery": "^1.4.0",
  140. "hookified": "^1.15.0"
  141. },
  142. "engines": {
  143. "node": ">= 18"
  144. },
  145. "peerDependencies": {
  146. "keyv": "^5.6.0"
  147. }
  148. },
  149. "node_modules/@cacheable/memory/node_modules/keyv": {
  150. "version": "5.6.0",
  151. "resolved": "https://registry.npmjs.org/keyv/-/keyv-5.6.0.tgz",
  152. "integrity": "sha512-CYDD3SOtsHtyXeEORYRx2qBtpDJFjRTGXUtmNEMGyzYOKj1TE3tycdlho7kA1Ufx9OYWZzg52QFBGALTirzDSw==",
  153. "dev": true,
  154. "license": "MIT",
  155. "dependencies": {
  156. "@keyv/serialize": "^1.1.1"
  157. }
  158. },
  159. "node_modules/@cacheable/utils": {
  160. "version": "2.3.4",
  161. "resolved": "https://registry.npmjs.org/@cacheable/utils/-/utils-2.3.4.tgz",
  162. "integrity": "sha512-knwKUJEYgIfwShABS1BX6JyJJTglAFcEU7EXqzTdiGCXur4voqkiJkdgZIQtWNFhynzDWERcTYv/sETMu3uJWA==",
  163. "dev": true,
  164. "license": "MIT",
  165. "dependencies": {
  166. "hashery": "^1.3.0",
  167. "keyv": "^5.6.0"
  168. }
  169. },
  170. "node_modules/@cacheable/utils/node_modules/keyv": {
  171. "version": "5.6.0",
  172. "resolved": "https://registry.npmjs.org/keyv/-/keyv-5.6.0.tgz",
  173. "integrity": "sha512-CYDD3SOtsHtyXeEORYRx2qBtpDJFjRTGXUtmNEMGyzYOKj1TE3tycdlho7kA1Ufx9OYWZzg52QFBGALTirzDSw==",
  174. "dev": true,
  175. "license": "MIT",
  176. "dependencies": {
  177. "@keyv/serialize": "^1.1.1"
  178. }
  179. },
  180. "node_modules/@connectrpc/connect": {
  181. "version": "2.1.1",
  182. "resolved": "https://registry.npmjs.org/@connectrpc/connect/-/connect-2.1.1.tgz",
  183. "integrity": "sha512-JzhkaTvM73m2K1URT6tv53k2RwngSmCXLZJgK580qNQOXRzZRR/BCMfZw3h+90JpnG6XksP5bYT+cz0rpUzUWQ==",
  184. "license": "Apache-2.0",
  185. "peerDependencies": {
  186. "@bufbuild/protobuf": "^2.7.0"
  187. }
  188. },
  189. "node_modules/@connectrpc/connect-web": {
  190. "version": "2.1.1",
  191. "resolved": "https://registry.npmjs.org/@connectrpc/connect-web/-/connect-web-2.1.1.tgz",
  192. "integrity": "sha512-J8317Q2MaFRCT1jzVR1o06bZhDIBmU0UAzWx6xOIXzOq8+k71/+k7MUF7AwcBUX+34WIvbm5syRgC5HXQA8fOg==",
  193. "license": "Apache-2.0",
  194. "peerDependencies": {
  195. "@bufbuild/protobuf": "^2.7.0",
  196. "@connectrpc/connect": "2.1.1"
  197. }
  198. },
  199. "node_modules/@csstools/css-calc": {
  200. "version": "3.2.0",
  201. "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.0.tgz",
  202. "integrity": "sha512-bR9e6o2BDB12jzN/gIbjHa5wLJ4UjD1CB9pM7ehlc0ddk6EBz+yYS1EV2MF55/HUxrHcB/hehAyt5vhsA3hx7w==",
  203. "dev": true,
  204. "funding": [
  205. {
  206. "type": "github",
  207. "url": "https://github.com/sponsors/csstools"
  208. },
  209. {
  210. "type": "opencollective",
  211. "url": "https://opencollective.com/csstools"
  212. }
  213. ],
  214. "license": "MIT",
  215. "engines": {
  216. "node": ">=20.19.0"
  217. },
  218. "peerDependencies": {
  219. "@csstools/css-parser-algorithms": "^4.0.0",
  220. "@csstools/css-tokenizer": "^4.0.0"
  221. }
  222. },
  223. "node_modules/@csstools/css-parser-algorithms": {
  224. "version": "4.0.0",
  225. "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz",
  226. "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==",
  227. "dev": true,
  228. "funding": [
  229. {
  230. "type": "github",
  231. "url": "https://github.com/sponsors/csstools"
  232. },
  233. {
  234. "type": "opencollective",
  235. "url": "https://opencollective.com/csstools"
  236. }
  237. ],
  238. "license": "MIT",
  239. "engines": {
  240. "node": ">=20.19.0"
  241. },
  242. "peerDependencies": {
  243. "@csstools/css-tokenizer": "^4.0.0"
  244. }
  245. },
  246. "node_modules/@csstools/css-syntax-patches-for-csstree": {
  247. "version": "1.1.3",
  248. "resolved": "https://registry.npmjs.org/@csstools/css-syntax-patches-for-csstree/-/css-syntax-patches-for-csstree-1.1.3.tgz",
  249. "integrity": "sha512-SH60bMfrRCJF3morcdk57WklujF4Jr/EsQUzqkarfHXEFcAR1gg7fS/chAE922Sehgzc1/+Tz5H3Ypa1HiEKrg==",
  250. "dev": true,
  251. "funding": [
  252. {
  253. "type": "github",
  254. "url": "https://github.com/sponsors/csstools"
  255. },
  256. {
  257. "type": "opencollective",
  258. "url": "https://opencollective.com/csstools"
  259. }
  260. ],
  261. "license": "MIT-0",
  262. "peerDependencies": {
  263. "css-tree": "^3.2.1"
  264. },
  265. "peerDependenciesMeta": {
  266. "css-tree": {
  267. "optional": true
  268. }
  269. }
  270. },
  271. "node_modules/@csstools/css-tokenizer": {
  272. "version": "4.0.0",
  273. "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz",
  274. "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==",
  275. "dev": true,
  276. "funding": [
  277. {
  278. "type": "github",
  279. "url": "https://github.com/sponsors/csstools"
  280. },
  281. {
  282. "type": "opencollective",
  283. "url": "https://opencollective.com/csstools"
  284. }
  285. ],
  286. "license": "MIT",
  287. "engines": {
  288. "node": ">=20.19.0"
  289. }
  290. },
  291. "node_modules/@csstools/media-query-list-parser": {
  292. "version": "5.0.0",
  293. "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-5.0.0.tgz",
  294. "integrity": "sha512-T9lXmZOfnam3eMERPsszjY5NK0jX8RmThmmm99FZ8b7z8yMaFZWKwLWGZuTwdO3ddRY5fy13GmmEYZXB4I98Eg==",
  295. "dev": true,
  296. "funding": [
  297. {
  298. "type": "github",
  299. "url": "https://github.com/sponsors/csstools"
  300. },
  301. {
  302. "type": "opencollective",
  303. "url": "https://opencollective.com/csstools"
  304. }
  305. ],
  306. "license": "MIT",
  307. "engines": {
  308. "node": ">=20.19.0"
  309. },
  310. "peerDependencies": {
  311. "@csstools/css-parser-algorithms": "^4.0.0",
  312. "@csstools/css-tokenizer": "^4.0.0"
  313. }
  314. },
  315. "node_modules/@csstools/selector-resolve-nested": {
  316. "version": "4.0.0",
  317. "resolved": "https://registry.npmjs.org/@csstools/selector-resolve-nested/-/selector-resolve-nested-4.0.0.tgz",
  318. "integrity": "sha512-9vAPxmp+Dx3wQBIUwc1v7Mdisw1kbbaGqXUM8QLTgWg7SoPGYtXBsMXvsFs/0Bn5yoFhcktzxNZGNaUt0VjgjA==",
  319. "dev": true,
  320. "funding": [
  321. {
  322. "type": "github",
  323. "url": "https://github.com/sponsors/csstools"
  324. },
  325. {
  326. "type": "opencollective",
  327. "url": "https://opencollective.com/csstools"
  328. }
  329. ],
  330. "license": "MIT-0",
  331. "engines": {
  332. "node": ">=20.19.0"
  333. },
  334. "peerDependencies": {
  335. "postcss-selector-parser": "^7.1.1"
  336. }
  337. },
  338. "node_modules/@csstools/selector-specificity": {
  339. "version": "6.0.0",
  340. "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-6.0.0.tgz",
  341. "integrity": "sha512-4sSgl78OtOXEX/2d++8A83zHNTgwCJMaR24FvsYL7Uf/VS8HZk9PTwR51elTbGqMuwH3szLvvOXEaVnqn0Z3zA==",
  342. "dev": true,
  343. "funding": [
  344. {
  345. "type": "github",
  346. "url": "https://github.com/sponsors/csstools"
  347. },
  348. {
  349. "type": "opencollective",
  350. "url": "https://opencollective.com/csstools"
  351. }
  352. ],
  353. "license": "MIT-0",
  354. "engines": {
  355. "node": ">=20.19.0"
  356. },
  357. "peerDependencies": {
  358. "postcss-selector-parser": "^7.1.1"
  359. }
  360. },
  361. "node_modules/@emnapi/core": {
  362. "version": "1.10.0",
  363. "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.10.0.tgz",
  364. "integrity": "sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==",
  365. "license": "MIT",
  366. "optional": true,
  367. "dependencies": {
  368. "@emnapi/wasi-threads": "1.2.1",
  369. "tslib": "^2.4.0"
  370. }
  371. },
  372. "node_modules/@emnapi/runtime": {
  373. "version": "1.10.0",
  374. "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz",
  375. "integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==",
  376. "license": "MIT",
  377. "optional": true,
  378. "dependencies": {
  379. "tslib": "^2.4.0"
  380. }
  381. },
  382. "node_modules/@emnapi/wasi-threads": {
  383. "version": "1.2.1",
  384. "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz",
  385. "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==",
  386. "license": "MIT",
  387. "optional": true,
  388. "dependencies": {
  389. "tslib": "^2.4.0"
  390. }
  391. },
  392. "node_modules/@esbuild/aix-ppc64": {
  393. "version": "0.27.2",
  394. "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.2.tgz",
  395. "integrity": "sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==",
  396. "cpu": [
  397. "ppc64"
  398. ],
  399. "license": "MIT",
  400. "optional": true,
  401. "os": [
  402. "aix"
  403. ],
  404. "peer": true,
  405. "engines": {
  406. "node": ">=18"
  407. }
  408. },
  409. "node_modules/@esbuild/android-arm": {
  410. "version": "0.27.2",
  411. "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.2.tgz",
  412. "integrity": "sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA==",
  413. "cpu": [
  414. "arm"
  415. ],
  416. "license": "MIT",
  417. "optional": true,
  418. "os": [
  419. "android"
  420. ],
  421. "peer": true,
  422. "engines": {
  423. "node": ">=18"
  424. }
  425. },
  426. "node_modules/@esbuild/android-arm64": {
  427. "version": "0.27.2",
  428. "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.2.tgz",
  429. "integrity": "sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA==",
  430. "cpu": [
  431. "arm64"
  432. ],
  433. "license": "MIT",
  434. "optional": true,
  435. "os": [
  436. "android"
  437. ],
  438. "peer": true,
  439. "engines": {
  440. "node": ">=18"
  441. }
  442. },
  443. "node_modules/@esbuild/android-x64": {
  444. "version": "0.27.2",
  445. "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.2.tgz",
  446. "integrity": "sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A==",
  447. "cpu": [
  448. "x64"
  449. ],
  450. "license": "MIT",
  451. "optional": true,
  452. "os": [
  453. "android"
  454. ],
  455. "peer": true,
  456. "engines": {
  457. "node": ">=18"
  458. }
  459. },
  460. "node_modules/@esbuild/darwin-arm64": {
  461. "version": "0.27.2",
  462. "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.2.tgz",
  463. "integrity": "sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==",
  464. "cpu": [
  465. "arm64"
  466. ],
  467. "license": "MIT",
  468. "optional": true,
  469. "os": [
  470. "darwin"
  471. ],
  472. "peer": true,
  473. "engines": {
  474. "node": ">=18"
  475. }
  476. },
  477. "node_modules/@esbuild/darwin-x64": {
  478. "version": "0.27.2",
  479. "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.2.tgz",
  480. "integrity": "sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA==",
  481. "cpu": [
  482. "x64"
  483. ],
  484. "license": "MIT",
  485. "optional": true,
  486. "os": [
  487. "darwin"
  488. ],
  489. "peer": true,
  490. "engines": {
  491. "node": ">=18"
  492. }
  493. },
  494. "node_modules/@esbuild/freebsd-arm64": {
  495. "version": "0.27.2",
  496. "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.2.tgz",
  497. "integrity": "sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g==",
  498. "cpu": [
  499. "arm64"
  500. ],
  501. "license": "MIT",
  502. "optional": true,
  503. "os": [
  504. "freebsd"
  505. ],
  506. "peer": true,
  507. "engines": {
  508. "node": ">=18"
  509. }
  510. },
  511. "node_modules/@esbuild/freebsd-x64": {
  512. "version": "0.27.2",
  513. "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.2.tgz",
  514. "integrity": "sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA==",
  515. "cpu": [
  516. "x64"
  517. ],
  518. "license": "MIT",
  519. "optional": true,
  520. "os": [
  521. "freebsd"
  522. ],
  523. "peer": true,
  524. "engines": {
  525. "node": ">=18"
  526. }
  527. },
  528. "node_modules/@esbuild/linux-arm": {
  529. "version": "0.27.2",
  530. "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.2.tgz",
  531. "integrity": "sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw==",
  532. "cpu": [
  533. "arm"
  534. ],
  535. "license": "MIT",
  536. "optional": true,
  537. "os": [
  538. "linux"
  539. ],
  540. "peer": true,
  541. "engines": {
  542. "node": ">=18"
  543. }
  544. },
  545. "node_modules/@esbuild/linux-arm64": {
  546. "version": "0.27.2",
  547. "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.2.tgz",
  548. "integrity": "sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw==",
  549. "cpu": [
  550. "arm64"
  551. ],
  552. "license": "MIT",
  553. "optional": true,
  554. "os": [
  555. "linux"
  556. ],
  557. "peer": true,
  558. "engines": {
  559. "node": ">=18"
  560. }
  561. },
  562. "node_modules/@esbuild/linux-ia32": {
  563. "version": "0.27.2",
  564. "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.2.tgz",
  565. "integrity": "sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w==",
  566. "cpu": [
  567. "ia32"
  568. ],
  569. "license": "MIT",
  570. "optional": true,
  571. "os": [
  572. "linux"
  573. ],
  574. "peer": true,
  575. "engines": {
  576. "node": ">=18"
  577. }
  578. },
  579. "node_modules/@esbuild/linux-loong64": {
  580. "version": "0.27.2",
  581. "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.2.tgz",
  582. "integrity": "sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg==",
  583. "cpu": [
  584. "loong64"
  585. ],
  586. "license": "MIT",
  587. "optional": true,
  588. "os": [
  589. "linux"
  590. ],
  591. "peer": true,
  592. "engines": {
  593. "node": ">=18"
  594. }
  595. },
  596. "node_modules/@esbuild/linux-mips64el": {
  597. "version": "0.27.2",
  598. "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.2.tgz",
  599. "integrity": "sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw==",
  600. "cpu": [
  601. "mips64el"
  602. ],
  603. "license": "MIT",
  604. "optional": true,
  605. "os": [
  606. "linux"
  607. ],
  608. "peer": true,
  609. "engines": {
  610. "node": ">=18"
  611. }
  612. },
  613. "node_modules/@esbuild/linux-ppc64": {
  614. "version": "0.27.2",
  615. "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.2.tgz",
  616. "integrity": "sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==",
  617. "cpu": [
  618. "ppc64"
  619. ],
  620. "license": "MIT",
  621. "optional": true,
  622. "os": [
  623. "linux"
  624. ],
  625. "peer": true,
  626. "engines": {
  627. "node": ">=18"
  628. }
  629. },
  630. "node_modules/@esbuild/linux-riscv64": {
  631. "version": "0.27.2",
  632. "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.2.tgz",
  633. "integrity": "sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA==",
  634. "cpu": [
  635. "riscv64"
  636. ],
  637. "license": "MIT",
  638. "optional": true,
  639. "os": [
  640. "linux"
  641. ],
  642. "peer": true,
  643. "engines": {
  644. "node": ">=18"
  645. }
  646. },
  647. "node_modules/@esbuild/linux-s390x": {
  648. "version": "0.27.2",
  649. "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.2.tgz",
  650. "integrity": "sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w==",
  651. "cpu": [
  652. "s390x"
  653. ],
  654. "license": "MIT",
  655. "optional": true,
  656. "os": [
  657. "linux"
  658. ],
  659. "peer": true,
  660. "engines": {
  661. "node": ">=18"
  662. }
  663. },
  664. "node_modules/@esbuild/linux-x64": {
  665. "version": "0.27.2",
  666. "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.2.tgz",
  667. "integrity": "sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA==",
  668. "cpu": [
  669. "x64"
  670. ],
  671. "license": "MIT",
  672. "optional": true,
  673. "os": [
  674. "linux"
  675. ],
  676. "peer": true,
  677. "engines": {
  678. "node": ">=18"
  679. }
  680. },
  681. "node_modules/@esbuild/netbsd-arm64": {
  682. "version": "0.27.2",
  683. "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.2.tgz",
  684. "integrity": "sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw==",
  685. "cpu": [
  686. "arm64"
  687. ],
  688. "license": "MIT",
  689. "optional": true,
  690. "os": [
  691. "netbsd"
  692. ],
  693. "peer": true,
  694. "engines": {
  695. "node": ">=18"
  696. }
  697. },
  698. "node_modules/@esbuild/netbsd-x64": {
  699. "version": "0.27.2",
  700. "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.2.tgz",
  701. "integrity": "sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA==",
  702. "cpu": [
  703. "x64"
  704. ],
  705. "license": "MIT",
  706. "optional": true,
  707. "os": [
  708. "netbsd"
  709. ],
  710. "peer": true,
  711. "engines": {
  712. "node": ">=18"
  713. }
  714. },
  715. "node_modules/@esbuild/openbsd-arm64": {
  716. "version": "0.27.2",
  717. "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.2.tgz",
  718. "integrity": "sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA==",
  719. "cpu": [
  720. "arm64"
  721. ],
  722. "license": "MIT",
  723. "optional": true,
  724. "os": [
  725. "openbsd"
  726. ],
  727. "peer": true,
  728. "engines": {
  729. "node": ">=18"
  730. }
  731. },
  732. "node_modules/@esbuild/openbsd-x64": {
  733. "version": "0.27.2",
  734. "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.2.tgz",
  735. "integrity": "sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg==",
  736. "cpu": [
  737. "x64"
  738. ],
  739. "license": "MIT",
  740. "optional": true,
  741. "os": [
  742. "openbsd"
  743. ],
  744. "peer": true,
  745. "engines": {
  746. "node": ">=18"
  747. }
  748. },
  749. "node_modules/@esbuild/openharmony-arm64": {
  750. "version": "0.27.2",
  751. "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.2.tgz",
  752. "integrity": "sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag==",
  753. "cpu": [
  754. "arm64"
  755. ],
  756. "license": "MIT",
  757. "optional": true,
  758. "os": [
  759. "openharmony"
  760. ],
  761. "peer": true,
  762. "engines": {
  763. "node": ">=18"
  764. }
  765. },
  766. "node_modules/@esbuild/sunos-x64": {
  767. "version": "0.27.2",
  768. "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.2.tgz",
  769. "integrity": "sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==",
  770. "cpu": [
  771. "x64"
  772. ],
  773. "license": "MIT",
  774. "optional": true,
  775. "os": [
  776. "sunos"
  777. ],
  778. "peer": true,
  779. "engines": {
  780. "node": ">=18"
  781. }
  782. },
  783. "node_modules/@esbuild/win32-arm64": {
  784. "version": "0.27.2",
  785. "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.2.tgz",
  786. "integrity": "sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg==",
  787. "cpu": [
  788. "arm64"
  789. ],
  790. "license": "MIT",
  791. "optional": true,
  792. "os": [
  793. "win32"
  794. ],
  795. "peer": true,
  796. "engines": {
  797. "node": ">=18"
  798. }
  799. },
  800. "node_modules/@esbuild/win32-ia32": {
  801. "version": "0.27.2",
  802. "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.2.tgz",
  803. "integrity": "sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ==",
  804. "cpu": [
  805. "ia32"
  806. ],
  807. "license": "MIT",
  808. "optional": true,
  809. "os": [
  810. "win32"
  811. ],
  812. "peer": true,
  813. "engines": {
  814. "node": ">=18"
  815. }
  816. },
  817. "node_modules/@esbuild/win32-x64": {
  818. "version": "0.27.2",
  819. "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.2.tgz",
  820. "integrity": "sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ==",
  821. "cpu": [
  822. "x64"
  823. ],
  824. "license": "MIT",
  825. "optional": true,
  826. "os": [
  827. "win32"
  828. ],
  829. "peer": true,
  830. "engines": {
  831. "node": ">=18"
  832. }
  833. },
  834. "node_modules/@eslint-community/eslint-utils": {
  835. "version": "4.9.0",
  836. "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz",
  837. "integrity": "sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==",
  838. "license": "MIT",
  839. "dependencies": {
  840. "eslint-visitor-keys": "^3.4.3"
  841. },
  842. "engines": {
  843. "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
  844. },
  845. "funding": {
  846. "url": "https://opencollective.com/eslint"
  847. },
  848. "peerDependencies": {
  849. "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
  850. }
  851. },
  852. "node_modules/@eslint-community/regexpp": {
  853. "version": "4.12.2",
  854. "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz",
  855. "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==",
  856. "license": "MIT",
  857. "engines": {
  858. "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
  859. }
  860. },
  861. "node_modules/@eslint/eslintrc": {
  862. "version": "2.1.4",
  863. "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz",
  864. "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==",
  865. "license": "MIT",
  866. "dependencies": {
  867. "ajv": "^6.12.4",
  868. "debug": "^4.3.2",
  869. "espree": "^9.6.0",
  870. "globals": "^13.19.0",
  871. "ignore": "^5.2.0",
  872. "import-fresh": "^3.2.1",
  873. "js-yaml": "^4.1.0",
  874. "minimatch": "^3.1.2",
  875. "strip-json-comments": "^3.1.1"
  876. },
  877. "engines": {
  878. "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
  879. },
  880. "funding": {
  881. "url": "https://opencollective.com/eslint"
  882. }
  883. },
  884. "node_modules/@eslint/js": {
  885. "version": "8.57.1",
  886. "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz",
  887. "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==",
  888. "license": "MIT",
  889. "engines": {
  890. "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
  891. }
  892. },
  893. "node_modules/@hugeicons/core-free-icons": {
  894. "version": "4.1.3",
  895. "resolved": "https://registry.npmjs.org/@hugeicons/core-free-icons/-/core-free-icons-4.1.3.tgz",
  896. "integrity": "sha512-FWPrKnlYKpSaitUtlZhFlDQXDgHiayTPFJYWvyIKkW2RI6Vj5KBvjxI+lAnnFPu07SwgIMiDDj+Gttl0t+o/oQ==",
  897. "license": "MIT"
  898. },
  899. "node_modules/@hugeicons/vue": {
  900. "version": "1.0.5",
  901. "resolved": "https://registry.npmjs.org/@hugeicons/vue/-/vue-1.0.5.tgz",
  902. "integrity": "sha512-kaouUZceXtdDfupfiqqfn40tIyRBF/fcEvCfY96hZIXZ3JMsqpwhCDqiqoj+B5bMEUXOuvz3npNyKI5+7iPfYA==",
  903. "license": "MIT",
  904. "peerDependencies": {
  905. "vue": "^2.6.0 || ^3.0.0"
  906. }
  907. },
  908. "node_modules/@humanwhocodes/config-array": {
  909. "version": "0.13.0",
  910. "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz",
  911. "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==",
  912. "deprecated": "Use @eslint/config-array instead",
  913. "license": "Apache-2.0",
  914. "dependencies": {
  915. "@humanwhocodes/object-schema": "^2.0.3",
  916. "debug": "^4.3.1",
  917. "minimatch": "^3.0.5"
  918. },
  919. "engines": {
  920. "node": ">=10.10.0"
  921. }
  922. },
  923. "node_modules/@humanwhocodes/module-importer": {
  924. "version": "1.0.1",
  925. "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
  926. "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
  927. "license": "Apache-2.0",
  928. "engines": {
  929. "node": ">=12.22"
  930. },
  931. "funding": {
  932. "type": "github",
  933. "url": "https://github.com/sponsors/nzakas"
  934. }
  935. },
  936. "node_modules/@humanwhocodes/object-schema": {
  937. "version": "2.0.3",
  938. "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz",
  939. "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==",
  940. "deprecated": "Use @eslint/object-schema instead",
  941. "license": "BSD-3-Clause"
  942. },
  943. "node_modules/@iconify/types": {
  944. "version": "2.0.0",
  945. "resolved": "https://registry.npmjs.org/@iconify/types/-/types-2.0.0.tgz",
  946. "integrity": "sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==",
  947. "license": "MIT"
  948. },
  949. "node_modules/@intlify/core-base": {
  950. "version": "11.4.2",
  951. "resolved": "https://registry.npmjs.org/@intlify/core-base/-/core-base-11.4.2.tgz",
  952. "integrity": "sha512-7fpuCcVmeLv2T9qHsARqGvh8xt+sV2fH+Q+gMHFwB/rPXzo85DpbJFKn7dBH1L5p0c2cSh2DW+2h/64EKrISmA==",
  953. "license": "MIT",
  954. "dependencies": {
  955. "@intlify/devtools-types": "11.4.2",
  956. "@intlify/message-compiler": "11.4.2",
  957. "@intlify/shared": "11.4.2"
  958. },
  959. "engines": {
  960. "node": ">= 16"
  961. },
  962. "funding": {
  963. "url": "https://github.com/sponsors/kazupon"
  964. }
  965. },
  966. "node_modules/@intlify/devtools-types": {
  967. "version": "11.4.2",
  968. "resolved": "https://registry.npmjs.org/@intlify/devtools-types/-/devtools-types-11.4.2.tgz",
  969. "integrity": "sha512-3u8EN1kB6EMSi96KXs5k7a8y2X2g4+h3X6iwVZU47cP4n+mTuq//WMjG588BzSp/2XQ/dTXo2BLUXX+XS+PNfA==",
  970. "license": "MIT",
  971. "dependencies": {
  972. "@intlify/core-base": "11.4.2",
  973. "@intlify/shared": "11.4.2"
  974. },
  975. "engines": {
  976. "node": ">= 16"
  977. },
  978. "funding": {
  979. "url": "https://github.com/sponsors/kazupon"
  980. }
  981. },
  982. "node_modules/@intlify/message-compiler": {
  983. "version": "11.4.2",
  984. "resolved": "https://registry.npmjs.org/@intlify/message-compiler/-/message-compiler-11.4.2.tgz",
  985. "integrity": "sha512-a6CDSGSMTGrg0BjD97x8TBYPf7qQMDlZipJ6UDfv/pd4OIym8TMlHu3MsH0bTNnRdAG2D6EFEykIgiQPqvtTkA==",
  986. "license": "MIT",
  987. "dependencies": {
  988. "@intlify/shared": "11.4.2",
  989. "source-map-js": "^1.0.2"
  990. },
  991. "engines": {
  992. "node": ">= 16"
  993. },
  994. "funding": {
  995. "url": "https://github.com/sponsors/kazupon"
  996. }
  997. },
  998. "node_modules/@intlify/shared": {
  999. "version": "11.4.2",
  1000. "resolved": "https://registry.npmjs.org/@intlify/shared/-/shared-11.4.2.tgz",
  1001. "integrity": "sha512-NzpHbguRCsOHDwxmlBa9qu/imc+/QWgsYUaK6FZeNC0wK8QfAbhqrktEp/haVzxU1aikH8IX4ytD+mfFEMi/9A==",
  1002. "license": "MIT",
  1003. "engines": {
  1004. "node": ">= 16"
  1005. },
  1006. "funding": {
  1007. "url": "https://github.com/sponsors/kazupon"
  1008. }
  1009. },
  1010. "node_modules/@jridgewell/gen-mapping": {
  1011. "version": "0.3.13",
  1012. "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
  1013. "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
  1014. "license": "MIT",
  1015. "dependencies": {
  1016. "@jridgewell/sourcemap-codec": "^1.5.0",
  1017. "@jridgewell/trace-mapping": "^0.3.24"
  1018. }
  1019. },
  1020. "node_modules/@jridgewell/remapping": {
  1021. "version": "2.3.5",
  1022. "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
  1023. "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
  1024. "license": "MIT",
  1025. "dependencies": {
  1026. "@jridgewell/gen-mapping": "^0.3.5",
  1027. "@jridgewell/trace-mapping": "^0.3.24"
  1028. }
  1029. },
  1030. "node_modules/@jridgewell/resolve-uri": {
  1031. "version": "3.1.2",
  1032. "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
  1033. "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
  1034. "license": "MIT",
  1035. "engines": {
  1036. "node": ">=6.0.0"
  1037. }
  1038. },
  1039. "node_modules/@jridgewell/sourcemap-codec": {
  1040. "version": "1.5.5",
  1041. "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
  1042. "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
  1043. "license": "MIT"
  1044. },
  1045. "node_modules/@jridgewell/trace-mapping": {
  1046. "version": "0.3.31",
  1047. "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
  1048. "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
  1049. "license": "MIT",
  1050. "dependencies": {
  1051. "@jridgewell/resolve-uri": "^3.1.0",
  1052. "@jridgewell/sourcemap-codec": "^1.4.14"
  1053. }
  1054. },
  1055. "node_modules/@keyv/serialize": {
  1056. "version": "1.1.1",
  1057. "resolved": "https://registry.npmjs.org/@keyv/serialize/-/serialize-1.1.1.tgz",
  1058. "integrity": "sha512-dXn3FZhPv0US+7dtJsIi2R+c7qWYiReoEh5zUntWCf4oSpMNib8FDhSoed6m3QyZdx5hK7iLFkYk3rNxwt8vTA==",
  1059. "dev": true,
  1060. "license": "MIT"
  1061. },
  1062. "node_modules/@napi-rs/wasm-runtime": {
  1063. "version": "1.1.4",
  1064. "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.4.tgz",
  1065. "integrity": "sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==",
  1066. "license": "MIT",
  1067. "optional": true,
  1068. "dependencies": {
  1069. "@tybys/wasm-util": "^0.10.1"
  1070. },
  1071. "funding": {
  1072. "type": "github",
  1073. "url": "https://github.com/sponsors/Brooooooklyn"
  1074. },
  1075. "peerDependencies": {
  1076. "@emnapi/core": "^1.7.1",
  1077. "@emnapi/runtime": "^1.7.1"
  1078. }
  1079. },
  1080. "node_modules/@nodelib/fs.scandir": {
  1081. "version": "2.1.5",
  1082. "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
  1083. "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
  1084. "dependencies": {
  1085. "@nodelib/fs.stat": "2.0.5",
  1086. "run-parallel": "^1.1.9"
  1087. },
  1088. "engines": {
  1089. "node": ">= 8"
  1090. }
  1091. },
  1092. "node_modules/@nodelib/fs.stat": {
  1093. "version": "2.0.5",
  1094. "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
  1095. "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
  1096. "engines": {
  1097. "node": ">= 8"
  1098. }
  1099. },
  1100. "node_modules/@nodelib/fs.walk": {
  1101. "version": "1.2.8",
  1102. "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
  1103. "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
  1104. "dependencies": {
  1105. "@nodelib/fs.scandir": "2.1.5",
  1106. "fastq": "^1.6.0"
  1107. },
  1108. "engines": {
  1109. "node": ">= 8"
  1110. }
  1111. },
  1112. "node_modules/@oxc-project/types": {
  1113. "version": "0.129.0",
  1114. "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.129.0.tgz",
  1115. "integrity": "sha512-3oz8m3FGdr2nDXVqmFUw7jolKliC4MoyXYIG2c7gpjBnzUWQpUGIYcXYKxTdTi+N2jusvt610ckTMkxdwHkYEg==",
  1116. "license": "MIT",
  1117. "funding": {
  1118. "url": "https://github.com/sponsors/Boshen"
  1119. }
  1120. },
  1121. "node_modules/@rolldown/binding-android-arm64": {
  1122. "version": "1.0.0",
  1123. "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.0.tgz",
  1124. "integrity": "sha512-TWMZnRLMe63C2Lhyicviu7ZHaU4kxa6PS3rofvc9GmcvptzNN11BcfQ4Sl7MwTOsisQoa2keB/EBdNCAnUo8vA==",
  1125. "cpu": [
  1126. "arm64"
  1127. ],
  1128. "license": "MIT",
  1129. "optional": true,
  1130. "os": [
  1131. "android"
  1132. ],
  1133. "engines": {
  1134. "node": "^20.19.0 || >=22.12.0"
  1135. }
  1136. },
  1137. "node_modules/@rolldown/binding-darwin-arm64": {
  1138. "version": "1.0.0",
  1139. "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.0.tgz",
  1140. "integrity": "sha512-6XcD+8k0gPVItNagEw78/qqcBDwKcwDYS8V2hRmVsfUSIrd8cWe/CBvRDI5toqFyPfj+FJr6t8U6Xj2P2prEew==",
  1141. "cpu": [
  1142. "arm64"
  1143. ],
  1144. "license": "MIT",
  1145. "optional": true,
  1146. "os": [
  1147. "darwin"
  1148. ],
  1149. "engines": {
  1150. "node": "^20.19.0 || >=22.12.0"
  1151. }
  1152. },
  1153. "node_modules/@rolldown/binding-darwin-x64": {
  1154. "version": "1.0.0",
  1155. "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.0.tgz",
  1156. "integrity": "sha512-iN/tWVXRQDWvmZlKdceP1Dwug9GDpEymhb9p4xnEe6zvCg5lFmzVljl+1qR1NVx3yfGpr2Na+CuLmv5IU8uzfQ==",
  1157. "cpu": [
  1158. "x64"
  1159. ],
  1160. "license": "MIT",
  1161. "optional": true,
  1162. "os": [
  1163. "darwin"
  1164. ],
  1165. "engines": {
  1166. "node": "^20.19.0 || >=22.12.0"
  1167. }
  1168. },
  1169. "node_modules/@rolldown/binding-freebsd-x64": {
  1170. "version": "1.0.0",
  1171. "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.0.tgz",
  1172. "integrity": "sha512-jjQMDvvwSOuhOwMszD/klSOjyWMM3zI64hWTj9KT5x4MxRbZAf+7vLQ6qouRhtsLVFHr3f0ILaJAfgENPiQdAQ==",
  1173. "cpu": [
  1174. "x64"
  1175. ],
  1176. "license": "MIT",
  1177. "optional": true,
  1178. "os": [
  1179. "freebsd"
  1180. ],
  1181. "engines": {
  1182. "node": "^20.19.0 || >=22.12.0"
  1183. }
  1184. },
  1185. "node_modules/@rolldown/binding-linux-arm-gnueabihf": {
  1186. "version": "1.0.0",
  1187. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.0.tgz",
  1188. "integrity": "sha512-d//Dtg2x6/m3mbV64yUGNnDGNZaDGRpDLLNGerHQUVObuNaIQaaDp25yUiqGXtHEXX+NP2d0wAlmKgpYgIAJ2A==",
  1189. "cpu": [
  1190. "arm"
  1191. ],
  1192. "license": "MIT",
  1193. "optional": true,
  1194. "os": [
  1195. "linux"
  1196. ],
  1197. "engines": {
  1198. "node": "^20.19.0 || >=22.12.0"
  1199. }
  1200. },
  1201. "node_modules/@rolldown/binding-linux-arm64-gnu": {
  1202. "version": "1.0.0",
  1203. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.0.tgz",
  1204. "integrity": "sha512-n7Ofp0mx+aB2cC+Sdy5YtMnXtY9lchnHbY+3Yt0uq9JsWQExf4f5Whu0tK0R8Jdc9S6RchTHjIFY7uc92puOVQ==",
  1205. "cpu": [
  1206. "arm64"
  1207. ],
  1208. "license": "MIT",
  1209. "optional": true,
  1210. "os": [
  1211. "linux"
  1212. ],
  1213. "engines": {
  1214. "node": "^20.19.0 || >=22.12.0"
  1215. }
  1216. },
  1217. "node_modules/@rolldown/binding-linux-arm64-musl": {
  1218. "version": "1.0.0",
  1219. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.0.tgz",
  1220. "integrity": "sha512-EIVjy2cgd7uuMMo94FVkBp7F6DhcZAUwNURkSG3RwUmvAXR6s0ISxM81U+IydcZByPG0pZIHsf1b6kTxoFDgJA==",
  1221. "cpu": [
  1222. "arm64"
  1223. ],
  1224. "license": "MIT",
  1225. "optional": true,
  1226. "os": [
  1227. "linux"
  1228. ],
  1229. "engines": {
  1230. "node": "^20.19.0 || >=22.12.0"
  1231. }
  1232. },
  1233. "node_modules/@rolldown/binding-linux-ppc64-gnu": {
  1234. "version": "1.0.0",
  1235. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.0.tgz",
  1236. "integrity": "sha512-JEwwOPcwTLAcpDQlqSmjEmfs63xJnSiUNIGvLcDLUHCWK4XowpS/7c7tUsUH6uT/ct6bMUTdXKfI8967FYj6mg==",
  1237. "cpu": [
  1238. "ppc64"
  1239. ],
  1240. "license": "MIT",
  1241. "optional": true,
  1242. "os": [
  1243. "linux"
  1244. ],
  1245. "engines": {
  1246. "node": "^20.19.0 || >=22.12.0"
  1247. }
  1248. },
  1249. "node_modules/@rolldown/binding-linux-s390x-gnu": {
  1250. "version": "1.0.0",
  1251. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.0.tgz",
  1252. "integrity": "sha512-0wjCFhLrihtAubnT9iA0N++0pSV0z5Hg7tNGdNJ4RFaINceHadoF+kiFGyY1qSSNVIAZtLotG8Ju1bgDPkjnFA==",
  1253. "cpu": [
  1254. "s390x"
  1255. ],
  1256. "license": "MIT",
  1257. "optional": true,
  1258. "os": [
  1259. "linux"
  1260. ],
  1261. "engines": {
  1262. "node": "^20.19.0 || >=22.12.0"
  1263. }
  1264. },
  1265. "node_modules/@rolldown/binding-linux-x64-gnu": {
  1266. "version": "1.0.0",
  1267. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.0.tgz",
  1268. "integrity": "sha512-Dfn7iak9BcMMePxcoJfpSbWqnEyrp/dRF63/8qW/eHBdOZov6x5aShLLEYGYdIeSJ6vMLK/XCVB+lGIxm41bQA==",
  1269. "cpu": [
  1270. "x64"
  1271. ],
  1272. "license": "MIT",
  1273. "optional": true,
  1274. "os": [
  1275. "linux"
  1276. ],
  1277. "engines": {
  1278. "node": "^20.19.0 || >=22.12.0"
  1279. }
  1280. },
  1281. "node_modules/@rolldown/binding-linux-x64-musl": {
  1282. "version": "1.0.0",
  1283. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.0.tgz",
  1284. "integrity": "sha512-5/utzzDmD/pD/bmuaUcbTf/sZYy0aztwIVlfpoW1fTjCZ0BaPOMVWGZL1zvgxyi7ZIVYWlxKONHmSbHuiOh8Jw==",
  1285. "cpu": [
  1286. "x64"
  1287. ],
  1288. "license": "MIT",
  1289. "optional": true,
  1290. "os": [
  1291. "linux"
  1292. ],
  1293. "engines": {
  1294. "node": "^20.19.0 || >=22.12.0"
  1295. }
  1296. },
  1297. "node_modules/@rolldown/binding-openharmony-arm64": {
  1298. "version": "1.0.0",
  1299. "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.0.tgz",
  1300. "integrity": "sha512-ouJs8VcUomfLfpbUECqFMRqdV4x6aeAK3MA4m6vTrJJjKyWTV5KnxZx7Jd9G+GlDaQQxubcba00x16OyJ1meig==",
  1301. "cpu": [
  1302. "arm64"
  1303. ],
  1304. "license": "MIT",
  1305. "optional": true,
  1306. "os": [
  1307. "openharmony"
  1308. ],
  1309. "engines": {
  1310. "node": "^20.19.0 || >=22.12.0"
  1311. }
  1312. },
  1313. "node_modules/@rolldown/binding-wasm32-wasi": {
  1314. "version": "1.0.0",
  1315. "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.0.tgz",
  1316. "integrity": "sha512-E+oHKGiDA+lsKMmFtffDDw91EryDT7uJocrIuCHqhm6bCTM6xFK+3gaCkYOHfPwQr0cCNarSM2xaELoQDz9jJg==",
  1317. "cpu": [
  1318. "wasm32"
  1319. ],
  1320. "license": "MIT",
  1321. "optional": true,
  1322. "dependencies": {
  1323. "@emnapi/core": "1.10.0",
  1324. "@emnapi/runtime": "1.10.0",
  1325. "@napi-rs/wasm-runtime": "^1.1.4"
  1326. },
  1327. "engines": {
  1328. "node": "^20.19.0 || >=22.12.0"
  1329. }
  1330. },
  1331. "node_modules/@rolldown/binding-win32-arm64-msvc": {
  1332. "version": "1.0.0",
  1333. "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.0.tgz",
  1334. "integrity": "sha512-yYK02n8Rngo+gbm1y6G0+7jk1sJ/2Wt7K0me0Y7k/ErBpyf+LJ2gFpqWVTcRV1rUepBlQRmpgWkTQCiiwrK0Ow==",
  1335. "cpu": [
  1336. "arm64"
  1337. ],
  1338. "license": "MIT",
  1339. "optional": true,
  1340. "os": [
  1341. "win32"
  1342. ],
  1343. "engines": {
  1344. "node": "^20.19.0 || >=22.12.0"
  1345. }
  1346. },
  1347. "node_modules/@rolldown/binding-win32-x64-msvc": {
  1348. "version": "1.0.0",
  1349. "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.0.tgz",
  1350. "integrity": "sha512-14bpChMahXRRXiTwahSl+zzHPW6qQTXtkMuJBFlbo+pqSAews2d4BdCSHfrJ/MBsCZtpmTafsY+1QhBzitcmdg==",
  1351. "cpu": [
  1352. "x64"
  1353. ],
  1354. "license": "MIT",
  1355. "optional": true,
  1356. "os": [
  1357. "win32"
  1358. ],
  1359. "engines": {
  1360. "node": "^20.19.0 || >=22.12.0"
  1361. }
  1362. },
  1363. "node_modules/@rolldown/pluginutils": {
  1364. "version": "1.0.0-rc.13",
  1365. "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.13.tgz",
  1366. "integrity": "sha512-3ngTAv6F/Py35BsYbeeLeecvhMKdsKm4AoOETVhAA+Qc8nrA2I0kF7oa93mE9qnIurngOSpMnQ0x2nQY2FPviA==",
  1367. "license": "MIT"
  1368. },
  1369. "node_modules/@rtsao/scc": {
  1370. "version": "1.1.0",
  1371. "resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz",
  1372. "integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==",
  1373. "license": "MIT"
  1374. },
  1375. "node_modules/@sindresorhus/merge-streams": {
  1376. "version": "4.0.0",
  1377. "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-4.0.0.tgz",
  1378. "integrity": "sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==",
  1379. "dev": true,
  1380. "license": "MIT",
  1381. "engines": {
  1382. "node": ">=18"
  1383. },
  1384. "funding": {
  1385. "url": "https://github.com/sponsors/sindresorhus"
  1386. }
  1387. },
  1388. "node_modules/@tybys/wasm-util": {
  1389. "version": "0.10.2",
  1390. "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.2.tgz",
  1391. "integrity": "sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==",
  1392. "license": "MIT",
  1393. "optional": true,
  1394. "dependencies": {
  1395. "tslib": "^2.4.0"
  1396. }
  1397. },
  1398. "node_modules/@types/json5": {
  1399. "version": "0.0.29",
  1400. "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz",
  1401. "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==",
  1402. "license": "MIT"
  1403. },
  1404. "node_modules/@ungap/structured-clone": {
  1405. "version": "1.3.0",
  1406. "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz",
  1407. "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==",
  1408. "license": "ISC"
  1409. },
  1410. "node_modules/@vitejs/plugin-vue": {
  1411. "version": "6.0.6",
  1412. "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-6.0.6.tgz",
  1413. "integrity": "sha512-u9HHgfrq3AjXlysn0eINFnWQOJQLO9WN6VprZ8FXl7A2bYisv3Hui9Ij+7QZ41F/WYWarHjwBbXtD7dKg3uxbg==",
  1414. "license": "MIT",
  1415. "dependencies": {
  1416. "@rolldown/pluginutils": "1.0.0-rc.13"
  1417. },
  1418. "engines": {
  1419. "node": "^20.19.0 || >=22.12.0"
  1420. },
  1421. "peerDependencies": {
  1422. "vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
  1423. "vue": "^3.2.25"
  1424. }
  1425. },
  1426. "node_modules/@vue-macros/common": {
  1427. "version": "3.1.2",
  1428. "resolved": "https://registry.npmjs.org/@vue-macros/common/-/common-3.1.2.tgz",
  1429. "integrity": "sha512-h9t4ArDdniO9ekYHAD95t9AZcAbb19lEGK+26iAjUODOIJKmObDNBSe4+6ELQAA3vtYiFPPBtHh7+cQCKi3Dng==",
  1430. "license": "MIT",
  1431. "dependencies": {
  1432. "@vue/compiler-sfc": "^3.5.22",
  1433. "ast-kit": "^2.1.2",
  1434. "local-pkg": "^1.1.2",
  1435. "magic-string-ast": "^1.0.2",
  1436. "unplugin-utils": "^0.3.0"
  1437. },
  1438. "engines": {
  1439. "node": ">=20.19.0"
  1440. },
  1441. "funding": {
  1442. "url": "https://github.com/sponsors/vue-macros"
  1443. },
  1444. "peerDependencies": {
  1445. "vue": "^2.7.0 || ^3.2.25"
  1446. },
  1447. "peerDependenciesMeta": {
  1448. "vue": {
  1449. "optional": true
  1450. }
  1451. }
  1452. },
  1453. "node_modules/@vue/compiler-core": {
  1454. "version": "3.5.34",
  1455. "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.34.tgz",
  1456. "integrity": "sha512-s9cLyK5mLcvZ4Agva5QgRsQyLKvts9WbU9DB6NqiZkkGEdwmcEiylj5Jbwkp680drF/NNCV8OlAJSe+yMLxaJw==",
  1457. "license": "MIT",
  1458. "dependencies": {
  1459. "@babel/parser": "^7.29.3",
  1460. "@vue/shared": "3.5.34",
  1461. "entities": "^7.0.1",
  1462. "estree-walker": "^2.0.2",
  1463. "source-map-js": "^1.2.1"
  1464. }
  1465. },
  1466. "node_modules/@vue/compiler-dom": {
  1467. "version": "3.5.34",
  1468. "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.34.tgz",
  1469. "integrity": "sha512-EbF/T++k0e2MMZlJsBhzK8Sgwt0HcIPOhzn1CTB/lv6sQcyk+OWf8YeiLxZp3ro7MbbLcAfAJ6sEvjFWuNgUCw==",
  1470. "license": "MIT",
  1471. "dependencies": {
  1472. "@vue/compiler-core": "3.5.34",
  1473. "@vue/shared": "3.5.34"
  1474. }
  1475. },
  1476. "node_modules/@vue/compiler-sfc": {
  1477. "version": "3.5.34",
  1478. "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.34.tgz",
  1479. "integrity": "sha512-D/ihr6uZeIt6r+pVZf46RWT1fAsLFMbUP7k8G1VkiiWexriED9GrX3echHd4Abbt17zjlfiFJ8z7a3BxZOPNjg==",
  1480. "license": "MIT",
  1481. "dependencies": {
  1482. "@babel/parser": "^7.29.3",
  1483. "@vue/compiler-core": "3.5.34",
  1484. "@vue/compiler-dom": "3.5.34",
  1485. "@vue/compiler-ssr": "3.5.34",
  1486. "@vue/shared": "3.5.34",
  1487. "estree-walker": "^2.0.2",
  1488. "magic-string": "^0.30.21",
  1489. "postcss": "^8.5.14",
  1490. "source-map-js": "^1.2.1"
  1491. }
  1492. },
  1493. "node_modules/@vue/compiler-ssr": {
  1494. "version": "3.5.34",
  1495. "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.34.tgz",
  1496. "integrity": "sha512-cDtTHKibkThKGHH1SP+WdccquNRYQDFH6rRjQCqT9G2ltFAfoR5pUftpab/z+aM5mW9HLLVQW7hfKKQe/1GBeQ==",
  1497. "license": "MIT",
  1498. "dependencies": {
  1499. "@vue/compiler-dom": "3.5.34",
  1500. "@vue/shared": "3.5.34"
  1501. }
  1502. },
  1503. "node_modules/@vue/devtools-api": {
  1504. "version": "6.6.4",
  1505. "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.6.4.tgz",
  1506. "integrity": "sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==",
  1507. "license": "MIT"
  1508. },
  1509. "node_modules/@vue/devtools-kit": {
  1510. "version": "8.0.6",
  1511. "resolved": "https://registry.npmjs.org/@vue/devtools-kit/-/devtools-kit-8.0.6.tgz",
  1512. "integrity": "sha512-9zXZPTJW72OteDXeSa5RVML3zWDCRcO5t77aJqSs228mdopYj5AiTpihozbsfFJ0IodfNs7pSgOGO3qfCuxDtw==",
  1513. "license": "MIT",
  1514. "dependencies": {
  1515. "@vue/devtools-shared": "^8.0.6",
  1516. "birpc": "^2.6.1",
  1517. "hookable": "^5.5.3",
  1518. "mitt": "^3.0.1",
  1519. "perfect-debounce": "^2.0.0",
  1520. "speakingurl": "^14.0.1",
  1521. "superjson": "^2.2.2"
  1522. }
  1523. },
  1524. "node_modules/@vue/devtools-shared": {
  1525. "version": "8.0.6",
  1526. "resolved": "https://registry.npmjs.org/@vue/devtools-shared/-/devtools-shared-8.0.6.tgz",
  1527. "integrity": "sha512-Pp1JylTqlgMJvxW6MGyfTF8vGvlBSCAvMFaDCYa82Mgw7TT5eE5kkHgDvmOGHWeJE4zIDfCpCxHapsK2LtIAJg==",
  1528. "license": "MIT",
  1529. "dependencies": {
  1530. "rfdc": "^1.4.1"
  1531. }
  1532. },
  1533. "node_modules/@vue/reactivity": {
  1534. "version": "3.5.34",
  1535. "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.34.tgz",
  1536. "integrity": "sha512-y9XDjCEuBp+98k+UL5dbYkh57AHU4o6cxZedOPXw3bmrZZYLQsVHguGurq7hVrPCSrQtrnz1f9dssyFr+dMXfQ==",
  1537. "license": "MIT",
  1538. "dependencies": {
  1539. "@vue/shared": "3.5.34"
  1540. }
  1541. },
  1542. "node_modules/@vue/runtime-core": {
  1543. "version": "3.5.34",
  1544. "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.34.tgz",
  1545. "integrity": "sha512-mKeBYvu8tcMSLhypAHBmriUFfWXKTCF/23Z4jiCoYK3UtWepkliViNLuR90V9XOyD62mUxs9p1jsrpK3CCGIzw==",
  1546. "license": "MIT",
  1547. "dependencies": {
  1548. "@vue/reactivity": "3.5.34",
  1549. "@vue/shared": "3.5.34"
  1550. }
  1551. },
  1552. "node_modules/@vue/runtime-dom": {
  1553. "version": "3.5.34",
  1554. "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.34.tgz",
  1555. "integrity": "sha512-e8kZzERmCwUnBRVsgSQlAfrfU2rGoy0FFKPBXSlfEjc/O3KfA7QP0t1/2ZylrbchjmIKB4dPTd07A6WPr0eOrg==",
  1556. "license": "MIT",
  1557. "dependencies": {
  1558. "@vue/reactivity": "3.5.34",
  1559. "@vue/runtime-core": "3.5.34",
  1560. "@vue/shared": "3.5.34",
  1561. "csstype": "^3.2.3"
  1562. }
  1563. },
  1564. "node_modules/@vue/server-renderer": {
  1565. "version": "3.5.34",
  1566. "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.34.tgz",
  1567. "integrity": "sha512-nHxmJoTrKsmrkbILRhkC9gY1G3moZbJTqCzDd7DOOzG5KH9oeJ0Unqrff5f9v0pW//jES05ZkJcNtfE8JjOIew==",
  1568. "license": "MIT",
  1569. "dependencies": {
  1570. "@vue/compiler-ssr": "3.5.34",
  1571. "@vue/shared": "3.5.34"
  1572. },
  1573. "peerDependencies": {
  1574. "vue": "3.5.34"
  1575. }
  1576. },
  1577. "node_modules/@vue/shared": {
  1578. "version": "3.5.34",
  1579. "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.34.tgz",
  1580. "integrity": "sha512-24uqU4OIiX29ryC3MeWid/Xf2fa2EFRUVLb77nRhk+UrTVrh/XiGtFAFmJBAtBRbjwNdsPRP+jj/OL27Eg1NDA==",
  1581. "license": "MIT"
  1582. },
  1583. "node_modules/@xterm/addon-fit": {
  1584. "version": "0.11.0",
  1585. "resolved": "https://registry.npmjs.org/@xterm/addon-fit/-/addon-fit-0.11.0.tgz",
  1586. "integrity": "sha512-jYcgT6xtVYhnhgxh3QgYDnnNMYTcf8ElbxxFzX0IZo+vabQqSPAjC3c1wJrKB5E19VwQei89QCiZZP86DCPF7g==",
  1587. "license": "MIT"
  1588. },
  1589. "node_modules/@xterm/addon-web-links": {
  1590. "version": "0.12.0",
  1591. "resolved": "https://registry.npmjs.org/@xterm/addon-web-links/-/addon-web-links-0.12.0.tgz",
  1592. "integrity": "sha512-4Smom3RPyVp7ZMYOYDoC/9eGJJJqYhnPLGGqJ6wOBfB8VxPViJNSKdgRYb8NpaM6YSelEKbA2SStD7lGyqaobw==",
  1593. "license": "MIT"
  1594. },
  1595. "node_modules/@xterm/xterm": {
  1596. "version": "6.0.0",
  1597. "resolved": "https://registry.npmjs.org/@xterm/xterm/-/xterm-6.0.0.tgz",
  1598. "integrity": "sha512-TQwDdQGtwwDt+2cgKDLn0IRaSxYu1tSUjgKarSDkUM0ZNiSRXFpjxEsvc/Zgc5kq5omJ+V0a8/kIM2WD3sMOYg==",
  1599. "license": "MIT",
  1600. "workspaces": [
  1601. "addons/*"
  1602. ]
  1603. },
  1604. "node_modules/acorn": {
  1605. "version": "8.16.0",
  1606. "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz",
  1607. "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==",
  1608. "license": "MIT",
  1609. "bin": {
  1610. "acorn": "bin/acorn"
  1611. },
  1612. "engines": {
  1613. "node": ">=0.4.0"
  1614. }
  1615. },
  1616. "node_modules/acorn-jsx": {
  1617. "version": "5.3.2",
  1618. "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
  1619. "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
  1620. "license": "MIT",
  1621. "peerDependencies": {
  1622. "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
  1623. }
  1624. },
  1625. "node_modules/ajv": {
  1626. "version": "6.15.0",
  1627. "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.15.0.tgz",
  1628. "integrity": "sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==",
  1629. "license": "MIT",
  1630. "dependencies": {
  1631. "fast-deep-equal": "^3.1.1",
  1632. "fast-json-stable-stringify": "^2.0.0",
  1633. "json-schema-traverse": "^0.4.1",
  1634. "uri-js": "^4.2.2"
  1635. },
  1636. "funding": {
  1637. "type": "github",
  1638. "url": "https://github.com/sponsors/epoberezkin"
  1639. }
  1640. },
  1641. "node_modules/ansi-regex": {
  1642. "version": "5.0.1",
  1643. "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
  1644. "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
  1645. "engines": {
  1646. "node": ">=8"
  1647. }
  1648. },
  1649. "node_modules/ansi-styles": {
  1650. "version": "4.3.0",
  1651. "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
  1652. "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
  1653. "dependencies": {
  1654. "color-convert": "^2.0.1"
  1655. },
  1656. "engines": {
  1657. "node": ">=8"
  1658. },
  1659. "funding": {
  1660. "url": "https://github.com/chalk/ansi-styles?sponsor=1"
  1661. }
  1662. },
  1663. "node_modules/argparse": {
  1664. "version": "2.0.1",
  1665. "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
  1666. "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
  1667. "license": "Python-2.0"
  1668. },
  1669. "node_modules/array-buffer-byte-length": {
  1670. "version": "1.0.2",
  1671. "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz",
  1672. "integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==",
  1673. "license": "MIT",
  1674. "dependencies": {
  1675. "call-bound": "^1.0.3",
  1676. "is-array-buffer": "^3.0.5"
  1677. },
  1678. "engines": {
  1679. "node": ">= 0.4"
  1680. },
  1681. "funding": {
  1682. "url": "https://github.com/sponsors/ljharb"
  1683. }
  1684. },
  1685. "node_modules/array-includes": {
  1686. "version": "3.1.9",
  1687. "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.9.tgz",
  1688. "integrity": "sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==",
  1689. "license": "MIT",
  1690. "dependencies": {
  1691. "call-bind": "^1.0.8",
  1692. "call-bound": "^1.0.4",
  1693. "define-properties": "^1.2.1",
  1694. "es-abstract": "^1.24.0",
  1695. "es-object-atoms": "^1.1.1",
  1696. "get-intrinsic": "^1.3.0",
  1697. "is-string": "^1.1.1",
  1698. "math-intrinsics": "^1.1.0"
  1699. },
  1700. "engines": {
  1701. "node": ">= 0.4"
  1702. },
  1703. "funding": {
  1704. "url": "https://github.com/sponsors/ljharb"
  1705. }
  1706. },
  1707. "node_modules/array.prototype.findlast": {
  1708. "version": "1.2.5",
  1709. "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz",
  1710. "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==",
  1711. "license": "MIT",
  1712. "dependencies": {
  1713. "call-bind": "^1.0.7",
  1714. "define-properties": "^1.2.1",
  1715. "es-abstract": "^1.23.2",
  1716. "es-errors": "^1.3.0",
  1717. "es-object-atoms": "^1.0.0",
  1718. "es-shim-unscopables": "^1.0.2"
  1719. },
  1720. "engines": {
  1721. "node": ">= 0.4"
  1722. },
  1723. "funding": {
  1724. "url": "https://github.com/sponsors/ljharb"
  1725. }
  1726. },
  1727. "node_modules/array.prototype.findlastindex": {
  1728. "version": "1.2.6",
  1729. "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.6.tgz",
  1730. "integrity": "sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==",
  1731. "license": "MIT",
  1732. "dependencies": {
  1733. "call-bind": "^1.0.8",
  1734. "call-bound": "^1.0.4",
  1735. "define-properties": "^1.2.1",
  1736. "es-abstract": "^1.23.9",
  1737. "es-errors": "^1.3.0",
  1738. "es-object-atoms": "^1.1.1",
  1739. "es-shim-unscopables": "^1.1.0"
  1740. },
  1741. "engines": {
  1742. "node": ">= 0.4"
  1743. },
  1744. "funding": {
  1745. "url": "https://github.com/sponsors/ljharb"
  1746. }
  1747. },
  1748. "node_modules/array.prototype.flat": {
  1749. "version": "1.3.3",
  1750. "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz",
  1751. "integrity": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==",
  1752. "license": "MIT",
  1753. "dependencies": {
  1754. "call-bind": "^1.0.8",
  1755. "define-properties": "^1.2.1",
  1756. "es-abstract": "^1.23.5",
  1757. "es-shim-unscopables": "^1.0.2"
  1758. },
  1759. "engines": {
  1760. "node": ">= 0.4"
  1761. },
  1762. "funding": {
  1763. "url": "https://github.com/sponsors/ljharb"
  1764. }
  1765. },
  1766. "node_modules/array.prototype.flatmap": {
  1767. "version": "1.3.3",
  1768. "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz",
  1769. "integrity": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==",
  1770. "license": "MIT",
  1771. "dependencies": {
  1772. "call-bind": "^1.0.8",
  1773. "define-properties": "^1.2.1",
  1774. "es-abstract": "^1.23.5",
  1775. "es-shim-unscopables": "^1.0.2"
  1776. },
  1777. "engines": {
  1778. "node": ">= 0.4"
  1779. },
  1780. "funding": {
  1781. "url": "https://github.com/sponsors/ljharb"
  1782. }
  1783. },
  1784. "node_modules/array.prototype.tosorted": {
  1785. "version": "1.1.4",
  1786. "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz",
  1787. "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==",
  1788. "license": "MIT",
  1789. "dependencies": {
  1790. "call-bind": "^1.0.7",
  1791. "define-properties": "^1.2.1",
  1792. "es-abstract": "^1.23.3",
  1793. "es-errors": "^1.3.0",
  1794. "es-shim-unscopables": "^1.0.2"
  1795. },
  1796. "engines": {
  1797. "node": ">= 0.4"
  1798. }
  1799. },
  1800. "node_modules/arraybuffer.prototype.slice": {
  1801. "version": "1.0.4",
  1802. "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz",
  1803. "integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==",
  1804. "license": "MIT",
  1805. "dependencies": {
  1806. "array-buffer-byte-length": "^1.0.1",
  1807. "call-bind": "^1.0.8",
  1808. "define-properties": "^1.2.1",
  1809. "es-abstract": "^1.23.5",
  1810. "es-errors": "^1.3.0",
  1811. "get-intrinsic": "^1.2.6",
  1812. "is-array-buffer": "^3.0.4"
  1813. },
  1814. "engines": {
  1815. "node": ">= 0.4"
  1816. },
  1817. "funding": {
  1818. "url": "https://github.com/sponsors/ljharb"
  1819. }
  1820. },
  1821. "node_modules/ast-kit": {
  1822. "version": "2.2.0",
  1823. "resolved": "https://registry.npmjs.org/ast-kit/-/ast-kit-2.2.0.tgz",
  1824. "integrity": "sha512-m1Q/RaVOnTp9JxPX+F+Zn7IcLYMzM8kZofDImfsKZd8MbR+ikdOzTeztStWqfrqIxZnYWryyI9ePm3NGjnZgGw==",
  1825. "license": "MIT",
  1826. "dependencies": {
  1827. "@babel/parser": "^7.28.5",
  1828. "pathe": "^2.0.3"
  1829. },
  1830. "engines": {
  1831. "node": ">=20.19.0"
  1832. },
  1833. "funding": {
  1834. "url": "https://github.com/sponsors/sxzz"
  1835. }
  1836. },
  1837. "node_modules/ast-walker-scope": {
  1838. "version": "0.8.3",
  1839. "resolved": "https://registry.npmjs.org/ast-walker-scope/-/ast-walker-scope-0.8.3.tgz",
  1840. "integrity": "sha512-cbdCP0PGOBq0ASG+sjnKIoYkWMKhhz+F/h9pRexUdX2Hd38+WOlBkRKlqkGOSm0YQpcFMQBJeK4WspUAkwsEdg==",
  1841. "license": "MIT",
  1842. "dependencies": {
  1843. "@babel/parser": "^7.28.4",
  1844. "ast-kit": "^2.1.3"
  1845. },
  1846. "engines": {
  1847. "node": ">=20.19.0"
  1848. },
  1849. "funding": {
  1850. "url": "https://github.com/sponsors/sxzz"
  1851. }
  1852. },
  1853. "node_modules/astral-regex": {
  1854. "version": "2.0.0",
  1855. "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz",
  1856. "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==",
  1857. "dev": true,
  1858. "engines": {
  1859. "node": ">=8"
  1860. }
  1861. },
  1862. "node_modules/async-function": {
  1863. "version": "1.0.0",
  1864. "resolved": "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz",
  1865. "integrity": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==",
  1866. "license": "MIT",
  1867. "engines": {
  1868. "node": ">= 0.4"
  1869. }
  1870. },
  1871. "node_modules/available-typed-arrays": {
  1872. "version": "1.0.7",
  1873. "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz",
  1874. "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==",
  1875. "license": "MIT",
  1876. "dependencies": {
  1877. "possible-typed-array-names": "^1.0.0"
  1878. },
  1879. "engines": {
  1880. "node": ">= 0.4"
  1881. },
  1882. "funding": {
  1883. "url": "https://github.com/sponsors/ljharb"
  1884. }
  1885. },
  1886. "node_modules/balanced-match": {
  1887. "version": "1.0.2",
  1888. "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
  1889. "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
  1890. "license": "MIT"
  1891. },
  1892. "node_modules/birpc": {
  1893. "version": "2.9.0",
  1894. "resolved": "https://registry.npmjs.org/birpc/-/birpc-2.9.0.tgz",
  1895. "integrity": "sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==",
  1896. "license": "MIT",
  1897. "funding": {
  1898. "url": "https://github.com/sponsors/antfu"
  1899. }
  1900. },
  1901. "node_modules/brace-expansion": {
  1902. "version": "1.1.14",
  1903. "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.14.tgz",
  1904. "integrity": "sha512-MWPGfDxnyzKU7rNOW9SP/c50vi3xrmrua/+6hfPbCS2ABNWfx24vPidzvC7krjU/RTo235sV776ymlsMtGKj8g==",
  1905. "license": "MIT",
  1906. "dependencies": {
  1907. "balanced-match": "^1.0.0",
  1908. "concat-map": "0.0.1"
  1909. }
  1910. },
  1911. "node_modules/braces": {
  1912. "version": "3.0.3",
  1913. "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
  1914. "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
  1915. "dev": true,
  1916. "license": "MIT",
  1917. "dependencies": {
  1918. "fill-range": "^7.1.1"
  1919. },
  1920. "engines": {
  1921. "node": ">=8"
  1922. }
  1923. },
  1924. "node_modules/builtins": {
  1925. "version": "5.1.0",
  1926. "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.1.0.tgz",
  1927. "integrity": "sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==",
  1928. "license": "MIT",
  1929. "dependencies": {
  1930. "semver": "^7.0.0"
  1931. }
  1932. },
  1933. "node_modules/builtins/node_modules/semver": {
  1934. "version": "7.7.3",
  1935. "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz",
  1936. "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==",
  1937. "license": "ISC",
  1938. "bin": {
  1939. "semver": "bin/semver.js"
  1940. },
  1941. "engines": {
  1942. "node": ">=10"
  1943. }
  1944. },
  1945. "node_modules/cacheable": {
  1946. "version": "2.3.2",
  1947. "resolved": "https://registry.npmjs.org/cacheable/-/cacheable-2.3.2.tgz",
  1948. "integrity": "sha512-w+ZuRNmex9c1TR9RcsxbfTKCjSL0rh1WA5SABbrWprIHeNBdmyQLSYonlDy9gpD+63XT8DgZ/wNh1Smvc9WnJA==",
  1949. "dev": true,
  1950. "license": "MIT",
  1951. "dependencies": {
  1952. "@cacheable/memory": "^2.0.7",
  1953. "@cacheable/utils": "^2.3.3",
  1954. "hookified": "^1.15.0",
  1955. "keyv": "^5.5.5",
  1956. "qified": "^0.6.0"
  1957. }
  1958. },
  1959. "node_modules/cacheable/node_modules/keyv": {
  1960. "version": "5.6.0",
  1961. "resolved": "https://registry.npmjs.org/keyv/-/keyv-5.6.0.tgz",
  1962. "integrity": "sha512-CYDD3SOtsHtyXeEORYRx2qBtpDJFjRTGXUtmNEMGyzYOKj1TE3tycdlho7kA1Ufx9OYWZzg52QFBGALTirzDSw==",
  1963. "dev": true,
  1964. "license": "MIT",
  1965. "dependencies": {
  1966. "@keyv/serialize": "^1.1.1"
  1967. }
  1968. },
  1969. "node_modules/call-bind": {
  1970. "version": "1.0.8",
  1971. "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz",
  1972. "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==",
  1973. "license": "MIT",
  1974. "dependencies": {
  1975. "call-bind-apply-helpers": "^1.0.0",
  1976. "es-define-property": "^1.0.0",
  1977. "get-intrinsic": "^1.2.4",
  1978. "set-function-length": "^1.2.2"
  1979. },
  1980. "engines": {
  1981. "node": ">= 0.4"
  1982. },
  1983. "funding": {
  1984. "url": "https://github.com/sponsors/ljharb"
  1985. }
  1986. },
  1987. "node_modules/call-bind-apply-helpers": {
  1988. "version": "1.0.2",
  1989. "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
  1990. "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
  1991. "license": "MIT",
  1992. "dependencies": {
  1993. "es-errors": "^1.3.0",
  1994. "function-bind": "^1.1.2"
  1995. },
  1996. "engines": {
  1997. "node": ">= 0.4"
  1998. }
  1999. },
  2000. "node_modules/call-bound": {
  2001. "version": "1.0.4",
  2002. "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
  2003. "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
  2004. "license": "MIT",
  2005. "dependencies": {
  2006. "call-bind-apply-helpers": "^1.0.2",
  2007. "get-intrinsic": "^1.3.0"
  2008. },
  2009. "engines": {
  2010. "node": ">= 0.4"
  2011. },
  2012. "funding": {
  2013. "url": "https://github.com/sponsors/ljharb"
  2014. }
  2015. },
  2016. "node_modules/callsites": {
  2017. "version": "3.1.0",
  2018. "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
  2019. "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
  2020. "engines": {
  2021. "node": ">=6"
  2022. }
  2023. },
  2024. "node_modules/chalk": {
  2025. "version": "4.1.2",
  2026. "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
  2027. "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
  2028. "license": "MIT",
  2029. "dependencies": {
  2030. "ansi-styles": "^4.1.0",
  2031. "supports-color": "^7.1.0"
  2032. },
  2033. "engines": {
  2034. "node": ">=10"
  2035. },
  2036. "funding": {
  2037. "url": "https://github.com/chalk/chalk?sponsor=1"
  2038. }
  2039. },
  2040. "node_modules/chokidar": {
  2041. "version": "5.0.0",
  2042. "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-5.0.0.tgz",
  2043. "integrity": "sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==",
  2044. "license": "MIT",
  2045. "dependencies": {
  2046. "readdirp": "^5.0.0"
  2047. },
  2048. "engines": {
  2049. "node": ">= 20.19.0"
  2050. },
  2051. "funding": {
  2052. "url": "https://paulmillr.com/funding/"
  2053. }
  2054. },
  2055. "node_modules/color-convert": {
  2056. "version": "2.0.1",
  2057. "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
  2058. "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
  2059. "dependencies": {
  2060. "color-name": "~1.1.4"
  2061. },
  2062. "engines": {
  2063. "node": ">=7.0.0"
  2064. }
  2065. },
  2066. "node_modules/color-name": {
  2067. "version": "1.1.4",
  2068. "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
  2069. "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
  2070. },
  2071. "node_modules/colord": {
  2072. "version": "2.9.3",
  2073. "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz",
  2074. "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==",
  2075. "dev": true
  2076. },
  2077. "node_modules/concat-map": {
  2078. "version": "0.0.1",
  2079. "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
  2080. "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
  2081. "license": "MIT"
  2082. },
  2083. "node_modules/confbox": {
  2084. "version": "0.2.2",
  2085. "resolved": "https://registry.npmjs.org/confbox/-/confbox-0.2.2.tgz",
  2086. "integrity": "sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==",
  2087. "license": "MIT"
  2088. },
  2089. "node_modules/copy-anything": {
  2090. "version": "4.0.5",
  2091. "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-4.0.5.tgz",
  2092. "integrity": "sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==",
  2093. "license": "MIT",
  2094. "dependencies": {
  2095. "is-what": "^5.2.0"
  2096. },
  2097. "engines": {
  2098. "node": ">=18"
  2099. },
  2100. "funding": {
  2101. "url": "https://github.com/sponsors/mesqueeb"
  2102. }
  2103. },
  2104. "node_modules/cosmiconfig": {
  2105. "version": "9.0.1",
  2106. "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.1.tgz",
  2107. "integrity": "sha512-hr4ihw+DBqcvrsEDioRO31Z17x71pUYoNe/4h6Z0wB72p7MU7/9gH8Q3s12NFhHPfYBBOV3qyfUxmr/Yn3shnQ==",
  2108. "dev": true,
  2109. "license": "MIT",
  2110. "dependencies": {
  2111. "env-paths": "^2.2.1",
  2112. "import-fresh": "^3.3.0",
  2113. "js-yaml": "^4.1.0",
  2114. "parse-json": "^5.2.0"
  2115. },
  2116. "engines": {
  2117. "node": ">=14"
  2118. },
  2119. "funding": {
  2120. "url": "https://github.com/sponsors/d-fischer"
  2121. },
  2122. "peerDependencies": {
  2123. "typescript": ">=4.9.5"
  2124. },
  2125. "peerDependenciesMeta": {
  2126. "typescript": {
  2127. "optional": true
  2128. }
  2129. }
  2130. },
  2131. "node_modules/cross-spawn": {
  2132. "version": "7.0.6",
  2133. "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
  2134. "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
  2135. "license": "MIT",
  2136. "dependencies": {
  2137. "path-key": "^3.1.0",
  2138. "shebang-command": "^2.0.0",
  2139. "which": "^2.0.1"
  2140. },
  2141. "engines": {
  2142. "node": ">= 8"
  2143. }
  2144. },
  2145. "node_modules/css-functions-list": {
  2146. "version": "3.3.3",
  2147. "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.3.3.tgz",
  2148. "integrity": "sha512-8HFEBPKhOpJPEPu70wJJetjKta86Gw9+CCyCnB3sui2qQfOvRyqBy4IKLKKAwdMpWb2lHXWk9Wb4Z6AmaUT1Pg==",
  2149. "dev": true,
  2150. "license": "MIT",
  2151. "engines": {
  2152. "node": ">=12"
  2153. }
  2154. },
  2155. "node_modules/css-tree": {
  2156. "version": "3.2.1",
  2157. "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.2.1.tgz",
  2158. "integrity": "sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==",
  2159. "dev": true,
  2160. "license": "MIT",
  2161. "dependencies": {
  2162. "mdn-data": "2.27.1",
  2163. "source-map-js": "^1.2.1"
  2164. },
  2165. "engines": {
  2166. "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
  2167. }
  2168. },
  2169. "node_modules/cssesc": {
  2170. "version": "3.0.0",
  2171. "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
  2172. "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
  2173. "dev": true,
  2174. "license": "MIT",
  2175. "bin": {
  2176. "cssesc": "bin/cssesc"
  2177. },
  2178. "engines": {
  2179. "node": ">=4"
  2180. }
  2181. },
  2182. "node_modules/csstype": {
  2183. "version": "3.2.3",
  2184. "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
  2185. "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
  2186. "license": "MIT"
  2187. },
  2188. "node_modules/data-view-buffer": {
  2189. "version": "1.0.2",
  2190. "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz",
  2191. "integrity": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==",
  2192. "license": "MIT",
  2193. "dependencies": {
  2194. "call-bound": "^1.0.3",
  2195. "es-errors": "^1.3.0",
  2196. "is-data-view": "^1.0.2"
  2197. },
  2198. "engines": {
  2199. "node": ">= 0.4"
  2200. },
  2201. "funding": {
  2202. "url": "https://github.com/sponsors/ljharb"
  2203. }
  2204. },
  2205. "node_modules/data-view-byte-length": {
  2206. "version": "1.0.2",
  2207. "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz",
  2208. "integrity": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==",
  2209. "license": "MIT",
  2210. "dependencies": {
  2211. "call-bound": "^1.0.3",
  2212. "es-errors": "^1.3.0",
  2213. "is-data-view": "^1.0.2"
  2214. },
  2215. "engines": {
  2216. "node": ">= 0.4"
  2217. },
  2218. "funding": {
  2219. "url": "https://github.com/sponsors/inspect-js"
  2220. }
  2221. },
  2222. "node_modules/data-view-byte-offset": {
  2223. "version": "1.0.1",
  2224. "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz",
  2225. "integrity": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==",
  2226. "license": "MIT",
  2227. "dependencies": {
  2228. "call-bound": "^1.0.2",
  2229. "es-errors": "^1.3.0",
  2230. "is-data-view": "^1.0.1"
  2231. },
  2232. "engines": {
  2233. "node": ">= 0.4"
  2234. },
  2235. "funding": {
  2236. "url": "https://github.com/sponsors/ljharb"
  2237. }
  2238. },
  2239. "node_modules/debug": {
  2240. "version": "4.4.3",
  2241. "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
  2242. "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
  2243. "license": "MIT",
  2244. "dependencies": {
  2245. "ms": "^2.1.3"
  2246. },
  2247. "engines": {
  2248. "node": ">=6.0"
  2249. },
  2250. "peerDependenciesMeta": {
  2251. "supports-color": {
  2252. "optional": true
  2253. }
  2254. }
  2255. },
  2256. "node_modules/deep-is": {
  2257. "version": "0.1.4",
  2258. "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
  2259. "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
  2260. "license": "MIT"
  2261. },
  2262. "node_modules/define-data-property": {
  2263. "version": "1.1.4",
  2264. "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz",
  2265. "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==",
  2266. "license": "MIT",
  2267. "dependencies": {
  2268. "es-define-property": "^1.0.0",
  2269. "es-errors": "^1.3.0",
  2270. "gopd": "^1.0.1"
  2271. },
  2272. "engines": {
  2273. "node": ">= 0.4"
  2274. },
  2275. "funding": {
  2276. "url": "https://github.com/sponsors/ljharb"
  2277. }
  2278. },
  2279. "node_modules/define-properties": {
  2280. "version": "1.2.1",
  2281. "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz",
  2282. "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==",
  2283. "license": "MIT",
  2284. "dependencies": {
  2285. "define-data-property": "^1.0.1",
  2286. "has-property-descriptors": "^1.0.0",
  2287. "object-keys": "^1.1.1"
  2288. },
  2289. "engines": {
  2290. "node": ">= 0.4"
  2291. },
  2292. "funding": {
  2293. "url": "https://github.com/sponsors/ljharb"
  2294. }
  2295. },
  2296. "node_modules/detect-libc": {
  2297. "version": "2.1.2",
  2298. "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
  2299. "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
  2300. "license": "Apache-2.0",
  2301. "engines": {
  2302. "node": ">=8"
  2303. }
  2304. },
  2305. "node_modules/doctrine": {
  2306. "version": "3.0.0",
  2307. "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
  2308. "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
  2309. "license": "Apache-2.0",
  2310. "dependencies": {
  2311. "esutils": "^2.0.2"
  2312. },
  2313. "engines": {
  2314. "node": ">=6.0.0"
  2315. }
  2316. },
  2317. "node_modules/dunder-proto": {
  2318. "version": "1.0.1",
  2319. "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
  2320. "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
  2321. "license": "MIT",
  2322. "dependencies": {
  2323. "call-bind-apply-helpers": "^1.0.1",
  2324. "es-errors": "^1.3.0",
  2325. "gopd": "^1.2.0"
  2326. },
  2327. "engines": {
  2328. "node": ">= 0.4"
  2329. }
  2330. },
  2331. "node_modules/emoji-regex": {
  2332. "version": "8.0.0",
  2333. "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
  2334. "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
  2335. "dev": true
  2336. },
  2337. "node_modules/entities": {
  2338. "version": "7.0.1",
  2339. "resolved": "https://registry.npmjs.org/entities/-/entities-7.0.1.tgz",
  2340. "integrity": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==",
  2341. "license": "BSD-2-Clause",
  2342. "engines": {
  2343. "node": ">=0.12"
  2344. },
  2345. "funding": {
  2346. "url": "https://github.com/fb55/entities?sponsor=1"
  2347. }
  2348. },
  2349. "node_modules/env-paths": {
  2350. "version": "2.2.1",
  2351. "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz",
  2352. "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==",
  2353. "dev": true,
  2354. "license": "MIT",
  2355. "engines": {
  2356. "node": ">=6"
  2357. }
  2358. },
  2359. "node_modules/error-ex": {
  2360. "version": "1.3.2",
  2361. "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
  2362. "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
  2363. "license": "MIT",
  2364. "dependencies": {
  2365. "is-arrayish": "^0.2.1"
  2366. }
  2367. },
  2368. "node_modules/es-abstract": {
  2369. "version": "1.24.0",
  2370. "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.0.tgz",
  2371. "integrity": "sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==",
  2372. "license": "MIT",
  2373. "dependencies": {
  2374. "array-buffer-byte-length": "^1.0.2",
  2375. "arraybuffer.prototype.slice": "^1.0.4",
  2376. "available-typed-arrays": "^1.0.7",
  2377. "call-bind": "^1.0.8",
  2378. "call-bound": "^1.0.4",
  2379. "data-view-buffer": "^1.0.2",
  2380. "data-view-byte-length": "^1.0.2",
  2381. "data-view-byte-offset": "^1.0.1",
  2382. "es-define-property": "^1.0.1",
  2383. "es-errors": "^1.3.0",
  2384. "es-object-atoms": "^1.1.1",
  2385. "es-set-tostringtag": "^2.1.0",
  2386. "es-to-primitive": "^1.3.0",
  2387. "function.prototype.name": "^1.1.8",
  2388. "get-intrinsic": "^1.3.0",
  2389. "get-proto": "^1.0.1",
  2390. "get-symbol-description": "^1.1.0",
  2391. "globalthis": "^1.0.4",
  2392. "gopd": "^1.2.0",
  2393. "has-property-descriptors": "^1.0.2",
  2394. "has-proto": "^1.2.0",
  2395. "has-symbols": "^1.1.0",
  2396. "hasown": "^2.0.2",
  2397. "internal-slot": "^1.1.0",
  2398. "is-array-buffer": "^3.0.5",
  2399. "is-callable": "^1.2.7",
  2400. "is-data-view": "^1.0.2",
  2401. "is-negative-zero": "^2.0.3",
  2402. "is-regex": "^1.2.1",
  2403. "is-set": "^2.0.3",
  2404. "is-shared-array-buffer": "^1.0.4",
  2405. "is-string": "^1.1.1",
  2406. "is-typed-array": "^1.1.15",
  2407. "is-weakref": "^1.1.1",
  2408. "math-intrinsics": "^1.1.0",
  2409. "object-inspect": "^1.13.4",
  2410. "object-keys": "^1.1.1",
  2411. "object.assign": "^4.1.7",
  2412. "own-keys": "^1.0.1",
  2413. "regexp.prototype.flags": "^1.5.4",
  2414. "safe-array-concat": "^1.1.3",
  2415. "safe-push-apply": "^1.0.0",
  2416. "safe-regex-test": "^1.1.0",
  2417. "set-proto": "^1.0.0",
  2418. "stop-iteration-iterator": "^1.1.0",
  2419. "string.prototype.trim": "^1.2.10",
  2420. "string.prototype.trimend": "^1.0.9",
  2421. "string.prototype.trimstart": "^1.0.8",
  2422. "typed-array-buffer": "^1.0.3",
  2423. "typed-array-byte-length": "^1.0.3",
  2424. "typed-array-byte-offset": "^1.0.4",
  2425. "typed-array-length": "^1.0.7",
  2426. "unbox-primitive": "^1.1.0",
  2427. "which-typed-array": "^1.1.19"
  2428. },
  2429. "engines": {
  2430. "node": ">= 0.4"
  2431. },
  2432. "funding": {
  2433. "url": "https://github.com/sponsors/ljharb"
  2434. }
  2435. },
  2436. "node_modules/es-define-property": {
  2437. "version": "1.0.1",
  2438. "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
  2439. "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
  2440. "license": "MIT",
  2441. "engines": {
  2442. "node": ">= 0.4"
  2443. }
  2444. },
  2445. "node_modules/es-errors": {
  2446. "version": "1.3.0",
  2447. "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
  2448. "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
  2449. "license": "MIT",
  2450. "engines": {
  2451. "node": ">= 0.4"
  2452. }
  2453. },
  2454. "node_modules/es-iterator-helpers": {
  2455. "version": "1.2.1",
  2456. "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.2.1.tgz",
  2457. "integrity": "sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==",
  2458. "license": "MIT",
  2459. "dependencies": {
  2460. "call-bind": "^1.0.8",
  2461. "call-bound": "^1.0.3",
  2462. "define-properties": "^1.2.1",
  2463. "es-abstract": "^1.23.6",
  2464. "es-errors": "^1.3.0",
  2465. "es-set-tostringtag": "^2.0.3",
  2466. "function-bind": "^1.1.2",
  2467. "get-intrinsic": "^1.2.6",
  2468. "globalthis": "^1.0.4",
  2469. "gopd": "^1.2.0",
  2470. "has-property-descriptors": "^1.0.2",
  2471. "has-proto": "^1.2.0",
  2472. "has-symbols": "^1.1.0",
  2473. "internal-slot": "^1.1.0",
  2474. "iterator.prototype": "^1.1.4",
  2475. "safe-array-concat": "^1.1.3"
  2476. },
  2477. "engines": {
  2478. "node": ">= 0.4"
  2479. }
  2480. },
  2481. "node_modules/es-object-atoms": {
  2482. "version": "1.1.1",
  2483. "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
  2484. "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
  2485. "license": "MIT",
  2486. "dependencies": {
  2487. "es-errors": "^1.3.0"
  2488. },
  2489. "engines": {
  2490. "node": ">= 0.4"
  2491. }
  2492. },
  2493. "node_modules/es-set-tostringtag": {
  2494. "version": "2.1.0",
  2495. "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
  2496. "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
  2497. "license": "MIT",
  2498. "dependencies": {
  2499. "es-errors": "^1.3.0",
  2500. "get-intrinsic": "^1.2.6",
  2501. "has-tostringtag": "^1.0.2",
  2502. "hasown": "^2.0.2"
  2503. },
  2504. "engines": {
  2505. "node": ">= 0.4"
  2506. }
  2507. },
  2508. "node_modules/es-shim-unscopables": {
  2509. "version": "1.1.0",
  2510. "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz",
  2511. "integrity": "sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==",
  2512. "license": "MIT",
  2513. "dependencies": {
  2514. "hasown": "^2.0.2"
  2515. },
  2516. "engines": {
  2517. "node": ">= 0.4"
  2518. }
  2519. },
  2520. "node_modules/es-to-primitive": {
  2521. "version": "1.3.0",
  2522. "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz",
  2523. "integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==",
  2524. "license": "MIT",
  2525. "dependencies": {
  2526. "is-callable": "^1.2.7",
  2527. "is-date-object": "^1.0.5",
  2528. "is-symbol": "^1.0.4"
  2529. },
  2530. "engines": {
  2531. "node": ">= 0.4"
  2532. },
  2533. "funding": {
  2534. "url": "https://github.com/sponsors/ljharb"
  2535. }
  2536. },
  2537. "node_modules/esbuild": {
  2538. "version": "0.27.2",
  2539. "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.2.tgz",
  2540. "integrity": "sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==",
  2541. "hasInstallScript": true,
  2542. "license": "MIT",
  2543. "optional": true,
  2544. "peer": true,
  2545. "bin": {
  2546. "esbuild": "bin/esbuild"
  2547. },
  2548. "engines": {
  2549. "node": ">=18"
  2550. },
  2551. "optionalDependencies": {
  2552. "@esbuild/aix-ppc64": "0.27.2",
  2553. "@esbuild/android-arm": "0.27.2",
  2554. "@esbuild/android-arm64": "0.27.2",
  2555. "@esbuild/android-x64": "0.27.2",
  2556. "@esbuild/darwin-arm64": "0.27.2",
  2557. "@esbuild/darwin-x64": "0.27.2",
  2558. "@esbuild/freebsd-arm64": "0.27.2",
  2559. "@esbuild/freebsd-x64": "0.27.2",
  2560. "@esbuild/linux-arm": "0.27.2",
  2561. "@esbuild/linux-arm64": "0.27.2",
  2562. "@esbuild/linux-ia32": "0.27.2",
  2563. "@esbuild/linux-loong64": "0.27.2",
  2564. "@esbuild/linux-mips64el": "0.27.2",
  2565. "@esbuild/linux-ppc64": "0.27.2",
  2566. "@esbuild/linux-riscv64": "0.27.2",
  2567. "@esbuild/linux-s390x": "0.27.2",
  2568. "@esbuild/linux-x64": "0.27.2",
  2569. "@esbuild/netbsd-arm64": "0.27.2",
  2570. "@esbuild/netbsd-x64": "0.27.2",
  2571. "@esbuild/openbsd-arm64": "0.27.2",
  2572. "@esbuild/openbsd-x64": "0.27.2",
  2573. "@esbuild/openharmony-arm64": "0.27.2",
  2574. "@esbuild/sunos-x64": "0.27.2",
  2575. "@esbuild/win32-arm64": "0.27.2",
  2576. "@esbuild/win32-ia32": "0.27.2",
  2577. "@esbuild/win32-x64": "0.27.2"
  2578. }
  2579. },
  2580. "node_modules/escape-string-regexp": {
  2581. "version": "4.0.0",
  2582. "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
  2583. "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
  2584. "license": "MIT",
  2585. "engines": {
  2586. "node": ">=10"
  2587. },
  2588. "funding": {
  2589. "url": "https://github.com/sponsors/sindresorhus"
  2590. }
  2591. },
  2592. "node_modules/eslint": {
  2593. "version": "8.57.1",
  2594. "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz",
  2595. "integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==",
  2596. "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.",
  2597. "license": "MIT",
  2598. "dependencies": {
  2599. "@eslint-community/eslint-utils": "^4.2.0",
  2600. "@eslint-community/regexpp": "^4.6.1",
  2601. "@eslint/eslintrc": "^2.1.4",
  2602. "@eslint/js": "8.57.1",
  2603. "@humanwhocodes/config-array": "^0.13.0",
  2604. "@humanwhocodes/module-importer": "^1.0.1",
  2605. "@nodelib/fs.walk": "^1.2.8",
  2606. "@ungap/structured-clone": "^1.2.0",
  2607. "ajv": "^6.12.4",
  2608. "chalk": "^4.0.0",
  2609. "cross-spawn": "^7.0.2",
  2610. "debug": "^4.3.2",
  2611. "doctrine": "^3.0.0",
  2612. "escape-string-regexp": "^4.0.0",
  2613. "eslint-scope": "^7.2.2",
  2614. "eslint-visitor-keys": "^3.4.3",
  2615. "espree": "^9.6.1",
  2616. "esquery": "^1.4.2",
  2617. "esutils": "^2.0.2",
  2618. "fast-deep-equal": "^3.1.3",
  2619. "file-entry-cache": "^6.0.1",
  2620. "find-up": "^5.0.0",
  2621. "glob-parent": "^6.0.2",
  2622. "globals": "^13.19.0",
  2623. "graphemer": "^1.4.0",
  2624. "ignore": "^5.2.0",
  2625. "imurmurhash": "^0.1.4",
  2626. "is-glob": "^4.0.0",
  2627. "is-path-inside": "^3.0.3",
  2628. "js-yaml": "^4.1.0",
  2629. "json-stable-stringify-without-jsonify": "^1.0.1",
  2630. "levn": "^0.4.1",
  2631. "lodash.merge": "^4.6.2",
  2632. "minimatch": "^3.1.2",
  2633. "natural-compare": "^1.4.0",
  2634. "optionator": "^0.9.3",
  2635. "strip-ansi": "^6.0.1",
  2636. "text-table": "^0.2.0"
  2637. },
  2638. "bin": {
  2639. "eslint": "bin/eslint.js"
  2640. },
  2641. "engines": {
  2642. "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
  2643. },
  2644. "funding": {
  2645. "url": "https://opencollective.com/eslint"
  2646. }
  2647. },
  2648. "node_modules/eslint-config-standard": {
  2649. "version": "17.1.0",
  2650. "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-17.1.0.tgz",
  2651. "integrity": "sha512-IwHwmaBNtDK4zDHQukFDW5u/aTb8+meQWZvNFWkiGmbWjD6bqyuSSBxxXKkCftCUzc1zwCH2m/baCNDLGmuO5Q==",
  2652. "funding": [
  2653. {
  2654. "type": "github",
  2655. "url": "https://github.com/sponsors/feross"
  2656. },
  2657. {
  2658. "type": "patreon",
  2659. "url": "https://www.patreon.com/feross"
  2660. },
  2661. {
  2662. "type": "consulting",
  2663. "url": "https://feross.org/support"
  2664. }
  2665. ],
  2666. "license": "MIT",
  2667. "engines": {
  2668. "node": ">=12.0.0"
  2669. },
  2670. "peerDependencies": {
  2671. "eslint": "^8.0.1",
  2672. "eslint-plugin-import": "^2.25.2",
  2673. "eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
  2674. "eslint-plugin-promise": "^6.0.0"
  2675. }
  2676. },
  2677. "node_modules/eslint-config-standard-jsx": {
  2678. "version": "11.0.0",
  2679. "resolved": "https://registry.npmjs.org/eslint-config-standard-jsx/-/eslint-config-standard-jsx-11.0.0.tgz",
  2680. "integrity": "sha512-+1EV/R0JxEK1L0NGolAr8Iktm3Rgotx3BKwgaX+eAuSX8D952LULKtjgZD3F+e6SvibONnhLwoTi9DPxN5LvvQ==",
  2681. "funding": [
  2682. {
  2683. "type": "github",
  2684. "url": "https://github.com/sponsors/feross"
  2685. },
  2686. {
  2687. "type": "patreon",
  2688. "url": "https://www.patreon.com/feross"
  2689. },
  2690. {
  2691. "type": "consulting",
  2692. "url": "https://feross.org/support"
  2693. }
  2694. ],
  2695. "license": "MIT",
  2696. "peerDependencies": {
  2697. "eslint": "^8.8.0",
  2698. "eslint-plugin-react": "^7.28.0"
  2699. }
  2700. },
  2701. "node_modules/eslint-import-resolver-node": {
  2702. "version": "0.3.9",
  2703. "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz",
  2704. "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==",
  2705. "license": "MIT",
  2706. "dependencies": {
  2707. "debug": "^3.2.7",
  2708. "is-core-module": "^2.13.0",
  2709. "resolve": "^1.22.4"
  2710. }
  2711. },
  2712. "node_modules/eslint-import-resolver-node/node_modules/debug": {
  2713. "version": "3.2.7",
  2714. "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
  2715. "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
  2716. "license": "MIT",
  2717. "dependencies": {
  2718. "ms": "^2.1.1"
  2719. }
  2720. },
  2721. "node_modules/eslint-module-utils": {
  2722. "version": "2.12.1",
  2723. "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.1.tgz",
  2724. "integrity": "sha512-L8jSWTze7K2mTg0vos/RuLRS5soomksDPoJLXIslC7c8Wmut3bx7CPpJijDcBZtxQ5lrbUdM+s0OlNbz0DCDNw==",
  2725. "license": "MIT",
  2726. "dependencies": {
  2727. "debug": "^3.2.7"
  2728. },
  2729. "engines": {
  2730. "node": ">=4"
  2731. },
  2732. "peerDependenciesMeta": {
  2733. "eslint": {
  2734. "optional": true
  2735. }
  2736. }
  2737. },
  2738. "node_modules/eslint-module-utils/node_modules/debug": {
  2739. "version": "3.2.7",
  2740. "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
  2741. "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
  2742. "license": "MIT",
  2743. "dependencies": {
  2744. "ms": "^2.1.1"
  2745. }
  2746. },
  2747. "node_modules/eslint-plugin-es": {
  2748. "version": "4.1.0",
  2749. "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-4.1.0.tgz",
  2750. "integrity": "sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==",
  2751. "license": "MIT",
  2752. "dependencies": {
  2753. "eslint-utils": "^2.0.0",
  2754. "regexpp": "^3.0.0"
  2755. },
  2756. "engines": {
  2757. "node": ">=8.10.0"
  2758. },
  2759. "funding": {
  2760. "url": "https://github.com/sponsors/mysticatea"
  2761. },
  2762. "peerDependencies": {
  2763. "eslint": ">=4.19.1"
  2764. }
  2765. },
  2766. "node_modules/eslint-plugin-es/node_modules/eslint-utils": {
  2767. "version": "2.1.0",
  2768. "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz",
  2769. "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==",
  2770. "license": "MIT",
  2771. "dependencies": {
  2772. "eslint-visitor-keys": "^1.1.0"
  2773. },
  2774. "engines": {
  2775. "node": ">=6"
  2776. },
  2777. "funding": {
  2778. "url": "https://github.com/sponsors/mysticatea"
  2779. }
  2780. },
  2781. "node_modules/eslint-plugin-es/node_modules/eslint-visitor-keys": {
  2782. "version": "1.3.0",
  2783. "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz",
  2784. "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==",
  2785. "license": "Apache-2.0",
  2786. "engines": {
  2787. "node": ">=4"
  2788. }
  2789. },
  2790. "node_modules/eslint-plugin-import": {
  2791. "version": "2.32.0",
  2792. "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.32.0.tgz",
  2793. "integrity": "sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==",
  2794. "license": "MIT",
  2795. "dependencies": {
  2796. "@rtsao/scc": "^1.1.0",
  2797. "array-includes": "^3.1.9",
  2798. "array.prototype.findlastindex": "^1.2.6",
  2799. "array.prototype.flat": "^1.3.3",
  2800. "array.prototype.flatmap": "^1.3.3",
  2801. "debug": "^3.2.7",
  2802. "doctrine": "^2.1.0",
  2803. "eslint-import-resolver-node": "^0.3.9",
  2804. "eslint-module-utils": "^2.12.1",
  2805. "hasown": "^2.0.2",
  2806. "is-core-module": "^2.16.1",
  2807. "is-glob": "^4.0.3",
  2808. "minimatch": "^3.1.2",
  2809. "object.fromentries": "^2.0.8",
  2810. "object.groupby": "^1.0.3",
  2811. "object.values": "^1.2.1",
  2812. "semver": "^6.3.1",
  2813. "string.prototype.trimend": "^1.0.9",
  2814. "tsconfig-paths": "^3.15.0"
  2815. },
  2816. "engines": {
  2817. "node": ">=4"
  2818. },
  2819. "peerDependencies": {
  2820. "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9"
  2821. }
  2822. },
  2823. "node_modules/eslint-plugin-import/node_modules/debug": {
  2824. "version": "3.2.7",
  2825. "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
  2826. "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
  2827. "license": "MIT",
  2828. "dependencies": {
  2829. "ms": "^2.1.1"
  2830. }
  2831. },
  2832. "node_modules/eslint-plugin-import/node_modules/doctrine": {
  2833. "version": "2.1.0",
  2834. "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
  2835. "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
  2836. "license": "Apache-2.0",
  2837. "dependencies": {
  2838. "esutils": "^2.0.2"
  2839. },
  2840. "engines": {
  2841. "node": ">=0.10.0"
  2842. }
  2843. },
  2844. "node_modules/eslint-plugin-n": {
  2845. "version": "15.7.0",
  2846. "resolved": "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-15.7.0.tgz",
  2847. "integrity": "sha512-jDex9s7D/Qial8AGVIHq4W7NswpUD5DPDL2RH8Lzd9EloWUuvUkHfv4FRLMipH5q2UtyurorBkPeNi1wVWNh3Q==",
  2848. "license": "MIT",
  2849. "dependencies": {
  2850. "builtins": "^5.0.1",
  2851. "eslint-plugin-es": "^4.1.0",
  2852. "eslint-utils": "^3.0.0",
  2853. "ignore": "^5.1.1",
  2854. "is-core-module": "^2.11.0",
  2855. "minimatch": "^3.1.2",
  2856. "resolve": "^1.22.1",
  2857. "semver": "^7.3.8"
  2858. },
  2859. "engines": {
  2860. "node": ">=12.22.0"
  2861. },
  2862. "funding": {
  2863. "url": "https://github.com/sponsors/mysticatea"
  2864. },
  2865. "peerDependencies": {
  2866. "eslint": ">=7.0.0"
  2867. }
  2868. },
  2869. "node_modules/eslint-plugin-n/node_modules/semver": {
  2870. "version": "7.7.3",
  2871. "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz",
  2872. "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==",
  2873. "license": "ISC",
  2874. "bin": {
  2875. "semver": "bin/semver.js"
  2876. },
  2877. "engines": {
  2878. "node": ">=10"
  2879. }
  2880. },
  2881. "node_modules/eslint-plugin-promise": {
  2882. "version": "6.6.0",
  2883. "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-6.6.0.tgz",
  2884. "integrity": "sha512-57Zzfw8G6+Gq7axm2Pdo3gW/Rx3h9Yywgn61uE/3elTCOePEHVrn2i5CdfBwA1BLK0Q0WqctICIUSqXZW/VprQ==",
  2885. "license": "ISC",
  2886. "engines": {
  2887. "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
  2888. },
  2889. "funding": {
  2890. "url": "https://opencollective.com/eslint"
  2891. },
  2892. "peerDependencies": {
  2893. "eslint": "^7.0.0 || ^8.0.0 || ^9.0.0"
  2894. }
  2895. },
  2896. "node_modules/eslint-plugin-react": {
  2897. "version": "7.37.5",
  2898. "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.5.tgz",
  2899. "integrity": "sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==",
  2900. "license": "MIT",
  2901. "dependencies": {
  2902. "array-includes": "^3.1.8",
  2903. "array.prototype.findlast": "^1.2.5",
  2904. "array.prototype.flatmap": "^1.3.3",
  2905. "array.prototype.tosorted": "^1.1.4",
  2906. "doctrine": "^2.1.0",
  2907. "es-iterator-helpers": "^1.2.1",
  2908. "estraverse": "^5.3.0",
  2909. "hasown": "^2.0.2",
  2910. "jsx-ast-utils": "^2.4.1 || ^3.0.0",
  2911. "minimatch": "^3.1.2",
  2912. "object.entries": "^1.1.9",
  2913. "object.fromentries": "^2.0.8",
  2914. "object.values": "^1.2.1",
  2915. "prop-types": "^15.8.1",
  2916. "resolve": "^2.0.0-next.5",
  2917. "semver": "^6.3.1",
  2918. "string.prototype.matchall": "^4.0.12",
  2919. "string.prototype.repeat": "^1.0.0"
  2920. },
  2921. "engines": {
  2922. "node": ">=4"
  2923. },
  2924. "peerDependencies": {
  2925. "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7"
  2926. }
  2927. },
  2928. "node_modules/eslint-plugin-react/node_modules/doctrine": {
  2929. "version": "2.1.0",
  2930. "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
  2931. "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
  2932. "license": "Apache-2.0",
  2933. "dependencies": {
  2934. "esutils": "^2.0.2"
  2935. },
  2936. "engines": {
  2937. "node": ">=0.10.0"
  2938. }
  2939. },
  2940. "node_modules/eslint-plugin-react/node_modules/resolve": {
  2941. "version": "2.0.0-next.5",
  2942. "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz",
  2943. "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==",
  2944. "license": "MIT",
  2945. "dependencies": {
  2946. "is-core-module": "^2.13.0",
  2947. "path-parse": "^1.0.7",
  2948. "supports-preserve-symlinks-flag": "^1.0.0"
  2949. },
  2950. "bin": {
  2951. "resolve": "bin/resolve"
  2952. },
  2953. "funding": {
  2954. "url": "https://github.com/sponsors/ljharb"
  2955. }
  2956. },
  2957. "node_modules/eslint-scope": {
  2958. "version": "7.2.2",
  2959. "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz",
  2960. "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==",
  2961. "license": "BSD-2-Clause",
  2962. "dependencies": {
  2963. "esrecurse": "^4.3.0",
  2964. "estraverse": "^5.2.0"
  2965. },
  2966. "engines": {
  2967. "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
  2968. },
  2969. "funding": {
  2970. "url": "https://opencollective.com/eslint"
  2971. }
  2972. },
  2973. "node_modules/eslint-utils": {
  2974. "version": "3.0.0",
  2975. "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz",
  2976. "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==",
  2977. "license": "MIT",
  2978. "dependencies": {
  2979. "eslint-visitor-keys": "^2.0.0"
  2980. },
  2981. "engines": {
  2982. "node": "^10.0.0 || ^12.0.0 || >= 14.0.0"
  2983. },
  2984. "funding": {
  2985. "url": "https://github.com/sponsors/mysticatea"
  2986. },
  2987. "peerDependencies": {
  2988. "eslint": ">=5"
  2989. }
  2990. },
  2991. "node_modules/eslint-utils/node_modules/eslint-visitor-keys": {
  2992. "version": "2.1.0",
  2993. "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz",
  2994. "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==",
  2995. "license": "Apache-2.0",
  2996. "engines": {
  2997. "node": ">=10"
  2998. }
  2999. },
  3000. "node_modules/eslint-visitor-keys": {
  3001. "version": "3.4.3",
  3002. "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
  3003. "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
  3004. "license": "Apache-2.0",
  3005. "engines": {
  3006. "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
  3007. },
  3008. "funding": {
  3009. "url": "https://opencollective.com/eslint"
  3010. }
  3011. },
  3012. "node_modules/eslint/node_modules/glob-parent": {
  3013. "version": "6.0.2",
  3014. "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
  3015. "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
  3016. "license": "ISC",
  3017. "dependencies": {
  3018. "is-glob": "^4.0.3"
  3019. },
  3020. "engines": {
  3021. "node": ">=10.13.0"
  3022. }
  3023. },
  3024. "node_modules/espree": {
  3025. "version": "9.6.1",
  3026. "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz",
  3027. "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==",
  3028. "license": "BSD-2-Clause",
  3029. "dependencies": {
  3030. "acorn": "^8.9.0",
  3031. "acorn-jsx": "^5.3.2",
  3032. "eslint-visitor-keys": "^3.4.1"
  3033. },
  3034. "engines": {
  3035. "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
  3036. },
  3037. "funding": {
  3038. "url": "https://opencollective.com/eslint"
  3039. }
  3040. },
  3041. "node_modules/esquery": {
  3042. "version": "1.6.0",
  3043. "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz",
  3044. "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==",
  3045. "license": "BSD-3-Clause",
  3046. "dependencies": {
  3047. "estraverse": "^5.1.0"
  3048. },
  3049. "engines": {
  3050. "node": ">=0.10"
  3051. }
  3052. },
  3053. "node_modules/esrecurse": {
  3054. "version": "4.3.0",
  3055. "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
  3056. "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
  3057. "license": "BSD-2-Clause",
  3058. "dependencies": {
  3059. "estraverse": "^5.2.0"
  3060. },
  3061. "engines": {
  3062. "node": ">=4.0"
  3063. }
  3064. },
  3065. "node_modules/estraverse": {
  3066. "version": "5.3.0",
  3067. "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
  3068. "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
  3069. "license": "BSD-2-Clause",
  3070. "engines": {
  3071. "node": ">=4.0"
  3072. }
  3073. },
  3074. "node_modules/estree-walker": {
  3075. "version": "2.0.2",
  3076. "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
  3077. "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
  3078. "license": "MIT"
  3079. },
  3080. "node_modules/esutils": {
  3081. "version": "2.0.3",
  3082. "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
  3083. "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
  3084. "license": "BSD-2-Clause",
  3085. "engines": {
  3086. "node": ">=0.10.0"
  3087. }
  3088. },
  3089. "node_modules/exsolve": {
  3090. "version": "1.0.7",
  3091. "resolved": "https://registry.npmjs.org/exsolve/-/exsolve-1.0.7.tgz",
  3092. "integrity": "sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw==",
  3093. "license": "MIT"
  3094. },
  3095. "node_modules/fast-deep-equal": {
  3096. "version": "3.1.3",
  3097. "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
  3098. "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
  3099. },
  3100. "node_modules/fast-glob": {
  3101. "version": "3.3.3",
  3102. "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz",
  3103. "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==",
  3104. "dev": true,
  3105. "license": "MIT",
  3106. "dependencies": {
  3107. "@nodelib/fs.stat": "^2.0.2",
  3108. "@nodelib/fs.walk": "^1.2.3",
  3109. "glob-parent": "^5.1.2",
  3110. "merge2": "^1.3.0",
  3111. "micromatch": "^4.0.8"
  3112. },
  3113. "engines": {
  3114. "node": ">=8.6.0"
  3115. }
  3116. },
  3117. "node_modules/fast-json-stable-stringify": {
  3118. "version": "2.1.0",
  3119. "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
  3120. "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
  3121. "license": "MIT"
  3122. },
  3123. "node_modules/fast-levenshtein": {
  3124. "version": "2.0.6",
  3125. "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
  3126. "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
  3127. "license": "MIT"
  3128. },
  3129. "node_modules/fast-uri": {
  3130. "version": "3.1.2",
  3131. "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.2.tgz",
  3132. "integrity": "sha512-rVjf7ArG3LTk+FS6Yw81V1DLuZl1bRbNrev6Tmd/9RaroeeRRJhAt7jg/6YFxbvAQXUCavSoZhPPj6oOx+5KjQ==",
  3133. "dev": true,
  3134. "funding": [
  3135. {
  3136. "type": "github",
  3137. "url": "https://github.com/sponsors/fastify"
  3138. },
  3139. {
  3140. "type": "opencollective",
  3141. "url": "https://opencollective.com/fastify"
  3142. }
  3143. ],
  3144. "license": "BSD-3-Clause"
  3145. },
  3146. "node_modules/fastest-levenshtein": {
  3147. "version": "1.0.16",
  3148. "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz",
  3149. "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==",
  3150. "dev": true,
  3151. "engines": {
  3152. "node": ">= 4.9.1"
  3153. }
  3154. },
  3155. "node_modules/fastq": {
  3156. "version": "1.17.1",
  3157. "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz",
  3158. "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==",
  3159. "dependencies": {
  3160. "reusify": "^1.0.4"
  3161. }
  3162. },
  3163. "node_modules/femtocrank": {
  3164. "version": "2.5.0",
  3165. "resolved": "https://registry.npmjs.org/femtocrank/-/femtocrank-2.5.0.tgz",
  3166. "integrity": "sha512-plV1HNS/fUzohWJ349kuCBZ3TCfXz7V4F/sY2lVbVWtGXUV+aHxLG6IddAMEf64k2LJ8j0KVrj+nIIKepFaKvg==",
  3167. "license": "AGPL-3.0"
  3168. },
  3169. "node_modules/file-entry-cache": {
  3170. "version": "6.0.1",
  3171. "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz",
  3172. "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==",
  3173. "license": "MIT",
  3174. "dependencies": {
  3175. "flat-cache": "^3.0.4"
  3176. },
  3177. "engines": {
  3178. "node": "^10.12.0 || >=12.0.0"
  3179. }
  3180. },
  3181. "node_modules/fill-range": {
  3182. "version": "7.1.1",
  3183. "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
  3184. "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
  3185. "dev": true,
  3186. "license": "MIT",
  3187. "dependencies": {
  3188. "to-regex-range": "^5.0.1"
  3189. },
  3190. "engines": {
  3191. "node": ">=8"
  3192. }
  3193. },
  3194. "node_modules/find-up": {
  3195. "version": "5.0.0",
  3196. "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
  3197. "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
  3198. "license": "MIT",
  3199. "dependencies": {
  3200. "locate-path": "^6.0.0",
  3201. "path-exists": "^4.0.0"
  3202. },
  3203. "engines": {
  3204. "node": ">=10"
  3205. },
  3206. "funding": {
  3207. "url": "https://github.com/sponsors/sindresorhus"
  3208. }
  3209. },
  3210. "node_modules/flat-cache": {
  3211. "version": "3.2.0",
  3212. "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz",
  3213. "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==",
  3214. "license": "MIT",
  3215. "dependencies": {
  3216. "flatted": "^3.2.9",
  3217. "keyv": "^4.5.3",
  3218. "rimraf": "^3.0.2"
  3219. },
  3220. "engines": {
  3221. "node": "^10.12.0 || >=12.0.0"
  3222. }
  3223. },
  3224. "node_modules/flatted": {
  3225. "version": "3.4.2",
  3226. "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz",
  3227. "integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==",
  3228. "license": "ISC"
  3229. },
  3230. "node_modules/for-each": {
  3231. "version": "0.3.5",
  3232. "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz",
  3233. "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==",
  3234. "license": "MIT",
  3235. "dependencies": {
  3236. "is-callable": "^1.2.7"
  3237. },
  3238. "engines": {
  3239. "node": ">= 0.4"
  3240. },
  3241. "funding": {
  3242. "url": "https://github.com/sponsors/ljharb"
  3243. }
  3244. },
  3245. "node_modules/fs.realpath": {
  3246. "version": "1.0.0",
  3247. "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
  3248. "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
  3249. "license": "ISC"
  3250. },
  3251. "node_modules/fsevents": {
  3252. "version": "2.3.3",
  3253. "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
  3254. "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
  3255. "hasInstallScript": true,
  3256. "license": "MIT",
  3257. "optional": true,
  3258. "os": [
  3259. "darwin"
  3260. ],
  3261. "engines": {
  3262. "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
  3263. }
  3264. },
  3265. "node_modules/function-bind": {
  3266. "version": "1.1.2",
  3267. "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
  3268. "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
  3269. "license": "MIT",
  3270. "funding": {
  3271. "url": "https://github.com/sponsors/ljharb"
  3272. }
  3273. },
  3274. "node_modules/function.prototype.name": {
  3275. "version": "1.1.8",
  3276. "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.8.tgz",
  3277. "integrity": "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==",
  3278. "license": "MIT",
  3279. "dependencies": {
  3280. "call-bind": "^1.0.8",
  3281. "call-bound": "^1.0.3",
  3282. "define-properties": "^1.2.1",
  3283. "functions-have-names": "^1.2.3",
  3284. "hasown": "^2.0.2",
  3285. "is-callable": "^1.2.7"
  3286. },
  3287. "engines": {
  3288. "node": ">= 0.4"
  3289. },
  3290. "funding": {
  3291. "url": "https://github.com/sponsors/ljharb"
  3292. }
  3293. },
  3294. "node_modules/functions-have-names": {
  3295. "version": "1.2.3",
  3296. "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz",
  3297. "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==",
  3298. "license": "MIT",
  3299. "funding": {
  3300. "url": "https://github.com/sponsors/ljharb"
  3301. }
  3302. },
  3303. "node_modules/generator-function": {
  3304. "version": "2.0.1",
  3305. "resolved": "https://registry.npmjs.org/generator-function/-/generator-function-2.0.1.tgz",
  3306. "integrity": "sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==",
  3307. "license": "MIT",
  3308. "engines": {
  3309. "node": ">= 0.4"
  3310. }
  3311. },
  3312. "node_modules/get-east-asian-width": {
  3313. "version": "1.6.0",
  3314. "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.6.0.tgz",
  3315. "integrity": "sha512-QRbvDIbx6YklUe6RxeTeleMR0yv3cYH6PsPZHcnVn7xv7zO1BHN8r0XETu8n6Ye3Q+ahtSarc3WgtNWmehIBfA==",
  3316. "dev": true,
  3317. "license": "MIT",
  3318. "engines": {
  3319. "node": ">=18"
  3320. },
  3321. "funding": {
  3322. "url": "https://github.com/sponsors/sindresorhus"
  3323. }
  3324. },
  3325. "node_modules/get-intrinsic": {
  3326. "version": "1.3.0",
  3327. "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
  3328. "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
  3329. "license": "MIT",
  3330. "dependencies": {
  3331. "call-bind-apply-helpers": "^1.0.2",
  3332. "es-define-property": "^1.0.1",
  3333. "es-errors": "^1.3.0",
  3334. "es-object-atoms": "^1.1.1",
  3335. "function-bind": "^1.1.2",
  3336. "get-proto": "^1.0.1",
  3337. "gopd": "^1.2.0",
  3338. "has-symbols": "^1.1.0",
  3339. "hasown": "^2.0.2",
  3340. "math-intrinsics": "^1.1.0"
  3341. },
  3342. "engines": {
  3343. "node": ">= 0.4"
  3344. },
  3345. "funding": {
  3346. "url": "https://github.com/sponsors/ljharb"
  3347. }
  3348. },
  3349. "node_modules/get-proto": {
  3350. "version": "1.0.1",
  3351. "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
  3352. "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
  3353. "license": "MIT",
  3354. "dependencies": {
  3355. "dunder-proto": "^1.0.1",
  3356. "es-object-atoms": "^1.0.0"
  3357. },
  3358. "engines": {
  3359. "node": ">= 0.4"
  3360. }
  3361. },
  3362. "node_modules/get-stdin": {
  3363. "version": "8.0.0",
  3364. "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz",
  3365. "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==",
  3366. "license": "MIT",
  3367. "engines": {
  3368. "node": ">=10"
  3369. },
  3370. "funding": {
  3371. "url": "https://github.com/sponsors/sindresorhus"
  3372. }
  3373. },
  3374. "node_modules/get-symbol-description": {
  3375. "version": "1.1.0",
  3376. "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz",
  3377. "integrity": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==",
  3378. "license": "MIT",
  3379. "dependencies": {
  3380. "call-bound": "^1.0.3",
  3381. "es-errors": "^1.3.0",
  3382. "get-intrinsic": "^1.2.6"
  3383. },
  3384. "engines": {
  3385. "node": ">= 0.4"
  3386. },
  3387. "funding": {
  3388. "url": "https://github.com/sponsors/ljharb"
  3389. }
  3390. },
  3391. "node_modules/glob": {
  3392. "version": "7.2.3",
  3393. "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
  3394. "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
  3395. "deprecated": "Glob versions prior to v9 are no longer supported",
  3396. "license": "ISC",
  3397. "dependencies": {
  3398. "fs.realpath": "^1.0.0",
  3399. "inflight": "^1.0.4",
  3400. "inherits": "2",
  3401. "minimatch": "^3.1.1",
  3402. "once": "^1.3.0",
  3403. "path-is-absolute": "^1.0.0"
  3404. },
  3405. "engines": {
  3406. "node": "*"
  3407. },
  3408. "funding": {
  3409. "url": "https://github.com/sponsors/isaacs"
  3410. }
  3411. },
  3412. "node_modules/glob-parent": {
  3413. "version": "5.1.2",
  3414. "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
  3415. "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
  3416. "dev": true,
  3417. "license": "ISC",
  3418. "dependencies": {
  3419. "is-glob": "^4.0.1"
  3420. },
  3421. "engines": {
  3422. "node": ">= 6"
  3423. }
  3424. },
  3425. "node_modules/global-modules": {
  3426. "version": "2.0.0",
  3427. "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz",
  3428. "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==",
  3429. "dev": true,
  3430. "dependencies": {
  3431. "global-prefix": "^3.0.0"
  3432. },
  3433. "engines": {
  3434. "node": ">=6"
  3435. }
  3436. },
  3437. "node_modules/global-prefix": {
  3438. "version": "3.0.0",
  3439. "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz",
  3440. "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==",
  3441. "dev": true,
  3442. "dependencies": {
  3443. "ini": "^1.3.5",
  3444. "kind-of": "^6.0.2",
  3445. "which": "^1.3.1"
  3446. },
  3447. "engines": {
  3448. "node": ">=6"
  3449. }
  3450. },
  3451. "node_modules/global-prefix/node_modules/which": {
  3452. "version": "1.3.1",
  3453. "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
  3454. "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
  3455. "dev": true,
  3456. "dependencies": {
  3457. "isexe": "^2.0.0"
  3458. },
  3459. "bin": {
  3460. "which": "bin/which"
  3461. }
  3462. },
  3463. "node_modules/globals": {
  3464. "version": "13.24.0",
  3465. "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz",
  3466. "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==",
  3467. "license": "MIT",
  3468. "dependencies": {
  3469. "type-fest": "^0.20.2"
  3470. },
  3471. "engines": {
  3472. "node": ">=8"
  3473. },
  3474. "funding": {
  3475. "url": "https://github.com/sponsors/sindresorhus"
  3476. }
  3477. },
  3478. "node_modules/globalthis": {
  3479. "version": "1.0.4",
  3480. "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz",
  3481. "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==",
  3482. "license": "MIT",
  3483. "dependencies": {
  3484. "define-properties": "^1.2.1",
  3485. "gopd": "^1.0.1"
  3486. },
  3487. "engines": {
  3488. "node": ">= 0.4"
  3489. },
  3490. "funding": {
  3491. "url": "https://github.com/sponsors/ljharb"
  3492. }
  3493. },
  3494. "node_modules/globby": {
  3495. "version": "16.2.0",
  3496. "resolved": "https://registry.npmjs.org/globby/-/globby-16.2.0.tgz",
  3497. "integrity": "sha512-QrJia2qDf5BB/V6HYlDTs0I0lBahyjLzpGQg3KT7FnCdTonAyPy2RtY802m2k4ALx6Dp752f82WsOczEVr3l6Q==",
  3498. "dev": true,
  3499. "license": "MIT",
  3500. "dependencies": {
  3501. "@sindresorhus/merge-streams": "^4.0.0",
  3502. "fast-glob": "^3.3.3",
  3503. "ignore": "^7.0.5",
  3504. "is-path-inside": "^4.0.0",
  3505. "slash": "^5.1.0",
  3506. "unicorn-magic": "^0.4.0"
  3507. },
  3508. "engines": {
  3509. "node": ">=20"
  3510. },
  3511. "funding": {
  3512. "url": "https://github.com/sponsors/sindresorhus"
  3513. }
  3514. },
  3515. "node_modules/globby/node_modules/ignore": {
  3516. "version": "7.0.5",
  3517. "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz",
  3518. "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==",
  3519. "dev": true,
  3520. "license": "MIT",
  3521. "engines": {
  3522. "node": ">= 4"
  3523. }
  3524. },
  3525. "node_modules/globby/node_modules/is-path-inside": {
  3526. "version": "4.0.0",
  3527. "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-4.0.0.tgz",
  3528. "integrity": "sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==",
  3529. "dev": true,
  3530. "license": "MIT",
  3531. "engines": {
  3532. "node": ">=12"
  3533. },
  3534. "funding": {
  3535. "url": "https://github.com/sponsors/sindresorhus"
  3536. }
  3537. },
  3538. "node_modules/globjoin": {
  3539. "version": "0.1.4",
  3540. "resolved": "https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz",
  3541. "integrity": "sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==",
  3542. "dev": true
  3543. },
  3544. "node_modules/gopd": {
  3545. "version": "1.2.0",
  3546. "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
  3547. "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
  3548. "license": "MIT",
  3549. "engines": {
  3550. "node": ">= 0.4"
  3551. },
  3552. "funding": {
  3553. "url": "https://github.com/sponsors/ljharb"
  3554. }
  3555. },
  3556. "node_modules/graceful-fs": {
  3557. "version": "4.2.11",
  3558. "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
  3559. "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
  3560. "license": "ISC"
  3561. },
  3562. "node_modules/graphemer": {
  3563. "version": "1.4.0",
  3564. "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz",
  3565. "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==",
  3566. "license": "MIT"
  3567. },
  3568. "node_modules/has-bigints": {
  3569. "version": "1.1.0",
  3570. "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz",
  3571. "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==",
  3572. "license": "MIT",
  3573. "engines": {
  3574. "node": ">= 0.4"
  3575. },
  3576. "funding": {
  3577. "url": "https://github.com/sponsors/ljharb"
  3578. }
  3579. },
  3580. "node_modules/has-flag": {
  3581. "version": "4.0.0",
  3582. "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
  3583. "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
  3584. "engines": {
  3585. "node": ">=8"
  3586. }
  3587. },
  3588. "node_modules/has-property-descriptors": {
  3589. "version": "1.0.2",
  3590. "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz",
  3591. "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==",
  3592. "license": "MIT",
  3593. "dependencies": {
  3594. "es-define-property": "^1.0.0"
  3595. },
  3596. "funding": {
  3597. "url": "https://github.com/sponsors/ljharb"
  3598. }
  3599. },
  3600. "node_modules/has-proto": {
  3601. "version": "1.2.0",
  3602. "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz",
  3603. "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==",
  3604. "license": "MIT",
  3605. "dependencies": {
  3606. "dunder-proto": "^1.0.0"
  3607. },
  3608. "engines": {
  3609. "node": ">= 0.4"
  3610. },
  3611. "funding": {
  3612. "url": "https://github.com/sponsors/ljharb"
  3613. }
  3614. },
  3615. "node_modules/has-symbols": {
  3616. "version": "1.1.0",
  3617. "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
  3618. "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
  3619. "license": "MIT",
  3620. "engines": {
  3621. "node": ">= 0.4"
  3622. },
  3623. "funding": {
  3624. "url": "https://github.com/sponsors/ljharb"
  3625. }
  3626. },
  3627. "node_modules/has-tostringtag": {
  3628. "version": "1.0.2",
  3629. "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
  3630. "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
  3631. "license": "MIT",
  3632. "dependencies": {
  3633. "has-symbols": "^1.0.3"
  3634. },
  3635. "engines": {
  3636. "node": ">= 0.4"
  3637. },
  3638. "funding": {
  3639. "url": "https://github.com/sponsors/ljharb"
  3640. }
  3641. },
  3642. "node_modules/hashery": {
  3643. "version": "1.4.0",
  3644. "resolved": "https://registry.npmjs.org/hashery/-/hashery-1.4.0.tgz",
  3645. "integrity": "sha512-Wn2i1In6XFxl8Az55kkgnFRiAlIAushzh26PTjL2AKtQcEfXrcLa7Hn5QOWGZEf3LU057P9TwwZjFyxfS1VuvQ==",
  3646. "dev": true,
  3647. "license": "MIT",
  3648. "dependencies": {
  3649. "hookified": "^1.14.0"
  3650. },
  3651. "engines": {
  3652. "node": ">=20"
  3653. }
  3654. },
  3655. "node_modules/hasown": {
  3656. "version": "2.0.2",
  3657. "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
  3658. "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
  3659. "license": "MIT",
  3660. "dependencies": {
  3661. "function-bind": "^1.1.2"
  3662. },
  3663. "engines": {
  3664. "node": ">= 0.4"
  3665. }
  3666. },
  3667. "node_modules/hookable": {
  3668. "version": "5.5.3",
  3669. "resolved": "https://registry.npmjs.org/hookable/-/hookable-5.5.3.tgz",
  3670. "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==",
  3671. "license": "MIT"
  3672. },
  3673. "node_modules/hookified": {
  3674. "version": "1.15.1",
  3675. "resolved": "https://registry.npmjs.org/hookified/-/hookified-1.15.1.tgz",
  3676. "integrity": "sha512-MvG/clsADq1GPM2KGo2nyfaWVyn9naPiXrqIe4jYjXNZQt238kWyOGrsyc/DmRAQ+Re6yeo6yX/yoNCG5KAEVg==",
  3677. "dev": true,
  3678. "license": "MIT"
  3679. },
  3680. "node_modules/html-tags": {
  3681. "version": "5.1.0",
  3682. "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-5.1.0.tgz",
  3683. "integrity": "sha512-n6l5uca7/y5joxZ3LUePhzmBFUJ+U2YWzhMa8XUTecSeSlQiZdF5XAd/Q3/WUl0VsXgUwWi8I7CNIwdI5WN1SQ==",
  3684. "dev": true,
  3685. "license": "MIT",
  3686. "engines": {
  3687. "node": ">=20.10"
  3688. },
  3689. "funding": {
  3690. "url": "https://github.com/sponsors/sindresorhus"
  3691. }
  3692. },
  3693. "node_modules/iconify-icon": {
  3694. "version": "3.0.2",
  3695. "resolved": "https://registry.npmjs.org/iconify-icon/-/iconify-icon-3.0.2.tgz",
  3696. "integrity": "sha512-DYPAumiUeUeT/GHT8x2wrAVKn1FqZJqFH0Y5pBefapWRreV1BBvqBVMb0020YQ2njmbR59r/IathL2d2OrDrxA==",
  3697. "license": "MIT",
  3698. "dependencies": {
  3699. "@iconify/types": "^2.0.0"
  3700. },
  3701. "funding": {
  3702. "url": "https://github.com/sponsors/cyberalien"
  3703. }
  3704. },
  3705. "node_modules/ignore": {
  3706. "version": "5.3.2",
  3707. "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
  3708. "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
  3709. "license": "MIT",
  3710. "engines": {
  3711. "node": ">= 4"
  3712. }
  3713. },
  3714. "node_modules/import-fresh": {
  3715. "version": "3.3.0",
  3716. "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
  3717. "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
  3718. "dependencies": {
  3719. "parent-module": "^1.0.0",
  3720. "resolve-from": "^4.0.0"
  3721. },
  3722. "engines": {
  3723. "node": ">=6"
  3724. },
  3725. "funding": {
  3726. "url": "https://github.com/sponsors/sindresorhus"
  3727. }
  3728. },
  3729. "node_modules/import-meta-resolve": {
  3730. "version": "4.2.0",
  3731. "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.2.0.tgz",
  3732. "integrity": "sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==",
  3733. "dev": true,
  3734. "license": "MIT",
  3735. "funding": {
  3736. "type": "github",
  3737. "url": "https://github.com/sponsors/wooorm"
  3738. }
  3739. },
  3740. "node_modules/imurmurhash": {
  3741. "version": "0.1.4",
  3742. "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
  3743. "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
  3744. "engines": {
  3745. "node": ">=0.8.19"
  3746. }
  3747. },
  3748. "node_modules/inflight": {
  3749. "version": "1.0.6",
  3750. "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
  3751. "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
  3752. "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.",
  3753. "license": "ISC",
  3754. "dependencies": {
  3755. "once": "^1.3.0",
  3756. "wrappy": "1"
  3757. }
  3758. },
  3759. "node_modules/inherits": {
  3760. "version": "2.0.4",
  3761. "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
  3762. "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
  3763. "license": "ISC"
  3764. },
  3765. "node_modules/ini": {
  3766. "version": "1.3.8",
  3767. "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
  3768. "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
  3769. "dev": true
  3770. },
  3771. "node_modules/internal-slot": {
  3772. "version": "1.1.0",
  3773. "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz",
  3774. "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==",
  3775. "license": "MIT",
  3776. "dependencies": {
  3777. "es-errors": "^1.3.0",
  3778. "hasown": "^2.0.2",
  3779. "side-channel": "^1.1.0"
  3780. },
  3781. "engines": {
  3782. "node": ">= 0.4"
  3783. }
  3784. },
  3785. "node_modules/is-array-buffer": {
  3786. "version": "3.0.5",
  3787. "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz",
  3788. "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==",
  3789. "license": "MIT",
  3790. "dependencies": {
  3791. "call-bind": "^1.0.8",
  3792. "call-bound": "^1.0.3",
  3793. "get-intrinsic": "^1.2.6"
  3794. },
  3795. "engines": {
  3796. "node": ">= 0.4"
  3797. },
  3798. "funding": {
  3799. "url": "https://github.com/sponsors/ljharb"
  3800. }
  3801. },
  3802. "node_modules/is-arrayish": {
  3803. "version": "0.2.1",
  3804. "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
  3805. "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==",
  3806. "license": "MIT"
  3807. },
  3808. "node_modules/is-async-function": {
  3809. "version": "2.1.1",
  3810. "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz",
  3811. "integrity": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==",
  3812. "license": "MIT",
  3813. "dependencies": {
  3814. "async-function": "^1.0.0",
  3815. "call-bound": "^1.0.3",
  3816. "get-proto": "^1.0.1",
  3817. "has-tostringtag": "^1.0.2",
  3818. "safe-regex-test": "^1.1.0"
  3819. },
  3820. "engines": {
  3821. "node": ">= 0.4"
  3822. },
  3823. "funding": {
  3824. "url": "https://github.com/sponsors/ljharb"
  3825. }
  3826. },
  3827. "node_modules/is-bigint": {
  3828. "version": "1.1.0",
  3829. "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz",
  3830. "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==",
  3831. "license": "MIT",
  3832. "dependencies": {
  3833. "has-bigints": "^1.0.2"
  3834. },
  3835. "engines": {
  3836. "node": ">= 0.4"
  3837. },
  3838. "funding": {
  3839. "url": "https://github.com/sponsors/ljharb"
  3840. }
  3841. },
  3842. "node_modules/is-boolean-object": {
  3843. "version": "1.2.2",
  3844. "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz",
  3845. "integrity": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==",
  3846. "license": "MIT",
  3847. "dependencies": {
  3848. "call-bound": "^1.0.3",
  3849. "has-tostringtag": "^1.0.2"
  3850. },
  3851. "engines": {
  3852. "node": ">= 0.4"
  3853. },
  3854. "funding": {
  3855. "url": "https://github.com/sponsors/ljharb"
  3856. }
  3857. },
  3858. "node_modules/is-callable": {
  3859. "version": "1.2.7",
  3860. "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz",
  3861. "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==",
  3862. "license": "MIT",
  3863. "engines": {
  3864. "node": ">= 0.4"
  3865. },
  3866. "funding": {
  3867. "url": "https://github.com/sponsors/ljharb"
  3868. }
  3869. },
  3870. "node_modules/is-core-module": {
  3871. "version": "2.16.1",
  3872. "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz",
  3873. "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==",
  3874. "license": "MIT",
  3875. "dependencies": {
  3876. "hasown": "^2.0.2"
  3877. },
  3878. "engines": {
  3879. "node": ">= 0.4"
  3880. },
  3881. "funding": {
  3882. "url": "https://github.com/sponsors/ljharb"
  3883. }
  3884. },
  3885. "node_modules/is-data-view": {
  3886. "version": "1.0.2",
  3887. "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz",
  3888. "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==",
  3889. "license": "MIT",
  3890. "dependencies": {
  3891. "call-bound": "^1.0.2",
  3892. "get-intrinsic": "^1.2.6",
  3893. "is-typed-array": "^1.1.13"
  3894. },
  3895. "engines": {
  3896. "node": ">= 0.4"
  3897. },
  3898. "funding": {
  3899. "url": "https://github.com/sponsors/ljharb"
  3900. }
  3901. },
  3902. "node_modules/is-date-object": {
  3903. "version": "1.1.0",
  3904. "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz",
  3905. "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==",
  3906. "license": "MIT",
  3907. "dependencies": {
  3908. "call-bound": "^1.0.2",
  3909. "has-tostringtag": "^1.0.2"
  3910. },
  3911. "engines": {
  3912. "node": ">= 0.4"
  3913. },
  3914. "funding": {
  3915. "url": "https://github.com/sponsors/ljharb"
  3916. }
  3917. },
  3918. "node_modules/is-extglob": {
  3919. "version": "2.1.1",
  3920. "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
  3921. "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
  3922. "engines": {
  3923. "node": ">=0.10.0"
  3924. }
  3925. },
  3926. "node_modules/is-finalizationregistry": {
  3927. "version": "1.1.1",
  3928. "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz",
  3929. "integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==",
  3930. "license": "MIT",
  3931. "dependencies": {
  3932. "call-bound": "^1.0.3"
  3933. },
  3934. "engines": {
  3935. "node": ">= 0.4"
  3936. },
  3937. "funding": {
  3938. "url": "https://github.com/sponsors/ljharb"
  3939. }
  3940. },
  3941. "node_modules/is-fullwidth-code-point": {
  3942. "version": "3.0.0",
  3943. "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
  3944. "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
  3945. "dev": true,
  3946. "engines": {
  3947. "node": ">=8"
  3948. }
  3949. },
  3950. "node_modules/is-generator-function": {
  3951. "version": "1.1.2",
  3952. "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.2.tgz",
  3953. "integrity": "sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==",
  3954. "license": "MIT",
  3955. "dependencies": {
  3956. "call-bound": "^1.0.4",
  3957. "generator-function": "^2.0.0",
  3958. "get-proto": "^1.0.1",
  3959. "has-tostringtag": "^1.0.2",
  3960. "safe-regex-test": "^1.1.0"
  3961. },
  3962. "engines": {
  3963. "node": ">= 0.4"
  3964. },
  3965. "funding": {
  3966. "url": "https://github.com/sponsors/ljharb"
  3967. }
  3968. },
  3969. "node_modules/is-glob": {
  3970. "version": "4.0.3",
  3971. "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
  3972. "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
  3973. "dependencies": {
  3974. "is-extglob": "^2.1.1"
  3975. },
  3976. "engines": {
  3977. "node": ">=0.10.0"
  3978. }
  3979. },
  3980. "node_modules/is-map": {
  3981. "version": "2.0.3",
  3982. "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz",
  3983. "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==",
  3984. "license": "MIT",
  3985. "engines": {
  3986. "node": ">= 0.4"
  3987. },
  3988. "funding": {
  3989. "url": "https://github.com/sponsors/ljharb"
  3990. }
  3991. },
  3992. "node_modules/is-negative-zero": {
  3993. "version": "2.0.3",
  3994. "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz",
  3995. "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==",
  3996. "license": "MIT",
  3997. "engines": {
  3998. "node": ">= 0.4"
  3999. },
  4000. "funding": {
  4001. "url": "https://github.com/sponsors/ljharb"
  4002. }
  4003. },
  4004. "node_modules/is-number": {
  4005. "version": "7.0.0",
  4006. "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
  4007. "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
  4008. "dev": true,
  4009. "license": "MIT",
  4010. "engines": {
  4011. "node": ">=0.12.0"
  4012. }
  4013. },
  4014. "node_modules/is-number-object": {
  4015. "version": "1.1.1",
  4016. "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz",
  4017. "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==",
  4018. "license": "MIT",
  4019. "dependencies": {
  4020. "call-bound": "^1.0.3",
  4021. "has-tostringtag": "^1.0.2"
  4022. },
  4023. "engines": {
  4024. "node": ">= 0.4"
  4025. },
  4026. "funding": {
  4027. "url": "https://github.com/sponsors/ljharb"
  4028. }
  4029. },
  4030. "node_modules/is-path-inside": {
  4031. "version": "3.0.3",
  4032. "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz",
  4033. "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==",
  4034. "license": "MIT",
  4035. "engines": {
  4036. "node": ">=8"
  4037. }
  4038. },
  4039. "node_modules/is-plain-object": {
  4040. "version": "5.0.0",
  4041. "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz",
  4042. "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==",
  4043. "dev": true,
  4044. "engines": {
  4045. "node": ">=0.10.0"
  4046. }
  4047. },
  4048. "node_modules/is-regex": {
  4049. "version": "1.2.1",
  4050. "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz",
  4051. "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==",
  4052. "license": "MIT",
  4053. "dependencies": {
  4054. "call-bound": "^1.0.2",
  4055. "gopd": "^1.2.0",
  4056. "has-tostringtag": "^1.0.2",
  4057. "hasown": "^2.0.2"
  4058. },
  4059. "engines": {
  4060. "node": ">= 0.4"
  4061. },
  4062. "funding": {
  4063. "url": "https://github.com/sponsors/ljharb"
  4064. }
  4065. },
  4066. "node_modules/is-set": {
  4067. "version": "2.0.3",
  4068. "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz",
  4069. "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==",
  4070. "license": "MIT",
  4071. "engines": {
  4072. "node": ">= 0.4"
  4073. },
  4074. "funding": {
  4075. "url": "https://github.com/sponsors/ljharb"
  4076. }
  4077. },
  4078. "node_modules/is-shared-array-buffer": {
  4079. "version": "1.0.4",
  4080. "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz",
  4081. "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==",
  4082. "license": "MIT",
  4083. "dependencies": {
  4084. "call-bound": "^1.0.3"
  4085. },
  4086. "engines": {
  4087. "node": ">= 0.4"
  4088. },
  4089. "funding": {
  4090. "url": "https://github.com/sponsors/ljharb"
  4091. }
  4092. },
  4093. "node_modules/is-string": {
  4094. "version": "1.1.1",
  4095. "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz",
  4096. "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==",
  4097. "license": "MIT",
  4098. "dependencies": {
  4099. "call-bound": "^1.0.3",
  4100. "has-tostringtag": "^1.0.2"
  4101. },
  4102. "engines": {
  4103. "node": ">= 0.4"
  4104. },
  4105. "funding": {
  4106. "url": "https://github.com/sponsors/ljharb"
  4107. }
  4108. },
  4109. "node_modules/is-symbol": {
  4110. "version": "1.1.1",
  4111. "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz",
  4112. "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==",
  4113. "license": "MIT",
  4114. "dependencies": {
  4115. "call-bound": "^1.0.2",
  4116. "has-symbols": "^1.1.0",
  4117. "safe-regex-test": "^1.1.0"
  4118. },
  4119. "engines": {
  4120. "node": ">= 0.4"
  4121. },
  4122. "funding": {
  4123. "url": "https://github.com/sponsors/ljharb"
  4124. }
  4125. },
  4126. "node_modules/is-typed-array": {
  4127. "version": "1.1.15",
  4128. "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz",
  4129. "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==",
  4130. "license": "MIT",
  4131. "dependencies": {
  4132. "which-typed-array": "^1.1.16"
  4133. },
  4134. "engines": {
  4135. "node": ">= 0.4"
  4136. },
  4137. "funding": {
  4138. "url": "https://github.com/sponsors/ljharb"
  4139. }
  4140. },
  4141. "node_modules/is-weakmap": {
  4142. "version": "2.0.2",
  4143. "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz",
  4144. "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==",
  4145. "license": "MIT",
  4146. "engines": {
  4147. "node": ">= 0.4"
  4148. },
  4149. "funding": {
  4150. "url": "https://github.com/sponsors/ljharb"
  4151. }
  4152. },
  4153. "node_modules/is-weakref": {
  4154. "version": "1.1.1",
  4155. "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz",
  4156. "integrity": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==",
  4157. "license": "MIT",
  4158. "dependencies": {
  4159. "call-bound": "^1.0.3"
  4160. },
  4161. "engines": {
  4162. "node": ">= 0.4"
  4163. },
  4164. "funding": {
  4165. "url": "https://github.com/sponsors/ljharb"
  4166. }
  4167. },
  4168. "node_modules/is-weakset": {
  4169. "version": "2.0.4",
  4170. "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz",
  4171. "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==",
  4172. "license": "MIT",
  4173. "dependencies": {
  4174. "call-bound": "^1.0.3",
  4175. "get-intrinsic": "^1.2.6"
  4176. },
  4177. "engines": {
  4178. "node": ">= 0.4"
  4179. },
  4180. "funding": {
  4181. "url": "https://github.com/sponsors/ljharb"
  4182. }
  4183. },
  4184. "node_modules/is-what": {
  4185. "version": "5.5.0",
  4186. "resolved": "https://registry.npmjs.org/is-what/-/is-what-5.5.0.tgz",
  4187. "integrity": "sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw==",
  4188. "license": "MIT",
  4189. "engines": {
  4190. "node": ">=18"
  4191. },
  4192. "funding": {
  4193. "url": "https://github.com/sponsors/mesqueeb"
  4194. }
  4195. },
  4196. "node_modules/isarray": {
  4197. "version": "2.0.5",
  4198. "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz",
  4199. "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==",
  4200. "license": "MIT"
  4201. },
  4202. "node_modules/isexe": {
  4203. "version": "2.0.0",
  4204. "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
  4205. "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="
  4206. },
  4207. "node_modules/iterator.prototype": {
  4208. "version": "1.1.5",
  4209. "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.5.tgz",
  4210. "integrity": "sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==",
  4211. "license": "MIT",
  4212. "dependencies": {
  4213. "define-data-property": "^1.1.4",
  4214. "es-object-atoms": "^1.0.0",
  4215. "get-intrinsic": "^1.2.6",
  4216. "get-proto": "^1.0.0",
  4217. "has-symbols": "^1.1.0",
  4218. "set-function-name": "^2.0.2"
  4219. },
  4220. "engines": {
  4221. "node": ">= 0.4"
  4222. }
  4223. },
  4224. "node_modules/js-tokens": {
  4225. "version": "4.0.0",
  4226. "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
  4227. "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
  4228. },
  4229. "node_modules/js-yaml": {
  4230. "version": "4.1.1",
  4231. "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz",
  4232. "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==",
  4233. "license": "MIT",
  4234. "dependencies": {
  4235. "argparse": "^2.0.1"
  4236. },
  4237. "bin": {
  4238. "js-yaml": "bin/js-yaml.js"
  4239. }
  4240. },
  4241. "node_modules/jsesc": {
  4242. "version": "3.1.0",
  4243. "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
  4244. "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
  4245. "license": "MIT",
  4246. "bin": {
  4247. "jsesc": "bin/jsesc"
  4248. },
  4249. "engines": {
  4250. "node": ">=6"
  4251. }
  4252. },
  4253. "node_modules/json-buffer": {
  4254. "version": "3.0.1",
  4255. "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
  4256. "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
  4257. "license": "MIT"
  4258. },
  4259. "node_modules/json-parse-better-errors": {
  4260. "version": "1.0.2",
  4261. "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz",
  4262. "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==",
  4263. "license": "MIT"
  4264. },
  4265. "node_modules/json-parse-even-better-errors": {
  4266. "version": "2.3.1",
  4267. "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
  4268. "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
  4269. "dev": true,
  4270. "license": "MIT"
  4271. },
  4272. "node_modules/json-schema-traverse": {
  4273. "version": "0.4.1",
  4274. "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
  4275. "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
  4276. "license": "MIT"
  4277. },
  4278. "node_modules/json-stable-stringify-without-jsonify": {
  4279. "version": "1.0.1",
  4280. "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
  4281. "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
  4282. "license": "MIT"
  4283. },
  4284. "node_modules/json5": {
  4285. "version": "1.0.2",
  4286. "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz",
  4287. "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==",
  4288. "license": "MIT",
  4289. "dependencies": {
  4290. "minimist": "^1.2.0"
  4291. },
  4292. "bin": {
  4293. "json5": "lib/cli.js"
  4294. }
  4295. },
  4296. "node_modules/jsx-ast-utils": {
  4297. "version": "3.3.5",
  4298. "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz",
  4299. "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==",
  4300. "license": "MIT",
  4301. "dependencies": {
  4302. "array-includes": "^3.1.6",
  4303. "array.prototype.flat": "^1.3.1",
  4304. "object.assign": "^4.1.4",
  4305. "object.values": "^1.1.6"
  4306. },
  4307. "engines": {
  4308. "node": ">=4.0"
  4309. }
  4310. },
  4311. "node_modules/keyv": {
  4312. "version": "4.5.4",
  4313. "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
  4314. "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
  4315. "license": "MIT",
  4316. "dependencies": {
  4317. "json-buffer": "3.0.1"
  4318. }
  4319. },
  4320. "node_modules/kind-of": {
  4321. "version": "6.0.3",
  4322. "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
  4323. "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
  4324. "dev": true,
  4325. "engines": {
  4326. "node": ">=0.10.0"
  4327. }
  4328. },
  4329. "node_modules/levn": {
  4330. "version": "0.4.1",
  4331. "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
  4332. "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
  4333. "license": "MIT",
  4334. "dependencies": {
  4335. "prelude-ls": "^1.2.1",
  4336. "type-check": "~0.4.0"
  4337. },
  4338. "engines": {
  4339. "node": ">= 0.8.0"
  4340. }
  4341. },
  4342. "node_modules/lightningcss": {
  4343. "version": "1.32.0",
  4344. "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
  4345. "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
  4346. "license": "MPL-2.0",
  4347. "dependencies": {
  4348. "detect-libc": "^2.0.3"
  4349. },
  4350. "engines": {
  4351. "node": ">= 12.0.0"
  4352. },
  4353. "funding": {
  4354. "type": "opencollective",
  4355. "url": "https://opencollective.com/parcel"
  4356. },
  4357. "optionalDependencies": {
  4358. "lightningcss-android-arm64": "1.32.0",
  4359. "lightningcss-darwin-arm64": "1.32.0",
  4360. "lightningcss-darwin-x64": "1.32.0",
  4361. "lightningcss-freebsd-x64": "1.32.0",
  4362. "lightningcss-linux-arm-gnueabihf": "1.32.0",
  4363. "lightningcss-linux-arm64-gnu": "1.32.0",
  4364. "lightningcss-linux-arm64-musl": "1.32.0",
  4365. "lightningcss-linux-x64-gnu": "1.32.0",
  4366. "lightningcss-linux-x64-musl": "1.32.0",
  4367. "lightningcss-win32-arm64-msvc": "1.32.0",
  4368. "lightningcss-win32-x64-msvc": "1.32.0"
  4369. }
  4370. },
  4371. "node_modules/lightningcss-android-arm64": {
  4372. "version": "1.32.0",
  4373. "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
  4374. "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
  4375. "cpu": [
  4376. "arm64"
  4377. ],
  4378. "license": "MPL-2.0",
  4379. "optional": true,
  4380. "os": [
  4381. "android"
  4382. ],
  4383. "engines": {
  4384. "node": ">= 12.0.0"
  4385. },
  4386. "funding": {
  4387. "type": "opencollective",
  4388. "url": "https://opencollective.com/parcel"
  4389. }
  4390. },
  4391. "node_modules/lightningcss-darwin-arm64": {
  4392. "version": "1.32.0",
  4393. "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
  4394. "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
  4395. "cpu": [
  4396. "arm64"
  4397. ],
  4398. "license": "MPL-2.0",
  4399. "optional": true,
  4400. "os": [
  4401. "darwin"
  4402. ],
  4403. "engines": {
  4404. "node": ">= 12.0.0"
  4405. },
  4406. "funding": {
  4407. "type": "opencollective",
  4408. "url": "https://opencollective.com/parcel"
  4409. }
  4410. },
  4411. "node_modules/lightningcss-darwin-x64": {
  4412. "version": "1.32.0",
  4413. "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
  4414. "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
  4415. "cpu": [
  4416. "x64"
  4417. ],
  4418. "license": "MPL-2.0",
  4419. "optional": true,
  4420. "os": [
  4421. "darwin"
  4422. ],
  4423. "engines": {
  4424. "node": ">= 12.0.0"
  4425. },
  4426. "funding": {
  4427. "type": "opencollective",
  4428. "url": "https://opencollective.com/parcel"
  4429. }
  4430. },
  4431. "node_modules/lightningcss-freebsd-x64": {
  4432. "version": "1.32.0",
  4433. "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
  4434. "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
  4435. "cpu": [
  4436. "x64"
  4437. ],
  4438. "license": "MPL-2.0",
  4439. "optional": true,
  4440. "os": [
  4441. "freebsd"
  4442. ],
  4443. "engines": {
  4444. "node": ">= 12.0.0"
  4445. },
  4446. "funding": {
  4447. "type": "opencollective",
  4448. "url": "https://opencollective.com/parcel"
  4449. }
  4450. },
  4451. "node_modules/lightningcss-linux-arm-gnueabihf": {
  4452. "version": "1.32.0",
  4453. "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
  4454. "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
  4455. "cpu": [
  4456. "arm"
  4457. ],
  4458. "license": "MPL-2.0",
  4459. "optional": true,
  4460. "os": [
  4461. "linux"
  4462. ],
  4463. "engines": {
  4464. "node": ">= 12.0.0"
  4465. },
  4466. "funding": {
  4467. "type": "opencollective",
  4468. "url": "https://opencollective.com/parcel"
  4469. }
  4470. },
  4471. "node_modules/lightningcss-linux-arm64-gnu": {
  4472. "version": "1.32.0",
  4473. "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
  4474. "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
  4475. "cpu": [
  4476. "arm64"
  4477. ],
  4478. "license": "MPL-2.0",
  4479. "optional": true,
  4480. "os": [
  4481. "linux"
  4482. ],
  4483. "engines": {
  4484. "node": ">= 12.0.0"
  4485. },
  4486. "funding": {
  4487. "type": "opencollective",
  4488. "url": "https://opencollective.com/parcel"
  4489. }
  4490. },
  4491. "node_modules/lightningcss-linux-arm64-musl": {
  4492. "version": "1.32.0",
  4493. "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
  4494. "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
  4495. "cpu": [
  4496. "arm64"
  4497. ],
  4498. "license": "MPL-2.0",
  4499. "optional": true,
  4500. "os": [
  4501. "linux"
  4502. ],
  4503. "engines": {
  4504. "node": ">= 12.0.0"
  4505. },
  4506. "funding": {
  4507. "type": "opencollective",
  4508. "url": "https://opencollective.com/parcel"
  4509. }
  4510. },
  4511. "node_modules/lightningcss-linux-x64-gnu": {
  4512. "version": "1.32.0",
  4513. "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
  4514. "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
  4515. "cpu": [
  4516. "x64"
  4517. ],
  4518. "license": "MPL-2.0",
  4519. "optional": true,
  4520. "os": [
  4521. "linux"
  4522. ],
  4523. "engines": {
  4524. "node": ">= 12.0.0"
  4525. },
  4526. "funding": {
  4527. "type": "opencollective",
  4528. "url": "https://opencollective.com/parcel"
  4529. }
  4530. },
  4531. "node_modules/lightningcss-linux-x64-musl": {
  4532. "version": "1.32.0",
  4533. "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
  4534. "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
  4535. "cpu": [
  4536. "x64"
  4537. ],
  4538. "license": "MPL-2.0",
  4539. "optional": true,
  4540. "os": [
  4541. "linux"
  4542. ],
  4543. "engines": {
  4544. "node": ">= 12.0.0"
  4545. },
  4546. "funding": {
  4547. "type": "opencollective",
  4548. "url": "https://opencollective.com/parcel"
  4549. }
  4550. },
  4551. "node_modules/lightningcss-win32-arm64-msvc": {
  4552. "version": "1.32.0",
  4553. "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
  4554. "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
  4555. "cpu": [
  4556. "arm64"
  4557. ],
  4558. "license": "MPL-2.0",
  4559. "optional": true,
  4560. "os": [
  4561. "win32"
  4562. ],
  4563. "engines": {
  4564. "node": ">= 12.0.0"
  4565. },
  4566. "funding": {
  4567. "type": "opencollective",
  4568. "url": "https://opencollective.com/parcel"
  4569. }
  4570. },
  4571. "node_modules/lightningcss-win32-x64-msvc": {
  4572. "version": "1.32.0",
  4573. "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
  4574. "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
  4575. "cpu": [
  4576. "x64"
  4577. ],
  4578. "license": "MPL-2.0",
  4579. "optional": true,
  4580. "os": [
  4581. "win32"
  4582. ],
  4583. "engines": {
  4584. "node": ">= 12.0.0"
  4585. },
  4586. "funding": {
  4587. "type": "opencollective",
  4588. "url": "https://opencollective.com/parcel"
  4589. }
  4590. },
  4591. "node_modules/lines-and-columns": {
  4592. "version": "1.2.4",
  4593. "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
  4594. "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
  4595. "dev": true,
  4596. "license": "MIT"
  4597. },
  4598. "node_modules/load-json-file": {
  4599. "version": "5.3.0",
  4600. "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-5.3.0.tgz",
  4601. "integrity": "sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==",
  4602. "license": "MIT",
  4603. "dependencies": {
  4604. "graceful-fs": "^4.1.15",
  4605. "parse-json": "^4.0.0",
  4606. "pify": "^4.0.1",
  4607. "strip-bom": "^3.0.0",
  4608. "type-fest": "^0.3.0"
  4609. },
  4610. "engines": {
  4611. "node": ">=6"
  4612. }
  4613. },
  4614. "node_modules/load-json-file/node_modules/parse-json": {
  4615. "version": "4.0.0",
  4616. "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz",
  4617. "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==",
  4618. "license": "MIT",
  4619. "dependencies": {
  4620. "error-ex": "^1.3.1",
  4621. "json-parse-better-errors": "^1.0.1"
  4622. },
  4623. "engines": {
  4624. "node": ">=4"
  4625. }
  4626. },
  4627. "node_modules/load-json-file/node_modules/type-fest": {
  4628. "version": "0.3.1",
  4629. "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz",
  4630. "integrity": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==",
  4631. "license": "(MIT OR CC0-1.0)",
  4632. "engines": {
  4633. "node": ">=6"
  4634. }
  4635. },
  4636. "node_modules/local-pkg": {
  4637. "version": "1.1.2",
  4638. "resolved": "https://registry.npmjs.org/local-pkg/-/local-pkg-1.1.2.tgz",
  4639. "integrity": "sha512-arhlxbFRmoQHl33a0Zkle/YWlmNwoyt6QNZEIJcqNbdrsix5Lvc4HyyI3EnwxTYlZYc32EbYrQ8SzEZ7dqgg9A==",
  4640. "license": "MIT",
  4641. "dependencies": {
  4642. "mlly": "^1.7.4",
  4643. "pkg-types": "^2.3.0",
  4644. "quansync": "^0.2.11"
  4645. },
  4646. "engines": {
  4647. "node": ">=14"
  4648. },
  4649. "funding": {
  4650. "url": "https://github.com/sponsors/antfu"
  4651. }
  4652. },
  4653. "node_modules/locate-path": {
  4654. "version": "6.0.0",
  4655. "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
  4656. "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
  4657. "license": "MIT",
  4658. "dependencies": {
  4659. "p-locate": "^5.0.0"
  4660. },
  4661. "engines": {
  4662. "node": ">=10"
  4663. },
  4664. "funding": {
  4665. "url": "https://github.com/sponsors/sindresorhus"
  4666. }
  4667. },
  4668. "node_modules/lodash.merge": {
  4669. "version": "4.6.2",
  4670. "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
  4671. "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
  4672. "license": "MIT"
  4673. },
  4674. "node_modules/lodash.truncate": {
  4675. "version": "4.4.2",
  4676. "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz",
  4677. "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==",
  4678. "dev": true
  4679. },
  4680. "node_modules/loose-envify": {
  4681. "version": "1.4.0",
  4682. "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
  4683. "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
  4684. "license": "MIT",
  4685. "dependencies": {
  4686. "js-tokens": "^3.0.0 || ^4.0.0"
  4687. },
  4688. "bin": {
  4689. "loose-envify": "cli.js"
  4690. }
  4691. },
  4692. "node_modules/magic-string": {
  4693. "version": "0.30.21",
  4694. "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
  4695. "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
  4696. "license": "MIT",
  4697. "dependencies": {
  4698. "@jridgewell/sourcemap-codec": "^1.5.5"
  4699. }
  4700. },
  4701. "node_modules/magic-string-ast": {
  4702. "version": "1.0.3",
  4703. "resolved": "https://registry.npmjs.org/magic-string-ast/-/magic-string-ast-1.0.3.tgz",
  4704. "integrity": "sha512-CvkkH1i81zl7mmb94DsRiFeG9V2fR2JeuK8yDgS8oiZSFa++wWLEgZ5ufEOyLHbvSbD1gTRKv9NdX69Rnvr9JA==",
  4705. "license": "MIT",
  4706. "dependencies": {
  4707. "magic-string": "^0.30.19"
  4708. },
  4709. "engines": {
  4710. "node": ">=20.19.0"
  4711. },
  4712. "funding": {
  4713. "url": "https://github.com/sponsors/sxzz"
  4714. }
  4715. },
  4716. "node_modules/math-intrinsics": {
  4717. "version": "1.1.0",
  4718. "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
  4719. "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
  4720. "license": "MIT",
  4721. "engines": {
  4722. "node": ">= 0.4"
  4723. }
  4724. },
  4725. "node_modules/mathml-tag-names": {
  4726. "version": "4.0.0",
  4727. "resolved": "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-4.0.0.tgz",
  4728. "integrity": "sha512-aa6AU2Pcx0VP/XWnh8IGL0SYSgQHDT6Ucror2j2mXeFAlN3ahaNs8EZtG1YiticMkSLj3Gt6VPFfZogt7G5iFQ==",
  4729. "dev": true,
  4730. "license": "MIT",
  4731. "funding": {
  4732. "type": "github",
  4733. "url": "https://github.com/sponsors/wooorm"
  4734. }
  4735. },
  4736. "node_modules/mdn-data": {
  4737. "version": "2.27.1",
  4738. "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.27.1.tgz",
  4739. "integrity": "sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==",
  4740. "dev": true,
  4741. "license": "CC0-1.0"
  4742. },
  4743. "node_modules/meow": {
  4744. "version": "14.1.0",
  4745. "resolved": "https://registry.npmjs.org/meow/-/meow-14.1.0.tgz",
  4746. "integrity": "sha512-EDYo6VlmtnumlcBCbh1gLJ//9jvM/ndXHfVXIFrZVr6fGcwTUyCTFNTLCKuY3ffbK8L/+3Mzqnd58RojiZqHVw==",
  4747. "dev": true,
  4748. "license": "MIT",
  4749. "engines": {
  4750. "node": ">=20"
  4751. },
  4752. "funding": {
  4753. "url": "https://github.com/sponsors/sindresorhus"
  4754. }
  4755. },
  4756. "node_modules/merge2": {
  4757. "version": "1.4.1",
  4758. "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
  4759. "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
  4760. "dev": true,
  4761. "license": "MIT",
  4762. "engines": {
  4763. "node": ">= 8"
  4764. }
  4765. },
  4766. "node_modules/micromatch": {
  4767. "version": "4.0.8",
  4768. "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
  4769. "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
  4770. "dev": true,
  4771. "license": "MIT",
  4772. "dependencies": {
  4773. "braces": "^3.0.3",
  4774. "picomatch": "^2.3.1"
  4775. },
  4776. "engines": {
  4777. "node": ">=8.6"
  4778. }
  4779. },
  4780. "node_modules/minimatch": {
  4781. "version": "3.1.5",
  4782. "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz",
  4783. "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==",
  4784. "license": "ISC",
  4785. "dependencies": {
  4786. "brace-expansion": "^1.1.7"
  4787. },
  4788. "engines": {
  4789. "node": "*"
  4790. }
  4791. },
  4792. "node_modules/minimist": {
  4793. "version": "1.2.8",
  4794. "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
  4795. "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
  4796. "license": "MIT",
  4797. "funding": {
  4798. "url": "https://github.com/sponsors/ljharb"
  4799. }
  4800. },
  4801. "node_modules/mitt": {
  4802. "version": "3.0.1",
  4803. "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz",
  4804. "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==",
  4805. "license": "MIT"
  4806. },
  4807. "node_modules/mlly": {
  4808. "version": "1.8.2",
  4809. "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.8.2.tgz",
  4810. "integrity": "sha512-d+ObxMQFmbt10sretNDytwt85VrbkhhUA/JBGm1MPaWJ65Cl4wOgLaB1NYvJSZ0Ef03MMEU/0xpPMXUIQ29UfA==",
  4811. "license": "MIT",
  4812. "dependencies": {
  4813. "acorn": "^8.16.0",
  4814. "pathe": "^2.0.3",
  4815. "pkg-types": "^1.3.1",
  4816. "ufo": "^1.6.3"
  4817. }
  4818. },
  4819. "node_modules/mlly/node_modules/confbox": {
  4820. "version": "0.1.8",
  4821. "resolved": "https://registry.npmjs.org/confbox/-/confbox-0.1.8.tgz",
  4822. "integrity": "sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==",
  4823. "license": "MIT"
  4824. },
  4825. "node_modules/mlly/node_modules/pkg-types": {
  4826. "version": "1.3.1",
  4827. "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.3.1.tgz",
  4828. "integrity": "sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==",
  4829. "license": "MIT",
  4830. "dependencies": {
  4831. "confbox": "^0.1.8",
  4832. "mlly": "^1.7.4",
  4833. "pathe": "^2.0.1"
  4834. }
  4835. },
  4836. "node_modules/ms": {
  4837. "version": "2.1.3",
  4838. "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
  4839. "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
  4840. "license": "MIT"
  4841. },
  4842. "node_modules/muggle-string": {
  4843. "version": "0.4.1",
  4844. "resolved": "https://registry.npmjs.org/muggle-string/-/muggle-string-0.4.1.tgz",
  4845. "integrity": "sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==",
  4846. "license": "MIT"
  4847. },
  4848. "node_modules/nanoid": {
  4849. "version": "3.3.11",
  4850. "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
  4851. "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
  4852. "funding": [
  4853. {
  4854. "type": "github",
  4855. "url": "https://github.com/sponsors/ai"
  4856. }
  4857. ],
  4858. "license": "MIT",
  4859. "bin": {
  4860. "nanoid": "bin/nanoid.cjs"
  4861. },
  4862. "engines": {
  4863. "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
  4864. }
  4865. },
  4866. "node_modules/natural-compare": {
  4867. "version": "1.4.0",
  4868. "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
  4869. "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
  4870. "license": "MIT"
  4871. },
  4872. "node_modules/normalize-path": {
  4873. "version": "3.0.0",
  4874. "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
  4875. "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
  4876. "dev": true,
  4877. "engines": {
  4878. "node": ">=0.10.0"
  4879. }
  4880. },
  4881. "node_modules/object-assign": {
  4882. "version": "4.1.1",
  4883. "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
  4884. "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
  4885. "license": "MIT",
  4886. "engines": {
  4887. "node": ">=0.10.0"
  4888. }
  4889. },
  4890. "node_modules/object-inspect": {
  4891. "version": "1.13.4",
  4892. "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
  4893. "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
  4894. "license": "MIT",
  4895. "engines": {
  4896. "node": ">= 0.4"
  4897. },
  4898. "funding": {
  4899. "url": "https://github.com/sponsors/ljharb"
  4900. }
  4901. },
  4902. "node_modules/object-keys": {
  4903. "version": "1.1.1",
  4904. "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
  4905. "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
  4906. "license": "MIT",
  4907. "engines": {
  4908. "node": ">= 0.4"
  4909. }
  4910. },
  4911. "node_modules/object.assign": {
  4912. "version": "4.1.7",
  4913. "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz",
  4914. "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==",
  4915. "license": "MIT",
  4916. "dependencies": {
  4917. "call-bind": "^1.0.8",
  4918. "call-bound": "^1.0.3",
  4919. "define-properties": "^1.2.1",
  4920. "es-object-atoms": "^1.0.0",
  4921. "has-symbols": "^1.1.0",
  4922. "object-keys": "^1.1.1"
  4923. },
  4924. "engines": {
  4925. "node": ">= 0.4"
  4926. },
  4927. "funding": {
  4928. "url": "https://github.com/sponsors/ljharb"
  4929. }
  4930. },
  4931. "node_modules/object.entries": {
  4932. "version": "1.1.9",
  4933. "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.9.tgz",
  4934. "integrity": "sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==",
  4935. "license": "MIT",
  4936. "dependencies": {
  4937. "call-bind": "^1.0.8",
  4938. "call-bound": "^1.0.4",
  4939. "define-properties": "^1.2.1",
  4940. "es-object-atoms": "^1.1.1"
  4941. },
  4942. "engines": {
  4943. "node": ">= 0.4"
  4944. }
  4945. },
  4946. "node_modules/object.fromentries": {
  4947. "version": "2.0.8",
  4948. "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz",
  4949. "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==",
  4950. "license": "MIT",
  4951. "dependencies": {
  4952. "call-bind": "^1.0.7",
  4953. "define-properties": "^1.2.1",
  4954. "es-abstract": "^1.23.2",
  4955. "es-object-atoms": "^1.0.0"
  4956. },
  4957. "engines": {
  4958. "node": ">= 0.4"
  4959. },
  4960. "funding": {
  4961. "url": "https://github.com/sponsors/ljharb"
  4962. }
  4963. },
  4964. "node_modules/object.groupby": {
  4965. "version": "1.0.3",
  4966. "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz",
  4967. "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==",
  4968. "license": "MIT",
  4969. "dependencies": {
  4970. "call-bind": "^1.0.7",
  4971. "define-properties": "^1.2.1",
  4972. "es-abstract": "^1.23.2"
  4973. },
  4974. "engines": {
  4975. "node": ">= 0.4"
  4976. }
  4977. },
  4978. "node_modules/object.values": {
  4979. "version": "1.2.1",
  4980. "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz",
  4981. "integrity": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==",
  4982. "license": "MIT",
  4983. "dependencies": {
  4984. "call-bind": "^1.0.8",
  4985. "call-bound": "^1.0.3",
  4986. "define-properties": "^1.2.1",
  4987. "es-object-atoms": "^1.0.0"
  4988. },
  4989. "engines": {
  4990. "node": ">= 0.4"
  4991. },
  4992. "funding": {
  4993. "url": "https://github.com/sponsors/ljharb"
  4994. }
  4995. },
  4996. "node_modules/obug": {
  4997. "version": "2.1.1",
  4998. "resolved": "https://registry.npmjs.org/obug/-/obug-2.1.1.tgz",
  4999. "integrity": "sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==",
  5000. "funding": [
  5001. "https://github.com/sponsors/sxzz",
  5002. "https://opencollective.com/debug"
  5003. ],
  5004. "license": "MIT"
  5005. },
  5006. "node_modules/once": {
  5007. "version": "1.4.0",
  5008. "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
  5009. "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
  5010. "license": "ISC",
  5011. "dependencies": {
  5012. "wrappy": "1"
  5013. }
  5014. },
  5015. "node_modules/optionator": {
  5016. "version": "0.9.4",
  5017. "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz",
  5018. "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==",
  5019. "license": "MIT",
  5020. "dependencies": {
  5021. "deep-is": "^0.1.3",
  5022. "fast-levenshtein": "^2.0.6",
  5023. "levn": "^0.4.1",
  5024. "prelude-ls": "^1.2.1",
  5025. "type-check": "^0.4.0",
  5026. "word-wrap": "^1.2.5"
  5027. },
  5028. "engines": {
  5029. "node": ">= 0.8.0"
  5030. }
  5031. },
  5032. "node_modules/own-keys": {
  5033. "version": "1.0.1",
  5034. "resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz",
  5035. "integrity": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==",
  5036. "license": "MIT",
  5037. "dependencies": {
  5038. "get-intrinsic": "^1.2.6",
  5039. "object-keys": "^1.1.1",
  5040. "safe-push-apply": "^1.0.0"
  5041. },
  5042. "engines": {
  5043. "node": ">= 0.4"
  5044. },
  5045. "funding": {
  5046. "url": "https://github.com/sponsors/ljharb"
  5047. }
  5048. },
  5049. "node_modules/p-limit": {
  5050. "version": "3.1.0",
  5051. "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
  5052. "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
  5053. "license": "MIT",
  5054. "dependencies": {
  5055. "yocto-queue": "^0.1.0"
  5056. },
  5057. "engines": {
  5058. "node": ">=10"
  5059. },
  5060. "funding": {
  5061. "url": "https://github.com/sponsors/sindresorhus"
  5062. }
  5063. },
  5064. "node_modules/p-locate": {
  5065. "version": "5.0.0",
  5066. "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
  5067. "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
  5068. "license": "MIT",
  5069. "dependencies": {
  5070. "p-limit": "^3.0.2"
  5071. },
  5072. "engines": {
  5073. "node": ">=10"
  5074. },
  5075. "funding": {
  5076. "url": "https://github.com/sponsors/sindresorhus"
  5077. }
  5078. },
  5079. "node_modules/p-try": {
  5080. "version": "2.2.0",
  5081. "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
  5082. "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
  5083. "license": "MIT",
  5084. "engines": {
  5085. "node": ">=6"
  5086. }
  5087. },
  5088. "node_modules/parent-module": {
  5089. "version": "1.0.1",
  5090. "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
  5091. "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
  5092. "dependencies": {
  5093. "callsites": "^3.0.0"
  5094. },
  5095. "engines": {
  5096. "node": ">=6"
  5097. }
  5098. },
  5099. "node_modules/parse-json": {
  5100. "version": "5.2.0",
  5101. "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
  5102. "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
  5103. "dev": true,
  5104. "license": "MIT",
  5105. "dependencies": {
  5106. "@babel/code-frame": "^7.0.0",
  5107. "error-ex": "^1.3.1",
  5108. "json-parse-even-better-errors": "^2.3.0",
  5109. "lines-and-columns": "^1.1.6"
  5110. },
  5111. "engines": {
  5112. "node": ">=8"
  5113. },
  5114. "funding": {
  5115. "url": "https://github.com/sponsors/sindresorhus"
  5116. }
  5117. },
  5118. "node_modules/path-exists": {
  5119. "version": "4.0.0",
  5120. "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
  5121. "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
  5122. "license": "MIT",
  5123. "engines": {
  5124. "node": ">=8"
  5125. }
  5126. },
  5127. "node_modules/path-is-absolute": {
  5128. "version": "1.0.1",
  5129. "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
  5130. "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
  5131. "license": "MIT",
  5132. "engines": {
  5133. "node": ">=0.10.0"
  5134. }
  5135. },
  5136. "node_modules/path-key": {
  5137. "version": "3.1.1",
  5138. "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
  5139. "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
  5140. "license": "MIT",
  5141. "engines": {
  5142. "node": ">=8"
  5143. }
  5144. },
  5145. "node_modules/path-parse": {
  5146. "version": "1.0.7",
  5147. "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
  5148. "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
  5149. "license": "MIT"
  5150. },
  5151. "node_modules/pathe": {
  5152. "version": "2.0.3",
  5153. "resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz",
  5154. "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==",
  5155. "license": "MIT"
  5156. },
  5157. "node_modules/perfect-debounce": {
  5158. "version": "2.1.0",
  5159. "resolved": "https://registry.npmjs.org/perfect-debounce/-/perfect-debounce-2.1.0.tgz",
  5160. "integrity": "sha512-LjgdTytVFXeUgtHZr9WYViYSM/g8MkcTPYDlPa3cDqMirHjKiSZPYd6DoL7pK8AJQr+uWkQvCjHNdiMqsrJs+g==",
  5161. "license": "MIT"
  5162. },
  5163. "node_modules/picocolors": {
  5164. "version": "1.1.1",
  5165. "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
  5166. "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
  5167. "license": "ISC"
  5168. },
  5169. "node_modules/picocrank": {
  5170. "version": "1.15.0",
  5171. "resolved": "https://registry.npmjs.org/picocrank/-/picocrank-1.15.0.tgz",
  5172. "integrity": "sha512-nKqKYTcM7ypVgiILtiBluueLrP3yJ8bcCnGUPxovbNJsZz8Y3V+poqQbKGrx9mMTHzj1qHgHxzJXqy4jwpojzA==",
  5173. "license": "ISC",
  5174. "dependencies": {
  5175. "@hugeicons/core-free-icons": "^4.1.1",
  5176. "@hugeicons/vue": "^1.0.5",
  5177. "@vitejs/plugin-vue": "^6.0.6",
  5178. "femtocrank": "^2.5.0",
  5179. "unplugin-vue-components": "^32.0.0",
  5180. "vite": "^8.0.10",
  5181. "vue": "^3.5.33",
  5182. "vue-router": "^5.0.6"
  5183. }
  5184. },
  5185. "node_modules/picomatch": {
  5186. "version": "2.3.2",
  5187. "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz",
  5188. "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==",
  5189. "dev": true,
  5190. "license": "MIT",
  5191. "engines": {
  5192. "node": ">=8.6"
  5193. },
  5194. "funding": {
  5195. "url": "https://github.com/sponsors/jonschlinkert"
  5196. }
  5197. },
  5198. "node_modules/pify": {
  5199. "version": "4.0.1",
  5200. "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz",
  5201. "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==",
  5202. "license": "MIT",
  5203. "engines": {
  5204. "node": ">=6"
  5205. }
  5206. },
  5207. "node_modules/pkg-conf": {
  5208. "version": "3.1.0",
  5209. "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-3.1.0.tgz",
  5210. "integrity": "sha512-m0OTbR/5VPNPqO1ph6Fqbj7Hv6QU7gR/tQW40ZqrL1rjgCU85W6C1bJn0BItuJqnR98PWzw7Z8hHeChD1WrgdQ==",
  5211. "license": "MIT",
  5212. "dependencies": {
  5213. "find-up": "^3.0.0",
  5214. "load-json-file": "^5.2.0"
  5215. },
  5216. "engines": {
  5217. "node": ">=6"
  5218. }
  5219. },
  5220. "node_modules/pkg-conf/node_modules/find-up": {
  5221. "version": "3.0.0",
  5222. "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
  5223. "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
  5224. "license": "MIT",
  5225. "dependencies": {
  5226. "locate-path": "^3.0.0"
  5227. },
  5228. "engines": {
  5229. "node": ">=6"
  5230. }
  5231. },
  5232. "node_modules/pkg-conf/node_modules/locate-path": {
  5233. "version": "3.0.0",
  5234. "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
  5235. "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
  5236. "license": "MIT",
  5237. "dependencies": {
  5238. "p-locate": "^3.0.0",
  5239. "path-exists": "^3.0.0"
  5240. },
  5241. "engines": {
  5242. "node": ">=6"
  5243. }
  5244. },
  5245. "node_modules/pkg-conf/node_modules/p-limit": {
  5246. "version": "2.3.0",
  5247. "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
  5248. "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
  5249. "license": "MIT",
  5250. "dependencies": {
  5251. "p-try": "^2.0.0"
  5252. },
  5253. "engines": {
  5254. "node": ">=6"
  5255. },
  5256. "funding": {
  5257. "url": "https://github.com/sponsors/sindresorhus"
  5258. }
  5259. },
  5260. "node_modules/pkg-conf/node_modules/p-locate": {
  5261. "version": "3.0.0",
  5262. "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
  5263. "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
  5264. "license": "MIT",
  5265. "dependencies": {
  5266. "p-limit": "^2.0.0"
  5267. },
  5268. "engines": {
  5269. "node": ">=6"
  5270. }
  5271. },
  5272. "node_modules/pkg-conf/node_modules/path-exists": {
  5273. "version": "3.0.0",
  5274. "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
  5275. "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==",
  5276. "license": "MIT",
  5277. "engines": {
  5278. "node": ">=4"
  5279. }
  5280. },
  5281. "node_modules/pkg-types": {
  5282. "version": "2.3.0",
  5283. "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-2.3.0.tgz",
  5284. "integrity": "sha512-SIqCzDRg0s9npO5XQ3tNZioRY1uK06lA41ynBC1YmFTmnY6FjUjVt6s4LoADmwoig1qqD0oK8h1p/8mlMx8Oig==",
  5285. "license": "MIT",
  5286. "dependencies": {
  5287. "confbox": "^0.2.2",
  5288. "exsolve": "^1.0.7",
  5289. "pathe": "^2.0.3"
  5290. }
  5291. },
  5292. "node_modules/possible-typed-array-names": {
  5293. "version": "1.1.0",
  5294. "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz",
  5295. "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==",
  5296. "license": "MIT",
  5297. "engines": {
  5298. "node": ">= 0.4"
  5299. }
  5300. },
  5301. "node_modules/postcss": {
  5302. "version": "8.5.14",
  5303. "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.14.tgz",
  5304. "integrity": "sha512-SoSL4+OSEtR99LHFZQiJLkT59C5B1amGO1NzTwj7TT1qCUgUO6hxOvzkOYxD+vMrXBM3XJIKzokoERdqQq/Zmg==",
  5305. "funding": [
  5306. {
  5307. "type": "opencollective",
  5308. "url": "https://opencollective.com/postcss/"
  5309. },
  5310. {
  5311. "type": "tidelift",
  5312. "url": "https://tidelift.com/funding/github/npm/postcss"
  5313. },
  5314. {
  5315. "type": "github",
  5316. "url": "https://github.com/sponsors/ai"
  5317. }
  5318. ],
  5319. "license": "MIT",
  5320. "dependencies": {
  5321. "nanoid": "^3.3.11",
  5322. "picocolors": "^1.1.1",
  5323. "source-map-js": "^1.2.1"
  5324. },
  5325. "engines": {
  5326. "node": "^10 || ^12 || >=14"
  5327. }
  5328. },
  5329. "node_modules/postcss-safe-parser": {
  5330. "version": "7.0.1",
  5331. "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-7.0.1.tgz",
  5332. "integrity": "sha512-0AioNCJZ2DPYz5ABT6bddIqlhgwhpHZ/l65YAYo0BCIn0xiDpsnTHz0gnoTGk0OXZW0JRs+cDwL8u/teRdz+8A==",
  5333. "dev": true,
  5334. "funding": [
  5335. {
  5336. "type": "opencollective",
  5337. "url": "https://opencollective.com/postcss/"
  5338. },
  5339. {
  5340. "type": "tidelift",
  5341. "url": "https://tidelift.com/funding/github/npm/postcss-safe-parser"
  5342. },
  5343. {
  5344. "type": "github",
  5345. "url": "https://github.com/sponsors/ai"
  5346. }
  5347. ],
  5348. "license": "MIT",
  5349. "engines": {
  5350. "node": ">=18.0"
  5351. },
  5352. "peerDependencies": {
  5353. "postcss": "^8.4.31"
  5354. }
  5355. },
  5356. "node_modules/postcss-selector-parser": {
  5357. "version": "7.1.1",
  5358. "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz",
  5359. "integrity": "sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==",
  5360. "dev": true,
  5361. "license": "MIT",
  5362. "dependencies": {
  5363. "cssesc": "^3.0.0",
  5364. "util-deprecate": "^1.0.2"
  5365. },
  5366. "engines": {
  5367. "node": ">=4"
  5368. }
  5369. },
  5370. "node_modules/postcss-value-parser": {
  5371. "version": "4.2.0",
  5372. "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
  5373. "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
  5374. "dev": true
  5375. },
  5376. "node_modules/prelude-ls": {
  5377. "version": "1.2.1",
  5378. "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
  5379. "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
  5380. "license": "MIT",
  5381. "engines": {
  5382. "node": ">= 0.8.0"
  5383. }
  5384. },
  5385. "node_modules/process": {
  5386. "version": "0.11.10",
  5387. "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
  5388. "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==",
  5389. "dev": true,
  5390. "engines": {
  5391. "node": ">= 0.6.0"
  5392. }
  5393. },
  5394. "node_modules/prop-types": {
  5395. "version": "15.8.1",
  5396. "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
  5397. "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
  5398. "license": "MIT",
  5399. "dependencies": {
  5400. "loose-envify": "^1.4.0",
  5401. "object-assign": "^4.1.1",
  5402. "react-is": "^16.13.1"
  5403. }
  5404. },
  5405. "node_modules/punycode": {
  5406. "version": "2.3.1",
  5407. "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
  5408. "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
  5409. "engines": {
  5410. "node": ">=6"
  5411. }
  5412. },
  5413. "node_modules/qified": {
  5414. "version": "0.6.0",
  5415. "resolved": "https://registry.npmjs.org/qified/-/qified-0.6.0.tgz",
  5416. "integrity": "sha512-tsSGN1x3h569ZSU1u6diwhltLyfUWDp3YbFHedapTmpBl0B3P6U3+Qptg7xu+v+1io1EwhdPyyRHYbEw0KN2FA==",
  5417. "dev": true,
  5418. "license": "MIT",
  5419. "dependencies": {
  5420. "hookified": "^1.14.0"
  5421. },
  5422. "engines": {
  5423. "node": ">=20"
  5424. }
  5425. },
  5426. "node_modules/quansync": {
  5427. "version": "0.2.11",
  5428. "resolved": "https://registry.npmjs.org/quansync/-/quansync-0.2.11.tgz",
  5429. "integrity": "sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==",
  5430. "funding": [
  5431. {
  5432. "type": "individual",
  5433. "url": "https://github.com/sponsors/antfu"
  5434. },
  5435. {
  5436. "type": "individual",
  5437. "url": "https://github.com/sponsors/sxzz"
  5438. }
  5439. ],
  5440. "license": "MIT"
  5441. },
  5442. "node_modules/queue-microtask": {
  5443. "version": "1.2.3",
  5444. "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
  5445. "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
  5446. "funding": [
  5447. {
  5448. "type": "github",
  5449. "url": "https://github.com/sponsors/feross"
  5450. },
  5451. {
  5452. "type": "patreon",
  5453. "url": "https://www.patreon.com/feross"
  5454. },
  5455. {
  5456. "type": "consulting",
  5457. "url": "https://feross.org/support"
  5458. }
  5459. ]
  5460. },
  5461. "node_modules/react-is": {
  5462. "version": "16.13.1",
  5463. "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
  5464. "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
  5465. "license": "MIT"
  5466. },
  5467. "node_modules/readdirp": {
  5468. "version": "5.0.0",
  5469. "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-5.0.0.tgz",
  5470. "integrity": "sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==",
  5471. "license": "MIT",
  5472. "engines": {
  5473. "node": ">= 20.19.0"
  5474. },
  5475. "funding": {
  5476. "type": "individual",
  5477. "url": "https://paulmillr.com/funding/"
  5478. }
  5479. },
  5480. "node_modules/reflect.getprototypeof": {
  5481. "version": "1.0.10",
  5482. "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz",
  5483. "integrity": "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==",
  5484. "license": "MIT",
  5485. "dependencies": {
  5486. "call-bind": "^1.0.8",
  5487. "define-properties": "^1.2.1",
  5488. "es-abstract": "^1.23.9",
  5489. "es-errors": "^1.3.0",
  5490. "es-object-atoms": "^1.0.0",
  5491. "get-intrinsic": "^1.2.7",
  5492. "get-proto": "^1.0.1",
  5493. "which-builtin-type": "^1.2.1"
  5494. },
  5495. "engines": {
  5496. "node": ">= 0.4"
  5497. },
  5498. "funding": {
  5499. "url": "https://github.com/sponsors/ljharb"
  5500. }
  5501. },
  5502. "node_modules/regexp.prototype.flags": {
  5503. "version": "1.5.4",
  5504. "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz",
  5505. "integrity": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==",
  5506. "license": "MIT",
  5507. "dependencies": {
  5508. "call-bind": "^1.0.8",
  5509. "define-properties": "^1.2.1",
  5510. "es-errors": "^1.3.0",
  5511. "get-proto": "^1.0.1",
  5512. "gopd": "^1.2.0",
  5513. "set-function-name": "^2.0.2"
  5514. },
  5515. "engines": {
  5516. "node": ">= 0.4"
  5517. },
  5518. "funding": {
  5519. "url": "https://github.com/sponsors/ljharb"
  5520. }
  5521. },
  5522. "node_modules/regexpp": {
  5523. "version": "3.2.0",
  5524. "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz",
  5525. "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==",
  5526. "license": "MIT",
  5527. "engines": {
  5528. "node": ">=8"
  5529. },
  5530. "funding": {
  5531. "url": "https://github.com/sponsors/mysticatea"
  5532. }
  5533. },
  5534. "node_modules/require-from-string": {
  5535. "version": "2.0.2",
  5536. "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
  5537. "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
  5538. "dev": true,
  5539. "engines": {
  5540. "node": ">=0.10.0"
  5541. }
  5542. },
  5543. "node_modules/resolve": {
  5544. "version": "1.22.11",
  5545. "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz",
  5546. "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==",
  5547. "license": "MIT",
  5548. "dependencies": {
  5549. "is-core-module": "^2.16.1",
  5550. "path-parse": "^1.0.7",
  5551. "supports-preserve-symlinks-flag": "^1.0.0"
  5552. },
  5553. "bin": {
  5554. "resolve": "bin/resolve"
  5555. },
  5556. "engines": {
  5557. "node": ">= 0.4"
  5558. },
  5559. "funding": {
  5560. "url": "https://github.com/sponsors/ljharb"
  5561. }
  5562. },
  5563. "node_modules/resolve-from": {
  5564. "version": "4.0.0",
  5565. "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
  5566. "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
  5567. "engines": {
  5568. "node": ">=4"
  5569. }
  5570. },
  5571. "node_modules/reusify": {
  5572. "version": "1.0.4",
  5573. "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
  5574. "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
  5575. "engines": {
  5576. "iojs": ">=1.0.0",
  5577. "node": ">=0.10.0"
  5578. }
  5579. },
  5580. "node_modules/rfdc": {
  5581. "version": "1.4.1",
  5582. "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz",
  5583. "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==",
  5584. "license": "MIT"
  5585. },
  5586. "node_modules/rimraf": {
  5587. "version": "3.0.2",
  5588. "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
  5589. "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
  5590. "deprecated": "Rimraf versions prior to v4 are no longer supported",
  5591. "license": "ISC",
  5592. "dependencies": {
  5593. "glob": "^7.1.3"
  5594. },
  5595. "bin": {
  5596. "rimraf": "bin.js"
  5597. },
  5598. "funding": {
  5599. "url": "https://github.com/sponsors/isaacs"
  5600. }
  5601. },
  5602. "node_modules/rolldown": {
  5603. "version": "1.0.0",
  5604. "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.0.tgz",
  5605. "integrity": "sha512-yD986aXDESFGS95spT1LAv0jssywP4npMEjmMHyN2/5+eE8qQJUype2AaKkRiLgBgyD0LFlubwAht7VmY8rGoA==",
  5606. "license": "MIT",
  5607. "dependencies": {
  5608. "@oxc-project/types": "=0.129.0",
  5609. "@rolldown/pluginutils": "1.0.0"
  5610. },
  5611. "bin": {
  5612. "rolldown": "bin/cli.mjs"
  5613. },
  5614. "engines": {
  5615. "node": "^20.19.0 || >=22.12.0"
  5616. },
  5617. "optionalDependencies": {
  5618. "@rolldown/binding-android-arm64": "1.0.0",
  5619. "@rolldown/binding-darwin-arm64": "1.0.0",
  5620. "@rolldown/binding-darwin-x64": "1.0.0",
  5621. "@rolldown/binding-freebsd-x64": "1.0.0",
  5622. "@rolldown/binding-linux-arm-gnueabihf": "1.0.0",
  5623. "@rolldown/binding-linux-arm64-gnu": "1.0.0",
  5624. "@rolldown/binding-linux-arm64-musl": "1.0.0",
  5625. "@rolldown/binding-linux-ppc64-gnu": "1.0.0",
  5626. "@rolldown/binding-linux-s390x-gnu": "1.0.0",
  5627. "@rolldown/binding-linux-x64-gnu": "1.0.0",
  5628. "@rolldown/binding-linux-x64-musl": "1.0.0",
  5629. "@rolldown/binding-openharmony-arm64": "1.0.0",
  5630. "@rolldown/binding-wasm32-wasi": "1.0.0",
  5631. "@rolldown/binding-win32-arm64-msvc": "1.0.0",
  5632. "@rolldown/binding-win32-x64-msvc": "1.0.0"
  5633. }
  5634. },
  5635. "node_modules/rolldown/node_modules/@rolldown/pluginutils": {
  5636. "version": "1.0.0",
  5637. "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0.tgz",
  5638. "integrity": "sha512-aKs/3GSWyV0mrhNmt/96/Z3yczC3yvrzYATCiCXQebBsGyYzjNdUphRVLeJQ67ySKVXRfMxt2lm12pmXvbPFQQ==",
  5639. "license": "MIT"
  5640. },
  5641. "node_modules/run-parallel": {
  5642. "version": "1.2.0",
  5643. "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
  5644. "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
  5645. "funding": [
  5646. {
  5647. "type": "github",
  5648. "url": "https://github.com/sponsors/feross"
  5649. },
  5650. {
  5651. "type": "patreon",
  5652. "url": "https://www.patreon.com/feross"
  5653. },
  5654. {
  5655. "type": "consulting",
  5656. "url": "https://feross.org/support"
  5657. }
  5658. ],
  5659. "dependencies": {
  5660. "queue-microtask": "^1.2.2"
  5661. }
  5662. },
  5663. "node_modules/safe-array-concat": {
  5664. "version": "1.1.3",
  5665. "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz",
  5666. "integrity": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==",
  5667. "license": "MIT",
  5668. "dependencies": {
  5669. "call-bind": "^1.0.8",
  5670. "call-bound": "^1.0.2",
  5671. "get-intrinsic": "^1.2.6",
  5672. "has-symbols": "^1.1.0",
  5673. "isarray": "^2.0.5"
  5674. },
  5675. "engines": {
  5676. "node": ">=0.4"
  5677. },
  5678. "funding": {
  5679. "url": "https://github.com/sponsors/ljharb"
  5680. }
  5681. },
  5682. "node_modules/safe-push-apply": {
  5683. "version": "1.0.0",
  5684. "resolved": "https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz",
  5685. "integrity": "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==",
  5686. "license": "MIT",
  5687. "dependencies": {
  5688. "es-errors": "^1.3.0",
  5689. "isarray": "^2.0.5"
  5690. },
  5691. "engines": {
  5692. "node": ">= 0.4"
  5693. },
  5694. "funding": {
  5695. "url": "https://github.com/sponsors/ljharb"
  5696. }
  5697. },
  5698. "node_modules/safe-regex-test": {
  5699. "version": "1.1.0",
  5700. "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz",
  5701. "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==",
  5702. "license": "MIT",
  5703. "dependencies": {
  5704. "call-bound": "^1.0.2",
  5705. "es-errors": "^1.3.0",
  5706. "is-regex": "^1.2.1"
  5707. },
  5708. "engines": {
  5709. "node": ">= 0.4"
  5710. },
  5711. "funding": {
  5712. "url": "https://github.com/sponsors/ljharb"
  5713. }
  5714. },
  5715. "node_modules/scule": {
  5716. "version": "1.3.0",
  5717. "resolved": "https://registry.npmjs.org/scule/-/scule-1.3.0.tgz",
  5718. "integrity": "sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==",
  5719. "license": "MIT"
  5720. },
  5721. "node_modules/semver": {
  5722. "version": "6.3.1",
  5723. "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
  5724. "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
  5725. "license": "ISC",
  5726. "bin": {
  5727. "semver": "bin/semver.js"
  5728. }
  5729. },
  5730. "node_modules/set-function-length": {
  5731. "version": "1.2.2",
  5732. "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz",
  5733. "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==",
  5734. "license": "MIT",
  5735. "dependencies": {
  5736. "define-data-property": "^1.1.4",
  5737. "es-errors": "^1.3.0",
  5738. "function-bind": "^1.1.2",
  5739. "get-intrinsic": "^1.2.4",
  5740. "gopd": "^1.0.1",
  5741. "has-property-descriptors": "^1.0.2"
  5742. },
  5743. "engines": {
  5744. "node": ">= 0.4"
  5745. }
  5746. },
  5747. "node_modules/set-function-name": {
  5748. "version": "2.0.2",
  5749. "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz",
  5750. "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==",
  5751. "license": "MIT",
  5752. "dependencies": {
  5753. "define-data-property": "^1.1.4",
  5754. "es-errors": "^1.3.0",
  5755. "functions-have-names": "^1.2.3",
  5756. "has-property-descriptors": "^1.0.2"
  5757. },
  5758. "engines": {
  5759. "node": ">= 0.4"
  5760. }
  5761. },
  5762. "node_modules/set-proto": {
  5763. "version": "1.0.0",
  5764. "resolved": "https://registry.npmjs.org/set-proto/-/set-proto-1.0.0.tgz",
  5765. "integrity": "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==",
  5766. "license": "MIT",
  5767. "dependencies": {
  5768. "dunder-proto": "^1.0.1",
  5769. "es-errors": "^1.3.0",
  5770. "es-object-atoms": "^1.0.0"
  5771. },
  5772. "engines": {
  5773. "node": ">= 0.4"
  5774. }
  5775. },
  5776. "node_modules/shebang-command": {
  5777. "version": "2.0.0",
  5778. "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
  5779. "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
  5780. "license": "MIT",
  5781. "dependencies": {
  5782. "shebang-regex": "^3.0.0"
  5783. },
  5784. "engines": {
  5785. "node": ">=8"
  5786. }
  5787. },
  5788. "node_modules/shebang-regex": {
  5789. "version": "3.0.0",
  5790. "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
  5791. "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
  5792. "license": "MIT",
  5793. "engines": {
  5794. "node": ">=8"
  5795. }
  5796. },
  5797. "node_modules/side-channel": {
  5798. "version": "1.1.0",
  5799. "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
  5800. "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
  5801. "license": "MIT",
  5802. "dependencies": {
  5803. "es-errors": "^1.3.0",
  5804. "object-inspect": "^1.13.3",
  5805. "side-channel-list": "^1.0.0",
  5806. "side-channel-map": "^1.0.1",
  5807. "side-channel-weakmap": "^1.0.2"
  5808. },
  5809. "engines": {
  5810. "node": ">= 0.4"
  5811. },
  5812. "funding": {
  5813. "url": "https://github.com/sponsors/ljharb"
  5814. }
  5815. },
  5816. "node_modules/side-channel-list": {
  5817. "version": "1.0.0",
  5818. "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
  5819. "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
  5820. "license": "MIT",
  5821. "dependencies": {
  5822. "es-errors": "^1.3.0",
  5823. "object-inspect": "^1.13.3"
  5824. },
  5825. "engines": {
  5826. "node": ">= 0.4"
  5827. },
  5828. "funding": {
  5829. "url": "https://github.com/sponsors/ljharb"
  5830. }
  5831. },
  5832. "node_modules/side-channel-map": {
  5833. "version": "1.0.1",
  5834. "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
  5835. "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
  5836. "license": "MIT",
  5837. "dependencies": {
  5838. "call-bound": "^1.0.2",
  5839. "es-errors": "^1.3.0",
  5840. "get-intrinsic": "^1.2.5",
  5841. "object-inspect": "^1.13.3"
  5842. },
  5843. "engines": {
  5844. "node": ">= 0.4"
  5845. },
  5846. "funding": {
  5847. "url": "https://github.com/sponsors/ljharb"
  5848. }
  5849. },
  5850. "node_modules/side-channel-weakmap": {
  5851. "version": "1.0.2",
  5852. "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
  5853. "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
  5854. "license": "MIT",
  5855. "dependencies": {
  5856. "call-bound": "^1.0.2",
  5857. "es-errors": "^1.3.0",
  5858. "get-intrinsic": "^1.2.5",
  5859. "object-inspect": "^1.13.3",
  5860. "side-channel-map": "^1.0.1"
  5861. },
  5862. "engines": {
  5863. "node": ">= 0.4"
  5864. },
  5865. "funding": {
  5866. "url": "https://github.com/sponsors/ljharb"
  5867. }
  5868. },
  5869. "node_modules/signal-exit": {
  5870. "version": "4.1.0",
  5871. "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
  5872. "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
  5873. "dev": true,
  5874. "license": "ISC",
  5875. "engines": {
  5876. "node": ">=14"
  5877. },
  5878. "funding": {
  5879. "url": "https://github.com/sponsors/isaacs"
  5880. }
  5881. },
  5882. "node_modules/slash": {
  5883. "version": "5.1.0",
  5884. "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz",
  5885. "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==",
  5886. "dev": true,
  5887. "license": "MIT",
  5888. "engines": {
  5889. "node": ">=14.16"
  5890. },
  5891. "funding": {
  5892. "url": "https://github.com/sponsors/sindresorhus"
  5893. }
  5894. },
  5895. "node_modules/slice-ansi": {
  5896. "version": "4.0.0",
  5897. "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz",
  5898. "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==",
  5899. "dev": true,
  5900. "dependencies": {
  5901. "ansi-styles": "^4.0.0",
  5902. "astral-regex": "^2.0.0",
  5903. "is-fullwidth-code-point": "^3.0.0"
  5904. },
  5905. "engines": {
  5906. "node": ">=10"
  5907. },
  5908. "funding": {
  5909. "url": "https://github.com/chalk/slice-ansi?sponsor=1"
  5910. }
  5911. },
  5912. "node_modules/source-map-js": {
  5913. "version": "1.2.1",
  5914. "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
  5915. "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
  5916. "license": "BSD-3-Clause",
  5917. "engines": {
  5918. "node": ">=0.10.0"
  5919. }
  5920. },
  5921. "node_modules/speakingurl": {
  5922. "version": "14.0.1",
  5923. "resolved": "https://registry.npmjs.org/speakingurl/-/speakingurl-14.0.1.tgz",
  5924. "integrity": "sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==",
  5925. "license": "BSD-3-Clause",
  5926. "engines": {
  5927. "node": ">=0.10.0"
  5928. }
  5929. },
  5930. "node_modules/standard": {
  5931. "version": "17.1.2",
  5932. "resolved": "https://registry.npmjs.org/standard/-/standard-17.1.2.tgz",
  5933. "integrity": "sha512-WLm12WoXveKkvnPnPnaFUUHuOB2cUdAsJ4AiGHL2G0UNMrcRAWY2WriQaV8IQ3oRmYr0AWUbLNr94ekYFAHOrA==",
  5934. "funding": [
  5935. {
  5936. "type": "github",
  5937. "url": "https://github.com/sponsors/feross"
  5938. },
  5939. {
  5940. "type": "patreon",
  5941. "url": "https://www.patreon.com/feross"
  5942. },
  5943. {
  5944. "type": "consulting",
  5945. "url": "https://feross.org/support"
  5946. }
  5947. ],
  5948. "license": "MIT",
  5949. "dependencies": {
  5950. "eslint": "^8.41.0",
  5951. "eslint-config-standard": "17.1.0",
  5952. "eslint-config-standard-jsx": "^11.0.0",
  5953. "eslint-plugin-import": "^2.27.5",
  5954. "eslint-plugin-n": "^15.7.0",
  5955. "eslint-plugin-promise": "^6.1.1",
  5956. "eslint-plugin-react": "^7.36.1",
  5957. "standard-engine": "^15.1.0",
  5958. "version-guard": "^1.1.1"
  5959. },
  5960. "bin": {
  5961. "standard": "bin/cmd.cjs"
  5962. },
  5963. "engines": {
  5964. "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
  5965. }
  5966. },
  5967. "node_modules/standard-engine": {
  5968. "version": "15.1.0",
  5969. "resolved": "https://registry.npmjs.org/standard-engine/-/standard-engine-15.1.0.tgz",
  5970. "integrity": "sha512-VHysfoyxFu/ukT+9v49d4BRXIokFRZuH3z1VRxzFArZdjSCFpro6rEIU3ji7e4AoAtuSfKBkiOmsrDqKW5ZSRw==",
  5971. "funding": [
  5972. {
  5973. "type": "github",
  5974. "url": "https://github.com/sponsors/feross"
  5975. },
  5976. {
  5977. "type": "patreon",
  5978. "url": "https://www.patreon.com/feross"
  5979. },
  5980. {
  5981. "type": "consulting",
  5982. "url": "https://feross.org/support"
  5983. }
  5984. ],
  5985. "license": "MIT",
  5986. "dependencies": {
  5987. "get-stdin": "^8.0.0",
  5988. "minimist": "^1.2.6",
  5989. "pkg-conf": "^3.1.0",
  5990. "xdg-basedir": "^4.0.0"
  5991. },
  5992. "engines": {
  5993. "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
  5994. }
  5995. },
  5996. "node_modules/stop-iteration-iterator": {
  5997. "version": "1.1.0",
  5998. "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz",
  5999. "integrity": "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==",
  6000. "license": "MIT",
  6001. "dependencies": {
  6002. "es-errors": "^1.3.0",
  6003. "internal-slot": "^1.1.0"
  6004. },
  6005. "engines": {
  6006. "node": ">= 0.4"
  6007. }
  6008. },
  6009. "node_modules/string-width": {
  6010. "version": "4.2.3",
  6011. "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
  6012. "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
  6013. "dev": true,
  6014. "dependencies": {
  6015. "emoji-regex": "^8.0.0",
  6016. "is-fullwidth-code-point": "^3.0.0",
  6017. "strip-ansi": "^6.0.1"
  6018. },
  6019. "engines": {
  6020. "node": ">=8"
  6021. }
  6022. },
  6023. "node_modules/string.prototype.matchall": {
  6024. "version": "4.0.12",
  6025. "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.12.tgz",
  6026. "integrity": "sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==",
  6027. "license": "MIT",
  6028. "dependencies": {
  6029. "call-bind": "^1.0.8",
  6030. "call-bound": "^1.0.3",
  6031. "define-properties": "^1.2.1",
  6032. "es-abstract": "^1.23.6",
  6033. "es-errors": "^1.3.0",
  6034. "es-object-atoms": "^1.0.0",
  6035. "get-intrinsic": "^1.2.6",
  6036. "gopd": "^1.2.0",
  6037. "has-symbols": "^1.1.0",
  6038. "internal-slot": "^1.1.0",
  6039. "regexp.prototype.flags": "^1.5.3",
  6040. "set-function-name": "^2.0.2",
  6041. "side-channel": "^1.1.0"
  6042. },
  6043. "engines": {
  6044. "node": ">= 0.4"
  6045. },
  6046. "funding": {
  6047. "url": "https://github.com/sponsors/ljharb"
  6048. }
  6049. },
  6050. "node_modules/string.prototype.repeat": {
  6051. "version": "1.0.0",
  6052. "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz",
  6053. "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==",
  6054. "license": "MIT",
  6055. "dependencies": {
  6056. "define-properties": "^1.1.3",
  6057. "es-abstract": "^1.17.5"
  6058. }
  6059. },
  6060. "node_modules/string.prototype.trim": {
  6061. "version": "1.2.10",
  6062. "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz",
  6063. "integrity": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==",
  6064. "license": "MIT",
  6065. "dependencies": {
  6066. "call-bind": "^1.0.8",
  6067. "call-bound": "^1.0.2",
  6068. "define-data-property": "^1.1.4",
  6069. "define-properties": "^1.2.1",
  6070. "es-abstract": "^1.23.5",
  6071. "es-object-atoms": "^1.0.0",
  6072. "has-property-descriptors": "^1.0.2"
  6073. },
  6074. "engines": {
  6075. "node": ">= 0.4"
  6076. },
  6077. "funding": {
  6078. "url": "https://github.com/sponsors/ljharb"
  6079. }
  6080. },
  6081. "node_modules/string.prototype.trimend": {
  6082. "version": "1.0.9",
  6083. "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz",
  6084. "integrity": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==",
  6085. "license": "MIT",
  6086. "dependencies": {
  6087. "call-bind": "^1.0.8",
  6088. "call-bound": "^1.0.2",
  6089. "define-properties": "^1.2.1",
  6090. "es-object-atoms": "^1.0.0"
  6091. },
  6092. "engines": {
  6093. "node": ">= 0.4"
  6094. },
  6095. "funding": {
  6096. "url": "https://github.com/sponsors/ljharb"
  6097. }
  6098. },
  6099. "node_modules/string.prototype.trimstart": {
  6100. "version": "1.0.8",
  6101. "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz",
  6102. "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==",
  6103. "license": "MIT",
  6104. "dependencies": {
  6105. "call-bind": "^1.0.7",
  6106. "define-properties": "^1.2.1",
  6107. "es-object-atoms": "^1.0.0"
  6108. },
  6109. "engines": {
  6110. "node": ">= 0.4"
  6111. },
  6112. "funding": {
  6113. "url": "https://github.com/sponsors/ljharb"
  6114. }
  6115. },
  6116. "node_modules/strip-ansi": {
  6117. "version": "6.0.1",
  6118. "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
  6119. "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
  6120. "dependencies": {
  6121. "ansi-regex": "^5.0.1"
  6122. },
  6123. "engines": {
  6124. "node": ">=8"
  6125. }
  6126. },
  6127. "node_modules/strip-bom": {
  6128. "version": "3.0.0",
  6129. "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
  6130. "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==",
  6131. "license": "MIT",
  6132. "engines": {
  6133. "node": ">=4"
  6134. }
  6135. },
  6136. "node_modules/strip-json-comments": {
  6137. "version": "3.1.1",
  6138. "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
  6139. "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
  6140. "license": "MIT",
  6141. "engines": {
  6142. "node": ">=8"
  6143. },
  6144. "funding": {
  6145. "url": "https://github.com/sponsors/sindresorhus"
  6146. }
  6147. },
  6148. "node_modules/stylelint": {
  6149. "version": "17.11.0",
  6150. "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-17.11.0.tgz",
  6151. "integrity": "sha512-/3czzmbF9XdGWvReDF3Ex4R23Ajolo7j8RB2bFNEqk6Ht356nlpVV+G5bG2Qt8AW1ofJzXztBRDnAtd7cgowWA==",
  6152. "dev": true,
  6153. "funding": [
  6154. {
  6155. "type": "opencollective",
  6156. "url": "https://opencollective.com/stylelint"
  6157. },
  6158. {
  6159. "type": "github",
  6160. "url": "https://github.com/sponsors/stylelint"
  6161. }
  6162. ],
  6163. "license": "MIT",
  6164. "dependencies": {
  6165. "@csstools/css-calc": "^3.2.0",
  6166. "@csstools/css-parser-algorithms": "^4.0.0",
  6167. "@csstools/css-syntax-patches-for-csstree": "^1.1.3",
  6168. "@csstools/css-tokenizer": "^4.0.0",
  6169. "@csstools/media-query-list-parser": "^5.0.0",
  6170. "@csstools/selector-resolve-nested": "^4.0.0",
  6171. "@csstools/selector-specificity": "^6.0.0",
  6172. "colord": "^2.9.3",
  6173. "cosmiconfig": "^9.0.1",
  6174. "css-functions-list": "^3.3.3",
  6175. "css-tree": "^3.2.1",
  6176. "debug": "^4.4.3",
  6177. "fast-glob": "^3.3.3",
  6178. "fastest-levenshtein": "^1.0.16",
  6179. "file-entry-cache": "^11.1.2",
  6180. "global-modules": "^2.0.0",
  6181. "globby": "^16.2.0",
  6182. "globjoin": "^0.1.4",
  6183. "html-tags": "^5.1.0",
  6184. "ignore": "^7.0.5",
  6185. "import-meta-resolve": "^4.2.0",
  6186. "is-plain-object": "^5.0.0",
  6187. "mathml-tag-names": "^4.0.0",
  6188. "meow": "^14.1.0",
  6189. "micromatch": "^4.0.8",
  6190. "normalize-path": "^3.0.0",
  6191. "picocolors": "^1.1.1",
  6192. "postcss": "^8.5.13",
  6193. "postcss-safe-parser": "^7.0.1",
  6194. "postcss-selector-parser": "^7.1.1",
  6195. "postcss-value-parser": "^4.2.0",
  6196. "string-width": "^8.2.1",
  6197. "supports-hyperlinks": "^4.4.0",
  6198. "svg-tags": "^1.0.0",
  6199. "table": "^6.9.0",
  6200. "write-file-atomic": "^7.0.1"
  6201. },
  6202. "bin": {
  6203. "stylelint": "bin/stylelint.mjs"
  6204. },
  6205. "engines": {
  6206. "node": ">=20.19.0"
  6207. }
  6208. },
  6209. "node_modules/stylelint-config-recommended": {
  6210. "version": "18.0.0",
  6211. "resolved": "https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-18.0.0.tgz",
  6212. "integrity": "sha512-mxgT2XY6YZ3HWWe3Di8umG6aBmWmHTblTgu/f10rqFXnyWxjKWwNdjSWkgkwCtxIKnqjSJzvFmPT5yabVIRxZg==",
  6213. "dev": true,
  6214. "funding": [
  6215. {
  6216. "type": "opencollective",
  6217. "url": "https://opencollective.com/stylelint"
  6218. },
  6219. {
  6220. "type": "github",
  6221. "url": "https://github.com/sponsors/stylelint"
  6222. }
  6223. ],
  6224. "license": "MIT",
  6225. "engines": {
  6226. "node": ">=20.19.0"
  6227. },
  6228. "peerDependencies": {
  6229. "stylelint": "^17.0.0"
  6230. }
  6231. },
  6232. "node_modules/stylelint-config-standard": {
  6233. "version": "40.0.0",
  6234. "resolved": "https://registry.npmjs.org/stylelint-config-standard/-/stylelint-config-standard-40.0.0.tgz",
  6235. "integrity": "sha512-EznGJxOUhtWck2r6dJpbgAdPATIzvpLdK9+i5qPd4Lx70es66TkBPljSg4wN3Qnc6c4h2n+WbUrUynQ3fanjHw==",
  6236. "dev": true,
  6237. "funding": [
  6238. {
  6239. "type": "opencollective",
  6240. "url": "https://opencollective.com/stylelint"
  6241. },
  6242. {
  6243. "type": "github",
  6244. "url": "https://github.com/sponsors/stylelint"
  6245. }
  6246. ],
  6247. "license": "MIT",
  6248. "dependencies": {
  6249. "stylelint-config-recommended": "^18.0.0"
  6250. },
  6251. "engines": {
  6252. "node": ">=20.19.0"
  6253. },
  6254. "peerDependencies": {
  6255. "stylelint": "^17.0.0"
  6256. }
  6257. },
  6258. "node_modules/stylelint/node_modules/ansi-regex": {
  6259. "version": "6.2.2",
  6260. "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz",
  6261. "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==",
  6262. "dev": true,
  6263. "license": "MIT",
  6264. "engines": {
  6265. "node": ">=12"
  6266. },
  6267. "funding": {
  6268. "url": "https://github.com/chalk/ansi-regex?sponsor=1"
  6269. }
  6270. },
  6271. "node_modules/stylelint/node_modules/file-entry-cache": {
  6272. "version": "11.1.2",
  6273. "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-11.1.2.tgz",
  6274. "integrity": "sha512-N2WFfK12gmrK1c1GXOqiAJ1tc5YE+R53zvQ+t5P8S5XhnmKYVB5eZEiLNZKDSmoG8wqqbF9EXYBBW/nef19log==",
  6275. "dev": true,
  6276. "license": "MIT",
  6277. "dependencies": {
  6278. "flat-cache": "^6.1.20"
  6279. }
  6280. },
  6281. "node_modules/stylelint/node_modules/flat-cache": {
  6282. "version": "6.1.20",
  6283. "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-6.1.20.tgz",
  6284. "integrity": "sha512-AhHYqwvN62NVLp4lObVXGVluiABTHapoB57EyegZVmazN+hhGhLTn3uZbOofoTw4DSDvVCadzzyChXhOAvy8uQ==",
  6285. "dev": true,
  6286. "license": "MIT",
  6287. "dependencies": {
  6288. "cacheable": "^2.3.2",
  6289. "flatted": "^3.3.3",
  6290. "hookified": "^1.15.0"
  6291. }
  6292. },
  6293. "node_modules/stylelint/node_modules/ignore": {
  6294. "version": "7.0.5",
  6295. "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz",
  6296. "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==",
  6297. "dev": true,
  6298. "license": "MIT",
  6299. "engines": {
  6300. "node": ">= 4"
  6301. }
  6302. },
  6303. "node_modules/stylelint/node_modules/string-width": {
  6304. "version": "8.2.1",
  6305. "resolved": "https://registry.npmjs.org/string-width/-/string-width-8.2.1.tgz",
  6306. "integrity": "sha512-IIaP0g3iy9Cyy18w3M9YcaDudujEAVHKt3a3QJg1+sr/oX96TbaGUubG0hJyCjCBThFH+tFpcIyoUHUn1ogaLA==",
  6307. "dev": true,
  6308. "license": "MIT",
  6309. "dependencies": {
  6310. "get-east-asian-width": "^1.5.0",
  6311. "strip-ansi": "^7.1.2"
  6312. },
  6313. "engines": {
  6314. "node": ">=20"
  6315. },
  6316. "funding": {
  6317. "url": "https://github.com/sponsors/sindresorhus"
  6318. }
  6319. },
  6320. "node_modules/stylelint/node_modules/strip-ansi": {
  6321. "version": "7.2.0",
  6322. "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.2.0.tgz",
  6323. "integrity": "sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==",
  6324. "dev": true,
  6325. "license": "MIT",
  6326. "dependencies": {
  6327. "ansi-regex": "^6.2.2"
  6328. },
  6329. "engines": {
  6330. "node": ">=12"
  6331. },
  6332. "funding": {
  6333. "url": "https://github.com/chalk/strip-ansi?sponsor=1"
  6334. }
  6335. },
  6336. "node_modules/superjson": {
  6337. "version": "2.2.6",
  6338. "resolved": "https://registry.npmjs.org/superjson/-/superjson-2.2.6.tgz",
  6339. "integrity": "sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA==",
  6340. "license": "MIT",
  6341. "dependencies": {
  6342. "copy-anything": "^4"
  6343. },
  6344. "engines": {
  6345. "node": ">=16"
  6346. }
  6347. },
  6348. "node_modules/supports-color": {
  6349. "version": "7.2.0",
  6350. "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
  6351. "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
  6352. "dependencies": {
  6353. "has-flag": "^4.0.0"
  6354. },
  6355. "engines": {
  6356. "node": ">=8"
  6357. }
  6358. },
  6359. "node_modules/supports-hyperlinks": {
  6360. "version": "4.4.0",
  6361. "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-4.4.0.tgz",
  6362. "integrity": "sha512-UKbpT93hN5Nr9go5UY7bopIB9YQlMz9nm/ct4IXt/irb5YRkn9WaqrOBJGZ5Pwvsd5FQzSVeYlGdXoCAPQZrPg==",
  6363. "dev": true,
  6364. "license": "MIT",
  6365. "dependencies": {
  6366. "has-flag": "^5.0.1",
  6367. "supports-color": "^10.2.2"
  6368. },
  6369. "engines": {
  6370. "node": ">=20"
  6371. },
  6372. "funding": {
  6373. "url": "https://github.com/chalk/supports-hyperlinks?sponsor=1"
  6374. }
  6375. },
  6376. "node_modules/supports-hyperlinks/node_modules/has-flag": {
  6377. "version": "5.0.1",
  6378. "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-5.0.1.tgz",
  6379. "integrity": "sha512-CsNUt5x9LUdx6hnk/E2SZLsDyvfqANZSUq4+D3D8RzDJ2M+HDTIkF60ibS1vHaK55vzgiZw1bEPFG9yH7l33wA==",
  6380. "dev": true,
  6381. "license": "MIT",
  6382. "engines": {
  6383. "node": ">=12"
  6384. },
  6385. "funding": {
  6386. "url": "https://github.com/sponsors/sindresorhus"
  6387. }
  6388. },
  6389. "node_modules/supports-hyperlinks/node_modules/supports-color": {
  6390. "version": "10.2.2",
  6391. "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-10.2.2.tgz",
  6392. "integrity": "sha512-SS+jx45GF1QjgEXQx4NJZV9ImqmO2NPz5FNsIHrsDjh2YsHnawpan7SNQ1o8NuhrbHZy9AZhIoCUiCeaW/C80g==",
  6393. "dev": true,
  6394. "license": "MIT",
  6395. "engines": {
  6396. "node": ">=18"
  6397. },
  6398. "funding": {
  6399. "url": "https://github.com/chalk/supports-color?sponsor=1"
  6400. }
  6401. },
  6402. "node_modules/supports-preserve-symlinks-flag": {
  6403. "version": "1.0.0",
  6404. "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
  6405. "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
  6406. "license": "MIT",
  6407. "engines": {
  6408. "node": ">= 0.4"
  6409. },
  6410. "funding": {
  6411. "url": "https://github.com/sponsors/ljharb"
  6412. }
  6413. },
  6414. "node_modules/svg-tags": {
  6415. "version": "1.0.0",
  6416. "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz",
  6417. "integrity": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==",
  6418. "dev": true
  6419. },
  6420. "node_modules/table": {
  6421. "version": "6.9.0",
  6422. "resolved": "https://registry.npmjs.org/table/-/table-6.9.0.tgz",
  6423. "integrity": "sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A==",
  6424. "dev": true,
  6425. "license": "BSD-3-Clause",
  6426. "dependencies": {
  6427. "ajv": "^8.0.1",
  6428. "lodash.truncate": "^4.4.2",
  6429. "slice-ansi": "^4.0.0",
  6430. "string-width": "^4.2.3",
  6431. "strip-ansi": "^6.0.1"
  6432. },
  6433. "engines": {
  6434. "node": ">=10.0.0"
  6435. }
  6436. },
  6437. "node_modules/table/node_modules/ajv": {
  6438. "version": "8.20.0",
  6439. "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.20.0.tgz",
  6440. "integrity": "sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==",
  6441. "dev": true,
  6442. "license": "MIT",
  6443. "dependencies": {
  6444. "fast-deep-equal": "^3.1.3",
  6445. "fast-uri": "^3.0.1",
  6446. "json-schema-traverse": "^1.0.0",
  6447. "require-from-string": "^2.0.2"
  6448. },
  6449. "funding": {
  6450. "type": "github",
  6451. "url": "https://github.com/sponsors/epoberezkin"
  6452. }
  6453. },
  6454. "node_modules/table/node_modules/json-schema-traverse": {
  6455. "version": "1.0.0",
  6456. "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
  6457. "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
  6458. "dev": true
  6459. },
  6460. "node_modules/text-table": {
  6461. "version": "0.2.0",
  6462. "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
  6463. "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==",
  6464. "license": "MIT"
  6465. },
  6466. "node_modules/tinyglobby": {
  6467. "version": "0.2.16",
  6468. "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.16.tgz",
  6469. "integrity": "sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==",
  6470. "license": "MIT",
  6471. "dependencies": {
  6472. "fdir": "^6.5.0",
  6473. "picomatch": "^4.0.4"
  6474. },
  6475. "engines": {
  6476. "node": ">=12.0.0"
  6477. },
  6478. "funding": {
  6479. "url": "https://github.com/sponsors/SuperchupuDev"
  6480. }
  6481. },
  6482. "node_modules/tinyglobby/node_modules/fdir": {
  6483. "version": "6.5.0",
  6484. "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
  6485. "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
  6486. "license": "MIT",
  6487. "engines": {
  6488. "node": ">=12.0.0"
  6489. },
  6490. "peerDependencies": {
  6491. "picomatch": "^3 || ^4"
  6492. },
  6493. "peerDependenciesMeta": {
  6494. "picomatch": {
  6495. "optional": true
  6496. }
  6497. }
  6498. },
  6499. "node_modules/tinyglobby/node_modules/picomatch": {
  6500. "version": "4.0.4",
  6501. "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
  6502. "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
  6503. "license": "MIT",
  6504. "engines": {
  6505. "node": ">=12"
  6506. },
  6507. "funding": {
  6508. "url": "https://github.com/sponsors/jonschlinkert"
  6509. }
  6510. },
  6511. "node_modules/to-regex-range": {
  6512. "version": "5.0.1",
  6513. "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
  6514. "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
  6515. "dev": true,
  6516. "license": "MIT",
  6517. "dependencies": {
  6518. "is-number": "^7.0.0"
  6519. },
  6520. "engines": {
  6521. "node": ">=8.0"
  6522. }
  6523. },
  6524. "node_modules/tsconfig-paths": {
  6525. "version": "3.15.0",
  6526. "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz",
  6527. "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==",
  6528. "license": "MIT",
  6529. "dependencies": {
  6530. "@types/json5": "^0.0.29",
  6531. "json5": "^1.0.2",
  6532. "minimist": "^1.2.6",
  6533. "strip-bom": "^3.0.0"
  6534. }
  6535. },
  6536. "node_modules/tslib": {
  6537. "version": "2.8.1",
  6538. "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
  6539. "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
  6540. "license": "0BSD",
  6541. "optional": true
  6542. },
  6543. "node_modules/type-check": {
  6544. "version": "0.4.0",
  6545. "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
  6546. "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
  6547. "license": "MIT",
  6548. "dependencies": {
  6549. "prelude-ls": "^1.2.1"
  6550. },
  6551. "engines": {
  6552. "node": ">= 0.8.0"
  6553. }
  6554. },
  6555. "node_modules/type-fest": {
  6556. "version": "0.20.2",
  6557. "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
  6558. "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
  6559. "license": "(MIT OR CC0-1.0)",
  6560. "engines": {
  6561. "node": ">=10"
  6562. },
  6563. "funding": {
  6564. "url": "https://github.com/sponsors/sindresorhus"
  6565. }
  6566. },
  6567. "node_modules/typed-array-buffer": {
  6568. "version": "1.0.3",
  6569. "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz",
  6570. "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==",
  6571. "license": "MIT",
  6572. "dependencies": {
  6573. "call-bound": "^1.0.3",
  6574. "es-errors": "^1.3.0",
  6575. "is-typed-array": "^1.1.14"
  6576. },
  6577. "engines": {
  6578. "node": ">= 0.4"
  6579. }
  6580. },
  6581. "node_modules/typed-array-byte-length": {
  6582. "version": "1.0.3",
  6583. "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz",
  6584. "integrity": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==",
  6585. "license": "MIT",
  6586. "dependencies": {
  6587. "call-bind": "^1.0.8",
  6588. "for-each": "^0.3.3",
  6589. "gopd": "^1.2.0",
  6590. "has-proto": "^1.2.0",
  6591. "is-typed-array": "^1.1.14"
  6592. },
  6593. "engines": {
  6594. "node": ">= 0.4"
  6595. },
  6596. "funding": {
  6597. "url": "https://github.com/sponsors/ljharb"
  6598. }
  6599. },
  6600. "node_modules/typed-array-byte-offset": {
  6601. "version": "1.0.4",
  6602. "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz",
  6603. "integrity": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==",
  6604. "license": "MIT",
  6605. "dependencies": {
  6606. "available-typed-arrays": "^1.0.7",
  6607. "call-bind": "^1.0.8",
  6608. "for-each": "^0.3.3",
  6609. "gopd": "^1.2.0",
  6610. "has-proto": "^1.2.0",
  6611. "is-typed-array": "^1.1.15",
  6612. "reflect.getprototypeof": "^1.0.9"
  6613. },
  6614. "engines": {
  6615. "node": ">= 0.4"
  6616. },
  6617. "funding": {
  6618. "url": "https://github.com/sponsors/ljharb"
  6619. }
  6620. },
  6621. "node_modules/typed-array-length": {
  6622. "version": "1.0.7",
  6623. "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz",
  6624. "integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==",
  6625. "license": "MIT",
  6626. "dependencies": {
  6627. "call-bind": "^1.0.7",
  6628. "for-each": "^0.3.3",
  6629. "gopd": "^1.0.1",
  6630. "is-typed-array": "^1.1.13",
  6631. "possible-typed-array-names": "^1.0.0",
  6632. "reflect.getprototypeof": "^1.0.6"
  6633. },
  6634. "engines": {
  6635. "node": ">= 0.4"
  6636. },
  6637. "funding": {
  6638. "url": "https://github.com/sponsors/ljharb"
  6639. }
  6640. },
  6641. "node_modules/ufo": {
  6642. "version": "1.6.3",
  6643. "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.6.3.tgz",
  6644. "integrity": "sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==",
  6645. "license": "MIT"
  6646. },
  6647. "node_modules/unbox-primitive": {
  6648. "version": "1.1.0",
  6649. "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz",
  6650. "integrity": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==",
  6651. "license": "MIT",
  6652. "dependencies": {
  6653. "call-bound": "^1.0.3",
  6654. "has-bigints": "^1.0.2",
  6655. "has-symbols": "^1.1.0",
  6656. "which-boxed-primitive": "^1.1.1"
  6657. },
  6658. "engines": {
  6659. "node": ">= 0.4"
  6660. },
  6661. "funding": {
  6662. "url": "https://github.com/sponsors/ljharb"
  6663. }
  6664. },
  6665. "node_modules/unicorn-magic": {
  6666. "version": "0.4.0",
  6667. "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.4.0.tgz",
  6668. "integrity": "sha512-wH590V9VNgYH9g3lH9wWjTrUoKsjLF6sGLjhR4sH1LWpLmCOH0Zf7PukhDA8BiS7KHe4oPNkcTHqYkj7SOGUOw==",
  6669. "dev": true,
  6670. "license": "MIT",
  6671. "engines": {
  6672. "node": ">=20"
  6673. },
  6674. "funding": {
  6675. "url": "https://github.com/sponsors/sindresorhus"
  6676. }
  6677. },
  6678. "node_modules/unplugin": {
  6679. "version": "3.0.0",
  6680. "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-3.0.0.tgz",
  6681. "integrity": "sha512-0Mqk3AT2TZCXWKdcoaufeXNukv2mTrEZExeXlHIOZXdqYoHHr4n51pymnwV8x2BOVxwXbK2HLlI7usrqMpycdg==",
  6682. "license": "MIT",
  6683. "dependencies": {
  6684. "@jridgewell/remapping": "^2.3.5",
  6685. "picomatch": "^4.0.3",
  6686. "webpack-virtual-modules": "^0.6.2"
  6687. },
  6688. "engines": {
  6689. "node": "^20.19.0 || >=22.12.0"
  6690. }
  6691. },
  6692. "node_modules/unplugin-utils": {
  6693. "version": "0.3.1",
  6694. "resolved": "https://registry.npmjs.org/unplugin-utils/-/unplugin-utils-0.3.1.tgz",
  6695. "integrity": "sha512-5lWVjgi6vuHhJ526bI4nlCOmkCIF3nnfXkCMDeMJrtdvxTs6ZFCM8oNufGTsDbKv/tJ/xj8RpvXjRuPBZJuJog==",
  6696. "license": "MIT",
  6697. "dependencies": {
  6698. "pathe": "^2.0.3",
  6699. "picomatch": "^4.0.3"
  6700. },
  6701. "engines": {
  6702. "node": ">=20.19.0"
  6703. },
  6704. "funding": {
  6705. "url": "https://github.com/sponsors/sxzz"
  6706. }
  6707. },
  6708. "node_modules/unplugin-utils/node_modules/picomatch": {
  6709. "version": "4.0.4",
  6710. "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
  6711. "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
  6712. "license": "MIT",
  6713. "engines": {
  6714. "node": ">=12"
  6715. },
  6716. "funding": {
  6717. "url": "https://github.com/sponsors/jonschlinkert"
  6718. }
  6719. },
  6720. "node_modules/unplugin-vue-components": {
  6721. "version": "32.0.0",
  6722. "resolved": "https://registry.npmjs.org/unplugin-vue-components/-/unplugin-vue-components-32.0.0.tgz",
  6723. "integrity": "sha512-uLdccgS7mf3pv1bCCP20y/hm+u1eOjAmygVkh+Oa70MPkzgl1eQv1L0CwdHNM3gscO8/GDMGIET98Ja47CBbZg==",
  6724. "license": "MIT",
  6725. "dependencies": {
  6726. "chokidar": "^5.0.0",
  6727. "local-pkg": "^1.1.2",
  6728. "magic-string": "^0.30.21",
  6729. "mlly": "^1.8.2",
  6730. "obug": "^2.1.1",
  6731. "picomatch": "^4.0.3",
  6732. "tinyglobby": "^0.2.15",
  6733. "unplugin": "^3.0.0",
  6734. "unplugin-utils": "^0.3.1"
  6735. },
  6736. "engines": {
  6737. "node": ">=20.19.0"
  6738. },
  6739. "funding": {
  6740. "url": "https://github.com/sponsors/antfu"
  6741. },
  6742. "peerDependencies": {
  6743. "@nuxt/kit": "^3.2.2 || ^4.0.0",
  6744. "vue": "^3.0.0"
  6745. },
  6746. "peerDependenciesMeta": {
  6747. "@nuxt/kit": {
  6748. "optional": true
  6749. }
  6750. }
  6751. },
  6752. "node_modules/unplugin-vue-components/node_modules/picomatch": {
  6753. "version": "4.0.4",
  6754. "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
  6755. "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
  6756. "license": "MIT",
  6757. "engines": {
  6758. "node": ">=12"
  6759. },
  6760. "funding": {
  6761. "url": "https://github.com/sponsors/jonschlinkert"
  6762. }
  6763. },
  6764. "node_modules/unplugin/node_modules/picomatch": {
  6765. "version": "4.0.4",
  6766. "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
  6767. "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
  6768. "license": "MIT",
  6769. "engines": {
  6770. "node": ">=12"
  6771. },
  6772. "funding": {
  6773. "url": "https://github.com/sponsors/jonschlinkert"
  6774. }
  6775. },
  6776. "node_modules/uri-js": {
  6777. "version": "4.4.1",
  6778. "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
  6779. "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
  6780. "dependencies": {
  6781. "punycode": "^2.1.0"
  6782. }
  6783. },
  6784. "node_modules/util-deprecate": {
  6785. "version": "1.0.2",
  6786. "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
  6787. "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
  6788. "dev": true,
  6789. "license": "MIT"
  6790. },
  6791. "node_modules/version-guard": {
  6792. "version": "1.1.3",
  6793. "resolved": "https://registry.npmjs.org/version-guard/-/version-guard-1.1.3.tgz",
  6794. "integrity": "sha512-JwPr6erhX53EWH/HCSzfy1tTFrtPXUe927wdM1jqBBeYp1OM+qPHjWbsvv6pIBduqdgxxS+ScfG7S28pzyr2DQ==",
  6795. "license": "0BSD",
  6796. "engines": {
  6797. "node": ">=0.10.48"
  6798. }
  6799. },
  6800. "node_modules/vite": {
  6801. "version": "8.0.12",
  6802. "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.12.tgz",
  6803. "integrity": "sha512-w2dDofOWv2QB09ZITZBsvKTVAlYvPR4IAmrY/v0ir9KvLs0xybR7i48wxhM1/oyBWO34wPns+bPGw5ZrZqDpZg==",
  6804. "license": "MIT",
  6805. "dependencies": {
  6806. "lightningcss": "^1.32.0",
  6807. "picomatch": "^4.0.4",
  6808. "postcss": "^8.5.14",
  6809. "rolldown": "1.0.0",
  6810. "tinyglobby": "^0.2.16"
  6811. },
  6812. "bin": {
  6813. "vite": "bin/vite.js"
  6814. },
  6815. "engines": {
  6816. "node": "^20.19.0 || >=22.12.0"
  6817. },
  6818. "funding": {
  6819. "url": "https://github.com/vitejs/vite?sponsor=1"
  6820. },
  6821. "optionalDependencies": {
  6822. "fsevents": "~2.3.3"
  6823. },
  6824. "peerDependencies": {
  6825. "@types/node": "^20.19.0 || >=22.12.0",
  6826. "@vitejs/devtools": "^0.1.18",
  6827. "esbuild": "^0.27.0 || ^0.28.0",
  6828. "jiti": ">=1.21.0",
  6829. "less": "^4.0.0",
  6830. "sass": "^1.70.0",
  6831. "sass-embedded": "^1.70.0",
  6832. "stylus": ">=0.54.8",
  6833. "sugarss": "^5.0.0",
  6834. "terser": "^5.16.0",
  6835. "tsx": "^4.8.1",
  6836. "yaml": "^2.4.2"
  6837. },
  6838. "peerDependenciesMeta": {
  6839. "@types/node": {
  6840. "optional": true
  6841. },
  6842. "@vitejs/devtools": {
  6843. "optional": true
  6844. },
  6845. "esbuild": {
  6846. "optional": true
  6847. },
  6848. "jiti": {
  6849. "optional": true
  6850. },
  6851. "less": {
  6852. "optional": true
  6853. },
  6854. "sass": {
  6855. "optional": true
  6856. },
  6857. "sass-embedded": {
  6858. "optional": true
  6859. },
  6860. "stylus": {
  6861. "optional": true
  6862. },
  6863. "sugarss": {
  6864. "optional": true
  6865. },
  6866. "terser": {
  6867. "optional": true
  6868. },
  6869. "tsx": {
  6870. "optional": true
  6871. },
  6872. "yaml": {
  6873. "optional": true
  6874. }
  6875. }
  6876. },
  6877. "node_modules/vite/node_modules/picomatch": {
  6878. "version": "4.0.4",
  6879. "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
  6880. "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
  6881. "license": "MIT",
  6882. "engines": {
  6883. "node": ">=12"
  6884. },
  6885. "funding": {
  6886. "url": "https://github.com/sponsors/jonschlinkert"
  6887. }
  6888. },
  6889. "node_modules/vue": {
  6890. "version": "3.5.34",
  6891. "resolved": "https://registry.npmjs.org/vue/-/vue-3.5.34.tgz",
  6892. "integrity": "sha512-WdLBG9gm02OgJIG9axd5Hpx0TFLdzVgfG2evFFu8Rur5O/IoGc5cMjnjh3tPL6GnRGsYvUhBSKVPYVcxRKpMCA==",
  6893. "license": "MIT",
  6894. "dependencies": {
  6895. "@vue/compiler-dom": "3.5.34",
  6896. "@vue/compiler-sfc": "3.5.34",
  6897. "@vue/runtime-dom": "3.5.34",
  6898. "@vue/server-renderer": "3.5.34",
  6899. "@vue/shared": "3.5.34"
  6900. },
  6901. "peerDependencies": {
  6902. "typescript": "*"
  6903. },
  6904. "peerDependenciesMeta": {
  6905. "typescript": {
  6906. "optional": true
  6907. }
  6908. }
  6909. },
  6910. "node_modules/vue-i18n": {
  6911. "version": "11.4.2",
  6912. "resolved": "https://registry.npmjs.org/vue-i18n/-/vue-i18n-11.4.2.tgz",
  6913. "integrity": "sha512-sADDeKXqAGsPX6tK3t3y2ZiMpbVWN12tG+MhTiJ06rVoh58eGtM4wFyw3uWGbVkXByVp9Ne/AP+nSSzI+J9OAQ==",
  6914. "license": "MIT",
  6915. "dependencies": {
  6916. "@intlify/core-base": "11.4.2",
  6917. "@intlify/devtools-types": "11.4.2",
  6918. "@intlify/shared": "11.4.2",
  6919. "@vue/devtools-api": "^6.5.0"
  6920. },
  6921. "engines": {
  6922. "node": ">= 16"
  6923. },
  6924. "funding": {
  6925. "url": "https://github.com/sponsors/kazupon"
  6926. },
  6927. "peerDependencies": {
  6928. "vue": "^3.0.0"
  6929. }
  6930. },
  6931. "node_modules/vue-router": {
  6932. "version": "5.0.6",
  6933. "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-5.0.6.tgz",
  6934. "integrity": "sha512-9+kmUTGbKMyW9Asoy98IXXYIzrTMT7JDAdpDDeEkorHvybpUvBI2wsrSM5jFOXrFydpzRFJ9vAh+80DN2PGu9w==",
  6935. "license": "MIT",
  6936. "dependencies": {
  6937. "@babel/generator": "^7.28.6",
  6938. "@vue-macros/common": "^3.1.1",
  6939. "@vue/devtools-api": "^8.0.6",
  6940. "ast-walker-scope": "^0.8.3",
  6941. "chokidar": "^5.0.0",
  6942. "json5": "^2.2.3",
  6943. "local-pkg": "^1.1.2",
  6944. "magic-string": "^0.30.21",
  6945. "mlly": "^1.8.0",
  6946. "muggle-string": "^0.4.1",
  6947. "pathe": "^2.0.3",
  6948. "picomatch": "^4.0.3",
  6949. "scule": "^1.3.0",
  6950. "tinyglobby": "^0.2.15",
  6951. "unplugin": "^3.0.0",
  6952. "unplugin-utils": "^0.3.1",
  6953. "yaml": "^2.8.2"
  6954. },
  6955. "funding": {
  6956. "url": "https://github.com/sponsors/posva"
  6957. },
  6958. "peerDependencies": {
  6959. "@pinia/colada": ">=0.21.2",
  6960. "@vue/compiler-sfc": "^3.5.17",
  6961. "pinia": "^3.0.4",
  6962. "vue": "^3.5.0"
  6963. },
  6964. "peerDependenciesMeta": {
  6965. "@pinia/colada": {
  6966. "optional": true
  6967. },
  6968. "@vue/compiler-sfc": {
  6969. "optional": true
  6970. },
  6971. "pinia": {
  6972. "optional": true
  6973. }
  6974. }
  6975. },
  6976. "node_modules/vue-router/node_modules/@vue/devtools-api": {
  6977. "version": "8.0.6",
  6978. "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-8.0.6.tgz",
  6979. "integrity": "sha512-+lGBI+WTvJmnU2FZqHhEB8J1DXcvNlDeEalz77iYgOdY1jTj1ipSBaKj3sRhYcy+kqA8v/BSuvOz1XJucfQmUA==",
  6980. "license": "MIT",
  6981. "dependencies": {
  6982. "@vue/devtools-kit": "^8.0.6"
  6983. }
  6984. },
  6985. "node_modules/vue-router/node_modules/json5": {
  6986. "version": "2.2.3",
  6987. "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
  6988. "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
  6989. "license": "MIT",
  6990. "bin": {
  6991. "json5": "lib/cli.js"
  6992. },
  6993. "engines": {
  6994. "node": ">=6"
  6995. }
  6996. },
  6997. "node_modules/vue-router/node_modules/picomatch": {
  6998. "version": "4.0.4",
  6999. "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
  7000. "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
  7001. "license": "MIT",
  7002. "engines": {
  7003. "node": ">=12"
  7004. },
  7005. "funding": {
  7006. "url": "https://github.com/sponsors/jonschlinkert"
  7007. }
  7008. },
  7009. "node_modules/webpack-virtual-modules": {
  7010. "version": "0.6.2",
  7011. "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.6.2.tgz",
  7012. "integrity": "sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==",
  7013. "license": "MIT"
  7014. },
  7015. "node_modules/which": {
  7016. "version": "2.0.2",
  7017. "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
  7018. "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
  7019. "license": "ISC",
  7020. "dependencies": {
  7021. "isexe": "^2.0.0"
  7022. },
  7023. "bin": {
  7024. "node-which": "bin/node-which"
  7025. },
  7026. "engines": {
  7027. "node": ">= 8"
  7028. }
  7029. },
  7030. "node_modules/which-boxed-primitive": {
  7031. "version": "1.1.1",
  7032. "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz",
  7033. "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==",
  7034. "license": "MIT",
  7035. "dependencies": {
  7036. "is-bigint": "^1.1.0",
  7037. "is-boolean-object": "^1.2.1",
  7038. "is-number-object": "^1.1.1",
  7039. "is-string": "^1.1.1",
  7040. "is-symbol": "^1.1.1"
  7041. },
  7042. "engines": {
  7043. "node": ">= 0.4"
  7044. },
  7045. "funding": {
  7046. "url": "https://github.com/sponsors/ljharb"
  7047. }
  7048. },
  7049. "node_modules/which-builtin-type": {
  7050. "version": "1.2.1",
  7051. "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz",
  7052. "integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==",
  7053. "license": "MIT",
  7054. "dependencies": {
  7055. "call-bound": "^1.0.2",
  7056. "function.prototype.name": "^1.1.6",
  7057. "has-tostringtag": "^1.0.2",
  7058. "is-async-function": "^2.0.0",
  7059. "is-date-object": "^1.1.0",
  7060. "is-finalizationregistry": "^1.1.0",
  7061. "is-generator-function": "^1.0.10",
  7062. "is-regex": "^1.2.1",
  7063. "is-weakref": "^1.0.2",
  7064. "isarray": "^2.0.5",
  7065. "which-boxed-primitive": "^1.1.0",
  7066. "which-collection": "^1.0.2",
  7067. "which-typed-array": "^1.1.16"
  7068. },
  7069. "engines": {
  7070. "node": ">= 0.4"
  7071. },
  7072. "funding": {
  7073. "url": "https://github.com/sponsors/ljharb"
  7074. }
  7075. },
  7076. "node_modules/which-collection": {
  7077. "version": "1.0.2",
  7078. "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz",
  7079. "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==",
  7080. "license": "MIT",
  7081. "dependencies": {
  7082. "is-map": "^2.0.3",
  7083. "is-set": "^2.0.3",
  7084. "is-weakmap": "^2.0.2",
  7085. "is-weakset": "^2.0.3"
  7086. },
  7087. "engines": {
  7088. "node": ">= 0.4"
  7089. },
  7090. "funding": {
  7091. "url": "https://github.com/sponsors/ljharb"
  7092. }
  7093. },
  7094. "node_modules/which-typed-array": {
  7095. "version": "1.1.19",
  7096. "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.19.tgz",
  7097. "integrity": "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==",
  7098. "license": "MIT",
  7099. "dependencies": {
  7100. "available-typed-arrays": "^1.0.7",
  7101. "call-bind": "^1.0.8",
  7102. "call-bound": "^1.0.4",
  7103. "for-each": "^0.3.5",
  7104. "get-proto": "^1.0.1",
  7105. "gopd": "^1.2.0",
  7106. "has-tostringtag": "^1.0.2"
  7107. },
  7108. "engines": {
  7109. "node": ">= 0.4"
  7110. },
  7111. "funding": {
  7112. "url": "https://github.com/sponsors/ljharb"
  7113. }
  7114. },
  7115. "node_modules/word-wrap": {
  7116. "version": "1.2.5",
  7117. "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
  7118. "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
  7119. "license": "MIT",
  7120. "engines": {
  7121. "node": ">=0.10.0"
  7122. }
  7123. },
  7124. "node_modules/wrappy": {
  7125. "version": "1.0.2",
  7126. "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
  7127. "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
  7128. "license": "ISC"
  7129. },
  7130. "node_modules/write-file-atomic": {
  7131. "version": "7.0.1",
  7132. "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-7.0.1.tgz",
  7133. "integrity": "sha512-OTIk8iR8/aCRWBqvxrzxR0hgxWpnYBblY1S5hDWBQfk/VFmJwzmJgQFN3WsoUKHISv2eAwe+PpbUzyL1CKTLXg==",
  7134. "dev": true,
  7135. "license": "ISC",
  7136. "dependencies": {
  7137. "signal-exit": "^4.0.1"
  7138. },
  7139. "engines": {
  7140. "node": "^20.17.0 || >=22.9.0"
  7141. }
  7142. },
  7143. "node_modules/xdg-basedir": {
  7144. "version": "4.0.0",
  7145. "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz",
  7146. "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==",
  7147. "license": "MIT",
  7148. "engines": {
  7149. "node": ">=8"
  7150. }
  7151. },
  7152. "node_modules/yaml": {
  7153. "version": "2.8.4",
  7154. "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.4.tgz",
  7155. "integrity": "sha512-ml/JPOj9fOQK8RNnWojA67GbZ0ApXAUlN2UQclwv2eVgTgn7O9gg9o7paZWKMp4g0H3nTLtS9LVzhkpOFIKzog==",
  7156. "license": "ISC",
  7157. "bin": {
  7158. "yaml": "bin.mjs"
  7159. },
  7160. "engines": {
  7161. "node": ">= 14.6"
  7162. },
  7163. "funding": {
  7164. "url": "https://github.com/sponsors/eemeli"
  7165. }
  7166. },
  7167. "node_modules/yocto-queue": {
  7168. "version": "0.1.0",
  7169. "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
  7170. "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
  7171. "license": "MIT",
  7172. "engines": {
  7173. "node": ">=10"
  7174. },
  7175. "funding": {
  7176. "url": "https://github.com/sponsors/sindresorhus"
  7177. }
  7178. }
  7179. }
  7180. }