4
0

package-lock.json 219 KB

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