1 Star 0 Fork 0

子桁/项目初始化

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pnpm-lock.yaml 115.03 KB
一键复制 编辑 原始数据 按行查看 历史
子桁 提交于 2024-07-22 22:14 . update
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819
lockfileVersion: "9.0"
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
importers:
.:
dependencies:
"@types/nprogress":
specifier: ^0.2.3
version: 0.2.3
"@vitejs/plugin-vue-jsx":
specifier: ^4.0.0
version: 4.0.0(vite@5.3.3(@types/node@20.14.10))(vue@3.4.31(typescript@5.5.3))
axios:
specifier: ^1.7.2
version: 1.7.2
nprogress:
specifier: ^0.2.0
version: 0.2.0
pinia:
specifier: ^2.1.7
version: 2.1.7(typescript@5.5.3)(vue@3.4.31(typescript@5.5.3))
unocss:
specifier: ^0.61.3
version: 0.61.3(postcss@8.4.39)(rollup@4.18.1)(vite@5.3.3(@types/node@20.14.10))
vue:
specifier: ^3.4.31
version: 3.4.31(typescript@5.5.3)
vue-router:
specifier: ^4.4.0
version: 4.4.0(vue@3.4.31(typescript@5.5.3))
devDependencies:
"@iconify/json":
specifier: ^2.2.228
version: 2.2.228
"@types/node":
specifier: ^20.7.1
version: 20.14.10
"@vitejs/plugin-vue":
specifier: ^5.0.5
version: 5.0.5(vite@5.3.3(@types/node@20.14.10))(vue@3.4.31(typescript@5.5.3))
prettier:
specifier: ^3.3.3
version: 3.3.3
typescript:
specifier: ^5.0.2
version: 5.5.3
vite:
specifier: ^5.3.1
version: 5.3.3(@types/node@20.14.10)
vite-plugin-vue-devtools:
specifier: ^7.3.6
version: 7.3.6(rollup@4.18.1)(vite@5.3.3(@types/node@20.14.10))(vue@3.4.31(typescript@5.5.3))
vue-tsc:
specifier: ^2.0.6
version: 2.0.26(typescript@5.5.3)
packages:
"@ampproject/remapping@2.3.0":
resolution:
{
integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==,
}
engines: { node: ">=6.0.0" }
"@antfu/install-pkg@0.1.1":
resolution:
{
integrity: sha512-LyB/8+bSfa0DFGC06zpCEfs89/XoWZwws5ygEa5D+Xsm3OfI+aXQ86VgVG7Acyef+rSZ5HE7J8rrxzrQeM3PjQ==,
}
"@antfu/utils@0.7.10":
resolution:
{
integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==,
}
"@babel/code-frame@7.24.7":
resolution:
{
integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==,
}
engines: { node: ">=6.9.0" }
"@babel/compat-data@7.24.8":
resolution:
{
integrity: sha512-c4IM7OTg6k1Q+AJ153e2mc2QVTezTwnb4VzquwcyiEzGnW0Kedv4do/TrkU98qPeC5LNiMt/QXwIjzYXLBpyZg==,
}
engines: { node: ">=6.9.0" }
"@babel/core@7.24.8":
resolution:
{
integrity: sha512-6AWcmZC/MZCO0yKys4uhg5NlxL0ESF3K6IAaoQ+xSXvPyPyxNWRafP+GDbI88Oh68O7QkJgmEtedWPM9U0pZNg==,
}
engines: { node: ">=6.9.0" }
"@babel/generator@7.24.8":
resolution:
{
integrity: sha512-47DG+6F5SzOi0uEvK4wMShmn5yY0mVjVJoWTphdY2B4Rx9wHgjK7Yhtr0ru6nE+sn0v38mzrWOlah0p/YlHHOQ==,
}
engines: { node: ">=6.9.0" }
"@babel/helper-annotate-as-pure@7.24.7":
resolution:
{
integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==,
}
engines: { node: ">=6.9.0" }
"@babel/helper-compilation-targets@7.24.8":
resolution:
{
integrity: sha512-oU+UoqCHdp+nWVDkpldqIQL/i/bvAv53tRqLG/s+cOXxe66zOYLU7ar/Xs3LdmBihrUMEUhwu6dMZwbNOYDwvw==,
}
engines: { node: ">=6.9.0" }
"@babel/helper-create-class-features-plugin@7.24.8":
resolution:
{
integrity: sha512-4f6Oqnmyp2PP3olgUMmOwC3akxSm5aBYraQ6YDdKy7NcAMkDECHWG0DEnV6M2UAkERgIBhYt8S27rURPg7SxWA==,
}
engines: { node: ">=6.9.0" }
peerDependencies:
"@babel/core": ^7.0.0
"@babel/helper-environment-visitor@7.24.7":
resolution:
{
integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==,
}
engines: { node: ">=6.9.0" }
"@babel/helper-function-name@7.24.7":
resolution:
{
integrity: sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==,
}
engines: { node: ">=6.9.0" }
"@babel/helper-hoist-variables@7.24.7":
resolution:
{
integrity: sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==,
}
engines: { node: ">=6.9.0" }
"@babel/helper-member-expression-to-functions@7.24.8":
resolution:
{
integrity: sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==,
}
engines: { node: ">=6.9.0" }
"@babel/helper-module-imports@7.22.15":
resolution:
{
integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==,
}
engines: { node: ">=6.9.0" }
"@babel/helper-module-imports@7.24.7":
resolution:
{
integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==,
}
engines: { node: ">=6.9.0" }
"@babel/helper-module-transforms@7.24.8":
resolution:
{
integrity: sha512-m4vWKVqvkVAWLXfHCCfff2luJj86U+J0/x+0N3ArG/tP0Fq7zky2dYwMbtPmkc/oulkkbjdL3uWzuoBwQ8R00Q==,
}
engines: { node: ">=6.9.0" }
peerDependencies:
"@babel/core": ^7.0.0
"@babel/helper-optimise-call-expression@7.24.7":
resolution:
{
integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==,
}
engines: { node: ">=6.9.0" }
"@babel/helper-plugin-utils@7.24.8":
resolution:
{
integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==,
}
engines: { node: ">=6.9.0" }
"@babel/helper-replace-supers@7.24.7":
resolution:
{
integrity: sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==,
}
engines: { node: ">=6.9.0" }
peerDependencies:
"@babel/core": ^7.0.0
"@babel/helper-simple-access@7.24.7":
resolution:
{
integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==,
}
engines: { node: ">=6.9.0" }
"@babel/helper-skip-transparent-expression-wrappers@7.24.7":
resolution:
{
integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==,
}
engines: { node: ">=6.9.0" }
"@babel/helper-split-export-declaration@7.24.7":
resolution:
{
integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==,
}
engines: { node: ">=6.9.0" }
"@babel/helper-string-parser@7.24.8":
resolution:
{
integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==,
}
engines: { node: ">=6.9.0" }
"@babel/helper-validator-identifier@7.24.7":
resolution:
{
integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==,
}
engines: { node: ">=6.9.0" }
"@babel/helper-validator-option@7.24.8":
resolution:
{
integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==,
}
engines: { node: ">=6.9.0" }
"@babel/helpers@7.24.8":
resolution:
{
integrity: sha512-gV2265Nkcz7weJJfvDoAEVzC1e2OTDpkGbEsebse8koXUJUXPsCMi7sRo/+SPMuMZ9MtUPnGwITTnQnU5YjyaQ==,
}
engines: { node: ">=6.9.0" }
"@babel/highlight@7.24.7":
resolution:
{
integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==,
}
engines: { node: ">=6.9.0" }
"@babel/parser@7.24.8":
resolution:
{
integrity: sha512-WzfbgXOkGzZiXXCqk43kKwZjzwx4oulxZi3nq2TYL9mOjQv6kYwul9mz6ID36njuL7Xkp6nJEfok848Zj10j/w==,
}
engines: { node: ">=6.0.0" }
hasBin: true
"@babel/plugin-proposal-decorators@7.24.7":
resolution:
{
integrity: sha512-RL9GR0pUG5Kc8BUWLNDm2T5OpYwSX15r98I0IkgmRQTXuELq/OynH8xtMTMvTJFjXbMWFVTKtYkTaYQsuAwQlQ==,
}
engines: { node: ">=6.9.0" }
peerDependencies:
"@babel/core": ^7.0.0-0
"@babel/plugin-syntax-decorators@7.24.7":
resolution:
{
integrity: sha512-Ui4uLJJrRV1lb38zg1yYTmRKmiZLiftDEvZN2iq3kd9kUFU+PttmzTbAFC2ucRk/XJmtek6G23gPsuZbhrT8fQ==,
}
engines: { node: ">=6.9.0" }
peerDependencies:
"@babel/core": ^7.0.0-0
"@babel/plugin-syntax-import-attributes@7.24.7":
resolution:
{
integrity: sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==,
}
engines: { node: ">=6.9.0" }
peerDependencies:
"@babel/core": ^7.0.0-0
"@babel/plugin-syntax-import-meta@7.10.4":
resolution:
{
integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==,
}
peerDependencies:
"@babel/core": ^7.0.0-0
"@babel/plugin-syntax-jsx@7.24.7":
resolution:
{
integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==,
}
engines: { node: ">=6.9.0" }
peerDependencies:
"@babel/core": ^7.0.0-0
"@babel/plugin-syntax-typescript@7.24.7":
resolution:
{
integrity: sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==,
}
engines: { node: ">=6.9.0" }
peerDependencies:
"@babel/core": ^7.0.0-0
"@babel/plugin-transform-modules-commonjs@7.24.8":
resolution:
{
integrity: sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==,
}
engines: { node: ">=6.9.0" }
peerDependencies:
"@babel/core": ^7.0.0-0
"@babel/plugin-transform-typescript@7.24.8":
resolution:
{
integrity: sha512-CgFgtN61BbdOGCP4fLaAMOPkzWUh6yQZNMr5YSt8uz2cZSSiQONCQFWqsE4NeVfOIhqDOlS9CR3WD91FzMeB2Q==,
}
engines: { node: ">=6.9.0" }
peerDependencies:
"@babel/core": ^7.0.0-0
"@babel/preset-typescript@7.24.7":
resolution:
{
integrity: sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==,
}
engines: { node: ">=6.9.0" }
peerDependencies:
"@babel/core": ^7.0.0-0
"@babel/template@7.24.7":
resolution:
{
integrity: sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==,
}
engines: { node: ">=6.9.0" }
"@babel/traverse@7.24.8":
resolution:
{
integrity: sha512-t0P1xxAPzEDcEPmjprAQq19NWum4K0EQPjMwZQZbHt+GiZqvjCHjj755Weq1YRPVzBI+3zSfvScfpnuIecVFJQ==,
}
engines: { node: ">=6.9.0" }
"@babel/types@7.24.8":
resolution:
{
integrity: sha512-SkSBEHwwJRU52QEVZBmMBnE5Ux2/6WU1grdYyOhpbCNxbmJrDuDCphBzKZSO3taf0zztp+qkWlymE5tVL5l0TA==,
}
engines: { node: ">=6.9.0" }
"@esbuild/aix-ppc64@0.21.5":
resolution:
{
integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==,
}
engines: { node: ">=12" }
cpu: [ppc64]
os: [aix]
"@esbuild/android-arm64@0.21.5":
resolution:
{
integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==,
}
engines: { node: ">=12" }
cpu: [arm64]
os: [android]
"@esbuild/android-arm@0.21.5":
resolution:
{
integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==,
}
engines: { node: ">=12" }
cpu: [arm]
os: [android]
"@esbuild/android-x64@0.21.5":
resolution:
{
integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==,
}
engines: { node: ">=12" }
cpu: [x64]
os: [android]
"@esbuild/darwin-arm64@0.21.5":
resolution:
{
integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==,
}
engines: { node: ">=12" }
cpu: [arm64]
os: [darwin]
"@esbuild/darwin-x64@0.21.5":
resolution:
{
integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==,
}
engines: { node: ">=12" }
cpu: [x64]
os: [darwin]
"@esbuild/freebsd-arm64@0.21.5":
resolution:
{
integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==,
}
engines: { node: ">=12" }
cpu: [arm64]
os: [freebsd]
"@esbuild/freebsd-x64@0.21.5":
resolution:
{
integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==,
}
engines: { node: ">=12" }
cpu: [x64]
os: [freebsd]
"@esbuild/linux-arm64@0.21.5":
resolution:
{
integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==,
}
engines: { node: ">=12" }
cpu: [arm64]
os: [linux]
"@esbuild/linux-arm@0.21.5":
resolution:
{
integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==,
}
engines: { node: ">=12" }
cpu: [arm]
os: [linux]
"@esbuild/linux-ia32@0.21.5":
resolution:
{
integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==,
}
engines: { node: ">=12" }
cpu: [ia32]
os: [linux]
"@esbuild/linux-loong64@0.21.5":
resolution:
{
integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==,
}
engines: { node: ">=12" }
cpu: [loong64]
os: [linux]
"@esbuild/linux-mips64el@0.21.5":
resolution:
{
integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==,
}
engines: { node: ">=12" }
cpu: [mips64el]
os: [linux]
"@esbuild/linux-ppc64@0.21.5":
resolution:
{
integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==,
}
engines: { node: ">=12" }
cpu: [ppc64]
os: [linux]
"@esbuild/linux-riscv64@0.21.5":
resolution:
{
integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==,
}
engines: { node: ">=12" }
cpu: [riscv64]
os: [linux]
"@esbuild/linux-s390x@0.21.5":
resolution:
{
integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==,
}
engines: { node: ">=12" }
cpu: [s390x]
os: [linux]
"@esbuild/linux-x64@0.21.5":
resolution:
{
integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==,
}
engines: { node: ">=12" }
cpu: [x64]
os: [linux]
"@esbuild/netbsd-x64@0.21.5":
resolution:
{
integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==,
}
engines: { node: ">=12" }
cpu: [x64]
os: [netbsd]
"@esbuild/openbsd-x64@0.21.5":
resolution:
{
integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==,
}
engines: { node: ">=12" }
cpu: [x64]
os: [openbsd]
"@esbuild/sunos-x64@0.21.5":
resolution:
{
integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==,
}
engines: { node: ">=12" }
cpu: [x64]
os: [sunos]
"@esbuild/win32-arm64@0.21.5":
resolution:
{
integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==,
}
engines: { node: ">=12" }
cpu: [arm64]
os: [win32]
"@esbuild/win32-ia32@0.21.5":
resolution:
{
integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==,
}
engines: { node: ">=12" }
cpu: [ia32]
os: [win32]
"@esbuild/win32-x64@0.21.5":
resolution:
{
integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==,
}
engines: { node: ">=12" }
cpu: [x64]
os: [win32]
"@iconify/json@2.2.228":
resolution:
{
integrity: sha512-Xd1CgQ1bCFLrp4t+J2TU+AXM+kVHAFLfhK9FcZD54aMPlzENdQMJ5JhfFzCgnsLBAIW1PbSY2Edbm4tt2Tw9Lg==,
}
"@iconify/types@2.0.0":
resolution:
{
integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==,
}
"@iconify/utils@2.1.25":
resolution:
{
integrity: sha512-Y+iGko8uv/Fz5bQLLJyNSZGOdMW0G7cnlEX1CiNcKsRXX9cq/y/vwxrIAtLCZhKHr3m0VJmsjVPsvnM4uX8YLg==,
}
"@jridgewell/gen-mapping@0.3.5":
resolution:
{
integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==,
}
engines: { node: ">=6.0.0" }
"@jridgewell/resolve-uri@3.1.2":
resolution:
{
integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==,
}
engines: { node: ">=6.0.0" }
"@jridgewell/set-array@1.2.1":
resolution:
{
integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==,
}
engines: { node: ">=6.0.0" }
"@jridgewell/sourcemap-codec@1.5.0":
resolution:
{
integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==,
}
"@jridgewell/trace-mapping@0.3.25":
resolution:
{
integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==,
}
"@nodelib/fs.scandir@2.1.5":
resolution:
{
integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==,
}
engines: { node: ">= 8" }
"@nodelib/fs.stat@2.0.5":
resolution:
{
integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==,
}
engines: { node: ">= 8" }
"@nodelib/fs.walk@1.2.8":
resolution:
{
integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==,
}
engines: { node: ">= 8" }
"@polka/url@1.0.0-next.25":
resolution:
{
integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==,
}
"@rollup/pluginutils@5.1.0":
resolution:
{
integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==,
}
engines: { node: ">=14.0.0" }
peerDependencies:
rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
peerDependenciesMeta:
rollup:
optional: true
"@rollup/rollup-android-arm-eabi@4.18.1":
resolution:
{
integrity: sha512-lncuC4aHicncmbORnx+dUaAgzee9cm/PbIqgWz1PpXuwc+sa1Ct83tnqUDy/GFKleLiN7ZIeytM6KJ4cAn1SxA==,
}
cpu: [arm]
os: [android]
"@rollup/rollup-android-arm64@4.18.1":
resolution:
{
integrity: sha512-F/tkdw0WSs4ojqz5Ovrw5r9odqzFjb5LIgHdHZG65dFI1lWTWRVy32KDJLKRISHgJvqUeUhdIvy43fX41znyDg==,
}
cpu: [arm64]
os: [android]
"@rollup/rollup-darwin-arm64@4.18.1":
resolution:
{
integrity: sha512-vk+ma8iC1ebje/ahpxpnrfVQJibTMyHdWpOGZ3JpQ7Mgn/3QNHmPq7YwjZbIE7km73dH5M1e6MRRsnEBW7v5CQ==,
}
cpu: [arm64]
os: [darwin]
"@rollup/rollup-darwin-x64@4.18.1":
resolution:
{
integrity: sha512-IgpzXKauRe1Tafcej9STjSSuG0Ghu/xGYH+qG6JwsAUxXrnkvNHcq/NL6nz1+jzvWAnQkuAJ4uIwGB48K9OCGA==,
}
cpu: [x64]
os: [darwin]
"@rollup/rollup-linux-arm-gnueabihf@4.18.1":
resolution:
{
integrity: sha512-P9bSiAUnSSM7EmyRK+e5wgpqai86QOSv8BwvkGjLwYuOpaeomiZWifEos517CwbG+aZl1T4clSE1YqqH2JRs+g==,
}
cpu: [arm]
os: [linux]
libc: [glibc]
"@rollup/rollup-linux-arm-musleabihf@4.18.1":
resolution:
{
integrity: sha512-5RnjpACoxtS+aWOI1dURKno11d7krfpGDEn19jI8BuWmSBbUC4ytIADfROM1FZrFhQPSoP+KEa3NlEScznBTyQ==,
}
cpu: [arm]
os: [linux]
libc: [musl]
"@rollup/rollup-linux-arm64-gnu@4.18.1":
resolution:
{
integrity: sha512-8mwmGD668m8WaGbthrEYZ9CBmPug2QPGWxhJxh/vCgBjro5o96gL04WLlg5BA233OCWLqERy4YUzX3bJGXaJgQ==,
}
cpu: [arm64]
os: [linux]
libc: [glibc]
"@rollup/rollup-linux-arm64-musl@4.18.1":
resolution:
{
integrity: sha512-dJX9u4r4bqInMGOAQoGYdwDP8lQiisWb9et+T84l2WXk41yEej8v2iGKodmdKimT8cTAYt0jFb+UEBxnPkbXEQ==,
}
cpu: [arm64]
os: [linux]
libc: [musl]
"@rollup/rollup-linux-powerpc64le-gnu@4.18.1":
resolution:
{
integrity: sha512-V72cXdTl4EI0x6FNmho4D502sy7ed+LuVW6Ym8aI6DRQ9hQZdp5sj0a2usYOlqvFBNKQnLQGwmYnujo2HvjCxQ==,
}
cpu: [ppc64]
os: [linux]
libc: [glibc]
"@rollup/rollup-linux-riscv64-gnu@4.18.1":
resolution:
{
integrity: sha512-f+pJih7sxoKmbjghrM2RkWo2WHUW8UbfxIQiWo5yeCaCM0TveMEuAzKJte4QskBp1TIinpnRcxkquY+4WuY/tg==,
}
cpu: [riscv64]
os: [linux]
libc: [glibc]
"@rollup/rollup-linux-s390x-gnu@4.18.1":
resolution:
{
integrity: sha512-qb1hMMT3Fr/Qz1OKovCuUM11MUNLUuHeBC2DPPAWUYYUAOFWaxInaTwTQmc7Fl5La7DShTEpmYwgdt2hG+4TEg==,
}
cpu: [s390x]
os: [linux]
libc: [glibc]
"@rollup/rollup-linux-x64-gnu@4.18.1":
resolution:
{
integrity: sha512-7O5u/p6oKUFYjRbZkL2FLbwsyoJAjyeXHCU3O4ndvzg2OFO2GinFPSJFGbiwFDaCFc+k7gs9CF243PwdPQFh5g==,
}
cpu: [x64]
os: [linux]
libc: [glibc]
"@rollup/rollup-linux-x64-musl@4.18.1":
resolution:
{
integrity: sha512-pDLkYITdYrH/9Cv/Vlj8HppDuLMDUBmgsM0+N+xLtFd18aXgM9Nyqupb/Uw+HeidhfYg2lD6CXvz6CjoVOaKjQ==,
}
cpu: [x64]
os: [linux]
libc: [musl]
"@rollup/rollup-win32-arm64-msvc@4.18.1":
resolution:
{
integrity: sha512-W2ZNI323O/8pJdBGil1oCauuCzmVd9lDmWBBqxYZcOqWD6aWqJtVBQ1dFrF4dYpZPks6F+xCZHfzG5hYlSHZ6g==,
}
cpu: [arm64]
os: [win32]
"@rollup/rollup-win32-ia32-msvc@4.18.1":
resolution:
{
integrity: sha512-ELfEX1/+eGZYMaCIbK4jqLxO1gyTSOIlZr6pbC4SRYFaSIDVKOnZNMdoZ+ON0mrFDp4+H5MhwNC1H/AhE3zQLg==,
}
cpu: [ia32]
os: [win32]
"@rollup/rollup-win32-x64-msvc@4.18.1":
resolution:
{
integrity: sha512-yjk2MAkQmoaPYCSu35RLJ62+dz358nE83VfTePJRp8CG7aMg25mEJYpXFiD+NcevhX8LxD5OP5tktPXnXN7GDw==,
}
cpu: [x64]
os: [win32]
"@types/estree@1.0.5":
resolution:
{
integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==,
}
"@types/node@20.14.10":
resolution:
{
integrity: sha512-MdiXf+nDuMvY0gJKxyfZ7/6UFsETO7mGKF54MVD/ekJS6HdFtpZFBgrh6Pseu64XTb2MLyFPlbW6hj8HYRQNOQ==,
}
"@types/nprogress@0.2.3":
resolution:
{
integrity: sha512-k7kRA033QNtC+gLc4VPlfnue58CM1iQLgn1IMAU8VPHGOj7oIHPp9UlhedEnD/Gl8evoCjwkZjlBORtZ3JByUA==,
}
"@unocss/astro@0.61.3":
resolution:
{
integrity: sha512-VTgO+nm7PW7/VJt1kf1/4qTqMp4X4CdNG1XjYRGmCTONW+yHhFUEC1NAXt7t2wKEvCYSf5ObmjYowr2qM+GafQ==,
}
peerDependencies:
vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
peerDependenciesMeta:
vite:
optional: true
"@unocss/cli@0.61.3":
resolution:
{
integrity: sha512-yj4whI4PwwK9cZXVrtl10AkZlyl9+569xYX+g89cBxqG2wpnbfBvug/hsvw3DyPG6i2MxKAv3Z78uruKnzCIjw==,
}
engines: { node: ">=14" }
hasBin: true
"@unocss/config@0.61.3":
resolution:
{
integrity: sha512-ZSSj5ST8XhiKoi2hLtVcyS8YJxn+Ug/WfasQ2wwOArcYfVFzZUoOQKbLo85hFuI7NV5Fh/aQREoVaJQI111jDA==,
}
engines: { node: ">=14" }
"@unocss/core@0.61.3":
resolution:
{
integrity: sha512-9vixY1i5E0DQFtHJz/pHyFlFsiXJgL1bKHuocbl+GUi09lY/gE9TRm2qr2JOJx/BF720tMv9VxYI8Zq3EyPOXA==,
}
"@unocss/extractor-arbitrary-variants@0.61.3":
resolution:
{
integrity: sha512-8yFAavi4PXTZTyJqsSQJuZNdaERMyLP4Gs4IzBDt8zjmUrXmYfgV+bKif2eE52QKvtb5/Jsij3fgfMsJouln7A==,
}
"@unocss/inspector@0.61.3":
resolution:
{
integrity: sha512-F2WfVYdzM+CnocVSptBh945G85+RcxGd0KDm6q+Ctjs5NrHtT0TzX83USMLSjfFzTz/j+Q/kR1WOJWjKynVTXQ==,
}
"@unocss/postcss@0.61.3":
resolution:
{
integrity: sha512-i76kuYbrvqkVhdfD37mnVqiBJiq9azGzbKZHFIjFWApOxFLak1OTHX5TIwxPspFm8u7U7kmU03JCnqyxWIE0wQ==,
}
engines: { node: ">=14" }
peerDependencies:
postcss: ^8.4.21
"@unocss/preset-attributify@0.61.3":
resolution:
{
integrity: sha512-TSgje5WDfoicTOoh/Od6qlizkZd68vXTdtT7jYEvjCm2mV7EgDJpX+sj2eVv0rPuaARtIqs1b4yG7w3HA6BBnQ==,
}
"@unocss/preset-icons@0.61.3":
resolution:
{
integrity: sha512-XNti2mgfbRCClzKxy7eMPukgk/mepyGGJNqtONnZmOkzkyhx6KQ2/luhMYnz5xONMG/aseoXMc4Zc1VzOqePRA==,
}
"@unocss/preset-mini@0.61.3":
resolution:
{
integrity: sha512-QY9P7jcLePkmCGQSqX+ha4Rh2YhY9b9P8gtLFnjzqcdmSxvDFkT7Kf5Un/u/jwV+zCz/5t4F88vWLzBM6js6yQ==,
}
"@unocss/preset-tagify@0.61.3":
resolution:
{
integrity: sha512-ir+gZJ20hZKapsrxWRTjFjyVJmmUcnkvhk1AiMgoG62MP6GzBQgbkAiy2TzJIEU0zQb8pYhtZ5KePtno+1vcaQ==,
}
"@unocss/preset-typography@0.61.3":
resolution:
{
integrity: sha512-0b1JSk5/oi4DT86dO2sdscZlih4fVo//U6bh1cROAfLlYJsHlAEZau8IxLADcgBAYwCGtY94npfp6y60R37T/A==,
}
"@unocss/preset-uno@0.61.3":
resolution:
{
integrity: sha512-ULP0hLBTNJuB0iQqaYaJZYbC4jwQYy0C6H7un3o4R+KsqIuyDanme2VsY51U5mN/pp7K6QJK6qE8EHVvtjCLHQ==,
}
"@unocss/preset-web-fonts@0.61.3":
resolution:
{
integrity: sha512-uBQKjIY+vUWCEqcgjEzdxok8svOmNNHDk1r+qh/Y5VLPWvPdA+Bb5iIwrxib3zzQvkT+au/utCeTGKGgIVhcXA==,
}
"@unocss/preset-wind@0.61.3":
resolution:
{
integrity: sha512-THdTNAYEtvLz/jhHNgkpLFxC+LNn4W2VqDmpmK/fVMgSlhOYJ8IoQlt8nwgBRbNkEksvgItq8gL/t5+2sHGHhA==,
}
"@unocss/reset@0.61.3":
resolution:
{
integrity: sha512-WegQ6Plmr/H0D9wuKCVjhUMzi/xAn55A0mJgUnKl1pJHTZetRdK29u0bnpVQzynmlh/Lh4YtD+X4r8DVkASgPw==,
}
"@unocss/rule-utils@0.61.3":
resolution:
{
integrity: sha512-XwzXE6YUAEc1+4TvJruZfntIM7eo+HdQDMlMI289w9YLLAXw973fp00E9U1dR16JRt1BWzlCnnY1RHAqSiXCVw==,
}
engines: { node: ">=14" }
"@unocss/scope@0.61.3":
resolution:
{
integrity: sha512-yElJs2uUiBHyTHKLqWZRK5zvY+7XIqoFXc1Fkv+fxiGy1+4u+zLGoGA66bUWwbjDFLiFgEqwUBJ2+SzDC4Q0Ig==,
}
"@unocss/transformer-attributify-jsx-babel@0.61.3":
resolution:
{
integrity: sha512-Ubr2/XhB61C2EqrH0TnbJ9bGREvrORyotdRxpCCAzkBWh3i+J+kPrdGCFUgB+wHFcUPUuOKou+8o0rhWVY7mjw==,
}
"@unocss/transformer-attributify-jsx@0.61.3":
resolution:
{
integrity: sha512-KK4pi7xsxjRKk/RSFxkdl1JODsefD1YMaqgs6HM2KCdXctqUXd6RYQez7IfQwxnAeZupgatwoFe2CZd0Bbhq2g==,
}
"@unocss/transformer-compile-class@0.61.3":
resolution:
{
integrity: sha512-qHxJtRo+yjC0d+IIoNrOxnO8j5bdw7R4XDpR8+MKpGZgVQRmEGwl7Ej0PUGTudVknYGUdPmDTZGr693bzhwzQg==,
}
"@unocss/transformer-directives@0.61.3":
resolution:
{
integrity: sha512-FNJCOlXwi62tVXr4B8lDkHGxOIhNJw2qQpM5jeohLT7xpGPOmVvscWaWI0h6fjSREFwnnbRNif4YPLe/rB6PsA==,
}
"@unocss/transformer-variant-group@0.61.3":
resolution:
{
integrity: sha512-F7v05kfVDhIJ4lu3fjgkwV2GWoeJX4aszER8iqhwWz+0jVUaJRYAxzsVqE299uJ0ut07d+Di+JB7M4ZBRoH3qw==,
}
"@unocss/vite@0.61.3":
resolution:
{
integrity: sha512-Z2kq/hSv1RC3PYAaoXOGB0PEWXCVsgYtdnuFXR/8Tp0Yj2Wdeq906/s411/sqMUvXIaIhm2O9WaDfe0ISoV0sg==,
}
peerDependencies:
vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
"@vitejs/plugin-vue-jsx@4.0.0":
resolution:
{
integrity: sha512-A+6wL2AdQhDsLsDnY+2v4rRDI1HLJGIMc97a8FURO9tqKsH5QvjWrzsa5DH3NlZsM742W2wODl2fF+bfcTWtXw==,
}
engines: { node: ^18.0.0 || >=20.0.0 }
peerDependencies:
vite: ^5.0.0
vue: ^3.0.0
"@vitejs/plugin-vue@5.0.5":
resolution:
{
integrity: sha512-LOjm7XeIimLBZyzinBQ6OSm3UBCNVCpLkxGC0oWmm2YPzVZoxMsdvNVimLTBzpAnR9hl/yn1SHGuRfe6/Td9rQ==,
}
engines: { node: ^18.0.0 || >=20.0.0 }
peerDependencies:
vite: ^5.0.0
vue: ^3.2.25
"@volar/language-core@2.4.0-alpha.16":
resolution:
{
integrity: sha512-oOTnIZlx0P/idFwVw+W0NbzKDtZAQMzXSdIFfTePCKcXlb4Ys12GaGkx8NF9dsvPYV3nbv3ZsSxnkZWBmNKd7A==,
}
"@volar/source-map@2.4.0-alpha.16":
resolution:
{
integrity: sha512-sL9vNG7iR2hiKZor7UkD5Sufu3QCia4cbp2gX/nGRNSdaPbhOpdAoavwlBm0PrVkpiA19NZuavZoobD8krviFg==,
}
"@volar/typescript@2.4.0-alpha.16":
resolution:
{
integrity: sha512-WCx7z5O81McCQp2cC0c8081y+MgTiAR2WAiJjVL4tr4Qh4GgqK0lgn3CqAjcKizaK1R5y3wfrUqgIYr+QeFYcw==,
}
"@vue/babel-helper-vue-transform-on@1.2.2":
resolution:
{
integrity: sha512-nOttamHUR3YzdEqdM/XXDyCSdxMA9VizUKoroLX6yTyRtggzQMHXcmwh8a7ZErcJttIBIc9s68a1B8GZ+Dmvsw==,
}
"@vue/babel-plugin-jsx@1.2.2":
resolution:
{
integrity: sha512-nYTkZUVTu4nhP199UoORePsql0l+wj7v/oyQjtThUVhJl1U+6qHuoVhIvR3bf7eVKjbCK+Cs2AWd7mi9Mpz9rA==,
}
peerDependencies:
"@babel/core": ^7.0.0-0
peerDependenciesMeta:
"@babel/core":
optional: true
"@vue/babel-plugin-resolve-type@1.2.2":
resolution:
{
integrity: sha512-EntyroPwNg5IPVdUJupqs0CFzuf6lUrVvCspmv2J1FITLeGnUCuoGNNk78dgCusxEiYj6RMkTJflGSxk5aIC4A==,
}
peerDependencies:
"@babel/core": ^7.0.0-0
"@vue/compiler-core@3.4.31":
resolution:
{
integrity: sha512-skOiodXWTV3DxfDhB4rOf3OGalpITLlgCeOwb+Y9GJpfQ8ErigdBUHomBzvG78JoVE8MJoQsb+qhZiHfKeNeEg==,
}
"@vue/compiler-dom@3.4.31":
resolution:
{
integrity: sha512-wK424WMXsG1IGMyDGyLqB+TbmEBFM78hIsOJ9QwUVLGrcSk0ak6zYty7Pj8ftm7nEtdU/DGQxAXp0/lM/2cEpQ==,
}
"@vue/compiler-sfc@3.4.31":
resolution:
{
integrity: sha512-einJxqEw8IIJxzmnxmJBuK2usI+lJonl53foq+9etB2HAzlPjAS/wa7r0uUpXw5ByX3/0uswVSrjNb17vJm1kQ==,
}
"@vue/compiler-ssr@3.4.31":
resolution:
{
integrity: sha512-RtefmITAje3fJ8FSg1gwgDhdKhZVntIVbwupdyZDSifZTRMiWxWehAOTCc8/KZDnBOcYQ4/9VWxsTbd3wT0hAA==,
}
"@vue/devtools-api@6.6.3":
resolution:
{
integrity: sha512-0MiMsFma/HqA6g3KLKn+AGpL1kgKhFWszC9U29NfpWK5LE7bjeXxySWJrOJ77hBz+TBrBQ7o4QJqbPbqbs8rJw==,
}
"@vue/devtools-core@7.3.6":
resolution:
{
integrity: sha512-XqFYVkyS3eySHF4bgLt+KF6yL6nYzVY/JTJHnK6KIJXIE4GIAxmn5Gxfsb4cUG9sl0FGiMqRCnM37Q+P08wr8A==,
}
peerDependencies:
vue: ^3.0.0
"@vue/devtools-kit@7.3.6":
resolution:
{
integrity: sha512-5Ym9V3fkJenEoptqKoo+cgY5RTVwrSssFdzRsuyIgaeiskCT+rRJeQdwoo81tyrQ1mfS7Er1rYZlSzr3Y3L/ew==,
}
"@vue/devtools-shared@7.3.6":
resolution:
{
integrity: sha512-R/FOmdJV+hhuwcNoxp6e87RRkEeDMVhWH+nOsnHUrwjjsyeXJ2W1475Ozmw+cbZhejWQzftkHVKO28Fuo1yqCw==,
}
"@vue/language-core@2.0.26":
resolution:
{
integrity: sha512-/lt6SfQ3O1yDAhPsnLv9iSUgXd1dMHqUm/t3RctfqjuwQf1LnftZ414X3UBn6aXT4MiwXWtbNJ4Z0NZWwDWgJQ==,
}
peerDependencies:
typescript: "*"
peerDependenciesMeta:
typescript:
optional: true
"@vue/reactivity@3.4.31":
resolution:
{
integrity: sha512-VGkTani8SOoVkZNds1PfJ/T1SlAIOf8E58PGAhIOUDYPC4GAmFA2u/E14TDAFcf3vVDKunc4QqCe/SHr8xC65Q==,
}
"@vue/runtime-core@3.4.31":
resolution:
{
integrity: sha512-LDkztxeUPazxG/p8c5JDDKPfkCDBkkiNLVNf7XZIUnJ+66GVGkP+TIh34+8LtPisZ+HMWl2zqhIw0xN5MwU1cw==,
}
"@vue/runtime-dom@3.4.31":
resolution:
{
integrity: sha512-2Auws3mB7+lHhTFCg8E9ZWopA6Q6L455EcU7bzcQ4x6Dn4cCPuqj6S2oBZgN2a8vJRS/LSYYxwFFq2Hlx3Fsaw==,
}
"@vue/server-renderer@3.4.31":
resolution:
{
integrity: sha512-D5BLbdvrlR9PE3by9GaUp1gQXlCNadIZytMIb8H2h3FMWJd4oUfkUTEH2wAr3qxoRz25uxbTcbqd3WKlm9EHQA==,
}
peerDependencies:
vue: 3.4.31
"@vue/shared@3.4.31":
resolution:
{
integrity: sha512-Yp3wtJk//8cO4NItOPpi3QkLExAr/aLBGZMmTtW9WpdwBCJpRM6zj9WgWktXAl8IDIozwNMByT45JP3tO3ACWA==,
}
acorn@8.12.1:
resolution:
{
integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==,
}
engines: { node: ">=0.4.0" }
hasBin: true
ansi-styles@3.2.1:
resolution:
{
integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==,
}
engines: { node: ">=4" }
anymatch@3.1.3:
resolution:
{
integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==,
}
engines: { node: ">= 8" }
asynckit@0.4.0:
resolution:
{
integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==,
}
axios@1.7.2:
resolution:
{
integrity: sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==,
}
balanced-match@1.0.2:
resolution:
{
integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==,
}
binary-extensions@2.3.0:
resolution:
{
integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==,
}
engines: { node: ">=8" }
birpc@0.2.17:
resolution:
{
integrity: sha512-+hkTxhot+dWsLpp3gia5AkVHIsKlZybNT5gIYiDlNzJrmYPcTM9k5/w2uaj3IPpd7LlEYpmCj4Jj1nC41VhDFg==,
}
brace-expansion@2.0.1:
resolution:
{
integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==,
}
braces@3.0.3:
resolution:
{
integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==,
}
engines: { node: ">=8" }
browserslist@4.23.2:
resolution:
{
integrity: sha512-qkqSyistMYdxAcw+CzbZwlBy8AGmS/eEWs+sEV5TnLRGDOL+C5M2EnH6tlZyg0YoAxGJAFKh61En9BR941GnHA==,
}
engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 }
hasBin: true
bundle-name@4.1.0:
resolution:
{
integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==,
}
engines: { node: ">=18" }
cac@6.7.14:
resolution:
{
integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==,
}
engines: { node: ">=8" }
camelcase@6.3.0:
resolution:
{
integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==,
}
engines: { node: ">=10" }
caniuse-lite@1.0.30001642:
resolution:
{
integrity: sha512-3XQ0DoRgLijXJErLSl+bLnJ+Et4KqV1PY6JJBGAFlsNsz31zeAIncyeZfLCabHK/jtSh+671RM9YMldxjUPZtA==,
}
chalk@2.4.2:
resolution:
{
integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==,
}
engines: { node: ">=4" }
chokidar@3.6.0:
resolution:
{
integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==,
}
engines: { node: ">= 8.10.0" }
color-convert@1.9.3:
resolution:
{
integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==,
}
color-name@1.1.3:
resolution:
{
integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==,
}
colorette@2.0.20:
resolution:
{
integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==,
}
combined-stream@1.0.8:
resolution:
{
integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==,
}
engines: { node: ">= 0.8" }
computeds@0.0.1:
resolution:
{
integrity: sha512-7CEBgcMjVmitjYo5q8JTJVra6X5mQ20uTThdK+0kR7UEaDrAWEQcRiBtWJzga4eRpP6afNwwLsX2SET2JhVB1Q==,
}
confbox@0.1.7:
resolution:
{
integrity: sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==,
}
consola@3.2.3:
resolution:
{
integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==,
}
engines: { node: ^14.18.0 || >=16.10.0 }
convert-source-map@2.0.0:
resolution:
{
integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==,
}
copy-anything@3.0.5:
resolution:
{
integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==,
}
engines: { node: ">=12.13" }
cross-spawn@7.0.3:
resolution:
{
integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==,
}
engines: { node: ">= 8" }
css-tree@2.3.1:
resolution:
{
integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==,
}
engines: { node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0 }
csstype@3.1.3:
resolution:
{
integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==,
}
de-indent@1.0.2:
resolution:
{
integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==,
}
debug@4.3.5:
resolution:
{
integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==,
}
engines: { node: ">=6.0" }
peerDependencies:
supports-color: "*"
peerDependenciesMeta:
supports-color:
optional: true
default-browser-id@5.0.0:
resolution:
{
integrity: sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==,
}
engines: { node: ">=18" }
default-browser@5.2.1:
resolution:
{
integrity: sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==,
}
engines: { node: ">=18" }
define-lazy-prop@3.0.0:
resolution:
{
integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==,
}
engines: { node: ">=12" }
defu@6.1.4:
resolution:
{
integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==,
}
delayed-stream@1.0.0:
resolution:
{
integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==,
}
engines: { node: ">=0.4.0" }
destr@2.0.3:
resolution:
{
integrity: sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==,
}
duplexer@0.1.2:
resolution:
{
integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==,
}
electron-to-chromium@1.4.827:
resolution:
{
integrity: sha512-VY+J0e4SFcNfQy19MEoMdaIcZLmDCprqvBtkii1WTCTQHpRvf5N8+3kTYCgL/PcntvwQvmMJWTuDPsq+IlhWKQ==,
}
entities@4.5.0:
resolution:
{
integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==,
}
engines: { node: ">=0.12" }
error-stack-parser-es@0.1.5:
resolution:
{
integrity: sha512-xHku1X40RO+fO8yJ8Wh2f2rZWVjqyhb1zgq1yZ8aZRQkv6OOKhKWRUaht3eSCUbAOBaKIgM+ykwFLE+QUxgGeg==,
}
esbuild@0.21.5:
resolution:
{
integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==,
}
engines: { node: ">=12" }
hasBin: true
escalade@3.1.2:
resolution:
{
integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==,
}
engines: { node: ">=6" }
escape-string-regexp@1.0.5:
resolution:
{
integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==,
}
engines: { node: ">=0.8.0" }
estree-walker@2.0.2:
resolution:
{
integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==,
}
execa@5.1.1:
resolution:
{
integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==,
}
engines: { node: ">=10" }
execa@8.0.1:
resolution:
{
integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==,
}
engines: { node: ">=16.17" }
fast-glob@3.3.2:
resolution:
{
integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==,
}
engines: { node: ">=8.6.0" }
fastq@1.17.1:
resolution:
{
integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==,
}
fill-range@7.1.1:
resolution:
{
integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==,
}
engines: { node: ">=8" }
find-up@5.0.0:
resolution:
{
integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==,
}
engines: { node: ">=10" }
follow-redirects@1.15.6:
resolution:
{
integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==,
}
engines: { node: ">=4.0" }
peerDependencies:
debug: "*"
peerDependenciesMeta:
debug:
optional: true
form-data@4.0.0:
resolution:
{
integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==,
}
engines: { node: ">= 6" }
fs-extra@11.2.0:
resolution:
{
integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==,
}
engines: { node: ">=14.14" }
fsevents@2.3.3:
resolution:
{
integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==,
}
engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 }
os: [darwin]
gensync@1.0.0-beta.2:
resolution:
{
integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==,
}
engines: { node: ">=6.9.0" }
get-stream@6.0.1:
resolution:
{
integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==,
}
engines: { node: ">=10" }
get-stream@8.0.1:
resolution:
{
integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==,
}
engines: { node: ">=16" }
glob-parent@5.1.2:
resolution:
{
integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==,
}
engines: { node: ">= 6" }
globals@11.12.0:
resolution:
{
integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==,
}
engines: { node: ">=4" }
graceful-fs@4.2.11:
resolution:
{
integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==,
}
gzip-size@6.0.0:
resolution:
{
integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==,
}
engines: { node: ">=10" }
has-flag@3.0.0:
resolution:
{
integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==,
}
engines: { node: ">=4" }
he@1.2.0:
resolution:
{
integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==,
}
hasBin: true
hookable@5.5.3:
resolution:
{
integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==,
}
html-tags@3.3.1:
resolution:
{
integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==,
}
engines: { node: ">=8" }
human-signals@2.1.0:
resolution:
{
integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==,
}
engines: { node: ">=10.17.0" }
human-signals@5.0.0:
resolution:
{
integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==,
}
engines: { node: ">=16.17.0" }
is-binary-path@2.1.0:
resolution:
{
integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==,
}
engines: { node: ">=8" }
is-docker@3.0.0:
resolution:
{
integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==,
}
engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
hasBin: true
is-extglob@2.1.1:
resolution:
{
integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==,
}
engines: { node: ">=0.10.0" }
is-glob@4.0.3:
resolution:
{
integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==,
}
engines: { node: ">=0.10.0" }
is-inside-container@1.0.0:
resolution:
{
integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==,
}
engines: { node: ">=14.16" }
hasBin: true
is-number@7.0.0:
resolution:
{
integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==,
}
engines: { node: ">=0.12.0" }
is-stream@2.0.1:
resolution:
{
integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==,
}
engines: { node: ">=8" }
is-stream@3.0.0:
resolution:
{
integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==,
}
engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
is-what@4.1.16:
resolution:
{
integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==,
}
engines: { node: ">=12.13" }
is-wsl@3.1.0:
resolution:
{
integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==,
}
engines: { node: ">=16" }
isexe@2.0.0:
resolution:
{
integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==,
}
jiti@1.21.6:
resolution:
{
integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==,
}
hasBin: true
js-tokens@4.0.0:
resolution:
{
integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==,
}
jsesc@2.5.2:
resolution:
{
integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==,
}
engines: { node: ">=4" }
hasBin: true
json5@2.2.3:
resolution:
{
integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==,
}
engines: { node: ">=6" }
hasBin: true
jsonfile@6.1.0:
resolution:
{
integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==,
}
kolorist@1.8.0:
resolution:
{
integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==,
}
local-pkg@0.5.0:
resolution:
{
integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==,
}
engines: { node: ">=14" }
locate-path@6.0.0:
resolution:
{
integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==,
}
engines: { node: ">=10" }
lru-cache@5.1.1:
resolution:
{
integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==,
}
magic-string@0.30.10:
resolution:
{
integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==,
}
mdn-data@2.0.30:
resolution:
{
integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==,
}
merge-stream@2.0.0:
resolution:
{
integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==,
}
merge2@1.4.1:
resolution:
{
integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==,
}
engines: { node: ">= 8" }
micromatch@4.0.7:
resolution:
{
integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==,
}
engines: { node: ">=8.6" }
mime-db@1.52.0:
resolution:
{
integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==,
}
engines: { node: ">= 0.6" }
mime-types@2.1.35:
resolution:
{
integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==,
}
engines: { node: ">= 0.6" }
mimic-fn@2.1.0:
resolution:
{
integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==,
}
engines: { node: ">=6" }
mimic-fn@4.0.0:
resolution:
{
integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==,
}
engines: { node: ">=12" }
minimatch@9.0.5:
resolution:
{
integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==,
}
engines: { node: ">=16 || 14 >=14.17" }
mitt@3.0.1:
resolution:
{
integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==,
}
mlly@1.7.1:
resolution:
{
integrity: sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==,
}
mrmime@2.0.0:
resolution:
{
integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==,
}
engines: { node: ">=10" }
ms@2.1.2:
resolution:
{
integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==,
}
muggle-string@0.4.1:
resolution:
{
integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==,
}
nanoid@3.3.7:
resolution:
{
integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==,
}
engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 }
hasBin: true
node-fetch-native@1.6.4:
resolution:
{
integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==,
}
node-releases@2.0.14:
resolution:
{
integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==,
}
normalize-path@3.0.0:
resolution:
{
integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==,
}
engines: { node: ">=0.10.0" }
npm-run-path@4.0.1:
resolution:
{
integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==,
}
engines: { node: ">=8" }
npm-run-path@5.3.0:
resolution:
{
integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==,
}
engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
nprogress@0.2.0:
resolution:
{
integrity: sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==,
}
ofetch@1.3.4:
resolution:
{
integrity: sha512-KLIET85ik3vhEfS+3fDlc/BAZiAp+43QEC/yCo5zkNoY2YaKvNkOaFr/6wCFgFH1kuYQM5pMNi0Tg8koiIemtw==,
}
onetime@5.1.2:
resolution:
{
integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==,
}
engines: { node: ">=6" }
onetime@6.0.0:
resolution:
{
integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==,
}
engines: { node: ">=12" }
open@10.1.0:
resolution:
{
integrity: sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==,
}
engines: { node: ">=18" }
p-limit@3.1.0:
resolution:
{
integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==,
}
engines: { node: ">=10" }
p-locate@5.0.0:
resolution:
{
integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==,
}
engines: { node: ">=10" }
path-browserify@1.0.1:
resolution:
{
integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==,
}
path-exists@4.0.0:
resolution:
{
integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==,
}
engines: { node: ">=8" }
path-key@3.1.1:
resolution:
{
integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==,
}
engines: { node: ">=8" }
path-key@4.0.0:
resolution:
{
integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==,
}
engines: { node: ">=12" }
pathe@1.1.2:
resolution:
{
integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==,
}
perfect-debounce@1.0.0:
resolution:
{
integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==,
}
picocolors@1.0.1:
resolution:
{
integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==,
}
picomatch@2.3.1:
resolution:
{
integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==,
}
engines: { node: ">=8.6" }
pinia@2.1.7:
resolution:
{
integrity: sha512-+C2AHFtcFqjPih0zpYuvof37SFxMQ7OEG2zV9jRI12i9BOy3YQVAHwdKtyyc8pDcDyIc33WCIsZaCFWU7WWxGQ==,
}
peerDependencies:
"@vue/composition-api": ^1.4.0
typescript: ">=4.4.4"
vue: ^2.6.14 || ^3.3.0
peerDependenciesMeta:
"@vue/composition-api":
optional: true
typescript:
optional: true
pkg-types@1.1.3:
resolution:
{
integrity: sha512-+JrgthZG6m3ckicaOB74TwQ+tBWsFl3qVQg7mN8ulwSOElJ7gBhKzj2VkCPnZ4NlF6kEquYU+RIYNVAvzd54UA==,
}
postcss@8.4.39:
resolution:
{
integrity: sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==,
}
engines: { node: ^10 || ^12 || >=14 }
prettier@3.3.3:
resolution:
{
integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==,
}
engines: { node: ">=14" }
hasBin: true
proxy-from-env@1.1.0:
resolution:
{
integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==,
}
queue-microtask@1.2.3:
resolution:
{
integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==,
}
readdirp@3.6.0:
resolution:
{
integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==,
}
engines: { node: ">=8.10.0" }
reusify@1.0.4:
resolution:
{
integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==,
}
engines: { iojs: ">=1.0.0", node: ">=0.10.0" }
rfdc@1.4.1:
resolution:
{
integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==,
}
rollup@4.18.1:
resolution:
{
integrity: sha512-Elx2UT8lzxxOXMpy5HWQGZqkrQOtrVDDa/bm9l10+U4rQnVzbL/LgZ4NOM1MPIDyHk69W4InuYDF5dzRh4Kw1A==,
}
engines: { node: ">=18.0.0", npm: ">=8.0.0" }
hasBin: true
run-applescript@7.0.0:
resolution:
{
integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==,
}
engines: { node: ">=18" }
run-parallel@1.2.0:
resolution:
{
integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==,
}
semver@6.3.1:
resolution:
{
integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==,
}
hasBin: true
semver@7.6.2:
resolution:
{
integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==,
}
engines: { node: ">=10" }
hasBin: true
shebang-command@2.0.0:
resolution:
{
integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==,
}
engines: { node: ">=8" }
shebang-regex@3.0.0:
resolution:
{
integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==,
}
engines: { node: ">=8" }
signal-exit@3.0.7:
resolution:
{
integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==,
}
signal-exit@4.1.0:
resolution:
{
integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==,
}
engines: { node: ">=14" }
sirv@2.0.4:
resolution:
{
integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==,
}
engines: { node: ">= 10" }
source-map-js@1.2.0:
resolution:
{
integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==,
}
engines: { node: ">=0.10.0" }
speakingurl@14.0.1:
resolution:
{
integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==,
}
engines: { node: ">=0.10.0" }
strip-final-newline@2.0.0:
resolution:
{
integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==,
}
engines: { node: ">=6" }
strip-final-newline@3.0.0:
resolution:
{
integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==,
}
engines: { node: ">=12" }
superjson@2.2.1:
resolution:
{
integrity: sha512-8iGv75BYOa0xRJHK5vRLEjE2H/i4lulTjzpUXic3Eg8akftYjkmQDa8JARQ42rlczXyFR3IeRoeFCc7RxHsYZA==,
}
engines: { node: ">=16" }
supports-color@5.5.0:
resolution:
{
integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==,
}
engines: { node: ">=4" }
svg-tags@1.0.0:
resolution:
{
integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==,
}
to-fast-properties@2.0.0:
resolution:
{
integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==,
}
engines: { node: ">=4" }
to-regex-range@5.0.1:
resolution:
{
integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==,
}
engines: { node: ">=8.0" }
totalist@3.0.1:
resolution:
{
integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==,
}
engines: { node: ">=6" }
typescript@5.5.3:
resolution:
{
integrity: sha512-/hreyEujaB0w76zKo6717l3L0o/qEUtRgdvUBvlkhoWeOVMjMuHNHk0BRBzikzuGDqNmPQbg5ifMEqsHLiIUcQ==,
}
engines: { node: ">=14.17" }
hasBin: true
ufo@1.5.3:
resolution:
{
integrity: sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==,
}
unconfig@0.3.13:
resolution:
{
integrity: sha512-N9Ph5NC4+sqtcOjPfHrRcHekBCadCXWTBzp2VYYbySOHW0PfD9XLCeXshTXjkPYwLrBr9AtSeU0CZmkYECJhng==,
}
undici-types@5.26.5:
resolution:
{
integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==,
}
universalify@2.0.1:
resolution:
{
integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==,
}
engines: { node: ">= 10.0.0" }
unocss@0.61.3:
resolution:
{
integrity: sha512-Mpci+yP9CUnDjSwm0EAq9U76cgiNB5UM0ztXfDjjMiSe+jOS6sZ2A+kZ5JY9ZBRx5TX0Wh4kQBoPQQ1ooxHicg==,
}
engines: { node: ">=14" }
peerDependencies:
"@unocss/webpack": 0.61.3
vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
peerDependenciesMeta:
"@unocss/webpack":
optional: true
vite:
optional: true
update-browserslist-db@1.1.0:
resolution:
{
integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==,
}
hasBin: true
peerDependencies:
browserslist: ">= 4.21.0"
vite-hot-client@0.2.3:
resolution:
{
integrity: sha512-rOGAV7rUlUHX89fP2p2v0A2WWvV3QMX2UYq0fRqsWSvFvev4atHWqjwGoKaZT1VTKyLGk533ecu3eyd0o59CAg==,
}
peerDependencies:
vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0
vite-plugin-inspect@0.8.5:
resolution:
{
integrity: sha512-JvTUqsP1JNDw0lMZ5Z/r5cSj81VK2B7884LO1DC3GMBhdcjcsAnJjdWq7bzQL01Xbh+v60d3lju3g+z7eAtNew==,
}
engines: { node: ">=14" }
peerDependencies:
"@nuxt/kit": "*"
vite: ^3.1.0 || ^4.0.0 || ^5.0.0-0
peerDependenciesMeta:
"@nuxt/kit":
optional: true
vite-plugin-vue-devtools@7.3.6:
resolution:
{
integrity: sha512-j4Cssv6DVBtMZfyVBEm/4MZy7BiL6RedEn+f9jT3zFyGZKG1vNuEpTO86XvPPbHbYdITFyrkWb7VQuWyhfSgqA==,
}
engines: { node: ">=v14.21.3" }
peerDependencies:
vite: ^3.1.0 || ^4.0.0-0 || ^5.0.0-0
vite-plugin-vue-inspector@5.1.2:
resolution:
{
integrity: sha512-M+yH2LlQtVNzJAljQM+61CqDXBvHim8dU5ImGaQuwlo13tMDHue5D7IC20YwDJuWDODiYc/cZBUYspVlyPf2vQ==,
}
peerDependencies:
vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0
vite@5.3.3:
resolution:
{
integrity: sha512-NPQdeCU0Dv2z5fu+ULotpuq5yfCS1BzKUIPhNbP3YBfAMGJXbt2nS+sbTFu+qchaqWTD+H3JK++nRwr6XIcp6A==,
}
engines: { node: ^18.0.0 || >=20.0.0 }
hasBin: true
peerDependencies:
"@types/node": ^18.0.0 || >=20.0.0
less: "*"
lightningcss: ^1.21.0
sass: "*"
stylus: "*"
sugarss: "*"
terser: ^5.4.0
peerDependenciesMeta:
"@types/node":
optional: true
less:
optional: true
lightningcss:
optional: true
sass:
optional: true
stylus:
optional: true
sugarss:
optional: true
terser:
optional: true
vscode-uri@3.0.8:
resolution:
{
integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==,
}
vue-demi@0.14.8:
resolution:
{
integrity: sha512-Uuqnk9YE9SsWeReYqK2alDI5YzciATE0r2SkA6iMAtuXvNTMNACJLJEXNXaEy94ECuBe4Sk6RzRU80kjdbIo1Q==,
}
engines: { node: ">=12" }
hasBin: true
peerDependencies:
"@vue/composition-api": ^1.0.0-rc.1
vue: ^3.0.0-0 || ^2.6.0
peerDependenciesMeta:
"@vue/composition-api":
optional: true
vue-router@4.4.0:
resolution:
{
integrity: sha512-HB+t2p611aIZraV2aPSRNXf0Z/oLZFrlygJm+sZbdJaW6lcFqEDQwnzUBXn+DApw+/QzDU/I9TeWx9izEjTmsA==,
}
peerDependencies:
vue: ^3.2.0
vue-template-compiler@2.7.16:
resolution:
{
integrity: sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ==,
}
vue-tsc@2.0.26:
resolution:
{
integrity: sha512-tOhuwy2bIXbMhz82ef37qeiaQHMXKQkD6mOF6CCPl3/uYtST3l6fdNyfMxipudrQTxTfXVPlgJdMENBFfC1CfQ==,
}
hasBin: true
peerDependencies:
typescript: ">=5.0.0"
vue@3.4.31:
resolution:
{
integrity: sha512-njqRrOy7W3YLAlVqSKpBebtZpDVg21FPoaq1I7f/+qqBThK9ChAIjkRWgeP6Eat+8C+iia4P3OYqpATP21BCoQ==,
}
peerDependencies:
typescript: "*"
peerDependenciesMeta:
typescript:
optional: true
which@2.0.2:
resolution:
{
integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==,
}
engines: { node: ">= 8" }
hasBin: true
yallist@3.1.1:
resolution:
{
integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==,
}
yocto-queue@0.1.0:
resolution:
{
integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==,
}
engines: { node: ">=10" }
snapshots:
"@ampproject/remapping@2.3.0":
dependencies:
"@jridgewell/gen-mapping": 0.3.5
"@jridgewell/trace-mapping": 0.3.25
"@antfu/install-pkg@0.1.1":
dependencies:
execa: 5.1.1
find-up: 5.0.0
"@antfu/utils@0.7.10": {}
"@babel/code-frame@7.24.7":
dependencies:
"@babel/highlight": 7.24.7
picocolors: 1.0.1
"@babel/compat-data@7.24.8": {}
"@babel/core@7.24.8":
dependencies:
"@ampproject/remapping": 2.3.0
"@babel/code-frame": 7.24.7
"@babel/generator": 7.24.8
"@babel/helper-compilation-targets": 7.24.8
"@babel/helper-module-transforms": 7.24.8(@babel/core@7.24.8)
"@babel/helpers": 7.24.8
"@babel/parser": 7.24.8
"@babel/template": 7.24.7
"@babel/traverse": 7.24.8
"@babel/types": 7.24.8
convert-source-map: 2.0.0
debug: 4.3.5
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
"@babel/generator@7.24.8":
dependencies:
"@babel/types": 7.24.8
"@jridgewell/gen-mapping": 0.3.5
"@jridgewell/trace-mapping": 0.3.25
jsesc: 2.5.2
"@babel/helper-annotate-as-pure@7.24.7":
dependencies:
"@babel/types": 7.24.8
"@babel/helper-compilation-targets@7.24.8":
dependencies:
"@babel/compat-data": 7.24.8
"@babel/helper-validator-option": 7.24.8
browserslist: 4.23.2
lru-cache: 5.1.1
semver: 6.3.1
"@babel/helper-create-class-features-plugin@7.24.8(@babel/core@7.24.8)":
dependencies:
"@babel/core": 7.24.8
"@babel/helper-annotate-as-pure": 7.24.7
"@babel/helper-environment-visitor": 7.24.7
"@babel/helper-function-name": 7.24.7
"@babel/helper-member-expression-to-functions": 7.24.8
"@babel/helper-optimise-call-expression": 7.24.7
"@babel/helper-replace-supers": 7.24.7(@babel/core@7.24.8)
"@babel/helper-skip-transparent-expression-wrappers": 7.24.7
"@babel/helper-split-export-declaration": 7.24.7
semver: 6.3.1
transitivePeerDependencies:
- supports-color
"@babel/helper-environment-visitor@7.24.7":
dependencies:
"@babel/types": 7.24.8
"@babel/helper-function-name@7.24.7":
dependencies:
"@babel/template": 7.24.7
"@babel/types": 7.24.8
"@babel/helper-hoist-variables@7.24.7":
dependencies:
"@babel/types": 7.24.8
"@babel/helper-member-expression-to-functions@7.24.8":
dependencies:
"@babel/traverse": 7.24.8
"@babel/types": 7.24.8
transitivePeerDependencies:
- supports-color
"@babel/helper-module-imports@7.22.15":
dependencies:
"@babel/types": 7.24.8
"@babel/helper-module-imports@7.24.7":
dependencies:
"@babel/traverse": 7.24.8
"@babel/types": 7.24.8
transitivePeerDependencies:
- supports-color
"@babel/helper-module-transforms@7.24.8(@babel/core@7.24.8)":
dependencies:
"@babel/core": 7.24.8
"@babel/helper-environment-visitor": 7.24.7
"@babel/helper-module-imports": 7.24.7
"@babel/helper-simple-access": 7.24.7
"@babel/helper-split-export-declaration": 7.24.7
"@babel/helper-validator-identifier": 7.24.7
transitivePeerDependencies:
- supports-color
"@babel/helper-optimise-call-expression@7.24.7":
dependencies:
"@babel/types": 7.24.8
"@babel/helper-plugin-utils@7.24.8": {}
"@babel/helper-replace-supers@7.24.7(@babel/core@7.24.8)":
dependencies:
"@babel/core": 7.24.8
"@babel/helper-environment-visitor": 7.24.7
"@babel/helper-member-expression-to-functions": 7.24.8
"@babel/helper-optimise-call-expression": 7.24.7
transitivePeerDependencies:
- supports-color
"@babel/helper-simple-access@7.24.7":
dependencies:
"@babel/traverse": 7.24.8
"@babel/types": 7.24.8
transitivePeerDependencies:
- supports-color
"@babel/helper-skip-transparent-expression-wrappers@7.24.7":
dependencies:
"@babel/traverse": 7.24.8
"@babel/types": 7.24.8
transitivePeerDependencies:
- supports-color
"@babel/helper-split-export-declaration@7.24.7":
dependencies:
"@babel/types": 7.24.8
"@babel/helper-string-parser@7.24.8": {}
"@babel/helper-validator-identifier@7.24.7": {}
"@babel/helper-validator-option@7.24.8": {}
"@babel/helpers@7.24.8":
dependencies:
"@babel/template": 7.24.7
"@babel/types": 7.24.8
"@babel/highlight@7.24.7":
dependencies:
"@babel/helper-validator-identifier": 7.24.7
chalk: 2.4.2
js-tokens: 4.0.0
picocolors: 1.0.1
"@babel/parser@7.24.8":
dependencies:
"@babel/types": 7.24.8
"@babel/plugin-proposal-decorators@7.24.7(@babel/core@7.24.8)":
dependencies:
"@babel/core": 7.24.8
"@babel/helper-create-class-features-plugin": 7.24.8(@babel/core@7.24.8)
"@babel/helper-plugin-utils": 7.24.8
"@babel/plugin-syntax-decorators": 7.24.7(@babel/core@7.24.8)
transitivePeerDependencies:
- supports-color
"@babel/plugin-syntax-decorators@7.24.7(@babel/core@7.24.8)":
dependencies:
"@babel/core": 7.24.8
"@babel/helper-plugin-utils": 7.24.8
"@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.24.8)":
dependencies:
"@babel/core": 7.24.8
"@babel/helper-plugin-utils": 7.24.8
"@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.8)":
dependencies:
"@babel/core": 7.24.8
"@babel/helper-plugin-utils": 7.24.8
"@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.8)":
dependencies:
"@babel/core": 7.24.8
"@babel/helper-plugin-utils": 7.24.8
"@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.8)":
dependencies:
"@babel/core": 7.24.8
"@babel/helper-plugin-utils": 7.24.8
"@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.24.8)":
dependencies:
"@babel/core": 7.24.8
"@babel/helper-module-transforms": 7.24.8(@babel/core@7.24.8)
"@babel/helper-plugin-utils": 7.24.8
"@babel/helper-simple-access": 7.24.7
transitivePeerDependencies:
- supports-color
"@babel/plugin-transform-typescript@7.24.8(@babel/core@7.24.8)":
dependencies:
"@babel/core": 7.24.8
"@babel/helper-annotate-as-pure": 7.24.7
"@babel/helper-create-class-features-plugin": 7.24.8(@babel/core@7.24.8)
"@babel/helper-plugin-utils": 7.24.8
"@babel/plugin-syntax-typescript": 7.24.7(@babel/core@7.24.8)
transitivePeerDependencies:
- supports-color
"@babel/preset-typescript@7.24.7(@babel/core@7.24.8)":
dependencies:
"@babel/core": 7.24.8
"@babel/helper-plugin-utils": 7.24.8
"@babel/helper-validator-option": 7.24.8
"@babel/plugin-syntax-jsx": 7.24.7(@babel/core@7.24.8)
"@babel/plugin-transform-modules-commonjs": 7.24.8(@babel/core@7.24.8)
"@babel/plugin-transform-typescript": 7.24.8(@babel/core@7.24.8)
transitivePeerDependencies:
- supports-color
"@babel/template@7.24.7":
dependencies:
"@babel/code-frame": 7.24.7
"@babel/parser": 7.24.8
"@babel/types": 7.24.8
"@babel/traverse@7.24.8":
dependencies:
"@babel/code-frame": 7.24.7
"@babel/generator": 7.24.8
"@babel/helper-environment-visitor": 7.24.7
"@babel/helper-function-name": 7.24.7
"@babel/helper-hoist-variables": 7.24.7
"@babel/helper-split-export-declaration": 7.24.7
"@babel/parser": 7.24.8
"@babel/types": 7.24.8
debug: 4.3.5
globals: 11.12.0
transitivePeerDependencies:
- supports-color
"@babel/types@7.24.8":
dependencies:
"@babel/helper-string-parser": 7.24.8
"@babel/helper-validator-identifier": 7.24.7
to-fast-properties: 2.0.0
"@esbuild/aix-ppc64@0.21.5":
optional: true
"@esbuild/android-arm64@0.21.5":
optional: true
"@esbuild/android-arm@0.21.5":
optional: true
"@esbuild/android-x64@0.21.5":
optional: true
"@esbuild/darwin-arm64@0.21.5":
optional: true
"@esbuild/darwin-x64@0.21.5":
optional: true
"@esbuild/freebsd-arm64@0.21.5":
optional: true
"@esbuild/freebsd-x64@0.21.5":
optional: true
"@esbuild/linux-arm64@0.21.5":
optional: true
"@esbuild/linux-arm@0.21.5":
optional: true
"@esbuild/linux-ia32@0.21.5":
optional: true
"@esbuild/linux-loong64@0.21.5":
optional: true
"@esbuild/linux-mips64el@0.21.5":
optional: true
"@esbuild/linux-ppc64@0.21.5":
optional: true
"@esbuild/linux-riscv64@0.21.5":
optional: true
"@esbuild/linux-s390x@0.21.5":
optional: true
"@esbuild/linux-x64@0.21.5":
optional: true
"@esbuild/netbsd-x64@0.21.5":
optional: true
"@esbuild/openbsd-x64@0.21.5":
optional: true
"@esbuild/sunos-x64@0.21.5":
optional: true
"@esbuild/win32-arm64@0.21.5":
optional: true
"@esbuild/win32-ia32@0.21.5":
optional: true
"@esbuild/win32-x64@0.21.5":
optional: true
"@iconify/json@2.2.228":
dependencies:
"@iconify/types": 2.0.0
pathe: 1.1.2
"@iconify/types@2.0.0": {}
"@iconify/utils@2.1.25":
dependencies:
"@antfu/install-pkg": 0.1.1
"@antfu/utils": 0.7.10
"@iconify/types": 2.0.0
debug: 4.3.5
kolorist: 1.8.0
local-pkg: 0.5.0
mlly: 1.7.1
transitivePeerDependencies:
- supports-color
"@jridgewell/gen-mapping@0.3.5":
dependencies:
"@jridgewell/set-array": 1.2.1
"@jridgewell/sourcemap-codec": 1.5.0
"@jridgewell/trace-mapping": 0.3.25
"@jridgewell/resolve-uri@3.1.2": {}
"@jridgewell/set-array@1.2.1": {}
"@jridgewell/sourcemap-codec@1.5.0": {}
"@jridgewell/trace-mapping@0.3.25":
dependencies:
"@jridgewell/resolve-uri": 3.1.2
"@jridgewell/sourcemap-codec": 1.5.0
"@nodelib/fs.scandir@2.1.5":
dependencies:
"@nodelib/fs.stat": 2.0.5
run-parallel: 1.2.0
"@nodelib/fs.stat@2.0.5": {}
"@nodelib/fs.walk@1.2.8":
dependencies:
"@nodelib/fs.scandir": 2.1.5
fastq: 1.17.1
"@polka/url@1.0.0-next.25": {}
"@rollup/pluginutils@5.1.0(rollup@4.18.1)":
dependencies:
"@types/estree": 1.0.5
estree-walker: 2.0.2
picomatch: 2.3.1
optionalDependencies:
rollup: 4.18.1
"@rollup/rollup-android-arm-eabi@4.18.1":
optional: true
"@rollup/rollup-android-arm64@4.18.1":
optional: true
"@rollup/rollup-darwin-arm64@4.18.1":
optional: true
"@rollup/rollup-darwin-x64@4.18.1":
optional: true
"@rollup/rollup-linux-arm-gnueabihf@4.18.1":
optional: true
"@rollup/rollup-linux-arm-musleabihf@4.18.1":
optional: true
"@rollup/rollup-linux-arm64-gnu@4.18.1":
optional: true
"@rollup/rollup-linux-arm64-musl@4.18.1":
optional: true
"@rollup/rollup-linux-powerpc64le-gnu@4.18.1":
optional: true
"@rollup/rollup-linux-riscv64-gnu@4.18.1":
optional: true
"@rollup/rollup-linux-s390x-gnu@4.18.1":
optional: true
"@rollup/rollup-linux-x64-gnu@4.18.1":
optional: true
"@rollup/rollup-linux-x64-musl@4.18.1":
optional: true
"@rollup/rollup-win32-arm64-msvc@4.18.1":
optional: true
"@rollup/rollup-win32-ia32-msvc@4.18.1":
optional: true
"@rollup/rollup-win32-x64-msvc@4.18.1":
optional: true
"@types/estree@1.0.5": {}
"@types/node@20.14.10":
dependencies:
undici-types: 5.26.5
"@types/nprogress@0.2.3": {}
"@unocss/astro@0.61.3(rollup@4.18.1)(vite@5.3.3(@types/node@20.14.10))":
dependencies:
"@unocss/core": 0.61.3
"@unocss/reset": 0.61.3
"@unocss/vite": 0.61.3(rollup@4.18.1)(vite@5.3.3(@types/node@20.14.10))
optionalDependencies:
vite: 5.3.3(@types/node@20.14.10)
transitivePeerDependencies:
- rollup
"@unocss/cli@0.61.3(rollup@4.18.1)":
dependencies:
"@ampproject/remapping": 2.3.0
"@rollup/pluginutils": 5.1.0(rollup@4.18.1)
"@unocss/config": 0.61.3
"@unocss/core": 0.61.3
"@unocss/preset-uno": 0.61.3
cac: 6.7.14
chokidar: 3.6.0
colorette: 2.0.20
consola: 3.2.3
fast-glob: 3.3.2
magic-string: 0.30.10
pathe: 1.1.2
perfect-debounce: 1.0.0
transitivePeerDependencies:
- rollup
"@unocss/config@0.61.3":
dependencies:
"@unocss/core": 0.61.3
unconfig: 0.3.13
"@unocss/core@0.61.3": {}
"@unocss/extractor-arbitrary-variants@0.61.3":
dependencies:
"@unocss/core": 0.61.3
"@unocss/inspector@0.61.3":
dependencies:
"@unocss/core": 0.61.3
"@unocss/rule-utils": 0.61.3
gzip-size: 6.0.0
sirv: 2.0.4
"@unocss/postcss@0.61.3(postcss@8.4.39)":
dependencies:
"@unocss/config": 0.61.3
"@unocss/core": 0.61.3
"@unocss/rule-utils": 0.61.3
css-tree: 2.3.1
fast-glob: 3.3.2
magic-string: 0.30.10
postcss: 8.4.39
"@unocss/preset-attributify@0.61.3":
dependencies:
"@unocss/core": 0.61.3
"@unocss/preset-icons@0.61.3":
dependencies:
"@iconify/utils": 2.1.25
"@unocss/core": 0.61.3
ofetch: 1.3.4
transitivePeerDependencies:
- supports-color
"@unocss/preset-mini@0.61.3":
dependencies:
"@unocss/core": 0.61.3
"@unocss/extractor-arbitrary-variants": 0.61.3
"@unocss/rule-utils": 0.61.3
"@unocss/preset-tagify@0.61.3":
dependencies:
"@unocss/core": 0.61.3
"@unocss/preset-typography@0.61.3":
dependencies:
"@unocss/core": 0.61.3
"@unocss/preset-mini": 0.61.3
"@unocss/preset-uno@0.61.3":
dependencies:
"@unocss/core": 0.61.3
"@unocss/preset-mini": 0.61.3
"@unocss/preset-wind": 0.61.3
"@unocss/rule-utils": 0.61.3
"@unocss/preset-web-fonts@0.61.3":
dependencies:
"@unocss/core": 0.61.3
ofetch: 1.3.4
"@unocss/preset-wind@0.61.3":
dependencies:
"@unocss/core": 0.61.3
"@unocss/preset-mini": 0.61.3
"@unocss/rule-utils": 0.61.3
"@unocss/reset@0.61.3": {}
"@unocss/rule-utils@0.61.3":
dependencies:
"@unocss/core": 0.61.3
magic-string: 0.30.10
"@unocss/scope@0.61.3": {}
"@unocss/transformer-attributify-jsx-babel@0.61.3":
dependencies:
"@babel/core": 7.24.8
"@babel/plugin-syntax-jsx": 7.24.7(@babel/core@7.24.8)
"@babel/preset-typescript": 7.24.7(@babel/core@7.24.8)
"@unocss/core": 0.61.3
transitivePeerDependencies:
- supports-color
"@unocss/transformer-attributify-jsx@0.61.3":
dependencies:
"@unocss/core": 0.61.3
"@unocss/transformer-compile-class@0.61.3":
dependencies:
"@unocss/core": 0.61.3
"@unocss/transformer-directives@0.61.3":
dependencies:
"@unocss/core": 0.61.3
"@unocss/rule-utils": 0.61.3
css-tree: 2.3.1
"@unocss/transformer-variant-group@0.61.3":
dependencies:
"@unocss/core": 0.61.3
"@unocss/vite@0.61.3(rollup@4.18.1)(vite@5.3.3(@types/node@20.14.10))":
dependencies:
"@ampproject/remapping": 2.3.0
"@rollup/pluginutils": 5.1.0(rollup@4.18.1)
"@unocss/config": 0.61.3
"@unocss/core": 0.61.3
"@unocss/inspector": 0.61.3
"@unocss/scope": 0.61.3
"@unocss/transformer-directives": 0.61.3
chokidar: 3.6.0
fast-glob: 3.3.2
magic-string: 0.30.10
vite: 5.3.3(@types/node@20.14.10)
transitivePeerDependencies:
- rollup
"@vitejs/plugin-vue-jsx@4.0.0(vite@5.3.3(@types/node@20.14.10))(vue@3.4.31(typescript@5.5.3))":
dependencies:
"@babel/core": 7.24.8
"@babel/plugin-transform-typescript": 7.24.8(@babel/core@7.24.8)
"@vue/babel-plugin-jsx": 1.2.2(@babel/core@7.24.8)
vite: 5.3.3(@types/node@20.14.10)
vue: 3.4.31(typescript@5.5.3)
transitivePeerDependencies:
- supports-color
"@vitejs/plugin-vue@5.0.5(vite@5.3.3(@types/node@20.14.10))(vue@3.4.31(typescript@5.5.3))":
dependencies:
vite: 5.3.3(@types/node@20.14.10)
vue: 3.4.31(typescript@5.5.3)
"@volar/language-core@2.4.0-alpha.16":
dependencies:
"@volar/source-map": 2.4.0-alpha.16
"@volar/source-map@2.4.0-alpha.16": {}
"@volar/typescript@2.4.0-alpha.16":
dependencies:
"@volar/language-core": 2.4.0-alpha.16
path-browserify: 1.0.1
vscode-uri: 3.0.8
"@vue/babel-helper-vue-transform-on@1.2.2": {}
"@vue/babel-plugin-jsx@1.2.2(@babel/core@7.24.8)":
dependencies:
"@babel/helper-module-imports": 7.22.15
"@babel/helper-plugin-utils": 7.24.8
"@babel/plugin-syntax-jsx": 7.24.7(@babel/core@7.24.8)
"@babel/template": 7.24.7
"@babel/traverse": 7.24.8
"@babel/types": 7.24.8
"@vue/babel-helper-vue-transform-on": 1.2.2
"@vue/babel-plugin-resolve-type": 1.2.2(@babel/core@7.24.8)
camelcase: 6.3.0
html-tags: 3.3.1
svg-tags: 1.0.0
optionalDependencies:
"@babel/core": 7.24.8
transitivePeerDependencies:
- supports-color
"@vue/babel-plugin-resolve-type@1.2.2(@babel/core@7.24.8)":
dependencies:
"@babel/code-frame": 7.24.7
"@babel/core": 7.24.8
"@babel/helper-module-imports": 7.22.15
"@babel/helper-plugin-utils": 7.24.8
"@babel/parser": 7.24.8
"@vue/compiler-sfc": 3.4.31
"@vue/compiler-core@3.4.31":
dependencies:
"@babel/parser": 7.24.8
"@vue/shared": 3.4.31
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.2.0
"@vue/compiler-dom@3.4.31":
dependencies:
"@vue/compiler-core": 3.4.31
"@vue/shared": 3.4.31
"@vue/compiler-sfc@3.4.31":
dependencies:
"@babel/parser": 7.24.8
"@vue/compiler-core": 3.4.31
"@vue/compiler-dom": 3.4.31
"@vue/compiler-ssr": 3.4.31
"@vue/shared": 3.4.31
estree-walker: 2.0.2
magic-string: 0.30.10
postcss: 8.4.39
source-map-js: 1.2.0
"@vue/compiler-ssr@3.4.31":
dependencies:
"@vue/compiler-dom": 3.4.31
"@vue/shared": 3.4.31
"@vue/devtools-api@6.6.3": {}
"@vue/devtools-core@7.3.6(vite@5.3.3(@types/node@20.14.10))(vue@3.4.31(typescript@5.5.3))":
dependencies:
"@vue/devtools-kit": 7.3.6
"@vue/devtools-shared": 7.3.6
mitt: 3.0.1
nanoid: 3.3.7
pathe: 1.1.2
vite-hot-client: 0.2.3(vite@5.3.3(@types/node@20.14.10))
vue: 3.4.31(typescript@5.5.3)
transitivePeerDependencies:
- vite
"@vue/devtools-kit@7.3.6":
dependencies:
"@vue/devtools-shared": 7.3.6
birpc: 0.2.17
hookable: 5.5.3
mitt: 3.0.1
perfect-debounce: 1.0.0
speakingurl: 14.0.1
superjson: 2.2.1
"@vue/devtools-shared@7.3.6":
dependencies:
rfdc: 1.4.1
"@vue/language-core@2.0.26(typescript@5.5.3)":
dependencies:
"@volar/language-core": 2.4.0-alpha.16
"@vue/compiler-dom": 3.4.31
"@vue/shared": 3.4.31
computeds: 0.0.1
minimatch: 9.0.5
muggle-string: 0.4.1
path-browserify: 1.0.1
vue-template-compiler: 2.7.16
optionalDependencies:
typescript: 5.5.3
"@vue/reactivity@3.4.31":
dependencies:
"@vue/shared": 3.4.31
"@vue/runtime-core@3.4.31":
dependencies:
"@vue/reactivity": 3.4.31
"@vue/shared": 3.4.31
"@vue/runtime-dom@3.4.31":
dependencies:
"@vue/reactivity": 3.4.31
"@vue/runtime-core": 3.4.31
"@vue/shared": 3.4.31
csstype: 3.1.3
"@vue/server-renderer@3.4.31(vue@3.4.31(typescript@5.5.3))":
dependencies:
"@vue/compiler-ssr": 3.4.31
"@vue/shared": 3.4.31
vue: 3.4.31(typescript@5.5.3)
"@vue/shared@3.4.31": {}
acorn@8.12.1: {}
ansi-styles@3.2.1:
dependencies:
color-convert: 1.9.3
anymatch@3.1.3:
dependencies:
normalize-path: 3.0.0
picomatch: 2.3.1
asynckit@0.4.0: {}
axios@1.7.2:
dependencies:
follow-redirects: 1.15.6
form-data: 4.0.0
proxy-from-env: 1.1.0
transitivePeerDependencies:
- debug
balanced-match@1.0.2: {}
binary-extensions@2.3.0: {}
birpc@0.2.17: {}
brace-expansion@2.0.1:
dependencies:
balanced-match: 1.0.2
braces@3.0.3:
dependencies:
fill-range: 7.1.1
browserslist@4.23.2:
dependencies:
caniuse-lite: 1.0.30001642
electron-to-chromium: 1.4.827
node-releases: 2.0.14
update-browserslist-db: 1.1.0(browserslist@4.23.2)
bundle-name@4.1.0:
dependencies:
run-applescript: 7.0.0
cac@6.7.14: {}
camelcase@6.3.0: {}
caniuse-lite@1.0.30001642: {}
chalk@2.4.2:
dependencies:
ansi-styles: 3.2.1
escape-string-regexp: 1.0.5
supports-color: 5.5.0
chokidar@3.6.0:
dependencies:
anymatch: 3.1.3
braces: 3.0.3
glob-parent: 5.1.2
is-binary-path: 2.1.0
is-glob: 4.0.3
normalize-path: 3.0.0
readdirp: 3.6.0
optionalDependencies:
fsevents: 2.3.3
color-convert@1.9.3:
dependencies:
color-name: 1.1.3
color-name@1.1.3: {}
colorette@2.0.20: {}
combined-stream@1.0.8:
dependencies:
delayed-stream: 1.0.0
computeds@0.0.1: {}
confbox@0.1.7: {}
consola@3.2.3: {}
convert-source-map@2.0.0: {}
copy-anything@3.0.5:
dependencies:
is-what: 4.1.16
cross-spawn@7.0.3:
dependencies:
path-key: 3.1.1
shebang-command: 2.0.0
which: 2.0.2
css-tree@2.3.1:
dependencies:
mdn-data: 2.0.30
source-map-js: 1.2.0
csstype@3.1.3: {}
de-indent@1.0.2: {}
debug@4.3.5:
dependencies:
ms: 2.1.2
default-browser-id@5.0.0: {}
default-browser@5.2.1:
dependencies:
bundle-name: 4.1.0
default-browser-id: 5.0.0
define-lazy-prop@3.0.0: {}
defu@6.1.4: {}
delayed-stream@1.0.0: {}
destr@2.0.3: {}
duplexer@0.1.2: {}
electron-to-chromium@1.4.827: {}
entities@4.5.0: {}
error-stack-parser-es@0.1.5: {}
esbuild@0.21.5:
optionalDependencies:
"@esbuild/aix-ppc64": 0.21.5
"@esbuild/android-arm": 0.21.5
"@esbuild/android-arm64": 0.21.5
"@esbuild/android-x64": 0.21.5
"@esbuild/darwin-arm64": 0.21.5
"@esbuild/darwin-x64": 0.21.5
"@esbuild/freebsd-arm64": 0.21.5
"@esbuild/freebsd-x64": 0.21.5
"@esbuild/linux-arm": 0.21.5
"@esbuild/linux-arm64": 0.21.5
"@esbuild/linux-ia32": 0.21.5
"@esbuild/linux-loong64": 0.21.5
"@esbuild/linux-mips64el": 0.21.5
"@esbuild/linux-ppc64": 0.21.5
"@esbuild/linux-riscv64": 0.21.5
"@esbuild/linux-s390x": 0.21.5
"@esbuild/linux-x64": 0.21.5
"@esbuild/netbsd-x64": 0.21.5
"@esbuild/openbsd-x64": 0.21.5
"@esbuild/sunos-x64": 0.21.5
"@esbuild/win32-arm64": 0.21.5
"@esbuild/win32-ia32": 0.21.5
"@esbuild/win32-x64": 0.21.5
escalade@3.1.2: {}
escape-string-regexp@1.0.5: {}
estree-walker@2.0.2: {}
execa@5.1.1:
dependencies:
cross-spawn: 7.0.3
get-stream: 6.0.1
human-signals: 2.1.0
is-stream: 2.0.1
merge-stream: 2.0.0
npm-run-path: 4.0.1
onetime: 5.1.2
signal-exit: 3.0.7
strip-final-newline: 2.0.0
execa@8.0.1:
dependencies:
cross-spawn: 7.0.3
get-stream: 8.0.1
human-signals: 5.0.0
is-stream: 3.0.0
merge-stream: 2.0.0
npm-run-path: 5.3.0
onetime: 6.0.0
signal-exit: 4.1.0
strip-final-newline: 3.0.0
fast-glob@3.3.2:
dependencies:
"@nodelib/fs.stat": 2.0.5
"@nodelib/fs.walk": 1.2.8
glob-parent: 5.1.2
merge2: 1.4.1
micromatch: 4.0.7
fastq@1.17.1:
dependencies:
reusify: 1.0.4
fill-range@7.1.1:
dependencies:
to-regex-range: 5.0.1
find-up@5.0.0:
dependencies:
locate-path: 6.0.0
path-exists: 4.0.0
follow-redirects@1.15.6: {}
form-data@4.0.0:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
mime-types: 2.1.35
fs-extra@11.2.0:
dependencies:
graceful-fs: 4.2.11
jsonfile: 6.1.0
universalify: 2.0.1
fsevents@2.3.3:
optional: true
gensync@1.0.0-beta.2: {}
get-stream@6.0.1: {}
get-stream@8.0.1: {}
glob-parent@5.1.2:
dependencies:
is-glob: 4.0.3
globals@11.12.0: {}
graceful-fs@4.2.11: {}
gzip-size@6.0.0:
dependencies:
duplexer: 0.1.2
has-flag@3.0.0: {}
he@1.2.0: {}
hookable@5.5.3: {}
html-tags@3.3.1: {}
human-signals@2.1.0: {}
human-signals@5.0.0: {}
is-binary-path@2.1.0:
dependencies:
binary-extensions: 2.3.0
is-docker@3.0.0: {}
is-extglob@2.1.1: {}
is-glob@4.0.3:
dependencies:
is-extglob: 2.1.1
is-inside-container@1.0.0:
dependencies:
is-docker: 3.0.0
is-number@7.0.0: {}
is-stream@2.0.1: {}
is-stream@3.0.0: {}
is-what@4.1.16: {}
is-wsl@3.1.0:
dependencies:
is-inside-container: 1.0.0
isexe@2.0.0: {}
jiti@1.21.6: {}
js-tokens@4.0.0: {}
jsesc@2.5.2: {}
json5@2.2.3: {}
jsonfile@6.1.0:
dependencies:
universalify: 2.0.1
optionalDependencies:
graceful-fs: 4.2.11
kolorist@1.8.0: {}
local-pkg@0.5.0:
dependencies:
mlly: 1.7.1
pkg-types: 1.1.3
locate-path@6.0.0:
dependencies:
p-locate: 5.0.0
lru-cache@5.1.1:
dependencies:
yallist: 3.1.1
magic-string@0.30.10:
dependencies:
"@jridgewell/sourcemap-codec": 1.5.0
mdn-data@2.0.30: {}
merge-stream@2.0.0: {}
merge2@1.4.1: {}
micromatch@4.0.7:
dependencies:
braces: 3.0.3
picomatch: 2.3.1
mime-db@1.52.0: {}
mime-types@2.1.35:
dependencies:
mime-db: 1.52.0
mimic-fn@2.1.0: {}
mimic-fn@4.0.0: {}
minimatch@9.0.5:
dependencies:
brace-expansion: 2.0.1
mitt@3.0.1: {}
mlly@1.7.1:
dependencies:
acorn: 8.12.1
pathe: 1.1.2
pkg-types: 1.1.3
ufo: 1.5.3
mrmime@2.0.0: {}
ms@2.1.2: {}
muggle-string@0.4.1: {}
nanoid@3.3.7: {}
node-fetch-native@1.6.4: {}
node-releases@2.0.14: {}
normalize-path@3.0.0: {}
npm-run-path@4.0.1:
dependencies:
path-key: 3.1.1
npm-run-path@5.3.0:
dependencies:
path-key: 4.0.0
nprogress@0.2.0: {}
ofetch@1.3.4:
dependencies:
destr: 2.0.3
node-fetch-native: 1.6.4
ufo: 1.5.3
onetime@5.1.2:
dependencies:
mimic-fn: 2.1.0
onetime@6.0.0:
dependencies:
mimic-fn: 4.0.0
open@10.1.0:
dependencies:
default-browser: 5.2.1
define-lazy-prop: 3.0.0
is-inside-container: 1.0.0
is-wsl: 3.1.0
p-limit@3.1.0:
dependencies:
yocto-queue: 0.1.0
p-locate@5.0.0:
dependencies:
p-limit: 3.1.0
path-browserify@1.0.1: {}
path-exists@4.0.0: {}
path-key@3.1.1: {}
path-key@4.0.0: {}
pathe@1.1.2: {}
perfect-debounce@1.0.0: {}
picocolors@1.0.1: {}
picomatch@2.3.1: {}
pinia@2.1.7(typescript@5.5.3)(vue@3.4.31(typescript@5.5.3)):
dependencies:
"@vue/devtools-api": 6.6.3
vue: 3.4.31(typescript@5.5.3)
vue-demi: 0.14.8(vue@3.4.31(typescript@5.5.3))
optionalDependencies:
typescript: 5.5.3
pkg-types@1.1.3:
dependencies:
confbox: 0.1.7
mlly: 1.7.1
pathe: 1.1.2
postcss@8.4.39:
dependencies:
nanoid: 3.3.7
picocolors: 1.0.1
source-map-js: 1.2.0
prettier@3.3.3: {}
proxy-from-env@1.1.0: {}
queue-microtask@1.2.3: {}
readdirp@3.6.0:
dependencies:
picomatch: 2.3.1
reusify@1.0.4: {}
rfdc@1.4.1: {}
rollup@4.18.1:
dependencies:
"@types/estree": 1.0.5
optionalDependencies:
"@rollup/rollup-android-arm-eabi": 4.18.1
"@rollup/rollup-android-arm64": 4.18.1
"@rollup/rollup-darwin-arm64": 4.18.1
"@rollup/rollup-darwin-x64": 4.18.1
"@rollup/rollup-linux-arm-gnueabihf": 4.18.1
"@rollup/rollup-linux-arm-musleabihf": 4.18.1
"@rollup/rollup-linux-arm64-gnu": 4.18.1
"@rollup/rollup-linux-arm64-musl": 4.18.1
"@rollup/rollup-linux-powerpc64le-gnu": 4.18.1
"@rollup/rollup-linux-riscv64-gnu": 4.18.1
"@rollup/rollup-linux-s390x-gnu": 4.18.1
"@rollup/rollup-linux-x64-gnu": 4.18.1
"@rollup/rollup-linux-x64-musl": 4.18.1
"@rollup/rollup-win32-arm64-msvc": 4.18.1
"@rollup/rollup-win32-ia32-msvc": 4.18.1
"@rollup/rollup-win32-x64-msvc": 4.18.1
fsevents: 2.3.3
run-applescript@7.0.0: {}
run-parallel@1.2.0:
dependencies:
queue-microtask: 1.2.3
semver@6.3.1: {}
semver@7.6.2: {}
shebang-command@2.0.0:
dependencies:
shebang-regex: 3.0.0
shebang-regex@3.0.0: {}
signal-exit@3.0.7: {}
signal-exit@4.1.0: {}
sirv@2.0.4:
dependencies:
"@polka/url": 1.0.0-next.25
mrmime: 2.0.0
totalist: 3.0.1
source-map-js@1.2.0: {}
speakingurl@14.0.1: {}
strip-final-newline@2.0.0: {}
strip-final-newline@3.0.0: {}
superjson@2.2.1:
dependencies:
copy-anything: 3.0.5
supports-color@5.5.0:
dependencies:
has-flag: 3.0.0
svg-tags@1.0.0: {}
to-fast-properties@2.0.0: {}
to-regex-range@5.0.1:
dependencies:
is-number: 7.0.0
totalist@3.0.1: {}
typescript@5.5.3: {}
ufo@1.5.3: {}
unconfig@0.3.13:
dependencies:
"@antfu/utils": 0.7.10
defu: 6.1.4
jiti: 1.21.6
undici-types@5.26.5: {}
universalify@2.0.1: {}
unocss@0.61.3(postcss@8.4.39)(rollup@4.18.1)(vite@5.3.3(@types/node@20.14.10)):
dependencies:
"@unocss/astro": 0.61.3(rollup@4.18.1)(vite@5.3.3(@types/node@20.14.10))
"@unocss/cli": 0.61.3(rollup@4.18.1)
"@unocss/core": 0.61.3
"@unocss/extractor-arbitrary-variants": 0.61.3
"@unocss/postcss": 0.61.3(postcss@8.4.39)
"@unocss/preset-attributify": 0.61.3
"@unocss/preset-icons": 0.61.3
"@unocss/preset-mini": 0.61.3
"@unocss/preset-tagify": 0.61.3
"@unocss/preset-typography": 0.61.3
"@unocss/preset-uno": 0.61.3
"@unocss/preset-web-fonts": 0.61.3
"@unocss/preset-wind": 0.61.3
"@unocss/reset": 0.61.3
"@unocss/transformer-attributify-jsx": 0.61.3
"@unocss/transformer-attributify-jsx-babel": 0.61.3
"@unocss/transformer-compile-class": 0.61.3
"@unocss/transformer-directives": 0.61.3
"@unocss/transformer-variant-group": 0.61.3
"@unocss/vite": 0.61.3(rollup@4.18.1)(vite@5.3.3(@types/node@20.14.10))
optionalDependencies:
vite: 5.3.3(@types/node@20.14.10)
transitivePeerDependencies:
- postcss
- rollup
- supports-color
update-browserslist-db@1.1.0(browserslist@4.23.2):
dependencies:
browserslist: 4.23.2
escalade: 3.1.2
picocolors: 1.0.1
vite-hot-client@0.2.3(vite@5.3.3(@types/node@20.14.10)):
dependencies:
vite: 5.3.3(@types/node@20.14.10)
vite-plugin-inspect@0.8.5(rollup@4.18.1)(vite@5.3.3(@types/node@20.14.10)):
dependencies:
"@antfu/utils": 0.7.10
"@rollup/pluginutils": 5.1.0(rollup@4.18.1)
debug: 4.3.5
error-stack-parser-es: 0.1.5
fs-extra: 11.2.0
open: 10.1.0
perfect-debounce: 1.0.0
picocolors: 1.0.1
sirv: 2.0.4
vite: 5.3.3(@types/node@20.14.10)
transitivePeerDependencies:
- rollup
- supports-color
vite-plugin-vue-devtools@7.3.6(rollup@4.18.1)(vite@5.3.3(@types/node@20.14.10))(vue@3.4.31(typescript@5.5.3)):
dependencies:
"@vue/devtools-core": 7.3.6(vite@5.3.3(@types/node@20.14.10))(vue@3.4.31(typescript@5.5.3))
"@vue/devtools-kit": 7.3.6
"@vue/devtools-shared": 7.3.6
execa: 8.0.1
sirv: 2.0.4
vite: 5.3.3(@types/node@20.14.10)
vite-plugin-inspect: 0.8.5(rollup@4.18.1)(vite@5.3.3(@types/node@20.14.10))
vite-plugin-vue-inspector: 5.1.2(vite@5.3.3(@types/node@20.14.10))
transitivePeerDependencies:
- "@nuxt/kit"
- rollup
- supports-color
- vue
vite-plugin-vue-inspector@5.1.2(vite@5.3.3(@types/node@20.14.10)):
dependencies:
"@babel/core": 7.24.8
"@babel/plugin-proposal-decorators": 7.24.7(@babel/core@7.24.8)
"@babel/plugin-syntax-import-attributes": 7.24.7(@babel/core@7.24.8)
"@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.24.8)
"@babel/plugin-transform-typescript": 7.24.8(@babel/core@7.24.8)
"@vue/babel-plugin-jsx": 1.2.2(@babel/core@7.24.8)
"@vue/compiler-dom": 3.4.31
kolorist: 1.8.0
magic-string: 0.30.10
vite: 5.3.3(@types/node@20.14.10)
transitivePeerDependencies:
- supports-color
vite@5.3.3(@types/node@20.14.10):
dependencies:
esbuild: 0.21.5
postcss: 8.4.39
rollup: 4.18.1
optionalDependencies:
"@types/node": 20.14.10
fsevents: 2.3.3
vscode-uri@3.0.8: {}
vue-demi@0.14.8(vue@3.4.31(typescript@5.5.3)):
dependencies:
vue: 3.4.31(typescript@5.5.3)
vue-router@4.4.0(vue@3.4.31(typescript@5.5.3)):
dependencies:
"@vue/devtools-api": 6.6.3
vue: 3.4.31(typescript@5.5.3)
vue-template-compiler@2.7.16:
dependencies:
de-indent: 1.0.2
he: 1.2.0
vue-tsc@2.0.26(typescript@5.5.3):
dependencies:
"@volar/typescript": 2.4.0-alpha.16
"@vue/language-core": 2.0.26(typescript@5.5.3)
semver: 7.6.2
typescript: 5.5.3
vue@3.4.31(typescript@5.5.3):
dependencies:
"@vue/compiler-dom": 3.4.31
"@vue/compiler-sfc": 3.4.31
"@vue/runtime-dom": 3.4.31
"@vue/server-renderer": 3.4.31(vue@3.4.31(typescript@5.5.3))
"@vue/shared": 3.4.31
optionalDependencies:
typescript: 5.5.3
which@2.0.2:
dependencies:
isexe: 2.0.0
yallist@3.1.1: {}
yocto-queue@0.1.0: {}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yellow_ii/template.git
git@gitee.com:yellow_ii/template.git
yellow_ii
template
项目初始化
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385